From 440502746a863429fe27922514072b05c4c69e79 Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Sun, 13 Aug 2017 17:03:20 +0100 Subject: [PATCH 01/91] Change BindingBase to use UTF8, not ASCII, strings From the OpenGL 4.6 core specification, section 22.2: String queries return pointers to UTF-8 encoded, null-terminated static strings describing properties of the current GL context. From the GLSL 4.6 specification, section 3.1: The source character set used for the OpenGL shading languages is Unicode in the UTF-8 encoding scheme. It used to be that strings were ASCII, but ASCII is a safe subset of UTF8 so any existing code that assumed strings were encoded as ASCII will continue to work. --- src/OpenTK/BindingsBase.cs | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/src/OpenTK/BindingsBase.cs b/src/OpenTK/BindingsBase.cs index 807c0473..85fcfad3 100644 --- a/src/OpenTK/BindingsBase.cs +++ b/src/OpenTK/BindingsBase.cs @@ -72,10 +72,13 @@ namespace OpenTK protected abstract object SyncRoot { get; } /// - /// Marshals a pointer to a null-terminated byte array to the specified StringBuilder. + /// Marshals a pointer to a null-terminated byte array to a new System.String. /// This method supports OpenTK and is not intended to be called by user code. /// /// A pointer to a null-terminated byte array. + /// + /// A System.String with the data from . + /// protected static string MarshalPtrToString(IntPtr ptr) { if (ptr == IntPtr.Zero) @@ -93,13 +96,13 @@ namespace OpenTK ++str; } - return new string((sbyte*)ptr, 0, len, null); + return new string((sbyte*)ptr, 0, len, Encoding.UTF8); } } /// /// Marshal a System.String to unmanaged memory. - /// The resulting string is encoded in ASCII and must be freed + /// The resulting string is encoded in UTF8 and must be freed /// with FreeStringPtr. /// /// The System.String to marshal. @@ -118,20 +121,20 @@ namespace OpenTK // GetMaxByteCount() appears to allocate space for the final NUL // character, but allocate an extra one just in case (who knows // what old Mono version would do here.) - int max_count = Encoding.ASCII.GetMaxByteCount(str.Length) + 1; + int max_count = Encoding.UTF8.GetMaxByteCount(str.Length) + 1; IntPtr ptr = Marshal.AllocHGlobal(max_count); if (ptr == IntPtr.Zero) { throw new OutOfMemoryException(); } - // Pin the managed string and convert it to ASCII using - // the pointer overload of System.Encoding.ASCII.GetBytes(). + // Pin the managed string and convert it to UTF8 using + // the pointer overload of System.Encoding.UTF8.GetBytes(). unsafe { fixed (char* pstr = str) { - int actual_count = Encoding.ASCII.GetBytes(pstr, str.Length, (byte*)ptr, max_count); + int actual_count = Encoding.UTF8.GetBytes(pstr, str.Length, (byte*)ptr, max_count); Marshal.WriteByte(ptr, actual_count, 0); // Append '\0' at the end of the string return ptr; } From e2098e15e5527afefb068f7c251b8ce5e3d407b1 Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Fri, 4 Aug 2017 22:21:56 +0200 Subject: [PATCH 02/91] Add CommandLineParser to Generator.Rewrite. --- .../Generator.Rewrite.csproj | 231 +++++++++++++++++- src/Generator.Rewrite/paket.references | 3 +- 2 files changed, 230 insertions(+), 4 deletions(-) diff --git a/src/Generator.Rewrite/Generator.Rewrite.csproj b/src/Generator.Rewrite/Generator.Rewrite.csproj index e03e83b1..3834892e 100644 --- a/src/Generator.Rewrite/Generator.Rewrite.csproj +++ b/src/Generator.Rewrite/Generator.Rewrite.csproj @@ -98,6 +98,35 @@ + + + + + ..\..\packages\CommandLineParser\lib\net40\CommandLine.dll + True + True + + + + + + + ..\..\packages\CommandLineParser\lib\net45\CommandLine.dll + True + True + + + + + + + ..\..\packages\CommandLineParser\lib\netstandard1.5\CommandLine.dll + True + True + + + + @@ -229,6 +258,29 @@ + + + + + True + + + ..\..\packages\System.Console\lib\net46\System.Console.dll + True + True + + + + + + + ..\..\packages\System.Console\ref\netstandard1.3\System.Console.dll + False + True + + + + @@ -310,9 +362,6 @@ - - True - ..\..\packages\System.IO\lib\net462\System.IO.dll True @@ -417,6 +466,82 @@ + + + + + ..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll + True + True + + + + + + + ..\..\packages\System.Linq.Expressions\ref\netstandard1.0\System.Linq.Expressions.dll + False + True + + + + + + + ..\..\packages\System.Linq.Expressions\ref\netstandard1.3\System.Linq.Expressions.dll + False + True + + + + + + + ..\..\packages\System.Linq.Expressions\lib\netstandard1.6\System.Linq.Expressions.dll + True + True + + + + + + + ..\..\packages\System.Linq.Expressions\ref\netstandard1.6\System.Linq.Expressions.dll + False + True + + + + + + + + + ..\..\packages\System.ObjectModel\ref\netstandard1.0\System.ObjectModel.dll + False + True + + + + + + + ..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll + True + True + + + + + + + ..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll + False + True + + + + @@ -455,6 +580,77 @@ + + + + + ..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll + False + True + + + + + + + ..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll + True + True + + + + + + + + + ..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll + False + True + + + + + + + ..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll + True + True + + + + + + + + + ..\..\packages\System.Reflection.Emit.Lightweight\ref\netstandard1.0\System.Reflection.Emit.Lightweight.dll + False + True + + + + + + + ..\..\packages\System.Reflection.Emit.Lightweight\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll + True + True + + + + + + + + + ..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll + False + True + + + + @@ -466,6 +662,35 @@ + + + + + ..\..\packages\System.Reflection.TypeExtensions\lib\net462\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll + False + True + + + + diff --git a/src/Generator.Rewrite/paket.references b/src/Generator.Rewrite/paket.references index 4af5b75e..73eee677 100644 --- a/src/Generator.Rewrite/paket.references +++ b/src/Generator.Rewrite/paket.references @@ -1,2 +1,3 @@ Mono.Cecil -StyleCop.Analyzers \ No newline at end of file +StyleCop.Analyzers +CommandLineParser \ No newline at end of file From 7d031a81af6defd8f1118652286de2818fde1a03 Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Mon, 26 Jun 2017 20:53:12 +0200 Subject: [PATCH 03/91] Added option class. --- src/Generator.Rewrite/Options.cs | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/Generator.Rewrite/Options.cs diff --git a/src/Generator.Rewrite/Options.cs b/src/Generator.Rewrite/Options.cs new file mode 100644 index 00000000..2519e0cb --- /dev/null +++ b/src/Generator.Rewrite/Options.cs @@ -0,0 +1,23 @@ +using CommandLine; + +namespace OpenTK.Rewrite +{ + public class Options + { + [Option('d', "debug", DefaultValue = false, + HelpText = "Enable calls to GL.GetError(), wrapped around each native call.")] + public bool EnableDebugCalls { get; set; } + + [Option("dllimport", DefaultValue = false, + HelpText = "Force native calls to use DllImport instead of GetProcAddress.")] + public bool UseDLLImport { get; set; } + + [Option('i', "assembly", Required = true, + HelpText = "The path to the target assembly that should be rewritten.")] + public string TargetAssembly { get; set; } + + [Option('k', "signing-key", + HelpText = "The path to the strong name key which should be used to sign or resign the assembly.")] + public string StrongNameKey { get; set; } + } +} \ No newline at end of file From 3cb9c5f833907667e2e6414f0618db9f251c3d80 Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Mon, 26 Jun 2017 21:01:01 +0200 Subject: [PATCH 04/91] Added help option and moved required argument to the top. --- src/Generator.Rewrite/Options.cs | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/src/Generator.Rewrite/Options.cs b/src/Generator.Rewrite/Options.cs index 2519e0cb..8a122aa1 100644 --- a/src/Generator.Rewrite/Options.cs +++ b/src/Generator.Rewrite/Options.cs @@ -1,9 +1,18 @@ using CommandLine; +using CommandLine.Text; namespace OpenTK.Rewrite { public class Options { + [Option('i', "assembly", Required = true, + HelpText = "The path to the target assembly that should be rewritten.")] + public string TargetAssembly { get; set; } + + [Option('k', "signing-key", + HelpText = "The path to the strong name key which should be used to sign or resign the assembly.")] + public string StrongNameKey { get; set; } + [Option('d', "debug", DefaultValue = false, HelpText = "Enable calls to GL.GetError(), wrapped around each native call.")] public bool EnableDebugCalls { get; set; } @@ -12,12 +21,10 @@ namespace OpenTK.Rewrite HelpText = "Force native calls to use DllImport instead of GetProcAddress.")] public bool UseDLLImport { get; set; } - [Option('i', "assembly", Required = true, - HelpText = "The path to the target assembly that should be rewritten.")] - public string TargetAssembly { get; set; } - - [Option('k', "signing-key", - HelpText = "The path to the strong name key which should be used to sign or resign the assembly.")] - public string StrongNameKey { get; set; } + [HelpOption] + public string GetUsage() + { + return HelpText.AutoBuild(this, current => HelpText.DefaultParsingErrorsHandler(this, current)); + } } } \ No newline at end of file From 20399f2da7d5987e75690558627c51a13a77649f Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Mon, 26 Jun 2017 21:01:30 +0200 Subject: [PATCH 05/91] Added option parsing to the main program. --- src/Generator.Rewrite/Generator.Rewrite.csproj | 1 + src/Generator.Rewrite/Program.cs | 10 ++++------ 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/src/Generator.Rewrite/Generator.Rewrite.csproj b/src/Generator.Rewrite/Generator.Rewrite.csproj index 3834892e..518e5ae0 100644 --- a/src/Generator.Rewrite/Generator.Rewrite.csproj +++ b/src/Generator.Rewrite/Generator.Rewrite.csproj @@ -59,6 +59,7 @@ + diff --git a/src/Generator.Rewrite/Program.cs b/src/Generator.Rewrite/Program.cs index f028ff37..02c44cb1 100644 --- a/src/Generator.Rewrite/Program.cs +++ b/src/Generator.Rewrite/Program.cs @@ -18,7 +18,7 @@ using System; using System.Collections.Generic; using System.IO; using System.Linq; - +using CommandLine; using Mono.Cecil; using Mono.Cecil.Cil; using Mono.Cecil.Rocks; @@ -29,14 +29,12 @@ namespace OpenTK.Rewrite // with the s IL instructions. internal class Program { + private static readonly Options Options = new Options(); + private static void Main(string[] args) { - if (args.Length == 0) + if (!Parser.Default.ParseArguments(args, Options)) { - Console.WriteLine("Usage: rewrite [file.dll] [file.snk] [options]"); - Console.WriteLine("[options] is:"); - Console.WriteLine(" -debug (enable calls to GL.GetError())"); - Console.WriteLine(" -dllimport (force calls to use DllImport instead of GetProcAddress)"); return; } From fec6c18702d4a8d6dd0a5ae943f52fb61be25edc Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Mon, 26 Jun 2017 21:05:58 +0200 Subject: [PATCH 06/91] Added some early argument verification. --- src/Generator.Rewrite/Program.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/Generator.Rewrite/Program.cs b/src/Generator.Rewrite/Program.cs index 02c44cb1..e866b00f 100644 --- a/src/Generator.Rewrite/Program.cs +++ b/src/Generator.Rewrite/Program.cs @@ -38,6 +38,19 @@ namespace OpenTK.Rewrite return; } + // Argument error checking + if (!File.Exists(Options.TargetAssembly)) + { + Console.Error.WriteLine($"Target assembly not found. \n" + + $"Please check the given path ({Options.TargetAssembly})."); + } + + if (!File.Exists(Path.ChangeExtension(Options.TargetAssembly, "pdb"))) + { + Console.Error.WriteLine("Debugging symbols for target assembly not found. \n" + + "Please make sure that debugging symbols are being generated."); + } + var program = new Program(); var file = args[0]; var key = args[1]; From 77ebecb9f78072bec3140e2029ac1e255e596fc9 Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Mon, 26 Jun 2017 21:11:59 +0200 Subject: [PATCH 07/91] Removed passing of options and replaced checks with option object access. --- src/Generator.Rewrite/Program.cs | 42 ++++++++++++-------------------- 1 file changed, 16 insertions(+), 26 deletions(-) diff --git a/src/Generator.Rewrite/Program.cs b/src/Generator.Rewrite/Program.cs index e866b00f..1a888d21 100644 --- a/src/Generator.Rewrite/Program.cs +++ b/src/Generator.Rewrite/Program.cs @@ -52,10 +52,7 @@ namespace OpenTK.Rewrite } var program = new Program(); - var file = args[0]; - var key = args[1]; - var options = args.Where(a => a.StartsWith("-") || a.StartsWith("/")); - program.Rewrite(file, key, options); + program.Rewrite(); } // mscorlib types @@ -69,13 +66,8 @@ namespace OpenTK.Rewrite // OpenTK.BindingsBase private static TypeDefinition TypeBindingsBase; - private static bool dllimport; - - private void Rewrite(string file, string keyfile, IEnumerable options) + private void Rewrite() { - IEnumerable optionsEnumerated = options as IList ?? options.ToList(); - dllimport = optionsEnumerated.Contains("-dllimport"); - // Specify assembly read and write parameters // We want to keep a valid symbols file (pdb or mdb) var read_params = new ReaderParameters(); @@ -85,11 +77,11 @@ namespace OpenTK.Rewrite read_params.ReadWrite = true; write_params.WriteSymbols = true; - if (!String.IsNullOrEmpty(keyfile) && File.Exists(keyfile)) + if (!String.IsNullOrEmpty(Options.StrongNameKey) && File.Exists(Options.StrongNameKey)) { - keyfile = Path.GetFullPath(keyfile); + string absoluteKeyFilePath = Path.GetFullPath(Options.StrongNameKey); - using (var fs = new FileStream(keyfile, FileMode.Open, FileAccess.Read)) + using (var fs = new FileStream(absoluteKeyFilePath, FileMode.Open, FileAccess.Read)) { var keypair = new System.Reflection.StrongNameKeyPair(fs); write_params.StrongNameKeyPair = keypair; @@ -103,7 +95,7 @@ namespace OpenTK.Rewrite // Load assembly and process all modules try { - using (AssemblyDefinition assembly = AssemblyDefinition.ReadAssembly(file, read_params)) + using (AssemblyDefinition assembly = AssemblyDefinition.ReadAssembly(Options.TargetAssembly, read_params)) { var rewritten = assembly.CustomAttributes.FirstOrDefault(a => a.AttributeType.Name == "RewrittenAttribute"); if (rewritten == null) @@ -143,7 +135,7 @@ namespace OpenTK.Rewrite { foreach (var type in module.Types) { - Rewrite(type, optionsEnumerated); + Rewrite(type); } } } @@ -163,7 +155,7 @@ namespace OpenTK.Rewrite } } - private void Rewrite(TypeDefinition type, IEnumerable options) + private void Rewrite(TypeDefinition type) { var entry_points = type.Fields.FirstOrDefault(f => f.Name == "EntryPoints"); if (entry_points != null) @@ -173,7 +165,7 @@ namespace OpenTK.Rewrite entry_signatures.AddRange(type.Methods .Where(t => t.CustomAttributes.Any(a => a.AttributeType.Name == "SlotAttribute"))); - Rewrite(type, entry_points, entry_signatures, options); + Rewrite(type, entry_points, entry_signatures); RemoveNativeSignatures(type, entry_signatures); } @@ -191,7 +183,7 @@ namespace OpenTK.Rewrite private static int GetSlot(MethodDefinition signature) { // Pretend there is no slots if we want to force everything to work through DllImport (Android & iOS) - if (dllimport) + if (Options.UseDLLImport) { return -1; } @@ -207,14 +199,13 @@ namespace OpenTK.Rewrite } private void Rewrite(TypeDefinition type, FieldDefinition entry_points, - List entry_signatures, IEnumerable options) + List entry_signatures) { // Rewrite all wrapper methods var wrapper_signatures = new List(); wrapper_signatures.AddRange(type.Methods .Where(m => m.IsPublic && m.CustomAttributes.Any(a => a.AttributeType.Name == "AutoGeneratedAttribute"))); - IEnumerable optionsEnumerated = options as IList ?? options.ToList(); foreach (var wrapper in wrapper_signatures) { var autogenerated = wrapper.CustomAttributes @@ -226,7 +217,7 @@ namespace OpenTK.Rewrite var signature = entry_signatures.FirstOrDefault(s => s.Name == signature_name); int slot = GetSlot(signature); - ProcessMethod(wrapper, signature, slot, entry_points, optionsEnumerated); + ProcessMethod(wrapper, signature, slot, entry_points); } } @@ -236,7 +227,7 @@ namespace OpenTK.Rewrite { foreach (var nested_type in type.NestedTypes) { - Rewrite(nested_type, entry_points, entry_signatures, optionsEnumerated); + Rewrite(nested_type, entry_points, entry_signatures); } } } @@ -283,7 +274,7 @@ namespace OpenTK.Rewrite // Create body for method private static void ProcessMethod(MethodDefinition wrapper, MethodDefinition native, int slot, - FieldDefinition entry_points, IEnumerable options) + FieldDefinition entry_points) { var body = wrapper.Body; var il = body.GetILProcessor(); @@ -294,8 +285,7 @@ namespace OpenTK.Rewrite // and push each parameter on the stack DebugVariables vars = null; - IEnumerable optionsEnumerated = options as IList ?? options.ToList(); - if (optionsEnumerated.Contains("-debug")) + if (Options.EnableDebugCalls) { vars = EmitDebugPrologue(wrapper, il); } @@ -333,7 +323,7 @@ namespace OpenTK.Rewrite EmitParameterEpilogues(wrapper, native, body, il, generatedVariables); - if (optionsEnumerated.Contains("-debug")) + if (Options.EnableDebugCalls) { EmitDebugEpilogue(wrapper, il, vars); } From 4184e6a10e409849844007e437d031037d787ebc Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Mon, 26 Jun 2017 21:13:02 +0200 Subject: [PATCH 08/91] Inverted unclear check and changed it check the dllimport option directly. --- src/Generator.Rewrite/Program.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Generator.Rewrite/Program.cs b/src/Generator.Rewrite/Program.cs index 1a888d21..e161a988 100644 --- a/src/Generator.Rewrite/Program.cs +++ b/src/Generator.Rewrite/Program.cs @@ -302,7 +302,12 @@ namespace OpenTK.Rewrite generatedVariables = EmitConvenienceWrapper(wrapper, native, difference, body, il); } - if (slot != -1) + if (Options.UseDLLImport) + { + // issue DllImport call + EmitCall(il, native); + } + else { // push the entry point address on the stack EmitEntryPoint(entry_points, il, slot); @@ -310,11 +315,6 @@ namespace OpenTK.Rewrite // issue calli EmitCalli(il, native); } - else - { - // issue DllImport call - EmitCall(il, native); - } if (wrapper.ReturnType.Name != "Void") { From 3919e5f14f31da9186981e94740c10340c300212 Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Mon, 26 Jun 2017 21:24:32 +0200 Subject: [PATCH 09/91] Updated calls to Rewrite in the OpenTK project. --- src/OpenTK/OpenTK.csproj | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/src/OpenTK/OpenTK.csproj b/src/OpenTK/OpenTK.csproj index bf4af5e4..cbcc1ddb 100644 --- a/src/OpenTK/OpenTK.csproj +++ b/src/OpenTK/OpenTK.csproj @@ -797,10 +797,18 @@ - - - - + + + + From c0060bc68187ea1353063322327026d457bff912 Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Thu, 20 Jul 2017 22:43:13 +0200 Subject: [PATCH 10/91] Update options to the new v2 API. --- src/Generator.Rewrite/Options.cs | 10 ++-------- src/Generator.Rewrite/Program.cs | 9 ++++----- 2 files changed, 6 insertions(+), 13 deletions(-) diff --git a/src/Generator.Rewrite/Options.cs b/src/Generator.Rewrite/Options.cs index 8a122aa1..6e243f92 100644 --- a/src/Generator.Rewrite/Options.cs +++ b/src/Generator.Rewrite/Options.cs @@ -13,18 +13,12 @@ namespace OpenTK.Rewrite HelpText = "The path to the strong name key which should be used to sign or resign the assembly.")] public string StrongNameKey { get; set; } - [Option('d', "debug", DefaultValue = false, + [Option('d', "debug", Default = false, HelpText = "Enable calls to GL.GetError(), wrapped around each native call.")] public bool EnableDebugCalls { get; set; } - [Option("dllimport", DefaultValue = false, + [Option("dllimport", Default = false, HelpText = "Force native calls to use DllImport instead of GetProcAddress.")] public bool UseDLLImport { get; set; } - - [HelpOption] - public string GetUsage() - { - return HelpText.AutoBuild(this, current => HelpText.DefaultParsingErrorsHandler(this, current)); - } } } \ No newline at end of file diff --git a/src/Generator.Rewrite/Program.cs b/src/Generator.Rewrite/Program.cs index e161a988..459198da 100644 --- a/src/Generator.Rewrite/Program.cs +++ b/src/Generator.Rewrite/Program.cs @@ -29,14 +29,13 @@ namespace OpenTK.Rewrite // with the s IL instructions. internal class Program { - private static readonly Options Options = new Options(); + private static Options Options; private static void Main(string[] args) { - if (!Parser.Default.ParseArguments(args, Options)) - { - return; - } + Parser.Default.ParseArguments(args) + .WithParsed(result => Options = result) + .WithNotParsed(error => Environment.Exit(-1)); // Argument error checking if (!File.Exists(Options.TargetAssembly)) From 975dfc32c7382d36da4f8b682eee12102fdfb7f5 Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Fri, 4 Aug 2017 23:32:47 +0200 Subject: [PATCH 11/91] Correct target command line arguments. --- src/Generator.Rewrite/Generator.Rewrite.csproj | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Generator.Rewrite/Generator.Rewrite.csproj b/src/Generator.Rewrite/Generator.Rewrite.csproj index 518e5ae0..f617b96b 100644 --- a/src/Generator.Rewrite/Generator.Rewrite.csproj +++ b/src/Generator.Rewrite/Generator.Rewrite.csproj @@ -27,7 +27,8 @@ bin\Debug\Rewrite.xml prompt 4 - ../../OpenTK/Debug/OpenTK.dll ../../../OpenTK.snk -debug + --assembly ../../OpenTK/Debug/OpenTK.dll --signing-key ../../../OpenTK.snk --debug + -debug AnyCPU @@ -38,7 +39,8 @@ bin\Release\Rewrite.xml prompt 4 - ../../OpenTK/Release/OpenTK.dll ../../../OpenTK.snk + --assembly ../../OpenTK/Release/OpenTK.dll --signing-key ../../../OpenTK + .snk true From 6d3458d3ff9fbff35cdfb03177a98c6f2d633e56 Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Mon, 7 Aug 2017 14:20:11 +0100 Subject: [PATCH 12/91] Add a pull request template Based on one from ArasP: http://aras-p.info/blog/2017/05/07/Users-POV-and-Empathy/ --- .github/PULL_REQUEST_TEMPLATE.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 00000000..8a22bbcd --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,16 @@ +### Purpose of this PR + +* Description of feature/change. +* Which part of OpenTK does this affect (Math, OpenGL, Platform, Input, etc). +* Links to screenshots, design docs, user docs, etc. + +### Testing status + +* Explanation of what’s tested, how tested and existing or new automation tests. +* Can include manual testing by self. +* Specify test plans. +* Rarely acceptable to have no testing. + +### Comments + +* Any other comments to help understand the change. From b1e30393a113ae6f25508a7edff192a0ab43353d Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Sun, 27 Aug 2017 16:11:00 +0100 Subject: [PATCH 13/91] Optimize assignment to vector math out parameters See #500 for more details. Instead of using the pattern: result = new Vector(x, y, z) Which would allocate and copy a vector instance, instead assign the fields directly: result.X = x; result.Y = y; result.Z = z; This should be a small improvment in performance. --- src/OpenTK/Math/Vector2.cs | 18 ++++++---- src/OpenTK/Math/Vector2d.cs | 18 ++++++---- src/OpenTK/Math/Vector2h.cs | 7 ++-- src/OpenTK/Math/Vector3.cs | 71 +++++++++++++++++++------------------ src/OpenTK/Math/Vector3d.cs | 53 +++++++++++++++------------ src/OpenTK/Math/Vector3h.cs | 27 +++++++------- src/OpenTK/Math/Vector4.cs | 30 ++++++++++++---- src/OpenTK/Math/Vector4d.cs | 30 ++++++++++++---- src/OpenTK/Math/Vector4h.cs | 33 ++++++++--------- 9 files changed, 170 insertions(+), 117 deletions(-) diff --git a/src/OpenTK/Math/Vector2.cs b/src/OpenTK/Math/Vector2.cs index 47600187..d01f2952 100644 --- a/src/OpenTK/Math/Vector2.cs +++ b/src/OpenTK/Math/Vector2.cs @@ -239,7 +239,8 @@ namespace OpenTK /// Result of operation. public static void Add(ref Vector2 a, ref Vector2 b, out Vector2 result) { - result = new Vector2(a.X + b.X, a.Y + b.Y); + result.X = a.X + b.X; + result.Y = a.Y + b.Y; } /// @@ -262,7 +263,8 @@ namespace OpenTK /// Result of subtraction public static void Subtract(ref Vector2 a, ref Vector2 b, out Vector2 result) { - result = new Vector2(a.X - b.X, a.Y - b.Y); + result.X = a.X - b.X; + result.Y = a.Y - b.Y; } /// @@ -285,7 +287,8 @@ namespace OpenTK /// Result of the operation. public static void Multiply(ref Vector2 vector, float scale, out Vector2 result) { - result = new Vector2(vector.X * scale, vector.Y * scale); + result.X = vector.X * scale; + result.Y = vector.Y * scale; } /// @@ -308,7 +311,8 @@ namespace OpenTK /// Result of the operation. public static void Multiply(ref Vector2 vector, ref Vector2 scale, out Vector2 result) { - result = new Vector2(vector.X * scale.X, vector.Y * scale.Y); + result.X = vector.X * scale.X; + result.Y = vector.Y * scale.Y; } /// @@ -355,7 +359,8 @@ namespace OpenTK /// Result of the operation. public static void Divide(ref Vector2 vector, ref Vector2 scale, out Vector2 result) { - result = new Vector2(vector.X / scale.X, vector.Y / scale.Y); + result.X = vector.X / scale.X; + result.Y = vector.Y / scale.Y; } /// @@ -692,7 +697,8 @@ namespace OpenTK Quaternion.Multiply(ref quat, ref v, out t); Quaternion.Multiply(ref t, ref i, out v); - result = new Vector2(v.X, v.Y); + result.X = v.X; + result.Y = v.Y; } /// diff --git a/src/OpenTK/Math/Vector2d.cs b/src/OpenTK/Math/Vector2d.cs index 7cf644c6..cd887ba7 100644 --- a/src/OpenTK/Math/Vector2d.cs +++ b/src/OpenTK/Math/Vector2d.cs @@ -202,7 +202,8 @@ namespace OpenTK /// Result of operation. public static void Add(ref Vector2d a, ref Vector2d b, out Vector2d result) { - result = new Vector2d(a.X + b.X, a.Y + b.Y); + result.X = a.X + b.X; + result.Y = a.Y + b.Y; } /// @@ -225,7 +226,8 @@ namespace OpenTK /// Result of subtraction public static void Subtract(ref Vector2d a, ref Vector2d b, out Vector2d result) { - result = new Vector2d(a.X - b.X, a.Y - b.Y); + result.X = a.X - b.X; + result.Y = a.Y - b.Y; } /// @@ -248,7 +250,8 @@ namespace OpenTK /// Result of the operation. public static void Multiply(ref Vector2d vector, double scale, out Vector2d result) { - result = new Vector2d(vector.X * scale, vector.Y * scale); + result.X = vector.X * scale; + result.Y = vector.Y * scale; } /// @@ -271,7 +274,8 @@ namespace OpenTK /// Result of the operation. public static void Multiply(ref Vector2d vector, ref Vector2d scale, out Vector2d result) { - result = new Vector2d(vector.X * scale.X, vector.Y * scale.Y); + result.X = vector.X * scale.X; + result.Y = vector.Y * scale.Y; } /// @@ -318,7 +322,8 @@ namespace OpenTK /// Result of the operation. public static void Divide(ref Vector2d vector, ref Vector2d scale, out Vector2d result) { - result = new Vector2d(vector.X / scale.X, vector.Y / scale.Y); + result.X = vector.X / scale.X; + result.Y = vector.Y / scale.Y; } /// @@ -663,7 +668,8 @@ namespace OpenTK Quaterniond.Multiply(ref quat, ref v, out t); Quaterniond.Multiply(ref t, ref i, out v); - result = new Vector2d(v.X, v.Y); + result.X = v.X; + result.Y = v.Y; } /// diff --git a/src/OpenTK/Math/Vector2h.cs b/src/OpenTK/Math/Vector2h.cs index d149c072..d713700e 100644 --- a/src/OpenTK/Math/Vector2h.cs +++ b/src/OpenTK/Math/Vector2h.cs @@ -315,10 +315,9 @@ namespace OpenTK /// A new Half2 instance. public static Vector2h FromBytes(byte[] value, int startIndex) { - Vector2h h2 = new Vector2h(); - h2.X = Half.FromBytes(value, startIndex); - h2.Y = Half.FromBytes(value, startIndex + 2); - return h2; + return new Vector2h( + Half.FromBytes(value, startIndex), + Half.FromBytes(value, startIndex + 2)); } } } \ No newline at end of file diff --git a/src/OpenTK/Math/Vector3.cs b/src/OpenTK/Math/Vector3.cs index f447fad7..584bf393 100644 --- a/src/OpenTK/Math/Vector3.cs +++ b/src/OpenTK/Math/Vector3.cs @@ -276,7 +276,9 @@ namespace OpenTK /// Result of operation. public static void Add(ref Vector3 a, ref Vector3 b, out Vector3 result) { - result = new Vector3(a.X + b.X, a.Y + b.Y, a.Z + b.Z); + result.X = a.X + b.X; + result.Y = a.Y + b.Y; + result.Z = a.Z + b.Z; } /// @@ -299,7 +301,9 @@ namespace OpenTK /// Result of subtraction public static void Subtract(ref Vector3 a, ref Vector3 b, out Vector3 result) { - result = new Vector3(a.X - b.X, a.Y - b.Y, a.Z - b.Z); + result.X = a.X - b.X; + result.Y = a.Y - b.Y; + result.Z = a.Z - b.Z; } /// @@ -322,7 +326,9 @@ namespace OpenTK /// Result of the operation. public static void Multiply(ref Vector3 vector, float scale, out Vector3 result) { - result = new Vector3(vector.X * scale, vector.Y * scale, vector.Z * scale); + result.X = vector.X * scale; + result.Y = vector.Y * scale; + result.Z = vector.Z * scale; } /// @@ -345,7 +351,9 @@ namespace OpenTK /// Result of the operation. public static void Multiply(ref Vector3 vector, ref Vector3 scale, out Vector3 result) { - result = new Vector3(vector.X * scale.X, vector.Y * scale.Y, vector.Z * scale.Z); + result.X = vector.X * scale.X; + result.Y = vector.Y * scale.Y; + result.Z = vector.Z * scale.Z; } /// @@ -393,7 +401,9 @@ namespace OpenTK /// Result of the operation. public static void Divide(ref Vector3 vector, ref Vector3 scale, out Vector3 result) { - result = new Vector3(vector.X / scale.X, vector.Y / scale.Y, vector.Z / scale.Z); + result.X = vector.X / scale.X; + result.Y = vector.Y / scale.Y; + result.Z = vector.Z / scale.Z; } /// @@ -651,9 +661,9 @@ namespace OpenTK /// The cross product of the two inputs public static void Cross(ref Vector3 left, ref Vector3 right, out Vector3 result) { - result = new Vector3(left.Y * right.Z - left.Z * right.Y, - left.Z * right.X - left.X * right.Z, - left.X * right.Y - left.Y * right.X); + result.X = left.Y * right.Z - left.Z * right.Y; + result.Y = left.Z * right.X - left.X * right.Z; + result.Z = left.X * right.Y - left.Y * right.X; } /// @@ -729,11 +739,9 @@ namespace OpenTK /// The transformed vector public static Vector3 TransformVector(Vector3 vec, Matrix4 mat) { - Vector3 v; - v.X = Vector3.Dot(vec, new Vector3(mat.Column0)); - v.Y = Vector3.Dot(vec, new Vector3(mat.Column1)); - v.Z = Vector3.Dot(vec, new Vector3(mat.Column2)); - return v; + Vector3 result; + TransformVector(ref vec, ref mat, out result); + return result; } /// Transform a direction vector by the given Matrix @@ -767,8 +775,9 @@ namespace OpenTK /// The transformed normal public static Vector3 TransformNormal(Vector3 norm, Matrix4 mat) { - mat.Invert(); - return TransformNormalInverse(norm, mat); + Vector3 result; + TransformNormal(ref norm, ref mat, out result); + return result; } /// Transform a Normal by the given Matrix @@ -795,11 +804,9 @@ namespace OpenTK /// The transformed normal public static Vector3 TransformNormalInverse(Vector3 norm, Matrix4 invMat) { - Vector3 n; - n.X = Vector3.Dot(norm, new Vector3(invMat.Row0)); - n.Y = Vector3.Dot(norm, new Vector3(invMat.Row1)); - n.Z = Vector3.Dot(norm, new Vector3(invMat.Row2)); - return n; + Vector3 result; + TransformNormalInverse(ref norm, ref invMat, out result); + return result; } /// Transform a Normal by the (transpose of the) given Matrix @@ -831,11 +838,9 @@ namespace OpenTK /// The transformed position public static Vector3 TransformPosition(Vector3 pos, Matrix4 mat) { - Vector3 p; - p.X = Vector3.Dot(pos, new Vector3(mat.Column0)) + mat.Row3.X; - p.Y = Vector3.Dot(pos, new Vector3(mat.Column1)) + mat.Row3.Y; - p.Z = Vector3.Dot(pos, new Vector3(mat.Column2)) + mat.Row3.Z; - return p; + Vector3 result; + TransformPosition(ref pos, ref mat, out result); + return result; } /// Transform a Position by the given Matrix @@ -877,10 +882,9 @@ namespace OpenTK /// The transformed vector public static void Transform(ref Vector3 vec, ref Matrix3 mat, out Vector3 result) { - result = new Vector3( - vec.X * mat.Row0.X + vec.Y * mat.Row1.X + vec.Z * mat.Row2.X, - vec.X * mat.Row0.Y + vec.Y * mat.Row1.Y + vec.Z * mat.Row2.Y, - vec.X * mat.Row0.Z + vec.Y * mat.Row1.Z + vec.Z * mat.Row2.Z); + result.X = vec.X * mat.Row0.X + vec.Y * mat.Row1.X + vec.Z * mat.Row2.X; + result.Y = vec.X * mat.Row0.Y + vec.Y * mat.Row1.Y + vec.Z * mat.Row2.Y; + result.Z = vec.X * mat.Row0.Z + vec.Y * mat.Row1.Z + vec.Z * mat.Row2.Z; } /// @@ -931,10 +935,9 @@ namespace OpenTK /// The transformed vector public static void Transform(ref Matrix3 mat, ref Vector3 vec, out Vector3 result) { - result = new Vector3( - mat.Row0.X * vec.X + mat.Row0.Y * vec.Y + mat.Row0.Z * vec.Z, - mat.Row1.X * vec.X + mat.Row1.Y * vec.Y + mat.Row1.Z * vec.Z, - mat.Row2.X * vec.X + mat.Row2.Y * vec.Y + mat.Row2.Z * vec.Z); + result.X = mat.Row0.X * vec.X + mat.Row0.Y * vec.Y + mat.Row0.Z * vec.Z; + result.Y = mat.Row1.X * vec.X + mat.Row1.Y * vec.Y + mat.Row1.Z * vec.Z; + result.Z = mat.Row2.X * vec.X + mat.Row2.Y * vec.Y + mat.Row2.Z * vec.Z; } /// Transform a Vector3 by the given Matrix, and project the resulting Vector4 back to a Vector3 @@ -954,7 +957,7 @@ namespace OpenTK /// The transformed vector public static void TransformPerspective(ref Vector3 vec, ref Matrix4 mat, out Vector3 result) { - Vector4 v = new Vector4(vec, 1); + Vector4 v = new Vector4(vec.X, vec.Y, vec.Z, 1); Vector4.Transform(ref v, ref mat, out v); result.X = v.X / v.W; result.Y = v.Y / v.W; diff --git a/src/OpenTK/Math/Vector3d.cs b/src/OpenTK/Math/Vector3d.cs index 3633d2e9..16525029 100644 --- a/src/OpenTK/Math/Vector3d.cs +++ b/src/OpenTK/Math/Vector3d.cs @@ -274,7 +274,9 @@ namespace OpenTK /// Result of operation. public static void Add(ref Vector3d a, ref Vector3d b, out Vector3d result) { - result = new Vector3d(a.X + b.X, a.Y + b.Y, a.Z + b.Z); + result.X = a.X + b.X; + result.Y = a.Y + b.Y; + result.Z = a.Z + b.Z; } /// @@ -297,7 +299,9 @@ namespace OpenTK /// Result of subtraction public static void Subtract(ref Vector3d a, ref Vector3d b, out Vector3d result) { - result = new Vector3d(a.X - b.X, a.Y - b.Y, a.Z - b.Z); + result.X = a.X - b.X; + result.Y = a.Y - b.Y; + result.Z = a.Z - b.Z; } /// @@ -320,7 +324,9 @@ namespace OpenTK /// Result of the operation. public static void Multiply(ref Vector3d vector, double scale, out Vector3d result) { - result = new Vector3d(vector.X * scale, vector.Y * scale, vector.Z * scale); + result.X = vector.X * scale; + result.Y = vector.Y * scale; + result.Z = vector.Z * scale; } /// @@ -343,7 +349,9 @@ namespace OpenTK /// Result of the operation. public static void Multiply(ref Vector3d vector, ref Vector3d scale, out Vector3d result) { - result = new Vector3d(vector.X * scale.X, vector.Y * scale.Y, vector.Z * scale.Z); + result.X = vector.X * scale.X; + result.Y = vector.Y * scale.Y; + result.Z = vector.Z * scale.Z; } /// @@ -391,7 +399,9 @@ namespace OpenTK /// Result of the operation. public static void Divide(ref Vector3d vector, ref Vector3d scale, out Vector3d result) { - result = new Vector3d(vector.X / scale.X, vector.Y / scale.Y, vector.Z / scale.Z); + result.X = vector.X / scale.X; + result.Y = vector.Y / scale.Y; + result.Z = vector.Z / scale.Z; } /// @@ -645,9 +655,9 @@ namespace OpenTK /// The cross product of the two inputs public static void Cross(ref Vector3d left, ref Vector3d right, out Vector3d result) { - result = new Vector3d(left.Y * right.Z - left.Z * right.Y, - left.Z * right.X - left.X * right.Z, - left.X * right.Y - left.Y * right.X); + result.X = left.Y * right.Z - left.Z * right.Y; + result.Y = left.Z * right.X - left.X * right.Z; + result.Z = left.X * right.Y - left.Y * right.X; } /// @@ -723,10 +733,9 @@ namespace OpenTK /// The transformed vector public static Vector3d TransformVector(Vector3d vec, Matrix4d mat) { - return new Vector3d( - Vector3d.Dot(vec, new Vector3d(mat.Column0)), - Vector3d.Dot(vec, new Vector3d(mat.Column1)), - Vector3d.Dot(vec, new Vector3d(mat.Column2))); + Vector3d result; + TransformVector(ref vec, ref mat, out result); + return result; } /// Transform a direction vector by the given Matrix @@ -788,10 +797,9 @@ namespace OpenTK /// The transformed normal public static Vector3d TransformNormalInverse(Vector3d norm, Matrix4d invMat) { - return new Vector3d( - Vector3d.Dot(norm, new Vector3d(invMat.Row0)), - Vector3d.Dot(norm, new Vector3d(invMat.Row1)), - Vector3d.Dot(norm, new Vector3d(invMat.Row2))); + Vector3d result; + TransformNormalInverse(ref norm, ref invMat, out result); + return result; } /// Transform a Normal by the (transpose of the) given Matrix @@ -823,10 +831,9 @@ namespace OpenTK /// The transformed position public static Vector3d TransformPosition(Vector3d pos, Matrix4d mat) { - return new Vector3d( - Vector3d.Dot(pos, new Vector3d(mat.Column0)) + mat.Row3.X, - Vector3d.Dot(pos, new Vector3d(mat.Column1)) + mat.Row3.Y, - Vector3d.Dot(pos, new Vector3d(mat.Column2)) + mat.Row3.Z); + Vector3d result; + TransformPosition(ref pos, ref mat, out result); + return result; } /// Transform a Position by the given Matrix @@ -870,7 +877,9 @@ namespace OpenTK { Vector4d v4 = new Vector4d(vec.X, vec.Y, vec.Z, 1.0); Vector4d.Transform(ref v4, ref mat, out v4); - result = v4.Xyz; + result.X = v4.X; + result.Y = v4.Y; + result.Z = v4.Z; } /// @@ -924,7 +933,7 @@ namespace OpenTK /// The transformed vector public static void TransformPerspective(ref Vector3d vec, ref Matrix4d mat, out Vector3d result) { - Vector4d v = new Vector4d(vec, 1); + Vector4d v = new Vector4d(vec.X, vec.Y, vec.Z, 1); Vector4d.Transform(ref v, ref mat, out v); result.X = v.X / v.W; result.Y = v.Y / v.W; diff --git a/src/OpenTK/Math/Vector3h.cs b/src/OpenTK/Math/Vector3h.cs index b54e1817..0628e4e9 100644 --- a/src/OpenTK/Math/Vector3h.cs +++ b/src/OpenTK/Math/Vector3h.cs @@ -310,11 +310,10 @@ namespace OpenTK /// The resulting Vector3. public static explicit operator Vector3(Vector3h h3) { - Vector3 result = new Vector3(); - result.X = h3.X.ToSingle(); - result.Y = h3.Y.ToSingle(); - result.Z = h3.Z.ToSingle(); - return result; + return new Vector3( + h3.X.ToSingle(), + h3.Y.ToSingle(), + h3.Z.ToSingle()); } /// Converts OpenTK.Half3 to OpenTK.Vector3d. @@ -322,11 +321,10 @@ namespace OpenTK /// The resulting Vector3d. public static explicit operator Vector3d(Vector3h h3) { - Vector3d result = new Vector3d(); - result.X = h3.X.ToSingle(); - result.Y = h3.Y.ToSingle(); - result.Z = h3.Z.ToSingle(); - return result; + return new Vector3d( + h3.X.ToSingle(), + h3.Y.ToSingle(), + h3.Z.ToSingle()); } /// The size in bytes for an instance of the Half3 struct is 6. @@ -411,11 +409,10 @@ namespace OpenTK /// A new Half3 instance. public static Vector3h FromBytes(byte[] value, int startIndex) { - Vector3h h3 = new Vector3h(); - h3.X = Half.FromBytes(value, startIndex); - h3.Y = Half.FromBytes(value, startIndex + 2); - h3.Z = Half.FromBytes(value, startIndex + 4); - return h3; + return new Vector3h( + Half.FromBytes(value, startIndex), + Half.FromBytes(value, startIndex + 2), + Half.FromBytes(value, startIndex + 4)); } } } diff --git a/src/OpenTK/Math/Vector4.cs b/src/OpenTK/Math/Vector4.cs index c798f874..435fea1f 100644 --- a/src/OpenTK/Math/Vector4.cs +++ b/src/OpenTK/Math/Vector4.cs @@ -314,7 +314,10 @@ namespace OpenTK /// Result of operation. public static void Add(ref Vector4 a, ref Vector4 b, out Vector4 result) { - result = new Vector4(a.X + b.X, a.Y + b.Y, a.Z + b.Z, a.W + b.W); + result.X = a.X + b.X; + result.Y = a.Y + b.Y; + result.Z = a.Z + b.Z; + result.W = a.W + b.W; } /// @@ -337,7 +340,10 @@ namespace OpenTK /// Result of subtraction public static void Subtract(ref Vector4 a, ref Vector4 b, out Vector4 result) { - result = new Vector4(a.X - b.X, a.Y - b.Y, a.Z - b.Z, a.W - b.W); + result.X = a.X - b.X; + result.Y = a.Y - b.Y; + result.Z = a.Z - b.Z; + result.W = a.W - b.W; } /// @@ -360,7 +366,10 @@ namespace OpenTK /// Result of the operation. public static void Multiply(ref Vector4 vector, float scale, out Vector4 result) { - result = new Vector4(vector.X * scale, vector.Y * scale, vector.Z * scale, vector.W * scale); + result.X = vector.X * scale; + result.Y = vector.Y * scale; + result.Z = vector.Z * scale; + result.W = vector.W * scale; } /// @@ -383,7 +392,10 @@ namespace OpenTK /// Result of the operation. public static void Multiply(ref Vector4 vector, ref Vector4 scale, out Vector4 result) { - result = new Vector4(vector.X * scale.X, vector.Y * scale.Y, vector.Z * scale.Z, vector.W * scale.W); + result.X = vector.X * scale.X; + result.Y = vector.Y * scale.Y; + result.Z = vector.Z * scale.Z; + result.W = vector.W * scale.W; } /// @@ -432,7 +444,10 @@ namespace OpenTK /// Result of the operation. public static void Divide(ref Vector4 vector, ref Vector4 scale, out Vector4 result) { - result = new Vector4(vector.X / scale.X, vector.Y / scale.Y, vector.Z / scale.Z, vector.W / scale.W); + result.X = vector.X / scale.X; + result.Y = vector.Y / scale.Y; + result.Z = vector.Z / scale.Z; + result.W = vector.W / scale.W; } /// @@ -833,7 +848,10 @@ namespace OpenTK Quaternion.Multiply(ref quat, ref v, out t); Quaternion.Multiply(ref t, ref i, out v); - result = new Vector4(v.X, v.Y, v.Z, v.W); + result.X = v.X; + result.Y = v.Y; + result.Z = v.Z; + result.W = v.W; } /// Transform a Vector by the given Matrix using right-handed notation diff --git a/src/OpenTK/Math/Vector4d.cs b/src/OpenTK/Math/Vector4d.cs index 5351ab53..85302b0d 100644 --- a/src/OpenTK/Math/Vector4d.cs +++ b/src/OpenTK/Math/Vector4d.cs @@ -310,7 +310,10 @@ namespace OpenTK /// Result of operation. public static void Add(ref Vector4d a, ref Vector4d b, out Vector4d result) { - result = new Vector4d(a.X + b.X, a.Y + b.Y, a.Z + b.Z, a.W + b.W); + result.X = a.X + b.X; + result.Y = a.Y + b.Y; + result.Z = a.Z + b.Z; + result.W = a.W + b.W; } /// @@ -333,7 +336,10 @@ namespace OpenTK /// Result of subtraction public static void Subtract(ref Vector4d a, ref Vector4d b, out Vector4d result) { - result = new Vector4d(a.X - b.X, a.Y - b.Y, a.Z - b.Z, a.W - b.W); + result.X = a.X - b.X; + result.Y = a.Y - b.Y; + result.Z = a.Z - b.Z; + result.W = a.W - b.W; } /// @@ -356,7 +362,10 @@ namespace OpenTK /// Result of the operation. public static void Multiply(ref Vector4d vector, double scale, out Vector4d result) { - result = new Vector4d(vector.X * scale, vector.Y * scale, vector.Z * scale, vector.W * scale); + result.X = vector.X * scale; + result.Y = vector.Y * scale; + result.Z = vector.Z * scale; + result.W = vector.W * scale; } /// @@ -379,7 +388,10 @@ namespace OpenTK /// Result of the operation. public static void Multiply(ref Vector4d vector, ref Vector4d scale, out Vector4d result) { - result = new Vector4d(vector.X * scale.X, vector.Y * scale.Y, vector.Z * scale.Z, vector.W * scale.W); + result.X = vector.X * scale.X; + result.Y = vector.Y * scale.Y; + result.Z = vector.Z * scale.Z; + result.W = vector.W * scale.W; } /// @@ -428,7 +440,10 @@ namespace OpenTK /// Result of the operation. public static void Divide(ref Vector4d vector, ref Vector4d scale, out Vector4d result) { - result = new Vector4d(vector.X / scale.X, vector.Y / scale.Y, vector.Z / scale.Z, vector.W / scale.W); + result.X = vector.X / scale.X; + result.Y = vector.Y / scale.Y; + result.Z = vector.Z / scale.Z; + result.W = vector.W / scale.W; } /// @@ -825,7 +840,10 @@ namespace OpenTK Quaterniond.Multiply(ref quat, ref v, out t); Quaterniond.Multiply(ref t, ref i, out v); - result = new Vector4d(v.X, v.Y, v.Z, v.W); + result.X = v.X; + result.Y = v.Y; + result.Z = v.Z; + result.W = v.W; } /// diff --git a/src/OpenTK/Math/Vector4h.cs b/src/OpenTK/Math/Vector4h.cs index 1d049a87..adad10a9 100644 --- a/src/OpenTK/Math/Vector4h.cs +++ b/src/OpenTK/Math/Vector4h.cs @@ -640,12 +640,11 @@ namespace OpenTK /// The resulting Vector4. public static explicit operator Vector4(Vector4h h4) { - Vector4 result = new Vector4(); - result.X = h4.X.ToSingle(); - result.Y = h4.Y.ToSingle(); - result.Z = h4.Z.ToSingle(); - result.W = h4.W.ToSingle(); - return result; + return new Vector4( + h4.X.ToSingle(), + h4.Y.ToSingle(), + h4.Z.ToSingle(), + h4.W.ToSingle()); } /// Converts OpenTK.Half4 to OpenTK.Vector4d. @@ -653,12 +652,11 @@ namespace OpenTK /// The resulting Vector4d. public static explicit operator Vector4d(Vector4h h4) { - Vector4d result = new Vector4d(); - result.X = h4.X.ToSingle(); - result.Y = h4.Y.ToSingle(); - result.Z = h4.Z.ToSingle(); - result.W = h4.W.ToSingle(); - return result; + return new Vector4d( + h4.X.ToSingle(), + h4.Y.ToSingle(), + h4.Z.ToSingle(), + h4.W.ToSingle()); } /// The size in bytes for an instance of the Half4 struct is 8. @@ -750,12 +748,11 @@ namespace OpenTK /// A new Half4 instance. public static Vector4h FromBytes(byte[] value, int startIndex) { - Vector4h h4 = new Vector4h(); - h4.X = Half.FromBytes(value, startIndex); - h4.Y = Half.FromBytes(value, startIndex + 2); - h4.Z = Half.FromBytes(value, startIndex + 4); - h4.W = Half.FromBytes(value, startIndex + 6); - return h4; + return new Vector4h( + Half.FromBytes(value, startIndex), + Half.FromBytes(value, startIndex + 2), + Half.FromBytes(value, startIndex + 4), + Half.FromBytes(value, startIndex + 6)); } } } From 4a31379f92a606ae40c0803c393cab7e73794689 Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Mon, 28 Aug 2017 15:52:04 +0100 Subject: [PATCH 14/91] Add remarks about not reusing the same variable to ref/out methods --- src/OpenTK/Math/Vector3.cs | 9 +++++++++ src/OpenTK/Math/Vector3d.cs | 14 ++++++++++++++ 2 files changed, 23 insertions(+) diff --git a/src/OpenTK/Math/Vector3.cs b/src/OpenTK/Math/Vector3.cs index 584bf393..b37a7184 100644 --- a/src/OpenTK/Math/Vector3.cs +++ b/src/OpenTK/Math/Vector3.cs @@ -655,6 +655,11 @@ namespace OpenTK /// /// Caclulate the cross (vector) product of two vectors /// + /// + /// It is incorrect to call this method passing the same variable for + /// as for or + /// . + /// /// First operand /// Second operand /// The cross product of the two inputs @@ -747,6 +752,10 @@ namespace OpenTK /// Transform a direction vector by the given Matrix /// Assumes the matrix has a bottom row of (0,0,0,1), that is the translation part is ignored. /// + /// + /// It is incorrect to call this method passing the same variable for + /// as for . + /// /// The vector to transform /// The desired transformation /// The transformed vector diff --git a/src/OpenTK/Math/Vector3d.cs b/src/OpenTK/Math/Vector3d.cs index 16525029..a2d4109e 100644 --- a/src/OpenTK/Math/Vector3d.cs +++ b/src/OpenTK/Math/Vector3d.cs @@ -649,6 +649,11 @@ namespace OpenTK /// /// Caclulate the cross (vector) product of two vectors /// + /// + /// It is incorrect to call this method passing the same variable for + /// as for or + /// . + /// /// First operand /// Second operand /// The cross product of the two inputs @@ -741,6 +746,10 @@ namespace OpenTK /// Transform a direction vector by the given Matrix /// Assumes the matrix has a bottom row of (0,0,0,1), that is the translation part is ignored. /// + /// + /// It is incorrect to call this method passing the same variable for + /// as for . + /// /// The vector to transform /// The desired transformation /// The transformed vector @@ -870,6 +879,11 @@ namespace OpenTK } /// Transform a Vector by the given Matrix + /// + /// It is incorrect to call this method passing the same variable for + /// as for or + /// . + /// /// The vector to transform /// The desired transformation /// The transformed vector From d7a6c0f3bd072ea707e331f652c48b4d43a70d08 Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Mon, 28 Aug 2017 16:57:49 +0200 Subject: [PATCH 15/91] Use 'a' instead of 'i' for the short assembly option. --- src/Generator.Rewrite/Options.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Generator.Rewrite/Options.cs b/src/Generator.Rewrite/Options.cs index 6e243f92..eca85326 100644 --- a/src/Generator.Rewrite/Options.cs +++ b/src/Generator.Rewrite/Options.cs @@ -5,7 +5,7 @@ namespace OpenTK.Rewrite { public class Options { - [Option('i', "assembly", Required = true, + [Option('a', "assembly", Required = true, HelpText = "The path to the target assembly that should be rewritten.")] public string TargetAssembly { get; set; } From 6eb77be2817dba2162f911e0efab40026df52066 Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Mon, 28 Aug 2017 16:58:44 +0200 Subject: [PATCH 16/91] Correct odd line breaks and remove duplicate debug option. --- src/Generator.Rewrite/Generator.Rewrite.csproj | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/Generator.Rewrite/Generator.Rewrite.csproj b/src/Generator.Rewrite/Generator.Rewrite.csproj index f617b96b..38c3389a 100644 --- a/src/Generator.Rewrite/Generator.Rewrite.csproj +++ b/src/Generator.Rewrite/Generator.Rewrite.csproj @@ -27,8 +27,7 @@ bin\Debug\Rewrite.xml prompt 4 - --assembly ../../OpenTK/Debug/OpenTK.dll --signing-key ../../../OpenTK.snk --debug - -debug + --assembly ../../OpenTK/Debug/OpenTK.dll --signing-key ../../../OpenTK.snk --debug AnyCPU @@ -39,8 +38,7 @@ bin\Release\Rewrite.xml prompt 4 - --assembly ../../OpenTK/Release/OpenTK.dll --signing-key ../../../OpenTK - .snk + --assembly ../../OpenTK/Release/OpenTK.dll --signing-key ../../../OpenTK.snk true From 947162ce6c9ece4f8985604f5251dad7c5ded003 Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Mon, 28 Aug 2017 17:01:05 +0200 Subject: [PATCH 17/91] Correct altered logic. --- src/Generator.Rewrite/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Generator.Rewrite/Program.cs b/src/Generator.Rewrite/Program.cs index 459198da..d48eff74 100644 --- a/src/Generator.Rewrite/Program.cs +++ b/src/Generator.Rewrite/Program.cs @@ -301,7 +301,7 @@ namespace OpenTK.Rewrite generatedVariables = EmitConvenienceWrapper(wrapper, native, difference, body, il); } - if (Options.UseDLLImport) + if (slot == -1 || Options.UseDLLImport) { // issue DllImport call EmitCall(il, native); From 51a7f0abdb9553e89c6db00540eeb738d0138ae9 Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Mon, 28 Aug 2017 17:09:18 +0100 Subject: [PATCH 18/91] Add BindingsNotRewrittenException --- src/OpenTK/Exceptions.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) 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 From 741a4cfaacc12bb7b28569976d799572c95a3067 Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Mon, 28 Aug 2017 17:09:43 +0100 Subject: [PATCH 19/91] Change binding generator to emit BindingsNotRewrittenException rather than NotImplementedException --- src/Generator.Bind/CSharpSpecWriter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) From 7ae39813f3d540d8cdccfa2c0d6d818d4851ea50 Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Mon, 28 Aug 2017 17:10:06 +0100 Subject: [PATCH 20/91] Rerun Bind.exe --- src/OpenTK/Graphics/ES11/ES11.cs | 2226 +-- src/OpenTK/Graphics/ES20/ES20.cs | 6642 ++++----- src/OpenTK/Graphics/ES30/ES30.cs | 7578 +++++----- src/OpenTK/Graphics/ES31/ES31.cs | 7376 +++++----- src/OpenTK/Graphics/OpenGL/GL.cs | 21200 +++++++++++++-------------- src/OpenTK/Graphics/OpenGL4/GL4.cs | 10996 +++++++------- 6 files changed, 28009 insertions(+), 28009 deletions(-) diff --git a/src/OpenTK/Graphics/ES11/ES11.cs b/src/OpenTK/Graphics/ES11/ES11.cs index f5efe6fd..e8b961b5 100644 --- a/src/OpenTK/Graphics/ES11/ES11.cs +++ b/src/OpenTK/Graphics/ES11/ES11.cs @@ -831,7 +831,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glClientWaitSyncAPPLE")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES11.All ClientWaitSync(IntPtr sync, Int32 flags, Int64 timeout) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES11.All ClientWaitSync(IntPtr sync, Int32 flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Block and wait for a sync object to become signaled @@ -847,7 +847,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glClientWaitSyncAPPLE")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES11.All ClientWaitSync(IntPtr sync, UInt32 flags, UInt64 timeout) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES11.All ClientWaitSync(IntPtr sync, UInt32 flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_copy_texture_levels] /// @@ -856,7 +856,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "APPLE_copy_texture_levels", Version = "", EntryPoint = "glCopyTextureLevelsAPPLE")] [CLSCompliant(false)] - public static void CopyTextureLevel(Int32 destinationTexture, Int32 sourceTexture, Int32 sourceBaseLevel, Int32 sourceLevelCount) { throw new NotImplementedException(); } + public static void CopyTextureLevel(Int32 destinationTexture, Int32 sourceTexture, Int32 sourceBaseLevel, Int32 sourceLevelCount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_copy_texture_levels] /// @@ -865,7 +865,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "APPLE_copy_texture_levels", Version = "", EntryPoint = "glCopyTextureLevelsAPPLE")] [CLSCompliant(false)] - public static void CopyTextureLevel(UInt32 destinationTexture, UInt32 sourceTexture, Int32 sourceBaseLevel, Int32 sourceLevelCount) { throw new NotImplementedException(); } + public static void CopyTextureLevel(UInt32 destinationTexture, UInt32 sourceTexture, Int32 sourceBaseLevel, Int32 sourceLevelCount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Delete a sync object @@ -874,7 +874,7 @@ namespace OpenTK.Graphics.ES11 /// The sync object to be deleted. /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glDeleteSyncAPPLE")] - public static void DeleteSync(IntPtr sync) { throw new NotImplementedException(); } + public static void DeleteSync(IntPtr sync) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Create a new sync object and insert it into the GL command stream @@ -887,7 +887,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glFenceSyncAPPLE")] [CLSCompliant(false)] - public static IntPtr FenceSync(OpenTK.Graphics.ES11.All condition, Int32 flags) { throw new NotImplementedException(); } + public static IntPtr FenceSync(OpenTK.Graphics.ES11.All condition, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Create a new sync object and insert it into the GL command stream @@ -900,34 +900,34 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glFenceSyncAPPLE")] [CLSCompliant(false)] - public static IntPtr FenceSync(OpenTK.Graphics.ES11.All condition, UInt32 flags) { throw new NotImplementedException(); } + public static IntPtr FenceSync(OpenTK.Graphics.ES11.All condition, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] [CLSCompliant(false)] - public static Int64 GetInteger64(OpenTK.Graphics.ES11.All pname) { throw new NotImplementedException(); } + public static Int64 GetInteger64(OpenTK.Graphics.ES11.All pname) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.ES11.All pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES11.All pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.ES11.All pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES11.All pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] [CLSCompliant(false)] - public static unsafe void GetInteger64(OpenTK.Graphics.ES11.All pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.ES11.All pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Query the properties of a sync object @@ -949,7 +949,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] [CLSCompliant(false)] - public static void GetSync(IntPtr sync, OpenTK.Graphics.ES11.All pname, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES11.All pname, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Query the properties of a sync object @@ -971,7 +971,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] [CLSCompliant(false)] - public static void GetSync(IntPtr sync, OpenTK.Graphics.ES11.All pname, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES11.All pname, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Query the properties of a sync object @@ -993,7 +993,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] [CLSCompliant(false)] - public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES11.All pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES11.All pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Determine if a name corresponds to a sync object @@ -1002,7 +1002,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a value that may be the name of a sync object. /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glIsSyncAPPLE")] - public static bool IsSync(IntPtr sync) { throw new NotImplementedException(); } + public static bool IsSync(IntPtr sync) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_framebuffer_multisample] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -1023,11 +1023,11 @@ namespace OpenTK.Graphics.ES11 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "APPLE_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleAPPLE")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES11.All target, Int32 samples, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES11.All target, Int32 samples, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_framebuffer_multisample] [AutoGenerated(Category = "APPLE_framebuffer_multisample", Version = "", EntryPoint = "glResolveMultisampleFramebufferAPPLE")] - public static void ResolveMultisampleFramebuffer() { throw new NotImplementedException(); } + public static void ResolveMultisampleFramebuffer() { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -1043,7 +1043,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glWaitSyncAPPLE")] [CLSCompliant(false)] - public static void WaitSync(IntPtr sync, Int32 flags, Int64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, Int32 flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -1059,7 +1059,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glWaitSyncAPPLE")] [CLSCompliant(false)] - public static void WaitSync(IntPtr sync, UInt32 flags, UInt64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, UInt32 flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } } @@ -1071,7 +1071,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glActiveTexture")] - public static void ActiveTexture(OpenTK.Graphics.ES11.All texture) { throw new NotImplementedException(); } + public static void ActiveTexture(OpenTK.Graphics.ES11.All texture) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Select active texture unit @@ -1080,7 +1080,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies which texture unit to make active. The number of texture units is implementation dependent, but must be at least 8. texture must be one of Texture, where i ranges from 0 to (MaxCombinedTextureImageUnits - 1). The initial value is Texture0. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glActiveTexture")] - public static void ActiveTexture(OpenTK.Graphics.ES11.TextureUnit texture) { throw new NotImplementedException(); } + public static void ActiveTexture(OpenTK.Graphics.ES11.TextureUnit texture) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify the alpha test function @@ -1093,7 +1093,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glAlphaFunc")] - public static void AlphaFunc(OpenTK.Graphics.ES11.All func, Single @ref) { throw new NotImplementedException(); } + public static void AlphaFunc(OpenTK.Graphics.ES11.All func, Single @ref) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify the alpha test function @@ -1105,13 +1105,13 @@ namespace OpenTK.Graphics.ES11 /// Specifies the reference value that incoming alpha values are compared to. This value is clamped to the range [0,1], where 0 represents the lowest possible alpha value and 1 the highest possible value. The initial reference value is 0. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glAlphaFunc")] - public static void AlphaFunc(OpenTK.Graphics.ES11.AlphaFunction func, Single @ref) { throw new NotImplementedException(); } + public static void AlphaFunc(OpenTK.Graphics.ES11.AlphaFunction func, Single @ref) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glAlphaFuncx")] - public static void AlphaFuncx(OpenTK.Graphics.ES11.All func, Int32 @ref) { throw new NotImplementedException(); } + public static void AlphaFuncx(OpenTK.Graphics.ES11.All func, Int32 @ref) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Bind a named buffer object @@ -1125,7 +1125,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBindBuffer")] [CLSCompliant(false)] - public static void BindBuffer(OpenTK.Graphics.ES11.All target, Int32 buffer) { throw new NotImplementedException(); } + public static void BindBuffer(OpenTK.Graphics.ES11.All target, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Bind a named buffer object @@ -1139,7 +1139,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBindBuffer")] [CLSCompliant(false)] - public static void BindBuffer(OpenTK.Graphics.ES11.All target, UInt32 buffer) { throw new NotImplementedException(); } + public static void BindBuffer(OpenTK.Graphics.ES11.All target, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Bind a named buffer object @@ -1152,7 +1152,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBindBuffer")] [CLSCompliant(false)] - public static void BindBuffer(OpenTK.Graphics.ES11.BufferTargetArb target, Int32 buffer) { throw new NotImplementedException(); } + public static void BindBuffer(OpenTK.Graphics.ES11.BufferTargetArb target, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Bind a named buffer object @@ -1165,7 +1165,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBindBuffer")] [CLSCompliant(false)] - public static void BindBuffer(OpenTK.Graphics.ES11.BufferTargetArb target, UInt32 buffer) { throw new NotImplementedException(); } + public static void BindBuffer(OpenTK.Graphics.ES11.BufferTargetArb target, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Bind a named texture to a texturing target @@ -1179,7 +1179,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBindTexture")] [CLSCompliant(false)] - public static void BindTexture(OpenTK.Graphics.ES11.All target, Int32 texture) { throw new NotImplementedException(); } + public static void BindTexture(OpenTK.Graphics.ES11.All target, Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Bind a named texture to a texturing target @@ -1193,7 +1193,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBindTexture")] [CLSCompliant(false)] - public static void BindTexture(OpenTK.Graphics.ES11.All target, UInt32 texture) { throw new NotImplementedException(); } + public static void BindTexture(OpenTK.Graphics.ES11.All target, UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Bind a named texture to a texturing target @@ -1206,7 +1206,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBindTexture")] [CLSCompliant(false)] - public static void BindTexture(OpenTK.Graphics.ES11.TextureTarget target, Int32 texture) { throw new NotImplementedException(); } + public static void BindTexture(OpenTK.Graphics.ES11.TextureTarget target, Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Bind a named texture to a texturing target @@ -1219,7 +1219,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBindTexture")] [CLSCompliant(false)] - public static void BindTexture(OpenTK.Graphics.ES11.TextureTarget target, UInt32 texture) { throw new NotImplementedException(); } + public static void BindTexture(OpenTK.Graphics.ES11.TextureTarget target, UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify pixel arithmetic @@ -1232,7 +1232,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBlendFunc")] - public static void BlendFunc(OpenTK.Graphics.ES11.All sfactor, OpenTK.Graphics.ES11.All dfactor) { throw new NotImplementedException(); } + public static void BlendFunc(OpenTK.Graphics.ES11.All sfactor, OpenTK.Graphics.ES11.All dfactor) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify pixel arithmetic @@ -1244,7 +1244,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies how the red, green, blue, and alpha destination blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha. ConstantColor, OneMinusConstantColor, ConstantAlpha, and OneMinusConstantAlpha. The initial value is Zero. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBlendFunc")] - public static void BlendFunc(OpenTK.Graphics.ES11.BlendingFactorSrc sfactor, OpenTK.Graphics.ES11.BlendingFactorDest dfactor) { throw new NotImplementedException(); } + public static void BlendFunc(OpenTK.Graphics.ES11.BlendingFactorSrc sfactor, OpenTK.Graphics.ES11.BlendingFactorDest dfactor) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Create and initialize a buffer object's data store @@ -1263,7 +1263,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.ES11.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES11.All usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.ES11.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES11.All usage) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Create and initialize a buffer object's data store @@ -1285,7 +1285,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES11.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES11.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Create and initialize a buffer object's data store @@ -1307,7 +1307,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES11.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES11.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Create and initialize a buffer object's data store @@ -1329,7 +1329,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES11.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES11.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Create and initialize a buffer object's data store @@ -1350,7 +1350,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.ES11.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES11.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Create and initialize a buffer object's data store @@ -1369,7 +1369,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.ES11.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES11.All usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.ES11.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES11.All usage) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Create and initialize a buffer object's data store @@ -1391,7 +1391,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES11.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES11.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Create and initialize a buffer object's data store @@ -1413,7 +1413,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES11.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES11.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Create and initialize a buffer object's data store @@ -1435,7 +1435,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES11.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES11.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Create and initialize a buffer object's data store @@ -1456,7 +1456,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.ES11.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES11.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Create and initialize a buffer object's data store @@ -1474,7 +1474,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StaticDraw, or DynamicDraw. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.ES11.BufferTargetArb target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES11.BufferUsageArb usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.ES11.BufferTargetArb target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES11.BufferUsageArb usage) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Create and initialize a buffer object's data store @@ -1495,7 +1495,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES11.BufferTargetArb target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES11.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Create and initialize a buffer object's data store @@ -1516,7 +1516,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES11.BufferTargetArb target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES11.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Create and initialize a buffer object's data store @@ -1537,7 +1537,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES11.BufferTargetArb target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES11.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Create and initialize a buffer object's data store @@ -1557,7 +1557,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.ES11.BufferTargetArb target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES11.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Create and initialize a buffer object's data store @@ -1575,7 +1575,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StaticDraw, or DynamicDraw. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.ES11.BufferTargetArb target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES11.BufferUsageArb usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.ES11.BufferTargetArb target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES11.BufferUsageArb usage) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Create and initialize a buffer object's data store @@ -1596,7 +1596,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES11.BufferTargetArb target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES11.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Create and initialize a buffer object's data store @@ -1617,7 +1617,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES11.BufferTargetArb target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES11.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Create and initialize a buffer object's data store @@ -1638,7 +1638,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES11.BufferTargetArb target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES11.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Create and initialize a buffer object's data store @@ -1658,7 +1658,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.ES11.BufferTargetArb target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES11.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Update a subset of a buffer object's data store @@ -1677,7 +1677,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferSubData")] - public static void BufferSubData(OpenTK.Graphics.ES11.All target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.ES11.All target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Update a subset of a buffer object's data store @@ -1699,7 +1699,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES11.All target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Update a subset of a buffer object's data store @@ -1721,7 +1721,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES11.All target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Update a subset of a buffer object's data store @@ -1743,7 +1743,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES11.All target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Update a subset of a buffer object's data store @@ -1764,7 +1764,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferSubData")] public static void BufferSubData(OpenTK.Graphics.ES11.All target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Update a subset of a buffer object's data store @@ -1783,7 +1783,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferSubData")] - public static void BufferSubData(OpenTK.Graphics.ES11.All target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.ES11.All target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Update a subset of a buffer object's data store @@ -1805,7 +1805,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES11.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Update a subset of a buffer object's data store @@ -1827,7 +1827,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES11.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Update a subset of a buffer object's data store @@ -1849,7 +1849,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES11.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Update a subset of a buffer object's data store @@ -1870,7 +1870,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferSubData")] public static void BufferSubData(OpenTK.Graphics.ES11.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Update a subset of a buffer object's data store @@ -1888,7 +1888,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a pointer to the new data that will be copied into the data store. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferSubData")] - public static void BufferSubData(OpenTK.Graphics.ES11.BufferTargetArb target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.ES11.BufferTargetArb target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Update a subset of a buffer object's data store @@ -1909,7 +1909,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES11.BufferTargetArb target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Update a subset of a buffer object's data store @@ -1930,7 +1930,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES11.BufferTargetArb target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Update a subset of a buffer object's data store @@ -1951,7 +1951,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES11.BufferTargetArb target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Update a subset of a buffer object's data store @@ -1971,7 +1971,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferSubData")] public static void BufferSubData(OpenTK.Graphics.ES11.BufferTargetArb target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Update a subset of a buffer object's data store @@ -1989,7 +1989,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a pointer to the new data that will be copied into the data store. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferSubData")] - public static void BufferSubData(OpenTK.Graphics.ES11.BufferTargetArb target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.ES11.BufferTargetArb target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Update a subset of a buffer object's data store @@ -2010,7 +2010,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES11.BufferTargetArb target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Update a subset of a buffer object's data store @@ -2031,7 +2031,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES11.BufferTargetArb target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Update a subset of a buffer object's data store @@ -2052,7 +2052,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES11.BufferTargetArb target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Update a subset of a buffer object's data store @@ -2072,7 +2072,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferSubData")] public static void BufferSubData(OpenTK.Graphics.ES11.BufferTargetArb target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Clear buffers to preset values @@ -2082,7 +2082,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClear")] - public static void Clear(OpenTK.Graphics.ES11.All mask) { throw new NotImplementedException(); } + public static void Clear(OpenTK.Graphics.ES11.All mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Clear buffers to preset values @@ -2091,7 +2091,7 @@ namespace OpenTK.Graphics.ES11 /// Bitwise OR of masks that indicate the buffers to be cleared. The three masks are ColorBufferBit, DepthBufferBit, and StencilBufferBit. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClear")] - public static void Clear(OpenTK.Graphics.ES11.ClearBufferMask mask) { throw new NotImplementedException(); } + public static void Clear(OpenTK.Graphics.ES11.ClearBufferMask mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Clear buffers to preset values @@ -2102,7 +2102,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use ClearMask overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClear")] [CLSCompliant(false)] - public static void Clear(Int32 mask) { throw new NotImplementedException(); } + public static void Clear(Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Clear buffers to preset values @@ -2113,7 +2113,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use ClearMask overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClear")] [CLSCompliant(false)] - public static void Clear(UInt32 mask) { throw new NotImplementedException(); } + public static void Clear(UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify clear values for the color buffers @@ -2131,7 +2131,7 @@ namespace OpenTK.Graphics.ES11 /// Specify the red, green, blue, and alpha values used when the color buffers are cleared. The initial values are all 0. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClearColor")] - public static void ClearColor(Single red, Single green, Single blue, Single alpha) { throw new NotImplementedException(); } + public static void ClearColor(Single red, Single green, Single blue, Single alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -2139,7 +2139,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClearColorx")] - public static void ClearColorx(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new NotImplementedException(); } + public static void ClearColorx(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify the clear value for the depth buffer @@ -2148,12 +2148,12 @@ namespace OpenTK.Graphics.ES11 /// Specifies the depth value used when the depth buffer is cleared. The initial value is 1. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClearDepthf")] - public static void ClearDepth(Single d) { throw new NotImplementedException(); } + public static void ClearDepth(Single d) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClearDepthx")] - public static void ClearDepthx(Int32 depth) { throw new NotImplementedException(); } + public static void ClearDepthx(Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify the clear value for the stencil buffer @@ -2162,7 +2162,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the index used when the stencil buffer is cleared. The initial value is 0. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClearStencil")] - public static void ClearStencil(Int32 s) { throw new NotImplementedException(); } + public static void ClearStencil(Int32 s) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Select active texture unit @@ -2172,7 +2172,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClientActiveTexture")] - public static void ClientActiveTexture(OpenTK.Graphics.ES11.All texture) { throw new NotImplementedException(); } + public static void ClientActiveTexture(OpenTK.Graphics.ES11.All texture) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Select active texture unit @@ -2181,7 +2181,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies which texture unit to make active. The number of texture units is implementation dependent, but must be at least two. texture must be one of Texture, where i ranges from 0 to the value of MaxTextureCoords - 1, which is an implementation-dependent value. The initial value is Texture0. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClientActiveTexture")] - public static void ClientActiveTexture(OpenTK.Graphics.ES11.TextureUnit texture) { throw new NotImplementedException(); } + public static void ClientActiveTexture(OpenTK.Graphics.ES11.TextureUnit texture) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a plane against which all geometry is clipped @@ -2194,7 +2194,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClipPlanef")] [CLSCompliant(false)] - public static void ClipPlane(OpenTK.Graphics.ES11.All p, [CountAttribute(Count = 4)] Single[] eqn) { throw new NotImplementedException(); } + public static void ClipPlane(OpenTK.Graphics.ES11.All p, [CountAttribute(Count = 4)] Single[] eqn) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a plane against which all geometry is clipped @@ -2207,7 +2207,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClipPlanef")] [CLSCompliant(false)] - public static void ClipPlane(OpenTK.Graphics.ES11.All p, [CountAttribute(Count = 4)] ref Single eqn) { throw new NotImplementedException(); } + public static void ClipPlane(OpenTK.Graphics.ES11.All p, [CountAttribute(Count = 4)] ref Single eqn) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a plane against which all geometry is clipped @@ -2220,28 +2220,28 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClipPlanef")] [CLSCompliant(false)] - public static unsafe void ClipPlane(OpenTK.Graphics.ES11.All p, [CountAttribute(Count = 4)] Single* eqn) { throw new NotImplementedException(); } + public static unsafe void ClipPlane(OpenTK.Graphics.ES11.All p, [CountAttribute(Count = 4)] Single* eqn) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClipPlanex")] [CLSCompliant(false)] - public static void ClipPlanex(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] Int32[] equation) { throw new NotImplementedException(); } + public static void ClipPlanex(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] Int32[] equation) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClipPlanex")] [CLSCompliant(false)] - public static void ClipPlanex(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] ref Int32 equation) { throw new NotImplementedException(); } + public static void ClipPlanex(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] ref Int32 equation) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClipPlanex")] [CLSCompliant(false)] - public static unsafe void ClipPlanex(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] Int32* equation) { throw new NotImplementedException(); } + public static unsafe void ClipPlanex(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] Int32* equation) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set the current color @@ -2259,7 +2259,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glColor4f")] - public static void Color4(Single red, Single green, Single blue, Single alpha) { throw new NotImplementedException(); } + public static void Color4(Single red, Single green, Single blue, Single alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set the current color @@ -2277,7 +2277,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glColor4ub")] - public static void Color4(Byte red, Byte green, Byte blue, Byte alpha) { throw new NotImplementedException(); } + public static void Color4(Byte red, Byte green, Byte blue, Byte alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -2285,7 +2285,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glColor4x")] - public static void Color4x(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new NotImplementedException(); } + public static void Color4x(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Enable and disable writing of frame buffer color components @@ -2303,7 +2303,7 @@ namespace OpenTK.Graphics.ES11 /// Specify whether red, green, blue, and alpha can or cannot be written into the frame buffer. The initial values are all True, indicating that the color components can be written. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glColorMask")] - public static void ColorMask(bool red, bool green, bool blue, bool alpha) { throw new NotImplementedException(); } + public static void ColorMask(bool red, bool green, bool blue, bool alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of colors @@ -2322,7 +2322,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glColorPointer")] - public static void ColorPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void ColorPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of colors @@ -2344,7 +2344,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of colors @@ -2366,7 +2366,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of colors @@ -2388,7 +2388,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of colors @@ -2409,7 +2409,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glColorPointer")] public static void ColorPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T3 pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of colors @@ -2427,7 +2427,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a pointer to the first component of the first color element in the array. The initial value is 0. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glColorPointer")] - public static void ColorPointer(Int32 size, OpenTK.Graphics.ES11.ColorPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void ColorPointer(Int32 size, OpenTK.Graphics.ES11.ColorPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of colors @@ -2448,7 +2448,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.ES11.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of colors @@ -2469,7 +2469,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.ES11.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of colors @@ -2490,7 +2490,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.ES11.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of colors @@ -2510,7 +2510,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glColorPointer")] public static void ColorPointer(Int32 size, OpenTK.Graphics.ES11.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T3 pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image in a compressed format @@ -2541,7 +2541,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexImage2D")] - public static void CompressedTexImage2D(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage2D(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image in a compressed format @@ -2575,7 +2575,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image in a compressed format @@ -2609,7 +2609,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image in a compressed format @@ -2643,7 +2643,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image in a compressed format @@ -2676,7 +2676,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexImage2D")] public static void CompressedTexImage2D(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image in a compressed format @@ -2706,7 +2706,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexImage2D")] - public static void CompressedTexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image in a compressed format @@ -2739,7 +2739,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image in a compressed format @@ -2772,7 +2772,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image in a compressed format @@ -2805,7 +2805,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image in a compressed format @@ -2837,7 +2837,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexImage2D")] public static void CompressedTexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture subimage in a compressed format @@ -2871,7 +2871,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexSubImage2D")] - public static void CompressedTexSubImage2D(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexSubImage2D(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture subimage in a compressed format @@ -2908,7 +2908,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture subimage in a compressed format @@ -2945,7 +2945,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture subimage in a compressed format @@ -2982,7 +2982,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture subimage in a compressed format @@ -3018,7 +3018,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexSubImage2D")] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture subimage in a compressed format @@ -3051,7 +3051,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexSubImage2D")] - public static void CompressedTexSubImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexSubImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture subimage in a compressed format @@ -3087,7 +3087,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture subimage in a compressed format @@ -3123,7 +3123,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture subimage in a compressed format @@ -3159,7 +3159,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture subimage in a compressed format @@ -3194,7 +3194,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexSubImage2D")] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Copy pixels into a 2D texture image @@ -3225,7 +3225,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCopyTexImage2D")] - public static void CopyTexImage2D(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new NotImplementedException(); } + public static void CopyTexImage2D(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Copy pixels into a 2D texture image @@ -3255,7 +3255,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the width of the border. Must be 0. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCopyTexImage2D")] - public static void CopyTexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new NotImplementedException(); } + public static void CopyTexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Copy a two-dimensional texture subimage @@ -3286,7 +3286,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCopyTexSubImage2D")] - public static void CopyTexSubImage2D(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage2D(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Copy a two-dimensional texture subimage @@ -3316,7 +3316,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the height of the texture subimage. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCopyTexSubImage2D")] - public static void CopyTexSubImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify whether front- or back-facing polygons can be culled @@ -3326,7 +3326,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCullFace")] - public static void CullFace(OpenTK.Graphics.ES11.All mode) { throw new NotImplementedException(); } + public static void CullFace(OpenTK.Graphics.ES11.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify whether front- or back-facing polygons can be culled @@ -3335,7 +3335,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies whether front- or back-facing polygons are candidates for culling. Symbolic constants Front, Back, and FrontAndBack are accepted. The initial value is Back. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCullFace")] - public static void CullFace(OpenTK.Graphics.ES11.CullFaceMode mode) { throw new NotImplementedException(); } + public static void CullFace(OpenTK.Graphics.ES11.CullFaceMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Delete named buffer objects @@ -3345,7 +3345,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffer([CountAttribute(Parameter = "n")] Int32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffer([CountAttribute(Parameter = "n")] Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Delete named buffer objects @@ -3355,7 +3355,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffer([CountAttribute(Parameter = "n")] UInt32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffer([CountAttribute(Parameter = "n")] UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Delete named buffer objects @@ -3368,7 +3368,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Delete named buffer objects @@ -3381,7 +3381,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Delete named buffer objects @@ -3394,7 +3394,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* buffers) { throw new NotImplementedException(); } + public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Delete named buffer objects @@ -3407,7 +3407,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Delete named buffer objects @@ -3420,7 +3420,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Delete named buffer objects @@ -3433,7 +3433,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* buffers) { throw new NotImplementedException(); } + public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Delete named textures @@ -3443,7 +3443,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTexture([CountAttribute(Parameter = "n")] Int32 textures) { throw new NotImplementedException(); } + public static void DeleteTexture([CountAttribute(Parameter = "n")] Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Delete named textures @@ -3453,7 +3453,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTexture([CountAttribute(Parameter = "n")] UInt32 textures) { throw new NotImplementedException(); } + public static void DeleteTexture([CountAttribute(Parameter = "n")] UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Delete named textures @@ -3466,7 +3466,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Delete named textures @@ -3479,7 +3479,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Delete named textures @@ -3492,7 +3492,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures) { throw new NotImplementedException(); } + public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Delete named textures @@ -3505,7 +3505,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Delete named textures @@ -3518,7 +3518,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Delete named textures @@ -3531,7 +3531,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures) { throw new NotImplementedException(); } + public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify the value used for depth buffer comparisons @@ -3541,7 +3541,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDepthFunc")] - public static void DepthFunc(OpenTK.Graphics.ES11.All func) { throw new NotImplementedException(); } + public static void DepthFunc(OpenTK.Graphics.ES11.All func) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify the value used for depth buffer comparisons @@ -3550,7 +3550,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the depth comparison function. Symbolic constants Never, Less, Equal, Lequal, Greater, Notequal, Gequal, and Always are accepted. The initial value is Less. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDepthFunc")] - public static void DepthFunc(OpenTK.Graphics.ES11.DepthFunction func) { throw new NotImplementedException(); } + public static void DepthFunc(OpenTK.Graphics.ES11.DepthFunction func) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Enable or disable writing into the depth buffer @@ -3559,7 +3559,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies whether the depth buffer is enabled for writing. If flag is False, depth buffer writing is disabled. Otherwise, it is enabled. Initially, depth buffer writing is enabled. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDepthMask")] - public static void DepthMask(bool flag) { throw new NotImplementedException(); } + public static void DepthMask(bool flag) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify mapping of depth values from normalized device coordinates to window coordinates @@ -3571,35 +3571,35 @@ namespace OpenTK.Graphics.ES11 /// Specifies the mapping of the far clipping plane to window coordinates. The initial value is 1. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDepthRangef")] - public static void DepthRange(Single n, Single f) { throw new NotImplementedException(); } + public static void DepthRange(Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDepthRangex")] - public static void DepthRangex(Int32 n, Int32 f) { throw new NotImplementedException(); } + public static void DepthRangex(Int32 n, Int32 f) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDisable")] - public static void Disable(OpenTK.Graphics.ES11.All cap) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES11.All cap) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDisable")] - public static void Disable(OpenTK.Graphics.ES11.EnableCap cap) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES11.EnableCap cap) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDisableClientState")] - public static void DisableClientState(OpenTK.Graphics.ES11.All array) { throw new NotImplementedException(); } + public static void DisableClientState(OpenTK.Graphics.ES11.All array) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDisableClientState")] - public static void DisableClientState(OpenTK.Graphics.ES11.EnableCap array) { throw new NotImplementedException(); } + public static void DisableClientState(OpenTK.Graphics.ES11.EnableCap array) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Render primitives from array data @@ -3615,7 +3615,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawArrays")] - public static void DrawArrays(OpenTK.Graphics.ES11.All mode, Int32 first, Int32 count) { throw new NotImplementedException(); } + public static void DrawArrays(OpenTK.Graphics.ES11.All mode, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Render primitives from array data @@ -3631,7 +3631,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawArrays")] - public static void DrawArrays(OpenTK.Graphics.ES11.BeginMode mode, Int32 first, Int32 count) { throw new NotImplementedException(); } + public static void DrawArrays(OpenTK.Graphics.ES11.BeginMode mode, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Render primitives from array data @@ -3646,7 +3646,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the number of indices to be rendered. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawArrays")] - public static void DrawArrays(OpenTK.Graphics.ES11.PrimitiveType mode, Int32 first, Int32 count) { throw new NotImplementedException(); } + public static void DrawArrays(OpenTK.Graphics.ES11.PrimitiveType mode, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Render primitives from array data @@ -3665,7 +3665,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawElements")] - public static void DrawElements(OpenTK.Graphics.ES11.All mode, Int32 count, OpenTK.Graphics.ES11.All type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawElements(OpenTK.Graphics.ES11.All mode, Int32 count, OpenTK.Graphics.ES11.All type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Render primitives from array data @@ -3687,7 +3687,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES11.All mode, Int32 count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Render primitives from array data @@ -3709,7 +3709,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES11.All mode, Int32 count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Render primitives from array data @@ -3731,7 +3731,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES11.All mode, Int32 count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Render primitives from array data @@ -3752,7 +3752,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawElements")] public static void DrawElements(OpenTK.Graphics.ES11.All mode, Int32 count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Render primitives from array data @@ -3771,7 +3771,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawElements")] - public static void DrawElements(OpenTK.Graphics.ES11.BeginMode mode, Int32 count, OpenTK.Graphics.ES11.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawElements(OpenTK.Graphics.ES11.BeginMode mode, Int32 count, OpenTK.Graphics.ES11.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Render primitives from array data @@ -3793,7 +3793,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES11.BeginMode mode, Int32 count, OpenTK.Graphics.ES11.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Render primitives from array data @@ -3815,7 +3815,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES11.BeginMode mode, Int32 count, OpenTK.Graphics.ES11.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Render primitives from array data @@ -3837,7 +3837,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES11.BeginMode mode, Int32 count, OpenTK.Graphics.ES11.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Render primitives from array data @@ -3858,7 +3858,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawElements")] public static void DrawElements(OpenTK.Graphics.ES11.BeginMode mode, Int32 count, OpenTK.Graphics.ES11.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Render primitives from array data @@ -3876,7 +3876,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a pointer to the location where the indices are stored. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawElements")] - public static void DrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES11.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES11.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Render primitives from array data @@ -3897,7 +3897,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES11.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Render primitives from array data @@ -3918,7 +3918,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES11.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Render primitives from array data @@ -3939,7 +3939,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES11.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Render primitives from array data @@ -3959,7 +3959,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawElements")] public static void DrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES11.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Enable or disable server-side GL capabilities @@ -3969,7 +3969,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glEnable")] - public static void Enable(OpenTK.Graphics.ES11.All cap) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES11.All cap) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Enable or disable server-side GL capabilities @@ -3978,7 +3978,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a symbolic constant indicating a GL capability. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glEnable")] - public static void Enable(OpenTK.Graphics.ES11.EnableCap cap) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES11.EnableCap cap) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Enable or disable client-side capability @@ -3988,7 +3988,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glEnableClientState")] - public static void EnableClientState(OpenTK.Graphics.ES11.All array) { throw new NotImplementedException(); } + public static void EnableClientState(OpenTK.Graphics.ES11.All array) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Enable or disable client-side capability @@ -3997,19 +3997,19 @@ namespace OpenTK.Graphics.ES11 /// Specifies the capability to enable. Symbolic constants ColorArray, EdgeFlagArray, FogCoordArray, IndexArray, NormalArray, SecondaryColorArray, TextureCoordArray, and VertexArray are accepted. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glEnableClientState")] - public static void EnableClientState(OpenTK.Graphics.ES11.EnableCap array) { throw new NotImplementedException(); } + public static void EnableClientState(OpenTK.Graphics.ES11.EnableCap array) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Block until all GL execution is complete /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFinish")] - public static void Finish() { throw new NotImplementedException(); } + public static void Finish() { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Force execution of GL commands in finite time /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFlush")] - public static void Flush() { throw new NotImplementedException(); } + public static void Flush() { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify fog parameters @@ -4022,7 +4022,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFogf")] - public static void Fog(OpenTK.Graphics.ES11.All pname, Single param) { throw new NotImplementedException(); } + public static void Fog(OpenTK.Graphics.ES11.All pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify fog parameters @@ -4034,7 +4034,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the value that pname will be set to. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFogf")] - public static void Fog(OpenTK.Graphics.ES11.FogParameter pname, Single param) { throw new NotImplementedException(); } + public static void Fog(OpenTK.Graphics.ES11.FogParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify fog parameters @@ -4048,7 +4048,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFogfv")] [CLSCompliant(false)] - public static void Fog(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void Fog(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify fog parameters @@ -4062,7 +4062,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFogfv")] [CLSCompliant(false)] - public static unsafe void Fog(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void Fog(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify fog parameters @@ -4075,7 +4075,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFogfv")] [CLSCompliant(false)] - public static void Fog(OpenTK.Graphics.ES11.FogParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void Fog(OpenTK.Graphics.ES11.FogParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify fog parameters @@ -4088,27 +4088,27 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFogfv")] [CLSCompliant(false)] - public static unsafe void Fog(OpenTK.Graphics.ES11.FogParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void Fog(OpenTK.Graphics.ES11.FogParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFogx")] - public static void Fogx(OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void Fogx(OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFogxv")] [CLSCompliant(false)] - public static void Fogx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void Fogx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFogxv")] [CLSCompliant(false)] - public static unsafe void Fogx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void Fogx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define front- and back-facing polygons @@ -4118,7 +4118,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFrontFace")] - public static void FrontFace(OpenTK.Graphics.ES11.All mode) { throw new NotImplementedException(); } + public static void FrontFace(OpenTK.Graphics.ES11.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define front- and back-facing polygons @@ -4127,7 +4127,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the orientation of front-facing polygons. Cw and Ccw are accepted. The initial value is Ccw. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFrontFace")] - public static void FrontFace(OpenTK.Graphics.ES11.FrontFaceDirection mode) { throw new NotImplementedException(); } + public static void FrontFace(OpenTK.Graphics.ES11.FrontFaceDirection mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Multiply the current matrix by a perspective matrix @@ -4151,7 +4151,7 @@ namespace OpenTK.Graphics.ES11 /// Specify the distances to the near and far depth clipping planes. Both distances must be positive. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFrustumf")] - public static void Frustum(Single l, Single r, Single b, Single t, Single n, Single f) { throw new NotImplementedException(); } + public static void Frustum(Single l, Single r, Single b, Single t, Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -4161,14 +4161,14 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFrustumx")] - public static void Frustumx(Int32 l, Int32 r, Int32 b, Int32 t, Int32 n, Int32 f) { throw new NotImplementedException(); } + public static void Frustumx(Int32 l, Int32 r, Int32 b, Int32 t, Int32 n, Int32 f) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Generate buffer object names /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static Int32 GenBuffer() { throw new NotImplementedException(); } + public static Int32 GenBuffer() { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Generate buffer object names @@ -4181,7 +4181,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Generate buffer object names @@ -4194,7 +4194,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Generate buffer object names @@ -4207,7 +4207,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* buffers) { throw new NotImplementedException(); } + public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Generate buffer object names @@ -4220,7 +4220,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Generate buffer object names @@ -4233,7 +4233,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Generate buffer object names @@ -4246,14 +4246,14 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* buffers) { throw new NotImplementedException(); } + public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Generate texture names /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static Int32 GenTexture() { throw new NotImplementedException(); } + public static Int32 GenTexture() { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Generate texture names @@ -4266,7 +4266,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Generate texture names @@ -4279,7 +4279,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Generate texture names @@ -4292,7 +4292,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* textures) { throw new NotImplementedException(); } + public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Generate texture names @@ -4305,7 +4305,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Generate texture names @@ -4318,7 +4318,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Generate texture names @@ -4331,20 +4331,20 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* textures) { throw new NotImplementedException(); } + public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static bool GetBoolean(OpenTK.Graphics.ES11.All pname) { throw new NotImplementedException(); } + public static bool GetBoolean(OpenTK.Graphics.ES11.All pname) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static bool GetBoolean(OpenTK.Graphics.ES11.GetPName pname) { throw new NotImplementedException(); } + public static bool GetBoolean(OpenTK.Graphics.ES11.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -4352,7 +4352,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] bool[] data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -4360,7 +4360,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out bool data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -4368,28 +4368,28 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static unsafe void GetBoolean(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBoolean(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool[] data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out bool data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static unsafe void GetBoolean(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBoolean(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return parameters of a buffer object @@ -4406,7 +4406,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetBufferParameteriv")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return parameters of a buffer object @@ -4423,7 +4423,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetBufferParameteriv")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return parameters of a buffer object @@ -4440,7 +4440,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetBufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetBufferParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return parameters of a buffer object @@ -4456,7 +4456,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetBufferParameteriv")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.ES11.BufferTargetArb target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES11.BufferTargetArb target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return parameters of a buffer object @@ -4472,7 +4472,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetBufferParameteriv")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.ES11.BufferTargetArb target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES11.BufferTargetArb target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return parameters of a buffer object @@ -4488,7 +4488,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetBufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetBufferParameter(OpenTK.Graphics.ES11.BufferTargetArb target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.ES11.BufferTargetArb target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return the coefficients of the specified clipping plane @@ -4501,7 +4501,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanef")] [CLSCompliant(false)] - public static void GetClipPlane(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] Single[] equation) { throw new NotImplementedException(); } + public static void GetClipPlane(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] Single[] equation) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return the coefficients of the specified clipping plane @@ -4514,7 +4514,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanef")] [CLSCompliant(false)] - public static void GetClipPlane(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] out Single equation) { throw new NotImplementedException(); } + public static void GetClipPlane(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] out Single equation) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return the coefficients of the specified clipping plane @@ -4527,74 +4527,74 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanef")] [CLSCompliant(false)] - public static unsafe void GetClipPlane(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] Single* equation) { throw new NotImplementedException(); } + public static unsafe void GetClipPlane(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] Single* equation) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanex")] [CLSCompliant(false)] - public static void GetClipPlanex(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] Int32[] equation) { throw new NotImplementedException(); } + public static void GetClipPlanex(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] Int32[] equation) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanex")] [CLSCompliant(false)] - public static void GetClipPlanex(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] out Int32 equation) { throw new NotImplementedException(); } + public static void GetClipPlanex(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] out Int32 equation) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanex")] [CLSCompliant(false)] - public static unsafe void GetClipPlanex(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] Int32* equation) { throw new NotImplementedException(); } + public static unsafe void GetClipPlanex(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] Int32* equation) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return error information /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetError")] - public static OpenTK.Graphics.ES11.ErrorCode GetError() { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES11.ErrorCode GetError() { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFixedv")] [CLSCompliant(false)] - public static Int32 GetFixed(OpenTK.Graphics.ES11.All pname) { throw new NotImplementedException(); } + public static Int32 GetFixed(OpenTK.Graphics.ES11.All pname) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFixedv")] [CLSCompliant(false)] - public static void GetFixed(OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFixed(OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFixedv")] [CLSCompliant(false)] - public static void GetFixed(OpenTK.Graphics.ES11.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFixed(OpenTK.Graphics.ES11.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFixedv")] [CLSCompliant(false)] - public static unsafe void GetFixed(OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFixed(OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static Single GetFloat(OpenTK.Graphics.ES11.All pname) { throw new NotImplementedException(); } + public static Single GetFloat(OpenTK.Graphics.ES11.All pname) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static Single GetFloat(OpenTK.Graphics.ES11.GetPName pname) { throw new NotImplementedException(); } + public static Single GetFloat(OpenTK.Graphics.ES11.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -4602,7 +4602,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -4610,7 +4610,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -4618,41 +4618,41 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static Int32 GetInteger(OpenTK.Graphics.ES11.All pname) { throw new NotImplementedException(); } + public static Int32 GetInteger(OpenTK.Graphics.ES11.All pname) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static Int32 GetInteger(OpenTK.Graphics.ES11.GetPName pname) { throw new NotImplementedException(); } + public static Int32 GetInteger(OpenTK.Graphics.ES11.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -4660,7 +4660,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -4668,7 +4668,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -4676,28 +4676,28 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return light source parameter values @@ -4714,7 +4714,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetLightfv")] [CLSCompliant(false)] - public static void GetLight(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetLight(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return light source parameter values @@ -4731,7 +4731,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetLightfv")] [CLSCompliant(false)] - public static void GetLight(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetLight(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return light source parameter values @@ -4748,7 +4748,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetLightfv")] [CLSCompliant(false)] - public static unsafe void GetLight(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetLight(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return light source parameter values @@ -4764,7 +4764,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetLightfv")] [CLSCompliant(false)] - public static void GetLight(OpenTK.Graphics.ES11.LightName light, OpenTK.Graphics.ES11.LightParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetLight(OpenTK.Graphics.ES11.LightName light, OpenTK.Graphics.ES11.LightParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return light source parameter values @@ -4780,7 +4780,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetLightfv")] [CLSCompliant(false)] - public static void GetLight(OpenTK.Graphics.ES11.LightName light, OpenTK.Graphics.ES11.LightParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetLight(OpenTK.Graphics.ES11.LightName light, OpenTK.Graphics.ES11.LightParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return light source parameter values @@ -4796,7 +4796,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetLightfv")] [CLSCompliant(false)] - public static unsafe void GetLight(OpenTK.Graphics.ES11.LightName light, OpenTK.Graphics.ES11.LightParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetLight(OpenTK.Graphics.ES11.LightName light, OpenTK.Graphics.ES11.LightParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -4804,7 +4804,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetLightxv")] [CLSCompliant(false)] - public static void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -4812,7 +4812,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetLightxv")] [CLSCompliant(false)] - public static void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -4820,7 +4820,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetLightxv")] [CLSCompliant(false)] - public static unsafe void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return material parameters @@ -4837,7 +4837,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetMaterialfv")] [CLSCompliant(false)] - public static void GetMaterial(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetMaterial(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return material parameters @@ -4854,7 +4854,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetMaterialfv")] [CLSCompliant(false)] - public static void GetMaterial(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetMaterial(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return material parameters @@ -4871,7 +4871,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetMaterialfv")] [CLSCompliant(false)] - public static unsafe void GetMaterial(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetMaterial(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return material parameters @@ -4887,7 +4887,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetMaterialfv")] [CLSCompliant(false)] - public static void GetMaterial(OpenTK.Graphics.ES11.MaterialFace face, OpenTK.Graphics.ES11.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetMaterial(OpenTK.Graphics.ES11.MaterialFace face, OpenTK.Graphics.ES11.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return material parameters @@ -4903,7 +4903,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetMaterialfv")] [CLSCompliant(false)] - public static void GetMaterial(OpenTK.Graphics.ES11.MaterialFace face, OpenTK.Graphics.ES11.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetMaterial(OpenTK.Graphics.ES11.MaterialFace face, OpenTK.Graphics.ES11.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return material parameters @@ -4919,7 +4919,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetMaterialfv")] [CLSCompliant(false)] - public static unsafe void GetMaterial(OpenTK.Graphics.ES11.MaterialFace face, OpenTK.Graphics.ES11.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetMaterial(OpenTK.Graphics.ES11.MaterialFace face, OpenTK.Graphics.ES11.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -4927,7 +4927,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetMaterialxv")] [CLSCompliant(false)] - public static void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -4935,7 +4935,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetMaterialxv")] [CLSCompliant(false)] - public static void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -4943,7 +4943,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetMaterialxv")] [CLSCompliant(false)] - public static unsafe void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -4951,7 +4951,7 @@ namespace OpenTK.Graphics.ES11 /// [length: size] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetPixelMapxv")] [CLSCompliant(false)] - public static void GetPixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32[] values) { throw new NotImplementedException(); } + public static void GetPixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// /// @@ -4959,7 +4959,7 @@ namespace OpenTK.Graphics.ES11 /// [length: size] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetPixelMapxv")] [CLSCompliant(false)] - public static void GetPixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out Int32 values) { throw new NotImplementedException(); } + public static void GetPixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// /// @@ -4967,7 +4967,7 @@ namespace OpenTK.Graphics.ES11 /// [length: size] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetPixelMapxv")] [CLSCompliant(false)] - public static unsafe void GetPixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetPixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return the address of the specified pointer @@ -4980,7 +4980,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")] - public static void GetPointer(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetPointer(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return the address of the specified pointer @@ -4996,7 +4996,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return the address of the specified pointer @@ -5012,7 +5012,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return the address of the specified pointer @@ -5028,7 +5028,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return the address of the specified pointer @@ -5043,7 +5043,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")] public static void GetPointer(OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return the address of the specified pointer @@ -5055,7 +5055,7 @@ namespace OpenTK.Graphics.ES11 /// Returns the pointer value specified by pname. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")] - public static void GetPointer(OpenTK.Graphics.ES11.GetPointervPName pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetPointer(OpenTK.Graphics.ES11.GetPointervPName pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return the address of the specified pointer @@ -5070,7 +5070,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES11.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return the address of the specified pointer @@ -5085,7 +5085,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES11.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return the address of the specified pointer @@ -5100,7 +5100,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES11.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return the address of the specified pointer @@ -5114,7 +5114,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")] public static void GetPointer(OpenTK.Graphics.ES11.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return a string describing the current GL connection @@ -5124,7 +5124,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetString")] - public static String GetString(OpenTK.Graphics.ES11.All name) { throw new NotImplementedException(); } + public static String GetString(OpenTK.Graphics.ES11.All name) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return a string describing the current GL connection @@ -5133,7 +5133,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a symbolic constant, one of Vendor, Renderer, Version, ShadingLanguageVersion, or Extensions. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetString")] - public static String GetString(OpenTK.Graphics.ES11.StringName name) { throw new NotImplementedException(); } + public static String GetString(OpenTK.Graphics.ES11.StringName name) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture environment parameters @@ -5150,7 +5150,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnvfv")] [CLSCompliant(false)] - public static void GetTexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture environment parameters @@ -5167,7 +5167,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnvfv")] [CLSCompliant(false)] - public static void GetTexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture environment parameters @@ -5184,7 +5184,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnvfv")] [CLSCompliant(false)] - public static unsafe void GetTexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture environment parameters @@ -5200,7 +5200,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnvfv")] [CLSCompliant(false)] - public static void GetTexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture environment parameters @@ -5216,7 +5216,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnvfv")] [CLSCompliant(false)] - public static void GetTexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture environment parameters @@ -5232,7 +5232,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnvfv")] [CLSCompliant(false)] - public static unsafe void GetTexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture environment parameters @@ -5249,7 +5249,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnviv")] [CLSCompliant(false)] - public static void GetTexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture environment parameters @@ -5266,7 +5266,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnviv")] [CLSCompliant(false)] - public static void GetTexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture environment parameters @@ -5283,7 +5283,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnviv")] [CLSCompliant(false)] - public static unsafe void GetTexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture environment parameters @@ -5299,7 +5299,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnviv")] [CLSCompliant(false)] - public static void GetTexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture environment parameters @@ -5315,7 +5315,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnviv")] [CLSCompliant(false)] - public static void GetTexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture environment parameters @@ -5331,7 +5331,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnviv")] [CLSCompliant(false)] - public static unsafe void GetTexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -5339,7 +5339,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnvxv")] [CLSCompliant(false)] - public static void GetTexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -5347,7 +5347,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnvxv")] [CLSCompliant(false)] - public static void GetTexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -5355,7 +5355,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnvxv")] [CLSCompliant(false)] - public static unsafe void GetTexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -5372,7 +5372,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameterfv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -5389,7 +5389,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameterfv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -5406,7 +5406,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameterfv")] [CLSCompliant(false)] - public static unsafe void GetTexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -5422,7 +5422,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameterfv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -5438,7 +5438,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameterfv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -5454,7 +5454,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameterfv")] [CLSCompliant(false)] - public static unsafe void GetTexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -5471,7 +5471,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameteriv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -5488,7 +5488,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameteriv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -5505,7 +5505,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameteriv")] [CLSCompliant(false)] - public static unsafe void GetTexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -5521,7 +5521,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameteriv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -5537,7 +5537,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameteriv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -5553,7 +5553,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameteriv")] [CLSCompliant(false)] - public static unsafe void GetTexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -5561,7 +5561,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameterxv")] [CLSCompliant(false)] - public static void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -5569,7 +5569,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameterxv")] [CLSCompliant(false)] - public static void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -5577,7 +5577,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameterxv")] [CLSCompliant(false)] - public static unsafe void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify implementation-specific hints @@ -5590,7 +5590,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glHint")] - public static void Hint(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All mode) { throw new NotImplementedException(); } + public static void Hint(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify implementation-specific hints @@ -5602,7 +5602,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a symbolic constant indicating the desired behavior. Fastest, Nicest, and DontCare are accepted. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glHint")] - public static void Hint(OpenTK.Graphics.ES11.HintTarget target, OpenTK.Graphics.ES11.HintMode mode) { throw new NotImplementedException(); } + public static void Hint(OpenTK.Graphics.ES11.HintTarget target, OpenTK.Graphics.ES11.HintMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Determine if a name corresponds to a buffer object @@ -5612,7 +5612,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glIsBuffer")] [CLSCompliant(false)] - public static bool IsBuffer(Int32 buffer) { throw new NotImplementedException(); } + public static bool IsBuffer(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Determine if a name corresponds to a buffer object @@ -5622,7 +5622,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glIsBuffer")] [CLSCompliant(false)] - public static bool IsBuffer(UInt32 buffer) { throw new NotImplementedException(); } + public static bool IsBuffer(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Test whether a capability is enabled @@ -5632,7 +5632,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glIsEnabled")] - public static bool IsEnabled(OpenTK.Graphics.ES11.All cap) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES11.All cap) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Test whether a capability is enabled @@ -5641,7 +5641,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a symbolic constant indicating a GL capability. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glIsEnabled")] - public static bool IsEnabled(OpenTK.Graphics.ES11.EnableCap cap) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES11.EnableCap cap) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Determine if a name corresponds to a texture @@ -5651,7 +5651,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glIsTexture")] [CLSCompliant(false)] - public static bool IsTexture(Int32 texture) { throw new NotImplementedException(); } + public static bool IsTexture(Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Determine if a name corresponds to a texture @@ -5661,7 +5661,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glIsTexture")] [CLSCompliant(false)] - public static bool IsTexture(UInt32 texture) { throw new NotImplementedException(); } + public static bool IsTexture(UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set light source parameters @@ -5677,7 +5677,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightf")] - public static void Light(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, Single param) { throw new NotImplementedException(); } + public static void Light(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set light source parameters @@ -5692,7 +5692,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the value that parameter pname of light source light will be set to. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightf")] - public static void Light(OpenTK.Graphics.ES11.LightName light, OpenTK.Graphics.ES11.LightParameter pname, Single param) { throw new NotImplementedException(); } + public static void Light(OpenTK.Graphics.ES11.LightName light, OpenTK.Graphics.ES11.LightParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set light source parameters @@ -5709,7 +5709,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightfv")] [CLSCompliant(false)] - public static void Light(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void Light(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set light source parameters @@ -5726,7 +5726,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightfv")] [CLSCompliant(false)] - public static unsafe void Light(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void Light(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set light source parameters @@ -5742,7 +5742,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightfv")] [CLSCompliant(false)] - public static void Light(OpenTK.Graphics.ES11.LightName light, OpenTK.Graphics.ES11.LightParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void Light(OpenTK.Graphics.ES11.LightName light, OpenTK.Graphics.ES11.LightParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set light source parameters @@ -5758,7 +5758,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightfv")] [CLSCompliant(false)] - public static unsafe void Light(OpenTK.Graphics.ES11.LightName light, OpenTK.Graphics.ES11.LightParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void Light(OpenTK.Graphics.ES11.LightName light, OpenTK.Graphics.ES11.LightParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set the lighting model parameters @@ -5771,7 +5771,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightModelf")] - public static void LightModel(OpenTK.Graphics.ES11.All pname, Single param) { throw new NotImplementedException(); } + public static void LightModel(OpenTK.Graphics.ES11.All pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set the lighting model parameters @@ -5783,7 +5783,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the value that param will be set to. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightModelf")] - public static void LightModel(OpenTK.Graphics.ES11.LightModelParameter pname, Single param) { throw new NotImplementedException(); } + public static void LightModel(OpenTK.Graphics.ES11.LightModelParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set the lighting model parameters @@ -5797,7 +5797,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightModelfv")] [CLSCompliant(false)] - public static void LightModel(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void LightModel(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set the lighting model parameters @@ -5811,7 +5811,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightModelfv")] [CLSCompliant(false)] - public static unsafe void LightModel(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void LightModel(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set the lighting model parameters @@ -5824,7 +5824,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightModelfv")] [CLSCompliant(false)] - public static void LightModel(OpenTK.Graphics.ES11.LightModelParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void LightModel(OpenTK.Graphics.ES11.LightModelParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set the lighting model parameters @@ -5837,34 +5837,34 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightModelfv")] [CLSCompliant(false)] - public static unsafe void LightModel(OpenTK.Graphics.ES11.LightModelParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void LightModel(OpenTK.Graphics.ES11.LightModelParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightModelx")] - public static void LightModelx(OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void LightModelx(OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightModelxv")] [CLSCompliant(false)] - public static void LightModelx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void LightModelx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightModelxv")] [CLSCompliant(false)] - public static unsafe void LightModelx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void LightModelx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightx")] - public static void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -5872,7 +5872,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightxv")] [CLSCompliant(false)] - public static void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -5880,7 +5880,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightxv")] [CLSCompliant(false)] - public static unsafe void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify the width of rasterized lines @@ -5889,18 +5889,18 @@ namespace OpenTK.Graphics.ES11 /// Specifies the width of rasterized lines. The initial value is 1. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLineWidth")] - public static void LineWidth(Single width) { throw new NotImplementedException(); } + public static void LineWidth(Single width) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLineWidthx")] - public static void LineWidthx(Int32 width) { throw new NotImplementedException(); } + public static void LineWidthx(Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Replace the current matrix with the identity matrix /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLoadIdentity")] - public static void LoadIdentity() { throw new NotImplementedException(); } + public static void LoadIdentity() { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Replace the current matrix with the specified matrix @@ -5910,7 +5910,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLoadMatrixf")] [CLSCompliant(false)] - public static void LoadMatrix([CountAttribute(Count = 16)] Single[] m) { throw new NotImplementedException(); } + public static void LoadMatrix([CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Replace the current matrix with the specified matrix @@ -5920,7 +5920,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLoadMatrixf")] [CLSCompliant(false)] - public static void LoadMatrix([CountAttribute(Count = 16)] ref Single m) { throw new NotImplementedException(); } + public static void LoadMatrix([CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Replace the current matrix with the specified matrix @@ -5930,25 +5930,25 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLoadMatrixf")] [CLSCompliant(false)] - public static unsafe void LoadMatrix([CountAttribute(Count = 16)] Single* m) { throw new NotImplementedException(); } + public static unsafe void LoadMatrix([CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [length: 16] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLoadMatrixx")] [CLSCompliant(false)] - public static void LoadMatrixx([CountAttribute(Count = 16)] Int32[] m) { throw new NotImplementedException(); } + public static void LoadMatrixx([CountAttribute(Count = 16)] Int32[] m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [length: 16] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLoadMatrixx")] [CLSCompliant(false)] - public static void LoadMatrixx([CountAttribute(Count = 16)] ref Int32 m) { throw new NotImplementedException(); } + public static void LoadMatrixx([CountAttribute(Count = 16)] ref Int32 m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [length: 16] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLoadMatrixx")] [CLSCompliant(false)] - public static unsafe void LoadMatrixx([CountAttribute(Count = 16)] Int32* m) { throw new NotImplementedException(); } + public static unsafe void LoadMatrixx([CountAttribute(Count = 16)] Int32* m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a logical pixel operation for rendering @@ -5958,7 +5958,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLogicOp")] - public static void LogicOp(OpenTK.Graphics.ES11.All opcode) { throw new NotImplementedException(); } + public static void LogicOp(OpenTK.Graphics.ES11.All opcode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a logical pixel operation for rendering @@ -5967,7 +5967,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a symbolic constant that selects a logical operation. The following symbols are accepted: Clear, Set, Copy, CopyInverted, Noop, Invert, And, Nand, Or, Nor, Xor, Equiv, AndReverse, AndInverted, OrReverse, and OrInverted. The initial value is Copy. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLogicOp")] - public static void LogicOp(OpenTK.Graphics.ES11.LogicOp opcode) { throw new NotImplementedException(); } + public static void LogicOp(OpenTK.Graphics.ES11.LogicOp opcode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify material parameters for the lighting model @@ -5983,7 +5983,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMaterialf")] - public static void Material(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, Single param) { throw new NotImplementedException(); } + public static void Material(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify material parameters for the lighting model @@ -5998,7 +5998,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the value that parameter Shininess will be set to. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMaterialf")] - public static void Material(OpenTK.Graphics.ES11.MaterialFace face, OpenTK.Graphics.ES11.MaterialParameter pname, Single param) { throw new NotImplementedException(); } + public static void Material(OpenTK.Graphics.ES11.MaterialFace face, OpenTK.Graphics.ES11.MaterialParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify material parameters for the lighting model @@ -6015,7 +6015,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMaterialfv")] [CLSCompliant(false)] - public static void Material(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void Material(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify material parameters for the lighting model @@ -6032,7 +6032,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMaterialfv")] [CLSCompliant(false)] - public static unsafe void Material(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void Material(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify material parameters for the lighting model @@ -6048,7 +6048,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMaterialfv")] [CLSCompliant(false)] - public static void Material(OpenTK.Graphics.ES11.MaterialFace face, OpenTK.Graphics.ES11.MaterialParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void Material(OpenTK.Graphics.ES11.MaterialFace face, OpenTK.Graphics.ES11.MaterialParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify material parameters for the lighting model @@ -6064,14 +6064,14 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMaterialfv")] [CLSCompliant(false)] - public static unsafe void Material(OpenTK.Graphics.ES11.MaterialFace face, OpenTK.Graphics.ES11.MaterialParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void Material(OpenTK.Graphics.ES11.MaterialFace face, OpenTK.Graphics.ES11.MaterialParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMaterialx")] - public static void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -6079,7 +6079,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMaterialxv")] [CLSCompliant(false)] - public static void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -6087,7 +6087,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMaterialxv")] [CLSCompliant(false)] - public static unsafe void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify which matrix is the current matrix @@ -6097,7 +6097,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMatrixMode")] - public static void MatrixMode(OpenTK.Graphics.ES11.All mode) { throw new NotImplementedException(); } + public static void MatrixMode(OpenTK.Graphics.ES11.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify which matrix is the current matrix @@ -6106,7 +6106,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies which matrix stack is the target for subsequent matrix operations. Three values are accepted: Modelview, Projection, and Texture. The initial value is Modelview. Additionally, if the ARB_imaging extension is supported, Color is also accepted. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMatrixMode")] - public static void MatrixMode(OpenTK.Graphics.ES11.MatrixMode mode) { throw new NotImplementedException(); } + public static void MatrixMode(OpenTK.Graphics.ES11.MatrixMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set the current texture coordinates @@ -6128,7 +6128,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMultiTexCoord4f")] - public static void MultiTexCoord4(OpenTK.Graphics.ES11.All target, Single s, Single t, Single r, Single q) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.ES11.All target, Single s, Single t, Single r, Single q) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set the current texture coordinates @@ -6149,7 +6149,7 @@ namespace OpenTK.Graphics.ES11 /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMultiTexCoord4f")] - public static void MultiTexCoord4(OpenTK.Graphics.ES11.TextureUnit target, Single s, Single t, Single r, Single q) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.ES11.TextureUnit target, Single s, Single t, Single r, Single q) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -6158,7 +6158,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMultiTexCoord4x")] - public static void MultiTexCoord4x(OpenTK.Graphics.ES11.All texture, Int32 s, Int32 t, Int32 r, Int32 q) { throw new NotImplementedException(); } + public static void MultiTexCoord4x(OpenTK.Graphics.ES11.All texture, Int32 s, Int32 t, Int32 r, Int32 q) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Multiply the current matrix with the specified matrix @@ -6168,7 +6168,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMultMatrixf")] [CLSCompliant(false)] - public static void MultMatrix([CountAttribute(Count = 16)] Single[] m) { throw new NotImplementedException(); } + public static void MultMatrix([CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Multiply the current matrix with the specified matrix @@ -6178,7 +6178,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMultMatrixf")] [CLSCompliant(false)] - public static void MultMatrix([CountAttribute(Count = 16)] ref Single m) { throw new NotImplementedException(); } + public static void MultMatrix([CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Multiply the current matrix with the specified matrix @@ -6188,25 +6188,25 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMultMatrixf")] [CLSCompliant(false)] - public static unsafe void MultMatrix([CountAttribute(Count = 16)] Single* m) { throw new NotImplementedException(); } + public static unsafe void MultMatrix([CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [length: 16] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMultMatrixx")] [CLSCompliant(false)] - public static void MultMatrixx([CountAttribute(Count = 16)] Int32[] m) { throw new NotImplementedException(); } + public static void MultMatrixx([CountAttribute(Count = 16)] Int32[] m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [length: 16] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMultMatrixx")] [CLSCompliant(false)] - public static void MultMatrixx([CountAttribute(Count = 16)] ref Int32 m) { throw new NotImplementedException(); } + public static void MultMatrixx([CountAttribute(Count = 16)] ref Int32 m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [length: 16] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMultMatrixx")] [CLSCompliant(false)] - public static unsafe void MultMatrixx([CountAttribute(Count = 16)] Int32* m) { throw new NotImplementedException(); } + public static unsafe void MultMatrixx([CountAttribute(Count = 16)] Int32* m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set the current normal vector @@ -6221,14 +6221,14 @@ namespace OpenTK.Graphics.ES11 /// Specify the , , and coordinates of the new current normal. The initial value of the current normal is the unit vector, (0, 0, 1). /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glNormal3f")] - public static void Normal3(Single nx, Single ny, Single nz) { throw new NotImplementedException(); } + public static void Normal3(Single nx, Single ny, Single nz) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glNormal3x")] - public static void Normal3x(Int32 nx, Int32 ny, Int32 nz) { throw new NotImplementedException(); } + public static void Normal3x(Int32 nx, Int32 ny, Int32 nz) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of normals @@ -6244,7 +6244,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glNormalPointer")] - public static void NormalPointer(OpenTK.Graphics.ES11.All type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void NormalPointer(OpenTK.Graphics.ES11.All type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of normals @@ -6263,7 +6263,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of normals @@ -6282,7 +6282,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of normals @@ -6301,7 +6301,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of normals @@ -6319,7 +6319,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glNormalPointer")] public static void NormalPointer(OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of normals @@ -6334,7 +6334,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a pointer to the first coordinate of the first normal in the array. The initial value is 0. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glNormalPointer")] - public static void NormalPointer(OpenTK.Graphics.ES11.NormalPointerType type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void NormalPointer(OpenTK.Graphics.ES11.NormalPointerType type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of normals @@ -6352,7 +6352,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.ES11.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of normals @@ -6370,7 +6370,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.ES11.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of normals @@ -6388,7 +6388,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.ES11.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of normals @@ -6405,7 +6405,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glNormalPointer")] public static void NormalPointer(OpenTK.Graphics.ES11.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Multiply the current matrix with an orthographic matrix @@ -6429,7 +6429,7 @@ namespace OpenTK.Graphics.ES11 /// Specify the distances to the nearer and farther depth clipping planes. These values are negative if the plane is to be behind the viewer. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glOrthof")] - public static void Ortho(Single l, Single r, Single b, Single t, Single n, Single f) { throw new NotImplementedException(); } + public static void Ortho(Single l, Single r, Single b, Single t, Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -6439,7 +6439,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glOrthox")] - public static void Orthox(Int32 l, Int32 r, Int32 b, Int32 t, Int32 n, Int32 f) { throw new NotImplementedException(); } + public static void Orthox(Int32 l, Int32 r, Int32 b, Int32 t, Int32 n, Int32 f) { throw new BindingsNotRewrittenException(); } /// /// @@ -6447,7 +6447,7 @@ namespace OpenTK.Graphics.ES11 /// [length: size] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelMapx")] [CLSCompliant(false)] - public static void PixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, [CountAttribute(Parameter = "size")] Int32[] values) { throw new NotImplementedException(); } + public static void PixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, [CountAttribute(Parameter = "size")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// /// @@ -6455,7 +6455,7 @@ namespace OpenTK.Graphics.ES11 /// [length: size] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelMapx")] [CLSCompliant(false)] - public static void PixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, [CountAttribute(Parameter = "size")] ref Int32 values) { throw new NotImplementedException(); } + public static void PixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, [CountAttribute(Parameter = "size")] ref Int32 values) { throw new BindingsNotRewrittenException(); } /// /// @@ -6463,7 +6463,7 @@ namespace OpenTK.Graphics.ES11 /// [length: size] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelMapx")] [CLSCompliant(false)] - public static unsafe void PixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, [CountAttribute(Parameter = "size")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void PixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, [CountAttribute(Parameter = "size")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set pixel storage modes @@ -6476,7 +6476,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPixelStorei")] - public static void PixelStore(OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void PixelStore(OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set pixel storage modes @@ -6488,13 +6488,13 @@ namespace OpenTK.Graphics.ES11 /// Specifies the value that pname is set to. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPixelStorei")] - public static void PixelStore(OpenTK.Graphics.ES11.PixelStoreParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void PixelStore(OpenTK.Graphics.ES11.PixelStoreParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelStorex")] - public static void PixelStorex(OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void PixelStorex(OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify point parameters @@ -6506,7 +6506,7 @@ namespace OpenTK.Graphics.ES11 /// For glPointParameterf and glPointParameteri, specifies the value that pname will be set to. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPointParameterf")] - public static void PointParameter(OpenTK.Graphics.ES11.All pname, Single param) { throw new NotImplementedException(); } + public static void PointParameter(OpenTK.Graphics.ES11.All pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify point parameters @@ -6519,7 +6519,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPointParameterfv")] [CLSCompliant(false)] - public static void PointParameter(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void PointParameter(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify point parameters @@ -6532,27 +6532,27 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPointParameterfv")] [CLSCompliant(false)] - public static unsafe void PointParameter(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void PointParameter(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPointParameterx")] - public static void PointParameterx(OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void PointParameterx(OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPointParameterxv")] [CLSCompliant(false)] - public static void PointParameterx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void PointParameterx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPointParameterxv")] [CLSCompliant(false)] - public static unsafe void PointParameterx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void PointParameterx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify the diameter of rasterized points @@ -6561,12 +6561,12 @@ namespace OpenTK.Graphics.ES11 /// Specifies the diameter of rasterized points. The initial value is 1. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPointSize")] - public static void PointSize(Single size) { throw new NotImplementedException(); } + public static void PointSize(Single size) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPointSizex")] - public static void PointSizex(Int32 size) { throw new NotImplementedException(); } + public static void PointSizex(Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set the scale and units used to calculate depth values @@ -6578,23 +6578,23 @@ namespace OpenTK.Graphics.ES11 /// Is multiplied by an implementation-specific value to create a constant depth offset. The initial value is 0. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPolygonOffset")] - public static void PolygonOffset(Single factor, Single units) { throw new NotImplementedException(); } + public static void PolygonOffset(Single factor, Single units) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPolygonOffsetx")] - public static void PolygonOffsetx(Int32 factor, Int32 units) { throw new NotImplementedException(); } + public static void PolygonOffsetx(Int32 factor, Int32 units) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPopMatrix")] - public static void PopMatrix() { throw new NotImplementedException(); } + public static void PopMatrix() { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Push and pop the current matrix stack /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPushMatrix")] - public static void PushMatrix() { throw new NotImplementedException(); } + public static void PushMatrix() { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Read a block of pixels from the frame buffer @@ -6622,7 +6622,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glReadPixels")] - public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Read a block of pixels from the frame buffer @@ -6653,7 +6653,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Read a block of pixels from the frame buffer @@ -6684,7 +6684,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Read a block of pixels from the frame buffer @@ -6715,7 +6715,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Read a block of pixels from the frame buffer @@ -6745,7 +6745,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glReadPixels")] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T6 pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Read a block of pixels from the frame buffer @@ -6772,7 +6772,7 @@ namespace OpenTK.Graphics.ES11 /// Returns the pixel data. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glReadPixels")] - public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Read a block of pixels from the frame buffer @@ -6802,7 +6802,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Read a block of pixels from the frame buffer @@ -6832,7 +6832,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Read a block of pixels from the frame buffer @@ -6862,7 +6862,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Read a block of pixels from the frame buffer @@ -6891,7 +6891,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glReadPixels")] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T6 pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Multiply the current matrix by a rotation matrix @@ -6909,7 +6909,7 @@ namespace OpenTK.Graphics.ES11 /// Specify the x, y, and z coordinates of a vector, respectively. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glRotatef")] - public static void Rotate(Single angle, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void Rotate(Single angle, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -6917,7 +6917,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glRotatex")] - public static void Rotatex(Int32 angle, Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void Rotatex(Int32 angle, Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify multisample coverage parameters @@ -6929,13 +6929,13 @@ namespace OpenTK.Graphics.ES11 /// Specify a single boolean value representing if the coverage masks should be inverted. True and False are accepted. The initial value is False. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glSampleCoverage")] - public static void SampleCoverage(Single value, bool invert) { throw new NotImplementedException(); } + public static void SampleCoverage(Single value, bool invert) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glSampleCoveragex")] - public static void SampleCoveragex(Int32 value, bool invert) { throw new NotImplementedException(); } + public static void SampleCoveragex(Int32 value, bool invert) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Multiply the current matrix by a general scaling matrix @@ -6950,14 +6950,14 @@ namespace OpenTK.Graphics.ES11 /// Specify scale factors along the x, y, and z axes, respectively. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glScalef")] - public static void Scale(Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void Scale(Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glScalex")] - public static void Scalex(Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void Scalex(Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define the scissor box @@ -6975,7 +6975,7 @@ namespace OpenTK.Graphics.ES11 /// Specify the width and height of the scissor box. When a GL context is first attached to a window, width and height are set to the dimensions of that window. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glScissor")] - public static void Scissor(Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void Scissor(Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Select flat or smooth shading @@ -6985,7 +6985,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glShadeModel")] - public static void ShadeModel(OpenTK.Graphics.ES11.All mode) { throw new NotImplementedException(); } + public static void ShadeModel(OpenTK.Graphics.ES11.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Select flat or smooth shading @@ -6994,7 +6994,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a symbolic value representing a shading technique. Accepted values are Flat and Smooth. The initial value is Smooth. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glShadeModel")] - public static void ShadeModel(OpenTK.Graphics.ES11.ShadingModel mode) { throw new NotImplementedException(); } + public static void ShadeModel(OpenTK.Graphics.ES11.ShadingModel mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set front and back function and reference value for stencil testing @@ -7011,7 +7011,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glStencilFunc")] [CLSCompliant(false)] - public static void StencilFunc(OpenTK.Graphics.ES11.All func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } + public static void StencilFunc(OpenTK.Graphics.ES11.All func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set front and back function and reference value for stencil testing @@ -7028,7 +7028,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glStencilFunc")] [CLSCompliant(false)] - public static void StencilFunc(OpenTK.Graphics.ES11.All func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFunc(OpenTK.Graphics.ES11.All func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set front and back function and reference value for stencil testing @@ -7044,7 +7044,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glStencilFunc")] [CLSCompliant(false)] - public static void StencilFunc(OpenTK.Graphics.ES11.StencilFunction func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } + public static void StencilFunc(OpenTK.Graphics.ES11.StencilFunction func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set front and back function and reference value for stencil testing @@ -7060,7 +7060,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glStencilFunc")] [CLSCompliant(false)] - public static void StencilFunc(OpenTK.Graphics.ES11.StencilFunction func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFunc(OpenTK.Graphics.ES11.StencilFunction func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Control the front and back writing of individual bits in the stencil planes @@ -7070,7 +7070,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glStencilMask")] [CLSCompliant(false)] - public static void StencilMask(Int32 mask) { throw new NotImplementedException(); } + public static void StencilMask(Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Control the front and back writing of individual bits in the stencil planes @@ -7080,7 +7080,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glStencilMask")] [CLSCompliant(false)] - public static void StencilMask(UInt32 mask) { throw new NotImplementedException(); } + public static void StencilMask(UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set front and back stencil test actions @@ -7096,7 +7096,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glStencilOp")] - public static void StencilOp(OpenTK.Graphics.ES11.All fail, OpenTK.Graphics.ES11.All zfail, OpenTK.Graphics.ES11.All zpass) { throw new NotImplementedException(); } + public static void StencilOp(OpenTK.Graphics.ES11.All fail, OpenTK.Graphics.ES11.All zfail, OpenTK.Graphics.ES11.All zpass) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set front and back stencil test actions @@ -7111,7 +7111,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the stencil action when both the stencil test and the depth test pass, or when the stencil test passes and either there is no depth buffer or depth testing is not enabled. dppass accepts the same symbolic constants as sfail. The initial value is Keep. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glStencilOp")] - public static void StencilOp(OpenTK.Graphics.ES11.StencilOp fail, OpenTK.Graphics.ES11.StencilOp zfail, OpenTK.Graphics.ES11.StencilOp zpass) { throw new NotImplementedException(); } + public static void StencilOp(OpenTK.Graphics.ES11.StencilOp fail, OpenTK.Graphics.ES11.StencilOp zfail, OpenTK.Graphics.ES11.StencilOp zpass) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of texture coordinates @@ -7130,7 +7130,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexCoordPointer")] - public static void TexCoordPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void TexCoordPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of texture coordinates @@ -7152,7 +7152,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of texture coordinates @@ -7174,7 +7174,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of texture coordinates @@ -7196,7 +7196,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of texture coordinates @@ -7217,7 +7217,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexCoordPointer")] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T3 pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of texture coordinates @@ -7235,7 +7235,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a pointer to the first coordinate of the first texture coordinate set in the array. The initial value is 0. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexCoordPointer")] - public static void TexCoordPointer(Int32 size, OpenTK.Graphics.ES11.TexCoordPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void TexCoordPointer(Int32 size, OpenTK.Graphics.ES11.TexCoordPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of texture coordinates @@ -7256,7 +7256,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.ES11.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of texture coordinates @@ -7277,7 +7277,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.ES11.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of texture coordinates @@ -7298,7 +7298,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.ES11.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of texture coordinates @@ -7318,7 +7318,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexCoordPointer")] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.ES11.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T3 pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture environment parameters @@ -7334,7 +7334,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnvf")] - public static void TexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Single param) { throw new NotImplementedException(); } + public static void TexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture environment parameters @@ -7349,7 +7349,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a single symbolic constant, one of Add, AddSigned, Interpolate, Modulate, Decal, Blend, Replace, Subtract, Combine, Texture, Constant, PrimaryColor, Previous, SrcColor, OneMinusSrcColor, SrcAlpha, OneMinusSrcAlpha, a single boolean value for the point sprite texture coordinate replacement, a single floating-point value for the texture level-of-detail bias, or 1.0, 2.0, or 4.0 when specifying the RgbScale or AlphaScale. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnvf")] - public static void TexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, Single param) { throw new NotImplementedException(); } + public static void TexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture environment parameters @@ -7366,7 +7366,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnvfv")] [CLSCompliant(false)] - public static void TexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void TexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture environment parameters @@ -7383,7 +7383,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnvfv")] [CLSCompliant(false)] - public static unsafe void TexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void TexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture environment parameters @@ -7399,7 +7399,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnvfv")] [CLSCompliant(false)] - public static void TexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void TexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture environment parameters @@ -7415,7 +7415,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnvfv")] [CLSCompliant(false)] - public static unsafe void TexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void TexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture environment parameters @@ -7431,7 +7431,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnvi")] - public static void TexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void TexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture environment parameters @@ -7446,7 +7446,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a single symbolic constant, one of Add, AddSigned, Interpolate, Modulate, Decal, Blend, Replace, Subtract, Combine, Texture, Constant, PrimaryColor, Previous, SrcColor, OneMinusSrcColor, SrcAlpha, OneMinusSrcAlpha, a single boolean value for the point sprite texture coordinate replacement, a single floating-point value for the texture level-of-detail bias, or 1.0, 2.0, or 4.0 when specifying the RgbScale or AlphaScale. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnvi")] - public static void TexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void TexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture environment parameters @@ -7463,7 +7463,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnviv")] [CLSCompliant(false)] - public static void TexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture environment parameters @@ -7480,7 +7480,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnviv")] [CLSCompliant(false)] - public static unsafe void TexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture environment parameters @@ -7496,7 +7496,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnviv")] [CLSCompliant(false)] - public static void TexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture environment parameters @@ -7512,14 +7512,14 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnviv")] [CLSCompliant(false)] - public static unsafe void TexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnvx")] - public static void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -7527,7 +7527,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnvxv")] [CLSCompliant(false)] - public static void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -7535,7 +7535,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnvxv")] [CLSCompliant(false)] - public static unsafe void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -7569,7 +7569,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexImage2D")] - public static void TexImage2D(OpenTK.Graphics.ES11.All target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexImage2D(OpenTK.Graphics.ES11.All target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -7606,7 +7606,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES11.All target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -7643,7 +7643,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES11.All target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -7680,7 +7680,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES11.All target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -7716,7 +7716,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexImage2D")] public static void TexImage2D(OpenTK.Graphics.ES11.All target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -7749,7 +7749,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexImage2D")] - public static void TexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -7785,7 +7785,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -7821,7 +7821,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -7857,7 +7857,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -7892,7 +7892,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexImage2D")] public static void TexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -7908,7 +7908,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameterf")] - public static void TexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Single param) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -7923,7 +7923,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the value of pname. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameterf")] - public static void TexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.TextureParameterName pname, Single param) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.TextureParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -7940,7 +7940,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameterfv")] [CLSCompliant(false)] - public static void TexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -7957,7 +7957,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameterfv")] [CLSCompliant(false)] - public static unsafe void TexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -7973,7 +7973,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameterfv")] [CLSCompliant(false)] - public static void TexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -7989,7 +7989,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameterfv")] [CLSCompliant(false)] - public static unsafe void TexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -8005,7 +8005,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameteri")] - public static void TexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -8020,7 +8020,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the value of pname. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameteri")] - public static void TexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.TextureParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.TextureParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -8037,7 +8037,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameteriv")] [CLSCompliant(false)] - public static void TexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -8054,7 +8054,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameteriv")] [CLSCompliant(false)] - public static unsafe void TexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -8070,7 +8070,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameteriv")] [CLSCompliant(false)] - public static void TexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -8086,14 +8086,14 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameteriv")] [CLSCompliant(false)] - public static unsafe void TexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameterx")] - public static void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -8101,7 +8101,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameterxv")] [CLSCompliant(false)] - public static void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -8109,7 +8109,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameterxv")] [CLSCompliant(false)] - public static unsafe void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture subimage @@ -8143,7 +8143,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexSubImage2D")] - public static void TexSubImage2D(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexSubImage2D(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture subimage @@ -8180,7 +8180,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture subimage @@ -8217,7 +8217,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture subimage @@ -8254,7 +8254,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture subimage @@ -8290,7 +8290,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexSubImage2D")] public static void TexSubImage2D(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture subimage @@ -8323,7 +8323,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexSubImage2D")] - public static void TexSubImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexSubImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture subimage @@ -8359,7 +8359,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture subimage @@ -8395,7 +8395,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture subimage @@ -8431,7 +8431,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture subimage @@ -8466,7 +8466,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexSubImage2D")] public static void TexSubImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Multiply the current matrix by a translation matrix @@ -8481,14 +8481,14 @@ namespace OpenTK.Graphics.ES11 /// Specify the x, y, and z coordinates of a translation vector. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTranslatef")] - public static void Translate(Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void Translate(Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTranslatex")] - public static void Translatex(Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void Translatex(Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of vertex data @@ -8507,7 +8507,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glVertexPointer")] - public static void VertexPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of vertex data @@ -8529,7 +8529,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of vertex data @@ -8551,7 +8551,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of vertex data @@ -8573,7 +8573,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of vertex data @@ -8594,7 +8594,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glVertexPointer")] public static void VertexPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T3 pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of vertex data @@ -8612,7 +8612,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a pointer to the first coordinate of the first vertex in the array. The initial value is 0. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glVertexPointer")] - public static void VertexPointer(Int32 size, OpenTK.Graphics.ES11.VertexPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexPointer(Int32 size, OpenTK.Graphics.ES11.VertexPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of vertex data @@ -8633,7 +8633,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.ES11.VertexPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of vertex data @@ -8654,7 +8654,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.ES11.VertexPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of vertex data @@ -8675,7 +8675,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.ES11.VertexPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of vertex data @@ -8695,7 +8695,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glVertexPointer")] public static void VertexPointer(Int32 size, OpenTK.Graphics.ES11.VertexPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T3 pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set the viewport @@ -8713,7 +8713,7 @@ namespace OpenTK.Graphics.ES11 /// Specify the width and height of the viewport. When a GL context is first attached to a window, width and height are set to the dimensions of that window. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glViewport")] - public static void Viewport(Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void Viewport(Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } public static partial class Ext { @@ -8725,7 +8725,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_blend_minmax", Version = "", EntryPoint = "glBlendEquationEXT")] - public static void BlendEquation(OpenTK.Graphics.ES11.All mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.ES11.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_minmax] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -8734,7 +8734,7 @@ namespace OpenTK.Graphics.ES11 /// specifies how source and destination colors are combined. It must be FuncAdd, FuncSubtract, or FuncReverseSubtract. /// [AutoGenerated(Category = "EXT_blend_minmax", Version = "", EntryPoint = "glBlendEquationEXT")] - public static void BlendEquation(OpenTK.Graphics.ES11.BlendEquationModeExt mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.ES11.BlendEquationModeExt mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_discard_framebuffer] /// @@ -8742,7 +8742,7 @@ namespace OpenTK.Graphics.ES11 /// [length: numAttachments] [AutoGenerated(Category = "EXT_discard_framebuffer", Version = "", EntryPoint = "glDiscardFramebufferEXT")] [CLSCompliant(false)] - public static void DiscardFramebuffer(OpenTK.Graphics.ES11.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES11.All[] attachments) { throw new NotImplementedException(); } + public static void DiscardFramebuffer(OpenTK.Graphics.ES11.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES11.All[] attachments) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_discard_framebuffer] /// @@ -8750,7 +8750,7 @@ namespace OpenTK.Graphics.ES11 /// [length: numAttachments] [AutoGenerated(Category = "EXT_discard_framebuffer", Version = "", EntryPoint = "glDiscardFramebufferEXT")] [CLSCompliant(false)] - public static void DiscardFramebuffer(OpenTK.Graphics.ES11.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES11.All attachments) { throw new NotImplementedException(); } + public static void DiscardFramebuffer(OpenTK.Graphics.ES11.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES11.All attachments) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_discard_framebuffer] /// @@ -8758,7 +8758,7 @@ namespace OpenTK.Graphics.ES11 /// [length: numAttachments] [AutoGenerated(Category = "EXT_discard_framebuffer", Version = "", EntryPoint = "glDiscardFramebufferEXT")] [CLSCompliant(false)] - public static unsafe void DiscardFramebuffer(OpenTK.Graphics.ES11.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES11.All* attachments) { throw new NotImplementedException(); } + public static unsafe void DiscardFramebuffer(OpenTK.Graphics.ES11.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES11.All* attachments) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Indicate modifications to a range of a mapped buffer @@ -8773,7 +8773,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the length of the buffer subrange, in basic machine units. /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glFlushMappedBufferRangeEXT")] - public static void FlushMappedBufferRange(OpenTK.Graphics.ES11.All target, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.ES11.All target, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Indicate modifications to a range of a mapped buffer @@ -8788,7 +8788,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the length of the buffer subrange, in basic machine units. /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glFlushMappedBufferRangeEXT")] - public static void FlushMappedBufferRange(OpenTK.Graphics.ES11.All target, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.ES11.All target, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multisampled_render_to_texture] /// @@ -8799,7 +8799,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleEXT")] [CLSCompliant(false)] - public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All textarget, Int32 texture, Int32 level, Int32 samples) { throw new NotImplementedException(); } + public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All textarget, Int32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multisampled_render_to_texture] /// @@ -8810,11 +8810,11 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleEXT")] [CLSCompliant(false)] - public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All textarget, UInt32 texture, Int32 level, Int32 samples) { throw new NotImplementedException(); } + public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All textarget, UInt32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetGraphicsResetStatusEXT")] - public static OpenTK.Graphics.ES11.All GetGraphicsResetStatus() { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES11.All GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -8823,7 +8823,7 @@ namespace OpenTK.Graphics.ES11 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -8832,7 +8832,7 @@ namespace OpenTK.Graphics.ES11 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -8841,7 +8841,7 @@ namespace OpenTK.Graphics.ES11 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -8850,7 +8850,7 @@ namespace OpenTK.Graphics.ES11 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -8859,7 +8859,7 @@ namespace OpenTK.Graphics.ES11 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -8868,7 +8868,7 @@ namespace OpenTK.Graphics.ES11 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -8877,7 +8877,7 @@ namespace OpenTK.Graphics.ES11 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -8886,7 +8886,7 @@ namespace OpenTK.Graphics.ES11 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -8895,7 +8895,7 @@ namespace OpenTK.Graphics.ES11 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -8904,7 +8904,7 @@ namespace OpenTK.Graphics.ES11 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -8913,7 +8913,7 @@ namespace OpenTK.Graphics.ES11 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -8922,7 +8922,7 @@ namespace OpenTK.Graphics.ES11 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -8941,7 +8941,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES11.All target, IntPtr offset, Int32 length, Int32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES11.All target, IntPtr offset, Int32 length, Int32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -8960,7 +8960,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES11.All target, IntPtr offset, Int32 length, UInt32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES11.All target, IntPtr offset, Int32 length, UInt32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -8979,7 +8979,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES11.All target, IntPtr offset, IntPtr length, Int32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES11.All target, IntPtr offset, IntPtr length, Int32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -8998,7 +8998,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES11.All target, IntPtr offset, IntPtr length, UInt32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES11.All target, IntPtr offset, IntPtr length, UInt32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -9018,7 +9018,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static void MultiDrawArrays(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -9038,7 +9038,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static void MultiDrawArrays(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -9058,7 +9058,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawArrays(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawArrays(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -9077,7 +9077,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static void MultiDrawArrays(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -9096,7 +9096,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static void MultiDrawArrays(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -9115,7 +9115,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawArrays(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawArrays(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9138,7 +9138,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static void MultiDrawElements(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES11.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES11.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9163,7 +9163,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9188,7 +9188,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9213,7 +9213,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9238,7 +9238,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9261,7 +9261,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static void MultiDrawElements(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES11.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES11.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9286,7 +9286,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9311,7 +9311,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9336,7 +9336,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9361,7 +9361,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9384,7 +9384,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawElements(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES11.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElements(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES11.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9409,7 +9409,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9434,7 +9434,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9459,7 +9459,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9484,7 +9484,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9506,7 +9506,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES11.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES11.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9530,7 +9530,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES11.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9554,7 +9554,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES11.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9578,7 +9578,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES11.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9602,7 +9602,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES11.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9624,7 +9624,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES11.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES11.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9648,7 +9648,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES11.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9672,7 +9672,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES11.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9696,7 +9696,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES11.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9720,7 +9720,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES11.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9742,7 +9742,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES11.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES11.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9766,7 +9766,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES11.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9790,7 +9790,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES11.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9814,7 +9814,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES11.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9838,7 +9838,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES11.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -9850,7 +9850,7 @@ namespace OpenTK.Graphics.ES11 /// /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -9865,7 +9865,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -9880,7 +9880,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -9895,7 +9895,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -9909,7 +9909,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multisampled_render_to_texture] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -9930,7 +9930,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glRenderbufferStorageMultisampleEXT")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES11.All target, Int32 samples, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES11.All target, Int32 samples, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// Simultaneously specify storage for all levels of a one-dimensional texture @@ -9948,7 +9948,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the width of the texture, in texels. /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage1DEXT")] - public static void TexStorage1D(OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TexStorage1D(OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// Simultaneously specify storage for all levels of a two-dimensional or one-dimensional array texture @@ -9969,7 +9969,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the height of the texture, in texels. /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage2DEXT")] - public static void TexStorage2D(OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TexStorage2D(OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// Simultaneously specify storage for all levels of a three-dimensional, two-dimensional array or cube-map array texture @@ -9993,7 +9993,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the depth of the texture, in texels. /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage3DEXT")] - public static void TexStorage3D(OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TexStorage3D(OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -10003,7 +10003,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage1DEXT")] [CLSCompliant(false)] - public static void TextureStorage1D(Int32 texture, OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TextureStorage1D(Int32 texture, OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -10013,7 +10013,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage1DEXT")] [CLSCompliant(false)] - public static void TextureStorage1D(UInt32 texture, OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TextureStorage1D(UInt32 texture, OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -10024,7 +10024,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage2DEXT")] [CLSCompliant(false)] - public static void TextureStorage2D(Int32 texture, OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TextureStorage2D(Int32 texture, OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -10035,7 +10035,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage2DEXT")] [CLSCompliant(false)] - public static void TextureStorage2D(UInt32 texture, OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TextureStorage2D(UInt32 texture, OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -10047,7 +10047,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage3DEXT")] [CLSCompliant(false)] - public static void TextureStorage3D(Int32 texture, OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TextureStorage3D(Int32 texture, OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -10059,7 +10059,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage3DEXT")] [CLSCompliant(false)] - public static void TextureStorage3D(UInt32 texture, OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TextureStorage3D(UInt32 texture, OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } } @@ -10076,7 +10076,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "IMG_user_clip_plane", Version = "", EntryPoint = "glClipPlanefIMG")] [CLSCompliant(false)] - public static void ClipPlane(OpenTK.Graphics.ES11.All p, [CountAttribute(Count = 4)] Single[] eqn) { throw new NotImplementedException(); } + public static void ClipPlane(OpenTK.Graphics.ES11.All p, [CountAttribute(Count = 4)] Single[] eqn) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_user_clip_plane] /// Specify a plane against which all geometry is clipped @@ -10089,7 +10089,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "IMG_user_clip_plane", Version = "", EntryPoint = "glClipPlanefIMG")] [CLSCompliant(false)] - public static void ClipPlane(OpenTK.Graphics.ES11.All p, [CountAttribute(Count = 4)] ref Single eqn) { throw new NotImplementedException(); } + public static void ClipPlane(OpenTK.Graphics.ES11.All p, [CountAttribute(Count = 4)] ref Single eqn) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_user_clip_plane] /// Specify a plane against which all geometry is clipped @@ -10102,28 +10102,28 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "IMG_user_clip_plane", Version = "", EntryPoint = "glClipPlanefIMG")] [CLSCompliant(false)] - public static unsafe void ClipPlane(OpenTK.Graphics.ES11.All p, [CountAttribute(Count = 4)] Single* eqn) { throw new NotImplementedException(); } + public static unsafe void ClipPlane(OpenTK.Graphics.ES11.All p, [CountAttribute(Count = 4)] Single* eqn) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_user_clip_plane] /// /// [length: 4] [AutoGenerated(Category = "IMG_user_clip_plane", Version = "", EntryPoint = "glClipPlanexIMG")] [CLSCompliant(false)] - public static void ClipPlanex(OpenTK.Graphics.ES11.All p, [CountAttribute(Count = 4)] Int32[] eqn) { throw new NotImplementedException(); } + public static void ClipPlanex(OpenTK.Graphics.ES11.All p, [CountAttribute(Count = 4)] Int32[] eqn) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_user_clip_plane] /// /// [length: 4] [AutoGenerated(Category = "IMG_user_clip_plane", Version = "", EntryPoint = "glClipPlanexIMG")] [CLSCompliant(false)] - public static void ClipPlanex(OpenTK.Graphics.ES11.All p, [CountAttribute(Count = 4)] ref Int32 eqn) { throw new NotImplementedException(); } + public static void ClipPlanex(OpenTK.Graphics.ES11.All p, [CountAttribute(Count = 4)] ref Int32 eqn) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_user_clip_plane] /// /// [length: 4] [AutoGenerated(Category = "IMG_user_clip_plane", Version = "", EntryPoint = "glClipPlanexIMG")] [CLSCompliant(false)] - public static unsafe void ClipPlanex(OpenTK.Graphics.ES11.All p, [CountAttribute(Count = 4)] Int32* eqn) { throw new NotImplementedException(); } + public static unsafe void ClipPlanex(OpenTK.Graphics.ES11.All p, [CountAttribute(Count = 4)] Int32* eqn) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_multisampled_render_to_texture] /// @@ -10134,7 +10134,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleIMG")] [CLSCompliant(false)] - public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All textarget, Int32 texture, Int32 level, Int32 samples) { throw new NotImplementedException(); } + public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All textarget, Int32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_multisampled_render_to_texture] /// @@ -10145,7 +10145,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleIMG")] [CLSCompliant(false)] - public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All textarget, UInt32 texture, Int32 level, Int32 samples) { throw new NotImplementedException(); } + public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All textarget, UInt32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_multisampled_render_to_texture] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -10166,7 +10166,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glRenderbufferStorageMultisampleIMG")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES11.All target, Int32 samples, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES11.All target, Int32 samples, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } } @@ -10176,114 +10176,114 @@ namespace OpenTK.Graphics.ES11 /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFence([CountAttribute(Parameter = "n")] Int32 fences) { throw new NotImplementedException(); } + public static void DeleteFence([CountAttribute(Parameter = "n")] Int32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFence([CountAttribute(Parameter = "n")] UInt32 fences) { throw new NotImplementedException(); } + public static void DeleteFence([CountAttribute(Parameter = "n")] UInt32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32[] fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32* fences) { throw new NotImplementedException(); } + public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32* fences) { throw new NotImplementedException(); } + public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glFinishFenceNV")] [CLSCompliant(false)] - public static void FinishFence(Int32 fence) { throw new NotImplementedException(); } + public static void FinishFence(Int32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glFinishFenceNV")] [CLSCompliant(false)] - public static void FinishFence(UInt32 fence) { throw new NotImplementedException(); } + public static void FinishFence(UInt32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static Int32 GenFence() { throw new NotImplementedException(); } + public static Int32 GenFence() { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* fences) { throw new NotImplementedException(); } + public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* fences) { throw new NotImplementedException(); } + public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -10291,7 +10291,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static void GetFence(Int32 fence, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFence(Int32 fence, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -10299,7 +10299,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static void GetFence(Int32 fence, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFence(Int32 fence, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -10307,7 +10307,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static unsafe void GetFence(Int32 fence, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFence(Int32 fence, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -10315,7 +10315,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static void GetFence(UInt32 fence, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFence(UInt32 fence, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -10323,7 +10323,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static void GetFence(UInt32 fence, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFence(UInt32 fence, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -10331,45 +10331,45 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static unsafe void GetFence(UInt32 fence, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFence(UInt32 fence, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glIsFenceNV")] [CLSCompliant(false)] - public static bool IsFence(Int32 fence) { throw new NotImplementedException(); } + public static bool IsFence(Int32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glIsFenceNV")] [CLSCompliant(false)] - public static bool IsFence(UInt32 fence) { throw new NotImplementedException(); } + public static bool IsFence(UInt32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glSetFenceNV")] [CLSCompliant(false)] - public static void SetFence(Int32 fence, OpenTK.Graphics.ES11.All condition) { throw new NotImplementedException(); } + public static void SetFence(Int32 fence, OpenTK.Graphics.ES11.All condition) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glSetFenceNV")] [CLSCompliant(false)] - public static void SetFence(UInt32 fence, OpenTK.Graphics.ES11.All condition) { throw new NotImplementedException(); } + public static void SetFence(UInt32 fence, OpenTK.Graphics.ES11.All condition) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glTestFenceNV")] [CLSCompliant(false)] - public static bool TestFence(Int32 fence) { throw new NotImplementedException(); } + public static bool TestFence(Int32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glTestFenceNV")] [CLSCompliant(false)] - public static bool TestFence(UInt32 fence) { throw new NotImplementedException(); } + public static bool TestFence(UInt32 fence) { throw new BindingsNotRewrittenException(); } } @@ -10379,13 +10379,13 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glAccumxOES")] - public static void Accumx(OpenTK.Graphics.ES11.All op, Int32 value) { throw new NotImplementedException(); } + public static void Accumx(OpenTK.Graphics.ES11.All op, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glAlphaFuncxOES")] - public static void AlphaFuncx(OpenTK.Graphics.ES11.All func, Int32 @ref) { throw new NotImplementedException(); } + public static void AlphaFuncx(OpenTK.Graphics.ES11.All func, Int32 @ref) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Bind a named framebuffer object @@ -10398,7 +10398,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glBindFramebufferOES")] [CLSCompliant(false)] - public static void BindFramebuffer(OpenTK.Graphics.ES11.All target, Int32 framebuffer) { throw new NotImplementedException(); } + public static void BindFramebuffer(OpenTK.Graphics.ES11.All target, Int32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Bind a named framebuffer object @@ -10411,7 +10411,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glBindFramebufferOES")] [CLSCompliant(false)] - public static void BindFramebuffer(OpenTK.Graphics.ES11.All target, UInt32 framebuffer) { throw new NotImplementedException(); } + public static void BindFramebuffer(OpenTK.Graphics.ES11.All target, UInt32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Bind a named renderbuffer object @@ -10424,7 +10424,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glBindRenderbufferOES")] [CLSCompliant(false)] - public static void BindRenderbuffer(OpenTK.Graphics.ES11.All target, Int32 renderbuffer) { throw new NotImplementedException(); } + public static void BindRenderbuffer(OpenTK.Graphics.ES11.All target, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Bind a named renderbuffer object @@ -10437,7 +10437,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glBindRenderbufferOES")] [CLSCompliant(false)] - public static void BindRenderbuffer(OpenTK.Graphics.ES11.All target, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void BindRenderbuffer(OpenTK.Graphics.ES11.All target, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Bind a vertex array object @@ -10447,7 +10447,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glBindVertexArrayOES")] [CLSCompliant(false)] - public static void BindVertexArray(Int32 array) { throw new NotImplementedException(); } + public static void BindVertexArray(Int32 array) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Bind a vertex array object @@ -10457,7 +10457,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glBindVertexArrayOES")] [CLSCompliant(false)] - public static void BindVertexArray(UInt32 array) { throw new NotImplementedException(); } + public static void BindVertexArray(UInt32 array) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -10469,7 +10469,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(width,height)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glBitmapxOES")] [CLSCompliant(false)] - public static void Bitmapx(Int32 width, Int32 height, Int32 xorig, Int32 yorig, Int32 xmove, Int32 ymove, [CountAttribute(Computed = "width,height")] Byte[] bitmap) { throw new NotImplementedException(); } + public static void Bitmapx(Int32 width, Int32 height, Int32 xorig, Int32 yorig, Int32 xmove, Int32 ymove, [CountAttribute(Computed = "width,height")] Byte[] bitmap) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -10481,7 +10481,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(width,height)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glBitmapxOES")] [CLSCompliant(false)] - public static void Bitmapx(Int32 width, Int32 height, Int32 xorig, Int32 yorig, Int32 xmove, Int32 ymove, [CountAttribute(Computed = "width,height")] ref Byte bitmap) { throw new NotImplementedException(); } + public static void Bitmapx(Int32 width, Int32 height, Int32 xorig, Int32 yorig, Int32 xmove, Int32 ymove, [CountAttribute(Computed = "width,height")] ref Byte bitmap) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -10493,7 +10493,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(width,height)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glBitmapxOES")] [CLSCompliant(false)] - public static unsafe void Bitmapx(Int32 width, Int32 height, Int32 xorig, Int32 yorig, Int32 xmove, Int32 ymove, [CountAttribute(Computed = "width,height")] Byte* bitmap) { throw new NotImplementedException(); } + public static unsafe void Bitmapx(Int32 width, Int32 height, Int32 xorig, Int32 yorig, Int32 xmove, Int32 ymove, [CountAttribute(Computed = "width,height")] Byte* bitmap) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -10501,7 +10501,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glBlendColorxOES")] - public static void BlendColorx(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new NotImplementedException(); } + public static void BlendColorx(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_blend_subtract] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -10510,7 +10510,7 @@ namespace OpenTK.Graphics.ES11 /// specifies how source and destination colors are combined. It must be FuncAdd, FuncSubtract, or FuncReverseSubtract. /// [AutoGenerated(Category = "OES_blend_subtract", Version = "", EntryPoint = "glBlendEquationOES")] - public static void BlendEquation(OpenTK.Graphics.ES11.All mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.ES11.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: OES_blend_equation_separate] /// Set the RGB blend equation and the alpha blend equation separately @@ -10522,7 +10522,7 @@ namespace OpenTK.Graphics.ES11 /// specifies the alpha blend equation, how the alpha component of the source and destination colors are combined. It must be FuncAdd, FuncSubtract, or FuncReverseSubtract. /// [AutoGenerated(Category = "OES_blend_equation_separate", Version = "", EntryPoint = "glBlendEquationSeparateOES")] - public static void BlendEquationSeparate(OpenTK.Graphics.ES11.All modeRGB, OpenTK.Graphics.ES11.All modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(OpenTK.Graphics.ES11.All modeRGB, OpenTK.Graphics.ES11.All modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_blend_func_separate] /// Specify pixel arithmetic for RGB and alpha components separately @@ -10540,7 +10540,7 @@ namespace OpenTK.Graphics.ES11 /// Specified how the alpha destination blending factor is computed. The same symbolic constants are accepted as for dstRGB. The initial value is Zero. /// [AutoGenerated(Category = "OES_blend_func_separate", Version = "", EntryPoint = "glBlendFuncSeparateOES")] - public static void BlendFuncSeparate(OpenTK.Graphics.ES11.All srcRGB, OpenTK.Graphics.ES11.All dstRGB, OpenTK.Graphics.ES11.All srcAlpha, OpenTK.Graphics.ES11.All dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(OpenTK.Graphics.ES11.All srcRGB, OpenTK.Graphics.ES11.All dstRGB, OpenTK.Graphics.ES11.All srcAlpha, OpenTK.Graphics.ES11.All dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Return the framebuffer completeness status of a framebuffer object @@ -10549,7 +10549,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the target framebuffer object. The symbolic constant must be Framebuffer. /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glCheckFramebufferStatusOES")] - public static OpenTK.Graphics.ES11.All CheckFramebufferStatus(OpenTK.Graphics.ES11.All target) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES11.All CheckFramebufferStatus(OpenTK.Graphics.ES11.All target) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -10557,7 +10557,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClearAccumxOES")] - public static void ClearAccumx(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new NotImplementedException(); } + public static void ClearAccumx(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -10565,7 +10565,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClearColorxOES")] - public static void ClearColorx(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new NotImplementedException(); } + public static void ClearColorx(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Specify the clear value for the depth buffer @@ -10574,12 +10574,12 @@ namespace OpenTK.Graphics.ES11 /// Specifies the depth value used when the depth buffer is cleared. The initial value is 1. /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glClearDepthfOES")] - public static void ClearDepth(Single depth) { throw new NotImplementedException(); } + public static void ClearDepth(Single depth) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClearDepthxOES")] - public static void ClearDepthx(Int32 depth) { throw new NotImplementedException(); } + public static void ClearDepthx(Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Specify a plane against which all geometry is clipped @@ -10592,7 +10592,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glClipPlanefOES")] [CLSCompliant(false)] - public static void ClipPlane(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] Single[] equation) { throw new NotImplementedException(); } + public static void ClipPlane(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] Single[] equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Specify a plane against which all geometry is clipped @@ -10605,7 +10605,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glClipPlanefOES")] [CLSCompliant(false)] - public static void ClipPlane(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] ref Single equation) { throw new NotImplementedException(); } + public static void ClipPlane(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] ref Single equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Specify a plane against which all geometry is clipped @@ -10618,53 +10618,53 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glClipPlanefOES")] [CLSCompliant(false)] - public static unsafe void ClipPlane(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] Single* equation) { throw new NotImplementedException(); } + public static unsafe void ClipPlane(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] Single* equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClipPlanexOES")] [CLSCompliant(false)] - public static void ClipPlanex(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] Int32[] equation) { throw new NotImplementedException(); } + public static void ClipPlanex(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] Int32[] equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClipPlanexOES")] [CLSCompliant(false)] - public static void ClipPlanex(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] ref Int32 equation) { throw new NotImplementedException(); } + public static void ClipPlanex(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] ref Int32 equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClipPlanexOES")] [CLSCompliant(false)] - public static unsafe void ClipPlanex(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] Int32* equation) { throw new NotImplementedException(); } + public static unsafe void ClipPlanex(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] Int32* equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor3xOES")] - public static void Color3x(Int32 red, Int32 green, Int32 blue) { throw new NotImplementedException(); } + public static void Color3x(Int32 red, Int32 green, Int32 blue) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor3xvOES")] [CLSCompliant(false)] - public static void Color3x([CountAttribute(Count = 3)] Int32[] components) { throw new NotImplementedException(); } + public static void Color3x([CountAttribute(Count = 3)] Int32[] components) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor3xvOES")] [CLSCompliant(false)] - public static void Color3x([CountAttribute(Count = 3)] ref Int32 components) { throw new NotImplementedException(); } + public static void Color3x([CountAttribute(Count = 3)] ref Int32 components) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor3xvOES")] [CLSCompliant(false)] - public static unsafe void Color3x([CountAttribute(Count = 3)] Int32* components) { throw new NotImplementedException(); } + public static unsafe void Color3x([CountAttribute(Count = 3)] Int32* components) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -10672,32 +10672,32 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor4xOES")] - public static void Color4x(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new NotImplementedException(); } + public static void Color4x(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor4xvOES")] [CLSCompliant(false)] - public static void Color4x([CountAttribute(Count = 4)] Int32[] components) { throw new NotImplementedException(); } + public static void Color4x([CountAttribute(Count = 4)] Int32[] components) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor4xvOES")] [CLSCompliant(false)] - public static void Color4x([CountAttribute(Count = 4)] ref Int32 components) { throw new NotImplementedException(); } + public static void Color4x([CountAttribute(Count = 4)] ref Int32 components) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor4xvOES")] [CLSCompliant(false)] - public static unsafe void Color4x([CountAttribute(Count = 4)] Int32* components) { throw new NotImplementedException(); } + public static unsafe void Color4x([CountAttribute(Count = 4)] Int32* components) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glConvolutionParameterxOES")] - public static void ConvolutionParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void ConvolutionParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -10705,7 +10705,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glConvolutionParameterxvOES")] [CLSCompliant(false)] - public static void ConvolutionParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void ConvolutionParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -10713,19 +10713,19 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glConvolutionParameterxvOES")] [CLSCompliant(false)] - public static unsafe void ConvolutionParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ConvolutionParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_matrix_palette] /// [AutoGenerated(Category = "OES_matrix_palette", Version = "", EntryPoint = "glCurrentPaletteMatrixOES")] [CLSCompliant(false)] - public static void CurrentPaletteMatrix(Int32 matrixpaletteindex) { throw new NotImplementedException(); } + public static void CurrentPaletteMatrix(Int32 matrixpaletteindex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_matrix_palette] /// [AutoGenerated(Category = "OES_matrix_palette", Version = "", EntryPoint = "glCurrentPaletteMatrixOES")] [CLSCompliant(false)] - public static void CurrentPaletteMatrix(UInt32 matrixpaletteindex) { throw new NotImplementedException(); } + public static void CurrentPaletteMatrix(UInt32 matrixpaletteindex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Delete named framebuffer objects @@ -10735,7 +10735,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersOES")] [CLSCompliant(false)] - public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] Int32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Delete named framebuffer objects @@ -10745,7 +10745,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersOES")] [CLSCompliant(false)] - public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] UInt32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Delete named framebuffer objects @@ -10758,7 +10758,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersOES")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Delete named framebuffer objects @@ -10771,7 +10771,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersOES")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Delete named framebuffer objects @@ -10784,7 +10784,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersOES")] [CLSCompliant(false)] - public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Delete named framebuffer objects @@ -10797,7 +10797,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersOES")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Delete named framebuffer objects @@ -10810,7 +10810,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersOES")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Delete named framebuffer objects @@ -10823,7 +10823,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersOES")] [CLSCompliant(false)] - public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Delete named renderbuffer objects @@ -10833,7 +10833,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersOES")] [CLSCompliant(false)] - public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] Int32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Delete named renderbuffer objects @@ -10843,7 +10843,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersOES")] [CLSCompliant(false)] - public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Delete named renderbuffer objects @@ -10856,7 +10856,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersOES")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Delete named renderbuffer objects @@ -10869,7 +10869,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersOES")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Delete named renderbuffer objects @@ -10882,7 +10882,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersOES")] [CLSCompliant(false)] - public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Delete named renderbuffer objects @@ -10895,7 +10895,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersOES")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Delete named renderbuffer objects @@ -10908,7 +10908,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersOES")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Delete named renderbuffer objects @@ -10921,7 +10921,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersOES")] [CLSCompliant(false)] - public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -10931,7 +10931,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArray([CountAttribute(Parameter = "n")] Int32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArray([CountAttribute(Parameter = "n")] Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -10941,7 +10941,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArray([CountAttribute(Parameter = "n")] UInt32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArray([CountAttribute(Parameter = "n")] UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -10954,7 +10954,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32[] arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -10967,7 +10967,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -10980,7 +10980,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32* arrays) { throw new NotImplementedException(); } + public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -10993,7 +10993,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -11006,7 +11006,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -11019,7 +11019,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays) { throw new NotImplementedException(); } + public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Specify mapping of depth values from normalized device coordinates to window coordinates @@ -11031,13 +11031,13 @@ namespace OpenTK.Graphics.ES11 /// Specifies the mapping of the far clipping plane to window coordinates. The initial value is 1. /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glDepthRangefOES")] - public static void DepthRange(Single n, Single f) { throw new NotImplementedException(); } + public static void DepthRange(Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glDepthRangexOES")] - public static void DepthRangex(Int32 n, Int32 f) { throw new NotImplementedException(); } + public static void DepthRangex(Int32 n, Int32 f) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_texture] /// @@ -11046,25 +11046,25 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexfOES")] - public static void DrawTex(Single x, Single y, Single z, Single width, Single height) { throw new NotImplementedException(); } + public static void DrawTex(Single x, Single y, Single z, Single width, Single height) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_texture] /// [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexfvOES")] [CLSCompliant(false)] - public static void DrawTex(Single[] coords) { throw new NotImplementedException(); } + public static void DrawTex(Single[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_texture] /// [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexfvOES")] [CLSCompliant(false)] - public static void DrawTex(ref Single coords) { throw new NotImplementedException(); } + public static void DrawTex(ref Single coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_texture] /// [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexfvOES")] [CLSCompliant(false)] - public static unsafe void DrawTex(Single* coords) { throw new NotImplementedException(); } + public static unsafe void DrawTex(Single* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_texture] /// @@ -11073,25 +11073,25 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexiOES")] - public static void DrawTex(Int32 x, Int32 y, Int32 z, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void DrawTex(Int32 x, Int32 y, Int32 z, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_texture] /// [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexivOES")] [CLSCompliant(false)] - public static void DrawTex(Int32[] coords) { throw new NotImplementedException(); } + public static void DrawTex(Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_texture] /// [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexivOES")] [CLSCompliant(false)] - public static void DrawTex(ref Int32 coords) { throw new NotImplementedException(); } + public static void DrawTex(ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_texture] /// [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexivOES")] [CLSCompliant(false)] - public static unsafe void DrawTex(Int32* coords) { throw new NotImplementedException(); } + public static unsafe void DrawTex(Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_texture] /// @@ -11100,25 +11100,25 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexsOES")] - public static void DrawTex(Int16 x, Int16 y, Int16 z, Int16 width, Int16 height) { throw new NotImplementedException(); } + public static void DrawTex(Int16 x, Int16 y, Int16 z, Int16 width, Int16 height) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_texture] /// [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexsvOES")] [CLSCompliant(false)] - public static void DrawTex(Int16[] coords) { throw new NotImplementedException(); } + public static void DrawTex(Int16[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_texture] /// [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexsvOES")] [CLSCompliant(false)] - public static void DrawTex(ref Int16 coords) { throw new NotImplementedException(); } + public static void DrawTex(ref Int16 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_texture] /// [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexsvOES")] [CLSCompliant(false)] - public static unsafe void DrawTex(Int16* coords) { throw new NotImplementedException(); } + public static unsafe void DrawTex(Int16* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_texture] /// @@ -11127,72 +11127,72 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexxOES")] - public static void DrawTexx(Int32 x, Int32 y, Int32 z, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void DrawTexx(Int32 x, Int32 y, Int32 z, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_texture] /// [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexxvOES")] [CLSCompliant(false)] - public static void DrawTexx(Int32[] coords) { throw new NotImplementedException(); } + public static void DrawTexx(Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_texture] /// [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexxvOES")] [CLSCompliant(false)] - public static void DrawTexx(ref Int32 coords) { throw new NotImplementedException(); } + public static void DrawTexx(ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_texture] /// [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexxvOES")] [CLSCompliant(false)] - public static unsafe void DrawTexx(Int32* coords) { throw new NotImplementedException(); } + public static unsafe void DrawTexx(Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_EGL_image] /// /// [AutoGenerated(Category = "OES_EGL_image", Version = "", EntryPoint = "glEGLImageTargetRenderbufferStorageOES")] - public static void EGLImageTargetRenderbufferStorage(OpenTK.Graphics.ES11.All target, IntPtr image) { throw new NotImplementedException(); } + public static void EGLImageTargetRenderbufferStorage(OpenTK.Graphics.ES11.All target, IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: OES_EGL_image] /// /// [AutoGenerated(Category = "OES_EGL_image", Version = "", EntryPoint = "glEGLImageTargetTexture2DOES")] - public static void EGLImageTargetTexture2D(OpenTK.Graphics.ES11.All target, IntPtr image) { throw new NotImplementedException(); } + public static void EGLImageTargetTexture2D(OpenTK.Graphics.ES11.All target, IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glEvalCoord1xOES")] - public static void EvalCoord1x(Int32 u) { throw new NotImplementedException(); } + public static void EvalCoord1x(Int32 u) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 1] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glEvalCoord1xvOES")] [CLSCompliant(false)] - public static unsafe void EvalCoord1x([CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void EvalCoord1x([CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glEvalCoord2xOES")] - public static void EvalCoord2x(Int32 u, Int32 v) { throw new NotImplementedException(); } + public static void EvalCoord2x(Int32 u, Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glEvalCoord2xvOES")] [CLSCompliant(false)] - public static void EvalCoord2x([CountAttribute(Count = 2)] Int32[] coords) { throw new NotImplementedException(); } + public static void EvalCoord2x([CountAttribute(Count = 2)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glEvalCoord2xvOES")] [CLSCompliant(false)] - public static void EvalCoord2x([CountAttribute(Count = 2)] ref Int32 coords) { throw new NotImplementedException(); } + public static void EvalCoord2x([CountAttribute(Count = 2)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glEvalCoord2xvOES")] [CLSCompliant(false)] - public static unsafe void EvalCoord2x([CountAttribute(Count = 2)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void EvalCoord2x([CountAttribute(Count = 2)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11200,7 +11200,7 @@ namespace OpenTK.Graphics.ES11 /// [length: n] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFeedbackBufferxOES")] [CLSCompliant(false)] - public static void FeedbackBufferx(Int32 n, OpenTK.Graphics.ES11.All type, [CountAttribute(Parameter = "n")] Int32[] buffer) { throw new NotImplementedException(); } + public static void FeedbackBufferx(Int32 n, OpenTK.Graphics.ES11.All type, [CountAttribute(Parameter = "n")] Int32[] buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11208,7 +11208,7 @@ namespace OpenTK.Graphics.ES11 /// [length: n] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFeedbackBufferxOES")] [CLSCompliant(false)] - public static void FeedbackBufferx(Int32 n, OpenTK.Graphics.ES11.All type, [CountAttribute(Parameter = "n")] ref Int32 buffer) { throw new NotImplementedException(); } + public static void FeedbackBufferx(Int32 n, OpenTK.Graphics.ES11.All type, [CountAttribute(Parameter = "n")] ref Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11216,27 +11216,27 @@ namespace OpenTK.Graphics.ES11 /// [length: n] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFeedbackBufferxOES")] [CLSCompliant(false)] - public static unsafe void FeedbackBufferx(Int32 n, OpenTK.Graphics.ES11.All type, [CountAttribute(Parameter = "n")] Int32* buffer) { throw new NotImplementedException(); } + public static unsafe void FeedbackBufferx(Int32 n, OpenTK.Graphics.ES11.All type, [CountAttribute(Parameter = "n")] Int32* buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFogxOES")] - public static void Fogx(OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void Fogx(OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFogxvOES")] [CLSCompliant(false)] - public static void Fogx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void Fogx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFogxvOES")] [CLSCompliant(false)] - public static unsafe void Fogx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void Fogx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Attach a renderbuffer object to a framebuffer object @@ -11255,7 +11255,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glFramebufferRenderbufferOES")] [CLSCompliant(false)] - public static void FramebufferRenderbuffer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All renderbuffertarget, Int32 renderbuffer) { throw new NotImplementedException(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All renderbuffertarget, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Attach a renderbuffer object to a framebuffer object @@ -11274,7 +11274,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glFramebufferRenderbufferOES")] [CLSCompliant(false)] - public static void FramebufferRenderbuffer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All renderbuffertarget, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All renderbuffertarget, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Attach a texture image to a framebuffer object @@ -11296,7 +11296,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glFramebufferTexture2DOES")] [CLSCompliant(false)] - public static void FramebufferTexture2D(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture2D(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All textarget, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Attach a texture image to a framebuffer object @@ -11318,7 +11318,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glFramebufferTexture2DOES")] [CLSCompliant(false)] - public static void FramebufferTexture2D(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture2D(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All textarget, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Multiply the current matrix by a perspective matrix @@ -11342,7 +11342,7 @@ namespace OpenTK.Graphics.ES11 /// Specify the distances to the near and far depth clipping planes. Both distances must be positive. /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glFrustumfOES")] - public static void Frustum(Single l, Single r, Single b, Single t, Single n, Single f) { throw new NotImplementedException(); } + public static void Frustum(Single l, Single r, Single b, Single t, Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11352,7 +11352,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFrustumxOES")] - public static void Frustumx(Int32 l, Int32 r, Int32 b, Int32 t, Int32 n, Int32 f) { throw new NotImplementedException(); } + public static void Frustumx(Int32 l, Int32 r, Int32 b, Int32 t, Int32 n, Int32 f) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Generate a complete set of mipmaps for a texture object @@ -11361,14 +11361,14 @@ namespace OpenTK.Graphics.ES11 /// Specifies the texture target of the active texture unit to which the texture object is bound whose mipmaps will be generated. Must be one of the following symbolic constants: Texture2D or TextureCubeMap. /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenerateMipmapOES")] - public static void GenerateMipmap(OpenTK.Graphics.ES11.All target) { throw new NotImplementedException(); } + public static void GenerateMipmap(OpenTK.Graphics.ES11.All target) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Generate framebuffer object names /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersOES")] [CLSCompliant(false)] - public static Int32 GenFramebuffer() { throw new NotImplementedException(); } + public static Int32 GenFramebuffer() { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Generate framebuffer object names @@ -11381,7 +11381,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersOES")] [CLSCompliant(false)] - public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Generate framebuffer object names @@ -11394,7 +11394,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersOES")] [CLSCompliant(false)] - public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Generate framebuffer object names @@ -11407,7 +11407,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersOES")] [CLSCompliant(false)] - public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Generate framebuffer object names @@ -11420,7 +11420,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersOES")] [CLSCompliant(false)] - public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Generate framebuffer object names @@ -11433,7 +11433,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersOES")] [CLSCompliant(false)] - public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Generate framebuffer object names @@ -11446,14 +11446,14 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersOES")] [CLSCompliant(false)] - public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Generate renderbuffer object names /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersOES")] [CLSCompliant(false)] - public static Int32 GenRenderbuffer() { throw new NotImplementedException(); } + public static Int32 GenRenderbuffer() { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Generate renderbuffer object names @@ -11466,7 +11466,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersOES")] [CLSCompliant(false)] - public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Generate renderbuffer object names @@ -11479,7 +11479,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersOES")] [CLSCompliant(false)] - public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Generate renderbuffer object names @@ -11492,7 +11492,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersOES")] [CLSCompliant(false)] - public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Generate renderbuffer object names @@ -11505,7 +11505,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersOES")] [CLSCompliant(false)] - public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Generate renderbuffer object names @@ -11518,7 +11518,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersOES")] [CLSCompliant(false)] - public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Generate renderbuffer object names @@ -11531,14 +11531,14 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersOES")] [CLSCompliant(false)] - public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static Int32 GenVertexArray() { throw new NotImplementedException(); } + public static Int32 GenVertexArray() { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -11551,7 +11551,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -11564,7 +11564,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -11577,7 +11577,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* arrays) { throw new NotImplementedException(); } + public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -11590,7 +11590,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -11603,7 +11603,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -11616,14 +11616,14 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays) { throw new NotImplementedException(); } + public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// /// /// [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] - public static void GetBufferPointer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } + public static void GetBufferPointer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -11633,7 +11633,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -11643,7 +11643,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -11653,7 +11653,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -11662,7 +11662,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] public static void GetBufferPointer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Return the coefficients of the specified clipping plane @@ -11675,7 +11675,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glGetClipPlanefOES")] [CLSCompliant(false)] - public static void GetClipPlane(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] Single[] equation) { throw new NotImplementedException(); } + public static void GetClipPlane(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] Single[] equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Return the coefficients of the specified clipping plane @@ -11688,7 +11688,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glGetClipPlanefOES")] [CLSCompliant(false)] - public static void GetClipPlane(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] out Single equation) { throw new NotImplementedException(); } + public static void GetClipPlane(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] out Single equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Return the coefficients of the specified clipping plane @@ -11701,28 +11701,28 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glGetClipPlanefOES")] [CLSCompliant(false)] - public static unsafe void GetClipPlane(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] Single* equation) { throw new NotImplementedException(); } + public static unsafe void GetClipPlane(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] Single* equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetClipPlanexOES")] [CLSCompliant(false)] - public static void GetClipPlanex(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] Int32[] equation) { throw new NotImplementedException(); } + public static void GetClipPlanex(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] Int32[] equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetClipPlanexOES")] [CLSCompliant(false)] - public static void GetClipPlanex(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] out Int32 equation) { throw new NotImplementedException(); } + public static void GetClipPlanex(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] out Int32 equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetClipPlanexOES")] [CLSCompliant(false)] - public static unsafe void GetClipPlanex(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] Int32* equation) { throw new NotImplementedException(); } + public static unsafe void GetClipPlanex(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] Int32* equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11730,7 +11730,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetConvolutionParameterxvOES")] [CLSCompliant(false)] - public static void GetConvolutionParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetConvolutionParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11738,7 +11738,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetConvolutionParameterxvOES")] [CLSCompliant(false)] - public static void GetConvolutionParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetConvolutionParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11746,34 +11746,34 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetConvolutionParameterxvOES")] [CLSCompliant(false)] - public static unsafe void GetConvolutionParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetConvolutionParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetFixedvOES")] [CLSCompliant(false)] - public static Int32 GetFixed(OpenTK.Graphics.ES11.All pname) { throw new NotImplementedException(); } + public static Int32 GetFixed(OpenTK.Graphics.ES11.All pname) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetFixedvOES")] [CLSCompliant(false)] - public static void GetFixed(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFixed(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetFixedvOES")] [CLSCompliant(false)] - public static void GetFixed(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFixed(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetFixedvOES")] [CLSCompliant(false)] - public static unsafe void GetFixed(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFixed(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Retrieve information about attachments of a bound framebuffer object @@ -11792,7 +11792,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGetFramebufferAttachmentParameterivOES")] [CLSCompliant(false)] - public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Retrieve information about attachments of a bound framebuffer object @@ -11811,7 +11811,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGetFramebufferAttachmentParameterivOES")] [CLSCompliant(false)] - public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Retrieve information about attachments of a bound framebuffer object @@ -11830,7 +11830,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGetFramebufferAttachmentParameterivOES")] [CLSCompliant(false)] - public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11838,7 +11838,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetHistogramParameterxvOES")] [CLSCompliant(false)] - public static void GetHistogramParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetHistogramParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11846,7 +11846,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetHistogramParameterxvOES")] [CLSCompliant(false)] - public static void GetHistogramParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetHistogramParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11854,7 +11854,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetHistogramParameterxvOES")] [CLSCompliant(false)] - public static unsafe void GetHistogramParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetHistogramParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11862,7 +11862,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetLightxOES")] [CLSCompliant(false)] - public static void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11870,7 +11870,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetLightxOES")] [CLSCompliant(false)] - public static void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11878,7 +11878,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetLightxOES")] [CLSCompliant(false)] - public static unsafe void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11886,7 +11886,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(query)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMapxvOES")] [CLSCompliant(false)] - public static void GetMapx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All query, [OutAttribute, CountAttribute(Computed = "query")] Int32[] v) { throw new NotImplementedException(); } + public static void GetMapx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All query, [OutAttribute, CountAttribute(Computed = "query")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11894,7 +11894,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(query)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMapxvOES")] [CLSCompliant(false)] - public static void GetMapx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All query, [OutAttribute, CountAttribute(Computed = "query")] out Int32 v) { throw new NotImplementedException(); } + public static void GetMapx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All query, [OutAttribute, CountAttribute(Computed = "query")] out Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11902,14 +11902,14 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(query)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMapxvOES")] [CLSCompliant(false)] - public static unsafe void GetMapx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All query, [OutAttribute, CountAttribute(Computed = "query")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void GetMapx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All query, [OutAttribute, CountAttribute(Computed = "query")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMaterialxOES")] - public static void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11917,7 +11917,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMaterialxvOES")] [CLSCompliant(false)] - public static void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11925,7 +11925,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMaterialxvOES")] [CLSCompliant(false)] - public static unsafe void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Retrieve information about a bound renderbuffer object @@ -11941,7 +11941,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGetRenderbufferParameterivOES")] [CLSCompliant(false)] - public static void GetRenderbufferParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Retrieve information about a bound renderbuffer object @@ -11957,7 +11957,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGetRenderbufferParameterivOES")] [CLSCompliant(false)] - public static void GetRenderbufferParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Retrieve information about a bound renderbuffer object @@ -11973,7 +11973,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGetRenderbufferParameterivOES")] [CLSCompliant(false)] - public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11981,7 +11981,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexEnvxvOES")] [CLSCompliant(false)] - public static void GetTexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11989,7 +11989,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexEnvxvOES")] [CLSCompliant(false)] - public static void GetTexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11997,7 +11997,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexEnvxvOES")] [CLSCompliant(false)] - public static unsafe void GetTexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_cube_map] /// Return texture coordinate generation parameters @@ -12013,7 +12013,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenfvOES")] [CLSCompliant(false)] - public static void GetTexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_cube_map] /// Return texture coordinate generation parameters @@ -12029,7 +12029,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenfvOES")] [CLSCompliant(false)] - public static void GetTexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_cube_map] /// Return texture coordinate generation parameters @@ -12045,7 +12045,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenfvOES")] [CLSCompliant(false)] - public static unsafe void GetTexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_cube_map] /// Return texture coordinate generation parameters @@ -12061,7 +12061,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenivOES")] [CLSCompliant(false)] - public static void GetTexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_cube_map] /// Return texture coordinate generation parameters @@ -12077,7 +12077,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenivOES")] [CLSCompliant(false)] - public static void GetTexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_cube_map] /// Return texture coordinate generation parameters @@ -12093,7 +12093,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenivOES")] [CLSCompliant(false)] - public static unsafe void GetTexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point|OES_texture_cube_map] /// @@ -12101,7 +12101,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point|OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenxvOES")] [CLSCompliant(false)] - public static void GetTexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point|OES_texture_cube_map] /// @@ -12109,7 +12109,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point|OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenxvOES")] [CLSCompliant(false)] - public static void GetTexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point|OES_texture_cube_map] /// @@ -12117,7 +12117,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point|OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenxvOES")] [CLSCompliant(false)] - public static unsafe void GetTexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -12126,7 +12126,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexLevelParameterxvOES")] [CLSCompliant(false)] - public static void GetTexLevelParameterx(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexLevelParameterx(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -12135,7 +12135,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexLevelParameterxvOES")] [CLSCompliant(false)] - public static void GetTexLevelParameterx(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexLevelParameterx(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -12144,7 +12144,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexLevelParameterxvOES")] [CLSCompliant(false)] - public static unsafe void GetTexLevelParameterx(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexLevelParameterx(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -12152,7 +12152,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexParameterxvOES")] [CLSCompliant(false)] - public static void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -12160,7 +12160,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexParameterxvOES")] [CLSCompliant(false)] - public static void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -12168,18 +12168,18 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexParameterxvOES")] [CLSCompliant(false)] - public static unsafe void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glIndexxOES")] - public static void Indexx(Int32 component) { throw new NotImplementedException(); } + public static void Indexx(Int32 component) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 1] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glIndexxvOES")] [CLSCompliant(false)] - public static unsafe void Indexx([CountAttribute(Count = 1)] Int32* component) { throw new NotImplementedException(); } + public static unsafe void Indexx([CountAttribute(Count = 1)] Int32* component) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Determine if a name corresponds to a framebuffer object @@ -12189,7 +12189,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glIsFramebufferOES")] [CLSCompliant(false)] - public static bool IsFramebuffer(Int32 framebuffer) { throw new NotImplementedException(); } + public static bool IsFramebuffer(Int32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Determine if a name corresponds to a framebuffer object @@ -12199,7 +12199,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glIsFramebufferOES")] [CLSCompliant(false)] - public static bool IsFramebuffer(UInt32 framebuffer) { throw new NotImplementedException(); } + public static bool IsFramebuffer(UInt32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Determine if a name corresponds to a renderbuffer object @@ -12209,7 +12209,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glIsRenderbufferOES")] [CLSCompliant(false)] - public static bool IsRenderbuffer(Int32 renderbuffer) { throw new NotImplementedException(); } + public static bool IsRenderbuffer(Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Determine if a name corresponds to a renderbuffer object @@ -12219,7 +12219,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glIsRenderbufferOES")] [CLSCompliant(false)] - public static bool IsRenderbuffer(UInt32 renderbuffer) { throw new NotImplementedException(); } + public static bool IsRenderbuffer(UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Determine if a name corresponds to a vertex array object @@ -12229,7 +12229,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glIsVertexArrayOES")] [CLSCompliant(false)] - public static bool IsVertexArray(Int32 array) { throw new NotImplementedException(); } + public static bool IsVertexArray(Int32 array) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Determine if a name corresponds to a vertex array object @@ -12239,34 +12239,34 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glIsVertexArrayOES")] [CLSCompliant(false)] - public static bool IsVertexArray(UInt32 array) { throw new NotImplementedException(); } + public static bool IsVertexArray(UInt32 array) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightModelxOES")] - public static void LightModelx(OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void LightModelx(OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightModelxvOES")] [CLSCompliant(false)] - public static void LightModelx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void LightModelx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightModelxvOES")] [CLSCompliant(false)] - public static unsafe void LightModelx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void LightModelx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightxOES")] - public static void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -12274,7 +12274,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightxvOES")] [CLSCompliant(false)] - public static void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -12282,52 +12282,52 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightxvOES")] [CLSCompliant(false)] - public static unsafe void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLineWidthxOES")] - public static void LineWidthx(Int32 width) { throw new NotImplementedException(); } + public static void LineWidthx(Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadMatrixxOES")] [CLSCompliant(false)] - public static void LoadMatrixx([CountAttribute(Count = 16)] Int32[] m) { throw new NotImplementedException(); } + public static void LoadMatrixx([CountAttribute(Count = 16)] Int32[] m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadMatrixxOES")] [CLSCompliant(false)] - public static void LoadMatrixx([CountAttribute(Count = 16)] ref Int32 m) { throw new NotImplementedException(); } + public static void LoadMatrixx([CountAttribute(Count = 16)] ref Int32 m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadMatrixxOES")] [CLSCompliant(false)] - public static unsafe void LoadMatrixx([CountAttribute(Count = 16)] Int32* m) { throw new NotImplementedException(); } + public static unsafe void LoadMatrixx([CountAttribute(Count = 16)] Int32* m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_matrix_palette] [AutoGenerated(Category = "OES_matrix_palette", Version = "", EntryPoint = "glLoadPaletteFromModelViewMatrixOES")] - public static void LoadPaletteFromModelViewMatrix() { throw new NotImplementedException(); } + public static void LoadPaletteFromModelViewMatrix() { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadTransposeMatrixxOES")] [CLSCompliant(false)] - public static void LoadTransposeMatrixx([CountAttribute(Count = 16)] Int32[] m) { throw new NotImplementedException(); } + public static void LoadTransposeMatrixx([CountAttribute(Count = 16)] Int32[] m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadTransposeMatrixxOES")] [CLSCompliant(false)] - public static void LoadTransposeMatrixx([CountAttribute(Count = 16)] ref Int32 m) { throw new NotImplementedException(); } + public static void LoadTransposeMatrixx([CountAttribute(Count = 16)] ref Int32 m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadTransposeMatrixxOES")] [CLSCompliant(false)] - public static unsafe void LoadTransposeMatrixx([CountAttribute(Count = 16)] Int32* m) { throw new NotImplementedException(); } + public static unsafe void LoadTransposeMatrixx([CountAttribute(Count = 16)] Int32* m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -12337,7 +12337,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMap1xOES")] - public static void Map1x(OpenTK.Graphics.ES11.All target, Int32 u1, Int32 u2, Int32 stride, Int32 order, Int32 points) { throw new NotImplementedException(); } + public static void Map1x(OpenTK.Graphics.ES11.All target, Int32 u1, Int32 u2, Int32 stride, Int32 order, Int32 points) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -12351,7 +12351,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMap2xOES")] - public static void Map2x(OpenTK.Graphics.ES11.All target, Int32 u1, Int32 u2, Int32 ustride, Int32 uorder, Int32 v1, Int32 v2, Int32 vstride, Int32 vorder, Int32 points) { throw new NotImplementedException(); } + public static void Map2x(OpenTK.Graphics.ES11.All target, Int32 u1, Int32 u2, Int32 ustride, Int32 uorder, Int32 v1, Int32 v2, Int32 vstride, Int32 vorder, Int32 points) { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// Map a buffer object's data store @@ -12363,14 +12363,14 @@ namespace OpenTK.Graphics.ES11 /// For glMapBuffer only, specifies the access policy, indicating whether it will be possible to read from, write to, or both read from and write to the buffer object's mapped data store. The symbolic constant must be ReadOnly, WriteOnly, or ReadWrite. /// [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glMapBufferOES")] - public static IntPtr MapBuffer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All access) { throw new NotImplementedException(); } + public static IntPtr MapBuffer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All access) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMapGrid1xOES")] - public static void MapGrid1x(Int32 n, Int32 u1, Int32 u2) { throw new NotImplementedException(); } + public static void MapGrid1x(Int32 n, Int32 u1, Int32 u2) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -12379,14 +12379,14 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMapGrid2xOES")] - public static void MapGrid2x(Int32 n, Int32 u1, Int32 u2, Int32 v1, Int32 v2) { throw new NotImplementedException(); } + public static void MapGrid2x(Int32 n, Int32 u1, Int32 u2, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMaterialxOES")] - public static void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -12394,7 +12394,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMaterialxvOES")] [CLSCompliant(false)] - public static void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -12402,7 +12402,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMaterialxvOES")] [CLSCompliant(false)] - public static unsafe void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_matrix_palette] /// @@ -12410,7 +12410,7 @@ namespace OpenTK.Graphics.ES11 /// /// [length: COMPSIZE(size,type,stride)] [AutoGenerated(Category = "OES_matrix_palette", Version = "", EntryPoint = "glMatrixIndexPointerOES")] - public static void MatrixIndexPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void MatrixIndexPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_matrix_palette] /// @@ -12421,7 +12421,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void MatrixIndexPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_matrix_palette] /// @@ -12432,7 +12432,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void MatrixIndexPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_matrix_palette] /// @@ -12443,7 +12443,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void MatrixIndexPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_matrix_palette] /// @@ -12453,7 +12453,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "OES_matrix_palette", Version = "", EntryPoint = "glMatrixIndexPointerOES")] public static void MatrixIndexPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T3 pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12466,7 +12466,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord1bOES")] [CLSCompliant(false)] - public static void MultiTexCoord1(OpenTK.Graphics.ES11.All texture, Byte s) { throw new NotImplementedException(); } + public static void MultiTexCoord1(OpenTK.Graphics.ES11.All texture, Byte s) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12479,7 +12479,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord1bOES")] [CLSCompliant(false)] - public static void MultiTexCoord1(OpenTK.Graphics.ES11.All texture, SByte s) { throw new NotImplementedException(); } + public static void MultiTexCoord1(OpenTK.Graphics.ES11.All texture, SByte s) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12492,7 +12492,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord1bvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord1(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 1)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord1(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 1)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12505,20 +12505,20 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord1bvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord1(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 1)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord1(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 1)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord1xOES")] - public static void MultiTexCoord1x(OpenTK.Graphics.ES11.All texture, Int32 s) { throw new NotImplementedException(); } + public static void MultiTexCoord1x(OpenTK.Graphics.ES11.All texture, Int32 s) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 1] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord1xvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord1x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord1x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12534,7 +12534,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bOES")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, Byte s, Byte t) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, Byte s, Byte t) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12550,7 +12550,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bOES")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, SByte s, SByte t) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, SByte s, SByte t) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12563,7 +12563,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] Byte[] coords) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] Byte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12576,7 +12576,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] ref Byte coords) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] ref Byte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12589,7 +12589,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12602,7 +12602,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] SByte[] coords) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] SByte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12615,7 +12615,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] ref SByte coords) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] ref SByte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12628,35 +12628,35 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord2xOES")] - public static void MultiTexCoord2x(OpenTK.Graphics.ES11.All texture, Int32 s, Int32 t) { throw new NotImplementedException(); } + public static void MultiTexCoord2x(OpenTK.Graphics.ES11.All texture, Int32 s, Int32 t) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord2xvOES")] [CLSCompliant(false)] - public static void MultiTexCoord2x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] Int32[] coords) { throw new NotImplementedException(); } + public static void MultiTexCoord2x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord2xvOES")] [CLSCompliant(false)] - public static void MultiTexCoord2x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] ref Int32 coords) { throw new NotImplementedException(); } + public static void MultiTexCoord2x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord2xvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord2x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord2x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12675,7 +12675,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bOES")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, Byte s, Byte t, Byte r) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, Byte s, Byte t, Byte r) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12694,7 +12694,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bOES")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, SByte s, SByte t, SByte r) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, SByte s, SByte t, SByte r) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12707,7 +12707,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] Byte[] coords) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] Byte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12720,7 +12720,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] ref Byte coords) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] ref Byte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12733,7 +12733,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12746,7 +12746,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] SByte[] coords) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] SByte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12759,7 +12759,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] ref SByte coords) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] ref SByte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12772,7 +12772,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -12780,28 +12780,28 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord3xOES")] - public static void MultiTexCoord3x(OpenTK.Graphics.ES11.All texture, Int32 s, Int32 t, Int32 r) { throw new NotImplementedException(); } + public static void MultiTexCoord3x(OpenTK.Graphics.ES11.All texture, Int32 s, Int32 t, Int32 r) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord3xvOES")] [CLSCompliant(false)] - public static void MultiTexCoord3x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] Int32[] coords) { throw new NotImplementedException(); } + public static void MultiTexCoord3x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord3xvOES")] [CLSCompliant(false)] - public static void MultiTexCoord3x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] ref Int32 coords) { throw new NotImplementedException(); } + public static void MultiTexCoord3x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord3xvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord3x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord3x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12823,7 +12823,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bOES")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, Byte s, Byte t, Byte r, Byte q) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, Byte s, Byte t, Byte r, Byte q) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12845,7 +12845,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bOES")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, SByte s, SByte t, SByte r, SByte q) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, SByte s, SByte t, SByte r, SByte q) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12858,7 +12858,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] Byte[] coords) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] Byte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12871,7 +12871,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] ref Byte coords) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] ref Byte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12884,7 +12884,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12897,7 +12897,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] SByte[] coords) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] SByte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12910,7 +12910,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] ref SByte coords) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] ref SByte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12923,7 +12923,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -12932,89 +12932,89 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord4xOES")] - public static void MultiTexCoord4x(OpenTK.Graphics.ES11.All texture, Int32 s, Int32 t, Int32 r, Int32 q) { throw new NotImplementedException(); } + public static void MultiTexCoord4x(OpenTK.Graphics.ES11.All texture, Int32 s, Int32 t, Int32 r, Int32 q) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord4xvOES")] [CLSCompliant(false)] - public static void MultiTexCoord4x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] Int32[] coords) { throw new NotImplementedException(); } + public static void MultiTexCoord4x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord4xvOES")] [CLSCompliant(false)] - public static void MultiTexCoord4x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] ref Int32 coords) { throw new NotImplementedException(); } + public static void MultiTexCoord4x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord4xvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord4x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord4x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultMatrixxOES")] [CLSCompliant(false)] - public static void MultMatrixx([CountAttribute(Count = 16)] Int32[] m) { throw new NotImplementedException(); } + public static void MultMatrixx([CountAttribute(Count = 16)] Int32[] m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultMatrixxOES")] [CLSCompliant(false)] - public static void MultMatrixx([CountAttribute(Count = 16)] ref Int32 m) { throw new NotImplementedException(); } + public static void MultMatrixx([CountAttribute(Count = 16)] ref Int32 m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultMatrixxOES")] [CLSCompliant(false)] - public static unsafe void MultMatrixx([CountAttribute(Count = 16)] Int32* m) { throw new NotImplementedException(); } + public static unsafe void MultMatrixx([CountAttribute(Count = 16)] Int32* m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultTransposeMatrixxOES")] [CLSCompliant(false)] - public static void MultTransposeMatrixx([CountAttribute(Count = 16)] Int32[] m) { throw new NotImplementedException(); } + public static void MultTransposeMatrixx([CountAttribute(Count = 16)] Int32[] m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultTransposeMatrixxOES")] [CLSCompliant(false)] - public static void MultTransposeMatrixx([CountAttribute(Count = 16)] ref Int32 m) { throw new NotImplementedException(); } + public static void MultTransposeMatrixx([CountAttribute(Count = 16)] ref Int32 m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultTransposeMatrixxOES")] [CLSCompliant(false)] - public static unsafe void MultTransposeMatrixx([CountAttribute(Count = 16)] Int32* m) { throw new NotImplementedException(); } + public static unsafe void MultTransposeMatrixx([CountAttribute(Count = 16)] Int32* m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glNormal3xOES")] - public static void Normal3x(Int32 nx, Int32 ny, Int32 nz) { throw new NotImplementedException(); } + public static void Normal3x(Int32 nx, Int32 ny, Int32 nz) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glNormal3xvOES")] [CLSCompliant(false)] - public static void Normal3x([CountAttribute(Count = 3)] Int32[] coords) { throw new NotImplementedException(); } + public static void Normal3x([CountAttribute(Count = 3)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glNormal3xvOES")] [CLSCompliant(false)] - public static void Normal3x([CountAttribute(Count = 3)] ref Int32 coords) { throw new NotImplementedException(); } + public static void Normal3x([CountAttribute(Count = 3)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glNormal3xvOES")] [CLSCompliant(false)] - public static unsafe void Normal3x([CountAttribute(Count = 3)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void Normal3x([CountAttribute(Count = 3)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Multiply the current matrix with an orthographic matrix @@ -13038,7 +13038,7 @@ namespace OpenTK.Graphics.ES11 /// Specify the distances to the nearer and farther depth clipping planes. These values are negative if the plane is to be behind the viewer. /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glOrthofOES")] - public static void Ortho(Single l, Single r, Single b, Single t, Single n, Single f) { throw new NotImplementedException(); } + public static void Ortho(Single l, Single r, Single b, Single t, Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -13048,51 +13048,51 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glOrthoxOES")] - public static void Orthox(Int32 l, Int32 r, Int32 b, Int32 t, Int32 n, Int32 f) { throw new NotImplementedException(); } + public static void Orthox(Int32 l, Int32 r, Int32 b, Int32 t, Int32 n, Int32 f) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPassThroughxOES")] - public static void PassThroughx(Int32 token) { throw new NotImplementedException(); } + public static void PassThroughx(Int32 token) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelTransferxOES")] - public static void PixelTransferx(OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void PixelTransferx(OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelZoomxOES")] - public static void PixelZoomx(Int32 xfactor, Int32 yfactor) { throw new NotImplementedException(); } + public static void PixelZoomx(Int32 xfactor, Int32 yfactor) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPointParameterxOES")] - public static void PointParameterx(OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void PointParameterx(OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPointParameterxvOES")] [CLSCompliant(false)] - public static void PointParameterx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void PointParameterx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPointParameterxvOES")] [CLSCompliant(false)] - public static unsafe void PointParameterx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void PointParameterx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_point_size_array] /// /// /// [length: COMPSIZE(type,stride)] [AutoGenerated(Category = "OES_point_size_array", Version = "", EntryPoint = "glPointSizePointerOES")] - public static void PointSizePointer(OpenTK.Graphics.ES11.All type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void PointSizePointer(OpenTK.Graphics.ES11.All type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_point_size_array] /// @@ -13102,7 +13102,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void PointSizePointer(OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_point_size_array] /// @@ -13112,7 +13112,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void PointSizePointer(OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_point_size_array] /// @@ -13122,7 +13122,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void PointSizePointer(OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_point_size_array] /// @@ -13131,18 +13131,18 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "OES_point_size_array", Version = "", EntryPoint = "glPointSizePointerOES")] public static void PointSizePointer(OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPointSizexOES")] - public static void PointSizex(Int32 size) { throw new NotImplementedException(); } + public static void PointSizex(Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPolygonOffsetxOES")] - public static void PolygonOffsetx(Int32 factor, Int32 units) { throw new NotImplementedException(); } + public static void PolygonOffsetx(Int32 factor, Int32 units) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -13150,7 +13150,7 @@ namespace OpenTK.Graphics.ES11 /// [length: n] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")] [CLSCompliant(false)] - public static void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures, [CountAttribute(Parameter = "n")] Int32[] priorities) { throw new NotImplementedException(); } + public static void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures, [CountAttribute(Parameter = "n")] Int32[] priorities) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -13158,7 +13158,7 @@ namespace OpenTK.Graphics.ES11 /// [length: n] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")] [CLSCompliant(false)] - public static void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures, [CountAttribute(Parameter = "n")] ref Int32 priorities) { throw new NotImplementedException(); } + public static void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures, [CountAttribute(Parameter = "n")] ref Int32 priorities) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -13166,7 +13166,7 @@ namespace OpenTK.Graphics.ES11 /// [length: n] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")] [CLSCompliant(false)] - public static unsafe void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures, [CountAttribute(Parameter = "n")] Int32* priorities) { throw new NotImplementedException(); } + public static unsafe void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures, [CountAttribute(Parameter = "n")] Int32* priorities) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -13174,7 +13174,7 @@ namespace OpenTK.Graphics.ES11 /// [length: n] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")] [CLSCompliant(false)] - public static void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures, [CountAttribute(Parameter = "n")] Int32[] priorities) { throw new NotImplementedException(); } + public static void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures, [CountAttribute(Parameter = "n")] Int32[] priorities) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -13182,7 +13182,7 @@ namespace OpenTK.Graphics.ES11 /// [length: n] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")] [CLSCompliant(false)] - public static void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures, [CountAttribute(Parameter = "n")] ref Int32 priorities) { throw new NotImplementedException(); } + public static void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures, [CountAttribute(Parameter = "n")] ref Int32 priorities) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -13190,77 +13190,77 @@ namespace OpenTK.Graphics.ES11 /// [length: n] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")] [CLSCompliant(false)] - public static unsafe void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures, [CountAttribute(Parameter = "n")] Int32* priorities) { throw new NotImplementedException(); } + public static unsafe void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures, [CountAttribute(Parameter = "n")] Int32* priorities) { throw new BindingsNotRewrittenException(); } /// [requires: OES_query_matrix] /// [length: 16] /// [length: 16] [AutoGenerated(Category = "OES_query_matrix", Version = "", EntryPoint = "glQueryMatrixxOES")] [CLSCompliant(false)] - public static Int32 QueryMatrixx([OutAttribute, CountAttribute(Count = 16)] Int32[] mantissa, [OutAttribute, CountAttribute(Count = 16)] Int32[] exponent) { throw new NotImplementedException(); } + public static Int32 QueryMatrixx([OutAttribute, CountAttribute(Count = 16)] Int32[] mantissa, [OutAttribute, CountAttribute(Count = 16)] Int32[] exponent) { throw new BindingsNotRewrittenException(); } /// [requires: OES_query_matrix] /// [length: 16] /// [length: 16] [AutoGenerated(Category = "OES_query_matrix", Version = "", EntryPoint = "glQueryMatrixxOES")] [CLSCompliant(false)] - public static Int32 QueryMatrixx([OutAttribute, CountAttribute(Count = 16)] out Int32 mantissa, [OutAttribute, CountAttribute(Count = 16)] out Int32 exponent) { throw new NotImplementedException(); } + public static Int32 QueryMatrixx([OutAttribute, CountAttribute(Count = 16)] out Int32 mantissa, [OutAttribute, CountAttribute(Count = 16)] out Int32 exponent) { throw new BindingsNotRewrittenException(); } /// [requires: OES_query_matrix] /// [length: 16] /// [length: 16] [AutoGenerated(Category = "OES_query_matrix", Version = "", EntryPoint = "glQueryMatrixxOES")] [CLSCompliant(false)] - public static unsafe Int32 QueryMatrixx([OutAttribute, CountAttribute(Count = 16)] Int32* mantissa, [OutAttribute, CountAttribute(Count = 16)] Int32* exponent) { throw new NotImplementedException(); } + public static unsafe Int32 QueryMatrixx([OutAttribute, CountAttribute(Count = 16)] Int32* mantissa, [OutAttribute, CountAttribute(Count = 16)] Int32* exponent) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos2xOES")] - public static void RasterPos2x(Int32 x, Int32 y) { throw new NotImplementedException(); } + public static void RasterPos2x(Int32 x, Int32 y) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos2xvOES")] [CLSCompliant(false)] - public static void RasterPos2x([CountAttribute(Count = 2)] Int32[] coords) { throw new NotImplementedException(); } + public static void RasterPos2x([CountAttribute(Count = 2)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos2xvOES")] [CLSCompliant(false)] - public static void RasterPos2x([CountAttribute(Count = 2)] ref Int32 coords) { throw new NotImplementedException(); } + public static void RasterPos2x([CountAttribute(Count = 2)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos2xvOES")] [CLSCompliant(false)] - public static unsafe void RasterPos2x([CountAttribute(Count = 2)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void RasterPos2x([CountAttribute(Count = 2)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos3xOES")] - public static void RasterPos3x(Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void RasterPos3x(Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos3xvOES")] [CLSCompliant(false)] - public static void RasterPos3x([CountAttribute(Count = 3)] Int32[] coords) { throw new NotImplementedException(); } + public static void RasterPos3x([CountAttribute(Count = 3)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos3xvOES")] [CLSCompliant(false)] - public static void RasterPos3x([CountAttribute(Count = 3)] ref Int32 coords) { throw new NotImplementedException(); } + public static void RasterPos3x([CountAttribute(Count = 3)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos3xvOES")] [CLSCompliant(false)] - public static unsafe void RasterPos3x([CountAttribute(Count = 3)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void RasterPos3x([CountAttribute(Count = 3)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -13268,25 +13268,25 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos4xOES")] - public static void RasterPos4x(Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } + public static void RasterPos4x(Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos4xvOES")] [CLSCompliant(false)] - public static void RasterPos4x([CountAttribute(Count = 4)] Int32[] coords) { throw new NotImplementedException(); } + public static void RasterPos4x([CountAttribute(Count = 4)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos4xvOES")] [CLSCompliant(false)] - public static void RasterPos4x([CountAttribute(Count = 4)] ref Int32 coords) { throw new NotImplementedException(); } + public static void RasterPos4x([CountAttribute(Count = 4)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos4xvOES")] [CLSCompliant(false)] - public static unsafe void RasterPos4x([CountAttribute(Count = 4)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void RasterPos4x([CountAttribute(Count = 4)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -13294,28 +13294,28 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRectxOES")] - public static void Rectx(Int32 x1, Int32 y1, Int32 x2, Int32 y2) { throw new NotImplementedException(); } + public static void Rectx(Int32 x1, Int32 y1, Int32 x2, Int32 y2) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRectxvOES")] [CLSCompliant(false)] - public static void Rectx([CountAttribute(Count = 2)] Int32[] v1, [CountAttribute(Count = 2)] Int32[] v2) { throw new NotImplementedException(); } + public static void Rectx([CountAttribute(Count = 2)] Int32[] v1, [CountAttribute(Count = 2)] Int32[] v2) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRectxvOES")] [CLSCompliant(false)] - public static void Rectx([CountAttribute(Count = 2)] ref Int32 v1, [CountAttribute(Count = 2)] ref Int32 v2) { throw new NotImplementedException(); } + public static void Rectx([CountAttribute(Count = 2)] ref Int32 v1, [CountAttribute(Count = 2)] ref Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRectxvOES")] [CLSCompliant(false)] - public static unsafe void Rectx([CountAttribute(Count = 2)] Int32* v1, [CountAttribute(Count = 2)] Int32* v2) { throw new NotImplementedException(); } + public static unsafe void Rectx([CountAttribute(Count = 2)] Int32* v1, [CountAttribute(Count = 2)] Int32* v2) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Create and initialize a renderbuffer object's data store @@ -13333,7 +13333,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the height of the renderbuffer in pixels. /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glRenderbufferStorageOES")] - public static void RenderbufferStorage(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorage(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -13341,20 +13341,20 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRotatexOES")] - public static void Rotatex(Int32 angle, Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void Rotatex(Int32 angle, Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glSampleCoveragexOES")] - public static void SampleCoveragex(Int32 value, bool invert) { throw new NotImplementedException(); } + public static void SampleCoveragex(Int32 value, bool invert) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glScalexOES")] - public static void Scalex(Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void Scalex(Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13364,7 +13364,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord1bOES")] [CLSCompliant(false)] - public static void TexCoord1(Byte s) { throw new NotImplementedException(); } + public static void TexCoord1(Byte s) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13374,7 +13374,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord1bOES")] [CLSCompliant(false)] - public static void TexCoord1(SByte s) { throw new NotImplementedException(); } + public static void TexCoord1(SByte s) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13384,7 +13384,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord1bvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord1([CountAttribute(Count = 1)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord1([CountAttribute(Count = 1)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13394,18 +13394,18 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord1bvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord1([CountAttribute(Count = 1)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord1([CountAttribute(Count = 1)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord1xOES")] - public static void TexCoord1x(Int32 s) { throw new NotImplementedException(); } + public static void TexCoord1x(Int32 s) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 1] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord1xvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord1x([CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord1x([CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13418,7 +13418,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bOES")] [CLSCompliant(false)] - public static void TexCoord2(Byte s, Byte t) { throw new NotImplementedException(); } + public static void TexCoord2(Byte s, Byte t) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13431,7 +13431,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bOES")] [CLSCompliant(false)] - public static void TexCoord2(SByte s, SByte t) { throw new NotImplementedException(); } + public static void TexCoord2(SByte s, SByte t) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13441,7 +13441,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")] [CLSCompliant(false)] - public static void TexCoord2([CountAttribute(Count = 2)] Byte[] coords) { throw new NotImplementedException(); } + public static void TexCoord2([CountAttribute(Count = 2)] Byte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13451,7 +13451,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")] [CLSCompliant(false)] - public static void TexCoord2([CountAttribute(Count = 2)] ref Byte coords) { throw new NotImplementedException(); } + public static void TexCoord2([CountAttribute(Count = 2)] ref Byte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13461,7 +13461,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord2([CountAttribute(Count = 2)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord2([CountAttribute(Count = 2)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13471,7 +13471,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")] [CLSCompliant(false)] - public static void TexCoord2([CountAttribute(Count = 2)] SByte[] coords) { throw new NotImplementedException(); } + public static void TexCoord2([CountAttribute(Count = 2)] SByte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13481,7 +13481,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")] [CLSCompliant(false)] - public static void TexCoord2([CountAttribute(Count = 2)] ref SByte coords) { throw new NotImplementedException(); } + public static void TexCoord2([CountAttribute(Count = 2)] ref SByte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13491,31 +13491,31 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord2([CountAttribute(Count = 2)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord2([CountAttribute(Count = 2)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord2xOES")] - public static void TexCoord2x(Int32 s, Int32 t) { throw new NotImplementedException(); } + public static void TexCoord2x(Int32 s, Int32 t) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord2xvOES")] [CLSCompliant(false)] - public static void TexCoord2x([CountAttribute(Count = 2)] Int32[] coords) { throw new NotImplementedException(); } + public static void TexCoord2x([CountAttribute(Count = 2)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord2xvOES")] [CLSCompliant(false)] - public static void TexCoord2x([CountAttribute(Count = 2)] ref Int32 coords) { throw new NotImplementedException(); } + public static void TexCoord2x([CountAttribute(Count = 2)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord2xvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord2x([CountAttribute(Count = 2)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord2x([CountAttribute(Count = 2)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13531,7 +13531,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bOES")] [CLSCompliant(false)] - public static void TexCoord3(Byte s, Byte t, Byte r) { throw new NotImplementedException(); } + public static void TexCoord3(Byte s, Byte t, Byte r) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13547,7 +13547,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bOES")] [CLSCompliant(false)] - public static void TexCoord3(SByte s, SByte t, SByte r) { throw new NotImplementedException(); } + public static void TexCoord3(SByte s, SByte t, SByte r) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13557,7 +13557,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")] [CLSCompliant(false)] - public static void TexCoord3([CountAttribute(Count = 3)] Byte[] coords) { throw new NotImplementedException(); } + public static void TexCoord3([CountAttribute(Count = 3)] Byte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13567,7 +13567,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")] [CLSCompliant(false)] - public static void TexCoord3([CountAttribute(Count = 3)] ref Byte coords) { throw new NotImplementedException(); } + public static void TexCoord3([CountAttribute(Count = 3)] ref Byte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13577,7 +13577,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord3([CountAttribute(Count = 3)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord3([CountAttribute(Count = 3)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13587,7 +13587,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")] [CLSCompliant(false)] - public static void TexCoord3([CountAttribute(Count = 3)] SByte[] coords) { throw new NotImplementedException(); } + public static void TexCoord3([CountAttribute(Count = 3)] SByte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13597,7 +13597,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")] [CLSCompliant(false)] - public static void TexCoord3([CountAttribute(Count = 3)] ref SByte coords) { throw new NotImplementedException(); } + public static void TexCoord3([CountAttribute(Count = 3)] ref SByte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13607,32 +13607,32 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord3([CountAttribute(Count = 3)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord3([CountAttribute(Count = 3)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord3xOES")] - public static void TexCoord3x(Int32 s, Int32 t, Int32 r) { throw new NotImplementedException(); } + public static void TexCoord3x(Int32 s, Int32 t, Int32 r) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord3xvOES")] [CLSCompliant(false)] - public static void TexCoord3x([CountAttribute(Count = 3)] Int32[] coords) { throw new NotImplementedException(); } + public static void TexCoord3x([CountAttribute(Count = 3)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord3xvOES")] [CLSCompliant(false)] - public static void TexCoord3x([CountAttribute(Count = 3)] ref Int32 coords) { throw new NotImplementedException(); } + public static void TexCoord3x([CountAttribute(Count = 3)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord3xvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord3x([CountAttribute(Count = 3)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord3x([CountAttribute(Count = 3)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13651,7 +13651,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bOES")] [CLSCompliant(false)] - public static void TexCoord4(Byte s, Byte t, Byte r, Byte q) { throw new NotImplementedException(); } + public static void TexCoord4(Byte s, Byte t, Byte r, Byte q) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13670,7 +13670,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bOES")] [CLSCompliant(false)] - public static void TexCoord4(SByte s, SByte t, SByte r, SByte q) { throw new NotImplementedException(); } + public static void TexCoord4(SByte s, SByte t, SByte r, SByte q) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13680,7 +13680,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")] [CLSCompliant(false)] - public static void TexCoord4([CountAttribute(Count = 4)] Byte[] coords) { throw new NotImplementedException(); } + public static void TexCoord4([CountAttribute(Count = 4)] Byte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13690,7 +13690,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")] [CLSCompliant(false)] - public static void TexCoord4([CountAttribute(Count = 4)] ref Byte coords) { throw new NotImplementedException(); } + public static void TexCoord4([CountAttribute(Count = 4)] ref Byte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13700,7 +13700,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord4([CountAttribute(Count = 4)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord4([CountAttribute(Count = 4)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13710,7 +13710,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")] [CLSCompliant(false)] - public static void TexCoord4([CountAttribute(Count = 4)] SByte[] coords) { throw new NotImplementedException(); } + public static void TexCoord4([CountAttribute(Count = 4)] SByte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13720,7 +13720,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")] [CLSCompliant(false)] - public static void TexCoord4([CountAttribute(Count = 4)] ref SByte coords) { throw new NotImplementedException(); } + public static void TexCoord4([CountAttribute(Count = 4)] ref SByte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13730,7 +13730,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord4([CountAttribute(Count = 4)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord4([CountAttribute(Count = 4)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -13738,32 +13738,32 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord4xOES")] - public static void TexCoord4x(Int32 s, Int32 t, Int32 r, Int32 q) { throw new NotImplementedException(); } + public static void TexCoord4x(Int32 s, Int32 t, Int32 r, Int32 q) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord4xvOES")] [CLSCompliant(false)] - public static void TexCoord4x([CountAttribute(Count = 4)] Int32[] coords) { throw new NotImplementedException(); } + public static void TexCoord4x([CountAttribute(Count = 4)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord4xvOES")] [CLSCompliant(false)] - public static void TexCoord4x([CountAttribute(Count = 4)] ref Int32 coords) { throw new NotImplementedException(); } + public static void TexCoord4x([CountAttribute(Count = 4)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord4xvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord4x([CountAttribute(Count = 4)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord4x([CountAttribute(Count = 4)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexEnvxOES")] - public static void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -13771,7 +13771,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexEnvxvOES")] [CLSCompliant(false)] - public static void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -13779,7 +13779,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexEnvxvOES")] [CLSCompliant(false)] - public static unsafe void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_cube_map] /// Control the generation of texture coordinates @@ -13794,7 +13794,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a single-valued texture generation parameter, one of ObjectLinear, EyeLinear, SphereMap, NormalMap, or ReflectionMap. /// [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glTexGenfOES")] - public static void TexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, Single param) { throw new NotImplementedException(); } + public static void TexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_cube_map] /// Control the generation of texture coordinates @@ -13810,7 +13810,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glTexGenfvOES")] [CLSCompliant(false)] - public static void TexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void TexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_cube_map] /// Control the generation of texture coordinates @@ -13826,7 +13826,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glTexGenfvOES")] [CLSCompliant(false)] - public static unsafe void TexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void TexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_cube_map] /// Control the generation of texture coordinates @@ -13841,7 +13841,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a single-valued texture generation parameter, one of ObjectLinear, EyeLinear, SphereMap, NormalMap, or ReflectionMap. /// [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glTexGeniOES")] - public static void TexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void TexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_cube_map] /// Control the generation of texture coordinates @@ -13857,7 +13857,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glTexGenivOES")] [CLSCompliant(false)] - public static void TexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_cube_map] /// Control the generation of texture coordinates @@ -13873,14 +13873,14 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glTexGenivOES")] [CLSCompliant(false)] - public static unsafe void TexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point|OES_texture_cube_map] /// /// /// [AutoGenerated(Category = "OES_fixed_point|OES_texture_cube_map", Version = "", EntryPoint = "glTexGenxOES")] - public static void TexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void TexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point|OES_texture_cube_map] /// @@ -13888,7 +13888,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point|OES_texture_cube_map", Version = "", EntryPoint = "glTexGenxvOES")] [CLSCompliant(false)] - public static void TexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point|OES_texture_cube_map] /// @@ -13896,14 +13896,14 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point|OES_texture_cube_map", Version = "", EntryPoint = "glTexGenxvOES")] [CLSCompliant(false)] - public static unsafe void TexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexParameterxOES")] - public static void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -13911,7 +13911,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexParameterxvOES")] [CLSCompliant(false)] - public static void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -13919,19 +13919,19 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexParameterxvOES")] [CLSCompliant(false)] - public static unsafe void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTranslatexOES")] - public static void Translatex(Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void Translatex(Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glUnmapBufferOES")] - public static bool UnmapBuffer(OpenTK.Graphics.ES11.All target) { throw new NotImplementedException(); } + public static bool UnmapBuffer(OpenTK.Graphics.ES11.All target) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -13944,7 +13944,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bOES")] [CLSCompliant(false)] - public static void Vertex2(Byte x, Byte y) { throw new NotImplementedException(); } + public static void Vertex2(Byte x, Byte y) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -13957,7 +13957,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bOES")] [CLSCompliant(false)] - public static void Vertex2(SByte x, SByte y) { throw new NotImplementedException(); } + public static void Vertex2(SByte x, SByte y) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -13967,7 +13967,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bvOES")] [CLSCompliant(false)] - public static void Vertex2([CountAttribute(Count = 2)] Byte[] coords) { throw new NotImplementedException(); } + public static void Vertex2([CountAttribute(Count = 2)] Byte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -13977,7 +13977,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bvOES")] [CLSCompliant(false)] - public static void Vertex2([CountAttribute(Count = 2)] ref Byte coords) { throw new NotImplementedException(); } + public static void Vertex2([CountAttribute(Count = 2)] ref Byte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -13987,7 +13987,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bvOES")] [CLSCompliant(false)] - public static unsafe void Vertex2([CountAttribute(Count = 2)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void Vertex2([CountAttribute(Count = 2)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -13997,7 +13997,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bvOES")] [CLSCompliant(false)] - public static void Vertex2([CountAttribute(Count = 2)] SByte[] coords) { throw new NotImplementedException(); } + public static void Vertex2([CountAttribute(Count = 2)] SByte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -14007,7 +14007,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bvOES")] [CLSCompliant(false)] - public static void Vertex2([CountAttribute(Count = 2)] ref SByte coords) { throw new NotImplementedException(); } + public static void Vertex2([CountAttribute(Count = 2)] ref SByte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -14017,24 +14017,24 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bvOES")] [CLSCompliant(false)] - public static unsafe void Vertex2([CountAttribute(Count = 2)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void Vertex2([CountAttribute(Count = 2)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex2xOES")] - public static void Vertex2x(Int32 x) { throw new NotImplementedException(); } + public static void Vertex2x(Int32 x) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex2xvOES")] [CLSCompliant(false)] - public static void Vertex2x([CountAttribute(Count = 2)] Int32[] coords) { throw new NotImplementedException(); } + public static void Vertex2x([CountAttribute(Count = 2)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex2xvOES")] [CLSCompliant(false)] - public static unsafe void Vertex2x([CountAttribute(Count = 2)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void Vertex2x([CountAttribute(Count = 2)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -14050,7 +14050,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bOES")] [CLSCompliant(false)] - public static void Vertex3(Byte x, Byte y, Byte z) { throw new NotImplementedException(); } + public static void Vertex3(Byte x, Byte y, Byte z) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -14066,7 +14066,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bOES")] [CLSCompliant(false)] - public static void Vertex3(SByte x, SByte y, SByte z) { throw new NotImplementedException(); } + public static void Vertex3(SByte x, SByte y, SByte z) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -14076,7 +14076,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")] [CLSCompliant(false)] - public static void Vertex3([CountAttribute(Count = 3)] Byte[] coords) { throw new NotImplementedException(); } + public static void Vertex3([CountAttribute(Count = 3)] Byte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -14086,7 +14086,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")] [CLSCompliant(false)] - public static void Vertex3([CountAttribute(Count = 3)] ref Byte coords) { throw new NotImplementedException(); } + public static void Vertex3([CountAttribute(Count = 3)] ref Byte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -14096,7 +14096,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")] [CLSCompliant(false)] - public static unsafe void Vertex3([CountAttribute(Count = 3)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void Vertex3([CountAttribute(Count = 3)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -14106,7 +14106,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")] [CLSCompliant(false)] - public static void Vertex3([CountAttribute(Count = 3)] SByte[] coords) { throw new NotImplementedException(); } + public static void Vertex3([CountAttribute(Count = 3)] SByte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -14116,7 +14116,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")] [CLSCompliant(false)] - public static void Vertex3([CountAttribute(Count = 3)] ref SByte coords) { throw new NotImplementedException(); } + public static void Vertex3([CountAttribute(Count = 3)] ref SByte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -14126,31 +14126,31 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")] [CLSCompliant(false)] - public static unsafe void Vertex3([CountAttribute(Count = 3)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void Vertex3([CountAttribute(Count = 3)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex3xOES")] - public static void Vertex3x(Int32 x, Int32 y) { throw new NotImplementedException(); } + public static void Vertex3x(Int32 x, Int32 y) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex3xvOES")] [CLSCompliant(false)] - public static void Vertex3x([CountAttribute(Count = 3)] Int32[] coords) { throw new NotImplementedException(); } + public static void Vertex3x([CountAttribute(Count = 3)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex3xvOES")] [CLSCompliant(false)] - public static void Vertex3x([CountAttribute(Count = 3)] ref Int32 coords) { throw new NotImplementedException(); } + public static void Vertex3x([CountAttribute(Count = 3)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex3xvOES")] [CLSCompliant(false)] - public static unsafe void Vertex3x([CountAttribute(Count = 3)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void Vertex3x([CountAttribute(Count = 3)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -14169,7 +14169,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bOES")] [CLSCompliant(false)] - public static void Vertex4(Byte x, Byte y, Byte z, Byte w) { throw new NotImplementedException(); } + public static void Vertex4(Byte x, Byte y, Byte z, Byte w) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -14188,7 +14188,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bOES")] [CLSCompliant(false)] - public static void Vertex4(SByte x, SByte y, SByte z, SByte w) { throw new NotImplementedException(); } + public static void Vertex4(SByte x, SByte y, SByte z, SByte w) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -14198,7 +14198,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")] [CLSCompliant(false)] - public static void Vertex4([CountAttribute(Count = 4)] Byte[] coords) { throw new NotImplementedException(); } + public static void Vertex4([CountAttribute(Count = 4)] Byte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -14208,7 +14208,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")] [CLSCompliant(false)] - public static void Vertex4([CountAttribute(Count = 4)] ref Byte coords) { throw new NotImplementedException(); } + public static void Vertex4([CountAttribute(Count = 4)] ref Byte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -14218,7 +14218,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")] [CLSCompliant(false)] - public static unsafe void Vertex4([CountAttribute(Count = 4)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void Vertex4([CountAttribute(Count = 4)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -14228,7 +14228,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")] [CLSCompliant(false)] - public static void Vertex4([CountAttribute(Count = 4)] SByte[] coords) { throw new NotImplementedException(); } + public static void Vertex4([CountAttribute(Count = 4)] SByte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -14238,7 +14238,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")] [CLSCompliant(false)] - public static void Vertex4([CountAttribute(Count = 4)] ref SByte coords) { throw new NotImplementedException(); } + public static void Vertex4([CountAttribute(Count = 4)] ref SByte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -14248,32 +14248,32 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")] [CLSCompliant(false)] - public static unsafe void Vertex4([CountAttribute(Count = 4)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void Vertex4([CountAttribute(Count = 4)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex4xOES")] - public static void Vertex4x(Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void Vertex4x(Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex4xvOES")] [CLSCompliant(false)] - public static void Vertex4x([CountAttribute(Count = 4)] Int32[] coords) { throw new NotImplementedException(); } + public static void Vertex4x([CountAttribute(Count = 4)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex4xvOES")] [CLSCompliant(false)] - public static void Vertex4x([CountAttribute(Count = 4)] ref Int32 coords) { throw new NotImplementedException(); } + public static void Vertex4x([CountAttribute(Count = 4)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex4xvOES")] [CLSCompliant(false)] - public static unsafe void Vertex4x([CountAttribute(Count = 4)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void Vertex4x([CountAttribute(Count = 4)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_matrix_palette] /// @@ -14281,7 +14281,7 @@ namespace OpenTK.Graphics.ES11 /// /// [length: COMPSIZE(type,stride)] [AutoGenerated(Category = "OES_matrix_palette", Version = "", EntryPoint = "glWeightPointerOES")] - public static void WeightPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void WeightPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_matrix_palette] /// @@ -14292,7 +14292,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void WeightPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T3[] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_matrix_palette] /// @@ -14303,7 +14303,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void WeightPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T3[,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_matrix_palette] /// @@ -14314,7 +14314,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void WeightPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T3[,,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_matrix_palette] /// @@ -14324,7 +14324,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "OES_matrix_palette", Version = "", EntryPoint = "glWeightPointerOES")] public static void WeightPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] ref T3 pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } } @@ -14334,43 +14334,43 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glDisableDriverControlQCOM")] [CLSCompliant(false)] - public static void DisableDriverControl(Int32 driverControl) { throw new NotImplementedException(); } + public static void DisableDriverControl(Int32 driverControl) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glDisableDriverControlQCOM")] [CLSCompliant(false)] - public static void DisableDriverControl(UInt32 driverControl) { throw new NotImplementedException(); } + public static void DisableDriverControl(UInt32 driverControl) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glEnableDriverControlQCOM")] [CLSCompliant(false)] - public static void EnableDriverControl(Int32 driverControl) { throw new NotImplementedException(); } + public static void EnableDriverControl(Int32 driverControl) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glEnableDriverControlQCOM")] [CLSCompliant(false)] - public static void EnableDriverControl(UInt32 driverControl) { throw new NotImplementedException(); } + public static void EnableDriverControl(UInt32 driverControl) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_tiled_rendering] /// [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glEndTilingQCOM")] [CLSCompliant(false)] - public static void EndTiling(Int32 preserveMask) { throw new NotImplementedException(); } + public static void EndTiling(Int32 preserveMask) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_tiled_rendering] /// [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glEndTilingQCOM")] [CLSCompliant(false)] - public static void EndTiling(UInt32 preserveMask) { throw new NotImplementedException(); } + public static void EndTiling(UInt32 preserveMask) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBufferPointervQCOM")] - public static void ExtGetBufferPointer(OpenTK.Graphics.ES11.All target, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } + public static void ExtGetBufferPointer(OpenTK.Graphics.ES11.All target, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -14379,7 +14379,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void ExtGetBufferPointer(OpenTK.Graphics.ES11.All target, [InAttribute, OutAttribute] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -14388,7 +14388,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void ExtGetBufferPointer(OpenTK.Graphics.ES11.All target, [InAttribute, OutAttribute] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -14397,7 +14397,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void ExtGetBufferPointer(OpenTK.Graphics.ES11.All target, [InAttribute, OutAttribute] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -14405,7 +14405,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBufferPointervQCOM")] public static void ExtGetBufferPointer(OpenTK.Graphics.ES11.All target, [InAttribute, OutAttribute] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -14414,7 +14414,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -14422,7 +14422,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -14431,7 +14431,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] out Int32 buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] out Int32 buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -14440,7 +14440,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -14449,7 +14449,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -14457,7 +14457,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -14466,7 +14466,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] out UInt32 buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] out UInt32 buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -14475,7 +14475,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -14484,7 +14484,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -14492,7 +14492,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -14501,7 +14501,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] out Int32 framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] out Int32 framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -14510,7 +14510,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -14519,7 +14519,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -14527,7 +14527,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -14536,7 +14536,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] out UInt32 framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] out UInt32 framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -14545,7 +14545,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -14554,7 +14554,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32[] length) { throw new NotImplementedException(); } + public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -14563,7 +14563,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] out String source, [OutAttribute] out Int32 length) { throw new NotImplementedException(); } + public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -14572,7 +14572,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new NotImplementedException(); } + public static unsafe void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -14581,7 +14581,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32[] length) { throw new NotImplementedException(); } + public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -14590,7 +14590,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] out String source, [OutAttribute] out Int32 length) { throw new NotImplementedException(); } + public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -14599,7 +14599,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new NotImplementedException(); } + public static unsafe void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -14608,7 +14608,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -14616,7 +14616,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -14625,7 +14625,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] out Int32 programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] out Int32 programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -14634,7 +14634,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new NotImplementedException(); } + public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -14643,7 +14643,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -14651,7 +14651,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -14660,7 +14660,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] out UInt32 programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] out UInt32 programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -14669,7 +14669,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new NotImplementedException(); } + public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -14678,7 +14678,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -14686,7 +14686,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -14695,7 +14695,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] out Int32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] out Int32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -14704,7 +14704,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -14713,7 +14713,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -14721,7 +14721,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -14730,7 +14730,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] out UInt32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] out UInt32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -14739,7 +14739,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -14748,7 +14748,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -14756,7 +14756,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -14765,7 +14765,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] out Int32 shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] out Int32 shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -14774,7 +14774,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new NotImplementedException(); } + public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -14783,7 +14783,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -14791,7 +14791,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -14800,7 +14800,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] out UInt32 shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] out UInt32 shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -14809,7 +14809,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new NotImplementedException(); } + public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -14819,7 +14819,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] [CLSCompliant(false)] - public static void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES11.All face, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES11.All face, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -14829,7 +14829,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] [CLSCompliant(false)] - public static void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES11.All face, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES11.All face, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -14839,7 +14839,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES11.All face, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES11.All face, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -14849,7 +14849,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] [CLSCompliant(false)] - public static void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES11.All face, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES11.All face, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -14859,7 +14859,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] [CLSCompliant(false)] - public static void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES11.All face, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES11.All face, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -14869,7 +14869,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES11.All face, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES11.All face, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -14884,7 +14884,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] - public static void ExtGetTexSubImage(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [OutAttribute] IntPtr texels) { throw new NotImplementedException(); } + public static void ExtGetTexSubImage(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [OutAttribute] IntPtr texels) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -14902,7 +14902,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void ExtGetTexSubImage(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T10[] texels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -14920,7 +14920,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void ExtGetTexSubImage(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T10[,] texels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -14938,7 +14938,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void ExtGetTexSubImage(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T10[,,] texels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -14955,7 +14955,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] public static void ExtGetTexSubImage(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] ref T10 texels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -14963,7 +14963,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] [CLSCompliant(false)] - public static void ExtGetTextures([OutAttribute] Int32[] textures, Int32 maxTextures, [OutAttribute] Int32[] numTextures) { throw new NotImplementedException(); } + public static void ExtGetTextures([OutAttribute] Int32[] textures, Int32 maxTextures, [OutAttribute] Int32[] numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -14971,7 +14971,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] [CLSCompliant(false)] - public static void ExtGetTextures([OutAttribute] out Int32 textures, Int32 maxTextures, [OutAttribute] out Int32 numTextures) { throw new NotImplementedException(); } + public static void ExtGetTextures([OutAttribute] out Int32 textures, Int32 maxTextures, [OutAttribute] out Int32 numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -14979,7 +14979,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetTextures([OutAttribute] Int32* textures, Int32 maxTextures, [OutAttribute] Int32* numTextures) { throw new NotImplementedException(); } + public static unsafe void ExtGetTextures([OutAttribute] Int32* textures, Int32 maxTextures, [OutAttribute] Int32* numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -14987,7 +14987,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] [CLSCompliant(false)] - public static void ExtGetTextures([OutAttribute] UInt32[] textures, Int32 maxTextures, [OutAttribute] Int32[] numTextures) { throw new NotImplementedException(); } + public static void ExtGetTextures([OutAttribute] UInt32[] textures, Int32 maxTextures, [OutAttribute] Int32[] numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -14995,7 +14995,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] [CLSCompliant(false)] - public static void ExtGetTextures([OutAttribute] out UInt32 textures, Int32 maxTextures, [OutAttribute] out Int32 numTextures) { throw new NotImplementedException(); } + public static void ExtGetTextures([OutAttribute] out UInt32 textures, Int32 maxTextures, [OutAttribute] out Int32 numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -15003,26 +15003,26 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetTextures([OutAttribute] UInt32* textures, Int32 maxTextures, [OutAttribute] Int32* numTextures) { throw new NotImplementedException(); } + public static unsafe void ExtGetTextures([OutAttribute] UInt32* textures, Int32 maxTextures, [OutAttribute] Int32* numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtIsProgramBinaryQCOM")] [CLSCompliant(false)] - public static bool ExtIsProgramBinary(Int32 program) { throw new NotImplementedException(); } + public static bool ExtIsProgramBinary(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtIsProgramBinaryQCOM")] [CLSCompliant(false)] - public static bool ExtIsProgramBinary(UInt32 program) { throw new NotImplementedException(); } + public static bool ExtIsProgramBinary(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// /// /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtTexObjectStateOverrideiQCOM")] - public static void ExtTexObjectStateOverride(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void ExtTexObjectStateOverride(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -15030,7 +15030,7 @@ namespace OpenTK.Graphics.ES11 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static void GetDriverControl([OutAttribute] Int32[] num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32[] driverControls) { throw new NotImplementedException(); } + public static void GetDriverControl([OutAttribute] Int32[] num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32[] driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -15038,7 +15038,7 @@ namespace OpenTK.Graphics.ES11 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static void GetDriverControl([OutAttribute] Int32[] num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32[] driverControls) { throw new NotImplementedException(); } + public static void GetDriverControl([OutAttribute] Int32[] num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32[] driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -15046,7 +15046,7 @@ namespace OpenTK.Graphics.ES11 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static void GetDriverControl([OutAttribute] out Int32 num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out Int32 driverControls) { throw new NotImplementedException(); } + public static void GetDriverControl([OutAttribute] out Int32 num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out Int32 driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -15054,7 +15054,7 @@ namespace OpenTK.Graphics.ES11 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static void GetDriverControl([OutAttribute] out Int32 num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out UInt32 driverControls) { throw new NotImplementedException(); } + public static void GetDriverControl([OutAttribute] out Int32 num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out UInt32 driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -15062,7 +15062,7 @@ namespace OpenTK.Graphics.ES11 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static unsafe void GetDriverControl([OutAttribute] Int32* num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32* driverControls) { throw new NotImplementedException(); } + public static unsafe void GetDriverControl([OutAttribute] Int32* num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32* driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -15070,7 +15070,7 @@ namespace OpenTK.Graphics.ES11 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static unsafe void GetDriverControl([OutAttribute] Int32* num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32* driverControls) { throw new NotImplementedException(); } + public static unsafe void GetDriverControl([OutAttribute] Int32* num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32* driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -15079,7 +15079,7 @@ namespace OpenTK.Graphics.ES11 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -15088,7 +15088,7 @@ namespace OpenTK.Graphics.ES11 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -15097,7 +15097,7 @@ namespace OpenTK.Graphics.ES11 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static unsafe void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static unsafe void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -15106,7 +15106,7 @@ namespace OpenTK.Graphics.ES11 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -15115,7 +15115,7 @@ namespace OpenTK.Graphics.ES11 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -15124,7 +15124,7 @@ namespace OpenTK.Graphics.ES11 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static unsafe void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static unsafe void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_tiled_rendering] /// @@ -15134,7 +15134,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glStartTilingQCOM")] [CLSCompliant(false)] - public static void StartTiling(Int32 x, Int32 y, Int32 width, Int32 height, Int32 preserveMask) { throw new NotImplementedException(); } + public static void StartTiling(Int32 x, Int32 y, Int32 width, Int32 height, Int32 preserveMask) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_tiled_rendering] /// @@ -15144,7 +15144,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glStartTilingQCOM")] [CLSCompliant(false)] - public static void StartTiling(UInt32 x, UInt32 y, UInt32 width, UInt32 height, UInt32 preserveMask) { throw new NotImplementedException(); } + public static void StartTiling(UInt32 x, UInt32 y, UInt32 width, UInt32 height, UInt32 preserveMask) { throw new BindingsNotRewrittenException(); } } diff --git a/src/OpenTK/Graphics/ES20/ES20.cs b/src/OpenTK/Graphics/ES20/ES20.cs index b761a25c..42f19f9e 100644 --- a/src/OpenTK/Graphics/ES20/ES20.cs +++ b/src/OpenTK/Graphics/ES20/ES20.cs @@ -1333,126 +1333,126 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glBeginPerfMonitorAMD")] [CLSCompliant(false)] - public static void BeginPerfMonitor(Int32 monitor) { throw new NotImplementedException(); } + public static void BeginPerfMonitor(Int32 monitor) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glBeginPerfMonitorAMD")] [CLSCompliant(false)] - public static void BeginPerfMonitor(UInt32 monitor) { throw new NotImplementedException(); } + public static void BeginPerfMonitor(UInt32 monitor) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitor([CountAttribute(Parameter = "n")] Int32 monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitor([CountAttribute(Parameter = "n")] Int32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitor([CountAttribute(Parameter = "n")] UInt32 monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitor([CountAttribute(Parameter = "n")] UInt32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] Int32[] monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] Int32[] monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static unsafe void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] Int32* monitors) { throw new NotImplementedException(); } + public static unsafe void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] Int32* monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static unsafe void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] UInt32* monitors) { throw new NotImplementedException(); } + public static unsafe void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] UInt32* monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glEndPerfMonitorAMD")] [CLSCompliant(false)] - public static void EndPerfMonitor(Int32 monitor) { throw new NotImplementedException(); } + public static void EndPerfMonitor(Int32 monitor) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glEndPerfMonitorAMD")] [CLSCompliant(false)] - public static void EndPerfMonitor(UInt32 monitor) { throw new NotImplementedException(); } + public static void EndPerfMonitor(UInt32 monitor) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static Int32 GenPerfMonitor() { throw new NotImplementedException(); } + public static Int32 GenPerfMonitor() { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] monitors) { throw new NotImplementedException(); } + public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 monitors) { throw new NotImplementedException(); } + public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* monitors) { throw new NotImplementedException(); } + public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] monitors) { throw new NotImplementedException(); } + public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 monitors) { throw new NotImplementedException(); } + public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* monitors) { throw new NotImplementedException(); } + public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1462,7 +1462,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES20.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] Int32[] data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES20.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] Int32[] data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1472,7 +1472,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES20.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] out Int32 data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES20.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] out Int32 data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1482,7 +1482,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES20.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] Int32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES20.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] Int32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1492,7 +1492,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES20.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32[] data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES20.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32[] data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1502,7 +1502,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES20.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] out UInt32 data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES20.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] out UInt32 data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1512,7 +1512,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES20.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES20.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1521,7 +1521,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1532,7 +1532,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1543,7 +1543,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1554,7 +1554,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1565,7 +1565,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1574,7 +1574,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1585,7 +1585,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1596,7 +1596,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1607,7 +1607,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1618,7 +1618,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1628,7 +1628,7 @@ namespace OpenTK.Graphics.ES20 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] Int32[] counters) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] Int32[] counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1638,7 +1638,7 @@ namespace OpenTK.Graphics.ES20 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] out Int32 counters) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] out Int32 counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1648,7 +1648,7 @@ namespace OpenTK.Graphics.ES20 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] Int32* counters) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] Int32* counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1658,7 +1658,7 @@ namespace OpenTK.Graphics.ES20 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32[] counters) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32[] counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1668,7 +1668,7 @@ namespace OpenTK.Graphics.ES20 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] out UInt32 counters) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] out UInt32 counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1678,7 +1678,7 @@ namespace OpenTK.Graphics.ES20 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32* counters) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32* counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1688,7 +1688,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1698,7 +1698,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1708,7 +1708,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1718,7 +1718,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -1726,7 +1726,7 @@ namespace OpenTK.Graphics.ES20 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] Int32[] groups) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] Int32[] groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -1734,7 +1734,7 @@ namespace OpenTK.Graphics.ES20 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] out Int32 groups) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] out Int32 groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -1742,7 +1742,7 @@ namespace OpenTK.Graphics.ES20 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32[] groups) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32[] groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -1750,7 +1750,7 @@ namespace OpenTK.Graphics.ES20 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] out UInt32 groups) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] out UInt32 groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -1758,7 +1758,7 @@ namespace OpenTK.Graphics.ES20 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] Int32* groups) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] Int32* groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -1766,7 +1766,7 @@ namespace OpenTK.Graphics.ES20 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32* groups) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32* groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1775,7 +1775,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1784,7 +1784,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1793,7 +1793,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1802,7 +1802,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1812,7 +1812,7 @@ namespace OpenTK.Graphics.ES20 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] Int32[] counterList) { throw new NotImplementedException(); } + public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] Int32[] counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1822,7 +1822,7 @@ namespace OpenTK.Graphics.ES20 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] out Int32 counterList) { throw new NotImplementedException(); } + public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] out Int32 counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1832,7 +1832,7 @@ namespace OpenTK.Graphics.ES20 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static unsafe void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] Int32* counterList) { throw new NotImplementedException(); } + public static unsafe void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] Int32* counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1842,7 +1842,7 @@ namespace OpenTK.Graphics.ES20 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32[] counterList) { throw new NotImplementedException(); } + public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32[] counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1852,7 +1852,7 @@ namespace OpenTK.Graphics.ES20 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] out UInt32 counterList) { throw new NotImplementedException(); } + public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] out UInt32 counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1862,7 +1862,7 @@ namespace OpenTK.Graphics.ES20 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static unsafe void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32* counterList) { throw new NotImplementedException(); } + public static unsafe void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32* counterList) { throw new BindingsNotRewrittenException(); } } @@ -1903,7 +1903,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ANGLE_framebuffer_blit", Version = "", EntryPoint = "glBlitFramebufferANGLE")] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES20.All mask, OpenTK.Graphics.ES20.All filter) { throw new NotImplementedException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES20.All mask, OpenTK.Graphics.ES20.All filter) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_framebuffer_blit] /// Copy a block of pixels from the read framebuffer to the draw framebuffer @@ -1939,7 +1939,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the interpolation to be applied if the image is stretched. Must be Nearest or Linear. /// [AutoGenerated(Category = "ANGLE_framebuffer_blit", Version = "", EntryPoint = "glBlitFramebufferANGLE")] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES20.ClearBufferMask mask, OpenTK.Graphics.ES20.BlitFramebufferFilter filter) { throw new NotImplementedException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES20.ClearBufferMask mask, OpenTK.Graphics.ES20.BlitFramebufferFilter filter) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a range of elements @@ -1958,7 +1958,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawArraysInstancedANGLE")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES20.All mode, Int32 first, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES20.All mode, Int32 first, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a range of elements @@ -1976,7 +1976,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawArraysInstancedANGLE")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 first, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 first, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -1998,7 +1998,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2023,7 +2023,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2048,7 +2048,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2073,7 +2073,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2097,7 +2097,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2118,7 +2118,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2142,7 +2142,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2166,7 +2166,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2190,7 +2190,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2213,7 +2213,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// @@ -2223,7 +2223,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute] out String source) { throw new NotImplementedException(); } + public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// @@ -2233,7 +2233,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute] out String source) { throw new NotImplementedException(); } + public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// @@ -2243,7 +2243,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static unsafe void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute] out String source) { throw new NotImplementedException(); } + public static unsafe void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// @@ -2253,7 +2253,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute] out String source) { throw new NotImplementedException(); } + public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// @@ -2263,7 +2263,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute] out String source) { throw new NotImplementedException(); } + public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// @@ -2273,7 +2273,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static unsafe void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute] out String source) { throw new NotImplementedException(); } + public static unsafe void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_framebuffer_multisample] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -2295,7 +2295,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ANGLE_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleANGLE")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.All target, Int32 samples, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.All target, Int32 samples, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_framebuffer_multisample] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -2316,7 +2316,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "ANGLE_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleANGLE")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES20.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES20.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -2329,7 +2329,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorANGLE")] [CLSCompliant(false)] - public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -2342,7 +2342,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorANGLE")] [CLSCompliant(false)] - public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new BindingsNotRewrittenException(); } } @@ -2363,7 +2363,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glClientWaitSyncAPPLE")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES20.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES20.All flags, Int64 timeout) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES20.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES20.All flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Block and wait for a sync object to become signaled @@ -2380,7 +2380,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glClientWaitSyncAPPLE")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES20.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES20.All flags, UInt64 timeout) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES20.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES20.All flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Block and wait for a sync object to become signaled @@ -2396,7 +2396,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glClientWaitSyncAPPLE")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES20.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES20.ClientWaitSyncFlags flags, Int64 timeout) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES20.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES20.ClientWaitSyncFlags flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Block and wait for a sync object to become signaled @@ -2412,7 +2412,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glClientWaitSyncAPPLE")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES20.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES20.ClientWaitSyncFlags flags, UInt64 timeout) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES20.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES20.ClientWaitSyncFlags flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_copy_texture_levels] /// @@ -2421,7 +2421,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "APPLE_copy_texture_levels", Version = "", EntryPoint = "glCopyTextureLevelsAPPLE")] [CLSCompliant(false)] - public static void CopyTextureLevel(Int32 destinationTexture, Int32 sourceTexture, Int32 sourceBaseLevel, Int32 sourceLevelCount) { throw new NotImplementedException(); } + public static void CopyTextureLevel(Int32 destinationTexture, Int32 sourceTexture, Int32 sourceBaseLevel, Int32 sourceLevelCount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_copy_texture_levels] /// @@ -2430,7 +2430,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "APPLE_copy_texture_levels", Version = "", EntryPoint = "glCopyTextureLevelsAPPLE")] [CLSCompliant(false)] - public static void CopyTextureLevel(UInt32 destinationTexture, UInt32 sourceTexture, Int32 sourceBaseLevel, Int32 sourceLevelCount) { throw new NotImplementedException(); } + public static void CopyTextureLevel(UInt32 destinationTexture, UInt32 sourceTexture, Int32 sourceBaseLevel, Int32 sourceLevelCount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Delete a sync object @@ -2439,7 +2439,7 @@ namespace OpenTK.Graphics.ES20 /// The sync object to be deleted. /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glDeleteSyncAPPLE")] - public static void DeleteSync(IntPtr sync) { throw new NotImplementedException(); } + public static void DeleteSync(IntPtr sync) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Create a new sync object and insert it into the GL command stream @@ -2452,7 +2452,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glFenceSyncAPPLE")] - public static IntPtr FenceSync(OpenTK.Graphics.ES20.All condition, OpenTK.Graphics.ES20.All flags) { throw new NotImplementedException(); } + public static IntPtr FenceSync(OpenTK.Graphics.ES20.All condition, OpenTK.Graphics.ES20.All flags) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Create a new sync object and insert it into the GL command stream @@ -2464,20 +2464,20 @@ namespace OpenTK.Graphics.ES20 /// Specifies a bitwise combination of flags controlling the behavior of the sync object. No flags are presently defined for this operation and flags must be zero.flags is a placeholder for anticipated future extensions of fence sync object capabilities. /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glFenceSyncAPPLE")] - public static IntPtr FenceSync(OpenTK.Graphics.ES20.SyncCondition condition, OpenTK.Graphics.ES20.WaitSyncFlags flags) { throw new NotImplementedException(); } + public static IntPtr FenceSync(OpenTK.Graphics.ES20.SyncCondition condition, OpenTK.Graphics.ES20.WaitSyncFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] [CLSCompliant(false)] - public static Int64 GetInteger64(OpenTK.Graphics.ES20.All pname) { throw new NotImplementedException(); } + public static Int64 GetInteger64(OpenTK.Graphics.ES20.All pname) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] [CLSCompliant(false)] - public static Int64 GetInteger64(OpenTK.Graphics.ES20.GetPName pname) { throw new NotImplementedException(); } + public static Int64 GetInteger64(OpenTK.Graphics.ES20.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// @@ -2485,7 +2485,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.ES20.All pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES20.All pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// @@ -2493,7 +2493,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// @@ -2501,28 +2501,28 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] [CLSCompliant(false)] - public static unsafe void GetInteger64(OpenTK.Graphics.ES20.All pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.ES20.All pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] [CLSCompliant(false)] - public static unsafe void GetInteger64(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Query the properties of a sync object @@ -2545,7 +2545,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] [CLSCompliant(false)] - public static void GetSync(IntPtr sync, OpenTK.Graphics.ES20.All pname, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES20.All pname, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Query the properties of a sync object @@ -2568,7 +2568,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] [CLSCompliant(false)] - public static void GetSync(IntPtr sync, OpenTK.Graphics.ES20.All pname, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES20.All pname, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Query the properties of a sync object @@ -2591,7 +2591,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] [CLSCompliant(false)] - public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES20.All pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES20.All pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Query the properties of a sync object @@ -2613,7 +2613,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] [CLSCompliant(false)] - public static void GetSync(IntPtr sync, OpenTK.Graphics.ES20.SyncParameterName pname, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES20.SyncParameterName pname, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Query the properties of a sync object @@ -2635,7 +2635,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] [CLSCompliant(false)] - public static void GetSync(IntPtr sync, OpenTK.Graphics.ES20.SyncParameterName pname, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES20.SyncParameterName pname, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Query the properties of a sync object @@ -2657,7 +2657,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] [CLSCompliant(false)] - public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES20.SyncParameterName pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES20.SyncParameterName pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Determine if a name corresponds to a sync object @@ -2666,7 +2666,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a value that may be the name of a sync object. /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glIsSyncAPPLE")] - public static bool IsSync(IntPtr sync) { throw new NotImplementedException(); } + public static bool IsSync(IntPtr sync) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_framebuffer_multisample] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -2688,7 +2688,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleAPPLE")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.All target, Int32 samples, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.All target, Int32 samples, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_framebuffer_multisample] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -2709,11 +2709,11 @@ namespace OpenTK.Graphics.ES20 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "APPLE_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleAPPLE")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES20.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES20.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_framebuffer_multisample] [AutoGenerated(Category = "APPLE_framebuffer_multisample", Version = "", EntryPoint = "glResolveMultisampleFramebufferAPPLE")] - public static void ResolveMultisampleFramebuffer() { throw new NotImplementedException(); } + public static void ResolveMultisampleFramebuffer() { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -2730,7 +2730,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glWaitSyncAPPLE")] [CLSCompliant(false)] - public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES20.All flags, Int64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES20.All flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -2747,7 +2747,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glWaitSyncAPPLE")] [CLSCompliant(false)] - public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES20.All flags, UInt64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES20.All flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -2763,7 +2763,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glWaitSyncAPPLE")] [CLSCompliant(false)] - public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES20.WaitSyncFlags flags, Int64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES20.WaitSyncFlags flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -2779,7 +2779,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glWaitSyncAPPLE")] [CLSCompliant(false)] - public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES20.WaitSyncFlags flags, UInt64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES20.WaitSyncFlags flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } } @@ -2787,7 +2787,7 @@ namespace OpenTK.Graphics.ES20 { /// [requires: INTEL_framebuffer_CMAA] [AutoGenerated(Category = "INTEL_framebuffer_CMAA", Version = "", EntryPoint = "glApplyFramebufferAttachmentCMAAINTEL")] - public static void ApplyFramebufferAttachment() { throw new NotImplementedException(); } + public static void ApplyFramebufferAttachment() { throw new BindingsNotRewrittenException(); } } @@ -2799,7 +2799,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glActiveTexture")] - public static void ActiveTexture(OpenTK.Graphics.ES20.All texture) { throw new NotImplementedException(); } + public static void ActiveTexture(OpenTK.Graphics.ES20.All texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Select active texture unit @@ -2808,7 +2808,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies which texture unit to make active. The number of texture units is implementation dependent, but must be at least 8. texture must be one of Texture, where i ranges from 0 to (MaxCombinedTextureImageUnits - 1). The initial value is Texture0. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glActiveTexture")] - public static void ActiveTexture(OpenTK.Graphics.ES20.TextureUnit texture) { throw new NotImplementedException(); } + public static void ActiveTexture(OpenTK.Graphics.ES20.TextureUnit texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a shader object to a program object @@ -2821,7 +2821,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glAttachShader")] [CLSCompliant(false)] - public static void AttachShader(Int32 program, Int32 shader) { throw new NotImplementedException(); } + public static void AttachShader(Int32 program, Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a shader object to a program object @@ -2834,7 +2834,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glAttachShader")] [CLSCompliant(false)] - public static void AttachShader(UInt32 program, UInt32 shader) { throw new NotImplementedException(); } + public static void AttachShader(UInt32 program, UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Associate a generic vertex attribute index with a named attribute variable @@ -2850,7 +2850,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindAttribLocation")] [CLSCompliant(false)] - public static void BindAttribLocation(Int32 program, Int32 index, String name) { throw new NotImplementedException(); } + public static void BindAttribLocation(Int32 program, Int32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Associate a generic vertex attribute index with a named attribute variable @@ -2866,7 +2866,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindAttribLocation")] [CLSCompliant(false)] - public static void BindAttribLocation(UInt32 program, UInt32 index, String name) { throw new NotImplementedException(); } + public static void BindAttribLocation(UInt32 program, UInt32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named buffer object @@ -2880,7 +2880,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindBuffer")] [CLSCompliant(false)] - public static void BindBuffer(OpenTK.Graphics.ES20.All target, Int32 buffer) { throw new NotImplementedException(); } + public static void BindBuffer(OpenTK.Graphics.ES20.All target, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named buffer object @@ -2894,7 +2894,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindBuffer")] [CLSCompliant(false)] - public static void BindBuffer(OpenTK.Graphics.ES20.All target, UInt32 buffer) { throw new NotImplementedException(); } + public static void BindBuffer(OpenTK.Graphics.ES20.All target, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named buffer object @@ -2907,7 +2907,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindBuffer")] [CLSCompliant(false)] - public static void BindBuffer(OpenTK.Graphics.ES20.BufferTarget target, Int32 buffer) { throw new NotImplementedException(); } + public static void BindBuffer(OpenTK.Graphics.ES20.BufferTarget target, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named buffer object @@ -2920,7 +2920,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindBuffer")] [CLSCompliant(false)] - public static void BindBuffer(OpenTK.Graphics.ES20.BufferTarget target, UInt32 buffer) { throw new NotImplementedException(); } + public static void BindBuffer(OpenTK.Graphics.ES20.BufferTarget target, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named framebuffer object @@ -2934,7 +2934,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindFramebuffer")] [CLSCompliant(false)] - public static void BindFramebuffer(OpenTK.Graphics.ES20.All target, Int32 framebuffer) { throw new NotImplementedException(); } + public static void BindFramebuffer(OpenTK.Graphics.ES20.All target, Int32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named framebuffer object @@ -2948,7 +2948,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindFramebuffer")] [CLSCompliant(false)] - public static void BindFramebuffer(OpenTK.Graphics.ES20.All target, UInt32 framebuffer) { throw new NotImplementedException(); } + public static void BindFramebuffer(OpenTK.Graphics.ES20.All target, UInt32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named framebuffer object @@ -2961,7 +2961,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindFramebuffer")] [CLSCompliant(false)] - public static void BindFramebuffer(OpenTK.Graphics.ES20.FramebufferTarget target, Int32 framebuffer) { throw new NotImplementedException(); } + public static void BindFramebuffer(OpenTK.Graphics.ES20.FramebufferTarget target, Int32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named framebuffer object @@ -2974,7 +2974,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindFramebuffer")] [CLSCompliant(false)] - public static void BindFramebuffer(OpenTK.Graphics.ES20.FramebufferTarget target, UInt32 framebuffer) { throw new NotImplementedException(); } + public static void BindFramebuffer(OpenTK.Graphics.ES20.FramebufferTarget target, UInt32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named renderbuffer object @@ -2988,7 +2988,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindRenderbuffer")] [CLSCompliant(false)] - public static void BindRenderbuffer(OpenTK.Graphics.ES20.All target, Int32 renderbuffer) { throw new NotImplementedException(); } + public static void BindRenderbuffer(OpenTK.Graphics.ES20.All target, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named renderbuffer object @@ -3002,7 +3002,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindRenderbuffer")] [CLSCompliant(false)] - public static void BindRenderbuffer(OpenTK.Graphics.ES20.All target, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void BindRenderbuffer(OpenTK.Graphics.ES20.All target, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named renderbuffer object @@ -3015,7 +3015,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindRenderbuffer")] [CLSCompliant(false)] - public static void BindRenderbuffer(OpenTK.Graphics.ES20.RenderbufferTarget target, Int32 renderbuffer) { throw new NotImplementedException(); } + public static void BindRenderbuffer(OpenTK.Graphics.ES20.RenderbufferTarget target, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named renderbuffer object @@ -3028,7 +3028,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindRenderbuffer")] [CLSCompliant(false)] - public static void BindRenderbuffer(OpenTK.Graphics.ES20.RenderbufferTarget target, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void BindRenderbuffer(OpenTK.Graphics.ES20.RenderbufferTarget target, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named texture to a texturing target @@ -3042,7 +3042,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindTexture")] [CLSCompliant(false)] - public static void BindTexture(OpenTK.Graphics.ES20.All target, Int32 texture) { throw new NotImplementedException(); } + public static void BindTexture(OpenTK.Graphics.ES20.All target, Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named texture to a texturing target @@ -3056,7 +3056,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindTexture")] [CLSCompliant(false)] - public static void BindTexture(OpenTK.Graphics.ES20.All target, UInt32 texture) { throw new NotImplementedException(); } + public static void BindTexture(OpenTK.Graphics.ES20.All target, UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named texture to a texturing target @@ -3069,7 +3069,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindTexture")] [CLSCompliant(false)] - public static void BindTexture(OpenTK.Graphics.ES20.TextureTarget target, Int32 texture) { throw new NotImplementedException(); } + public static void BindTexture(OpenTK.Graphics.ES20.TextureTarget target, Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named texture to a texturing target @@ -3082,7 +3082,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindTexture")] [CLSCompliant(false)] - public static void BindTexture(OpenTK.Graphics.ES20.TextureTarget target, UInt32 texture) { throw new NotImplementedException(); } + public static void BindTexture(OpenTK.Graphics.ES20.TextureTarget target, UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set the blend color @@ -3100,7 +3100,7 @@ namespace OpenTK.Graphics.ES20 /// specify the components of BlendColor /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendColor")] - public static void BlendColor(Single red, Single green, Single blue, Single alpha) { throw new NotImplementedException(); } + public static void BlendColor(Single red, Single green, Single blue, Single alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -3110,7 +3110,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendEquation")] - public static void BlendEquation(OpenTK.Graphics.ES20.All mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.ES20.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -3119,7 +3119,7 @@ namespace OpenTK.Graphics.ES20 /// specifies how source and destination colors are combined. It must be FuncAdd, FuncSubtract, or FuncReverseSubtract. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendEquation")] - public static void BlendEquation(OpenTK.Graphics.ES20.BlendEquationMode mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.ES20.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set the RGB blend equation and the alpha blend equation separately @@ -3132,7 +3132,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendEquationSeparate")] - public static void BlendEquationSeparate(OpenTK.Graphics.ES20.All modeRGB, OpenTK.Graphics.ES20.All modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(OpenTK.Graphics.ES20.All modeRGB, OpenTK.Graphics.ES20.All modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set the RGB blend equation and the alpha blend equation separately @@ -3144,7 +3144,7 @@ namespace OpenTK.Graphics.ES20 /// specifies the alpha blend equation, how the alpha component of the source and destination colors are combined. It must be FuncAdd, FuncSubtract, or FuncReverseSubtract. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendEquationSeparate")] - public static void BlendEquationSeparate(OpenTK.Graphics.ES20.BlendEquationMode modeRGB, OpenTK.Graphics.ES20.BlendEquationMode modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(OpenTK.Graphics.ES20.BlendEquationMode modeRGB, OpenTK.Graphics.ES20.BlendEquationMode modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify pixel arithmetic @@ -3157,7 +3157,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendFunc")] - public static void BlendFunc(OpenTK.Graphics.ES20.All sfactor, OpenTK.Graphics.ES20.All dfactor) { throw new NotImplementedException(); } + public static void BlendFunc(OpenTK.Graphics.ES20.All sfactor, OpenTK.Graphics.ES20.All dfactor) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify pixel arithmetic @@ -3169,7 +3169,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies how the red, green, blue, and alpha destination blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha. ConstantColor, OneMinusConstantColor, ConstantAlpha, and OneMinusConstantAlpha. The initial value is Zero. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendFunc")] - public static void BlendFunc(OpenTK.Graphics.ES20.BlendingFactorSrc sfactor, OpenTK.Graphics.ES20.BlendingFactorDest dfactor) { throw new NotImplementedException(); } + public static void BlendFunc(OpenTK.Graphics.ES20.BlendingFactorSrc sfactor, OpenTK.Graphics.ES20.BlendingFactorDest dfactor) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify pixel arithmetic for RGB and alpha components separately @@ -3188,7 +3188,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendFuncSeparate")] - public static void BlendFuncSeparate(OpenTK.Graphics.ES20.All sfactorRGB, OpenTK.Graphics.ES20.All dfactorRGB, OpenTK.Graphics.ES20.All sfactorAlpha, OpenTK.Graphics.ES20.All dfactorAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(OpenTK.Graphics.ES20.All sfactorRGB, OpenTK.Graphics.ES20.All dfactorRGB, OpenTK.Graphics.ES20.All sfactorAlpha, OpenTK.Graphics.ES20.All dfactorAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify pixel arithmetic for RGB and alpha components separately @@ -3206,7 +3206,7 @@ namespace OpenTK.Graphics.ES20 /// Specified how the alpha destination blending factor is computed. The same symbolic constants are accepted as for dstRGB. The initial value is Zero. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendFuncSeparate")] - public static void BlendFuncSeparate(OpenTK.Graphics.ES20.BlendingFactorSrc sfactorRGB, OpenTK.Graphics.ES20.BlendingFactorDest dfactorRGB, OpenTK.Graphics.ES20.BlendingFactorSrc sfactorAlpha, OpenTK.Graphics.ES20.BlendingFactorDest dfactorAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(OpenTK.Graphics.ES20.BlendingFactorSrc sfactorRGB, OpenTK.Graphics.ES20.BlendingFactorDest dfactorRGB, OpenTK.Graphics.ES20.BlendingFactorSrc sfactorAlpha, OpenTK.Graphics.ES20.BlendingFactorDest dfactorAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3225,7 +3225,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.ES20.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES20.All usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.ES20.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES20.All usage) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3247,7 +3247,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES20.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3269,7 +3269,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES20.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3291,7 +3291,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES20.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3312,7 +3312,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.ES20.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES20.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3331,7 +3331,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.ES20.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES20.All usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.ES20.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES20.All usage) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3353,7 +3353,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES20.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3375,7 +3375,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES20.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3397,7 +3397,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES20.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3418,7 +3418,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.ES20.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES20.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3437,7 +3437,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use BufferUsageHint overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES20.BufferUsage usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES20.BufferUsage usage) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3455,7 +3455,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StaticDraw, or DynamicDraw. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES20.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES20.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3477,7 +3477,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES20.BufferUsage usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3498,7 +3498,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES20.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3520,7 +3520,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES20.BufferUsage usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3541,7 +3541,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES20.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3563,7 +3563,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES20.BufferUsage usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3584,7 +3584,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES20.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3605,7 +3605,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES20.BufferUsage usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3625,7 +3625,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES20.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3644,7 +3644,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use BufferUsageHint overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES20.BufferUsage usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES20.BufferUsage usage) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3662,7 +3662,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StaticDraw, or DynamicDraw. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES20.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES20.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3684,7 +3684,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES20.BufferUsage usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3705,7 +3705,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES20.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3727,7 +3727,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES20.BufferUsage usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3748,7 +3748,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES20.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3770,7 +3770,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES20.BufferUsage usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3791,7 +3791,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES20.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3812,7 +3812,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES20.BufferUsage usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3832,7 +3832,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES20.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Update a subset of a buffer object's data store @@ -3851,7 +3851,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] - public static void BufferSubData(OpenTK.Graphics.ES20.All target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.ES20.All target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Update a subset of a buffer object's data store @@ -3873,7 +3873,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES20.All target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Update a subset of a buffer object's data store @@ -3895,7 +3895,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES20.All target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Update a subset of a buffer object's data store @@ -3917,7 +3917,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES20.All target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Update a subset of a buffer object's data store @@ -3938,7 +3938,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] public static void BufferSubData(OpenTK.Graphics.ES20.All target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Update a subset of a buffer object's data store @@ -3957,7 +3957,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] - public static void BufferSubData(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Update a subset of a buffer object's data store @@ -3979,7 +3979,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Update a subset of a buffer object's data store @@ -4001,7 +4001,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Update a subset of a buffer object's data store @@ -4023,7 +4023,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Update a subset of a buffer object's data store @@ -4044,7 +4044,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] public static void BufferSubData(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Update a subset of a buffer object's data store @@ -4062,7 +4062,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a pointer to the new data that will be copied into the data store. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] - public static void BufferSubData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Update a subset of a buffer object's data store @@ -4083,7 +4083,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Update a subset of a buffer object's data store @@ -4104,7 +4104,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Update a subset of a buffer object's data store @@ -4125,7 +4125,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Update a subset of a buffer object's data store @@ -4145,7 +4145,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] public static void BufferSubData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Update a subset of a buffer object's data store @@ -4163,7 +4163,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a pointer to the new data that will be copied into the data store. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] - public static void BufferSubData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Update a subset of a buffer object's data store @@ -4184,7 +4184,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Update a subset of a buffer object's data store @@ -4205,7 +4205,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Update a subset of a buffer object's data store @@ -4226,7 +4226,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Update a subset of a buffer object's data store @@ -4246,7 +4246,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] public static void BufferSubData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the framebuffer completeness status of a framebuffer object @@ -4256,7 +4256,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCheckFramebufferStatus")] - public static OpenTK.Graphics.ES20.FramebufferErrorCode CheckFramebufferStatus(OpenTK.Graphics.ES20.All target) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES20.FramebufferErrorCode CheckFramebufferStatus(OpenTK.Graphics.ES20.All target) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the framebuffer completeness status of a framebuffer object @@ -4265,7 +4265,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the target framebuffer object. The symbolic constant must be Framebuffer. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCheckFramebufferStatus")] - public static OpenTK.Graphics.ES20.FramebufferErrorCode CheckFramebufferStatus(OpenTK.Graphics.ES20.FramebufferTarget target) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES20.FramebufferErrorCode CheckFramebufferStatus(OpenTK.Graphics.ES20.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Clear buffers to preset values @@ -4275,7 +4275,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glClear")] - public static void Clear(OpenTK.Graphics.ES20.All mask) { throw new NotImplementedException(); } + public static void Clear(OpenTK.Graphics.ES20.All mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Clear buffers to preset values @@ -4284,7 +4284,7 @@ namespace OpenTK.Graphics.ES20 /// Bitwise OR of masks that indicate the buffers to be cleared. The three masks are ColorBufferBit, DepthBufferBit, and StencilBufferBit. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glClear")] - public static void Clear(OpenTK.Graphics.ES20.ClearBufferMask mask) { throw new NotImplementedException(); } + public static void Clear(OpenTK.Graphics.ES20.ClearBufferMask mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify clear values for the color buffers @@ -4302,7 +4302,7 @@ namespace OpenTK.Graphics.ES20 /// Specify the red, green, blue, and alpha values used when the color buffers are cleared. The initial values are all 0. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glClearColor")] - public static void ClearColor(Single red, Single green, Single blue, Single alpha) { throw new NotImplementedException(); } + public static void ClearColor(Single red, Single green, Single blue, Single alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the clear value for the depth buffer @@ -4311,7 +4311,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the depth value used when the depth buffer is cleared. The initial value is 1. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glClearDepthf")] - public static void ClearDepth(Single d) { throw new NotImplementedException(); } + public static void ClearDepth(Single d) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the clear value for the stencil buffer @@ -4320,7 +4320,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the index used when the stencil buffer is cleared. The initial value is 0. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glClearStencil")] - public static void ClearStencil(Int32 s) { throw new NotImplementedException(); } + public static void ClearStencil(Int32 s) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Enable and disable writing of frame buffer color components @@ -4338,7 +4338,7 @@ namespace OpenTK.Graphics.ES20 /// Specify whether red, green, blue, and alpha can or cannot be written into the frame buffer. The initial values are all True, indicating that the color components can be written. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glColorMask")] - public static void ColorMask(bool red, bool green, bool blue, bool alpha) { throw new NotImplementedException(); } + public static void ColorMask(bool red, bool green, bool blue, bool alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Compile a shader object @@ -4348,7 +4348,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompileShader")] [CLSCompliant(false)] - public static void CompileShader(Int32 shader) { throw new NotImplementedException(); } + public static void CompileShader(Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Compile a shader object @@ -4358,7 +4358,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompileShader")] [CLSCompliant(false)] - public static void CompileShader(UInt32 shader) { throw new NotImplementedException(); } + public static void CompileShader(UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -4389,7 +4389,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] - public static void CompressedTexImage2D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage2D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -4423,7 +4423,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -4457,7 +4457,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -4491,7 +4491,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -4524,7 +4524,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] public static void CompressedTexImage2D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -4555,7 +4555,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use TextureTarget2d overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] - public static void CompressedTexImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, OpenTK.Graphics.ES20.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, OpenTK.Graphics.ES20.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -4589,7 +4589,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, OpenTK.Graphics.ES20.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -4623,7 +4623,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, OpenTK.Graphics.ES20.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -4657,7 +4657,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, OpenTK.Graphics.ES20.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -4690,7 +4690,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] public static void CompressedTexImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, OpenTK.Graphics.ES20.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -4720,7 +4720,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] - public static void CompressedTexImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES20.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES20.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -4753,7 +4753,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES20.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -4786,7 +4786,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES20.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -4819,7 +4819,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES20.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -4851,7 +4851,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] public static void CompressedTexImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES20.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -4885,7 +4885,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] - public static void CompressedTexSubImage2D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexSubImage2D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -4922,7 +4922,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -4959,7 +4959,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -4996,7 +4996,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5032,7 +5032,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5066,7 +5066,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use TextureTarget2d and CompressedInternalFormat overloads instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] - public static void CompressedTexSubImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexSubImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5103,7 +5103,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5140,7 +5140,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5177,7 +5177,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5213,7 +5213,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5246,7 +5246,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] - public static void CompressedTexSubImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexSubImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5282,7 +5282,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5318,7 +5318,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5354,7 +5354,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5389,7 +5389,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Copy pixels into a 2D texture image @@ -5420,7 +5420,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCopyTexImage2D")] - public static void CopyTexImage2D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new NotImplementedException(); } + public static void CopyTexImage2D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Copy pixels into a 2D texture image @@ -5451,7 +5451,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use TextureTarget2d and TextureCopyComponentCount overloads instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCopyTexImage2D")] - public static void CopyTexImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, OpenTK.Graphics.ES20.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new NotImplementedException(); } + public static void CopyTexImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, OpenTK.Graphics.ES20.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Copy pixels into a 2D texture image @@ -5481,7 +5481,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the width of the border. Must be 0. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCopyTexImage2D")] - public static void CopyTexImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES20.TextureCopyComponentCount internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new NotImplementedException(); } + public static void CopyTexImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES20.TextureCopyComponentCount internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Copy a two-dimensional texture subimage @@ -5512,7 +5512,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCopyTexSubImage2D")] - public static void CopyTexSubImage2D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage2D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Copy a two-dimensional texture subimage @@ -5543,7 +5543,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use TextureTarget2d overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCopyTexSubImage2D")] - public static void CopyTexSubImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Copy a two-dimensional texture subimage @@ -5573,13 +5573,13 @@ namespace OpenTK.Graphics.ES20 /// Specifies the height of the texture subimage. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCopyTexSubImage2D")] - public static void CopyTexSubImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create a program object /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCreateProgram")] - public static Int32 CreateProgram() { throw new NotImplementedException(); } + public static Int32 CreateProgram() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create a shader object @@ -5589,7 +5589,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCreateShader")] - public static Int32 CreateShader(OpenTK.Graphics.ES20.All type) { throw new NotImplementedException(); } + public static Int32 CreateShader(OpenTK.Graphics.ES20.All type) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create a shader object @@ -5598,7 +5598,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the type of shader to be created. Must be either VertexShader or FragmentShader. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCreateShader")] - public static Int32 CreateShader(OpenTK.Graphics.ES20.ShaderType type) { throw new NotImplementedException(); } + public static Int32 CreateShader(OpenTK.Graphics.ES20.ShaderType type) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify whether front- or back-facing polygons can be culled @@ -5608,7 +5608,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCullFace")] - public static void CullFace(OpenTK.Graphics.ES20.All mode) { throw new NotImplementedException(); } + public static void CullFace(OpenTK.Graphics.ES20.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify whether front- or back-facing polygons can be culled @@ -5617,7 +5617,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies whether front- or back-facing polygons are candidates for culling. Symbolic constants Front, Back, and FrontAndBack are accepted. The initial value is Back. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCullFace")] - public static void CullFace(OpenTK.Graphics.ES20.CullFaceMode mode) { throw new NotImplementedException(); } + public static void CullFace(OpenTK.Graphics.ES20.CullFaceMode mode) { throw new BindingsNotRewrittenException(); } /// /// Specify a callback to receive debugging messages from the GL @@ -5629,7 +5629,7 @@ namespace OpenTK.Graphics.ES20 /// A user supplied pointer that will be passed on each invocation of callback. /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallback")] - public static void DebugMessageCallback(DebugProc callback, IntPtr userParam) { throw new NotImplementedException(); } + public static void DebugMessageCallback(DebugProc callback, IntPtr userParam) { throw new BindingsNotRewrittenException(); } /// /// Specify a callback to receive debugging messages from the GL @@ -5644,7 +5644,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Specify a callback to receive debugging messages from the GL @@ -5659,7 +5659,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Specify a callback to receive debugging messages from the GL @@ -5674,7 +5674,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[,,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Specify a callback to receive debugging messages from the GL @@ -5688,7 +5688,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallback")] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] ref T1 userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -5714,7 +5714,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -5740,7 +5740,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -5766,7 +5766,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -5792,7 +5792,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -5818,7 +5818,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -5844,7 +5844,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -5869,7 +5869,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -5894,7 +5894,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -5919,7 +5919,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -5944,7 +5944,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -5969,7 +5969,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -5994,7 +5994,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Inject an application-supplied message into the debug message queue @@ -6020,7 +6020,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsert")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, Int32 id, OpenTK.Graphics.ES20.All severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, Int32 id, OpenTK.Graphics.ES20.All severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new BindingsNotRewrittenException(); } /// /// Inject an application-supplied message into the debug message queue @@ -6046,7 +6046,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsert")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, UInt32 id, OpenTK.Graphics.ES20.All severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, UInt32 id, OpenTK.Graphics.ES20.All severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new BindingsNotRewrittenException(); } /// /// Inject an application-supplied message into the debug message queue @@ -6071,7 +6071,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsert")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.ES20.DebugSourceExternal source, OpenTK.Graphics.ES20.DebugType type, Int32 id, OpenTK.Graphics.ES20.DebugSeverity severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.ES20.DebugSourceExternal source, OpenTK.Graphics.ES20.DebugType type, Int32 id, OpenTK.Graphics.ES20.DebugSeverity severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new BindingsNotRewrittenException(); } /// /// Inject an application-supplied message into the debug message queue @@ -6096,7 +6096,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsert")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.ES20.DebugSourceExternal source, OpenTK.Graphics.ES20.DebugType type, UInt32 id, OpenTK.Graphics.ES20.DebugSeverity severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.ES20.DebugSourceExternal source, OpenTK.Graphics.ES20.DebugType type, UInt32 id, OpenTK.Graphics.ES20.DebugSeverity severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -6106,7 +6106,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffer([CountAttribute(Parameter = "n")] Int32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffer([CountAttribute(Parameter = "n")] Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -6116,7 +6116,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffer([CountAttribute(Parameter = "n")] UInt32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffer([CountAttribute(Parameter = "n")] UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -6129,7 +6129,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -6142,7 +6142,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -6155,7 +6155,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* buffers) { throw new NotImplementedException(); } + public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -6168,7 +6168,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -6181,7 +6181,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -6194,7 +6194,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* buffers) { throw new NotImplementedException(); } + public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named framebuffer objects @@ -6204,7 +6204,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] Int32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named framebuffer objects @@ -6214,7 +6214,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] UInt32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named framebuffer objects @@ -6227,7 +6227,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named framebuffer objects @@ -6240,7 +6240,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named framebuffer objects @@ -6253,7 +6253,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named framebuffer objects @@ -6266,7 +6266,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named framebuffer objects @@ -6279,7 +6279,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named framebuffer objects @@ -6292,7 +6292,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete a program object @@ -6302,7 +6302,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteProgram")] [CLSCompliant(false)] - public static void DeleteProgram(Int32 program) { throw new NotImplementedException(); } + public static void DeleteProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete a program object @@ -6312,7 +6312,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteProgram")] [CLSCompliant(false)] - public static void DeleteProgram(UInt32 program) { throw new NotImplementedException(); } + public static void DeleteProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named renderbuffer objects @@ -6322,7 +6322,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] Int32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named renderbuffer objects @@ -6332,7 +6332,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named renderbuffer objects @@ -6345,7 +6345,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named renderbuffer objects @@ -6358,7 +6358,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named renderbuffer objects @@ -6371,7 +6371,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named renderbuffer objects @@ -6384,7 +6384,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named renderbuffer objects @@ -6397,7 +6397,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named renderbuffer objects @@ -6410,7 +6410,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete a shader object @@ -6420,7 +6420,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteShader")] [CLSCompliant(false)] - public static void DeleteShader(Int32 shader) { throw new NotImplementedException(); } + public static void DeleteShader(Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete a shader object @@ -6430,7 +6430,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteShader")] [CLSCompliant(false)] - public static void DeleteShader(UInt32 shader) { throw new NotImplementedException(); } + public static void DeleteShader(UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -6440,7 +6440,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTexture([CountAttribute(Parameter = "n")] Int32 textures) { throw new NotImplementedException(); } + public static void DeleteTexture([CountAttribute(Parameter = "n")] Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -6450,7 +6450,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTexture([CountAttribute(Parameter = "n")] UInt32 textures) { throw new NotImplementedException(); } + public static void DeleteTexture([CountAttribute(Parameter = "n")] UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -6463,7 +6463,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -6476,7 +6476,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -6489,7 +6489,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures) { throw new NotImplementedException(); } + public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -6502,7 +6502,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -6515,7 +6515,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -6528,7 +6528,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures) { throw new NotImplementedException(); } + public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value used for depth buffer comparisons @@ -6538,7 +6538,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDepthFunc")] - public static void DepthFunc(OpenTK.Graphics.ES20.All func) { throw new NotImplementedException(); } + public static void DepthFunc(OpenTK.Graphics.ES20.All func) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value used for depth buffer comparisons @@ -6547,7 +6547,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the depth comparison function. Symbolic constants Never, Less, Equal, Lequal, Greater, Notequal, Gequal, and Always are accepted. The initial value is Less. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDepthFunc")] - public static void DepthFunc(OpenTK.Graphics.ES20.DepthFunction func) { throw new NotImplementedException(); } + public static void DepthFunc(OpenTK.Graphics.ES20.DepthFunction func) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Enable or disable writing into the depth buffer @@ -6556,7 +6556,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies whether the depth buffer is enabled for writing. If flag is False, depth buffer writing is disabled. Otherwise, it is enabled. Initially, depth buffer writing is enabled. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDepthMask")] - public static void DepthMask(bool flag) { throw new NotImplementedException(); } + public static void DepthMask(bool flag) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify mapping of depth values from normalized device coordinates to window coordinates @@ -6568,7 +6568,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the mapping of the far clipping plane to window coordinates. The initial value is 1. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDepthRangef")] - public static void DepthRange(Single n, Single f) { throw new NotImplementedException(); } + public static void DepthRange(Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Detach a shader object from a program object @@ -6581,7 +6581,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDetachShader")] [CLSCompliant(false)] - public static void DetachShader(Int32 program, Int32 shader) { throw new NotImplementedException(); } + public static void DetachShader(Int32 program, Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Detach a shader object from a program object @@ -6594,30 +6594,30 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDetachShader")] [CLSCompliant(false)] - public static void DetachShader(UInt32 program, UInt32 shader) { throw new NotImplementedException(); } + public static void DetachShader(UInt32 program, UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDisable")] - public static void Disable(OpenTK.Graphics.ES20.All cap) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES20.All cap) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDisable")] - public static void Disable(OpenTK.Graphics.ES20.EnableCap cap) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES20.EnableCap cap) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDisableVertexAttribArray")] [CLSCompliant(false)] - public static void DisableVertexAttribArray(Int32 index) { throw new NotImplementedException(); } + public static void DisableVertexAttribArray(Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDisableVertexAttribArray")] [CLSCompliant(false)] - public static void DisableVertexAttribArray(UInt32 index) { throw new NotImplementedException(); } + public static void DisableVertexAttribArray(UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -6633,7 +6633,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawArrays")] - public static void DrawArrays(OpenTK.Graphics.ES20.All mode, Int32 first, Int32 count) { throw new NotImplementedException(); } + public static void DrawArrays(OpenTK.Graphics.ES20.All mode, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -6649,7 +6649,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawArrays")] - public static void DrawArrays(OpenTK.Graphics.ES20.BeginMode mode, Int32 first, Int32 count) { throw new NotImplementedException(); } + public static void DrawArrays(OpenTK.Graphics.ES20.BeginMode mode, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -6664,7 +6664,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the number of indices to be rendered. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawArrays")] - public static void DrawArrays(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 first, Int32 count) { throw new NotImplementedException(); } + public static void DrawArrays(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -6683,7 +6683,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] - public static void DrawElements(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawElements(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -6705,7 +6705,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -6727,7 +6727,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -6749,7 +6749,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -6770,7 +6770,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] public static void DrawElements(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -6789,7 +6789,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] - public static void DrawElements(OpenTK.Graphics.ES20.BeginMode mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawElements(OpenTK.Graphics.ES20.BeginMode mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -6811,7 +6811,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES20.BeginMode mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -6833,7 +6833,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES20.BeginMode mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -6855,7 +6855,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES20.BeginMode mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -6876,7 +6876,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] public static void DrawElements(OpenTK.Graphics.ES20.BeginMode mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -6894,7 +6894,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a pointer to the location where the indices are stored. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] - public static void DrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -6915,7 +6915,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -6936,7 +6936,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -6957,7 +6957,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -6977,7 +6977,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] public static void DrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Enable or disable server-side GL capabilities @@ -6987,7 +6987,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glEnable")] - public static void Enable(OpenTK.Graphics.ES20.All cap) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES20.All cap) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Enable or disable server-side GL capabilities @@ -6996,7 +6996,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a symbolic constant indicating a GL capability. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glEnable")] - public static void Enable(OpenTK.Graphics.ES20.EnableCap cap) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES20.EnableCap cap) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Enable or disable a generic vertex attribute array @@ -7006,7 +7006,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glEnableVertexAttribArray")] [CLSCompliant(false)] - public static void EnableVertexAttribArray(Int32 index) { throw new NotImplementedException(); } + public static void EnableVertexAttribArray(Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Enable or disable a generic vertex attribute array @@ -7016,19 +7016,19 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glEnableVertexAttribArray")] [CLSCompliant(false)] - public static void EnableVertexAttribArray(UInt32 index) { throw new NotImplementedException(); } + public static void EnableVertexAttribArray(UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Block until all GL execution is complete /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFinish")] - public static void Finish() { throw new NotImplementedException(); } + public static void Finish() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Force execution of GL commands in finite time /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFlush")] - public static void Flush() { throw new NotImplementedException(); } + public static void Flush() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a renderbuffer object to a framebuffer object @@ -7048,7 +7048,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferRenderbuffer")] [CLSCompliant(false)] - public static void FramebufferRenderbuffer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All renderbuffertarget, Int32 renderbuffer) { throw new NotImplementedException(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All renderbuffertarget, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a renderbuffer object to a framebuffer object @@ -7068,7 +7068,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferRenderbuffer")] [CLSCompliant(false)] - public static void FramebufferRenderbuffer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All renderbuffertarget, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All renderbuffertarget, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a renderbuffer object to a framebuffer object @@ -7087,7 +7087,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferRenderbuffer")] [CLSCompliant(false)] - public static void FramebufferRenderbuffer(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new NotImplementedException(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a renderbuffer object to a framebuffer object @@ -7106,7 +7106,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferRenderbuffer")] [CLSCompliant(false)] - public static void FramebufferRenderbuffer(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a renderbuffer object to a framebuffer object @@ -7126,7 +7126,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use FramebufferAttachment overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferRenderbuffer")] [CLSCompliant(false)] - public static void FramebufferRenderbuffer(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferSlot attachment, OpenTK.Graphics.ES20.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new NotImplementedException(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferSlot attachment, OpenTK.Graphics.ES20.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a renderbuffer object to a framebuffer object @@ -7146,7 +7146,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use FramebufferAttachment overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferRenderbuffer")] [CLSCompliant(false)] - public static void FramebufferRenderbuffer(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferSlot attachment, OpenTK.Graphics.ES20.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferSlot attachment, OpenTK.Graphics.ES20.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a texture image to a framebuffer object @@ -7169,7 +7169,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")] [CLSCompliant(false)] - public static void FramebufferTexture2D(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture2D(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a texture image to a framebuffer object @@ -7192,7 +7192,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")] [CLSCompliant(false)] - public static void FramebufferTexture2D(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture2D(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a texture image to a framebuffer object @@ -7215,7 +7215,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use TextureTarget2d overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")] [CLSCompliant(false)] - public static void FramebufferTexture2D(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.TextureTarget textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture2D(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.TextureTarget textarget, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a texture image to a framebuffer object @@ -7238,7 +7238,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use TextureTarget2d overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")] [CLSCompliant(false)] - public static void FramebufferTexture2D(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.TextureTarget textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture2D(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.TextureTarget textarget, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a texture image to a framebuffer object @@ -7260,7 +7260,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")] [CLSCompliant(false)] - public static void FramebufferTexture2D(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.TextureTarget2d textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture2D(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.TextureTarget2d textarget, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a texture image to a framebuffer object @@ -7282,7 +7282,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")] [CLSCompliant(false)] - public static void FramebufferTexture2D(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.TextureTarget2d textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture2D(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.TextureTarget2d textarget, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a texture image to a framebuffer object @@ -7305,7 +7305,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use TextureTarget2d overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")] [CLSCompliant(false)] - public static void FramebufferTexture2D(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferSlot attachment, OpenTK.Graphics.ES20.TextureTarget textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture2D(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferSlot attachment, OpenTK.Graphics.ES20.TextureTarget textarget, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a texture image to a framebuffer object @@ -7328,7 +7328,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use TextureTarget2d overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")] [CLSCompliant(false)] - public static void FramebufferTexture2D(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferSlot attachment, OpenTK.Graphics.ES20.TextureTarget textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture2D(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferSlot attachment, OpenTK.Graphics.ES20.TextureTarget textarget, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define front- and back-facing polygons @@ -7338,7 +7338,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFrontFace")] - public static void FrontFace(OpenTK.Graphics.ES20.All mode) { throw new NotImplementedException(); } + public static void FrontFace(OpenTK.Graphics.ES20.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define front- and back-facing polygons @@ -7347,14 +7347,14 @@ namespace OpenTK.Graphics.ES20 /// Specifies the orientation of front-facing polygons. Cw and Ccw are accepted. The initial value is Ccw. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFrontFace")] - public static void FrontFace(OpenTK.Graphics.ES20.FrontFaceDirection mode) { throw new NotImplementedException(); } + public static void FrontFace(OpenTK.Graphics.ES20.FrontFaceDirection mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static Int32 GenBuffer() { throw new NotImplementedException(); } + public static Int32 GenBuffer() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names @@ -7367,7 +7367,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names @@ -7380,7 +7380,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names @@ -7393,7 +7393,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* buffers) { throw new NotImplementedException(); } + public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names @@ -7406,7 +7406,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names @@ -7419,7 +7419,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names @@ -7432,7 +7432,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* buffers) { throw new NotImplementedException(); } + public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate a complete set of mipmaps for a texture object @@ -7442,7 +7442,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenerateMipmap")] - public static void GenerateMipmap(OpenTK.Graphics.ES20.All target) { throw new NotImplementedException(); } + public static void GenerateMipmap(OpenTK.Graphics.ES20.All target) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate a complete set of mipmaps for a texture object @@ -7451,14 +7451,14 @@ namespace OpenTK.Graphics.ES20 /// Specifies the texture target of the active texture unit to which the texture object is bound whose mipmaps will be generated. Must be one of the following symbolic constants: Texture2D or TextureCubeMap. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenerateMipmap")] - public static void GenerateMipmap(OpenTK.Graphics.ES20.TextureTarget target) { throw new NotImplementedException(); } + public static void GenerateMipmap(OpenTK.Graphics.ES20.TextureTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static Int32 GenFramebuffer() { throw new NotImplementedException(); } + public static Int32 GenFramebuffer() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names @@ -7471,7 +7471,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names @@ -7484,7 +7484,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names @@ -7497,7 +7497,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names @@ -7510,7 +7510,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names @@ -7523,7 +7523,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names @@ -7536,14 +7536,14 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static Int32 GenRenderbuffer() { throw new NotImplementedException(); } + public static Int32 GenRenderbuffer() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names @@ -7556,7 +7556,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names @@ -7569,7 +7569,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names @@ -7582,7 +7582,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names @@ -7595,7 +7595,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names @@ -7608,7 +7608,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names @@ -7621,14 +7621,14 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static Int32 GenTexture() { throw new NotImplementedException(); } + public static Int32 GenTexture() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names @@ -7641,7 +7641,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names @@ -7654,7 +7654,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names @@ -7667,7 +7667,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* textures) { throw new NotImplementedException(); } + public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names @@ -7680,7 +7680,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names @@ -7693,7 +7693,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names @@ -7706,7 +7706,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* textures) { throw new NotImplementedException(); } + public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return information about an active attribute variable @@ -7734,7 +7734,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] - public static void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return information about an active attribute variable @@ -7763,7 +7763,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] - public static void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return information about an active attribute variable @@ -7791,7 +7791,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] - public static unsafe void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return information about an active attribute variable @@ -7820,7 +7820,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] - public static unsafe void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return information about an active attribute variable @@ -7848,7 +7848,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] - public static void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return information about an active attribute variable @@ -7877,7 +7877,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] - public static void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return information about an active attribute variable @@ -7905,7 +7905,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] - public static unsafe void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return information about an active attribute variable @@ -7934,7 +7934,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] - public static unsafe void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return information about an active uniform variable @@ -7962,7 +7962,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] - public static void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.ActiveUniformType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.ActiveUniformType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return information about an active uniform variable @@ -7991,7 +7991,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] - public static void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return information about an active uniform variable @@ -8019,7 +8019,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] - public static unsafe void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.ActiveUniformType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.ActiveUniformType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return information about an active uniform variable @@ -8048,7 +8048,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] - public static unsafe void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return information about an active uniform variable @@ -8076,7 +8076,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] - public static void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.ActiveUniformType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.ActiveUniformType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return information about an active uniform variable @@ -8105,7 +8105,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] - public static void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return information about an active uniform variable @@ -8133,7 +8133,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] - public static unsafe void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.ActiveUniformType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.ActiveUniformType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return information about an active uniform variable @@ -8162,7 +8162,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] - public static unsafe void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the handles of the shader objects attached to a program object @@ -8181,7 +8181,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32[] shaders) { throw new NotImplementedException(); } + public static void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32[] shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the handles of the shader objects attached to a program object @@ -8200,7 +8200,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out Int32 shaders) { throw new NotImplementedException(); } + public static void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out Int32 shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the handles of the shader objects attached to a program object @@ -8219,7 +8219,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static unsafe void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32* shaders) { throw new NotImplementedException(); } + public static unsafe void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32* shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the handles of the shader objects attached to a program object @@ -8238,7 +8238,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32[] shaders) { throw new NotImplementedException(); } + public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32[] shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the handles of the shader objects attached to a program object @@ -8257,7 +8257,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out UInt32 shaders) { throw new NotImplementedException(); } + public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out UInt32 shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the handles of the shader objects attached to a program object @@ -8276,7 +8276,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static unsafe void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32* shaders) { throw new NotImplementedException(); } + public static unsafe void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32* shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the location of an attribute variable @@ -8289,7 +8289,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttribLocation")] [CLSCompliant(false)] - public static Int32 GetAttribLocation(Int32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetAttribLocation(Int32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the location of an attribute variable @@ -8302,20 +8302,20 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttribLocation")] [CLSCompliant(false)] - public static Int32 GetAttribLocation(UInt32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetAttribLocation(UInt32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static bool GetBoolean(OpenTK.Graphics.ES20.All pname) { throw new NotImplementedException(); } + public static bool GetBoolean(OpenTK.Graphics.ES20.All pname) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static bool GetBoolean(OpenTK.Graphics.ES20.GetPName pname) { throw new NotImplementedException(); } + public static bool GetBoolean(OpenTK.Graphics.ES20.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -8323,7 +8323,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] bool[] data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -8331,7 +8331,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out bool data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -8339,28 +8339,28 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static unsafe void GetBoolean(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBoolean(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool[] data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out bool data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static unsafe void GetBoolean(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBoolean(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a buffer object @@ -8377,7 +8377,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBufferParameteriv")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a buffer object @@ -8394,7 +8394,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBufferParameteriv")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a buffer object @@ -8411,7 +8411,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetBufferParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a buffer object @@ -8427,7 +8427,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBufferParameteriv")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.ES20.BufferTarget target, OpenTK.Graphics.ES20.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES20.BufferTarget target, OpenTK.Graphics.ES20.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a buffer object @@ -8443,7 +8443,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBufferParameteriv")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.ES20.BufferTarget target, OpenTK.Graphics.ES20.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES20.BufferTarget target, OpenTK.Graphics.ES20.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a buffer object @@ -8459,7 +8459,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetBufferParameter(OpenTK.Graphics.ES20.BufferTarget target, OpenTK.Graphics.ES20.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.ES20.BufferTarget target, OpenTK.Graphics.ES20.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -8491,7 +8491,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -8523,7 +8523,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -8555,7 +8555,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -8586,7 +8586,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSourceExternal[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSourceExternal[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -8617,7 +8617,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugSourceExternal sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugSourceExternal sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -8648,7 +8648,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSourceExternal* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSourceExternal* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -8680,7 +8680,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -8712,7 +8712,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -8744,7 +8744,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -8775,7 +8775,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSourceExternal[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSourceExternal[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -8806,7 +8806,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugSourceExternal sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugSourceExternal sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -8837,26 +8837,26 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSourceExternal* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSourceExternal* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return error information /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetError")] - public static OpenTK.Graphics.ES20.ErrorCode GetError() { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES20.ErrorCode GetError() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static Single GetFloat(OpenTK.Graphics.ES20.All pname) { throw new NotImplementedException(); } + public static Single GetFloat(OpenTK.Graphics.ES20.All pname) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static Single GetFloat(OpenTK.Graphics.ES20.GetPName pname) { throw new NotImplementedException(); } + public static Single GetFloat(OpenTK.Graphics.ES20.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -8864,7 +8864,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -8872,7 +8872,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -8880,28 +8880,28 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return attachment parameters of a framebuffer object @@ -8921,7 +8921,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return attachment parameters of a framebuffer object @@ -8941,7 +8941,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return attachment parameters of a framebuffer object @@ -8961,7 +8961,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return attachment parameters of a framebuffer object @@ -8980,7 +8980,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return attachment parameters of a framebuffer object @@ -8999,7 +8999,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return attachment parameters of a framebuffer object @@ -9018,7 +9018,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return attachment parameters of a framebuffer object @@ -9038,7 +9038,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use FramebufferAttachment overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferSlot attachment, OpenTK.Graphics.ES20.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferSlot attachment, OpenTK.Graphics.ES20.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return attachment parameters of a framebuffer object @@ -9058,7 +9058,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use FramebufferAttachment overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferSlot attachment, OpenTK.Graphics.ES20.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferSlot attachment, OpenTK.Graphics.ES20.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return attachment parameters of a framebuffer object @@ -9078,24 +9078,24 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use FramebufferAttachment overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferSlot attachment, OpenTK.Graphics.ES20.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferSlot attachment, OpenTK.Graphics.ES20.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetGraphicsResetStatus")] - public static OpenTK.Graphics.ES20.ResetStatus GetGraphicsResetStatus() { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES20.ResetStatus GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static Int32 GetInteger(OpenTK.Graphics.ES20.All pname) { throw new NotImplementedException(); } + public static Int32 GetInteger(OpenTK.Graphics.ES20.All pname) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static Int32 GetInteger(OpenTK.Graphics.ES20.GetPName pname) { throw new NotImplementedException(); } + public static Int32 GetInteger(OpenTK.Graphics.ES20.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -9103,7 +9103,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -9111,7 +9111,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -9119,28 +9119,28 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data) { throw new BindingsNotRewrittenException(); } /// /// @@ -9149,7 +9149,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -9158,7 +9158,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -9167,7 +9167,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -9176,7 +9176,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -9185,7 +9185,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -9194,7 +9194,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -9203,7 +9203,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -9212,7 +9212,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -9221,7 +9221,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -9230,7 +9230,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -9239,7 +9239,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -9248,7 +9248,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -9257,7 +9257,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuiv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -9266,7 +9266,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuiv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -9275,7 +9275,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuiv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -9298,7 +9298,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -9321,7 +9321,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -9344,7 +9344,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -9367,7 +9367,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -9390,7 +9390,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -9413,7 +9413,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -9435,7 +9435,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -9457,7 +9457,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -9479,7 +9479,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -9501,7 +9501,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -9523,7 +9523,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -9545,7 +9545,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -9565,7 +9565,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] - public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -9585,7 +9585,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] - public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -9605,7 +9605,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] - public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -9627,7 +9627,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -9649,7 +9649,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -9671,7 +9671,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -9693,7 +9693,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -9715,7 +9715,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -9737,7 +9737,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -9759,7 +9759,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -9781,7 +9781,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -9803,7 +9803,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -9825,7 +9825,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -9847,7 +9847,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -9869,7 +9869,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -9882,7 +9882,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointerv")] - public static void GetPointer(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetPointer(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -9898,7 +9898,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -9914,7 +9914,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -9930,7 +9930,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -9945,7 +9945,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointerv")] public static void GetPointer(OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -9957,7 +9957,7 @@ namespace OpenTK.Graphics.ES20 /// Returns the pointer value specified by pname. /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointerv")] - public static void GetPointer(OpenTK.Graphics.ES20.GetPointervPName pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetPointer(OpenTK.Graphics.ES20.GetPointervPName pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -9972,7 +9972,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES20.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -9987,7 +9987,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES20.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -10002,7 +10002,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES20.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -10016,7 +10016,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointerv")] public static void GetPointer(OpenTK.Graphics.ES20.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the information log for a program object @@ -10035,7 +10035,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] [CLSCompliant(false)] - public static void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the information log for a program object @@ -10054,7 +10054,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] [CLSCompliant(false)] - public static unsafe void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the information log for a program object @@ -10073,7 +10073,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] [CLSCompliant(false)] - public static void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the information log for a program object @@ -10092,7 +10092,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] [CLSCompliant(false)] - public static unsafe void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a program object @@ -10109,7 +10109,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(Int32 program, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgram(Int32 program, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a program object @@ -10126,7 +10126,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(Int32 program, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(Int32 program, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a program object @@ -10143,7 +10143,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static unsafe void GetProgram(Int32 program, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(Int32 program, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a program object @@ -10159,7 +10159,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(Int32 program, OpenTK.Graphics.ES20.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgram(Int32 program, OpenTK.Graphics.ES20.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a program object @@ -10175,7 +10175,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(Int32 program, OpenTK.Graphics.ES20.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(Int32 program, OpenTK.Graphics.ES20.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a program object @@ -10191,7 +10191,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static unsafe void GetProgram(Int32 program, OpenTK.Graphics.ES20.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(Int32 program, OpenTK.Graphics.ES20.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a program object @@ -10208,7 +10208,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use GetProgramParameterName overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(Int32 program, OpenTK.Graphics.ES20.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgram(Int32 program, OpenTK.Graphics.ES20.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a program object @@ -10225,7 +10225,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use GetProgramParameterName overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(Int32 program, OpenTK.Graphics.ES20.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(Int32 program, OpenTK.Graphics.ES20.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a program object @@ -10242,7 +10242,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use GetProgramParameterName overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static unsafe void GetProgram(Int32 program, OpenTK.Graphics.ES20.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(Int32 program, OpenTK.Graphics.ES20.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a program object @@ -10259,7 +10259,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(UInt32 program, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgram(UInt32 program, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a program object @@ -10276,7 +10276,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(UInt32 program, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(UInt32 program, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a program object @@ -10293,7 +10293,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static unsafe void GetProgram(UInt32 program, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(UInt32 program, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a program object @@ -10309,7 +10309,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(UInt32 program, OpenTK.Graphics.ES20.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgram(UInt32 program, OpenTK.Graphics.ES20.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a program object @@ -10325,7 +10325,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(UInt32 program, OpenTK.Graphics.ES20.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(UInt32 program, OpenTK.Graphics.ES20.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a program object @@ -10341,7 +10341,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static unsafe void GetProgram(UInt32 program, OpenTK.Graphics.ES20.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(UInt32 program, OpenTK.Graphics.ES20.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a program object @@ -10358,7 +10358,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use GetProgramParameterName overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(UInt32 program, OpenTK.Graphics.ES20.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgram(UInt32 program, OpenTK.Graphics.ES20.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a program object @@ -10375,7 +10375,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use GetProgramParameterName overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(UInt32 program, OpenTK.Graphics.ES20.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(UInt32 program, OpenTK.Graphics.ES20.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a program object @@ -10392,7 +10392,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use GetProgramParameterName overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static unsafe void GetProgram(UInt32 program, OpenTK.Graphics.ES20.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(UInt32 program, OpenTK.Graphics.ES20.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a renderbuffer object @@ -10409,7 +10409,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetRenderbufferParameteriv")] [CLSCompliant(false)] - public static void GetRenderbufferParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a renderbuffer object @@ -10426,7 +10426,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetRenderbufferParameteriv")] [CLSCompliant(false)] - public static void GetRenderbufferParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a renderbuffer object @@ -10443,7 +10443,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetRenderbufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a renderbuffer object @@ -10459,7 +10459,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetRenderbufferParameteriv")] [CLSCompliant(false)] - public static void GetRenderbufferParameter(OpenTK.Graphics.ES20.RenderbufferTarget target, OpenTK.Graphics.ES20.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.ES20.RenderbufferTarget target, OpenTK.Graphics.ES20.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a renderbuffer object @@ -10475,7 +10475,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetRenderbufferParameteriv")] [CLSCompliant(false)] - public static void GetRenderbufferParameter(OpenTK.Graphics.ES20.RenderbufferTarget target, OpenTK.Graphics.ES20.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.ES20.RenderbufferTarget target, OpenTK.Graphics.ES20.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a renderbuffer object @@ -10491,7 +10491,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetRenderbufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.ES20.RenderbufferTarget target, OpenTK.Graphics.ES20.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.ES20.RenderbufferTarget target, OpenTK.Graphics.ES20.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the information log for a shader object @@ -10510,7 +10510,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] [CLSCompliant(false)] - public static void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the information log for a shader object @@ -10529,7 +10529,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] [CLSCompliant(false)] - public static unsafe void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the information log for a shader object @@ -10548,7 +10548,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] [CLSCompliant(false)] - public static void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the information log for a shader object @@ -10567,7 +10567,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] [CLSCompliant(false)] - public static unsafe void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a shader object @@ -10584,7 +10584,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static void GetShader(Int32 shader, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetShader(Int32 shader, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a shader object @@ -10601,7 +10601,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static void GetShader(Int32 shader, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetShader(Int32 shader, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a shader object @@ -10618,7 +10618,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static unsafe void GetShader(Int32 shader, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetShader(Int32 shader, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a shader object @@ -10634,7 +10634,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static void GetShader(Int32 shader, OpenTK.Graphics.ES20.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetShader(Int32 shader, OpenTK.Graphics.ES20.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a shader object @@ -10650,7 +10650,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static void GetShader(Int32 shader, OpenTK.Graphics.ES20.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetShader(Int32 shader, OpenTK.Graphics.ES20.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a shader object @@ -10666,7 +10666,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static unsafe void GetShader(Int32 shader, OpenTK.Graphics.ES20.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetShader(Int32 shader, OpenTK.Graphics.ES20.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a shader object @@ -10683,7 +10683,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static void GetShader(UInt32 shader, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetShader(UInt32 shader, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a shader object @@ -10700,7 +10700,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static void GetShader(UInt32 shader, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetShader(UInt32 shader, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a shader object @@ -10717,7 +10717,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static unsafe void GetShader(UInt32 shader, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetShader(UInt32 shader, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a shader object @@ -10733,7 +10733,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static void GetShader(UInt32 shader, OpenTK.Graphics.ES20.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetShader(UInt32 shader, OpenTK.Graphics.ES20.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a shader object @@ -10749,7 +10749,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static void GetShader(UInt32 shader, OpenTK.Graphics.ES20.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetShader(UInt32 shader, OpenTK.Graphics.ES20.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a shader object @@ -10765,7 +10765,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static unsafe void GetShader(UInt32 shader, OpenTK.Graphics.ES20.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetShader(UInt32 shader, OpenTK.Graphics.ES20.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the range and precision for different shader numeric formats @@ -10785,7 +10785,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderPrecisionFormat")] [CLSCompliant(false)] - public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES20.All shadertype, OpenTK.Graphics.ES20.All precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32[] range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new NotImplementedException(); } + public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES20.All shadertype, OpenTK.Graphics.ES20.All precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32[] range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the range and precision for different shader numeric formats @@ -10805,7 +10805,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderPrecisionFormat")] [CLSCompliant(false)] - public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES20.All shadertype, OpenTK.Graphics.ES20.All precisiontype, [OutAttribute, CountAttribute(Count = 2)] out Int32 range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new NotImplementedException(); } + public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES20.All shadertype, OpenTK.Graphics.ES20.All precisiontype, [OutAttribute, CountAttribute(Count = 2)] out Int32 range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the range and precision for different shader numeric formats @@ -10825,7 +10825,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderPrecisionFormat")] [CLSCompliant(false)] - public static unsafe void GetShaderPrecisionFormat(OpenTK.Graphics.ES20.All shadertype, OpenTK.Graphics.ES20.All precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32* range, [OutAttribute, CountAttribute(Count = 1)] Int32* precision) { throw new NotImplementedException(); } + public static unsafe void GetShaderPrecisionFormat(OpenTK.Graphics.ES20.All shadertype, OpenTK.Graphics.ES20.All precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32* range, [OutAttribute, CountAttribute(Count = 1)] Int32* precision) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the range and precision for different shader numeric formats @@ -10844,7 +10844,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderPrecisionFormat")] [CLSCompliant(false)] - public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES20.ShaderType shadertype, OpenTK.Graphics.ES20.ShaderPrecision precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32[] range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new NotImplementedException(); } + public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES20.ShaderType shadertype, OpenTK.Graphics.ES20.ShaderPrecision precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32[] range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the range and precision for different shader numeric formats @@ -10863,7 +10863,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderPrecisionFormat")] [CLSCompliant(false)] - public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES20.ShaderType shadertype, OpenTK.Graphics.ES20.ShaderPrecision precisiontype, [OutAttribute, CountAttribute(Count = 2)] out Int32 range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new NotImplementedException(); } + public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES20.ShaderType shadertype, OpenTK.Graphics.ES20.ShaderPrecision precisiontype, [OutAttribute, CountAttribute(Count = 2)] out Int32 range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the range and precision for different shader numeric formats @@ -10882,7 +10882,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderPrecisionFormat")] [CLSCompliant(false)] - public static unsafe void GetShaderPrecisionFormat(OpenTK.Graphics.ES20.ShaderType shadertype, OpenTK.Graphics.ES20.ShaderPrecision precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32* range, [OutAttribute, CountAttribute(Count = 1)] Int32* precision) { throw new NotImplementedException(); } + public static unsafe void GetShaderPrecisionFormat(OpenTK.Graphics.ES20.ShaderType shadertype, OpenTK.Graphics.ES20.ShaderPrecision precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32* range, [OutAttribute, CountAttribute(Count = 1)] Int32* precision) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the source code string from a shader object @@ -10901,7 +10901,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] [CLSCompliant(false)] - public static void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new NotImplementedException(); } + public static void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the source code string from a shader object @@ -10920,7 +10920,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] [CLSCompliant(false)] - public static unsafe void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new NotImplementedException(); } + public static unsafe void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the source code string from a shader object @@ -10939,7 +10939,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] [CLSCompliant(false)] - public static void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new NotImplementedException(); } + public static void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the source code string from a shader object @@ -10958,7 +10958,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] [CLSCompliant(false)] - public static unsafe void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new NotImplementedException(); } + public static unsafe void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a string describing the current GL connection @@ -10968,7 +10968,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetString")] - public static String GetString(OpenTK.Graphics.ES20.All name) { throw new NotImplementedException(); } + public static String GetString(OpenTK.Graphics.ES20.All name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a string describing the current GL connection @@ -10977,7 +10977,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a symbolic constant, one of Vendor, Renderer, Version, ShadingLanguageVersion, or Extensions. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetString")] - public static String GetString(OpenTK.Graphics.ES20.StringName name) { throw new NotImplementedException(); } + public static String GetString(OpenTK.Graphics.ES20.StringName name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -10994,7 +10994,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameterfv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -11011,7 +11011,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameterfv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -11028,7 +11028,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameterfv")] [CLSCompliant(false)] - public static unsafe void GetTexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -11045,7 +11045,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use GetTextureParameterName overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameterfv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -11062,7 +11062,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use GetTextureParameterName overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameterfv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -11079,7 +11079,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use GetTextureParameterName overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameterfv")] [CLSCompliant(false)] - public static unsafe void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -11095,7 +11095,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameterfv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -11111,7 +11111,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameterfv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -11127,7 +11127,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameterfv")] [CLSCompliant(false)] - public static unsafe void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -11144,7 +11144,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameteriv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -11161,7 +11161,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameteriv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -11178,7 +11178,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameteriv")] [CLSCompliant(false)] - public static unsafe void GetTexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -11195,7 +11195,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use GetTextureParameterName overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameteriv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -11212,7 +11212,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use GetTextureParameterName overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameteriv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -11229,7 +11229,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use GetTextureParameterName overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameteriv")] [CLSCompliant(false)] - public static unsafe void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -11245,7 +11245,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameteriv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -11261,7 +11261,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameteriv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -11277,7 +11277,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameteriv")] [CLSCompliant(false)] - public static unsafe void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the value of a uniform variable @@ -11293,7 +11293,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the value of a uniform variable @@ -11309,7 +11309,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Single @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the value of a uniform variable @@ -11325,7 +11325,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the value of a uniform variable @@ -11341,7 +11341,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the value of a uniform variable @@ -11357,7 +11357,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Single @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the value of a uniform variable @@ -11373,7 +11373,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the value of a uniform variable @@ -11389,7 +11389,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the value of a uniform variable @@ -11405,7 +11405,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the value of a uniform variable @@ -11421,7 +11421,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the value of a uniform variable @@ -11437,7 +11437,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the value of a uniform variable @@ -11453,7 +11453,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the value of a uniform variable @@ -11469,7 +11469,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the location of a uniform variable @@ -11482,7 +11482,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformLocation")] [CLSCompliant(false)] - public static Int32 GetUniformLocation(Int32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetUniformLocation(Int32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the location of a uniform variable @@ -11495,7 +11495,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformLocation")] [CLSCompliant(false)] - public static Int32 GetUniformLocation(UInt32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetUniformLocation(UInt32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11512,7 +11512,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11529,7 +11529,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11546,7 +11546,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11562,7 +11562,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11578,7 +11578,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11594,7 +11594,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11611,7 +11611,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11628,7 +11628,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11645,7 +11645,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11661,7 +11661,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11677,7 +11677,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11693,7 +11693,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11710,7 +11710,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11727,7 +11727,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11744,7 +11744,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11760,7 +11760,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11776,7 +11776,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11792,7 +11792,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11809,7 +11809,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11826,7 +11826,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11843,7 +11843,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11859,7 +11859,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11875,7 +11875,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11891,7 +11891,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -11908,7 +11908,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] [CLSCompliant(false)] - public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new NotImplementedException(); } + public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -11927,7 +11927,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -11946,7 +11946,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -11965,7 +11965,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -11984,7 +11984,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -12000,7 +12000,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] [CLSCompliant(false)] - public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES20.VertexAttribPointerParameter pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new NotImplementedException(); } + public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES20.VertexAttribPointerParameter pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -12018,7 +12018,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES20.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -12036,7 +12036,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES20.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -12054,7 +12054,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES20.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -12072,7 +12072,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES20.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -12089,7 +12089,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] [CLSCompliant(false)] - public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new NotImplementedException(); } + public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -12108,7 +12108,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -12127,7 +12127,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -12146,7 +12146,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -12165,7 +12165,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -12181,7 +12181,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] [CLSCompliant(false)] - public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES20.VertexAttribPointerParameter pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new NotImplementedException(); } + public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES20.VertexAttribPointerParameter pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -12199,7 +12199,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES20.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -12217,7 +12217,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES20.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -12235,7 +12235,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES20.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -12253,7 +12253,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES20.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify implementation-specific hints @@ -12266,7 +12266,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glHint")] - public static void Hint(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All mode) { throw new NotImplementedException(); } + public static void Hint(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify implementation-specific hints @@ -12278,7 +12278,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a symbolic constant indicating the desired behavior. Fastest, Nicest, and DontCare are accepted. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glHint")] - public static void Hint(OpenTK.Graphics.ES20.HintTarget target, OpenTK.Graphics.ES20.HintMode mode) { throw new NotImplementedException(); } + public static void Hint(OpenTK.Graphics.ES20.HintTarget target, OpenTK.Graphics.ES20.HintMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a buffer object @@ -12288,7 +12288,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsBuffer")] [CLSCompliant(false)] - public static bool IsBuffer(Int32 buffer) { throw new NotImplementedException(); } + public static bool IsBuffer(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a buffer object @@ -12298,7 +12298,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsBuffer")] [CLSCompliant(false)] - public static bool IsBuffer(UInt32 buffer) { throw new NotImplementedException(); } + public static bool IsBuffer(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Test whether a capability is enabled @@ -12308,7 +12308,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsEnabled")] - public static bool IsEnabled(OpenTK.Graphics.ES20.All cap) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES20.All cap) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Test whether a capability is enabled @@ -12317,7 +12317,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a symbolic constant indicating a GL capability. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsEnabled")] - public static bool IsEnabled(OpenTK.Graphics.ES20.EnableCap cap) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES20.EnableCap cap) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a framebuffer object @@ -12327,7 +12327,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsFramebuffer")] [CLSCompliant(false)] - public static bool IsFramebuffer(Int32 framebuffer) { throw new NotImplementedException(); } + public static bool IsFramebuffer(Int32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a framebuffer object @@ -12337,7 +12337,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsFramebuffer")] [CLSCompliant(false)] - public static bool IsFramebuffer(UInt32 framebuffer) { throw new NotImplementedException(); } + public static bool IsFramebuffer(UInt32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a program object @@ -12347,7 +12347,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsProgram")] [CLSCompliant(false)] - public static bool IsProgram(Int32 program) { throw new NotImplementedException(); } + public static bool IsProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a program object @@ -12357,7 +12357,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsProgram")] [CLSCompliant(false)] - public static bool IsProgram(UInt32 program) { throw new NotImplementedException(); } + public static bool IsProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a renderbuffer object @@ -12367,7 +12367,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsRenderbuffer")] [CLSCompliant(false)] - public static bool IsRenderbuffer(Int32 renderbuffer) { throw new NotImplementedException(); } + public static bool IsRenderbuffer(Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a renderbuffer object @@ -12377,7 +12377,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsRenderbuffer")] [CLSCompliant(false)] - public static bool IsRenderbuffer(UInt32 renderbuffer) { throw new NotImplementedException(); } + public static bool IsRenderbuffer(UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a shader object @@ -12387,7 +12387,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsShader")] [CLSCompliant(false)] - public static bool IsShader(Int32 shader) { throw new NotImplementedException(); } + public static bool IsShader(Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a shader object @@ -12397,7 +12397,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsShader")] [CLSCompliant(false)] - public static bool IsShader(UInt32 shader) { throw new NotImplementedException(); } + public static bool IsShader(UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a texture @@ -12407,7 +12407,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsTexture")] [CLSCompliant(false)] - public static bool IsTexture(Int32 texture) { throw new NotImplementedException(); } + public static bool IsTexture(Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a texture @@ -12417,7 +12417,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsTexture")] [CLSCompliant(false)] - public static bool IsTexture(UInt32 texture) { throw new NotImplementedException(); } + public static bool IsTexture(UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the width of rasterized lines @@ -12426,7 +12426,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the width of rasterized lines. The initial value is 1. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glLineWidth")] - public static void LineWidth(Single width) { throw new NotImplementedException(); } + public static void LineWidth(Single width) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Link a program object @@ -12436,7 +12436,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glLinkProgram")] [CLSCompliant(false)] - public static void LinkProgram(Int32 program) { throw new NotImplementedException(); } + public static void LinkProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Link a program object @@ -12446,7 +12446,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glLinkProgram")] [CLSCompliant(false)] - public static void LinkProgram(UInt32 program) { throw new NotImplementedException(); } + public static void LinkProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// /// Label a named object identified within a namespace @@ -12466,7 +12466,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabel")] [CLSCompliant(false)] - public static void ObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } /// /// Label a named object identified within a namespace @@ -12486,7 +12486,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabel")] [CLSCompliant(false)] - public static void ObjectLabel(OpenTK.Graphics.ES20.All identifier, UInt32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.ES20.All identifier, UInt32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } /// /// Label a named object identified within a namespace @@ -12505,7 +12505,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabel")] [CLSCompliant(false)] - public static void ObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, Int32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, Int32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } /// /// Label a named object identified within a namespace @@ -12524,7 +12524,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabel")] [CLSCompliant(false)] - public static void ObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, UInt32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, UInt32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } /// /// Label a a sync object identified by a pointer @@ -12539,7 +12539,7 @@ namespace OpenTK.Graphics.ES20 /// The address of a string containing the label to assign to the object. /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabel")] - public static void ObjectPtrLabel(IntPtr ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new NotImplementedException(); } + public static void ObjectPtrLabel(IntPtr ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } /// /// Label a a sync object identified by a pointer @@ -12557,7 +12557,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Label a a sync object identified by a pointer @@ -12575,7 +12575,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Label a a sync object identified by a pointer @@ -12593,7 +12593,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Label a a sync object identified by a pointer @@ -12610,7 +12610,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabel")] public static void ObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set pixel storage modes @@ -12623,7 +12623,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glPixelStorei")] - public static void PixelStore(OpenTK.Graphics.ES20.All pname, Int32 param) { throw new NotImplementedException(); } + public static void PixelStore(OpenTK.Graphics.ES20.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set pixel storage modes @@ -12635,7 +12635,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the value that pname is set to. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glPixelStorei")] - public static void PixelStore(OpenTK.Graphics.ES20.PixelStoreParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void PixelStore(OpenTK.Graphics.ES20.PixelStoreParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set the scale and units used to calculate depth values @@ -12647,13 +12647,13 @@ namespace OpenTK.Graphics.ES20 /// Is multiplied by an implementation-specific value to create a constant depth offset. The initial value is 0. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glPolygonOffset")] - public static void PolygonOffset(Single factor, Single units) { throw new NotImplementedException(); } + public static void PolygonOffset(Single factor, Single units) { throw new BindingsNotRewrittenException(); } /// /// Pop the active debug group /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPopDebugGroup")] - public static void PopDebugGroup() { throw new NotImplementedException(); } + public static void PopDebugGroup() { throw new BindingsNotRewrittenException(); } /// /// Push a named debug group into the command stream @@ -12672,7 +12672,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroup")] [CLSCompliant(false)] - public static void PushDebugGroup(OpenTK.Graphics.ES20.All source, Int32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new NotImplementedException(); } + public static void PushDebugGroup(OpenTK.Graphics.ES20.All source, Int32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new BindingsNotRewrittenException(); } /// /// Push a named debug group into the command stream @@ -12691,7 +12691,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroup")] [CLSCompliant(false)] - public static void PushDebugGroup(OpenTK.Graphics.ES20.All source, UInt32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new NotImplementedException(); } + public static void PushDebugGroup(OpenTK.Graphics.ES20.All source, UInt32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new BindingsNotRewrittenException(); } /// /// @@ -12704,7 +12704,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixels")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, Int32 bufSize, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, Int32 bufSize, [OutAttribute] IntPtr data) { throw new BindingsNotRewrittenException(); } /// /// @@ -12720,7 +12720,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, Int32 bufSize, [InAttribute, OutAttribute] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// @@ -12736,7 +12736,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, Int32 bufSize, [InAttribute, OutAttribute] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// @@ -12752,7 +12752,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, Int32 bufSize, [InAttribute, OutAttribute] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// @@ -12767,7 +12767,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixels")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, Int32 bufSize, [InAttribute, OutAttribute] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// @@ -12779,7 +12779,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixels")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, Int32 bufSize, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, Int32 bufSize, [OutAttribute] IntPtr data) { throw new BindingsNotRewrittenException(); } /// /// @@ -12794,7 +12794,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// @@ -12809,7 +12809,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// @@ -12824,7 +12824,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// @@ -12838,7 +12838,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixels")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -12866,7 +12866,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReadPixels")] - public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -12897,7 +12897,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -12928,7 +12928,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -12959,7 +12959,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -12989,7 +12989,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReadPixels")] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T6 pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -13016,7 +13016,7 @@ namespace OpenTK.Graphics.ES20 /// Returns the pixel data. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReadPixels")] - public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -13046,7 +13046,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -13076,7 +13076,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -13106,7 +13106,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -13135,13 +13135,13 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReadPixels")] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T6 pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Release resources allocated by the shader compiler /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReleaseShaderCompiler")] - public static void ReleaseShaderCompiler() { throw new NotImplementedException(); } + public static void ReleaseShaderCompiler() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a renderbuffer object's data store @@ -13160,7 +13160,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glRenderbufferStorage")] - public static void RenderbufferStorage(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorage(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a renderbuffer object's data store @@ -13178,7 +13178,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the height of the renderbuffer in pixels. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glRenderbufferStorage")] - public static void RenderbufferStorage(OpenTK.Graphics.ES20.RenderbufferTarget target, OpenTK.Graphics.ES20.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorage(OpenTK.Graphics.ES20.RenderbufferTarget target, OpenTK.Graphics.ES20.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify multisample coverage parameters @@ -13190,7 +13190,7 @@ namespace OpenTK.Graphics.ES20 /// Specify a single boolean value representing if the coverage masks should be inverted. True and False are accepted. The initial value is False. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glSampleCoverage")] - public static void SampleCoverage(Single value, bool invert) { throw new NotImplementedException(); } + public static void SampleCoverage(Single value, bool invert) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define the scissor box @@ -13208,7 +13208,7 @@ namespace OpenTK.Graphics.ES20 /// Specify the width and height of the scissor box. When a GL context is first attached to a window, width and height are set to the dimensions of that window. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glScissor")] - public static void Scissor(Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void Scissor(Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13231,7 +13231,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES20.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES20.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13256,7 +13256,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13281,7 +13281,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13306,7 +13306,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13331,7 +13331,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13353,7 +13353,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13377,7 +13377,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13401,7 +13401,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13425,7 +13425,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13449,7 +13449,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13472,7 +13472,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES20.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES20.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13497,7 +13497,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13522,7 +13522,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13547,7 +13547,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13572,7 +13572,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13594,7 +13594,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13618,7 +13618,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13642,7 +13642,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13666,7 +13666,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13690,7 +13690,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13713,7 +13713,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES20.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES20.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13738,7 +13738,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13763,7 +13763,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13788,7 +13788,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13813,7 +13813,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13835,7 +13835,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13859,7 +13859,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13883,7 +13883,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13907,7 +13907,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13931,7 +13931,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13954,7 +13954,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES20.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES20.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13979,7 +13979,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14004,7 +14004,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14029,7 +14029,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14054,7 +14054,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14076,7 +14076,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14100,7 +14100,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14124,7 +14124,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14148,7 +14148,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14172,7 +14172,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14195,7 +14195,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES20.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES20.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14220,7 +14220,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14245,7 +14245,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14270,7 +14270,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14295,7 +14295,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14317,7 +14317,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14341,7 +14341,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14365,7 +14365,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14389,7 +14389,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14413,7 +14413,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14436,7 +14436,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES20.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES20.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14461,7 +14461,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14486,7 +14486,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14511,7 +14511,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14536,7 +14536,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14558,7 +14558,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14582,7 +14582,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14606,7 +14606,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14630,7 +14630,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14654,7 +14654,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Replace the source code in a shader object @@ -14673,7 +14673,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new NotImplementedException(); } + public static void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Replace the source code in a shader object @@ -14692,7 +14692,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new NotImplementedException(); } + public static void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Replace the source code in a shader object @@ -14711,7 +14711,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static unsafe void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new NotImplementedException(); } + public static unsafe void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Replace the source code in a shader object @@ -14730,7 +14730,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new NotImplementedException(); } + public static void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Replace the source code in a shader object @@ -14749,7 +14749,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new NotImplementedException(); } + public static void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Replace the source code in a shader object @@ -14768,7 +14768,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static unsafe void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new NotImplementedException(); } + public static unsafe void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and back function and reference value for stencil testing @@ -14785,7 +14785,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFunc")] [CLSCompliant(false)] - public static void StencilFunc(OpenTK.Graphics.ES20.All func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } + public static void StencilFunc(OpenTK.Graphics.ES20.All func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and back function and reference value for stencil testing @@ -14802,7 +14802,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFunc")] [CLSCompliant(false)] - public static void StencilFunc(OpenTK.Graphics.ES20.All func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFunc(OpenTK.Graphics.ES20.All func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and back function and reference value for stencil testing @@ -14818,7 +14818,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFunc")] [CLSCompliant(false)] - public static void StencilFunc(OpenTK.Graphics.ES20.StencilFunction func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } + public static void StencilFunc(OpenTK.Graphics.ES20.StencilFunction func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and back function and reference value for stencil testing @@ -14834,7 +14834,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFunc")] [CLSCompliant(false)] - public static void StencilFunc(OpenTK.Graphics.ES20.StencilFunction func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFunc(OpenTK.Graphics.ES20.StencilFunction func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back function and reference value for stencil testing @@ -14854,7 +14854,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")] [CLSCompliant(false)] - public static void StencilFuncSeparate(OpenTK.Graphics.ES20.All face, OpenTK.Graphics.ES20.All func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } + public static void StencilFuncSeparate(OpenTK.Graphics.ES20.All face, OpenTK.Graphics.ES20.All func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back function and reference value for stencil testing @@ -14874,7 +14874,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")] [CLSCompliant(false)] - public static void StencilFuncSeparate(OpenTK.Graphics.ES20.All face, OpenTK.Graphics.ES20.All func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFuncSeparate(OpenTK.Graphics.ES20.All face, OpenTK.Graphics.ES20.All func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back function and reference value for stencil testing @@ -14894,7 +14894,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use StencilFace overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")] [CLSCompliant(false)] - public static void StencilFuncSeparate(OpenTK.Graphics.ES20.CullFaceMode face, OpenTK.Graphics.ES20.StencilFunction func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } + public static void StencilFuncSeparate(OpenTK.Graphics.ES20.CullFaceMode face, OpenTK.Graphics.ES20.StencilFunction func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back function and reference value for stencil testing @@ -14914,7 +14914,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use StencilFace overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")] [CLSCompliant(false)] - public static void StencilFuncSeparate(OpenTK.Graphics.ES20.CullFaceMode face, OpenTK.Graphics.ES20.StencilFunction func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFuncSeparate(OpenTK.Graphics.ES20.CullFaceMode face, OpenTK.Graphics.ES20.StencilFunction func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back function and reference value for stencil testing @@ -14933,7 +14933,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")] [CLSCompliant(false)] - public static void StencilFuncSeparate(OpenTK.Graphics.ES20.StencilFace face, OpenTK.Graphics.ES20.StencilFunction func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } + public static void StencilFuncSeparate(OpenTK.Graphics.ES20.StencilFace face, OpenTK.Graphics.ES20.StencilFunction func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back function and reference value for stencil testing @@ -14952,7 +14952,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")] [CLSCompliant(false)] - public static void StencilFuncSeparate(OpenTK.Graphics.ES20.StencilFace face, OpenTK.Graphics.ES20.StencilFunction func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFuncSeparate(OpenTK.Graphics.ES20.StencilFace face, OpenTK.Graphics.ES20.StencilFunction func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Control the front and back writing of individual bits in the stencil planes @@ -14962,7 +14962,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMask")] [CLSCompliant(false)] - public static void StencilMask(Int32 mask) { throw new NotImplementedException(); } + public static void StencilMask(Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Control the front and back writing of individual bits in the stencil planes @@ -14972,7 +14972,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMask")] [CLSCompliant(false)] - public static void StencilMask(UInt32 mask) { throw new NotImplementedException(); } + public static void StencilMask(UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Control the front and/or back writing of individual bits in the stencil planes @@ -14986,7 +14986,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMaskSeparate")] [CLSCompliant(false)] - public static void StencilMaskSeparate(OpenTK.Graphics.ES20.All face, Int32 mask) { throw new NotImplementedException(); } + public static void StencilMaskSeparate(OpenTK.Graphics.ES20.All face, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Control the front and/or back writing of individual bits in the stencil planes @@ -15000,7 +15000,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMaskSeparate")] [CLSCompliant(false)] - public static void StencilMaskSeparate(OpenTK.Graphics.ES20.All face, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilMaskSeparate(OpenTK.Graphics.ES20.All face, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Control the front and/or back writing of individual bits in the stencil planes @@ -15014,7 +15014,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use StencilFace overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMaskSeparate")] [CLSCompliant(false)] - public static void StencilMaskSeparate(OpenTK.Graphics.ES20.CullFaceMode face, Int32 mask) { throw new NotImplementedException(); } + public static void StencilMaskSeparate(OpenTK.Graphics.ES20.CullFaceMode face, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Control the front and/or back writing of individual bits in the stencil planes @@ -15028,7 +15028,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use StencilFace overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMaskSeparate")] [CLSCompliant(false)] - public static void StencilMaskSeparate(OpenTK.Graphics.ES20.CullFaceMode face, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilMaskSeparate(OpenTK.Graphics.ES20.CullFaceMode face, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Control the front and/or back writing of individual bits in the stencil planes @@ -15041,7 +15041,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMaskSeparate")] [CLSCompliant(false)] - public static void StencilMaskSeparate(OpenTK.Graphics.ES20.StencilFace face, Int32 mask) { throw new NotImplementedException(); } + public static void StencilMaskSeparate(OpenTK.Graphics.ES20.StencilFace face, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Control the front and/or back writing of individual bits in the stencil planes @@ -15054,7 +15054,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMaskSeparate")] [CLSCompliant(false)] - public static void StencilMaskSeparate(OpenTK.Graphics.ES20.StencilFace face, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilMaskSeparate(OpenTK.Graphics.ES20.StencilFace face, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and back stencil test actions @@ -15070,7 +15070,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilOp")] - public static void StencilOp(OpenTK.Graphics.ES20.All fail, OpenTK.Graphics.ES20.All zfail, OpenTK.Graphics.ES20.All zpass) { throw new NotImplementedException(); } + public static void StencilOp(OpenTK.Graphics.ES20.All fail, OpenTK.Graphics.ES20.All zfail, OpenTK.Graphics.ES20.All zpass) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and back stencil test actions @@ -15085,7 +15085,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the stencil action when both the stencil test and the depth test pass, or when the stencil test passes and either there is no depth buffer or depth testing is not enabled. dppass accepts the same symbolic constants as sfail. The initial value is Keep. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilOp")] - public static void StencilOp(OpenTK.Graphics.ES20.StencilOp fail, OpenTK.Graphics.ES20.StencilOp zfail, OpenTK.Graphics.ES20.StencilOp zpass) { throw new NotImplementedException(); } + public static void StencilOp(OpenTK.Graphics.ES20.StencilOp fail, OpenTK.Graphics.ES20.StencilOp zfail, OpenTK.Graphics.ES20.StencilOp zpass) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back stencil test actions @@ -15104,7 +15104,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilOpSeparate")] - public static void StencilOpSeparate(OpenTK.Graphics.ES20.All face, OpenTK.Graphics.ES20.All sfail, OpenTK.Graphics.ES20.All dpfail, OpenTK.Graphics.ES20.All dppass) { throw new NotImplementedException(); } + public static void StencilOpSeparate(OpenTK.Graphics.ES20.All face, OpenTK.Graphics.ES20.All sfail, OpenTK.Graphics.ES20.All dpfail, OpenTK.Graphics.ES20.All dppass) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back stencil test actions @@ -15123,7 +15123,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use StencilFace overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilOpSeparate")] - public static void StencilOpSeparate(OpenTK.Graphics.ES20.CullFaceMode face, OpenTK.Graphics.ES20.StencilOp sfail, OpenTK.Graphics.ES20.StencilOp dpfail, OpenTK.Graphics.ES20.StencilOp dppass) { throw new NotImplementedException(); } + public static void StencilOpSeparate(OpenTK.Graphics.ES20.CullFaceMode face, OpenTK.Graphics.ES20.StencilOp sfail, OpenTK.Graphics.ES20.StencilOp dpfail, OpenTK.Graphics.ES20.StencilOp dppass) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back stencil test actions @@ -15141,7 +15141,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the stencil action when both the stencil test and the depth test pass, or when the stencil test passes and either there is no depth buffer or depth testing is not enabled. dppass accepts the same symbolic constants as sfail. The initial value is Keep. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilOpSeparate")] - public static void StencilOpSeparate(OpenTK.Graphics.ES20.StencilFace face, OpenTK.Graphics.ES20.StencilOp sfail, OpenTK.Graphics.ES20.StencilOp dpfail, OpenTK.Graphics.ES20.StencilOp dppass) { throw new NotImplementedException(); } + public static void StencilOpSeparate(OpenTK.Graphics.ES20.StencilFace face, OpenTK.Graphics.ES20.StencilOp sfail, OpenTK.Graphics.ES20.StencilOp dpfail, OpenTK.Graphics.ES20.StencilOp dppass) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -15175,7 +15175,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] - public static void TexImage2D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexImage2D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -15212,7 +15212,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -15249,7 +15249,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -15286,7 +15286,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -15322,7 +15322,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] public static void TexImage2D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -15356,7 +15356,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use TextureTarget2d overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] - public static void TexImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, OpenTK.Graphics.ES20.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, OpenTK.Graphics.ES20.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -15393,7 +15393,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, OpenTK.Graphics.ES20.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -15430,7 +15430,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, OpenTK.Graphics.ES20.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -15467,7 +15467,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, OpenTK.Graphics.ES20.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -15503,7 +15503,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] public static void TexImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, OpenTK.Graphics.ES20.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -15536,7 +15536,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] - public static void TexImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES20.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES20.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -15572,7 +15572,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES20.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -15608,7 +15608,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES20.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -15644,7 +15644,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES20.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -15679,7 +15679,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] public static void TexImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES20.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -15695,7 +15695,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameterf")] - public static void TexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, Single param) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -15710,7 +15710,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the value of pname. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameterf")] - public static void TexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, Single param) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -15727,7 +15727,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameterfv")] [CLSCompliant(false)] - public static void TexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -15744,7 +15744,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameterfv")] [CLSCompliant(false)] - public static unsafe void TexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -15760,7 +15760,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameterfv")] [CLSCompliant(false)] - public static void TexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -15776,7 +15776,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameterfv")] [CLSCompliant(false)] - public static unsafe void TexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -15792,7 +15792,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameteri")] - public static void TexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, Int32 param) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -15807,7 +15807,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the value of pname. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameteri")] - public static void TexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -15824,7 +15824,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameteriv")] [CLSCompliant(false)] - public static void TexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -15841,7 +15841,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameteriv")] [CLSCompliant(false)] - public static unsafe void TexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -15857,7 +15857,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameteriv")] [CLSCompliant(false)] - public static void TexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -15873,7 +15873,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameteriv")] [CLSCompliant(false)] - public static unsafe void TexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -15907,7 +15907,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] - public static void TexSubImage2D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexSubImage2D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -15944,7 +15944,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -15981,7 +15981,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -16018,7 +16018,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -16054,7 +16054,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] public static void TexSubImage2D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -16088,7 +16088,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use TextureTarget2d overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] - public static void TexSubImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexSubImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -16125,7 +16125,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -16162,7 +16162,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -16199,7 +16199,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -16235,7 +16235,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] public static void TexSubImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -16268,7 +16268,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] - public static void TexSubImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexSubImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -16304,7 +16304,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -16340,7 +16340,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -16376,7 +16376,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -16411,7 +16411,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] public static void TexSubImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16423,7 +16423,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1f")] - public static void Uniform1(Int32 location, Single v0) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16439,7 +16439,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1fv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16455,7 +16455,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1fv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16471,7 +16471,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1fv")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16483,7 +16483,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1i")] - public static void Uniform1(Int32 location, Int32 v0) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16499,7 +16499,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1iv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16515,7 +16515,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1iv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16531,7 +16531,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1iv")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16546,7 +16546,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2f")] - public static void Uniform2(Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16562,7 +16562,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2fv")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16578,7 +16578,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2fv")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16594,7 +16594,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2fv")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16609,7 +16609,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2i")] - public static void Uniform2(Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16625,7 +16625,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2iv")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16641,7 +16641,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2iv")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16659,7 +16659,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3f")] - public static void Uniform3(Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16675,7 +16675,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3fv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16691,7 +16691,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3fv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16707,7 +16707,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3fv")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16725,7 +16725,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3i")] - public static void Uniform3(Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16741,7 +16741,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3iv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16757,7 +16757,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3iv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16773,7 +16773,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3iv")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16794,7 +16794,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4f")] - public static void Uniform4(Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16810,7 +16810,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4fv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16826,7 +16826,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4fv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16842,7 +16842,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4fv")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16863,7 +16863,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4i")] - public static void Uniform4(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16879,7 +16879,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4iv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16895,7 +16895,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4iv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16911,7 +16911,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4iv")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -16920,7 +16920,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*4] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] [CLSCompliant(false)] - public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -16929,7 +16929,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*4] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] [CLSCompliant(false)] - public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -16938,7 +16938,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*4] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -16947,7 +16947,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*9] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] [CLSCompliant(false)] - public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -16956,7 +16956,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*9] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] [CLSCompliant(false)] - public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -16965,7 +16965,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*9] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -16974,7 +16974,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*16] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] [CLSCompliant(false)] - public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -16983,7 +16983,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*16] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] [CLSCompliant(false)] - public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -16992,7 +16992,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*16] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Install a program object as part of current rendering state @@ -17002,7 +17002,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUseProgram")] [CLSCompliant(false)] - public static void UseProgram(Int32 program) { throw new NotImplementedException(); } + public static void UseProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Install a program object as part of current rendering state @@ -17012,7 +17012,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUseProgram")] [CLSCompliant(false)] - public static void UseProgram(UInt32 program) { throw new NotImplementedException(); } + public static void UseProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Validate a program object @@ -17022,7 +17022,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glValidateProgram")] [CLSCompliant(false)] - public static void ValidateProgram(Int32 program) { throw new NotImplementedException(); } + public static void ValidateProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Validate a program object @@ -17032,7 +17032,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glValidateProgram")] [CLSCompliant(false)] - public static void ValidateProgram(UInt32 program) { throw new NotImplementedException(); } + public static void ValidateProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17045,7 +17045,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1f")] [CLSCompliant(false)] - public static void VertexAttrib1(Int32 index, Single x) { throw new NotImplementedException(); } + public static void VertexAttrib1(Int32 index, Single x) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17058,7 +17058,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1f")] [CLSCompliant(false)] - public static void VertexAttrib1(UInt32 index, Single x) { throw new NotImplementedException(); } + public static void VertexAttrib1(UInt32 index, Single x) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17071,7 +17071,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1fv")] [CLSCompliant(false)] - public static void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17084,7 +17084,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17097,7 +17097,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1fv")] [CLSCompliant(false)] - public static void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17110,7 +17110,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17126,7 +17126,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2f")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, Single x, Single y) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17142,7 +17142,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2f")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, Single x, Single y) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17155,7 +17155,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17168,7 +17168,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17181,7 +17181,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17194,7 +17194,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17207,7 +17207,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17220,7 +17220,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17239,7 +17239,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3f")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17258,7 +17258,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3f")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17271,7 +17271,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17284,7 +17284,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17297,7 +17297,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17310,7 +17310,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17323,7 +17323,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17336,7 +17336,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17358,7 +17358,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4f")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17380,7 +17380,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4f")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17393,7 +17393,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17406,7 +17406,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17419,7 +17419,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17432,7 +17432,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17445,7 +17445,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17458,7 +17458,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -17484,7 +17484,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] [CLSCompliant(false)] - public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -17512,7 +17512,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -17540,7 +17540,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -17568,7 +17568,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -17596,7 +17596,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T5 pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -17621,7 +17621,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] [CLSCompliant(false)] - public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES20.VertexAttribPointerType type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES20.VertexAttribPointerType type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -17648,7 +17648,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES20.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -17675,7 +17675,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES20.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -17702,7 +17702,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES20.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -17729,7 +17729,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES20.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T5 pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -17755,7 +17755,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] [CLSCompliant(false)] - public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -17783,7 +17783,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -17811,7 +17811,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -17839,7 +17839,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -17867,7 +17867,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T5 pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -17892,7 +17892,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] [CLSCompliant(false)] - public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES20.VertexAttribPointerType type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES20.VertexAttribPointerType type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -17919,7 +17919,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES20.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -17946,7 +17946,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES20.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -17973,7 +17973,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES20.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -18000,7 +18000,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES20.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T5 pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set the viewport @@ -18018,7 +18018,7 @@ namespace OpenTK.Graphics.ES20 /// Specify the width and height of the viewport. When a GL context is first attached to a window, width and height are set to the dimensions of that window. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glViewport")] - public static void Viewport(Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void Viewport(Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } public static partial class Ext { @@ -18028,7 +18028,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_win32_keyed_mutex", Version = "", EntryPoint = "glAcquireKeyedMutexWin32EXT")] [CLSCompliant(false)] - public static bool AcquireKeyedMutexWin32(Int32 memory, Int64 key, Int32 timeout) { throw new NotImplementedException(); } + public static bool AcquireKeyedMutexWin32(Int32 memory, Int64 key, Int32 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_win32_keyed_mutex] /// @@ -18036,19 +18036,19 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_win32_keyed_mutex", Version = "", EntryPoint = "glAcquireKeyedMutexWin32EXT")] [CLSCompliant(false)] - public static bool AcquireKeyedMutexWin32(UInt32 memory, UInt64 key, UInt32 timeout) { throw new NotImplementedException(); } + public static bool AcquireKeyedMutexWin32(UInt32 memory, UInt64 key, UInt32 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveProgramEXT")] [CLSCompliant(false)] - public static void ActiveProgram(Int32 program) { throw new NotImplementedException(); } + public static void ActiveProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveProgramEXT")] [CLSCompliant(false)] - public static void ActiveProgram(UInt32 program) { throw new NotImplementedException(); } + public static void ActiveProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Set the active program object for a program pipeline object @@ -18061,7 +18061,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveShaderProgramEXT")] [CLSCompliant(false)] - public static void ActiveShaderProgram(Int32 pipeline, Int32 program) { throw new NotImplementedException(); } + public static void ActiveShaderProgram(Int32 pipeline, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Set the active program object for a program pipeline object @@ -18074,7 +18074,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveShaderProgramEXT")] [CLSCompliant(false)] - public static void ActiveShaderProgram(UInt32 pipeline, UInt32 program) { throw new NotImplementedException(); } + public static void ActiveShaderProgram(UInt32 pipeline, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delimit the boundaries of a query object @@ -18088,7 +18088,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glBeginQueryEXT")] [CLSCompliant(false)] - public static void BeginQuery(OpenTK.Graphics.ES20.All target, Int32 id) { throw new NotImplementedException(); } + public static void BeginQuery(OpenTK.Graphics.ES20.All target, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delimit the boundaries of a query object @@ -18102,7 +18102,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glBeginQueryEXT")] [CLSCompliant(false)] - public static void BeginQuery(OpenTK.Graphics.ES20.All target, UInt32 id) { throw new NotImplementedException(); } + public static void BeginQuery(OpenTK.Graphics.ES20.All target, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delimit the boundaries of a query object @@ -18115,7 +18115,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glBeginQueryEXT")] [CLSCompliant(false)] - public static void BeginQuery(OpenTK.Graphics.ES20.QueryTarget target, Int32 id) { throw new NotImplementedException(); } + public static void BeginQuery(OpenTK.Graphics.ES20.QueryTarget target, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delimit the boundaries of a query object @@ -18128,7 +18128,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glBeginQueryEXT")] [CLSCompliant(false)] - public static void BeginQuery(OpenTK.Graphics.ES20.QueryTarget target, UInt32 id) { throw new NotImplementedException(); } + public static void BeginQuery(OpenTK.Graphics.ES20.QueryTarget target, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Bind a user-defined varying out variable to a fragment shader color number @@ -18144,7 +18144,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glBindFragDataLocationEXT")] [CLSCompliant(false)] - public static void BindFragDataLocation(Int32 program, Int32 color, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static void BindFragDataLocation(Int32 program, Int32 color, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Bind a user-defined varying out variable to a fragment shader color number @@ -18160,7 +18160,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glBindFragDataLocationEXT")] [CLSCompliant(false)] - public static void BindFragDataLocation(UInt32 program, UInt32 color, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static void BindFragDataLocation(UInt32 program, UInt32 color, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Bind a user-defined varying out variable to a fragment shader color number and index @@ -18179,7 +18179,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glBindFragDataLocationIndexedEXT")] [CLSCompliant(false)] - public static void BindFragDataLocationIndexed(Int32 program, Int32 colorNumber, Int32 index, String name) { throw new NotImplementedException(); } + public static void BindFragDataLocationIndexed(Int32 program, Int32 colorNumber, Int32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Bind a user-defined varying out variable to a fragment shader color number and index @@ -18198,7 +18198,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glBindFragDataLocationIndexedEXT")] [CLSCompliant(false)] - public static void BindFragDataLocationIndexed(UInt32 program, UInt32 colorNumber, UInt32 index, String name) { throw new NotImplementedException(); } + public static void BindFragDataLocationIndexed(UInt32 program, UInt32 colorNumber, UInt32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind a program pipeline to the current context @@ -18208,7 +18208,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glBindProgramPipelineEXT")] [CLSCompliant(false)] - public static void BindProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } + public static void BindProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind a program pipeline to the current context @@ -18218,7 +18218,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glBindProgramPipelineEXT")] [CLSCompliant(false)] - public static void BindProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static void BindProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_minmax] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -18228,7 +18228,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_blend_minmax", Version = "", EntryPoint = "glBlendEquationEXT")] - public static void BlendEquation(OpenTK.Graphics.ES20.All mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.ES20.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_minmax] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -18237,7 +18237,7 @@ namespace OpenTK.Graphics.ES20 /// specifies how source and destination colors are combined. It must be FuncAdd, FuncSubtract, or FuncReverseSubtract. /// [AutoGenerated(Category = "EXT_blend_minmax", Version = "", EntryPoint = "glBlendEquationEXT")] - public static void BlendEquation(OpenTK.Graphics.ES20.BlendEquationMode mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.ES20.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -18251,7 +18251,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiEXT")] [CLSCompliant(false)] - public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES20.All mode) { throw new NotImplementedException(); } + public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES20.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -18264,7 +18264,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiEXT")] [CLSCompliant(false)] - public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES20.BlendEquationMode mode) { throw new NotImplementedException(); } + public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES20.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -18278,7 +18278,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiEXT")] [CLSCompliant(false)] - public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES20.All mode) { throw new NotImplementedException(); } + public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES20.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -18291,7 +18291,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiEXT")] [CLSCompliant(false)] - public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES20.BlendEquationMode mode) { throw new NotImplementedException(); } + public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES20.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately @@ -18308,7 +18308,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiEXT")] [CLSCompliant(false)] - public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES20.All modeRGB, OpenTK.Graphics.ES20.All modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES20.All modeRGB, OpenTK.Graphics.ES20.All modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately @@ -18324,7 +18324,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiEXT")] [CLSCompliant(false)] - public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES20.BlendEquationMode modeRGB, OpenTK.Graphics.ES20.BlendEquationMode modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES20.BlendEquationMode modeRGB, OpenTK.Graphics.ES20.BlendEquationMode modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately @@ -18341,7 +18341,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiEXT")] [CLSCompliant(false)] - public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES20.All modeRGB, OpenTK.Graphics.ES20.All modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES20.All modeRGB, OpenTK.Graphics.ES20.All modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately @@ -18357,7 +18357,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiEXT")] [CLSCompliant(false)] - public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES20.BlendEquationMode modeRGB, OpenTK.Graphics.ES20.BlendEquationMode modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES20.BlendEquationMode modeRGB, OpenTK.Graphics.ES20.BlendEquationMode modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify pixel arithmetic @@ -18371,7 +18371,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciEXT")] [CLSCompliant(false)] - public static void BlendFunc(Int32 buf, OpenTK.Graphics.ES20.All src, OpenTK.Graphics.ES20.All dst) { throw new NotImplementedException(); } + public static void BlendFunc(Int32 buf, OpenTK.Graphics.ES20.All src, OpenTK.Graphics.ES20.All dst) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify pixel arithmetic @@ -18385,7 +18385,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciEXT")] [CLSCompliant(false)] - public static void BlendFunc(UInt32 buf, OpenTK.Graphics.ES20.All src, OpenTK.Graphics.ES20.All dst) { throw new NotImplementedException(); } + public static void BlendFunc(UInt32 buf, OpenTK.Graphics.ES20.All src, OpenTK.Graphics.ES20.All dst) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify pixel arithmetic for RGB and alpha components separately @@ -18407,7 +18407,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiEXT")] [CLSCompliant(false)] - public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.ES20.All srcRGB, OpenTK.Graphics.ES20.All dstRGB, OpenTK.Graphics.ES20.All srcAlpha, OpenTK.Graphics.ES20.All dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.ES20.All srcRGB, OpenTK.Graphics.ES20.All dstRGB, OpenTK.Graphics.ES20.All srcAlpha, OpenTK.Graphics.ES20.All dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify pixel arithmetic for RGB and alpha components separately @@ -18429,7 +18429,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiEXT")] [CLSCompliant(false)] - public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.ES20.All srcRGB, OpenTK.Graphics.ES20.All dstRGB, OpenTK.Graphics.ES20.All srcAlpha, OpenTK.Graphics.ES20.All dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.ES20.All srcRGB, OpenTK.Graphics.ES20.All dstRGB, OpenTK.Graphics.ES20.All srcAlpha, OpenTK.Graphics.ES20.All dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -18448,7 +18448,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES20.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new NotImplementedException(); } + public static void BufferStorage(OpenTK.Graphics.ES20.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -18467,7 +18467,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES20.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new NotImplementedException(); } + public static void BufferStorage(OpenTK.Graphics.ES20.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -18488,7 +18488,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES20.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -18509,7 +18509,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES20.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -18530,7 +18530,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES20.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -18551,7 +18551,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES20.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -18572,7 +18572,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES20.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -18593,7 +18593,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES20.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -18614,7 +18614,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES20.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -18635,7 +18635,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES20.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -18654,7 +18654,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES20.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new NotImplementedException(); } + public static void BufferStorage(OpenTK.Graphics.ES20.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -18673,7 +18673,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES20.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new NotImplementedException(); } + public static void BufferStorage(OpenTK.Graphics.ES20.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -18694,7 +18694,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES20.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -18715,7 +18715,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES20.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -18736,7 +18736,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES20.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -18757,7 +18757,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES20.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -18778,7 +18778,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES20.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -18799,7 +18799,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES20.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -18820,7 +18820,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES20.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -18841,7 +18841,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES20.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -18851,7 +18851,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.ES20.All target, IntPtr offset, Int32 size, IntPtr clientBuffer, Int32 flags) { throw new NotImplementedException(); } + public static void BufferStorageExternal(OpenTK.Graphics.ES20.All target, IntPtr offset, Int32 size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -18861,7 +18861,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.ES20.All target, IntPtr offset, Int32 size, IntPtr clientBuffer, UInt32 flags) { throw new NotImplementedException(); } + public static void BufferStorageExternal(OpenTK.Graphics.ES20.All target, IntPtr offset, Int32 size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -18871,7 +18871,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr size, IntPtr clientBuffer, Int32 flags) { throw new NotImplementedException(); } + public static void BufferStorageExternal(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -18881,7 +18881,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags) { throw new NotImplementedException(); } + public static void BufferStorageExternal(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -18891,7 +18891,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES20.All target, Int32 size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES20.All target, Int32 size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -18901,7 +18901,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES20.All target, Int32 size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES20.All target, Int32 size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -18911,7 +18911,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES20.All target, IntPtr size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES20.All target, IntPtr size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -18921,7 +18921,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES20.All target, IntPtr size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES20.All target, IntPtr size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -18930,7 +18930,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES20.BufferTargetArb target, Int32 size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES20.BufferTargetArb target, Int32 size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -18939,7 +18939,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES20.BufferTargetArb target, Int32 size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES20.BufferTargetArb target, Int32 size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -18948,7 +18948,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES20.BufferTargetArb target, IntPtr size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES20.BufferTargetArb target, IntPtr size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -18957,7 +18957,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES20.BufferTargetArb target, IntPtr size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES20.BufferTargetArb target, IntPtr size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// @@ -18965,7 +18965,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static void ClearPixelLocalStorage(Int32 offset, Int32 n, Int32[] values) { throw new NotImplementedException(); } + public static void ClearPixelLocalStorage(Int32 offset, Int32 n, Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// @@ -18973,7 +18973,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static void ClearPixelLocalStorage(Int32 offset, Int32 n, ref Int32 values) { throw new NotImplementedException(); } + public static void ClearPixelLocalStorage(Int32 offset, Int32 n, ref Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// @@ -18981,7 +18981,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static unsafe void ClearPixelLocalStorage(Int32 offset, Int32 n, Int32* values) { throw new NotImplementedException(); } + public static unsafe void ClearPixelLocalStorage(Int32 offset, Int32 n, Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// @@ -18989,7 +18989,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static void ClearPixelLocalStorage(Int32 offset, Int32 n, UInt32[] values) { throw new NotImplementedException(); } + public static void ClearPixelLocalStorage(Int32 offset, Int32 n, UInt32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// @@ -18997,7 +18997,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static void ClearPixelLocalStorage(Int32 offset, Int32 n, ref UInt32 values) { throw new NotImplementedException(); } + public static void ClearPixelLocalStorage(Int32 offset, Int32 n, ref UInt32 values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// @@ -19005,7 +19005,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static unsafe void ClearPixelLocalStorage(Int32 offset, Int32 n, UInt32* values) { throw new NotImplementedException(); } + public static unsafe void ClearPixelLocalStorage(Int32 offset, Int32 n, UInt32* values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -19027,7 +19027,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] - public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -19051,7 +19051,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -19075,7 +19075,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -19099,7 +19099,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -19123,7 +19123,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -19145,7 +19145,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] - public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -19169,7 +19169,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -19193,7 +19193,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -19217,7 +19217,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -19241,7 +19241,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -19281,7 +19281,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] - public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -19323,7 +19323,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -19365,7 +19365,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -19407,7 +19407,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -19449,7 +19449,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -19489,7 +19489,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] - public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -19531,7 +19531,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -19573,7 +19573,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -19615,7 +19615,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -19657,7 +19657,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Enable and disable writing of frame buffer color components @@ -19677,7 +19677,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glColorMaskiEXT")] [CLSCompliant(false)] - public static void ColorMask(Int32 index, bool r, bool g, bool b, bool a) { throw new NotImplementedException(); } + public static void ColorMask(Int32 index, bool r, bool g, bool b, bool a) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Enable and disable writing of frame buffer color components @@ -19697,7 +19697,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glColorMaskiEXT")] [CLSCompliant(false)] - public static void ColorMask(UInt32 index, bool r, bool g, bool b, bool a) { throw new NotImplementedException(); } + public static void ColorMask(UInt32 index, bool r, bool g, bool b, bool a) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_copy_image] /// Perform a raw data copy between two images @@ -19749,7 +19749,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_copy_image", Version = "", EntryPoint = "glCopyImageSubDataEXT")] [CLSCompliant(false)] - public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.ES20.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.ES20.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new NotImplementedException(); } + public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.ES20.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.ES20.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_copy_image] /// Perform a raw data copy between two images @@ -19801,49 +19801,49 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_copy_image", Version = "", EntryPoint = "glCopyImageSubDataEXT")] [CLSCompliant(false)] - public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.ES20.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.ES20.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new NotImplementedException(); } + public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.ES20.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.ES20.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static void CreateMemoryObjects(Int32 n, [OutAttribute] Int32[] memoryObjects) { throw new NotImplementedException(); } + public static void CreateMemoryObjects(Int32 n, [OutAttribute] Int32[] memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static void CreateMemoryObjects(Int32 n, [OutAttribute] out Int32 memoryObjects) { throw new NotImplementedException(); } + public static void CreateMemoryObjects(Int32 n, [OutAttribute] out Int32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static unsafe void CreateMemoryObjects(Int32 n, [OutAttribute] Int32* memoryObjects) { throw new NotImplementedException(); } + public static unsafe void CreateMemoryObjects(Int32 n, [OutAttribute] Int32* memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static void CreateMemoryObjects(Int32 n, [OutAttribute] UInt32[] memoryObjects) { throw new NotImplementedException(); } + public static void CreateMemoryObjects(Int32 n, [OutAttribute] UInt32[] memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static void CreateMemoryObjects(Int32 n, [OutAttribute] out UInt32 memoryObjects) { throw new NotImplementedException(); } + public static void CreateMemoryObjects(Int32 n, [OutAttribute] out UInt32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static unsafe void CreateMemoryObjects(Int32 n, [OutAttribute] UInt32* memoryObjects) { throw new NotImplementedException(); } + public static unsafe void CreateMemoryObjects(Int32 n, [OutAttribute] UInt32* memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Create a stand-alone program from an array of null-terminated source code strings @@ -19855,7 +19855,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the number of source code strings in the array strings. /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glCreateShaderProgramEXT")] - public static Int32 CreateShaderProgram(OpenTK.Graphics.ES20.All type, String @string) { throw new NotImplementedException(); } + public static Int32 CreateShaderProgram(OpenTK.Graphics.ES20.All type, String @string) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Create a stand-alone program from an array of null-terminated source code strings @@ -19870,61 +19870,61 @@ namespace OpenTK.Graphics.ES20 /// Specifies the address of an array of pointers to source code strings from which to create the program object. /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glCreateShaderProgramvEXT")] - public static Int32 CreateShaderProgram(OpenTK.Graphics.ES20.All type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new NotImplementedException(); } + public static Int32 CreateShaderProgram(OpenTK.Graphics.ES20.All type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObject([CountAttribute(Parameter = "n")] Int32 memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObject([CountAttribute(Parameter = "n")] Int32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObject([CountAttribute(Parameter = "n")] UInt32 memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObject([CountAttribute(Parameter = "n")] UInt32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] Int32[] memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] Int32[] memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static unsafe void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] Int32* memoryObjects) { throw new NotImplementedException(); } + public static unsafe void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] Int32* memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static unsafe void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] UInt32* memoryObjects) { throw new NotImplementedException(); } + public static unsafe void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] UInt32* memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -19934,7 +19934,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] Int32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -19944,7 +19944,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] UInt32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -19957,7 +19957,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -19970,7 +19970,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -19983,7 +19983,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32* pipelines) { throw new NotImplementedException(); } + public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -19996,7 +19996,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -20009,7 +20009,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -20022,7 +20022,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new NotImplementedException(); } + public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -20032,7 +20032,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] [CLSCompliant(false)] - public static void DeleteQuery([CountAttribute(Parameter = "n")] Int32 ids) { throw new NotImplementedException(); } + public static void DeleteQuery([CountAttribute(Parameter = "n")] Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -20042,7 +20042,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] [CLSCompliant(false)] - public static void DeleteQuery([CountAttribute(Parameter = "n")] UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteQuery([CountAttribute(Parameter = "n")] UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -20055,7 +20055,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -20068,7 +20068,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -20081,7 +20081,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] [CLSCompliant(false)] - public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -20094,7 +20094,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -20107,7 +20107,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -20120,75 +20120,75 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] [CLSCompliant(false)] - public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphore([CountAttribute(Parameter = "count")] Int32 semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphore([CountAttribute(Parameter = "count")] Int32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphore([CountAttribute(Parameter = "count")] UInt32 semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphore([CountAttribute(Parameter = "count")] UInt32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] Int32[] semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] Int32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] ref Int32 semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] ref Int32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] Int32* semaphores) { throw new NotImplementedException(); } + public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] Int32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] UInt32[] semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] UInt32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] ref UInt32 semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] ref UInt32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] UInt32* semaphores) { throw new NotImplementedException(); } + public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] UInt32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glDisableiEXT")] [CLSCompliant(false)] - public static void Disable(OpenTK.Graphics.ES20.All target, Int32 index) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES20.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glDisableiEXT")] [CLSCompliant(false)] - public static void Disable(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_discard_framebuffer] /// @@ -20196,7 +20196,7 @@ namespace OpenTK.Graphics.ES20 /// [length: numAttachments] [AutoGenerated(Category = "EXT_discard_framebuffer", Version = "", EntryPoint = "glDiscardFramebufferEXT")] [CLSCompliant(false)] - public static void DiscardFramebuffer(OpenTK.Graphics.ES20.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES20.All[] attachments) { throw new NotImplementedException(); } + public static void DiscardFramebuffer(OpenTK.Graphics.ES20.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES20.All[] attachments) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_discard_framebuffer] /// @@ -20204,7 +20204,7 @@ namespace OpenTK.Graphics.ES20 /// [length: numAttachments] [AutoGenerated(Category = "EXT_discard_framebuffer", Version = "", EntryPoint = "glDiscardFramebufferEXT")] [CLSCompliant(false)] - public static void DiscardFramebuffer(OpenTK.Graphics.ES20.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES20.All attachments) { throw new NotImplementedException(); } + public static void DiscardFramebuffer(OpenTK.Graphics.ES20.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES20.All attachments) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_discard_framebuffer] /// @@ -20212,7 +20212,7 @@ namespace OpenTK.Graphics.ES20 /// [length: numAttachments] [AutoGenerated(Category = "EXT_discard_framebuffer", Version = "", EntryPoint = "glDiscardFramebufferEXT")] [CLSCompliant(false)] - public static unsafe void DiscardFramebuffer(OpenTK.Graphics.ES20.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES20.All* attachments) { throw new NotImplementedException(); } + public static unsafe void DiscardFramebuffer(OpenTK.Graphics.ES20.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES20.All* attachments) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a range of elements with offset applied to instanced attributes @@ -20235,7 +20235,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawArraysInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 first, Int32 count, Int32 instancecount, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 first, Int32 count, Int32 instancecount, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a range of elements with offset applied to instanced attributes @@ -20258,7 +20258,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawArraysInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 first, Int32 count, Int32 instancecount, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 first, Int32 count, Int32 instancecount, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a range of elements with offset applied to instanced attributes @@ -20280,7 +20280,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawArraysInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a range of elements with offset applied to instanced attributes @@ -20302,7 +20302,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawArraysInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a range of elements @@ -20321,7 +20321,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawArraysInstancedEXT")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES20.All mode, Int32 start, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES20.All mode, Int32 start, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a range of elements @@ -20339,7 +20339,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawArraysInstancedEXT")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 start, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 start, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -20353,7 +20353,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, OpenTK.Graphics.ES20.All[] bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, OpenTK.Graphics.ES20.All[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -20367,7 +20367,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, ref OpenTK.Graphics.ES20.All bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, ref OpenTK.Graphics.ES20.All bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -20381,7 +20381,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] [CLSCompliant(false)] - public static unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.ES20.All* bufs) { throw new NotImplementedException(); } + public static unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.ES20.All* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -20394,7 +20394,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, OpenTK.Graphics.ES20.DrawBufferMode[] bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, OpenTK.Graphics.ES20.DrawBufferMode[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -20407,7 +20407,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, ref OpenTK.Graphics.ES20.DrawBufferMode bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, ref OpenTK.Graphics.ES20.DrawBufferMode bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -20420,7 +20420,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] [CLSCompliant(false)] - public static unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.ES20.DrawBufferMode* bufs) { throw new NotImplementedException(); } + public static unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.ES20.DrawBufferMode* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -20428,7 +20428,7 @@ namespace OpenTK.Graphics.ES20 /// [length: n] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glDrawBuffersIndexedEXT")] [CLSCompliant(false)] - public static void DrawBuffersIndexed(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES20.All[] location, [CountAttribute(Parameter = "n")] Int32[] indices) { throw new NotImplementedException(); } + public static void DrawBuffersIndexed(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES20.All[] location, [CountAttribute(Parameter = "n")] Int32[] indices) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -20436,7 +20436,7 @@ namespace OpenTK.Graphics.ES20 /// [length: n] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glDrawBuffersIndexedEXT")] [CLSCompliant(false)] - public static void DrawBuffersIndexed(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES20.All location, [CountAttribute(Parameter = "n")] ref Int32 indices) { throw new NotImplementedException(); } + public static void DrawBuffersIndexed(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES20.All location, [CountAttribute(Parameter = "n")] ref Int32 indices) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -20444,7 +20444,7 @@ namespace OpenTK.Graphics.ES20 /// [length: n] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glDrawBuffersIndexedEXT")] [CLSCompliant(false)] - public static unsafe void DrawBuffersIndexed(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES20.All* location, [CountAttribute(Parameter = "n")] Int32* indices) { throw new NotImplementedException(); } + public static unsafe void DrawBuffersIndexed(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES20.All* location, [CountAttribute(Parameter = "n")] Int32* indices) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -20466,7 +20466,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexEXT")] - public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -20491,7 +20491,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -20516,7 +20516,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -20541,7 +20541,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -20565,7 +20565,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexEXT")] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -20586,7 +20586,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexEXT")] - public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -20610,7 +20610,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -20634,7 +20634,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -20658,7 +20658,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -20681,7 +20681,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexEXT")] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -20707,7 +20707,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -20733,7 +20733,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -20761,7 +20761,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -20789,7 +20789,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -20817,7 +20817,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -20845,7 +20845,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -20873,7 +20873,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -20901,7 +20901,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -20929,7 +20929,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -20957,7 +20957,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -20982,7 +20982,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -21007,7 +21007,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -21034,7 +21034,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -21061,7 +21061,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -21088,7 +21088,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -21115,7 +21115,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -21142,7 +21142,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -21169,7 +21169,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -21196,7 +21196,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -21223,7 +21223,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21252,7 +21252,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21281,7 +21281,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21312,7 +21312,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21343,7 +21343,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21374,7 +21374,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21405,7 +21405,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21436,7 +21436,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21467,7 +21467,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21498,7 +21498,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21529,7 +21529,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21557,7 +21557,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21585,7 +21585,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21615,7 +21615,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21645,7 +21645,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21675,7 +21675,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21705,7 +21705,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21735,7 +21735,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21765,7 +21765,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21795,7 +21795,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21825,7 +21825,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21850,7 +21850,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexEXT")] - public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21878,7 +21878,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21906,7 +21906,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21934,7 +21934,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21961,7 +21961,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexEXT")] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21985,7 +21985,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexEXT")] - public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -22012,7 +22012,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -22039,7 +22039,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -22066,7 +22066,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -22092,7 +22092,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexEXT")] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -22114,7 +22114,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -22139,7 +22139,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -22164,7 +22164,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -22189,7 +22189,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -22213,7 +22213,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -22234,7 +22234,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -22258,7 +22258,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -22282,7 +22282,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -22306,7 +22306,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -22329,7 +22329,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -22358,7 +22358,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -22389,7 +22389,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -22420,7 +22420,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -22451,7 +22451,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -22482,7 +22482,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -22511,7 +22511,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -22542,7 +22542,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -22573,7 +22573,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -22604,7 +22604,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -22635,7 +22635,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -22663,7 +22663,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -22693,7 +22693,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -22723,7 +22723,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -22753,7 +22753,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -22783,7 +22783,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -22811,7 +22811,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -22841,7 +22841,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -22871,7 +22871,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -22901,7 +22901,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -22931,7 +22931,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render primitives using a count derived from a transform feedback object @@ -22945,7 +22945,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedback(OpenTK.Graphics.ES20.All mode, Int32 id) { throw new NotImplementedException(); } + public static void DrawTransformFeedback(OpenTK.Graphics.ES20.All mode, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render primitives using a count derived from a transform feedback object @@ -22959,7 +22959,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedback(OpenTK.Graphics.ES20.All mode, UInt32 id) { throw new NotImplementedException(); } + public static void DrawTransformFeedback(OpenTK.Graphics.ES20.All mode, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render primitives using a count derived from a transform feedback object @@ -22972,7 +22972,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedback(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 id) { throw new NotImplementedException(); } + public static void DrawTransformFeedback(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render primitives using a count derived from a transform feedback object @@ -22985,7 +22985,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedback(OpenTK.Graphics.ES20.PrimitiveType mode, UInt32 id) { throw new NotImplementedException(); } + public static void DrawTransformFeedback(OpenTK.Graphics.ES20.PrimitiveType mode, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render multiple instances of primitives using a count derived from a transform feedback object @@ -23002,7 +23002,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackInstancedEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES20.All mode, Int32 id, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES20.All mode, Int32 id, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render multiple instances of primitives using a count derived from a transform feedback object @@ -23019,7 +23019,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackInstancedEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES20.All mode, UInt32 id, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES20.All mode, UInt32 id, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render multiple instances of primitives using a count derived from a transform feedback object @@ -23035,7 +23035,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackInstancedEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 id, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 id, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render multiple instances of primitives using a count derived from a transform feedback object @@ -23051,7 +23051,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackInstancedEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, UInt32 id, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, UInt32 id, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Enable or disable server-side GL capabilities @@ -23062,7 +23062,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glEnableiEXT")] [CLSCompliant(false)] - public static void Enable(OpenTK.Graphics.ES20.All target, Int32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES20.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Enable or disable server-side GL capabilities @@ -23073,18 +23073,18 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glEnableiEXT")] [CLSCompliant(false)] - public static void Enable(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glEndQueryEXT")] - public static void EndQuery(OpenTK.Graphics.ES20.All target) { throw new NotImplementedException(); } + public static void EndQuery(OpenTK.Graphics.ES20.All target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glEndQueryEXT")] - public static void EndQuery(OpenTK.Graphics.ES20.QueryTarget target) { throw new NotImplementedException(); } + public static void EndQuery(OpenTK.Graphics.ES20.QueryTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Indicate modifications to a range of a mapped buffer @@ -23100,7 +23100,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glFlushMappedBufferRangeEXT")] - public static void FlushMappedBufferRange(OpenTK.Graphics.ES20.All target, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.ES20.All target, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Indicate modifications to a range of a mapped buffer @@ -23116,7 +23116,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glFlushMappedBufferRangeEXT")] - public static void FlushMappedBufferRange(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Indicate modifications to a range of a mapped buffer @@ -23131,7 +23131,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the length of the buffer subrange, in basic machine units. /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glFlushMappedBufferRangeEXT")] - public static void FlushMappedBufferRange(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Indicate modifications to a range of a mapped buffer @@ -23146,21 +23146,21 @@ namespace OpenTK.Graphics.ES20 /// Specifies the length of the buffer subrange, in basic machine units. /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glFlushMappedBufferRangeEXT")] - public static void FlushMappedBufferRange(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glFramebufferPixelLocalStorageSizeEXT")] [CLSCompliant(false)] - public static void FramebufferPixelLocalStorageSize(Int32 target, Int32 size) { throw new NotImplementedException(); } + public static void FramebufferPixelLocalStorageSize(Int32 target, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glFramebufferPixelLocalStorageSizeEXT")] [CLSCompliant(false)] - public static void FramebufferPixelLocalStorageSize(UInt32 target, Int32 size) { throw new NotImplementedException(); } + public static void FramebufferPixelLocalStorageSize(UInt32 target, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multisampled_render_to_texture] /// @@ -23171,7 +23171,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleEXT")] [CLSCompliant(false)] - public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, Int32 texture, Int32 level, Int32 samples) { throw new NotImplementedException(); } + public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, Int32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multisampled_render_to_texture] /// @@ -23182,7 +23182,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleEXT")] [CLSCompliant(false)] - public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, UInt32 texture, Int32 level, Int32 samples) { throw new NotImplementedException(); } + public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, UInt32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -23202,7 +23202,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureEXT")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -23222,7 +23222,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureEXT")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -23241,7 +23241,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureEXT")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -23260,14 +23260,14 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureEXT")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static Int32 GenProgramPipeline() { throw new NotImplementedException(); } + public static Int32 GenProgramPipeline() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -23280,7 +23280,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -23293,7 +23293,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -23306,7 +23306,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* pipelines) { throw new NotImplementedException(); } + public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -23319,7 +23319,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -23332,7 +23332,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -23345,14 +23345,14 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new NotImplementedException(); } + public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] [CLSCompliant(false)] - public static Int32 GenQuery() { throw new NotImplementedException(); } + public static Int32 GenQuery() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names @@ -23365,7 +23365,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names @@ -23378,7 +23378,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names @@ -23391,7 +23391,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] [CLSCompliant(false)] - public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names @@ -23404,7 +23404,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names @@ -23417,7 +23417,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names @@ -23430,54 +23430,54 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] [CLSCompliant(false)] - public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static Int32 GenSemaphore() { throw new NotImplementedException(); } + public static Int32 GenSemaphore() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] semaphores) { throw new NotImplementedException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 semaphores) { throw new NotImplementedException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] Int32* semaphores) { throw new NotImplementedException(); } + public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] Int32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] semaphores) { throw new NotImplementedException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 semaphores) { throw new NotImplementedException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* semaphores) { throw new NotImplementedException(); } + public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Query the bindings of color indices to user-defined varying out variables @@ -23490,7 +23490,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glGetFragDataIndexEXT")] [CLSCompliant(false)] - public static Int32 GetFragDataIndex(Int32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetFragDataIndex(Int32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Query the bindings of color indices to user-defined varying out variables @@ -23503,23 +23503,23 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glGetFragDataIndexEXT")] [CLSCompliant(false)] - public static Int32 GetFragDataIndex(UInt32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetFragDataIndex(UInt32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glGetFramebufferPixelLocalStorageSizeEXT")] [CLSCompliant(false)] - public static Int32 GetFramebufferPixelLocalStorageSize(Int32 target) { throw new NotImplementedException(); } + public static Int32 GetFramebufferPixelLocalStorageSize(Int32 target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glGetFramebufferPixelLocalStorageSizeEXT")] [CLSCompliant(false)] - public static Int32 GetFramebufferPixelLocalStorageSize(UInt32 target) { throw new NotImplementedException(); } + public static Int32 GetFramebufferPixelLocalStorageSize(UInt32 target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetGraphicsResetStatusEXT")] - public static OpenTK.Graphics.ES20.All GetGraphicsResetStatus() { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES20.All GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -23528,7 +23528,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -23537,7 +23537,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -23546,7 +23546,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -23555,7 +23555,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -23564,7 +23564,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -23573,7 +23573,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -23581,7 +23581,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES20.GetIndexedPName target, Int32 index, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES20.GetIndexedPName target, Int32 index, [OutAttribute] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -23589,7 +23589,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES20.GetIndexedPName target, Int32 index, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES20.GetIndexedPName target, Int32 index, [OutAttribute] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -23597,7 +23597,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.ES20.GetIndexedPName target, Int32 index, [OutAttribute] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES20.GetIndexedPName target, Int32 index, [OutAttribute] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -23605,7 +23605,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES20.GetIndexedPName target, UInt32 index, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES20.GetIndexedPName target, UInt32 index, [OutAttribute] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -23613,7 +23613,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES20.GetIndexedPName target, UInt32 index, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES20.GetIndexedPName target, UInt32 index, [OutAttribute] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -23621,7 +23621,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.ES20.GetIndexedPName target, UInt32 index, [OutAttribute] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES20.GetIndexedPName target, UInt32 index, [OutAttribute] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -23630,7 +23630,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -23639,7 +23639,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -23648,7 +23648,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -23656,7 +23656,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -23664,7 +23664,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -23672,7 +23672,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -23681,7 +23681,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -23690,7 +23690,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -23699,7 +23699,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -23707,7 +23707,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -23715,7 +23715,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -23723,7 +23723,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -23732,7 +23732,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -23741,7 +23741,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -23750,7 +23750,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -23759,7 +23759,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -23768,7 +23768,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -23777,7 +23777,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -23786,7 +23786,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -23795,7 +23795,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -23804,7 +23804,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -23813,7 +23813,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -23822,7 +23822,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -23831,7 +23831,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -23853,7 +23853,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES20.All type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES20.All type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -23875,7 +23875,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES20.All type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES20.All type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -23897,7 +23897,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.All type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.All type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -23919,7 +23919,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES20.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES20.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -23941,7 +23941,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES20.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES20.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -23963,7 +23963,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -23983,7 +23983,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -24003,7 +24003,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -24023,7 +24023,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static unsafe void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -24043,7 +24043,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -24063,7 +24063,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -24083,7 +24083,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static unsafe void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -24099,7 +24099,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -24115,7 +24115,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -24131,7 +24131,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -24147,7 +24147,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -24163,7 +24163,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -24179,7 +24179,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Query the fragment color index of a named variable within a program @@ -24195,7 +24195,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glGetProgramResourceLocationIndexEXT")] [CLSCompliant(false)] - public static Int32 GetProgramResourceLocationIndex(Int32 program, OpenTK.Graphics.ES20.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceLocationIndex(Int32 program, OpenTK.Graphics.ES20.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Query the fragment color index of a named variable within a program @@ -24211,7 +24211,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glGetProgramResourceLocationIndexEXT")] [CLSCompliant(false)] - public static Int32 GetProgramResourceLocationIndex(UInt32 program, OpenTK.Graphics.ES20.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceLocationIndex(UInt32 program, OpenTK.Graphics.ES20.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// @@ -24220,7 +24220,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryivEXT")] [CLSCompliant(false)] - public static void GetQuery(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQuery(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// @@ -24229,7 +24229,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryivEXT")] [CLSCompliant(false)] - public static void GetQuery(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQuery(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// @@ -24238,7 +24238,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryivEXT")] [CLSCompliant(false)] - public static unsafe void GetQuery(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQuery(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// @@ -24246,7 +24246,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryivEXT")] [CLSCompliant(false)] - public static void GetQuery(OpenTK.Graphics.ES20.QueryTarget target, OpenTK.Graphics.ES20.GetQueryParam pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQuery(OpenTK.Graphics.ES20.QueryTarget target, OpenTK.Graphics.ES20.GetQueryParam pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// @@ -24254,7 +24254,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryivEXT")] [CLSCompliant(false)] - public static void GetQuery(OpenTK.Graphics.ES20.QueryTarget target, OpenTK.Graphics.ES20.GetQueryParam pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQuery(OpenTK.Graphics.ES20.QueryTarget target, OpenTK.Graphics.ES20.GetQueryParam pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// @@ -24262,7 +24262,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryivEXT")] [CLSCompliant(false)] - public static unsafe void GetQuery(OpenTK.Graphics.ES20.QueryTarget target, OpenTK.Graphics.ES20.GetQueryParam pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQuery(OpenTK.Graphics.ES20.QueryTarget target, OpenTK.Graphics.ES20.GetQueryParam pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24279,7 +24279,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24296,7 +24296,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24313,7 +24313,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24329,7 +24329,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24345,7 +24345,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24361,7 +24361,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24378,7 +24378,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24395,7 +24395,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24412,7 +24412,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24428,7 +24428,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24444,7 +24444,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24460,7 +24460,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24477,7 +24477,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24494,7 +24494,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24511,7 +24511,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24527,7 +24527,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24543,7 +24543,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24559,7 +24559,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24576,7 +24576,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24593,7 +24593,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24610,7 +24610,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24626,7 +24626,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24642,7 +24642,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24658,7 +24658,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24675,7 +24675,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24692,7 +24692,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24709,7 +24709,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24725,7 +24725,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24741,7 +24741,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24757,7 +24757,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Return parameters of a query object @@ -24774,7 +24774,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryObjectuivEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Return parameters of a query object @@ -24791,7 +24791,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryObjectuivEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Return parameters of a query object @@ -24808,7 +24808,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryObjectuivEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Return parameters of a query object @@ -24824,7 +24824,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryObjectuivEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Return parameters of a query object @@ -24840,7 +24840,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryObjectuivEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Return parameters of a query object @@ -24856,7 +24856,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryObjectuivEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -24864,7 +24864,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -24872,7 +24872,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -24880,7 +24880,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -24888,7 +24888,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -24896,7 +24896,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -24904,7 +24904,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -24912,7 +24912,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivEXT")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -24920,7 +24920,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivEXT")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -24928,7 +24928,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -24937,7 +24937,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -24946,7 +24946,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -24955,7 +24955,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -24963,7 +24963,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -24971,7 +24971,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -24979,7 +24979,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -24988,7 +24988,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.All pname, [OutAttribute] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.All pname, [OutAttribute] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -24997,7 +24997,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.All pname, [OutAttribute] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.All pname, [OutAttribute] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -25006,7 +25006,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.All pname, [OutAttribute] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.All pname, [OutAttribute] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -25014,7 +25014,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, [OutAttribute] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, [OutAttribute] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -25022,7 +25022,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, [OutAttribute] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, [OutAttribute] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -25030,7 +25030,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, [OutAttribute] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, [OutAttribute] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -25039,7 +25039,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -25048,7 +25048,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -25057,7 +25057,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -25065,7 +25065,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -25073,7 +25073,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -25081,7 +25081,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -25090,7 +25090,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -25099,7 +25099,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -25108,7 +25108,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -25116,7 +25116,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -25124,7 +25124,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -25132,7 +25132,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -25140,7 +25140,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte[] data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -25148,7 +25148,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Byte data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Byte data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -25156,7 +25156,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte* data) { throw new NotImplementedException(); } + public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -25164,7 +25164,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte[] data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -25172,7 +25172,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Byte data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Byte data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -25180,20 +25180,20 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte* data) { throw new NotImplementedException(); } + public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static Byte GetUnsignedByte(OpenTK.Graphics.ES20.All pname) { throw new NotImplementedException(); } + public static Byte GetUnsignedByte(OpenTK.Graphics.ES20.All pname) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static Byte GetUnsignedByte(OpenTK.Graphics.ES20.GetPName pname) { throw new NotImplementedException(); } + public static Byte GetUnsignedByte(OpenTK.Graphics.ES20.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -25201,7 +25201,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte[] data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -25209,7 +25209,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Byte data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Byte data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -25217,28 +25217,28 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte* data) { throw new NotImplementedException(); } + public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte[] data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Byte data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Byte data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte* data) { throw new NotImplementedException(); } + public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_fd] /// @@ -25248,7 +25248,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object_fd", Version = "", EntryPoint = "glImportMemoryFdEXT")] [CLSCompliant(false)] - public static void ImportMemoryF(Int32 memory, Int64 size, OpenTK.Graphics.ES20.All handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportMemoryF(Int32 memory, Int64 size, OpenTK.Graphics.ES20.All handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_fd] /// @@ -25257,7 +25257,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object_fd", Version = "", EntryPoint = "glImportMemoryFdEXT")] [CLSCompliant(false)] - public static void ImportMemoryF(Int32 memory, Int64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportMemoryF(Int32 memory, Int64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_fd] /// @@ -25267,7 +25267,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object_fd", Version = "", EntryPoint = "glImportMemoryFdEXT")] [CLSCompliant(false)] - public static void ImportMemoryF(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.All handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportMemoryF(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.All handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_fd] /// @@ -25276,7 +25276,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object_fd", Version = "", EntryPoint = "glImportMemoryFdEXT")] [CLSCompliant(false)] - public static void ImportMemoryF(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportMemoryF(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25286,7 +25286,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES20.All handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES20.All handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25298,7 +25298,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T3[] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25310,7 +25310,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T3[,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25322,7 +25322,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T3[,,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25334,7 +25334,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] ref T3 handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25343,7 +25343,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25354,7 +25354,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25365,7 +25365,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25376,7 +25376,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25387,7 +25387,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T3 handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25397,7 +25397,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.All handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.All handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25409,7 +25409,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T3[] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25421,7 +25421,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T3[,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25433,7 +25433,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T3[,,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25445,7 +25445,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] ref T3 handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25454,7 +25454,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25465,7 +25465,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25476,7 +25476,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25487,7 +25487,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25498,7 +25498,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T3 handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25508,7 +25508,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32NameEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES20.All handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES20.All handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25520,7 +25520,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T3[] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25532,7 +25532,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T3[,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25544,7 +25544,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T3[,,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25556,7 +25556,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] ref T3 name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25565,7 +25565,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32NameEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25576,7 +25576,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25587,7 +25587,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25598,7 +25598,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25609,7 +25609,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T3 name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25619,7 +25619,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32NameEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.All handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.All handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25631,7 +25631,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T3[] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25643,7 +25643,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T3[,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25655,7 +25655,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T3[,,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25667,7 +25667,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] ref T3 name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25676,7 +25676,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32NameEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25687,7 +25687,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25698,7 +25698,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25709,7 +25709,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25720,7 +25720,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T3 name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_fd] /// @@ -25729,7 +25729,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore_fd", Version = "", EntryPoint = "glImportSemaphoreFdEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreF(Int32 semaphore, OpenTK.Graphics.ES20.All handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportSemaphoreF(Int32 semaphore, OpenTK.Graphics.ES20.All handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_fd] /// @@ -25737,7 +25737,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_semaphore_fd", Version = "", EntryPoint = "glImportSemaphoreFdEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreF(Int32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportSemaphoreF(Int32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_fd] /// @@ -25746,7 +25746,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore_fd", Version = "", EntryPoint = "glImportSemaphoreFdEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreF(UInt32 semaphore, OpenTK.Graphics.ES20.All handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportSemaphoreF(UInt32 semaphore, OpenTK.Graphics.ES20.All handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_fd] /// @@ -25754,7 +25754,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_semaphore_fd", Version = "", EntryPoint = "glImportSemaphoreFdEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreF(UInt32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportSemaphoreF(UInt32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25763,7 +25763,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES20.All handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES20.All handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25774,7 +25774,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T2[] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25785,7 +25785,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T2[,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25796,7 +25796,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T2[,,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25807,7 +25807,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] ref T2 handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25815,7 +25815,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25825,7 +25825,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25835,7 +25835,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25845,7 +25845,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25855,7 +25855,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T2 handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25864,7 +25864,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES20.All handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES20.All handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25875,7 +25875,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T2[] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25886,7 +25886,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T2[,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25897,7 +25897,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T2[,,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25908,7 +25908,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] ref T2 handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25916,7 +25916,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25926,7 +25926,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25936,7 +25936,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25946,7 +25946,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25956,7 +25956,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T2 handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25965,7 +25965,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32NameEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES20.All handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES20.All handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25976,7 +25976,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T2[] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25987,7 +25987,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T2[,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25998,7 +25998,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T2[,,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -26009,7 +26009,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] ref T2 name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -26017,7 +26017,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32NameEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -26027,7 +26027,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -26037,7 +26037,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -26047,7 +26047,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -26057,7 +26057,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T2 name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -26066,7 +26066,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32NameEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES20.All handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES20.All handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -26077,7 +26077,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T2[] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -26088,7 +26088,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T2[,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -26099,7 +26099,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T2[,,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -26110,7 +26110,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] ref T2 name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -26118,7 +26118,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32NameEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -26128,7 +26128,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -26138,7 +26138,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -26148,7 +26148,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -26158,13 +26158,13 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T2 name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_marker] /// /// [AutoGenerated(Category = "EXT_debug_marker", Version = "", EntryPoint = "glInsertEventMarkerEXT")] - public static void InsertEventMarker(Int32 length, String marker) { throw new NotImplementedException(); } + public static void InsertEventMarker(Int32 length, String marker) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Test whether a capability is enabled @@ -26175,7 +26175,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glIsEnablediEXT")] [CLSCompliant(false)] - public static bool IsEnabled(OpenTK.Graphics.ES20.All target, Int32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES20.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Test whether a capability is enabled @@ -26186,19 +26186,19 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glIsEnablediEXT")] [CLSCompliant(false)] - public static bool IsEnabled(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glIsMemoryObjectEXT")] [CLSCompliant(false)] - public static bool IsMemoryObject(Int32 memoryObject) { throw new NotImplementedException(); } + public static bool IsMemoryObject(Int32 memoryObject) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glIsMemoryObjectEXT")] [CLSCompliant(false)] - public static bool IsMemoryObject(UInt32 memoryObject) { throw new NotImplementedException(); } + public static bool IsMemoryObject(UInt32 memoryObject) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Determine if a name corresponds to a program pipeline object @@ -26208,7 +26208,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glIsProgramPipelineEXT")] [CLSCompliant(false)] - public static bool IsProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } + public static bool IsProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Determine if a name corresponds to a program pipeline object @@ -26218,7 +26218,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glIsProgramPipelineEXT")] [CLSCompliant(false)] - public static bool IsProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static bool IsProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Determine if a name corresponds to a query object @@ -26228,7 +26228,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glIsQueryEXT")] [CLSCompliant(false)] - public static bool IsQuery(Int32 id) { throw new NotImplementedException(); } + public static bool IsQuery(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Determine if a name corresponds to a query object @@ -26238,19 +26238,19 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glIsQueryEXT")] [CLSCompliant(false)] - public static bool IsQuery(UInt32 id) { throw new NotImplementedException(); } + public static bool IsQuery(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glIsSemaphoreEXT")] [CLSCompliant(false)] - public static bool IsSemaphore(Int32 semaphore) { throw new NotImplementedException(); } + public static bool IsSemaphore(Int32 semaphore) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glIsSemaphoreEXT")] [CLSCompliant(false)] - public static bool IsSemaphore(UInt32 semaphore) { throw new NotImplementedException(); } + public static bool IsSemaphore(UInt32 semaphore) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// @@ -26259,7 +26259,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glLabelObjectEXT")] [CLSCompliant(false)] - public static void LabelObject(OpenTK.Graphics.ES20.All type, Int32 @object, Int32 length, String label) { throw new NotImplementedException(); } + public static void LabelObject(OpenTK.Graphics.ES20.All type, Int32 @object, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// @@ -26268,7 +26268,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glLabelObjectEXT")] [CLSCompliant(false)] - public static void LabelObject(OpenTK.Graphics.ES20.All type, UInt32 @object, Int32 length, String label) { throw new NotImplementedException(); } + public static void LabelObject(OpenTK.Graphics.ES20.All type, UInt32 @object, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -26288,7 +26288,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES20.All target, IntPtr offset, Int32 length, Int32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES20.All target, IntPtr offset, Int32 length, Int32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -26308,7 +26308,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES20.All target, IntPtr offset, Int32 length, UInt32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES20.All target, IntPtr offset, Int32 length, UInt32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -26328,7 +26328,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr length, Int32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr length, Int32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -26348,7 +26348,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr length, UInt32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr length, UInt32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -26367,7 +26367,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, Int32 length, Int32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, Int32 length, Int32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -26386,7 +26386,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, Int32 length, UInt32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, Int32 length, UInt32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -26405,7 +26405,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, IntPtr length, Int32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, IntPtr length, Int32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -26424,7 +26424,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, IntPtr length, UInt32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, IntPtr length, UInt32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -26433,7 +26433,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.All pname, Int32[] @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.All pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -26442,7 +26442,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.All pname, ref Int32 @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.All pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -26451,7 +26451,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.All pname, Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.All pname, Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -26459,7 +26459,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, Int32[] @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -26467,7 +26467,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, ref Int32 @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -26475,7 +26475,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -26484,7 +26484,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.All pname, Int32[] @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.All pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -26493,7 +26493,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.All pname, ref Int32 @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.All pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -26502,7 +26502,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.All pname, Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.All pname, Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -26510,7 +26510,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, Int32[] @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -26518,7 +26518,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, ref Int32 @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -26526,7 +26526,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -26546,7 +26546,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static void MultiDrawArrays(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -26566,7 +26566,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static void MultiDrawArrays(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -26586,7 +26586,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawArrays(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawArrays(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -26605,7 +26605,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static void MultiDrawArrays(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -26624,7 +26624,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static void MultiDrawArrays(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -26643,7 +26643,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawArrays(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawArrays(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -26662,7 +26662,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectEXT")] - public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -26684,7 +26684,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES20.All mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -26706,7 +26706,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES20.All mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[,] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -26728,7 +26728,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES20.All mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[,,] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -26749,7 +26749,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectEXT")] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES20.All mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] ref T1 indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -26767,7 +26767,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the distance in basic machine units between elements of the draw parameter array. /// [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectEXT")] - public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -26788,7 +26788,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES20.PrimitiveType mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -26809,7 +26809,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES20.PrimitiveType mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[,] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -26830,7 +26830,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES20.PrimitiveType mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[,,] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -26850,7 +26850,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectEXT")] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES20.PrimitiveType mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] ref T1 indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -26876,7 +26876,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex", Version = "", EntryPoint = "glMultiDrawElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) { throw new NotImplementedException(); } + public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -26904,7 +26904,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -26932,7 +26932,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -26960,7 +26960,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -26988,7 +26988,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27014,7 +27014,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex", Version = "", EntryPoint = "glMultiDrawElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) { throw new NotImplementedException(); } + public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27042,7 +27042,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27070,7 +27070,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27098,7 +27098,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27126,7 +27126,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27152,7 +27152,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex", Version = "", EntryPoint = "glMultiDrawElementsBaseVertexEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27180,7 +27180,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27208,7 +27208,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27236,7 +27236,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27264,7 +27264,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27289,7 +27289,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex", Version = "", EntryPoint = "glMultiDrawElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) { throw new NotImplementedException(); } + public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27316,7 +27316,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27343,7 +27343,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27370,7 +27370,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27397,7 +27397,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27422,7 +27422,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex", Version = "", EntryPoint = "glMultiDrawElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) { throw new NotImplementedException(); } + public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27449,7 +27449,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27476,7 +27476,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27503,7 +27503,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27530,7 +27530,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27555,7 +27555,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex", Version = "", EntryPoint = "glMultiDrawElementsBaseVertexEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27582,7 +27582,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27609,7 +27609,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27636,7 +27636,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27663,7 +27663,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -27686,7 +27686,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static void MultiDrawElements(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -27711,7 +27711,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -27736,7 +27736,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -27761,7 +27761,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -27786,7 +27786,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -27809,7 +27809,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static void MultiDrawElements(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -27834,7 +27834,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -27859,7 +27859,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -27884,7 +27884,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -27909,7 +27909,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -27932,7 +27932,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawElements(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElements(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -27957,7 +27957,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -27982,7 +27982,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -28007,7 +28007,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -28032,7 +28032,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -28054,7 +28054,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -28078,7 +28078,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -28102,7 +28102,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -28126,7 +28126,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -28150,7 +28150,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -28172,7 +28172,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -28196,7 +28196,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -28220,7 +28220,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -28244,7 +28244,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -28268,7 +28268,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -28290,7 +28290,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -28314,7 +28314,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -28338,7 +28338,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -28362,7 +28362,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -28386,7 +28386,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -28408,7 +28408,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectEXT")] - public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES20.All mode, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES20.All mode, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -28433,7 +28433,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES20.All mode, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -28458,7 +28458,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES20.All mode, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -28483,7 +28483,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES20.All mode, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,,] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -28507,7 +28507,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectEXT")] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES20.All mode, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] ref T2 indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -28528,7 +28528,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the distance in basic machine units between elements of the draw parameter array. /// [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectEXT")] - public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES20.PrimitiveType mode, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES20.PrimitiveType mode, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -28552,7 +28552,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES20.PrimitiveType mode, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -28576,7 +28576,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES20.PrimitiveType mode, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -28600,7 +28600,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES20.PrimitiveType mode, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,,] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -28623,7 +28623,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectEXT")] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES20.PrimitiveType mode, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] ref T2 indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -28633,7 +28633,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, Int32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -28643,7 +28643,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, Int32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -28653,7 +28653,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, UInt32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -28663,7 +28663,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -28672,7 +28672,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glNamedBufferStorageMemEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageMem(Int32 buffer, Int32 size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void NamedBufferStorageMem(Int32 buffer, Int32 size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -28681,7 +28681,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glNamedBufferStorageMemEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageMem(Int32 buffer, IntPtr size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void NamedBufferStorageMem(Int32 buffer, IntPtr size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -28690,7 +28690,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glNamedBufferStorageMemEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageMem(UInt32 buffer, Int32 size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void NamedBufferStorageMem(UInt32 buffer, Int32 size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -28699,7 +28699,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glNamedBufferStorageMemEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageMem(UInt32 buffer, IntPtr size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void NamedBufferStorageMem(UInt32 buffer, IntPtr size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_tessellation_shader] /// Specifies the parameters for patch primitives @@ -28711,18 +28711,18 @@ namespace OpenTK.Graphics.ES20 /// Specifies the new value for the parameter given by pname. /// [AutoGenerated(Category = "EXT_tessellation_shader", Version = "", EntryPoint = "glPatchParameteriEXT")] - public static void PatchParameter(OpenTK.Graphics.ES20.All pname, Int32 value) { throw new NotImplementedException(); } + public static void PatchParameter(OpenTK.Graphics.ES20.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_polygon_offset_clamp] /// /// /// [AutoGenerated(Category = "EXT_polygon_offset_clamp", Version = "", EntryPoint = "glPolygonOffsetClampEXT")] - public static void PolygonOffsetClamp(Single factor, Single units, Single clamp) { throw new NotImplementedException(); } + public static void PolygonOffsetClamp(Single factor, Single units, Single clamp) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_marker] [AutoGenerated(Category = "EXT_debug_marker", Version = "", EntryPoint = "glPopGroupMarkerEXT")] - public static void PopGroupMarker() { throw new NotImplementedException(); } + public static void PopGroupMarker() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_primitive_bounding_box] /// @@ -28734,7 +28734,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_primitive_bounding_box", Version = "", EntryPoint = "glPrimitiveBoundingBoxEXT")] - public static void PrimitiveBoundingBox(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW) { throw new NotImplementedException(); } + public static void PrimitiveBoundingBox(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify a parameter for a program object @@ -28751,7 +28751,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramParameteriEXT")] [CLSCompliant(false)] - public static void ProgramParameter(Int32 program, OpenTK.Graphics.ES20.All pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(Int32 program, OpenTK.Graphics.ES20.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify a parameter for a program object @@ -28767,7 +28767,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramParameteriEXT")] [CLSCompliant(false)] - public static void ProgramParameter(Int32 program, OpenTK.Graphics.ES20.ProgramParameterName pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(Int32 program, OpenTK.Graphics.ES20.ProgramParameterName pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify a parameter for a program object @@ -28784,7 +28784,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramParameteriEXT")] [CLSCompliant(false)] - public static void ProgramParameter(UInt32 program, OpenTK.Graphics.ES20.All pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(UInt32 program, OpenTK.Graphics.ES20.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify a parameter for a program object @@ -28800,7 +28800,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramParameteriEXT")] [CLSCompliant(false)] - public static void ProgramParameter(UInt32 program, OpenTK.Graphics.ES20.ProgramParameterName pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(UInt32 program, OpenTK.Graphics.ES20.ProgramParameterName pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -28816,7 +28816,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Single v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -28832,7 +28832,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Single v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -28851,7 +28851,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -28870,7 +28870,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -28889,7 +28889,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -28908,7 +28908,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -28927,7 +28927,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -28946,7 +28946,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -28962,7 +28962,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1iEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -28978,7 +28978,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1iEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -28997,7 +28997,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29016,7 +29016,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29035,7 +29035,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29054,7 +29054,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29073,7 +29073,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29092,7 +29092,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29108,7 +29108,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uiEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, UInt32 v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, UInt32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29127,7 +29127,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29146,7 +29146,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29165,7 +29165,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29184,7 +29184,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29203,7 +29203,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29222,7 +29222,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29241,7 +29241,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29260,7 +29260,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29279,7 +29279,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29298,7 +29298,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29317,7 +29317,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29336,7 +29336,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2iEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29355,7 +29355,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2iEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29374,7 +29374,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29393,7 +29393,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29412,7 +29412,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29431,7 +29431,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29450,7 +29450,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2uiEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, UInt32 v0, UInt32 v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, UInt32 v0, UInt32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29469,7 +29469,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29488,7 +29488,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29507,7 +29507,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2uivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29529,7 +29529,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29551,7 +29551,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29570,7 +29570,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29589,7 +29589,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29608,7 +29608,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29627,7 +29627,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29646,7 +29646,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29665,7 +29665,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29687,7 +29687,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3iEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29709,7 +29709,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3iEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29728,7 +29728,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29747,7 +29747,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29766,7 +29766,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29785,7 +29785,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29804,7 +29804,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29823,7 +29823,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29845,7 +29845,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3uiEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29864,7 +29864,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29883,7 +29883,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29902,7 +29902,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3uivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29927,7 +29927,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29952,7 +29952,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29971,7 +29971,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29990,7 +29990,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -30009,7 +30009,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -30028,7 +30028,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -30047,7 +30047,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -30066,7 +30066,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -30091,7 +30091,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4iEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -30116,7 +30116,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4iEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -30135,7 +30135,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -30154,7 +30154,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -30173,7 +30173,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -30192,7 +30192,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -30211,7 +30211,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -30230,7 +30230,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -30255,7 +30255,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4uiEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -30274,7 +30274,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -30293,7 +30293,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -30312,7 +30312,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4uivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30322,7 +30322,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*4] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30332,7 +30332,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*4] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30342,7 +30342,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*4] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30352,7 +30352,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*4] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30362,7 +30362,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*4] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30372,7 +30372,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*4] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30382,7 +30382,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30392,7 +30392,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30402,7 +30402,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30412,7 +30412,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30422,7 +30422,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30432,7 +30432,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30442,7 +30442,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30452,7 +30452,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30462,7 +30462,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30472,7 +30472,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30482,7 +30482,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30492,7 +30492,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30502,7 +30502,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*9] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30512,7 +30512,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*9] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30522,7 +30522,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*9] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30532,7 +30532,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*9] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30542,7 +30542,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*9] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30552,7 +30552,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*9] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30562,7 +30562,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30572,7 +30572,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30582,7 +30582,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30592,7 +30592,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30602,7 +30602,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30612,7 +30612,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30622,7 +30622,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30632,7 +30632,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30642,7 +30642,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30652,7 +30652,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30662,7 +30662,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30672,7 +30672,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -30682,7 +30682,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*16] [AutoGenerated(Category = "EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -30692,7 +30692,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*16] [AutoGenerated(Category = "EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -30702,7 +30702,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*16] [AutoGenerated(Category = "EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -30712,7 +30712,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*16] [AutoGenerated(Category = "EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -30722,7 +30722,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*16] [AutoGenerated(Category = "EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -30732,7 +30732,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*16] [AutoGenerated(Category = "EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30742,7 +30742,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30752,7 +30752,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30762,7 +30762,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30772,7 +30772,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30782,7 +30782,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30792,7 +30792,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30802,7 +30802,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30812,7 +30812,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30822,7 +30822,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30832,7 +30832,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30842,7 +30842,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30852,13 +30852,13 @@ namespace OpenTK.Graphics.ES20 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_marker] /// /// [AutoGenerated(Category = "EXT_debug_marker", Version = "", EntryPoint = "glPushGroupMarkerEXT")] - public static void PushGroupMarker(Int32 length, String marker) { throw new NotImplementedException(); } + public static void PushGroupMarker(Int32 length, String marker) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Record the GL time into a query object after all previous commands have reached the GL server but have not yet necessarily executed. @@ -30871,7 +30871,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glQueryCounterEXT")] [CLSCompliant(false)] - public static void QueryCounter(Int32 id, OpenTK.Graphics.ES20.All target) { throw new NotImplementedException(); } + public static void QueryCounter(Int32 id, OpenTK.Graphics.ES20.All target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Record the GL time into a query object after all previous commands have reached the GL server but have not yet necessarily executed. @@ -30884,27 +30884,27 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glQueryCounterEXT")] [CLSCompliant(false)] - public static void QueryCounter(UInt32 id, OpenTK.Graphics.ES20.All target) { throw new NotImplementedException(); } + public static void QueryCounter(UInt32 id, OpenTK.Graphics.ES20.All target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glRasterSamplesEXT")] [CLSCompliant(false)] - public static void RasterSamples(Int32 samples, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void RasterSamples(Int32 samples, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glRasterSamplesEXT")] [CLSCompliant(false)] - public static void RasterSamples(UInt32 samples, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void RasterSamples(UInt32 samples, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// /// [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glReadBufferIndexedEXT")] - public static void ReadBufferIndexed(OpenTK.Graphics.ES20.All src, Int32 index) { throw new NotImplementedException(); } + public static void ReadBufferIndexed(OpenTK.Graphics.ES20.All src, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -30917,7 +30917,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -30933,7 +30933,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -30949,7 +30949,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -30965,7 +30965,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -30980,7 +30980,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -30992,7 +30992,7 @@ namespace OpenTK.Graphics.ES20 /// /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -31007,7 +31007,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -31022,7 +31022,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -31037,7 +31037,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -31051,21 +31051,21 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_win32_keyed_mutex] /// /// [AutoGenerated(Category = "EXT_win32_keyed_mutex", Version = "", EntryPoint = "glReleaseKeyedMutexWin32EXT")] [CLSCompliant(false)] - public static bool ReleaseKeyedMutexWin32(Int32 memory, Int64 key) { throw new NotImplementedException(); } + public static bool ReleaseKeyedMutexWin32(Int32 memory, Int64 key) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_win32_keyed_mutex] /// /// [AutoGenerated(Category = "EXT_win32_keyed_mutex", Version = "", EntryPoint = "glReleaseKeyedMutexWin32EXT")] [CLSCompliant(false)] - public static bool ReleaseKeyedMutexWin32(UInt32 memory, UInt64 key) { throw new NotImplementedException(); } + public static bool ReleaseKeyedMutexWin32(UInt32 memory, UInt64 key) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multisampled_render_to_texture] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -31087,7 +31087,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glRenderbufferStorageMultisampleEXT")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.All target, Int32 samples, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.All target, Int32 samples, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multisampled_render_to_texture] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -31108,7 +31108,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glRenderbufferStorageMultisampleEXT")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES20.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES20.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31116,7 +31116,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31124,7 +31124,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31132,7 +31132,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31140,7 +31140,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31148,7 +31148,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31156,7 +31156,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31164,7 +31164,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivEXT")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31172,7 +31172,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivEXT")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31180,7 +31180,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31189,7 +31189,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.All pname, Int64[] @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.All pname, Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31198,7 +31198,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.All pname, ref Int64 @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.All pname, ref Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31207,7 +31207,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.All pname, Int64* @params) { throw new NotImplementedException(); } + public static unsafe void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.All pname, Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31215,7 +31215,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, Int64[] @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31223,7 +31223,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, ref Int64 @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, ref Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31231,7 +31231,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, Int64* @params) { throw new NotImplementedException(); } + public static unsafe void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31240,7 +31240,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.All pname, UInt64[] @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.All pname, UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31249,7 +31249,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.All pname, ref UInt64 @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.All pname, ref UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31258,7 +31258,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.All pname, UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.All pname, UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31266,7 +31266,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, UInt64[] @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31274,7 +31274,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, ref UInt64 @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, ref UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31282,7 +31282,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31294,7 +31294,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.All[] dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.All[] dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31305,7 +31305,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.TextureLayout[] dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.TextureLayout[] dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31317,7 +31317,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES20.All dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES20.All dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31328,7 +31328,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES20.TextureLayout dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES20.TextureLayout dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31340,7 +31340,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.All* dstLayouts) { throw new NotImplementedException(); } + public static unsafe void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.All* dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31351,7 +31351,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.TextureLayout* dstLayouts) { throw new NotImplementedException(); } + public static unsafe void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.TextureLayout* dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31363,7 +31363,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.All[] dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.All[] dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31374,7 +31374,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.TextureLayout[] dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.TextureLayout[] dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31386,7 +31386,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES20.All dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES20.All dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31397,7 +31397,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES20.TextureLayout dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES20.TextureLayout dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31409,7 +31409,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.All* dstLayouts) { throw new NotImplementedException(); } + public static unsafe void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.All* dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31420,7 +31420,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.TextureLayout* dstLayouts) { throw new NotImplementedException(); } + public static unsafe void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.TextureLayout* dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -31437,7 +31437,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferEXT")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -31454,7 +31454,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferEXT")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -31470,7 +31470,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferEXT")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.All internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.All internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -31486,7 +31486,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferEXT")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.All internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.All internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -31508,7 +31508,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -31530,7 +31530,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -31552,7 +31552,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -31574,7 +31574,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_sparse_texture] /// @@ -31587,7 +31587,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_sparse_texture", Version = "", EntryPoint = "glTexPageCommitmentEXT")] - public static void TexPageCommitment(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit) { throw new NotImplementedException(); } + public static void TexPageCommitment(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31596,7 +31596,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31605,7 +31605,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31614,7 +31614,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31622,7 +31622,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31630,7 +31630,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31638,7 +31638,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31647,7 +31647,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31656,7 +31656,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31665,7 +31665,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31673,7 +31673,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31681,7 +31681,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31689,7 +31689,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// Simultaneously specify storage for all levels of a one-dimensional texture @@ -31707,7 +31707,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the width of the texture, in texels. /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage1DEXT")] - public static void TexStorage1D(OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TexStorage1D(OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// Simultaneously specify storage for all levels of a two-dimensional or one-dimensional array texture @@ -31729,7 +31729,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage2DEXT")] - public static void TexStorage2D(OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TexStorage2D(OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// Simultaneously specify storage for all levels of a two-dimensional or one-dimensional array texture @@ -31750,7 +31750,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the height of the texture, in texels. /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage2DEXT")] - public static void TexStorage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 levels, OpenTK.Graphics.ES20.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TexStorage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 levels, OpenTK.Graphics.ES20.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// Simultaneously specify storage for all levels of a three-dimensional, two-dimensional array or cube-map array texture @@ -31775,7 +31775,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage3DEXT")] - public static void TexStorage3D(OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TexStorage3D(OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// Simultaneously specify storage for all levels of a three-dimensional, two-dimensional array or cube-map array texture @@ -31799,7 +31799,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the depth of the texture, in texels. /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage3DEXT")] - public static void TexStorage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 levels, OpenTK.Graphics.ES20.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TexStorage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 levels, OpenTK.Graphics.ES20.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31811,7 +31811,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem1DEXT")] [CLSCompliant(false)] - public static void TexStorageMem1D(OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem1D(OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31823,7 +31823,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem1DEXT")] [CLSCompliant(false)] - public static void TexStorageMem1D(OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem1D(OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31834,7 +31834,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem1DEXT")] [CLSCompliant(false)] - public static void TexStorageMem1D(OpenTK.Graphics.ES20.TextureTarget target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem1D(OpenTK.Graphics.ES20.TextureTarget target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31845,7 +31845,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem1DEXT")] [CLSCompliant(false)] - public static void TexStorageMem1D(OpenTK.Graphics.ES20.TextureTarget target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem1D(OpenTK.Graphics.ES20.TextureTarget target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31858,7 +31858,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DEXT")] [CLSCompliant(false)] - public static void TexStorageMem2D(OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2D(OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31871,7 +31871,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DEXT")] [CLSCompliant(false)] - public static void TexStorageMem2D(OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2D(OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31883,7 +31883,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DEXT")] [CLSCompliant(false)] - public static void TexStorageMem2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31895,7 +31895,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DEXT")] [CLSCompliant(false)] - public static void TexStorageMem2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31909,7 +31909,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES20.All target, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES20.All target, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31923,7 +31923,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES20.All target, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES20.All target, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31936,7 +31936,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES20.TextureTarget target, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES20.TextureTarget target, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31949,7 +31949,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES20.TextureTarget target, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES20.TextureTarget target, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31963,7 +31963,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DEXT")] [CLSCompliant(false)] - public static void TexStorageMem3D(OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3D(OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31977,7 +31977,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DEXT")] [CLSCompliant(false)] - public static void TexStorageMem3D(OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3D(OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31990,7 +31990,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DEXT")] [CLSCompliant(false)] - public static void TexStorageMem3D(OpenTK.Graphics.ES20.TextureTarget target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3D(OpenTK.Graphics.ES20.TextureTarget target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32003,7 +32003,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DEXT")] [CLSCompliant(false)] - public static void TexStorageMem3D(OpenTK.Graphics.ES20.TextureTarget target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3D(OpenTK.Graphics.ES20.TextureTarget target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32018,7 +32018,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES20.All target, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES20.All target, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32033,7 +32033,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES20.All target, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES20.All target, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32047,7 +32047,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES20.TextureTarget target, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES20.TextureTarget target, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32061,7 +32061,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES20.TextureTarget target, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES20.TextureTarget target, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -32071,7 +32071,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage1DEXT")] [CLSCompliant(false)] - public static void TextureStorage1D(Int32 texture, OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TextureStorage1D(Int32 texture, OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -32081,7 +32081,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage1DEXT")] [CLSCompliant(false)] - public static void TextureStorage1D(UInt32 texture, OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TextureStorage1D(UInt32 texture, OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -32092,7 +32092,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage2DEXT")] [CLSCompliant(false)] - public static void TextureStorage2D(Int32 texture, OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TextureStorage2D(Int32 texture, OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -32103,7 +32103,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage2DEXT")] [CLSCompliant(false)] - public static void TextureStorage2D(UInt32 texture, OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TextureStorage2D(UInt32 texture, OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -32115,7 +32115,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage3DEXT")] [CLSCompliant(false)] - public static void TextureStorage3D(Int32 texture, OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TextureStorage3D(Int32 texture, OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -32127,7 +32127,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage3DEXT")] [CLSCompliant(false)] - public static void TextureStorage3D(UInt32 texture, OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TextureStorage3D(UInt32 texture, OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32138,7 +32138,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem1DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem1D(Int32 texture, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem1D(Int32 texture, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32149,7 +32149,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem1DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem1D(UInt32 texture, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem1D(UInt32 texture, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32161,7 +32161,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem2DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem2D(Int32 texture, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem2D(Int32 texture, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32173,7 +32173,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem2DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem2D(UInt32 texture, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem2D(UInt32 texture, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32186,7 +32186,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorageMem2DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem2DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32199,7 +32199,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorageMem2DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem2DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32212,7 +32212,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem3DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem3D(Int32 texture, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem3D(Int32 texture, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32225,7 +32225,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem3DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem3D(UInt32 texture, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem3D(UInt32 texture, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32239,7 +32239,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorageMem3DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem3DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32253,7 +32253,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorageMem3DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem3DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_view] /// Initialize a texture as a data alias of another texture's data store @@ -32284,7 +32284,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_texture_view", Version = "", EntryPoint = "glTextureViewEXT")] [CLSCompliant(false)] - public static void TextureView(Int32 texture, OpenTK.Graphics.ES20.All target, Int32 origtexture, OpenTK.Graphics.ES20.All internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new NotImplementedException(); } + public static void TextureView(Int32 texture, OpenTK.Graphics.ES20.All target, Int32 origtexture, OpenTK.Graphics.ES20.All internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_view] /// Initialize a texture as a data alias of another texture's data store @@ -32315,7 +32315,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_texture_view", Version = "", EntryPoint = "glTextureViewEXT")] [CLSCompliant(false)] - public static void TextureView(UInt32 texture, OpenTK.Graphics.ES20.All target, UInt32 origtexture, OpenTK.Graphics.ES20.All internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new NotImplementedException(); } + public static void TextureView(UInt32 texture, OpenTK.Graphics.ES20.All target, UInt32 origtexture, OpenTK.Graphics.ES20.All internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind stages of a program object to a program pipeline @@ -32331,7 +32331,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseProgramStagesEXT")] [CLSCompliant(false)] - public static void UseProgramStages(Int32 pipeline, Int32 stages, Int32 program) { throw new NotImplementedException(); } + public static void UseProgramStages(Int32 pipeline, Int32 stages, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind stages of a program object to a program pipeline @@ -32347,21 +32347,21 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseProgramStagesEXT")] [CLSCompliant(false)] - public static void UseProgramStages(UInt32 pipeline, UInt32 stages, UInt32 program) { throw new NotImplementedException(); } + public static void UseProgramStages(UInt32 pipeline, UInt32 stages, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseShaderProgramEXT")] [CLSCompliant(false)] - public static void UseShaderProgram(OpenTK.Graphics.ES20.All type, Int32 program) { throw new NotImplementedException(); } + public static void UseShaderProgram(OpenTK.Graphics.ES20.All type, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseShaderProgramEXT")] [CLSCompliant(false)] - public static void UseShaderProgram(OpenTK.Graphics.ES20.All type, UInt32 program) { throw new NotImplementedException(); } + public static void UseShaderProgram(OpenTK.Graphics.ES20.All type, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Validate a program pipeline object against current GL state @@ -32371,7 +32371,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glValidateProgramPipelineEXT")] [CLSCompliant(false)] - public static void ValidateProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } + public static void ValidateProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Validate a program pipeline object against current GL state @@ -32381,7 +32381,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glValidateProgramPipelineEXT")] [CLSCompliant(false)] - public static void ValidateProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static void ValidateProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -32394,7 +32394,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorEXT")] [CLSCompliant(false)] - public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -32407,7 +32407,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorEXT")] [CLSCompliant(false)] - public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32419,7 +32419,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.All[] srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.All[] srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32430,7 +32430,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.TextureLayout[] srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.TextureLayout[] srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32442,7 +32442,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES20.All srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES20.All srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32453,7 +32453,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES20.TextureLayout srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES20.TextureLayout srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32465,7 +32465,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.All* srcLayouts) { throw new NotImplementedException(); } + public static unsafe void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.All* srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32476,7 +32476,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.TextureLayout* srcLayouts) { throw new NotImplementedException(); } + public static unsafe void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.TextureLayout* srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32488,7 +32488,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.All[] srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.All[] srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32499,7 +32499,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.TextureLayout[] srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.TextureLayout[] srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32511,7 +32511,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES20.All srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES20.All srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32522,7 +32522,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES20.TextureLayout srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES20.TextureLayout srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32534,7 +32534,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.All* srcLayouts) { throw new NotImplementedException(); } + public static unsafe void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.All* srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32545,7 +32545,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.TextureLayout* srcLayouts) { throw new NotImplementedException(); } + public static unsafe void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.TextureLayout* srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_window_rectangles] /// @@ -32553,7 +32553,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(count)] [AutoGenerated(Category = "EXT_window_rectangles", Version = "", EntryPoint = "glWindowRectanglesEXT")] [CLSCompliant(false)] - public static void WindowRectangles(OpenTK.Graphics.ES20.All mode, Int32 count, [CountAttribute(Computed = "count")] Int32[] box) { throw new NotImplementedException(); } + public static void WindowRectangles(OpenTK.Graphics.ES20.All mode, Int32 count, [CountAttribute(Computed = "count")] Int32[] box) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_window_rectangles] /// @@ -32561,7 +32561,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(count)] [AutoGenerated(Category = "EXT_window_rectangles", Version = "", EntryPoint = "glWindowRectanglesEXT")] [CLSCompliant(false)] - public static void WindowRectangles(OpenTK.Graphics.ES20.All mode, Int32 count, [CountAttribute(Computed = "count")] ref Int32 box) { throw new NotImplementedException(); } + public static void WindowRectangles(OpenTK.Graphics.ES20.All mode, Int32 count, [CountAttribute(Computed = "count")] ref Int32 box) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_window_rectangles] /// @@ -32569,7 +32569,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(count)] [AutoGenerated(Category = "EXT_window_rectangles", Version = "", EntryPoint = "glWindowRectanglesEXT")] [CLSCompliant(false)] - public static unsafe void WindowRectangles(OpenTK.Graphics.ES20.All mode, Int32 count, [CountAttribute(Computed = "count")] Int32* box) { throw new NotImplementedException(); } + public static unsafe void WindowRectangles(OpenTK.Graphics.ES20.All mode, Int32 count, [CountAttribute(Computed = "count")] Int32* box) { throw new BindingsNotRewrittenException(); } } @@ -32585,7 +32585,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTexture2DDownsampleIMG")] [CLSCompliant(false)] - public static void FramebufferTexture2DDownsample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, Int32 texture, Int32 level, Int32 xscale, Int32 yscale) { throw new NotImplementedException(); } + public static void FramebufferTexture2DDownsample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, Int32 texture, Int32 level, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_framebuffer_downsample] /// @@ -32597,7 +32597,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTexture2DDownsampleIMG")] [CLSCompliant(false)] - public static void FramebufferTexture2DDownsample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, UInt32 texture, Int32 level, Int32 xscale, Int32 yscale) { throw new NotImplementedException(); } + public static void FramebufferTexture2DDownsample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, UInt32 texture, Int32 level, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_multisampled_render_to_texture] /// @@ -32608,7 +32608,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleIMG")] [CLSCompliant(false)] - public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, Int32 texture, Int32 level, Int32 samples) { throw new NotImplementedException(); } + public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, Int32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_multisampled_render_to_texture] /// @@ -32619,7 +32619,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleIMG")] [CLSCompliant(false)] - public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, UInt32 texture, Int32 level, Int32 samples) { throw new NotImplementedException(); } + public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, UInt32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_framebuffer_downsample] /// @@ -32632,7 +32632,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTextureLayerDownsampleIMG")] [CLSCompliant(false)] - public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new NotImplementedException(); } + public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_framebuffer_downsample] /// @@ -32645,7 +32645,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTextureLayerDownsampleIMG")] [CLSCompliant(false)] - public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new NotImplementedException(); } + public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_framebuffer_downsample] /// @@ -32657,7 +32657,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTextureLayerDownsampleIMG")] [CLSCompliant(false)] - public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new NotImplementedException(); } + public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_framebuffer_downsample] /// @@ -32669,33 +32669,33 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTextureLayerDownsampleIMG")] [CLSCompliant(false)] - public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new NotImplementedException(); } + public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleIMG")] [CLSCompliant(false)] - public static Int64 GetTextureHandle(Int32 texture) { throw new NotImplementedException(); } + public static Int64 GetTextureHandle(Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleIMG")] [CLSCompliant(false)] - public static Int64 GetTextureHandle(UInt32 texture) { throw new NotImplementedException(); } + public static Int64 GetTextureHandle(UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glGetTextureSamplerHandleIMG")] [CLSCompliant(false)] - public static Int64 GetTextureSamplerHandle(Int32 texture, Int32 sampler) { throw new NotImplementedException(); } + public static Int64 GetTextureSamplerHandle(Int32 texture, Int32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glGetTextureSamplerHandleIMG")] [CLSCompliant(false)] - public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new NotImplementedException(); } + public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -32703,7 +32703,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64IMG")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -32711,7 +32711,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64IMG")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -32720,7 +32720,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] values) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -32729,7 +32729,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 values) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -32738,7 +32738,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vIMG")] [CLSCompliant(false)] - public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* values) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* values) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -32747,7 +32747,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] values) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -32756,7 +32756,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 values) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -32765,7 +32765,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vIMG")] [CLSCompliant(false)] - public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_multisampled_render_to_texture] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -32787,7 +32787,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glRenderbufferStorageMultisampleIMG")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.All target, Int32 samples, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.All target, Int32 samples, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_multisampled_render_to_texture] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -32808,21 +32808,21 @@ namespace OpenTK.Graphics.ES20 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glRenderbufferStorageMultisampleIMG")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES20.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES20.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64IMG")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64IMG")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -32830,7 +32830,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -32838,7 +32838,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -32846,7 +32846,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vIMG")] [CLSCompliant(false)] - public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -32854,7 +32854,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -32862,7 +32862,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -32870,7 +32870,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vIMG")] [CLSCompliant(false)] - public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new BindingsNotRewrittenException(); } } @@ -32880,174 +32880,174 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glBeginPerfQueryINTEL")] [CLSCompliant(false)] - public static void BeginPerfQuery(Int32 queryHandle) { throw new NotImplementedException(); } + public static void BeginPerfQuery(Int32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glBeginPerfQueryINTEL")] [CLSCompliant(false)] - public static void BeginPerfQuery(UInt32 queryHandle) { throw new NotImplementedException(); } + public static void BeginPerfQuery(UInt32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static void CreatePerfQuery(Int32 queryId, [OutAttribute] Int32[] queryHandle) { throw new NotImplementedException(); } + public static void CreatePerfQuery(Int32 queryId, [OutAttribute] Int32[] queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static void CreatePerfQuery(Int32 queryId, [OutAttribute] out Int32 queryHandle) { throw new NotImplementedException(); } + public static void CreatePerfQuery(Int32 queryId, [OutAttribute] out Int32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static unsafe void CreatePerfQuery(Int32 queryId, [OutAttribute] Int32* queryHandle) { throw new NotImplementedException(); } + public static unsafe void CreatePerfQuery(Int32 queryId, [OutAttribute] Int32* queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static void CreatePerfQuery(UInt32 queryId, [OutAttribute] UInt32[] queryHandle) { throw new NotImplementedException(); } + public static void CreatePerfQuery(UInt32 queryId, [OutAttribute] UInt32[] queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static void CreatePerfQuery(UInt32 queryId, [OutAttribute] out UInt32 queryHandle) { throw new NotImplementedException(); } + public static void CreatePerfQuery(UInt32 queryId, [OutAttribute] out UInt32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static unsafe void CreatePerfQuery(UInt32 queryId, [OutAttribute] UInt32* queryHandle) { throw new NotImplementedException(); } + public static unsafe void CreatePerfQuery(UInt32 queryId, [OutAttribute] UInt32* queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glDeletePerfQueryINTEL")] [CLSCompliant(false)] - public static void DeletePerfQuery(Int32 queryHandle) { throw new NotImplementedException(); } + public static void DeletePerfQuery(Int32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glDeletePerfQueryINTEL")] [CLSCompliant(false)] - public static void DeletePerfQuery(UInt32 queryHandle) { throw new NotImplementedException(); } + public static void DeletePerfQuery(UInt32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glEndPerfQueryINTEL")] [CLSCompliant(false)] - public static void EndPerfQuery(Int32 queryHandle) { throw new NotImplementedException(); } + public static void EndPerfQuery(Int32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glEndPerfQueryINTEL")] [CLSCompliant(false)] - public static void EndPerfQuery(UInt32 queryHandle) { throw new NotImplementedException(); } + public static void EndPerfQuery(UInt32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static Int32 GetFirstPerfQueryI() { throw new NotImplementedException(); } + public static Int32 GetFirstPerfQueryI() { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetFirstPerfQueryI([OutAttribute] Int32[] queryId) { throw new NotImplementedException(); } + public static void GetFirstPerfQueryI([OutAttribute] Int32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetFirstPerfQueryI([OutAttribute] out Int32 queryId) { throw new NotImplementedException(); } + public static void GetFirstPerfQueryI([OutAttribute] out Int32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static unsafe void GetFirstPerfQueryI([OutAttribute] Int32* queryId) { throw new NotImplementedException(); } + public static unsafe void GetFirstPerfQueryI([OutAttribute] Int32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetFirstPerfQueryI([OutAttribute] UInt32[] queryId) { throw new NotImplementedException(); } + public static void GetFirstPerfQueryI([OutAttribute] UInt32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetFirstPerfQueryI([OutAttribute] out UInt32 queryId) { throw new NotImplementedException(); } + public static void GetFirstPerfQueryI([OutAttribute] out UInt32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static unsafe void GetFirstPerfQueryI([OutAttribute] UInt32* queryId) { throw new NotImplementedException(); } + public static unsafe void GetFirstPerfQueryI([OutAttribute] UInt32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static Int32 GetNextPerfQueryI(Int32 queryId) { throw new NotImplementedException(); } + public static Int32 GetNextPerfQueryI(Int32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static Int32 GetNextPerfQueryI(UInt32 queryId) { throw new NotImplementedException(); } + public static Int32 GetNextPerfQueryI(UInt32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetNextPerfQueryI(Int32 queryId, [OutAttribute] Int32[] nextQueryId) { throw new NotImplementedException(); } + public static void GetNextPerfQueryI(Int32 queryId, [OutAttribute] Int32[] nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetNextPerfQueryI(Int32 queryId, [OutAttribute] out Int32 nextQueryId) { throw new NotImplementedException(); } + public static void GetNextPerfQueryI(Int32 queryId, [OutAttribute] out Int32 nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static unsafe void GetNextPerfQueryI(Int32 queryId, [OutAttribute] Int32* nextQueryId) { throw new NotImplementedException(); } + public static unsafe void GetNextPerfQueryI(Int32 queryId, [OutAttribute] Int32* nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] UInt32[] nextQueryId) { throw new NotImplementedException(); } + public static void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] UInt32[] nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] out UInt32 nextQueryId) { throw new NotImplementedException(); } + public static void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] out UInt32 nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static unsafe void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] UInt32* nextQueryId) { throw new NotImplementedException(); } + public static unsafe void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] UInt32* nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33063,7 +33063,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32[] counterOffset, [OutAttribute] Int32[] counterDataSize, [OutAttribute] Int32[] counterTypeEnum, [OutAttribute] Int32[] counterDataTypeEnum, [OutAttribute] Int64[] rawCounterMaxValue) { throw new NotImplementedException(); } + public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32[] counterOffset, [OutAttribute] Int32[] counterDataSize, [OutAttribute] Int32[] counterTypeEnum, [OutAttribute] Int32[] counterDataTypeEnum, [OutAttribute] Int64[] rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33079,7 +33079,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out Int32 counterOffset, [OutAttribute] out Int32 counterDataSize, [OutAttribute] out Int32 counterTypeEnum, [OutAttribute] out Int32 counterDataTypeEnum, [OutAttribute] out Int64 rawCounterMaxValue) { throw new NotImplementedException(); } + public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out Int32 counterOffset, [OutAttribute] out Int32 counterDataSize, [OutAttribute] out Int32 counterTypeEnum, [OutAttribute] out Int32 counterDataTypeEnum, [OutAttribute] out Int64 rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33095,7 +33095,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32* counterOffset, [OutAttribute] Int32* counterDataSize, [OutAttribute] Int32* counterTypeEnum, [OutAttribute] Int32* counterDataTypeEnum, [OutAttribute] Int64* rawCounterMaxValue) { throw new NotImplementedException(); } + public static unsafe void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32* counterOffset, [OutAttribute] Int32* counterDataSize, [OutAttribute] Int32* counterTypeEnum, [OutAttribute] Int32* counterDataTypeEnum, [OutAttribute] Int64* rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33111,7 +33111,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32[] counterOffset, [OutAttribute] UInt32[] counterDataSize, [OutAttribute] UInt32[] counterTypeEnum, [OutAttribute] UInt32[] counterDataTypeEnum, [OutAttribute] UInt64[] rawCounterMaxValue) { throw new NotImplementedException(); } + public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32[] counterOffset, [OutAttribute] UInt32[] counterDataSize, [OutAttribute] UInt32[] counterTypeEnum, [OutAttribute] UInt32[] counterDataTypeEnum, [OutAttribute] UInt64[] rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33127,7 +33127,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out UInt32 counterOffset, [OutAttribute] out UInt32 counterDataSize, [OutAttribute] out UInt32 counterTypeEnum, [OutAttribute] out UInt32 counterDataTypeEnum, [OutAttribute] out UInt64 rawCounterMaxValue) { throw new NotImplementedException(); } + public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out UInt32 counterOffset, [OutAttribute] out UInt32 counterDataSize, [OutAttribute] out UInt32 counterTypeEnum, [OutAttribute] out UInt32 counterDataTypeEnum, [OutAttribute] out UInt64 rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33143,7 +33143,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue) { throw new NotImplementedException(); } + public static unsafe void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33153,7 +33153,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] Int32[] bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] Int32[] bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33163,7 +33163,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33173,7 +33173,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] Int32* bytesWritten) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] Int32* bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33185,7 +33185,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] Int32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33197,7 +33197,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] out Int32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33209,7 +33209,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] Int32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33221,7 +33221,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] Int32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33233,7 +33233,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] out Int32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33245,7 +33245,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] Int32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33257,7 +33257,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] Int32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33269,7 +33269,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] out Int32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33281,7 +33281,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] Int32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33293,7 +33293,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] Int32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33305,7 +33305,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] out Int32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33317,7 +33317,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] Int32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33327,7 +33327,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32[] bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32[] bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33337,7 +33337,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] out UInt32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] out UInt32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33347,7 +33347,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32* bytesWritten) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32* bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33359,7 +33359,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] UInt32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33371,7 +33371,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] out UInt32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33383,7 +33383,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] UInt32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33395,7 +33395,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] UInt32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33407,7 +33407,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] out UInt32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33419,7 +33419,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] UInt32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33431,7 +33431,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] UInt32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33443,7 +33443,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] out UInt32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33455,7 +33455,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] UInt32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33467,7 +33467,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] UInt32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33479,7 +33479,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] out UInt32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33491,55 +33491,55 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] UInt32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static Int32 GetPerfQueryIdByName([OutAttribute] out String queryName) { throw new NotImplementedException(); } + public static Int32 GetPerfQueryIdByName([OutAttribute] out String queryName) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32[] queryId) { throw new NotImplementedException(); } + public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out Int32 queryId) { throw new NotImplementedException(); } + public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out Int32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32* queryId) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32[] queryId) { throw new NotImplementedException(); } + public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out UInt32 queryId) { throw new NotImplementedException(); } + public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out UInt32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32* queryId) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33551,7 +33551,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32[] dataSize, [OutAttribute] Int32[] noCounters, [OutAttribute] Int32[] noInstances, [OutAttribute] Int32[] capsMask) { throw new NotImplementedException(); } + public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32[] dataSize, [OutAttribute] Int32[] noCounters, [OutAttribute] Int32[] noInstances, [OutAttribute] Int32[] capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33563,7 +33563,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out Int32 dataSize, [OutAttribute] out Int32 noCounters, [OutAttribute] out Int32 noInstances, [OutAttribute] out Int32 capsMask) { throw new NotImplementedException(); } + public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out Int32 dataSize, [OutAttribute] out Int32 noCounters, [OutAttribute] out Int32 noInstances, [OutAttribute] out Int32 capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33575,7 +33575,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32* dataSize, [OutAttribute] Int32* noCounters, [OutAttribute] Int32* noInstances, [OutAttribute] Int32* capsMask) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32* dataSize, [OutAttribute] Int32* noCounters, [OutAttribute] Int32* noInstances, [OutAttribute] Int32* capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33587,7 +33587,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32[] dataSize, [OutAttribute] UInt32[] noCounters, [OutAttribute] UInt32[] noInstances, [OutAttribute] UInt32[] capsMask) { throw new NotImplementedException(); } + public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32[] dataSize, [OutAttribute] UInt32[] noCounters, [OutAttribute] UInt32[] noInstances, [OutAttribute] UInt32[] capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33599,7 +33599,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out UInt32 dataSize, [OutAttribute] out UInt32 noCounters, [OutAttribute] out UInt32 noInstances, [OutAttribute] out UInt32 capsMask) { throw new NotImplementedException(); } + public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out UInt32 dataSize, [OutAttribute] out UInt32 noCounters, [OutAttribute] out UInt32 noInstances, [OutAttribute] out UInt32 capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33611,7 +33611,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask) { throw new BindingsNotRewrittenException(); } } @@ -33619,7 +33619,7 @@ namespace OpenTK.Graphics.ES20 { /// [requires: KHR_blend_equation_advanced] [AutoGenerated(Category = "KHR_blend_equation_advanced", Version = "", EntryPoint = "glBlendBarrierKHR")] - public static void BlendBarrier() { throw new NotImplementedException(); } + public static void BlendBarrier() { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -33631,7 +33631,7 @@ namespace OpenTK.Graphics.ES20 /// A user supplied pointer that will be passed on each invocation of callback. /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallbackKHR")] - public static void DebugMessageCallback(DebugProcKhr callback, IntPtr userParam) { throw new NotImplementedException(); } + public static void DebugMessageCallback(DebugProcKhr callback, IntPtr userParam) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -33646,7 +33646,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -33661,7 +33661,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -33676,7 +33676,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[,,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -33690,7 +33690,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallbackKHR")] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] ref T1 userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -33716,7 +33716,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, Int32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -33742,7 +33742,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, ref Int32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -33768,7 +33768,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, Int32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -33794,7 +33794,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, UInt32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -33820,7 +33820,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -33846,7 +33846,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, UInt32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -33871,7 +33871,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, Int32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -33896,7 +33896,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, ref Int32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -33921,7 +33921,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, Int32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -33946,7 +33946,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, UInt32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -33971,7 +33971,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -33996,7 +33996,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, UInt32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Inject an application-supplied message into the debug message queue @@ -34022,7 +34022,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, Int32 id, OpenTK.Graphics.ES20.All severity, Int32 length, String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, Int32 id, OpenTK.Graphics.ES20.All severity, Int32 length, String buf) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Inject an application-supplied message into the debug message queue @@ -34048,7 +34048,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, UInt32 id, OpenTK.Graphics.ES20.All severity, Int32 length, String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, UInt32 id, OpenTK.Graphics.ES20.All severity, Int32 length, String buf) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Inject an application-supplied message into the debug message queue @@ -34073,7 +34073,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.ES20.DebugSourceExternal source, OpenTK.Graphics.ES20.DebugType type, Int32 id, OpenTK.Graphics.ES20.DebugSeverity severity, Int32 length, String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.ES20.DebugSourceExternal source, OpenTK.Graphics.ES20.DebugType type, Int32 id, OpenTK.Graphics.ES20.DebugSeverity severity, Int32 length, String buf) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Inject an application-supplied message into the debug message queue @@ -34098,7 +34098,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.ES20.DebugSourceExternal source, OpenTK.Graphics.ES20.DebugType type, UInt32 id, OpenTK.Graphics.ES20.DebugSeverity severity, Int32 length, String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.ES20.DebugSourceExternal source, OpenTK.Graphics.ES20.DebugType type, UInt32 id, OpenTK.Graphics.ES20.DebugSeverity severity, Int32 length, String buf) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -34130,7 +34130,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -34162,7 +34162,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -34194,7 +34194,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -34225,7 +34225,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSourceExternal[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSourceExternal[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -34256,7 +34256,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugSourceExternal sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugSourceExternal sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -34287,7 +34287,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSourceExternal* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSourceExternal* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -34319,7 +34319,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -34351,7 +34351,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -34383,7 +34383,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -34414,7 +34414,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSourceExternal[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSourceExternal[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -34445,7 +34445,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugSourceExternal sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugSourceExternal sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -34476,11 +34476,11 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSourceExternal* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSourceExternal* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetGraphicsResetStatusKHR")] - public static OpenTK.Graphics.ES20.All GetGraphicsResetStatus() { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES20.All GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -34489,7 +34489,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -34498,7 +34498,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -34507,7 +34507,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -34516,7 +34516,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -34525,7 +34525,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -34534,7 +34534,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -34543,7 +34543,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -34552,7 +34552,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -34561,7 +34561,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -34570,7 +34570,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -34579,7 +34579,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -34588,7 +34588,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -34597,7 +34597,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuivKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -34606,7 +34606,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuivKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -34615,7 +34615,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuivKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -34638,7 +34638,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -34661,7 +34661,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -34684,7 +34684,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -34707,7 +34707,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -34730,7 +34730,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -34753,7 +34753,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -34775,7 +34775,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -34797,7 +34797,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -34819,7 +34819,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -34841,7 +34841,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -34863,7 +34863,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -34885,7 +34885,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -34905,7 +34905,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] - public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -34925,7 +34925,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] - public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -34945,7 +34945,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] - public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -34967,7 +34967,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -34989,7 +34989,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -35011,7 +35011,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -35033,7 +35033,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -35055,7 +35055,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -35077,7 +35077,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -35099,7 +35099,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -35121,7 +35121,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -35143,7 +35143,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -35165,7 +35165,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -35187,7 +35187,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -35209,13 +35209,13 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointervKHR")] - public static void GetPointer(OpenTK.Graphics.ES20.All pname, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } + public static void GetPointer(OpenTK.Graphics.ES20.All pname, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// @@ -35224,7 +35224,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// @@ -35233,7 +35233,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// @@ -35242,7 +35242,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// @@ -35250,7 +35250,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointervKHR")] public static void GetPointer(OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a named object identified within a namespace @@ -35270,7 +35270,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] [CLSCompliant(false)] - public static void ObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 length, String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a named object identified within a namespace @@ -35290,7 +35290,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] [CLSCompliant(false)] - public static void ObjectLabel(OpenTK.Graphics.ES20.All identifier, UInt32 name, Int32 length, String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.ES20.All identifier, UInt32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a named object identified within a namespace @@ -35309,7 +35309,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] [CLSCompliant(false)] - public static void ObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, Int32 name, Int32 length, String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, Int32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a named object identified within a namespace @@ -35328,7 +35328,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] [CLSCompliant(false)] - public static void ObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, UInt32 name, Int32 length, String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, UInt32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -35343,7 +35343,7 @@ namespace OpenTK.Graphics.ES20 /// The address of a string containing the label to assign to the object. /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabelKHR")] - public static void ObjectPtrLabel(IntPtr ptr, Int32 length, String label) { throw new NotImplementedException(); } + public static void ObjectPtrLabel(IntPtr ptr, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -35361,7 +35361,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 length, String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -35379,7 +35379,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 length, String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -35397,7 +35397,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 length, String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -35414,13 +35414,13 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabelKHR")] public static void ObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 length, String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Pop the active debug group /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPopDebugGroupKHR")] - public static void PopDebugGroup() { throw new NotImplementedException(); } + public static void PopDebugGroup() { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Push a named debug group into the command stream @@ -35439,7 +35439,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroupKHR")] [CLSCompliant(false)] - public static void PushDebugGroup(OpenTK.Graphics.ES20.All source, Int32 id, Int32 length, String message) { throw new NotImplementedException(); } + public static void PushDebugGroup(OpenTK.Graphics.ES20.All source, Int32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Push a named debug group into the command stream @@ -35458,7 +35458,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroupKHR")] [CLSCompliant(false)] - public static void PushDebugGroup(OpenTK.Graphics.ES20.All source, UInt32 id, Int32 length, String message) { throw new NotImplementedException(); } + public static void PushDebugGroup(OpenTK.Graphics.ES20.All source, UInt32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -35471,7 +35471,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixelsKHR")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -35487,7 +35487,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -35503,7 +35503,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -35519,7 +35519,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -35534,7 +35534,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixelsKHR")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -35546,7 +35546,7 @@ namespace OpenTK.Graphics.ES20 /// /// [length: bufSize] [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixelsKHR")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -35561,7 +35561,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -35576,7 +35576,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -35591,7 +35591,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -35605,7 +35605,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixelsKHR")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } } @@ -35622,7 +35622,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNV")] [CLSCompliant(false)] - public static void BeginConditionalRender(Int32 id, OpenTK.Graphics.ES20.All mode) { throw new NotImplementedException(); } + public static void BeginConditionalRender(Int32 id, OpenTK.Graphics.ES20.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conditional_render] /// Start conditional rendering @@ -35635,17 +35635,17 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNV")] [CLSCompliant(false)] - public static void BeginConditionalRender(UInt32 id, OpenTK.Graphics.ES20.All mode) { throw new NotImplementedException(); } + public static void BeginConditionalRender(UInt32 id, OpenTK.Graphics.ES20.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_blend_equation_advanced] [AutoGenerated(Category = "NV_blend_equation_advanced", Version = "", EntryPoint = "glBlendBarrierNV")] - public static void BlendBarrier() { throw new NotImplementedException(); } + public static void BlendBarrier() { throw new BindingsNotRewrittenException(); } /// [requires: NV_blend_equation_advanced] /// /// [AutoGenerated(Category = "NV_blend_equation_advanced", Version = "", EntryPoint = "glBlendParameteriNV")] - public static void BlendParameter(OpenTK.Graphics.ES20.All pname, Int32 value) { throw new NotImplementedException(); } + public static void BlendParameter(OpenTK.Graphics.ES20.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_blit] /// Copy a block of pixels from the read framebuffer to the draw framebuffer @@ -35682,7 +35682,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_framebuffer_blit", Version = "", EntryPoint = "glBlitFramebufferNV")] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES20.All mask, OpenTK.Graphics.ES20.All filter) { throw new NotImplementedException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES20.All mask, OpenTK.Graphics.ES20.All filter) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_blit] /// Copy a block of pixels from the read framebuffer to the draw framebuffer @@ -35718,13 +35718,13 @@ namespace OpenTK.Graphics.ES20 /// Specifies the interpolation to be applied if the image is stretched. Must be Nearest or Linear. /// [AutoGenerated(Category = "NV_framebuffer_blit", Version = "", EntryPoint = "glBlitFramebufferNV")] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES20.ClearBufferMask mask, OpenTK.Graphics.ES20.BlitFramebufferFilter filter) { throw new NotImplementedException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES20.ClearBufferMask mask, OpenTK.Graphics.ES20.BlitFramebufferFilter filter) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conservative_raster_pre_snap_triangles] /// /// [AutoGenerated(Category = "NV_conservative_raster_pre_snap_triangles", Version = "", EntryPoint = "glConservativeRasterParameteriNV")] - public static void ConservativeRasterParameter(OpenTK.Graphics.ES20.All pname, Int32 param) { throw new NotImplementedException(); } + public static void ConservativeRasterParameter(OpenTK.Graphics.ES20.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: NV_copy_buffer] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -35746,7 +35746,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_copy_buffer", Version = "", EntryPoint = "glCopyBufferSubDataNV")] - public static void CopyBufferSubData(OpenTK.Graphics.ES20.All readTarget, OpenTK.Graphics.ES20.All writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new NotImplementedException(); } + public static void CopyBufferSubData(OpenTK.Graphics.ES20.All readTarget, OpenTK.Graphics.ES20.All writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_copy_buffer] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -35768,7 +35768,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_copy_buffer", Version = "", EntryPoint = "glCopyBufferSubDataNV")] - public static void CopyBufferSubData(OpenTK.Graphics.ES20.All readTarget, OpenTK.Graphics.ES20.All writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new NotImplementedException(); } + public static void CopyBufferSubData(OpenTK.Graphics.ES20.All readTarget, OpenTK.Graphics.ES20.All writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_copy_buffer] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -35789,7 +35789,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the size, in basic machine units, of the data to be copied from readtarget to writetarget. /// [AutoGenerated(Category = "NV_copy_buffer", Version = "", EntryPoint = "glCopyBufferSubDataNV")] - public static void CopyBufferSubData(OpenTK.Graphics.ES20.BufferTarget readTarget, OpenTK.Graphics.ES20.BufferTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new NotImplementedException(); } + public static void CopyBufferSubData(OpenTK.Graphics.ES20.BufferTarget readTarget, OpenTK.Graphics.ES20.BufferTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_copy_buffer] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -35810,57 +35810,57 @@ namespace OpenTK.Graphics.ES20 /// Specifies the size, in basic machine units, of the data to be copied from readtarget to writetarget. /// [AutoGenerated(Category = "NV_copy_buffer", Version = "", EntryPoint = "glCopyBufferSubDataNV")] - public static void CopyBufferSubData(OpenTK.Graphics.ES20.BufferTarget readTarget, OpenTK.Graphics.ES20.BufferTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new NotImplementedException(); } + public static void CopyBufferSubData(OpenTK.Graphics.ES20.BufferTarget readTarget, OpenTK.Graphics.ES20.BufferTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCopyPathNV")] [CLSCompliant(false)] - public static void CopyPath(Int32 resultPath, Int32 srcPath) { throw new NotImplementedException(); } + public static void CopyPath(Int32 resultPath, Int32 srcPath) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCopyPathNV")] [CLSCompliant(false)] - public static void CopyPath(UInt32 resultPath, UInt32 srcPath) { throw new NotImplementedException(); } + public static void CopyPath(UInt32 resultPath, UInt32 srcPath) { throw new BindingsNotRewrittenException(); } /// [requires: NV_coverage_sample] /// [AutoGenerated(Category = "NV_coverage_sample", Version = "", EntryPoint = "glCoverageMaskNV")] - public static void CoverageMask(bool mask) { throw new NotImplementedException(); } + public static void CoverageMask(bool mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationNV")] - public static void CoverageModulation(OpenTK.Graphics.ES20.All components) { throw new NotImplementedException(); } + public static void CoverageModulation(OpenTK.Graphics.ES20.All components) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static void CoverageModulationTable(Int32 n, Single[] v) { throw new NotImplementedException(); } + public static void CoverageModulationTable(Int32 n, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static void CoverageModulationTable(Int32 n, ref Single v) { throw new NotImplementedException(); } + public static void CoverageModulationTable(Int32 n, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static unsafe void CoverageModulationTable(Int32 n, Single* v) { throw new NotImplementedException(); } + public static unsafe void CoverageModulationTable(Int32 n, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_coverage_sample] /// [AutoGenerated(Category = "NV_coverage_sample", Version = "", EntryPoint = "glCoverageOperationNV")] - public static void CoverageOperation(OpenTK.Graphics.ES20.All operation) { throw new NotImplementedException(); } + public static void CoverageOperation(OpenTK.Graphics.ES20.All operation) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -35872,7 +35872,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -35884,7 +35884,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -35896,7 +35896,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -35908,7 +35908,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -35920,7 +35920,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -35932,7 +35932,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -35946,7 +35946,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -35960,7 +35960,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -35974,7 +35974,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -35988,7 +35988,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36002,7 +36002,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36016,7 +36016,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36030,7 +36030,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36044,7 +36044,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36058,7 +36058,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36072,7 +36072,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36086,7 +36086,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36100,7 +36100,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36114,7 +36114,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36128,7 +36128,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36142,7 +36142,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36156,7 +36156,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36170,7 +36170,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36184,7 +36184,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36198,7 +36198,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36212,7 +36212,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36226,7 +36226,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36240,7 +36240,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36254,7 +36254,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36268,21 +36268,21 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] [CLSCompliant(false)] - public static void CoverFillPath(Int32 path, OpenTK.Graphics.ES20.All coverMode) { throw new NotImplementedException(); } + public static void CoverFillPath(Int32 path, OpenTK.Graphics.ES20.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] [CLSCompliant(false)] - public static void CoverFillPath(UInt32 path, OpenTK.Graphics.ES20.All coverMode) { throw new NotImplementedException(); } + public static void CoverFillPath(UInt32 path, OpenTK.Graphics.ES20.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36294,7 +36294,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36306,7 +36306,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36318,7 +36318,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36330,7 +36330,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36342,7 +36342,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36354,7 +36354,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36368,7 +36368,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36382,7 +36382,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36396,7 +36396,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36410,7 +36410,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36424,7 +36424,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36438,7 +36438,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36452,7 +36452,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36466,7 +36466,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36480,7 +36480,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36494,7 +36494,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36508,7 +36508,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36522,7 +36522,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36536,7 +36536,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36550,7 +36550,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36564,7 +36564,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36578,7 +36578,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36592,7 +36592,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36606,7 +36606,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36620,7 +36620,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36634,7 +36634,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36648,7 +36648,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36662,7 +36662,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36676,7 +36676,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36690,89 +36690,89 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathNV")] [CLSCompliant(false)] - public static void CoverStrokePath(Int32 path, OpenTK.Graphics.ES20.All coverMode) { throw new NotImplementedException(); } + public static void CoverStrokePath(Int32 path, OpenTK.Graphics.ES20.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathNV")] [CLSCompliant(false)] - public static void CoverStrokePath(UInt32 path, OpenTK.Graphics.ES20.All coverMode) { throw new NotImplementedException(); } + public static void CoverStrokePath(UInt32 path, OpenTK.Graphics.ES20.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFence([CountAttribute(Parameter = "n")] Int32 fences) { throw new NotImplementedException(); } + public static void DeleteFence([CountAttribute(Parameter = "n")] Int32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFence([CountAttribute(Parameter = "n")] UInt32 fences) { throw new NotImplementedException(); } + public static void DeleteFence([CountAttribute(Parameter = "n")] UInt32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32[] fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32* fences) { throw new NotImplementedException(); } + public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32* fences) { throw new NotImplementedException(); } + public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glDeletePathsNV")] [CLSCompliant(false)] - public static void DeletePath(Int32 path, Int32 range) { throw new NotImplementedException(); } + public static void DeletePath(Int32 path, Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glDeletePathsNV")] [CLSCompliant(false)] - public static void DeletePath(UInt32 path, Int32 range) { throw new NotImplementedException(); } + public static void DeletePath(UInt32 path, Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -36788,7 +36788,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvNV")] [CLSCompliant(false)] - public static void DepthRangeArray(Int32 first, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void DepthRangeArray(Int32 first, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -36804,7 +36804,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvNV")] [CLSCompliant(false)] - public static void DepthRangeArray(Int32 first, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void DepthRangeArray(Int32 first, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -36820,7 +36820,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvNV")] [CLSCompliant(false)] - public static unsafe void DepthRangeArray(Int32 first, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void DepthRangeArray(Int32 first, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -36836,7 +36836,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvNV")] [CLSCompliant(false)] - public static void DepthRangeArray(UInt32 first, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void DepthRangeArray(UInt32 first, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -36852,7 +36852,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvNV")] [CLSCompliant(false)] - public static void DepthRangeArray(UInt32 first, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void DepthRangeArray(UInt32 first, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -36868,7 +36868,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvNV")] [CLSCompliant(false)] - public static unsafe void DepthRangeArray(UInt32 first, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void DepthRangeArray(UInt32 first, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified viewport @@ -36884,7 +36884,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeIndexedfNV")] [CLSCompliant(false)] - public static void DepthRangeIndexed(Int32 index, Single n, Single f) { throw new NotImplementedException(); } + public static void DepthRangeIndexed(Int32 index, Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified viewport @@ -36900,21 +36900,21 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeIndexedfNV")] [CLSCompliant(false)] - public static void DepthRangeIndexed(UInt32 index, Single n, Single f) { throw new NotImplementedException(); } + public static void DepthRangeIndexed(UInt32 index, Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDisableiNV")] [CLSCompliant(false)] - public static void Disable(OpenTK.Graphics.ES20.All target, Int32 index) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES20.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDisableiNV")] [CLSCompliant(false)] - public static void Disable(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a range of elements @@ -36933,7 +36933,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawArraysInstancedNV")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES20.All mode, Int32 first, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES20.All mode, Int32 first, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a range of elements @@ -36951,7 +36951,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawArraysInstancedNV")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 first, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 first, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -36965,7 +36965,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_draw_buffers", Version = "", EntryPoint = "glDrawBuffersNV")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES20.All[] bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES20.All[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -36979,7 +36979,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_draw_buffers", Version = "", EntryPoint = "glDrawBuffersNV")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES20.All bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES20.All bufs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -36993,7 +36993,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_draw_buffers", Version = "", EntryPoint = "glDrawBuffersNV")] [CLSCompliant(false)] - public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES20.All* bufs) { throw new NotImplementedException(); } + public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES20.All* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -37006,7 +37006,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_draw_buffers", Version = "", EntryPoint = "glDrawBuffersNV")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES20.DrawBufferMode[] bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES20.DrawBufferMode[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -37019,7 +37019,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_draw_buffers", Version = "", EntryPoint = "glDrawBuffersNV")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES20.DrawBufferMode bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES20.DrawBufferMode bufs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -37032,7 +37032,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_draw_buffers", Version = "", EntryPoint = "glDrawBuffersNV")] [CLSCompliant(false)] - public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES20.DrawBufferMode* bufs) { throw new NotImplementedException(); } + public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES20.DrawBufferMode* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -37054,7 +37054,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedNV")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -37079,7 +37079,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -37104,7 +37104,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -37129,7 +37129,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -37153,7 +37153,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedNV")] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -37174,7 +37174,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedNV")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -37198,7 +37198,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -37222,7 +37222,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -37246,7 +37246,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -37269,7 +37269,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedNV")] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// @@ -37285,7 +37285,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glDrawVkImageNV")] [CLSCompliant(false)] - public static void DrawVkImage(Int64 vkImage, Int32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new NotImplementedException(); } + public static void DrawVkImage(Int64 vkImage, Int32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// @@ -37301,7 +37301,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glDrawVkImageNV")] [CLSCompliant(false)] - public static void DrawVkImage(UInt64 vkImage, UInt32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new NotImplementedException(); } + public static void DrawVkImage(UInt64 vkImage, UInt32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Enable or disable server-side GL capabilities @@ -37312,7 +37312,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glEnableiNV")] [CLSCompliant(false)] - public static void Enable(OpenTK.Graphics.ES20.All target, Int32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES20.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Enable or disable server-side GL capabilities @@ -37323,35 +37323,35 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glEnableiNV")] [CLSCompliant(false)] - public static void Enable(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conditional_render] [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glEndConditionalRenderNV")] - public static void EndConditionalRender() { throw new NotImplementedException(); } + public static void EndConditionalRender() { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glFinishFenceNV")] [CLSCompliant(false)] - public static void FinishFence(Int32 fence) { throw new NotImplementedException(); } + public static void FinishFence(Int32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glFinishFenceNV")] [CLSCompliant(false)] - public static void FinishFence(UInt32 fence) { throw new NotImplementedException(); } + public static void FinishFence(UInt32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_coverage_to_color] /// [AutoGenerated(Category = "NV_fragment_coverage_to_color", Version = "", EntryPoint = "glFragmentCoverageColorNV")] [CLSCompliant(false)] - public static void FragmentCoverageColor(Int32 color) { throw new NotImplementedException(); } + public static void FragmentCoverageColor(Int32 color) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_coverage_to_color] /// [AutoGenerated(Category = "NV_fragment_coverage_to_color", Version = "", EntryPoint = "glFragmentCoverageColorNV")] [CLSCompliant(false)] - public static void FragmentCoverageColor(UInt32 color) { throw new NotImplementedException(); } + public static void FragmentCoverageColor(UInt32 color) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -37360,7 +37360,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.ES20.All target, Int32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.ES20.All target, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -37369,7 +37369,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.ES20.All target, Int32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.ES20.All target, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -37378,7 +37378,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.ES20.All target, Int32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.ES20.All target, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -37387,7 +37387,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.ES20.All target, UInt32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.ES20.All target, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -37396,7 +37396,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.ES20.All target, UInt32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.ES20.All target, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -37405,85 +37405,85 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.ES20.All target, UInt32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.ES20.All target, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static Int32 GenFence() { throw new NotImplementedException(); } + public static Int32 GenFence() { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* fences) { throw new NotImplementedException(); } + public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* fences) { throw new NotImplementedException(); } + public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGenPathsNV")] - public static Int32 GenPath(Int32 range) { throw new NotImplementedException(); } + public static Int32 GenPath(Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glGetCoverageModulationTableNV")] [CLSCompliant(false)] - public static Single GetCoverageModulationTable() { throw new NotImplementedException(); } + public static Single GetCoverageModulationTable() { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glGetCoverageModulationTableNV")] [CLSCompliant(false)] - public static void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] Single[] v) { throw new NotImplementedException(); } + public static void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glGetCoverageModulationTableNV")] [CLSCompliant(false)] - public static void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] out Single v) { throw new NotImplementedException(); } + public static void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] out Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glGetCoverageModulationTableNV")] [CLSCompliant(false)] - public static unsafe void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] Single* v) { throw new NotImplementedException(); } + public static unsafe void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -37491,7 +37491,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static void GetFence(Int32 fence, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFence(Int32 fence, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -37499,7 +37499,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static void GetFence(Int32 fence, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFence(Int32 fence, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -37507,7 +37507,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static unsafe void GetFence(Int32 fence, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFence(Int32 fence, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -37515,7 +37515,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static void GetFence(UInt32 fence, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFence(UInt32 fence, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -37523,7 +37523,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static void GetFence(UInt32 fence, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFence(UInt32 fence, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -37531,7 +37531,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static unsafe void GetFence(UInt32 fence, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFence(UInt32 fence, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// @@ -37539,7 +37539,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// @@ -37547,7 +37547,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// @@ -37555,7 +37555,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// @@ -37563,7 +37563,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// @@ -37571,7 +37571,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// @@ -37579,7 +37579,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -37589,7 +37589,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetImageHandleNV")] [CLSCompliant(false)] - public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES20.All format) { throw new NotImplementedException(); } + public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES20.All format) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -37599,7 +37599,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetImageHandleNV")] [CLSCompliant(false)] - public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES20.All format) { throw new NotImplementedException(); } + public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES20.All format) { throw new BindingsNotRewrittenException(); } /// [requires: NV_internalformat_sample_query] /// @@ -37610,7 +37610,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] - public static void GetInternalformatSample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 samples, OpenTK.Graphics.ES20.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetInternalformatSample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 samples, OpenTK.Graphics.ES20.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_internalformat_sample_query] /// @@ -37621,7 +37621,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] - public static void GetInternalformatSample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 samples, OpenTK.Graphics.ES20.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetInternalformatSample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 samples, OpenTK.Graphics.ES20.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_internalformat_sample_query] /// @@ -37632,7 +37632,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] - public static unsafe void GetInternalformatSample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 samples, OpenTK.Graphics.ES20.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetInternalformatSample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 samples, OpenTK.Graphics.ES20.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37640,7 +37640,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void GetPathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37648,7 +37648,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new NotImplementedException(); } + public static void GetPathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37656,7 +37656,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37664,7 +37664,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37672,7 +37672,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37680,169 +37680,169 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] - public static unsafe void GetPathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static Byte GetPathCommand(Int32 path) { throw new NotImplementedException(); } + public static Byte GetPathCommand(Int32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static Byte GetPathCommand(UInt32 path) { throw new NotImplementedException(); } + public static Byte GetPathCommand(UInt32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte[] commands) { throw new NotImplementedException(); } + public static void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte[] commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Byte commands) { throw new NotImplementedException(); } + public static void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Byte commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static unsafe void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands) { throw new NotImplementedException(); } + public static unsafe void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte[] commands) { throw new NotImplementedException(); } + public static void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte[] commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Byte commands) { throw new NotImplementedException(); } + public static void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Byte commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static unsafe void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands) { throw new NotImplementedException(); } + public static unsafe void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static Single GetPathCoord(Int32 path) { throw new NotImplementedException(); } + public static Single GetPathCoord(Int32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static Single GetPathCoord(UInt32 path) { throw new NotImplementedException(); } + public static Single GetPathCoord(UInt32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] coords) { throw new NotImplementedException(); } + public static void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single coords) { throw new NotImplementedException(); } + public static void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static unsafe void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords) { throw new NotImplementedException(); } + public static unsafe void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] coords) { throw new NotImplementedException(); } + public static void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single coords) { throw new NotImplementedException(); } + public static void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static unsafe void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords) { throw new NotImplementedException(); } + public static unsafe void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static Single GetPathDashArray(Int32 path) { throw new NotImplementedException(); } + public static Single GetPathDashArray(Int32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static Single GetPathDashArray(UInt32 path) { throw new NotImplementedException(); } + public static Single GetPathDashArray(UInt32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] dashArray) { throw new NotImplementedException(); } + public static void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single dashArray) { throw new NotImplementedException(); } + public static void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static unsafe void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray) { throw new NotImplementedException(); } + public static unsafe void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] dashArray) { throw new NotImplementedException(); } + public static void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single dashArray) { throw new NotImplementedException(); } + public static void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static unsafe void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray) { throw new NotImplementedException(); } + public static unsafe void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37850,7 +37850,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathLengthNV")] [CLSCompliant(false)] - public static Single GetPathLength(Int32 path, Int32 startSegment, Int32 numSegments) { throw new NotImplementedException(); } + public static Single GetPathLength(Int32 path, Int32 startSegment, Int32 numSegments) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37858,7 +37858,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathLengthNV")] [CLSCompliant(false)] - public static Single GetPathLength(UInt32 path, Int32 startSegment, Int32 numSegments) { throw new NotImplementedException(); } + public static Single GetPathLength(UInt32 path, Int32 startSegment, Int32 numSegments) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37868,7 +37868,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new NotImplementedException(); } + public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37878,7 +37878,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new NotImplementedException(); } + public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37888,7 +37888,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new NotImplementedException(); } + public static unsafe void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37898,7 +37898,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new NotImplementedException(); } + public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37908,7 +37908,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new NotImplementedException(); } + public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37918,7 +37918,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new NotImplementedException(); } + public static unsafe void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37930,7 +37930,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new NotImplementedException(); } + public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37942,7 +37942,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new NotImplementedException(); } + public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37954,7 +37954,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new NotImplementedException(); } + public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37968,7 +37968,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37982,7 +37982,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37996,7 +37996,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38010,7 +38010,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38024,7 +38024,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38038,7 +38038,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38052,7 +38052,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38066,7 +38066,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38080,7 +38080,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38094,7 +38094,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38108,7 +38108,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38122,7 +38122,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38134,7 +38134,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new NotImplementedException(); } + public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38146,7 +38146,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new NotImplementedException(); } + public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38158,7 +38158,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new NotImplementedException(); } + public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38172,7 +38172,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38186,7 +38186,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38200,7 +38200,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38214,7 +38214,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38228,7 +38228,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38242,7 +38242,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38256,7 +38256,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38270,7 +38270,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38284,7 +38284,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38298,7 +38298,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38312,7 +38312,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38326,7 +38326,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38334,7 +38334,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new NotImplementedException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38342,7 +38342,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new NotImplementedException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38350,7 +38350,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38358,7 +38358,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new NotImplementedException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38366,7 +38366,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new NotImplementedException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38374,7 +38374,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38382,7 +38382,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38390,7 +38390,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38398,7 +38398,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38406,7 +38406,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38414,7 +38414,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38422,7 +38422,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38436,7 +38436,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new NotImplementedException(); } + public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38450,7 +38450,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new NotImplementedException(); } + public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38464,7 +38464,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new NotImplementedException(); } + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38478,7 +38478,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new NotImplementedException(); } + public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38492,7 +38492,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new NotImplementedException(); } + public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38506,7 +38506,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new NotImplementedException(); } + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38522,7 +38522,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38538,7 +38538,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38554,7 +38554,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38570,7 +38570,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38586,7 +38586,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38602,7 +38602,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38618,7 +38618,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38634,7 +38634,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38650,7 +38650,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38666,7 +38666,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38682,7 +38682,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38698,7 +38698,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38714,7 +38714,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38730,7 +38730,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38746,7 +38746,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38762,7 +38762,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38778,7 +38778,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38794,7 +38794,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38810,7 +38810,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38826,7 +38826,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38842,7 +38842,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38858,7 +38858,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38874,7 +38874,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38890,7 +38890,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38899,7 +38899,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES20.All texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES20.All texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38908,7 +38908,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES20.All texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES20.All texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38917,7 +38917,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathTexGen(OpenTK.Graphics.ES20.All texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.ES20.All texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38925,7 +38925,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES20.TextureUnit texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES20.TextureUnit texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38933,7 +38933,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES20.TextureUnit texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES20.TextureUnit texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38941,7 +38941,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathTexGen(OpenTK.Graphics.ES20.TextureUnit texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.ES20.TextureUnit texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38950,7 +38950,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES20.All texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES20.All texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38959,7 +38959,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES20.All texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES20.All texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38968,7 +38968,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static unsafe void GetPathTexGen(OpenTK.Graphics.ES20.All texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.ES20.All texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38976,7 +38976,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES20.TextureUnit texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES20.TextureUnit texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38984,7 +38984,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES20.TextureUnit texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES20.TextureUnit texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38992,7 +38992,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static unsafe void GetPathTexGen(OpenTK.Graphics.ES20.TextureUnit texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.ES20.TextureUnit texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -39011,7 +39011,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES20.All programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.ES20.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES20.All programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.ES20.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -39030,7 +39030,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES20.All programInterface, Int32 index, Int32 propCount, ref OpenTK.Graphics.ES20.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES20.All programInterface, Int32 index, Int32 propCount, ref OpenTK.Graphics.ES20.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -39049,7 +39049,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.ES20.All programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.ES20.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.ES20.All programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.ES20.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -39068,7 +39068,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES20.All programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.ES20.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES20.All programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.ES20.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -39087,7 +39087,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES20.All programInterface, UInt32 index, Int32 propCount, ref OpenTK.Graphics.ES20.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES20.All programInterface, UInt32 index, Int32 propCount, ref OpenTK.Graphics.ES20.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -39106,33 +39106,33 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.ES20.All programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.ES20.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.ES20.All programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.ES20.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleNV")] [CLSCompliant(false)] - public static Int64 GetTextureHandle(Int32 texture) { throw new NotImplementedException(); } + public static Int64 GetTextureHandle(Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleNV")] [CLSCompliant(false)] - public static Int64 GetTextureHandle(UInt32 texture) { throw new NotImplementedException(); } + public static Int64 GetTextureHandle(UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureSamplerHandleNV")] [CLSCompliant(false)] - public static Int64 GetTextureSamplerHandle(Int32 texture, Int32 sampler) { throw new NotImplementedException(); } + public static Int64 GetTextureSamplerHandle(Int32 texture, Int32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureSamplerHandleNV")] [CLSCompliant(false)] - public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new NotImplementedException(); } + public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Return the value of a uniform variable @@ -39148,7 +39148,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Return the value of a uniform variable @@ -39164,7 +39164,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Return the value of a uniform variable @@ -39180,7 +39180,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Return the value of a uniform variable @@ -39196,7 +39196,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Return the value of a uniform variable @@ -39212,7 +39212,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Return the value of a uniform variable @@ -39228,12 +39228,12 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [length: COMPSIZE(name)] [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glGetVkProcAddrNV")] - public static IntPtr GetVkProcAddr([CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static IntPtr GetVkProcAddr([CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39242,7 +39242,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glInterpolatePathsNV")] [CLSCompliant(false)] - public static void InterpolatePath(Int32 resultPath, Int32 pathA, Int32 pathB, Single weight) { throw new NotImplementedException(); } + public static void InterpolatePath(Int32 resultPath, Int32 pathA, Int32 pathB, Single weight) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39251,7 +39251,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glInterpolatePathsNV")] [CLSCompliant(false)] - public static void InterpolatePath(UInt32 resultPath, UInt32 pathA, UInt32 pathB, Single weight) { throw new NotImplementedException(); } + public static void InterpolatePath(UInt32 resultPath, UInt32 pathA, UInt32 pathB, Single weight) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Test whether a capability is enabled @@ -39262,7 +39262,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glIsEnablediNV")] [CLSCompliant(false)] - public static bool IsEnabled(OpenTK.Graphics.ES20.All target, Int32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES20.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Test whether a capability is enabled @@ -39273,43 +39273,43 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glIsEnablediNV")] [CLSCompliant(false)] - public static bool IsEnabled(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glIsFenceNV")] [CLSCompliant(false)] - public static bool IsFence(Int32 fence) { throw new NotImplementedException(); } + public static bool IsFence(Int32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glIsFenceNV")] [CLSCompliant(false)] - public static bool IsFence(UInt32 fence) { throw new NotImplementedException(); } + public static bool IsFence(UInt32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsImageHandleResidentNV")] [CLSCompliant(false)] - public static bool IsImageHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static bool IsImageHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsImageHandleResidentNV")] [CLSCompliant(false)] - public static bool IsImageHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static bool IsImageHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPathNV")] [CLSCompliant(false)] - public static bool IsPath(Int32 path) { throw new NotImplementedException(); } + public static bool IsPath(Int32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPathNV")] [CLSCompliant(false)] - public static bool IsPath(UInt32 path) { throw new NotImplementedException(); } + public static bool IsPath(UInt32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39318,7 +39318,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPointInFillPathNV")] [CLSCompliant(false)] - public static bool IsPointInFillPath(Int32 path, Int32 mask, Single x, Single y) { throw new NotImplementedException(); } + public static bool IsPointInFillPath(Int32 path, Int32 mask, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39327,7 +39327,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPointInFillPathNV")] [CLSCompliant(false)] - public static bool IsPointInFillPath(UInt32 path, UInt32 mask, Single x, Single y) { throw new NotImplementedException(); } + public static bool IsPointInFillPath(UInt32 path, UInt32 mask, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39335,7 +39335,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPointInStrokePathNV")] [CLSCompliant(false)] - public static bool IsPointInStrokePath(Int32 path, Single x, Single y) { throw new NotImplementedException(); } + public static bool IsPointInStrokePath(Int32 path, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39343,195 +39343,195 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPointInStrokePathNV")] [CLSCompliant(false)] - public static bool IsPointInStrokePath(UInt32 path, Single x, Single y) { throw new NotImplementedException(); } + public static bool IsPointInStrokePath(UInt32 path, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsTextureHandleResidentNV")] [CLSCompliant(false)] - public static bool IsTextureHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static bool IsTextureHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsTextureHandleResidentNV")] [CLSCompliant(false)] - public static bool IsTextureHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static bool IsTextureHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleNonResidentNV")] [CLSCompliant(false)] - public static void MakeImageHandleNonResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeImageHandleNonResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleNonResidentNV")] [CLSCompliant(false)] - public static void MakeImageHandleNonResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeImageHandleNonResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleResidentNV")] [CLSCompliant(false)] - public static void MakeImageHandleResident(Int64 handle, OpenTK.Graphics.ES20.All access) { throw new NotImplementedException(); } + public static void MakeImageHandleResident(Int64 handle, OpenTK.Graphics.ES20.All access) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleResidentNV")] [CLSCompliant(false)] - public static void MakeImageHandleResident(UInt64 handle, OpenTK.Graphics.ES20.All access) { throw new NotImplementedException(); } + public static void MakeImageHandleResident(UInt64 handle, OpenTK.Graphics.ES20.All access) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleNonResidentNV")] [CLSCompliant(false)] - public static void MakeTextureHandleNonResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleNonResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleNonResidentNV")] [CLSCompliant(false)] - public static void MakeTextureHandleNonResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleNonResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleResidentNV")] [CLSCompliant(false)] - public static void MakeTextureHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleResidentNV")] [CLSCompliant(false)] - public static void MakeTextureHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x2fNV")] [CLSCompliant(false)] - public static void MatrixLoad3x2(OpenTK.Graphics.ES20.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixLoad3x2(OpenTK.Graphics.ES20.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x2fNV")] [CLSCompliant(false)] - public static void MatrixLoad3x2(OpenTK.Graphics.ES20.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixLoad3x2(OpenTK.Graphics.ES20.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x2fNV")] [CLSCompliant(false)] - public static unsafe void MatrixLoad3x2(OpenTK.Graphics.ES20.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoad3x2(OpenTK.Graphics.ES20.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x3fNV")] [CLSCompliant(false)] - public static void MatrixLoad3x3(OpenTK.Graphics.ES20.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixLoad3x3(OpenTK.Graphics.ES20.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x3fNV")] [CLSCompliant(false)] - public static void MatrixLoad3x3(OpenTK.Graphics.ES20.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixLoad3x3(OpenTK.Graphics.ES20.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x3fNV")] [CLSCompliant(false)] - public static unsafe void MatrixLoad3x3(OpenTK.Graphics.ES20.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoad3x3(OpenTK.Graphics.ES20.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTranspose3x3fNV")] [CLSCompliant(false)] - public static void MatrixLoadTranspose3x3(OpenTK.Graphics.ES20.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixLoadTranspose3x3(OpenTK.Graphics.ES20.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTranspose3x3fNV")] [CLSCompliant(false)] - public static void MatrixLoadTranspose3x3(OpenTK.Graphics.ES20.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixLoadTranspose3x3(OpenTK.Graphics.ES20.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTranspose3x3fNV")] [CLSCompliant(false)] - public static unsafe void MatrixLoadTranspose3x3(OpenTK.Graphics.ES20.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoadTranspose3x3(OpenTK.Graphics.ES20.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x2fNV")] [CLSCompliant(false)] - public static void MatrixMult3x2(OpenTK.Graphics.ES20.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixMult3x2(OpenTK.Graphics.ES20.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x2fNV")] [CLSCompliant(false)] - public static void MatrixMult3x2(OpenTK.Graphics.ES20.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixMult3x2(OpenTK.Graphics.ES20.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x2fNV")] [CLSCompliant(false)] - public static unsafe void MatrixMult3x2(OpenTK.Graphics.ES20.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMult3x2(OpenTK.Graphics.ES20.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x3fNV")] [CLSCompliant(false)] - public static void MatrixMult3x3(OpenTK.Graphics.ES20.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixMult3x3(OpenTK.Graphics.ES20.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x3fNV")] [CLSCompliant(false)] - public static void MatrixMult3x3(OpenTK.Graphics.ES20.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixMult3x3(OpenTK.Graphics.ES20.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x3fNV")] [CLSCompliant(false)] - public static unsafe void MatrixMult3x3(OpenTK.Graphics.ES20.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMult3x3(OpenTK.Graphics.ES20.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTranspose3x3fNV")] [CLSCompliant(false)] - public static void MatrixMultTranspose3x3(OpenTK.Graphics.ES20.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixMultTranspose3x3(OpenTK.Graphics.ES20.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTranspose3x3fNV")] [CLSCompliant(false)] - public static void MatrixMultTranspose3x3(OpenTK.Graphics.ES20.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixMultTranspose3x3(OpenTK.Graphics.ES20.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTranspose3x3fNV")] [CLSCompliant(false)] - public static unsafe void MatrixMultTranspose3x3(OpenTK.Graphics.ES20.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMultTranspose3x3(OpenTK.Graphics.ES20.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -39540,7 +39540,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -39549,7 +39549,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -39558,7 +39558,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -39567,7 +39567,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -39576,7 +39576,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -39585,7 +39585,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39594,7 +39594,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(genMode,colorFormat)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] - public static void PathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All genMode, OpenTK.Graphics.ES20.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single[] coeffs) { throw new NotImplementedException(); } + public static void PathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All genMode, OpenTK.Graphics.ES20.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39603,7 +39603,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(genMode,colorFormat)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] - public static void PathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All genMode, OpenTK.Graphics.ES20.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] ref Single coeffs) { throw new NotImplementedException(); } + public static void PathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All genMode, OpenTK.Graphics.ES20.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39612,7 +39612,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(genMode,colorFormat)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] - public static unsafe void PathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All genMode, OpenTK.Graphics.ES20.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single* coeffs) { throw new NotImplementedException(); } + public static unsafe void PathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All genMode, OpenTK.Graphics.ES20.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39623,7 +39623,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39636,7 +39636,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39649,7 +39649,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39662,7 +39662,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39675,7 +39675,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39686,7 +39686,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39699,7 +39699,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39712,7 +39712,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39725,7 +39725,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39738,7 +39738,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39749,7 +39749,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39762,7 +39762,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39775,7 +39775,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39788,7 +39788,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39801,7 +39801,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39812,7 +39812,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39825,7 +39825,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39838,7 +39838,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39851,7 +39851,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39864,7 +39864,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39875,7 +39875,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39888,7 +39888,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39901,7 +39901,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39914,7 +39914,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39927,7 +39927,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39938,7 +39938,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39951,7 +39951,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39964,7 +39964,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39977,7 +39977,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39990,7 +39990,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39999,7 +39999,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoordsNV")] [CLSCompliant(false)] - public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40010,7 +40010,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40021,7 +40021,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[,] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40032,7 +40032,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[,,] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40043,7 +40043,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T3 coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40052,7 +40052,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoordsNV")] [CLSCompliant(false)] - public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40063,7 +40063,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40074,7 +40074,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[,] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40085,7 +40085,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[,,] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40096,18 +40096,18 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T3 coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoverDepthFuncNV")] - public static void PathCoverDepthFunc(OpenTK.Graphics.ES20.All func) { throw new NotImplementedException(); } + public static void PathCoverDepthFunc(OpenTK.Graphics.ES20.All func) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoverDepthFuncNV")] - public static void PathCoverDepthFunc(OpenTK.Graphics.ES20.DepthFunction func) { throw new NotImplementedException(); } + public static void PathCoverDepthFunc(OpenTK.Graphics.ES20.DepthFunction func) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40115,7 +40115,7 @@ namespace OpenTK.Graphics.ES20 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single[] dashArray) { throw new NotImplementedException(); } + public static void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single[] dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40123,7 +40123,7 @@ namespace OpenTK.Graphics.ES20 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] ref Single dashArray) { throw new NotImplementedException(); } + public static void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] ref Single dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40131,7 +40131,7 @@ namespace OpenTK.Graphics.ES20 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static unsafe void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray) { throw new NotImplementedException(); } + public static unsafe void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40139,7 +40139,7 @@ namespace OpenTK.Graphics.ES20 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single[] dashArray) { throw new NotImplementedException(); } + public static void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single[] dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40147,7 +40147,7 @@ namespace OpenTK.Graphics.ES20 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] ref Single dashArray) { throw new NotImplementedException(); } + public static void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] ref Single dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40155,12 +40155,12 @@ namespace OpenTK.Graphics.ES20 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static unsafe void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray) { throw new NotImplementedException(); } + public static unsafe void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathFogGenNV")] - public static void PathFogGen(OpenTK.Graphics.ES20.All genMode) { throw new NotImplementedException(); } + public static void PathFogGen(OpenTK.Graphics.ES20.All genMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40173,7 +40173,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, IntPtr fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, IntPtr fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40188,7 +40188,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T2[] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40203,7 +40203,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T2[,] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40218,7 +40218,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40233,7 +40233,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] ref T2 fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40246,7 +40246,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40261,7 +40261,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T2[] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40276,7 +40276,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T2[,] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40291,7 +40291,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40306,7 +40306,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] ref T2 fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40317,7 +40317,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, IntPtr fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, IntPtr fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40328,7 +40328,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40341,7 +40341,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T1[] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40354,7 +40354,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T1[] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40367,7 +40367,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T1[,] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40380,7 +40380,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T1[,] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40393,7 +40393,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40406,7 +40406,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40419,7 +40419,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] ref T1 fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40432,7 +40432,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] ref T1 fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40446,7 +40446,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40462,7 +40462,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40478,7 +40478,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40494,7 +40494,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40510,7 +40510,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40524,7 +40524,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40540,7 +40540,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40556,7 +40556,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40572,7 +40572,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40588,7 +40588,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40603,7 +40603,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40621,7 +40621,7 @@ namespace OpenTK.Graphics.ES20 public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40639,7 +40639,7 @@ namespace OpenTK.Graphics.ES20 public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40657,7 +40657,7 @@ namespace OpenTK.Graphics.ES20 public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40675,7 +40675,7 @@ namespace OpenTK.Graphics.ES20 public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40690,7 +40690,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40708,7 +40708,7 @@ namespace OpenTK.Graphics.ES20 public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40726,7 +40726,7 @@ namespace OpenTK.Graphics.ES20 public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40744,7 +40744,7 @@ namespace OpenTK.Graphics.ES20 public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40762,7 +40762,7 @@ namespace OpenTK.Graphics.ES20 public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40776,7 +40776,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathMemoryGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, Int32 fontSize, IntPtr fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, Int32 fontSize, IntPtr fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40792,7 +40792,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40808,7 +40808,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[,] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40824,7 +40824,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[,,] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40840,7 +40840,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] ref T3 fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40854,7 +40854,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathMemoryGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40870,7 +40870,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40886,7 +40886,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[,] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40902,7 +40902,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[,,] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40918,7 +40918,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] ref T3 fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40932,7 +40932,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathMemoryGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, Int32 fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, Int32 fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40948,7 +40948,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40964,7 +40964,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[,] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40980,7 +40980,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[,,] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40996,7 +40996,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] ref T3 fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41010,7 +41010,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathMemoryGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41026,7 +41026,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41042,7 +41042,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[,] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41058,7 +41058,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[,,] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41074,7 +41074,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] ref T3 fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41082,7 +41082,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, Single value) { throw new NotImplementedException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41090,7 +41090,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, Single value) { throw new NotImplementedException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41098,7 +41098,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41106,7 +41106,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41114,7 +41114,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41122,7 +41122,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41130,7 +41130,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameteriNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, Int32 value) { throw new NotImplementedException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41138,7 +41138,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameteriNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, Int32 value) { throw new NotImplementedException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41146,7 +41146,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41154,7 +41154,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41162,7 +41162,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41170,13 +41170,13 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilDepthOffsetNV")] - public static void PathStencilDepthOffset(Single factor, Single units) { throw new NotImplementedException(); } + public static void PathStencilDepthOffset(Single factor, Single units) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41185,7 +41185,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilFuncNV")] [CLSCompliant(false)] - public static void PathStencilFunc(OpenTK.Graphics.ES20.All func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } + public static void PathStencilFunc(OpenTK.Graphics.ES20.All func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41194,7 +41194,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilFuncNV")] [CLSCompliant(false)] - public static void PathStencilFunc(OpenTK.Graphics.ES20.All func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } + public static void PathStencilFunc(OpenTK.Graphics.ES20.All func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41202,7 +41202,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilFuncNV")] [CLSCompliant(false)] - public static void PathStencilFunc(OpenTK.Graphics.ES20.StencilFunction func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } + public static void PathStencilFunc(OpenTK.Graphics.ES20.StencilFunction func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41210,7 +41210,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilFuncNV")] [CLSCompliant(false)] - public static void PathStencilFunc(OpenTK.Graphics.ES20.StencilFunction func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } + public static void PathStencilFunc(OpenTK.Graphics.ES20.StencilFunction func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41219,7 +41219,7 @@ namespace OpenTK.Graphics.ES20 /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] - public static void PathString(Int32 path, OpenTK.Graphics.ES20.All format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new NotImplementedException(); } + public static void PathString(Int32 path, OpenTK.Graphics.ES20.All format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41230,7 +41230,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.ES20.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41241,7 +41241,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.ES20.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41252,7 +41252,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.ES20.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41263,7 +41263,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.ES20.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41272,7 +41272,7 @@ namespace OpenTK.Graphics.ES20 /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] - public static void PathString(UInt32 path, OpenTK.Graphics.ES20.All format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new NotImplementedException(); } + public static void PathString(UInt32 path, OpenTK.Graphics.ES20.All format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41283,7 +41283,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.ES20.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41294,7 +41294,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.ES20.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41305,7 +41305,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.ES20.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41316,7 +41316,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.ES20.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41329,7 +41329,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41344,7 +41344,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41359,7 +41359,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41374,7 +41374,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41389,7 +41389,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41402,7 +41402,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41417,7 +41417,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41432,7 +41432,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41447,7 +41447,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41462,7 +41462,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41475,7 +41475,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41490,7 +41490,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41505,7 +41505,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41520,7 +41520,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41535,7 +41535,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41548,7 +41548,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41563,7 +41563,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41578,7 +41578,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41593,7 +41593,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41608,7 +41608,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41621,7 +41621,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41636,7 +41636,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41651,7 +41651,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41666,7 +41666,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41681,7 +41681,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41694,7 +41694,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41709,7 +41709,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41724,7 +41724,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41739,7 +41739,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41754,7 +41754,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41764,7 +41764,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCoordsNV")] [CLSCompliant(false)] - public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41776,7 +41776,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41788,7 +41788,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[,] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41800,7 +41800,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[,,] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41812,7 +41812,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T4 coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41822,7 +41822,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCoordsNV")] [CLSCompliant(false)] - public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41834,7 +41834,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41846,7 +41846,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[,] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41858,7 +41858,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[,,] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41870,7 +41870,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T4 coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41879,7 +41879,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(genMode,components)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] - public static void PathTexGen(OpenTK.Graphics.ES20.All texCoordSet, OpenTK.Graphics.ES20.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single[] coeffs) { throw new NotImplementedException(); } + public static void PathTexGen(OpenTK.Graphics.ES20.All texCoordSet, OpenTK.Graphics.ES20.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41888,7 +41888,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(genMode,components)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] - public static void PathTexGen(OpenTK.Graphics.ES20.All texCoordSet, OpenTK.Graphics.ES20.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] ref Single coeffs) { throw new NotImplementedException(); } + public static void PathTexGen(OpenTK.Graphics.ES20.All texCoordSet, OpenTK.Graphics.ES20.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41897,7 +41897,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(genMode,components)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] - public static unsafe void PathTexGen(OpenTK.Graphics.ES20.All texCoordSet, OpenTK.Graphics.ES20.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single* coeffs) { throw new NotImplementedException(); } + public static unsafe void PathTexGen(OpenTK.Graphics.ES20.All texCoordSet, OpenTK.Graphics.ES20.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41910,7 +41910,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] [CLSCompliant(false)] - public static bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] out Single x, [OutAttribute, CountAttribute(Count = 1)] out Single y, [OutAttribute, CountAttribute(Count = 1)] out Single tangentX, [OutAttribute, CountAttribute(Count = 1)] out Single tangentY) { throw new NotImplementedException(); } + public static bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] out Single x, [OutAttribute, CountAttribute(Count = 1)] out Single y, [OutAttribute, CountAttribute(Count = 1)] out Single tangentX, [OutAttribute, CountAttribute(Count = 1)] out Single tangentY) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41923,7 +41923,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] [CLSCompliant(false)] - public static unsafe bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY) { throw new NotImplementedException(); } + public static unsafe bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41936,7 +41936,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] [CLSCompliant(false)] - public static bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] out Single x, [OutAttribute, CountAttribute(Count = 1)] out Single y, [OutAttribute, CountAttribute(Count = 1)] out Single tangentX, [OutAttribute, CountAttribute(Count = 1)] out Single tangentY) { throw new NotImplementedException(); } + public static bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] out Single x, [OutAttribute, CountAttribute(Count = 1)] out Single y, [OutAttribute, CountAttribute(Count = 1)] out Single tangentX, [OutAttribute, CountAttribute(Count = 1)] out Single tangentY) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41949,7 +41949,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] [CLSCompliant(false)] - public static unsafe bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY) { throw new NotImplementedException(); } + public static unsafe bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY) { throw new BindingsNotRewrittenException(); } /// [requires: NV_polygon_mode] /// Select a polygon rasterization mode @@ -41962,7 +41962,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_polygon_mode", Version = "", EntryPoint = "glPolygonModeNV")] - public static void PolygonMode(OpenTK.Graphics.ES20.All face, OpenTK.Graphics.ES20.All mode) { throw new NotImplementedException(); } + public static void PolygonMode(OpenTK.Graphics.ES20.All face, OpenTK.Graphics.ES20.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_polygon_mode] /// Select a polygon rasterization mode @@ -41974,7 +41974,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies how polygons will be rasterized. Accepted values are Point, Line, and Fill. The initial value is Fill for both front- and back-facing polygons. /// [AutoGenerated(Category = "NV_polygon_mode", Version = "", EntryPoint = "glPolygonModeNV")] - public static void PolygonMode(OpenTK.Graphics.ES20.MaterialFace face, OpenTK.Graphics.ES20.PolygonMode mode) { throw new NotImplementedException(); } + public static void PolygonMode(OpenTK.Graphics.ES20.MaterialFace face, OpenTK.Graphics.ES20.PolygonMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41984,7 +41984,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.ES20.All genMode, Int32 components, Single[] coeffs) { throw new NotImplementedException(); } + public static void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.ES20.All genMode, Int32 components, Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41994,7 +41994,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.ES20.All genMode, Int32 components, ref Single coeffs) { throw new NotImplementedException(); } + public static void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.ES20.All genMode, Int32 components, ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42004,7 +42004,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static unsafe void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.ES20.All genMode, Int32 components, Single* coeffs) { throw new NotImplementedException(); } + public static unsafe void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.ES20.All genMode, Int32 components, Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42014,7 +42014,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.ES20.All genMode, Int32 components, Single[] coeffs) { throw new NotImplementedException(); } + public static void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.ES20.All genMode, Int32 components, Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42024,7 +42024,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.ES20.All genMode, Int32 components, ref Single coeffs) { throw new NotImplementedException(); } + public static void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.ES20.All genMode, Int32 components, ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42034,7 +42034,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static unsafe void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.ES20.All genMode, Int32 components, Single* coeffs) { throw new NotImplementedException(); } + public static unsafe void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.ES20.All genMode, Int32 components, Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42050,7 +42050,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64NV")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42066,7 +42066,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64NV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42085,7 +42085,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42104,7 +42104,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42123,7 +42123,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42142,7 +42142,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42161,7 +42161,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42180,7 +42180,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42196,7 +42196,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64NV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, UInt64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, UInt64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42215,7 +42215,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42234,7 +42234,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42253,7 +42253,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42272,7 +42272,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64NV")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int64 x, Int64 y) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42291,7 +42291,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64NV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int64 x, Int64 y) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42310,7 +42310,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42329,7 +42329,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42348,7 +42348,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42367,7 +42367,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42386,7 +42386,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42405,7 +42405,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42424,7 +42424,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2ui64NV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, UInt64 x, UInt64 y) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, UInt64 x, UInt64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42443,7 +42443,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42462,7 +42462,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42481,7 +42481,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2ui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42503,7 +42503,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64NV")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42525,7 +42525,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64NV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42544,7 +42544,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42563,7 +42563,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42582,7 +42582,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42601,7 +42601,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42620,7 +42620,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42639,7 +42639,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42661,7 +42661,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3ui64NV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42680,7 +42680,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42699,7 +42699,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42718,7 +42718,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3ui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42743,7 +42743,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64NV")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42768,7 +42768,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64NV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42787,7 +42787,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42806,7 +42806,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42825,7 +42825,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42844,7 +42844,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42863,7 +42863,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42882,7 +42882,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42907,7 +42907,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4ui64NV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42926,7 +42926,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42945,7 +42945,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42964,7 +42964,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4ui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -42972,7 +42972,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64NV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -42980,7 +42980,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64NV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -42989,7 +42989,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -42998,7 +42998,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -43007,7 +43007,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* values) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -43016,7 +43016,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -43025,7 +43025,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -43034,7 +43034,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_read_buffer] /// Select a color buffer source for pixels @@ -43043,7 +43043,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a color buffer. Accepted values are FrontLeft, FrontRight, BackLeft, BackRight, Front, Back, Left, Right, and the constants ColorAttachmenti. /// [AutoGenerated(Category = "NV_read_buffer", Version = "", EntryPoint = "glReadBufferNV")] - public static void ReadBuffer(OpenTK.Graphics.ES20.All mode) { throw new NotImplementedException(); } + public static void ReadBuffer(OpenTK.Graphics.ES20.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_multisample] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -43065,7 +43065,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleNV")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.All target, Int32 samples, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.All target, Int32 samples, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_multisample] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -43086,11 +43086,11 @@ namespace OpenTK.Graphics.ES20 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "NV_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleNV")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES20.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES20.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glResolveDepthValuesNV")] - public static void ResolveDepthValues() { throw new NotImplementedException(); } + public static void ResolveDepthValues() { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for multiple viewports @@ -43106,7 +43106,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorArrayvNV")] [CLSCompliant(false)] - public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for multiple viewports @@ -43122,7 +43122,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorArrayvNV")] [CLSCompliant(false)] - public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for multiple viewports @@ -43138,7 +43138,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorArrayvNV")] [CLSCompliant(false)] - public static unsafe void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for multiple viewports @@ -43154,7 +43154,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorArrayvNV")] [CLSCompliant(false)] - public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for multiple viewports @@ -43170,7 +43170,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorArrayvNV")] [CLSCompliant(false)] - public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for multiple viewports @@ -43186,7 +43186,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorArrayvNV")] [CLSCompliant(false)] - public static unsafe void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -43208,7 +43208,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedNV")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -43230,7 +43230,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedNV")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -43243,7 +43243,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedvNV")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -43256,7 +43256,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedvNV")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -43269,7 +43269,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedvNV")] [CLSCompliant(false)] - public static unsafe void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -43282,7 +43282,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedvNV")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -43295,7 +43295,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedvNV")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -43308,45 +43308,45 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedvNV")] [CLSCompliant(false)] - public static unsafe void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glSetFenceNV")] [CLSCompliant(false)] - public static void SetFence(Int32 fence, OpenTK.Graphics.ES20.All condition) { throw new NotImplementedException(); } + public static void SetFence(Int32 fence, OpenTK.Graphics.ES20.All condition) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glSetFenceNV")] [CLSCompliant(false)] - public static void SetFence(UInt32 fence, OpenTK.Graphics.ES20.All condition) { throw new NotImplementedException(); } + public static void SetFence(UInt32 fence, OpenTK.Graphics.ES20.All condition) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glSignalVkFenceNV")] [CLSCompliant(false)] - public static void SignalVkFence(Int64 vkFence) { throw new NotImplementedException(); } + public static void SignalVkFence(Int64 vkFence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glSignalVkFenceNV")] [CLSCompliant(false)] - public static void SignalVkFence(UInt64 vkFence) { throw new NotImplementedException(); } + public static void SignalVkFence(UInt64 vkFence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glSignalVkSemaphoreNV")] [CLSCompliant(false)] - public static void SignalVkSemaphore(Int64 vkSemaphore) { throw new NotImplementedException(); } + public static void SignalVkSemaphore(Int64 vkSemaphore) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glSignalVkSemaphoreNV")] [CLSCompliant(false)] - public static void SignalVkSemaphore(UInt64 vkSemaphore) { throw new NotImplementedException(); } + public static void SignalVkSemaphore(UInt64 vkSemaphore) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43359,7 +43359,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43372,7 +43372,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43385,7 +43385,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43398,7 +43398,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43411,7 +43411,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43424,7 +43424,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43439,7 +43439,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43454,7 +43454,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43469,7 +43469,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43484,7 +43484,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43499,7 +43499,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43514,7 +43514,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43529,7 +43529,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43544,7 +43544,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43559,7 +43559,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43574,7 +43574,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43589,7 +43589,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43604,7 +43604,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43619,7 +43619,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43634,7 +43634,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43649,7 +43649,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43664,7 +43664,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43679,7 +43679,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43694,7 +43694,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43709,7 +43709,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43724,7 +43724,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43739,7 +43739,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43754,7 +43754,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43769,7 +43769,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43784,7 +43784,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43792,7 +43792,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathNV")] [CLSCompliant(false)] - public static void StencilFillPath(Int32 path, OpenTK.Graphics.ES20.All fillMode, Int32 mask) { throw new NotImplementedException(); } + public static void StencilFillPath(Int32 path, OpenTK.Graphics.ES20.All fillMode, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43800,7 +43800,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathNV")] [CLSCompliant(false)] - public static void StencilFillPath(UInt32 path, OpenTK.Graphics.ES20.All fillMode, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFillPath(UInt32 path, OpenTK.Graphics.ES20.All fillMode, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43813,7 +43813,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43826,7 +43826,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43839,7 +43839,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43852,7 +43852,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43865,7 +43865,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43878,7 +43878,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43893,7 +43893,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43908,7 +43908,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43923,7 +43923,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43938,7 +43938,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43953,7 +43953,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43968,7 +43968,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43983,7 +43983,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43998,7 +43998,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44013,7 +44013,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44028,7 +44028,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44043,7 +44043,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44058,7 +44058,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44073,7 +44073,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44088,7 +44088,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44103,7 +44103,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44118,7 +44118,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44133,7 +44133,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44148,7 +44148,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44163,7 +44163,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44178,7 +44178,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44193,7 +44193,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44208,7 +44208,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44223,7 +44223,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44238,7 +44238,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44246,7 +44246,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathNV")] [CLSCompliant(false)] - public static void StencilStrokePath(Int32 path, Int32 reference, Int32 mask) { throw new NotImplementedException(); } + public static void StencilStrokePath(Int32 path, Int32 reference, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44254,7 +44254,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathNV")] [CLSCompliant(false)] - public static void StencilStrokePath(UInt32 path, Int32 reference, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilStrokePath(UInt32 path, Int32 reference, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44268,7 +44268,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44282,7 +44282,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44296,7 +44296,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44310,7 +44310,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44324,7 +44324,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44338,7 +44338,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44354,7 +44354,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44370,7 +44370,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44386,7 +44386,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44402,7 +44402,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44418,7 +44418,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44434,7 +44434,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44450,7 +44450,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44466,7 +44466,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44482,7 +44482,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44498,7 +44498,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44514,7 +44514,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44530,7 +44530,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44546,7 +44546,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44562,7 +44562,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44578,7 +44578,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44594,7 +44594,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44610,7 +44610,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44626,7 +44626,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44642,7 +44642,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44658,7 +44658,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44674,7 +44674,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44690,7 +44690,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44706,7 +44706,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44722,7 +44722,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44731,7 +44731,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPath(Int32 path, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All coverMode) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPath(Int32 path, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44740,7 +44740,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPath(UInt32 path, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All coverMode) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPath(UInt32 path, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44754,7 +44754,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44768,7 +44768,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44782,7 +44782,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44796,7 +44796,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44810,7 +44810,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44824,7 +44824,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44840,7 +44840,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44856,7 +44856,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44872,7 +44872,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44888,7 +44888,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44904,7 +44904,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44920,7 +44920,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44936,7 +44936,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44952,7 +44952,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44968,7 +44968,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44984,7 +44984,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45000,7 +45000,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45016,7 +45016,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45032,7 +45032,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45048,7 +45048,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45064,7 +45064,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45080,7 +45080,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45096,7 +45096,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45112,7 +45112,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45128,7 +45128,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45144,7 +45144,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45160,7 +45160,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45176,7 +45176,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45192,7 +45192,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45208,7 +45208,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45217,7 +45217,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePath(Int32 path, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All coverMode) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePath(Int32 path, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45226,33 +45226,33 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePath(UInt32 path, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All coverMode) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePath(UInt32 path, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conservative_raster] /// /// [AutoGenerated(Category = "NV_conservative_raster", Version = "", EntryPoint = "glSubpixelPrecisionBiasNV")] [CLSCompliant(false)] - public static void SubpixelPrecisionBia(Int32 xbits, Int32 ybits) { throw new NotImplementedException(); } + public static void SubpixelPrecisionBia(Int32 xbits, Int32 ybits) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conservative_raster] /// /// [AutoGenerated(Category = "NV_conservative_raster", Version = "", EntryPoint = "glSubpixelPrecisionBiasNV")] [CLSCompliant(false)] - public static void SubpixelPrecisionBia(UInt32 xbits, UInt32 ybits) { throw new NotImplementedException(); } + public static void SubpixelPrecisionBia(UInt32 xbits, UInt32 ybits) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glTestFenceNV")] [CLSCompliant(false)] - public static bool TestFence(Int32 fence) { throw new NotImplementedException(); } + public static bool TestFence(Int32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glTestFenceNV")] [CLSCompliant(false)] - public static bool TestFence(UInt32 fence) { throw new NotImplementedException(); } + public static bool TestFence(UInt32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45261,7 +45261,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45270,7 +45270,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45279,7 +45279,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static unsafe void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45288,7 +45288,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45297,7 +45297,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45306,7 +45306,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static unsafe void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45318,7 +45318,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64NV")] - public static void Uniform1(Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45334,7 +45334,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64vNV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45350,7 +45350,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64vNV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45366,7 +45366,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45379,7 +45379,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64NV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, UInt64 x) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, UInt64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45395,7 +45395,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64vNV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45411,7 +45411,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64vNV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45427,7 +45427,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45442,7 +45442,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64NV")] - public static void Uniform2(Int32 location, Int64 x, Int64 y) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45458,7 +45458,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64vNV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45474,7 +45474,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64vNV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45490,7 +45490,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45506,7 +45506,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64NV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, UInt64 x, UInt64 y) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, UInt64 x, UInt64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45522,7 +45522,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64vNV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45538,7 +45538,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64vNV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45554,7 +45554,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45572,7 +45572,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64NV")] - public static void Uniform3(Int32 location, Int64 x, Int64 y, Int64 z) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45588,7 +45588,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64vNV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45604,7 +45604,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64vNV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45620,7 +45620,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45639,7 +45639,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3ui64NV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45655,7 +45655,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3ui64vNV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45671,7 +45671,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3ui64vNV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45687,7 +45687,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3ui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45708,7 +45708,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64NV")] - public static void Uniform4(Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45724,7 +45724,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64vNV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45740,7 +45740,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64vNV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45756,7 +45756,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45778,7 +45778,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4ui64NV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45794,7 +45794,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4ui64vNV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45810,7 +45810,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4ui64vNV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45826,21 +45826,21 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4ui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64NV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64NV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -45848,7 +45848,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -45856,7 +45856,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -45864,7 +45864,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -45872,7 +45872,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -45880,7 +45880,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -45888,7 +45888,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -45897,7 +45897,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*6] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x3fvNV")] [CLSCompliant(false)] - public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -45906,7 +45906,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*6] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x3fvNV")] [CLSCompliant(false)] - public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -45915,7 +45915,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*6] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x3fvNV")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -45924,7 +45924,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*8] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x4fvNV")] [CLSCompliant(false)] - public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -45933,7 +45933,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*8] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x4fvNV")] [CLSCompliant(false)] - public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -45942,7 +45942,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*8] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x4fvNV")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -45951,7 +45951,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*6] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x2fvNV")] [CLSCompliant(false)] - public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -45960,7 +45960,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*6] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x2fvNV")] [CLSCompliant(false)] - public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -45969,7 +45969,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*6] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x2fvNV")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -45978,7 +45978,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*12] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x4fvNV")] [CLSCompliant(false)] - public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -45987,7 +45987,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*12] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x4fvNV")] [CLSCompliant(false)] - public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -45996,7 +45996,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*12] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x4fvNV")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -46005,7 +46005,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*8] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x2fvNV")] [CLSCompliant(false)] - public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -46014,7 +46014,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*8] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x2fvNV")] [CLSCompliant(false)] - public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -46023,7 +46023,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*8] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x2fvNV")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -46032,7 +46032,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*12] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x3fvNV")] [CLSCompliant(false)] - public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -46041,7 +46041,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*12] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x3fvNV")] [CLSCompliant(false)] - public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -46050,7 +46050,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*12] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x3fvNV")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -46063,7 +46063,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorNV")] [CLSCompliant(false)] - public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: NV_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -46076,7 +46076,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorNV")] [CLSCompliant(false)] - public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set multiple viewports @@ -46092,7 +46092,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportArrayvNV")] [CLSCompliant(false)] - public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new NotImplementedException(); } + public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set multiple viewports @@ -46108,7 +46108,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportArrayvNV")] [CLSCompliant(false)] - public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new NotImplementedException(); } + public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set multiple viewports @@ -46124,7 +46124,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportArrayvNV")] [CLSCompliant(false)] - public static unsafe void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set multiple viewports @@ -46140,7 +46140,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportArrayvNV")] [CLSCompliant(false)] - public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new NotImplementedException(); } + public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set multiple viewports @@ -46156,7 +46156,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportArrayvNV")] [CLSCompliant(false)] - public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new NotImplementedException(); } + public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set multiple viewports @@ -46172,7 +46172,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportArrayvNV")] [CLSCompliant(false)] - public static unsafe void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -46194,7 +46194,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfNV")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, Single x, Single y, Single w, Single h) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, Single x, Single y, Single w, Single h) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -46216,7 +46216,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfNV")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, Single x, Single y, Single w, Single h) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, Single x, Single y, Single w, Single h) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -46229,7 +46229,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvNV")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -46242,7 +46242,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvNV")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -46255,7 +46255,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvNV")] [CLSCompliant(false)] - public static unsafe void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -46268,7 +46268,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvNV")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -46281,7 +46281,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvNV")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -46294,7 +46294,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvNV")] [CLSCompliant(false)] - public static unsafe void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_swizzle] /// @@ -46304,7 +46304,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_swizzle", Version = "", EntryPoint = "glViewportSwizzleNV")] [CLSCompliant(false)] - public static void ViewportSwizzle(Int32 index, OpenTK.Graphics.ES20.All swizzlex, OpenTK.Graphics.ES20.All swizzley, OpenTK.Graphics.ES20.All swizzlez, OpenTK.Graphics.ES20.All swizzlew) { throw new NotImplementedException(); } + public static void ViewportSwizzle(Int32 index, OpenTK.Graphics.ES20.All swizzlex, OpenTK.Graphics.ES20.All swizzley, OpenTK.Graphics.ES20.All swizzlez, OpenTK.Graphics.ES20.All swizzlew) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_swizzle] /// @@ -46314,19 +46314,19 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_swizzle", Version = "", EntryPoint = "glViewportSwizzleNV")] [CLSCompliant(false)] - public static void ViewportSwizzle(UInt32 index, OpenTK.Graphics.ES20.All swizzlex, OpenTK.Graphics.ES20.All swizzley, OpenTK.Graphics.ES20.All swizzlez, OpenTK.Graphics.ES20.All swizzlew) { throw new NotImplementedException(); } + public static void ViewportSwizzle(UInt32 index, OpenTK.Graphics.ES20.All swizzlex, OpenTK.Graphics.ES20.All swizzley, OpenTK.Graphics.ES20.All swizzlez, OpenTK.Graphics.ES20.All swizzlew) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glWaitVkSemaphoreNV")] [CLSCompliant(false)] - public static void WaitVkSemaphore(Int64 vkSemaphore) { throw new NotImplementedException(); } + public static void WaitVkSemaphore(Int64 vkSemaphore) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glWaitVkSemaphoreNV")] [CLSCompliant(false)] - public static void WaitVkSemaphore(UInt64 vkSemaphore) { throw new NotImplementedException(); } + public static void WaitVkSemaphore(UInt64 vkSemaphore) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46335,7 +46335,7 @@ namespace OpenTK.Graphics.ES20 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] Int32[] paths, [CountAttribute(Parameter = "numPaths")] Single[] weights) { throw new NotImplementedException(); } + public static void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] Int32[] paths, [CountAttribute(Parameter = "numPaths")] Single[] weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46344,7 +46344,7 @@ namespace OpenTK.Graphics.ES20 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] ref Int32 paths, [CountAttribute(Parameter = "numPaths")] ref Single weights) { throw new NotImplementedException(); } + public static void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] ref Int32 paths, [CountAttribute(Parameter = "numPaths")] ref Single weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46353,7 +46353,7 @@ namespace OpenTK.Graphics.ES20 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static unsafe void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] Int32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights) { throw new NotImplementedException(); } + public static unsafe void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] Int32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46362,7 +46362,7 @@ namespace OpenTK.Graphics.ES20 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32[] paths, [CountAttribute(Parameter = "numPaths")] Single[] weights) { throw new NotImplementedException(); } + public static void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32[] paths, [CountAttribute(Parameter = "numPaths")] Single[] weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46371,7 +46371,7 @@ namespace OpenTK.Graphics.ES20 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] ref UInt32 paths, [CountAttribute(Parameter = "numPaths")] ref Single weights) { throw new NotImplementedException(); } + public static void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] ref UInt32 paths, [CountAttribute(Parameter = "numPaths")] ref Single weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46380,7 +46380,7 @@ namespace OpenTK.Graphics.ES20 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static unsafe void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights) { throw new NotImplementedException(); } + public static unsafe void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights) { throw new BindingsNotRewrittenException(); } } @@ -46394,7 +46394,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glBindVertexArrayOES")] [CLSCompliant(false)] - public static void BindVertexArray(Int32 array) { throw new NotImplementedException(); } + public static void BindVertexArray(Int32 array) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Bind a vertex array object @@ -46404,7 +46404,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glBindVertexArrayOES")] [CLSCompliant(false)] - public static void BindVertexArray(UInt32 array) { throw new NotImplementedException(); } + public static void BindVertexArray(UInt32 array) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -46418,7 +46418,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiOES")] [CLSCompliant(false)] - public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES20.All mode) { throw new NotImplementedException(); } + public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES20.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -46431,7 +46431,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiOES")] [CLSCompliant(false)] - public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES20.BlendEquationMode mode) { throw new NotImplementedException(); } + public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES20.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -46445,7 +46445,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiOES")] [CLSCompliant(false)] - public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES20.All mode) { throw new NotImplementedException(); } + public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES20.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -46458,7 +46458,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiOES")] [CLSCompliant(false)] - public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES20.BlendEquationMode mode) { throw new NotImplementedException(); } + public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES20.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately @@ -46475,7 +46475,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiOES")] [CLSCompliant(false)] - public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES20.All modeRGB, OpenTK.Graphics.ES20.All modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES20.All modeRGB, OpenTK.Graphics.ES20.All modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately @@ -46491,7 +46491,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiOES")] [CLSCompliant(false)] - public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES20.BlendEquationMode modeRGB, OpenTK.Graphics.ES20.BlendEquationMode modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES20.BlendEquationMode modeRGB, OpenTK.Graphics.ES20.BlendEquationMode modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately @@ -46508,7 +46508,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiOES")] [CLSCompliant(false)] - public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES20.All modeRGB, OpenTK.Graphics.ES20.All modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES20.All modeRGB, OpenTK.Graphics.ES20.All modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately @@ -46524,7 +46524,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiOES")] [CLSCompliant(false)] - public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES20.BlendEquationMode modeRGB, OpenTK.Graphics.ES20.BlendEquationMode modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES20.BlendEquationMode modeRGB, OpenTK.Graphics.ES20.BlendEquationMode modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify pixel arithmetic @@ -46538,7 +46538,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciOES")] [CLSCompliant(false)] - public static void BlendFunc(Int32 buf, OpenTK.Graphics.ES20.All src, OpenTK.Graphics.ES20.All dst) { throw new NotImplementedException(); } + public static void BlendFunc(Int32 buf, OpenTK.Graphics.ES20.All src, OpenTK.Graphics.ES20.All dst) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify pixel arithmetic @@ -46552,7 +46552,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciOES")] [CLSCompliant(false)] - public static void BlendFunc(UInt32 buf, OpenTK.Graphics.ES20.All src, OpenTK.Graphics.ES20.All dst) { throw new NotImplementedException(); } + public static void BlendFunc(UInt32 buf, OpenTK.Graphics.ES20.All src, OpenTK.Graphics.ES20.All dst) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify pixel arithmetic for RGB and alpha components separately @@ -46574,7 +46574,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiOES")] [CLSCompliant(false)] - public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.ES20.All srcRGB, OpenTK.Graphics.ES20.All dstRGB, OpenTK.Graphics.ES20.All srcAlpha, OpenTK.Graphics.ES20.All dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.ES20.All srcRGB, OpenTK.Graphics.ES20.All dstRGB, OpenTK.Graphics.ES20.All srcAlpha, OpenTK.Graphics.ES20.All dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify pixel arithmetic for RGB and alpha components separately @@ -46596,7 +46596,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiOES")] [CLSCompliant(false)] - public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.ES20.All srcRGB, OpenTK.Graphics.ES20.All dstRGB, OpenTK.Graphics.ES20.All srcAlpha, OpenTK.Graphics.ES20.All dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.ES20.All srcRGB, OpenTK.Graphics.ES20.All dstRGB, OpenTK.Graphics.ES20.All srcAlpha, OpenTK.Graphics.ES20.All dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Enable and disable writing of frame buffer color components @@ -46616,7 +46616,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glColorMaskiOES")] [CLSCompliant(false)] - public static void ColorMask(Int32 index, bool r, bool g, bool b, bool a) { throw new NotImplementedException(); } + public static void ColorMask(Int32 index, bool r, bool g, bool b, bool a) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Enable and disable writing of frame buffer color components @@ -46636,7 +46636,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glColorMaskiOES")] [CLSCompliant(false)] - public static void ColorMask(UInt32 index, bool r, bool g, bool b, bool a) { throw new NotImplementedException(); } + public static void ColorMask(UInt32 index, bool r, bool g, bool b, bool a) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -46670,7 +46670,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] - public static void CompressedTexImage3D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage3D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -46707,7 +46707,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -46744,7 +46744,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -46781,7 +46781,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -46817,7 +46817,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] public static void CompressedTexImage3D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -46850,7 +46850,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] - public static void CompressedTexImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES20.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES20.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -46886,7 +46886,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES20.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -46922,7 +46922,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES20.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -46958,7 +46958,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES20.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -46993,7 +46993,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] public static void CompressedTexImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES20.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -47033,7 +47033,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] - public static void CompressedTexSubImage3D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexSubImage3D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -47076,7 +47076,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -47119,7 +47119,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -47162,7 +47162,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -47204,7 +47204,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -47243,7 +47243,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] - public static void CompressedTexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -47285,7 +47285,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -47327,7 +47327,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -47369,7 +47369,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -47410,7 +47410,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_copy_image] /// Perform a raw data copy between two images @@ -47462,7 +47462,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_copy_image", Version = "", EntryPoint = "glCopyImageSubDataOES")] [CLSCompliant(false)] - public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.ES20.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.ES20.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new NotImplementedException(); } + public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.ES20.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.ES20.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } /// [requires: OES_copy_image] /// Perform a raw data copy between two images @@ -47514,7 +47514,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_copy_image", Version = "", EntryPoint = "glCopyImageSubDataOES")] [CLSCompliant(false)] - public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.ES20.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.ES20.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new NotImplementedException(); } + public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.ES20.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.ES20.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Copy a three-dimensional texture subimage @@ -47548,7 +47548,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCopyTexSubImage3DOES")] - public static void CopyTexSubImage3D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage3D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Copy a three-dimensional texture subimage @@ -47581,7 +47581,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the height of the texture subimage. /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCopyTexSubImage3DOES")] - public static void CopyTexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -47591,7 +47591,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArray([CountAttribute(Parameter = "n")] Int32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArray([CountAttribute(Parameter = "n")] Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -47601,7 +47601,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArray([CountAttribute(Parameter = "n")] UInt32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArray([CountAttribute(Parameter = "n")] UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -47614,7 +47614,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32[] arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -47627,7 +47627,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -47640,7 +47640,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32* arrays) { throw new NotImplementedException(); } + public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -47653,7 +47653,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -47666,7 +47666,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -47679,7 +47679,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays) { throw new NotImplementedException(); } + public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -47695,7 +47695,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvOES")] [CLSCompliant(false)] - public static void DepthRangeArray(Int32 first, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void DepthRangeArray(Int32 first, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -47711,7 +47711,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvOES")] [CLSCompliant(false)] - public static void DepthRangeArray(Int32 first, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void DepthRangeArray(Int32 first, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -47727,7 +47727,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvOES")] [CLSCompliant(false)] - public static unsafe void DepthRangeArray(Int32 first, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void DepthRangeArray(Int32 first, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -47743,7 +47743,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvOES")] [CLSCompliant(false)] - public static void DepthRangeArray(UInt32 first, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void DepthRangeArray(UInt32 first, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -47759,7 +47759,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvOES")] [CLSCompliant(false)] - public static void DepthRangeArray(UInt32 first, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void DepthRangeArray(UInt32 first, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -47775,7 +47775,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvOES")] [CLSCompliant(false)] - public static unsafe void DepthRangeArray(UInt32 first, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void DepthRangeArray(UInt32 first, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified viewport @@ -47791,7 +47791,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeIndexedfOES")] [CLSCompliant(false)] - public static void DepthRangeIndexed(Int32 index, Single n, Single f) { throw new NotImplementedException(); } + public static void DepthRangeIndexed(Int32 index, Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified viewport @@ -47807,21 +47807,21 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeIndexedfOES")] [CLSCompliant(false)] - public static void DepthRangeIndexed(UInt32 index, Single n, Single f) { throw new NotImplementedException(); } + public static void DepthRangeIndexed(UInt32 index, Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// /// [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glDisableiOES")] [CLSCompliant(false)] - public static void Disable(OpenTK.Graphics.ES20.All target, Int32 index) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES20.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// /// [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glDisableiOES")] [CLSCompliant(false)] - public static void Disable(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -47843,7 +47843,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexOES")] - public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -47868,7 +47868,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -47893,7 +47893,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -47918,7 +47918,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -47942,7 +47942,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexOES")] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -47963,7 +47963,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexOES")] - public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -47987,7 +47987,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48011,7 +48011,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48035,7 +48035,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48058,7 +48058,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexOES")] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -48083,7 +48083,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexOES")] - public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -48111,7 +48111,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -48139,7 +48139,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -48167,7 +48167,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -48194,7 +48194,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexOES")] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -48218,7 +48218,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexOES")] - public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -48245,7 +48245,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -48272,7 +48272,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -48299,7 +48299,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -48325,7 +48325,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexOES")] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48354,7 +48354,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexOES")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48385,7 +48385,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48416,7 +48416,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48447,7 +48447,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48478,7 +48478,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48507,7 +48507,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexOES")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48538,7 +48538,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48569,7 +48569,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48600,7 +48600,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48631,7 +48631,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48659,7 +48659,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexOES")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48689,7 +48689,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48719,7 +48719,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48749,7 +48749,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48779,7 +48779,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48807,7 +48807,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexOES")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48837,7 +48837,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48867,7 +48867,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48897,7 +48897,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48927,19 +48927,19 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_EGL_image] /// /// [AutoGenerated(Category = "OES_EGL_image", Version = "", EntryPoint = "glEGLImageTargetRenderbufferStorageOES")] - public static void EGLImageTargetRenderbufferStorage(OpenTK.Graphics.ES20.All target, IntPtr image) { throw new NotImplementedException(); } + public static void EGLImageTargetRenderbufferStorage(OpenTK.Graphics.ES20.All target, IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: OES_EGL_image] /// /// [AutoGenerated(Category = "OES_EGL_image", Version = "", EntryPoint = "glEGLImageTargetTexture2DOES")] - public static void EGLImageTargetTexture2D(OpenTK.Graphics.ES20.All target, IntPtr image) { throw new NotImplementedException(); } + public static void EGLImageTargetTexture2D(OpenTK.Graphics.ES20.All target, IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// Enable or disable server-side GL capabilities @@ -48950,7 +48950,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glEnableiOES")] [CLSCompliant(false)] - public static void Enable(OpenTK.Graphics.ES20.All target, Int32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES20.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// Enable or disable server-side GL capabilities @@ -48961,7 +48961,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glEnableiOES")] [CLSCompliant(false)] - public static void Enable(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// @@ -48972,7 +48972,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glFramebufferTexture3DOES")] [CLSCompliant(false)] - public static void FramebufferTexture3D(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, Int32 texture, Int32 level, Int32 zoffset) { throw new NotImplementedException(); } + public static void FramebufferTexture3D(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, Int32 texture, Int32 level, Int32 zoffset) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// @@ -48983,7 +48983,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glFramebufferTexture3DOES")] [CLSCompliant(false)] - public static void FramebufferTexture3D(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, UInt32 texture, Int32 level, Int32 zoffset) { throw new NotImplementedException(); } + public static void FramebufferTexture3D(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, UInt32 texture, Int32 level, Int32 zoffset) { throw new BindingsNotRewrittenException(); } /// [requires: OES_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -49003,7 +49003,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureOES")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: OES_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -49023,7 +49023,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureOES")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: OES_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -49042,7 +49042,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureOES")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: OES_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -49061,14 +49061,14 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureOES")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static Int32 GenVertexArray() { throw new NotImplementedException(); } + public static Int32 GenVertexArray() { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -49081,7 +49081,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -49094,7 +49094,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -49107,7 +49107,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* arrays) { throw new NotImplementedException(); } + public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -49120,7 +49120,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -49133,7 +49133,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -49146,7 +49146,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays) { throw new NotImplementedException(); } + public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -49154,7 +49154,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] - public static void GetBufferPointer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } + public static void GetBufferPointer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -49165,7 +49165,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -49176,7 +49176,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -49187,7 +49187,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -49197,14 +49197,14 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] public static void GetBufferPointer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// /// /// [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] - public static void GetBufferPointer(OpenTK.Graphics.ES20.BufferTarget target, OpenTK.Graphics.ES20.BufferPointer pname, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } + public static void GetBufferPointer(OpenTK.Graphics.ES20.BufferTarget target, OpenTK.Graphics.ES20.BufferPointer pname, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -49214,7 +49214,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES20.BufferTarget target, OpenTK.Graphics.ES20.BufferPointer pname, [InAttribute, OutAttribute] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -49224,7 +49224,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES20.BufferTarget target, OpenTK.Graphics.ES20.BufferPointer pname, [InAttribute, OutAttribute] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -49234,7 +49234,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES20.BufferTarget target, OpenTK.Graphics.ES20.BufferPointer pname, [InAttribute, OutAttribute] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -49243,7 +49243,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] public static void GetBufferPointer(OpenTK.Graphics.ES20.BufferTarget target, OpenTK.Graphics.ES20.BufferPointer pname, [InAttribute, OutAttribute] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// @@ -49251,7 +49251,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// @@ -49259,7 +49259,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// @@ -49267,7 +49267,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// @@ -49275,7 +49275,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// @@ -49283,7 +49283,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// @@ -49291,7 +49291,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49314,7 +49314,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] - public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All[] binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All[] binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49339,7 +49339,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49364,7 +49364,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49389,7 +49389,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49414,7 +49414,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49437,7 +49437,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] - public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49462,7 +49462,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49487,7 +49487,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49512,7 +49512,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49537,7 +49537,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49560,7 +49560,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] - public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49585,7 +49585,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49610,7 +49610,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49635,7 +49635,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49660,7 +49660,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49683,7 +49683,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] - public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All[] binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All[] binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49708,7 +49708,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49733,7 +49733,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49758,7 +49758,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49783,7 +49783,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49806,7 +49806,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] - public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49831,7 +49831,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49856,7 +49856,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49881,7 +49881,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49906,7 +49906,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49929,7 +49929,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] - public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49954,7 +49954,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49979,7 +49979,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -50004,7 +50004,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -50029,7 +50029,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50037,7 +50037,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] - public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50045,7 +50045,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] - public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50053,7 +50053,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50061,7 +50061,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50069,7 +50069,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50077,7 +50077,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50085,7 +50085,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivOES")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50093,7 +50093,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivOES")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50101,7 +50101,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivOES")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50110,7 +50110,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50119,7 +50119,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50128,7 +50128,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivOES")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50136,7 +50136,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50144,7 +50144,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50152,7 +50152,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivOES")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50161,7 +50161,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50170,7 +50170,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50179,7 +50179,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivOES")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50187,7 +50187,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50195,7 +50195,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50203,7 +50203,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivOES")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// Test whether a capability is enabled @@ -50214,7 +50214,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glIsEnablediOES")] [CLSCompliant(false)] - public static bool IsEnabled(OpenTK.Graphics.ES20.All target, Int32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES20.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// Test whether a capability is enabled @@ -50225,7 +50225,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glIsEnablediOES")] [CLSCompliant(false)] - public static bool IsEnabled(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Determine if a name corresponds to a vertex array object @@ -50235,7 +50235,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glIsVertexArrayOES")] [CLSCompliant(false)] - public static bool IsVertexArray(Int32 array) { throw new NotImplementedException(); } + public static bool IsVertexArray(Int32 array) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Determine if a name corresponds to a vertex array object @@ -50245,7 +50245,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glIsVertexArrayOES")] [CLSCompliant(false)] - public static bool IsVertexArray(UInt32 array) { throw new NotImplementedException(); } + public static bool IsVertexArray(UInt32 array) { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// Map a buffer object's data store @@ -50257,7 +50257,7 @@ namespace OpenTK.Graphics.ES20 /// For glMapBuffer only, specifies the access policy, indicating whether it will be possible to read from, write to, or both read from and write to the buffer object's mapped data store. The symbolic constant must be ReadOnly, WriteOnly, or ReadWrite. /// [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glMapBufferOES")] - public static IntPtr MapBuffer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All access) { throw new NotImplementedException(); } + public static IntPtr MapBuffer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All access) { throw new BindingsNotRewrittenException(); } /// [requires: OES_sample_shading] /// Specifies minimum rate at which sample shaing takes place @@ -50266,7 +50266,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the rate at which samples are shaded within each covered pixel. /// [AutoGenerated(Category = "OES_sample_shading", Version = "", EntryPoint = "glMinSampleShadingOES")] - public static void MinSampleShading(Single value) { throw new NotImplementedException(); } + public static void MinSampleShading(Single value) { throw new BindingsNotRewrittenException(); } /// [requires: OES_tessellation_shader] /// Specifies the parameters for patch primitives @@ -50278,7 +50278,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the new value for the parameter given by pname. /// [AutoGenerated(Category = "OES_tessellation_shader", Version = "", EntryPoint = "glPatchParameteriOES")] - public static void PatchParameter(OpenTK.Graphics.ES20.All pname, Int32 value) { throw new NotImplementedException(); } + public static void PatchParameter(OpenTK.Graphics.ES20.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: OES_primitive_bounding_box] /// @@ -50290,7 +50290,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "OES_primitive_bounding_box", Version = "", EntryPoint = "glPrimitiveBoundingBoxOES")] - public static void PrimitiveBoundingBox(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW) { throw new NotImplementedException(); } + public static void PrimitiveBoundingBox(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -50309,7 +50309,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glProgramBinaryOES")] [CLSCompliant(false)] - public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES20.All binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES20.All binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -50330,7 +50330,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -50351,7 +50351,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -50372,7 +50372,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -50393,7 +50393,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T2 binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -50412,7 +50412,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glProgramBinaryOES")] [CLSCompliant(false)] - public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES20.All binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES20.All binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -50433,7 +50433,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -50454,7 +50454,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -50475,7 +50475,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -50496,7 +50496,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T2 binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50504,7 +50504,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] - public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50512,7 +50512,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] - public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50520,7 +50520,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50528,7 +50528,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50536,7 +50536,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50544,7 +50544,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50552,7 +50552,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivOES")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50560,7 +50560,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivOES")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50568,7 +50568,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivOES")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for multiple viewports @@ -50584,7 +50584,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorArrayvOES")] [CLSCompliant(false)] - public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for multiple viewports @@ -50600,7 +50600,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorArrayvOES")] [CLSCompliant(false)] - public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for multiple viewports @@ -50616,7 +50616,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorArrayvOES")] [CLSCompliant(false)] - public static unsafe void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for multiple viewports @@ -50632,7 +50632,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorArrayvOES")] [CLSCompliant(false)] - public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for multiple viewports @@ -50648,7 +50648,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorArrayvOES")] [CLSCompliant(false)] - public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for multiple viewports @@ -50664,7 +50664,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorArrayvOES")] [CLSCompliant(false)] - public static unsafe void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -50686,7 +50686,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedOES")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -50708,7 +50708,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedOES")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -50721,7 +50721,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedvOES")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -50734,7 +50734,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedvOES")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -50747,7 +50747,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedvOES")] [CLSCompliant(false)] - public static unsafe void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -50760,7 +50760,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedvOES")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -50773,7 +50773,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedvOES")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -50786,7 +50786,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedvOES")] [CLSCompliant(false)] - public static unsafe void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -50803,7 +50803,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferOES")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -50820,7 +50820,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferOES")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -50836,7 +50836,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferOES")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.All internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.All internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -50852,7 +50852,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferOES")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.All internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.All internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -50874,7 +50874,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -50896,7 +50896,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -50918,7 +50918,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -50940,7 +50940,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -50977,7 +50977,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] - public static void TexImage3D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexImage3D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -51017,7 +51017,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -51057,7 +51057,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -51097,7 +51097,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -51136,7 +51136,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] public static void TexImage3D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -51173,7 +51173,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] - public static void TexImage3D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexImage3D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -51213,7 +51213,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -51253,7 +51253,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -51293,7 +51293,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -51332,7 +51332,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] public static void TexImage3D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -51369,7 +51369,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] - public static void TexImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -51409,7 +51409,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -51449,7 +51449,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -51489,7 +51489,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -51528,7 +51528,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] public static void TexImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -51564,7 +51564,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] - public static void TexImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES20.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES20.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -51603,7 +51603,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES20.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -51642,7 +51642,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES20.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -51681,7 +51681,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES20.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -51719,7 +51719,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] public static void TexImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES20.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -51728,7 +51728,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -51737,7 +51737,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -51746,7 +51746,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivOES")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -51754,7 +51754,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -51762,7 +51762,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -51770,7 +51770,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivOES")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -51779,7 +51779,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -51788,7 +51788,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -51797,7 +51797,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivOES")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -51805,7 +51805,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -51813,7 +51813,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -51821,7 +51821,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivOES")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_storage_multisample_2d_array] /// Specify storage for a two-dimensional multisample array texture @@ -51848,7 +51848,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies whether the image will use identical sample locations and the same number of samples for all texels in the image, and the sample locations will not depend on the internal format or size of the image. /// [AutoGenerated(Category = "OES_texture_storage_multisample_2d_array", Version = "", EntryPoint = "glTexStorage3DMultisampleOES")] - public static void TexStorage3DMultisample(OpenTK.Graphics.ES20.All target, Int32 samples, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TexStorage3DMultisample(OpenTK.Graphics.ES20.All target, Int32 samples, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -51888,7 +51888,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] - public static void TexSubImage3D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexSubImage3D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -51931,7 +51931,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -51974,7 +51974,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -52017,7 +52017,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -52059,7 +52059,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] public static void TexSubImage3D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -52098,7 +52098,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] - public static void TexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -52140,7 +52140,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -52182,7 +52182,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -52224,7 +52224,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -52265,7 +52265,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] public static void TexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_view] /// Initialize a texture as a data alias of another texture's data store @@ -52296,7 +52296,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_texture_view", Version = "", EntryPoint = "glTextureViewOES")] [CLSCompliant(false)] - public static void TextureView(Int32 texture, OpenTK.Graphics.ES20.All target, Int32 origtexture, OpenTK.Graphics.ES20.All internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new NotImplementedException(); } + public static void TextureView(Int32 texture, OpenTK.Graphics.ES20.All target, Int32 origtexture, OpenTK.Graphics.ES20.All internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_view] /// Initialize a texture as a data alias of another texture's data store @@ -52327,18 +52327,18 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_texture_view", Version = "", EntryPoint = "glTextureViewOES")] [CLSCompliant(false)] - public static void TextureView(UInt32 texture, OpenTK.Graphics.ES20.All target, UInt32 origtexture, OpenTK.Graphics.ES20.All internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new NotImplementedException(); } + public static void TextureView(UInt32 texture, OpenTK.Graphics.ES20.All target, UInt32 origtexture, OpenTK.Graphics.ES20.All internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glUnmapBufferOES")] - public static bool UnmapBuffer(OpenTK.Graphics.ES20.All target) { throw new NotImplementedException(); } + public static bool UnmapBuffer(OpenTK.Graphics.ES20.All target) { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glUnmapBufferOES")] - public static bool UnmapBuffer(OpenTK.Graphics.ES20.BufferTarget target) { throw new NotImplementedException(); } + public static bool UnmapBuffer(OpenTK.Graphics.ES20.BufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set multiple viewports @@ -52354,7 +52354,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportArrayvOES")] [CLSCompliant(false)] - public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new NotImplementedException(); } + public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set multiple viewports @@ -52370,7 +52370,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportArrayvOES")] [CLSCompliant(false)] - public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new NotImplementedException(); } + public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set multiple viewports @@ -52386,7 +52386,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportArrayvOES")] [CLSCompliant(false)] - public static unsafe void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set multiple viewports @@ -52402,7 +52402,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportArrayvOES")] [CLSCompliant(false)] - public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new NotImplementedException(); } + public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set multiple viewports @@ -52418,7 +52418,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportArrayvOES")] [CLSCompliant(false)] - public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new NotImplementedException(); } + public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set multiple viewports @@ -52434,7 +52434,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportArrayvOES")] [CLSCompliant(false)] - public static unsafe void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -52456,7 +52456,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfOES")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, Single x, Single y, Single w, Single h) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, Single x, Single y, Single w, Single h) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -52478,7 +52478,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfOES")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, Single x, Single y, Single w, Single h) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, Single x, Single y, Single w, Single h) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -52491,7 +52491,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvOES")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -52504,7 +52504,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvOES")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -52517,7 +52517,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvOES")] [CLSCompliant(false)] - public static unsafe void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -52530,7 +52530,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvOES")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -52543,7 +52543,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvOES")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -52556,7 +52556,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvOES")] [CLSCompliant(false)] - public static unsafe void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } } @@ -52573,7 +52573,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OVR_multiview_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTextureMultisampleMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview_multisampled_render_to_texture] /// @@ -52586,7 +52586,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OVR_multiview_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTextureMultisampleMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview_multisampled_render_to_texture] /// @@ -52598,7 +52598,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OVR_multiview_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTextureMultisampleMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview_multisampled_render_to_texture] /// @@ -52610,7 +52610,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OVR_multiview_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTextureMultisampleMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview] /// @@ -52622,7 +52622,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OVR_multiview", Version = "", EntryPoint = "glFramebufferTextureMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultiview(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultiview(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview] /// @@ -52634,7 +52634,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OVR_multiview", Version = "", EntryPoint = "glFramebufferTextureMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultiview(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultiview(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview] /// @@ -52645,7 +52645,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OVR_multiview", Version = "", EntryPoint = "glFramebufferTextureMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultiview(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultiview(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview] /// @@ -52656,7 +52656,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OVR_multiview", Version = "", EntryPoint = "glFramebufferTextureMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultiview(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultiview(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } } @@ -52672,49 +52672,49 @@ namespace OpenTK.Graphics.ES20 /// Specifies the reference value that incoming alpha values are compared to. This value is clamped to the range [0,1], where 0 represents the lowest possible alpha value and 1 the highest possible value. The initial reference value is 0. /// [AutoGenerated(Category = "QCOM_alpha_test", Version = "", EntryPoint = "glAlphaFuncQCOM")] - public static void AlphaFunc(OpenTK.Graphics.ES20.All func, Single @ref) { throw new NotImplementedException(); } + public static void AlphaFunc(OpenTK.Graphics.ES20.All func, Single @ref) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glDisableDriverControlQCOM")] [CLSCompliant(false)] - public static void DisableDriverControl(Int32 driverControl) { throw new NotImplementedException(); } + public static void DisableDriverControl(Int32 driverControl) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glDisableDriverControlQCOM")] [CLSCompliant(false)] - public static void DisableDriverControl(UInt32 driverControl) { throw new NotImplementedException(); } + public static void DisableDriverControl(UInt32 driverControl) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glEnableDriverControlQCOM")] [CLSCompliant(false)] - public static void EnableDriverControl(Int32 driverControl) { throw new NotImplementedException(); } + public static void EnableDriverControl(Int32 driverControl) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glEnableDriverControlQCOM")] [CLSCompliant(false)] - public static void EnableDriverControl(UInt32 driverControl) { throw new NotImplementedException(); } + public static void EnableDriverControl(UInt32 driverControl) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_tiled_rendering] /// [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glEndTilingQCOM")] [CLSCompliant(false)] - public static void EndTiling(Int32 preserveMask) { throw new NotImplementedException(); } + public static void EndTiling(Int32 preserveMask) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_tiled_rendering] /// [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glEndTilingQCOM")] [CLSCompliant(false)] - public static void EndTiling(UInt32 preserveMask) { throw new NotImplementedException(); } + public static void EndTiling(UInt32 preserveMask) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBufferPointervQCOM")] - public static void ExtGetBufferPointer(OpenTK.Graphics.ES20.All target, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } + public static void ExtGetBufferPointer(OpenTK.Graphics.ES20.All target, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -52723,7 +52723,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ExtGetBufferPointer(OpenTK.Graphics.ES20.All target, [InAttribute, OutAttribute] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -52732,7 +52732,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ExtGetBufferPointer(OpenTK.Graphics.ES20.All target, [InAttribute, OutAttribute] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -52741,7 +52741,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ExtGetBufferPointer(OpenTK.Graphics.ES20.All target, [InAttribute, OutAttribute] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -52749,7 +52749,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBufferPointervQCOM")] public static void ExtGetBufferPointer(OpenTK.Graphics.ES20.All target, [InAttribute, OutAttribute] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -52758,7 +52758,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -52766,7 +52766,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -52775,7 +52775,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] out Int32 buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] out Int32 buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -52784,7 +52784,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -52793,7 +52793,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -52801,7 +52801,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -52810,7 +52810,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] out UInt32 buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] out UInt32 buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -52819,7 +52819,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -52828,7 +52828,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -52836,7 +52836,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -52845,7 +52845,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] out Int32 framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] out Int32 framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -52854,7 +52854,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -52863,7 +52863,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -52871,7 +52871,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -52880,7 +52880,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] out UInt32 framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] out UInt32 framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -52889,7 +52889,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -52898,7 +52898,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32[] length) { throw new NotImplementedException(); } + public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -52907,7 +52907,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute] out String source, [OutAttribute] out Int32 length) { throw new NotImplementedException(); } + public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -52916,7 +52916,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new NotImplementedException(); } + public static unsafe void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -52925,7 +52925,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32[] length) { throw new NotImplementedException(); } + public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -52934,7 +52934,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute] out String source, [OutAttribute] out Int32 length) { throw new NotImplementedException(); } + public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -52943,7 +52943,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new NotImplementedException(); } + public static unsafe void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -52952,7 +52952,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -52960,7 +52960,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -52969,7 +52969,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] out Int32 programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] out Int32 programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -52978,7 +52978,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new NotImplementedException(); } + public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -52987,7 +52987,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -52995,7 +52995,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -53004,7 +53004,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] out UInt32 programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] out UInt32 programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -53013,7 +53013,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new NotImplementedException(); } + public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -53022,7 +53022,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -53030,7 +53030,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -53039,7 +53039,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] out Int32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] out Int32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -53048,7 +53048,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -53057,7 +53057,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -53065,7 +53065,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -53074,7 +53074,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] out UInt32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] out UInt32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -53083,7 +53083,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -53092,7 +53092,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -53100,7 +53100,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -53109,7 +53109,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] out Int32 shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] out Int32 shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -53118,7 +53118,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new NotImplementedException(); } + public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -53127,7 +53127,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -53135,7 +53135,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -53144,7 +53144,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] out UInt32 shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] out UInt32 shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -53153,7 +53153,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new NotImplementedException(); } + public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -53163,7 +53163,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] [CLSCompliant(false)] - public static void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES20.All face, Int32 level, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES20.All face, Int32 level, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -53173,7 +53173,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] [CLSCompliant(false)] - public static void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES20.All face, Int32 level, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES20.All face, Int32 level, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -53183,7 +53183,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES20.All face, Int32 level, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES20.All face, Int32 level, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -53193,7 +53193,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] [CLSCompliant(false)] - public static void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES20.All face, Int32 level, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES20.All face, Int32 level, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -53203,7 +53203,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] [CLSCompliant(false)] - public static void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES20.All face, Int32 level, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES20.All face, Int32 level, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -53213,7 +53213,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES20.All face, Int32 level, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES20.All face, Int32 level, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -53228,7 +53228,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] - public static void ExtGetTexSubImage(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [OutAttribute] IntPtr texels) { throw new NotImplementedException(); } + public static void ExtGetTexSubImage(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [OutAttribute] IntPtr texels) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -53246,7 +53246,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ExtGetTexSubImage(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T10[] texels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -53264,7 +53264,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ExtGetTexSubImage(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T10[,] texels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -53282,7 +53282,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ExtGetTexSubImage(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T10[,,] texels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -53299,7 +53299,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] public static void ExtGetTexSubImage(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] ref T10 texels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -53307,7 +53307,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] [CLSCompliant(false)] - public static void ExtGetTextures([OutAttribute] Int32[] textures, Int32 maxTextures, [OutAttribute] Int32[] numTextures) { throw new NotImplementedException(); } + public static void ExtGetTextures([OutAttribute] Int32[] textures, Int32 maxTextures, [OutAttribute] Int32[] numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -53315,7 +53315,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] [CLSCompliant(false)] - public static void ExtGetTextures([OutAttribute] out Int32 textures, Int32 maxTextures, [OutAttribute] out Int32 numTextures) { throw new NotImplementedException(); } + public static void ExtGetTextures([OutAttribute] out Int32 textures, Int32 maxTextures, [OutAttribute] out Int32 numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -53323,7 +53323,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetTextures([OutAttribute] Int32* textures, Int32 maxTextures, [OutAttribute] Int32* numTextures) { throw new NotImplementedException(); } + public static unsafe void ExtGetTextures([OutAttribute] Int32* textures, Int32 maxTextures, [OutAttribute] Int32* numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -53331,7 +53331,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] [CLSCompliant(false)] - public static void ExtGetTextures([OutAttribute] UInt32[] textures, Int32 maxTextures, [OutAttribute] Int32[] numTextures) { throw new NotImplementedException(); } + public static void ExtGetTextures([OutAttribute] UInt32[] textures, Int32 maxTextures, [OutAttribute] Int32[] numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -53339,7 +53339,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] [CLSCompliant(false)] - public static void ExtGetTextures([OutAttribute] out UInt32 textures, Int32 maxTextures, [OutAttribute] out Int32 numTextures) { throw new NotImplementedException(); } + public static void ExtGetTextures([OutAttribute] out UInt32 textures, Int32 maxTextures, [OutAttribute] out Int32 numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -53347,30 +53347,30 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetTextures([OutAttribute] UInt32* textures, Int32 maxTextures, [OutAttribute] Int32* numTextures) { throw new NotImplementedException(); } + public static unsafe void ExtGetTextures([OutAttribute] UInt32* textures, Int32 maxTextures, [OutAttribute] Int32* numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtIsProgramBinaryQCOM")] [CLSCompliant(false)] - public static bool ExtIsProgramBinary(Int32 program) { throw new NotImplementedException(); } + public static bool ExtIsProgramBinary(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtIsProgramBinaryQCOM")] [CLSCompliant(false)] - public static bool ExtIsProgramBinary(UInt32 program) { throw new NotImplementedException(); } + public static bool ExtIsProgramBinary(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// /// /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtTexObjectStateOverrideiQCOM")] - public static void ExtTexObjectStateOverride(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, Int32 param) { throw new NotImplementedException(); } + public static void ExtTexObjectStateOverride(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_shader_framebuffer_fetch_noncoherent] [AutoGenerated(Category = "QCOM_shader_framebuffer_fetch_noncoherent", Version = "", EntryPoint = "glFramebufferFetchBarrierQCOM")] - public static void FramebufferFetchBarrier() { throw new NotImplementedException(); } + public static void FramebufferFetchBarrier() { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_framebuffer_foveated] /// @@ -53380,7 +53380,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "QCOM_framebuffer_foveated", Version = "", EntryPoint = "glFramebufferFoveationConfigQCOM")] [CLSCompliant(false)] - public static void FramebufferFoveationConfig(Int32 framebuffer, Int32 numLayers, Int32 focalPointsPerLayer, Int32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] out Int32 providedFeatures) { throw new NotImplementedException(); } + public static void FramebufferFoveationConfig(Int32 framebuffer, Int32 numLayers, Int32 focalPointsPerLayer, Int32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] out Int32 providedFeatures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_framebuffer_foveated] /// @@ -53390,7 +53390,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "QCOM_framebuffer_foveated", Version = "", EntryPoint = "glFramebufferFoveationConfigQCOM")] [CLSCompliant(false)] - public static unsafe void FramebufferFoveationConfig(Int32 framebuffer, Int32 numLayers, Int32 focalPointsPerLayer, Int32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] Int32* providedFeatures) { throw new NotImplementedException(); } + public static unsafe void FramebufferFoveationConfig(Int32 framebuffer, Int32 numLayers, Int32 focalPointsPerLayer, Int32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] Int32* providedFeatures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_framebuffer_foveated] /// @@ -53400,7 +53400,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "QCOM_framebuffer_foveated", Version = "", EntryPoint = "glFramebufferFoveationConfigQCOM")] [CLSCompliant(false)] - public static void FramebufferFoveationConfig(UInt32 framebuffer, UInt32 numLayers, UInt32 focalPointsPerLayer, UInt32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] out UInt32 providedFeatures) { throw new NotImplementedException(); } + public static void FramebufferFoveationConfig(UInt32 framebuffer, UInt32 numLayers, UInt32 focalPointsPerLayer, UInt32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] out UInt32 providedFeatures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_framebuffer_foveated] /// @@ -53410,7 +53410,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "QCOM_framebuffer_foveated", Version = "", EntryPoint = "glFramebufferFoveationConfigQCOM")] [CLSCompliant(false)] - public static unsafe void FramebufferFoveationConfig(UInt32 framebuffer, UInt32 numLayers, UInt32 focalPointsPerLayer, UInt32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] UInt32* providedFeatures) { throw new NotImplementedException(); } + public static unsafe void FramebufferFoveationConfig(UInt32 framebuffer, UInt32 numLayers, UInt32 focalPointsPerLayer, UInt32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] UInt32* providedFeatures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_framebuffer_foveated] /// @@ -53423,7 +53423,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "QCOM_framebuffer_foveated", Version = "", EntryPoint = "glFramebufferFoveationParametersQCOM")] [CLSCompliant(false)] - public static void FramebufferFoveationParameters(Int32 framebuffer, Int32 layer, Int32 focalPoint, Single focalX, Single focalY, Single gainX, Single gainY, Single foveaArea) { throw new NotImplementedException(); } + public static void FramebufferFoveationParameters(Int32 framebuffer, Int32 layer, Int32 focalPoint, Single focalX, Single focalY, Single gainX, Single gainY, Single foveaArea) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_framebuffer_foveated] /// @@ -53436,7 +53436,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "QCOM_framebuffer_foveated", Version = "", EntryPoint = "glFramebufferFoveationParametersQCOM")] [CLSCompliant(false)] - public static void FramebufferFoveationParameters(UInt32 framebuffer, UInt32 layer, UInt32 focalPoint, Single focalX, Single focalY, Single gainX, Single gainY, Single foveaArea) { throw new NotImplementedException(); } + public static void FramebufferFoveationParameters(UInt32 framebuffer, UInt32 layer, UInt32 focalPoint, Single focalX, Single focalY, Single gainX, Single gainY, Single foveaArea) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -53444,7 +53444,7 @@ namespace OpenTK.Graphics.ES20 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static void GetDriverControl([OutAttribute] Int32[] num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32[] driverControls) { throw new NotImplementedException(); } + public static void GetDriverControl([OutAttribute] Int32[] num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32[] driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -53452,7 +53452,7 @@ namespace OpenTK.Graphics.ES20 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static void GetDriverControl([OutAttribute] Int32[] num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32[] driverControls) { throw new NotImplementedException(); } + public static void GetDriverControl([OutAttribute] Int32[] num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32[] driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -53460,7 +53460,7 @@ namespace OpenTK.Graphics.ES20 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static void GetDriverControl([OutAttribute] out Int32 num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out Int32 driverControls) { throw new NotImplementedException(); } + public static void GetDriverControl([OutAttribute] out Int32 num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out Int32 driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -53468,7 +53468,7 @@ namespace OpenTK.Graphics.ES20 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static void GetDriverControl([OutAttribute] out Int32 num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out UInt32 driverControls) { throw new NotImplementedException(); } + public static void GetDriverControl([OutAttribute] out Int32 num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out UInt32 driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -53476,7 +53476,7 @@ namespace OpenTK.Graphics.ES20 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static unsafe void GetDriverControl([OutAttribute] Int32* num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32* driverControls) { throw new NotImplementedException(); } + public static unsafe void GetDriverControl([OutAttribute] Int32* num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32* driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -53484,7 +53484,7 @@ namespace OpenTK.Graphics.ES20 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static unsafe void GetDriverControl([OutAttribute] Int32* num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32* driverControls) { throw new NotImplementedException(); } + public static unsafe void GetDriverControl([OutAttribute] Int32* num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32* driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -53493,7 +53493,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -53502,7 +53502,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -53511,7 +53511,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static unsafe void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static unsafe void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -53520,7 +53520,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -53529,7 +53529,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -53538,7 +53538,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static unsafe void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static unsafe void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_tiled_rendering] /// @@ -53548,7 +53548,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glStartTilingQCOM")] [CLSCompliant(false)] - public static void StartTiling(Int32 x, Int32 y, Int32 width, Int32 height, Int32 preserveMask) { throw new NotImplementedException(); } + public static void StartTiling(Int32 x, Int32 y, Int32 width, Int32 height, Int32 preserveMask) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_tiled_rendering] /// @@ -53558,7 +53558,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glStartTilingQCOM")] [CLSCompliant(false)] - public static void StartTiling(UInt32 x, UInt32 y, UInt32 width, UInt32 height, UInt32 preserveMask) { throw new NotImplementedException(); } + public static void StartTiling(UInt32 x, UInt32 y, UInt32 width, UInt32 height, UInt32 preserveMask) { throw new BindingsNotRewrittenException(); } } diff --git a/src/OpenTK/Graphics/ES30/ES30.cs b/src/OpenTK/Graphics/ES30/ES30.cs index c07af980..38bffb7b 100644 --- a/src/OpenTK/Graphics/ES30/ES30.cs +++ b/src/OpenTK/Graphics/ES30/ES30.cs @@ -1541,126 +1541,126 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glBeginPerfMonitorAMD")] [CLSCompliant(false)] - public static void BeginPerfMonitor(Int32 monitor) { throw new NotImplementedException(); } + public static void BeginPerfMonitor(Int32 monitor) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glBeginPerfMonitorAMD")] [CLSCompliant(false)] - public static void BeginPerfMonitor(UInt32 monitor) { throw new NotImplementedException(); } + public static void BeginPerfMonitor(UInt32 monitor) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitor([CountAttribute(Parameter = "n")] Int32 monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitor([CountAttribute(Parameter = "n")] Int32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitor([CountAttribute(Parameter = "n")] UInt32 monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitor([CountAttribute(Parameter = "n")] UInt32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] Int32[] monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] Int32[] monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static unsafe void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] Int32* monitors) { throw new NotImplementedException(); } + public static unsafe void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] Int32* monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static unsafe void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] UInt32* monitors) { throw new NotImplementedException(); } + public static unsafe void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] UInt32* monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glEndPerfMonitorAMD")] [CLSCompliant(false)] - public static void EndPerfMonitor(Int32 monitor) { throw new NotImplementedException(); } + public static void EndPerfMonitor(Int32 monitor) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glEndPerfMonitorAMD")] [CLSCompliant(false)] - public static void EndPerfMonitor(UInt32 monitor) { throw new NotImplementedException(); } + public static void EndPerfMonitor(UInt32 monitor) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static Int32 GenPerfMonitor() { throw new NotImplementedException(); } + public static Int32 GenPerfMonitor() { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] monitors) { throw new NotImplementedException(); } + public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 monitors) { throw new NotImplementedException(); } + public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* monitors) { throw new NotImplementedException(); } + public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] monitors) { throw new NotImplementedException(); } + public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 monitors) { throw new NotImplementedException(); } + public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* monitors) { throw new NotImplementedException(); } + public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1670,7 +1670,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES30.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] Int32[] data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES30.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] Int32[] data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1680,7 +1680,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES30.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] out Int32 data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES30.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] out Int32 data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1690,7 +1690,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES30.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] Int32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES30.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] Int32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1700,7 +1700,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES30.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32[] data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES30.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32[] data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1710,7 +1710,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES30.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] out UInt32 data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES30.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] out UInt32 data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1720,7 +1720,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES30.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES30.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1729,7 +1729,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1740,7 +1740,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1751,7 +1751,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1762,7 +1762,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1773,7 +1773,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1782,7 +1782,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1793,7 +1793,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1804,7 +1804,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1815,7 +1815,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1826,7 +1826,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1836,7 +1836,7 @@ namespace OpenTK.Graphics.ES30 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] Int32[] counters) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] Int32[] counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1846,7 +1846,7 @@ namespace OpenTK.Graphics.ES30 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] out Int32 counters) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] out Int32 counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1856,7 +1856,7 @@ namespace OpenTK.Graphics.ES30 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] Int32* counters) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] Int32* counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1866,7 +1866,7 @@ namespace OpenTK.Graphics.ES30 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32[] counters) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32[] counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1876,7 +1876,7 @@ namespace OpenTK.Graphics.ES30 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] out UInt32 counters) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] out UInt32 counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1886,7 +1886,7 @@ namespace OpenTK.Graphics.ES30 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32* counters) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32* counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1896,7 +1896,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1906,7 +1906,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1916,7 +1916,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1926,7 +1926,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -1934,7 +1934,7 @@ namespace OpenTK.Graphics.ES30 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] Int32[] groups) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] Int32[] groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -1942,7 +1942,7 @@ namespace OpenTK.Graphics.ES30 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] out Int32 groups) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] out Int32 groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -1950,7 +1950,7 @@ namespace OpenTK.Graphics.ES30 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32[] groups) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32[] groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -1958,7 +1958,7 @@ namespace OpenTK.Graphics.ES30 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] out UInt32 groups) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] out UInt32 groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -1966,7 +1966,7 @@ namespace OpenTK.Graphics.ES30 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] Int32* groups) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] Int32* groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -1974,7 +1974,7 @@ namespace OpenTK.Graphics.ES30 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32* groups) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32* groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1983,7 +1983,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1992,7 +1992,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2001,7 +2001,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2010,7 +2010,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2020,7 +2020,7 @@ namespace OpenTK.Graphics.ES30 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] Int32[] counterList) { throw new NotImplementedException(); } + public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] Int32[] counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2030,7 +2030,7 @@ namespace OpenTK.Graphics.ES30 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] out Int32 counterList) { throw new NotImplementedException(); } + public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] out Int32 counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2040,7 +2040,7 @@ namespace OpenTK.Graphics.ES30 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static unsafe void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] Int32* counterList) { throw new NotImplementedException(); } + public static unsafe void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] Int32* counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2050,7 +2050,7 @@ namespace OpenTK.Graphics.ES30 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32[] counterList) { throw new NotImplementedException(); } + public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32[] counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2060,7 +2060,7 @@ namespace OpenTK.Graphics.ES30 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] out UInt32 counterList) { throw new NotImplementedException(); } + public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] out UInt32 counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2070,7 +2070,7 @@ namespace OpenTK.Graphics.ES30 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static unsafe void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32* counterList) { throw new NotImplementedException(); } + public static unsafe void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32* counterList) { throw new BindingsNotRewrittenException(); } } @@ -2111,7 +2111,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ANGLE_framebuffer_blit", Version = "", EntryPoint = "glBlitFramebufferANGLE")] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES30.All mask, OpenTK.Graphics.ES30.All filter) { throw new NotImplementedException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES30.All mask, OpenTK.Graphics.ES30.All filter) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_framebuffer_blit] /// Copy a block of pixels from the read framebuffer to the draw framebuffer @@ -2147,7 +2147,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the interpolation to be applied if the image is stretched. Must be Nearest or Linear. /// [AutoGenerated(Category = "ANGLE_framebuffer_blit", Version = "", EntryPoint = "glBlitFramebufferANGLE")] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES30.ClearBufferMask mask, OpenTK.Graphics.ES30.BlitFramebufferFilter filter) { throw new NotImplementedException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES30.ClearBufferMask mask, OpenTK.Graphics.ES30.BlitFramebufferFilter filter) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a range of elements @@ -2166,7 +2166,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawArraysInstancedANGLE")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES30.All mode, Int32 first, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES30.All mode, Int32 first, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a range of elements @@ -2184,7 +2184,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawArraysInstancedANGLE")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 first, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 first, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2206,7 +2206,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2231,7 +2231,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2256,7 +2256,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2281,7 +2281,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2305,7 +2305,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2326,7 +2326,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2350,7 +2350,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2374,7 +2374,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2398,7 +2398,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2421,7 +2421,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// @@ -2431,7 +2431,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute] out String source) { throw new NotImplementedException(); } + public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// @@ -2441,7 +2441,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute] out String source) { throw new NotImplementedException(); } + public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// @@ -2451,7 +2451,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static unsafe void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute] out String source) { throw new NotImplementedException(); } + public static unsafe void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// @@ -2461,7 +2461,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute] out String source) { throw new NotImplementedException(); } + public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// @@ -2471,7 +2471,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute] out String source) { throw new NotImplementedException(); } + public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// @@ -2481,7 +2481,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static unsafe void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute] out String source) { throw new NotImplementedException(); } + public static unsafe void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_framebuffer_multisample] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -2503,7 +2503,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ANGLE_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleANGLE")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_framebuffer_multisample] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -2524,7 +2524,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "ANGLE_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleANGLE")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES30.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES30.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -2537,7 +2537,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorANGLE")] [CLSCompliant(false)] - public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -2550,7 +2550,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorANGLE")] [CLSCompliant(false)] - public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new BindingsNotRewrittenException(); } } @@ -2571,7 +2571,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glClientWaitSyncAPPLE")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES30.All flags, Int64 timeout) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES30.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES30.All flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Block and wait for a sync object to become signaled @@ -2588,7 +2588,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glClientWaitSyncAPPLE")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES30.All flags, UInt64 timeout) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES30.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES30.All flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Block and wait for a sync object to become signaled @@ -2604,7 +2604,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glClientWaitSyncAPPLE")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES30.ClientWaitSyncFlags flags, Int64 timeout) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES30.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES30.ClientWaitSyncFlags flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Block and wait for a sync object to become signaled @@ -2620,7 +2620,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glClientWaitSyncAPPLE")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES30.ClientWaitSyncFlags flags, UInt64 timeout) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES30.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES30.ClientWaitSyncFlags flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_copy_texture_levels] /// @@ -2629,7 +2629,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "APPLE_copy_texture_levels", Version = "", EntryPoint = "glCopyTextureLevelsAPPLE")] [CLSCompliant(false)] - public static void CopyTextureLevel(Int32 destinationTexture, Int32 sourceTexture, Int32 sourceBaseLevel, Int32 sourceLevelCount) { throw new NotImplementedException(); } + public static void CopyTextureLevel(Int32 destinationTexture, Int32 sourceTexture, Int32 sourceBaseLevel, Int32 sourceLevelCount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_copy_texture_levels] /// @@ -2638,7 +2638,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "APPLE_copy_texture_levels", Version = "", EntryPoint = "glCopyTextureLevelsAPPLE")] [CLSCompliant(false)] - public static void CopyTextureLevel(UInt32 destinationTexture, UInt32 sourceTexture, Int32 sourceBaseLevel, Int32 sourceLevelCount) { throw new NotImplementedException(); } + public static void CopyTextureLevel(UInt32 destinationTexture, UInt32 sourceTexture, Int32 sourceBaseLevel, Int32 sourceLevelCount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Delete a sync object @@ -2647,7 +2647,7 @@ namespace OpenTK.Graphics.ES30 /// The sync object to be deleted. /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glDeleteSyncAPPLE")] - public static void DeleteSync(IntPtr sync) { throw new NotImplementedException(); } + public static void DeleteSync(IntPtr sync) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Create a new sync object and insert it into the GL command stream @@ -2660,7 +2660,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glFenceSyncAPPLE")] - public static IntPtr FenceSync(OpenTK.Graphics.ES30.All condition, OpenTK.Graphics.ES30.All flags) { throw new NotImplementedException(); } + public static IntPtr FenceSync(OpenTK.Graphics.ES30.All condition, OpenTK.Graphics.ES30.All flags) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Create a new sync object and insert it into the GL command stream @@ -2672,20 +2672,20 @@ namespace OpenTK.Graphics.ES30 /// Specifies a bitwise combination of flags controlling the behavior of the sync object. No flags are presently defined for this operation and flags must be zero.flags is a placeholder for anticipated future extensions of fence sync object capabilities. /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glFenceSyncAPPLE")] - public static IntPtr FenceSync(OpenTK.Graphics.ES30.SyncCondition condition, OpenTK.Graphics.ES30.WaitSyncFlags flags) { throw new NotImplementedException(); } + public static IntPtr FenceSync(OpenTK.Graphics.ES30.SyncCondition condition, OpenTK.Graphics.ES30.WaitSyncFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] [CLSCompliant(false)] - public static Int64 GetInteger64(OpenTK.Graphics.ES30.All pname) { throw new NotImplementedException(); } + public static Int64 GetInteger64(OpenTK.Graphics.ES30.All pname) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] [CLSCompliant(false)] - public static Int64 GetInteger64(OpenTK.Graphics.ES30.GetPName pname) { throw new NotImplementedException(); } + public static Int64 GetInteger64(OpenTK.Graphics.ES30.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// @@ -2693,7 +2693,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.ES30.All pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES30.All pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// @@ -2701,7 +2701,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// @@ -2709,28 +2709,28 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] [CLSCompliant(false)] - public static unsafe void GetInteger64(OpenTK.Graphics.ES30.All pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.ES30.All pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] [CLSCompliant(false)] - public static unsafe void GetInteger64(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Query the properties of a sync object @@ -2753,7 +2753,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] [CLSCompliant(false)] - public static void GetSync(IntPtr sync, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Query the properties of a sync object @@ -2776,7 +2776,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] [CLSCompliant(false)] - public static void GetSync(IntPtr sync, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Query the properties of a sync object @@ -2799,7 +2799,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] [CLSCompliant(false)] - public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Query the properties of a sync object @@ -2821,7 +2821,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] [CLSCompliant(false)] - public static void GetSync(IntPtr sync, OpenTK.Graphics.ES30.SyncParameterName pname, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES30.SyncParameterName pname, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Query the properties of a sync object @@ -2843,7 +2843,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] [CLSCompliant(false)] - public static void GetSync(IntPtr sync, OpenTK.Graphics.ES30.SyncParameterName pname, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES30.SyncParameterName pname, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Query the properties of a sync object @@ -2865,7 +2865,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] [CLSCompliant(false)] - public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES30.SyncParameterName pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES30.SyncParameterName pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Determine if a name corresponds to a sync object @@ -2874,7 +2874,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a value that may be the name of a sync object. /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glIsSyncAPPLE")] - public static bool IsSync(IntPtr sync) { throw new NotImplementedException(); } + public static bool IsSync(IntPtr sync) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_framebuffer_multisample] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -2896,7 +2896,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleAPPLE")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_framebuffer_multisample] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -2917,11 +2917,11 @@ namespace OpenTK.Graphics.ES30 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "APPLE_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleAPPLE")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES30.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES30.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_framebuffer_multisample] [AutoGenerated(Category = "APPLE_framebuffer_multisample", Version = "", EntryPoint = "glResolveMultisampleFramebufferAPPLE")] - public static void ResolveMultisampleFramebuffer() { throw new NotImplementedException(); } + public static void ResolveMultisampleFramebuffer() { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -2938,7 +2938,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glWaitSyncAPPLE")] [CLSCompliant(false)] - public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES30.All flags, Int64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES30.All flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -2955,7 +2955,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glWaitSyncAPPLE")] [CLSCompliant(false)] - public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES30.All flags, UInt64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES30.All flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -2971,7 +2971,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glWaitSyncAPPLE")] [CLSCompliant(false)] - public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES30.WaitSyncFlags flags, Int64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES30.WaitSyncFlags flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -2987,7 +2987,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glWaitSyncAPPLE")] [CLSCompliant(false)] - public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES30.WaitSyncFlags flags, UInt64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES30.WaitSyncFlags flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } } @@ -2995,7 +2995,7 @@ namespace OpenTK.Graphics.ES30 { /// [requires: INTEL_framebuffer_CMAA] [AutoGenerated(Category = "INTEL_framebuffer_CMAA", Version = "", EntryPoint = "glApplyFramebufferAttachmentCMAAINTEL")] - public static void ApplyFramebufferAttachment() { throw new NotImplementedException(); } + public static void ApplyFramebufferAttachment() { throw new BindingsNotRewrittenException(); } } @@ -3007,7 +3007,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glActiveTexture")] - public static void ActiveTexture(OpenTK.Graphics.ES30.All texture) { throw new NotImplementedException(); } + public static void ActiveTexture(OpenTK.Graphics.ES30.All texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Select active texture unit @@ -3016,7 +3016,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies which texture unit to make active. The number of texture units is implementation-dependent, but must be at least 32. texture must be one of Texturei, where i ranges from zero to the value of MaxCombinedTextureImageUnits minus one. The initial value is Texture0. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glActiveTexture")] - public static void ActiveTexture(OpenTK.Graphics.ES30.TextureUnit texture) { throw new NotImplementedException(); } + public static void ActiveTexture(OpenTK.Graphics.ES30.TextureUnit texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attaches a shader object to a program object @@ -3029,7 +3029,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glAttachShader")] [CLSCompliant(false)] - public static void AttachShader(Int32 program, Int32 shader) { throw new NotImplementedException(); } + public static void AttachShader(Int32 program, Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attaches a shader object to a program object @@ -3042,7 +3042,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glAttachShader")] [CLSCompliant(false)] - public static void AttachShader(UInt32 program, UInt32 shader) { throw new NotImplementedException(); } + public static void AttachShader(UInt32 program, UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delimit the boundaries of a query object @@ -3056,7 +3056,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBeginQuery")] [CLSCompliant(false)] - public static void BeginQuery(OpenTK.Graphics.ES30.All target, Int32 id) { throw new NotImplementedException(); } + public static void BeginQuery(OpenTK.Graphics.ES30.All target, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delimit the boundaries of a query object @@ -3070,7 +3070,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBeginQuery")] [CLSCompliant(false)] - public static void BeginQuery(OpenTK.Graphics.ES30.All target, UInt32 id) { throw new NotImplementedException(); } + public static void BeginQuery(OpenTK.Graphics.ES30.All target, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delimit the boundaries of a query object @@ -3083,7 +3083,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBeginQuery")] [CLSCompliant(false)] - public static void BeginQuery(OpenTK.Graphics.ES30.QueryTarget target, Int32 id) { throw new NotImplementedException(); } + public static void BeginQuery(OpenTK.Graphics.ES30.QueryTarget target, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delimit the boundaries of a query object @@ -3096,7 +3096,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBeginQuery")] [CLSCompliant(false)] - public static void BeginQuery(OpenTK.Graphics.ES30.QueryTarget target, UInt32 id) { throw new NotImplementedException(); } + public static void BeginQuery(OpenTK.Graphics.ES30.QueryTarget target, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Start transform feedback operation @@ -3106,7 +3106,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBeginTransformFeedback")] - public static void BeginTransformFeedback(OpenTK.Graphics.ES30.All primitiveMode) { throw new NotImplementedException(); } + public static void BeginTransformFeedback(OpenTK.Graphics.ES30.All primitiveMode) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Start transform feedback operation @@ -3115,7 +3115,7 @@ namespace OpenTK.Graphics.ES30 /// Specify the output type of the primitives that will be recorded into the buffer objects that are bound for transform feedback. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBeginTransformFeedback")] - public static void BeginTransformFeedback(OpenTK.Graphics.ES30.TransformFeedbackPrimitiveType primitiveMode) { throw new NotImplementedException(); } + public static void BeginTransformFeedback(OpenTK.Graphics.ES30.TransformFeedbackPrimitiveType primitiveMode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Associates a generic vertex attribute index with a named attribute variable @@ -3131,7 +3131,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindAttribLocation")] [CLSCompliant(false)] - public static void BindAttribLocation(Int32 program, Int32 index, String name) { throw new NotImplementedException(); } + public static void BindAttribLocation(Int32 program, Int32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Associates a generic vertex attribute index with a named attribute variable @@ -3147,7 +3147,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindAttribLocation")] [CLSCompliant(false)] - public static void BindAttribLocation(UInt32 program, UInt32 index, String name) { throw new NotImplementedException(); } + public static void BindAttribLocation(UInt32 program, UInt32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named buffer object @@ -3161,7 +3161,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindBuffer")] [CLSCompliant(false)] - public static void BindBuffer(OpenTK.Graphics.ES30.All target, Int32 buffer) { throw new NotImplementedException(); } + public static void BindBuffer(OpenTK.Graphics.ES30.All target, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named buffer object @@ -3175,7 +3175,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindBuffer")] [CLSCompliant(false)] - public static void BindBuffer(OpenTK.Graphics.ES30.All target, UInt32 buffer) { throw new NotImplementedException(); } + public static void BindBuffer(OpenTK.Graphics.ES30.All target, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named buffer object @@ -3188,7 +3188,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindBuffer")] [CLSCompliant(false)] - public static void BindBuffer(OpenTK.Graphics.ES30.BufferTarget target, Int32 buffer) { throw new NotImplementedException(); } + public static void BindBuffer(OpenTK.Graphics.ES30.BufferTarget target, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named buffer object @@ -3201,7 +3201,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindBuffer")] [CLSCompliant(false)] - public static void BindBuffer(OpenTK.Graphics.ES30.BufferTarget target, UInt32 buffer) { throw new NotImplementedException(); } + public static void BindBuffer(OpenTK.Graphics.ES30.BufferTarget target, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a buffer object to an indexed buffer target @@ -3218,7 +3218,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferBase")] [CLSCompliant(false)] - public static void BindBufferBase(OpenTK.Graphics.ES30.All target, Int32 index, Int32 buffer) { throw new NotImplementedException(); } + public static void BindBufferBase(OpenTK.Graphics.ES30.All target, Int32 index, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a buffer object to an indexed buffer target @@ -3235,7 +3235,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferBase")] [CLSCompliant(false)] - public static void BindBufferBase(OpenTK.Graphics.ES30.All target, UInt32 index, UInt32 buffer) { throw new NotImplementedException(); } + public static void BindBufferBase(OpenTK.Graphics.ES30.All target, UInt32 index, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a buffer object to an indexed buffer target @@ -3251,7 +3251,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferBase")] [CLSCompliant(false)] - public static void BindBufferBase(OpenTK.Graphics.ES30.BufferRangeTarget target, Int32 index, Int32 buffer) { throw new NotImplementedException(); } + public static void BindBufferBase(OpenTK.Graphics.ES30.BufferRangeTarget target, Int32 index, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a buffer object to an indexed buffer target @@ -3267,7 +3267,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferBase")] [CLSCompliant(false)] - public static void BindBufferBase(OpenTK.Graphics.ES30.BufferRangeTarget target, UInt32 index, UInt32 buffer) { throw new NotImplementedException(); } + public static void BindBufferBase(OpenTK.Graphics.ES30.BufferRangeTarget target, UInt32 index, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a range within a buffer object to an indexed buffer target @@ -3290,7 +3290,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferRange")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.ES30.All target, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.ES30.All target, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a range within a buffer object to an indexed buffer target @@ -3313,7 +3313,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferRange")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.ES30.All target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.ES30.All target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a range within a buffer object to an indexed buffer target @@ -3336,7 +3336,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferRange")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.ES30.All target, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.ES30.All target, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a range within a buffer object to an indexed buffer target @@ -3359,7 +3359,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferRange")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.ES30.All target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.ES30.All target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a range within a buffer object to an indexed buffer target @@ -3381,7 +3381,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferRange")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.ES30.BufferRangeTarget target, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.ES30.BufferRangeTarget target, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a range within a buffer object to an indexed buffer target @@ -3403,7 +3403,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferRange")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.ES30.BufferRangeTarget target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.ES30.BufferRangeTarget target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a range within a buffer object to an indexed buffer target @@ -3425,7 +3425,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferRange")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.ES30.BufferRangeTarget target, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.ES30.BufferRangeTarget target, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a range within a buffer object to an indexed buffer target @@ -3447,7 +3447,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferRange")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.ES30.BufferRangeTarget target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.ES30.BufferRangeTarget target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a framebuffer to a framebuffer target @@ -3461,7 +3461,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindFramebuffer")] [CLSCompliant(false)] - public static void BindFramebuffer(OpenTK.Graphics.ES30.All target, Int32 framebuffer) { throw new NotImplementedException(); } + public static void BindFramebuffer(OpenTK.Graphics.ES30.All target, Int32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a framebuffer to a framebuffer target @@ -3475,7 +3475,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindFramebuffer")] [CLSCompliant(false)] - public static void BindFramebuffer(OpenTK.Graphics.ES30.All target, UInt32 framebuffer) { throw new NotImplementedException(); } + public static void BindFramebuffer(OpenTK.Graphics.ES30.All target, UInt32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a framebuffer to a framebuffer target @@ -3488,7 +3488,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindFramebuffer")] [CLSCompliant(false)] - public static void BindFramebuffer(OpenTK.Graphics.ES30.FramebufferTarget target, Int32 framebuffer) { throw new NotImplementedException(); } + public static void BindFramebuffer(OpenTK.Graphics.ES30.FramebufferTarget target, Int32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a framebuffer to a framebuffer target @@ -3501,7 +3501,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindFramebuffer")] [CLSCompliant(false)] - public static void BindFramebuffer(OpenTK.Graphics.ES30.FramebufferTarget target, UInt32 framebuffer) { throw new NotImplementedException(); } + public static void BindFramebuffer(OpenTK.Graphics.ES30.FramebufferTarget target, UInt32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a renderbuffer to a renderbuffer target @@ -3515,7 +3515,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindRenderbuffer")] [CLSCompliant(false)] - public static void BindRenderbuffer(OpenTK.Graphics.ES30.All target, Int32 renderbuffer) { throw new NotImplementedException(); } + public static void BindRenderbuffer(OpenTK.Graphics.ES30.All target, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a renderbuffer to a renderbuffer target @@ -3529,7 +3529,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindRenderbuffer")] [CLSCompliant(false)] - public static void BindRenderbuffer(OpenTK.Graphics.ES30.All target, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void BindRenderbuffer(OpenTK.Graphics.ES30.All target, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a renderbuffer to a renderbuffer target @@ -3542,7 +3542,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindRenderbuffer")] [CLSCompliant(false)] - public static void BindRenderbuffer(OpenTK.Graphics.ES30.RenderbufferTarget target, Int32 renderbuffer) { throw new NotImplementedException(); } + public static void BindRenderbuffer(OpenTK.Graphics.ES30.RenderbufferTarget target, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a renderbuffer to a renderbuffer target @@ -3555,7 +3555,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindRenderbuffer")] [CLSCompliant(false)] - public static void BindRenderbuffer(OpenTK.Graphics.ES30.RenderbufferTarget target, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void BindRenderbuffer(OpenTK.Graphics.ES30.RenderbufferTarget target, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a named sampler to a texturing target @@ -3568,7 +3568,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindSampler")] [CLSCompliant(false)] - public static void BindSampler(Int32 unit, Int32 sampler) { throw new NotImplementedException(); } + public static void BindSampler(Int32 unit, Int32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a named sampler to a texturing target @@ -3581,7 +3581,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindSampler")] [CLSCompliant(false)] - public static void BindSampler(UInt32 unit, UInt32 sampler) { throw new NotImplementedException(); } + public static void BindSampler(UInt32 unit, UInt32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named texture to a texturing target @@ -3595,7 +3595,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindTexture")] [CLSCompliant(false)] - public static void BindTexture(OpenTK.Graphics.ES30.All target, Int32 texture) { throw new NotImplementedException(); } + public static void BindTexture(OpenTK.Graphics.ES30.All target, Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named texture to a texturing target @@ -3609,7 +3609,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindTexture")] [CLSCompliant(false)] - public static void BindTexture(OpenTK.Graphics.ES30.All target, UInt32 texture) { throw new NotImplementedException(); } + public static void BindTexture(OpenTK.Graphics.ES30.All target, UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named texture to a texturing target @@ -3622,7 +3622,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindTexture")] [CLSCompliant(false)] - public static void BindTexture(OpenTK.Graphics.ES30.TextureTarget target, Int32 texture) { throw new NotImplementedException(); } + public static void BindTexture(OpenTK.Graphics.ES30.TextureTarget target, Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named texture to a texturing target @@ -3635,7 +3635,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindTexture")] [CLSCompliant(false)] - public static void BindTexture(OpenTK.Graphics.ES30.TextureTarget target, UInt32 texture) { throw new NotImplementedException(); } + public static void BindTexture(OpenTK.Graphics.ES30.TextureTarget target, UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a transform feedback object @@ -3649,7 +3649,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindTransformFeedback")] [CLSCompliant(false)] - public static void BindTransformFeedback(OpenTK.Graphics.ES30.All target, Int32 id) { throw new NotImplementedException(); } + public static void BindTransformFeedback(OpenTK.Graphics.ES30.All target, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a transform feedback object @@ -3663,7 +3663,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindTransformFeedback")] [CLSCompliant(false)] - public static void BindTransformFeedback(OpenTK.Graphics.ES30.All target, UInt32 id) { throw new NotImplementedException(); } + public static void BindTransformFeedback(OpenTK.Graphics.ES30.All target, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a transform feedback object @@ -3676,7 +3676,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindTransformFeedback")] [CLSCompliant(false)] - public static void BindTransformFeedback(OpenTK.Graphics.ES30.TransformFeedbackTarget target, Int32 id) { throw new NotImplementedException(); } + public static void BindTransformFeedback(OpenTK.Graphics.ES30.TransformFeedbackTarget target, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a transform feedback object @@ -3689,7 +3689,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindTransformFeedback")] [CLSCompliant(false)] - public static void BindTransformFeedback(OpenTK.Graphics.ES30.TransformFeedbackTarget target, UInt32 id) { throw new NotImplementedException(); } + public static void BindTransformFeedback(OpenTK.Graphics.ES30.TransformFeedbackTarget target, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a vertex array object @@ -3699,7 +3699,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindVertexArray")] [CLSCompliant(false)] - public static void BindVertexArray(Int32 array) { throw new NotImplementedException(); } + public static void BindVertexArray(Int32 array) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a vertex array object @@ -3709,7 +3709,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindVertexArray")] [CLSCompliant(false)] - public static void BindVertexArray(UInt32 array) { throw new NotImplementedException(); } + public static void BindVertexArray(UInt32 array) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set the blend color @@ -3727,7 +3727,7 @@ namespace OpenTK.Graphics.ES30 /// specify the components of BlendColor /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendColor")] - public static void BlendColor(Single red, Single green, Single blue, Single alpha) { throw new NotImplementedException(); } + public static void BlendColor(Single red, Single green, Single blue, Single alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -3737,7 +3737,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendEquation")] - public static void BlendEquation(OpenTK.Graphics.ES30.All mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.ES30.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -3746,7 +3746,7 @@ namespace OpenTK.Graphics.ES30 /// specifies how source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendEquation")] - public static void BlendEquation(OpenTK.Graphics.ES30.BlendEquationMode mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.ES30.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set the RGB blend equation and the alpha blend equation separately @@ -3759,7 +3759,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendEquationSeparate")] - public static void BlendEquationSeparate(OpenTK.Graphics.ES30.All modeRGB, OpenTK.Graphics.ES30.All modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(OpenTK.Graphics.ES30.All modeRGB, OpenTK.Graphics.ES30.All modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set the RGB blend equation and the alpha blend equation separately @@ -3771,7 +3771,7 @@ namespace OpenTK.Graphics.ES30 /// specifies the alpha blend equation, how the alpha component of the source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendEquationSeparate")] - public static void BlendEquationSeparate(OpenTK.Graphics.ES30.BlendEquationMode modeRGB, OpenTK.Graphics.ES30.BlendEquationMode modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(OpenTK.Graphics.ES30.BlendEquationMode modeRGB, OpenTK.Graphics.ES30.BlendEquationMode modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify pixel arithmetic @@ -3784,7 +3784,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendFunc")] - public static void BlendFunc(OpenTK.Graphics.ES30.All sfactor, OpenTK.Graphics.ES30.All dfactor) { throw new NotImplementedException(); } + public static void BlendFunc(OpenTK.Graphics.ES30.All sfactor, OpenTK.Graphics.ES30.All dfactor) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify pixel arithmetic @@ -3796,7 +3796,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies how the red, green, blue, and alpha destination blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha. ConstantColor, OneMinusConstantColor, ConstantAlpha, and OneMinusConstantAlpha. The initial value is Zero. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendFunc")] - public static void BlendFunc(OpenTK.Graphics.ES30.BlendingFactorSrc sfactor, OpenTK.Graphics.ES30.BlendingFactorDest dfactor) { throw new NotImplementedException(); } + public static void BlendFunc(OpenTK.Graphics.ES30.BlendingFactorSrc sfactor, OpenTK.Graphics.ES30.BlendingFactorDest dfactor) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify pixel arithmetic for RGB and alpha components separately @@ -3815,7 +3815,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendFuncSeparate")] - public static void BlendFuncSeparate(OpenTK.Graphics.ES30.All sfactorRGB, OpenTK.Graphics.ES30.All dfactorRGB, OpenTK.Graphics.ES30.All sfactorAlpha, OpenTK.Graphics.ES30.All dfactorAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(OpenTK.Graphics.ES30.All sfactorRGB, OpenTK.Graphics.ES30.All dfactorRGB, OpenTK.Graphics.ES30.All sfactorAlpha, OpenTK.Graphics.ES30.All dfactorAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify pixel arithmetic for RGB and alpha components separately @@ -3833,7 +3833,7 @@ namespace OpenTK.Graphics.ES30 /// Specified how the alpha destination blending factor is computed. The initial value is Zero. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendFuncSeparate")] - public static void BlendFuncSeparate(OpenTK.Graphics.ES30.BlendingFactorSrc sfactorRGB, OpenTK.Graphics.ES30.BlendingFactorDest dfactorRGB, OpenTK.Graphics.ES30.BlendingFactorSrc sfactorAlpha, OpenTK.Graphics.ES30.BlendingFactorDest dfactorAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(OpenTK.Graphics.ES30.BlendingFactorSrc sfactorRGB, OpenTK.Graphics.ES30.BlendingFactorDest dfactorRGB, OpenTK.Graphics.ES30.BlendingFactorSrc sfactorAlpha, OpenTK.Graphics.ES30.BlendingFactorDest dfactorAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Copy a block of pixels from the read framebuffer to the draw framebuffer @@ -3870,7 +3870,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBlitFramebuffer")] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES30.All mask, OpenTK.Graphics.ES30.All filter) { throw new NotImplementedException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES30.All mask, OpenTK.Graphics.ES30.All filter) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Copy a block of pixels from the read framebuffer to the draw framebuffer @@ -3906,7 +3906,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the interpolation to be applied if the image is stretched. Must be Nearest or Linear. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBlitFramebuffer")] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES30.ClearBufferMask mask, OpenTK.Graphics.ES30.BlitFramebufferFilter filter) { throw new NotImplementedException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES30.ClearBufferMask mask, OpenTK.Graphics.ES30.BlitFramebufferFilter filter) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -3925,7 +3925,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.ES30.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES30.All usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.ES30.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES30.All usage) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -3947,7 +3947,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES30.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES30.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -3969,7 +3969,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES30.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES30.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -3991,7 +3991,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES30.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES30.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4012,7 +4012,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.ES30.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES30.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4031,7 +4031,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.ES30.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES30.All usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.ES30.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES30.All usage) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4053,7 +4053,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES30.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES30.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4075,7 +4075,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES30.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES30.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4097,7 +4097,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES30.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES30.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4118,7 +4118,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.ES30.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES30.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4136,7 +4136,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StreamRead, StreamCopy, StaticDraw, StaticRead, StaticCopy, DynamicDraw, DynamicRead, or DynamicCopy. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.ES30.BufferTarget target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES30.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.ES30.BufferTarget target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES30.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4157,7 +4157,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES30.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES30.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4178,7 +4178,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES30.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES30.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4199,7 +4199,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES30.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES30.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4219,7 +4219,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.ES30.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES30.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4237,7 +4237,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StreamRead, StreamCopy, StaticDraw, StaticRead, StaticCopy, DynamicDraw, DynamicRead, or DynamicCopy. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES30.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES30.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4258,7 +4258,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES30.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4279,7 +4279,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES30.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4300,7 +4300,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES30.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4320,7 +4320,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES30.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4339,7 +4339,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] - public static void BufferSubData(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4361,7 +4361,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4383,7 +4383,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4405,7 +4405,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4426,7 +4426,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] public static void BufferSubData(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4445,7 +4445,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] - public static void BufferSubData(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4467,7 +4467,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4489,7 +4489,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4511,7 +4511,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4532,7 +4532,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] public static void BufferSubData(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4550,7 +4550,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a pointer to the new data that will be copied into the data store. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] - public static void BufferSubData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4571,7 +4571,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4592,7 +4592,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4613,7 +4613,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4633,7 +4633,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] public static void BufferSubData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4651,7 +4651,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a pointer to the new data that will be copied into the data store. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] - public static void BufferSubData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4672,7 +4672,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4693,7 +4693,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4714,7 +4714,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4734,7 +4734,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] public static void BufferSubData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Check the completeness status of a framebuffer @@ -4744,7 +4744,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCheckFramebufferStatus")] - public static OpenTK.Graphics.ES30.FramebufferErrorCode CheckFramebufferStatus(OpenTK.Graphics.ES30.All target) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES30.FramebufferErrorCode CheckFramebufferStatus(OpenTK.Graphics.ES30.All target) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Check the completeness status of a framebuffer @@ -4753,7 +4753,7 @@ namespace OpenTK.Graphics.ES30 /// Specify the target of the framebuffer completeness check. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCheckFramebufferStatus")] - public static OpenTK.Graphics.ES30.FramebufferErrorCode CheckFramebufferStatus(OpenTK.Graphics.ES30.FramebufferTarget target) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES30.FramebufferErrorCode CheckFramebufferStatus(OpenTK.Graphics.ES30.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Clear buffers to preset values @@ -4763,7 +4763,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glClear")] - public static void Clear(OpenTK.Graphics.ES30.All mask) { throw new NotImplementedException(); } + public static void Clear(OpenTK.Graphics.ES30.All mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Clear buffers to preset values @@ -4772,7 +4772,7 @@ namespace OpenTK.Graphics.ES30 /// Bitwise OR of masks that indicate the buffers to be cleared. The three masks are ColorBufferBit, DepthBufferBit, and StencilBufferBit. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glClear")] - public static void Clear(OpenTK.Graphics.ES30.ClearBufferMask mask) { throw new NotImplementedException(); } + public static void Clear(OpenTK.Graphics.ES30.ClearBufferMask mask) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4791,7 +4791,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfi")] - public static void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4809,7 +4809,7 @@ namespace OpenTK.Graphics.ES30 /// The value to clear a stencil render buffer to. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfi")] - public static void ClearBuffer(OpenTK.Graphics.ES30.ClearBufferCombined buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES30.ClearBufferCombined buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4826,7 +4826,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Single[] value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4843,7 +4843,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref Single value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4860,7 +4860,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfv")] [CLSCompliant(false)] - public static unsafe void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4876,7 +4876,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.ES30.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Single[] value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES30.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4892,7 +4892,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.ES30.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref Single value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES30.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4908,7 +4908,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfv")] [CLSCompliant(false)] - public static unsafe void ClearBuffer(OpenTK.Graphics.ES30.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ClearBuffer(OpenTK.Graphics.ES30.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4925,7 +4925,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferiv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Int32[] value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4942,7 +4942,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferiv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref Int32 value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4959,7 +4959,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferiv")] [CLSCompliant(false)] - public static unsafe void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4975,7 +4975,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferiv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.ES30.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Int32[] value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES30.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4991,7 +4991,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferiv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.ES30.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref Int32 value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES30.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -5007,7 +5007,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferiv")] [CLSCompliant(false)] - public static unsafe void ClearBuffer(OpenTK.Graphics.ES30.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ClearBuffer(OpenTK.Graphics.ES30.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -5024,7 +5024,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32[] value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -5041,7 +5041,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -5058,7 +5058,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] [CLSCompliant(false)] - public static unsafe void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -5074,7 +5074,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.ES30.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32[] value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES30.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -5090,7 +5090,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.ES30.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES30.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -5106,7 +5106,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] [CLSCompliant(false)] - public static unsafe void ClearBuffer(OpenTK.Graphics.ES30.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ClearBuffer(OpenTK.Graphics.ES30.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify clear values for the color buffers @@ -5124,7 +5124,7 @@ namespace OpenTK.Graphics.ES30 /// Specify the red, green, blue, and alpha values used when the color buffers are cleared. The initial values are all 0. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glClearColor")] - public static void ClearColor(Single red, Single green, Single blue, Single alpha) { throw new NotImplementedException(); } + public static void ClearColor(Single red, Single green, Single blue, Single alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the clear value for the depth buffer @@ -5133,7 +5133,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the depth value used when the depth buffer is cleared. The initial value is 1. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glClearDepthf")] - public static void ClearDepth(Single d) { throw new NotImplementedException(); } + public static void ClearDepth(Single d) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the clear value for the stencil buffer @@ -5142,7 +5142,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the index used when the stencil buffer is cleared. The initial value is 0. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glClearStencil")] - public static void ClearStencil(Int32 s) { throw new NotImplementedException(); } + public static void ClearStencil(Int32 s) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Block and wait for a sync object to become signaled @@ -5159,7 +5159,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClientWaitSync")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES30.All flags, Int64 timeout) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES30.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES30.All flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Block and wait for a sync object to become signaled @@ -5176,7 +5176,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClientWaitSync")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES30.All flags, UInt64 timeout) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES30.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES30.All flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Block and wait for a sync object to become signaled @@ -5192,7 +5192,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClientWaitSync")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES30.ClientWaitSyncFlags flags, Int64 timeout) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES30.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES30.ClientWaitSyncFlags flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Block and wait for a sync object to become signaled @@ -5208,7 +5208,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClientWaitSync")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES30.ClientWaitSyncFlags flags, UInt64 timeout) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES30.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES30.ClientWaitSyncFlags flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Enable and disable writing of frame buffer color components @@ -5226,7 +5226,7 @@ namespace OpenTK.Graphics.ES30 /// Specify whether red, green, blue, and alpha are to be written into the frame buffer. The initial values are all True, indicating that the color components are written. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glColorMask")] - public static void ColorMask(bool red, bool green, bool blue, bool alpha) { throw new NotImplementedException(); } + public static void ColorMask(bool red, bool green, bool blue, bool alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Compiles a shader object @@ -5236,7 +5236,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompileShader")] [CLSCompliant(false)] - public static void CompileShader(Int32 shader) { throw new NotImplementedException(); } + public static void CompileShader(Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Compiles a shader object @@ -5246,7 +5246,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompileShader")] [CLSCompliant(false)] - public static void CompileShader(UInt32 shader) { throw new NotImplementedException(); } + public static void CompileShader(UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -5277,7 +5277,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] - public static void CompressedTexImage2D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage2D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -5311,7 +5311,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -5345,7 +5345,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -5379,7 +5379,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -5412,7 +5412,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] public static void CompressedTexImage2D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -5442,7 +5442,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] - public static void CompressedTexImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES30.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES30.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -5475,7 +5475,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES30.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -5508,7 +5508,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES30.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -5541,7 +5541,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES30.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -5573,7 +5573,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] public static void CompressedTexImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES30.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image in a compressed format @@ -5607,7 +5607,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexImage3D")] - public static void CompressedTexImage3D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage3D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image in a compressed format @@ -5644,7 +5644,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image in a compressed format @@ -5681,7 +5681,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image in a compressed format @@ -5718,7 +5718,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image in a compressed format @@ -5754,7 +5754,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexImage3D")] public static void CompressedTexImage3D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image in a compressed format @@ -5787,7 +5787,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexImage3D")] - public static void CompressedTexImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES30.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES30.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image in a compressed format @@ -5823,7 +5823,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES30.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image in a compressed format @@ -5859,7 +5859,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES30.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image in a compressed format @@ -5895,7 +5895,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES30.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image in a compressed format @@ -5930,7 +5930,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexImage3D")] public static void CompressedTexImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES30.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5964,7 +5964,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] - public static void CompressedTexSubImage2D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexSubImage2D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -6001,7 +6001,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -6038,7 +6038,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -6075,7 +6075,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -6111,7 +6111,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -6144,7 +6144,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] - public static void CompressedTexSubImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexSubImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -6180,7 +6180,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -6216,7 +6216,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -6252,7 +6252,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -6287,7 +6287,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage in a compressed format @@ -6327,7 +6327,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexSubImage3D")] - public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage in a compressed format @@ -6370,7 +6370,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage in a compressed format @@ -6413,7 +6413,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage in a compressed format @@ -6456,7 +6456,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage in a compressed format @@ -6498,7 +6498,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexSubImage3D")] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage in a compressed format @@ -6537,7 +6537,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexSubImage3D")] - public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage in a compressed format @@ -6579,7 +6579,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage in a compressed format @@ -6621,7 +6621,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage in a compressed format @@ -6663,7 +6663,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage in a compressed format @@ -6704,7 +6704,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexSubImage3D")] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -6726,7 +6726,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCopyBufferSubData")] - public static void CopyBufferSubData(OpenTK.Graphics.ES30.All readTarget, OpenTK.Graphics.ES30.All writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new NotImplementedException(); } + public static void CopyBufferSubData(OpenTK.Graphics.ES30.All readTarget, OpenTK.Graphics.ES30.All writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -6748,7 +6748,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCopyBufferSubData")] - public static void CopyBufferSubData(OpenTK.Graphics.ES30.All readTarget, OpenTK.Graphics.ES30.All writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new NotImplementedException(); } + public static void CopyBufferSubData(OpenTK.Graphics.ES30.All readTarget, OpenTK.Graphics.ES30.All writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -6769,7 +6769,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the size, in basic machine units, of the data to be copied from readtarget to writetarget. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCopyBufferSubData")] - public static void CopyBufferSubData(OpenTK.Graphics.ES30.BufferTarget readTarget, OpenTK.Graphics.ES30.BufferTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new NotImplementedException(); } + public static void CopyBufferSubData(OpenTK.Graphics.ES30.BufferTarget readTarget, OpenTK.Graphics.ES30.BufferTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -6790,7 +6790,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the size, in basic machine units, of the data to be copied from readtarget to writetarget. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCopyBufferSubData")] - public static void CopyBufferSubData(OpenTK.Graphics.ES30.BufferTarget readTarget, OpenTK.Graphics.ES30.BufferTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new NotImplementedException(); } + public static void CopyBufferSubData(OpenTK.Graphics.ES30.BufferTarget readTarget, OpenTK.Graphics.ES30.BufferTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Copy pixels into a 2D texture image @@ -6821,7 +6821,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCopyTexImage2D")] - public static void CopyTexImage2D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new NotImplementedException(); } + public static void CopyTexImage2D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Copy pixels into a 2D texture image @@ -6851,7 +6851,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the width of the border. Must be 0. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCopyTexImage2D")] - public static void CopyTexImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES30.TextureCopyComponentCount internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new NotImplementedException(); } + public static void CopyTexImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES30.TextureCopyComponentCount internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Copy a two-dimensional texture subimage @@ -6882,7 +6882,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCopyTexSubImage2D")] - public static void CopyTexSubImage2D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage2D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Copy a two-dimensional texture subimage @@ -6912,7 +6912,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the height of the texture subimage. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCopyTexSubImage2D")] - public static void CopyTexSubImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Copy a three-dimensional texture subimage @@ -6946,7 +6946,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCopyTexSubImage3D")] - public static void CopyTexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Copy a three-dimensional texture subimage @@ -6979,13 +6979,13 @@ namespace OpenTK.Graphics.ES30 /// Specifies the height of the texture subimage. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCopyTexSubImage3D")] - public static void CopyTexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates a program object /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCreateProgram")] - public static Int32 CreateProgram() { throw new NotImplementedException(); } + public static Int32 CreateProgram() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates a shader object @@ -6995,7 +6995,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCreateShader")] - public static Int32 CreateShader(OpenTK.Graphics.ES30.All type) { throw new NotImplementedException(); } + public static Int32 CreateShader(OpenTK.Graphics.ES30.All type) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates a shader object @@ -7004,7 +7004,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the type of shader to be created. Must be one of VertexShader or FragmentShader. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCreateShader")] - public static Int32 CreateShader(OpenTK.Graphics.ES30.ShaderType type) { throw new NotImplementedException(); } + public static Int32 CreateShader(OpenTK.Graphics.ES30.ShaderType type) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify whether front- or back-facing polygons can be culled @@ -7014,7 +7014,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCullFace")] - public static void CullFace(OpenTK.Graphics.ES30.All mode) { throw new NotImplementedException(); } + public static void CullFace(OpenTK.Graphics.ES30.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify whether front- or back-facing polygons can be culled @@ -7023,7 +7023,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies whether front- or back-facing polygons are candidates for culling. Symbolic constants Front, Back, and FrontAndBack are accepted. The initial value is Back. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCullFace")] - public static void CullFace(OpenTK.Graphics.ES30.CullFaceMode mode) { throw new NotImplementedException(); } + public static void CullFace(OpenTK.Graphics.ES30.CullFaceMode mode) { throw new BindingsNotRewrittenException(); } /// /// Specify a callback to receive debugging messages from the GL @@ -7035,7 +7035,7 @@ namespace OpenTK.Graphics.ES30 /// A user supplied pointer that will be passed on each invocation of callback. /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallback")] - public static void DebugMessageCallback(DebugProc callback, IntPtr userParam) { throw new NotImplementedException(); } + public static void DebugMessageCallback(DebugProc callback, IntPtr userParam) { throw new BindingsNotRewrittenException(); } /// /// Specify a callback to receive debugging messages from the GL @@ -7050,7 +7050,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Specify a callback to receive debugging messages from the GL @@ -7065,7 +7065,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Specify a callback to receive debugging messages from the GL @@ -7080,7 +7080,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[,,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Specify a callback to receive debugging messages from the GL @@ -7094,7 +7094,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallback")] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] ref T1 userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -7120,7 +7120,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -7146,7 +7146,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -7172,7 +7172,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -7198,7 +7198,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -7224,7 +7224,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -7250,7 +7250,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -7275,7 +7275,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -7300,7 +7300,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -7325,7 +7325,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -7350,7 +7350,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -7375,7 +7375,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -7400,7 +7400,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Inject an application-supplied message into the debug message queue @@ -7426,7 +7426,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsert")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, Int32 id, OpenTK.Graphics.ES30.All severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, Int32 id, OpenTK.Graphics.ES30.All severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new BindingsNotRewrittenException(); } /// /// Inject an application-supplied message into the debug message queue @@ -7452,7 +7452,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsert")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, UInt32 id, OpenTK.Graphics.ES30.All severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, UInt32 id, OpenTK.Graphics.ES30.All severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new BindingsNotRewrittenException(); } /// /// Inject an application-supplied message into the debug message queue @@ -7477,7 +7477,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsert")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.ES30.DebugSourceExternal source, OpenTK.Graphics.ES30.DebugType type, Int32 id, OpenTK.Graphics.ES30.DebugSeverity severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.ES30.DebugSourceExternal source, OpenTK.Graphics.ES30.DebugType type, Int32 id, OpenTK.Graphics.ES30.DebugSeverity severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new BindingsNotRewrittenException(); } /// /// Inject an application-supplied message into the debug message queue @@ -7502,7 +7502,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsert")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.ES30.DebugSourceExternal source, OpenTK.Graphics.ES30.DebugType type, UInt32 id, OpenTK.Graphics.ES30.DebugSeverity severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.ES30.DebugSourceExternal source, OpenTK.Graphics.ES30.DebugType type, UInt32 id, OpenTK.Graphics.ES30.DebugSeverity severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -7512,7 +7512,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffer([CountAttribute(Parameter = "n")] Int32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffer([CountAttribute(Parameter = "n")] Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -7522,7 +7522,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffer([CountAttribute(Parameter = "n")] UInt32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffer([CountAttribute(Parameter = "n")] UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -7535,7 +7535,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -7548,7 +7548,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -7561,7 +7561,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* buffers) { throw new NotImplementedException(); } + public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -7574,7 +7574,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -7587,7 +7587,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -7600,7 +7600,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* buffers) { throw new NotImplementedException(); } + public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete framebuffer objects @@ -7610,7 +7610,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] Int32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete framebuffer objects @@ -7620,7 +7620,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] UInt32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete framebuffer objects @@ -7633,7 +7633,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete framebuffer objects @@ -7646,7 +7646,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete framebuffer objects @@ -7659,7 +7659,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete framebuffer objects @@ -7672,7 +7672,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete framebuffer objects @@ -7685,7 +7685,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete framebuffer objects @@ -7698,7 +7698,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Deletes a program object @@ -7708,7 +7708,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteProgram")] [CLSCompliant(false)] - public static void DeleteProgram(Int32 program) { throw new NotImplementedException(); } + public static void DeleteProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Deletes a program object @@ -7718,7 +7718,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteProgram")] [CLSCompliant(false)] - public static void DeleteProgram(UInt32 program) { throw new NotImplementedException(); } + public static void DeleteProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named query objects @@ -7728,7 +7728,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQuery([CountAttribute(Parameter = "n")] Int32 ids) { throw new NotImplementedException(); } + public static void DeleteQuery([CountAttribute(Parameter = "n")] Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named query objects @@ -7738,7 +7738,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQuery([CountAttribute(Parameter = "n")] UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteQuery([CountAttribute(Parameter = "n")] UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named query objects @@ -7751,7 +7751,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named query objects @@ -7764,7 +7764,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named query objects @@ -7777,7 +7777,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named query objects @@ -7790,7 +7790,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named query objects @@ -7803,7 +7803,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named query objects @@ -7816,7 +7816,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete renderbuffer objects @@ -7826,7 +7826,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] Int32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete renderbuffer objects @@ -7836,7 +7836,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete renderbuffer objects @@ -7849,7 +7849,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete renderbuffer objects @@ -7862,7 +7862,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete renderbuffer objects @@ -7875,7 +7875,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete renderbuffer objects @@ -7888,7 +7888,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete renderbuffer objects @@ -7901,7 +7901,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete renderbuffer objects @@ -7914,7 +7914,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named sampler objects @@ -7924,7 +7924,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static void DeleteSampler([CountAttribute(Parameter = "count")] Int32 samplers) { throw new NotImplementedException(); } + public static void DeleteSampler([CountAttribute(Parameter = "count")] Int32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named sampler objects @@ -7934,7 +7934,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static void DeleteSampler([CountAttribute(Parameter = "count")] UInt32 samplers) { throw new NotImplementedException(); } + public static void DeleteSampler([CountAttribute(Parameter = "count")] UInt32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named sampler objects @@ -7947,7 +7947,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] Int32[] samplers) { throw new NotImplementedException(); } + public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] Int32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named sampler objects @@ -7960,7 +7960,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 samplers) { throw new NotImplementedException(); } + public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named sampler objects @@ -7973,7 +7973,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static unsafe void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] Int32* samplers) { throw new NotImplementedException(); } + public static unsafe void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] Int32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named sampler objects @@ -7986,7 +7986,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] samplers) { throw new NotImplementedException(); } + public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named sampler objects @@ -7999,7 +7999,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 samplers) { throw new NotImplementedException(); } + public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named sampler objects @@ -8012,7 +8012,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static unsafe void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] UInt32* samplers) { throw new NotImplementedException(); } + public static unsafe void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] UInt32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Deletes a shader object @@ -8022,7 +8022,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteShader")] [CLSCompliant(false)] - public static void DeleteShader(Int32 shader) { throw new NotImplementedException(); } + public static void DeleteShader(Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Deletes a shader object @@ -8032,7 +8032,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteShader")] [CLSCompliant(false)] - public static void DeleteShader(UInt32 shader) { throw new NotImplementedException(); } + public static void DeleteShader(UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete a sync object @@ -8041,7 +8041,7 @@ namespace OpenTK.Graphics.ES30 /// The sync object to be deleted. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSync")] - public static void DeleteSync(IntPtr sync) { throw new NotImplementedException(); } + public static void DeleteSync(IntPtr sync) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -8051,7 +8051,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTexture([CountAttribute(Parameter = "n")] Int32 textures) { throw new NotImplementedException(); } + public static void DeleteTexture([CountAttribute(Parameter = "n")] Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -8061,7 +8061,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTexture([CountAttribute(Parameter = "n")] UInt32 textures) { throw new NotImplementedException(); } + public static void DeleteTexture([CountAttribute(Parameter = "n")] UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -8074,7 +8074,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -8087,7 +8087,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -8100,7 +8100,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures) { throw new NotImplementedException(); } + public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -8113,7 +8113,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -8126,7 +8126,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -8139,7 +8139,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures) { throw new NotImplementedException(); } + public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete transform feedback objects @@ -8149,7 +8149,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static void DeleteTransformFeedback([CountAttribute(Parameter = "n")] Int32 ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedback([CountAttribute(Parameter = "n")] Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete transform feedback objects @@ -8159,7 +8159,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static void DeleteTransformFeedback([CountAttribute(Parameter = "n")] UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedback([CountAttribute(Parameter = "n")] UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete transform feedback objects @@ -8172,7 +8172,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete transform feedback objects @@ -8185,7 +8185,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete transform feedback objects @@ -8198,7 +8198,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete transform feedback objects @@ -8211,7 +8211,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete transform feedback objects @@ -8224,7 +8224,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete transform feedback objects @@ -8237,7 +8237,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete vertex array objects @@ -8247,7 +8247,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static void DeleteVertexArray([CountAttribute(Parameter = "n")] Int32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArray([CountAttribute(Parameter = "n")] Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete vertex array objects @@ -8257,7 +8257,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static void DeleteVertexArray([CountAttribute(Parameter = "n")] UInt32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArray([CountAttribute(Parameter = "n")] UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete vertex array objects @@ -8270,7 +8270,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32[] arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete vertex array objects @@ -8283,7 +8283,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete vertex array objects @@ -8296,7 +8296,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32* arrays) { throw new NotImplementedException(); } + public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete vertex array objects @@ -8309,7 +8309,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete vertex array objects @@ -8322,7 +8322,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete vertex array objects @@ -8335,7 +8335,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays) { throw new NotImplementedException(); } + public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value used for depth buffer comparisons @@ -8345,7 +8345,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDepthFunc")] - public static void DepthFunc(OpenTK.Graphics.ES30.All func) { throw new NotImplementedException(); } + public static void DepthFunc(OpenTK.Graphics.ES30.All func) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value used for depth buffer comparisons @@ -8354,7 +8354,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the depth comparison function. Symbolic constants Never, Less, Equal, Lequal, Greater, Notequal, Gequal, and Always are accepted. The initial value is Less. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDepthFunc")] - public static void DepthFunc(OpenTK.Graphics.ES30.DepthFunction func) { throw new NotImplementedException(); } + public static void DepthFunc(OpenTK.Graphics.ES30.DepthFunction func) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Enable or disable writing into the depth buffer @@ -8363,7 +8363,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies whether the depth buffer is enabled for writing. If flag is False, depth buffer writing is disabled. Otherwise, it is enabled. Initially, depth buffer writing is enabled. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDepthMask")] - public static void DepthMask(bool flag) { throw new NotImplementedException(); } + public static void DepthMask(bool flag) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify mapping of depth values from normalized device coordinates to window coordinates @@ -8375,7 +8375,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the mapping of the far clipping plane to window coordinates. The initial value is 1. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDepthRangef")] - public static void DepthRange(Single n, Single f) { throw new NotImplementedException(); } + public static void DepthRange(Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Detaches a shader object from a program object to which it is attached @@ -8388,7 +8388,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDetachShader")] [CLSCompliant(false)] - public static void DetachShader(Int32 program, Int32 shader) { throw new NotImplementedException(); } + public static void DetachShader(Int32 program, Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Detaches a shader object from a program object to which it is attached @@ -8401,30 +8401,30 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDetachShader")] [CLSCompliant(false)] - public static void DetachShader(UInt32 program, UInt32 shader) { throw new NotImplementedException(); } + public static void DetachShader(UInt32 program, UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDisable")] - public static void Disable(OpenTK.Graphics.ES30.All cap) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES30.All cap) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDisable")] - public static void Disable(OpenTK.Graphics.ES30.EnableCap cap) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES30.EnableCap cap) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDisableVertexAttribArray")] [CLSCompliant(false)] - public static void DisableVertexAttribArray(Int32 index) { throw new NotImplementedException(); } + public static void DisableVertexAttribArray(Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDisableVertexAttribArray")] [CLSCompliant(false)] - public static void DisableVertexAttribArray(UInt32 index) { throw new NotImplementedException(); } + public static void DisableVertexAttribArray(UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8440,7 +8440,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawArrays")] - public static void DrawArrays(OpenTK.Graphics.ES30.All mode, Int32 first, Int32 count) { throw new NotImplementedException(); } + public static void DrawArrays(OpenTK.Graphics.ES30.All mode, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8455,7 +8455,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the number of indices to be rendered. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawArrays")] - public static void DrawArrays(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 first, Int32 count) { throw new NotImplementedException(); } + public static void DrawArrays(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a range of elements @@ -8474,7 +8474,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawArraysInstanced")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES30.All mode, Int32 first, Int32 count, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES30.All mode, Int32 first, Int32 count, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a range of elements @@ -8492,7 +8492,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawArraysInstanced")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specifies a list of color buffers to be drawn into @@ -8506,7 +8506,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawBuffers")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.All[] bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.All[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specifies a list of color buffers to be drawn into @@ -8520,7 +8520,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawBuffers")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES30.All bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES30.All bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specifies a list of color buffers to be drawn into @@ -8534,7 +8534,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawBuffers")] [CLSCompliant(false)] - public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.All* bufs) { throw new NotImplementedException(); } + public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.All* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specifies a list of color buffers to be drawn into @@ -8547,7 +8547,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawBuffers")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.DrawBufferMode[] bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.DrawBufferMode[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specifies a list of color buffers to be drawn into @@ -8560,7 +8560,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawBuffers")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES30.DrawBufferMode bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES30.DrawBufferMode bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specifies a list of color buffers to be drawn into @@ -8573,7 +8573,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawBuffers")] [CLSCompliant(false)] - public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.DrawBufferMode* bufs) { throw new NotImplementedException(); } + public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.DrawBufferMode* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8592,7 +8592,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] - public static void DrawElements(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawElements(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8614,7 +8614,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8636,7 +8636,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8658,7 +8658,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8679,7 +8679,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] public static void DrawElements(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8697,7 +8697,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a pointer to the location where the indices are stored. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] - public static void DrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8718,7 +8718,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8739,7 +8739,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8760,7 +8760,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8780,7 +8780,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] public static void DrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a set of elements @@ -8802,7 +8802,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawElementsInstanced")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a set of elements @@ -8827,7 +8827,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a set of elements @@ -8852,7 +8852,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a set of elements @@ -8877,7 +8877,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a set of elements @@ -8901,7 +8901,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawElementsInstanced")] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a set of elements @@ -8922,7 +8922,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawElementsInstanced")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a set of elements @@ -8946,7 +8946,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a set of elements @@ -8970,7 +8970,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a set of elements @@ -8994,7 +8994,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a set of elements @@ -9017,7 +9017,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawElementsInstanced")] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9043,7 +9043,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawRangeElements")] [CLSCompliant(false)] - public static void DrawRangeElements(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawRangeElements(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9071,7 +9071,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9099,7 +9099,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9127,7 +9127,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9155,7 +9155,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9181,7 +9181,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawRangeElements")] [CLSCompliant(false)] - public static void DrawRangeElements(OpenTK.Graphics.ES30.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawRangeElements(OpenTK.Graphics.ES30.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9209,7 +9209,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9237,7 +9237,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9265,7 +9265,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9293,7 +9293,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9318,7 +9318,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawRangeElements")] [CLSCompliant(false)] - public static void DrawRangeElements(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawRangeElements(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9345,7 +9345,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9372,7 +9372,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9399,7 +9399,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9426,7 +9426,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9451,7 +9451,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawRangeElements")] [CLSCompliant(false)] - public static void DrawRangeElements(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawRangeElements(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9478,7 +9478,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9505,7 +9505,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9532,7 +9532,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9559,7 +9559,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Enable or disable server-side GL capabilities @@ -9569,7 +9569,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glEnable")] - public static void Enable(OpenTK.Graphics.ES30.All cap) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES30.All cap) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Enable or disable server-side GL capabilities @@ -9578,7 +9578,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a symbolic constant indicating a GL capability. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glEnable")] - public static void Enable(OpenTK.Graphics.ES30.EnableCap cap) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES30.EnableCap cap) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Enable or disable a generic vertex attribute array @@ -9588,7 +9588,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glEnableVertexAttribArray")] [CLSCompliant(false)] - public static void EnableVertexAttribArray(Int32 index) { throw new NotImplementedException(); } + public static void EnableVertexAttribArray(Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Enable or disable a generic vertex attribute array @@ -9598,22 +9598,22 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glEnableVertexAttribArray")] [CLSCompliant(false)] - public static void EnableVertexAttribArray(UInt32 index) { throw new NotImplementedException(); } + public static void EnableVertexAttribArray(UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glEndQuery")] - public static void EndQuery(OpenTK.Graphics.ES30.All target) { throw new NotImplementedException(); } + public static void EndQuery(OpenTK.Graphics.ES30.All target) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glEndQuery")] - public static void EndQuery(OpenTK.Graphics.ES30.QueryTarget target) { throw new NotImplementedException(); } + public static void EndQuery(OpenTK.Graphics.ES30.QueryTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glEndTransformFeedback")] - public static void EndTransformFeedback() { throw new NotImplementedException(); } + public static void EndTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Create a new sync object and insert it into the GL command stream @@ -9626,7 +9626,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFenceSync")] - public static IntPtr FenceSync(OpenTK.Graphics.ES30.All condition, OpenTK.Graphics.ES30.All flags) { throw new NotImplementedException(); } + public static IntPtr FenceSync(OpenTK.Graphics.ES30.All condition, OpenTK.Graphics.ES30.All flags) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Create a new sync object and insert it into the GL command stream @@ -9638,19 +9638,19 @@ namespace OpenTK.Graphics.ES30 /// Specifies a bitwise combination of flags controlling the behavior of the sync object. No flags are presently defined for this operation and flags must be zero.flags is a placeholder for anticipated future extensions of fence sync object capabilities. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFenceSync")] - public static IntPtr FenceSync(OpenTK.Graphics.ES30.SyncCondition condition, OpenTK.Graphics.ES30.WaitSyncFlags flags) { throw new NotImplementedException(); } + public static IntPtr FenceSync(OpenTK.Graphics.ES30.SyncCondition condition, OpenTK.Graphics.ES30.WaitSyncFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Block until all GL execution is complete /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFinish")] - public static void Finish() { throw new NotImplementedException(); } + public static void Finish() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Force execution of GL commands in finite time /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFlush")] - public static void Flush() { throw new NotImplementedException(); } + public static void Flush() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Indicate modifications to a range of a mapped buffer @@ -9666,7 +9666,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFlushMappedBufferRange")] - public static void FlushMappedBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Indicate modifications to a range of a mapped buffer @@ -9682,7 +9682,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFlushMappedBufferRange")] - public static void FlushMappedBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Indicate modifications to a range of a mapped buffer @@ -9697,7 +9697,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the length of the buffer subrange, in basic machine units. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFlushMappedBufferRange")] - public static void FlushMappedBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Indicate modifications to a range of a mapped buffer @@ -9712,7 +9712,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the length of the buffer subrange, in basic machine units. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFlushMappedBufferRange")] - public static void FlushMappedBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a renderbuffer as a logical buffer to the currently bound framebuffer object @@ -9732,7 +9732,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferRenderbuffer")] [CLSCompliant(false)] - public static void FramebufferRenderbuffer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All renderbuffertarget, Int32 renderbuffer) { throw new NotImplementedException(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All renderbuffertarget, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a renderbuffer as a logical buffer to the currently bound framebuffer object @@ -9752,7 +9752,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferRenderbuffer")] [CLSCompliant(false)] - public static void FramebufferRenderbuffer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All renderbuffertarget, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All renderbuffertarget, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a renderbuffer as a logical buffer to the currently bound framebuffer object @@ -9771,7 +9771,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferRenderbuffer")] [CLSCompliant(false)] - public static void FramebufferRenderbuffer(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, OpenTK.Graphics.ES30.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new NotImplementedException(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, OpenTK.Graphics.ES30.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a renderbuffer as a logical buffer to the currently bound framebuffer object @@ -9790,7 +9790,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferRenderbuffer")] [CLSCompliant(false)] - public static void FramebufferRenderbuffer(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, OpenTK.Graphics.ES30.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, OpenTK.Graphics.ES30.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -9813,7 +9813,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")] [CLSCompliant(false)] - public static void FramebufferTexture2D(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture2D(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -9836,7 +9836,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")] [CLSCompliant(false)] - public static void FramebufferTexture2D(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture2D(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -9858,7 +9858,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")] [CLSCompliant(false)] - public static void FramebufferTexture2D(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, OpenTK.Graphics.ES30.TextureTarget2d textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture2D(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, OpenTK.Graphics.ES30.TextureTarget2d textarget, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -9880,7 +9880,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")] [CLSCompliant(false)] - public static void FramebufferTexture2D(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, OpenTK.Graphics.ES30.TextureTarget2d textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture2D(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, OpenTK.Graphics.ES30.TextureTarget2d textarget, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Attach a single layer of a texture to a framebuffer @@ -9903,7 +9903,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTextureLayer")] [CLSCompliant(false)] - public static void FramebufferTextureLayer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, Int32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } + public static void FramebufferTextureLayer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, Int32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Attach a single layer of a texture to a framebuffer @@ -9926,7 +9926,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTextureLayer")] [CLSCompliant(false)] - public static void FramebufferTextureLayer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, UInt32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } + public static void FramebufferTextureLayer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, UInt32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Attach a single layer of a texture to a framebuffer @@ -9948,7 +9948,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTextureLayer")] [CLSCompliant(false)] - public static void FramebufferTextureLayer(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } + public static void FramebufferTextureLayer(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Attach a single layer of a texture to a framebuffer @@ -9970,7 +9970,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTextureLayer")] [CLSCompliant(false)] - public static void FramebufferTextureLayer(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } + public static void FramebufferTextureLayer(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define front- and back-facing polygons @@ -9980,7 +9980,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFrontFace")] - public static void FrontFace(OpenTK.Graphics.ES30.All mode) { throw new NotImplementedException(); } + public static void FrontFace(OpenTK.Graphics.ES30.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define front- and back-facing polygons @@ -9989,14 +9989,14 @@ namespace OpenTK.Graphics.ES30 /// Specifies the orientation of front-facing polygons. Cw and Ccw are accepted. The initial value is Ccw. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFrontFace")] - public static void FrontFace(OpenTK.Graphics.ES30.FrontFaceDirection mode) { throw new NotImplementedException(); } + public static void FrontFace(OpenTK.Graphics.ES30.FrontFaceDirection mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static Int32 GenBuffer() { throw new NotImplementedException(); } + public static Int32 GenBuffer() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names @@ -10009,7 +10009,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names @@ -10022,7 +10022,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names @@ -10035,7 +10035,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* buffers) { throw new NotImplementedException(); } + public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names @@ -10048,7 +10048,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names @@ -10061,7 +10061,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names @@ -10074,7 +10074,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* buffers) { throw new NotImplementedException(); } + public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate mipmaps for a specified texture target @@ -10084,7 +10084,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenerateMipmap")] - public static void GenerateMipmap(OpenTK.Graphics.ES30.All target) { throw new NotImplementedException(); } + public static void GenerateMipmap(OpenTK.Graphics.ES30.All target) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate mipmaps for a specified texture target @@ -10093,14 +10093,14 @@ namespace OpenTK.Graphics.ES30 /// Specifies the target to which the texture whose mimaps to generate is bound. target must be Texture2D, Texture3D, Texture2DArray or TextureCubeMap. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenerateMipmap")] - public static void GenerateMipmap(OpenTK.Graphics.ES30.TextureTarget target) { throw new NotImplementedException(); } + public static void GenerateMipmap(OpenTK.Graphics.ES30.TextureTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static Int32 GenFramebuffer() { throw new NotImplementedException(); } + public static Int32 GenFramebuffer() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names @@ -10113,7 +10113,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names @@ -10126,7 +10126,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names @@ -10139,7 +10139,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names @@ -10152,7 +10152,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names @@ -10165,7 +10165,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names @@ -10178,14 +10178,14 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate query object names /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static Int32 GenQuery() { throw new NotImplementedException(); } + public static Int32 GenQuery() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate query object names @@ -10198,7 +10198,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate query object names @@ -10211,7 +10211,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate query object names @@ -10224,7 +10224,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate query object names @@ -10237,7 +10237,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate query object names @@ -10250,7 +10250,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate query object names @@ -10263,14 +10263,14 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static Int32 GenRenderbuffer() { throw new NotImplementedException(); } + public static Int32 GenRenderbuffer() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names @@ -10283,7 +10283,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names @@ -10296,7 +10296,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names @@ -10309,7 +10309,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names @@ -10322,7 +10322,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names @@ -10335,7 +10335,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names @@ -10348,14 +10348,14 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate sampler object names /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static Int32 GenSampler() { throw new NotImplementedException(); } + public static Int32 GenSampler() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate sampler object names @@ -10368,7 +10368,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] samplers) { throw new NotImplementedException(); } + public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate sampler object names @@ -10381,7 +10381,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 samplers) { throw new NotImplementedException(); } + public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate sampler object names @@ -10394,7 +10394,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static unsafe void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] Int32* samplers) { throw new NotImplementedException(); } + public static unsafe void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] Int32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate sampler object names @@ -10407,7 +10407,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] samplers) { throw new NotImplementedException(); } + public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate sampler object names @@ -10420,7 +10420,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 samplers) { throw new NotImplementedException(); } + public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate sampler object names @@ -10433,14 +10433,14 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static unsafe void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* samplers) { throw new NotImplementedException(); } + public static unsafe void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static Int32 GenTexture() { throw new NotImplementedException(); } + public static Int32 GenTexture() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names @@ -10453,7 +10453,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names @@ -10466,7 +10466,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names @@ -10479,7 +10479,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* textures) { throw new NotImplementedException(); } + public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names @@ -10492,7 +10492,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names @@ -10505,7 +10505,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names @@ -10518,14 +10518,14 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* textures) { throw new NotImplementedException(); } + public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Reserve transform feedback object names /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static Int32 GenTransformFeedback() { throw new NotImplementedException(); } + public static Int32 GenTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Reserve transform feedback object names @@ -10538,7 +10538,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Reserve transform feedback object names @@ -10551,7 +10551,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new NotImplementedException(); } + public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Reserve transform feedback object names @@ -10564,7 +10564,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Reserve transform feedback object names @@ -10577,7 +10577,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Reserve transform feedback object names @@ -10590,7 +10590,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new NotImplementedException(); } + public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Reserve transform feedback object names @@ -10603,14 +10603,14 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate vertex array object names /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static Int32 GenVertexArray() { throw new NotImplementedException(); } + public static Int32 GenVertexArray() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate vertex array object names @@ -10623,7 +10623,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate vertex array object names @@ -10636,7 +10636,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate vertex array object names @@ -10649,7 +10649,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* arrays) { throw new NotImplementedException(); } + public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate vertex array object names @@ -10662,7 +10662,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate vertex array object names @@ -10675,7 +10675,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate vertex array object names @@ -10688,7 +10688,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays) { throw new NotImplementedException(); } + public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active attribute variable for the specified program object @@ -10716,7 +10716,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] - public static void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active attribute variable for the specified program object @@ -10745,7 +10745,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] - public static void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active attribute variable for the specified program object @@ -10773,7 +10773,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] - public static unsafe void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active attribute variable for the specified program object @@ -10802,7 +10802,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] - public static unsafe void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active attribute variable for the specified program object @@ -10830,7 +10830,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] - public static void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active attribute variable for the specified program object @@ -10859,7 +10859,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] - public static void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active attribute variable for the specified program object @@ -10887,7 +10887,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] - public static unsafe void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active attribute variable for the specified program object @@ -10916,7 +10916,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] - public static unsafe void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active uniform variable for the specified program object @@ -10944,7 +10944,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] - public static void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.ActiveUniformType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.ActiveUniformType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active uniform variable for the specified program object @@ -10973,7 +10973,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] - public static void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active uniform variable for the specified program object @@ -11001,7 +11001,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] - public static unsafe void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.ActiveUniformType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.ActiveUniformType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active uniform variable for the specified program object @@ -11030,7 +11030,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] - public static unsafe void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active uniform variable for the specified program object @@ -11058,7 +11058,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] - public static void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.ActiveUniformType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.ActiveUniformType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active uniform variable for the specified program object @@ -11087,7 +11087,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] - public static void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active uniform variable for the specified program object @@ -11115,7 +11115,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] - public static unsafe void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.ActiveUniformType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.ActiveUniformType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active uniform variable for the specified program object @@ -11144,7 +11144,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] - public static unsafe void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query information about an active uniform block @@ -11163,7 +11163,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] - public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES30.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES30.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query information about an active uniform block @@ -11182,7 +11182,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] - public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES30.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES30.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query information about an active uniform block @@ -11201,7 +11201,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] - public static unsafe void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES30.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES30.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query information about an active uniform block @@ -11221,7 +11221,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] - public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query information about an active uniform block @@ -11241,7 +11241,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] - public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query information about an active uniform block @@ -11261,7 +11261,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] - public static unsafe void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query information about an active uniform block @@ -11280,7 +11280,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] - public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES30.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES30.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query information about an active uniform block @@ -11299,7 +11299,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] - public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES30.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES30.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query information about an active uniform block @@ -11318,7 +11318,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] - public static unsafe void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES30.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES30.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query information about an active uniform block @@ -11338,7 +11338,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] - public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query information about an active uniform block @@ -11358,7 +11358,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] - public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query information about an active uniform block @@ -11378,7 +11378,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] - public static unsafe void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the name of an active uniform block @@ -11400,7 +11400,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockName")] [CLSCompliant(false)] - public static void GetActiveUniformBlockName(Int32 program, Int32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new NotImplementedException(); } + public static void GetActiveUniformBlockName(Int32 program, Int32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the name of an active uniform block @@ -11422,7 +11422,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockName")] [CLSCompliant(false)] - public static unsafe void GetActiveUniformBlockName(Int32 program, Int32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformBlockName(Int32 program, Int32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the name of an active uniform block @@ -11444,7 +11444,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockName")] [CLSCompliant(false)] - public static void GetActiveUniformBlockName(UInt32 program, UInt32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new NotImplementedException(); } + public static void GetActiveUniformBlockName(UInt32 program, UInt32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the name of an active uniform block @@ -11466,7 +11466,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockName")] [CLSCompliant(false)] - public static unsafe void GetActiveUniformBlockName(UInt32 program, UInt32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformBlockName(UInt32 program, UInt32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns information about several active uniform variables for the specified program object @@ -11488,7 +11488,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] - public static void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] Int32[] uniformIndices, OpenTK.Graphics.ES30.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] Int32[] uniformIndices, OpenTK.Graphics.ES30.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns information about several active uniform variables for the specified program object @@ -11511,7 +11511,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] - public static void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] Int32[] uniformIndices, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] Int32[] uniformIndices, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns information about several active uniform variables for the specified program object @@ -11533,7 +11533,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] - public static void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] ref Int32 uniformIndices, OpenTK.Graphics.ES30.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] ref Int32 uniformIndices, OpenTK.Graphics.ES30.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns information about several active uniform variables for the specified program object @@ -11556,7 +11556,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] - public static void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] ref Int32 uniformIndices, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] ref Int32 uniformIndices, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns information about several active uniform variables for the specified program object @@ -11578,7 +11578,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] - public static unsafe void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] Int32* uniformIndices, OpenTK.Graphics.ES30.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] Int32* uniformIndices, OpenTK.Graphics.ES30.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns information about several active uniform variables for the specified program object @@ -11601,7 +11601,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] - public static unsafe void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] Int32* uniformIndices, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] Int32* uniformIndices, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns information about several active uniform variables for the specified program object @@ -11623,7 +11623,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] - public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32[] uniformIndices, OpenTK.Graphics.ES30.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32[] uniformIndices, OpenTK.Graphics.ES30.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns information about several active uniform variables for the specified program object @@ -11646,7 +11646,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] - public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32[] uniformIndices, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32[] uniformIndices, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns information about several active uniform variables for the specified program object @@ -11668,7 +11668,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] - public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] ref UInt32 uniformIndices, OpenTK.Graphics.ES30.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] ref UInt32 uniformIndices, OpenTK.Graphics.ES30.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns information about several active uniform variables for the specified program object @@ -11691,7 +11691,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] - public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] ref UInt32 uniformIndices, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] ref UInt32 uniformIndices, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns information about several active uniform variables for the specified program object @@ -11713,7 +11713,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] - public static unsafe void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32* uniformIndices, OpenTK.Graphics.ES30.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32* uniformIndices, OpenTK.Graphics.ES30.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns information about several active uniform variables for the specified program object @@ -11736,7 +11736,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] - public static unsafe void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32* uniformIndices, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32* uniformIndices, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the handles of the shader objects attached to a program object @@ -11755,7 +11755,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32[] shaders) { throw new NotImplementedException(); } + public static void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32[] shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the handles of the shader objects attached to a program object @@ -11774,7 +11774,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out Int32 shaders) { throw new NotImplementedException(); } + public static void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out Int32 shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the handles of the shader objects attached to a program object @@ -11793,7 +11793,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static unsafe void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32* shaders) { throw new NotImplementedException(); } + public static unsafe void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32* shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the handles of the shader objects attached to a program object @@ -11812,7 +11812,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32[] shaders) { throw new NotImplementedException(); } + public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32[] shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the handles of the shader objects attached to a program object @@ -11831,7 +11831,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out UInt32 shaders) { throw new NotImplementedException(); } + public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out UInt32 shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the handles of the shader objects attached to a program object @@ -11850,7 +11850,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static unsafe void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32* shaders) { throw new NotImplementedException(); } + public static unsafe void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32* shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the location of an attribute variable @@ -11863,7 +11863,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttribLocation")] [CLSCompliant(false)] - public static Int32 GetAttribLocation(Int32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetAttribLocation(Int32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the location of an attribute variable @@ -11876,20 +11876,20 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttribLocation")] [CLSCompliant(false)] - public static Int32 GetAttribLocation(UInt32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetAttribLocation(UInt32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static bool GetBoolean(OpenTK.Graphics.ES30.All pname) { throw new NotImplementedException(); } + public static bool GetBoolean(OpenTK.Graphics.ES30.All pname) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static bool GetBoolean(OpenTK.Graphics.ES30.GetPName pname) { throw new NotImplementedException(); } + public static bool GetBoolean(OpenTK.Graphics.ES30.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -11897,7 +11897,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] bool[] data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -11905,7 +11905,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out bool data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -11913,28 +11913,28 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static unsafe void GetBoolean(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBoolean(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool[] data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out bool data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static unsafe void GetBoolean(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBoolean(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a buffer object @@ -11951,7 +11951,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferParameteri64v")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a buffer object @@ -11968,7 +11968,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferParameteri64v")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a buffer object @@ -11985,7 +11985,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferParameteri64v")] [CLSCompliant(false)] - public static unsafe void GetBufferParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a buffer object @@ -12001,7 +12001,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferParameteri64v")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a buffer object @@ -12017,7 +12017,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferParameteri64v")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a buffer object @@ -12033,7 +12033,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferParameteri64v")] [CLSCompliant(false)] - public static unsafe void GetBufferParameter(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a buffer object @@ -12050,7 +12050,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBufferParameteriv")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a buffer object @@ -12067,7 +12067,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBufferParameteriv")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a buffer object @@ -12084,7 +12084,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetBufferParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a buffer object @@ -12100,7 +12100,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBufferParameteriv")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a buffer object @@ -12116,7 +12116,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBufferParameteriv")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a buffer object @@ -12132,7 +12132,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetBufferParameter(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return the pointer to a mapped buffer object's data store @@ -12148,7 +12148,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferPointerv")] - public static void GetBufferPointer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetBufferPointer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return the pointer to a mapped buffer object's data store @@ -12167,7 +12167,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return the pointer to a mapped buffer object's data store @@ -12186,7 +12186,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return the pointer to a mapped buffer object's data store @@ -12205,7 +12205,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return the pointer to a mapped buffer object's data store @@ -12223,7 +12223,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferPointerv")] public static void GetBufferPointer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return the pointer to a mapped buffer object's data store @@ -12238,7 +12238,7 @@ namespace OpenTK.Graphics.ES30 /// Returns the pointer value specified by pname. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferPointerv")] - public static void GetBufferPointer(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferPointer pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetBufferPointer(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferPointer pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return the pointer to a mapped buffer object's data store @@ -12256,7 +12256,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return the pointer to a mapped buffer object's data store @@ -12274,7 +12274,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return the pointer to a mapped buffer object's data store @@ -12292,7 +12292,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return the pointer to a mapped buffer object's data store @@ -12309,7 +12309,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferPointerv")] public static void GetBufferPointer(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -12341,7 +12341,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -12373,7 +12373,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -12405,7 +12405,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -12436,7 +12436,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSourceExternal[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSourceExternal[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -12467,7 +12467,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugSourceExternal sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugSourceExternal sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -12498,7 +12498,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSourceExternal* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSourceExternal* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -12530,7 +12530,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -12562,7 +12562,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -12594,7 +12594,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -12625,7 +12625,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSourceExternal[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSourceExternal[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -12656,7 +12656,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugSourceExternal sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugSourceExternal sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -12687,26 +12687,26 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSourceExternal* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSourceExternal* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return error information /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetError")] - public static OpenTK.Graphics.ES30.ErrorCode GetError() { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES30.ErrorCode GetError() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static Single GetFloat(OpenTK.Graphics.ES30.All pname) { throw new NotImplementedException(); } + public static Single GetFloat(OpenTK.Graphics.ES30.All pname) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static Single GetFloat(OpenTK.Graphics.ES30.GetPName pname) { throw new NotImplementedException(); } + public static Single GetFloat(OpenTK.Graphics.ES30.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -12714,7 +12714,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -12722,7 +12722,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -12730,28 +12730,28 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query the bindings of color numbers to user-defined varying out variables @@ -12764,7 +12764,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetFragDataLocation")] [CLSCompliant(false)] - public static Int32 GetFragDataLocation(Int32 program, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetFragDataLocation(Int32 program, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query the bindings of color numbers to user-defined varying out variables @@ -12777,7 +12777,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetFragDataLocation")] [CLSCompliant(false)] - public static Int32 GetFragDataLocation(UInt32 program, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetFragDataLocation(UInt32 program, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about attachments of a bound framebuffer object @@ -12797,7 +12797,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about attachments of a bound framebuffer object @@ -12817,7 +12817,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about attachments of a bound framebuffer object @@ -12837,7 +12837,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about attachments of a bound framebuffer object @@ -12856,7 +12856,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, OpenTK.Graphics.ES30.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, OpenTK.Graphics.ES30.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about attachments of a bound framebuffer object @@ -12875,7 +12875,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, OpenTK.Graphics.ES30.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, OpenTK.Graphics.ES30.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about attachments of a bound framebuffer object @@ -12894,11 +12894,11 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, OpenTK.Graphics.ES30.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, OpenTK.Graphics.ES30.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetGraphicsResetStatus")] - public static OpenTK.Graphics.ES30.ResetStatus GetGraphicsResetStatus() { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES30.ResetStatus GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12907,7 +12907,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12916,7 +12916,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12925,7 +12925,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static unsafe void GetInteger64(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12934,7 +12934,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12943,7 +12943,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12952,7 +12952,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static unsafe void GetInteger64(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12960,7 +12960,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.ES30.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES30.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12968,7 +12968,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.ES30.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES30.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12976,7 +12976,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static unsafe void GetInteger64(OpenTK.Graphics.ES30.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.ES30.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12984,7 +12984,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.ES30.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES30.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12992,7 +12992,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.ES30.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES30.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -13000,20 +13000,20 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static unsafe void GetInteger64(OpenTK.Graphics.ES30.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.ES30.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64v")] [CLSCompliant(false)] - public static Int64 GetInteger64(OpenTK.Graphics.ES30.All pname) { throw new NotImplementedException(); } + public static Int64 GetInteger64(OpenTK.Graphics.ES30.All pname) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64v")] [CLSCompliant(false)] - public static Int64 GetInteger64(OpenTK.Graphics.ES30.GetPName pname) { throw new NotImplementedException(); } + public static Int64 GetInteger64(OpenTK.Graphics.ES30.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -13021,7 +13021,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -13029,7 +13029,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -13037,28 +13037,28 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64v")] [CLSCompliant(false)] - public static unsafe void GetInteger64(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64v")] [CLSCompliant(false)] - public static unsafe void GetInteger64(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -13067,7 +13067,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -13076,7 +13076,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -13085,7 +13085,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -13094,7 +13094,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -13103,7 +13103,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -13112,7 +13112,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -13120,7 +13120,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -13128,7 +13128,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -13136,7 +13136,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -13144,7 +13144,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -13152,7 +13152,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -13160,20 +13160,20 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static Int32 GetInteger(OpenTK.Graphics.ES30.All pname) { throw new NotImplementedException(); } + public static Int32 GetInteger(OpenTK.Graphics.ES30.All pname) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static Int32 GetInteger(OpenTK.Graphics.ES30.GetPName pname) { throw new NotImplementedException(); } + public static Int32 GetInteger(OpenTK.Graphics.ES30.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -13181,7 +13181,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -13189,7 +13189,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -13197,28 +13197,28 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about implementation-dependent support for internal formats @@ -13241,7 +13241,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInternalformativ")] [CLSCompliant(false)] - public static void GetInternalformat(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetInternalformat(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about implementation-dependent support for internal formats @@ -13264,7 +13264,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInternalformativ")] [CLSCompliant(false)] - public static void GetInternalformat(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetInternalformat(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about implementation-dependent support for internal formats @@ -13287,7 +13287,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInternalformativ")] [CLSCompliant(false)] - public static unsafe void GetInternalformat(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetInternalformat(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about implementation-dependent support for internal formats @@ -13309,7 +13309,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInternalformativ")] [CLSCompliant(false)] - public static void GetInternalformat(OpenTK.Graphics.ES30.ImageTarget target, OpenTK.Graphics.ES30.SizedInternalFormat internalformat, OpenTK.Graphics.ES30.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetInternalformat(OpenTK.Graphics.ES30.ImageTarget target, OpenTK.Graphics.ES30.SizedInternalFormat internalformat, OpenTK.Graphics.ES30.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about implementation-dependent support for internal formats @@ -13331,7 +13331,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInternalformativ")] [CLSCompliant(false)] - public static void GetInternalformat(OpenTK.Graphics.ES30.ImageTarget target, OpenTK.Graphics.ES30.SizedInternalFormat internalformat, OpenTK.Graphics.ES30.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetInternalformat(OpenTK.Graphics.ES30.ImageTarget target, OpenTK.Graphics.ES30.SizedInternalFormat internalformat, OpenTK.Graphics.ES30.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about implementation-dependent support for internal formats @@ -13353,7 +13353,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInternalformativ")] [CLSCompliant(false)] - public static unsafe void GetInternalformat(OpenTK.Graphics.ES30.ImageTarget target, OpenTK.Graphics.ES30.SizedInternalFormat internalformat, OpenTK.Graphics.ES30.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetInternalformat(OpenTK.Graphics.ES30.ImageTarget target, OpenTK.Graphics.ES30.SizedInternalFormat internalformat, OpenTK.Graphics.ES30.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -13362,7 +13362,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -13371,7 +13371,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -13380,7 +13380,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -13389,7 +13389,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -13398,7 +13398,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -13407,7 +13407,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -13416,7 +13416,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -13425,7 +13425,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -13434,7 +13434,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -13443,7 +13443,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -13452,7 +13452,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -13461,7 +13461,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -13470,7 +13470,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuiv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -13479,7 +13479,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuiv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -13488,7 +13488,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuiv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -13511,7 +13511,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -13534,7 +13534,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -13557,7 +13557,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -13580,7 +13580,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -13603,7 +13603,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -13626,7 +13626,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -13648,7 +13648,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -13670,7 +13670,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -13692,7 +13692,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -13714,7 +13714,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -13736,7 +13736,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -13758,7 +13758,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -13778,7 +13778,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] - public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -13798,7 +13798,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] - public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -13818,7 +13818,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] - public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -13840,7 +13840,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -13862,7 +13862,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -13884,7 +13884,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -13906,7 +13906,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -13928,7 +13928,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -13950,7 +13950,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -13972,7 +13972,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -13994,7 +13994,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -14016,7 +14016,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -14038,7 +14038,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -14060,7 +14060,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -14082,7 +14082,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -14095,7 +14095,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointerv")] - public static void GetPointer(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetPointer(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -14111,7 +14111,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -14127,7 +14127,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -14143,7 +14143,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -14158,7 +14158,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointerv")] public static void GetPointer(OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -14170,7 +14170,7 @@ namespace OpenTK.Graphics.ES30 /// Returns the pointer value specified by pname. /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointerv")] - public static void GetPointer(OpenTK.Graphics.ES30.GetPointervPName pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetPointer(OpenTK.Graphics.ES30.GetPointervPName pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -14185,7 +14185,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES30.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -14200,7 +14200,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES30.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -14215,7 +14215,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES30.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -14229,7 +14229,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointerv")] public static void GetPointer(OpenTK.Graphics.ES30.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -14251,7 +14251,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetProgramBinary")] [CLSCompliant(false)] - public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -14275,7 +14275,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -14299,7 +14299,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -14323,7 +14323,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -14347,7 +14347,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -14369,7 +14369,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetProgramBinary")] [CLSCompliant(false)] - public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -14393,7 +14393,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -14417,7 +14417,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -14441,7 +14441,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -14465,7 +14465,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -14487,7 +14487,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetProgramBinary")] [CLSCompliant(false)] - public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -14511,7 +14511,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -14535,7 +14535,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -14559,7 +14559,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -14583,7 +14583,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -14605,7 +14605,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetProgramBinary")] [CLSCompliant(false)] - public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -14629,7 +14629,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -14653,7 +14653,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -14677,7 +14677,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -14701,7 +14701,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the information log for a program object @@ -14720,7 +14720,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] [CLSCompliant(false)] - public static void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the information log for a program object @@ -14739,7 +14739,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] [CLSCompliant(false)] - public static unsafe void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the information log for a program object @@ -14758,7 +14758,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] [CLSCompliant(false)] - public static void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the information log for a program object @@ -14777,7 +14777,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] [CLSCompliant(false)] - public static unsafe void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a program object @@ -14794,7 +14794,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(Int32 program, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgram(Int32 program, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a program object @@ -14811,7 +14811,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(Int32 program, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(Int32 program, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a program object @@ -14828,7 +14828,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static unsafe void GetProgram(Int32 program, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(Int32 program, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a program object @@ -14844,7 +14844,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(Int32 program, OpenTK.Graphics.ES30.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgram(Int32 program, OpenTK.Graphics.ES30.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a program object @@ -14860,7 +14860,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(Int32 program, OpenTK.Graphics.ES30.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(Int32 program, OpenTK.Graphics.ES30.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a program object @@ -14876,7 +14876,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static unsafe void GetProgram(Int32 program, OpenTK.Graphics.ES30.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(Int32 program, OpenTK.Graphics.ES30.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a program object @@ -14893,7 +14893,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(UInt32 program, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgram(UInt32 program, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a program object @@ -14910,7 +14910,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(UInt32 program, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(UInt32 program, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a program object @@ -14927,7 +14927,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static unsafe void GetProgram(UInt32 program, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(UInt32 program, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a program object @@ -14943,7 +14943,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(UInt32 program, OpenTK.Graphics.ES30.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgram(UInt32 program, OpenTK.Graphics.ES30.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a program object @@ -14959,7 +14959,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(UInt32 program, OpenTK.Graphics.ES30.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(UInt32 program, OpenTK.Graphics.ES30.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a program object @@ -14975,7 +14975,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static unsafe void GetProgram(UInt32 program, OpenTK.Graphics.ES30.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(UInt32 program, OpenTK.Graphics.ES30.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object target @@ -14992,7 +14992,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryiv")] [CLSCompliant(false)] - public static void GetQuery(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQuery(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object target @@ -15009,7 +15009,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryiv")] [CLSCompliant(false)] - public static void GetQuery(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQuery(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object target @@ -15026,7 +15026,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryiv")] [CLSCompliant(false)] - public static unsafe void GetQuery(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQuery(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object target @@ -15042,7 +15042,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryiv")] [CLSCompliant(false)] - public static void GetQuery(OpenTK.Graphics.ES30.QueryTarget target, OpenTK.Graphics.ES30.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQuery(OpenTK.Graphics.ES30.QueryTarget target, OpenTK.Graphics.ES30.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object target @@ -15058,7 +15058,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryiv")] [CLSCompliant(false)] - public static void GetQuery(OpenTK.Graphics.ES30.QueryTarget target, OpenTK.Graphics.ES30.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQuery(OpenTK.Graphics.ES30.QueryTarget target, OpenTK.Graphics.ES30.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object target @@ -15074,7 +15074,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryiv")] [CLSCompliant(false)] - public static unsafe void GetQuery(OpenTK.Graphics.ES30.QueryTarget target, OpenTK.Graphics.ES30.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQuery(OpenTK.Graphics.ES30.QueryTarget target, OpenTK.Graphics.ES30.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object @@ -15091,7 +15091,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object @@ -15108,7 +15108,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object @@ -15125,7 +15125,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object @@ -15141,7 +15141,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object @@ -15157,7 +15157,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object @@ -15173,7 +15173,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object @@ -15190,7 +15190,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object @@ -15207,7 +15207,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object @@ -15224,7 +15224,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object @@ -15240,7 +15240,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object @@ -15256,7 +15256,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object @@ -15272,7 +15272,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about a bound renderbuffer object @@ -15289,7 +15289,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetRenderbufferParameteriv")] [CLSCompliant(false)] - public static void GetRenderbufferParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about a bound renderbuffer object @@ -15306,7 +15306,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetRenderbufferParameteriv")] [CLSCompliant(false)] - public static void GetRenderbufferParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about a bound renderbuffer object @@ -15323,7 +15323,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetRenderbufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about a bound renderbuffer object @@ -15339,7 +15339,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetRenderbufferParameteriv")] [CLSCompliant(false)] - public static void GetRenderbufferParameter(OpenTK.Graphics.ES30.RenderbufferTarget target, OpenTK.Graphics.ES30.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.ES30.RenderbufferTarget target, OpenTK.Graphics.ES30.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about a bound renderbuffer object @@ -15355,7 +15355,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetRenderbufferParameteriv")] [CLSCompliant(false)] - public static void GetRenderbufferParameter(OpenTK.Graphics.ES30.RenderbufferTarget target, OpenTK.Graphics.ES30.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.ES30.RenderbufferTarget target, OpenTK.Graphics.ES30.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about a bound renderbuffer object @@ -15371,7 +15371,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetRenderbufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.ES30.RenderbufferTarget target, OpenTK.Graphics.ES30.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.ES30.RenderbufferTarget target, OpenTK.Graphics.ES30.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15388,7 +15388,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15405,7 +15405,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15422,7 +15422,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15438,7 +15438,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15454,7 +15454,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15470,7 +15470,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15487,7 +15487,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15504,7 +15504,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15521,7 +15521,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15537,7 +15537,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15553,7 +15553,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15569,7 +15569,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15586,7 +15586,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15603,7 +15603,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15620,7 +15620,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15636,7 +15636,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15652,7 +15652,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15668,7 +15668,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15685,7 +15685,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15702,7 +15702,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15719,7 +15719,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15735,7 +15735,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15751,7 +15751,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15767,7 +15767,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the information log for a shader object @@ -15786,7 +15786,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] [CLSCompliant(false)] - public static void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the information log for a shader object @@ -15805,7 +15805,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] [CLSCompliant(false)] - public static unsafe void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the information log for a shader object @@ -15824,7 +15824,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] [CLSCompliant(false)] - public static void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the information log for a shader object @@ -15843,7 +15843,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] [CLSCompliant(false)] - public static unsafe void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a shader object @@ -15860,7 +15860,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static void GetShader(Int32 shader, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetShader(Int32 shader, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a shader object @@ -15877,7 +15877,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static void GetShader(Int32 shader, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetShader(Int32 shader, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a shader object @@ -15894,7 +15894,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static unsafe void GetShader(Int32 shader, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetShader(Int32 shader, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a shader object @@ -15910,7 +15910,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static void GetShader(Int32 shader, OpenTK.Graphics.ES30.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetShader(Int32 shader, OpenTK.Graphics.ES30.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a shader object @@ -15926,7 +15926,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static void GetShader(Int32 shader, OpenTK.Graphics.ES30.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetShader(Int32 shader, OpenTK.Graphics.ES30.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a shader object @@ -15942,7 +15942,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static unsafe void GetShader(Int32 shader, OpenTK.Graphics.ES30.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetShader(Int32 shader, OpenTK.Graphics.ES30.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a shader object @@ -15959,7 +15959,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static void GetShader(UInt32 shader, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetShader(UInt32 shader, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a shader object @@ -15976,7 +15976,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static void GetShader(UInt32 shader, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetShader(UInt32 shader, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a shader object @@ -15993,7 +15993,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static unsafe void GetShader(UInt32 shader, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetShader(UInt32 shader, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a shader object @@ -16009,7 +16009,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static void GetShader(UInt32 shader, OpenTK.Graphics.ES30.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetShader(UInt32 shader, OpenTK.Graphics.ES30.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a shader object @@ -16025,7 +16025,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static void GetShader(UInt32 shader, OpenTK.Graphics.ES30.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetShader(UInt32 shader, OpenTK.Graphics.ES30.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a shader object @@ -16041,7 +16041,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static unsafe void GetShader(UInt32 shader, OpenTK.Graphics.ES30.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetShader(UInt32 shader, OpenTK.Graphics.ES30.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve the range and precision for numeric formats supported by the shader compiler @@ -16061,7 +16061,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderPrecisionFormat")] [CLSCompliant(false)] - public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES30.All shadertype, OpenTK.Graphics.ES30.All precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32[] range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new NotImplementedException(); } + public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES30.All shadertype, OpenTK.Graphics.ES30.All precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32[] range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve the range and precision for numeric formats supported by the shader compiler @@ -16081,7 +16081,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderPrecisionFormat")] [CLSCompliant(false)] - public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES30.All shadertype, OpenTK.Graphics.ES30.All precisiontype, [OutAttribute, CountAttribute(Count = 2)] out Int32 range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new NotImplementedException(); } + public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES30.All shadertype, OpenTK.Graphics.ES30.All precisiontype, [OutAttribute, CountAttribute(Count = 2)] out Int32 range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve the range and precision for numeric formats supported by the shader compiler @@ -16101,7 +16101,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderPrecisionFormat")] [CLSCompliant(false)] - public static unsafe void GetShaderPrecisionFormat(OpenTK.Graphics.ES30.All shadertype, OpenTK.Graphics.ES30.All precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32* range, [OutAttribute, CountAttribute(Count = 1)] Int32* precision) { throw new NotImplementedException(); } + public static unsafe void GetShaderPrecisionFormat(OpenTK.Graphics.ES30.All shadertype, OpenTK.Graphics.ES30.All precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32* range, [OutAttribute, CountAttribute(Count = 1)] Int32* precision) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve the range and precision for numeric formats supported by the shader compiler @@ -16120,7 +16120,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderPrecisionFormat")] [CLSCompliant(false)] - public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES30.ShaderType shadertype, OpenTK.Graphics.ES30.ShaderPrecision precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32[] range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new NotImplementedException(); } + public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES30.ShaderType shadertype, OpenTK.Graphics.ES30.ShaderPrecision precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32[] range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve the range and precision for numeric formats supported by the shader compiler @@ -16139,7 +16139,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderPrecisionFormat")] [CLSCompliant(false)] - public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES30.ShaderType shadertype, OpenTK.Graphics.ES30.ShaderPrecision precisiontype, [OutAttribute, CountAttribute(Count = 2)] out Int32 range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new NotImplementedException(); } + public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES30.ShaderType shadertype, OpenTK.Graphics.ES30.ShaderPrecision precisiontype, [OutAttribute, CountAttribute(Count = 2)] out Int32 range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve the range and precision for numeric formats supported by the shader compiler @@ -16158,7 +16158,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderPrecisionFormat")] [CLSCompliant(false)] - public static unsafe void GetShaderPrecisionFormat(OpenTK.Graphics.ES30.ShaderType shadertype, OpenTK.Graphics.ES30.ShaderPrecision precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32* range, [OutAttribute, CountAttribute(Count = 1)] Int32* precision) { throw new NotImplementedException(); } + public static unsafe void GetShaderPrecisionFormat(OpenTK.Graphics.ES30.ShaderType shadertype, OpenTK.Graphics.ES30.ShaderPrecision precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32* range, [OutAttribute, CountAttribute(Count = 1)] Int32* precision) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the source code string from a shader object @@ -16177,7 +16177,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] [CLSCompliant(false)] - public static void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new NotImplementedException(); } + public static void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the source code string from a shader object @@ -16196,7 +16196,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] [CLSCompliant(false)] - public static unsafe void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new NotImplementedException(); } + public static unsafe void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the source code string from a shader object @@ -16215,7 +16215,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] [CLSCompliant(false)] - public static void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new NotImplementedException(); } + public static void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the source code string from a shader object @@ -16234,7 +16234,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] [CLSCompliant(false)] - public static unsafe void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new NotImplementedException(); } + public static unsafe void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a string describing the current GL connection @@ -16244,7 +16244,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetString")] - public static String GetString(OpenTK.Graphics.ES30.All name) { throw new NotImplementedException(); } + public static String GetString(OpenTK.Graphics.ES30.All name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a string describing the current GL connection @@ -16253,7 +16253,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a symbolic constant, one of Extensions, Renderer, ShadingLanguageVersion, Vendor, or Version. glGetStringi accepts only the Extensions token. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetString")] - public static String GetString(OpenTK.Graphics.ES30.StringName name) { throw new NotImplementedException(); } + public static String GetString(OpenTK.Graphics.ES30.StringName name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a string describing the current GL connection @@ -16267,7 +16267,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetStringi")] [CLSCompliant(false)] - public static String GetString(OpenTK.Graphics.ES30.All name, Int32 index) { throw new NotImplementedException(); } + public static String GetString(OpenTK.Graphics.ES30.All name, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a string describing the current GL connection @@ -16281,7 +16281,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetStringi")] [CLSCompliant(false)] - public static String GetString(OpenTK.Graphics.ES30.All name, UInt32 index) { throw new NotImplementedException(); } + public static String GetString(OpenTK.Graphics.ES30.All name, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a string describing the current GL connection @@ -16294,7 +16294,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetStringi")] [CLSCompliant(false)] - public static String GetString(OpenTK.Graphics.ES30.StringNameIndexed name, Int32 index) { throw new NotImplementedException(); } + public static String GetString(OpenTK.Graphics.ES30.StringNameIndexed name, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a string describing the current GL connection @@ -16307,7 +16307,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetStringi")] [CLSCompliant(false)] - public static String GetString(OpenTK.Graphics.ES30.StringNameIndexed name, UInt32 index) { throw new NotImplementedException(); } + public static String GetString(OpenTK.Graphics.ES30.StringNameIndexed name, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query the properties of a sync object @@ -16330,7 +16330,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSynciv")] [CLSCompliant(false)] - public static void GetSync(IntPtr sync, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query the properties of a sync object @@ -16353,7 +16353,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSynciv")] [CLSCompliant(false)] - public static void GetSync(IntPtr sync, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query the properties of a sync object @@ -16376,7 +16376,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSynciv")] [CLSCompliant(false)] - public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query the properties of a sync object @@ -16398,7 +16398,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSynciv")] [CLSCompliant(false)] - public static void GetSync(IntPtr sync, OpenTK.Graphics.ES30.SyncParameterName pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES30.SyncParameterName pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query the properties of a sync object @@ -16420,7 +16420,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSynciv")] [CLSCompliant(false)] - public static void GetSync(IntPtr sync, OpenTK.Graphics.ES30.SyncParameterName pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES30.SyncParameterName pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query the properties of a sync object @@ -16442,7 +16442,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSynciv")] [CLSCompliant(false)] - public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES30.SyncParameterName pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES30.SyncParameterName pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -16459,7 +16459,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameterfv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -16476,7 +16476,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameterfv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -16493,7 +16493,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameterfv")] [CLSCompliant(false)] - public static unsafe void GetTexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -16509,7 +16509,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameterfv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -16525,7 +16525,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameterfv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -16541,7 +16541,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameterfv")] [CLSCompliant(false)] - public static unsafe void GetTexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -16558,7 +16558,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameteriv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -16575,7 +16575,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameteriv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -16592,7 +16592,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameteriv")] [CLSCompliant(false)] - public static unsafe void GetTexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -16608,7 +16608,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameteriv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -16624,7 +16624,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameteriv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -16640,7 +16640,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameteriv")] [CLSCompliant(false)] - public static unsafe void GetTexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about varying variables selected for transform feedback @@ -16669,7 +16669,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] [CLSCompliant(false)] - public static void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about varying variables selected for transform feedback @@ -16697,7 +16697,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] [CLSCompliant(false)] - public static void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.TransformFeedbackType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.TransformFeedbackType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about varying variables selected for transform feedback @@ -16726,7 +16726,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about varying variables selected for transform feedback @@ -16754,7 +16754,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.TransformFeedbackType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.TransformFeedbackType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about varying variables selected for transform feedback @@ -16783,7 +16783,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] [CLSCompliant(false)] - public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about varying variables selected for transform feedback @@ -16811,7 +16811,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] [CLSCompliant(false)] - public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.TransformFeedbackType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.TransformFeedbackType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about varying variables selected for transform feedback @@ -16840,7 +16840,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about varying variables selected for transform feedback @@ -16868,7 +16868,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.TransformFeedbackType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.TransformFeedbackType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the index of a named uniform block @@ -16881,7 +16881,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformBlockIndex")] [CLSCompliant(false)] - public static Int32 GetUniformBlockIndex(Int32 program, [CountAttribute(Computed = "")] String uniformBlockName) { throw new NotImplementedException(); } + public static Int32 GetUniformBlockIndex(Int32 program, [CountAttribute(Computed = "")] String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the index of a named uniform block @@ -16894,7 +16894,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformBlockIndex")] [CLSCompliant(false)] - public static Int32 GetUniformBlockIndex(UInt32 program, [CountAttribute(Computed = "")] String uniformBlockName) { throw new NotImplementedException(); } + public static Int32 GetUniformBlockIndex(UInt32 program, [CountAttribute(Computed = "")] String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -16910,7 +16910,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -16926,7 +16926,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Single @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -16942,7 +16942,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -16958,7 +16958,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -16974,7 +16974,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Single @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -16990,7 +16990,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the index of a named uniform block @@ -17009,7 +17009,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformIndices")] [CLSCompliant(false)] - public static void GetUniformIndices(Int32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] Int32[] uniformIndices) { throw new NotImplementedException(); } + public static void GetUniformIndices(Int32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] Int32[] uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the index of a named uniform block @@ -17028,7 +17028,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformIndices")] [CLSCompliant(false)] - public static void GetUniformIndices(Int32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] out Int32 uniformIndices) { throw new NotImplementedException(); } + public static void GetUniformIndices(Int32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] out Int32 uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the index of a named uniform block @@ -17047,7 +17047,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformIndices")] [CLSCompliant(false)] - public static unsafe void GetUniformIndices(Int32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] Int32* uniformIndices) { throw new NotImplementedException(); } + public static unsafe void GetUniformIndices(Int32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] Int32* uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the index of a named uniform block @@ -17066,7 +17066,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformIndices")] [CLSCompliant(false)] - public static void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] UInt32[] uniformIndices) { throw new NotImplementedException(); } + public static void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] UInt32[] uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the index of a named uniform block @@ -17085,7 +17085,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformIndices")] [CLSCompliant(false)] - public static void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] out UInt32 uniformIndices) { throw new NotImplementedException(); } + public static void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] out UInt32 uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the index of a named uniform block @@ -17104,7 +17104,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformIndices")] [CLSCompliant(false)] - public static unsafe void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] UInt32* uniformIndices) { throw new NotImplementedException(); } + public static unsafe void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] UInt32* uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -17120,7 +17120,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -17136,7 +17136,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -17152,7 +17152,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -17168,7 +17168,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -17184,7 +17184,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -17200,7 +17200,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the location of a uniform variable @@ -17213,7 +17213,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformLocation")] [CLSCompliant(false)] - public static Int32 GetUniformLocation(Int32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetUniformLocation(Int32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the location of a uniform variable @@ -17226,7 +17226,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformLocation")] [CLSCompliant(false)] - public static Int32 GetUniformLocation(UInt32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetUniformLocation(UInt32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns the value of a uniform variable @@ -17242,7 +17242,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformuiv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns the value of a uniform variable @@ -17258,7 +17258,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformuiv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns the value of a uniform variable @@ -17274,7 +17274,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformuiv")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17291,7 +17291,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17308,7 +17308,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17325,7 +17325,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17341,7 +17341,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17357,7 +17357,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17373,7 +17373,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17390,7 +17390,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17407,7 +17407,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17424,7 +17424,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17440,7 +17440,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17456,7 +17456,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17472,7 +17472,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -17480,7 +17480,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] [CLSCompliant(false)] - public static void GetVertexAttribI(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribI(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -17488,7 +17488,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribI(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribI(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -17496,7 +17496,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] [CLSCompliant(false)] - public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -17504,7 +17504,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -17512,7 +17512,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIuiv")] [CLSCompliant(false)] - public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 1)] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 1)] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -17520,7 +17520,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIuiv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 1)] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 1)] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17537,7 +17537,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17554,7 +17554,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17571,7 +17571,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17587,7 +17587,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17603,7 +17603,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17619,7 +17619,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17636,7 +17636,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17653,7 +17653,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17670,7 +17670,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17686,7 +17686,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17702,7 +17702,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17718,7 +17718,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -17735,7 +17735,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] [CLSCompliant(false)] - public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new NotImplementedException(); } + public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -17754,7 +17754,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -17773,7 +17773,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -17792,7 +17792,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -17811,7 +17811,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -17827,7 +17827,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] [CLSCompliant(false)] - public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES30.VertexAttribPointerParameter pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new NotImplementedException(); } + public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES30.VertexAttribPointerParameter pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -17845,7 +17845,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES30.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -17863,7 +17863,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES30.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -17881,7 +17881,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES30.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -17899,7 +17899,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES30.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -17916,7 +17916,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] [CLSCompliant(false)] - public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new NotImplementedException(); } + public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -17935,7 +17935,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -17954,7 +17954,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -17973,7 +17973,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -17992,7 +17992,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -18008,7 +18008,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] [CLSCompliant(false)] - public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES30.VertexAttribPointerParameter pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new NotImplementedException(); } + public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES30.VertexAttribPointerParameter pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -18026,7 +18026,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES30.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -18044,7 +18044,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES30.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -18062,7 +18062,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES30.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -18080,7 +18080,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES30.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify implementation-specific hints @@ -18093,7 +18093,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glHint")] - public static void Hint(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All mode) { throw new NotImplementedException(); } + public static void Hint(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify implementation-specific hints @@ -18105,7 +18105,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a symbolic constant indicating the desired behavior. Fastest, Nicest, and DontCare are accepted. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glHint")] - public static void Hint(OpenTK.Graphics.ES30.HintTarget target, OpenTK.Graphics.ES30.HintMode mode) { throw new NotImplementedException(); } + public static void Hint(OpenTK.Graphics.ES30.HintTarget target, OpenTK.Graphics.ES30.HintMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Invalidate the contents of attachments within a framebuffer @@ -18122,7 +18122,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateFramebuffer")] [CLSCompliant(false)] - public static void InvalidateFramebuffer(OpenTK.Graphics.ES30.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES30.All[] attachments) { throw new NotImplementedException(); } + public static void InvalidateFramebuffer(OpenTK.Graphics.ES30.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES30.All[] attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Invalidate the contents of attachments within a framebuffer @@ -18139,7 +18139,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateFramebuffer")] [CLSCompliant(false)] - public static void InvalidateFramebuffer(OpenTK.Graphics.ES30.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES30.All attachments) { throw new NotImplementedException(); } + public static void InvalidateFramebuffer(OpenTK.Graphics.ES30.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES30.All attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Invalidate the contents of attachments within a framebuffer @@ -18156,7 +18156,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateFramebuffer")] [CLSCompliant(false)] - public static unsafe void InvalidateFramebuffer(OpenTK.Graphics.ES30.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES30.All* attachments) { throw new NotImplementedException(); } + public static unsafe void InvalidateFramebuffer(OpenTK.Graphics.ES30.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES30.All* attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Invalidate the contents of attachments within a framebuffer @@ -18172,7 +18172,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateFramebuffer")] [CLSCompliant(false)] - public static void InvalidateFramebuffer(OpenTK.Graphics.ES30.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES30.FramebufferAttachment[] attachments) { throw new NotImplementedException(); } + public static void InvalidateFramebuffer(OpenTK.Graphics.ES30.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES30.FramebufferAttachment[] attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Invalidate the contents of attachments within a framebuffer @@ -18188,7 +18188,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateFramebuffer")] [CLSCompliant(false)] - public static void InvalidateFramebuffer(OpenTK.Graphics.ES30.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES30.FramebufferAttachment attachments) { throw new NotImplementedException(); } + public static void InvalidateFramebuffer(OpenTK.Graphics.ES30.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES30.FramebufferAttachment attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Invalidate the contents of attachments within a framebuffer @@ -18204,7 +18204,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateFramebuffer")] [CLSCompliant(false)] - public static unsafe void InvalidateFramebuffer(OpenTK.Graphics.ES30.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES30.FramebufferAttachment* attachments) { throw new NotImplementedException(); } + public static unsafe void InvalidateFramebuffer(OpenTK.Graphics.ES30.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES30.FramebufferAttachment* attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Invalidate portions of the contents of attachments within a framebuffer @@ -18233,7 +18233,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateSubFramebuffer")] [CLSCompliant(false)] - public static void InvalidateSubFramebuffer(OpenTK.Graphics.ES30.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES30.All[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void InvalidateSubFramebuffer(OpenTK.Graphics.ES30.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES30.All[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Invalidate portions of the contents of attachments within a framebuffer @@ -18262,7 +18262,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateSubFramebuffer")] [CLSCompliant(false)] - public static void InvalidateSubFramebuffer(OpenTK.Graphics.ES30.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES30.All attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void InvalidateSubFramebuffer(OpenTK.Graphics.ES30.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES30.All attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Invalidate portions of the contents of attachments within a framebuffer @@ -18291,7 +18291,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateSubFramebuffer")] [CLSCompliant(false)] - public static unsafe void InvalidateSubFramebuffer(OpenTK.Graphics.ES30.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES30.All* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static unsafe void InvalidateSubFramebuffer(OpenTK.Graphics.ES30.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES30.All* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Invalidate portions of the contents of attachments within a framebuffer @@ -18319,7 +18319,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateSubFramebuffer")] [CLSCompliant(false)] - public static void InvalidateSubFramebuffer(OpenTK.Graphics.ES30.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES30.FramebufferAttachment[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void InvalidateSubFramebuffer(OpenTK.Graphics.ES30.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES30.FramebufferAttachment[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Invalidate portions of the contents of attachments within a framebuffer @@ -18347,7 +18347,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateSubFramebuffer")] [CLSCompliant(false)] - public static void InvalidateSubFramebuffer(OpenTK.Graphics.ES30.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES30.FramebufferAttachment attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void InvalidateSubFramebuffer(OpenTK.Graphics.ES30.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES30.FramebufferAttachment attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Invalidate portions of the contents of attachments within a framebuffer @@ -18375,7 +18375,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateSubFramebuffer")] [CLSCompliant(false)] - public static unsafe void InvalidateSubFramebuffer(OpenTK.Graphics.ES30.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES30.FramebufferAttachment* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static unsafe void InvalidateSubFramebuffer(OpenTK.Graphics.ES30.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES30.FramebufferAttachment* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a buffer object @@ -18385,7 +18385,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsBuffer")] [CLSCompliant(false)] - public static bool IsBuffer(Int32 buffer) { throw new NotImplementedException(); } + public static bool IsBuffer(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a buffer object @@ -18395,7 +18395,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsBuffer")] [CLSCompliant(false)] - public static bool IsBuffer(UInt32 buffer) { throw new NotImplementedException(); } + public static bool IsBuffer(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Test whether a capability is enabled @@ -18405,7 +18405,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsEnabled")] - public static bool IsEnabled(OpenTK.Graphics.ES30.All cap) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES30.All cap) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Test whether a capability is enabled @@ -18414,7 +18414,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a symbolic constant indicating a GL capability. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsEnabled")] - public static bool IsEnabled(OpenTK.Graphics.ES30.EnableCap cap) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES30.EnableCap cap) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a framebuffer object @@ -18424,7 +18424,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsFramebuffer")] [CLSCompliant(false)] - public static bool IsFramebuffer(Int32 framebuffer) { throw new NotImplementedException(); } + public static bool IsFramebuffer(Int32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a framebuffer object @@ -18434,7 +18434,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsFramebuffer")] [CLSCompliant(false)] - public static bool IsFramebuffer(UInt32 framebuffer) { throw new NotImplementedException(); } + public static bool IsFramebuffer(UInt32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determines if a name corresponds to a program object @@ -18444,7 +18444,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsProgram")] [CLSCompliant(false)] - public static bool IsProgram(Int32 program) { throw new NotImplementedException(); } + public static bool IsProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determines if a name corresponds to a program object @@ -18454,7 +18454,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsProgram")] [CLSCompliant(false)] - public static bool IsProgram(UInt32 program) { throw new NotImplementedException(); } + public static bool IsProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Determine if a name corresponds to a query object @@ -18464,7 +18464,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glIsQuery")] [CLSCompliant(false)] - public static bool IsQuery(Int32 id) { throw new NotImplementedException(); } + public static bool IsQuery(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Determine if a name corresponds to a query object @@ -18474,7 +18474,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glIsQuery")] [CLSCompliant(false)] - public static bool IsQuery(UInt32 id) { throw new NotImplementedException(); } + public static bool IsQuery(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a renderbuffer object @@ -18484,7 +18484,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsRenderbuffer")] [CLSCompliant(false)] - public static bool IsRenderbuffer(Int32 renderbuffer) { throw new NotImplementedException(); } + public static bool IsRenderbuffer(Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a renderbuffer object @@ -18494,7 +18494,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsRenderbuffer")] [CLSCompliant(false)] - public static bool IsRenderbuffer(UInt32 renderbuffer) { throw new NotImplementedException(); } + public static bool IsRenderbuffer(UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Determine if a name corresponds to a sampler object @@ -18504,7 +18504,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glIsSampler")] [CLSCompliant(false)] - public static bool IsSampler(Int32 sampler) { throw new NotImplementedException(); } + public static bool IsSampler(Int32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Determine if a name corresponds to a sampler object @@ -18514,7 +18514,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glIsSampler")] [CLSCompliant(false)] - public static bool IsSampler(UInt32 sampler) { throw new NotImplementedException(); } + public static bool IsSampler(UInt32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determines if a name corresponds to a shader object @@ -18524,7 +18524,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsShader")] [CLSCompliant(false)] - public static bool IsShader(Int32 shader) { throw new NotImplementedException(); } + public static bool IsShader(Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determines if a name corresponds to a shader object @@ -18534,7 +18534,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsShader")] [CLSCompliant(false)] - public static bool IsShader(UInt32 shader) { throw new NotImplementedException(); } + public static bool IsShader(UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Determine if a name corresponds to a sync object @@ -18543,7 +18543,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a value that may be the name of a sync object. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glIsSync")] - public static bool IsSync(IntPtr sync) { throw new NotImplementedException(); } + public static bool IsSync(IntPtr sync) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a texture @@ -18553,7 +18553,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsTexture")] [CLSCompliant(false)] - public static bool IsTexture(Int32 texture) { throw new NotImplementedException(); } + public static bool IsTexture(Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a texture @@ -18563,7 +18563,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsTexture")] [CLSCompliant(false)] - public static bool IsTexture(UInt32 texture) { throw new NotImplementedException(); } + public static bool IsTexture(UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Determine if a name corresponds to a transform feedback object @@ -18573,7 +18573,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glIsTransformFeedback")] [CLSCompliant(false)] - public static bool IsTransformFeedback(Int32 id) { throw new NotImplementedException(); } + public static bool IsTransformFeedback(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Determine if a name corresponds to a transform feedback object @@ -18583,7 +18583,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glIsTransformFeedback")] [CLSCompliant(false)] - public static bool IsTransformFeedback(UInt32 id) { throw new NotImplementedException(); } + public static bool IsTransformFeedback(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Determine if a name corresponds to a vertex array object @@ -18593,7 +18593,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glIsVertexArray")] [CLSCompliant(false)] - public static bool IsVertexArray(Int32 array) { throw new NotImplementedException(); } + public static bool IsVertexArray(Int32 array) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Determine if a name corresponds to a vertex array object @@ -18603,7 +18603,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glIsVertexArray")] [CLSCompliant(false)] - public static bool IsVertexArray(UInt32 array) { throw new NotImplementedException(); } + public static bool IsVertexArray(UInt32 array) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the width of rasterized lines @@ -18612,7 +18612,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the width of rasterized lines. The initial value is 1. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glLineWidth")] - public static void LineWidth(Single width) { throw new NotImplementedException(); } + public static void LineWidth(Single width) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Links a program object @@ -18622,7 +18622,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glLinkProgram")] [CLSCompliant(false)] - public static void LinkProgram(Int32 program) { throw new NotImplementedException(); } + public static void LinkProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Links a program object @@ -18632,7 +18632,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glLinkProgram")] [CLSCompliant(false)] - public static void LinkProgram(UInt32 program) { throw new NotImplementedException(); } + public static void LinkProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Map a section of a buffer object's data store @@ -18651,7 +18651,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glMapBufferRange")] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 length, OpenTK.Graphics.ES30.All access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 length, OpenTK.Graphics.ES30.All access) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Map a section of a buffer object's data store @@ -18670,7 +18670,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glMapBufferRange")] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr length, OpenTK.Graphics.ES30.All access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr length, OpenTK.Graphics.ES30.All access) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Map a section of a buffer object's data store @@ -18688,7 +18688,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a combination of access flags indicating the desired access to the range. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glMapBufferRange")] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, Int32 length, OpenTK.Graphics.ES30.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, Int32 length, OpenTK.Graphics.ES30.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Map a section of a buffer object's data store @@ -18706,7 +18706,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a combination of access flags indicating the desired access to the range. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glMapBufferRange")] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, IntPtr length, OpenTK.Graphics.ES30.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, IntPtr length, OpenTK.Graphics.ES30.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// /// Label a named object identified within a namespace @@ -18726,7 +18726,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabel")] [CLSCompliant(false)] - public static void ObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } /// /// Label a named object identified within a namespace @@ -18746,7 +18746,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabel")] [CLSCompliant(false)] - public static void ObjectLabel(OpenTK.Graphics.ES30.All identifier, UInt32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.ES30.All identifier, UInt32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } /// /// Label a named object identified within a namespace @@ -18765,7 +18765,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabel")] [CLSCompliant(false)] - public static void ObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, Int32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, Int32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } /// /// Label a named object identified within a namespace @@ -18784,7 +18784,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabel")] [CLSCompliant(false)] - public static void ObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, UInt32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, UInt32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } /// /// Label a a sync object identified by a pointer @@ -18799,7 +18799,7 @@ namespace OpenTK.Graphics.ES30 /// The address of a string containing the label to assign to the object. /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabel")] - public static void ObjectPtrLabel(IntPtr ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new NotImplementedException(); } + public static void ObjectPtrLabel(IntPtr ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } /// /// Label a a sync object identified by a pointer @@ -18817,7 +18817,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Label a a sync object identified by a pointer @@ -18835,7 +18835,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Label a a sync object identified by a pointer @@ -18853,7 +18853,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Label a a sync object identified by a pointer @@ -18870,13 +18870,13 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabel")] public static void ObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Pause transform feedback operations /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glPauseTransformFeedback")] - public static void PauseTransformFeedback() { throw new NotImplementedException(); } + public static void PauseTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set pixel storage modes @@ -18889,7 +18889,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glPixelStorei")] - public static void PixelStore(OpenTK.Graphics.ES30.All pname, Int32 param) { throw new NotImplementedException(); } + public static void PixelStore(OpenTK.Graphics.ES30.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set pixel storage modes @@ -18901,7 +18901,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the value that pname is set to. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glPixelStorei")] - public static void PixelStore(OpenTK.Graphics.ES30.PixelStoreParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void PixelStore(OpenTK.Graphics.ES30.PixelStoreParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set the scale and units used to calculate depth values @@ -18913,13 +18913,13 @@ namespace OpenTK.Graphics.ES30 /// Is multiplied by an implementation-specific value to create a constant depth offset. The initial value is 0. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glPolygonOffset")] - public static void PolygonOffset(Single factor, Single units) { throw new NotImplementedException(); } + public static void PolygonOffset(Single factor, Single units) { throw new BindingsNotRewrittenException(); } /// /// Pop the active debug group /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPopDebugGroup")] - public static void PopDebugGroup() { throw new NotImplementedException(); } + public static void PopDebugGroup() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Load a program object with a program binary @@ -18938,7 +18938,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glProgramBinary")] [CLSCompliant(false)] - public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES30.All binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES30.All binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Load a program object with a program binary @@ -18959,7 +18959,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Load a program object with a program binary @@ -18980,7 +18980,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Load a program object with a program binary @@ -19001,7 +19001,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Load a program object with a program binary @@ -19022,7 +19022,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T2 binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Load a program object with a program binary @@ -19041,7 +19041,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glProgramBinary")] [CLSCompliant(false)] - public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES30.All binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES30.All binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Load a program object with a program binary @@ -19062,7 +19062,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Load a program object with a program binary @@ -19083,7 +19083,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Load a program object with a program binary @@ -19104,7 +19104,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Load a program object with a program binary @@ -19125,7 +19125,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T2 binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a parameter for a program object @@ -19142,7 +19142,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glProgramParameteri")] [CLSCompliant(false)] - public static void ProgramParameter(Int32 program, OpenTK.Graphics.ES30.All pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(Int32 program, OpenTK.Graphics.ES30.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a parameter for a program object @@ -19158,7 +19158,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glProgramParameteri")] [CLSCompliant(false)] - public static void ProgramParameter(Int32 program, OpenTK.Graphics.ES30.ProgramParameterName pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(Int32 program, OpenTK.Graphics.ES30.ProgramParameterName pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a parameter for a program object @@ -19175,7 +19175,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glProgramParameteri")] [CLSCompliant(false)] - public static void ProgramParameter(UInt32 program, OpenTK.Graphics.ES30.All pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(UInt32 program, OpenTK.Graphics.ES30.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a parameter for a program object @@ -19191,7 +19191,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glProgramParameteri")] [CLSCompliant(false)] - public static void ProgramParameter(UInt32 program, OpenTK.Graphics.ES30.ProgramParameterName pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(UInt32 program, OpenTK.Graphics.ES30.ProgramParameterName pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// /// Push a named debug group into the command stream @@ -19210,7 +19210,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroup")] [CLSCompliant(false)] - public static void PushDebugGroup(OpenTK.Graphics.ES30.All source, Int32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new NotImplementedException(); } + public static void PushDebugGroup(OpenTK.Graphics.ES30.All source, Int32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new BindingsNotRewrittenException(); } /// /// Push a named debug group into the command stream @@ -19229,7 +19229,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroup")] [CLSCompliant(false)] - public static void PushDebugGroup(OpenTK.Graphics.ES30.All source, UInt32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new NotImplementedException(); } + public static void PushDebugGroup(OpenTK.Graphics.ES30.All source, UInt32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Select a color buffer source for pixels @@ -19239,7 +19239,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glReadBuffer")] - public static void ReadBuffer(OpenTK.Graphics.ES30.All src) { throw new NotImplementedException(); } + public static void ReadBuffer(OpenTK.Graphics.ES30.All src) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Select a color buffer source for pixels @@ -19248,7 +19248,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a color buffer. Accepted values are Back, None, and ColorAttachmenti. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glReadBuffer")] - public static void ReadBuffer(OpenTK.Graphics.ES30.ReadBufferMode src) { throw new NotImplementedException(); } + public static void ReadBuffer(OpenTK.Graphics.ES30.ReadBufferMode src) { throw new BindingsNotRewrittenException(); } /// /// @@ -19261,7 +19261,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixels")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, Int32 bufSize, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, Int32 bufSize, [OutAttribute] IntPtr data) { throw new BindingsNotRewrittenException(); } /// /// @@ -19277,7 +19277,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, Int32 bufSize, [InAttribute, OutAttribute] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// @@ -19293,7 +19293,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, Int32 bufSize, [InAttribute, OutAttribute] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// @@ -19309,7 +19309,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, Int32 bufSize, [InAttribute, OutAttribute] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// @@ -19324,7 +19324,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixels")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, Int32 bufSize, [InAttribute, OutAttribute] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// @@ -19336,7 +19336,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixels")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, Int32 bufSize, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, Int32 bufSize, [OutAttribute] IntPtr data) { throw new BindingsNotRewrittenException(); } /// /// @@ -19351,7 +19351,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// @@ -19366,7 +19366,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// @@ -19381,7 +19381,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// @@ -19395,7 +19395,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixels")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -19423,7 +19423,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReadPixels")] - public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -19454,7 +19454,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -19485,7 +19485,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -19516,7 +19516,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -19546,7 +19546,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReadPixels")] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T6 pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -19573,7 +19573,7 @@ namespace OpenTK.Graphics.ES30 /// Returns the pixel data. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReadPixels")] - public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -19603,7 +19603,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -19633,7 +19633,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -19663,7 +19663,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -19692,13 +19692,13 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReadPixels")] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T6 pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Release resources consumed by the implementation's shader compiler /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReleaseShaderCompiler")] - public static void ReleaseShaderCompiler() { throw new NotImplementedException(); } + public static void ReleaseShaderCompiler() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Establish data storage, format and dimensions of a renderbuffer object's image @@ -19717,7 +19717,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glRenderbufferStorage")] - public static void RenderbufferStorage(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorage(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Establish data storage, format and dimensions of a renderbuffer object's image @@ -19735,7 +19735,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glRenderbufferStorage")] - public static void RenderbufferStorage(OpenTK.Graphics.ES30.RenderbufferTarget target, OpenTK.Graphics.ES30.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorage(OpenTK.Graphics.ES30.RenderbufferTarget target, OpenTK.Graphics.ES30.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -19757,7 +19757,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glRenderbufferStorageMultisample")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -19778,13 +19778,13 @@ namespace OpenTK.Graphics.ES30 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glRenderbufferStorageMultisample")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES30.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES30.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Resume transform feedback operations /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glResumeTransformFeedback")] - public static void ResumeTransformFeedback() { throw new NotImplementedException(); } + public static void ResumeTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify multisample coverage parameters @@ -19796,7 +19796,7 @@ namespace OpenTK.Graphics.ES30 /// Specify a single boolean value representing if the coverage masks should be inverted. True and False are accepted. The initial value is False. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glSampleCoverage")] - public static void SampleCoverage(Single value, bool invert) { throw new NotImplementedException(); } + public static void SampleCoverage(Single value, bool invert) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -19813,7 +19813,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterf")] [CLSCompliant(false)] - public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, Single param) { throw new NotImplementedException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -19829,7 +19829,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterf")] [CLSCompliant(false)] - public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, Single param) { throw new NotImplementedException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -19846,7 +19846,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterf")] [CLSCompliant(false)] - public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, Single param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -19862,7 +19862,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterf")] [CLSCompliant(false)] - public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, Single param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -19879,7 +19879,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterfv")] [CLSCompliant(false)] - public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -19896,7 +19896,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterfv")] [CLSCompliant(false)] - public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -19912,7 +19912,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterfv")] [CLSCompliant(false)] - public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -19928,7 +19928,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterfv")] [CLSCompliant(false)] - public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Single* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Single* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -19945,7 +19945,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterfv")] [CLSCompliant(false)] - public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -19962,7 +19962,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterfv")] [CLSCompliant(false)] - public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -19978,7 +19978,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterfv")] [CLSCompliant(false)] - public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -19994,7 +19994,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterfv")] [CLSCompliant(false)] - public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Single* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Single* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20011,7 +20011,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteri")] [CLSCompliant(false)] - public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20027,7 +20027,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteri")] [CLSCompliant(false)] - public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20044,7 +20044,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteri")] [CLSCompliant(false)] - public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20060,7 +20060,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteri")] [CLSCompliant(false)] - public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20077,7 +20077,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteriv")] [CLSCompliant(false)] - public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20094,7 +20094,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteriv")] [CLSCompliant(false)] - public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20110,7 +20110,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteriv")] [CLSCompliant(false)] - public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20126,7 +20126,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteriv")] [CLSCompliant(false)] - public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20143,7 +20143,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteriv")] [CLSCompliant(false)] - public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20160,7 +20160,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteriv")] [CLSCompliant(false)] - public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20176,7 +20176,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteriv")] [CLSCompliant(false)] - public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20192,7 +20192,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteriv")] [CLSCompliant(false)] - public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define the scissor box @@ -20210,7 +20210,7 @@ namespace OpenTK.Graphics.ES30 /// Specify the width and height of the scissor box. When a GL context is first attached to a window, width and height are set to the dimensions of that window. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glScissor")] - public static void Scissor(Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void Scissor(Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20233,7 +20233,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES30.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES30.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20258,7 +20258,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20283,7 +20283,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20308,7 +20308,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20333,7 +20333,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20355,7 +20355,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20379,7 +20379,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20403,7 +20403,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20427,7 +20427,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20451,7 +20451,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20474,7 +20474,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES30.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES30.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20499,7 +20499,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20524,7 +20524,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20549,7 +20549,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20574,7 +20574,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20596,7 +20596,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20620,7 +20620,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20644,7 +20644,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20668,7 +20668,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20692,7 +20692,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20715,7 +20715,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES30.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES30.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20740,7 +20740,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20765,7 +20765,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20790,7 +20790,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20815,7 +20815,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20837,7 +20837,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20861,7 +20861,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20885,7 +20885,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20909,7 +20909,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20933,7 +20933,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20956,7 +20956,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES30.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES30.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20981,7 +20981,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21006,7 +21006,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21031,7 +21031,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21056,7 +21056,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21078,7 +21078,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21102,7 +21102,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21126,7 +21126,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21150,7 +21150,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21174,7 +21174,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21197,7 +21197,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES30.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES30.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21222,7 +21222,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21247,7 +21247,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21272,7 +21272,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21297,7 +21297,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21319,7 +21319,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21343,7 +21343,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21367,7 +21367,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21391,7 +21391,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21415,7 +21415,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21438,7 +21438,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES30.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES30.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21463,7 +21463,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21488,7 +21488,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21513,7 +21513,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21538,7 +21538,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21560,7 +21560,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21584,7 +21584,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21608,7 +21608,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21632,7 +21632,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21656,7 +21656,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Replaces the source code in a shader object @@ -21675,7 +21675,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new NotImplementedException(); } + public static void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Replaces the source code in a shader object @@ -21694,7 +21694,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new NotImplementedException(); } + public static void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Replaces the source code in a shader object @@ -21713,7 +21713,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static unsafe void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new NotImplementedException(); } + public static unsafe void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Replaces the source code in a shader object @@ -21732,7 +21732,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new NotImplementedException(); } + public static void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Replaces the source code in a shader object @@ -21751,7 +21751,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new NotImplementedException(); } + public static void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Replaces the source code in a shader object @@ -21770,7 +21770,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static unsafe void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new NotImplementedException(); } + public static unsafe void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and back function and reference value for stencil testing @@ -21787,7 +21787,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFunc")] [CLSCompliant(false)] - public static void StencilFunc(OpenTK.Graphics.ES30.All func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } + public static void StencilFunc(OpenTK.Graphics.ES30.All func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and back function and reference value for stencil testing @@ -21804,7 +21804,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFunc")] [CLSCompliant(false)] - public static void StencilFunc(OpenTK.Graphics.ES30.All func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFunc(OpenTK.Graphics.ES30.All func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and back function and reference value for stencil testing @@ -21820,7 +21820,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFunc")] [CLSCompliant(false)] - public static void StencilFunc(OpenTK.Graphics.ES30.StencilFunction func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } + public static void StencilFunc(OpenTK.Graphics.ES30.StencilFunction func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and back function and reference value for stencil testing @@ -21836,7 +21836,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFunc")] [CLSCompliant(false)] - public static void StencilFunc(OpenTK.Graphics.ES30.StencilFunction func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFunc(OpenTK.Graphics.ES30.StencilFunction func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back function and reference value for stencil testing @@ -21856,7 +21856,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")] [CLSCompliant(false)] - public static void StencilFuncSeparate(OpenTK.Graphics.ES30.All face, OpenTK.Graphics.ES30.All func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } + public static void StencilFuncSeparate(OpenTK.Graphics.ES30.All face, OpenTK.Graphics.ES30.All func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back function and reference value for stencil testing @@ -21876,7 +21876,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")] [CLSCompliant(false)] - public static void StencilFuncSeparate(OpenTK.Graphics.ES30.All face, OpenTK.Graphics.ES30.All func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFuncSeparate(OpenTK.Graphics.ES30.All face, OpenTK.Graphics.ES30.All func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back function and reference value for stencil testing @@ -21895,7 +21895,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")] [CLSCompliant(false)] - public static void StencilFuncSeparate(OpenTK.Graphics.ES30.StencilFace face, OpenTK.Graphics.ES30.StencilFunction func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } + public static void StencilFuncSeparate(OpenTK.Graphics.ES30.StencilFace face, OpenTK.Graphics.ES30.StencilFunction func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back function and reference value for stencil testing @@ -21914,7 +21914,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")] [CLSCompliant(false)] - public static void StencilFuncSeparate(OpenTK.Graphics.ES30.StencilFace face, OpenTK.Graphics.ES30.StencilFunction func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFuncSeparate(OpenTK.Graphics.ES30.StencilFace face, OpenTK.Graphics.ES30.StencilFunction func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Control the front and back writing of individual bits in the stencil planes @@ -21924,7 +21924,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMask")] [CLSCompliant(false)] - public static void StencilMask(Int32 mask) { throw new NotImplementedException(); } + public static void StencilMask(Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Control the front and back writing of individual bits in the stencil planes @@ -21934,7 +21934,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMask")] [CLSCompliant(false)] - public static void StencilMask(UInt32 mask) { throw new NotImplementedException(); } + public static void StencilMask(UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Control the front and/or back writing of individual bits in the stencil planes @@ -21948,7 +21948,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMaskSeparate")] [CLSCompliant(false)] - public static void StencilMaskSeparate(OpenTK.Graphics.ES30.All face, Int32 mask) { throw new NotImplementedException(); } + public static void StencilMaskSeparate(OpenTK.Graphics.ES30.All face, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Control the front and/or back writing of individual bits in the stencil planes @@ -21962,7 +21962,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMaskSeparate")] [CLSCompliant(false)] - public static void StencilMaskSeparate(OpenTK.Graphics.ES30.All face, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilMaskSeparate(OpenTK.Graphics.ES30.All face, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Control the front and/or back writing of individual bits in the stencil planes @@ -21975,7 +21975,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMaskSeparate")] [CLSCompliant(false)] - public static void StencilMaskSeparate(OpenTK.Graphics.ES30.StencilFace face, Int32 mask) { throw new NotImplementedException(); } + public static void StencilMaskSeparate(OpenTK.Graphics.ES30.StencilFace face, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Control the front and/or back writing of individual bits in the stencil planes @@ -21988,7 +21988,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMaskSeparate")] [CLSCompliant(false)] - public static void StencilMaskSeparate(OpenTK.Graphics.ES30.StencilFace face, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilMaskSeparate(OpenTK.Graphics.ES30.StencilFace face, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and back stencil test actions @@ -22004,7 +22004,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilOp")] - public static void StencilOp(OpenTK.Graphics.ES30.All fail, OpenTK.Graphics.ES30.All zfail, OpenTK.Graphics.ES30.All zpass) { throw new NotImplementedException(); } + public static void StencilOp(OpenTK.Graphics.ES30.All fail, OpenTK.Graphics.ES30.All zfail, OpenTK.Graphics.ES30.All zpass) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and back stencil test actions @@ -22019,7 +22019,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the stencil action when both the stencil test and the depth test pass, or when the stencil test passes and either there is no depth buffer or depth testing is not enabled. dppass accepts the same symbolic constants as sfail. The initial value is Keep. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilOp")] - public static void StencilOp(OpenTK.Graphics.ES30.StencilOp fail, OpenTK.Graphics.ES30.StencilOp zfail, OpenTK.Graphics.ES30.StencilOp zpass) { throw new NotImplementedException(); } + public static void StencilOp(OpenTK.Graphics.ES30.StencilOp fail, OpenTK.Graphics.ES30.StencilOp zfail, OpenTK.Graphics.ES30.StencilOp zpass) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back stencil test actions @@ -22038,7 +22038,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilOpSeparate")] - public static void StencilOpSeparate(OpenTK.Graphics.ES30.All face, OpenTK.Graphics.ES30.All sfail, OpenTK.Graphics.ES30.All dpfail, OpenTK.Graphics.ES30.All dppass) { throw new NotImplementedException(); } + public static void StencilOpSeparate(OpenTK.Graphics.ES30.All face, OpenTK.Graphics.ES30.All sfail, OpenTK.Graphics.ES30.All dpfail, OpenTK.Graphics.ES30.All dppass) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back stencil test actions @@ -22056,7 +22056,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the stencil action when both the stencil test and the depth test pass, or when the stencil test passes and either there is no depth buffer or depth testing is not enabled. dppass accepts the same symbolic constants as sfail. The initial value is Keep. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilOpSeparate")] - public static void StencilOpSeparate(OpenTK.Graphics.ES30.StencilFace face, OpenTK.Graphics.ES30.StencilOp sfail, OpenTK.Graphics.ES30.StencilOp dpfail, OpenTK.Graphics.ES30.StencilOp dppass) { throw new NotImplementedException(); } + public static void StencilOpSeparate(OpenTK.Graphics.ES30.StencilFace face, OpenTK.Graphics.ES30.StencilOp sfail, OpenTK.Graphics.ES30.StencilOp dpfail, OpenTK.Graphics.ES30.StencilOp dppass) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -22090,7 +22090,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] - public static void TexImage2D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexImage2D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -22127,7 +22127,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -22164,7 +22164,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -22201,7 +22201,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -22237,7 +22237,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] public static void TexImage2D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -22270,7 +22270,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] - public static void TexImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES30.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES30.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -22306,7 +22306,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES30.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -22342,7 +22342,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES30.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -22378,7 +22378,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES30.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -22413,7 +22413,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] public static void TexImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES30.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image @@ -22450,7 +22450,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexImage3D")] - public static void TexImage3D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexImage3D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image @@ -22490,7 +22490,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image @@ -22530,7 +22530,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image @@ -22570,7 +22570,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image @@ -22609,7 +22609,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexImage3D")] public static void TexImage3D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image @@ -22645,7 +22645,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexImage3D")] - public static void TexImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES30.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES30.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image @@ -22684,7 +22684,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES30.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image @@ -22723,7 +22723,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES30.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image @@ -22762,7 +22762,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES30.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image @@ -22800,7 +22800,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexImage3D")] public static void TexImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES30.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22816,7 +22816,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameterf")] - public static void TexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, Single param) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22831,7 +22831,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the value of pname. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameterf")] - public static void TexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, Single param) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22848,7 +22848,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameterfv")] [CLSCompliant(false)] - public static void TexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22865,7 +22865,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameterfv")] [CLSCompliant(false)] - public static unsafe void TexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22881,7 +22881,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameterfv")] [CLSCompliant(false)] - public static void TexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22897,7 +22897,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameterfv")] [CLSCompliant(false)] - public static unsafe void TexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22913,7 +22913,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameteri")] - public static void TexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, Int32 param) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22928,7 +22928,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the value of pname. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameteri")] - public static void TexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22945,7 +22945,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameteriv")] [CLSCompliant(false)] - public static void TexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22962,7 +22962,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameteriv")] [CLSCompliant(false)] - public static unsafe void TexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22978,7 +22978,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameteriv")] [CLSCompliant(false)] - public static void TexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22994,7 +22994,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameteriv")] [CLSCompliant(false)] - public static unsafe void TexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Simultaneously specify storage for all levels of a two-dimensional texture @@ -23016,7 +23016,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexStorage2D")] - public static void TexStorage2D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TexStorage2D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Simultaneously specify storage for all levels of a two-dimensional texture @@ -23037,7 +23037,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the height of the texture, in texels. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexStorage2D")] - public static void TexStorage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 levels, OpenTK.Graphics.ES30.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TexStorage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 levels, OpenTK.Graphics.ES30.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Simultaneously specify storage for all levels of a three-dimensional or two-dimensional array texture @@ -23062,7 +23062,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexStorage3D")] - public static void TexStorage3D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TexStorage3D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Simultaneously specify storage for all levels of a three-dimensional or two-dimensional array texture @@ -23086,7 +23086,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the depth of the texture, in texels. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexStorage3D")] - public static void TexStorage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 levels, OpenTK.Graphics.ES30.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TexStorage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 levels, OpenTK.Graphics.ES30.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -23120,7 +23120,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] - public static void TexSubImage2D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexSubImage2D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -23157,7 +23157,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -23194,7 +23194,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -23231,7 +23231,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -23267,7 +23267,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] public static void TexSubImage2D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -23300,7 +23300,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] - public static void TexSubImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexSubImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -23336,7 +23336,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -23372,7 +23372,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -23408,7 +23408,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -23443,7 +23443,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] public static void TexSubImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage @@ -23483,7 +23483,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexSubImage3D")] - public static void TexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage @@ -23526,7 +23526,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage @@ -23569,7 +23569,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage @@ -23612,7 +23612,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage @@ -23654,7 +23654,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexSubImage3D")] public static void TexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage @@ -23693,7 +23693,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexSubImage3D")] - public static void TexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage @@ -23735,7 +23735,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage @@ -23777,7 +23777,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage @@ -23819,7 +23819,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage @@ -23860,7 +23860,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexSubImage3D")] public static void TexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify values to record in transform feedback buffers @@ -23880,7 +23880,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTransformFeedbackVaryings")] [CLSCompliant(false)] - public static void TransformFeedbackVaryings(Int32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.ES30.All bufferMode) { throw new NotImplementedException(); } + public static void TransformFeedbackVaryings(Int32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.ES30.All bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify values to record in transform feedback buffers @@ -23899,7 +23899,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTransformFeedbackVaryings")] [CLSCompliant(false)] - public static void TransformFeedbackVaryings(Int32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.ES30.TransformFeedbackMode bufferMode) { throw new NotImplementedException(); } + public static void TransformFeedbackVaryings(Int32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.ES30.TransformFeedbackMode bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify values to record in transform feedback buffers @@ -23919,7 +23919,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTransformFeedbackVaryings")] [CLSCompliant(false)] - public static void TransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.ES30.All bufferMode) { throw new NotImplementedException(); } + public static void TransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.ES30.All bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify values to record in transform feedback buffers @@ -23938,7 +23938,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTransformFeedbackVaryings")] [CLSCompliant(false)] - public static void TransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.ES30.TransformFeedbackMode bufferMode) { throw new NotImplementedException(); } + public static void TransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.ES30.TransformFeedbackMode bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23950,7 +23950,7 @@ namespace OpenTK.Graphics.ES30 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1f")] - public static void Uniform1(Int32 location, Single v0) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23966,7 +23966,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1fv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23982,7 +23982,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1fv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23998,7 +23998,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1fv")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24010,7 +24010,7 @@ namespace OpenTK.Graphics.ES30 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1i")] - public static void Uniform1(Int32 location, Int32 v0) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24026,7 +24026,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1iv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24042,7 +24042,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1iv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24058,7 +24058,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1iv")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -24071,7 +24071,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1ui")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, UInt32 v0) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, UInt32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -24087,7 +24087,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1uiv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -24103,7 +24103,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1uiv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt32 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -24119,7 +24119,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1uiv")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24134,7 +24134,7 @@ namespace OpenTK.Graphics.ES30 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2f")] - public static void Uniform2(Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24150,7 +24150,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2fv")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24166,7 +24166,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2fv")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24182,7 +24182,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2fv")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24197,7 +24197,7 @@ namespace OpenTK.Graphics.ES30 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2i")] - public static void Uniform2(Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24213,7 +24213,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2iv")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24229,7 +24229,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2iv")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -24245,7 +24245,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform2ui")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, UInt32 v0, UInt32 v1) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, UInt32 v0, UInt32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -24261,7 +24261,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform2uiv")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -24277,7 +24277,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform2uiv")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -24293,7 +24293,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform2uiv")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24311,7 +24311,7 @@ namespace OpenTK.Graphics.ES30 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3f")] - public static void Uniform3(Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24327,7 +24327,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3fv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24343,7 +24343,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3fv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24359,7 +24359,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3fv")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24377,7 +24377,7 @@ namespace OpenTK.Graphics.ES30 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3i")] - public static void Uniform3(Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24393,7 +24393,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3iv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24409,7 +24409,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3iv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24425,7 +24425,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3iv")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -24444,7 +24444,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform3ui")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -24460,7 +24460,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform3uiv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -24476,7 +24476,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform3uiv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -24492,7 +24492,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform3uiv")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24513,7 +24513,7 @@ namespace OpenTK.Graphics.ES30 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4f")] - public static void Uniform4(Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24529,7 +24529,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4fv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24545,7 +24545,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4fv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24561,7 +24561,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4fv")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24582,7 +24582,7 @@ namespace OpenTK.Graphics.ES30 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4i")] - public static void Uniform4(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24598,7 +24598,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4iv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24614,7 +24614,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4iv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24630,7 +24630,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4iv")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -24652,7 +24652,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform4ui")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -24668,7 +24668,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform4uiv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -24684,7 +24684,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform4uiv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -24700,7 +24700,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform4uiv")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Assign a binding point to an active uniform block @@ -24716,7 +24716,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformBlockBinding")] [CLSCompliant(false)] - public static void UniformBlockBinding(Int32 program, Int32 uniformBlockIndex, Int32 uniformBlockBinding) { throw new NotImplementedException(); } + public static void UniformBlockBinding(Int32 program, Int32 uniformBlockIndex, Int32 uniformBlockBinding) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Assign a binding point to an active uniform block @@ -24732,7 +24732,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformBlockBinding")] [CLSCompliant(false)] - public static void UniformBlockBinding(UInt32 program, UInt32 uniformBlockIndex, UInt32 uniformBlockBinding) { throw new NotImplementedException(); } + public static void UniformBlockBinding(UInt32 program, UInt32 uniformBlockIndex, UInt32 uniformBlockBinding) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -24741,7 +24741,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*4] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] [CLSCompliant(false)] - public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -24750,7 +24750,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*4] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] [CLSCompliant(false)] - public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -24759,7 +24759,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*4] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24768,7 +24768,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix2x3fv")] [CLSCompliant(false)] - public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24777,7 +24777,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix2x3fv")] [CLSCompliant(false)] - public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24786,7 +24786,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix2x3fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24795,7 +24795,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix2x4fv")] [CLSCompliant(false)] - public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24804,7 +24804,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix2x4fv")] [CLSCompliant(false)] - public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24813,7 +24813,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix2x4fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -24822,7 +24822,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*9] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] [CLSCompliant(false)] - public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -24831,7 +24831,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*9] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] [CLSCompliant(false)] - public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -24840,7 +24840,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*9] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24849,7 +24849,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix3x2fv")] [CLSCompliant(false)] - public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24858,7 +24858,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix3x2fv")] [CLSCompliant(false)] - public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24867,7 +24867,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix3x2fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24876,7 +24876,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix3x4fv")] [CLSCompliant(false)] - public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24885,7 +24885,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix3x4fv")] [CLSCompliant(false)] - public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24894,7 +24894,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix3x4fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -24903,7 +24903,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*16] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] [CLSCompliant(false)] - public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -24912,7 +24912,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*16] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] [CLSCompliant(false)] - public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -24921,7 +24921,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*16] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24930,7 +24930,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix4x2fv")] [CLSCompliant(false)] - public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24939,7 +24939,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix4x2fv")] [CLSCompliant(false)] - public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24948,7 +24948,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix4x2fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24957,7 +24957,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix4x3fv")] [CLSCompliant(false)] - public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24966,7 +24966,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix4x3fv")] [CLSCompliant(false)] - public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24975,18 +24975,18 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix4x3fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUnmapBuffer")] - public static bool UnmapBuffer(OpenTK.Graphics.ES30.All target) { throw new NotImplementedException(); } + public static bool UnmapBuffer(OpenTK.Graphics.ES30.All target) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUnmapBuffer")] - public static bool UnmapBuffer(OpenTK.Graphics.ES30.BufferTarget target) { throw new NotImplementedException(); } + public static bool UnmapBuffer(OpenTK.Graphics.ES30.BufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Installs a program object as part of current rendering state @@ -24996,7 +24996,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUseProgram")] [CLSCompliant(false)] - public static void UseProgram(Int32 program) { throw new NotImplementedException(); } + public static void UseProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Installs a program object as part of current rendering state @@ -25006,7 +25006,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUseProgram")] [CLSCompliant(false)] - public static void UseProgram(UInt32 program) { throw new NotImplementedException(); } + public static void UseProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Validates a program object @@ -25016,7 +25016,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glValidateProgram")] [CLSCompliant(false)] - public static void ValidateProgram(Int32 program) { throw new NotImplementedException(); } + public static void ValidateProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Validates a program object @@ -25026,7 +25026,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glValidateProgram")] [CLSCompliant(false)] - public static void ValidateProgram(UInt32 program) { throw new NotImplementedException(); } + public static void ValidateProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25039,7 +25039,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1f")] [CLSCompliant(false)] - public static void VertexAttrib1(Int32 index, Single x) { throw new NotImplementedException(); } + public static void VertexAttrib1(Int32 index, Single x) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25052,7 +25052,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1f")] [CLSCompliant(false)] - public static void VertexAttrib1(UInt32 index, Single x) { throw new NotImplementedException(); } + public static void VertexAttrib1(UInt32 index, Single x) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25065,7 +25065,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25078,7 +25078,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25094,7 +25094,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2f")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, Single x, Single y) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25110,7 +25110,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2f")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, Single x, Single y) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25123,7 +25123,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25136,7 +25136,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25149,7 +25149,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25162,7 +25162,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25175,7 +25175,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25188,7 +25188,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25207,7 +25207,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3f")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25226,7 +25226,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3f")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25239,7 +25239,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25252,7 +25252,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25265,7 +25265,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25278,7 +25278,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25291,7 +25291,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25304,7 +25304,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25326,7 +25326,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4f")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25348,7 +25348,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4f")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25361,7 +25361,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25374,7 +25374,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25387,7 +25387,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25400,7 +25400,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25413,7 +25413,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25426,7 +25426,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -25439,7 +25439,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribDivisor")] [CLSCompliant(false)] - public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -25452,7 +25452,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribDivisor")] [CLSCompliant(false)] - public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25462,7 +25462,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4i")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25472,49 +25472,49 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4i")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: 4] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: 4] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: 4] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: 4] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: 4] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: 4] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25524,28 +25524,28 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ui")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: 4] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4uiv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: 4] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4uiv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: 4] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4uiv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25556,7 +25556,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] [CLSCompliant(false)] - public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25569,7 +25569,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25582,7 +25582,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25595,7 +25595,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25608,7 +25608,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25618,7 +25618,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(size,type,stride)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] [CLSCompliant(false)] - public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribIntegerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribIntegerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25630,7 +25630,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25642,7 +25642,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25654,7 +25654,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25666,7 +25666,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25677,7 +25677,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] [CLSCompliant(false)] - public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25690,7 +25690,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25703,7 +25703,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25716,7 +25716,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25729,7 +25729,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25739,7 +25739,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(size,type,stride)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] [CLSCompliant(false)] - public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribIntegerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribIntegerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25751,7 +25751,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25763,7 +25763,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25775,7 +25775,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25787,7 +25787,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25813,7 +25813,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] [CLSCompliant(false)] - public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25841,7 +25841,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25869,7 +25869,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25897,7 +25897,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25925,7 +25925,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T5 pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25950,7 +25950,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] [CLSCompliant(false)] - public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribPointerType type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribPointerType type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25977,7 +25977,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -26004,7 +26004,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -26031,7 +26031,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -26058,7 +26058,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T5 pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -26084,7 +26084,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] [CLSCompliant(false)] - public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -26112,7 +26112,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -26140,7 +26140,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -26168,7 +26168,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -26196,7 +26196,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T5 pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -26221,7 +26221,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] [CLSCompliant(false)] - public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribPointerType type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribPointerType type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -26248,7 +26248,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -26275,7 +26275,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -26302,7 +26302,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -26329,7 +26329,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T5 pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set the viewport @@ -26347,7 +26347,7 @@ namespace OpenTK.Graphics.ES30 /// Specify the width and height of the viewport. When a GL context is first attached to a window, width and height are set to the dimensions of that window. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glViewport")] - public static void Viewport(Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void Viewport(Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -26364,7 +26364,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glWaitSync")] [CLSCompliant(false)] - public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES30.All flags, Int64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES30.All flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -26381,7 +26381,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glWaitSync")] [CLSCompliant(false)] - public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES30.All flags, UInt64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES30.All flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -26397,7 +26397,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glWaitSync")] [CLSCompliant(false)] - public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES30.WaitSyncFlags flags, Int64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES30.WaitSyncFlags flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -26413,7 +26413,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glWaitSync")] [CLSCompliant(false)] - public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES30.WaitSyncFlags flags, UInt64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES30.WaitSyncFlags flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } public static partial class Ext { @@ -26423,7 +26423,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_win32_keyed_mutex", Version = "", EntryPoint = "glAcquireKeyedMutexWin32EXT")] [CLSCompliant(false)] - public static bool AcquireKeyedMutexWin32(Int32 memory, Int64 key, Int32 timeout) { throw new NotImplementedException(); } + public static bool AcquireKeyedMutexWin32(Int32 memory, Int64 key, Int32 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_win32_keyed_mutex] /// @@ -26431,19 +26431,19 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_win32_keyed_mutex", Version = "", EntryPoint = "glAcquireKeyedMutexWin32EXT")] [CLSCompliant(false)] - public static bool AcquireKeyedMutexWin32(UInt32 memory, UInt64 key, UInt32 timeout) { throw new NotImplementedException(); } + public static bool AcquireKeyedMutexWin32(UInt32 memory, UInt64 key, UInt32 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveProgramEXT")] [CLSCompliant(false)] - public static void ActiveProgram(Int32 program) { throw new NotImplementedException(); } + public static void ActiveProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveProgramEXT")] [CLSCompliant(false)] - public static void ActiveProgram(UInt32 program) { throw new NotImplementedException(); } + public static void ActiveProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Set the active program object for a program pipeline object @@ -26456,7 +26456,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveShaderProgramEXT")] [CLSCompliant(false)] - public static void ActiveShaderProgram(Int32 pipeline, Int32 program) { throw new NotImplementedException(); } + public static void ActiveShaderProgram(Int32 pipeline, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Set the active program object for a program pipeline object @@ -26469,7 +26469,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveShaderProgramEXT")] [CLSCompliant(false)] - public static void ActiveShaderProgram(UInt32 pipeline, UInt32 program) { throw new NotImplementedException(); } + public static void ActiveShaderProgram(UInt32 pipeline, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delimit the boundaries of a query object @@ -26483,7 +26483,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glBeginQueryEXT")] [CLSCompliant(false)] - public static void BeginQuery(OpenTK.Graphics.ES30.All target, Int32 id) { throw new NotImplementedException(); } + public static void BeginQuery(OpenTK.Graphics.ES30.All target, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delimit the boundaries of a query object @@ -26497,7 +26497,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glBeginQueryEXT")] [CLSCompliant(false)] - public static void BeginQuery(OpenTK.Graphics.ES30.All target, UInt32 id) { throw new NotImplementedException(); } + public static void BeginQuery(OpenTK.Graphics.ES30.All target, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delimit the boundaries of a query object @@ -26510,7 +26510,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glBeginQueryEXT")] [CLSCompliant(false)] - public static void BeginQuery(OpenTK.Graphics.ES30.QueryTarget target, Int32 id) { throw new NotImplementedException(); } + public static void BeginQuery(OpenTK.Graphics.ES30.QueryTarget target, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delimit the boundaries of a query object @@ -26523,7 +26523,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glBeginQueryEXT")] [CLSCompliant(false)] - public static void BeginQuery(OpenTK.Graphics.ES30.QueryTarget target, UInt32 id) { throw new NotImplementedException(); } + public static void BeginQuery(OpenTK.Graphics.ES30.QueryTarget target, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Bind a user-defined varying out variable to a fragment shader color number @@ -26539,7 +26539,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glBindFragDataLocationEXT")] [CLSCompliant(false)] - public static void BindFragDataLocation(Int32 program, Int32 color, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static void BindFragDataLocation(Int32 program, Int32 color, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Bind a user-defined varying out variable to a fragment shader color number @@ -26555,7 +26555,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glBindFragDataLocationEXT")] [CLSCompliant(false)] - public static void BindFragDataLocation(UInt32 program, UInt32 color, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static void BindFragDataLocation(UInt32 program, UInt32 color, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Bind a user-defined varying out variable to a fragment shader color number and index @@ -26574,7 +26574,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glBindFragDataLocationIndexedEXT")] [CLSCompliant(false)] - public static void BindFragDataLocationIndexed(Int32 program, Int32 colorNumber, Int32 index, String name) { throw new NotImplementedException(); } + public static void BindFragDataLocationIndexed(Int32 program, Int32 colorNumber, Int32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Bind a user-defined varying out variable to a fragment shader color number and index @@ -26593,7 +26593,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glBindFragDataLocationIndexedEXT")] [CLSCompliant(false)] - public static void BindFragDataLocationIndexed(UInt32 program, UInt32 colorNumber, UInt32 index, String name) { throw new NotImplementedException(); } + public static void BindFragDataLocationIndexed(UInt32 program, UInt32 colorNumber, UInt32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind a program pipeline to the current context @@ -26603,7 +26603,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glBindProgramPipelineEXT")] [CLSCompliant(false)] - public static void BindProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } + public static void BindProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind a program pipeline to the current context @@ -26613,7 +26613,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glBindProgramPipelineEXT")] [CLSCompliant(false)] - public static void BindProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static void BindProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_minmax] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -26623,7 +26623,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_blend_minmax", Version = "", EntryPoint = "glBlendEquationEXT")] - public static void BlendEquation(OpenTK.Graphics.ES30.All mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.ES30.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_minmax] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -26632,7 +26632,7 @@ namespace OpenTK.Graphics.ES30 /// specifies how source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. /// [AutoGenerated(Category = "EXT_blend_minmax", Version = "", EntryPoint = "glBlendEquationEXT")] - public static void BlendEquation(OpenTK.Graphics.ES30.BlendEquationMode mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.ES30.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -26646,7 +26646,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiEXT")] [CLSCompliant(false)] - public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES30.All mode) { throw new NotImplementedException(); } + public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES30.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -26659,7 +26659,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiEXT")] [CLSCompliant(false)] - public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES30.BlendEquationMode mode) { throw new NotImplementedException(); } + public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES30.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -26673,7 +26673,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiEXT")] [CLSCompliant(false)] - public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES30.All mode) { throw new NotImplementedException(); } + public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES30.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -26686,7 +26686,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiEXT")] [CLSCompliant(false)] - public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES30.BlendEquationMode mode) { throw new NotImplementedException(); } + public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES30.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately @@ -26703,7 +26703,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiEXT")] [CLSCompliant(false)] - public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES30.All modeRGB, OpenTK.Graphics.ES30.All modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES30.All modeRGB, OpenTK.Graphics.ES30.All modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately @@ -26719,7 +26719,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiEXT")] [CLSCompliant(false)] - public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES30.BlendEquationMode modeRGB, OpenTK.Graphics.ES30.BlendEquationMode modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES30.BlendEquationMode modeRGB, OpenTK.Graphics.ES30.BlendEquationMode modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately @@ -26736,7 +26736,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiEXT")] [CLSCompliant(false)] - public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES30.All modeRGB, OpenTK.Graphics.ES30.All modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES30.All modeRGB, OpenTK.Graphics.ES30.All modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately @@ -26752,7 +26752,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiEXT")] [CLSCompliant(false)] - public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES30.BlendEquationMode modeRGB, OpenTK.Graphics.ES30.BlendEquationMode modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES30.BlendEquationMode modeRGB, OpenTK.Graphics.ES30.BlendEquationMode modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify pixel arithmetic @@ -26766,7 +26766,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciEXT")] [CLSCompliant(false)] - public static void BlendFunc(Int32 buf, OpenTK.Graphics.ES30.All src, OpenTK.Graphics.ES30.All dst) { throw new NotImplementedException(); } + public static void BlendFunc(Int32 buf, OpenTK.Graphics.ES30.All src, OpenTK.Graphics.ES30.All dst) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify pixel arithmetic @@ -26780,7 +26780,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciEXT")] [CLSCompliant(false)] - public static void BlendFunc(UInt32 buf, OpenTK.Graphics.ES30.All src, OpenTK.Graphics.ES30.All dst) { throw new NotImplementedException(); } + public static void BlendFunc(UInt32 buf, OpenTK.Graphics.ES30.All src, OpenTK.Graphics.ES30.All dst) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify pixel arithmetic for RGB and alpha components separately @@ -26802,7 +26802,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiEXT")] [CLSCompliant(false)] - public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.ES30.All srcRGB, OpenTK.Graphics.ES30.All dstRGB, OpenTK.Graphics.ES30.All srcAlpha, OpenTK.Graphics.ES30.All dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.ES30.All srcRGB, OpenTK.Graphics.ES30.All dstRGB, OpenTK.Graphics.ES30.All srcAlpha, OpenTK.Graphics.ES30.All dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify pixel arithmetic for RGB and alpha components separately @@ -26824,7 +26824,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiEXT")] [CLSCompliant(false)] - public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.ES30.All srcRGB, OpenTK.Graphics.ES30.All dstRGB, OpenTK.Graphics.ES30.All srcAlpha, OpenTK.Graphics.ES30.All dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.ES30.All srcRGB, OpenTK.Graphics.ES30.All dstRGB, OpenTK.Graphics.ES30.All srcAlpha, OpenTK.Graphics.ES30.All dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26843,7 +26843,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES30.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new NotImplementedException(); } + public static void BufferStorage(OpenTK.Graphics.ES30.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26862,7 +26862,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES30.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new NotImplementedException(); } + public static void BufferStorage(OpenTK.Graphics.ES30.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26883,7 +26883,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES30.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26904,7 +26904,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES30.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26925,7 +26925,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES30.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26946,7 +26946,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES30.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26967,7 +26967,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES30.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26988,7 +26988,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES30.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -27009,7 +27009,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES30.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -27030,7 +27030,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES30.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -27049,7 +27049,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES30.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new NotImplementedException(); } + public static void BufferStorage(OpenTK.Graphics.ES30.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -27068,7 +27068,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES30.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new NotImplementedException(); } + public static void BufferStorage(OpenTK.Graphics.ES30.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -27089,7 +27089,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES30.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -27110,7 +27110,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES30.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -27131,7 +27131,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES30.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -27152,7 +27152,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES30.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -27173,7 +27173,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES30.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -27194,7 +27194,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES30.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -27215,7 +27215,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES30.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -27236,7 +27236,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES30.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -27246,7 +27246,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 size, IntPtr clientBuffer, Int32 flags) { throw new NotImplementedException(); } + public static void BufferStorageExternal(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -27256,7 +27256,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 size, IntPtr clientBuffer, UInt32 flags) { throw new NotImplementedException(); } + public static void BufferStorageExternal(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -27266,7 +27266,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr size, IntPtr clientBuffer, Int32 flags) { throw new NotImplementedException(); } + public static void BufferStorageExternal(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -27276,7 +27276,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags) { throw new NotImplementedException(); } + public static void BufferStorageExternal(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -27286,7 +27286,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES30.All target, Int32 size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES30.All target, Int32 size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -27296,7 +27296,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES30.All target, Int32 size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES30.All target, Int32 size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -27306,7 +27306,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES30.All target, IntPtr size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES30.All target, IntPtr size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -27316,7 +27316,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES30.All target, IntPtr size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES30.All target, IntPtr size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -27325,7 +27325,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES30.BufferTargetArb target, Int32 size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES30.BufferTargetArb target, Int32 size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -27334,7 +27334,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES30.BufferTargetArb target, Int32 size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES30.BufferTargetArb target, Int32 size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -27343,7 +27343,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES30.BufferTargetArb target, IntPtr size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES30.BufferTargetArb target, IntPtr size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -27352,7 +27352,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES30.BufferTargetArb target, IntPtr size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES30.BufferTargetArb target, IntPtr size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// @@ -27360,7 +27360,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static void ClearPixelLocalStorage(Int32 offset, Int32 n, Int32[] values) { throw new NotImplementedException(); } + public static void ClearPixelLocalStorage(Int32 offset, Int32 n, Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// @@ -27368,7 +27368,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static void ClearPixelLocalStorage(Int32 offset, Int32 n, ref Int32 values) { throw new NotImplementedException(); } + public static void ClearPixelLocalStorage(Int32 offset, Int32 n, ref Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// @@ -27376,7 +27376,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static unsafe void ClearPixelLocalStorage(Int32 offset, Int32 n, Int32* values) { throw new NotImplementedException(); } + public static unsafe void ClearPixelLocalStorage(Int32 offset, Int32 n, Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// @@ -27384,7 +27384,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static void ClearPixelLocalStorage(Int32 offset, Int32 n, UInt32[] values) { throw new NotImplementedException(); } + public static void ClearPixelLocalStorage(Int32 offset, Int32 n, UInt32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// @@ -27392,7 +27392,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static void ClearPixelLocalStorage(Int32 offset, Int32 n, ref UInt32 values) { throw new NotImplementedException(); } + public static void ClearPixelLocalStorage(Int32 offset, Int32 n, ref UInt32 values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// @@ -27400,7 +27400,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static unsafe void ClearPixelLocalStorage(Int32 offset, Int32 n, UInt32* values) { throw new NotImplementedException(); } + public static unsafe void ClearPixelLocalStorage(Int32 offset, Int32 n, UInt32* values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -27422,7 +27422,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] - public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -27446,7 +27446,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -27470,7 +27470,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -27494,7 +27494,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -27518,7 +27518,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -27540,7 +27540,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] - public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -27564,7 +27564,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -27588,7 +27588,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -27612,7 +27612,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -27636,7 +27636,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -27676,7 +27676,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] - public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -27718,7 +27718,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -27760,7 +27760,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -27802,7 +27802,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -27844,7 +27844,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -27884,7 +27884,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] - public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -27926,7 +27926,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -27968,7 +27968,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -28010,7 +28010,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -28052,7 +28052,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Enable and disable writing of frame buffer color components @@ -28072,7 +28072,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glColorMaskiEXT")] [CLSCompliant(false)] - public static void ColorMask(Int32 index, bool r, bool g, bool b, bool a) { throw new NotImplementedException(); } + public static void ColorMask(Int32 index, bool r, bool g, bool b, bool a) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Enable and disable writing of frame buffer color components @@ -28092,7 +28092,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glColorMaskiEXT")] [CLSCompliant(false)] - public static void ColorMask(UInt32 index, bool r, bool g, bool b, bool a) { throw new NotImplementedException(); } + public static void ColorMask(UInt32 index, bool r, bool g, bool b, bool a) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_copy_image] /// Perform a raw data copy between two images @@ -28144,7 +28144,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_copy_image", Version = "", EntryPoint = "glCopyImageSubDataEXT")] [CLSCompliant(false)] - public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.ES30.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.ES30.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new NotImplementedException(); } + public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.ES30.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.ES30.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_copy_image] /// Perform a raw data copy between two images @@ -28196,49 +28196,49 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_copy_image", Version = "", EntryPoint = "glCopyImageSubDataEXT")] [CLSCompliant(false)] - public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.ES30.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.ES30.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new NotImplementedException(); } + public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.ES30.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.ES30.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static void CreateMemoryObjects(Int32 n, [OutAttribute] Int32[] memoryObjects) { throw new NotImplementedException(); } + public static void CreateMemoryObjects(Int32 n, [OutAttribute] Int32[] memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static void CreateMemoryObjects(Int32 n, [OutAttribute] out Int32 memoryObjects) { throw new NotImplementedException(); } + public static void CreateMemoryObjects(Int32 n, [OutAttribute] out Int32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static unsafe void CreateMemoryObjects(Int32 n, [OutAttribute] Int32* memoryObjects) { throw new NotImplementedException(); } + public static unsafe void CreateMemoryObjects(Int32 n, [OutAttribute] Int32* memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static void CreateMemoryObjects(Int32 n, [OutAttribute] UInt32[] memoryObjects) { throw new NotImplementedException(); } + public static void CreateMemoryObjects(Int32 n, [OutAttribute] UInt32[] memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static void CreateMemoryObjects(Int32 n, [OutAttribute] out UInt32 memoryObjects) { throw new NotImplementedException(); } + public static void CreateMemoryObjects(Int32 n, [OutAttribute] out UInt32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static unsafe void CreateMemoryObjects(Int32 n, [OutAttribute] UInt32* memoryObjects) { throw new NotImplementedException(); } + public static unsafe void CreateMemoryObjects(Int32 n, [OutAttribute] UInt32* memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Create a stand-alone program from an array of null-terminated source code strings @@ -28250,7 +28250,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the number of source code strings in the array strings. /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glCreateShaderProgramEXT")] - public static Int32 CreateShaderProgram(OpenTK.Graphics.ES30.All type, String @string) { throw new NotImplementedException(); } + public static Int32 CreateShaderProgram(OpenTK.Graphics.ES30.All type, String @string) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Create a stand-alone program from an array of null-terminated source code strings @@ -28265,61 +28265,61 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address of an array of pointers to source code strings from which to create the program object. /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glCreateShaderProgramvEXT")] - public static Int32 CreateShaderProgram(OpenTK.Graphics.ES30.All type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new NotImplementedException(); } + public static Int32 CreateShaderProgram(OpenTK.Graphics.ES30.All type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObject([CountAttribute(Parameter = "n")] Int32 memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObject([CountAttribute(Parameter = "n")] Int32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObject([CountAttribute(Parameter = "n")] UInt32 memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObject([CountAttribute(Parameter = "n")] UInt32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] Int32[] memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] Int32[] memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static unsafe void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] Int32* memoryObjects) { throw new NotImplementedException(); } + public static unsafe void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] Int32* memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static unsafe void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] UInt32* memoryObjects) { throw new NotImplementedException(); } + public static unsafe void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] UInt32* memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -28329,7 +28329,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] Int32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -28339,7 +28339,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] UInt32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -28352,7 +28352,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -28365,7 +28365,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -28378,7 +28378,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32* pipelines) { throw new NotImplementedException(); } + public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -28391,7 +28391,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -28404,7 +28404,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -28417,7 +28417,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new NotImplementedException(); } + public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -28427,7 +28427,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] [CLSCompliant(false)] - public static void DeleteQuery([CountAttribute(Parameter = "n")] Int32 ids) { throw new NotImplementedException(); } + public static void DeleteQuery([CountAttribute(Parameter = "n")] Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -28437,7 +28437,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] [CLSCompliant(false)] - public static void DeleteQuery([CountAttribute(Parameter = "n")] UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteQuery([CountAttribute(Parameter = "n")] UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -28450,7 +28450,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -28463,7 +28463,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -28476,7 +28476,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] [CLSCompliant(false)] - public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -28489,7 +28489,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -28502,7 +28502,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -28515,75 +28515,75 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] [CLSCompliant(false)] - public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphore([CountAttribute(Parameter = "count")] Int32 semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphore([CountAttribute(Parameter = "count")] Int32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphore([CountAttribute(Parameter = "count")] UInt32 semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphore([CountAttribute(Parameter = "count")] UInt32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] Int32[] semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] Int32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] ref Int32 semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] ref Int32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] Int32* semaphores) { throw new NotImplementedException(); } + public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] Int32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] UInt32[] semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] UInt32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] ref UInt32 semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] ref UInt32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] UInt32* semaphores) { throw new NotImplementedException(); } + public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] UInt32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glDisableiEXT")] [CLSCompliant(false)] - public static void Disable(OpenTK.Graphics.ES30.All target, Int32 index) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES30.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glDisableiEXT")] [CLSCompliant(false)] - public static void Disable(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_discard_framebuffer] /// @@ -28591,7 +28591,7 @@ namespace OpenTK.Graphics.ES30 /// [length: numAttachments] [AutoGenerated(Category = "EXT_discard_framebuffer", Version = "", EntryPoint = "glDiscardFramebufferEXT")] [CLSCompliant(false)] - public static void DiscardFramebuffer(OpenTK.Graphics.ES30.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES30.All[] attachments) { throw new NotImplementedException(); } + public static void DiscardFramebuffer(OpenTK.Graphics.ES30.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES30.All[] attachments) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_discard_framebuffer] /// @@ -28599,7 +28599,7 @@ namespace OpenTK.Graphics.ES30 /// [length: numAttachments] [AutoGenerated(Category = "EXT_discard_framebuffer", Version = "", EntryPoint = "glDiscardFramebufferEXT")] [CLSCompliant(false)] - public static void DiscardFramebuffer(OpenTK.Graphics.ES30.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES30.All attachments) { throw new NotImplementedException(); } + public static void DiscardFramebuffer(OpenTK.Graphics.ES30.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES30.All attachments) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_discard_framebuffer] /// @@ -28607,7 +28607,7 @@ namespace OpenTK.Graphics.ES30 /// [length: numAttachments] [AutoGenerated(Category = "EXT_discard_framebuffer", Version = "", EntryPoint = "glDiscardFramebufferEXT")] [CLSCompliant(false)] - public static unsafe void DiscardFramebuffer(OpenTK.Graphics.ES30.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES30.All* attachments) { throw new NotImplementedException(); } + public static unsafe void DiscardFramebuffer(OpenTK.Graphics.ES30.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES30.All* attachments) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a range of elements with offset applied to instanced attributes @@ -28630,7 +28630,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawArraysInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 first, Int32 count, Int32 instancecount, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 first, Int32 count, Int32 instancecount, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a range of elements with offset applied to instanced attributes @@ -28653,7 +28653,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawArraysInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 first, Int32 count, Int32 instancecount, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 first, Int32 count, Int32 instancecount, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a range of elements with offset applied to instanced attributes @@ -28675,7 +28675,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawArraysInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a range of elements with offset applied to instanced attributes @@ -28697,7 +28697,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawArraysInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a range of elements @@ -28716,7 +28716,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawArraysInstancedEXT")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a range of elements @@ -28734,7 +28734,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawArraysInstancedEXT")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -28748,7 +28748,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, OpenTK.Graphics.ES30.All[] bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, OpenTK.Graphics.ES30.All[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -28762,7 +28762,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, ref OpenTK.Graphics.ES30.All bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, ref OpenTK.Graphics.ES30.All bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -28776,7 +28776,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] [CLSCompliant(false)] - public static unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.ES30.All* bufs) { throw new NotImplementedException(); } + public static unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.ES30.All* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -28789,7 +28789,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, OpenTK.Graphics.ES30.DrawBufferMode[] bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, OpenTK.Graphics.ES30.DrawBufferMode[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -28802,7 +28802,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, ref OpenTK.Graphics.ES30.DrawBufferMode bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, ref OpenTK.Graphics.ES30.DrawBufferMode bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -28815,7 +28815,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] [CLSCompliant(false)] - public static unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.ES30.DrawBufferMode* bufs) { throw new NotImplementedException(); } + public static unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.ES30.DrawBufferMode* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -28823,7 +28823,7 @@ namespace OpenTK.Graphics.ES30 /// [length: n] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glDrawBuffersIndexedEXT")] [CLSCompliant(false)] - public static void DrawBuffersIndexed(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.All[] location, [CountAttribute(Parameter = "n")] Int32[] indices) { throw new NotImplementedException(); } + public static void DrawBuffersIndexed(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.All[] location, [CountAttribute(Parameter = "n")] Int32[] indices) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -28831,7 +28831,7 @@ namespace OpenTK.Graphics.ES30 /// [length: n] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glDrawBuffersIndexedEXT")] [CLSCompliant(false)] - public static void DrawBuffersIndexed(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES30.All location, [CountAttribute(Parameter = "n")] ref Int32 indices) { throw new NotImplementedException(); } + public static void DrawBuffersIndexed(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES30.All location, [CountAttribute(Parameter = "n")] ref Int32 indices) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -28839,7 +28839,7 @@ namespace OpenTK.Graphics.ES30 /// [length: n] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glDrawBuffersIndexedEXT")] [CLSCompliant(false)] - public static unsafe void DrawBuffersIndexed(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.All* location, [CountAttribute(Parameter = "n")] Int32* indices) { throw new NotImplementedException(); } + public static unsafe void DrawBuffersIndexed(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.All* location, [CountAttribute(Parameter = "n")] Int32* indices) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -28861,7 +28861,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexEXT")] - public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -28886,7 +28886,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -28911,7 +28911,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -28936,7 +28936,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -28960,7 +28960,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexEXT")] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -28981,7 +28981,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexEXT")] - public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -29005,7 +29005,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -29029,7 +29029,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -29053,7 +29053,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -29076,7 +29076,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexEXT")] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29102,7 +29102,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29128,7 +29128,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29156,7 +29156,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29184,7 +29184,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29212,7 +29212,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29240,7 +29240,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29268,7 +29268,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29296,7 +29296,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29324,7 +29324,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29352,7 +29352,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29377,7 +29377,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29402,7 +29402,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29429,7 +29429,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29456,7 +29456,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29483,7 +29483,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29510,7 +29510,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29537,7 +29537,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29564,7 +29564,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29591,7 +29591,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29618,7 +29618,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29647,7 +29647,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29676,7 +29676,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29707,7 +29707,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29738,7 +29738,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29769,7 +29769,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29800,7 +29800,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29831,7 +29831,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29862,7 +29862,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29893,7 +29893,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29924,7 +29924,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29952,7 +29952,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29980,7 +29980,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -30010,7 +30010,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -30040,7 +30040,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -30070,7 +30070,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -30100,7 +30100,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -30130,7 +30130,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -30160,7 +30160,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -30190,7 +30190,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -30220,7 +30220,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -30245,7 +30245,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexEXT")] - public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -30273,7 +30273,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -30301,7 +30301,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -30329,7 +30329,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -30356,7 +30356,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexEXT")] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -30380,7 +30380,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexEXT")] - public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -30407,7 +30407,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -30434,7 +30434,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -30461,7 +30461,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -30487,7 +30487,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexEXT")] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -30509,7 +30509,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -30534,7 +30534,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -30559,7 +30559,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -30584,7 +30584,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -30608,7 +30608,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -30629,7 +30629,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -30653,7 +30653,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -30677,7 +30677,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -30701,7 +30701,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -30724,7 +30724,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30753,7 +30753,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30784,7 +30784,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30815,7 +30815,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30846,7 +30846,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30877,7 +30877,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30906,7 +30906,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30937,7 +30937,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30968,7 +30968,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30999,7 +30999,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -31030,7 +31030,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -31058,7 +31058,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -31088,7 +31088,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -31118,7 +31118,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -31148,7 +31148,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -31178,7 +31178,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -31206,7 +31206,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -31236,7 +31236,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -31266,7 +31266,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -31296,7 +31296,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -31326,7 +31326,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render primitives using a count derived from a transform feedback object @@ -31340,7 +31340,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedback(OpenTK.Graphics.ES30.All mode, Int32 id) { throw new NotImplementedException(); } + public static void DrawTransformFeedback(OpenTK.Graphics.ES30.All mode, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render primitives using a count derived from a transform feedback object @@ -31354,7 +31354,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedback(OpenTK.Graphics.ES30.All mode, UInt32 id) { throw new NotImplementedException(); } + public static void DrawTransformFeedback(OpenTK.Graphics.ES30.All mode, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render primitives using a count derived from a transform feedback object @@ -31367,7 +31367,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedback(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 id) { throw new NotImplementedException(); } + public static void DrawTransformFeedback(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render primitives using a count derived from a transform feedback object @@ -31380,7 +31380,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedback(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 id) { throw new NotImplementedException(); } + public static void DrawTransformFeedback(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render multiple instances of primitives using a count derived from a transform feedback object @@ -31397,7 +31397,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackInstancedEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES30.All mode, Int32 id, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES30.All mode, Int32 id, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render multiple instances of primitives using a count derived from a transform feedback object @@ -31414,7 +31414,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackInstancedEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES30.All mode, UInt32 id, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES30.All mode, UInt32 id, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render multiple instances of primitives using a count derived from a transform feedback object @@ -31430,7 +31430,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackInstancedEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 id, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 id, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render multiple instances of primitives using a count derived from a transform feedback object @@ -31446,7 +31446,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackInstancedEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 id, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 id, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Enable or disable server-side GL capabilities @@ -31457,7 +31457,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glEnableiEXT")] [CLSCompliant(false)] - public static void Enable(OpenTK.Graphics.ES30.All target, Int32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES30.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Enable or disable server-side GL capabilities @@ -31468,18 +31468,18 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glEnableiEXT")] [CLSCompliant(false)] - public static void Enable(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glEndQueryEXT")] - public static void EndQuery(OpenTK.Graphics.ES30.All target) { throw new NotImplementedException(); } + public static void EndQuery(OpenTK.Graphics.ES30.All target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glEndQueryEXT")] - public static void EndQuery(OpenTK.Graphics.ES30.QueryTarget target) { throw new NotImplementedException(); } + public static void EndQuery(OpenTK.Graphics.ES30.QueryTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Indicate modifications to a range of a mapped buffer @@ -31495,7 +31495,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glFlushMappedBufferRangeEXT")] - public static void FlushMappedBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Indicate modifications to a range of a mapped buffer @@ -31511,7 +31511,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glFlushMappedBufferRangeEXT")] - public static void FlushMappedBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Indicate modifications to a range of a mapped buffer @@ -31526,7 +31526,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the length of the buffer subrange, in basic machine units. /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glFlushMappedBufferRangeEXT")] - public static void FlushMappedBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Indicate modifications to a range of a mapped buffer @@ -31541,21 +31541,21 @@ namespace OpenTK.Graphics.ES30 /// Specifies the length of the buffer subrange, in basic machine units. /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glFlushMappedBufferRangeEXT")] - public static void FlushMappedBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glFramebufferPixelLocalStorageSizeEXT")] [CLSCompliant(false)] - public static void FramebufferPixelLocalStorageSize(Int32 target, Int32 size) { throw new NotImplementedException(); } + public static void FramebufferPixelLocalStorageSize(Int32 target, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glFramebufferPixelLocalStorageSizeEXT")] [CLSCompliant(false)] - public static void FramebufferPixelLocalStorageSize(UInt32 target, Int32 size) { throw new NotImplementedException(); } + public static void FramebufferPixelLocalStorageSize(UInt32 target, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multisampled_render_to_texture] /// @@ -31566,7 +31566,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleEXT")] [CLSCompliant(false)] - public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, Int32 texture, Int32 level, Int32 samples) { throw new NotImplementedException(); } + public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, Int32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multisampled_render_to_texture] /// @@ -31577,7 +31577,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleEXT")] [CLSCompliant(false)] - public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, UInt32 texture, Int32 level, Int32 samples) { throw new NotImplementedException(); } + public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, UInt32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -31597,7 +31597,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureEXT")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -31617,7 +31617,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureEXT")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -31636,7 +31636,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureEXT")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -31655,14 +31655,14 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureEXT")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static Int32 GenProgramPipeline() { throw new NotImplementedException(); } + public static Int32 GenProgramPipeline() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -31675,7 +31675,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -31688,7 +31688,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -31701,7 +31701,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* pipelines) { throw new NotImplementedException(); } + public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -31714,7 +31714,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -31727,7 +31727,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -31740,14 +31740,14 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new NotImplementedException(); } + public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] [CLSCompliant(false)] - public static Int32 GenQuery() { throw new NotImplementedException(); } + public static Int32 GenQuery() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names @@ -31760,7 +31760,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names @@ -31773,7 +31773,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names @@ -31786,7 +31786,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] [CLSCompliant(false)] - public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names @@ -31799,7 +31799,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names @@ -31812,7 +31812,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names @@ -31825,54 +31825,54 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] [CLSCompliant(false)] - public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static Int32 GenSemaphore() { throw new NotImplementedException(); } + public static Int32 GenSemaphore() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] semaphores) { throw new NotImplementedException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 semaphores) { throw new NotImplementedException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] Int32* semaphores) { throw new NotImplementedException(); } + public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] Int32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] semaphores) { throw new NotImplementedException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 semaphores) { throw new NotImplementedException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* semaphores) { throw new NotImplementedException(); } + public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Query the bindings of color indices to user-defined varying out variables @@ -31885,7 +31885,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glGetFragDataIndexEXT")] [CLSCompliant(false)] - public static Int32 GetFragDataIndex(Int32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetFragDataIndex(Int32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Query the bindings of color indices to user-defined varying out variables @@ -31898,23 +31898,23 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glGetFragDataIndexEXT")] [CLSCompliant(false)] - public static Int32 GetFragDataIndex(UInt32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetFragDataIndex(UInt32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glGetFramebufferPixelLocalStorageSizeEXT")] [CLSCompliant(false)] - public static Int32 GetFramebufferPixelLocalStorageSize(Int32 target) { throw new NotImplementedException(); } + public static Int32 GetFramebufferPixelLocalStorageSize(Int32 target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glGetFramebufferPixelLocalStorageSizeEXT")] [CLSCompliant(false)] - public static Int32 GetFramebufferPixelLocalStorageSize(UInt32 target) { throw new NotImplementedException(); } + public static Int32 GetFramebufferPixelLocalStorageSize(UInt32 target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetGraphicsResetStatusEXT")] - public static OpenTK.Graphics.ES30.All GetGraphicsResetStatus() { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES30.All GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -31923,7 +31923,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -31932,7 +31932,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -31941,7 +31941,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -31950,7 +31950,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -31959,7 +31959,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -31968,7 +31968,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -31976,7 +31976,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, Int32 index, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, Int32 index, [OutAttribute] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -31984,7 +31984,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, Int32 index, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, Int32 index, [OutAttribute] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -31992,7 +31992,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, Int32 index, [OutAttribute] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, Int32 index, [OutAttribute] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -32000,7 +32000,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, UInt32 index, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, UInt32 index, [OutAttribute] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -32008,7 +32008,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, UInt32 index, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, UInt32 index, [OutAttribute] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -32016,7 +32016,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, UInt32 index, [OutAttribute] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, UInt32 index, [OutAttribute] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32025,7 +32025,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32034,7 +32034,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32043,7 +32043,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32051,7 +32051,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32059,7 +32059,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32067,7 +32067,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32076,7 +32076,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32085,7 +32085,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32094,7 +32094,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32102,7 +32102,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32110,7 +32110,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32118,7 +32118,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -32127,7 +32127,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -32136,7 +32136,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -32145,7 +32145,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -32154,7 +32154,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -32163,7 +32163,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -32172,7 +32172,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -32181,7 +32181,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -32190,7 +32190,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -32199,7 +32199,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -32208,7 +32208,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -32217,7 +32217,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -32226,7 +32226,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -32248,7 +32248,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES30.All type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES30.All type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -32270,7 +32270,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES30.All type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES30.All type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -32292,7 +32292,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.All type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.All type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -32314,7 +32314,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES30.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES30.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -32336,7 +32336,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES30.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES30.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -32358,7 +32358,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -32378,7 +32378,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -32398,7 +32398,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -32418,7 +32418,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static unsafe void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -32438,7 +32438,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -32458,7 +32458,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -32478,7 +32478,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static unsafe void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -32494,7 +32494,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -32510,7 +32510,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -32526,7 +32526,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -32542,7 +32542,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -32558,7 +32558,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -32574,7 +32574,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Query the fragment color index of a named variable within a program @@ -32590,7 +32590,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glGetProgramResourceLocationIndexEXT")] [CLSCompliant(false)] - public static Int32 GetProgramResourceLocationIndex(Int32 program, OpenTK.Graphics.ES30.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceLocationIndex(Int32 program, OpenTK.Graphics.ES30.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Query the fragment color index of a named variable within a program @@ -32606,7 +32606,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glGetProgramResourceLocationIndexEXT")] [CLSCompliant(false)] - public static Int32 GetProgramResourceLocationIndex(UInt32 program, OpenTK.Graphics.ES30.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceLocationIndex(UInt32 program, OpenTK.Graphics.ES30.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// @@ -32615,7 +32615,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryivEXT")] [CLSCompliant(false)] - public static void GetQuery(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQuery(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// @@ -32624,7 +32624,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryivEXT")] [CLSCompliant(false)] - public static void GetQuery(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQuery(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// @@ -32633,7 +32633,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryivEXT")] [CLSCompliant(false)] - public static unsafe void GetQuery(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQuery(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// @@ -32641,7 +32641,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryivEXT")] [CLSCompliant(false)] - public static void GetQuery(OpenTK.Graphics.ES30.QueryTarget target, OpenTK.Graphics.ES30.GetQueryParam pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQuery(OpenTK.Graphics.ES30.QueryTarget target, OpenTK.Graphics.ES30.GetQueryParam pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// @@ -32649,7 +32649,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryivEXT")] [CLSCompliant(false)] - public static void GetQuery(OpenTK.Graphics.ES30.QueryTarget target, OpenTK.Graphics.ES30.GetQueryParam pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQuery(OpenTK.Graphics.ES30.QueryTarget target, OpenTK.Graphics.ES30.GetQueryParam pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// @@ -32657,7 +32657,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryivEXT")] [CLSCompliant(false)] - public static unsafe void GetQuery(OpenTK.Graphics.ES30.QueryTarget target, OpenTK.Graphics.ES30.GetQueryParam pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQuery(OpenTK.Graphics.ES30.QueryTarget target, OpenTK.Graphics.ES30.GetQueryParam pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32674,7 +32674,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32691,7 +32691,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32708,7 +32708,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32724,7 +32724,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32740,7 +32740,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32756,7 +32756,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32773,7 +32773,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32790,7 +32790,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32807,7 +32807,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32823,7 +32823,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32839,7 +32839,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32855,7 +32855,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32872,7 +32872,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32889,7 +32889,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32906,7 +32906,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32922,7 +32922,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32938,7 +32938,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32954,7 +32954,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32971,7 +32971,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32988,7 +32988,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -33005,7 +33005,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -33021,7 +33021,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -33037,7 +33037,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -33053,7 +33053,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -33070,7 +33070,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -33087,7 +33087,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -33104,7 +33104,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -33120,7 +33120,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -33136,7 +33136,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -33152,7 +33152,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Return parameters of a query object @@ -33169,7 +33169,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryObjectuivEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Return parameters of a query object @@ -33186,7 +33186,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryObjectuivEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Return parameters of a query object @@ -33203,7 +33203,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryObjectuivEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Return parameters of a query object @@ -33219,7 +33219,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryObjectuivEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Return parameters of a query object @@ -33235,7 +33235,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryObjectuivEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Return parameters of a query object @@ -33251,7 +33251,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryObjectuivEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33259,7 +33259,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33267,7 +33267,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33275,7 +33275,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33283,7 +33283,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33291,7 +33291,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33299,7 +33299,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33307,7 +33307,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivEXT")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33315,7 +33315,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivEXT")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33323,7 +33323,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -33332,7 +33332,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -33341,7 +33341,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -33350,7 +33350,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -33358,7 +33358,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -33366,7 +33366,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -33374,7 +33374,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -33383,7 +33383,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.All pname, [OutAttribute] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.All pname, [OutAttribute] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -33392,7 +33392,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.All pname, [OutAttribute] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.All pname, [OutAttribute] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -33401,7 +33401,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.All pname, [OutAttribute] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.All pname, [OutAttribute] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -33409,7 +33409,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, [OutAttribute] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, [OutAttribute] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -33417,7 +33417,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, [OutAttribute] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, [OutAttribute] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -33425,7 +33425,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, [OutAttribute] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, [OutAttribute] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33434,7 +33434,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33443,7 +33443,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33452,7 +33452,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33460,7 +33460,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33468,7 +33468,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33476,7 +33476,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33485,7 +33485,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33494,7 +33494,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33503,7 +33503,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33511,7 +33511,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33519,7 +33519,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33527,7 +33527,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -33535,7 +33535,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte[] data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -33543,7 +33543,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Byte data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Byte data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -33551,7 +33551,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte* data) { throw new NotImplementedException(); } + public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -33559,7 +33559,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte[] data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -33567,7 +33567,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Byte data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Byte data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -33575,20 +33575,20 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte* data) { throw new NotImplementedException(); } + public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static Byte GetUnsignedByte(OpenTK.Graphics.ES30.All pname) { throw new NotImplementedException(); } + public static Byte GetUnsignedByte(OpenTK.Graphics.ES30.All pname) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static Byte GetUnsignedByte(OpenTK.Graphics.ES30.GetPName pname) { throw new NotImplementedException(); } + public static Byte GetUnsignedByte(OpenTK.Graphics.ES30.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -33596,7 +33596,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte[] data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -33604,7 +33604,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Byte data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Byte data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -33612,28 +33612,28 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte* data) { throw new NotImplementedException(); } + public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte[] data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Byte data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Byte data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte* data) { throw new NotImplementedException(); } + public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_fd] /// @@ -33643,7 +33643,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object_fd", Version = "", EntryPoint = "glImportMemoryFdEXT")] [CLSCompliant(false)] - public static void ImportMemoryF(Int32 memory, Int64 size, OpenTK.Graphics.ES30.All handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportMemoryF(Int32 memory, Int64 size, OpenTK.Graphics.ES30.All handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_fd] /// @@ -33652,7 +33652,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object_fd", Version = "", EntryPoint = "glImportMemoryFdEXT")] [CLSCompliant(false)] - public static void ImportMemoryF(Int32 memory, Int64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportMemoryF(Int32 memory, Int64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_fd] /// @@ -33662,7 +33662,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object_fd", Version = "", EntryPoint = "glImportMemoryFdEXT")] [CLSCompliant(false)] - public static void ImportMemoryF(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.All handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportMemoryF(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.All handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_fd] /// @@ -33671,7 +33671,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object_fd", Version = "", EntryPoint = "glImportMemoryFdEXT")] [CLSCompliant(false)] - public static void ImportMemoryF(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportMemoryF(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33681,7 +33681,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES30.All handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES30.All handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33693,7 +33693,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T3[] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33705,7 +33705,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T3[,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33717,7 +33717,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T3[,,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33729,7 +33729,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] ref T3 handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33738,7 +33738,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33749,7 +33749,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33760,7 +33760,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33771,7 +33771,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33782,7 +33782,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T3 handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33792,7 +33792,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.All handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.All handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33804,7 +33804,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T3[] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33816,7 +33816,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T3[,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33828,7 +33828,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T3[,,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33840,7 +33840,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] ref T3 handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33849,7 +33849,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33860,7 +33860,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33871,7 +33871,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33882,7 +33882,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33893,7 +33893,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T3 handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33903,7 +33903,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32NameEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES30.All handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES30.All handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33915,7 +33915,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T3[] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33927,7 +33927,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T3[,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33939,7 +33939,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T3[,,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33951,7 +33951,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] ref T3 name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33960,7 +33960,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32NameEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33971,7 +33971,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33982,7 +33982,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33993,7 +33993,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -34004,7 +34004,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T3 name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -34014,7 +34014,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32NameEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.All handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.All handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -34026,7 +34026,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T3[] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -34038,7 +34038,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T3[,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -34050,7 +34050,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T3[,,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -34062,7 +34062,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] ref T3 name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -34071,7 +34071,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32NameEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -34082,7 +34082,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -34093,7 +34093,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -34104,7 +34104,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -34115,7 +34115,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T3 name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_fd] /// @@ -34124,7 +34124,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore_fd", Version = "", EntryPoint = "glImportSemaphoreFdEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreF(Int32 semaphore, OpenTK.Graphics.ES30.All handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportSemaphoreF(Int32 semaphore, OpenTK.Graphics.ES30.All handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_fd] /// @@ -34132,7 +34132,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_semaphore_fd", Version = "", EntryPoint = "glImportSemaphoreFdEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreF(Int32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportSemaphoreF(Int32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_fd] /// @@ -34141,7 +34141,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore_fd", Version = "", EntryPoint = "glImportSemaphoreFdEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreF(UInt32 semaphore, OpenTK.Graphics.ES30.All handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportSemaphoreF(UInt32 semaphore, OpenTK.Graphics.ES30.All handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_fd] /// @@ -34149,7 +34149,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_semaphore_fd", Version = "", EntryPoint = "glImportSemaphoreFdEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreF(UInt32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportSemaphoreF(UInt32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34158,7 +34158,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES30.All handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES30.All handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34169,7 +34169,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T2[] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34180,7 +34180,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T2[,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34191,7 +34191,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T2[,,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34202,7 +34202,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] ref T2 handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34210,7 +34210,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34220,7 +34220,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34230,7 +34230,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34240,7 +34240,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34250,7 +34250,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T2 handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34259,7 +34259,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES30.All handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES30.All handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34270,7 +34270,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T2[] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34281,7 +34281,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T2[,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34292,7 +34292,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T2[,,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34303,7 +34303,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] ref T2 handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34311,7 +34311,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34321,7 +34321,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34331,7 +34331,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34341,7 +34341,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34351,7 +34351,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T2 handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34360,7 +34360,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32NameEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES30.All handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES30.All handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34371,7 +34371,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T2[] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34382,7 +34382,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T2[,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34393,7 +34393,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T2[,,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34404,7 +34404,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] ref T2 name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34412,7 +34412,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32NameEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34422,7 +34422,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34432,7 +34432,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34442,7 +34442,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34452,7 +34452,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T2 name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34461,7 +34461,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32NameEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES30.All handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES30.All handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34472,7 +34472,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T2[] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34483,7 +34483,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T2[,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34494,7 +34494,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T2[,,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34505,7 +34505,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] ref T2 name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34513,7 +34513,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32NameEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34523,7 +34523,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34533,7 +34533,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34543,7 +34543,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34553,13 +34553,13 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T2 name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_marker] /// /// [AutoGenerated(Category = "EXT_debug_marker", Version = "", EntryPoint = "glInsertEventMarkerEXT")] - public static void InsertEventMarker(Int32 length, String marker) { throw new NotImplementedException(); } + public static void InsertEventMarker(Int32 length, String marker) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Test whether a capability is enabled @@ -34572,7 +34572,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glIsEnablediEXT")] [CLSCompliant(false)] - public static bool IsEnabled(OpenTK.Graphics.ES30.All target, Int32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES30.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Test whether a capability is enabled @@ -34585,19 +34585,19 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glIsEnablediEXT")] [CLSCompliant(false)] - public static bool IsEnabled(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glIsMemoryObjectEXT")] [CLSCompliant(false)] - public static bool IsMemoryObject(Int32 memoryObject) { throw new NotImplementedException(); } + public static bool IsMemoryObject(Int32 memoryObject) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glIsMemoryObjectEXT")] [CLSCompliant(false)] - public static bool IsMemoryObject(UInt32 memoryObject) { throw new NotImplementedException(); } + public static bool IsMemoryObject(UInt32 memoryObject) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Determine if a name corresponds to a program pipeline object @@ -34607,7 +34607,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glIsProgramPipelineEXT")] [CLSCompliant(false)] - public static bool IsProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } + public static bool IsProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Determine if a name corresponds to a program pipeline object @@ -34617,7 +34617,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glIsProgramPipelineEXT")] [CLSCompliant(false)] - public static bool IsProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static bool IsProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Determine if a name corresponds to a query object @@ -34627,7 +34627,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glIsQueryEXT")] [CLSCompliant(false)] - public static bool IsQuery(Int32 id) { throw new NotImplementedException(); } + public static bool IsQuery(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Determine if a name corresponds to a query object @@ -34637,19 +34637,19 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glIsQueryEXT")] [CLSCompliant(false)] - public static bool IsQuery(UInt32 id) { throw new NotImplementedException(); } + public static bool IsQuery(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glIsSemaphoreEXT")] [CLSCompliant(false)] - public static bool IsSemaphore(Int32 semaphore) { throw new NotImplementedException(); } + public static bool IsSemaphore(Int32 semaphore) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glIsSemaphoreEXT")] [CLSCompliant(false)] - public static bool IsSemaphore(UInt32 semaphore) { throw new NotImplementedException(); } + public static bool IsSemaphore(UInt32 semaphore) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// @@ -34658,7 +34658,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glLabelObjectEXT")] [CLSCompliant(false)] - public static void LabelObject(OpenTK.Graphics.ES30.All type, Int32 @object, Int32 length, String label) { throw new NotImplementedException(); } + public static void LabelObject(OpenTK.Graphics.ES30.All type, Int32 @object, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// @@ -34667,7 +34667,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glLabelObjectEXT")] [CLSCompliant(false)] - public static void LabelObject(OpenTK.Graphics.ES30.All type, UInt32 @object, Int32 length, String label) { throw new NotImplementedException(); } + public static void LabelObject(OpenTK.Graphics.ES30.All type, UInt32 @object, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -34687,7 +34687,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 length, Int32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 length, Int32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -34707,7 +34707,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 length, UInt32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 length, UInt32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -34727,7 +34727,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr length, Int32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr length, Int32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -34747,7 +34747,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr length, UInt32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr length, UInt32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -34766,7 +34766,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, Int32 length, Int32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, Int32 length, Int32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -34785,7 +34785,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, Int32 length, UInt32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, Int32 length, UInt32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -34804,7 +34804,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, IntPtr length, Int32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, IntPtr length, Int32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -34823,7 +34823,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, IntPtr length, UInt32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, IntPtr length, UInt32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -34832,7 +34832,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.All pname, Int32[] @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.All pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -34841,7 +34841,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.All pname, ref Int32 @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.All pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -34850,7 +34850,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.All pname, Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.All pname, Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -34858,7 +34858,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, Int32[] @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -34866,7 +34866,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, ref Int32 @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -34874,7 +34874,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -34883,7 +34883,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.All pname, Int32[] @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.All pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -34892,7 +34892,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.All pname, ref Int32 @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.All pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -34901,7 +34901,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.All pname, Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.All pname, Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -34909,7 +34909,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, Int32[] @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -34917,7 +34917,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, ref Int32 @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -34925,7 +34925,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -34945,7 +34945,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static void MultiDrawArrays(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -34965,7 +34965,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static void MultiDrawArrays(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -34985,7 +34985,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawArrays(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawArrays(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -35004,7 +35004,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static void MultiDrawArrays(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -35023,7 +35023,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static void MultiDrawArrays(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -35042,7 +35042,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawArrays(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawArrays(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -35061,7 +35061,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectEXT")] - public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -35083,7 +35083,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES30.All mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -35105,7 +35105,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES30.All mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[,] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -35127,7 +35127,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES30.All mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[,,] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -35148,7 +35148,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectEXT")] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES30.All mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] ref T1 indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -35166,7 +35166,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the distance in basic machine units between elements of the draw parameter array. /// [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectEXT")] - public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -35187,7 +35187,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES30.PrimitiveType mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -35208,7 +35208,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES30.PrimitiveType mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[,] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -35229,7 +35229,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES30.PrimitiveType mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[,,] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -35249,7 +35249,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectEXT")] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES30.PrimitiveType mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] ref T1 indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35275,7 +35275,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex", Version = "", EntryPoint = "glMultiDrawElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) { throw new NotImplementedException(); } + public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35303,7 +35303,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35331,7 +35331,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35359,7 +35359,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35387,7 +35387,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35413,7 +35413,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex", Version = "", EntryPoint = "glMultiDrawElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) { throw new NotImplementedException(); } + public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35441,7 +35441,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35469,7 +35469,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35497,7 +35497,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35525,7 +35525,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35551,7 +35551,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex", Version = "", EntryPoint = "glMultiDrawElementsBaseVertexEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35579,7 +35579,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35607,7 +35607,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35635,7 +35635,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35663,7 +35663,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35688,7 +35688,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex", Version = "", EntryPoint = "glMultiDrawElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) { throw new NotImplementedException(); } + public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35715,7 +35715,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35742,7 +35742,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35769,7 +35769,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35796,7 +35796,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35821,7 +35821,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex", Version = "", EntryPoint = "glMultiDrawElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) { throw new NotImplementedException(); } + public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35848,7 +35848,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35875,7 +35875,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35902,7 +35902,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35929,7 +35929,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35954,7 +35954,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex", Version = "", EntryPoint = "glMultiDrawElementsBaseVertexEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35981,7 +35981,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -36008,7 +36008,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -36035,7 +36035,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -36062,7 +36062,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36085,7 +36085,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static void MultiDrawElements(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36110,7 +36110,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36135,7 +36135,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36160,7 +36160,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36185,7 +36185,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36208,7 +36208,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static void MultiDrawElements(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36233,7 +36233,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36258,7 +36258,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36283,7 +36283,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36308,7 +36308,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36331,7 +36331,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawElements(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElements(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36356,7 +36356,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36381,7 +36381,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36406,7 +36406,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36431,7 +36431,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36453,7 +36453,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36477,7 +36477,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36501,7 +36501,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36525,7 +36525,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36549,7 +36549,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36571,7 +36571,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36595,7 +36595,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36619,7 +36619,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36643,7 +36643,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36667,7 +36667,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36689,7 +36689,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36713,7 +36713,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36737,7 +36737,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36761,7 +36761,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36785,7 +36785,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -36807,7 +36807,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectEXT")] - public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES30.All mode, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES30.All mode, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -36832,7 +36832,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES30.All mode, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -36857,7 +36857,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES30.All mode, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -36882,7 +36882,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES30.All mode, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,,] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -36906,7 +36906,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectEXT")] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES30.All mode, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] ref T2 indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -36927,7 +36927,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the distance in basic machine units between elements of the draw parameter array. /// [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectEXT")] - public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES30.PrimitiveType mode, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES30.PrimitiveType mode, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -36951,7 +36951,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES30.PrimitiveType mode, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -36975,7 +36975,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES30.PrimitiveType mode, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -36999,7 +36999,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES30.PrimitiveType mode, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,,] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -37022,7 +37022,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectEXT")] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES30.PrimitiveType mode, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] ref T2 indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -37032,7 +37032,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, Int32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -37042,7 +37042,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, Int32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -37052,7 +37052,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, UInt32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -37062,7 +37062,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -37071,7 +37071,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glNamedBufferStorageMemEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageMem(Int32 buffer, Int32 size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void NamedBufferStorageMem(Int32 buffer, Int32 size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -37080,7 +37080,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glNamedBufferStorageMemEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageMem(Int32 buffer, IntPtr size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void NamedBufferStorageMem(Int32 buffer, IntPtr size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -37089,7 +37089,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glNamedBufferStorageMemEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageMem(UInt32 buffer, Int32 size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void NamedBufferStorageMem(UInt32 buffer, Int32 size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -37098,7 +37098,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glNamedBufferStorageMemEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageMem(UInt32 buffer, IntPtr size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void NamedBufferStorageMem(UInt32 buffer, IntPtr size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_tessellation_shader] /// Specifies the parameters for patch primitives @@ -37110,18 +37110,18 @@ namespace OpenTK.Graphics.ES30 /// Specifies the new value for the parameter given by pname. /// [AutoGenerated(Category = "EXT_tessellation_shader", Version = "", EntryPoint = "glPatchParameteriEXT")] - public static void PatchParameter(OpenTK.Graphics.ES30.All pname, Int32 value) { throw new NotImplementedException(); } + public static void PatchParameter(OpenTK.Graphics.ES30.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_polygon_offset_clamp] /// /// /// [AutoGenerated(Category = "EXT_polygon_offset_clamp", Version = "", EntryPoint = "glPolygonOffsetClampEXT")] - public static void PolygonOffsetClamp(Single factor, Single units, Single clamp) { throw new NotImplementedException(); } + public static void PolygonOffsetClamp(Single factor, Single units, Single clamp) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_marker] [AutoGenerated(Category = "EXT_debug_marker", Version = "", EntryPoint = "glPopGroupMarkerEXT")] - public static void PopGroupMarker() { throw new NotImplementedException(); } + public static void PopGroupMarker() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_primitive_bounding_box] /// @@ -37133,7 +37133,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_primitive_bounding_box", Version = "", EntryPoint = "glPrimitiveBoundingBoxEXT")] - public static void PrimitiveBoundingBox(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW) { throw new NotImplementedException(); } + public static void PrimitiveBoundingBox(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify a parameter for a program object @@ -37150,7 +37150,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramParameteriEXT")] [CLSCompliant(false)] - public static void ProgramParameter(Int32 program, OpenTK.Graphics.ES30.All pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(Int32 program, OpenTK.Graphics.ES30.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify a parameter for a program object @@ -37166,7 +37166,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramParameteriEXT")] [CLSCompliant(false)] - public static void ProgramParameter(Int32 program, OpenTK.Graphics.ES30.ProgramParameterName pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(Int32 program, OpenTK.Graphics.ES30.ProgramParameterName pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify a parameter for a program object @@ -37183,7 +37183,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramParameteriEXT")] [CLSCompliant(false)] - public static void ProgramParameter(UInt32 program, OpenTK.Graphics.ES30.All pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(UInt32 program, OpenTK.Graphics.ES30.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify a parameter for a program object @@ -37199,7 +37199,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramParameteriEXT")] [CLSCompliant(false)] - public static void ProgramParameter(UInt32 program, OpenTK.Graphics.ES30.ProgramParameterName pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(UInt32 program, OpenTK.Graphics.ES30.ProgramParameterName pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37215,7 +37215,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Single v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37231,7 +37231,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Single v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37250,7 +37250,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37269,7 +37269,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37288,7 +37288,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37307,7 +37307,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37326,7 +37326,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37345,7 +37345,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37361,7 +37361,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1iEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37377,7 +37377,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1iEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37396,7 +37396,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37415,7 +37415,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37434,7 +37434,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37453,7 +37453,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37472,7 +37472,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37491,7 +37491,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37507,7 +37507,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uiEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, UInt32 v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, UInt32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37526,7 +37526,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37545,7 +37545,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37564,7 +37564,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37583,7 +37583,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37602,7 +37602,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37621,7 +37621,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37640,7 +37640,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37659,7 +37659,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37678,7 +37678,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37697,7 +37697,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37716,7 +37716,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37735,7 +37735,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2iEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37754,7 +37754,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2iEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37773,7 +37773,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37792,7 +37792,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37811,7 +37811,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37830,7 +37830,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37849,7 +37849,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2uiEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, UInt32 v0, UInt32 v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, UInt32 v0, UInt32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37868,7 +37868,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37887,7 +37887,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37906,7 +37906,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2uivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37928,7 +37928,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37950,7 +37950,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37969,7 +37969,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37988,7 +37988,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38007,7 +38007,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38026,7 +38026,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38045,7 +38045,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38064,7 +38064,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38086,7 +38086,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3iEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38108,7 +38108,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3iEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38127,7 +38127,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38146,7 +38146,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38165,7 +38165,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38184,7 +38184,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38203,7 +38203,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38222,7 +38222,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38244,7 +38244,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3uiEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38263,7 +38263,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38282,7 +38282,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38301,7 +38301,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3uivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38326,7 +38326,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38351,7 +38351,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38370,7 +38370,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38389,7 +38389,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38408,7 +38408,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38427,7 +38427,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38446,7 +38446,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38465,7 +38465,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38490,7 +38490,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4iEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38515,7 +38515,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4iEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38534,7 +38534,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38553,7 +38553,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38572,7 +38572,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38591,7 +38591,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38610,7 +38610,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38629,7 +38629,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38654,7 +38654,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4uiEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38673,7 +38673,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38692,7 +38692,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38711,7 +38711,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4uivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38721,7 +38721,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*4] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38731,7 +38731,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*4] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38741,7 +38741,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*4] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38751,7 +38751,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*4] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38761,7 +38761,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*4] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38771,7 +38771,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*4] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38781,7 +38781,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38791,7 +38791,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38801,7 +38801,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38811,7 +38811,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38821,7 +38821,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38831,7 +38831,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38841,7 +38841,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38851,7 +38851,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38861,7 +38861,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38871,7 +38871,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38881,7 +38881,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38891,7 +38891,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38901,7 +38901,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*9] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38911,7 +38911,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*9] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38921,7 +38921,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*9] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38931,7 +38931,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*9] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38941,7 +38941,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*9] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38951,7 +38951,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*9] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38961,7 +38961,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38971,7 +38971,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38981,7 +38981,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38991,7 +38991,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -39001,7 +39001,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -39011,7 +39011,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -39021,7 +39021,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -39031,7 +39031,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -39041,7 +39041,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -39051,7 +39051,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -39061,7 +39061,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -39071,7 +39071,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -39081,7 +39081,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*16] [AutoGenerated(Category = "EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -39091,7 +39091,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*16] [AutoGenerated(Category = "EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -39101,7 +39101,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*16] [AutoGenerated(Category = "EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -39111,7 +39111,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*16] [AutoGenerated(Category = "EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -39121,7 +39121,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*16] [AutoGenerated(Category = "EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -39131,7 +39131,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*16] [AutoGenerated(Category = "EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -39141,7 +39141,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -39151,7 +39151,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -39161,7 +39161,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -39171,7 +39171,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -39181,7 +39181,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -39191,7 +39191,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -39201,7 +39201,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -39211,7 +39211,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -39221,7 +39221,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -39231,7 +39231,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -39241,7 +39241,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -39251,13 +39251,13 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_marker] /// /// [AutoGenerated(Category = "EXT_debug_marker", Version = "", EntryPoint = "glPushGroupMarkerEXT")] - public static void PushGroupMarker(Int32 length, String marker) { throw new NotImplementedException(); } + public static void PushGroupMarker(Int32 length, String marker) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Record the GL time into a query object after all previous commands have reached the GL server but have not yet necessarily executed. @@ -39270,7 +39270,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glQueryCounterEXT")] [CLSCompliant(false)] - public static void QueryCounter(Int32 id, OpenTK.Graphics.ES30.All target) { throw new NotImplementedException(); } + public static void QueryCounter(Int32 id, OpenTK.Graphics.ES30.All target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Record the GL time into a query object after all previous commands have reached the GL server but have not yet necessarily executed. @@ -39283,27 +39283,27 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glQueryCounterEXT")] [CLSCompliant(false)] - public static void QueryCounter(UInt32 id, OpenTK.Graphics.ES30.All target) { throw new NotImplementedException(); } + public static void QueryCounter(UInt32 id, OpenTK.Graphics.ES30.All target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glRasterSamplesEXT")] [CLSCompliant(false)] - public static void RasterSamples(Int32 samples, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void RasterSamples(Int32 samples, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glRasterSamplesEXT")] [CLSCompliant(false)] - public static void RasterSamples(UInt32 samples, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void RasterSamples(UInt32 samples, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// /// [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glReadBufferIndexedEXT")] - public static void ReadBufferIndexed(OpenTK.Graphics.ES30.All src, Int32 index) { throw new NotImplementedException(); } + public static void ReadBufferIndexed(OpenTK.Graphics.ES30.All src, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -39316,7 +39316,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -39332,7 +39332,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -39348,7 +39348,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -39364,7 +39364,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -39379,7 +39379,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -39391,7 +39391,7 @@ namespace OpenTK.Graphics.ES30 /// /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -39406,7 +39406,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -39421,7 +39421,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -39436,7 +39436,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -39450,21 +39450,21 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_win32_keyed_mutex] /// /// [AutoGenerated(Category = "EXT_win32_keyed_mutex", Version = "", EntryPoint = "glReleaseKeyedMutexWin32EXT")] [CLSCompliant(false)] - public static bool ReleaseKeyedMutexWin32(Int32 memory, Int64 key) { throw new NotImplementedException(); } + public static bool ReleaseKeyedMutexWin32(Int32 memory, Int64 key) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_win32_keyed_mutex] /// /// [AutoGenerated(Category = "EXT_win32_keyed_mutex", Version = "", EntryPoint = "glReleaseKeyedMutexWin32EXT")] [CLSCompliant(false)] - public static bool ReleaseKeyedMutexWin32(UInt32 memory, UInt64 key) { throw new NotImplementedException(); } + public static bool ReleaseKeyedMutexWin32(UInt32 memory, UInt64 key) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multisampled_render_to_texture] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -39486,7 +39486,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glRenderbufferStorageMultisampleEXT")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multisampled_render_to_texture] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -39507,7 +39507,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glRenderbufferStorageMultisampleEXT")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES30.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES30.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -39515,7 +39515,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -39523,7 +39523,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -39531,7 +39531,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -39539,7 +39539,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -39547,7 +39547,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -39555,7 +39555,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -39563,7 +39563,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivEXT")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -39571,7 +39571,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivEXT")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -39579,7 +39579,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39588,7 +39588,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.All pname, Int64[] @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.All pname, Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39597,7 +39597,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.All pname, ref Int64 @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.All pname, ref Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39606,7 +39606,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.All pname, Int64* @params) { throw new NotImplementedException(); } + public static unsafe void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.All pname, Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39614,7 +39614,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, Int64[] @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39622,7 +39622,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, ref Int64 @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, ref Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39630,7 +39630,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, Int64* @params) { throw new NotImplementedException(); } + public static unsafe void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39639,7 +39639,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.All pname, UInt64[] @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.All pname, UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39648,7 +39648,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.All pname, ref UInt64 @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.All pname, ref UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39657,7 +39657,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.All pname, UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.All pname, UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39665,7 +39665,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, UInt64[] @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39673,7 +39673,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, ref UInt64 @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, ref UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39681,7 +39681,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39693,7 +39693,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.All[] dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.All[] dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39704,7 +39704,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.TextureLayout[] dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.TextureLayout[] dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39716,7 +39716,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES30.All dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES30.All dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39727,7 +39727,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES30.TextureLayout dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES30.TextureLayout dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39739,7 +39739,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.All* dstLayouts) { throw new NotImplementedException(); } + public static unsafe void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.All* dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39750,7 +39750,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.TextureLayout* dstLayouts) { throw new NotImplementedException(); } + public static unsafe void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.TextureLayout* dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39762,7 +39762,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.All[] dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.All[] dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39773,7 +39773,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.TextureLayout[] dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.TextureLayout[] dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39785,7 +39785,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES30.All dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES30.All dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39796,7 +39796,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES30.TextureLayout dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES30.TextureLayout dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39808,7 +39808,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.All* dstLayouts) { throw new NotImplementedException(); } + public static unsafe void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.All* dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39819,7 +39819,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.TextureLayout* dstLayouts) { throw new NotImplementedException(); } + public static unsafe void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.TextureLayout* dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -39836,7 +39836,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferEXT")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -39853,7 +39853,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferEXT")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -39869,7 +39869,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferEXT")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.All internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.All internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -39885,7 +39885,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferEXT")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.All internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.All internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -39907,7 +39907,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -39929,7 +39929,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -39951,7 +39951,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -39973,7 +39973,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_sparse_texture] /// @@ -39986,7 +39986,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_sparse_texture", Version = "", EntryPoint = "glTexPageCommitmentEXT")] - public static void TexPageCommitment(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit) { throw new NotImplementedException(); } + public static void TexPageCommitment(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -39995,7 +39995,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -40004,7 +40004,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -40013,7 +40013,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -40021,7 +40021,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -40029,7 +40029,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -40037,7 +40037,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -40046,7 +40046,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -40055,7 +40055,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -40064,7 +40064,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -40072,7 +40072,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -40080,7 +40080,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -40088,7 +40088,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// Simultaneously specify storage for all levels of a one-dimensional texture @@ -40106,7 +40106,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the width of the texture, in texels. /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage1DEXT")] - public static void TexStorage1D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TexStorage1D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// Simultaneously specify storage for all levels of a two-dimensional texture @@ -40128,7 +40128,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage2DEXT")] - public static void TexStorage2D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TexStorage2D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// Simultaneously specify storage for all levels of a two-dimensional texture @@ -40149,7 +40149,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the height of the texture, in texels. /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage2DEXT")] - public static void TexStorage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 levels, OpenTK.Graphics.ES30.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TexStorage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 levels, OpenTK.Graphics.ES30.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// Simultaneously specify storage for all levels of a three-dimensional or two-dimensional array texture @@ -40174,7 +40174,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage3DEXT")] - public static void TexStorage3D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TexStorage3D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// Simultaneously specify storage for all levels of a three-dimensional or two-dimensional array texture @@ -40198,7 +40198,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the depth of the texture, in texels. /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage3DEXT")] - public static void TexStorage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 levels, OpenTK.Graphics.ES30.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TexStorage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 levels, OpenTK.Graphics.ES30.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40210,7 +40210,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem1DEXT")] [CLSCompliant(false)] - public static void TexStorageMem1D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem1D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40222,7 +40222,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem1DEXT")] [CLSCompliant(false)] - public static void TexStorageMem1D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem1D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40233,7 +40233,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem1DEXT")] [CLSCompliant(false)] - public static void TexStorageMem1D(OpenTK.Graphics.ES30.TextureTarget target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem1D(OpenTK.Graphics.ES30.TextureTarget target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40244,7 +40244,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem1DEXT")] [CLSCompliant(false)] - public static void TexStorageMem1D(OpenTK.Graphics.ES30.TextureTarget target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem1D(OpenTK.Graphics.ES30.TextureTarget target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40257,7 +40257,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DEXT")] [CLSCompliant(false)] - public static void TexStorageMem2D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40270,7 +40270,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DEXT")] [CLSCompliant(false)] - public static void TexStorageMem2D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40282,7 +40282,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DEXT")] [CLSCompliant(false)] - public static void TexStorageMem2D(OpenTK.Graphics.ES30.TextureTarget target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2D(OpenTK.Graphics.ES30.TextureTarget target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40294,7 +40294,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DEXT")] [CLSCompliant(false)] - public static void TexStorageMem2D(OpenTK.Graphics.ES30.TextureTarget target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2D(OpenTK.Graphics.ES30.TextureTarget target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40308,7 +40308,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40322,7 +40322,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40335,7 +40335,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES30.TextureTarget target, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES30.TextureTarget target, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40348,7 +40348,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES30.TextureTarget target, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES30.TextureTarget target, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40362,7 +40362,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DEXT")] [CLSCompliant(false)] - public static void TexStorageMem3D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40376,7 +40376,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DEXT")] [CLSCompliant(false)] - public static void TexStorageMem3D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40389,7 +40389,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DEXT")] [CLSCompliant(false)] - public static void TexStorageMem3D(OpenTK.Graphics.ES30.TextureTarget target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3D(OpenTK.Graphics.ES30.TextureTarget target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40402,7 +40402,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DEXT")] [CLSCompliant(false)] - public static void TexStorageMem3D(OpenTK.Graphics.ES30.TextureTarget target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3D(OpenTK.Graphics.ES30.TextureTarget target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40417,7 +40417,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40432,7 +40432,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40446,7 +40446,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES30.TextureTarget target, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES30.TextureTarget target, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40460,7 +40460,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES30.TextureTarget target, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES30.TextureTarget target, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -40470,7 +40470,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage1DEXT")] [CLSCompliant(false)] - public static void TextureStorage1D(Int32 texture, OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TextureStorage1D(Int32 texture, OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -40480,7 +40480,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage1DEXT")] [CLSCompliant(false)] - public static void TextureStorage1D(UInt32 texture, OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TextureStorage1D(UInt32 texture, OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -40491,7 +40491,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage2DEXT")] [CLSCompliant(false)] - public static void TextureStorage2D(Int32 texture, OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TextureStorage2D(Int32 texture, OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -40502,7 +40502,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage2DEXT")] [CLSCompliant(false)] - public static void TextureStorage2D(UInt32 texture, OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TextureStorage2D(UInt32 texture, OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -40514,7 +40514,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage3DEXT")] [CLSCompliant(false)] - public static void TextureStorage3D(Int32 texture, OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TextureStorage3D(Int32 texture, OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -40526,7 +40526,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage3DEXT")] [CLSCompliant(false)] - public static void TextureStorage3D(UInt32 texture, OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TextureStorage3D(UInt32 texture, OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40537,7 +40537,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem1DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem1D(Int32 texture, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem1D(Int32 texture, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40548,7 +40548,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem1DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem1D(UInt32 texture, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem1D(UInt32 texture, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40560,7 +40560,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem2DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem2D(Int32 texture, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem2D(Int32 texture, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40572,7 +40572,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem2DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem2D(UInt32 texture, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem2D(UInt32 texture, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40585,7 +40585,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorageMem2DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem2DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40598,7 +40598,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorageMem2DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem2DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40611,7 +40611,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem3DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem3D(Int32 texture, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem3D(Int32 texture, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40624,7 +40624,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem3DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem3D(UInt32 texture, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem3D(UInt32 texture, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40638,7 +40638,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorageMem3DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem3DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40652,7 +40652,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorageMem3DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem3DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_view] /// Initialize a texture as a data alias of another texture's data store @@ -40683,7 +40683,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_texture_view", Version = "", EntryPoint = "glTextureViewEXT")] [CLSCompliant(false)] - public static void TextureView(Int32 texture, OpenTK.Graphics.ES30.All target, Int32 origtexture, OpenTK.Graphics.ES30.All internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new NotImplementedException(); } + public static void TextureView(Int32 texture, OpenTK.Graphics.ES30.All target, Int32 origtexture, OpenTK.Graphics.ES30.All internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_view] /// Initialize a texture as a data alias of another texture's data store @@ -40714,7 +40714,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_texture_view", Version = "", EntryPoint = "glTextureViewEXT")] [CLSCompliant(false)] - public static void TextureView(UInt32 texture, OpenTK.Graphics.ES30.All target, UInt32 origtexture, OpenTK.Graphics.ES30.All internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new NotImplementedException(); } + public static void TextureView(UInt32 texture, OpenTK.Graphics.ES30.All target, UInt32 origtexture, OpenTK.Graphics.ES30.All internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind stages of a program object to a program pipeline @@ -40730,7 +40730,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseProgramStagesEXT")] [CLSCompliant(false)] - public static void UseProgramStages(Int32 pipeline, Int32 stages, Int32 program) { throw new NotImplementedException(); } + public static void UseProgramStages(Int32 pipeline, Int32 stages, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind stages of a program object to a program pipeline @@ -40746,21 +40746,21 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseProgramStagesEXT")] [CLSCompliant(false)] - public static void UseProgramStages(UInt32 pipeline, UInt32 stages, UInt32 program) { throw new NotImplementedException(); } + public static void UseProgramStages(UInt32 pipeline, UInt32 stages, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseShaderProgramEXT")] [CLSCompliant(false)] - public static void UseShaderProgram(OpenTK.Graphics.ES30.All type, Int32 program) { throw new NotImplementedException(); } + public static void UseShaderProgram(OpenTK.Graphics.ES30.All type, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseShaderProgramEXT")] [CLSCompliant(false)] - public static void UseShaderProgram(OpenTK.Graphics.ES30.All type, UInt32 program) { throw new NotImplementedException(); } + public static void UseShaderProgram(OpenTK.Graphics.ES30.All type, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Validate a program pipeline object against current GL state @@ -40770,7 +40770,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glValidateProgramPipelineEXT")] [CLSCompliant(false)] - public static void ValidateProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } + public static void ValidateProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Validate a program pipeline object against current GL state @@ -40780,7 +40780,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glValidateProgramPipelineEXT")] [CLSCompliant(false)] - public static void ValidateProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static void ValidateProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -40793,7 +40793,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorEXT")] [CLSCompliant(false)] - public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -40806,7 +40806,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorEXT")] [CLSCompliant(false)] - public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -40818,7 +40818,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.All[] srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.All[] srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -40829,7 +40829,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.TextureLayout[] srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.TextureLayout[] srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -40841,7 +40841,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES30.All srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES30.All srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -40852,7 +40852,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES30.TextureLayout srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES30.TextureLayout srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -40864,7 +40864,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.All* srcLayouts) { throw new NotImplementedException(); } + public static unsafe void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.All* srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -40875,7 +40875,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.TextureLayout* srcLayouts) { throw new NotImplementedException(); } + public static unsafe void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.TextureLayout* srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -40887,7 +40887,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.All[] srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.All[] srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -40898,7 +40898,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.TextureLayout[] srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.TextureLayout[] srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -40910,7 +40910,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES30.All srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES30.All srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -40921,7 +40921,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES30.TextureLayout srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES30.TextureLayout srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -40933,7 +40933,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.All* srcLayouts) { throw new NotImplementedException(); } + public static unsafe void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.All* srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -40944,7 +40944,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.TextureLayout* srcLayouts) { throw new NotImplementedException(); } + public static unsafe void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.TextureLayout* srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_window_rectangles] /// @@ -40952,7 +40952,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(count)] [AutoGenerated(Category = "EXT_window_rectangles", Version = "", EntryPoint = "glWindowRectanglesEXT")] [CLSCompliant(false)] - public static void WindowRectangles(OpenTK.Graphics.ES30.All mode, Int32 count, [CountAttribute(Computed = "count")] Int32[] box) { throw new NotImplementedException(); } + public static void WindowRectangles(OpenTK.Graphics.ES30.All mode, Int32 count, [CountAttribute(Computed = "count")] Int32[] box) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_window_rectangles] /// @@ -40960,7 +40960,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(count)] [AutoGenerated(Category = "EXT_window_rectangles", Version = "", EntryPoint = "glWindowRectanglesEXT")] [CLSCompliant(false)] - public static void WindowRectangles(OpenTK.Graphics.ES30.All mode, Int32 count, [CountAttribute(Computed = "count")] ref Int32 box) { throw new NotImplementedException(); } + public static void WindowRectangles(OpenTK.Graphics.ES30.All mode, Int32 count, [CountAttribute(Computed = "count")] ref Int32 box) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_window_rectangles] /// @@ -40968,7 +40968,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(count)] [AutoGenerated(Category = "EXT_window_rectangles", Version = "", EntryPoint = "glWindowRectanglesEXT")] [CLSCompliant(false)] - public static unsafe void WindowRectangles(OpenTK.Graphics.ES30.All mode, Int32 count, [CountAttribute(Computed = "count")] Int32* box) { throw new NotImplementedException(); } + public static unsafe void WindowRectangles(OpenTK.Graphics.ES30.All mode, Int32 count, [CountAttribute(Computed = "count")] Int32* box) { throw new BindingsNotRewrittenException(); } } @@ -40984,7 +40984,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTexture2DDownsampleIMG")] [CLSCompliant(false)] - public static void FramebufferTexture2DDownsample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, Int32 texture, Int32 level, Int32 xscale, Int32 yscale) { throw new NotImplementedException(); } + public static void FramebufferTexture2DDownsample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, Int32 texture, Int32 level, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_framebuffer_downsample] /// @@ -40996,7 +40996,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTexture2DDownsampleIMG")] [CLSCompliant(false)] - public static void FramebufferTexture2DDownsample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, UInt32 texture, Int32 level, Int32 xscale, Int32 yscale) { throw new NotImplementedException(); } + public static void FramebufferTexture2DDownsample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, UInt32 texture, Int32 level, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_multisampled_render_to_texture] /// @@ -41007,7 +41007,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleIMG")] [CLSCompliant(false)] - public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, Int32 texture, Int32 level, Int32 samples) { throw new NotImplementedException(); } + public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, Int32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_multisampled_render_to_texture] /// @@ -41018,7 +41018,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleIMG")] [CLSCompliant(false)] - public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, UInt32 texture, Int32 level, Int32 samples) { throw new NotImplementedException(); } + public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, UInt32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_framebuffer_downsample] /// @@ -41031,7 +41031,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTextureLayerDownsampleIMG")] [CLSCompliant(false)] - public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, Int32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new NotImplementedException(); } + public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, Int32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_framebuffer_downsample] /// @@ -41044,7 +41044,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTextureLayerDownsampleIMG")] [CLSCompliant(false)] - public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, UInt32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new NotImplementedException(); } + public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, UInt32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_framebuffer_downsample] /// @@ -41056,7 +41056,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTextureLayerDownsampleIMG")] [CLSCompliant(false)] - public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new NotImplementedException(); } + public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_framebuffer_downsample] /// @@ -41068,33 +41068,33 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTextureLayerDownsampleIMG")] [CLSCompliant(false)] - public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new NotImplementedException(); } + public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleIMG")] [CLSCompliant(false)] - public static Int64 GetTextureHandle(Int32 texture) { throw new NotImplementedException(); } + public static Int64 GetTextureHandle(Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleIMG")] [CLSCompliant(false)] - public static Int64 GetTextureHandle(UInt32 texture) { throw new NotImplementedException(); } + public static Int64 GetTextureHandle(UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glGetTextureSamplerHandleIMG")] [CLSCompliant(false)] - public static Int64 GetTextureSamplerHandle(Int32 texture, Int32 sampler) { throw new NotImplementedException(); } + public static Int64 GetTextureSamplerHandle(Int32 texture, Int32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glGetTextureSamplerHandleIMG")] [CLSCompliant(false)] - public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new NotImplementedException(); } + public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -41102,7 +41102,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64IMG")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -41110,7 +41110,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64IMG")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -41119,7 +41119,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] values) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -41128,7 +41128,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 values) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -41137,7 +41137,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vIMG")] [CLSCompliant(false)] - public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* values) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* values) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -41146,7 +41146,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] values) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -41155,7 +41155,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 values) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -41164,7 +41164,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vIMG")] [CLSCompliant(false)] - public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_multisampled_render_to_texture] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -41186,7 +41186,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glRenderbufferStorageMultisampleIMG")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_multisampled_render_to_texture] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -41207,21 +41207,21 @@ namespace OpenTK.Graphics.ES30 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glRenderbufferStorageMultisampleIMG")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES30.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES30.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64IMG")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64IMG")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -41229,7 +41229,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -41237,7 +41237,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -41245,7 +41245,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vIMG")] [CLSCompliant(false)] - public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -41253,7 +41253,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -41261,7 +41261,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -41269,7 +41269,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vIMG")] [CLSCompliant(false)] - public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new BindingsNotRewrittenException(); } } @@ -41279,174 +41279,174 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glBeginPerfQueryINTEL")] [CLSCompliant(false)] - public static void BeginPerfQuery(Int32 queryHandle) { throw new NotImplementedException(); } + public static void BeginPerfQuery(Int32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glBeginPerfQueryINTEL")] [CLSCompliant(false)] - public static void BeginPerfQuery(UInt32 queryHandle) { throw new NotImplementedException(); } + public static void BeginPerfQuery(UInt32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static void CreatePerfQuery(Int32 queryId, [OutAttribute] Int32[] queryHandle) { throw new NotImplementedException(); } + public static void CreatePerfQuery(Int32 queryId, [OutAttribute] Int32[] queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static void CreatePerfQuery(Int32 queryId, [OutAttribute] out Int32 queryHandle) { throw new NotImplementedException(); } + public static void CreatePerfQuery(Int32 queryId, [OutAttribute] out Int32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static unsafe void CreatePerfQuery(Int32 queryId, [OutAttribute] Int32* queryHandle) { throw new NotImplementedException(); } + public static unsafe void CreatePerfQuery(Int32 queryId, [OutAttribute] Int32* queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static void CreatePerfQuery(UInt32 queryId, [OutAttribute] UInt32[] queryHandle) { throw new NotImplementedException(); } + public static void CreatePerfQuery(UInt32 queryId, [OutAttribute] UInt32[] queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static void CreatePerfQuery(UInt32 queryId, [OutAttribute] out UInt32 queryHandle) { throw new NotImplementedException(); } + public static void CreatePerfQuery(UInt32 queryId, [OutAttribute] out UInt32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static unsafe void CreatePerfQuery(UInt32 queryId, [OutAttribute] UInt32* queryHandle) { throw new NotImplementedException(); } + public static unsafe void CreatePerfQuery(UInt32 queryId, [OutAttribute] UInt32* queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glDeletePerfQueryINTEL")] [CLSCompliant(false)] - public static void DeletePerfQuery(Int32 queryHandle) { throw new NotImplementedException(); } + public static void DeletePerfQuery(Int32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glDeletePerfQueryINTEL")] [CLSCompliant(false)] - public static void DeletePerfQuery(UInt32 queryHandle) { throw new NotImplementedException(); } + public static void DeletePerfQuery(UInt32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glEndPerfQueryINTEL")] [CLSCompliant(false)] - public static void EndPerfQuery(Int32 queryHandle) { throw new NotImplementedException(); } + public static void EndPerfQuery(Int32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glEndPerfQueryINTEL")] [CLSCompliant(false)] - public static void EndPerfQuery(UInt32 queryHandle) { throw new NotImplementedException(); } + public static void EndPerfQuery(UInt32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static Int32 GetFirstPerfQueryI() { throw new NotImplementedException(); } + public static Int32 GetFirstPerfQueryI() { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetFirstPerfQueryI([OutAttribute] Int32[] queryId) { throw new NotImplementedException(); } + public static void GetFirstPerfQueryI([OutAttribute] Int32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetFirstPerfQueryI([OutAttribute] out Int32 queryId) { throw new NotImplementedException(); } + public static void GetFirstPerfQueryI([OutAttribute] out Int32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static unsafe void GetFirstPerfQueryI([OutAttribute] Int32* queryId) { throw new NotImplementedException(); } + public static unsafe void GetFirstPerfQueryI([OutAttribute] Int32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetFirstPerfQueryI([OutAttribute] UInt32[] queryId) { throw new NotImplementedException(); } + public static void GetFirstPerfQueryI([OutAttribute] UInt32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetFirstPerfQueryI([OutAttribute] out UInt32 queryId) { throw new NotImplementedException(); } + public static void GetFirstPerfQueryI([OutAttribute] out UInt32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static unsafe void GetFirstPerfQueryI([OutAttribute] UInt32* queryId) { throw new NotImplementedException(); } + public static unsafe void GetFirstPerfQueryI([OutAttribute] UInt32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static Int32 GetNextPerfQueryI(Int32 queryId) { throw new NotImplementedException(); } + public static Int32 GetNextPerfQueryI(Int32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static Int32 GetNextPerfQueryI(UInt32 queryId) { throw new NotImplementedException(); } + public static Int32 GetNextPerfQueryI(UInt32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetNextPerfQueryI(Int32 queryId, [OutAttribute] Int32[] nextQueryId) { throw new NotImplementedException(); } + public static void GetNextPerfQueryI(Int32 queryId, [OutAttribute] Int32[] nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetNextPerfQueryI(Int32 queryId, [OutAttribute] out Int32 nextQueryId) { throw new NotImplementedException(); } + public static void GetNextPerfQueryI(Int32 queryId, [OutAttribute] out Int32 nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static unsafe void GetNextPerfQueryI(Int32 queryId, [OutAttribute] Int32* nextQueryId) { throw new NotImplementedException(); } + public static unsafe void GetNextPerfQueryI(Int32 queryId, [OutAttribute] Int32* nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] UInt32[] nextQueryId) { throw new NotImplementedException(); } + public static void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] UInt32[] nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] out UInt32 nextQueryId) { throw new NotImplementedException(); } + public static void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] out UInt32 nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static unsafe void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] UInt32* nextQueryId) { throw new NotImplementedException(); } + public static unsafe void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] UInt32* nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41462,7 +41462,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32[] counterOffset, [OutAttribute] Int32[] counterDataSize, [OutAttribute] Int32[] counterTypeEnum, [OutAttribute] Int32[] counterDataTypeEnum, [OutAttribute] Int64[] rawCounterMaxValue) { throw new NotImplementedException(); } + public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32[] counterOffset, [OutAttribute] Int32[] counterDataSize, [OutAttribute] Int32[] counterTypeEnum, [OutAttribute] Int32[] counterDataTypeEnum, [OutAttribute] Int64[] rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41478,7 +41478,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out Int32 counterOffset, [OutAttribute] out Int32 counterDataSize, [OutAttribute] out Int32 counterTypeEnum, [OutAttribute] out Int32 counterDataTypeEnum, [OutAttribute] out Int64 rawCounterMaxValue) { throw new NotImplementedException(); } + public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out Int32 counterOffset, [OutAttribute] out Int32 counterDataSize, [OutAttribute] out Int32 counterTypeEnum, [OutAttribute] out Int32 counterDataTypeEnum, [OutAttribute] out Int64 rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41494,7 +41494,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32* counterOffset, [OutAttribute] Int32* counterDataSize, [OutAttribute] Int32* counterTypeEnum, [OutAttribute] Int32* counterDataTypeEnum, [OutAttribute] Int64* rawCounterMaxValue) { throw new NotImplementedException(); } + public static unsafe void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32* counterOffset, [OutAttribute] Int32* counterDataSize, [OutAttribute] Int32* counterTypeEnum, [OutAttribute] Int32* counterDataTypeEnum, [OutAttribute] Int64* rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41510,7 +41510,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32[] counterOffset, [OutAttribute] UInt32[] counterDataSize, [OutAttribute] UInt32[] counterTypeEnum, [OutAttribute] UInt32[] counterDataTypeEnum, [OutAttribute] UInt64[] rawCounterMaxValue) { throw new NotImplementedException(); } + public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32[] counterOffset, [OutAttribute] UInt32[] counterDataSize, [OutAttribute] UInt32[] counterTypeEnum, [OutAttribute] UInt32[] counterDataTypeEnum, [OutAttribute] UInt64[] rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41526,7 +41526,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out UInt32 counterOffset, [OutAttribute] out UInt32 counterDataSize, [OutAttribute] out UInt32 counterTypeEnum, [OutAttribute] out UInt32 counterDataTypeEnum, [OutAttribute] out UInt64 rawCounterMaxValue) { throw new NotImplementedException(); } + public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out UInt32 counterOffset, [OutAttribute] out UInt32 counterDataSize, [OutAttribute] out UInt32 counterTypeEnum, [OutAttribute] out UInt32 counterDataTypeEnum, [OutAttribute] out UInt64 rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41542,7 +41542,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue) { throw new NotImplementedException(); } + public static unsafe void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41552,7 +41552,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] Int32[] bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] Int32[] bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41562,7 +41562,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41572,7 +41572,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] Int32* bytesWritten) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] Int32* bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41584,7 +41584,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] Int32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41596,7 +41596,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] out Int32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41608,7 +41608,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] Int32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41620,7 +41620,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] Int32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41632,7 +41632,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] out Int32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41644,7 +41644,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] Int32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41656,7 +41656,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] Int32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41668,7 +41668,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] out Int32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41680,7 +41680,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] Int32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41692,7 +41692,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] Int32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41704,7 +41704,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] out Int32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41716,7 +41716,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] Int32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41726,7 +41726,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32[] bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32[] bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41736,7 +41736,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] out UInt32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] out UInt32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41746,7 +41746,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32* bytesWritten) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32* bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41758,7 +41758,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] UInt32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41770,7 +41770,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] out UInt32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41782,7 +41782,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] UInt32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41794,7 +41794,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] UInt32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41806,7 +41806,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] out UInt32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41818,7 +41818,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] UInt32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41830,7 +41830,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] UInt32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41842,7 +41842,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] out UInt32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41854,7 +41854,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] UInt32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41866,7 +41866,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] UInt32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41878,7 +41878,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] out UInt32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41890,55 +41890,55 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] UInt32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static Int32 GetPerfQueryIdByName([OutAttribute] out String queryName) { throw new NotImplementedException(); } + public static Int32 GetPerfQueryIdByName([OutAttribute] out String queryName) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32[] queryId) { throw new NotImplementedException(); } + public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out Int32 queryId) { throw new NotImplementedException(); } + public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out Int32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32* queryId) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32[] queryId) { throw new NotImplementedException(); } + public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out UInt32 queryId) { throw new NotImplementedException(); } + public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out UInt32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32* queryId) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41950,7 +41950,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32[] dataSize, [OutAttribute] Int32[] noCounters, [OutAttribute] Int32[] noInstances, [OutAttribute] Int32[] capsMask) { throw new NotImplementedException(); } + public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32[] dataSize, [OutAttribute] Int32[] noCounters, [OutAttribute] Int32[] noInstances, [OutAttribute] Int32[] capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41962,7 +41962,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out Int32 dataSize, [OutAttribute] out Int32 noCounters, [OutAttribute] out Int32 noInstances, [OutAttribute] out Int32 capsMask) { throw new NotImplementedException(); } + public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out Int32 dataSize, [OutAttribute] out Int32 noCounters, [OutAttribute] out Int32 noInstances, [OutAttribute] out Int32 capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41974,7 +41974,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32* dataSize, [OutAttribute] Int32* noCounters, [OutAttribute] Int32* noInstances, [OutAttribute] Int32* capsMask) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32* dataSize, [OutAttribute] Int32* noCounters, [OutAttribute] Int32* noInstances, [OutAttribute] Int32* capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41986,7 +41986,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32[] dataSize, [OutAttribute] UInt32[] noCounters, [OutAttribute] UInt32[] noInstances, [OutAttribute] UInt32[] capsMask) { throw new NotImplementedException(); } + public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32[] dataSize, [OutAttribute] UInt32[] noCounters, [OutAttribute] UInt32[] noInstances, [OutAttribute] UInt32[] capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41998,7 +41998,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out UInt32 dataSize, [OutAttribute] out UInt32 noCounters, [OutAttribute] out UInt32 noInstances, [OutAttribute] out UInt32 capsMask) { throw new NotImplementedException(); } + public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out UInt32 dataSize, [OutAttribute] out UInt32 noCounters, [OutAttribute] out UInt32 noInstances, [OutAttribute] out UInt32 capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -42010,7 +42010,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask) { throw new BindingsNotRewrittenException(); } } @@ -42018,7 +42018,7 @@ namespace OpenTK.Graphics.ES30 { /// [requires: KHR_blend_equation_advanced] [AutoGenerated(Category = "KHR_blend_equation_advanced", Version = "", EntryPoint = "glBlendBarrierKHR")] - public static void BlendBarrier() { throw new NotImplementedException(); } + public static void BlendBarrier() { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -42030,7 +42030,7 @@ namespace OpenTK.Graphics.ES30 /// A user supplied pointer that will be passed on each invocation of callback. /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallbackKHR")] - public static void DebugMessageCallback(DebugProcKhr callback, IntPtr userParam) { throw new NotImplementedException(); } + public static void DebugMessageCallback(DebugProcKhr callback, IntPtr userParam) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -42045,7 +42045,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -42060,7 +42060,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -42075,7 +42075,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[,,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -42089,7 +42089,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallbackKHR")] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] ref T1 userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -42115,7 +42115,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, Int32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -42141,7 +42141,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, ref Int32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -42167,7 +42167,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, Int32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -42193,7 +42193,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, UInt32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -42219,7 +42219,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -42245,7 +42245,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, UInt32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -42270,7 +42270,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, Int32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -42295,7 +42295,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, ref Int32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -42320,7 +42320,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, Int32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -42345,7 +42345,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, UInt32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -42370,7 +42370,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -42395,7 +42395,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, UInt32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Inject an application-supplied message into the debug message queue @@ -42421,7 +42421,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, Int32 id, OpenTK.Graphics.ES30.All severity, Int32 length, String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, Int32 id, OpenTK.Graphics.ES30.All severity, Int32 length, String buf) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Inject an application-supplied message into the debug message queue @@ -42447,7 +42447,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, UInt32 id, OpenTK.Graphics.ES30.All severity, Int32 length, String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, UInt32 id, OpenTK.Graphics.ES30.All severity, Int32 length, String buf) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Inject an application-supplied message into the debug message queue @@ -42472,7 +42472,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.ES30.DebugSourceExternal source, OpenTK.Graphics.ES30.DebugType type, Int32 id, OpenTK.Graphics.ES30.DebugSeverity severity, Int32 length, String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.ES30.DebugSourceExternal source, OpenTK.Graphics.ES30.DebugType type, Int32 id, OpenTK.Graphics.ES30.DebugSeverity severity, Int32 length, String buf) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Inject an application-supplied message into the debug message queue @@ -42497,7 +42497,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.ES30.DebugSourceExternal source, OpenTK.Graphics.ES30.DebugType type, UInt32 id, OpenTK.Graphics.ES30.DebugSeverity severity, Int32 length, String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.ES30.DebugSourceExternal source, OpenTK.Graphics.ES30.DebugType type, UInt32 id, OpenTK.Graphics.ES30.DebugSeverity severity, Int32 length, String buf) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -42529,7 +42529,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -42561,7 +42561,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -42593,7 +42593,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -42624,7 +42624,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSourceExternal[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSourceExternal[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -42655,7 +42655,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugSourceExternal sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugSourceExternal sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -42686,7 +42686,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSourceExternal* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSourceExternal* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -42718,7 +42718,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -42750,7 +42750,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -42782,7 +42782,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -42813,7 +42813,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSourceExternal[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSourceExternal[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -42844,7 +42844,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugSourceExternal sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugSourceExternal sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -42875,11 +42875,11 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSourceExternal* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSourceExternal* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetGraphicsResetStatusKHR")] - public static OpenTK.Graphics.ES30.All GetGraphicsResetStatus() { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES30.All GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -42888,7 +42888,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -42897,7 +42897,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -42906,7 +42906,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -42915,7 +42915,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -42924,7 +42924,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -42933,7 +42933,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -42942,7 +42942,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -42951,7 +42951,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -42960,7 +42960,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -42969,7 +42969,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -42978,7 +42978,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -42987,7 +42987,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -42996,7 +42996,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuivKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -43005,7 +43005,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuivKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -43014,7 +43014,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuivKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -43037,7 +43037,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -43060,7 +43060,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -43083,7 +43083,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -43106,7 +43106,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -43129,7 +43129,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -43152,7 +43152,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -43174,7 +43174,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -43196,7 +43196,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -43218,7 +43218,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -43240,7 +43240,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -43262,7 +43262,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -43284,7 +43284,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -43304,7 +43304,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] - public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -43324,7 +43324,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] - public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -43344,7 +43344,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] - public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -43366,7 +43366,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -43388,7 +43388,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -43410,7 +43410,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -43432,7 +43432,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -43454,7 +43454,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -43476,7 +43476,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -43498,7 +43498,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -43520,7 +43520,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -43542,7 +43542,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -43564,7 +43564,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -43586,7 +43586,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -43608,13 +43608,13 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointervKHR")] - public static void GetPointer(OpenTK.Graphics.ES30.All pname, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } + public static void GetPointer(OpenTK.Graphics.ES30.All pname, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// @@ -43623,7 +43623,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// @@ -43632,7 +43632,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// @@ -43641,7 +43641,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// @@ -43649,7 +43649,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointervKHR")] public static void GetPointer(OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a named object identified within a namespace @@ -43669,7 +43669,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] [CLSCompliant(false)] - public static void ObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 length, String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a named object identified within a namespace @@ -43689,7 +43689,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] [CLSCompliant(false)] - public static void ObjectLabel(OpenTK.Graphics.ES30.All identifier, UInt32 name, Int32 length, String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.ES30.All identifier, UInt32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a named object identified within a namespace @@ -43708,7 +43708,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] [CLSCompliant(false)] - public static void ObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, Int32 name, Int32 length, String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, Int32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a named object identified within a namespace @@ -43727,7 +43727,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] [CLSCompliant(false)] - public static void ObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, UInt32 name, Int32 length, String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, UInt32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -43742,7 +43742,7 @@ namespace OpenTK.Graphics.ES30 /// The address of a string containing the label to assign to the object. /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabelKHR")] - public static void ObjectPtrLabel(IntPtr ptr, Int32 length, String label) { throw new NotImplementedException(); } + public static void ObjectPtrLabel(IntPtr ptr, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -43760,7 +43760,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 length, String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -43778,7 +43778,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 length, String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -43796,7 +43796,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 length, String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -43813,13 +43813,13 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabelKHR")] public static void ObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 length, String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Pop the active debug group /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPopDebugGroupKHR")] - public static void PopDebugGroup() { throw new NotImplementedException(); } + public static void PopDebugGroup() { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Push a named debug group into the command stream @@ -43838,7 +43838,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroupKHR")] [CLSCompliant(false)] - public static void PushDebugGroup(OpenTK.Graphics.ES30.All source, Int32 id, Int32 length, String message) { throw new NotImplementedException(); } + public static void PushDebugGroup(OpenTK.Graphics.ES30.All source, Int32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Push a named debug group into the command stream @@ -43857,7 +43857,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroupKHR")] [CLSCompliant(false)] - public static void PushDebugGroup(OpenTK.Graphics.ES30.All source, UInt32 id, Int32 length, String message) { throw new NotImplementedException(); } + public static void PushDebugGroup(OpenTK.Graphics.ES30.All source, UInt32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -43870,7 +43870,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixelsKHR")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -43886,7 +43886,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -43902,7 +43902,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -43918,7 +43918,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -43933,7 +43933,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixelsKHR")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -43945,7 +43945,7 @@ namespace OpenTK.Graphics.ES30 /// /// [length: bufSize] [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixelsKHR")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -43960,7 +43960,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -43975,7 +43975,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -43990,7 +43990,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -44004,7 +44004,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixelsKHR")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } } @@ -44021,7 +44021,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNV")] [CLSCompliant(false)] - public static void BeginConditionalRender(Int32 id, OpenTK.Graphics.ES30.All mode) { throw new NotImplementedException(); } + public static void BeginConditionalRender(Int32 id, OpenTK.Graphics.ES30.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conditional_render] /// Start conditional rendering @@ -44034,17 +44034,17 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNV")] [CLSCompliant(false)] - public static void BeginConditionalRender(UInt32 id, OpenTK.Graphics.ES30.All mode) { throw new NotImplementedException(); } + public static void BeginConditionalRender(UInt32 id, OpenTK.Graphics.ES30.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_blend_equation_advanced] [AutoGenerated(Category = "NV_blend_equation_advanced", Version = "", EntryPoint = "glBlendBarrierNV")] - public static void BlendBarrier() { throw new NotImplementedException(); } + public static void BlendBarrier() { throw new BindingsNotRewrittenException(); } /// [requires: NV_blend_equation_advanced] /// /// [AutoGenerated(Category = "NV_blend_equation_advanced", Version = "", EntryPoint = "glBlendParameteriNV")] - public static void BlendParameter(OpenTK.Graphics.ES30.All pname, Int32 value) { throw new NotImplementedException(); } + public static void BlendParameter(OpenTK.Graphics.ES30.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_blit] /// Copy a block of pixels from the read framebuffer to the draw framebuffer @@ -44081,7 +44081,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_framebuffer_blit", Version = "", EntryPoint = "glBlitFramebufferNV")] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES30.All mask, OpenTK.Graphics.ES30.All filter) { throw new NotImplementedException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES30.All mask, OpenTK.Graphics.ES30.All filter) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_blit] /// Copy a block of pixels from the read framebuffer to the draw framebuffer @@ -44117,13 +44117,13 @@ namespace OpenTK.Graphics.ES30 /// Specifies the interpolation to be applied if the image is stretched. Must be Nearest or Linear. /// [AutoGenerated(Category = "NV_framebuffer_blit", Version = "", EntryPoint = "glBlitFramebufferNV")] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES30.ClearBufferMask mask, OpenTK.Graphics.ES30.BlitFramebufferFilter filter) { throw new NotImplementedException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES30.ClearBufferMask mask, OpenTK.Graphics.ES30.BlitFramebufferFilter filter) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conservative_raster_pre_snap_triangles] /// /// [AutoGenerated(Category = "NV_conservative_raster_pre_snap_triangles", Version = "", EntryPoint = "glConservativeRasterParameteriNV")] - public static void ConservativeRasterParameter(OpenTK.Graphics.ES30.All pname, Int32 param) { throw new NotImplementedException(); } + public static void ConservativeRasterParameter(OpenTK.Graphics.ES30.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: NV_copy_buffer] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -44145,7 +44145,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_copy_buffer", Version = "", EntryPoint = "glCopyBufferSubDataNV")] - public static void CopyBufferSubData(OpenTK.Graphics.ES30.All readTarget, OpenTK.Graphics.ES30.All writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new NotImplementedException(); } + public static void CopyBufferSubData(OpenTK.Graphics.ES30.All readTarget, OpenTK.Graphics.ES30.All writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_copy_buffer] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -44167,7 +44167,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_copy_buffer", Version = "", EntryPoint = "glCopyBufferSubDataNV")] - public static void CopyBufferSubData(OpenTK.Graphics.ES30.All readTarget, OpenTK.Graphics.ES30.All writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new NotImplementedException(); } + public static void CopyBufferSubData(OpenTK.Graphics.ES30.All readTarget, OpenTK.Graphics.ES30.All writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_copy_buffer] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -44188,7 +44188,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the size, in basic machine units, of the data to be copied from readtarget to writetarget. /// [AutoGenerated(Category = "NV_copy_buffer", Version = "", EntryPoint = "glCopyBufferSubDataNV")] - public static void CopyBufferSubData(OpenTK.Graphics.ES30.BufferTarget readTarget, OpenTK.Graphics.ES30.BufferTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new NotImplementedException(); } + public static void CopyBufferSubData(OpenTK.Graphics.ES30.BufferTarget readTarget, OpenTK.Graphics.ES30.BufferTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_copy_buffer] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -44209,57 +44209,57 @@ namespace OpenTK.Graphics.ES30 /// Specifies the size, in basic machine units, of the data to be copied from readtarget to writetarget. /// [AutoGenerated(Category = "NV_copy_buffer", Version = "", EntryPoint = "glCopyBufferSubDataNV")] - public static void CopyBufferSubData(OpenTK.Graphics.ES30.BufferTarget readTarget, OpenTK.Graphics.ES30.BufferTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new NotImplementedException(); } + public static void CopyBufferSubData(OpenTK.Graphics.ES30.BufferTarget readTarget, OpenTK.Graphics.ES30.BufferTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCopyPathNV")] [CLSCompliant(false)] - public static void CopyPath(Int32 resultPath, Int32 srcPath) { throw new NotImplementedException(); } + public static void CopyPath(Int32 resultPath, Int32 srcPath) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCopyPathNV")] [CLSCompliant(false)] - public static void CopyPath(UInt32 resultPath, UInt32 srcPath) { throw new NotImplementedException(); } + public static void CopyPath(UInt32 resultPath, UInt32 srcPath) { throw new BindingsNotRewrittenException(); } /// [requires: NV_coverage_sample] /// [AutoGenerated(Category = "NV_coverage_sample", Version = "", EntryPoint = "glCoverageMaskNV")] - public static void CoverageMask(bool mask) { throw new NotImplementedException(); } + public static void CoverageMask(bool mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationNV")] - public static void CoverageModulation(OpenTK.Graphics.ES30.All components) { throw new NotImplementedException(); } + public static void CoverageModulation(OpenTK.Graphics.ES30.All components) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static void CoverageModulationTable(Int32 n, Single[] v) { throw new NotImplementedException(); } + public static void CoverageModulationTable(Int32 n, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static void CoverageModulationTable(Int32 n, ref Single v) { throw new NotImplementedException(); } + public static void CoverageModulationTable(Int32 n, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static unsafe void CoverageModulationTable(Int32 n, Single* v) { throw new NotImplementedException(); } + public static unsafe void CoverageModulationTable(Int32 n, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_coverage_sample] /// [AutoGenerated(Category = "NV_coverage_sample", Version = "", EntryPoint = "glCoverageOperationNV")] - public static void CoverageOperation(OpenTK.Graphics.ES30.All operation) { throw new NotImplementedException(); } + public static void CoverageOperation(OpenTK.Graphics.ES30.All operation) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44271,7 +44271,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44283,7 +44283,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44295,7 +44295,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44307,7 +44307,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44319,7 +44319,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44331,7 +44331,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44345,7 +44345,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44359,7 +44359,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44373,7 +44373,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44387,7 +44387,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44401,7 +44401,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44415,7 +44415,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44429,7 +44429,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44443,7 +44443,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44457,7 +44457,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44471,7 +44471,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44485,7 +44485,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44499,7 +44499,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44513,7 +44513,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44527,7 +44527,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44541,7 +44541,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44555,7 +44555,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44569,7 +44569,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44583,7 +44583,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44597,7 +44597,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44611,7 +44611,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44625,7 +44625,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44639,7 +44639,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44653,7 +44653,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44667,21 +44667,21 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] [CLSCompliant(false)] - public static void CoverFillPath(Int32 path, OpenTK.Graphics.ES30.All coverMode) { throw new NotImplementedException(); } + public static void CoverFillPath(Int32 path, OpenTK.Graphics.ES30.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] [CLSCompliant(false)] - public static void CoverFillPath(UInt32 path, OpenTK.Graphics.ES30.All coverMode) { throw new NotImplementedException(); } + public static void CoverFillPath(UInt32 path, OpenTK.Graphics.ES30.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44693,7 +44693,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44705,7 +44705,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44717,7 +44717,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44729,7 +44729,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44741,7 +44741,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44753,7 +44753,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44767,7 +44767,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44781,7 +44781,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44795,7 +44795,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44809,7 +44809,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44823,7 +44823,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44837,7 +44837,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44851,7 +44851,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44865,7 +44865,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44879,7 +44879,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44893,7 +44893,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44907,7 +44907,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44921,7 +44921,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44935,7 +44935,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44949,7 +44949,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44963,7 +44963,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44977,7 +44977,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44991,7 +44991,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45005,7 +45005,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45019,7 +45019,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45033,7 +45033,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45047,7 +45047,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45061,7 +45061,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45075,7 +45075,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45089,89 +45089,89 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathNV")] [CLSCompliant(false)] - public static void CoverStrokePath(Int32 path, OpenTK.Graphics.ES30.All coverMode) { throw new NotImplementedException(); } + public static void CoverStrokePath(Int32 path, OpenTK.Graphics.ES30.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathNV")] [CLSCompliant(false)] - public static void CoverStrokePath(UInt32 path, OpenTK.Graphics.ES30.All coverMode) { throw new NotImplementedException(); } + public static void CoverStrokePath(UInt32 path, OpenTK.Graphics.ES30.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFence([CountAttribute(Parameter = "n")] Int32 fences) { throw new NotImplementedException(); } + public static void DeleteFence([CountAttribute(Parameter = "n")] Int32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFence([CountAttribute(Parameter = "n")] UInt32 fences) { throw new NotImplementedException(); } + public static void DeleteFence([CountAttribute(Parameter = "n")] UInt32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32[] fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32* fences) { throw new NotImplementedException(); } + public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32* fences) { throw new NotImplementedException(); } + public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glDeletePathsNV")] [CLSCompliant(false)] - public static void DeletePath(Int32 path, Int32 range) { throw new NotImplementedException(); } + public static void DeletePath(Int32 path, Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glDeletePathsNV")] [CLSCompliant(false)] - public static void DeletePath(UInt32 path, Int32 range) { throw new NotImplementedException(); } + public static void DeletePath(UInt32 path, Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -45187,7 +45187,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvNV")] [CLSCompliant(false)] - public static void DepthRangeArray(Int32 first, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void DepthRangeArray(Int32 first, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -45203,7 +45203,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvNV")] [CLSCompliant(false)] - public static void DepthRangeArray(Int32 first, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void DepthRangeArray(Int32 first, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -45219,7 +45219,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvNV")] [CLSCompliant(false)] - public static unsafe void DepthRangeArray(Int32 first, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void DepthRangeArray(Int32 first, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -45235,7 +45235,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvNV")] [CLSCompliant(false)] - public static void DepthRangeArray(UInt32 first, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void DepthRangeArray(UInt32 first, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -45251,7 +45251,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvNV")] [CLSCompliant(false)] - public static void DepthRangeArray(UInt32 first, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void DepthRangeArray(UInt32 first, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -45267,7 +45267,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvNV")] [CLSCompliant(false)] - public static unsafe void DepthRangeArray(UInt32 first, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void DepthRangeArray(UInt32 first, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified viewport @@ -45283,7 +45283,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeIndexedfNV")] [CLSCompliant(false)] - public static void DepthRangeIndexed(Int32 index, Single n, Single f) { throw new NotImplementedException(); } + public static void DepthRangeIndexed(Int32 index, Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified viewport @@ -45299,21 +45299,21 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeIndexedfNV")] [CLSCompliant(false)] - public static void DepthRangeIndexed(UInt32 index, Single n, Single f) { throw new NotImplementedException(); } + public static void DepthRangeIndexed(UInt32 index, Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDisableiNV")] [CLSCompliant(false)] - public static void Disable(OpenTK.Graphics.ES30.All target, Int32 index) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES30.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDisableiNV")] [CLSCompliant(false)] - public static void Disable(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a range of elements @@ -45332,7 +45332,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawArraysInstancedNV")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES30.All mode, Int32 first, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES30.All mode, Int32 first, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a range of elements @@ -45350,7 +45350,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawArraysInstancedNV")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 first, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 first, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -45364,7 +45364,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_draw_buffers", Version = "", EntryPoint = "glDrawBuffersNV")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.All[] bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.All[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -45378,7 +45378,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_draw_buffers", Version = "", EntryPoint = "glDrawBuffersNV")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES30.All bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES30.All bufs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -45392,7 +45392,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_draw_buffers", Version = "", EntryPoint = "glDrawBuffersNV")] [CLSCompliant(false)] - public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.All* bufs) { throw new NotImplementedException(); } + public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.All* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -45405,7 +45405,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_draw_buffers", Version = "", EntryPoint = "glDrawBuffersNV")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.DrawBufferMode[] bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.DrawBufferMode[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -45418,7 +45418,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_draw_buffers", Version = "", EntryPoint = "glDrawBuffersNV")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES30.DrawBufferMode bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES30.DrawBufferMode bufs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -45431,7 +45431,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_draw_buffers", Version = "", EntryPoint = "glDrawBuffersNV")] [CLSCompliant(false)] - public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.DrawBufferMode* bufs) { throw new NotImplementedException(); } + public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.DrawBufferMode* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -45453,7 +45453,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedNV")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -45478,7 +45478,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -45503,7 +45503,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -45528,7 +45528,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -45552,7 +45552,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedNV")] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -45573,7 +45573,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedNV")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -45597,7 +45597,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -45621,7 +45621,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -45645,7 +45645,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -45668,7 +45668,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedNV")] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// @@ -45684,7 +45684,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glDrawVkImageNV")] [CLSCompliant(false)] - public static void DrawVkImage(Int64 vkImage, Int32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new NotImplementedException(); } + public static void DrawVkImage(Int64 vkImage, Int32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// @@ -45700,7 +45700,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glDrawVkImageNV")] [CLSCompliant(false)] - public static void DrawVkImage(UInt64 vkImage, UInt32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new NotImplementedException(); } + public static void DrawVkImage(UInt64 vkImage, UInt32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Enable or disable server-side GL capabilities @@ -45711,7 +45711,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glEnableiNV")] [CLSCompliant(false)] - public static void Enable(OpenTK.Graphics.ES30.All target, Int32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES30.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Enable or disable server-side GL capabilities @@ -45722,35 +45722,35 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glEnableiNV")] [CLSCompliant(false)] - public static void Enable(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conditional_render] [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glEndConditionalRenderNV")] - public static void EndConditionalRender() { throw new NotImplementedException(); } + public static void EndConditionalRender() { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glFinishFenceNV")] [CLSCompliant(false)] - public static void FinishFence(Int32 fence) { throw new NotImplementedException(); } + public static void FinishFence(Int32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glFinishFenceNV")] [CLSCompliant(false)] - public static void FinishFence(UInt32 fence) { throw new NotImplementedException(); } + public static void FinishFence(UInt32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_coverage_to_color] /// [AutoGenerated(Category = "NV_fragment_coverage_to_color", Version = "", EntryPoint = "glFragmentCoverageColorNV")] [CLSCompliant(false)] - public static void FragmentCoverageColor(Int32 color) { throw new NotImplementedException(); } + public static void FragmentCoverageColor(Int32 color) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_coverage_to_color] /// [AutoGenerated(Category = "NV_fragment_coverage_to_color", Version = "", EntryPoint = "glFragmentCoverageColorNV")] [CLSCompliant(false)] - public static void FragmentCoverageColor(UInt32 color) { throw new NotImplementedException(); } + public static void FragmentCoverageColor(UInt32 color) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -45759,7 +45759,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.ES30.All target, Int32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.ES30.All target, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -45768,7 +45768,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.ES30.All target, Int32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.ES30.All target, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -45777,7 +45777,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.ES30.All target, Int32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.ES30.All target, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -45786,7 +45786,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.ES30.All target, UInt32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.ES30.All target, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -45795,7 +45795,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.ES30.All target, UInt32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.ES30.All target, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -45804,85 +45804,85 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.ES30.All target, UInt32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.ES30.All target, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static Int32 GenFence() { throw new NotImplementedException(); } + public static Int32 GenFence() { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* fences) { throw new NotImplementedException(); } + public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* fences) { throw new NotImplementedException(); } + public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGenPathsNV")] - public static Int32 GenPath(Int32 range) { throw new NotImplementedException(); } + public static Int32 GenPath(Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glGetCoverageModulationTableNV")] [CLSCompliant(false)] - public static Single GetCoverageModulationTable() { throw new NotImplementedException(); } + public static Single GetCoverageModulationTable() { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glGetCoverageModulationTableNV")] [CLSCompliant(false)] - public static void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] Single[] v) { throw new NotImplementedException(); } + public static void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glGetCoverageModulationTableNV")] [CLSCompliant(false)] - public static void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] out Single v) { throw new NotImplementedException(); } + public static void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] out Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glGetCoverageModulationTableNV")] [CLSCompliant(false)] - public static unsafe void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] Single* v) { throw new NotImplementedException(); } + public static unsafe void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -45890,7 +45890,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static void GetFence(Int32 fence, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFence(Int32 fence, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -45898,7 +45898,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static void GetFence(Int32 fence, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFence(Int32 fence, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -45906,7 +45906,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static unsafe void GetFence(Int32 fence, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFence(Int32 fence, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -45914,7 +45914,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static void GetFence(UInt32 fence, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFence(UInt32 fence, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -45922,7 +45922,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static void GetFence(UInt32 fence, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFence(UInt32 fence, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -45930,7 +45930,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static unsafe void GetFence(UInt32 fence, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFence(UInt32 fence, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// @@ -45938,7 +45938,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// @@ -45946,7 +45946,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// @@ -45954,7 +45954,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// @@ -45962,7 +45962,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// @@ -45970,7 +45970,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// @@ -45978,7 +45978,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -45988,7 +45988,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetImageHandleNV")] [CLSCompliant(false)] - public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES30.All format) { throw new NotImplementedException(); } + public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES30.All format) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -45998,7 +45998,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetImageHandleNV")] [CLSCompliant(false)] - public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES30.All format) { throw new NotImplementedException(); } + public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES30.All format) { throw new BindingsNotRewrittenException(); } /// [requires: NV_internalformat_sample_query] /// @@ -46009,7 +46009,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] - public static void GetInternalformatSample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 samples, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetInternalformatSample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 samples, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_internalformat_sample_query] /// @@ -46020,7 +46020,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] - public static void GetInternalformatSample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 samples, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetInternalformatSample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 samples, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_internalformat_sample_query] /// @@ -46031,7 +46031,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] - public static unsafe void GetInternalformatSample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 samples, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetInternalformatSample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 samples, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46039,7 +46039,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void GetPathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46047,7 +46047,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new NotImplementedException(); } + public static void GetPathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46055,7 +46055,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46063,7 +46063,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46071,7 +46071,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46079,169 +46079,169 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] - public static unsafe void GetPathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static Byte GetPathCommand(Int32 path) { throw new NotImplementedException(); } + public static Byte GetPathCommand(Int32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static Byte GetPathCommand(UInt32 path) { throw new NotImplementedException(); } + public static Byte GetPathCommand(UInt32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte[] commands) { throw new NotImplementedException(); } + public static void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte[] commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Byte commands) { throw new NotImplementedException(); } + public static void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Byte commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static unsafe void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands) { throw new NotImplementedException(); } + public static unsafe void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte[] commands) { throw new NotImplementedException(); } + public static void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte[] commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Byte commands) { throw new NotImplementedException(); } + public static void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Byte commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static unsafe void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands) { throw new NotImplementedException(); } + public static unsafe void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static Single GetPathCoord(Int32 path) { throw new NotImplementedException(); } + public static Single GetPathCoord(Int32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static Single GetPathCoord(UInt32 path) { throw new NotImplementedException(); } + public static Single GetPathCoord(UInt32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] coords) { throw new NotImplementedException(); } + public static void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single coords) { throw new NotImplementedException(); } + public static void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static unsafe void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords) { throw new NotImplementedException(); } + public static unsafe void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] coords) { throw new NotImplementedException(); } + public static void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single coords) { throw new NotImplementedException(); } + public static void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static unsafe void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords) { throw new NotImplementedException(); } + public static unsafe void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static Single GetPathDashArray(Int32 path) { throw new NotImplementedException(); } + public static Single GetPathDashArray(Int32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static Single GetPathDashArray(UInt32 path) { throw new NotImplementedException(); } + public static Single GetPathDashArray(UInt32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] dashArray) { throw new NotImplementedException(); } + public static void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single dashArray) { throw new NotImplementedException(); } + public static void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static unsafe void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray) { throw new NotImplementedException(); } + public static unsafe void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] dashArray) { throw new NotImplementedException(); } + public static void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single dashArray) { throw new NotImplementedException(); } + public static void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static unsafe void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray) { throw new NotImplementedException(); } + public static unsafe void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46249,7 +46249,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathLengthNV")] [CLSCompliant(false)] - public static Single GetPathLength(Int32 path, Int32 startSegment, Int32 numSegments) { throw new NotImplementedException(); } + public static Single GetPathLength(Int32 path, Int32 startSegment, Int32 numSegments) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46257,7 +46257,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathLengthNV")] [CLSCompliant(false)] - public static Single GetPathLength(UInt32 path, Int32 startSegment, Int32 numSegments) { throw new NotImplementedException(); } + public static Single GetPathLength(UInt32 path, Int32 startSegment, Int32 numSegments) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46267,7 +46267,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new NotImplementedException(); } + public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46277,7 +46277,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new NotImplementedException(); } + public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46287,7 +46287,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new NotImplementedException(); } + public static unsafe void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46297,7 +46297,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new NotImplementedException(); } + public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46307,7 +46307,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new NotImplementedException(); } + public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46317,7 +46317,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new NotImplementedException(); } + public static unsafe void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46329,7 +46329,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new NotImplementedException(); } + public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46341,7 +46341,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new NotImplementedException(); } + public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46353,7 +46353,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new NotImplementedException(); } + public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46367,7 +46367,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46381,7 +46381,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46395,7 +46395,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46409,7 +46409,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46423,7 +46423,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46437,7 +46437,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46451,7 +46451,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46465,7 +46465,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46479,7 +46479,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46493,7 +46493,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46507,7 +46507,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46521,7 +46521,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46533,7 +46533,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new NotImplementedException(); } + public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46545,7 +46545,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new NotImplementedException(); } + public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46557,7 +46557,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new NotImplementedException(); } + public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46571,7 +46571,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46585,7 +46585,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46599,7 +46599,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46613,7 +46613,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46627,7 +46627,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46641,7 +46641,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46655,7 +46655,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46669,7 +46669,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46683,7 +46683,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46697,7 +46697,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46711,7 +46711,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46725,7 +46725,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46733,7 +46733,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new NotImplementedException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46741,7 +46741,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new NotImplementedException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46749,7 +46749,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46757,7 +46757,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new NotImplementedException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46765,7 +46765,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new NotImplementedException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46773,7 +46773,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46781,7 +46781,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46789,7 +46789,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46797,7 +46797,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46805,7 +46805,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46813,7 +46813,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46821,7 +46821,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46835,7 +46835,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new NotImplementedException(); } + public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46849,7 +46849,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new NotImplementedException(); } + public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46863,7 +46863,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new NotImplementedException(); } + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46877,7 +46877,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new NotImplementedException(); } + public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46891,7 +46891,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new NotImplementedException(); } + public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46905,7 +46905,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new NotImplementedException(); } + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46921,7 +46921,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46937,7 +46937,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46953,7 +46953,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46969,7 +46969,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46985,7 +46985,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47001,7 +47001,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47017,7 +47017,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47033,7 +47033,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47049,7 +47049,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47065,7 +47065,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47081,7 +47081,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47097,7 +47097,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47113,7 +47113,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47129,7 +47129,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47145,7 +47145,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47161,7 +47161,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47177,7 +47177,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47193,7 +47193,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47209,7 +47209,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47225,7 +47225,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47241,7 +47241,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47257,7 +47257,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47273,7 +47273,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47289,7 +47289,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47298,7 +47298,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES30.All texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES30.All texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47307,7 +47307,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES30.All texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES30.All texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47316,7 +47316,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathTexGen(OpenTK.Graphics.ES30.All texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.ES30.All texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47324,7 +47324,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES30.TextureUnit texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES30.TextureUnit texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47332,7 +47332,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES30.TextureUnit texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES30.TextureUnit texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47340,7 +47340,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathTexGen(OpenTK.Graphics.ES30.TextureUnit texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.ES30.TextureUnit texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47349,7 +47349,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES30.All texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES30.All texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47358,7 +47358,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES30.All texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES30.All texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47367,7 +47367,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static unsafe void GetPathTexGen(OpenTK.Graphics.ES30.All texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.ES30.All texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47375,7 +47375,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES30.TextureUnit texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES30.TextureUnit texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47383,7 +47383,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES30.TextureUnit texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES30.TextureUnit texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47391,7 +47391,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static unsafe void GetPathTexGen(OpenTK.Graphics.ES30.TextureUnit texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.ES30.TextureUnit texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -47410,7 +47410,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES30.All programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.ES30.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES30.All programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.ES30.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -47429,7 +47429,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES30.All programInterface, Int32 index, Int32 propCount, ref OpenTK.Graphics.ES30.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES30.All programInterface, Int32 index, Int32 propCount, ref OpenTK.Graphics.ES30.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -47448,7 +47448,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.ES30.All programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.ES30.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.ES30.All programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.ES30.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -47467,7 +47467,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES30.All programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.ES30.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES30.All programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.ES30.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -47486,7 +47486,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES30.All programInterface, UInt32 index, Int32 propCount, ref OpenTK.Graphics.ES30.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES30.All programInterface, UInt32 index, Int32 propCount, ref OpenTK.Graphics.ES30.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -47505,33 +47505,33 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.ES30.All programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.ES30.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.ES30.All programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.ES30.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleNV")] [CLSCompliant(false)] - public static Int64 GetTextureHandle(Int32 texture) { throw new NotImplementedException(); } + public static Int64 GetTextureHandle(Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleNV")] [CLSCompliant(false)] - public static Int64 GetTextureHandle(UInt32 texture) { throw new NotImplementedException(); } + public static Int64 GetTextureHandle(UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureSamplerHandleNV")] [CLSCompliant(false)] - public static Int64 GetTextureSamplerHandle(Int32 texture, Int32 sampler) { throw new NotImplementedException(); } + public static Int64 GetTextureSamplerHandle(Int32 texture, Int32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureSamplerHandleNV")] [CLSCompliant(false)] - public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new NotImplementedException(); } + public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Returns the value of a uniform variable @@ -47547,7 +47547,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Returns the value of a uniform variable @@ -47563,7 +47563,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Returns the value of a uniform variable @@ -47579,7 +47579,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Returns the value of a uniform variable @@ -47595,7 +47595,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Returns the value of a uniform variable @@ -47611,7 +47611,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Returns the value of a uniform variable @@ -47627,12 +47627,12 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [length: COMPSIZE(name)] [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glGetVkProcAddrNV")] - public static IntPtr GetVkProcAddr([CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static IntPtr GetVkProcAddr([CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47641,7 +47641,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glInterpolatePathsNV")] [CLSCompliant(false)] - public static void InterpolatePath(Int32 resultPath, Int32 pathA, Int32 pathB, Single weight) { throw new NotImplementedException(); } + public static void InterpolatePath(Int32 resultPath, Int32 pathA, Int32 pathB, Single weight) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47650,7 +47650,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glInterpolatePathsNV")] [CLSCompliant(false)] - public static void InterpolatePath(UInt32 resultPath, UInt32 pathA, UInt32 pathB, Single weight) { throw new NotImplementedException(); } + public static void InterpolatePath(UInt32 resultPath, UInt32 pathA, UInt32 pathB, Single weight) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Test whether a capability is enabled @@ -47663,7 +47663,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glIsEnablediNV")] [CLSCompliant(false)] - public static bool IsEnabled(OpenTK.Graphics.ES30.All target, Int32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES30.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Test whether a capability is enabled @@ -47676,43 +47676,43 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glIsEnablediNV")] [CLSCompliant(false)] - public static bool IsEnabled(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glIsFenceNV")] [CLSCompliant(false)] - public static bool IsFence(Int32 fence) { throw new NotImplementedException(); } + public static bool IsFence(Int32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glIsFenceNV")] [CLSCompliant(false)] - public static bool IsFence(UInt32 fence) { throw new NotImplementedException(); } + public static bool IsFence(UInt32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsImageHandleResidentNV")] [CLSCompliant(false)] - public static bool IsImageHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static bool IsImageHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsImageHandleResidentNV")] [CLSCompliant(false)] - public static bool IsImageHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static bool IsImageHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPathNV")] [CLSCompliant(false)] - public static bool IsPath(Int32 path) { throw new NotImplementedException(); } + public static bool IsPath(Int32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPathNV")] [CLSCompliant(false)] - public static bool IsPath(UInt32 path) { throw new NotImplementedException(); } + public static bool IsPath(UInt32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47721,7 +47721,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPointInFillPathNV")] [CLSCompliant(false)] - public static bool IsPointInFillPath(Int32 path, Int32 mask, Single x, Single y) { throw new NotImplementedException(); } + public static bool IsPointInFillPath(Int32 path, Int32 mask, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47730,7 +47730,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPointInFillPathNV")] [CLSCompliant(false)] - public static bool IsPointInFillPath(UInt32 path, UInt32 mask, Single x, Single y) { throw new NotImplementedException(); } + public static bool IsPointInFillPath(UInt32 path, UInt32 mask, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47738,7 +47738,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPointInStrokePathNV")] [CLSCompliant(false)] - public static bool IsPointInStrokePath(Int32 path, Single x, Single y) { throw new NotImplementedException(); } + public static bool IsPointInStrokePath(Int32 path, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47746,195 +47746,195 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPointInStrokePathNV")] [CLSCompliant(false)] - public static bool IsPointInStrokePath(UInt32 path, Single x, Single y) { throw new NotImplementedException(); } + public static bool IsPointInStrokePath(UInt32 path, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsTextureHandleResidentNV")] [CLSCompliant(false)] - public static bool IsTextureHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static bool IsTextureHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsTextureHandleResidentNV")] [CLSCompliant(false)] - public static bool IsTextureHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static bool IsTextureHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleNonResidentNV")] [CLSCompliant(false)] - public static void MakeImageHandleNonResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeImageHandleNonResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleNonResidentNV")] [CLSCompliant(false)] - public static void MakeImageHandleNonResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeImageHandleNonResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleResidentNV")] [CLSCompliant(false)] - public static void MakeImageHandleResident(Int64 handle, OpenTK.Graphics.ES30.All access) { throw new NotImplementedException(); } + public static void MakeImageHandleResident(Int64 handle, OpenTK.Graphics.ES30.All access) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleResidentNV")] [CLSCompliant(false)] - public static void MakeImageHandleResident(UInt64 handle, OpenTK.Graphics.ES30.All access) { throw new NotImplementedException(); } + public static void MakeImageHandleResident(UInt64 handle, OpenTK.Graphics.ES30.All access) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleNonResidentNV")] [CLSCompliant(false)] - public static void MakeTextureHandleNonResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleNonResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleNonResidentNV")] [CLSCompliant(false)] - public static void MakeTextureHandleNonResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleNonResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleResidentNV")] [CLSCompliant(false)] - public static void MakeTextureHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleResidentNV")] [CLSCompliant(false)] - public static void MakeTextureHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x2fNV")] [CLSCompliant(false)] - public static void MatrixLoad3x2(OpenTK.Graphics.ES30.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixLoad3x2(OpenTK.Graphics.ES30.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x2fNV")] [CLSCompliant(false)] - public static void MatrixLoad3x2(OpenTK.Graphics.ES30.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixLoad3x2(OpenTK.Graphics.ES30.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x2fNV")] [CLSCompliant(false)] - public static unsafe void MatrixLoad3x2(OpenTK.Graphics.ES30.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoad3x2(OpenTK.Graphics.ES30.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x3fNV")] [CLSCompliant(false)] - public static void MatrixLoad3x3(OpenTK.Graphics.ES30.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixLoad3x3(OpenTK.Graphics.ES30.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x3fNV")] [CLSCompliant(false)] - public static void MatrixLoad3x3(OpenTK.Graphics.ES30.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixLoad3x3(OpenTK.Graphics.ES30.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x3fNV")] [CLSCompliant(false)] - public static unsafe void MatrixLoad3x3(OpenTK.Graphics.ES30.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoad3x3(OpenTK.Graphics.ES30.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTranspose3x3fNV")] [CLSCompliant(false)] - public static void MatrixLoadTranspose3x3(OpenTK.Graphics.ES30.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixLoadTranspose3x3(OpenTK.Graphics.ES30.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTranspose3x3fNV")] [CLSCompliant(false)] - public static void MatrixLoadTranspose3x3(OpenTK.Graphics.ES30.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixLoadTranspose3x3(OpenTK.Graphics.ES30.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTranspose3x3fNV")] [CLSCompliant(false)] - public static unsafe void MatrixLoadTranspose3x3(OpenTK.Graphics.ES30.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoadTranspose3x3(OpenTK.Graphics.ES30.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x2fNV")] [CLSCompliant(false)] - public static void MatrixMult3x2(OpenTK.Graphics.ES30.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixMult3x2(OpenTK.Graphics.ES30.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x2fNV")] [CLSCompliant(false)] - public static void MatrixMult3x2(OpenTK.Graphics.ES30.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixMult3x2(OpenTK.Graphics.ES30.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x2fNV")] [CLSCompliant(false)] - public static unsafe void MatrixMult3x2(OpenTK.Graphics.ES30.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMult3x2(OpenTK.Graphics.ES30.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x3fNV")] [CLSCompliant(false)] - public static void MatrixMult3x3(OpenTK.Graphics.ES30.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixMult3x3(OpenTK.Graphics.ES30.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x3fNV")] [CLSCompliant(false)] - public static void MatrixMult3x3(OpenTK.Graphics.ES30.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixMult3x3(OpenTK.Graphics.ES30.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x3fNV")] [CLSCompliant(false)] - public static unsafe void MatrixMult3x3(OpenTK.Graphics.ES30.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMult3x3(OpenTK.Graphics.ES30.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTranspose3x3fNV")] [CLSCompliant(false)] - public static void MatrixMultTranspose3x3(OpenTK.Graphics.ES30.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixMultTranspose3x3(OpenTK.Graphics.ES30.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTranspose3x3fNV")] [CLSCompliant(false)] - public static void MatrixMultTranspose3x3(OpenTK.Graphics.ES30.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixMultTranspose3x3(OpenTK.Graphics.ES30.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTranspose3x3fNV")] [CLSCompliant(false)] - public static unsafe void MatrixMultTranspose3x3(OpenTK.Graphics.ES30.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMultTranspose3x3(OpenTK.Graphics.ES30.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -47943,7 +47943,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -47952,7 +47952,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -47961,7 +47961,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -47970,7 +47970,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -47979,7 +47979,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -47988,7 +47988,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47997,7 +47997,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(genMode,colorFormat)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] - public static void PathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All genMode, OpenTK.Graphics.ES30.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single[] coeffs) { throw new NotImplementedException(); } + public static void PathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All genMode, OpenTK.Graphics.ES30.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48006,7 +48006,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(genMode,colorFormat)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] - public static void PathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All genMode, OpenTK.Graphics.ES30.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] ref Single coeffs) { throw new NotImplementedException(); } + public static void PathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All genMode, OpenTK.Graphics.ES30.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48015,7 +48015,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(genMode,colorFormat)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] - public static unsafe void PathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All genMode, OpenTK.Graphics.ES30.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single* coeffs) { throw new NotImplementedException(); } + public static unsafe void PathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All genMode, OpenTK.Graphics.ES30.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48026,7 +48026,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48039,7 +48039,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48052,7 +48052,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48065,7 +48065,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48078,7 +48078,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48089,7 +48089,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48102,7 +48102,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48115,7 +48115,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48128,7 +48128,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48141,7 +48141,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48152,7 +48152,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48165,7 +48165,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48178,7 +48178,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48191,7 +48191,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48204,7 +48204,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48215,7 +48215,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48228,7 +48228,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48241,7 +48241,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48254,7 +48254,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48267,7 +48267,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48278,7 +48278,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48291,7 +48291,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48304,7 +48304,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48317,7 +48317,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48330,7 +48330,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48341,7 +48341,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48354,7 +48354,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48367,7 +48367,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48380,7 +48380,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48393,7 +48393,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48402,7 +48402,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoordsNV")] [CLSCompliant(false)] - public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48413,7 +48413,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48424,7 +48424,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[,] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48435,7 +48435,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[,,] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48446,7 +48446,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T3 coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48455,7 +48455,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoordsNV")] [CLSCompliant(false)] - public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48466,7 +48466,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48477,7 +48477,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[,] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48488,7 +48488,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[,,] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48499,18 +48499,18 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T3 coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoverDepthFuncNV")] - public static void PathCoverDepthFunc(OpenTK.Graphics.ES30.All func) { throw new NotImplementedException(); } + public static void PathCoverDepthFunc(OpenTK.Graphics.ES30.All func) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoverDepthFuncNV")] - public static void PathCoverDepthFunc(OpenTK.Graphics.ES30.DepthFunction func) { throw new NotImplementedException(); } + public static void PathCoverDepthFunc(OpenTK.Graphics.ES30.DepthFunction func) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48518,7 +48518,7 @@ namespace OpenTK.Graphics.ES30 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single[] dashArray) { throw new NotImplementedException(); } + public static void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single[] dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48526,7 +48526,7 @@ namespace OpenTK.Graphics.ES30 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] ref Single dashArray) { throw new NotImplementedException(); } + public static void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] ref Single dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48534,7 +48534,7 @@ namespace OpenTK.Graphics.ES30 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static unsafe void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray) { throw new NotImplementedException(); } + public static unsafe void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48542,7 +48542,7 @@ namespace OpenTK.Graphics.ES30 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single[] dashArray) { throw new NotImplementedException(); } + public static void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single[] dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48550,7 +48550,7 @@ namespace OpenTK.Graphics.ES30 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] ref Single dashArray) { throw new NotImplementedException(); } + public static void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] ref Single dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48558,12 +48558,12 @@ namespace OpenTK.Graphics.ES30 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static unsafe void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray) { throw new NotImplementedException(); } + public static unsafe void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathFogGenNV")] - public static void PathFogGen(OpenTK.Graphics.ES30.All genMode) { throw new NotImplementedException(); } + public static void PathFogGen(OpenTK.Graphics.ES30.All genMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48576,7 +48576,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, IntPtr fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, IntPtr fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48591,7 +48591,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T2[] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48606,7 +48606,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T2[,] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48621,7 +48621,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48636,7 +48636,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] ref T2 fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48649,7 +48649,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48664,7 +48664,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T2[] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48679,7 +48679,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T2[,] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48694,7 +48694,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48709,7 +48709,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] ref T2 fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48720,7 +48720,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, IntPtr fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, IntPtr fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48731,7 +48731,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48744,7 +48744,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T1[] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48757,7 +48757,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T1[] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48770,7 +48770,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T1[,] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48783,7 +48783,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T1[,] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48796,7 +48796,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48809,7 +48809,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48822,7 +48822,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] ref T1 fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48835,7 +48835,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] ref T1 fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48849,7 +48849,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48865,7 +48865,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48881,7 +48881,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48897,7 +48897,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48913,7 +48913,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48927,7 +48927,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48943,7 +48943,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48959,7 +48959,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48975,7 +48975,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48991,7 +48991,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49006,7 +49006,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49024,7 +49024,7 @@ namespace OpenTK.Graphics.ES30 public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49042,7 +49042,7 @@ namespace OpenTK.Graphics.ES30 public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49060,7 +49060,7 @@ namespace OpenTK.Graphics.ES30 public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49078,7 +49078,7 @@ namespace OpenTK.Graphics.ES30 public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49093,7 +49093,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49111,7 +49111,7 @@ namespace OpenTK.Graphics.ES30 public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49129,7 +49129,7 @@ namespace OpenTK.Graphics.ES30 public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49147,7 +49147,7 @@ namespace OpenTK.Graphics.ES30 public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49165,7 +49165,7 @@ namespace OpenTK.Graphics.ES30 public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49179,7 +49179,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathMemoryGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, Int32 fontSize, IntPtr fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, Int32 fontSize, IntPtr fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49195,7 +49195,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49211,7 +49211,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[,] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49227,7 +49227,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[,,] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49243,7 +49243,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] ref T3 fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49257,7 +49257,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathMemoryGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49273,7 +49273,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49289,7 +49289,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[,] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49305,7 +49305,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[,,] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49321,7 +49321,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] ref T3 fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49335,7 +49335,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathMemoryGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, Int32 fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, Int32 fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49351,7 +49351,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49367,7 +49367,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[,] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49383,7 +49383,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[,,] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49399,7 +49399,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] ref T3 fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49413,7 +49413,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathMemoryGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49429,7 +49429,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49445,7 +49445,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[,] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49461,7 +49461,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[,,] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49477,7 +49477,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] ref T3 fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49485,7 +49485,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, Single value) { throw new NotImplementedException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49493,7 +49493,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, Single value) { throw new NotImplementedException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49501,7 +49501,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49509,7 +49509,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49517,7 +49517,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49525,7 +49525,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49533,7 +49533,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameteriNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, Int32 value) { throw new NotImplementedException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49541,7 +49541,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameteriNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, Int32 value) { throw new NotImplementedException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49549,7 +49549,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49557,7 +49557,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49565,7 +49565,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49573,13 +49573,13 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilDepthOffsetNV")] - public static void PathStencilDepthOffset(Single factor, Single units) { throw new NotImplementedException(); } + public static void PathStencilDepthOffset(Single factor, Single units) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49588,7 +49588,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilFuncNV")] [CLSCompliant(false)] - public static void PathStencilFunc(OpenTK.Graphics.ES30.All func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } + public static void PathStencilFunc(OpenTK.Graphics.ES30.All func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49597,7 +49597,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilFuncNV")] [CLSCompliant(false)] - public static void PathStencilFunc(OpenTK.Graphics.ES30.All func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } + public static void PathStencilFunc(OpenTK.Graphics.ES30.All func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49605,7 +49605,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilFuncNV")] [CLSCompliant(false)] - public static void PathStencilFunc(OpenTK.Graphics.ES30.StencilFunction func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } + public static void PathStencilFunc(OpenTK.Graphics.ES30.StencilFunction func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49613,7 +49613,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilFuncNV")] [CLSCompliant(false)] - public static void PathStencilFunc(OpenTK.Graphics.ES30.StencilFunction func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } + public static void PathStencilFunc(OpenTK.Graphics.ES30.StencilFunction func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49622,7 +49622,7 @@ namespace OpenTK.Graphics.ES30 /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] - public static void PathString(Int32 path, OpenTK.Graphics.ES30.All format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new NotImplementedException(); } + public static void PathString(Int32 path, OpenTK.Graphics.ES30.All format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49633,7 +49633,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.ES30.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49644,7 +49644,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.ES30.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49655,7 +49655,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.ES30.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49666,7 +49666,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.ES30.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49675,7 +49675,7 @@ namespace OpenTK.Graphics.ES30 /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] - public static void PathString(UInt32 path, OpenTK.Graphics.ES30.All format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new NotImplementedException(); } + public static void PathString(UInt32 path, OpenTK.Graphics.ES30.All format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49686,7 +49686,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.ES30.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49697,7 +49697,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.ES30.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49708,7 +49708,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.ES30.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49719,7 +49719,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.ES30.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49732,7 +49732,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49747,7 +49747,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49762,7 +49762,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49777,7 +49777,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49792,7 +49792,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49805,7 +49805,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49820,7 +49820,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49835,7 +49835,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49850,7 +49850,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49865,7 +49865,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49878,7 +49878,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49893,7 +49893,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49908,7 +49908,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49923,7 +49923,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49938,7 +49938,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49951,7 +49951,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49966,7 +49966,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49981,7 +49981,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49996,7 +49996,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50011,7 +50011,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50024,7 +50024,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50039,7 +50039,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50054,7 +50054,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50069,7 +50069,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50084,7 +50084,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50097,7 +50097,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50112,7 +50112,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50127,7 +50127,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50142,7 +50142,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50157,7 +50157,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50167,7 +50167,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCoordsNV")] [CLSCompliant(false)] - public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50179,7 +50179,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50191,7 +50191,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[,] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50203,7 +50203,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[,,] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50215,7 +50215,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T4 coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50225,7 +50225,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCoordsNV")] [CLSCompliant(false)] - public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50237,7 +50237,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50249,7 +50249,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[,] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50261,7 +50261,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[,,] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50273,7 +50273,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T4 coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50282,7 +50282,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(genMode,components)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] - public static void PathTexGen(OpenTK.Graphics.ES30.All texCoordSet, OpenTK.Graphics.ES30.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single[] coeffs) { throw new NotImplementedException(); } + public static void PathTexGen(OpenTK.Graphics.ES30.All texCoordSet, OpenTK.Graphics.ES30.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50291,7 +50291,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(genMode,components)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] - public static void PathTexGen(OpenTK.Graphics.ES30.All texCoordSet, OpenTK.Graphics.ES30.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] ref Single coeffs) { throw new NotImplementedException(); } + public static void PathTexGen(OpenTK.Graphics.ES30.All texCoordSet, OpenTK.Graphics.ES30.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50300,7 +50300,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(genMode,components)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] - public static unsafe void PathTexGen(OpenTK.Graphics.ES30.All texCoordSet, OpenTK.Graphics.ES30.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single* coeffs) { throw new NotImplementedException(); } + public static unsafe void PathTexGen(OpenTK.Graphics.ES30.All texCoordSet, OpenTK.Graphics.ES30.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50313,7 +50313,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] [CLSCompliant(false)] - public static bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] out Single x, [OutAttribute, CountAttribute(Count = 1)] out Single y, [OutAttribute, CountAttribute(Count = 1)] out Single tangentX, [OutAttribute, CountAttribute(Count = 1)] out Single tangentY) { throw new NotImplementedException(); } + public static bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] out Single x, [OutAttribute, CountAttribute(Count = 1)] out Single y, [OutAttribute, CountAttribute(Count = 1)] out Single tangentX, [OutAttribute, CountAttribute(Count = 1)] out Single tangentY) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50326,7 +50326,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] [CLSCompliant(false)] - public static unsafe bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY) { throw new NotImplementedException(); } + public static unsafe bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50339,7 +50339,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] [CLSCompliant(false)] - public static bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] out Single x, [OutAttribute, CountAttribute(Count = 1)] out Single y, [OutAttribute, CountAttribute(Count = 1)] out Single tangentX, [OutAttribute, CountAttribute(Count = 1)] out Single tangentY) { throw new NotImplementedException(); } + public static bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] out Single x, [OutAttribute, CountAttribute(Count = 1)] out Single y, [OutAttribute, CountAttribute(Count = 1)] out Single tangentX, [OutAttribute, CountAttribute(Count = 1)] out Single tangentY) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50352,7 +50352,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] [CLSCompliant(false)] - public static unsafe bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY) { throw new NotImplementedException(); } + public static unsafe bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY) { throw new BindingsNotRewrittenException(); } /// [requires: NV_polygon_mode] /// Select a polygon rasterization mode @@ -50365,7 +50365,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_polygon_mode", Version = "", EntryPoint = "glPolygonModeNV")] - public static void PolygonMode(OpenTK.Graphics.ES30.All face, OpenTK.Graphics.ES30.All mode) { throw new NotImplementedException(); } + public static void PolygonMode(OpenTK.Graphics.ES30.All face, OpenTK.Graphics.ES30.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_polygon_mode] /// Select a polygon rasterization mode @@ -50377,7 +50377,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies how polygons will be rasterized. Accepted values are Point, Line, and Fill. The initial value is Fill for both front- and back-facing polygons. /// [AutoGenerated(Category = "NV_polygon_mode", Version = "", EntryPoint = "glPolygonModeNV")] - public static void PolygonMode(OpenTK.Graphics.ES30.MaterialFace face, OpenTK.Graphics.ES30.PolygonMode mode) { throw new NotImplementedException(); } + public static void PolygonMode(OpenTK.Graphics.ES30.MaterialFace face, OpenTK.Graphics.ES30.PolygonMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50387,7 +50387,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.ES30.All genMode, Int32 components, Single[] coeffs) { throw new NotImplementedException(); } + public static void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.ES30.All genMode, Int32 components, Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50397,7 +50397,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.ES30.All genMode, Int32 components, ref Single coeffs) { throw new NotImplementedException(); } + public static void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.ES30.All genMode, Int32 components, ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50407,7 +50407,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static unsafe void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.ES30.All genMode, Int32 components, Single* coeffs) { throw new NotImplementedException(); } + public static unsafe void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.ES30.All genMode, Int32 components, Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50417,7 +50417,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.ES30.All genMode, Int32 components, Single[] coeffs) { throw new NotImplementedException(); } + public static void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.ES30.All genMode, Int32 components, Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50427,7 +50427,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.ES30.All genMode, Int32 components, ref Single coeffs) { throw new NotImplementedException(); } + public static void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.ES30.All genMode, Int32 components, ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50437,7 +50437,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static unsafe void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.ES30.All genMode, Int32 components, Single* coeffs) { throw new NotImplementedException(); } + public static unsafe void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.ES30.All genMode, Int32 components, Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50453,7 +50453,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64NV")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50469,7 +50469,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64NV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50488,7 +50488,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50507,7 +50507,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50526,7 +50526,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50545,7 +50545,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50564,7 +50564,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50583,7 +50583,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50599,7 +50599,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64NV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, UInt64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, UInt64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50618,7 +50618,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50637,7 +50637,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50656,7 +50656,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50675,7 +50675,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64NV")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int64 x, Int64 y) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50694,7 +50694,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64NV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int64 x, Int64 y) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50713,7 +50713,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50732,7 +50732,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50751,7 +50751,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50770,7 +50770,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50789,7 +50789,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50808,7 +50808,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50827,7 +50827,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2ui64NV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, UInt64 x, UInt64 y) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, UInt64 x, UInt64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50846,7 +50846,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50865,7 +50865,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50884,7 +50884,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2ui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50906,7 +50906,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64NV")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50928,7 +50928,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64NV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50947,7 +50947,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50966,7 +50966,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50985,7 +50985,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -51004,7 +51004,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -51023,7 +51023,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -51042,7 +51042,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -51064,7 +51064,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3ui64NV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -51083,7 +51083,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -51102,7 +51102,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -51121,7 +51121,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3ui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -51146,7 +51146,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64NV")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -51171,7 +51171,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64NV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -51190,7 +51190,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -51209,7 +51209,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -51228,7 +51228,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -51247,7 +51247,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -51266,7 +51266,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -51285,7 +51285,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -51310,7 +51310,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4ui64NV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -51329,7 +51329,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -51348,7 +51348,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -51367,7 +51367,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4ui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -51375,7 +51375,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64NV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -51383,7 +51383,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64NV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -51392,7 +51392,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -51401,7 +51401,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -51410,7 +51410,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* values) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -51419,7 +51419,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -51428,7 +51428,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -51437,7 +51437,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_read_buffer] /// Select a color buffer source for pixels @@ -51446,7 +51446,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a color buffer. Accepted values are Back, None, and ColorAttachmenti. /// [AutoGenerated(Category = "NV_read_buffer", Version = "", EntryPoint = "glReadBufferNV")] - public static void ReadBuffer(OpenTK.Graphics.ES30.All mode) { throw new NotImplementedException(); } + public static void ReadBuffer(OpenTK.Graphics.ES30.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_multisample] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -51468,7 +51468,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleNV")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_multisample] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -51489,11 +51489,11 @@ namespace OpenTK.Graphics.ES30 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "NV_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleNV")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES30.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES30.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glResolveDepthValuesNV")] - public static void ResolveDepthValues() { throw new NotImplementedException(); } + public static void ResolveDepthValues() { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for multiple viewports @@ -51509,7 +51509,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorArrayvNV")] [CLSCompliant(false)] - public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for multiple viewports @@ -51525,7 +51525,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorArrayvNV")] [CLSCompliant(false)] - public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for multiple viewports @@ -51541,7 +51541,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorArrayvNV")] [CLSCompliant(false)] - public static unsafe void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for multiple viewports @@ -51557,7 +51557,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorArrayvNV")] [CLSCompliant(false)] - public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for multiple viewports @@ -51573,7 +51573,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorArrayvNV")] [CLSCompliant(false)] - public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for multiple viewports @@ -51589,7 +51589,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorArrayvNV")] [CLSCompliant(false)] - public static unsafe void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -51611,7 +51611,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedNV")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -51633,7 +51633,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedNV")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -51646,7 +51646,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedvNV")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -51659,7 +51659,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedvNV")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -51672,7 +51672,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedvNV")] [CLSCompliant(false)] - public static unsafe void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -51685,7 +51685,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedvNV")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -51698,7 +51698,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedvNV")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -51711,45 +51711,45 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedvNV")] [CLSCompliant(false)] - public static unsafe void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glSetFenceNV")] [CLSCompliant(false)] - public static void SetFence(Int32 fence, OpenTK.Graphics.ES30.All condition) { throw new NotImplementedException(); } + public static void SetFence(Int32 fence, OpenTK.Graphics.ES30.All condition) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glSetFenceNV")] [CLSCompliant(false)] - public static void SetFence(UInt32 fence, OpenTK.Graphics.ES30.All condition) { throw new NotImplementedException(); } + public static void SetFence(UInt32 fence, OpenTK.Graphics.ES30.All condition) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glSignalVkFenceNV")] [CLSCompliant(false)] - public static void SignalVkFence(Int64 vkFence) { throw new NotImplementedException(); } + public static void SignalVkFence(Int64 vkFence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glSignalVkFenceNV")] [CLSCompliant(false)] - public static void SignalVkFence(UInt64 vkFence) { throw new NotImplementedException(); } + public static void SignalVkFence(UInt64 vkFence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glSignalVkSemaphoreNV")] [CLSCompliant(false)] - public static void SignalVkSemaphore(Int64 vkSemaphore) { throw new NotImplementedException(); } + public static void SignalVkSemaphore(Int64 vkSemaphore) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glSignalVkSemaphoreNV")] [CLSCompliant(false)] - public static void SignalVkSemaphore(UInt64 vkSemaphore) { throw new NotImplementedException(); } + public static void SignalVkSemaphore(UInt64 vkSemaphore) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51762,7 +51762,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51775,7 +51775,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51788,7 +51788,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51801,7 +51801,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51814,7 +51814,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51827,7 +51827,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51842,7 +51842,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51857,7 +51857,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51872,7 +51872,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51887,7 +51887,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51902,7 +51902,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51917,7 +51917,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51932,7 +51932,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51947,7 +51947,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51962,7 +51962,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51977,7 +51977,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51992,7 +51992,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52007,7 +52007,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52022,7 +52022,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52037,7 +52037,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52052,7 +52052,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52067,7 +52067,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52082,7 +52082,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52097,7 +52097,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52112,7 +52112,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52127,7 +52127,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52142,7 +52142,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52157,7 +52157,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52172,7 +52172,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52187,7 +52187,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52195,7 +52195,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathNV")] [CLSCompliant(false)] - public static void StencilFillPath(Int32 path, OpenTK.Graphics.ES30.All fillMode, Int32 mask) { throw new NotImplementedException(); } + public static void StencilFillPath(Int32 path, OpenTK.Graphics.ES30.All fillMode, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52203,7 +52203,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathNV")] [CLSCompliant(false)] - public static void StencilFillPath(UInt32 path, OpenTK.Graphics.ES30.All fillMode, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFillPath(UInt32 path, OpenTK.Graphics.ES30.All fillMode, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52216,7 +52216,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52229,7 +52229,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52242,7 +52242,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52255,7 +52255,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52268,7 +52268,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52281,7 +52281,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52296,7 +52296,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52311,7 +52311,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52326,7 +52326,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52341,7 +52341,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52356,7 +52356,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52371,7 +52371,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52386,7 +52386,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52401,7 +52401,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52416,7 +52416,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52431,7 +52431,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52446,7 +52446,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52461,7 +52461,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52476,7 +52476,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52491,7 +52491,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52506,7 +52506,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52521,7 +52521,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52536,7 +52536,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52551,7 +52551,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52566,7 +52566,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52581,7 +52581,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52596,7 +52596,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52611,7 +52611,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52626,7 +52626,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52641,7 +52641,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52649,7 +52649,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathNV")] [CLSCompliant(false)] - public static void StencilStrokePath(Int32 path, Int32 reference, Int32 mask) { throw new NotImplementedException(); } + public static void StencilStrokePath(Int32 path, Int32 reference, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52657,7 +52657,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathNV")] [CLSCompliant(false)] - public static void StencilStrokePath(UInt32 path, Int32 reference, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilStrokePath(UInt32 path, Int32 reference, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52671,7 +52671,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52685,7 +52685,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52699,7 +52699,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52713,7 +52713,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52727,7 +52727,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52741,7 +52741,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52757,7 +52757,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52773,7 +52773,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52789,7 +52789,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52805,7 +52805,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52821,7 +52821,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52837,7 +52837,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52853,7 +52853,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52869,7 +52869,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52885,7 +52885,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52901,7 +52901,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52917,7 +52917,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52933,7 +52933,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52949,7 +52949,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52965,7 +52965,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52981,7 +52981,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52997,7 +52997,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53013,7 +53013,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53029,7 +53029,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53045,7 +53045,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53061,7 +53061,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53077,7 +53077,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53093,7 +53093,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53109,7 +53109,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53125,7 +53125,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53134,7 +53134,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPath(Int32 path, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All coverMode) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPath(Int32 path, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53143,7 +53143,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPath(UInt32 path, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All coverMode) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPath(UInt32 path, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53157,7 +53157,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53171,7 +53171,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53185,7 +53185,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53199,7 +53199,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53213,7 +53213,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53227,7 +53227,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53243,7 +53243,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53259,7 +53259,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53275,7 +53275,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53291,7 +53291,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53307,7 +53307,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53323,7 +53323,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53339,7 +53339,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53355,7 +53355,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53371,7 +53371,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53387,7 +53387,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53403,7 +53403,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53419,7 +53419,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53435,7 +53435,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53451,7 +53451,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53467,7 +53467,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53483,7 +53483,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53499,7 +53499,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53515,7 +53515,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53531,7 +53531,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53547,7 +53547,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53563,7 +53563,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53579,7 +53579,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53595,7 +53595,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53611,7 +53611,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53620,7 +53620,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePath(Int32 path, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All coverMode) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePath(Int32 path, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53629,33 +53629,33 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePath(UInt32 path, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All coverMode) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePath(UInt32 path, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conservative_raster] /// /// [AutoGenerated(Category = "NV_conservative_raster", Version = "", EntryPoint = "glSubpixelPrecisionBiasNV")] [CLSCompliant(false)] - public static void SubpixelPrecisionBia(Int32 xbits, Int32 ybits) { throw new NotImplementedException(); } + public static void SubpixelPrecisionBia(Int32 xbits, Int32 ybits) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conservative_raster] /// /// [AutoGenerated(Category = "NV_conservative_raster", Version = "", EntryPoint = "glSubpixelPrecisionBiasNV")] [CLSCompliant(false)] - public static void SubpixelPrecisionBia(UInt32 xbits, UInt32 ybits) { throw new NotImplementedException(); } + public static void SubpixelPrecisionBia(UInt32 xbits, UInt32 ybits) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glTestFenceNV")] [CLSCompliant(false)] - public static bool TestFence(Int32 fence) { throw new NotImplementedException(); } + public static bool TestFence(Int32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glTestFenceNV")] [CLSCompliant(false)] - public static bool TestFence(UInt32 fence) { throw new NotImplementedException(); } + public static bool TestFence(UInt32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53664,7 +53664,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53673,7 +53673,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53682,7 +53682,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static unsafe void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53691,7 +53691,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53700,7 +53700,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53709,7 +53709,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static unsafe void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -53721,7 +53721,7 @@ namespace OpenTK.Graphics.ES30 /// For the vector (glUniform*v) commands, specifies the number of elements that are to be modified. This should be 1 if the targeted uniform variable is not an array, and 1 or more if it is an array. For the matrix (glUniformMatrix*) commands, specifies the number of matrices that are to be modified. This should be 1 if the targeted uniform variable is not an array of matrices, and 1 or more if it is an array of matrices. /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64NV")] - public static void Uniform1(Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -53737,7 +53737,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64vNV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -53753,7 +53753,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64vNV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -53769,7 +53769,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -53782,7 +53782,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64NV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, UInt64 x) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, UInt64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -53798,7 +53798,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64vNV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -53814,7 +53814,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64vNV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -53830,7 +53830,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -53845,7 +53845,7 @@ namespace OpenTK.Graphics.ES30 /// For the matrix commands, specifies whether to transpose the matrix as the values are loaded into the uniform variable. /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64NV")] - public static void Uniform2(Int32 location, Int64 x, Int64 y) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -53861,7 +53861,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64vNV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -53877,7 +53877,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64vNV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -53893,7 +53893,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -53909,7 +53909,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64NV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, UInt64 x, UInt64 y) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, UInt64 x, UInt64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -53925,7 +53925,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64vNV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -53941,7 +53941,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64vNV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -53957,7 +53957,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -53975,7 +53975,7 @@ namespace OpenTK.Graphics.ES30 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64NV")] - public static void Uniform3(Int32 location, Int64 x, Int64 y, Int64 z) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -53991,7 +53991,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64vNV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -54007,7 +54007,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64vNV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -54023,7 +54023,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -54042,7 +54042,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3ui64NV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -54058,7 +54058,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3ui64vNV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -54074,7 +54074,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3ui64vNV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -54090,7 +54090,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3ui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -54111,7 +54111,7 @@ namespace OpenTK.Graphics.ES30 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64NV")] - public static void Uniform4(Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -54127,7 +54127,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64vNV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -54143,7 +54143,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64vNV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -54159,7 +54159,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -54181,7 +54181,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4ui64NV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -54197,7 +54197,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4ui64vNV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -54213,7 +54213,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4ui64vNV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -54229,21 +54229,21 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4ui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64NV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64NV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -54251,7 +54251,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -54259,7 +54259,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -54267,7 +54267,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -54275,7 +54275,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -54283,7 +54283,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -54291,7 +54291,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -54300,7 +54300,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x3fvNV")] [CLSCompliant(false)] - public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -54309,7 +54309,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x3fvNV")] [CLSCompliant(false)] - public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -54318,7 +54318,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x3fvNV")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -54327,7 +54327,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x4fvNV")] [CLSCompliant(false)] - public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -54336,7 +54336,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x4fvNV")] [CLSCompliant(false)] - public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -54345,7 +54345,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x4fvNV")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -54354,7 +54354,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x2fvNV")] [CLSCompliant(false)] - public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -54363,7 +54363,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x2fvNV")] [CLSCompliant(false)] - public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -54372,7 +54372,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x2fvNV")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -54381,7 +54381,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x4fvNV")] [CLSCompliant(false)] - public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -54390,7 +54390,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x4fvNV")] [CLSCompliant(false)] - public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -54399,7 +54399,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x4fvNV")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -54408,7 +54408,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x2fvNV")] [CLSCompliant(false)] - public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -54417,7 +54417,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x2fvNV")] [CLSCompliant(false)] - public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -54426,7 +54426,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x2fvNV")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -54435,7 +54435,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x3fvNV")] [CLSCompliant(false)] - public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -54444,7 +54444,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x3fvNV")] [CLSCompliant(false)] - public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -54453,7 +54453,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x3fvNV")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -54466,7 +54466,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorNV")] [CLSCompliant(false)] - public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: NV_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -54479,7 +54479,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorNV")] [CLSCompliant(false)] - public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set multiple viewports @@ -54495,7 +54495,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportArrayvNV")] [CLSCompliant(false)] - public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new NotImplementedException(); } + public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set multiple viewports @@ -54511,7 +54511,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportArrayvNV")] [CLSCompliant(false)] - public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new NotImplementedException(); } + public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set multiple viewports @@ -54527,7 +54527,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportArrayvNV")] [CLSCompliant(false)] - public static unsafe void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set multiple viewports @@ -54543,7 +54543,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportArrayvNV")] [CLSCompliant(false)] - public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new NotImplementedException(); } + public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set multiple viewports @@ -54559,7 +54559,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportArrayvNV")] [CLSCompliant(false)] - public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new NotImplementedException(); } + public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set multiple viewports @@ -54575,7 +54575,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportArrayvNV")] [CLSCompliant(false)] - public static unsafe void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -54597,7 +54597,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfNV")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, Single x, Single y, Single w, Single h) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, Single x, Single y, Single w, Single h) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -54619,7 +54619,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfNV")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, Single x, Single y, Single w, Single h) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, Single x, Single y, Single w, Single h) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -54632,7 +54632,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvNV")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -54645,7 +54645,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvNV")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -54658,7 +54658,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvNV")] [CLSCompliant(false)] - public static unsafe void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -54671,7 +54671,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvNV")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -54684,7 +54684,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvNV")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -54697,7 +54697,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvNV")] [CLSCompliant(false)] - public static unsafe void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_swizzle] /// @@ -54707,7 +54707,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_swizzle", Version = "", EntryPoint = "glViewportSwizzleNV")] [CLSCompliant(false)] - public static void ViewportSwizzle(Int32 index, OpenTK.Graphics.ES30.All swizzlex, OpenTK.Graphics.ES30.All swizzley, OpenTK.Graphics.ES30.All swizzlez, OpenTK.Graphics.ES30.All swizzlew) { throw new NotImplementedException(); } + public static void ViewportSwizzle(Int32 index, OpenTK.Graphics.ES30.All swizzlex, OpenTK.Graphics.ES30.All swizzley, OpenTK.Graphics.ES30.All swizzlez, OpenTK.Graphics.ES30.All swizzlew) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_swizzle] /// @@ -54717,19 +54717,19 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_swizzle", Version = "", EntryPoint = "glViewportSwizzleNV")] [CLSCompliant(false)] - public static void ViewportSwizzle(UInt32 index, OpenTK.Graphics.ES30.All swizzlex, OpenTK.Graphics.ES30.All swizzley, OpenTK.Graphics.ES30.All swizzlez, OpenTK.Graphics.ES30.All swizzlew) { throw new NotImplementedException(); } + public static void ViewportSwizzle(UInt32 index, OpenTK.Graphics.ES30.All swizzlex, OpenTK.Graphics.ES30.All swizzley, OpenTK.Graphics.ES30.All swizzlez, OpenTK.Graphics.ES30.All swizzlew) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glWaitVkSemaphoreNV")] [CLSCompliant(false)] - public static void WaitVkSemaphore(Int64 vkSemaphore) { throw new NotImplementedException(); } + public static void WaitVkSemaphore(Int64 vkSemaphore) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glWaitVkSemaphoreNV")] [CLSCompliant(false)] - public static void WaitVkSemaphore(UInt64 vkSemaphore) { throw new NotImplementedException(); } + public static void WaitVkSemaphore(UInt64 vkSemaphore) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -54738,7 +54738,7 @@ namespace OpenTK.Graphics.ES30 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] Int32[] paths, [CountAttribute(Parameter = "numPaths")] Single[] weights) { throw new NotImplementedException(); } + public static void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] Int32[] paths, [CountAttribute(Parameter = "numPaths")] Single[] weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -54747,7 +54747,7 @@ namespace OpenTK.Graphics.ES30 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] ref Int32 paths, [CountAttribute(Parameter = "numPaths")] ref Single weights) { throw new NotImplementedException(); } + public static void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] ref Int32 paths, [CountAttribute(Parameter = "numPaths")] ref Single weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -54756,7 +54756,7 @@ namespace OpenTK.Graphics.ES30 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static unsafe void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] Int32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights) { throw new NotImplementedException(); } + public static unsafe void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] Int32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -54765,7 +54765,7 @@ namespace OpenTK.Graphics.ES30 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32[] paths, [CountAttribute(Parameter = "numPaths")] Single[] weights) { throw new NotImplementedException(); } + public static void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32[] paths, [CountAttribute(Parameter = "numPaths")] Single[] weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -54774,7 +54774,7 @@ namespace OpenTK.Graphics.ES30 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] ref UInt32 paths, [CountAttribute(Parameter = "numPaths")] ref Single weights) { throw new NotImplementedException(); } + public static void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] ref UInt32 paths, [CountAttribute(Parameter = "numPaths")] ref Single weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -54783,7 +54783,7 @@ namespace OpenTK.Graphics.ES30 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static unsafe void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights) { throw new NotImplementedException(); } + public static unsafe void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights) { throw new BindingsNotRewrittenException(); } } @@ -54797,7 +54797,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glBindVertexArrayOES")] [CLSCompliant(false)] - public static void BindVertexArray(Int32 array) { throw new NotImplementedException(); } + public static void BindVertexArray(Int32 array) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Bind a vertex array object @@ -54807,7 +54807,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glBindVertexArrayOES")] [CLSCompliant(false)] - public static void BindVertexArray(UInt32 array) { throw new NotImplementedException(); } + public static void BindVertexArray(UInt32 array) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -54821,7 +54821,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiOES")] [CLSCompliant(false)] - public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES30.All mode) { throw new NotImplementedException(); } + public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES30.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -54834,7 +54834,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiOES")] [CLSCompliant(false)] - public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES30.BlendEquationMode mode) { throw new NotImplementedException(); } + public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES30.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -54848,7 +54848,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiOES")] [CLSCompliant(false)] - public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES30.All mode) { throw new NotImplementedException(); } + public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES30.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -54861,7 +54861,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiOES")] [CLSCompliant(false)] - public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES30.BlendEquationMode mode) { throw new NotImplementedException(); } + public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES30.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately @@ -54878,7 +54878,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiOES")] [CLSCompliant(false)] - public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES30.All modeRGB, OpenTK.Graphics.ES30.All modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES30.All modeRGB, OpenTK.Graphics.ES30.All modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately @@ -54894,7 +54894,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiOES")] [CLSCompliant(false)] - public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES30.BlendEquationMode modeRGB, OpenTK.Graphics.ES30.BlendEquationMode modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES30.BlendEquationMode modeRGB, OpenTK.Graphics.ES30.BlendEquationMode modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately @@ -54911,7 +54911,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiOES")] [CLSCompliant(false)] - public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES30.All modeRGB, OpenTK.Graphics.ES30.All modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES30.All modeRGB, OpenTK.Graphics.ES30.All modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately @@ -54927,7 +54927,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiOES")] [CLSCompliant(false)] - public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES30.BlendEquationMode modeRGB, OpenTK.Graphics.ES30.BlendEquationMode modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES30.BlendEquationMode modeRGB, OpenTK.Graphics.ES30.BlendEquationMode modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify pixel arithmetic @@ -54941,7 +54941,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciOES")] [CLSCompliant(false)] - public static void BlendFunc(Int32 buf, OpenTK.Graphics.ES30.All src, OpenTK.Graphics.ES30.All dst) { throw new NotImplementedException(); } + public static void BlendFunc(Int32 buf, OpenTK.Graphics.ES30.All src, OpenTK.Graphics.ES30.All dst) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify pixel arithmetic @@ -54955,7 +54955,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciOES")] [CLSCompliant(false)] - public static void BlendFunc(UInt32 buf, OpenTK.Graphics.ES30.All src, OpenTK.Graphics.ES30.All dst) { throw new NotImplementedException(); } + public static void BlendFunc(UInt32 buf, OpenTK.Graphics.ES30.All src, OpenTK.Graphics.ES30.All dst) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify pixel arithmetic for RGB and alpha components separately @@ -54977,7 +54977,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiOES")] [CLSCompliant(false)] - public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.ES30.All srcRGB, OpenTK.Graphics.ES30.All dstRGB, OpenTK.Graphics.ES30.All srcAlpha, OpenTK.Graphics.ES30.All dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.ES30.All srcRGB, OpenTK.Graphics.ES30.All dstRGB, OpenTK.Graphics.ES30.All srcAlpha, OpenTK.Graphics.ES30.All dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify pixel arithmetic for RGB and alpha components separately @@ -54999,7 +54999,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiOES")] [CLSCompliant(false)] - public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.ES30.All srcRGB, OpenTK.Graphics.ES30.All dstRGB, OpenTK.Graphics.ES30.All srcAlpha, OpenTK.Graphics.ES30.All dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.ES30.All srcRGB, OpenTK.Graphics.ES30.All dstRGB, OpenTK.Graphics.ES30.All srcAlpha, OpenTK.Graphics.ES30.All dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Enable and disable writing of frame buffer color components @@ -55019,7 +55019,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glColorMaskiOES")] [CLSCompliant(false)] - public static void ColorMask(Int32 index, bool r, bool g, bool b, bool a) { throw new NotImplementedException(); } + public static void ColorMask(Int32 index, bool r, bool g, bool b, bool a) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Enable and disable writing of frame buffer color components @@ -55039,7 +55039,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glColorMaskiOES")] [CLSCompliant(false)] - public static void ColorMask(UInt32 index, bool r, bool g, bool b, bool a) { throw new NotImplementedException(); } + public static void ColorMask(UInt32 index, bool r, bool g, bool b, bool a) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -55073,7 +55073,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] - public static void CompressedTexImage3D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage3D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -55110,7 +55110,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -55147,7 +55147,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -55184,7 +55184,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -55220,7 +55220,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] public static void CompressedTexImage3D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -55253,7 +55253,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] - public static void CompressedTexImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES30.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES30.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -55289,7 +55289,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES30.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -55325,7 +55325,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES30.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -55361,7 +55361,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES30.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -55396,7 +55396,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] public static void CompressedTexImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES30.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -55436,7 +55436,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] - public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -55479,7 +55479,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -55522,7 +55522,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -55565,7 +55565,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -55607,7 +55607,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -55646,7 +55646,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] - public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -55688,7 +55688,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -55730,7 +55730,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -55772,7 +55772,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -55813,7 +55813,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_copy_image] /// Perform a raw data copy between two images @@ -55865,7 +55865,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_copy_image", Version = "", EntryPoint = "glCopyImageSubDataOES")] [CLSCompliant(false)] - public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.ES30.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.ES30.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new NotImplementedException(); } + public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.ES30.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.ES30.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } /// [requires: OES_copy_image] /// Perform a raw data copy between two images @@ -55917,7 +55917,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_copy_image", Version = "", EntryPoint = "glCopyImageSubDataOES")] [CLSCompliant(false)] - public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.ES30.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.ES30.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new NotImplementedException(); } + public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.ES30.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.ES30.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Copy a three-dimensional texture subimage @@ -55951,7 +55951,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCopyTexSubImage3DOES")] - public static void CopyTexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Copy a three-dimensional texture subimage @@ -55984,7 +55984,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the height of the texture subimage. /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCopyTexSubImage3DOES")] - public static void CopyTexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -55994,7 +55994,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArray([CountAttribute(Parameter = "n")] Int32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArray([CountAttribute(Parameter = "n")] Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -56004,7 +56004,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArray([CountAttribute(Parameter = "n")] UInt32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArray([CountAttribute(Parameter = "n")] UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -56017,7 +56017,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32[] arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -56030,7 +56030,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -56043,7 +56043,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32* arrays) { throw new NotImplementedException(); } + public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -56056,7 +56056,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -56069,7 +56069,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -56082,7 +56082,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays) { throw new NotImplementedException(); } + public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -56098,7 +56098,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvOES")] [CLSCompliant(false)] - public static void DepthRangeArray(Int32 first, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void DepthRangeArray(Int32 first, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -56114,7 +56114,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvOES")] [CLSCompliant(false)] - public static void DepthRangeArray(Int32 first, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void DepthRangeArray(Int32 first, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -56130,7 +56130,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvOES")] [CLSCompliant(false)] - public static unsafe void DepthRangeArray(Int32 first, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void DepthRangeArray(Int32 first, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -56146,7 +56146,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvOES")] [CLSCompliant(false)] - public static void DepthRangeArray(UInt32 first, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void DepthRangeArray(UInt32 first, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -56162,7 +56162,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvOES")] [CLSCompliant(false)] - public static void DepthRangeArray(UInt32 first, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void DepthRangeArray(UInt32 first, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -56178,7 +56178,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvOES")] [CLSCompliant(false)] - public static unsafe void DepthRangeArray(UInt32 first, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void DepthRangeArray(UInt32 first, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified viewport @@ -56194,7 +56194,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeIndexedfOES")] [CLSCompliant(false)] - public static void DepthRangeIndexed(Int32 index, Single n, Single f) { throw new NotImplementedException(); } + public static void DepthRangeIndexed(Int32 index, Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified viewport @@ -56210,21 +56210,21 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeIndexedfOES")] [CLSCompliant(false)] - public static void DepthRangeIndexed(UInt32 index, Single n, Single f) { throw new NotImplementedException(); } + public static void DepthRangeIndexed(UInt32 index, Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// /// [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glDisableiOES")] [CLSCompliant(false)] - public static void Disable(OpenTK.Graphics.ES30.All target, Int32 index) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES30.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// /// [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glDisableiOES")] [CLSCompliant(false)] - public static void Disable(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -56246,7 +56246,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexOES")] - public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -56271,7 +56271,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -56296,7 +56296,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -56321,7 +56321,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -56345,7 +56345,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexOES")] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -56366,7 +56366,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexOES")] - public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -56390,7 +56390,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -56414,7 +56414,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -56438,7 +56438,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -56461,7 +56461,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexOES")] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -56486,7 +56486,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexOES")] - public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -56514,7 +56514,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -56542,7 +56542,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -56570,7 +56570,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -56597,7 +56597,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexOES")] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -56621,7 +56621,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexOES")] - public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -56648,7 +56648,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -56675,7 +56675,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -56702,7 +56702,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -56728,7 +56728,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexOES")] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -56757,7 +56757,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexOES")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -56788,7 +56788,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -56819,7 +56819,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -56850,7 +56850,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -56881,7 +56881,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -56910,7 +56910,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexOES")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -56941,7 +56941,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -56972,7 +56972,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -57003,7 +57003,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -57034,7 +57034,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -57062,7 +57062,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexOES")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -57092,7 +57092,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -57122,7 +57122,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -57152,7 +57152,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -57182,7 +57182,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -57210,7 +57210,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexOES")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -57240,7 +57240,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -57270,7 +57270,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -57300,7 +57300,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -57330,19 +57330,19 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_EGL_image] /// /// [AutoGenerated(Category = "OES_EGL_image", Version = "", EntryPoint = "glEGLImageTargetRenderbufferStorageOES")] - public static void EGLImageTargetRenderbufferStorage(OpenTK.Graphics.ES30.All target, IntPtr image) { throw new NotImplementedException(); } + public static void EGLImageTargetRenderbufferStorage(OpenTK.Graphics.ES30.All target, IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: OES_EGL_image] /// /// [AutoGenerated(Category = "OES_EGL_image", Version = "", EntryPoint = "glEGLImageTargetTexture2DOES")] - public static void EGLImageTargetTexture2D(OpenTK.Graphics.ES30.All target, IntPtr image) { throw new NotImplementedException(); } + public static void EGLImageTargetTexture2D(OpenTK.Graphics.ES30.All target, IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// Enable or disable server-side GL capabilities @@ -57353,7 +57353,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glEnableiOES")] [CLSCompliant(false)] - public static void Enable(OpenTK.Graphics.ES30.All target, Int32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES30.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// Enable or disable server-side GL capabilities @@ -57364,7 +57364,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glEnableiOES")] [CLSCompliant(false)] - public static void Enable(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// @@ -57375,7 +57375,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glFramebufferTexture3DOES")] [CLSCompliant(false)] - public static void FramebufferTexture3D(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, Int32 texture, Int32 level, Int32 zoffset) { throw new NotImplementedException(); } + public static void FramebufferTexture3D(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, Int32 texture, Int32 level, Int32 zoffset) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// @@ -57386,7 +57386,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glFramebufferTexture3DOES")] [CLSCompliant(false)] - public static void FramebufferTexture3D(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, UInt32 texture, Int32 level, Int32 zoffset) { throw new NotImplementedException(); } + public static void FramebufferTexture3D(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, UInt32 texture, Int32 level, Int32 zoffset) { throw new BindingsNotRewrittenException(); } /// [requires: OES_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -57406,7 +57406,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureOES")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: OES_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -57426,7 +57426,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureOES")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: OES_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -57445,7 +57445,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureOES")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: OES_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -57464,14 +57464,14 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureOES")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static Int32 GenVertexArray() { throw new NotImplementedException(); } + public static Int32 GenVertexArray() { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -57484,7 +57484,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -57497,7 +57497,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -57510,7 +57510,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* arrays) { throw new NotImplementedException(); } + public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -57523,7 +57523,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -57536,7 +57536,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -57549,7 +57549,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays) { throw new NotImplementedException(); } + public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -57557,7 +57557,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] - public static void GetBufferPointer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } + public static void GetBufferPointer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -57568,7 +57568,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -57579,7 +57579,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -57590,7 +57590,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -57600,14 +57600,14 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] public static void GetBufferPointer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// /// /// [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] - public static void GetBufferPointer(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferPointer pname, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } + public static void GetBufferPointer(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferPointer pname, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -57617,7 +57617,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferPointer pname, [InAttribute, OutAttribute] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -57627,7 +57627,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferPointer pname, [InAttribute, OutAttribute] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -57637,7 +57637,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferPointer pname, [InAttribute, OutAttribute] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -57646,7 +57646,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] public static void GetBufferPointer(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferPointer pname, [InAttribute, OutAttribute] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// @@ -57654,7 +57654,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// @@ -57662,7 +57662,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// @@ -57670,7 +57670,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// @@ -57678,7 +57678,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// @@ -57686,7 +57686,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// @@ -57694,7 +57694,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -57717,7 +57717,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] - public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All[] binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All[] binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -57742,7 +57742,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -57767,7 +57767,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -57792,7 +57792,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -57817,7 +57817,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -57840,7 +57840,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] - public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -57865,7 +57865,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -57890,7 +57890,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -57915,7 +57915,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -57940,7 +57940,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -57963,7 +57963,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] - public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -57988,7 +57988,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -58013,7 +58013,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -58038,7 +58038,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -58063,7 +58063,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -58086,7 +58086,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] - public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All[] binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All[] binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -58111,7 +58111,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -58136,7 +58136,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -58161,7 +58161,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -58186,7 +58186,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -58209,7 +58209,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] - public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -58234,7 +58234,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -58259,7 +58259,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -58284,7 +58284,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -58309,7 +58309,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -58332,7 +58332,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] - public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -58357,7 +58357,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -58382,7 +58382,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -58407,7 +58407,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -58432,7 +58432,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58440,7 +58440,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] - public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58448,7 +58448,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] - public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58456,7 +58456,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58464,7 +58464,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58472,7 +58472,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58480,7 +58480,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58488,7 +58488,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivOES")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58496,7 +58496,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivOES")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58504,7 +58504,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivOES")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58513,7 +58513,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58522,7 +58522,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58531,7 +58531,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivOES")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58539,7 +58539,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58547,7 +58547,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58555,7 +58555,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivOES")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58564,7 +58564,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58573,7 +58573,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58582,7 +58582,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivOES")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58590,7 +58590,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58598,7 +58598,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58606,7 +58606,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivOES")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// Test whether a capability is enabled @@ -58619,7 +58619,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glIsEnablediOES")] [CLSCompliant(false)] - public static bool IsEnabled(OpenTK.Graphics.ES30.All target, Int32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES30.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// Test whether a capability is enabled @@ -58632,7 +58632,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glIsEnablediOES")] [CLSCompliant(false)] - public static bool IsEnabled(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Determine if a name corresponds to a vertex array object @@ -58642,7 +58642,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glIsVertexArrayOES")] [CLSCompliant(false)] - public static bool IsVertexArray(Int32 array) { throw new NotImplementedException(); } + public static bool IsVertexArray(Int32 array) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Determine if a name corresponds to a vertex array object @@ -58652,7 +58652,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glIsVertexArrayOES")] [CLSCompliant(false)] - public static bool IsVertexArray(UInt32 array) { throw new NotImplementedException(); } + public static bool IsVertexArray(UInt32 array) { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// Map a buffer object's data store @@ -58664,7 +58664,7 @@ namespace OpenTK.Graphics.ES30 /// For glMapBuffer only, specifies the access policy, indicating whether it will be possible to read from, write to, or both read from and write to the buffer object's mapped data store. The symbolic constant must be ReadOnly, WriteOnly, or ReadWrite. /// [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glMapBufferOES")] - public static IntPtr MapBuffer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All access) { throw new NotImplementedException(); } + public static IntPtr MapBuffer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All access) { throw new BindingsNotRewrittenException(); } /// [requires: OES_sample_shading] /// Specifies minimum rate at which sample shaing takes place @@ -58673,7 +58673,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the rate at which samples are shaded within each covered pixel. /// [AutoGenerated(Category = "OES_sample_shading", Version = "", EntryPoint = "glMinSampleShadingOES")] - public static void MinSampleShading(Single value) { throw new NotImplementedException(); } + public static void MinSampleShading(Single value) { throw new BindingsNotRewrittenException(); } /// [requires: OES_tessellation_shader] /// Specifies the parameters for patch primitives @@ -58685,7 +58685,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the new value for the parameter given by pname. /// [AutoGenerated(Category = "OES_tessellation_shader", Version = "", EntryPoint = "glPatchParameteriOES")] - public static void PatchParameter(OpenTK.Graphics.ES30.All pname, Int32 value) { throw new NotImplementedException(); } + public static void PatchParameter(OpenTK.Graphics.ES30.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: OES_primitive_bounding_box] /// @@ -58697,7 +58697,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "OES_primitive_bounding_box", Version = "", EntryPoint = "glPrimitiveBoundingBoxOES")] - public static void PrimitiveBoundingBox(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW) { throw new NotImplementedException(); } + public static void PrimitiveBoundingBox(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -58716,7 +58716,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glProgramBinaryOES")] [CLSCompliant(false)] - public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES30.All binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES30.All binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -58737,7 +58737,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -58758,7 +58758,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -58779,7 +58779,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -58800,7 +58800,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T2 binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -58819,7 +58819,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glProgramBinaryOES")] [CLSCompliant(false)] - public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES30.All binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES30.All binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -58840,7 +58840,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -58861,7 +58861,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -58882,7 +58882,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -58903,7 +58903,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T2 binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58911,7 +58911,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] - public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58919,7 +58919,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] - public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58927,7 +58927,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58935,7 +58935,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58943,7 +58943,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58951,7 +58951,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58959,7 +58959,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivOES")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58967,7 +58967,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivOES")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58975,7 +58975,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivOES")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for multiple viewports @@ -58991,7 +58991,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorArrayvOES")] [CLSCompliant(false)] - public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for multiple viewports @@ -59007,7 +59007,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorArrayvOES")] [CLSCompliant(false)] - public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for multiple viewports @@ -59023,7 +59023,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorArrayvOES")] [CLSCompliant(false)] - public static unsafe void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for multiple viewports @@ -59039,7 +59039,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorArrayvOES")] [CLSCompliant(false)] - public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for multiple viewports @@ -59055,7 +59055,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorArrayvOES")] [CLSCompliant(false)] - public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for multiple viewports @@ -59071,7 +59071,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorArrayvOES")] [CLSCompliant(false)] - public static unsafe void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -59093,7 +59093,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedOES")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -59115,7 +59115,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedOES")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -59128,7 +59128,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedvOES")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -59141,7 +59141,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedvOES")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -59154,7 +59154,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedvOES")] [CLSCompliant(false)] - public static unsafe void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -59167,7 +59167,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedvOES")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -59180,7 +59180,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedvOES")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -59193,7 +59193,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedvOES")] [CLSCompliant(false)] - public static unsafe void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -59210,7 +59210,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferOES")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -59227,7 +59227,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferOES")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -59243,7 +59243,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferOES")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.All internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.All internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -59259,7 +59259,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferOES")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.All internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.All internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -59281,7 +59281,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -59303,7 +59303,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -59325,7 +59325,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -59347,7 +59347,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -59384,7 +59384,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] - public static void TexImage3D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexImage3D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -59424,7 +59424,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -59464,7 +59464,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -59504,7 +59504,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -59543,7 +59543,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] public static void TexImage3D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -59579,7 +59579,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] - public static void TexImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES30.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES30.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -59618,7 +59618,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES30.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -59657,7 +59657,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES30.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -59696,7 +59696,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES30.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -59734,7 +59734,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] public static void TexImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, OpenTK.Graphics.ES30.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -59743,7 +59743,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -59752,7 +59752,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -59761,7 +59761,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivOES")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -59769,7 +59769,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -59777,7 +59777,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -59785,7 +59785,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivOES")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -59794,7 +59794,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -59803,7 +59803,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -59812,7 +59812,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivOES")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -59820,7 +59820,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -59828,7 +59828,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -59836,7 +59836,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivOES")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_storage_multisample_2d_array] /// Specify storage for a two-dimensional multisample array texture @@ -59863,7 +59863,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies whether the image will use identical sample locations and the same number of samples for all texels in the image, and the sample locations will not depend on the internal format or size of the image. /// [AutoGenerated(Category = "OES_texture_storage_multisample_2d_array", Version = "", EntryPoint = "glTexStorage3DMultisampleOES")] - public static void TexStorage3DMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TexStorage3DMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -59903,7 +59903,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] - public static void TexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -59946,7 +59946,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -59989,7 +59989,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -60032,7 +60032,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -60074,7 +60074,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] public static void TexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -60113,7 +60113,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] - public static void TexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -60155,7 +60155,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -60197,7 +60197,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -60239,7 +60239,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -60280,7 +60280,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] public static void TexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_view] /// Initialize a texture as a data alias of another texture's data store @@ -60311,7 +60311,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_texture_view", Version = "", EntryPoint = "glTextureViewOES")] [CLSCompliant(false)] - public static void TextureView(Int32 texture, OpenTK.Graphics.ES30.All target, Int32 origtexture, OpenTK.Graphics.ES30.All internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new NotImplementedException(); } + public static void TextureView(Int32 texture, OpenTK.Graphics.ES30.All target, Int32 origtexture, OpenTK.Graphics.ES30.All internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_view] /// Initialize a texture as a data alias of another texture's data store @@ -60342,18 +60342,18 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_texture_view", Version = "", EntryPoint = "glTextureViewOES")] [CLSCompliant(false)] - public static void TextureView(UInt32 texture, OpenTK.Graphics.ES30.All target, UInt32 origtexture, OpenTK.Graphics.ES30.All internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new NotImplementedException(); } + public static void TextureView(UInt32 texture, OpenTK.Graphics.ES30.All target, UInt32 origtexture, OpenTK.Graphics.ES30.All internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glUnmapBufferOES")] - public static bool UnmapBuffer(OpenTK.Graphics.ES30.All target) { throw new NotImplementedException(); } + public static bool UnmapBuffer(OpenTK.Graphics.ES30.All target) { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glUnmapBufferOES")] - public static bool UnmapBuffer(OpenTK.Graphics.ES30.BufferTarget target) { throw new NotImplementedException(); } + public static bool UnmapBuffer(OpenTK.Graphics.ES30.BufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set multiple viewports @@ -60369,7 +60369,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportArrayvOES")] [CLSCompliant(false)] - public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new NotImplementedException(); } + public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set multiple viewports @@ -60385,7 +60385,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportArrayvOES")] [CLSCompliant(false)] - public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new NotImplementedException(); } + public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set multiple viewports @@ -60401,7 +60401,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportArrayvOES")] [CLSCompliant(false)] - public static unsafe void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set multiple viewports @@ -60417,7 +60417,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportArrayvOES")] [CLSCompliant(false)] - public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new NotImplementedException(); } + public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set multiple viewports @@ -60433,7 +60433,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportArrayvOES")] [CLSCompliant(false)] - public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new NotImplementedException(); } + public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set multiple viewports @@ -60449,7 +60449,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportArrayvOES")] [CLSCompliant(false)] - public static unsafe void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -60471,7 +60471,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfOES")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, Single x, Single y, Single w, Single h) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, Single x, Single y, Single w, Single h) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -60493,7 +60493,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfOES")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, Single x, Single y, Single w, Single h) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, Single x, Single y, Single w, Single h) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -60506,7 +60506,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvOES")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -60519,7 +60519,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvOES")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -60532,7 +60532,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvOES")] [CLSCompliant(false)] - public static unsafe void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -60545,7 +60545,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvOES")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -60558,7 +60558,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvOES")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -60571,7 +60571,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvOES")] [CLSCompliant(false)] - public static unsafe void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } } @@ -60588,7 +60588,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OVR_multiview_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTextureMultisampleMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, Int32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, Int32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview_multisampled_render_to_texture] /// @@ -60601,7 +60601,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OVR_multiview_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTextureMultisampleMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, UInt32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, UInt32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview_multisampled_render_to_texture] /// @@ -60613,7 +60613,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OVR_multiview_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTextureMultisampleMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview_multisampled_render_to_texture] /// @@ -60625,7 +60625,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OVR_multiview_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTextureMultisampleMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview] /// @@ -60637,7 +60637,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OVR_multiview", Version = "", EntryPoint = "glFramebufferTextureMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultiview(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, Int32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultiview(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, Int32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview] /// @@ -60649,7 +60649,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OVR_multiview", Version = "", EntryPoint = "glFramebufferTextureMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultiview(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, UInt32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultiview(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, UInt32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview] /// @@ -60660,7 +60660,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OVR_multiview", Version = "", EntryPoint = "glFramebufferTextureMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultiview(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultiview(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview] /// @@ -60671,7 +60671,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OVR_multiview", Version = "", EntryPoint = "glFramebufferTextureMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultiview(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultiview(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } } @@ -60687,49 +60687,49 @@ namespace OpenTK.Graphics.ES30 /// Specifies the reference value that incoming alpha values are compared to. This value is clamped to the range [0,1], where 0 represents the lowest possible alpha value and 1 the highest possible value. The initial reference value is 0. /// [AutoGenerated(Category = "QCOM_alpha_test", Version = "", EntryPoint = "glAlphaFuncQCOM")] - public static void AlphaFunc(OpenTK.Graphics.ES30.All func, Single @ref) { throw new NotImplementedException(); } + public static void AlphaFunc(OpenTK.Graphics.ES30.All func, Single @ref) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glDisableDriverControlQCOM")] [CLSCompliant(false)] - public static void DisableDriverControl(Int32 driverControl) { throw new NotImplementedException(); } + public static void DisableDriverControl(Int32 driverControl) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glDisableDriverControlQCOM")] [CLSCompliant(false)] - public static void DisableDriverControl(UInt32 driverControl) { throw new NotImplementedException(); } + public static void DisableDriverControl(UInt32 driverControl) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glEnableDriverControlQCOM")] [CLSCompliant(false)] - public static void EnableDriverControl(Int32 driverControl) { throw new NotImplementedException(); } + public static void EnableDriverControl(Int32 driverControl) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glEnableDriverControlQCOM")] [CLSCompliant(false)] - public static void EnableDriverControl(UInt32 driverControl) { throw new NotImplementedException(); } + public static void EnableDriverControl(UInt32 driverControl) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_tiled_rendering] /// [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glEndTilingQCOM")] [CLSCompliant(false)] - public static void EndTiling(Int32 preserveMask) { throw new NotImplementedException(); } + public static void EndTiling(Int32 preserveMask) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_tiled_rendering] /// [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glEndTilingQCOM")] [CLSCompliant(false)] - public static void EndTiling(UInt32 preserveMask) { throw new NotImplementedException(); } + public static void EndTiling(UInt32 preserveMask) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBufferPointervQCOM")] - public static void ExtGetBufferPointer(OpenTK.Graphics.ES30.All target, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } + public static void ExtGetBufferPointer(OpenTK.Graphics.ES30.All target, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -60738,7 +60738,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ExtGetBufferPointer(OpenTK.Graphics.ES30.All target, [InAttribute, OutAttribute] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -60747,7 +60747,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ExtGetBufferPointer(OpenTK.Graphics.ES30.All target, [InAttribute, OutAttribute] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -60756,7 +60756,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ExtGetBufferPointer(OpenTK.Graphics.ES30.All target, [InAttribute, OutAttribute] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -60764,7 +60764,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBufferPointervQCOM")] public static void ExtGetBufferPointer(OpenTK.Graphics.ES30.All target, [InAttribute, OutAttribute] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -60773,7 +60773,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -60781,7 +60781,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -60790,7 +60790,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] out Int32 buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] out Int32 buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -60799,7 +60799,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -60808,7 +60808,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -60816,7 +60816,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -60825,7 +60825,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] out UInt32 buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] out UInt32 buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -60834,7 +60834,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -60843,7 +60843,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -60851,7 +60851,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -60860,7 +60860,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] out Int32 framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] out Int32 framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -60869,7 +60869,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -60878,7 +60878,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -60886,7 +60886,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -60895,7 +60895,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] out UInt32 framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] out UInt32 framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -60904,7 +60904,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -60913,7 +60913,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32[] length) { throw new NotImplementedException(); } + public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -60922,7 +60922,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute] out String source, [OutAttribute] out Int32 length) { throw new NotImplementedException(); } + public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -60931,7 +60931,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new NotImplementedException(); } + public static unsafe void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -60940,7 +60940,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32[] length) { throw new NotImplementedException(); } + public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -60949,7 +60949,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute] out String source, [OutAttribute] out Int32 length) { throw new NotImplementedException(); } + public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -60958,7 +60958,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new NotImplementedException(); } + public static unsafe void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -60967,7 +60967,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -60975,7 +60975,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -60984,7 +60984,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] out Int32 programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] out Int32 programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -60993,7 +60993,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new NotImplementedException(); } + public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -61002,7 +61002,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -61010,7 +61010,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -61019,7 +61019,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] out UInt32 programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] out UInt32 programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -61028,7 +61028,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new NotImplementedException(); } + public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -61037,7 +61037,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -61045,7 +61045,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -61054,7 +61054,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] out Int32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] out Int32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -61063,7 +61063,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -61072,7 +61072,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -61080,7 +61080,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -61089,7 +61089,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] out UInt32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] out UInt32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -61098,7 +61098,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -61107,7 +61107,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -61115,7 +61115,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -61124,7 +61124,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] out Int32 shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] out Int32 shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -61133,7 +61133,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new NotImplementedException(); } + public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -61142,7 +61142,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -61150,7 +61150,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -61159,7 +61159,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] out UInt32 shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] out UInt32 shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -61168,7 +61168,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new NotImplementedException(); } + public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -61178,7 +61178,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] [CLSCompliant(false)] - public static void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES30.All face, Int32 level, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES30.All face, Int32 level, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -61188,7 +61188,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] [CLSCompliant(false)] - public static void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES30.All face, Int32 level, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES30.All face, Int32 level, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -61198,7 +61198,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES30.All face, Int32 level, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES30.All face, Int32 level, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -61208,7 +61208,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] [CLSCompliant(false)] - public static void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES30.All face, Int32 level, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES30.All face, Int32 level, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -61218,7 +61218,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] [CLSCompliant(false)] - public static void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES30.All face, Int32 level, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES30.All face, Int32 level, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -61228,7 +61228,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES30.All face, Int32 level, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES30.All face, Int32 level, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -61243,7 +61243,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] - public static void ExtGetTexSubImage(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [OutAttribute] IntPtr texels) { throw new NotImplementedException(); } + public static void ExtGetTexSubImage(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [OutAttribute] IntPtr texels) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -61261,7 +61261,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ExtGetTexSubImage(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T10[] texels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -61279,7 +61279,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ExtGetTexSubImage(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T10[,] texels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -61297,7 +61297,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ExtGetTexSubImage(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T10[,,] texels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -61314,7 +61314,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] public static void ExtGetTexSubImage(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] ref T10 texels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -61322,7 +61322,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] [CLSCompliant(false)] - public static void ExtGetTextures([OutAttribute] Int32[] textures, Int32 maxTextures, [OutAttribute] Int32[] numTextures) { throw new NotImplementedException(); } + public static void ExtGetTextures([OutAttribute] Int32[] textures, Int32 maxTextures, [OutAttribute] Int32[] numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -61330,7 +61330,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] [CLSCompliant(false)] - public static void ExtGetTextures([OutAttribute] out Int32 textures, Int32 maxTextures, [OutAttribute] out Int32 numTextures) { throw new NotImplementedException(); } + public static void ExtGetTextures([OutAttribute] out Int32 textures, Int32 maxTextures, [OutAttribute] out Int32 numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -61338,7 +61338,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetTextures([OutAttribute] Int32* textures, Int32 maxTextures, [OutAttribute] Int32* numTextures) { throw new NotImplementedException(); } + public static unsafe void ExtGetTextures([OutAttribute] Int32* textures, Int32 maxTextures, [OutAttribute] Int32* numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -61346,7 +61346,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] [CLSCompliant(false)] - public static void ExtGetTextures([OutAttribute] UInt32[] textures, Int32 maxTextures, [OutAttribute] Int32[] numTextures) { throw new NotImplementedException(); } + public static void ExtGetTextures([OutAttribute] UInt32[] textures, Int32 maxTextures, [OutAttribute] Int32[] numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -61354,7 +61354,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] [CLSCompliant(false)] - public static void ExtGetTextures([OutAttribute] out UInt32 textures, Int32 maxTextures, [OutAttribute] out Int32 numTextures) { throw new NotImplementedException(); } + public static void ExtGetTextures([OutAttribute] out UInt32 textures, Int32 maxTextures, [OutAttribute] out Int32 numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -61362,30 +61362,30 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetTextures([OutAttribute] UInt32* textures, Int32 maxTextures, [OutAttribute] Int32* numTextures) { throw new NotImplementedException(); } + public static unsafe void ExtGetTextures([OutAttribute] UInt32* textures, Int32 maxTextures, [OutAttribute] Int32* numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtIsProgramBinaryQCOM")] [CLSCompliant(false)] - public static bool ExtIsProgramBinary(Int32 program) { throw new NotImplementedException(); } + public static bool ExtIsProgramBinary(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtIsProgramBinaryQCOM")] [CLSCompliant(false)] - public static bool ExtIsProgramBinary(UInt32 program) { throw new NotImplementedException(); } + public static bool ExtIsProgramBinary(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// /// /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtTexObjectStateOverrideiQCOM")] - public static void ExtTexObjectStateOverride(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, Int32 param) { throw new NotImplementedException(); } + public static void ExtTexObjectStateOverride(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_shader_framebuffer_fetch_noncoherent] [AutoGenerated(Category = "QCOM_shader_framebuffer_fetch_noncoherent", Version = "", EntryPoint = "glFramebufferFetchBarrierQCOM")] - public static void FramebufferFetchBarrier() { throw new NotImplementedException(); } + public static void FramebufferFetchBarrier() { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_framebuffer_foveated] /// @@ -61395,7 +61395,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "QCOM_framebuffer_foveated", Version = "", EntryPoint = "glFramebufferFoveationConfigQCOM")] [CLSCompliant(false)] - public static void FramebufferFoveationConfig(Int32 framebuffer, Int32 numLayers, Int32 focalPointsPerLayer, Int32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] out Int32 providedFeatures) { throw new NotImplementedException(); } + public static void FramebufferFoveationConfig(Int32 framebuffer, Int32 numLayers, Int32 focalPointsPerLayer, Int32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] out Int32 providedFeatures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_framebuffer_foveated] /// @@ -61405,7 +61405,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "QCOM_framebuffer_foveated", Version = "", EntryPoint = "glFramebufferFoveationConfigQCOM")] [CLSCompliant(false)] - public static unsafe void FramebufferFoveationConfig(Int32 framebuffer, Int32 numLayers, Int32 focalPointsPerLayer, Int32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] Int32* providedFeatures) { throw new NotImplementedException(); } + public static unsafe void FramebufferFoveationConfig(Int32 framebuffer, Int32 numLayers, Int32 focalPointsPerLayer, Int32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] Int32* providedFeatures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_framebuffer_foveated] /// @@ -61415,7 +61415,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "QCOM_framebuffer_foveated", Version = "", EntryPoint = "glFramebufferFoveationConfigQCOM")] [CLSCompliant(false)] - public static void FramebufferFoveationConfig(UInt32 framebuffer, UInt32 numLayers, UInt32 focalPointsPerLayer, UInt32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] out UInt32 providedFeatures) { throw new NotImplementedException(); } + public static void FramebufferFoveationConfig(UInt32 framebuffer, UInt32 numLayers, UInt32 focalPointsPerLayer, UInt32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] out UInt32 providedFeatures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_framebuffer_foveated] /// @@ -61425,7 +61425,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "QCOM_framebuffer_foveated", Version = "", EntryPoint = "glFramebufferFoveationConfigQCOM")] [CLSCompliant(false)] - public static unsafe void FramebufferFoveationConfig(UInt32 framebuffer, UInt32 numLayers, UInt32 focalPointsPerLayer, UInt32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] UInt32* providedFeatures) { throw new NotImplementedException(); } + public static unsafe void FramebufferFoveationConfig(UInt32 framebuffer, UInt32 numLayers, UInt32 focalPointsPerLayer, UInt32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] UInt32* providedFeatures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_framebuffer_foveated] /// @@ -61438,7 +61438,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "QCOM_framebuffer_foveated", Version = "", EntryPoint = "glFramebufferFoveationParametersQCOM")] [CLSCompliant(false)] - public static void FramebufferFoveationParameters(Int32 framebuffer, Int32 layer, Int32 focalPoint, Single focalX, Single focalY, Single gainX, Single gainY, Single foveaArea) { throw new NotImplementedException(); } + public static void FramebufferFoveationParameters(Int32 framebuffer, Int32 layer, Int32 focalPoint, Single focalX, Single focalY, Single gainX, Single gainY, Single foveaArea) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_framebuffer_foveated] /// @@ -61451,7 +61451,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "QCOM_framebuffer_foveated", Version = "", EntryPoint = "glFramebufferFoveationParametersQCOM")] [CLSCompliant(false)] - public static void FramebufferFoveationParameters(UInt32 framebuffer, UInt32 layer, UInt32 focalPoint, Single focalX, Single focalY, Single gainX, Single gainY, Single foveaArea) { throw new NotImplementedException(); } + public static void FramebufferFoveationParameters(UInt32 framebuffer, UInt32 layer, UInt32 focalPoint, Single focalX, Single focalY, Single gainX, Single gainY, Single foveaArea) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -61459,7 +61459,7 @@ namespace OpenTK.Graphics.ES30 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static void GetDriverControl([OutAttribute] Int32[] num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32[] driverControls) { throw new NotImplementedException(); } + public static void GetDriverControl([OutAttribute] Int32[] num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32[] driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -61467,7 +61467,7 @@ namespace OpenTK.Graphics.ES30 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static void GetDriverControl([OutAttribute] Int32[] num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32[] driverControls) { throw new NotImplementedException(); } + public static void GetDriverControl([OutAttribute] Int32[] num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32[] driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -61475,7 +61475,7 @@ namespace OpenTK.Graphics.ES30 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static void GetDriverControl([OutAttribute] out Int32 num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out Int32 driverControls) { throw new NotImplementedException(); } + public static void GetDriverControl([OutAttribute] out Int32 num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out Int32 driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -61483,7 +61483,7 @@ namespace OpenTK.Graphics.ES30 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static void GetDriverControl([OutAttribute] out Int32 num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out UInt32 driverControls) { throw new NotImplementedException(); } + public static void GetDriverControl([OutAttribute] out Int32 num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out UInt32 driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -61491,7 +61491,7 @@ namespace OpenTK.Graphics.ES30 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static unsafe void GetDriverControl([OutAttribute] Int32* num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32* driverControls) { throw new NotImplementedException(); } + public static unsafe void GetDriverControl([OutAttribute] Int32* num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32* driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -61499,7 +61499,7 @@ namespace OpenTK.Graphics.ES30 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static unsafe void GetDriverControl([OutAttribute] Int32* num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32* driverControls) { throw new NotImplementedException(); } + public static unsafe void GetDriverControl([OutAttribute] Int32* num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32* driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -61508,7 +61508,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -61517,7 +61517,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -61526,7 +61526,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static unsafe void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static unsafe void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -61535,7 +61535,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -61544,7 +61544,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -61553,7 +61553,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static unsafe void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static unsafe void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_tiled_rendering] /// @@ -61563,7 +61563,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glStartTilingQCOM")] [CLSCompliant(false)] - public static void StartTiling(Int32 x, Int32 y, Int32 width, Int32 height, Int32 preserveMask) { throw new NotImplementedException(); } + public static void StartTiling(Int32 x, Int32 y, Int32 width, Int32 height, Int32 preserveMask) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_tiled_rendering] /// @@ -61573,7 +61573,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glStartTilingQCOM")] [CLSCompliant(false)] - public static void StartTiling(UInt32 x, UInt32 y, UInt32 width, UInt32 height, UInt32 preserveMask) { throw new NotImplementedException(); } + public static void StartTiling(UInt32 x, UInt32 y, UInt32 width, UInt32 height, UInt32 preserveMask) { throw new BindingsNotRewrittenException(); } } diff --git a/src/OpenTK/Graphics/ES31/ES31.cs b/src/OpenTK/Graphics/ES31/ES31.cs index 217d544e..58ecd11d 100644 --- a/src/OpenTK/Graphics/ES31/ES31.cs +++ b/src/OpenTK/Graphics/ES31/ES31.cs @@ -1677,119 +1677,119 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glBeginPerfMonitorAMD")] [CLSCompliant(false)] - public static void BeginPerfMonitor(Int32 monitor) { throw new NotImplementedException(); } + public static void BeginPerfMonitor(Int32 monitor) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glBeginPerfMonitorAMD")] [CLSCompliant(false)] - public static void BeginPerfMonitor(UInt32 monitor) { throw new NotImplementedException(); } + public static void BeginPerfMonitor(UInt32 monitor) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static Int32 DeletePerfMonitor() { throw new NotImplementedException(); } + public static Int32 DeletePerfMonitor() { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static unsafe void DeletePerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* monitors) { throw new NotImplementedException(); } + public static unsafe void DeletePerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static unsafe void DeletePerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* monitors) { throw new NotImplementedException(); } + public static unsafe void DeletePerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glEndPerfMonitorAMD")] [CLSCompliant(false)] - public static void EndPerfMonitor(Int32 monitor) { throw new NotImplementedException(); } + public static void EndPerfMonitor(Int32 monitor) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glEndPerfMonitorAMD")] [CLSCompliant(false)] - public static void EndPerfMonitor(UInt32 monitor) { throw new NotImplementedException(); } + public static void EndPerfMonitor(UInt32 monitor) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static Int32 GenPerfMonitor() { throw new NotImplementedException(); } + public static Int32 GenPerfMonitor() { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] monitors) { throw new NotImplementedException(); } + public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 monitors) { throw new NotImplementedException(); } + public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* monitors) { throw new NotImplementedException(); } + public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] monitors) { throw new NotImplementedException(); } + public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 monitors) { throw new NotImplementedException(); } + public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* monitors) { throw new NotImplementedException(); } + public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1799,7 +1799,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES31.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] Int32[] data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES31.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] Int32[] data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1809,7 +1809,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES31.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] out Int32 data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES31.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] out Int32 data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1819,7 +1819,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES31.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] Int32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES31.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] Int32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1829,7 +1829,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES31.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32[] data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES31.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32[] data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1839,7 +1839,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES31.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] out UInt32 data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES31.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] out UInt32 data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1849,7 +1849,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES31.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES31.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1858,7 +1858,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1869,7 +1869,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1880,7 +1880,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1891,7 +1891,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1902,7 +1902,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1911,7 +1911,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1922,7 +1922,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1933,7 +1933,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1944,7 +1944,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1955,7 +1955,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1965,7 +1965,7 @@ namespace OpenTK.Graphics.ES31 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] Int32[] counters) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] Int32[] counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1975,7 +1975,7 @@ namespace OpenTK.Graphics.ES31 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] out Int32 counters) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] out Int32 counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1985,7 +1985,7 @@ namespace OpenTK.Graphics.ES31 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] Int32* counters) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] Int32* counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1995,7 +1995,7 @@ namespace OpenTK.Graphics.ES31 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32[] counters) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32[] counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2005,7 +2005,7 @@ namespace OpenTK.Graphics.ES31 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] out UInt32 counters) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] out UInt32 counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2015,7 +2015,7 @@ namespace OpenTK.Graphics.ES31 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32* counters) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32* counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2025,7 +2025,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2035,7 +2035,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2045,7 +2045,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2055,7 +2055,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -2063,7 +2063,7 @@ namespace OpenTK.Graphics.ES31 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] Int32[] groups) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] Int32[] groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -2071,7 +2071,7 @@ namespace OpenTK.Graphics.ES31 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] out Int32 groups) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] out Int32 groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -2079,7 +2079,7 @@ namespace OpenTK.Graphics.ES31 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32[] groups) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32[] groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -2087,7 +2087,7 @@ namespace OpenTK.Graphics.ES31 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] out UInt32 groups) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] out UInt32 groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -2095,7 +2095,7 @@ namespace OpenTK.Graphics.ES31 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] Int32* groups) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] Int32* groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -2103,7 +2103,7 @@ namespace OpenTK.Graphics.ES31 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32* groups) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32* groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2112,7 +2112,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2121,7 +2121,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2130,7 +2130,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2139,7 +2139,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2149,7 +2149,7 @@ namespace OpenTK.Graphics.ES31 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] Int32[] counterList) { throw new NotImplementedException(); } + public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] Int32[] counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2159,7 +2159,7 @@ namespace OpenTK.Graphics.ES31 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] out Int32 counterList) { throw new NotImplementedException(); } + public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] out Int32 counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2169,7 +2169,7 @@ namespace OpenTK.Graphics.ES31 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static unsafe void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] Int32* counterList) { throw new NotImplementedException(); } + public static unsafe void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] Int32* counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2179,7 +2179,7 @@ namespace OpenTK.Graphics.ES31 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32[] counterList) { throw new NotImplementedException(); } + public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32[] counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2189,7 +2189,7 @@ namespace OpenTK.Graphics.ES31 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] out UInt32 counterList) { throw new NotImplementedException(); } + public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] out UInt32 counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2199,7 +2199,7 @@ namespace OpenTK.Graphics.ES31 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static unsafe void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32* counterList) { throw new NotImplementedException(); } + public static unsafe void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32* counterList) { throw new BindingsNotRewrittenException(); } } @@ -2240,7 +2240,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ANGLE_framebuffer_blit", Version = "", EntryPoint = "glBlitFramebufferANGLE")] [CLSCompliant(false)] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, Int32 mask, OpenTK.Graphics.ES31.All filter) { throw new NotImplementedException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, Int32 mask, OpenTK.Graphics.ES31.All filter) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_framebuffer_blit] /// Copy a block of pixels from the read framebuffer to the draw framebuffer @@ -2277,7 +2277,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ANGLE_framebuffer_blit", Version = "", EntryPoint = "glBlitFramebufferANGLE")] [CLSCompliant(false)] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, UInt32 mask, OpenTK.Graphics.ES31.All filter) { throw new NotImplementedException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, UInt32 mask, OpenTK.Graphics.ES31.All filter) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a range of elements @@ -2296,7 +2296,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawArraysInstancedANGLE")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES31.All mode, Int32 first, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES31.All mode, Int32 first, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a range of elements @@ -2314,7 +2314,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawArraysInstancedANGLE")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 first, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 first, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2336,7 +2336,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2361,7 +2361,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2386,7 +2386,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2411,7 +2411,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2435,7 +2435,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2456,7 +2456,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2480,7 +2480,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2504,7 +2504,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2528,7 +2528,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2551,7 +2551,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// @@ -2561,7 +2561,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute] out String source) { throw new NotImplementedException(); } + public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// @@ -2571,7 +2571,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute] out String source) { throw new NotImplementedException(); } + public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// @@ -2581,7 +2581,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static unsafe void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute] out String source) { throw new NotImplementedException(); } + public static unsafe void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// @@ -2591,7 +2591,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute] out String source) { throw new NotImplementedException(); } + public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// @@ -2601,7 +2601,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute] out String source) { throw new NotImplementedException(); } + public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// @@ -2611,7 +2611,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static unsafe void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute] out String source) { throw new NotImplementedException(); } + public static unsafe void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_framebuffer_multisample] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -2632,7 +2632,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "ANGLE_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleANGLE")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -2645,7 +2645,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorANGLE")] [CLSCompliant(false)] - public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -2658,7 +2658,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorANGLE")] [CLSCompliant(false)] - public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new BindingsNotRewrittenException(); } } @@ -2678,7 +2678,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glClientWaitSyncAPPLE")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All ClientWaitSync(IntPtr sync, Int32 flags, Int64 timeout) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES31.All ClientWaitSync(IntPtr sync, Int32 flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Block and wait for a sync object to become signaled @@ -2694,7 +2694,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glClientWaitSyncAPPLE")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All ClientWaitSync(IntPtr sync, UInt32 flags, UInt64 timeout) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES31.All ClientWaitSync(IntPtr sync, UInt32 flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_copy_texture_levels] /// @@ -2703,7 +2703,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "APPLE_copy_texture_levels", Version = "", EntryPoint = "glCopyTextureLevelsAPPLE")] [CLSCompliant(false)] - public static void CopyTextureLevel(Int32 destinationTexture, Int32 sourceTexture, Int32 sourceBaseLevel, Int32 sourceLevelCount) { throw new NotImplementedException(); } + public static void CopyTextureLevel(Int32 destinationTexture, Int32 sourceTexture, Int32 sourceBaseLevel, Int32 sourceLevelCount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_copy_texture_levels] /// @@ -2712,7 +2712,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "APPLE_copy_texture_levels", Version = "", EntryPoint = "glCopyTextureLevelsAPPLE")] [CLSCompliant(false)] - public static void CopyTextureLevel(UInt32 destinationTexture, UInt32 sourceTexture, Int32 sourceBaseLevel, Int32 sourceLevelCount) { throw new NotImplementedException(); } + public static void CopyTextureLevel(UInt32 destinationTexture, UInt32 sourceTexture, Int32 sourceBaseLevel, Int32 sourceLevelCount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Delete a sync object @@ -2721,7 +2721,7 @@ namespace OpenTK.Graphics.ES31 /// The sync object to be deleted. /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glDeleteSyncAPPLE")] - public static void DeleteSync(IntPtr sync) { throw new NotImplementedException(); } + public static void DeleteSync(IntPtr sync) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Create a new sync object and insert it into the GL command stream @@ -2734,7 +2734,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glFenceSyncAPPLE")] [CLSCompliant(false)] - public static IntPtr FenceSync(OpenTK.Graphics.ES31.All condition, Int32 flags) { throw new NotImplementedException(); } + public static IntPtr FenceSync(OpenTK.Graphics.ES31.All condition, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Create a new sync object and insert it into the GL command stream @@ -2747,34 +2747,34 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glFenceSyncAPPLE")] [CLSCompliant(false)] - public static IntPtr FenceSync(OpenTK.Graphics.ES31.All condition, UInt32 flags) { throw new NotImplementedException(); } + public static IntPtr FenceSync(OpenTK.Graphics.ES31.All condition, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] [CLSCompliant(false)] - public static Int64 GetInteger64(OpenTK.Graphics.ES31.All pname) { throw new NotImplementedException(); } + public static Int64 GetInteger64(OpenTK.Graphics.ES31.All pname) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.ES31.All pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES31.All pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] [CLSCompliant(false)] - public static unsafe void GetInteger64(OpenTK.Graphics.ES31.All pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.ES31.All pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Query the properties of a sync object @@ -2796,7 +2796,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] [CLSCompliant(false)] - public static void GetSync(IntPtr sync, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Query the properties of a sync object @@ -2818,7 +2818,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] [CLSCompliant(false)] - public static void GetSync(IntPtr sync, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Query the properties of a sync object @@ -2840,7 +2840,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] [CLSCompliant(false)] - public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Determine if a name corresponds to a sync object @@ -2849,7 +2849,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a value that may be the name of a sync object. /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glIsSyncAPPLE")] - public static bool IsSync(IntPtr sync) { throw new NotImplementedException(); } + public static bool IsSync(IntPtr sync) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_framebuffer_multisample] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -2870,11 +2870,11 @@ namespace OpenTK.Graphics.ES31 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "APPLE_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleAPPLE")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_framebuffer_multisample] [AutoGenerated(Category = "APPLE_framebuffer_multisample", Version = "", EntryPoint = "glResolveMultisampleFramebufferAPPLE")] - public static void ResolveMultisampleFramebuffer() { throw new NotImplementedException(); } + public static void ResolveMultisampleFramebuffer() { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -2890,7 +2890,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glWaitSyncAPPLE")] [CLSCompliant(false)] - public static void WaitSync(IntPtr sync, Int32 flags, Int64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, Int32 flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -2906,7 +2906,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glWaitSyncAPPLE")] [CLSCompliant(false)] - public static void WaitSync(IntPtr sync, UInt32 flags, UInt64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, UInt32 flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } } @@ -2914,7 +2914,7 @@ namespace OpenTK.Graphics.ES31 { /// [requires: INTEL_framebuffer_CMAA] [AutoGenerated(Category = "INTEL_framebuffer_CMAA", Version = "", EntryPoint = "glApplyFramebufferAttachmentCMAAINTEL")] - public static void ApplyFramebufferAttachment() { throw new NotImplementedException(); } + public static void ApplyFramebufferAttachment() { throw new BindingsNotRewrittenException(); } } @@ -2929,7 +2929,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glActiveShaderProgram")] [CLSCompliant(false)] - public static void ActiveShaderProgram(Int32 pipeline, Int32 program) { throw new NotImplementedException(); } + public static void ActiveShaderProgram(Int32 pipeline, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Set the active program object for a program pipeline object @@ -2942,7 +2942,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glActiveShaderProgram")] [CLSCompliant(false)] - public static void ActiveShaderProgram(UInt32 pipeline, UInt32 program) { throw new NotImplementedException(); } + public static void ActiveShaderProgram(UInt32 pipeline, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Select active texture unit @@ -2952,7 +2952,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glActiveTexture")] - public static void ActiveTexture(OpenTK.Graphics.ES31.All texture) { throw new NotImplementedException(); } + public static void ActiveTexture(OpenTK.Graphics.ES31.All texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Select active texture unit @@ -2961,7 +2961,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies which texture unit to make active. The number of texture units is implementation-dependent, but must be at least 32. texture must be one of Texturei, where i ranges from zero to the value of MaxCombinedTextureImageUnits minus one. The initial value is Texture0. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glActiveTexture")] - public static void ActiveTexture(OpenTK.Graphics.ES31.TextureUnit texture) { throw new NotImplementedException(); } + public static void ActiveTexture(OpenTK.Graphics.ES31.TextureUnit texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attaches a shader object to a program object @@ -2974,7 +2974,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glAttachShader")] [CLSCompliant(false)] - public static void AttachShader(Int32 program, Int32 shader) { throw new NotImplementedException(); } + public static void AttachShader(Int32 program, Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attaches a shader object to a program object @@ -2987,7 +2987,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glAttachShader")] [CLSCompliant(false)] - public static void AttachShader(UInt32 program, UInt32 shader) { throw new NotImplementedException(); } + public static void AttachShader(UInt32 program, UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delimit the boundaries of a query object @@ -3000,7 +3000,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBeginQuery")] [CLSCompliant(false)] - public static void BeginQuery(OpenTK.Graphics.ES31.All target, Int32 id) { throw new NotImplementedException(); } + public static void BeginQuery(OpenTK.Graphics.ES31.All target, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delimit the boundaries of a query object @@ -3013,7 +3013,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBeginQuery")] [CLSCompliant(false)] - public static void BeginQuery(OpenTK.Graphics.ES31.All target, UInt32 id) { throw new NotImplementedException(); } + public static void BeginQuery(OpenTK.Graphics.ES31.All target, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Start transform feedback operation @@ -3022,7 +3022,7 @@ namespace OpenTK.Graphics.ES31 /// Specify the output type of the primitives that will be recorded into the buffer objects that are bound for transform feedback. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBeginTransformFeedback")] - public static void BeginTransformFeedback(OpenTK.Graphics.ES31.All primitiveMode) { throw new NotImplementedException(); } + public static void BeginTransformFeedback(OpenTK.Graphics.ES31.All primitiveMode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Associates a generic vertex attribute index with a named attribute variable @@ -3038,7 +3038,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindAttribLocation")] [CLSCompliant(false)] - public static void BindAttribLocation(Int32 program, Int32 index, String name) { throw new NotImplementedException(); } + public static void BindAttribLocation(Int32 program, Int32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Associates a generic vertex attribute index with a named attribute variable @@ -3054,7 +3054,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindAttribLocation")] [CLSCompliant(false)] - public static void BindAttribLocation(UInt32 program, UInt32 index, String name) { throw new NotImplementedException(); } + public static void BindAttribLocation(UInt32 program, UInt32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named buffer object @@ -3068,7 +3068,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindBuffer")] [CLSCompliant(false)] - public static void BindBuffer(OpenTK.Graphics.ES31.All target, Int32 buffer) { throw new NotImplementedException(); } + public static void BindBuffer(OpenTK.Graphics.ES31.All target, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named buffer object @@ -3082,7 +3082,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindBuffer")] [CLSCompliant(false)] - public static void BindBuffer(OpenTK.Graphics.ES31.All target, UInt32 buffer) { throw new NotImplementedException(); } + public static void BindBuffer(OpenTK.Graphics.ES31.All target, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named buffer object @@ -3095,7 +3095,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindBuffer")] [CLSCompliant(false)] - public static void BindBuffer(OpenTK.Graphics.ES31.BufferTargetArb target, Int32 buffer) { throw new NotImplementedException(); } + public static void BindBuffer(OpenTK.Graphics.ES31.BufferTargetArb target, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named buffer object @@ -3108,7 +3108,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindBuffer")] [CLSCompliant(false)] - public static void BindBuffer(OpenTK.Graphics.ES31.BufferTargetArb target, UInt32 buffer) { throw new NotImplementedException(); } + public static void BindBuffer(OpenTK.Graphics.ES31.BufferTargetArb target, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a buffer object to an indexed buffer target @@ -3124,7 +3124,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferBase")] [CLSCompliant(false)] - public static void BindBufferBase(OpenTK.Graphics.ES31.All target, Int32 index, Int32 buffer) { throw new NotImplementedException(); } + public static void BindBufferBase(OpenTK.Graphics.ES31.All target, Int32 index, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a buffer object to an indexed buffer target @@ -3140,7 +3140,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferBase")] [CLSCompliant(false)] - public static void BindBufferBase(OpenTK.Graphics.ES31.All target, UInt32 index, UInt32 buffer) { throw new NotImplementedException(); } + public static void BindBufferBase(OpenTK.Graphics.ES31.All target, UInt32 index, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a range within a buffer object to an indexed buffer target @@ -3162,7 +3162,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferRange")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.ES31.All target, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.ES31.All target, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a range within a buffer object to an indexed buffer target @@ -3184,7 +3184,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferRange")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.ES31.All target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.ES31.All target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a range within a buffer object to an indexed buffer target @@ -3206,7 +3206,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferRange")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.ES31.All target, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.ES31.All target, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a range within a buffer object to an indexed buffer target @@ -3228,7 +3228,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferRange")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.ES31.All target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.ES31.All target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a framebuffer to a framebuffer target @@ -3242,7 +3242,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindFramebuffer")] [CLSCompliant(false)] - public static void BindFramebuffer(OpenTK.Graphics.ES31.All target, Int32 framebuffer) { throw new NotImplementedException(); } + public static void BindFramebuffer(OpenTK.Graphics.ES31.All target, Int32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a framebuffer to a framebuffer target @@ -3256,7 +3256,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindFramebuffer")] [CLSCompliant(false)] - public static void BindFramebuffer(OpenTK.Graphics.ES31.All target, UInt32 framebuffer) { throw new NotImplementedException(); } + public static void BindFramebuffer(OpenTK.Graphics.ES31.All target, UInt32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a framebuffer to a framebuffer target @@ -3269,7 +3269,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindFramebuffer")] [CLSCompliant(false)] - public static void BindFramebuffer(OpenTK.Graphics.ES31.FramebufferTarget target, Int32 framebuffer) { throw new NotImplementedException(); } + public static void BindFramebuffer(OpenTK.Graphics.ES31.FramebufferTarget target, Int32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a framebuffer to a framebuffer target @@ -3282,7 +3282,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindFramebuffer")] [CLSCompliant(false)] - public static void BindFramebuffer(OpenTK.Graphics.ES31.FramebufferTarget target, UInt32 framebuffer) { throw new NotImplementedException(); } + public static void BindFramebuffer(OpenTK.Graphics.ES31.FramebufferTarget target, UInt32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Bind a level of a texture to an image unit @@ -3310,7 +3310,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glBindImageTexture")] [CLSCompliant(false)] - public static void BindImageTexture(Int32 unit, Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES31.All access, OpenTK.Graphics.ES31.All format) { throw new NotImplementedException(); } + public static void BindImageTexture(Int32 unit, Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES31.All access, OpenTK.Graphics.ES31.All format) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Bind a level of a texture to an image unit @@ -3338,7 +3338,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glBindImageTexture")] [CLSCompliant(false)] - public static void BindImageTexture(UInt32 unit, UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES31.All access, OpenTK.Graphics.ES31.All format) { throw new NotImplementedException(); } + public static void BindImageTexture(UInt32 unit, UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES31.All access, OpenTK.Graphics.ES31.All format) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Bind a program pipeline to the current context @@ -3348,7 +3348,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glBindProgramPipeline")] [CLSCompliant(false)] - public static void BindProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } + public static void BindProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Bind a program pipeline to the current context @@ -3358,7 +3358,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glBindProgramPipeline")] [CLSCompliant(false)] - public static void BindProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static void BindProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a renderbuffer to a renderbuffer target @@ -3372,7 +3372,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindRenderbuffer")] [CLSCompliant(false)] - public static void BindRenderbuffer(OpenTK.Graphics.ES31.All target, Int32 renderbuffer) { throw new NotImplementedException(); } + public static void BindRenderbuffer(OpenTK.Graphics.ES31.All target, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a renderbuffer to a renderbuffer target @@ -3386,7 +3386,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindRenderbuffer")] [CLSCompliant(false)] - public static void BindRenderbuffer(OpenTK.Graphics.ES31.All target, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void BindRenderbuffer(OpenTK.Graphics.ES31.All target, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a renderbuffer to a renderbuffer target @@ -3399,7 +3399,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindRenderbuffer")] [CLSCompliant(false)] - public static void BindRenderbuffer(OpenTK.Graphics.ES31.RenderbufferTarget target, Int32 renderbuffer) { throw new NotImplementedException(); } + public static void BindRenderbuffer(OpenTK.Graphics.ES31.RenderbufferTarget target, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a renderbuffer to a renderbuffer target @@ -3412,7 +3412,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindRenderbuffer")] [CLSCompliant(false)] - public static void BindRenderbuffer(OpenTK.Graphics.ES31.RenderbufferTarget target, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void BindRenderbuffer(OpenTK.Graphics.ES31.RenderbufferTarget target, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a named sampler to a texturing target @@ -3425,7 +3425,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindSampler")] [CLSCompliant(false)] - public static void BindSampler(Int32 unit, Int32 sampler) { throw new NotImplementedException(); } + public static void BindSampler(Int32 unit, Int32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a named sampler to a texturing target @@ -3438,7 +3438,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindSampler")] [CLSCompliant(false)] - public static void BindSampler(UInt32 unit, UInt32 sampler) { throw new NotImplementedException(); } + public static void BindSampler(UInt32 unit, UInt32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named texture to a texturing target @@ -3452,7 +3452,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindTexture")] [CLSCompliant(false)] - public static void BindTexture(OpenTK.Graphics.ES31.All target, Int32 texture) { throw new NotImplementedException(); } + public static void BindTexture(OpenTK.Graphics.ES31.All target, Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named texture to a texturing target @@ -3466,7 +3466,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindTexture")] [CLSCompliant(false)] - public static void BindTexture(OpenTK.Graphics.ES31.All target, UInt32 texture) { throw new NotImplementedException(); } + public static void BindTexture(OpenTK.Graphics.ES31.All target, UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named texture to a texturing target @@ -3479,7 +3479,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindTexture")] [CLSCompliant(false)] - public static void BindTexture(OpenTK.Graphics.ES31.TextureTarget target, Int32 texture) { throw new NotImplementedException(); } + public static void BindTexture(OpenTK.Graphics.ES31.TextureTarget target, Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named texture to a texturing target @@ -3492,7 +3492,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindTexture")] [CLSCompliant(false)] - public static void BindTexture(OpenTK.Graphics.ES31.TextureTarget target, UInt32 texture) { throw new NotImplementedException(); } + public static void BindTexture(OpenTK.Graphics.ES31.TextureTarget target, UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a transform feedback object @@ -3505,7 +3505,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindTransformFeedback")] [CLSCompliant(false)] - public static void BindTransformFeedback(OpenTK.Graphics.ES31.All target, Int32 id) { throw new NotImplementedException(); } + public static void BindTransformFeedback(OpenTK.Graphics.ES31.All target, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a transform feedback object @@ -3518,7 +3518,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindTransformFeedback")] [CLSCompliant(false)] - public static void BindTransformFeedback(OpenTK.Graphics.ES31.All target, UInt32 id) { throw new NotImplementedException(); } + public static void BindTransformFeedback(OpenTK.Graphics.ES31.All target, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a vertex array object @@ -3528,7 +3528,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindVertexArray")] [CLSCompliant(false)] - public static void BindVertexArray(Int32 array) { throw new NotImplementedException(); } + public static void BindVertexArray(Int32 array) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a vertex array object @@ -3538,7 +3538,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindVertexArray")] [CLSCompliant(false)] - public static void BindVertexArray(UInt32 array) { throw new NotImplementedException(); } + public static void BindVertexArray(UInt32 array) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Bind a buffer to a vertex buffer bind point @@ -3557,7 +3557,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glBindVertexBuffer")] [CLSCompliant(false)] - public static void BindVertexBuffer(Int32 bindingindex, Int32 buffer, IntPtr offset, Int32 stride) { throw new NotImplementedException(); } + public static void BindVertexBuffer(Int32 bindingindex, Int32 buffer, IntPtr offset, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Bind a buffer to a vertex buffer bind point @@ -3576,7 +3576,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glBindVertexBuffer")] [CLSCompliant(false)] - public static void BindVertexBuffer(UInt32 bindingindex, UInt32 buffer, IntPtr offset, Int32 stride) { throw new NotImplementedException(); } + public static void BindVertexBuffer(UInt32 bindingindex, UInt32 buffer, IntPtr offset, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set the blend color @@ -3594,7 +3594,7 @@ namespace OpenTK.Graphics.ES31 /// specify the components of BlendColor /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendColor")] - public static void BlendColor(Single red, Single green, Single blue, Single alpha) { throw new NotImplementedException(); } + public static void BlendColor(Single red, Single green, Single blue, Single alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -3604,7 +3604,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendEquation")] - public static void BlendEquation(OpenTK.Graphics.ES31.All mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.ES31.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -3613,7 +3613,7 @@ namespace OpenTK.Graphics.ES31 /// specifies how source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendEquation")] - public static void BlendEquation(OpenTK.Graphics.ES31.BlendEquationMode mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.ES31.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set the RGB blend equation and the alpha blend equation separately @@ -3626,7 +3626,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendEquationSeparate")] - public static void BlendEquationSeparate(OpenTK.Graphics.ES31.All modeRGB, OpenTK.Graphics.ES31.All modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(OpenTK.Graphics.ES31.All modeRGB, OpenTK.Graphics.ES31.All modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set the RGB blend equation and the alpha blend equation separately @@ -3638,7 +3638,7 @@ namespace OpenTK.Graphics.ES31 /// specifies the alpha blend equation, how the alpha component of the source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendEquationSeparate")] - public static void BlendEquationSeparate(OpenTK.Graphics.ES31.BlendEquationModeExt modeRGB, OpenTK.Graphics.ES31.BlendEquationModeExt modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(OpenTK.Graphics.ES31.BlendEquationModeExt modeRGB, OpenTK.Graphics.ES31.BlendEquationModeExt modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify pixel arithmetic @@ -3651,7 +3651,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendFunc")] - public static void BlendFunc(OpenTK.Graphics.ES31.All sfactor, OpenTK.Graphics.ES31.All dfactor) { throw new NotImplementedException(); } + public static void BlendFunc(OpenTK.Graphics.ES31.All sfactor, OpenTK.Graphics.ES31.All dfactor) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify pixel arithmetic @@ -3663,7 +3663,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies how the red, green, blue, and alpha destination blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha. ConstantColor, OneMinusConstantColor, ConstantAlpha, and OneMinusConstantAlpha. The initial value is Zero. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendFunc")] - public static void BlendFunc(OpenTK.Graphics.ES31.BlendingFactorSrc sfactor, OpenTK.Graphics.ES31.BlendingFactorDest dfactor) { throw new NotImplementedException(); } + public static void BlendFunc(OpenTK.Graphics.ES31.BlendingFactorSrc sfactor, OpenTK.Graphics.ES31.BlendingFactorDest dfactor) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify pixel arithmetic for RGB and alpha components separately @@ -3681,7 +3681,7 @@ namespace OpenTK.Graphics.ES31 /// Specified how the alpha destination blending factor is computed. The initial value is Zero. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendFuncSeparate")] - public static void BlendFuncSeparate(OpenTK.Graphics.ES31.All sfactorRGB, OpenTK.Graphics.ES31.All dfactorRGB, OpenTK.Graphics.ES31.All sfactorAlpha, OpenTK.Graphics.ES31.All dfactorAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(OpenTK.Graphics.ES31.All sfactorRGB, OpenTK.Graphics.ES31.All dfactorRGB, OpenTK.Graphics.ES31.All sfactorAlpha, OpenTK.Graphics.ES31.All dfactorAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Copy a block of pixels from the read framebuffer to the draw framebuffer @@ -3718,7 +3718,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBlitFramebuffer")] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES31.All mask, OpenTK.Graphics.ES31.All filter) { throw new NotImplementedException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES31.All mask, OpenTK.Graphics.ES31.All filter) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Copy a block of pixels from the read framebuffer to the draw framebuffer @@ -3754,7 +3754,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the interpolation to be applied if the image is stretched. Must be Nearest or Linear. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBlitFramebuffer")] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES31.ClearBufferMask mask, OpenTK.Graphics.ES31.All filter) { throw new NotImplementedException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES31.ClearBufferMask mask, OpenTK.Graphics.ES31.All filter) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -3773,7 +3773,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.ES31.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES31.All usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.ES31.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES31.All usage) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -3795,7 +3795,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES31.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES31.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -3817,7 +3817,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES31.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES31.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -3839,7 +3839,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES31.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES31.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -3860,7 +3860,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.ES31.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES31.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -3879,7 +3879,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.ES31.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES31.All usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.ES31.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES31.All usage) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -3901,7 +3901,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES31.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES31.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -3923,7 +3923,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES31.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES31.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -3945,7 +3945,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES31.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES31.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -3966,7 +3966,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.ES31.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES31.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -3984,7 +3984,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StreamRead, StreamCopy, StaticDraw, StaticRead, StaticCopy, DynamicDraw, DynamicRead, or DynamicCopy. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.ES31.BufferTargetArb target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES31.BufferUsageArb usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.ES31.BufferTargetArb target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES31.BufferUsageArb usage) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4005,7 +4005,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES31.BufferTargetArb target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES31.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4026,7 +4026,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES31.BufferTargetArb target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES31.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4047,7 +4047,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES31.BufferTargetArb target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES31.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4067,7 +4067,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.ES31.BufferTargetArb target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES31.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4085,7 +4085,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StreamRead, StreamCopy, StaticDraw, StaticRead, StaticCopy, DynamicDraw, DynamicRead, or DynamicCopy. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES31.BufferUsageArb usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES31.BufferUsageArb usage) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4106,7 +4106,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES31.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4127,7 +4127,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES31.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4148,7 +4148,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES31.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4168,7 +4168,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES31.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4187,7 +4187,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] - public static void BufferSubData(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4209,7 +4209,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4231,7 +4231,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4253,7 +4253,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4274,7 +4274,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] public static void BufferSubData(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4293,7 +4293,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] - public static void BufferSubData(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4315,7 +4315,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4337,7 +4337,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4359,7 +4359,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4380,7 +4380,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] public static void BufferSubData(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4398,7 +4398,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a pointer to the new data that will be copied into the data store. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] - public static void BufferSubData(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4419,7 +4419,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4440,7 +4440,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4461,7 +4461,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4481,7 +4481,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] public static void BufferSubData(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4499,7 +4499,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a pointer to the new data that will be copied into the data store. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] - public static void BufferSubData(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4520,7 +4520,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4541,7 +4541,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4562,7 +4562,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4582,7 +4582,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] public static void BufferSubData(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Check the completeness status of a framebuffer @@ -4592,7 +4592,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCheckFramebufferStatus")] - public static OpenTK.Graphics.ES31.All CheckFramebufferStatus(OpenTK.Graphics.ES31.All target) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES31.All CheckFramebufferStatus(OpenTK.Graphics.ES31.All target) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Check the completeness status of a framebuffer @@ -4601,7 +4601,7 @@ namespace OpenTK.Graphics.ES31 /// Specify the target of the framebuffer completeness check. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCheckFramebufferStatus")] - public static OpenTK.Graphics.ES31.All CheckFramebufferStatus(OpenTK.Graphics.ES31.FramebufferTarget target) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES31.All CheckFramebufferStatus(OpenTK.Graphics.ES31.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Clear buffers to preset values @@ -4611,7 +4611,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glClear")] - public static void Clear(OpenTK.Graphics.ES31.All mask) { throw new NotImplementedException(); } + public static void Clear(OpenTK.Graphics.ES31.All mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Clear buffers to preset values @@ -4620,7 +4620,7 @@ namespace OpenTK.Graphics.ES31 /// Bitwise OR of masks that indicate the buffers to be cleared. The three masks are ColorBufferBit, DepthBufferBit, and StencilBufferBit. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glClear")] - public static void Clear(OpenTK.Graphics.ES31.ClearBufferMask mask) { throw new NotImplementedException(); } + public static void Clear(OpenTK.Graphics.ES31.ClearBufferMask mask) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4638,7 +4638,7 @@ namespace OpenTK.Graphics.ES31 /// The value to clear a stencil render buffer to. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfi")] - public static void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4654,7 +4654,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Single[] value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4670,7 +4670,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref Single value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4686,7 +4686,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfv")] [CLSCompliant(false)] - public static unsafe void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4702,7 +4702,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferiv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Int32[] value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4718,7 +4718,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferiv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref Int32 value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4734,7 +4734,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferiv")] [CLSCompliant(false)] - public static unsafe void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4750,7 +4750,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32[] value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4766,7 +4766,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4782,7 +4782,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] [CLSCompliant(false)] - public static unsafe void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify clear values for the color buffers @@ -4800,7 +4800,7 @@ namespace OpenTK.Graphics.ES31 /// Specify the red, green, blue, and alpha values used when the color buffers are cleared. The initial values are all 0. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glClearColor")] - public static void ClearColor(Single red, Single green, Single blue, Single alpha) { throw new NotImplementedException(); } + public static void ClearColor(Single red, Single green, Single blue, Single alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the clear value for the depth buffer @@ -4809,7 +4809,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the depth value used when the depth buffer is cleared. The initial value is 1. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glClearDepthf")] - public static void ClearDepth(Single d) { throw new NotImplementedException(); } + public static void ClearDepth(Single d) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the clear value for the stencil buffer @@ -4818,7 +4818,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the index used when the stencil buffer is cleared. The initial value is 0. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glClearStencil")] - public static void ClearStencil(Int32 s) { throw new NotImplementedException(); } + public static void ClearStencil(Int32 s) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Block and wait for a sync object to become signaled @@ -4834,7 +4834,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClientWaitSync")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All ClientWaitSync(IntPtr sync, Int32 flags, Int64 timeout) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES31.All ClientWaitSync(IntPtr sync, Int32 flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Block and wait for a sync object to become signaled @@ -4850,7 +4850,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClientWaitSync")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All ClientWaitSync(IntPtr sync, UInt32 flags, UInt64 timeout) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES31.All ClientWaitSync(IntPtr sync, UInt32 flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Enable and disable writing of frame buffer color components @@ -4868,7 +4868,7 @@ namespace OpenTK.Graphics.ES31 /// Specify whether red, green, blue, and alpha are to be written into the frame buffer. The initial values are all True, indicating that the color components are written. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glColorMask")] - public static void ColorMask(bool red, bool green, bool blue, bool alpha) { throw new NotImplementedException(); } + public static void ColorMask(bool red, bool green, bool blue, bool alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Compiles a shader object @@ -4878,7 +4878,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompileShader")] [CLSCompliant(false)] - public static void CompileShader(Int32 shader) { throw new NotImplementedException(); } + public static void CompileShader(Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Compiles a shader object @@ -4888,7 +4888,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompileShader")] [CLSCompliant(false)] - public static void CompileShader(UInt32 shader) { throw new NotImplementedException(); } + public static void CompileShader(UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -4919,7 +4919,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] - public static void CompressedTexImage2D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage2D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -4953,7 +4953,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -4987,7 +4987,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -5021,7 +5021,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -5054,7 +5054,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] public static void CompressedTexImage2D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -5084,7 +5084,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] - public static void CompressedTexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -5117,7 +5117,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -5150,7 +5150,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -5183,7 +5183,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -5215,7 +5215,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] public static void CompressedTexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image in a compressed format @@ -5249,7 +5249,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexImage3D")] - public static void CompressedTexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image in a compressed format @@ -5286,7 +5286,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image in a compressed format @@ -5323,7 +5323,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image in a compressed format @@ -5360,7 +5360,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image in a compressed format @@ -5396,7 +5396,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexImage3D")] public static void CompressedTexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image in a compressed format @@ -5429,7 +5429,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexImage3D")] - public static void CompressedTexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image in a compressed format @@ -5465,7 +5465,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image in a compressed format @@ -5501,7 +5501,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image in a compressed format @@ -5537,7 +5537,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image in a compressed format @@ -5572,7 +5572,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexImage3D")] public static void CompressedTexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5606,7 +5606,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] - public static void CompressedTexSubImage2D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexSubImage2D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5643,7 +5643,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5680,7 +5680,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5717,7 +5717,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5753,7 +5753,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5786,7 +5786,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] - public static void CompressedTexSubImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexSubImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5822,7 +5822,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5858,7 +5858,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5894,7 +5894,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5929,7 +5929,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage in a compressed format @@ -5969,7 +5969,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexSubImage3D")] - public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage in a compressed format @@ -6012,7 +6012,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage in a compressed format @@ -6055,7 +6055,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage in a compressed format @@ -6098,7 +6098,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage in a compressed format @@ -6140,7 +6140,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexSubImage3D")] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage in a compressed format @@ -6179,7 +6179,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexSubImage3D")] - public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage in a compressed format @@ -6221,7 +6221,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage in a compressed format @@ -6263,7 +6263,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage in a compressed format @@ -6305,7 +6305,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage in a compressed format @@ -6346,7 +6346,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexSubImage3D")] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -6367,7 +6367,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the size, in basic machine units, of the data to be copied from readtarget to writetarget. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCopyBufferSubData")] - public static void CopyBufferSubData(OpenTK.Graphics.ES31.All readTarget, OpenTK.Graphics.ES31.All writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new NotImplementedException(); } + public static void CopyBufferSubData(OpenTK.Graphics.ES31.All readTarget, OpenTK.Graphics.ES31.All writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -6388,7 +6388,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the size, in basic machine units, of the data to be copied from readtarget to writetarget. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCopyBufferSubData")] - public static void CopyBufferSubData(OpenTK.Graphics.ES31.All readTarget, OpenTK.Graphics.ES31.All writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new NotImplementedException(); } + public static void CopyBufferSubData(OpenTK.Graphics.ES31.All readTarget, OpenTK.Graphics.ES31.All writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Copy pixels into a 2D texture image @@ -6419,7 +6419,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCopyTexImage2D")] - public static void CopyTexImage2D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new NotImplementedException(); } + public static void CopyTexImage2D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Copy pixels into a 2D texture image @@ -6449,7 +6449,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the width of the border. Must be 0. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCopyTexImage2D")] - public static void CopyTexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new NotImplementedException(); } + public static void CopyTexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Copy a two-dimensional texture subimage @@ -6480,7 +6480,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCopyTexSubImage2D")] - public static void CopyTexSubImage2D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage2D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Copy a two-dimensional texture subimage @@ -6510,7 +6510,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the height of the texture subimage. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCopyTexSubImage2D")] - public static void CopyTexSubImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Copy a three-dimensional texture subimage @@ -6544,7 +6544,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCopyTexSubImage3D")] - public static void CopyTexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Copy a three-dimensional texture subimage @@ -6577,13 +6577,13 @@ namespace OpenTK.Graphics.ES31 /// Specifies the height of the texture subimage. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCopyTexSubImage3D")] - public static void CopyTexSubImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates a program object /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCreateProgram")] - public static Int32 CreateProgram() { throw new NotImplementedException(); } + public static Int32 CreateProgram() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates a shader object @@ -6592,7 +6592,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the type of shader to be created. VertexShader, FragmentShader, or ComputeShader, /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCreateShader")] - public static Int32 CreateShader(OpenTK.Graphics.ES31.All type) { throw new NotImplementedException(); } + public static Int32 CreateShader(OpenTK.Graphics.ES31.All type) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Create a stand-alone program from an array of null-terminated source code strings @@ -6607,7 +6607,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the address of an array of pointers to source code strings from which to create the program object. /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glCreateShaderProgramv")] - public static Int32 CreateShaderProgram(OpenTK.Graphics.ES31.All type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new NotImplementedException(); } + public static Int32 CreateShaderProgram(OpenTK.Graphics.ES31.All type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify whether front- or back-facing polygons can be culled @@ -6617,7 +6617,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCullFace")] - public static void CullFace(OpenTK.Graphics.ES31.All mode) { throw new NotImplementedException(); } + public static void CullFace(OpenTK.Graphics.ES31.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify whether front- or back-facing polygons can be culled @@ -6626,7 +6626,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies whether front- or back-facing polygons are candidates for culling. Symbolic constants Front, Back, and FrontAndBack are accepted. The initial value is Back. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCullFace")] - public static void CullFace(OpenTK.Graphics.ES31.CullFaceMode mode) { throw new NotImplementedException(); } + public static void CullFace(OpenTK.Graphics.ES31.CullFaceMode mode) { throw new BindingsNotRewrittenException(); } /// /// Specify a callback to receive debugging messages from the GL @@ -6638,7 +6638,7 @@ namespace OpenTK.Graphics.ES31 /// A user supplied pointer that will be passed on each invocation of callback. /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallback")] - public static void DebugMessageCallback(DebugProc callback, IntPtr userParam) { throw new NotImplementedException(); } + public static void DebugMessageCallback(DebugProc callback, IntPtr userParam) { throw new BindingsNotRewrittenException(); } /// /// Specify a callback to receive debugging messages from the GL @@ -6653,7 +6653,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Specify a callback to receive debugging messages from the GL @@ -6668,7 +6668,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Specify a callback to receive debugging messages from the GL @@ -6683,7 +6683,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[,,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Specify a callback to receive debugging messages from the GL @@ -6697,7 +6697,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallback")] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] ref T1 userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -6722,7 +6722,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -6747,7 +6747,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -6772,7 +6772,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -6797,7 +6797,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -6822,7 +6822,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -6847,7 +6847,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Inject an application-supplied message into the debug message queue @@ -6872,7 +6872,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsert")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, Int32 id, OpenTK.Graphics.ES31.All severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, Int32 id, OpenTK.Graphics.ES31.All severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new BindingsNotRewrittenException(); } /// /// Inject an application-supplied message into the debug message queue @@ -6897,7 +6897,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsert")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, UInt32 id, OpenTK.Graphics.ES31.All severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, UInt32 id, OpenTK.Graphics.ES31.All severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -6907,7 +6907,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffer([CountAttribute(Parameter = "n")] Int32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffer([CountAttribute(Parameter = "n")] Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -6917,7 +6917,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffer([CountAttribute(Parameter = "n")] UInt32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffer([CountAttribute(Parameter = "n")] UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -6930,7 +6930,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -6943,7 +6943,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -6956,7 +6956,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* buffers) { throw new NotImplementedException(); } + public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -6969,7 +6969,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -6982,7 +6982,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -6995,7 +6995,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* buffers) { throw new NotImplementedException(); } + public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete framebuffer objects @@ -7005,7 +7005,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] Int32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete framebuffer objects @@ -7015,7 +7015,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] UInt32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete framebuffer objects @@ -7028,7 +7028,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete framebuffer objects @@ -7041,7 +7041,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete framebuffer objects @@ -7054,7 +7054,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete framebuffer objects @@ -7067,7 +7067,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete framebuffer objects @@ -7080,7 +7080,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete framebuffer objects @@ -7093,7 +7093,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Deletes a program object @@ -7103,7 +7103,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteProgram")] [CLSCompliant(false)] - public static void DeleteProgram(Int32 program) { throw new NotImplementedException(); } + public static void DeleteProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Deletes a program object @@ -7113,7 +7113,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteProgram")] [CLSCompliant(false)] - public static void DeleteProgram(UInt32 program) { throw new NotImplementedException(); } + public static void DeleteProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Delete program pipeline objects @@ -7123,7 +7123,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDeleteProgramPipelines")] [CLSCompliant(false)] - public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] Int32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Delete program pipeline objects @@ -7133,7 +7133,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDeleteProgramPipelines")] [CLSCompliant(false)] - public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] UInt32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Delete program pipeline objects @@ -7146,7 +7146,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDeleteProgramPipelines")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Delete program pipeline objects @@ -7159,7 +7159,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDeleteProgramPipelines")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Delete program pipeline objects @@ -7172,7 +7172,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDeleteProgramPipelines")] [CLSCompliant(false)] - public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32* pipelines) { throw new NotImplementedException(); } + public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Delete program pipeline objects @@ -7185,7 +7185,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDeleteProgramPipelines")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Delete program pipeline objects @@ -7198,7 +7198,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDeleteProgramPipelines")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Delete program pipeline objects @@ -7211,7 +7211,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDeleteProgramPipelines")] [CLSCompliant(false)] - public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new NotImplementedException(); } + public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named query objects @@ -7221,7 +7221,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQuery([CountAttribute(Parameter = "n")] Int32 ids) { throw new NotImplementedException(); } + public static void DeleteQuery([CountAttribute(Parameter = "n")] Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named query objects @@ -7231,7 +7231,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQuery([CountAttribute(Parameter = "n")] UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteQuery([CountAttribute(Parameter = "n")] UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named query objects @@ -7244,7 +7244,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named query objects @@ -7257,7 +7257,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named query objects @@ -7270,7 +7270,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named query objects @@ -7283,7 +7283,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named query objects @@ -7296,7 +7296,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named query objects @@ -7309,7 +7309,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete renderbuffer objects @@ -7319,7 +7319,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] Int32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete renderbuffer objects @@ -7329,7 +7329,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete renderbuffer objects @@ -7342,7 +7342,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete renderbuffer objects @@ -7355,7 +7355,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete renderbuffer objects @@ -7368,7 +7368,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete renderbuffer objects @@ -7381,7 +7381,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete renderbuffer objects @@ -7394,7 +7394,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete renderbuffer objects @@ -7407,7 +7407,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named sampler objects @@ -7417,7 +7417,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static void DeleteSampler([CountAttribute(Parameter = "count")] Int32 samplers) { throw new NotImplementedException(); } + public static void DeleteSampler([CountAttribute(Parameter = "count")] Int32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named sampler objects @@ -7427,7 +7427,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static void DeleteSampler([CountAttribute(Parameter = "count")] UInt32 samplers) { throw new NotImplementedException(); } + public static void DeleteSampler([CountAttribute(Parameter = "count")] UInt32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named sampler objects @@ -7440,7 +7440,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] Int32[] samplers) { throw new NotImplementedException(); } + public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] Int32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named sampler objects @@ -7453,7 +7453,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 samplers) { throw new NotImplementedException(); } + public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named sampler objects @@ -7466,7 +7466,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static unsafe void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] Int32* samplers) { throw new NotImplementedException(); } + public static unsafe void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] Int32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named sampler objects @@ -7479,7 +7479,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] samplers) { throw new NotImplementedException(); } + public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named sampler objects @@ -7492,7 +7492,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 samplers) { throw new NotImplementedException(); } + public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named sampler objects @@ -7505,7 +7505,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static unsafe void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] UInt32* samplers) { throw new NotImplementedException(); } + public static unsafe void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] UInt32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Deletes a shader object @@ -7515,7 +7515,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteShader")] [CLSCompliant(false)] - public static void DeleteShader(Int32 shader) { throw new NotImplementedException(); } + public static void DeleteShader(Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Deletes a shader object @@ -7525,7 +7525,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteShader")] [CLSCompliant(false)] - public static void DeleteShader(UInt32 shader) { throw new NotImplementedException(); } + public static void DeleteShader(UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete a sync object @@ -7534,7 +7534,7 @@ namespace OpenTK.Graphics.ES31 /// The sync object to be deleted. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSync")] - public static void DeleteSync(IntPtr sync) { throw new NotImplementedException(); } + public static void DeleteSync(IntPtr sync) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -7544,7 +7544,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTexture([CountAttribute(Parameter = "n")] Int32 textures) { throw new NotImplementedException(); } + public static void DeleteTexture([CountAttribute(Parameter = "n")] Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -7554,7 +7554,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTexture([CountAttribute(Parameter = "n")] UInt32 textures) { throw new NotImplementedException(); } + public static void DeleteTexture([CountAttribute(Parameter = "n")] UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -7567,7 +7567,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -7580,7 +7580,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -7593,7 +7593,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures) { throw new NotImplementedException(); } + public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -7606,7 +7606,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -7619,7 +7619,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -7632,7 +7632,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures) { throw new NotImplementedException(); } + public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete transform feedback objects @@ -7642,7 +7642,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static void DeleteTransformFeedback([CountAttribute(Parameter = "n")] Int32 ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedback([CountAttribute(Parameter = "n")] Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete transform feedback objects @@ -7652,7 +7652,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static void DeleteTransformFeedback([CountAttribute(Parameter = "n")] UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedback([CountAttribute(Parameter = "n")] UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete transform feedback objects @@ -7665,7 +7665,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete transform feedback objects @@ -7678,7 +7678,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete transform feedback objects @@ -7691,7 +7691,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete transform feedback objects @@ -7704,7 +7704,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete transform feedback objects @@ -7717,7 +7717,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete transform feedback objects @@ -7730,7 +7730,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete vertex array objects @@ -7740,7 +7740,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static void DeleteVertexArray([CountAttribute(Parameter = "n")] Int32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArray([CountAttribute(Parameter = "n")] Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete vertex array objects @@ -7750,7 +7750,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static void DeleteVertexArray([CountAttribute(Parameter = "n")] UInt32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArray([CountAttribute(Parameter = "n")] UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete vertex array objects @@ -7763,7 +7763,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32[] arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete vertex array objects @@ -7776,7 +7776,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete vertex array objects @@ -7789,7 +7789,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32* arrays) { throw new NotImplementedException(); } + public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete vertex array objects @@ -7802,7 +7802,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete vertex array objects @@ -7815,7 +7815,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete vertex array objects @@ -7828,7 +7828,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays) { throw new NotImplementedException(); } + public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value used for depth buffer comparisons @@ -7838,7 +7838,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDepthFunc")] - public static void DepthFunc(OpenTK.Graphics.ES31.All func) { throw new NotImplementedException(); } + public static void DepthFunc(OpenTK.Graphics.ES31.All func) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value used for depth buffer comparisons @@ -7847,7 +7847,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the depth comparison function. Symbolic constants Never, Less, Equal, Lequal, Greater, Notequal, Gequal, and Always are accepted. The initial value is Less. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDepthFunc")] - public static void DepthFunc(OpenTK.Graphics.ES31.DepthFunction func) { throw new NotImplementedException(); } + public static void DepthFunc(OpenTK.Graphics.ES31.DepthFunction func) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Enable or disable writing into the depth buffer @@ -7856,7 +7856,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies whether the depth buffer is enabled for writing. If flag is False, depth buffer writing is disabled. Otherwise, it is enabled. Initially, depth buffer writing is enabled. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDepthMask")] - public static void DepthMask(bool flag) { throw new NotImplementedException(); } + public static void DepthMask(bool flag) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify mapping of depth values from normalized device coordinates to window coordinates @@ -7868,7 +7868,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the mapping of the far clipping plane to window coordinates. The initial value is 1. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDepthRangef")] - public static void DepthRange(Single n, Single f) { throw new NotImplementedException(); } + public static void DepthRange(Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Detaches a shader object from a program object to which it is attached @@ -7881,7 +7881,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDetachShader")] [CLSCompliant(false)] - public static void DetachShader(Int32 program, Int32 shader) { throw new NotImplementedException(); } + public static void DetachShader(Int32 program, Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Detaches a shader object from a program object to which it is attached @@ -7894,30 +7894,30 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDetachShader")] [CLSCompliant(false)] - public static void DetachShader(UInt32 program, UInt32 shader) { throw new NotImplementedException(); } + public static void DetachShader(UInt32 program, UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDisable")] - public static void Disable(OpenTK.Graphics.ES31.All cap) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES31.All cap) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDisable")] - public static void Disable(OpenTK.Graphics.ES31.EnableCap cap) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES31.EnableCap cap) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDisableVertexAttribArray")] [CLSCompliant(false)] - public static void DisableVertexAttribArray(Int32 index) { throw new NotImplementedException(); } + public static void DisableVertexAttribArray(Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDisableVertexAttribArray")] [CLSCompliant(false)] - public static void DisableVertexAttribArray(UInt32 index) { throw new NotImplementedException(); } + public static void DisableVertexAttribArray(UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Launch one or more compute work groups @@ -7933,7 +7933,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDispatchCompute")] [CLSCompliant(false)] - public static void DispatchCompute(Int32 num_groups_x, Int32 num_groups_y, Int32 num_groups_z) { throw new NotImplementedException(); } + public static void DispatchCompute(Int32 num_groups_x, Int32 num_groups_y, Int32 num_groups_z) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Launch one or more compute work groups @@ -7949,7 +7949,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDispatchCompute")] [CLSCompliant(false)] - public static void DispatchCompute(UInt32 num_groups_x, UInt32 num_groups_y, UInt32 num_groups_z) { throw new NotImplementedException(); } + public static void DispatchCompute(UInt32 num_groups_x, UInt32 num_groups_y, UInt32 num_groups_z) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Launch one or more compute work groups using parameters stored in a buffer @@ -7958,7 +7958,7 @@ namespace OpenTK.Graphics.ES31 /// The offset into the buffer object currently bound to the DispatchIndirectBuffer buffer target at which the dispatch parameters are stored. /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDispatchComputeIndirect")] - public static void DispatchComputeIndirect(IntPtr indirect) { throw new NotImplementedException(); } + public static void DispatchComputeIndirect(IntPtr indirect) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -7974,7 +7974,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawArrays")] - public static void DrawArrays(OpenTK.Graphics.ES31.All mode, Int32 first, Int32 count) { throw new NotImplementedException(); } + public static void DrawArrays(OpenTK.Graphics.ES31.All mode, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -7989,7 +7989,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the number of indices to be rendered. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawArrays")] - public static void DrawArrays(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 first, Int32 count) { throw new NotImplementedException(); } + public static void DrawArrays(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Render primitives from array data, taking parameters from memory @@ -8002,7 +8002,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDrawArraysIndirect")] - public static void DrawArraysIndirect(OpenTK.Graphics.ES31.All mode, IntPtr indirect) { throw new NotImplementedException(); } + public static void DrawArraysIndirect(OpenTK.Graphics.ES31.All mode, IntPtr indirect) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Render primitives from array data, taking parameters from memory @@ -8018,7 +8018,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawArraysIndirect(OpenTK.Graphics.ES31.All mode, [InAttribute, OutAttribute] T1[] indirect) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Render primitives from array data, taking parameters from memory @@ -8034,7 +8034,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawArraysIndirect(OpenTK.Graphics.ES31.All mode, [InAttribute, OutAttribute] T1[,] indirect) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Render primitives from array data, taking parameters from memory @@ -8050,7 +8050,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawArraysIndirect(OpenTK.Graphics.ES31.All mode, [InAttribute, OutAttribute] T1[,,] indirect) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Render primitives from array data, taking parameters from memory @@ -8065,7 +8065,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDrawArraysIndirect")] public static void DrawArraysIndirect(OpenTK.Graphics.ES31.All mode, [InAttribute, OutAttribute] ref T1 indirect) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Render primitives from array data, taking parameters from memory @@ -8077,7 +8077,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the address of a structure containing the draw parameters. /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDrawArraysIndirect")] - public static void DrawArraysIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, IntPtr indirect) { throw new NotImplementedException(); } + public static void DrawArraysIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, IntPtr indirect) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Render primitives from array data, taking parameters from memory @@ -8092,7 +8092,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawArraysIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, [InAttribute, OutAttribute] T1[] indirect) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Render primitives from array data, taking parameters from memory @@ -8107,7 +8107,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawArraysIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, [InAttribute, OutAttribute] T1[,] indirect) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Render primitives from array data, taking parameters from memory @@ -8122,7 +8122,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawArraysIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, [InAttribute, OutAttribute] T1[,,] indirect) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Render primitives from array data, taking parameters from memory @@ -8136,7 +8136,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDrawArraysIndirect")] public static void DrawArraysIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, [InAttribute, OutAttribute] ref T1 indirect) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a range of elements @@ -8155,7 +8155,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawArraysInstanced")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES31.All mode, Int32 first, Int32 count, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES31.All mode, Int32 first, Int32 count, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a range of elements @@ -8173,7 +8173,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawArraysInstanced")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specifies a list of color buffers to be drawn into @@ -8186,7 +8186,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawBuffers")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES31.All[] bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES31.All[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specifies a list of color buffers to be drawn into @@ -8199,7 +8199,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawBuffers")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES31.All bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES31.All bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specifies a list of color buffers to be drawn into @@ -8212,7 +8212,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawBuffers")] [CLSCompliant(false)] - public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES31.All* bufs) { throw new NotImplementedException(); } + public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES31.All* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8231,7 +8231,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] - public static void DrawElements(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawElements(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8253,7 +8253,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8275,7 +8275,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8297,7 +8297,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8318,7 +8318,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] public static void DrawElements(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8336,7 +8336,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a pointer to the location where the indices are stored. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] - public static void DrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8357,7 +8357,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8378,7 +8378,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8399,7 +8399,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8419,7 +8419,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] public static void DrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Render indexed primitives from array data, taking parameters from memory @@ -8435,7 +8435,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDrawElementsIndirect")] - public static void DrawElementsIndirect(OpenTK.Graphics.ES31.All mode, OpenTK.Graphics.ES31.All type, IntPtr indirect) { throw new NotImplementedException(); } + public static void DrawElementsIndirect(OpenTK.Graphics.ES31.All mode, OpenTK.Graphics.ES31.All type, IntPtr indirect) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Render indexed primitives from array data, taking parameters from memory @@ -8454,7 +8454,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsIndirect(OpenTK.Graphics.ES31.All mode, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute] T2[] indirect) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Render indexed primitives from array data, taking parameters from memory @@ -8473,7 +8473,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsIndirect(OpenTK.Graphics.ES31.All mode, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute] T2[,] indirect) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Render indexed primitives from array data, taking parameters from memory @@ -8492,7 +8492,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsIndirect(OpenTK.Graphics.ES31.All mode, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute] T2[,,] indirect) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Render indexed primitives from array data, taking parameters from memory @@ -8510,7 +8510,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDrawElementsIndirect")] public static void DrawElementsIndirect(OpenTK.Graphics.ES31.All mode, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute] ref T2 indirect) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Render indexed primitives from array data, taking parameters from memory @@ -8525,7 +8525,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the address of a structure containing the draw parameters. /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDrawElementsIndirect")] - public static void DrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.All type, IntPtr indirect) { throw new NotImplementedException(); } + public static void DrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.All type, IntPtr indirect) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Render indexed primitives from array data, taking parameters from memory @@ -8543,7 +8543,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute] T2[] indirect) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Render indexed primitives from array data, taking parameters from memory @@ -8561,7 +8561,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute] T2[,] indirect) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Render indexed primitives from array data, taking parameters from memory @@ -8579,7 +8579,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute] T2[,,] indirect) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Render indexed primitives from array data, taking parameters from memory @@ -8596,7 +8596,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDrawElementsIndirect")] public static void DrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute] ref T2 indirect) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a set of elements @@ -8618,7 +8618,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawElementsInstanced")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a set of elements @@ -8643,7 +8643,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a set of elements @@ -8668,7 +8668,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a set of elements @@ -8693,7 +8693,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a set of elements @@ -8717,7 +8717,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawElementsInstanced")] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a set of elements @@ -8738,7 +8738,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawElementsInstanced")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a set of elements @@ -8762,7 +8762,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a set of elements @@ -8786,7 +8786,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a set of elements @@ -8810,7 +8810,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a set of elements @@ -8833,7 +8833,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawElementsInstanced")] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -8859,7 +8859,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawRangeElements")] [CLSCompliant(false)] - public static void DrawRangeElements(OpenTK.Graphics.ES31.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawRangeElements(OpenTK.Graphics.ES31.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -8887,7 +8887,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES31.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -8915,7 +8915,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES31.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -8943,7 +8943,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES31.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -8971,7 +8971,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES31.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -8997,7 +8997,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawRangeElements")] [CLSCompliant(false)] - public static void DrawRangeElements(OpenTK.Graphics.ES31.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawRangeElements(OpenTK.Graphics.ES31.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9025,7 +9025,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES31.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9053,7 +9053,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES31.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9081,7 +9081,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES31.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9109,7 +9109,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES31.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9134,7 +9134,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawRangeElements")] [CLSCompliant(false)] - public static void DrawRangeElements(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawRangeElements(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9161,7 +9161,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9188,7 +9188,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9215,7 +9215,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9242,7 +9242,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9267,7 +9267,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawRangeElements")] [CLSCompliant(false)] - public static void DrawRangeElements(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawRangeElements(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9294,7 +9294,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9321,7 +9321,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9348,7 +9348,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9375,7 +9375,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Enable or disable server-side GL capabilities @@ -9385,7 +9385,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glEnable")] - public static void Enable(OpenTK.Graphics.ES31.All cap) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES31.All cap) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Enable or disable server-side GL capabilities @@ -9394,7 +9394,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a symbolic constant indicating a GL capability. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glEnable")] - public static void Enable(OpenTK.Graphics.ES31.EnableCap cap) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES31.EnableCap cap) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Enable or disable a generic vertex attribute array @@ -9404,7 +9404,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glEnableVertexAttribArray")] [CLSCompliant(false)] - public static void EnableVertexAttribArray(Int32 index) { throw new NotImplementedException(); } + public static void EnableVertexAttribArray(Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Enable or disable a generic vertex attribute array @@ -9414,16 +9414,16 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glEnableVertexAttribArray")] [CLSCompliant(false)] - public static void EnableVertexAttribArray(UInt32 index) { throw new NotImplementedException(); } + public static void EnableVertexAttribArray(UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glEndQuery")] - public static void EndQuery(OpenTK.Graphics.ES31.All target) { throw new NotImplementedException(); } + public static void EndQuery(OpenTK.Graphics.ES31.All target) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glEndTransformFeedback")] - public static void EndTransformFeedback() { throw new NotImplementedException(); } + public static void EndTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Create a new sync object and insert it into the GL command stream @@ -9436,7 +9436,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFenceSync")] [CLSCompliant(false)] - public static IntPtr FenceSync(OpenTK.Graphics.ES31.All condition, Int32 flags) { throw new NotImplementedException(); } + public static IntPtr FenceSync(OpenTK.Graphics.ES31.All condition, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Create a new sync object and insert it into the GL command stream @@ -9449,19 +9449,19 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFenceSync")] [CLSCompliant(false)] - public static IntPtr FenceSync(OpenTK.Graphics.ES31.All condition, UInt32 flags) { throw new NotImplementedException(); } + public static IntPtr FenceSync(OpenTK.Graphics.ES31.All condition, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Block until all GL execution is complete /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFinish")] - public static void Finish() { throw new NotImplementedException(); } + public static void Finish() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Force execution of GL commands in finite time /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFlush")] - public static void Flush() { throw new NotImplementedException(); } + public static void Flush() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Indicate modifications to a range of a mapped buffer @@ -9477,7 +9477,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFlushMappedBufferRange")] - public static void FlushMappedBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Indicate modifications to a range of a mapped buffer @@ -9493,7 +9493,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFlushMappedBufferRange")] - public static void FlushMappedBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Indicate modifications to a range of a mapped buffer @@ -9508,7 +9508,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the length of the buffer subrange, in basic machine units. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFlushMappedBufferRange")] - public static void FlushMappedBufferRange(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Indicate modifications to a range of a mapped buffer @@ -9523,7 +9523,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the length of the buffer subrange, in basic machine units. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFlushMappedBufferRange")] - public static void FlushMappedBufferRange(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Set a named parameter of a framebuffer @@ -9538,7 +9538,7 @@ namespace OpenTK.Graphics.ES31 /// The new value for the parameter named pname. /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glFramebufferParameteri")] - public static void FramebufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, Int32 param) { throw new NotImplementedException(); } + public static void FramebufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a renderbuffer as a logical buffer to the currently bound framebuffer object @@ -9558,7 +9558,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferRenderbuffer")] [CLSCompliant(false)] - public static void FramebufferRenderbuffer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All renderbuffertarget, Int32 renderbuffer) { throw new NotImplementedException(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All renderbuffertarget, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a renderbuffer as a logical buffer to the currently bound framebuffer object @@ -9578,7 +9578,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferRenderbuffer")] [CLSCompliant(false)] - public static void FramebufferRenderbuffer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All renderbuffertarget, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All renderbuffertarget, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a renderbuffer as a logical buffer to the currently bound framebuffer object @@ -9597,7 +9597,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferRenderbuffer")] [CLSCompliant(false)] - public static void FramebufferRenderbuffer(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new NotImplementedException(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a renderbuffer as a logical buffer to the currently bound framebuffer object @@ -9616,7 +9616,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferRenderbuffer")] [CLSCompliant(false)] - public static void FramebufferRenderbuffer(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -9639,7 +9639,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")] [CLSCompliant(false)] - public static void FramebufferTexture2D(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture2D(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -9662,7 +9662,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")] [CLSCompliant(false)] - public static void FramebufferTexture2D(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture2D(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -9684,7 +9684,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")] [CLSCompliant(false)] - public static void FramebufferTexture2D(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.All textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture2D(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.All textarget, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -9706,7 +9706,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")] [CLSCompliant(false)] - public static void FramebufferTexture2D(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.All textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture2D(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.All textarget, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Attach a single layer of a texture to a framebuffer @@ -9729,7 +9729,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTextureLayer")] [CLSCompliant(false)] - public static void FramebufferTextureLayer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, Int32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } + public static void FramebufferTextureLayer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, Int32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Attach a single layer of a texture to a framebuffer @@ -9752,7 +9752,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTextureLayer")] [CLSCompliant(false)] - public static void FramebufferTextureLayer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, UInt32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } + public static void FramebufferTextureLayer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, UInt32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Attach a single layer of a texture to a framebuffer @@ -9774,7 +9774,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTextureLayer")] [CLSCompliant(false)] - public static void FramebufferTextureLayer(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } + public static void FramebufferTextureLayer(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Attach a single layer of a texture to a framebuffer @@ -9796,7 +9796,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTextureLayer")] [CLSCompliant(false)] - public static void FramebufferTextureLayer(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } + public static void FramebufferTextureLayer(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define front- and back-facing polygons @@ -9806,7 +9806,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFrontFace")] - public static void FrontFace(OpenTK.Graphics.ES31.All mode) { throw new NotImplementedException(); } + public static void FrontFace(OpenTK.Graphics.ES31.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define front- and back-facing polygons @@ -9815,14 +9815,14 @@ namespace OpenTK.Graphics.ES31 /// Specifies the orientation of front-facing polygons. Cw and Ccw are accepted. The initial value is Ccw. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFrontFace")] - public static void FrontFace(OpenTK.Graphics.ES31.FrontFaceDirection mode) { throw new NotImplementedException(); } + public static void FrontFace(OpenTK.Graphics.ES31.FrontFaceDirection mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static Int32 GenBuffer() { throw new NotImplementedException(); } + public static Int32 GenBuffer() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names @@ -9835,7 +9835,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names @@ -9848,7 +9848,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names @@ -9861,7 +9861,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* buffers) { throw new NotImplementedException(); } + public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names @@ -9874,7 +9874,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names @@ -9887,7 +9887,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names @@ -9900,7 +9900,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* buffers) { throw new NotImplementedException(); } + public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate mipmaps for a specified texture target @@ -9909,14 +9909,14 @@ namespace OpenTK.Graphics.ES31 /// Specifies the target to which the texture whose mimaps to generate is bound. target must be Texture2D, Texture3D, Texture2DArray or TextureCubeMap. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenerateMipmap")] - public static void GenerateMipmap(OpenTK.Graphics.ES31.All target) { throw new NotImplementedException(); } + public static void GenerateMipmap(OpenTK.Graphics.ES31.All target) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static Int32 GenFramebuffer() { throw new NotImplementedException(); } + public static Int32 GenFramebuffer() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names @@ -9929,7 +9929,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names @@ -9942,7 +9942,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names @@ -9955,7 +9955,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names @@ -9968,7 +9968,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names @@ -9981,7 +9981,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names @@ -9994,14 +9994,14 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Reserve program pipeline object names /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGenProgramPipelines")] [CLSCompliant(false)] - public static Int32 GenProgramPipeline() { throw new NotImplementedException(); } + public static Int32 GenProgramPipeline() { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Reserve program pipeline object names @@ -10014,7 +10014,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGenProgramPipelines")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Reserve program pipeline object names @@ -10027,7 +10027,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGenProgramPipelines")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Reserve program pipeline object names @@ -10040,7 +10040,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGenProgramPipelines")] [CLSCompliant(false)] - public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* pipelines) { throw new NotImplementedException(); } + public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Reserve program pipeline object names @@ -10053,7 +10053,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGenProgramPipelines")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Reserve program pipeline object names @@ -10066,7 +10066,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGenProgramPipelines")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Reserve program pipeline object names @@ -10079,14 +10079,14 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGenProgramPipelines")] [CLSCompliant(false)] - public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new NotImplementedException(); } + public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate query object names /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static Int32 GenQuery() { throw new NotImplementedException(); } + public static Int32 GenQuery() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate query object names @@ -10099,7 +10099,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate query object names @@ -10112,7 +10112,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate query object names @@ -10125,7 +10125,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate query object names @@ -10138,7 +10138,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate query object names @@ -10151,7 +10151,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate query object names @@ -10164,14 +10164,14 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static Int32 GenRenderbuffer() { throw new NotImplementedException(); } + public static Int32 GenRenderbuffer() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names @@ -10184,7 +10184,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names @@ -10197,7 +10197,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names @@ -10210,7 +10210,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names @@ -10223,7 +10223,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names @@ -10236,7 +10236,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names @@ -10249,14 +10249,14 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate sampler object names /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static Int32 GenSampler() { throw new NotImplementedException(); } + public static Int32 GenSampler() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate sampler object names @@ -10269,7 +10269,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] samplers) { throw new NotImplementedException(); } + public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate sampler object names @@ -10282,7 +10282,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 samplers) { throw new NotImplementedException(); } + public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate sampler object names @@ -10295,7 +10295,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static unsafe void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] Int32* samplers) { throw new NotImplementedException(); } + public static unsafe void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] Int32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate sampler object names @@ -10308,7 +10308,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] samplers) { throw new NotImplementedException(); } + public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate sampler object names @@ -10321,7 +10321,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 samplers) { throw new NotImplementedException(); } + public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate sampler object names @@ -10334,14 +10334,14 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static unsafe void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* samplers) { throw new NotImplementedException(); } + public static unsafe void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static Int32 GenTexture() { throw new NotImplementedException(); } + public static Int32 GenTexture() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names @@ -10354,7 +10354,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names @@ -10367,7 +10367,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names @@ -10380,7 +10380,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* textures) { throw new NotImplementedException(); } + public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names @@ -10393,7 +10393,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names @@ -10406,7 +10406,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names @@ -10419,14 +10419,14 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* textures) { throw new NotImplementedException(); } + public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Reserve transform feedback object names /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static Int32 GenTransformFeedback() { throw new NotImplementedException(); } + public static Int32 GenTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Reserve transform feedback object names @@ -10439,7 +10439,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Reserve transform feedback object names @@ -10452,7 +10452,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new NotImplementedException(); } + public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Reserve transform feedback object names @@ -10465,7 +10465,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Reserve transform feedback object names @@ -10478,7 +10478,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Reserve transform feedback object names @@ -10491,7 +10491,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new NotImplementedException(); } + public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Reserve transform feedback object names @@ -10504,14 +10504,14 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate vertex array object names /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static Int32 GenVertexArray() { throw new NotImplementedException(); } + public static Int32 GenVertexArray() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate vertex array object names @@ -10524,7 +10524,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate vertex array object names @@ -10537,7 +10537,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate vertex array object names @@ -10550,7 +10550,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* arrays) { throw new NotImplementedException(); } + public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate vertex array object names @@ -10563,7 +10563,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate vertex array object names @@ -10576,7 +10576,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate vertex array object names @@ -10589,7 +10589,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays) { throw new NotImplementedException(); } + public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active attribute variable for the specified program object @@ -10617,7 +10617,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] - public static void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active attribute variable for the specified program object @@ -10645,7 +10645,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] - public static unsafe void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active attribute variable for the specified program object @@ -10673,7 +10673,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] - public static void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active attribute variable for the specified program object @@ -10701,7 +10701,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] - public static unsafe void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active uniform variable for the specified program object @@ -10729,7 +10729,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] - public static void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active uniform variable for the specified program object @@ -10757,7 +10757,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] - public static unsafe void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active uniform variable for the specified program object @@ -10785,7 +10785,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] - public static void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active uniform variable for the specified program object @@ -10813,7 +10813,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] - public static unsafe void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query information about an active uniform block @@ -10832,7 +10832,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] - public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query information about an active uniform block @@ -10851,7 +10851,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] - public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query information about an active uniform block @@ -10870,7 +10870,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] - public static unsafe void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query information about an active uniform block @@ -10889,7 +10889,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] - public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query information about an active uniform block @@ -10908,7 +10908,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] - public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query information about an active uniform block @@ -10927,7 +10927,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] - public static unsafe void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the name of an active uniform block @@ -10949,7 +10949,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockName")] [CLSCompliant(false)] - public static void GetActiveUniformBlockName(Int32 program, Int32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new NotImplementedException(); } + public static void GetActiveUniformBlockName(Int32 program, Int32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the name of an active uniform block @@ -10971,7 +10971,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockName")] [CLSCompliant(false)] - public static unsafe void GetActiveUniformBlockName(Int32 program, Int32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformBlockName(Int32 program, Int32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the name of an active uniform block @@ -10993,7 +10993,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockName")] [CLSCompliant(false)] - public static void GetActiveUniformBlockName(UInt32 program, UInt32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new NotImplementedException(); } + public static void GetActiveUniformBlockName(UInt32 program, UInt32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the name of an active uniform block @@ -11015,7 +11015,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockName")] [CLSCompliant(false)] - public static unsafe void GetActiveUniformBlockName(UInt32 program, UInt32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformBlockName(UInt32 program, UInt32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns information about several active uniform variables for the specified program object @@ -11037,7 +11037,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] - public static void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] Int32[] uniformIndices, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] Int32[] uniformIndices, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns information about several active uniform variables for the specified program object @@ -11059,7 +11059,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] - public static void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] ref Int32 uniformIndices, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] ref Int32 uniformIndices, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns information about several active uniform variables for the specified program object @@ -11081,7 +11081,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] - public static unsafe void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] Int32* uniformIndices, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] Int32* uniformIndices, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns information about several active uniform variables for the specified program object @@ -11103,7 +11103,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] - public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32[] uniformIndices, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32[] uniformIndices, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns information about several active uniform variables for the specified program object @@ -11125,7 +11125,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] - public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] ref UInt32 uniformIndices, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] ref UInt32 uniformIndices, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns information about several active uniform variables for the specified program object @@ -11147,7 +11147,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] - public static unsafe void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32* uniformIndices, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32* uniformIndices, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the handles of the shader objects attached to a program object @@ -11166,7 +11166,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32[] shaders) { throw new NotImplementedException(); } + public static void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32[] shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the handles of the shader objects attached to a program object @@ -11185,7 +11185,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out Int32 shaders) { throw new NotImplementedException(); } + public static void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out Int32 shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the handles of the shader objects attached to a program object @@ -11204,7 +11204,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static unsafe void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32* shaders) { throw new NotImplementedException(); } + public static unsafe void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32* shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the handles of the shader objects attached to a program object @@ -11223,7 +11223,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32[] shaders) { throw new NotImplementedException(); } + public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32[] shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the handles of the shader objects attached to a program object @@ -11242,7 +11242,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out UInt32 shaders) { throw new NotImplementedException(); } + public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out UInt32 shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the handles of the shader objects attached to a program object @@ -11261,7 +11261,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static unsafe void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32* shaders) { throw new NotImplementedException(); } + public static unsafe void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32* shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the location of an attribute variable @@ -11274,7 +11274,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttribLocation")] [CLSCompliant(false)] - public static Int32 GetAttribLocation(Int32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetAttribLocation(Int32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the location of an attribute variable @@ -11287,7 +11287,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttribLocation")] [CLSCompliant(false)] - public static Int32 GetAttribLocation(UInt32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetAttribLocation(UInt32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -11295,7 +11295,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetBooleani_v")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -11303,7 +11303,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetBooleani_v")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -11311,7 +11311,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetBooleani_v")] [CLSCompliant(false)] - public static unsafe void GetBoolean(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBoolean(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -11319,7 +11319,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetBooleani_v")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -11327,7 +11327,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetBooleani_v")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -11335,20 +11335,20 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetBooleani_v")] [CLSCompliant(false)] - public static unsafe void GetBoolean(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBoolean(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static bool GetBoolean(OpenTK.Graphics.ES31.All pname) { throw new NotImplementedException(); } + public static bool GetBoolean(OpenTK.Graphics.ES31.All pname) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static bool GetBoolean(OpenTK.Graphics.ES31.GetPName pname) { throw new NotImplementedException(); } + public static bool GetBoolean(OpenTK.Graphics.ES31.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -11356,7 +11356,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] bool[] data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -11364,7 +11364,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out bool data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -11372,28 +11372,28 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static unsafe void GetBoolean(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBoolean(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool[] data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out bool data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static unsafe void GetBoolean(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBoolean(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a buffer object @@ -11410,7 +11410,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferParameteri64v")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a buffer object @@ -11427,7 +11427,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferParameteri64v")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a buffer object @@ -11444,7 +11444,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferParameteri64v")] [CLSCompliant(false)] - public static unsafe void GetBufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a buffer object @@ -11460,7 +11460,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferParameteri64v")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a buffer object @@ -11476,7 +11476,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferParameteri64v")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a buffer object @@ -11492,7 +11492,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferParameteri64v")] [CLSCompliant(false)] - public static unsafe void GetBufferParameter(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a buffer object @@ -11509,7 +11509,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBufferParameteriv")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a buffer object @@ -11526,7 +11526,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBufferParameteriv")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a buffer object @@ -11543,7 +11543,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetBufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a buffer object @@ -11559,7 +11559,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBufferParameteriv")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a buffer object @@ -11575,7 +11575,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBufferParameteriv")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a buffer object @@ -11591,7 +11591,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetBufferParameter(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return the pointer to a mapped buffer object's data store @@ -11607,7 +11607,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferPointerv")] - public static void GetBufferPointer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetBufferPointer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return the pointer to a mapped buffer object's data store @@ -11626,7 +11626,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return the pointer to a mapped buffer object's data store @@ -11645,7 +11645,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return the pointer to a mapped buffer object's data store @@ -11664,7 +11664,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return the pointer to a mapped buffer object's data store @@ -11682,7 +11682,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferPointerv")] public static void GetBufferPointer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return the pointer to a mapped buffer object's data store @@ -11697,7 +11697,7 @@ namespace OpenTK.Graphics.ES31 /// Returns the pointer value specified by pname. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferPointerv")] - public static void GetBufferPointer(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetBufferPointer(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return the pointer to a mapped buffer object's data store @@ -11715,7 +11715,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return the pointer to a mapped buffer object's data store @@ -11733,7 +11733,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return the pointer to a mapped buffer object's data store @@ -11751,7 +11751,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return the pointer to a mapped buffer object's data store @@ -11768,7 +11768,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferPointerv")] public static void GetBufferPointer(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -11799,7 +11799,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -11830,7 +11830,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -11861,7 +11861,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -11892,7 +11892,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -11923,7 +11923,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -11954,26 +11954,26 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return error information /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetError")] - public static OpenTK.Graphics.ES31.ErrorCode GetError() { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES31.ErrorCode GetError() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static Single GetFloat(OpenTK.Graphics.ES31.All pname) { throw new NotImplementedException(); } + public static Single GetFloat(OpenTK.Graphics.ES31.All pname) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static Single GetFloat(OpenTK.Graphics.ES31.GetPName pname) { throw new NotImplementedException(); } + public static Single GetFloat(OpenTK.Graphics.ES31.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -11981,7 +11981,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -11989,7 +11989,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -11997,28 +11997,28 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query the bindings of color numbers to user-defined varying out variables @@ -12031,7 +12031,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetFragDataLocation")] [CLSCompliant(false)] - public static Int32 GetFragDataLocation(Int32 program, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetFragDataLocation(Int32 program, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query the bindings of color numbers to user-defined varying out variables @@ -12044,7 +12044,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetFragDataLocation")] [CLSCompliant(false)] - public static Int32 GetFragDataLocation(UInt32 program, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetFragDataLocation(UInt32 program, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about attachments of a bound framebuffer object @@ -12064,7 +12064,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about attachments of a bound framebuffer object @@ -12084,7 +12084,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about attachments of a bound framebuffer object @@ -12104,7 +12104,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about attachments of a bound framebuffer object @@ -12123,7 +12123,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about attachments of a bound framebuffer object @@ -12142,7 +12142,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about attachments of a bound framebuffer object @@ -12161,7 +12161,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve a named parameter from a framebuffer @@ -12177,7 +12177,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetFramebufferParameteriv")] [CLSCompliant(false)] - public static void GetFramebufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFramebufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve a named parameter from a framebuffer @@ -12193,7 +12193,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetFramebufferParameteriv")] [CLSCompliant(false)] - public static void GetFramebufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFramebufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve a named parameter from a framebuffer @@ -12209,11 +12209,11 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetFramebufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetFramebufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFramebufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetGraphicsResetStatus")] - public static OpenTK.Graphics.ES31.All GetGraphicsResetStatus() { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES31.All GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12221,7 +12221,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12229,7 +12229,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12237,7 +12237,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static unsafe void GetInteger64(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12245,7 +12245,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12253,7 +12253,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12261,34 +12261,34 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static unsafe void GetInteger64(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64v")] [CLSCompliant(false)] - public static Int64 GetInteger64(OpenTK.Graphics.ES31.All pname) { throw new NotImplementedException(); } + public static Int64 GetInteger64(OpenTK.Graphics.ES31.All pname) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64v")] [CLSCompliant(false)] - public static unsafe void GetInteger64(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12296,7 +12296,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12304,7 +12304,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12312,7 +12312,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12320,7 +12320,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12328,7 +12328,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12336,20 +12336,20 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static Int32 GetInteger(OpenTK.Graphics.ES31.All pname) { throw new NotImplementedException(); } + public static Int32 GetInteger(OpenTK.Graphics.ES31.All pname) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static Int32 GetInteger(OpenTK.Graphics.ES31.GetPName pname) { throw new NotImplementedException(); } + public static Int32 GetInteger(OpenTK.Graphics.ES31.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -12357,7 +12357,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -12365,7 +12365,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -12373,28 +12373,28 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about implementation-dependent support for internal formats @@ -12416,7 +12416,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInternalformativ")] [CLSCompliant(false)] - public static void GetInternalformat(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetInternalformat(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about implementation-dependent support for internal formats @@ -12438,7 +12438,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInternalformativ")] [CLSCompliant(false)] - public static void GetInternalformat(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetInternalformat(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about implementation-dependent support for internal formats @@ -12460,7 +12460,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInternalformativ")] [CLSCompliant(false)] - public static unsafe void GetInternalformat(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetInternalformat(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve the location of a sample @@ -12476,7 +12476,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetMultisamplefv")] [CLSCompliant(false)] - public static void GetMultisample(OpenTK.Graphics.ES31.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] val) { throw new NotImplementedException(); } + public static void GetMultisample(OpenTK.Graphics.ES31.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] val) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve the location of a sample @@ -12492,7 +12492,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetMultisamplefv")] [CLSCompliant(false)] - public static void GetMultisample(OpenTK.Graphics.ES31.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single val) { throw new NotImplementedException(); } + public static void GetMultisample(OpenTK.Graphics.ES31.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single val) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve the location of a sample @@ -12508,7 +12508,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetMultisamplefv")] [CLSCompliant(false)] - public static unsafe void GetMultisample(OpenTK.Graphics.ES31.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* val) { throw new NotImplementedException(); } + public static unsafe void GetMultisample(OpenTK.Graphics.ES31.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* val) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve the location of a sample @@ -12524,7 +12524,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetMultisamplefv")] [CLSCompliant(false)] - public static void GetMultisample(OpenTK.Graphics.ES31.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] val) { throw new NotImplementedException(); } + public static void GetMultisample(OpenTK.Graphics.ES31.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] val) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve the location of a sample @@ -12540,7 +12540,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetMultisamplefv")] [CLSCompliant(false)] - public static void GetMultisample(OpenTK.Graphics.ES31.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single val) { throw new NotImplementedException(); } + public static void GetMultisample(OpenTK.Graphics.ES31.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single val) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve the location of a sample @@ -12556,7 +12556,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetMultisamplefv")] [CLSCompliant(false)] - public static unsafe void GetMultisample(OpenTK.Graphics.ES31.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* val) { throw new NotImplementedException(); } + public static unsafe void GetMultisample(OpenTK.Graphics.ES31.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* val) { throw new BindingsNotRewrittenException(); } /// /// @@ -12565,7 +12565,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -12574,7 +12574,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -12583,7 +12583,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -12592,7 +12592,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -12601,7 +12601,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -12610,7 +12610,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -12619,7 +12619,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -12628,7 +12628,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -12637,7 +12637,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -12646,7 +12646,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -12655,7 +12655,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -12664,7 +12664,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -12673,7 +12673,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuiv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -12682,7 +12682,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuiv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -12691,7 +12691,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuiv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -12713,7 +12713,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -12735,7 +12735,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -12757,7 +12757,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -12779,7 +12779,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -12801,7 +12801,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -12823,7 +12823,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -12843,7 +12843,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] - public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -12863,7 +12863,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] - public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -12883,7 +12883,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] - public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -12905,7 +12905,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -12927,7 +12927,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -12949,7 +12949,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -12971,7 +12971,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -12993,7 +12993,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -13015,7 +13015,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -13037,7 +13037,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -13059,7 +13059,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -13081,7 +13081,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -13103,7 +13103,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -13125,7 +13125,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -13147,7 +13147,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -13160,7 +13160,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointerv")] - public static void GetPointer(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetPointer(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -13176,7 +13176,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -13192,7 +13192,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -13208,7 +13208,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -13223,7 +13223,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointerv")] public static void GetPointer(OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -13235,7 +13235,7 @@ namespace OpenTK.Graphics.ES31 /// Returns the pointer value specified by pname. /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointerv")] - public static void GetPointer(OpenTK.Graphics.ES31.GetPointervPName pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetPointer(OpenTK.Graphics.ES31.GetPointervPName pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -13250,7 +13250,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES31.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -13265,7 +13265,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES31.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -13280,7 +13280,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES31.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -13294,7 +13294,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointerv")] public static void GetPointer(OpenTK.Graphics.ES31.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -13316,7 +13316,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetProgramBinary")] [CLSCompliant(false)] - public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -13340,7 +13340,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -13364,7 +13364,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -13388,7 +13388,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -13412,7 +13412,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -13434,7 +13434,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetProgramBinary")] [CLSCompliant(false)] - public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -13458,7 +13458,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -13482,7 +13482,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -13506,7 +13506,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -13530,7 +13530,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -13552,7 +13552,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetProgramBinary")] [CLSCompliant(false)] - public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -13576,7 +13576,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -13600,7 +13600,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -13624,7 +13624,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -13648,7 +13648,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -13670,7 +13670,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetProgramBinary")] [CLSCompliant(false)] - public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -13694,7 +13694,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -13718,7 +13718,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -13742,7 +13742,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -13766,7 +13766,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the information log for a program object @@ -13785,7 +13785,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] [CLSCompliant(false)] - public static void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the information log for a program object @@ -13804,7 +13804,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] [CLSCompliant(false)] - public static unsafe void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the information log for a program object @@ -13823,7 +13823,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] [CLSCompliant(false)] - public static void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the information log for a program object @@ -13842,7 +13842,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] [CLSCompliant(false)] - public static unsafe void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Query a property of an interface in a program @@ -13861,7 +13861,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramInterfaceiv")] [CLSCompliant(false)] - public static void GetProgramInterface(Int32 program, OpenTK.Graphics.ES31.All programInterface, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramInterface(Int32 program, OpenTK.Graphics.ES31.All programInterface, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Query a property of an interface in a program @@ -13880,7 +13880,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramInterfaceiv")] [CLSCompliant(false)] - public static void GetProgramInterface(Int32 program, OpenTK.Graphics.ES31.All programInterface, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramInterface(Int32 program, OpenTK.Graphics.ES31.All programInterface, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Query a property of an interface in a program @@ -13899,7 +13899,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramInterfaceiv")] [CLSCompliant(false)] - public static unsafe void GetProgramInterface(Int32 program, OpenTK.Graphics.ES31.All programInterface, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramInterface(Int32 program, OpenTK.Graphics.ES31.All programInterface, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Query a property of an interface in a program @@ -13918,7 +13918,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramInterfaceiv")] [CLSCompliant(false)] - public static void GetProgramInterface(UInt32 program, OpenTK.Graphics.ES31.All programInterface, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramInterface(UInt32 program, OpenTK.Graphics.ES31.All programInterface, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Query a property of an interface in a program @@ -13937,7 +13937,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramInterfaceiv")] [CLSCompliant(false)] - public static void GetProgramInterface(UInt32 program, OpenTK.Graphics.ES31.All programInterface, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramInterface(UInt32 program, OpenTK.Graphics.ES31.All programInterface, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Query a property of an interface in a program @@ -13956,7 +13956,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramInterfaceiv")] [CLSCompliant(false)] - public static unsafe void GetProgramInterface(UInt32 program, OpenTK.Graphics.ES31.All programInterface, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramInterface(UInt32 program, OpenTK.Graphics.ES31.All programInterface, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a program object @@ -13972,7 +13972,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(Int32 program, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgram(Int32 program, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a program object @@ -13988,7 +13988,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(Int32 program, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(Int32 program, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a program object @@ -14004,7 +14004,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static unsafe void GetProgram(Int32 program, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(Int32 program, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a program object @@ -14020,7 +14020,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(UInt32 program, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgram(UInt32 program, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a program object @@ -14036,7 +14036,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(UInt32 program, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(UInt32 program, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a program object @@ -14052,7 +14052,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static unsafe void GetProgram(UInt32 program, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(UInt32 program, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve the info log string from a program pipeline object @@ -14071,7 +14071,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramPipelineInfoLog")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve the info log string from a program pipeline object @@ -14090,7 +14090,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramPipelineInfoLog")] [CLSCompliant(false)] - public static unsafe void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve the info log string from a program pipeline object @@ -14109,7 +14109,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramPipelineInfoLog")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve the info log string from a program pipeline object @@ -14128,7 +14128,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramPipelineInfoLog")] [CLSCompliant(false)] - public static unsafe void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve properties of a program pipeline object @@ -14144,7 +14144,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramPipelineiv")] [CLSCompliant(false)] - public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve properties of a program pipeline object @@ -14160,7 +14160,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramPipelineiv")] [CLSCompliant(false)] - public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve properties of a program pipeline object @@ -14176,7 +14176,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramPipelineiv")] [CLSCompliant(false)] - public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve properties of a program pipeline object @@ -14192,7 +14192,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramPipelineiv")] [CLSCompliant(false)] - public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve properties of a program pipeline object @@ -14208,7 +14208,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramPipelineiv")] [CLSCompliant(false)] - public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve properties of a program pipeline object @@ -14224,7 +14224,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramPipelineiv")] [CLSCompliant(false)] - public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Query the index of a named resource within a program @@ -14240,7 +14240,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceIndex")] [CLSCompliant(false)] - public static Int32 GetProgramResourceIndex(Int32 program, OpenTK.Graphics.ES31.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceIndex(Int32 program, OpenTK.Graphics.ES31.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Query the index of a named resource within a program @@ -14256,7 +14256,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceIndex")] [CLSCompliant(false)] - public static Int32 GetProgramResourceIndex(UInt32 program, OpenTK.Graphics.ES31.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceIndex(UInt32 program, OpenTK.Graphics.ES31.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve values for multiple properties of a single active resource within a program object @@ -14275,7 +14275,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] - public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES31.All programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.ES31.All[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES31.All programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.ES31.All[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve values for multiple properties of a single active resource within a program object @@ -14294,7 +14294,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] - public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES31.All programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] ref OpenTK.Graphics.ES31.All props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES31.All programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] ref OpenTK.Graphics.ES31.All props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve values for multiple properties of a single active resource within a program object @@ -14313,7 +14313,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] - public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.ES31.All programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.ES31.All* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.ES31.All programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.ES31.All* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve values for multiple properties of a single active resource within a program object @@ -14332,7 +14332,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] - public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES31.All programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.ES31.All[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES31.All programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.ES31.All[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve values for multiple properties of a single active resource within a program object @@ -14351,7 +14351,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] - public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES31.All programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] ref OpenTK.Graphics.ES31.All props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES31.All programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] ref OpenTK.Graphics.ES31.All props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve values for multiple properties of a single active resource within a program object @@ -14370,7 +14370,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] - public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.ES31.All programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.ES31.All* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.ES31.All programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.ES31.All* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Query the location of a named resource within a program @@ -14386,7 +14386,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceLocation")] [CLSCompliant(false)] - public static Int32 GetProgramResourceLocation(Int32 program, OpenTK.Graphics.ES31.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceLocation(Int32 program, OpenTK.Graphics.ES31.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Query the location of a named resource within a program @@ -14402,7 +14402,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceLocation")] [CLSCompliant(false)] - public static Int32 GetProgramResourceLocation(UInt32 program, OpenTK.Graphics.ES31.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceLocation(UInt32 program, OpenTK.Graphics.ES31.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Query the name of an indexed resource within a program @@ -14427,7 +14427,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceName")] [CLSCompliant(false)] - public static void GetProgramResourceName(Int32 program, OpenTK.Graphics.ES31.All programInterface, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetProgramResourceName(Int32 program, OpenTK.Graphics.ES31.All programInterface, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Query the name of an indexed resource within a program @@ -14452,7 +14452,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceName")] [CLSCompliant(false)] - public static unsafe void GetProgramResourceName(Int32 program, OpenTK.Graphics.ES31.All programInterface, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetProgramResourceName(Int32 program, OpenTK.Graphics.ES31.All programInterface, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Query the name of an indexed resource within a program @@ -14477,7 +14477,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceName")] [CLSCompliant(false)] - public static void GetProgramResourceName(UInt32 program, OpenTK.Graphics.ES31.All programInterface, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetProgramResourceName(UInt32 program, OpenTK.Graphics.ES31.All programInterface, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Query the name of an indexed resource within a program @@ -14502,7 +14502,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceName")] [CLSCompliant(false)] - public static unsafe void GetProgramResourceName(UInt32 program, OpenTK.Graphics.ES31.All programInterface, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetProgramResourceName(UInt32 program, OpenTK.Graphics.ES31.All programInterface, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object target @@ -14518,7 +14518,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryiv")] [CLSCompliant(false)] - public static void GetQuery(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQuery(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object target @@ -14534,7 +14534,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryiv")] [CLSCompliant(false)] - public static void GetQuery(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQuery(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object target @@ -14550,7 +14550,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryiv")] [CLSCompliant(false)] - public static unsafe void GetQuery(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQuery(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object @@ -14566,7 +14566,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object @@ -14582,7 +14582,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object @@ -14598,7 +14598,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object @@ -14614,7 +14614,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object @@ -14630,7 +14630,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object @@ -14646,7 +14646,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about a bound renderbuffer object @@ -14663,7 +14663,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetRenderbufferParameteriv")] [CLSCompliant(false)] - public static void GetRenderbufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about a bound renderbuffer object @@ -14680,7 +14680,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetRenderbufferParameteriv")] [CLSCompliant(false)] - public static void GetRenderbufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about a bound renderbuffer object @@ -14697,7 +14697,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetRenderbufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about a bound renderbuffer object @@ -14713,7 +14713,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetRenderbufferParameteriv")] [CLSCompliant(false)] - public static void GetRenderbufferParameter(OpenTK.Graphics.ES31.RenderbufferTarget target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.ES31.RenderbufferTarget target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about a bound renderbuffer object @@ -14729,7 +14729,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetRenderbufferParameteriv")] [CLSCompliant(false)] - public static void GetRenderbufferParameter(OpenTK.Graphics.ES31.RenderbufferTarget target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.ES31.RenderbufferTarget target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about a bound renderbuffer object @@ -14745,7 +14745,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetRenderbufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.ES31.RenderbufferTarget target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.ES31.RenderbufferTarget target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -14761,7 +14761,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -14777,7 +14777,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -14793,7 +14793,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -14809,7 +14809,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -14825,7 +14825,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -14841,7 +14841,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -14857,7 +14857,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -14873,7 +14873,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -14889,7 +14889,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -14905,7 +14905,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -14921,7 +14921,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -14937,7 +14937,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the information log for a shader object @@ -14956,7 +14956,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] [CLSCompliant(false)] - public static void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the information log for a shader object @@ -14975,7 +14975,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] [CLSCompliant(false)] - public static unsafe void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the information log for a shader object @@ -14994,7 +14994,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] [CLSCompliant(false)] - public static void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the information log for a shader object @@ -15013,7 +15013,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] [CLSCompliant(false)] - public static unsafe void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a shader object @@ -15029,7 +15029,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static void GetShader(Int32 shader, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetShader(Int32 shader, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a shader object @@ -15045,7 +15045,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static void GetShader(Int32 shader, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetShader(Int32 shader, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a shader object @@ -15061,7 +15061,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static unsafe void GetShader(Int32 shader, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetShader(Int32 shader, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a shader object @@ -15077,7 +15077,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static void GetShader(UInt32 shader, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetShader(UInt32 shader, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a shader object @@ -15093,7 +15093,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static void GetShader(UInt32 shader, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetShader(UInt32 shader, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a shader object @@ -15109,7 +15109,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static unsafe void GetShader(UInt32 shader, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetShader(UInt32 shader, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve the range and precision for numeric formats supported by the shader compiler @@ -15128,7 +15128,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderPrecisionFormat")] [CLSCompliant(false)] - public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES31.All shadertype, OpenTK.Graphics.ES31.All precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32[] range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new NotImplementedException(); } + public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES31.All shadertype, OpenTK.Graphics.ES31.All precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32[] range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve the range and precision for numeric formats supported by the shader compiler @@ -15147,7 +15147,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderPrecisionFormat")] [CLSCompliant(false)] - public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES31.All shadertype, OpenTK.Graphics.ES31.All precisiontype, [OutAttribute, CountAttribute(Count = 2)] out Int32 range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new NotImplementedException(); } + public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES31.All shadertype, OpenTK.Graphics.ES31.All precisiontype, [OutAttribute, CountAttribute(Count = 2)] out Int32 range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve the range and precision for numeric formats supported by the shader compiler @@ -15166,7 +15166,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderPrecisionFormat")] [CLSCompliant(false)] - public static unsafe void GetShaderPrecisionFormat(OpenTK.Graphics.ES31.All shadertype, OpenTK.Graphics.ES31.All precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32* range, [OutAttribute, CountAttribute(Count = 1)] Int32* precision) { throw new NotImplementedException(); } + public static unsafe void GetShaderPrecisionFormat(OpenTK.Graphics.ES31.All shadertype, OpenTK.Graphics.ES31.All precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32* range, [OutAttribute, CountAttribute(Count = 1)] Int32* precision) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the source code string from a shader object @@ -15185,7 +15185,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] [CLSCompliant(false)] - public static void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new NotImplementedException(); } + public static void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the source code string from a shader object @@ -15204,7 +15204,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] [CLSCompliant(false)] - public static unsafe void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new NotImplementedException(); } + public static unsafe void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the source code string from a shader object @@ -15223,7 +15223,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] [CLSCompliant(false)] - public static void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new NotImplementedException(); } + public static void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the source code string from a shader object @@ -15242,7 +15242,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] [CLSCompliant(false)] - public static unsafe void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new NotImplementedException(); } + public static unsafe void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a string describing the current GL connection @@ -15252,7 +15252,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetString")] - public static String GetString(OpenTK.Graphics.ES31.All name) { throw new NotImplementedException(); } + public static String GetString(OpenTK.Graphics.ES31.All name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a string describing the current GL connection @@ -15261,7 +15261,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a symbolic constant, one of Extensions, Renderer, ShadingLanguageVersion, Vendor, or Version. glGetStringi accepts only the Extensions token. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetString")] - public static String GetString(OpenTK.Graphics.ES31.StringName name) { throw new NotImplementedException(); } + public static String GetString(OpenTK.Graphics.ES31.StringName name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a string describing the current GL connection @@ -15274,7 +15274,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetStringi")] [CLSCompliant(false)] - public static String GetString(OpenTK.Graphics.ES31.All name, Int32 index) { throw new NotImplementedException(); } + public static String GetString(OpenTK.Graphics.ES31.All name, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a string describing the current GL connection @@ -15287,7 +15287,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetStringi")] [CLSCompliant(false)] - public static String GetString(OpenTK.Graphics.ES31.All name, UInt32 index) { throw new NotImplementedException(); } + public static String GetString(OpenTK.Graphics.ES31.All name, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query the properties of a sync object @@ -15309,7 +15309,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSynciv")] [CLSCompliant(false)] - public static void GetSync(IntPtr sync, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query the properties of a sync object @@ -15331,7 +15331,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSynciv")] [CLSCompliant(false)] - public static void GetSync(IntPtr sync, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query the properties of a sync object @@ -15353,7 +15353,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSynciv")] [CLSCompliant(false)] - public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Return texture parameter values for a specific level of detail @@ -15373,7 +15373,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetTexLevelParameterfv")] [CLSCompliant(false)] - public static void GetTexLevelParameter(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTexLevelParameter(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Return texture parameter values for a specific level of detail @@ -15393,7 +15393,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetTexLevelParameterfv")] [CLSCompliant(false)] - public static void GetTexLevelParameter(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTexLevelParameter(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Return texture parameter values for a specific level of detail @@ -15413,7 +15413,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetTexLevelParameterfv")] [CLSCompliant(false)] - public static unsafe void GetTexLevelParameter(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexLevelParameter(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Return texture parameter values for a specific level of detail @@ -15432,7 +15432,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetTexLevelParameterfv")] [CLSCompliant(false)] - public static void GetTexLevelParameter(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTexLevelParameter(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Return texture parameter values for a specific level of detail @@ -15451,7 +15451,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetTexLevelParameterfv")] [CLSCompliant(false)] - public static void GetTexLevelParameter(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTexLevelParameter(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Return texture parameter values for a specific level of detail @@ -15470,7 +15470,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetTexLevelParameterfv")] [CLSCompliant(false)] - public static unsafe void GetTexLevelParameter(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexLevelParameter(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Return texture parameter values for a specific level of detail @@ -15490,7 +15490,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetTexLevelParameteriv")] [CLSCompliant(false)] - public static void GetTexLevelParameter(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexLevelParameter(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Return texture parameter values for a specific level of detail @@ -15510,7 +15510,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetTexLevelParameteriv")] [CLSCompliant(false)] - public static void GetTexLevelParameter(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexLevelParameter(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Return texture parameter values for a specific level of detail @@ -15530,7 +15530,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetTexLevelParameteriv")] [CLSCompliant(false)] - public static unsafe void GetTexLevelParameter(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexLevelParameter(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Return texture parameter values for a specific level of detail @@ -15549,7 +15549,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetTexLevelParameteriv")] [CLSCompliant(false)] - public static void GetTexLevelParameter(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexLevelParameter(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Return texture parameter values for a specific level of detail @@ -15568,7 +15568,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetTexLevelParameteriv")] [CLSCompliant(false)] - public static void GetTexLevelParameter(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexLevelParameter(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Return texture parameter values for a specific level of detail @@ -15587,7 +15587,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetTexLevelParameteriv")] [CLSCompliant(false)] - public static unsafe void GetTexLevelParameter(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexLevelParameter(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -15604,7 +15604,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameterfv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -15621,7 +15621,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameterfv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -15638,7 +15638,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameterfv")] [CLSCompliant(false)] - public static unsafe void GetTexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -15654,7 +15654,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameterfv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -15670,7 +15670,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameterfv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -15686,7 +15686,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameterfv")] [CLSCompliant(false)] - public static unsafe void GetTexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -15703,7 +15703,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameteriv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -15720,7 +15720,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameteriv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -15737,7 +15737,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameteriv")] [CLSCompliant(false)] - public static unsafe void GetTexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -15753,7 +15753,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameteriv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -15769,7 +15769,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameteriv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -15785,7 +15785,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameteriv")] [CLSCompliant(false)] - public static unsafe void GetTexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about varying variables selected for transform feedback @@ -15813,7 +15813,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] [CLSCompliant(false)] - public static void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about varying variables selected for transform feedback @@ -15841,7 +15841,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about varying variables selected for transform feedback @@ -15869,7 +15869,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] [CLSCompliant(false)] - public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about varying variables selected for transform feedback @@ -15897,7 +15897,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the index of a named uniform block @@ -15910,7 +15910,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformBlockIndex")] [CLSCompliant(false)] - public static Int32 GetUniformBlockIndex(Int32 program, [CountAttribute(Computed = "")] String uniformBlockName) { throw new NotImplementedException(); } + public static Int32 GetUniformBlockIndex(Int32 program, [CountAttribute(Computed = "")] String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the index of a named uniform block @@ -15923,7 +15923,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformBlockIndex")] [CLSCompliant(false)] - public static Int32 GetUniformBlockIndex(UInt32 program, [CountAttribute(Computed = "")] String uniformBlockName) { throw new NotImplementedException(); } + public static Int32 GetUniformBlockIndex(UInt32 program, [CountAttribute(Computed = "")] String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -15939,7 +15939,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -15955,7 +15955,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Single @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -15971,7 +15971,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -15987,7 +15987,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -16003,7 +16003,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Single @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -16019,7 +16019,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the index of a named uniform block @@ -16038,7 +16038,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformIndices")] [CLSCompliant(false)] - public static void GetUniformIndices(Int32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] Int32[] uniformIndices) { throw new NotImplementedException(); } + public static void GetUniformIndices(Int32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] Int32[] uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the index of a named uniform block @@ -16057,7 +16057,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformIndices")] [CLSCompliant(false)] - public static void GetUniformIndices(Int32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] out Int32 uniformIndices) { throw new NotImplementedException(); } + public static void GetUniformIndices(Int32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] out Int32 uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the index of a named uniform block @@ -16076,7 +16076,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformIndices")] [CLSCompliant(false)] - public static unsafe void GetUniformIndices(Int32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] Int32* uniformIndices) { throw new NotImplementedException(); } + public static unsafe void GetUniformIndices(Int32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] Int32* uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the index of a named uniform block @@ -16095,7 +16095,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformIndices")] [CLSCompliant(false)] - public static void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] UInt32[] uniformIndices) { throw new NotImplementedException(); } + public static void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] UInt32[] uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the index of a named uniform block @@ -16114,7 +16114,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformIndices")] [CLSCompliant(false)] - public static void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] out UInt32 uniformIndices) { throw new NotImplementedException(); } + public static void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] out UInt32 uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the index of a named uniform block @@ -16133,7 +16133,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformIndices")] [CLSCompliant(false)] - public static unsafe void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] UInt32* uniformIndices) { throw new NotImplementedException(); } + public static unsafe void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] UInt32* uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -16149,7 +16149,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -16165,7 +16165,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -16181,7 +16181,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -16197,7 +16197,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -16213,7 +16213,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -16229,7 +16229,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the location of a uniform variable @@ -16242,7 +16242,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformLocation")] [CLSCompliant(false)] - public static Int32 GetUniformLocation(Int32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetUniformLocation(Int32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the location of a uniform variable @@ -16255,7 +16255,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformLocation")] [CLSCompliant(false)] - public static Int32 GetUniformLocation(UInt32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetUniformLocation(UInt32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns the value of a uniform variable @@ -16271,7 +16271,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformuiv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns the value of a uniform variable @@ -16287,7 +16287,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformuiv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns the value of a uniform variable @@ -16303,7 +16303,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformuiv")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -16319,7 +16319,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -16335,7 +16335,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -16351,7 +16351,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -16367,7 +16367,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -16383,7 +16383,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -16399,7 +16399,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -16407,7 +16407,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] [CLSCompliant(false)] - public static void GetVertexAttribI(Int32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribI(Int32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -16415,7 +16415,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribI(Int32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribI(Int32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -16423,7 +16423,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] [CLSCompliant(false)] - public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -16431,7 +16431,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -16439,7 +16439,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIuiv")] [CLSCompliant(false)] - public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -16447,7 +16447,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIuiv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -16463,7 +16463,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -16479,7 +16479,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -16495,7 +16495,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -16511,7 +16511,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -16527,7 +16527,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -16543,7 +16543,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -16559,7 +16559,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] [CLSCompliant(false)] - public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new NotImplementedException(); } + public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -16577,7 +16577,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -16595,7 +16595,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -16613,7 +16613,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -16631,7 +16631,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -16647,7 +16647,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] [CLSCompliant(false)] - public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new NotImplementedException(); } + public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -16665,7 +16665,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -16683,7 +16683,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -16701,7 +16701,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -16719,7 +16719,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify implementation-specific hints @@ -16732,7 +16732,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glHint")] - public static void Hint(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All mode) { throw new NotImplementedException(); } + public static void Hint(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify implementation-specific hints @@ -16744,7 +16744,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a symbolic constant indicating the desired behavior. Fastest, Nicest, and DontCare are accepted. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glHint")] - public static void Hint(OpenTK.Graphics.ES31.HintTarget target, OpenTK.Graphics.ES31.HintMode mode) { throw new NotImplementedException(); } + public static void Hint(OpenTK.Graphics.ES31.HintTarget target, OpenTK.Graphics.ES31.HintMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Invalidate the contents of attachments within a framebuffer @@ -16760,7 +16760,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateFramebuffer")] [CLSCompliant(false)] - public static void InvalidateFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES31.All[] attachments) { throw new NotImplementedException(); } + public static void InvalidateFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES31.All[] attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Invalidate the contents of attachments within a framebuffer @@ -16776,7 +16776,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateFramebuffer")] [CLSCompliant(false)] - public static void InvalidateFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES31.All attachments) { throw new NotImplementedException(); } + public static void InvalidateFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES31.All attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Invalidate the contents of attachments within a framebuffer @@ -16792,7 +16792,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateFramebuffer")] [CLSCompliant(false)] - public static unsafe void InvalidateFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES31.All* attachments) { throw new NotImplementedException(); } + public static unsafe void InvalidateFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES31.All* attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Invalidate portions of the contents of attachments within a framebuffer @@ -16820,7 +16820,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateSubFramebuffer")] [CLSCompliant(false)] - public static void InvalidateSubFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES31.All[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void InvalidateSubFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES31.All[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Invalidate portions of the contents of attachments within a framebuffer @@ -16848,7 +16848,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateSubFramebuffer")] [CLSCompliant(false)] - public static void InvalidateSubFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES31.All attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void InvalidateSubFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES31.All attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Invalidate portions of the contents of attachments within a framebuffer @@ -16876,7 +16876,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateSubFramebuffer")] [CLSCompliant(false)] - public static unsafe void InvalidateSubFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES31.All* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static unsafe void InvalidateSubFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES31.All* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a buffer object @@ -16886,7 +16886,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsBuffer")] [CLSCompliant(false)] - public static bool IsBuffer(Int32 buffer) { throw new NotImplementedException(); } + public static bool IsBuffer(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a buffer object @@ -16896,7 +16896,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsBuffer")] [CLSCompliant(false)] - public static bool IsBuffer(UInt32 buffer) { throw new NotImplementedException(); } + public static bool IsBuffer(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Test whether a capability is enabled @@ -16906,7 +16906,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsEnabled")] - public static bool IsEnabled(OpenTK.Graphics.ES31.All cap) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES31.All cap) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Test whether a capability is enabled @@ -16915,7 +16915,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a symbolic constant indicating a GL capability. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsEnabled")] - public static bool IsEnabled(OpenTK.Graphics.ES31.EnableCap cap) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES31.EnableCap cap) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a framebuffer object @@ -16925,7 +16925,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsFramebuffer")] [CLSCompliant(false)] - public static bool IsFramebuffer(Int32 framebuffer) { throw new NotImplementedException(); } + public static bool IsFramebuffer(Int32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a framebuffer object @@ -16935,7 +16935,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsFramebuffer")] [CLSCompliant(false)] - public static bool IsFramebuffer(UInt32 framebuffer) { throw new NotImplementedException(); } + public static bool IsFramebuffer(UInt32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determines if a name corresponds to a program object @@ -16945,7 +16945,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsProgram")] [CLSCompliant(false)] - public static bool IsProgram(Int32 program) { throw new NotImplementedException(); } + public static bool IsProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determines if a name corresponds to a program object @@ -16955,7 +16955,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsProgram")] [CLSCompliant(false)] - public static bool IsProgram(UInt32 program) { throw new NotImplementedException(); } + public static bool IsProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Determine if a name corresponds to a program pipeline object @@ -16965,7 +16965,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glIsProgramPipeline")] [CLSCompliant(false)] - public static bool IsProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } + public static bool IsProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Determine if a name corresponds to a program pipeline object @@ -16975,7 +16975,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glIsProgramPipeline")] [CLSCompliant(false)] - public static bool IsProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static bool IsProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Determine if a name corresponds to a query object @@ -16985,7 +16985,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glIsQuery")] [CLSCompliant(false)] - public static bool IsQuery(Int32 id) { throw new NotImplementedException(); } + public static bool IsQuery(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Determine if a name corresponds to a query object @@ -16995,7 +16995,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glIsQuery")] [CLSCompliant(false)] - public static bool IsQuery(UInt32 id) { throw new NotImplementedException(); } + public static bool IsQuery(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a renderbuffer object @@ -17005,7 +17005,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsRenderbuffer")] [CLSCompliant(false)] - public static bool IsRenderbuffer(Int32 renderbuffer) { throw new NotImplementedException(); } + public static bool IsRenderbuffer(Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a renderbuffer object @@ -17015,7 +17015,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsRenderbuffer")] [CLSCompliant(false)] - public static bool IsRenderbuffer(UInt32 renderbuffer) { throw new NotImplementedException(); } + public static bool IsRenderbuffer(UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Determine if a name corresponds to a sampler object @@ -17025,7 +17025,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glIsSampler")] [CLSCompliant(false)] - public static bool IsSampler(Int32 sampler) { throw new NotImplementedException(); } + public static bool IsSampler(Int32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Determine if a name corresponds to a sampler object @@ -17035,7 +17035,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glIsSampler")] [CLSCompliant(false)] - public static bool IsSampler(UInt32 sampler) { throw new NotImplementedException(); } + public static bool IsSampler(UInt32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determines if a name corresponds to a shader object @@ -17045,7 +17045,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsShader")] [CLSCompliant(false)] - public static bool IsShader(Int32 shader) { throw new NotImplementedException(); } + public static bool IsShader(Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determines if a name corresponds to a shader object @@ -17055,7 +17055,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsShader")] [CLSCompliant(false)] - public static bool IsShader(UInt32 shader) { throw new NotImplementedException(); } + public static bool IsShader(UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Determine if a name corresponds to a sync object @@ -17064,7 +17064,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a value that may be the name of a sync object. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glIsSync")] - public static bool IsSync(IntPtr sync) { throw new NotImplementedException(); } + public static bool IsSync(IntPtr sync) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a texture @@ -17074,7 +17074,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsTexture")] [CLSCompliant(false)] - public static bool IsTexture(Int32 texture) { throw new NotImplementedException(); } + public static bool IsTexture(Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a texture @@ -17084,7 +17084,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsTexture")] [CLSCompliant(false)] - public static bool IsTexture(UInt32 texture) { throw new NotImplementedException(); } + public static bool IsTexture(UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Determine if a name corresponds to a transform feedback object @@ -17094,7 +17094,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glIsTransformFeedback")] [CLSCompliant(false)] - public static bool IsTransformFeedback(Int32 id) { throw new NotImplementedException(); } + public static bool IsTransformFeedback(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Determine if a name corresponds to a transform feedback object @@ -17104,7 +17104,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glIsTransformFeedback")] [CLSCompliant(false)] - public static bool IsTransformFeedback(UInt32 id) { throw new NotImplementedException(); } + public static bool IsTransformFeedback(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Determine if a name corresponds to a vertex array object @@ -17114,7 +17114,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glIsVertexArray")] [CLSCompliant(false)] - public static bool IsVertexArray(Int32 array) { throw new NotImplementedException(); } + public static bool IsVertexArray(Int32 array) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Determine if a name corresponds to a vertex array object @@ -17124,7 +17124,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glIsVertexArray")] [CLSCompliant(false)] - public static bool IsVertexArray(UInt32 array) { throw new NotImplementedException(); } + public static bool IsVertexArray(UInt32 array) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the width of rasterized lines @@ -17133,7 +17133,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the width of rasterized lines. The initial value is 1. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glLineWidth")] - public static void LineWidth(Single width) { throw new NotImplementedException(); } + public static void LineWidth(Single width) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Links a program object @@ -17143,7 +17143,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glLinkProgram")] [CLSCompliant(false)] - public static void LinkProgram(Int32 program) { throw new NotImplementedException(); } + public static void LinkProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Links a program object @@ -17153,7 +17153,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glLinkProgram")] [CLSCompliant(false)] - public static void LinkProgram(UInt32 program) { throw new NotImplementedException(); } + public static void LinkProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Map a section of a buffer object's data store @@ -17172,7 +17172,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glMapBufferRange")] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 length, OpenTK.Graphics.ES31.All access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 length, OpenTK.Graphics.ES31.All access) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Map a section of a buffer object's data store @@ -17191,7 +17191,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glMapBufferRange")] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr length, OpenTK.Graphics.ES31.All access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr length, OpenTK.Graphics.ES31.All access) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Map a section of a buffer object's data store @@ -17209,7 +17209,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a combination of access flags indicating the desired access to the range. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glMapBufferRange")] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, Int32 length, OpenTK.Graphics.ES31.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, Int32 length, OpenTK.Graphics.ES31.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Map a section of a buffer object's data store @@ -17227,7 +17227,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a combination of access flags indicating the desired access to the range. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glMapBufferRange")] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, IntPtr length, OpenTK.Graphics.ES31.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, IntPtr length, OpenTK.Graphics.ES31.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Defines a barrier ordering memory transactions @@ -17237,7 +17237,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glMemoryBarrier")] [CLSCompliant(false)] - public static void MemoryBarrier(Int32 barriers) { throw new NotImplementedException(); } + public static void MemoryBarrier(Int32 barriers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Defines a barrier ordering memory transactions @@ -17247,19 +17247,19 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glMemoryBarrier")] [CLSCompliant(false)] - public static void MemoryBarrier(UInt32 barriers) { throw new NotImplementedException(); } + public static void MemoryBarrier(UInt32 barriers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glMemoryBarrierByRegion")] [CLSCompliant(false)] - public static void MemoryBarrierByRegion(Int32 barriers) { throw new NotImplementedException(); } + public static void MemoryBarrierByRegion(Int32 barriers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glMemoryBarrierByRegion")] [CLSCompliant(false)] - public static void MemoryBarrierByRegion(UInt32 barriers) { throw new NotImplementedException(); } + public static void MemoryBarrierByRegion(UInt32 barriers) { throw new BindingsNotRewrittenException(); } /// /// Label a named object identified within a namespace @@ -17278,7 +17278,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabel")] [CLSCompliant(false)] - public static void ObjectLabel(OpenTK.Graphics.ES31.All identifier, Int32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.ES31.All identifier, Int32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } /// /// Label a named object identified within a namespace @@ -17297,7 +17297,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabel")] [CLSCompliant(false)] - public static void ObjectLabel(OpenTK.Graphics.ES31.All identifier, UInt32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.ES31.All identifier, UInt32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } /// /// Label a a sync object identified by a pointer @@ -17312,7 +17312,7 @@ namespace OpenTK.Graphics.ES31 /// The address of a string containing the label to assign to the object. /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabel")] - public static void ObjectPtrLabel(IntPtr ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new NotImplementedException(); } + public static void ObjectPtrLabel(IntPtr ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } /// /// Label a a sync object identified by a pointer @@ -17330,7 +17330,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Label a a sync object identified by a pointer @@ -17348,7 +17348,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Label a a sync object identified by a pointer @@ -17366,7 +17366,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Label a a sync object identified by a pointer @@ -17383,13 +17383,13 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabel")] public static void ObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Pause transform feedback operations /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glPauseTransformFeedback")] - public static void PauseTransformFeedback() { throw new NotImplementedException(); } + public static void PauseTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set pixel storage modes @@ -17402,7 +17402,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glPixelStorei")] - public static void PixelStore(OpenTK.Graphics.ES31.All pname, Int32 param) { throw new NotImplementedException(); } + public static void PixelStore(OpenTK.Graphics.ES31.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set pixel storage modes @@ -17414,7 +17414,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the value that pname is set to. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glPixelStorei")] - public static void PixelStore(OpenTK.Graphics.ES31.PixelStoreParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void PixelStore(OpenTK.Graphics.ES31.PixelStoreParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set the scale and units used to calculate depth values @@ -17426,13 +17426,13 @@ namespace OpenTK.Graphics.ES31 /// Is multiplied by an implementation-specific value to create a constant depth offset. The initial value is 0. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glPolygonOffset")] - public static void PolygonOffset(Single factor, Single units) { throw new NotImplementedException(); } + public static void PolygonOffset(Single factor, Single units) { throw new BindingsNotRewrittenException(); } /// /// Pop the active debug group /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPopDebugGroup")] - public static void PopDebugGroup() { throw new NotImplementedException(); } + public static void PopDebugGroup() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Load a program object with a program binary @@ -17451,7 +17451,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glProgramBinary")] [CLSCompliant(false)] - public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES31.All binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES31.All binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Load a program object with a program binary @@ -17472,7 +17472,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Load a program object with a program binary @@ -17493,7 +17493,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Load a program object with a program binary @@ -17514,7 +17514,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Load a program object with a program binary @@ -17535,7 +17535,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T2 binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Load a program object with a program binary @@ -17554,7 +17554,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glProgramBinary")] [CLSCompliant(false)] - public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES31.All binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES31.All binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Load a program object with a program binary @@ -17575,7 +17575,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Load a program object with a program binary @@ -17596,7 +17596,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Load a program object with a program binary @@ -17617,7 +17617,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Load a program object with a program binary @@ -17638,7 +17638,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T2 binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a parameter for a program object @@ -17654,7 +17654,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glProgramParameteri")] [CLSCompliant(false)] - public static void ProgramParameter(Int32 program, OpenTK.Graphics.ES31.All pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(Int32 program, OpenTK.Graphics.ES31.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a parameter for a program object @@ -17670,7 +17670,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glProgramParameteri")] [CLSCompliant(false)] - public static void ProgramParameter(UInt32 program, OpenTK.Graphics.ES31.All pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(UInt32 program, OpenTK.Graphics.ES31.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -17686,7 +17686,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform1f")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Single v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -17702,7 +17702,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform1f")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Single v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -17721,7 +17721,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform1fv")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -17740,7 +17740,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform1fv")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -17759,7 +17759,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform1fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -17778,7 +17778,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform1fv")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -17797,7 +17797,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform1fv")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -17816,7 +17816,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform1fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -17832,7 +17832,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform1i")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -17848,7 +17848,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform1i")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -17867,7 +17867,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform1iv")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -17886,7 +17886,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform1iv")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -17905,7 +17905,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform1iv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -17924,7 +17924,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform1iv")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -17943,7 +17943,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform1iv")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -17962,7 +17962,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform1iv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -17978,7 +17978,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform1ui")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, UInt32 v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, UInt32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -17997,7 +17997,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform1uiv")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18016,7 +18016,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform1uiv")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18035,7 +18035,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform1uiv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18054,7 +18054,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform2f")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18073,7 +18073,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform2f")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18092,7 +18092,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform2fv")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18111,7 +18111,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform2fv")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18130,7 +18130,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform2fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18149,7 +18149,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform2fv")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18168,7 +18168,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform2fv")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18187,7 +18187,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform2fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18206,7 +18206,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform2i")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18225,7 +18225,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform2i")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18244,7 +18244,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform2iv")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18263,7 +18263,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform2iv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18282,7 +18282,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform2iv")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18301,7 +18301,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform2iv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18320,7 +18320,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform2ui")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, UInt32 v0, UInt32 v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, UInt32 v0, UInt32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18339,7 +18339,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform2uiv")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18358,7 +18358,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform2uiv")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18377,7 +18377,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform2uiv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18399,7 +18399,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform3f")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18421,7 +18421,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform3f")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18440,7 +18440,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform3fv")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18459,7 +18459,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform3fv")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18478,7 +18478,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform3fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18497,7 +18497,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform3fv")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18516,7 +18516,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform3fv")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18535,7 +18535,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform3fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18557,7 +18557,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform3i")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18579,7 +18579,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform3i")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18598,7 +18598,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform3iv")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18617,7 +18617,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform3iv")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18636,7 +18636,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform3iv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18655,7 +18655,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform3iv")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18674,7 +18674,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform3iv")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18693,7 +18693,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform3iv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18715,7 +18715,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform3ui")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18734,7 +18734,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform3uiv")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18753,7 +18753,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform3uiv")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18772,7 +18772,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform3uiv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18797,7 +18797,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform4f")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18822,7 +18822,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform4f")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18841,7 +18841,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform4fv")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18860,7 +18860,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform4fv")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18879,7 +18879,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform4fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18898,7 +18898,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform4fv")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18917,7 +18917,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform4fv")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18936,7 +18936,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform4fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18961,7 +18961,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform4i")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18986,7 +18986,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform4i")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -19005,7 +19005,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform4iv")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -19024,7 +19024,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform4iv")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -19043,7 +19043,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform4iv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -19062,7 +19062,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform4iv")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -19081,7 +19081,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform4iv")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -19100,7 +19100,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform4iv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -19125,7 +19125,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform4ui")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -19144,7 +19144,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform4uiv")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -19163,7 +19163,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform4uiv")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -19182,7 +19182,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform4uiv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19192,7 +19192,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*4] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19202,7 +19202,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*4] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19212,7 +19212,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*4] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix2fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19222,7 +19222,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*4] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19232,7 +19232,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*4] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19242,7 +19242,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*4] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix2fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19252,7 +19252,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix2x3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19262,7 +19262,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix2x3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19272,7 +19272,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix2x3fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19282,7 +19282,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix2x3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19292,7 +19292,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix2x3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19302,7 +19302,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix2x3fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19312,7 +19312,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix2x4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19322,7 +19322,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix2x4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19332,7 +19332,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix2x4fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19342,7 +19342,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix2x4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19352,7 +19352,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix2x4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19362,7 +19362,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix2x4fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19372,7 +19372,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*9] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19382,7 +19382,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*9] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19392,7 +19392,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*9] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix3fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19402,7 +19402,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*9] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19412,7 +19412,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*9] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19422,7 +19422,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*9] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix3fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19432,7 +19432,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix3x2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19442,7 +19442,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix3x2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19452,7 +19452,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix3x2fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19462,7 +19462,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix3x2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19472,7 +19472,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix3x2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19482,7 +19482,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix3x2fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19492,7 +19492,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix3x4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19502,7 +19502,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix3x4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19512,7 +19512,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix3x4fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19522,7 +19522,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix3x4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19532,7 +19532,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix3x4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19542,7 +19542,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix3x4fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19552,7 +19552,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*16] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19562,7 +19562,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*16] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19572,7 +19572,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*16] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix4fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19582,7 +19582,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*16] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19592,7 +19592,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*16] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19602,7 +19602,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*16] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix4fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19612,7 +19612,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix4x2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19622,7 +19622,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix4x2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19632,7 +19632,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix4x2fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19642,7 +19642,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix4x2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19652,7 +19652,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix4x2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19662,7 +19662,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix4x2fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19672,7 +19672,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix4x3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19682,7 +19682,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix4x3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19692,7 +19692,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix4x3fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19702,7 +19702,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix4x3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19712,7 +19712,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix4x3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19722,7 +19722,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix4x3fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// /// Push a named debug group into the command stream @@ -19741,7 +19741,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroup")] [CLSCompliant(false)] - public static void PushDebugGroup(OpenTK.Graphics.ES31.All source, Int32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new NotImplementedException(); } + public static void PushDebugGroup(OpenTK.Graphics.ES31.All source, Int32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new BindingsNotRewrittenException(); } /// /// Push a named debug group into the command stream @@ -19760,7 +19760,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroup")] [CLSCompliant(false)] - public static void PushDebugGroup(OpenTK.Graphics.ES31.All source, UInt32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new NotImplementedException(); } + public static void PushDebugGroup(OpenTK.Graphics.ES31.All source, UInt32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Select a color buffer source for pixels @@ -19770,7 +19770,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glReadBuffer")] - public static void ReadBuffer(OpenTK.Graphics.ES31.All src) { throw new NotImplementedException(); } + public static void ReadBuffer(OpenTK.Graphics.ES31.All src) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Select a color buffer source for pixels @@ -19779,7 +19779,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a color buffer. Accepted values are Back, None, and ColorAttachmenti. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glReadBuffer")] - public static void ReadBuffer(OpenTK.Graphics.ES31.ReadBufferMode src) { throw new NotImplementedException(); } + public static void ReadBuffer(OpenTK.Graphics.ES31.ReadBufferMode src) { throw new BindingsNotRewrittenException(); } /// /// @@ -19791,7 +19791,7 @@ namespace OpenTK.Graphics.ES31 /// /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixels")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [OutAttribute] IntPtr data) { throw new BindingsNotRewrittenException(); } /// /// @@ -19806,7 +19806,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [InAttribute, OutAttribute] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// @@ -19821,7 +19821,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [InAttribute, OutAttribute] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// @@ -19836,7 +19836,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [InAttribute, OutAttribute] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// @@ -19850,7 +19850,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixels")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [InAttribute, OutAttribute] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -19878,7 +19878,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReadPixels")] - public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -19909,7 +19909,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -19940,7 +19940,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -19971,7 +19971,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -20001,7 +20001,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReadPixels")] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T6 pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -20028,7 +20028,7 @@ namespace OpenTK.Graphics.ES31 /// Returns the pixel data. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReadPixels")] - public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -20058,7 +20058,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -20088,7 +20088,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -20118,7 +20118,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -20147,13 +20147,13 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReadPixels")] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T6 pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Release resources consumed by the implementation's shader compiler /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReleaseShaderCompiler")] - public static void ReleaseShaderCompiler() { throw new NotImplementedException(); } + public static void ReleaseShaderCompiler() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Establish data storage, format and dimensions of a renderbuffer object's image @@ -20172,7 +20172,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glRenderbufferStorage")] - public static void RenderbufferStorage(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorage(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Establish data storage, format and dimensions of a renderbuffer object's image @@ -20190,7 +20190,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glRenderbufferStorage")] - public static void RenderbufferStorage(OpenTK.Graphics.ES31.RenderbufferTarget target, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorage(OpenTK.Graphics.ES31.RenderbufferTarget target, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -20211,13 +20211,13 @@ namespace OpenTK.Graphics.ES31 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glRenderbufferStorageMultisample")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Resume transform feedback operations /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glResumeTransformFeedback")] - public static void ResumeTransformFeedback() { throw new NotImplementedException(); } + public static void ResumeTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify multisample coverage parameters @@ -20229,7 +20229,7 @@ namespace OpenTK.Graphics.ES31 /// Specify a single boolean value representing if the coverage masks should be inverted. True and False are accepted. The initial value is False. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glSampleCoverage")] - public static void SampleCoverage(Single value, bool invert) { throw new NotImplementedException(); } + public static void SampleCoverage(Single value, bool invert) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Set the value of a sub-word of the sample mask @@ -20242,7 +20242,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glSampleMaski")] [CLSCompliant(false)] - public static void SampleMask(Int32 maskNumber, Int32 mask) { throw new NotImplementedException(); } + public static void SampleMask(Int32 maskNumber, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Set the value of a sub-word of the sample mask @@ -20255,7 +20255,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glSampleMaski")] [CLSCompliant(false)] - public static void SampleMask(UInt32 maskNumber, UInt32 mask) { throw new NotImplementedException(); } + public static void SampleMask(UInt32 maskNumber, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20271,7 +20271,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterf")] [CLSCompliant(false)] - public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, Single param) { throw new NotImplementedException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20287,7 +20287,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterf")] [CLSCompliant(false)] - public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, Single param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20303,7 +20303,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterfv")] [CLSCompliant(false)] - public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20319,7 +20319,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterfv")] [CLSCompliant(false)] - public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20335,7 +20335,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterfv")] [CLSCompliant(false)] - public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20351,7 +20351,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterfv")] [CLSCompliant(false)] - public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20367,7 +20367,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteri")] [CLSCompliant(false)] - public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20383,7 +20383,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteri")] [CLSCompliant(false)] - public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20399,7 +20399,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteriv")] [CLSCompliant(false)] - public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20415,7 +20415,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteriv")] [CLSCompliant(false)] - public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20431,7 +20431,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteriv")] [CLSCompliant(false)] - public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20447,7 +20447,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteriv")] [CLSCompliant(false)] - public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define the scissor box @@ -20465,7 +20465,7 @@ namespace OpenTK.Graphics.ES31 /// Specify the width and height of the scissor box. When a GL context is first attached to a window, width and height are set to the dimensions of that window. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glScissor")] - public static void Scissor(Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void Scissor(Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20487,7 +20487,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES31.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES31.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20511,7 +20511,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20535,7 +20535,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20559,7 +20559,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20583,7 +20583,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20605,7 +20605,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES31.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES31.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20629,7 +20629,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20653,7 +20653,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20677,7 +20677,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20701,7 +20701,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20723,7 +20723,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES31.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES31.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20747,7 +20747,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20771,7 +20771,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20795,7 +20795,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20819,7 +20819,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20841,7 +20841,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES31.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES31.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20865,7 +20865,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20889,7 +20889,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20913,7 +20913,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20937,7 +20937,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20959,7 +20959,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES31.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES31.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20983,7 +20983,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21007,7 +21007,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21031,7 +21031,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21055,7 +21055,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21077,7 +21077,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES31.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES31.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21101,7 +21101,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21125,7 +21125,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21149,7 +21149,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21173,7 +21173,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Replaces the source code in a shader object @@ -21192,7 +21192,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new NotImplementedException(); } + public static void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Replaces the source code in a shader object @@ -21211,7 +21211,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new NotImplementedException(); } + public static void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Replaces the source code in a shader object @@ -21230,7 +21230,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static unsafe void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new NotImplementedException(); } + public static unsafe void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Replaces the source code in a shader object @@ -21249,7 +21249,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new NotImplementedException(); } + public static void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Replaces the source code in a shader object @@ -21268,7 +21268,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new NotImplementedException(); } + public static void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Replaces the source code in a shader object @@ -21287,7 +21287,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static unsafe void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new NotImplementedException(); } + public static unsafe void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and back function and reference value for stencil testing @@ -21304,7 +21304,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFunc")] [CLSCompliant(false)] - public static void StencilFunc(OpenTK.Graphics.ES31.All func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } + public static void StencilFunc(OpenTK.Graphics.ES31.All func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and back function and reference value for stencil testing @@ -21321,7 +21321,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFunc")] [CLSCompliant(false)] - public static void StencilFunc(OpenTK.Graphics.ES31.All func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFunc(OpenTK.Graphics.ES31.All func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and back function and reference value for stencil testing @@ -21337,7 +21337,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFunc")] [CLSCompliant(false)] - public static void StencilFunc(OpenTK.Graphics.ES31.StencilFunction func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } + public static void StencilFunc(OpenTK.Graphics.ES31.StencilFunction func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and back function and reference value for stencil testing @@ -21353,7 +21353,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFunc")] [CLSCompliant(false)] - public static void StencilFunc(OpenTK.Graphics.ES31.StencilFunction func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFunc(OpenTK.Graphics.ES31.StencilFunction func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back function and reference value for stencil testing @@ -21373,7 +21373,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")] [CLSCompliant(false)] - public static void StencilFuncSeparate(OpenTK.Graphics.ES31.All face, OpenTK.Graphics.ES31.All func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } + public static void StencilFuncSeparate(OpenTK.Graphics.ES31.All face, OpenTK.Graphics.ES31.All func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back function and reference value for stencil testing @@ -21393,7 +21393,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")] [CLSCompliant(false)] - public static void StencilFuncSeparate(OpenTK.Graphics.ES31.All face, OpenTK.Graphics.ES31.All func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFuncSeparate(OpenTK.Graphics.ES31.All face, OpenTK.Graphics.ES31.All func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back function and reference value for stencil testing @@ -21412,7 +21412,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")] [CLSCompliant(false)] - public static void StencilFuncSeparate(OpenTK.Graphics.ES31.StencilFaceDirection face, OpenTK.Graphics.ES31.StencilFunction func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } + public static void StencilFuncSeparate(OpenTK.Graphics.ES31.StencilFaceDirection face, OpenTK.Graphics.ES31.StencilFunction func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back function and reference value for stencil testing @@ -21431,7 +21431,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")] [CLSCompliant(false)] - public static void StencilFuncSeparate(OpenTK.Graphics.ES31.StencilFaceDirection face, OpenTK.Graphics.ES31.StencilFunction func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFuncSeparate(OpenTK.Graphics.ES31.StencilFaceDirection face, OpenTK.Graphics.ES31.StencilFunction func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Control the front and back writing of individual bits in the stencil planes @@ -21441,7 +21441,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMask")] [CLSCompliant(false)] - public static void StencilMask(Int32 mask) { throw new NotImplementedException(); } + public static void StencilMask(Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Control the front and back writing of individual bits in the stencil planes @@ -21451,7 +21451,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMask")] [CLSCompliant(false)] - public static void StencilMask(UInt32 mask) { throw new NotImplementedException(); } + public static void StencilMask(UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Control the front and/or back writing of individual bits in the stencil planes @@ -21465,7 +21465,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMaskSeparate")] [CLSCompliant(false)] - public static void StencilMaskSeparate(OpenTK.Graphics.ES31.All face, Int32 mask) { throw new NotImplementedException(); } + public static void StencilMaskSeparate(OpenTK.Graphics.ES31.All face, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Control the front and/or back writing of individual bits in the stencil planes @@ -21479,7 +21479,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMaskSeparate")] [CLSCompliant(false)] - public static void StencilMaskSeparate(OpenTK.Graphics.ES31.All face, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilMaskSeparate(OpenTK.Graphics.ES31.All face, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Control the front and/or back writing of individual bits in the stencil planes @@ -21492,7 +21492,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMaskSeparate")] [CLSCompliant(false)] - public static void StencilMaskSeparate(OpenTK.Graphics.ES31.StencilFaceDirection face, Int32 mask) { throw new NotImplementedException(); } + public static void StencilMaskSeparate(OpenTK.Graphics.ES31.StencilFaceDirection face, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Control the front and/or back writing of individual bits in the stencil planes @@ -21505,7 +21505,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMaskSeparate")] [CLSCompliant(false)] - public static void StencilMaskSeparate(OpenTK.Graphics.ES31.StencilFaceDirection face, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilMaskSeparate(OpenTK.Graphics.ES31.StencilFaceDirection face, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and back stencil test actions @@ -21521,7 +21521,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilOp")] - public static void StencilOp(OpenTK.Graphics.ES31.All fail, OpenTK.Graphics.ES31.All zfail, OpenTK.Graphics.ES31.All zpass) { throw new NotImplementedException(); } + public static void StencilOp(OpenTK.Graphics.ES31.All fail, OpenTK.Graphics.ES31.All zfail, OpenTK.Graphics.ES31.All zpass) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and back stencil test actions @@ -21536,7 +21536,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the stencil action when both the stencil test and the depth test pass, or when the stencil test passes and either there is no depth buffer or depth testing is not enabled. dppass accepts the same symbolic constants as sfail. The initial value is Keep. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilOp")] - public static void StencilOp(OpenTK.Graphics.ES31.StencilOp fail, OpenTK.Graphics.ES31.StencilOp zfail, OpenTK.Graphics.ES31.StencilOp zpass) { throw new NotImplementedException(); } + public static void StencilOp(OpenTK.Graphics.ES31.StencilOp fail, OpenTK.Graphics.ES31.StencilOp zfail, OpenTK.Graphics.ES31.StencilOp zpass) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back stencil test actions @@ -21555,7 +21555,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilOpSeparate")] - public static void StencilOpSeparate(OpenTK.Graphics.ES31.All face, OpenTK.Graphics.ES31.All sfail, OpenTK.Graphics.ES31.All dpfail, OpenTK.Graphics.ES31.All dppass) { throw new NotImplementedException(); } + public static void StencilOpSeparate(OpenTK.Graphics.ES31.All face, OpenTK.Graphics.ES31.All sfail, OpenTK.Graphics.ES31.All dpfail, OpenTK.Graphics.ES31.All dppass) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back stencil test actions @@ -21573,7 +21573,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the stencil action when both the stencil test and the depth test pass, or when the stencil test passes and either there is no depth buffer or depth testing is not enabled. dppass accepts the same symbolic constants as sfail. The initial value is Keep. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilOpSeparate")] - public static void StencilOpSeparate(OpenTK.Graphics.ES31.StencilFaceDirection face, OpenTK.Graphics.ES31.StencilOp sfail, OpenTK.Graphics.ES31.StencilOp dpfail, OpenTK.Graphics.ES31.StencilOp dppass) { throw new NotImplementedException(); } + public static void StencilOpSeparate(OpenTK.Graphics.ES31.StencilFaceDirection face, OpenTK.Graphics.ES31.StencilOp sfail, OpenTK.Graphics.ES31.StencilOp dpfail, OpenTK.Graphics.ES31.StencilOp dppass) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -21607,7 +21607,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] - public static void TexImage2D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexImage2D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -21644,7 +21644,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -21681,7 +21681,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -21718,7 +21718,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -21754,7 +21754,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] public static void TexImage2D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -21787,7 +21787,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] - public static void TexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -21823,7 +21823,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -21859,7 +21859,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -21895,7 +21895,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -21930,7 +21930,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] public static void TexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image @@ -21967,7 +21967,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexImage3D")] - public static void TexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image @@ -22007,7 +22007,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image @@ -22047,7 +22047,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image @@ -22087,7 +22087,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image @@ -22126,7 +22126,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexImage3D")] public static void TexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image @@ -22162,7 +22162,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexImage3D")] - public static void TexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image @@ -22201,7 +22201,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image @@ -22240,7 +22240,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image @@ -22279,7 +22279,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image @@ -22317,7 +22317,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexImage3D")] public static void TexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22333,7 +22333,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameterf")] - public static void TexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, Single param) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22348,7 +22348,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the value of pname. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameterf")] - public static void TexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, Single param) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22365,7 +22365,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameterfv")] [CLSCompliant(false)] - public static void TexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22382,7 +22382,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameterfv")] [CLSCompliant(false)] - public static unsafe void TexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22398,7 +22398,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameterfv")] [CLSCompliant(false)] - public static void TexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22414,7 +22414,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameterfv")] [CLSCompliant(false)] - public static unsafe void TexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22430,7 +22430,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameteri")] - public static void TexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, Int32 param) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22445,7 +22445,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the value of pname. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameteri")] - public static void TexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22462,7 +22462,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameteriv")] [CLSCompliant(false)] - public static void TexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22479,7 +22479,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameteriv")] [CLSCompliant(false)] - public static unsafe void TexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22495,7 +22495,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameteriv")] [CLSCompliant(false)] - public static void TexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22511,7 +22511,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameteriv")] [CLSCompliant(false)] - public static unsafe void TexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Simultaneously specify storage for all levels of a two-dimensional texture @@ -22532,7 +22532,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the height of the texture, in texels. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexStorage2D")] - public static void TexStorage2D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TexStorage2D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify storage for a two-dimensional multisample texture @@ -22556,7 +22556,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies whether the image will use identical sample locations and the same number of samples for all texels in the image, and the sample locations will not depend on the internal format or size of the image. /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glTexStorage2DMultisample")] - public static void TexStorage2DMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TexStorage2DMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Simultaneously specify storage for all levels of a three-dimensional or two-dimensional array texture @@ -22580,7 +22580,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the depth of the texture, in texels. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexStorage3D")] - public static void TexStorage3D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TexStorage3D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -22614,7 +22614,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] - public static void TexSubImage2D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexSubImage2D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -22651,7 +22651,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -22688,7 +22688,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -22725,7 +22725,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -22761,7 +22761,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] public static void TexSubImage2D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -22794,7 +22794,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] - public static void TexSubImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexSubImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -22830,7 +22830,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -22866,7 +22866,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -22902,7 +22902,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -22937,7 +22937,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] public static void TexSubImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage @@ -22977,7 +22977,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexSubImage3D")] - public static void TexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage @@ -23020,7 +23020,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage @@ -23063,7 +23063,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage @@ -23106,7 +23106,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage @@ -23148,7 +23148,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexSubImage3D")] public static void TexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage @@ -23187,7 +23187,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexSubImage3D")] - public static void TexSubImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexSubImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage @@ -23229,7 +23229,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage @@ -23271,7 +23271,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage @@ -23313,7 +23313,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage @@ -23354,7 +23354,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexSubImage3D")] public static void TexSubImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify values to record in transform feedback buffers @@ -23373,7 +23373,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTransformFeedbackVaryings")] [CLSCompliant(false)] - public static void TransformFeedbackVaryings(Int32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.ES31.All bufferMode) { throw new NotImplementedException(); } + public static void TransformFeedbackVaryings(Int32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.ES31.All bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify values to record in transform feedback buffers @@ -23392,7 +23392,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTransformFeedbackVaryings")] [CLSCompliant(false)] - public static void TransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.ES31.All bufferMode) { throw new NotImplementedException(); } + public static void TransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.ES31.All bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23404,7 +23404,7 @@ namespace OpenTK.Graphics.ES31 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1f")] - public static void Uniform1(Int32 location, Single v0) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23420,7 +23420,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1fv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23436,7 +23436,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1fv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23452,7 +23452,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1fv")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23464,7 +23464,7 @@ namespace OpenTK.Graphics.ES31 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1i")] - public static void Uniform1(Int32 location, Int32 v0) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23480,7 +23480,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1iv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23496,7 +23496,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1iv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23512,7 +23512,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1iv")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -23525,7 +23525,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1ui")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, UInt32 v0) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, UInt32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -23541,7 +23541,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1uiv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -23557,7 +23557,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1uiv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt32 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -23573,7 +23573,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1uiv")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23588,7 +23588,7 @@ namespace OpenTK.Graphics.ES31 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2f")] - public static void Uniform2(Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23604,7 +23604,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2fv")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23620,7 +23620,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2fv")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23636,7 +23636,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2fv")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23651,7 +23651,7 @@ namespace OpenTK.Graphics.ES31 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2i")] - public static void Uniform2(Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23667,7 +23667,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2iv")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23683,7 +23683,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2iv")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -23699,7 +23699,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform2ui")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, UInt32 v0, UInt32 v1) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, UInt32 v0, UInt32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -23715,7 +23715,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform2uiv")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -23731,7 +23731,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform2uiv")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -23747,7 +23747,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform2uiv")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23765,7 +23765,7 @@ namespace OpenTK.Graphics.ES31 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3f")] - public static void Uniform3(Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23781,7 +23781,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3fv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23797,7 +23797,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3fv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23813,7 +23813,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3fv")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23831,7 +23831,7 @@ namespace OpenTK.Graphics.ES31 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3i")] - public static void Uniform3(Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23847,7 +23847,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3iv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23863,7 +23863,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3iv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23879,7 +23879,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3iv")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -23898,7 +23898,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform3ui")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -23914,7 +23914,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform3uiv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -23930,7 +23930,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform3uiv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -23946,7 +23946,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform3uiv")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23967,7 +23967,7 @@ namespace OpenTK.Graphics.ES31 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4f")] - public static void Uniform4(Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23983,7 +23983,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4fv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23999,7 +23999,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4fv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24015,7 +24015,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4fv")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24036,7 +24036,7 @@ namespace OpenTK.Graphics.ES31 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4i")] - public static void Uniform4(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24052,7 +24052,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4iv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24068,7 +24068,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4iv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24084,7 +24084,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4iv")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -24106,7 +24106,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform4ui")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -24122,7 +24122,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform4uiv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -24138,7 +24138,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform4uiv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -24154,7 +24154,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform4uiv")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Assign a binding point to an active uniform block @@ -24170,7 +24170,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformBlockBinding")] [CLSCompliant(false)] - public static void UniformBlockBinding(Int32 program, Int32 uniformBlockIndex, Int32 uniformBlockBinding) { throw new NotImplementedException(); } + public static void UniformBlockBinding(Int32 program, Int32 uniformBlockIndex, Int32 uniformBlockBinding) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Assign a binding point to an active uniform block @@ -24186,7 +24186,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformBlockBinding")] [CLSCompliant(false)] - public static void UniformBlockBinding(UInt32 program, UInt32 uniformBlockIndex, UInt32 uniformBlockBinding) { throw new NotImplementedException(); } + public static void UniformBlockBinding(UInt32 program, UInt32 uniformBlockIndex, UInt32 uniformBlockBinding) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -24195,7 +24195,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*4] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] [CLSCompliant(false)] - public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -24204,7 +24204,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*4] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] [CLSCompliant(false)] - public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -24213,7 +24213,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*4] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24222,7 +24222,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix2x3fv")] [CLSCompliant(false)] - public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24231,7 +24231,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix2x3fv")] [CLSCompliant(false)] - public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24240,7 +24240,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix2x3fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24249,7 +24249,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix2x4fv")] [CLSCompliant(false)] - public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24258,7 +24258,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix2x4fv")] [CLSCompliant(false)] - public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24267,7 +24267,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix2x4fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -24276,7 +24276,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*9] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] [CLSCompliant(false)] - public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -24285,7 +24285,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*9] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] [CLSCompliant(false)] - public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -24294,7 +24294,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*9] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24303,7 +24303,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix3x2fv")] [CLSCompliant(false)] - public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24312,7 +24312,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix3x2fv")] [CLSCompliant(false)] - public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24321,7 +24321,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix3x2fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24330,7 +24330,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix3x4fv")] [CLSCompliant(false)] - public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24339,7 +24339,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix3x4fv")] [CLSCompliant(false)] - public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24348,7 +24348,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix3x4fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -24357,7 +24357,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*16] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] [CLSCompliant(false)] - public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -24366,7 +24366,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*16] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] [CLSCompliant(false)] - public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -24375,7 +24375,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*16] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24384,7 +24384,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix4x2fv")] [CLSCompliant(false)] - public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24393,7 +24393,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix4x2fv")] [CLSCompliant(false)] - public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24402,7 +24402,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix4x2fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24411,7 +24411,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix4x3fv")] [CLSCompliant(false)] - public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24420,7 +24420,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix4x3fv")] [CLSCompliant(false)] - public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24429,18 +24429,18 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix4x3fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUnmapBuffer")] - public static bool UnmapBuffer(OpenTK.Graphics.ES31.All target) { throw new NotImplementedException(); } + public static bool UnmapBuffer(OpenTK.Graphics.ES31.All target) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUnmapBuffer")] - public static bool UnmapBuffer(OpenTK.Graphics.ES31.BufferTargetArb target) { throw new NotImplementedException(); } + public static bool UnmapBuffer(OpenTK.Graphics.ES31.BufferTargetArb target) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Installs a program object as part of current rendering state @@ -24450,7 +24450,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUseProgram")] [CLSCompliant(false)] - public static void UseProgram(Int32 program) { throw new NotImplementedException(); } + public static void UseProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Installs a program object as part of current rendering state @@ -24460,7 +24460,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUseProgram")] [CLSCompliant(false)] - public static void UseProgram(UInt32 program) { throw new NotImplementedException(); } + public static void UseProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Bind stages of a program object to a program pipeline @@ -24476,7 +24476,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glUseProgramStages")] [CLSCompliant(false)] - public static void UseProgramStages(Int32 pipeline, Int32 stages, Int32 program) { throw new NotImplementedException(); } + public static void UseProgramStages(Int32 pipeline, Int32 stages, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Bind stages of a program object to a program pipeline @@ -24492,7 +24492,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glUseProgramStages")] [CLSCompliant(false)] - public static void UseProgramStages(UInt32 pipeline, UInt32 stages, UInt32 program) { throw new NotImplementedException(); } + public static void UseProgramStages(UInt32 pipeline, UInt32 stages, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Validates a program object @@ -24502,7 +24502,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glValidateProgram")] [CLSCompliant(false)] - public static void ValidateProgram(Int32 program) { throw new NotImplementedException(); } + public static void ValidateProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Validates a program object @@ -24512,7 +24512,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glValidateProgram")] [CLSCompliant(false)] - public static void ValidateProgram(UInt32 program) { throw new NotImplementedException(); } + public static void ValidateProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Validate a program pipeline object against current GL state @@ -24522,7 +24522,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glValidateProgramPipeline")] [CLSCompliant(false)] - public static void ValidateProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } + public static void ValidateProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Validate a program pipeline object against current GL state @@ -24532,7 +24532,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glValidateProgramPipeline")] [CLSCompliant(false)] - public static void ValidateProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static void ValidateProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24545,7 +24545,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1f")] [CLSCompliant(false)] - public static void VertexAttrib1(Int32 index, Single x) { throw new NotImplementedException(); } + public static void VertexAttrib1(Int32 index, Single x) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24558,7 +24558,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1f")] [CLSCompliant(false)] - public static void VertexAttrib1(UInt32 index, Single x) { throw new NotImplementedException(); } + public static void VertexAttrib1(UInt32 index, Single x) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24571,7 +24571,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24584,7 +24584,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24600,7 +24600,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2f")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, Single x, Single y) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24616,7 +24616,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2f")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, Single x, Single y) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24629,7 +24629,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24642,7 +24642,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24655,7 +24655,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24668,7 +24668,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24681,7 +24681,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24694,7 +24694,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24713,7 +24713,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3f")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24732,7 +24732,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3f")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24745,7 +24745,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24758,7 +24758,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24771,7 +24771,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24784,7 +24784,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24797,7 +24797,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24810,7 +24810,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24832,7 +24832,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4f")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24854,7 +24854,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4f")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24867,7 +24867,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24880,7 +24880,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24893,7 +24893,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24906,7 +24906,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24919,7 +24919,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24932,7 +24932,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Associate a vertex attribute and a vertex buffer binding @@ -24945,7 +24945,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glVertexAttribBinding")] [CLSCompliant(false)] - public static void VertexAttribBinding(Int32 attribindex, Int32 bindingindex) { throw new NotImplementedException(); } + public static void VertexAttribBinding(Int32 attribindex, Int32 bindingindex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Associate a vertex attribute and a vertex buffer binding @@ -24958,7 +24958,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glVertexAttribBinding")] [CLSCompliant(false)] - public static void VertexAttribBinding(UInt32 attribindex, UInt32 bindingindex) { throw new NotImplementedException(); } + public static void VertexAttribBinding(UInt32 attribindex, UInt32 bindingindex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -24971,7 +24971,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribDivisor")] [CLSCompliant(false)] - public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -24984,7 +24984,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribDivisor")] [CLSCompliant(false)] - public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the organization of vertex arrays @@ -25006,7 +25006,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glVertexAttribFormat")] [CLSCompliant(false)] - public static void VertexAttribFormat(Int32 attribindex, Int32 size, OpenTK.Graphics.ES31.All type, bool normalized, Int32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexAttribFormat(Int32 attribindex, Int32 size, OpenTK.Graphics.ES31.All type, bool normalized, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the organization of vertex arrays @@ -25028,7 +25028,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glVertexAttribFormat")] [CLSCompliant(false)] - public static void VertexAttribFormat(UInt32 attribindex, Int32 size, OpenTK.Graphics.ES31.All type, bool normalized, UInt32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexAttribFormat(UInt32 attribindex, Int32 size, OpenTK.Graphics.ES31.All type, bool normalized, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25038,7 +25038,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4i")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25048,49 +25048,49 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4i")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: 4] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: 4] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: 4] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: 4] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: 4] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: 4] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25100,28 +25100,28 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ui")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: 4] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4uiv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: 4] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4uiv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: 4] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4uiv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -25130,7 +25130,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glVertexAttribIFormat")] [CLSCompliant(false)] - public static void VertexAttribIFormat(Int32 attribindex, Int32 size, OpenTK.Graphics.ES31.All type, Int32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexAttribIFormat(Int32 attribindex, Int32 size, OpenTK.Graphics.ES31.All type, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -25139,7 +25139,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glVertexAttribIFormat")] [CLSCompliant(false)] - public static void VertexAttribIFormat(UInt32 attribindex, Int32 size, OpenTK.Graphics.ES31.All type, UInt32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexAttribIFormat(UInt32 attribindex, Int32 size, OpenTK.Graphics.ES31.All type, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25149,7 +25149,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(size,type,stride)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] [CLSCompliant(false)] - public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.All type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.All type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25161,7 +25161,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25173,7 +25173,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25185,7 +25185,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25197,7 +25197,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25207,7 +25207,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(size,type,stride)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] [CLSCompliant(false)] - public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.All type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.All type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25219,7 +25219,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25231,7 +25231,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25243,7 +25243,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25255,7 +25255,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25281,7 +25281,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] [CLSCompliant(false)] - public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.All type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.All type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25309,7 +25309,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25337,7 +25337,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25365,7 +25365,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25393,7 +25393,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T5 pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25418,7 +25418,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] [CLSCompliant(false)] - public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.VertexAttribPointerType type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.VertexAttribPointerType type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25445,7 +25445,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25472,7 +25472,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25499,7 +25499,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25526,7 +25526,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T5 pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25552,7 +25552,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] [CLSCompliant(false)] - public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.All type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.All type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25580,7 +25580,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25608,7 +25608,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25636,7 +25636,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25664,7 +25664,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T5 pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25689,7 +25689,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] [CLSCompliant(false)] - public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.VertexAttribPointerType type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.VertexAttribPointerType type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25716,7 +25716,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25743,7 +25743,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25770,7 +25770,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25797,7 +25797,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T5 pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Modify the rate at which generic vertex attributes advance @@ -25810,7 +25810,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glVertexBindingDivisor")] [CLSCompliant(false)] - public static void VertexBindingDivisor(Int32 bindingindex, Int32 divisor) { throw new NotImplementedException(); } + public static void VertexBindingDivisor(Int32 bindingindex, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Modify the rate at which generic vertex attributes advance @@ -25823,7 +25823,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glVertexBindingDivisor")] [CLSCompliant(false)] - public static void VertexBindingDivisor(UInt32 bindingindex, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexBindingDivisor(UInt32 bindingindex, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set the viewport @@ -25841,7 +25841,7 @@ namespace OpenTK.Graphics.ES31 /// Specify the width and height of the viewport. When a GL context is first attached to a window, width and height are set to the dimensions of that window. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glViewport")] - public static void Viewport(Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void Viewport(Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -25857,7 +25857,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glWaitSync")] [CLSCompliant(false)] - public static void WaitSync(IntPtr sync, Int32 flags, Int64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, Int32 flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -25873,7 +25873,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glWaitSync")] [CLSCompliant(false)] - public static void WaitSync(IntPtr sync, UInt32 flags, UInt64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, UInt32 flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } public static partial class Ext { @@ -25883,7 +25883,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_win32_keyed_mutex", Version = "", EntryPoint = "glAcquireKeyedMutexWin32EXT")] [CLSCompliant(false)] - public static bool AcquireKeyedMutexWin32(Int32 memory, Int64 key, Int32 timeout) { throw new NotImplementedException(); } + public static bool AcquireKeyedMutexWin32(Int32 memory, Int64 key, Int32 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_win32_keyed_mutex] /// @@ -25891,19 +25891,19 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_win32_keyed_mutex", Version = "", EntryPoint = "glAcquireKeyedMutexWin32EXT")] [CLSCompliant(false)] - public static bool AcquireKeyedMutexWin32(UInt32 memory, UInt64 key, UInt32 timeout) { throw new NotImplementedException(); } + public static bool AcquireKeyedMutexWin32(UInt32 memory, UInt64 key, UInt32 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveProgramEXT")] [CLSCompliant(false)] - public static void ActiveProgram(Int32 program) { throw new NotImplementedException(); } + public static void ActiveProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveProgramEXT")] [CLSCompliant(false)] - public static void ActiveProgram(UInt32 program) { throw new NotImplementedException(); } + public static void ActiveProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Set the active program object for a program pipeline object @@ -25916,7 +25916,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveShaderProgramEXT")] [CLSCompliant(false)] - public static void ActiveShaderProgram(Int32 pipeline, Int32 program) { throw new NotImplementedException(); } + public static void ActiveShaderProgram(Int32 pipeline, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Set the active program object for a program pipeline object @@ -25929,7 +25929,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveShaderProgramEXT")] [CLSCompliant(false)] - public static void ActiveShaderProgram(UInt32 pipeline, UInt32 program) { throw new NotImplementedException(); } + public static void ActiveShaderProgram(UInt32 pipeline, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delimit the boundaries of a query object @@ -25942,7 +25942,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glBeginQueryEXT")] [CLSCompliant(false)] - public static void BeginQuery(OpenTK.Graphics.ES31.All target, Int32 id) { throw new NotImplementedException(); } + public static void BeginQuery(OpenTK.Graphics.ES31.All target, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delimit the boundaries of a query object @@ -25955,7 +25955,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glBeginQueryEXT")] [CLSCompliant(false)] - public static void BeginQuery(OpenTK.Graphics.ES31.All target, UInt32 id) { throw new NotImplementedException(); } + public static void BeginQuery(OpenTK.Graphics.ES31.All target, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Bind a user-defined varying out variable to a fragment shader color number @@ -25971,7 +25971,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glBindFragDataLocationEXT")] [CLSCompliant(false)] - public static void BindFragDataLocation(Int32 program, Int32 color, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static void BindFragDataLocation(Int32 program, Int32 color, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Bind a user-defined varying out variable to a fragment shader color number @@ -25987,7 +25987,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glBindFragDataLocationEXT")] [CLSCompliant(false)] - public static void BindFragDataLocation(UInt32 program, UInt32 color, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static void BindFragDataLocation(UInt32 program, UInt32 color, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Bind a user-defined varying out variable to a fragment shader color number and index @@ -26006,7 +26006,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glBindFragDataLocationIndexedEXT")] [CLSCompliant(false)] - public static void BindFragDataLocationIndexed(Int32 program, Int32 colorNumber, Int32 index, String name) { throw new NotImplementedException(); } + public static void BindFragDataLocationIndexed(Int32 program, Int32 colorNumber, Int32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Bind a user-defined varying out variable to a fragment shader color number and index @@ -26025,7 +26025,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glBindFragDataLocationIndexedEXT")] [CLSCompliant(false)] - public static void BindFragDataLocationIndexed(UInt32 program, UInt32 colorNumber, UInt32 index, String name) { throw new NotImplementedException(); } + public static void BindFragDataLocationIndexed(UInt32 program, UInt32 colorNumber, UInt32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind a program pipeline to the current context @@ -26035,7 +26035,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glBindProgramPipelineEXT")] [CLSCompliant(false)] - public static void BindProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } + public static void BindProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind a program pipeline to the current context @@ -26045,7 +26045,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glBindProgramPipelineEXT")] [CLSCompliant(false)] - public static void BindProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static void BindProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_minmax] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -26055,7 +26055,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_blend_minmax", Version = "", EntryPoint = "glBlendEquationEXT")] - public static void BlendEquation(OpenTK.Graphics.ES31.All mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.ES31.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_minmax] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -26064,7 +26064,7 @@ namespace OpenTK.Graphics.ES31 /// specifies how source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. /// [AutoGenerated(Category = "EXT_blend_minmax", Version = "", EntryPoint = "glBlendEquationEXT")] - public static void BlendEquation(OpenTK.Graphics.ES31.BlendEquationModeExt mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.ES31.BlendEquationModeExt mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -26077,7 +26077,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiEXT")] [CLSCompliant(false)] - public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES31.All mode) { throw new NotImplementedException(); } + public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES31.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -26090,7 +26090,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiEXT")] [CLSCompliant(false)] - public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES31.All mode) { throw new NotImplementedException(); } + public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES31.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately @@ -26106,7 +26106,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiEXT")] [CLSCompliant(false)] - public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES31.All modeRGB, OpenTK.Graphics.ES31.All modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES31.All modeRGB, OpenTK.Graphics.ES31.All modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately @@ -26122,7 +26122,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiEXT")] [CLSCompliant(false)] - public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES31.All modeRGB, OpenTK.Graphics.ES31.All modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES31.All modeRGB, OpenTK.Graphics.ES31.All modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify pixel arithmetic @@ -26136,7 +26136,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciEXT")] [CLSCompliant(false)] - public static void BlendFunc(Int32 buf, OpenTK.Graphics.ES31.All src, OpenTK.Graphics.ES31.All dst) { throw new NotImplementedException(); } + public static void BlendFunc(Int32 buf, OpenTK.Graphics.ES31.All src, OpenTK.Graphics.ES31.All dst) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify pixel arithmetic @@ -26150,7 +26150,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciEXT")] [CLSCompliant(false)] - public static void BlendFunc(UInt32 buf, OpenTK.Graphics.ES31.All src, OpenTK.Graphics.ES31.All dst) { throw new NotImplementedException(); } + public static void BlendFunc(UInt32 buf, OpenTK.Graphics.ES31.All src, OpenTK.Graphics.ES31.All dst) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify pixel arithmetic for RGB and alpha components separately @@ -26172,7 +26172,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiEXT")] [CLSCompliant(false)] - public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.ES31.All srcRGB, OpenTK.Graphics.ES31.All dstRGB, OpenTK.Graphics.ES31.All srcAlpha, OpenTK.Graphics.ES31.All dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.ES31.All srcRGB, OpenTK.Graphics.ES31.All dstRGB, OpenTK.Graphics.ES31.All srcAlpha, OpenTK.Graphics.ES31.All dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify pixel arithmetic for RGB and alpha components separately @@ -26194,7 +26194,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiEXT")] [CLSCompliant(false)] - public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.ES31.All srcRGB, OpenTK.Graphics.ES31.All dstRGB, OpenTK.Graphics.ES31.All srcAlpha, OpenTK.Graphics.ES31.All dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.ES31.All srcRGB, OpenTK.Graphics.ES31.All dstRGB, OpenTK.Graphics.ES31.All srcAlpha, OpenTK.Graphics.ES31.All dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26213,7 +26213,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES31.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new NotImplementedException(); } + public static void BufferStorage(OpenTK.Graphics.ES31.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26232,7 +26232,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES31.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new NotImplementedException(); } + public static void BufferStorage(OpenTK.Graphics.ES31.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26253,7 +26253,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES31.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26274,7 +26274,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES31.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26295,7 +26295,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES31.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26316,7 +26316,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES31.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26337,7 +26337,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES31.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26358,7 +26358,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES31.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26379,7 +26379,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES31.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26400,7 +26400,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES31.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26419,7 +26419,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES31.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new NotImplementedException(); } + public static void BufferStorage(OpenTK.Graphics.ES31.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26438,7 +26438,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES31.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new NotImplementedException(); } + public static void BufferStorage(OpenTK.Graphics.ES31.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26459,7 +26459,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES31.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26480,7 +26480,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES31.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26501,7 +26501,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES31.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26522,7 +26522,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES31.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26543,7 +26543,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES31.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26564,7 +26564,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES31.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26585,7 +26585,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES31.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26606,7 +26606,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES31.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -26616,7 +26616,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 size, IntPtr clientBuffer, Int32 flags) { throw new NotImplementedException(); } + public static void BufferStorageExternal(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -26626,7 +26626,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 size, IntPtr clientBuffer, UInt32 flags) { throw new NotImplementedException(); } + public static void BufferStorageExternal(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -26636,7 +26636,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr size, IntPtr clientBuffer, Int32 flags) { throw new NotImplementedException(); } + public static void BufferStorageExternal(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -26646,7 +26646,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags) { throw new NotImplementedException(); } + public static void BufferStorageExternal(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -26656,7 +26656,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES31.All target, Int32 size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES31.All target, Int32 size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -26666,7 +26666,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES31.All target, Int32 size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES31.All target, Int32 size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -26676,7 +26676,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES31.All target, IntPtr size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES31.All target, IntPtr size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -26686,7 +26686,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES31.All target, IntPtr size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES31.All target, IntPtr size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -26695,7 +26695,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES31.BufferTargetArb target, Int32 size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES31.BufferTargetArb target, Int32 size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -26704,7 +26704,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES31.BufferTargetArb target, Int32 size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES31.BufferTargetArb target, Int32 size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -26713,7 +26713,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -26722,7 +26722,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// @@ -26730,7 +26730,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static void ClearPixelLocalStorage(Int32 offset, Int32 n, Int32[] values) { throw new NotImplementedException(); } + public static void ClearPixelLocalStorage(Int32 offset, Int32 n, Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// @@ -26738,7 +26738,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static void ClearPixelLocalStorage(Int32 offset, Int32 n, ref Int32 values) { throw new NotImplementedException(); } + public static void ClearPixelLocalStorage(Int32 offset, Int32 n, ref Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// @@ -26746,7 +26746,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static unsafe void ClearPixelLocalStorage(Int32 offset, Int32 n, Int32* values) { throw new NotImplementedException(); } + public static unsafe void ClearPixelLocalStorage(Int32 offset, Int32 n, Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// @@ -26754,7 +26754,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static void ClearPixelLocalStorage(Int32 offset, Int32 n, UInt32[] values) { throw new NotImplementedException(); } + public static void ClearPixelLocalStorage(Int32 offset, Int32 n, UInt32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// @@ -26762,7 +26762,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static void ClearPixelLocalStorage(Int32 offset, Int32 n, ref UInt32 values) { throw new NotImplementedException(); } + public static void ClearPixelLocalStorage(Int32 offset, Int32 n, ref UInt32 values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// @@ -26770,7 +26770,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static unsafe void ClearPixelLocalStorage(Int32 offset, Int32 n, UInt32* values) { throw new NotImplementedException(); } + public static unsafe void ClearPixelLocalStorage(Int32 offset, Int32 n, UInt32* values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -26792,7 +26792,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] - public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -26816,7 +26816,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -26840,7 +26840,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -26864,7 +26864,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -26888,7 +26888,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -26910,7 +26910,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] - public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -26934,7 +26934,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -26958,7 +26958,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -26982,7 +26982,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -27006,7 +27006,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -27046,7 +27046,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] - public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -27088,7 +27088,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -27130,7 +27130,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -27172,7 +27172,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -27214,7 +27214,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -27254,7 +27254,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] - public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -27296,7 +27296,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -27338,7 +27338,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -27380,7 +27380,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -27422,7 +27422,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Enable and disable writing of frame buffer color components @@ -27442,7 +27442,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glColorMaskiEXT")] [CLSCompliant(false)] - public static void ColorMask(Int32 index, bool r, bool g, bool b, bool a) { throw new NotImplementedException(); } + public static void ColorMask(Int32 index, bool r, bool g, bool b, bool a) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Enable and disable writing of frame buffer color components @@ -27462,7 +27462,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glColorMaskiEXT")] [CLSCompliant(false)] - public static void ColorMask(UInt32 index, bool r, bool g, bool b, bool a) { throw new NotImplementedException(); } + public static void ColorMask(UInt32 index, bool r, bool g, bool b, bool a) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_copy_image] /// Perform a raw data copy between two images @@ -27514,7 +27514,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_copy_image", Version = "", EntryPoint = "glCopyImageSubDataEXT")] [CLSCompliant(false)] - public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.ES31.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.ES31.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new NotImplementedException(); } + public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.ES31.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.ES31.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_copy_image] /// Perform a raw data copy between two images @@ -27566,49 +27566,49 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_copy_image", Version = "", EntryPoint = "glCopyImageSubDataEXT")] [CLSCompliant(false)] - public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.ES31.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.ES31.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new NotImplementedException(); } + public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.ES31.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.ES31.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static void CreateMemoryObjects(Int32 n, [OutAttribute] Int32[] memoryObjects) { throw new NotImplementedException(); } + public static void CreateMemoryObjects(Int32 n, [OutAttribute] Int32[] memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static void CreateMemoryObjects(Int32 n, [OutAttribute] out Int32 memoryObjects) { throw new NotImplementedException(); } + public static void CreateMemoryObjects(Int32 n, [OutAttribute] out Int32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static unsafe void CreateMemoryObjects(Int32 n, [OutAttribute] Int32* memoryObjects) { throw new NotImplementedException(); } + public static unsafe void CreateMemoryObjects(Int32 n, [OutAttribute] Int32* memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static void CreateMemoryObjects(Int32 n, [OutAttribute] UInt32[] memoryObjects) { throw new NotImplementedException(); } + public static void CreateMemoryObjects(Int32 n, [OutAttribute] UInt32[] memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static void CreateMemoryObjects(Int32 n, [OutAttribute] out UInt32 memoryObjects) { throw new NotImplementedException(); } + public static void CreateMemoryObjects(Int32 n, [OutAttribute] out UInt32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static unsafe void CreateMemoryObjects(Int32 n, [OutAttribute] UInt32* memoryObjects) { throw new NotImplementedException(); } + public static unsafe void CreateMemoryObjects(Int32 n, [OutAttribute] UInt32* memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Create a stand-alone program from an array of null-terminated source code strings @@ -27620,7 +27620,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the number of source code strings in the array strings. /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glCreateShaderProgramEXT")] - public static Int32 CreateShaderProgram(OpenTK.Graphics.ES31.All type, String @string) { throw new NotImplementedException(); } + public static Int32 CreateShaderProgram(OpenTK.Graphics.ES31.All type, String @string) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Create a stand-alone program from an array of null-terminated source code strings @@ -27635,61 +27635,61 @@ namespace OpenTK.Graphics.ES31 /// Specifies the address of an array of pointers to source code strings from which to create the program object. /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glCreateShaderProgramvEXT")] - public static Int32 CreateShaderProgram(OpenTK.Graphics.ES31.All type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new NotImplementedException(); } + public static Int32 CreateShaderProgram(OpenTK.Graphics.ES31.All type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObject([CountAttribute(Parameter = "n")] Int32 memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObject([CountAttribute(Parameter = "n")] Int32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObject([CountAttribute(Parameter = "n")] UInt32 memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObject([CountAttribute(Parameter = "n")] UInt32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] Int32[] memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] Int32[] memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static unsafe void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] Int32* memoryObjects) { throw new NotImplementedException(); } + public static unsafe void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] Int32* memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static unsafe void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] UInt32* memoryObjects) { throw new NotImplementedException(); } + public static unsafe void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] UInt32* memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -27699,7 +27699,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] Int32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -27709,7 +27709,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] UInt32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -27722,7 +27722,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -27735,7 +27735,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -27748,7 +27748,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32* pipelines) { throw new NotImplementedException(); } + public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -27761,7 +27761,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -27774,7 +27774,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -27787,7 +27787,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new NotImplementedException(); } + public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -27797,7 +27797,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] [CLSCompliant(false)] - public static void DeleteQuery([CountAttribute(Parameter = "n")] Int32 ids) { throw new NotImplementedException(); } + public static void DeleteQuery([CountAttribute(Parameter = "n")] Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -27807,7 +27807,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] [CLSCompliant(false)] - public static void DeleteQuery([CountAttribute(Parameter = "n")] UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteQuery([CountAttribute(Parameter = "n")] UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -27820,7 +27820,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -27833,7 +27833,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -27846,7 +27846,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] [CLSCompliant(false)] - public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -27859,7 +27859,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -27872,7 +27872,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -27885,75 +27885,75 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] [CLSCompliant(false)] - public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphore([CountAttribute(Parameter = "count")] Int32 semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphore([CountAttribute(Parameter = "count")] Int32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphore([CountAttribute(Parameter = "count")] UInt32 semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphore([CountAttribute(Parameter = "count")] UInt32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] Int32[] semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] Int32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] ref Int32 semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] ref Int32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] Int32* semaphores) { throw new NotImplementedException(); } + public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] Int32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] UInt32[] semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] UInt32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] ref UInt32 semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] ref UInt32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] UInt32* semaphores) { throw new NotImplementedException(); } + public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] UInt32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glDisableiEXT")] [CLSCompliant(false)] - public static void Disable(OpenTK.Graphics.ES31.All target, Int32 index) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES31.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glDisableiEXT")] [CLSCompliant(false)] - public static void Disable(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_discard_framebuffer] /// @@ -27961,7 +27961,7 @@ namespace OpenTK.Graphics.ES31 /// [length: numAttachments] [AutoGenerated(Category = "EXT_discard_framebuffer", Version = "", EntryPoint = "glDiscardFramebufferEXT")] [CLSCompliant(false)] - public static void DiscardFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES31.All[] attachments) { throw new NotImplementedException(); } + public static void DiscardFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES31.All[] attachments) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_discard_framebuffer] /// @@ -27969,7 +27969,7 @@ namespace OpenTK.Graphics.ES31 /// [length: numAttachments] [AutoGenerated(Category = "EXT_discard_framebuffer", Version = "", EntryPoint = "glDiscardFramebufferEXT")] [CLSCompliant(false)] - public static void DiscardFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES31.All attachments) { throw new NotImplementedException(); } + public static void DiscardFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES31.All attachments) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_discard_framebuffer] /// @@ -27977,7 +27977,7 @@ namespace OpenTK.Graphics.ES31 /// [length: numAttachments] [AutoGenerated(Category = "EXT_discard_framebuffer", Version = "", EntryPoint = "glDiscardFramebufferEXT")] [CLSCompliant(false)] - public static unsafe void DiscardFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES31.All* attachments) { throw new NotImplementedException(); } + public static unsafe void DiscardFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES31.All* attachments) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a range of elements with offset applied to instanced attributes @@ -28000,7 +28000,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawArraysInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 first, Int32 count, Int32 instancecount, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 first, Int32 count, Int32 instancecount, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a range of elements with offset applied to instanced attributes @@ -28023,7 +28023,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawArraysInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 first, Int32 count, Int32 instancecount, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 first, Int32 count, Int32 instancecount, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a range of elements with offset applied to instanced attributes @@ -28045,7 +28045,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawArraysInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a range of elements with offset applied to instanced attributes @@ -28067,7 +28067,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawArraysInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a range of elements @@ -28086,7 +28086,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawArraysInstancedEXT")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES31.All mode, Int32 start, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES31.All mode, Int32 start, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a range of elements @@ -28104,7 +28104,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawArraysInstancedEXT")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 start, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 start, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -28117,7 +28117,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, OpenTK.Graphics.ES31.All[] bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, OpenTK.Graphics.ES31.All[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -28130,7 +28130,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, ref OpenTK.Graphics.ES31.All bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, ref OpenTK.Graphics.ES31.All bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -28143,7 +28143,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] [CLSCompliant(false)] - public static unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.ES31.All* bufs) { throw new NotImplementedException(); } + public static unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.ES31.All* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -28151,7 +28151,7 @@ namespace OpenTK.Graphics.ES31 /// [length: n] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glDrawBuffersIndexedEXT")] [CLSCompliant(false)] - public static void DrawBuffersIndexed(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES31.All[] location, [CountAttribute(Parameter = "n")] Int32[] indices) { throw new NotImplementedException(); } + public static void DrawBuffersIndexed(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES31.All[] location, [CountAttribute(Parameter = "n")] Int32[] indices) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -28159,7 +28159,7 @@ namespace OpenTK.Graphics.ES31 /// [length: n] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glDrawBuffersIndexedEXT")] [CLSCompliant(false)] - public static void DrawBuffersIndexed(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES31.All location, [CountAttribute(Parameter = "n")] ref Int32 indices) { throw new NotImplementedException(); } + public static void DrawBuffersIndexed(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES31.All location, [CountAttribute(Parameter = "n")] ref Int32 indices) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -28167,7 +28167,7 @@ namespace OpenTK.Graphics.ES31 /// [length: n] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glDrawBuffersIndexedEXT")] [CLSCompliant(false)] - public static unsafe void DrawBuffersIndexed(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES31.All* location, [CountAttribute(Parameter = "n")] Int32* indices) { throw new NotImplementedException(); } + public static unsafe void DrawBuffersIndexed(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES31.All* location, [CountAttribute(Parameter = "n")] Int32* indices) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -28189,7 +28189,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexEXT")] - public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -28214,7 +28214,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -28239,7 +28239,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -28264,7 +28264,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -28288,7 +28288,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexEXT")] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -28309,7 +28309,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexEXT")] - public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -28333,7 +28333,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -28357,7 +28357,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -28381,7 +28381,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -28404,7 +28404,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexEXT")] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28430,7 +28430,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28456,7 +28456,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28484,7 +28484,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28512,7 +28512,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28540,7 +28540,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28568,7 +28568,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28596,7 +28596,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28624,7 +28624,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28652,7 +28652,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28680,7 +28680,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28705,7 +28705,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28730,7 +28730,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28757,7 +28757,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28784,7 +28784,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28811,7 +28811,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28838,7 +28838,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28865,7 +28865,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28892,7 +28892,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28919,7 +28919,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28946,7 +28946,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -28975,7 +28975,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29004,7 +29004,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29035,7 +29035,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29066,7 +29066,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29097,7 +29097,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29128,7 +29128,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29159,7 +29159,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29190,7 +29190,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29221,7 +29221,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29252,7 +29252,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29280,7 +29280,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29308,7 +29308,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29338,7 +29338,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29368,7 +29368,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29398,7 +29398,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29428,7 +29428,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29458,7 +29458,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29488,7 +29488,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29518,7 +29518,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29548,7 +29548,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29573,7 +29573,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexEXT")] - public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29601,7 +29601,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29629,7 +29629,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29657,7 +29657,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29684,7 +29684,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexEXT")] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29708,7 +29708,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexEXT")] - public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29735,7 +29735,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29762,7 +29762,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29789,7 +29789,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29815,7 +29815,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexEXT")] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -29837,7 +29837,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -29862,7 +29862,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -29887,7 +29887,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -29912,7 +29912,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -29936,7 +29936,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -29957,7 +29957,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -29981,7 +29981,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -30005,7 +30005,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -30029,7 +30029,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -30052,7 +30052,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30081,7 +30081,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30112,7 +30112,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30143,7 +30143,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30174,7 +30174,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30205,7 +30205,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30234,7 +30234,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30265,7 +30265,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30296,7 +30296,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30327,7 +30327,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30358,7 +30358,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30386,7 +30386,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30416,7 +30416,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30446,7 +30446,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30476,7 +30476,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30506,7 +30506,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30534,7 +30534,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30564,7 +30564,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30594,7 +30594,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30624,7 +30624,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30654,7 +30654,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render primitives using a count derived from a transform feedback object @@ -30668,7 +30668,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedback(OpenTK.Graphics.ES31.All mode, Int32 id) { throw new NotImplementedException(); } + public static void DrawTransformFeedback(OpenTK.Graphics.ES31.All mode, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render primitives using a count derived from a transform feedback object @@ -30682,7 +30682,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedback(OpenTK.Graphics.ES31.All mode, UInt32 id) { throw new NotImplementedException(); } + public static void DrawTransformFeedback(OpenTK.Graphics.ES31.All mode, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render primitives using a count derived from a transform feedback object @@ -30695,7 +30695,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedback(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 id) { throw new NotImplementedException(); } + public static void DrawTransformFeedback(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render primitives using a count derived from a transform feedback object @@ -30708,7 +30708,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedback(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 id) { throw new NotImplementedException(); } + public static void DrawTransformFeedback(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render multiple instances of primitives using a count derived from a transform feedback object @@ -30725,7 +30725,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackInstancedEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES31.All mode, Int32 id, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES31.All mode, Int32 id, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render multiple instances of primitives using a count derived from a transform feedback object @@ -30742,7 +30742,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackInstancedEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES31.All mode, UInt32 id, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES31.All mode, UInt32 id, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render multiple instances of primitives using a count derived from a transform feedback object @@ -30758,7 +30758,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackInstancedEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 id, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 id, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render multiple instances of primitives using a count derived from a transform feedback object @@ -30774,7 +30774,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackInstancedEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 id, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 id, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Enable or disable server-side GL capabilities @@ -30785,7 +30785,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glEnableiEXT")] [CLSCompliant(false)] - public static void Enable(OpenTK.Graphics.ES31.All target, Int32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES31.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Enable or disable server-side GL capabilities @@ -30796,12 +30796,12 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glEnableiEXT")] [CLSCompliant(false)] - public static void Enable(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glEndQueryEXT")] - public static void EndQuery(OpenTK.Graphics.ES31.All target) { throw new NotImplementedException(); } + public static void EndQuery(OpenTK.Graphics.ES31.All target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Indicate modifications to a range of a mapped buffer @@ -30816,7 +30816,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the length of the buffer subrange, in basic machine units. /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glFlushMappedBufferRangeEXT")] - public static void FlushMappedBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Indicate modifications to a range of a mapped buffer @@ -30831,21 +30831,21 @@ namespace OpenTK.Graphics.ES31 /// Specifies the length of the buffer subrange, in basic machine units. /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glFlushMappedBufferRangeEXT")] - public static void FlushMappedBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glFramebufferPixelLocalStorageSizeEXT")] [CLSCompliant(false)] - public static void FramebufferPixelLocalStorageSize(Int32 target, Int32 size) { throw new NotImplementedException(); } + public static void FramebufferPixelLocalStorageSize(Int32 target, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glFramebufferPixelLocalStorageSizeEXT")] [CLSCompliant(false)] - public static void FramebufferPixelLocalStorageSize(UInt32 target, Int32 size) { throw new NotImplementedException(); } + public static void FramebufferPixelLocalStorageSize(UInt32 target, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multisampled_render_to_texture] /// @@ -30856,7 +30856,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleEXT")] [CLSCompliant(false)] - public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, Int32 texture, Int32 level, Int32 samples) { throw new NotImplementedException(); } + public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, Int32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multisampled_render_to_texture] /// @@ -30867,7 +30867,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleEXT")] [CLSCompliant(false)] - public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, UInt32 texture, Int32 level, Int32 samples) { throw new NotImplementedException(); } + public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, UInt32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -30887,7 +30887,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureEXT")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -30907,7 +30907,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureEXT")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -30926,7 +30926,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureEXT")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -30945,14 +30945,14 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureEXT")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static Int32 GenProgramPipeline() { throw new NotImplementedException(); } + public static Int32 GenProgramPipeline() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -30965,7 +30965,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -30978,7 +30978,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -30991,7 +30991,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* pipelines) { throw new NotImplementedException(); } + public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -31004,7 +31004,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -31017,7 +31017,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -31030,14 +31030,14 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new NotImplementedException(); } + public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] [CLSCompliant(false)] - public static Int32 GenQuery() { throw new NotImplementedException(); } + public static Int32 GenQuery() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names @@ -31050,7 +31050,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names @@ -31063,7 +31063,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names @@ -31076,7 +31076,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] [CLSCompliant(false)] - public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names @@ -31089,7 +31089,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names @@ -31102,7 +31102,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names @@ -31115,54 +31115,54 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] [CLSCompliant(false)] - public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static Int32 GenSemaphore() { throw new NotImplementedException(); } + public static Int32 GenSemaphore() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] semaphores) { throw new NotImplementedException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 semaphores) { throw new NotImplementedException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] Int32* semaphores) { throw new NotImplementedException(); } + public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] Int32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] semaphores) { throw new NotImplementedException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 semaphores) { throw new NotImplementedException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* semaphores) { throw new NotImplementedException(); } + public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Query the bindings of color indices to user-defined varying out variables @@ -31175,7 +31175,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glGetFragDataIndexEXT")] [CLSCompliant(false)] - public static Int32 GetFragDataIndex(Int32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetFragDataIndex(Int32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Query the bindings of color indices to user-defined varying out variables @@ -31188,23 +31188,23 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glGetFragDataIndexEXT")] [CLSCompliant(false)] - public static Int32 GetFragDataIndex(UInt32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetFragDataIndex(UInt32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glGetFramebufferPixelLocalStorageSizeEXT")] [CLSCompliant(false)] - public static Int32 GetFramebufferPixelLocalStorageSize(Int32 target) { throw new NotImplementedException(); } + public static Int32 GetFramebufferPixelLocalStorageSize(Int32 target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glGetFramebufferPixelLocalStorageSizeEXT")] [CLSCompliant(false)] - public static Int32 GetFramebufferPixelLocalStorageSize(UInt32 target) { throw new NotImplementedException(); } + public static Int32 GetFramebufferPixelLocalStorageSize(UInt32 target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetGraphicsResetStatusEXT")] - public static OpenTK.Graphics.ES31.All GetGraphicsResetStatus() { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES31.All GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -31212,7 +31212,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -31220,7 +31220,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -31228,7 +31228,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -31236,7 +31236,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -31244,7 +31244,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -31252,7 +31252,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31261,7 +31261,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31270,7 +31270,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31279,7 +31279,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31287,7 +31287,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31295,7 +31295,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31303,7 +31303,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31312,7 +31312,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31321,7 +31321,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31330,7 +31330,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31338,7 +31338,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31346,7 +31346,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31354,7 +31354,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -31363,7 +31363,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -31372,7 +31372,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -31381,7 +31381,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -31390,7 +31390,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -31399,7 +31399,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -31408,7 +31408,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -31417,7 +31417,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -31426,7 +31426,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -31435,7 +31435,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -31444,7 +31444,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -31453,7 +31453,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -31462,7 +31462,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -31484,7 +31484,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES31.All type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES31.All type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -31506,7 +31506,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES31.All type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES31.All type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -31528,7 +31528,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.ES31.All type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES31.All type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -31550,7 +31550,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES31.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES31.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -31572,7 +31572,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES31.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES31.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -31594,7 +31594,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.ES31.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES31.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -31614,7 +31614,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -31634,7 +31634,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -31654,7 +31654,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static unsafe void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -31674,7 +31674,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -31694,7 +31694,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -31714,7 +31714,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static unsafe void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -31730,7 +31730,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -31746,7 +31746,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -31762,7 +31762,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -31778,7 +31778,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -31794,7 +31794,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -31810,7 +31810,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Query the fragment color index of a named variable within a program @@ -31826,7 +31826,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glGetProgramResourceLocationIndexEXT")] [CLSCompliant(false)] - public static Int32 GetProgramResourceLocationIndex(Int32 program, OpenTK.Graphics.ES31.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceLocationIndex(Int32 program, OpenTK.Graphics.ES31.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Query the fragment color index of a named variable within a program @@ -31842,7 +31842,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glGetProgramResourceLocationIndexEXT")] [CLSCompliant(false)] - public static Int32 GetProgramResourceLocationIndex(UInt32 program, OpenTK.Graphics.ES31.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceLocationIndex(UInt32 program, OpenTK.Graphics.ES31.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// @@ -31850,7 +31850,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryivEXT")] [CLSCompliant(false)] - public static void GetQuery(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQuery(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// @@ -31858,7 +31858,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryivEXT")] [CLSCompliant(false)] - public static void GetQuery(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQuery(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// @@ -31866,7 +31866,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryivEXT")] [CLSCompliant(false)] - public static unsafe void GetQuery(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQuery(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -31882,7 +31882,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -31898,7 +31898,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -31914,7 +31914,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -31930,7 +31930,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -31946,7 +31946,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -31962,7 +31962,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -31978,7 +31978,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -31994,7 +31994,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32010,7 +32010,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32026,7 +32026,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32042,7 +32042,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32058,7 +32058,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32074,7 +32074,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32090,7 +32090,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32106,7 +32106,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Return parameters of a query object @@ -32122,7 +32122,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryObjectuivEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Return parameters of a query object @@ -32138,7 +32138,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryObjectuivEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Return parameters of a query object @@ -32154,7 +32154,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryObjectuivEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32162,7 +32162,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32170,7 +32170,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32178,7 +32178,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32186,7 +32186,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32194,7 +32194,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32202,7 +32202,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32210,7 +32210,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivEXT")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32218,7 +32218,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivEXT")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32226,7 +32226,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32235,7 +32235,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32244,7 +32244,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32253,7 +32253,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32261,7 +32261,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32269,7 +32269,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32277,7 +32277,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32286,7 +32286,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.All pname, [OutAttribute] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.All pname, [OutAttribute] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32295,7 +32295,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.All pname, [OutAttribute] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.All pname, [OutAttribute] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32304,7 +32304,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.All pname, [OutAttribute] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.All pname, [OutAttribute] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32312,7 +32312,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, [OutAttribute] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, [OutAttribute] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32320,7 +32320,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, [OutAttribute] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, [OutAttribute] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32328,7 +32328,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, [OutAttribute] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, [OutAttribute] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32337,7 +32337,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32346,7 +32346,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32355,7 +32355,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32363,7 +32363,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32371,7 +32371,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32379,7 +32379,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32388,7 +32388,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32397,7 +32397,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32406,7 +32406,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32414,7 +32414,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32422,7 +32422,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32430,7 +32430,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -32438,7 +32438,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte[] data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -32446,7 +32446,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Byte data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Byte data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -32454,7 +32454,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte* data) { throw new NotImplementedException(); } + public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -32462,7 +32462,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte[] data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -32470,7 +32470,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Byte data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Byte data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -32478,20 +32478,20 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte* data) { throw new NotImplementedException(); } + public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static Byte GetUnsignedByte(OpenTK.Graphics.ES31.All pname) { throw new NotImplementedException(); } + public static Byte GetUnsignedByte(OpenTK.Graphics.ES31.All pname) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static Byte GetUnsignedByte(OpenTK.Graphics.ES31.GetPName pname) { throw new NotImplementedException(); } + public static Byte GetUnsignedByte(OpenTK.Graphics.ES31.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -32499,7 +32499,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte[] data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -32507,7 +32507,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Byte data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Byte data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -32515,28 +32515,28 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte* data) { throw new NotImplementedException(); } + public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte[] data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Byte data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Byte data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte* data) { throw new NotImplementedException(); } + public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_fd] /// @@ -32546,7 +32546,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object_fd", Version = "", EntryPoint = "glImportMemoryFdEXT")] [CLSCompliant(false)] - public static void ImportMemoryF(Int32 memory, Int64 size, OpenTK.Graphics.ES31.All handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportMemoryF(Int32 memory, Int64 size, OpenTK.Graphics.ES31.All handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_fd] /// @@ -32555,7 +32555,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object_fd", Version = "", EntryPoint = "glImportMemoryFdEXT")] [CLSCompliant(false)] - public static void ImportMemoryF(Int32 memory, Int64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportMemoryF(Int32 memory, Int64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_fd] /// @@ -32565,7 +32565,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object_fd", Version = "", EntryPoint = "glImportMemoryFdEXT")] [CLSCompliant(false)] - public static void ImportMemoryF(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.All handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportMemoryF(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.All handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_fd] /// @@ -32574,7 +32574,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object_fd", Version = "", EntryPoint = "glImportMemoryFdEXT")] [CLSCompliant(false)] - public static void ImportMemoryF(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportMemoryF(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32584,7 +32584,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES31.All handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES31.All handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32596,7 +32596,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T3[] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32608,7 +32608,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T3[,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32620,7 +32620,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T3[,,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32632,7 +32632,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] ref T3 handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32641,7 +32641,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32652,7 +32652,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32663,7 +32663,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32674,7 +32674,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32685,7 +32685,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T3 handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32695,7 +32695,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.All handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.All handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32707,7 +32707,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T3[] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32719,7 +32719,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T3[,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32731,7 +32731,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T3[,,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32743,7 +32743,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] ref T3 handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32752,7 +32752,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32763,7 +32763,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32774,7 +32774,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32785,7 +32785,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32796,7 +32796,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T3 handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32806,7 +32806,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32NameEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES31.All handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES31.All handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32818,7 +32818,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T3[] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32830,7 +32830,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T3[,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32842,7 +32842,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T3[,,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32854,7 +32854,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] ref T3 name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32863,7 +32863,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32NameEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32874,7 +32874,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32885,7 +32885,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32896,7 +32896,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32907,7 +32907,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T3 name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32917,7 +32917,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32NameEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.All handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.All handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32929,7 +32929,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T3[] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32941,7 +32941,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T3[,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32953,7 +32953,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T3[,,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32965,7 +32965,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] ref T3 name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32974,7 +32974,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32NameEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32985,7 +32985,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32996,7 +32996,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33007,7 +33007,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33018,7 +33018,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T3 name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_fd] /// @@ -33027,7 +33027,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore_fd", Version = "", EntryPoint = "glImportSemaphoreFdEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreF(Int32 semaphore, OpenTK.Graphics.ES31.All handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportSemaphoreF(Int32 semaphore, OpenTK.Graphics.ES31.All handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_fd] /// @@ -33035,7 +33035,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_semaphore_fd", Version = "", EntryPoint = "glImportSemaphoreFdEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreF(Int32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportSemaphoreF(Int32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_fd] /// @@ -33044,7 +33044,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore_fd", Version = "", EntryPoint = "glImportSemaphoreFdEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreF(UInt32 semaphore, OpenTK.Graphics.ES31.All handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportSemaphoreF(UInt32 semaphore, OpenTK.Graphics.ES31.All handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_fd] /// @@ -33052,7 +33052,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_semaphore_fd", Version = "", EntryPoint = "glImportSemaphoreFdEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreF(UInt32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportSemaphoreF(UInt32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33061,7 +33061,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES31.All handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES31.All handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33072,7 +33072,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T2[] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33083,7 +33083,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T2[,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33094,7 +33094,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T2[,,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33105,7 +33105,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] ref T2 handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33113,7 +33113,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33123,7 +33123,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33133,7 +33133,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33143,7 +33143,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33153,7 +33153,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T2 handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33162,7 +33162,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES31.All handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES31.All handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33173,7 +33173,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T2[] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33184,7 +33184,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T2[,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33195,7 +33195,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T2[,,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33206,7 +33206,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] ref T2 handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33214,7 +33214,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33224,7 +33224,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33234,7 +33234,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33244,7 +33244,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33254,7 +33254,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T2 handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33263,7 +33263,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32NameEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES31.All handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES31.All handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33274,7 +33274,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T2[] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33285,7 +33285,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T2[,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33296,7 +33296,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T2[,,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33307,7 +33307,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] ref T2 name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33315,7 +33315,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32NameEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33325,7 +33325,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33335,7 +33335,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33345,7 +33345,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33355,7 +33355,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T2 name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33364,7 +33364,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32NameEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES31.All handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES31.All handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33375,7 +33375,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T2[] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33386,7 +33386,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T2[,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33397,7 +33397,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T2[,,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33408,7 +33408,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] ref T2 name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33416,7 +33416,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32NameEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33426,7 +33426,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33436,7 +33436,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33446,7 +33446,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33456,13 +33456,13 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T2 name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_marker] /// /// [AutoGenerated(Category = "EXT_debug_marker", Version = "", EntryPoint = "glInsertEventMarkerEXT")] - public static void InsertEventMarker(Int32 length, String marker) { throw new NotImplementedException(); } + public static void InsertEventMarker(Int32 length, String marker) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Test whether a capability is enabled @@ -33475,7 +33475,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glIsEnablediEXT")] [CLSCompliant(false)] - public static bool IsEnabled(OpenTK.Graphics.ES31.All target, Int32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES31.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Test whether a capability is enabled @@ -33488,19 +33488,19 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glIsEnablediEXT")] [CLSCompliant(false)] - public static bool IsEnabled(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glIsMemoryObjectEXT")] [CLSCompliant(false)] - public static bool IsMemoryObject(Int32 memoryObject) { throw new NotImplementedException(); } + public static bool IsMemoryObject(Int32 memoryObject) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glIsMemoryObjectEXT")] [CLSCompliant(false)] - public static bool IsMemoryObject(UInt32 memoryObject) { throw new NotImplementedException(); } + public static bool IsMemoryObject(UInt32 memoryObject) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Determine if a name corresponds to a program pipeline object @@ -33510,7 +33510,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glIsProgramPipelineEXT")] [CLSCompliant(false)] - public static bool IsProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } + public static bool IsProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Determine if a name corresponds to a program pipeline object @@ -33520,7 +33520,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glIsProgramPipelineEXT")] [CLSCompliant(false)] - public static bool IsProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static bool IsProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Determine if a name corresponds to a query object @@ -33530,7 +33530,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glIsQueryEXT")] [CLSCompliant(false)] - public static bool IsQuery(Int32 id) { throw new NotImplementedException(); } + public static bool IsQuery(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Determine if a name corresponds to a query object @@ -33540,19 +33540,19 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glIsQueryEXT")] [CLSCompliant(false)] - public static bool IsQuery(UInt32 id) { throw new NotImplementedException(); } + public static bool IsQuery(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glIsSemaphoreEXT")] [CLSCompliant(false)] - public static bool IsSemaphore(Int32 semaphore) { throw new NotImplementedException(); } + public static bool IsSemaphore(Int32 semaphore) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glIsSemaphoreEXT")] [CLSCompliant(false)] - public static bool IsSemaphore(UInt32 semaphore) { throw new NotImplementedException(); } + public static bool IsSemaphore(UInt32 semaphore) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// @@ -33561,7 +33561,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glLabelObjectEXT")] [CLSCompliant(false)] - public static void LabelObject(OpenTK.Graphics.ES31.All type, Int32 @object, Int32 length, String label) { throw new NotImplementedException(); } + public static void LabelObject(OpenTK.Graphics.ES31.All type, Int32 @object, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// @@ -33570,7 +33570,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glLabelObjectEXT")] [CLSCompliant(false)] - public static void LabelObject(OpenTK.Graphics.ES31.All type, UInt32 @object, Int32 length, String label) { throw new NotImplementedException(); } + public static void LabelObject(OpenTK.Graphics.ES31.All type, UInt32 @object, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -33589,7 +33589,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 length, Int32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 length, Int32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -33608,7 +33608,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 length, UInt32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 length, UInt32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -33627,7 +33627,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr length, Int32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr length, Int32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -33646,7 +33646,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr length, UInt32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr length, UInt32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -33655,7 +33655,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.All pname, Int32[] @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.All pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -33664,7 +33664,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.All pname, ref Int32 @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.All pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -33673,7 +33673,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.All pname, Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.All pname, Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -33681,7 +33681,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, Int32[] @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -33689,7 +33689,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, ref Int32 @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -33697,7 +33697,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -33706,7 +33706,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.All pname, Int32[] @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.All pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -33715,7 +33715,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.All pname, ref Int32 @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.All pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -33724,7 +33724,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.All pname, Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.All pname, Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -33732,7 +33732,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, Int32[] @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -33740,7 +33740,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, ref Int32 @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -33748,7 +33748,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -33768,7 +33768,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static void MultiDrawArrays(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -33788,7 +33788,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static void MultiDrawArrays(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -33808,7 +33808,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawArrays(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawArrays(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -33827,7 +33827,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static void MultiDrawArrays(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -33846,7 +33846,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static void MultiDrawArrays(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -33865,7 +33865,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawArrays(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawArrays(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -33884,7 +33884,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectEXT")] - public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -33906,7 +33906,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES31.All mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -33928,7 +33928,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES31.All mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[,] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -33950,7 +33950,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES31.All mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[,,] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -33971,7 +33971,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectEXT")] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES31.All mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] ref T1 indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -33989,7 +33989,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the distance in basic machine units between elements of the draw parameter array. /// [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectEXT")] - public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -34010,7 +34010,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -34031,7 +34031,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[,] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -34052,7 +34052,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[,,] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -34072,7 +34072,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectEXT")] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] ref T1 indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34098,7 +34098,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex", Version = "", EntryPoint = "glMultiDrawElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) { throw new NotImplementedException(); } + public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34126,7 +34126,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34154,7 +34154,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34182,7 +34182,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34210,7 +34210,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34236,7 +34236,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex", Version = "", EntryPoint = "glMultiDrawElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) { throw new NotImplementedException(); } + public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34264,7 +34264,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34292,7 +34292,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34320,7 +34320,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34348,7 +34348,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34374,7 +34374,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex", Version = "", EntryPoint = "glMultiDrawElementsBaseVertexEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34402,7 +34402,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34430,7 +34430,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34458,7 +34458,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34486,7 +34486,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34511,7 +34511,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex", Version = "", EntryPoint = "glMultiDrawElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) { throw new NotImplementedException(); } + public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34538,7 +34538,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34565,7 +34565,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34592,7 +34592,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34619,7 +34619,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34644,7 +34644,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex", Version = "", EntryPoint = "glMultiDrawElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) { throw new NotImplementedException(); } + public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34671,7 +34671,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34698,7 +34698,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34725,7 +34725,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34752,7 +34752,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34777,7 +34777,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex", Version = "", EntryPoint = "glMultiDrawElementsBaseVertexEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34804,7 +34804,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34831,7 +34831,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34858,7 +34858,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34885,7 +34885,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -34908,7 +34908,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static void MultiDrawElements(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -34933,7 +34933,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -34958,7 +34958,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -34983,7 +34983,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35008,7 +35008,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35031,7 +35031,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static void MultiDrawElements(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35056,7 +35056,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35081,7 +35081,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35106,7 +35106,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35131,7 +35131,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35154,7 +35154,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawElements(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElements(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35179,7 +35179,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35204,7 +35204,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35229,7 +35229,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35254,7 +35254,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35276,7 +35276,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static void MultiDrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35300,7 +35300,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35324,7 +35324,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35348,7 +35348,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35372,7 +35372,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35394,7 +35394,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static void MultiDrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35418,7 +35418,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35442,7 +35442,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35466,7 +35466,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35490,7 +35490,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35512,7 +35512,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35536,7 +35536,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35560,7 +35560,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35584,7 +35584,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35608,7 +35608,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -35630,7 +35630,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectEXT")] - public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES31.All mode, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES31.All mode, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -35655,7 +35655,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES31.All mode, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -35680,7 +35680,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES31.All mode, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -35705,7 +35705,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES31.All mode, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,,] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -35729,7 +35729,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectEXT")] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES31.All mode, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] ref T2 indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -35750,7 +35750,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the distance in basic machine units between elements of the draw parameter array. /// [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectEXT")] - public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -35774,7 +35774,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -35798,7 +35798,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -35822,7 +35822,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,,] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -35845,7 +35845,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectEXT")] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] ref T2 indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -35855,7 +35855,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, Int32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -35865,7 +35865,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, Int32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -35875,7 +35875,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, UInt32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -35885,7 +35885,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -35894,7 +35894,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glNamedBufferStorageMemEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageMem(Int32 buffer, Int32 size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void NamedBufferStorageMem(Int32 buffer, Int32 size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -35903,7 +35903,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glNamedBufferStorageMemEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageMem(Int32 buffer, IntPtr size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void NamedBufferStorageMem(Int32 buffer, IntPtr size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -35912,7 +35912,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glNamedBufferStorageMemEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageMem(UInt32 buffer, Int32 size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void NamedBufferStorageMem(UInt32 buffer, Int32 size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -35921,7 +35921,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glNamedBufferStorageMemEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageMem(UInt32 buffer, IntPtr size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void NamedBufferStorageMem(UInt32 buffer, IntPtr size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_tessellation_shader] /// Specifies the parameters for patch primitives @@ -35933,18 +35933,18 @@ namespace OpenTK.Graphics.ES31 /// Specifies the new value for the parameter given by pname. /// [AutoGenerated(Category = "EXT_tessellation_shader", Version = "", EntryPoint = "glPatchParameteriEXT")] - public static void PatchParameter(OpenTK.Graphics.ES31.All pname, Int32 value) { throw new NotImplementedException(); } + public static void PatchParameter(OpenTK.Graphics.ES31.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_polygon_offset_clamp] /// /// /// [AutoGenerated(Category = "EXT_polygon_offset_clamp", Version = "", EntryPoint = "glPolygonOffsetClampEXT")] - public static void PolygonOffsetClamp(Single factor, Single units, Single clamp) { throw new NotImplementedException(); } + public static void PolygonOffsetClamp(Single factor, Single units, Single clamp) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_marker] [AutoGenerated(Category = "EXT_debug_marker", Version = "", EntryPoint = "glPopGroupMarkerEXT")] - public static void PopGroupMarker() { throw new NotImplementedException(); } + public static void PopGroupMarker() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_primitive_bounding_box] /// @@ -35956,7 +35956,7 @@ namespace OpenTK.Graphics.ES31 /// /// [AutoGenerated(Category = "EXT_primitive_bounding_box", Version = "", EntryPoint = "glPrimitiveBoundingBoxEXT")] - public static void PrimitiveBoundingBox(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW) { throw new NotImplementedException(); } + public static void PrimitiveBoundingBox(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify a parameter for a program object @@ -35972,7 +35972,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramParameteriEXT")] [CLSCompliant(false)] - public static void ProgramParameter(Int32 program, OpenTK.Graphics.ES31.All pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(Int32 program, OpenTK.Graphics.ES31.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify a parameter for a program object @@ -35988,7 +35988,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramParameteriEXT")] [CLSCompliant(false)] - public static void ProgramParameter(UInt32 program, OpenTK.Graphics.ES31.All pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(UInt32 program, OpenTK.Graphics.ES31.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36004,7 +36004,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Single v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36020,7 +36020,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Single v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36039,7 +36039,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36058,7 +36058,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36077,7 +36077,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36096,7 +36096,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36115,7 +36115,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36134,7 +36134,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36150,7 +36150,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1iEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36166,7 +36166,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1iEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36185,7 +36185,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36204,7 +36204,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36223,7 +36223,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36242,7 +36242,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36261,7 +36261,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36280,7 +36280,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36296,7 +36296,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uiEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, UInt32 v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, UInt32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36315,7 +36315,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36334,7 +36334,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36353,7 +36353,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36372,7 +36372,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36391,7 +36391,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36410,7 +36410,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36429,7 +36429,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36448,7 +36448,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36467,7 +36467,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36486,7 +36486,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36505,7 +36505,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36524,7 +36524,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2iEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36543,7 +36543,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2iEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36562,7 +36562,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36581,7 +36581,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36600,7 +36600,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36619,7 +36619,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36638,7 +36638,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2uiEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, UInt32 v0, UInt32 v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, UInt32 v0, UInt32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36657,7 +36657,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36676,7 +36676,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36695,7 +36695,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2uivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36717,7 +36717,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36739,7 +36739,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36758,7 +36758,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36777,7 +36777,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36796,7 +36796,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36815,7 +36815,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36834,7 +36834,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36853,7 +36853,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36875,7 +36875,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3iEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36897,7 +36897,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3iEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36916,7 +36916,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36935,7 +36935,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36954,7 +36954,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36973,7 +36973,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36992,7 +36992,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37011,7 +37011,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37033,7 +37033,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3uiEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37052,7 +37052,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37071,7 +37071,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37090,7 +37090,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3uivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37115,7 +37115,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37140,7 +37140,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37159,7 +37159,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37178,7 +37178,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37197,7 +37197,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37216,7 +37216,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37235,7 +37235,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37254,7 +37254,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37279,7 +37279,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4iEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37304,7 +37304,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4iEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37323,7 +37323,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37342,7 +37342,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37361,7 +37361,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37380,7 +37380,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37399,7 +37399,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37418,7 +37418,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37443,7 +37443,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4uiEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37462,7 +37462,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37481,7 +37481,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37500,7 +37500,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4uivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37510,7 +37510,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*4] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37520,7 +37520,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*4] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37530,7 +37530,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*4] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37540,7 +37540,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*4] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37550,7 +37550,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*4] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37560,7 +37560,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*4] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37570,7 +37570,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37580,7 +37580,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37590,7 +37590,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37600,7 +37600,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37610,7 +37610,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37620,7 +37620,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37630,7 +37630,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37640,7 +37640,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37650,7 +37650,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37660,7 +37660,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37670,7 +37670,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37680,7 +37680,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37690,7 +37690,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*9] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37700,7 +37700,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*9] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37710,7 +37710,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*9] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37720,7 +37720,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*9] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37730,7 +37730,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*9] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37740,7 +37740,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*9] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37750,7 +37750,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37760,7 +37760,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37770,7 +37770,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37780,7 +37780,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37790,7 +37790,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37800,7 +37800,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37810,7 +37810,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37820,7 +37820,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37830,7 +37830,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37840,7 +37840,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37850,7 +37850,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37860,7 +37860,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -37870,7 +37870,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*16] [AutoGenerated(Category = "EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -37880,7 +37880,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*16] [AutoGenerated(Category = "EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -37890,7 +37890,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*16] [AutoGenerated(Category = "EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -37900,7 +37900,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*16] [AutoGenerated(Category = "EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -37910,7 +37910,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*16] [AutoGenerated(Category = "EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -37920,7 +37920,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*16] [AutoGenerated(Category = "EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37930,7 +37930,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37940,7 +37940,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37950,7 +37950,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37960,7 +37960,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37970,7 +37970,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37980,7 +37980,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37990,7 +37990,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38000,7 +38000,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38010,7 +38010,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38020,7 +38020,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38030,7 +38030,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38040,13 +38040,13 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_marker] /// /// [AutoGenerated(Category = "EXT_debug_marker", Version = "", EntryPoint = "glPushGroupMarkerEXT")] - public static void PushGroupMarker(Int32 length, String marker) { throw new NotImplementedException(); } + public static void PushGroupMarker(Int32 length, String marker) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Record the GL time into a query object after all previous commands have reached the GL server but have not yet necessarily executed. @@ -38059,7 +38059,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glQueryCounterEXT")] [CLSCompliant(false)] - public static void QueryCounter(Int32 id, OpenTK.Graphics.ES31.All target) { throw new NotImplementedException(); } + public static void QueryCounter(Int32 id, OpenTK.Graphics.ES31.All target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Record the GL time into a query object after all previous commands have reached the GL server but have not yet necessarily executed. @@ -38072,27 +38072,27 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glQueryCounterEXT")] [CLSCompliant(false)] - public static void QueryCounter(UInt32 id, OpenTK.Graphics.ES31.All target) { throw new NotImplementedException(); } + public static void QueryCounter(UInt32 id, OpenTK.Graphics.ES31.All target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glRasterSamplesEXT")] [CLSCompliant(false)] - public static void RasterSamples(Int32 samples, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void RasterSamples(Int32 samples, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glRasterSamplesEXT")] [CLSCompliant(false)] - public static void RasterSamples(UInt32 samples, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void RasterSamples(UInt32 samples, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// /// [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glReadBufferIndexedEXT")] - public static void ReadBufferIndexed(OpenTK.Graphics.ES31.All src, Int32 index) { throw new NotImplementedException(); } + public static void ReadBufferIndexed(OpenTK.Graphics.ES31.All src, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -38104,7 +38104,7 @@ namespace OpenTK.Graphics.ES31 /// /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -38119,7 +38119,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -38134,7 +38134,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -38149,7 +38149,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -38163,21 +38163,21 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_win32_keyed_mutex] /// /// [AutoGenerated(Category = "EXT_win32_keyed_mutex", Version = "", EntryPoint = "glReleaseKeyedMutexWin32EXT")] [CLSCompliant(false)] - public static bool ReleaseKeyedMutexWin32(Int32 memory, Int64 key) { throw new NotImplementedException(); } + public static bool ReleaseKeyedMutexWin32(Int32 memory, Int64 key) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_win32_keyed_mutex] /// /// [AutoGenerated(Category = "EXT_win32_keyed_mutex", Version = "", EntryPoint = "glReleaseKeyedMutexWin32EXT")] [CLSCompliant(false)] - public static bool ReleaseKeyedMutexWin32(UInt32 memory, UInt64 key) { throw new NotImplementedException(); } + public static bool ReleaseKeyedMutexWin32(UInt32 memory, UInt64 key) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multisampled_render_to_texture] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -38198,7 +38198,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glRenderbufferStorageMultisampleEXT")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38206,7 +38206,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38214,7 +38214,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38222,7 +38222,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38230,7 +38230,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38238,7 +38238,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38246,7 +38246,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38254,7 +38254,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivEXT")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38262,7 +38262,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivEXT")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38270,7 +38270,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38279,7 +38279,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.All pname, Int64[] @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.All pname, Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38288,7 +38288,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.All pname, ref Int64 @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.All pname, ref Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38297,7 +38297,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.All pname, Int64* @params) { throw new NotImplementedException(); } + public static unsafe void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.All pname, Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38305,7 +38305,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, Int64[] @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38313,7 +38313,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, ref Int64 @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, ref Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38321,7 +38321,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, Int64* @params) { throw new NotImplementedException(); } + public static unsafe void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38330,7 +38330,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.All pname, UInt64[] @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.All pname, UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38339,7 +38339,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.All pname, ref UInt64 @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.All pname, ref UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38348,7 +38348,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.All pname, UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.All pname, UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38356,7 +38356,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, UInt64[] @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38364,7 +38364,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, ref UInt64 @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, ref UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38372,7 +38372,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38384,7 +38384,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.All[] dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.All[] dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38395,7 +38395,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.TextureLayout[] dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.TextureLayout[] dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38407,7 +38407,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES31.All dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES31.All dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38418,7 +38418,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES31.TextureLayout dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES31.TextureLayout dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38430,7 +38430,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.All* dstLayouts) { throw new NotImplementedException(); } + public static unsafe void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.All* dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38441,7 +38441,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.TextureLayout* dstLayouts) { throw new NotImplementedException(); } + public static unsafe void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.TextureLayout* dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38453,7 +38453,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.All[] dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.All[] dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38464,7 +38464,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.TextureLayout[] dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.TextureLayout[] dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38476,7 +38476,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES31.All dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES31.All dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38487,7 +38487,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES31.TextureLayout dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES31.TextureLayout dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38499,7 +38499,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.All* dstLayouts) { throw new NotImplementedException(); } + public static unsafe void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.All* dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38510,7 +38510,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.TextureLayout* dstLayouts) { throw new NotImplementedException(); } + public static unsafe void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.TextureLayout* dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -38527,7 +38527,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferEXT")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -38544,7 +38544,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferEXT")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -38560,7 +38560,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferEXT")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.All internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.All internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -38576,7 +38576,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferEXT")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.All internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.All internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -38598,7 +38598,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -38620,7 +38620,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -38642,7 +38642,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -38664,7 +38664,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_sparse_texture] /// @@ -38677,7 +38677,7 @@ namespace OpenTK.Graphics.ES31 /// /// [AutoGenerated(Category = "EXT_sparse_texture", Version = "", EntryPoint = "glTexPageCommitmentEXT")] - public static void TexPageCommitment(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit) { throw new NotImplementedException(); } + public static void TexPageCommitment(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38686,7 +38686,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38695,7 +38695,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38704,7 +38704,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38712,7 +38712,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38720,7 +38720,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38728,7 +38728,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38737,7 +38737,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38746,7 +38746,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38755,7 +38755,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38763,7 +38763,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38771,7 +38771,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38779,7 +38779,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// Simultaneously specify storage for all levels of a one-dimensional texture @@ -38797,7 +38797,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the width of the texture, in texels. /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage1DEXT")] - public static void TexStorage1D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TexStorage1D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// Simultaneously specify storage for all levels of a two-dimensional texture @@ -38818,7 +38818,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the height of the texture, in texels. /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage2DEXT")] - public static void TexStorage2D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TexStorage2D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// Simultaneously specify storage for all levels of a three-dimensional or two-dimensional array texture @@ -38842,7 +38842,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the depth of the texture, in texels. /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage3DEXT")] - public static void TexStorage3D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TexStorage3D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -38854,7 +38854,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem1DEXT")] [CLSCompliant(false)] - public static void TexStorageMem1D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem1D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -38866,7 +38866,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem1DEXT")] [CLSCompliant(false)] - public static void TexStorageMem1D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem1D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -38877,7 +38877,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem1DEXT")] [CLSCompliant(false)] - public static void TexStorageMem1D(OpenTK.Graphics.ES31.TextureTarget target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem1D(OpenTK.Graphics.ES31.TextureTarget target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -38888,7 +38888,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem1DEXT")] [CLSCompliant(false)] - public static void TexStorageMem1D(OpenTK.Graphics.ES31.TextureTarget target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem1D(OpenTK.Graphics.ES31.TextureTarget target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -38901,7 +38901,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DEXT")] [CLSCompliant(false)] - public static void TexStorageMem2D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -38914,7 +38914,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DEXT")] [CLSCompliant(false)] - public static void TexStorageMem2D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -38926,7 +38926,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DEXT")] [CLSCompliant(false)] - public static void TexStorageMem2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -38938,7 +38938,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DEXT")] [CLSCompliant(false)] - public static void TexStorageMem2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -38952,7 +38952,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -38966,7 +38966,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -38979,7 +38979,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES31.TextureTarget target, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES31.TextureTarget target, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -38992,7 +38992,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES31.TextureTarget target, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES31.TextureTarget target, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -39006,7 +39006,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DEXT")] [CLSCompliant(false)] - public static void TexStorageMem3D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -39020,7 +39020,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DEXT")] [CLSCompliant(false)] - public static void TexStorageMem3D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -39033,7 +39033,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DEXT")] [CLSCompliant(false)] - public static void TexStorageMem3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -39046,7 +39046,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DEXT")] [CLSCompliant(false)] - public static void TexStorageMem3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -39061,7 +39061,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -39076,7 +39076,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -39090,7 +39090,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES31.TextureTarget target, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES31.TextureTarget target, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -39104,7 +39104,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES31.TextureTarget target, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES31.TextureTarget target, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -39114,7 +39114,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage1DEXT")] [CLSCompliant(false)] - public static void TextureStorage1D(Int32 texture, OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TextureStorage1D(Int32 texture, OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -39124,7 +39124,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage1DEXT")] [CLSCompliant(false)] - public static void TextureStorage1D(UInt32 texture, OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TextureStorage1D(UInt32 texture, OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -39135,7 +39135,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage2DEXT")] [CLSCompliant(false)] - public static void TextureStorage2D(Int32 texture, OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TextureStorage2D(Int32 texture, OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -39146,7 +39146,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage2DEXT")] [CLSCompliant(false)] - public static void TextureStorage2D(UInt32 texture, OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TextureStorage2D(UInt32 texture, OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -39158,7 +39158,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage3DEXT")] [CLSCompliant(false)] - public static void TextureStorage3D(Int32 texture, OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TextureStorage3D(Int32 texture, OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -39170,7 +39170,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage3DEXT")] [CLSCompliant(false)] - public static void TextureStorage3D(UInt32 texture, OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TextureStorage3D(UInt32 texture, OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -39181,7 +39181,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem1DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem1D(Int32 texture, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem1D(Int32 texture, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -39192,7 +39192,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem1DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem1D(UInt32 texture, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem1D(UInt32 texture, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -39204,7 +39204,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem2DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem2D(Int32 texture, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem2D(Int32 texture, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -39216,7 +39216,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem2DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem2D(UInt32 texture, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem2D(UInt32 texture, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -39229,7 +39229,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorageMem2DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem2DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -39242,7 +39242,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorageMem2DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem2DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -39255,7 +39255,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem3DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem3D(Int32 texture, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem3D(Int32 texture, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -39268,7 +39268,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem3DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem3D(UInt32 texture, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem3D(UInt32 texture, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -39282,7 +39282,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorageMem3DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem3DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -39296,7 +39296,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorageMem3DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem3DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_view] /// Initialize a texture as a data alias of another texture's data store @@ -39327,7 +39327,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_texture_view", Version = "", EntryPoint = "glTextureViewEXT")] [CLSCompliant(false)] - public static void TextureView(Int32 texture, OpenTK.Graphics.ES31.All target, Int32 origtexture, OpenTK.Graphics.ES31.All internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new NotImplementedException(); } + public static void TextureView(Int32 texture, OpenTK.Graphics.ES31.All target, Int32 origtexture, OpenTK.Graphics.ES31.All internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_view] /// Initialize a texture as a data alias of another texture's data store @@ -39358,7 +39358,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_texture_view", Version = "", EntryPoint = "glTextureViewEXT")] [CLSCompliant(false)] - public static void TextureView(UInt32 texture, OpenTK.Graphics.ES31.All target, UInt32 origtexture, OpenTK.Graphics.ES31.All internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new NotImplementedException(); } + public static void TextureView(UInt32 texture, OpenTK.Graphics.ES31.All target, UInt32 origtexture, OpenTK.Graphics.ES31.All internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind stages of a program object to a program pipeline @@ -39374,7 +39374,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseProgramStagesEXT")] [CLSCompliant(false)] - public static void UseProgramStages(Int32 pipeline, Int32 stages, Int32 program) { throw new NotImplementedException(); } + public static void UseProgramStages(Int32 pipeline, Int32 stages, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind stages of a program object to a program pipeline @@ -39390,21 +39390,21 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseProgramStagesEXT")] [CLSCompliant(false)] - public static void UseProgramStages(UInt32 pipeline, UInt32 stages, UInt32 program) { throw new NotImplementedException(); } + public static void UseProgramStages(UInt32 pipeline, UInt32 stages, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseShaderProgramEXT")] [CLSCompliant(false)] - public static void UseShaderProgram(OpenTK.Graphics.ES31.All type, Int32 program) { throw new NotImplementedException(); } + public static void UseShaderProgram(OpenTK.Graphics.ES31.All type, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseShaderProgramEXT")] [CLSCompliant(false)] - public static void UseShaderProgram(OpenTK.Graphics.ES31.All type, UInt32 program) { throw new NotImplementedException(); } + public static void UseShaderProgram(OpenTK.Graphics.ES31.All type, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Validate a program pipeline object against current GL state @@ -39414,7 +39414,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glValidateProgramPipelineEXT")] [CLSCompliant(false)] - public static void ValidateProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } + public static void ValidateProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Validate a program pipeline object against current GL state @@ -39424,7 +39424,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glValidateProgramPipelineEXT")] [CLSCompliant(false)] - public static void ValidateProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static void ValidateProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -39437,7 +39437,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorEXT")] [CLSCompliant(false)] - public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -39450,7 +39450,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorEXT")] [CLSCompliant(false)] - public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39462,7 +39462,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.All[] srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.All[] srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39473,7 +39473,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.TextureLayout[] srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.TextureLayout[] srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39485,7 +39485,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES31.All srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES31.All srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39496,7 +39496,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES31.TextureLayout srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES31.TextureLayout srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39508,7 +39508,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.All* srcLayouts) { throw new NotImplementedException(); } + public static unsafe void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.All* srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39519,7 +39519,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.TextureLayout* srcLayouts) { throw new NotImplementedException(); } + public static unsafe void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.TextureLayout* srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39531,7 +39531,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.All[] srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.All[] srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39542,7 +39542,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.TextureLayout[] srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.TextureLayout[] srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39554,7 +39554,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES31.All srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES31.All srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39565,7 +39565,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES31.TextureLayout srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES31.TextureLayout srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39577,7 +39577,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.All* srcLayouts) { throw new NotImplementedException(); } + public static unsafe void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.All* srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39588,7 +39588,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.TextureLayout* srcLayouts) { throw new NotImplementedException(); } + public static unsafe void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.TextureLayout* srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_window_rectangles] /// @@ -39596,7 +39596,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(count)] [AutoGenerated(Category = "EXT_window_rectangles", Version = "", EntryPoint = "glWindowRectanglesEXT")] [CLSCompliant(false)] - public static void WindowRectangles(OpenTK.Graphics.ES31.All mode, Int32 count, [CountAttribute(Computed = "count")] Int32[] box) { throw new NotImplementedException(); } + public static void WindowRectangles(OpenTK.Graphics.ES31.All mode, Int32 count, [CountAttribute(Computed = "count")] Int32[] box) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_window_rectangles] /// @@ -39604,7 +39604,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(count)] [AutoGenerated(Category = "EXT_window_rectangles", Version = "", EntryPoint = "glWindowRectanglesEXT")] [CLSCompliant(false)] - public static void WindowRectangles(OpenTK.Graphics.ES31.All mode, Int32 count, [CountAttribute(Computed = "count")] ref Int32 box) { throw new NotImplementedException(); } + public static void WindowRectangles(OpenTK.Graphics.ES31.All mode, Int32 count, [CountAttribute(Computed = "count")] ref Int32 box) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_window_rectangles] /// @@ -39612,7 +39612,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(count)] [AutoGenerated(Category = "EXT_window_rectangles", Version = "", EntryPoint = "glWindowRectanglesEXT")] [CLSCompliant(false)] - public static unsafe void WindowRectangles(OpenTK.Graphics.ES31.All mode, Int32 count, [CountAttribute(Computed = "count")] Int32* box) { throw new NotImplementedException(); } + public static unsafe void WindowRectangles(OpenTK.Graphics.ES31.All mode, Int32 count, [CountAttribute(Computed = "count")] Int32* box) { throw new BindingsNotRewrittenException(); } } @@ -39628,7 +39628,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTexture2DDownsampleIMG")] [CLSCompliant(false)] - public static void FramebufferTexture2DDownsample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, Int32 texture, Int32 level, Int32 xscale, Int32 yscale) { throw new NotImplementedException(); } + public static void FramebufferTexture2DDownsample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, Int32 texture, Int32 level, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_framebuffer_downsample] /// @@ -39640,7 +39640,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTexture2DDownsampleIMG")] [CLSCompliant(false)] - public static void FramebufferTexture2DDownsample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, UInt32 texture, Int32 level, Int32 xscale, Int32 yscale) { throw new NotImplementedException(); } + public static void FramebufferTexture2DDownsample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, UInt32 texture, Int32 level, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_multisampled_render_to_texture] /// @@ -39651,7 +39651,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleIMG")] [CLSCompliant(false)] - public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, Int32 texture, Int32 level, Int32 samples) { throw new NotImplementedException(); } + public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, Int32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_multisampled_render_to_texture] /// @@ -39662,7 +39662,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleIMG")] [CLSCompliant(false)] - public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, UInt32 texture, Int32 level, Int32 samples) { throw new NotImplementedException(); } + public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, UInt32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_framebuffer_downsample] /// @@ -39675,7 +39675,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTextureLayerDownsampleIMG")] [CLSCompliant(false)] - public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, Int32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new NotImplementedException(); } + public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, Int32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_framebuffer_downsample] /// @@ -39688,7 +39688,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTextureLayerDownsampleIMG")] [CLSCompliant(false)] - public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, UInt32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new NotImplementedException(); } + public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, UInt32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_framebuffer_downsample] /// @@ -39700,7 +39700,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTextureLayerDownsampleIMG")] [CLSCompliant(false)] - public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new NotImplementedException(); } + public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_framebuffer_downsample] /// @@ -39712,33 +39712,33 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTextureLayerDownsampleIMG")] [CLSCompliant(false)] - public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new NotImplementedException(); } + public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleIMG")] [CLSCompliant(false)] - public static Int64 GetTextureHandle(Int32 texture) { throw new NotImplementedException(); } + public static Int64 GetTextureHandle(Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleIMG")] [CLSCompliant(false)] - public static Int64 GetTextureHandle(UInt32 texture) { throw new NotImplementedException(); } + public static Int64 GetTextureHandle(UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glGetTextureSamplerHandleIMG")] [CLSCompliant(false)] - public static Int64 GetTextureSamplerHandle(Int32 texture, Int32 sampler) { throw new NotImplementedException(); } + public static Int64 GetTextureSamplerHandle(Int32 texture, Int32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glGetTextureSamplerHandleIMG")] [CLSCompliant(false)] - public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new NotImplementedException(); } + public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -39746,7 +39746,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64IMG")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -39754,7 +39754,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64IMG")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -39763,7 +39763,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] values) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -39772,7 +39772,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 values) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -39781,7 +39781,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vIMG")] [CLSCompliant(false)] - public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* values) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* values) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -39790,7 +39790,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] values) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -39799,7 +39799,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 values) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -39808,7 +39808,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vIMG")] [CLSCompliant(false)] - public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_multisampled_render_to_texture] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -39829,21 +39829,21 @@ namespace OpenTK.Graphics.ES31 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glRenderbufferStorageMultisampleIMG")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64IMG")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64IMG")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -39851,7 +39851,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -39859,7 +39859,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -39867,7 +39867,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vIMG")] [CLSCompliant(false)] - public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -39875,7 +39875,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -39883,7 +39883,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -39891,7 +39891,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vIMG")] [CLSCompliant(false)] - public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new BindingsNotRewrittenException(); } } @@ -39901,174 +39901,174 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glBeginPerfQueryINTEL")] [CLSCompliant(false)] - public static void BeginPerfQuery(Int32 queryHandle) { throw new NotImplementedException(); } + public static void BeginPerfQuery(Int32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glBeginPerfQueryINTEL")] [CLSCompliant(false)] - public static void BeginPerfQuery(UInt32 queryHandle) { throw new NotImplementedException(); } + public static void BeginPerfQuery(UInt32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static void CreatePerfQuery(Int32 queryId, [OutAttribute] Int32[] queryHandle) { throw new NotImplementedException(); } + public static void CreatePerfQuery(Int32 queryId, [OutAttribute] Int32[] queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static void CreatePerfQuery(Int32 queryId, [OutAttribute] out Int32 queryHandle) { throw new NotImplementedException(); } + public static void CreatePerfQuery(Int32 queryId, [OutAttribute] out Int32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static unsafe void CreatePerfQuery(Int32 queryId, [OutAttribute] Int32* queryHandle) { throw new NotImplementedException(); } + public static unsafe void CreatePerfQuery(Int32 queryId, [OutAttribute] Int32* queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static void CreatePerfQuery(UInt32 queryId, [OutAttribute] UInt32[] queryHandle) { throw new NotImplementedException(); } + public static void CreatePerfQuery(UInt32 queryId, [OutAttribute] UInt32[] queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static void CreatePerfQuery(UInt32 queryId, [OutAttribute] out UInt32 queryHandle) { throw new NotImplementedException(); } + public static void CreatePerfQuery(UInt32 queryId, [OutAttribute] out UInt32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static unsafe void CreatePerfQuery(UInt32 queryId, [OutAttribute] UInt32* queryHandle) { throw new NotImplementedException(); } + public static unsafe void CreatePerfQuery(UInt32 queryId, [OutAttribute] UInt32* queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glDeletePerfQueryINTEL")] [CLSCompliant(false)] - public static void DeletePerfQuery(Int32 queryHandle) { throw new NotImplementedException(); } + public static void DeletePerfQuery(Int32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glDeletePerfQueryINTEL")] [CLSCompliant(false)] - public static void DeletePerfQuery(UInt32 queryHandle) { throw new NotImplementedException(); } + public static void DeletePerfQuery(UInt32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glEndPerfQueryINTEL")] [CLSCompliant(false)] - public static void EndPerfQuery(Int32 queryHandle) { throw new NotImplementedException(); } + public static void EndPerfQuery(Int32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glEndPerfQueryINTEL")] [CLSCompliant(false)] - public static void EndPerfQuery(UInt32 queryHandle) { throw new NotImplementedException(); } + public static void EndPerfQuery(UInt32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static Int32 GetFirstPerfQueryI() { throw new NotImplementedException(); } + public static Int32 GetFirstPerfQueryI() { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetFirstPerfQueryI([OutAttribute] Int32[] queryId) { throw new NotImplementedException(); } + public static void GetFirstPerfQueryI([OutAttribute] Int32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetFirstPerfQueryI([OutAttribute] out Int32 queryId) { throw new NotImplementedException(); } + public static void GetFirstPerfQueryI([OutAttribute] out Int32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static unsafe void GetFirstPerfQueryI([OutAttribute] Int32* queryId) { throw new NotImplementedException(); } + public static unsafe void GetFirstPerfQueryI([OutAttribute] Int32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetFirstPerfQueryI([OutAttribute] UInt32[] queryId) { throw new NotImplementedException(); } + public static void GetFirstPerfQueryI([OutAttribute] UInt32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetFirstPerfQueryI([OutAttribute] out UInt32 queryId) { throw new NotImplementedException(); } + public static void GetFirstPerfQueryI([OutAttribute] out UInt32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static unsafe void GetFirstPerfQueryI([OutAttribute] UInt32* queryId) { throw new NotImplementedException(); } + public static unsafe void GetFirstPerfQueryI([OutAttribute] UInt32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static Int32 GetNextPerfQueryI(Int32 queryId) { throw new NotImplementedException(); } + public static Int32 GetNextPerfQueryI(Int32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static Int32 GetNextPerfQueryI(UInt32 queryId) { throw new NotImplementedException(); } + public static Int32 GetNextPerfQueryI(UInt32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetNextPerfQueryI(Int32 queryId, [OutAttribute] Int32[] nextQueryId) { throw new NotImplementedException(); } + public static void GetNextPerfQueryI(Int32 queryId, [OutAttribute] Int32[] nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetNextPerfQueryI(Int32 queryId, [OutAttribute] out Int32 nextQueryId) { throw new NotImplementedException(); } + public static void GetNextPerfQueryI(Int32 queryId, [OutAttribute] out Int32 nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static unsafe void GetNextPerfQueryI(Int32 queryId, [OutAttribute] Int32* nextQueryId) { throw new NotImplementedException(); } + public static unsafe void GetNextPerfQueryI(Int32 queryId, [OutAttribute] Int32* nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] UInt32[] nextQueryId) { throw new NotImplementedException(); } + public static void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] UInt32[] nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] out UInt32 nextQueryId) { throw new NotImplementedException(); } + public static void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] out UInt32 nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static unsafe void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] UInt32* nextQueryId) { throw new NotImplementedException(); } + public static unsafe void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] UInt32* nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40084,7 +40084,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32[] counterOffset, [OutAttribute] Int32[] counterDataSize, [OutAttribute] Int32[] counterTypeEnum, [OutAttribute] Int32[] counterDataTypeEnum, [OutAttribute] Int64[] rawCounterMaxValue) { throw new NotImplementedException(); } + public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32[] counterOffset, [OutAttribute] Int32[] counterDataSize, [OutAttribute] Int32[] counterTypeEnum, [OutAttribute] Int32[] counterDataTypeEnum, [OutAttribute] Int64[] rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40100,7 +40100,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out Int32 counterOffset, [OutAttribute] out Int32 counterDataSize, [OutAttribute] out Int32 counterTypeEnum, [OutAttribute] out Int32 counterDataTypeEnum, [OutAttribute] out Int64 rawCounterMaxValue) { throw new NotImplementedException(); } + public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out Int32 counterOffset, [OutAttribute] out Int32 counterDataSize, [OutAttribute] out Int32 counterTypeEnum, [OutAttribute] out Int32 counterDataTypeEnum, [OutAttribute] out Int64 rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40116,7 +40116,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32* counterOffset, [OutAttribute] Int32* counterDataSize, [OutAttribute] Int32* counterTypeEnum, [OutAttribute] Int32* counterDataTypeEnum, [OutAttribute] Int64* rawCounterMaxValue) { throw new NotImplementedException(); } + public static unsafe void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32* counterOffset, [OutAttribute] Int32* counterDataSize, [OutAttribute] Int32* counterTypeEnum, [OutAttribute] Int32* counterDataTypeEnum, [OutAttribute] Int64* rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40132,7 +40132,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32[] counterOffset, [OutAttribute] UInt32[] counterDataSize, [OutAttribute] UInt32[] counterTypeEnum, [OutAttribute] UInt32[] counterDataTypeEnum, [OutAttribute] UInt64[] rawCounterMaxValue) { throw new NotImplementedException(); } + public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32[] counterOffset, [OutAttribute] UInt32[] counterDataSize, [OutAttribute] UInt32[] counterTypeEnum, [OutAttribute] UInt32[] counterDataTypeEnum, [OutAttribute] UInt64[] rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40148,7 +40148,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out UInt32 counterOffset, [OutAttribute] out UInt32 counterDataSize, [OutAttribute] out UInt32 counterTypeEnum, [OutAttribute] out UInt32 counterDataTypeEnum, [OutAttribute] out UInt64 rawCounterMaxValue) { throw new NotImplementedException(); } + public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out UInt32 counterOffset, [OutAttribute] out UInt32 counterDataSize, [OutAttribute] out UInt32 counterTypeEnum, [OutAttribute] out UInt32 counterDataTypeEnum, [OutAttribute] out UInt64 rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40164,7 +40164,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue) { throw new NotImplementedException(); } + public static unsafe void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40174,7 +40174,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] Int32[] bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] Int32[] bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40184,7 +40184,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40194,7 +40194,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] Int32* bytesWritten) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] Int32* bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40206,7 +40206,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] Int32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40218,7 +40218,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] out Int32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40230,7 +40230,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] Int32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40242,7 +40242,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] Int32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40254,7 +40254,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] out Int32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40266,7 +40266,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] Int32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40278,7 +40278,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] Int32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40290,7 +40290,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] out Int32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40302,7 +40302,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] Int32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40314,7 +40314,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] Int32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40326,7 +40326,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] out Int32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40338,7 +40338,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] Int32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40348,7 +40348,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32[] bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32[] bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40358,7 +40358,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] out UInt32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] out UInt32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40368,7 +40368,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32* bytesWritten) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32* bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40380,7 +40380,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] UInt32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40392,7 +40392,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] out UInt32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40404,7 +40404,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] UInt32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40416,7 +40416,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] UInt32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40428,7 +40428,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] out UInt32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40440,7 +40440,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] UInt32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40452,7 +40452,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] UInt32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40464,7 +40464,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] out UInt32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40476,7 +40476,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] UInt32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40488,7 +40488,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] UInt32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40500,7 +40500,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] out UInt32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40512,55 +40512,55 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] UInt32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static Int32 GetPerfQueryIdByName([OutAttribute] out String queryName) { throw new NotImplementedException(); } + public static Int32 GetPerfQueryIdByName([OutAttribute] out String queryName) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32[] queryId) { throw new NotImplementedException(); } + public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out Int32 queryId) { throw new NotImplementedException(); } + public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out Int32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32* queryId) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32[] queryId) { throw new NotImplementedException(); } + public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out UInt32 queryId) { throw new NotImplementedException(); } + public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out UInt32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32* queryId) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40572,7 +40572,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32[] dataSize, [OutAttribute] Int32[] noCounters, [OutAttribute] Int32[] noInstances, [OutAttribute] Int32[] capsMask) { throw new NotImplementedException(); } + public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32[] dataSize, [OutAttribute] Int32[] noCounters, [OutAttribute] Int32[] noInstances, [OutAttribute] Int32[] capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40584,7 +40584,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out Int32 dataSize, [OutAttribute] out Int32 noCounters, [OutAttribute] out Int32 noInstances, [OutAttribute] out Int32 capsMask) { throw new NotImplementedException(); } + public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out Int32 dataSize, [OutAttribute] out Int32 noCounters, [OutAttribute] out Int32 noInstances, [OutAttribute] out Int32 capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40596,7 +40596,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32* dataSize, [OutAttribute] Int32* noCounters, [OutAttribute] Int32* noInstances, [OutAttribute] Int32* capsMask) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32* dataSize, [OutAttribute] Int32* noCounters, [OutAttribute] Int32* noInstances, [OutAttribute] Int32* capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40608,7 +40608,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32[] dataSize, [OutAttribute] UInt32[] noCounters, [OutAttribute] UInt32[] noInstances, [OutAttribute] UInt32[] capsMask) { throw new NotImplementedException(); } + public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32[] dataSize, [OutAttribute] UInt32[] noCounters, [OutAttribute] UInt32[] noInstances, [OutAttribute] UInt32[] capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40620,7 +40620,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out UInt32 dataSize, [OutAttribute] out UInt32 noCounters, [OutAttribute] out UInt32 noInstances, [OutAttribute] out UInt32 capsMask) { throw new NotImplementedException(); } + public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out UInt32 dataSize, [OutAttribute] out UInt32 noCounters, [OutAttribute] out UInt32 noInstances, [OutAttribute] out UInt32 capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40632,7 +40632,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask) { throw new BindingsNotRewrittenException(); } } @@ -40640,7 +40640,7 @@ namespace OpenTK.Graphics.ES31 { /// [requires: KHR_blend_equation_advanced] [AutoGenerated(Category = "KHR_blend_equation_advanced", Version = "", EntryPoint = "glBlendBarrierKHR")] - public static void BlendBarrier() { throw new NotImplementedException(); } + public static void BlendBarrier() { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -40652,7 +40652,7 @@ namespace OpenTK.Graphics.ES31 /// A user supplied pointer that will be passed on each invocation of callback. /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallbackKHR")] - public static void DebugMessageCallback(DebugProcKhr callback, IntPtr userParam) { throw new NotImplementedException(); } + public static void DebugMessageCallback(DebugProcKhr callback, IntPtr userParam) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -40667,7 +40667,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -40682,7 +40682,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -40697,7 +40697,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[,,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -40711,7 +40711,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallbackKHR")] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] ref T1 userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -40736,7 +40736,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, Int32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -40761,7 +40761,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, ref Int32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -40786,7 +40786,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, Int32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -40811,7 +40811,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, UInt32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -40836,7 +40836,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -40861,7 +40861,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, UInt32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Inject an application-supplied message into the debug message queue @@ -40886,7 +40886,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, Int32 id, OpenTK.Graphics.ES31.All severity, Int32 length, String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, Int32 id, OpenTK.Graphics.ES31.All severity, Int32 length, String buf) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Inject an application-supplied message into the debug message queue @@ -40911,7 +40911,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, UInt32 id, OpenTK.Graphics.ES31.All severity, Int32 length, String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, UInt32 id, OpenTK.Graphics.ES31.All severity, Int32 length, String buf) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -40942,7 +40942,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -40973,7 +40973,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -41004,7 +41004,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -41035,7 +41035,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -41066,7 +41066,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -41097,11 +41097,11 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetGraphicsResetStatusKHR")] - public static OpenTK.Graphics.ES31.All GetGraphicsResetStatus() { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES31.All GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41110,7 +41110,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41119,7 +41119,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41128,7 +41128,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41137,7 +41137,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41146,7 +41146,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41155,7 +41155,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41164,7 +41164,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41173,7 +41173,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41182,7 +41182,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41191,7 +41191,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41200,7 +41200,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41209,7 +41209,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41218,7 +41218,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuivKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41227,7 +41227,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuivKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41236,7 +41236,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuivKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -41258,7 +41258,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -41280,7 +41280,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -41302,7 +41302,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -41324,7 +41324,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -41346,7 +41346,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -41368,7 +41368,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -41388,7 +41388,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] - public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -41408,7 +41408,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] - public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -41428,7 +41428,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] - public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -41450,7 +41450,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -41472,7 +41472,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -41494,7 +41494,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -41516,7 +41516,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -41538,7 +41538,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -41560,7 +41560,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -41582,7 +41582,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -41604,7 +41604,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -41626,7 +41626,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -41648,7 +41648,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -41670,7 +41670,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -41692,13 +41692,13 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointervKHR")] - public static void GetPointer(OpenTK.Graphics.ES31.All pname, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } + public static void GetPointer(OpenTK.Graphics.ES31.All pname, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// @@ -41707,7 +41707,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// @@ -41716,7 +41716,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// @@ -41725,7 +41725,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// @@ -41733,7 +41733,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointervKHR")] public static void GetPointer(OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a named object identified within a namespace @@ -41752,7 +41752,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] [CLSCompliant(false)] - public static void ObjectLabel(OpenTK.Graphics.ES31.All identifier, Int32 name, Int32 length, String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.ES31.All identifier, Int32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a named object identified within a namespace @@ -41771,7 +41771,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] [CLSCompliant(false)] - public static void ObjectLabel(OpenTK.Graphics.ES31.All identifier, UInt32 name, Int32 length, String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.ES31.All identifier, UInt32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -41786,7 +41786,7 @@ namespace OpenTK.Graphics.ES31 /// The address of a string containing the label to assign to the object. /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabelKHR")] - public static void ObjectPtrLabel(IntPtr ptr, Int32 length, String label) { throw new NotImplementedException(); } + public static void ObjectPtrLabel(IntPtr ptr, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -41804,7 +41804,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 length, String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -41822,7 +41822,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 length, String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -41840,7 +41840,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 length, String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -41857,13 +41857,13 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabelKHR")] public static void ObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 length, String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Pop the active debug group /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPopDebugGroupKHR")] - public static void PopDebugGroup() { throw new NotImplementedException(); } + public static void PopDebugGroup() { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Push a named debug group into the command stream @@ -41882,7 +41882,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroupKHR")] [CLSCompliant(false)] - public static void PushDebugGroup(OpenTK.Graphics.ES31.All source, Int32 id, Int32 length, String message) { throw new NotImplementedException(); } + public static void PushDebugGroup(OpenTK.Graphics.ES31.All source, Int32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Push a named debug group into the command stream @@ -41901,7 +41901,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroupKHR")] [CLSCompliant(false)] - public static void PushDebugGroup(OpenTK.Graphics.ES31.All source, UInt32 id, Int32 length, String message) { throw new NotImplementedException(); } + public static void PushDebugGroup(OpenTK.Graphics.ES31.All source, UInt32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41914,7 +41914,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixelsKHR")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41930,7 +41930,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41946,7 +41946,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41962,7 +41962,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41977,7 +41977,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixelsKHR")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41989,7 +41989,7 @@ namespace OpenTK.Graphics.ES31 /// /// [length: bufSize] [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixelsKHR")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -42004,7 +42004,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -42019,7 +42019,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -42034,7 +42034,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -42048,7 +42048,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixelsKHR")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } } @@ -42065,7 +42065,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNV")] [CLSCompliant(false)] - public static void BeginConditionalRender(Int32 id, OpenTK.Graphics.ES31.All mode) { throw new NotImplementedException(); } + public static void BeginConditionalRender(Int32 id, OpenTK.Graphics.ES31.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conditional_render] /// Start conditional rendering @@ -42078,17 +42078,17 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNV")] [CLSCompliant(false)] - public static void BeginConditionalRender(UInt32 id, OpenTK.Graphics.ES31.All mode) { throw new NotImplementedException(); } + public static void BeginConditionalRender(UInt32 id, OpenTK.Graphics.ES31.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_blend_equation_advanced] [AutoGenerated(Category = "NV_blend_equation_advanced", Version = "", EntryPoint = "glBlendBarrierNV")] - public static void BlendBarrier() { throw new NotImplementedException(); } + public static void BlendBarrier() { throw new BindingsNotRewrittenException(); } /// [requires: NV_blend_equation_advanced] /// /// [AutoGenerated(Category = "NV_blend_equation_advanced", Version = "", EntryPoint = "glBlendParameteriNV")] - public static void BlendParameter(OpenTK.Graphics.ES31.All pname, Int32 value) { throw new NotImplementedException(); } + public static void BlendParameter(OpenTK.Graphics.ES31.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_blit] /// Copy a block of pixels from the read framebuffer to the draw framebuffer @@ -42125,7 +42125,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_framebuffer_blit", Version = "", EntryPoint = "glBlitFramebufferNV")] [CLSCompliant(false)] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, Int32 mask, OpenTK.Graphics.ES31.All filter) { throw new NotImplementedException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, Int32 mask, OpenTK.Graphics.ES31.All filter) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_blit] /// Copy a block of pixels from the read framebuffer to the draw framebuffer @@ -42162,13 +42162,13 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_framebuffer_blit", Version = "", EntryPoint = "glBlitFramebufferNV")] [CLSCompliant(false)] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, UInt32 mask, OpenTK.Graphics.ES31.All filter) { throw new NotImplementedException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, UInt32 mask, OpenTK.Graphics.ES31.All filter) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conservative_raster_pre_snap_triangles] /// /// [AutoGenerated(Category = "NV_conservative_raster_pre_snap_triangles", Version = "", EntryPoint = "glConservativeRasterParameteriNV")] - public static void ConservativeRasterParameter(OpenTK.Graphics.ES31.All pname, Int32 param) { throw new NotImplementedException(); } + public static void ConservativeRasterParameter(OpenTK.Graphics.ES31.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: NV_copy_buffer] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -42189,7 +42189,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the size, in basic machine units, of the data to be copied from readtarget to writetarget. /// [AutoGenerated(Category = "NV_copy_buffer", Version = "", EntryPoint = "glCopyBufferSubDataNV")] - public static void CopyBufferSubData(OpenTK.Graphics.ES31.All readTarget, OpenTK.Graphics.ES31.All writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new NotImplementedException(); } + public static void CopyBufferSubData(OpenTK.Graphics.ES31.All readTarget, OpenTK.Graphics.ES31.All writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_copy_buffer] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -42210,57 +42210,57 @@ namespace OpenTK.Graphics.ES31 /// Specifies the size, in basic machine units, of the data to be copied from readtarget to writetarget. /// [AutoGenerated(Category = "NV_copy_buffer", Version = "", EntryPoint = "glCopyBufferSubDataNV")] - public static void CopyBufferSubData(OpenTK.Graphics.ES31.All readTarget, OpenTK.Graphics.ES31.All writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new NotImplementedException(); } + public static void CopyBufferSubData(OpenTK.Graphics.ES31.All readTarget, OpenTK.Graphics.ES31.All writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCopyPathNV")] [CLSCompliant(false)] - public static void CopyPath(Int32 resultPath, Int32 srcPath) { throw new NotImplementedException(); } + public static void CopyPath(Int32 resultPath, Int32 srcPath) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCopyPathNV")] [CLSCompliant(false)] - public static void CopyPath(UInt32 resultPath, UInt32 srcPath) { throw new NotImplementedException(); } + public static void CopyPath(UInt32 resultPath, UInt32 srcPath) { throw new BindingsNotRewrittenException(); } /// [requires: NV_coverage_sample] /// [AutoGenerated(Category = "NV_coverage_sample", Version = "", EntryPoint = "glCoverageMaskNV")] - public static void CoverageMask(bool mask) { throw new NotImplementedException(); } + public static void CoverageMask(bool mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationNV")] - public static void CoverageModulation(OpenTK.Graphics.ES31.All components) { throw new NotImplementedException(); } + public static void CoverageModulation(OpenTK.Graphics.ES31.All components) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static void CoverageModulationTable(Int32 n, Single[] v) { throw new NotImplementedException(); } + public static void CoverageModulationTable(Int32 n, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static void CoverageModulationTable(Int32 n, ref Single v) { throw new NotImplementedException(); } + public static void CoverageModulationTable(Int32 n, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static unsafe void CoverageModulationTable(Int32 n, Single* v) { throw new NotImplementedException(); } + public static unsafe void CoverageModulationTable(Int32 n, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_coverage_sample] /// [AutoGenerated(Category = "NV_coverage_sample", Version = "", EntryPoint = "glCoverageOperationNV")] - public static void CoverageOperation(OpenTK.Graphics.ES31.All operation) { throw new NotImplementedException(); } + public static void CoverageOperation(OpenTK.Graphics.ES31.All operation) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42272,7 +42272,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42284,7 +42284,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42296,7 +42296,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42308,7 +42308,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42320,7 +42320,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42332,7 +42332,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42346,7 +42346,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42360,7 +42360,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42374,7 +42374,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42388,7 +42388,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42402,7 +42402,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42416,7 +42416,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42430,7 +42430,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42444,7 +42444,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42458,7 +42458,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42472,7 +42472,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42486,7 +42486,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42500,7 +42500,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42514,7 +42514,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42528,7 +42528,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42542,7 +42542,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42556,7 +42556,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42570,7 +42570,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42584,7 +42584,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42598,7 +42598,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42612,7 +42612,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42626,7 +42626,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42640,7 +42640,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42654,7 +42654,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42668,21 +42668,21 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] [CLSCompliant(false)] - public static void CoverFillPath(Int32 path, OpenTK.Graphics.ES31.All coverMode) { throw new NotImplementedException(); } + public static void CoverFillPath(Int32 path, OpenTK.Graphics.ES31.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] [CLSCompliant(false)] - public static void CoverFillPath(UInt32 path, OpenTK.Graphics.ES31.All coverMode) { throw new NotImplementedException(); } + public static void CoverFillPath(UInt32 path, OpenTK.Graphics.ES31.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42694,7 +42694,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42706,7 +42706,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42718,7 +42718,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42730,7 +42730,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42742,7 +42742,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42754,7 +42754,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42768,7 +42768,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42782,7 +42782,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42796,7 +42796,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42810,7 +42810,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42824,7 +42824,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42838,7 +42838,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42852,7 +42852,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42866,7 +42866,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42880,7 +42880,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42894,7 +42894,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42908,7 +42908,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42922,7 +42922,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42936,7 +42936,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42950,7 +42950,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42964,7 +42964,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42978,7 +42978,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42992,7 +42992,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43006,7 +43006,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43020,7 +43020,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43034,7 +43034,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43048,7 +43048,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43062,7 +43062,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43076,7 +43076,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43090,89 +43090,89 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathNV")] [CLSCompliant(false)] - public static void CoverStrokePath(Int32 path, OpenTK.Graphics.ES31.All coverMode) { throw new NotImplementedException(); } + public static void CoverStrokePath(Int32 path, OpenTK.Graphics.ES31.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathNV")] [CLSCompliant(false)] - public static void CoverStrokePath(UInt32 path, OpenTK.Graphics.ES31.All coverMode) { throw new NotImplementedException(); } + public static void CoverStrokePath(UInt32 path, OpenTK.Graphics.ES31.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFence([CountAttribute(Parameter = "n")] Int32 fences) { throw new NotImplementedException(); } + public static void DeleteFence([CountAttribute(Parameter = "n")] Int32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFence([CountAttribute(Parameter = "n")] UInt32 fences) { throw new NotImplementedException(); } + public static void DeleteFence([CountAttribute(Parameter = "n")] UInt32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32[] fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32* fences) { throw new NotImplementedException(); } + public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32* fences) { throw new NotImplementedException(); } + public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glDeletePathsNV")] [CLSCompliant(false)] - public static void DeletePath(Int32 path, Int32 range) { throw new NotImplementedException(); } + public static void DeletePath(Int32 path, Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glDeletePathsNV")] [CLSCompliant(false)] - public static void DeletePath(UInt32 path, Int32 range) { throw new NotImplementedException(); } + public static void DeletePath(UInt32 path, Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -43188,7 +43188,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvNV")] [CLSCompliant(false)] - public static void DepthRangeArray(Int32 first, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void DepthRangeArray(Int32 first, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -43204,7 +43204,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvNV")] [CLSCompliant(false)] - public static void DepthRangeArray(Int32 first, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void DepthRangeArray(Int32 first, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -43220,7 +43220,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvNV")] [CLSCompliant(false)] - public static unsafe void DepthRangeArray(Int32 first, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void DepthRangeArray(Int32 first, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -43236,7 +43236,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvNV")] [CLSCompliant(false)] - public static void DepthRangeArray(UInt32 first, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void DepthRangeArray(UInt32 first, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -43252,7 +43252,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvNV")] [CLSCompliant(false)] - public static void DepthRangeArray(UInt32 first, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void DepthRangeArray(UInt32 first, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -43268,7 +43268,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvNV")] [CLSCompliant(false)] - public static unsafe void DepthRangeArray(UInt32 first, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void DepthRangeArray(UInt32 first, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified viewport @@ -43284,7 +43284,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeIndexedfNV")] [CLSCompliant(false)] - public static void DepthRangeIndexed(Int32 index, Single n, Single f) { throw new NotImplementedException(); } + public static void DepthRangeIndexed(Int32 index, Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified viewport @@ -43300,21 +43300,21 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeIndexedfNV")] [CLSCompliant(false)] - public static void DepthRangeIndexed(UInt32 index, Single n, Single f) { throw new NotImplementedException(); } + public static void DepthRangeIndexed(UInt32 index, Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDisableiNV")] [CLSCompliant(false)] - public static void Disable(OpenTK.Graphics.ES31.All target, Int32 index) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES31.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDisableiNV")] [CLSCompliant(false)] - public static void Disable(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a range of elements @@ -43333,7 +43333,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawArraysInstancedNV")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES31.All mode, Int32 first, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES31.All mode, Int32 first, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a range of elements @@ -43351,7 +43351,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawArraysInstancedNV")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 first, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 first, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -43364,7 +43364,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_draw_buffers", Version = "", EntryPoint = "glDrawBuffersNV")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES31.All[] bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES31.All[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -43377,7 +43377,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_draw_buffers", Version = "", EntryPoint = "glDrawBuffersNV")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES31.All bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES31.All bufs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -43390,7 +43390,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_draw_buffers", Version = "", EntryPoint = "glDrawBuffersNV")] [CLSCompliant(false)] - public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES31.All* bufs) { throw new NotImplementedException(); } + public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES31.All* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -43412,7 +43412,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedNV")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -43437,7 +43437,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -43462,7 +43462,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -43487,7 +43487,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -43511,7 +43511,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedNV")] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -43532,7 +43532,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedNV")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -43556,7 +43556,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -43580,7 +43580,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -43604,7 +43604,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -43627,7 +43627,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedNV")] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// @@ -43643,7 +43643,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glDrawVkImageNV")] [CLSCompliant(false)] - public static void DrawVkImage(Int64 vkImage, Int32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new NotImplementedException(); } + public static void DrawVkImage(Int64 vkImage, Int32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// @@ -43659,7 +43659,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glDrawVkImageNV")] [CLSCompliant(false)] - public static void DrawVkImage(UInt64 vkImage, UInt32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new NotImplementedException(); } + public static void DrawVkImage(UInt64 vkImage, UInt32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Enable or disable server-side GL capabilities @@ -43670,7 +43670,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glEnableiNV")] [CLSCompliant(false)] - public static void Enable(OpenTK.Graphics.ES31.All target, Int32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES31.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Enable or disable server-side GL capabilities @@ -43681,35 +43681,35 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glEnableiNV")] [CLSCompliant(false)] - public static void Enable(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conditional_render] [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glEndConditionalRenderNV")] - public static void EndConditionalRender() { throw new NotImplementedException(); } + public static void EndConditionalRender() { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glFinishFenceNV")] [CLSCompliant(false)] - public static void FinishFence(Int32 fence) { throw new NotImplementedException(); } + public static void FinishFence(Int32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glFinishFenceNV")] [CLSCompliant(false)] - public static void FinishFence(UInt32 fence) { throw new NotImplementedException(); } + public static void FinishFence(UInt32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_coverage_to_color] /// [AutoGenerated(Category = "NV_fragment_coverage_to_color", Version = "", EntryPoint = "glFragmentCoverageColorNV")] [CLSCompliant(false)] - public static void FragmentCoverageColor(Int32 color) { throw new NotImplementedException(); } + public static void FragmentCoverageColor(Int32 color) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_coverage_to_color] /// [AutoGenerated(Category = "NV_fragment_coverage_to_color", Version = "", EntryPoint = "glFragmentCoverageColorNV")] [CLSCompliant(false)] - public static void FragmentCoverageColor(UInt32 color) { throw new NotImplementedException(); } + public static void FragmentCoverageColor(UInt32 color) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -43718,7 +43718,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.ES31.All target, Int32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.ES31.All target, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -43727,7 +43727,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.ES31.All target, Int32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.ES31.All target, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -43736,7 +43736,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.ES31.All target, Int32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.ES31.All target, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -43745,7 +43745,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.ES31.All target, UInt32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.ES31.All target, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -43754,7 +43754,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.ES31.All target, UInt32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.ES31.All target, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -43763,85 +43763,85 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.ES31.All target, UInt32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.ES31.All target, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static Int32 GenFence() { throw new NotImplementedException(); } + public static Int32 GenFence() { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* fences) { throw new NotImplementedException(); } + public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* fences) { throw new NotImplementedException(); } + public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGenPathsNV")] - public static Int32 GenPath(Int32 range) { throw new NotImplementedException(); } + public static Int32 GenPath(Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glGetCoverageModulationTableNV")] [CLSCompliant(false)] - public static Single GetCoverageModulationTable() { throw new NotImplementedException(); } + public static Single GetCoverageModulationTable() { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glGetCoverageModulationTableNV")] [CLSCompliant(false)] - public static void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] Single[] v) { throw new NotImplementedException(); } + public static void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glGetCoverageModulationTableNV")] [CLSCompliant(false)] - public static void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] out Single v) { throw new NotImplementedException(); } + public static void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] out Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glGetCoverageModulationTableNV")] [CLSCompliant(false)] - public static unsafe void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] Single* v) { throw new NotImplementedException(); } + public static unsafe void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -43849,7 +43849,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static void GetFence(Int32 fence, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFence(Int32 fence, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -43857,7 +43857,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static void GetFence(Int32 fence, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFence(Int32 fence, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -43865,7 +43865,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static unsafe void GetFence(Int32 fence, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFence(Int32 fence, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -43873,7 +43873,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static void GetFence(UInt32 fence, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFence(UInt32 fence, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -43881,7 +43881,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static void GetFence(UInt32 fence, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFence(UInt32 fence, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -43889,7 +43889,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static unsafe void GetFence(UInt32 fence, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFence(UInt32 fence, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// @@ -43897,7 +43897,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// @@ -43905,7 +43905,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// @@ -43913,7 +43913,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// @@ -43921,7 +43921,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// @@ -43929,7 +43929,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// @@ -43937,7 +43937,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -43947,7 +43947,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetImageHandleNV")] [CLSCompliant(false)] - public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES31.All format) { throw new NotImplementedException(); } + public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES31.All format) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -43957,7 +43957,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetImageHandleNV")] [CLSCompliant(false)] - public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES31.All format) { throw new NotImplementedException(); } + public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES31.All format) { throw new BindingsNotRewrittenException(); } /// [requires: NV_internalformat_sample_query] /// @@ -43968,7 +43968,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] - public static void GetInternalformatSample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 samples, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetInternalformatSample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 samples, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_internalformat_sample_query] /// @@ -43979,7 +43979,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] - public static void GetInternalformatSample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 samples, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetInternalformatSample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 samples, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_internalformat_sample_query] /// @@ -43990,7 +43990,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] - public static unsafe void GetInternalformatSample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 samples, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetInternalformatSample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 samples, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43998,7 +43998,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void GetPathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44006,7 +44006,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new NotImplementedException(); } + public static void GetPathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44014,7 +44014,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44022,7 +44022,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44030,7 +44030,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44038,169 +44038,169 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] - public static unsafe void GetPathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static Byte GetPathCommand(Int32 path) { throw new NotImplementedException(); } + public static Byte GetPathCommand(Int32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static Byte GetPathCommand(UInt32 path) { throw new NotImplementedException(); } + public static Byte GetPathCommand(UInt32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte[] commands) { throw new NotImplementedException(); } + public static void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte[] commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Byte commands) { throw new NotImplementedException(); } + public static void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Byte commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static unsafe void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands) { throw new NotImplementedException(); } + public static unsafe void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte[] commands) { throw new NotImplementedException(); } + public static void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte[] commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Byte commands) { throw new NotImplementedException(); } + public static void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Byte commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static unsafe void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands) { throw new NotImplementedException(); } + public static unsafe void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static Single GetPathCoord(Int32 path) { throw new NotImplementedException(); } + public static Single GetPathCoord(Int32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static Single GetPathCoord(UInt32 path) { throw new NotImplementedException(); } + public static Single GetPathCoord(UInt32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] coords) { throw new NotImplementedException(); } + public static void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single coords) { throw new NotImplementedException(); } + public static void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static unsafe void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords) { throw new NotImplementedException(); } + public static unsafe void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] coords) { throw new NotImplementedException(); } + public static void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single coords) { throw new NotImplementedException(); } + public static void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static unsafe void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords) { throw new NotImplementedException(); } + public static unsafe void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static Single GetPathDashArray(Int32 path) { throw new NotImplementedException(); } + public static Single GetPathDashArray(Int32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static Single GetPathDashArray(UInt32 path) { throw new NotImplementedException(); } + public static Single GetPathDashArray(UInt32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] dashArray) { throw new NotImplementedException(); } + public static void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single dashArray) { throw new NotImplementedException(); } + public static void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static unsafe void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray) { throw new NotImplementedException(); } + public static unsafe void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] dashArray) { throw new NotImplementedException(); } + public static void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single dashArray) { throw new NotImplementedException(); } + public static void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static unsafe void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray) { throw new NotImplementedException(); } + public static unsafe void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44208,7 +44208,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathLengthNV")] [CLSCompliant(false)] - public static Single GetPathLength(Int32 path, Int32 startSegment, Int32 numSegments) { throw new NotImplementedException(); } + public static Single GetPathLength(Int32 path, Int32 startSegment, Int32 numSegments) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44216,7 +44216,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathLengthNV")] [CLSCompliant(false)] - public static Single GetPathLength(UInt32 path, Int32 startSegment, Int32 numSegments) { throw new NotImplementedException(); } + public static Single GetPathLength(UInt32 path, Int32 startSegment, Int32 numSegments) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44226,7 +44226,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new NotImplementedException(); } + public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44236,7 +44236,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new NotImplementedException(); } + public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44246,7 +44246,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new NotImplementedException(); } + public static unsafe void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44256,7 +44256,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new NotImplementedException(); } + public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44266,7 +44266,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new NotImplementedException(); } + public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44276,7 +44276,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new NotImplementedException(); } + public static unsafe void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44288,7 +44288,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new NotImplementedException(); } + public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44300,7 +44300,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new NotImplementedException(); } + public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44312,7 +44312,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new NotImplementedException(); } + public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44326,7 +44326,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44340,7 +44340,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44354,7 +44354,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44368,7 +44368,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44382,7 +44382,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44396,7 +44396,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44410,7 +44410,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44424,7 +44424,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44438,7 +44438,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44452,7 +44452,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44466,7 +44466,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44480,7 +44480,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44492,7 +44492,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new NotImplementedException(); } + public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44504,7 +44504,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new NotImplementedException(); } + public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44516,7 +44516,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new NotImplementedException(); } + public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44530,7 +44530,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44544,7 +44544,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44558,7 +44558,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44572,7 +44572,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44586,7 +44586,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44600,7 +44600,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44614,7 +44614,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44628,7 +44628,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44642,7 +44642,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44656,7 +44656,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44670,7 +44670,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44684,7 +44684,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44692,7 +44692,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new NotImplementedException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44700,7 +44700,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new NotImplementedException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44708,7 +44708,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44716,7 +44716,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new NotImplementedException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44724,7 +44724,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new NotImplementedException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44732,7 +44732,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44740,7 +44740,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44748,7 +44748,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44756,7 +44756,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44764,7 +44764,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44772,7 +44772,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44780,7 +44780,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44794,7 +44794,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new NotImplementedException(); } + public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44808,7 +44808,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new NotImplementedException(); } + public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44822,7 +44822,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new NotImplementedException(); } + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44836,7 +44836,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new NotImplementedException(); } + public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44850,7 +44850,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new NotImplementedException(); } + public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44864,7 +44864,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new NotImplementedException(); } + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44880,7 +44880,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44896,7 +44896,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44912,7 +44912,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44928,7 +44928,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44944,7 +44944,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44960,7 +44960,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44976,7 +44976,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44992,7 +44992,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45008,7 +45008,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45024,7 +45024,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45040,7 +45040,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45056,7 +45056,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45072,7 +45072,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45088,7 +45088,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45104,7 +45104,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45120,7 +45120,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45136,7 +45136,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45152,7 +45152,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45168,7 +45168,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45184,7 +45184,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45200,7 +45200,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45216,7 +45216,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45232,7 +45232,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45248,7 +45248,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45257,7 +45257,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES31.All texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES31.All texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45266,7 +45266,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES31.All texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES31.All texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45275,7 +45275,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathTexGen(OpenTK.Graphics.ES31.All texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.ES31.All texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45283,7 +45283,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES31.TextureUnit texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES31.TextureUnit texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45291,7 +45291,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES31.TextureUnit texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES31.TextureUnit texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45299,7 +45299,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathTexGen(OpenTK.Graphics.ES31.TextureUnit texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.ES31.TextureUnit texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45308,7 +45308,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES31.All texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES31.All texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45317,7 +45317,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES31.All texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES31.All texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45326,7 +45326,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static unsafe void GetPathTexGen(OpenTK.Graphics.ES31.All texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.ES31.All texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45334,7 +45334,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES31.TextureUnit texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES31.TextureUnit texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45342,7 +45342,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES31.TextureUnit texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES31.TextureUnit texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45350,7 +45350,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static unsafe void GetPathTexGen(OpenTK.Graphics.ES31.TextureUnit texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.ES31.TextureUnit texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -45369,7 +45369,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES31.All programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.ES31.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES31.All programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.ES31.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -45388,7 +45388,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES31.All programInterface, Int32 index, Int32 propCount, ref OpenTK.Graphics.ES31.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES31.All programInterface, Int32 index, Int32 propCount, ref OpenTK.Graphics.ES31.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -45407,7 +45407,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.ES31.All programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.ES31.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.ES31.All programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.ES31.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -45426,7 +45426,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES31.All programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.ES31.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES31.All programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.ES31.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -45445,7 +45445,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES31.All programInterface, UInt32 index, Int32 propCount, ref OpenTK.Graphics.ES31.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES31.All programInterface, UInt32 index, Int32 propCount, ref OpenTK.Graphics.ES31.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -45464,33 +45464,33 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.ES31.All programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.ES31.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.ES31.All programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.ES31.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleNV")] [CLSCompliant(false)] - public static Int64 GetTextureHandle(Int32 texture) { throw new NotImplementedException(); } + public static Int64 GetTextureHandle(Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleNV")] [CLSCompliant(false)] - public static Int64 GetTextureHandle(UInt32 texture) { throw new NotImplementedException(); } + public static Int64 GetTextureHandle(UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureSamplerHandleNV")] [CLSCompliant(false)] - public static Int64 GetTextureSamplerHandle(Int32 texture, Int32 sampler) { throw new NotImplementedException(); } + public static Int64 GetTextureSamplerHandle(Int32 texture, Int32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureSamplerHandleNV")] [CLSCompliant(false)] - public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new NotImplementedException(); } + public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Returns the value of a uniform variable @@ -45506,7 +45506,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Returns the value of a uniform variable @@ -45522,7 +45522,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Returns the value of a uniform variable @@ -45538,7 +45538,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Returns the value of a uniform variable @@ -45554,7 +45554,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Returns the value of a uniform variable @@ -45570,7 +45570,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Returns the value of a uniform variable @@ -45586,12 +45586,12 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [length: COMPSIZE(name)] [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glGetVkProcAddrNV")] - public static IntPtr GetVkProcAddr([CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static IntPtr GetVkProcAddr([CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45600,7 +45600,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glInterpolatePathsNV")] [CLSCompliant(false)] - public static void InterpolatePath(Int32 resultPath, Int32 pathA, Int32 pathB, Single weight) { throw new NotImplementedException(); } + public static void InterpolatePath(Int32 resultPath, Int32 pathA, Int32 pathB, Single weight) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45609,7 +45609,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glInterpolatePathsNV")] [CLSCompliant(false)] - public static void InterpolatePath(UInt32 resultPath, UInt32 pathA, UInt32 pathB, Single weight) { throw new NotImplementedException(); } + public static void InterpolatePath(UInt32 resultPath, UInt32 pathA, UInt32 pathB, Single weight) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Test whether a capability is enabled @@ -45622,7 +45622,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glIsEnablediNV")] [CLSCompliant(false)] - public static bool IsEnabled(OpenTK.Graphics.ES31.All target, Int32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES31.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Test whether a capability is enabled @@ -45635,43 +45635,43 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glIsEnablediNV")] [CLSCompliant(false)] - public static bool IsEnabled(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glIsFenceNV")] [CLSCompliant(false)] - public static bool IsFence(Int32 fence) { throw new NotImplementedException(); } + public static bool IsFence(Int32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glIsFenceNV")] [CLSCompliant(false)] - public static bool IsFence(UInt32 fence) { throw new NotImplementedException(); } + public static bool IsFence(UInt32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsImageHandleResidentNV")] [CLSCompliant(false)] - public static bool IsImageHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static bool IsImageHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsImageHandleResidentNV")] [CLSCompliant(false)] - public static bool IsImageHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static bool IsImageHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPathNV")] [CLSCompliant(false)] - public static bool IsPath(Int32 path) { throw new NotImplementedException(); } + public static bool IsPath(Int32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPathNV")] [CLSCompliant(false)] - public static bool IsPath(UInt32 path) { throw new NotImplementedException(); } + public static bool IsPath(UInt32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45680,7 +45680,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPointInFillPathNV")] [CLSCompliant(false)] - public static bool IsPointInFillPath(Int32 path, Int32 mask, Single x, Single y) { throw new NotImplementedException(); } + public static bool IsPointInFillPath(Int32 path, Int32 mask, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45689,7 +45689,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPointInFillPathNV")] [CLSCompliant(false)] - public static bool IsPointInFillPath(UInt32 path, UInt32 mask, Single x, Single y) { throw new NotImplementedException(); } + public static bool IsPointInFillPath(UInt32 path, UInt32 mask, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45697,7 +45697,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPointInStrokePathNV")] [CLSCompliant(false)] - public static bool IsPointInStrokePath(Int32 path, Single x, Single y) { throw new NotImplementedException(); } + public static bool IsPointInStrokePath(Int32 path, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45705,195 +45705,195 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPointInStrokePathNV")] [CLSCompliant(false)] - public static bool IsPointInStrokePath(UInt32 path, Single x, Single y) { throw new NotImplementedException(); } + public static bool IsPointInStrokePath(UInt32 path, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsTextureHandleResidentNV")] [CLSCompliant(false)] - public static bool IsTextureHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static bool IsTextureHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsTextureHandleResidentNV")] [CLSCompliant(false)] - public static bool IsTextureHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static bool IsTextureHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleNonResidentNV")] [CLSCompliant(false)] - public static void MakeImageHandleNonResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeImageHandleNonResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleNonResidentNV")] [CLSCompliant(false)] - public static void MakeImageHandleNonResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeImageHandleNonResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleResidentNV")] [CLSCompliant(false)] - public static void MakeImageHandleResident(Int64 handle, OpenTK.Graphics.ES31.All access) { throw new NotImplementedException(); } + public static void MakeImageHandleResident(Int64 handle, OpenTK.Graphics.ES31.All access) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleResidentNV")] [CLSCompliant(false)] - public static void MakeImageHandleResident(UInt64 handle, OpenTK.Graphics.ES31.All access) { throw new NotImplementedException(); } + public static void MakeImageHandleResident(UInt64 handle, OpenTK.Graphics.ES31.All access) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleNonResidentNV")] [CLSCompliant(false)] - public static void MakeTextureHandleNonResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleNonResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleNonResidentNV")] [CLSCompliant(false)] - public static void MakeTextureHandleNonResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleNonResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleResidentNV")] [CLSCompliant(false)] - public static void MakeTextureHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleResidentNV")] [CLSCompliant(false)] - public static void MakeTextureHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x2fNV")] [CLSCompliant(false)] - public static void MatrixLoad3x2(OpenTK.Graphics.ES31.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixLoad3x2(OpenTK.Graphics.ES31.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x2fNV")] [CLSCompliant(false)] - public static void MatrixLoad3x2(OpenTK.Graphics.ES31.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixLoad3x2(OpenTK.Graphics.ES31.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x2fNV")] [CLSCompliant(false)] - public static unsafe void MatrixLoad3x2(OpenTK.Graphics.ES31.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoad3x2(OpenTK.Graphics.ES31.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x3fNV")] [CLSCompliant(false)] - public static void MatrixLoad3x3(OpenTK.Graphics.ES31.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixLoad3x3(OpenTK.Graphics.ES31.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x3fNV")] [CLSCompliant(false)] - public static void MatrixLoad3x3(OpenTK.Graphics.ES31.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixLoad3x3(OpenTK.Graphics.ES31.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x3fNV")] [CLSCompliant(false)] - public static unsafe void MatrixLoad3x3(OpenTK.Graphics.ES31.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoad3x3(OpenTK.Graphics.ES31.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTranspose3x3fNV")] [CLSCompliant(false)] - public static void MatrixLoadTranspose3x3(OpenTK.Graphics.ES31.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixLoadTranspose3x3(OpenTK.Graphics.ES31.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTranspose3x3fNV")] [CLSCompliant(false)] - public static void MatrixLoadTranspose3x3(OpenTK.Graphics.ES31.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixLoadTranspose3x3(OpenTK.Graphics.ES31.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTranspose3x3fNV")] [CLSCompliant(false)] - public static unsafe void MatrixLoadTranspose3x3(OpenTK.Graphics.ES31.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoadTranspose3x3(OpenTK.Graphics.ES31.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x2fNV")] [CLSCompliant(false)] - public static void MatrixMult3x2(OpenTK.Graphics.ES31.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixMult3x2(OpenTK.Graphics.ES31.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x2fNV")] [CLSCompliant(false)] - public static void MatrixMult3x2(OpenTK.Graphics.ES31.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixMult3x2(OpenTK.Graphics.ES31.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x2fNV")] [CLSCompliant(false)] - public static unsafe void MatrixMult3x2(OpenTK.Graphics.ES31.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMult3x2(OpenTK.Graphics.ES31.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x3fNV")] [CLSCompliant(false)] - public static void MatrixMult3x3(OpenTK.Graphics.ES31.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixMult3x3(OpenTK.Graphics.ES31.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x3fNV")] [CLSCompliant(false)] - public static void MatrixMult3x3(OpenTK.Graphics.ES31.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixMult3x3(OpenTK.Graphics.ES31.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x3fNV")] [CLSCompliant(false)] - public static unsafe void MatrixMult3x3(OpenTK.Graphics.ES31.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMult3x3(OpenTK.Graphics.ES31.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTranspose3x3fNV")] [CLSCompliant(false)] - public static void MatrixMultTranspose3x3(OpenTK.Graphics.ES31.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixMultTranspose3x3(OpenTK.Graphics.ES31.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTranspose3x3fNV")] [CLSCompliant(false)] - public static void MatrixMultTranspose3x3(OpenTK.Graphics.ES31.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixMultTranspose3x3(OpenTK.Graphics.ES31.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTranspose3x3fNV")] [CLSCompliant(false)] - public static unsafe void MatrixMultTranspose3x3(OpenTK.Graphics.ES31.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMultTranspose3x3(OpenTK.Graphics.ES31.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -45902,7 +45902,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -45911,7 +45911,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -45920,7 +45920,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -45929,7 +45929,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -45938,7 +45938,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -45947,7 +45947,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45956,7 +45956,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(genMode,colorFormat)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] - public static void PathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All genMode, OpenTK.Graphics.ES31.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single[] coeffs) { throw new NotImplementedException(); } + public static void PathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All genMode, OpenTK.Graphics.ES31.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45965,7 +45965,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(genMode,colorFormat)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] - public static void PathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All genMode, OpenTK.Graphics.ES31.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] ref Single coeffs) { throw new NotImplementedException(); } + public static void PathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All genMode, OpenTK.Graphics.ES31.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45974,7 +45974,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(genMode,colorFormat)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] - public static unsafe void PathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All genMode, OpenTK.Graphics.ES31.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single* coeffs) { throw new NotImplementedException(); } + public static unsafe void PathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All genMode, OpenTK.Graphics.ES31.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45985,7 +45985,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45998,7 +45998,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46011,7 +46011,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46024,7 +46024,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46037,7 +46037,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46048,7 +46048,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46061,7 +46061,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46074,7 +46074,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46087,7 +46087,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46100,7 +46100,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46111,7 +46111,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46124,7 +46124,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46137,7 +46137,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46150,7 +46150,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46163,7 +46163,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46174,7 +46174,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46187,7 +46187,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46200,7 +46200,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46213,7 +46213,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46226,7 +46226,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46237,7 +46237,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46250,7 +46250,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46263,7 +46263,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46276,7 +46276,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46289,7 +46289,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46300,7 +46300,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46313,7 +46313,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46326,7 +46326,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46339,7 +46339,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46352,7 +46352,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46361,7 +46361,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoordsNV")] [CLSCompliant(false)] - public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46372,7 +46372,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46383,7 +46383,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[,] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46394,7 +46394,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[,,] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46405,7 +46405,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T3 coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46414,7 +46414,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoordsNV")] [CLSCompliant(false)] - public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46425,7 +46425,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46436,7 +46436,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[,] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46447,7 +46447,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[,,] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46458,18 +46458,18 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T3 coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoverDepthFuncNV")] - public static void PathCoverDepthFunc(OpenTK.Graphics.ES31.All func) { throw new NotImplementedException(); } + public static void PathCoverDepthFunc(OpenTK.Graphics.ES31.All func) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoverDepthFuncNV")] - public static void PathCoverDepthFunc(OpenTK.Graphics.ES31.DepthFunction func) { throw new NotImplementedException(); } + public static void PathCoverDepthFunc(OpenTK.Graphics.ES31.DepthFunction func) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46477,7 +46477,7 @@ namespace OpenTK.Graphics.ES31 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single[] dashArray) { throw new NotImplementedException(); } + public static void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single[] dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46485,7 +46485,7 @@ namespace OpenTK.Graphics.ES31 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] ref Single dashArray) { throw new NotImplementedException(); } + public static void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] ref Single dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46493,7 +46493,7 @@ namespace OpenTK.Graphics.ES31 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static unsafe void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray) { throw new NotImplementedException(); } + public static unsafe void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46501,7 +46501,7 @@ namespace OpenTK.Graphics.ES31 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single[] dashArray) { throw new NotImplementedException(); } + public static void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single[] dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46509,7 +46509,7 @@ namespace OpenTK.Graphics.ES31 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] ref Single dashArray) { throw new NotImplementedException(); } + public static void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] ref Single dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46517,12 +46517,12 @@ namespace OpenTK.Graphics.ES31 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static unsafe void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray) { throw new NotImplementedException(); } + public static unsafe void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathFogGenNV")] - public static void PathFogGen(OpenTK.Graphics.ES31.All genMode) { throw new NotImplementedException(); } + public static void PathFogGen(OpenTK.Graphics.ES31.All genMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46535,7 +46535,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, IntPtr fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, IntPtr fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46550,7 +46550,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T2[] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46565,7 +46565,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T2[,] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46580,7 +46580,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46595,7 +46595,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] ref T2 fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46608,7 +46608,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46623,7 +46623,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T2[] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46638,7 +46638,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T2[,] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46653,7 +46653,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46668,7 +46668,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] ref T2 fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46679,7 +46679,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, IntPtr fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, IntPtr fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46690,7 +46690,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46703,7 +46703,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T1[] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46716,7 +46716,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T1[] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46729,7 +46729,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T1[,] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46742,7 +46742,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T1[,] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46755,7 +46755,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46768,7 +46768,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46781,7 +46781,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] ref T1 fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46794,7 +46794,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] ref T1 fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46808,7 +46808,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46824,7 +46824,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46840,7 +46840,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46856,7 +46856,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46872,7 +46872,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46886,7 +46886,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46902,7 +46902,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46918,7 +46918,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46934,7 +46934,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46950,7 +46950,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46965,7 +46965,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46983,7 +46983,7 @@ namespace OpenTK.Graphics.ES31 public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47001,7 +47001,7 @@ namespace OpenTK.Graphics.ES31 public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47019,7 +47019,7 @@ namespace OpenTK.Graphics.ES31 public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47037,7 +47037,7 @@ namespace OpenTK.Graphics.ES31 public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47052,7 +47052,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47070,7 +47070,7 @@ namespace OpenTK.Graphics.ES31 public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47088,7 +47088,7 @@ namespace OpenTK.Graphics.ES31 public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47106,7 +47106,7 @@ namespace OpenTK.Graphics.ES31 public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47124,7 +47124,7 @@ namespace OpenTK.Graphics.ES31 public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47138,7 +47138,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathMemoryGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, Int32 fontSize, IntPtr fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, Int32 fontSize, IntPtr fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47154,7 +47154,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47170,7 +47170,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[,] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47186,7 +47186,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[,,] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47202,7 +47202,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] ref T3 fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47216,7 +47216,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathMemoryGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47232,7 +47232,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47248,7 +47248,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[,] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47264,7 +47264,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[,,] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47280,7 +47280,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] ref T3 fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47294,7 +47294,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathMemoryGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, Int32 fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, Int32 fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47310,7 +47310,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47326,7 +47326,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[,] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47342,7 +47342,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[,,] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47358,7 +47358,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] ref T3 fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47372,7 +47372,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathMemoryGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47388,7 +47388,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47404,7 +47404,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[,] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47420,7 +47420,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[,,] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47436,7 +47436,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] ref T3 fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47444,7 +47444,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, Single value) { throw new NotImplementedException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47452,7 +47452,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, Single value) { throw new NotImplementedException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47460,7 +47460,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47468,7 +47468,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47476,7 +47476,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47484,7 +47484,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47492,7 +47492,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameteriNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, Int32 value) { throw new NotImplementedException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47500,7 +47500,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameteriNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, Int32 value) { throw new NotImplementedException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47508,7 +47508,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47516,7 +47516,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47524,7 +47524,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47532,13 +47532,13 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilDepthOffsetNV")] - public static void PathStencilDepthOffset(Single factor, Single units) { throw new NotImplementedException(); } + public static void PathStencilDepthOffset(Single factor, Single units) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47547,7 +47547,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilFuncNV")] [CLSCompliant(false)] - public static void PathStencilFunc(OpenTK.Graphics.ES31.All func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } + public static void PathStencilFunc(OpenTK.Graphics.ES31.All func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47556,7 +47556,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilFuncNV")] [CLSCompliant(false)] - public static void PathStencilFunc(OpenTK.Graphics.ES31.All func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } + public static void PathStencilFunc(OpenTK.Graphics.ES31.All func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47564,7 +47564,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilFuncNV")] [CLSCompliant(false)] - public static void PathStencilFunc(OpenTK.Graphics.ES31.StencilFunction func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } + public static void PathStencilFunc(OpenTK.Graphics.ES31.StencilFunction func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47572,7 +47572,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilFuncNV")] [CLSCompliant(false)] - public static void PathStencilFunc(OpenTK.Graphics.ES31.StencilFunction func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } + public static void PathStencilFunc(OpenTK.Graphics.ES31.StencilFunction func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47581,7 +47581,7 @@ namespace OpenTK.Graphics.ES31 /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] - public static void PathString(Int32 path, OpenTK.Graphics.ES31.All format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new NotImplementedException(); } + public static void PathString(Int32 path, OpenTK.Graphics.ES31.All format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47592,7 +47592,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.ES31.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47603,7 +47603,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.ES31.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47614,7 +47614,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.ES31.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47625,7 +47625,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.ES31.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47634,7 +47634,7 @@ namespace OpenTK.Graphics.ES31 /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] - public static void PathString(UInt32 path, OpenTK.Graphics.ES31.All format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new NotImplementedException(); } + public static void PathString(UInt32 path, OpenTK.Graphics.ES31.All format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47645,7 +47645,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.ES31.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47656,7 +47656,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.ES31.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47667,7 +47667,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.ES31.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47678,7 +47678,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.ES31.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47691,7 +47691,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47706,7 +47706,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47721,7 +47721,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47736,7 +47736,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47751,7 +47751,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47764,7 +47764,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47779,7 +47779,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47794,7 +47794,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47809,7 +47809,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47824,7 +47824,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47837,7 +47837,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47852,7 +47852,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47867,7 +47867,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47882,7 +47882,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47897,7 +47897,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47910,7 +47910,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47925,7 +47925,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47940,7 +47940,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47955,7 +47955,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47970,7 +47970,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47983,7 +47983,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47998,7 +47998,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48013,7 +48013,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48028,7 +48028,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48043,7 +48043,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48056,7 +48056,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48071,7 +48071,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48086,7 +48086,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48101,7 +48101,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48116,7 +48116,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48126,7 +48126,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCoordsNV")] [CLSCompliant(false)] - public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48138,7 +48138,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48150,7 +48150,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[,] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48162,7 +48162,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[,,] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48174,7 +48174,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T4 coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48184,7 +48184,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCoordsNV")] [CLSCompliant(false)] - public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48196,7 +48196,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48208,7 +48208,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[,] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48220,7 +48220,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[,,] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48232,7 +48232,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T4 coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48241,7 +48241,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(genMode,components)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] - public static void PathTexGen(OpenTK.Graphics.ES31.All texCoordSet, OpenTK.Graphics.ES31.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single[] coeffs) { throw new NotImplementedException(); } + public static void PathTexGen(OpenTK.Graphics.ES31.All texCoordSet, OpenTK.Graphics.ES31.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48250,7 +48250,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(genMode,components)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] - public static void PathTexGen(OpenTK.Graphics.ES31.All texCoordSet, OpenTK.Graphics.ES31.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] ref Single coeffs) { throw new NotImplementedException(); } + public static void PathTexGen(OpenTK.Graphics.ES31.All texCoordSet, OpenTK.Graphics.ES31.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48259,7 +48259,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(genMode,components)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] - public static unsafe void PathTexGen(OpenTK.Graphics.ES31.All texCoordSet, OpenTK.Graphics.ES31.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single* coeffs) { throw new NotImplementedException(); } + public static unsafe void PathTexGen(OpenTK.Graphics.ES31.All texCoordSet, OpenTK.Graphics.ES31.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48272,7 +48272,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] [CLSCompliant(false)] - public static bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] out Single x, [OutAttribute, CountAttribute(Count = 1)] out Single y, [OutAttribute, CountAttribute(Count = 1)] out Single tangentX, [OutAttribute, CountAttribute(Count = 1)] out Single tangentY) { throw new NotImplementedException(); } + public static bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] out Single x, [OutAttribute, CountAttribute(Count = 1)] out Single y, [OutAttribute, CountAttribute(Count = 1)] out Single tangentX, [OutAttribute, CountAttribute(Count = 1)] out Single tangentY) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48285,7 +48285,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] [CLSCompliant(false)] - public static unsafe bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY) { throw new NotImplementedException(); } + public static unsafe bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48298,7 +48298,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] [CLSCompliant(false)] - public static bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] out Single x, [OutAttribute, CountAttribute(Count = 1)] out Single y, [OutAttribute, CountAttribute(Count = 1)] out Single tangentX, [OutAttribute, CountAttribute(Count = 1)] out Single tangentY) { throw new NotImplementedException(); } + public static bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] out Single x, [OutAttribute, CountAttribute(Count = 1)] out Single y, [OutAttribute, CountAttribute(Count = 1)] out Single tangentX, [OutAttribute, CountAttribute(Count = 1)] out Single tangentY) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48311,7 +48311,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] [CLSCompliant(false)] - public static unsafe bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY) { throw new NotImplementedException(); } + public static unsafe bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY) { throw new BindingsNotRewrittenException(); } /// [requires: NV_polygon_mode] /// Select a polygon rasterization mode @@ -48324,7 +48324,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_polygon_mode", Version = "", EntryPoint = "glPolygonModeNV")] - public static void PolygonMode(OpenTK.Graphics.ES31.All face, OpenTK.Graphics.ES31.All mode) { throw new NotImplementedException(); } + public static void PolygonMode(OpenTK.Graphics.ES31.All face, OpenTK.Graphics.ES31.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_polygon_mode] /// Select a polygon rasterization mode @@ -48336,7 +48336,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies how polygons will be rasterized. Accepted values are Point, Line, and Fill. The initial value is Fill for both front- and back-facing polygons. /// [AutoGenerated(Category = "NV_polygon_mode", Version = "", EntryPoint = "glPolygonModeNV")] - public static void PolygonMode(OpenTK.Graphics.ES31.MaterialFace face, OpenTK.Graphics.ES31.PolygonMode mode) { throw new NotImplementedException(); } + public static void PolygonMode(OpenTK.Graphics.ES31.MaterialFace face, OpenTK.Graphics.ES31.PolygonMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48346,7 +48346,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.ES31.All genMode, Int32 components, Single[] coeffs) { throw new NotImplementedException(); } + public static void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.ES31.All genMode, Int32 components, Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48356,7 +48356,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.ES31.All genMode, Int32 components, ref Single coeffs) { throw new NotImplementedException(); } + public static void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.ES31.All genMode, Int32 components, ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48366,7 +48366,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static unsafe void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.ES31.All genMode, Int32 components, Single* coeffs) { throw new NotImplementedException(); } + public static unsafe void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.ES31.All genMode, Int32 components, Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48376,7 +48376,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.ES31.All genMode, Int32 components, Single[] coeffs) { throw new NotImplementedException(); } + public static void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.ES31.All genMode, Int32 components, Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48386,7 +48386,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.ES31.All genMode, Int32 components, ref Single coeffs) { throw new NotImplementedException(); } + public static void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.ES31.All genMode, Int32 components, ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48396,7 +48396,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static unsafe void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.ES31.All genMode, Int32 components, Single* coeffs) { throw new NotImplementedException(); } + public static unsafe void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.ES31.All genMode, Int32 components, Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48412,7 +48412,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64NV")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48428,7 +48428,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64NV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48447,7 +48447,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48466,7 +48466,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48485,7 +48485,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48504,7 +48504,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48523,7 +48523,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48542,7 +48542,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48558,7 +48558,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64NV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, UInt64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, UInt64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48577,7 +48577,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48596,7 +48596,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48615,7 +48615,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48634,7 +48634,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64NV")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int64 x, Int64 y) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48653,7 +48653,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64NV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int64 x, Int64 y) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48672,7 +48672,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48691,7 +48691,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48710,7 +48710,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48729,7 +48729,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48748,7 +48748,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48767,7 +48767,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48786,7 +48786,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2ui64NV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, UInt64 x, UInt64 y) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, UInt64 x, UInt64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48805,7 +48805,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48824,7 +48824,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48843,7 +48843,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2ui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48865,7 +48865,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64NV")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48887,7 +48887,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64NV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48906,7 +48906,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48925,7 +48925,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48944,7 +48944,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48963,7 +48963,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48982,7 +48982,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -49001,7 +49001,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -49023,7 +49023,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3ui64NV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -49042,7 +49042,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -49061,7 +49061,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -49080,7 +49080,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3ui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -49105,7 +49105,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64NV")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -49130,7 +49130,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64NV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -49149,7 +49149,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -49168,7 +49168,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -49187,7 +49187,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -49206,7 +49206,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -49225,7 +49225,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -49244,7 +49244,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -49269,7 +49269,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4ui64NV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -49288,7 +49288,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -49307,7 +49307,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -49326,7 +49326,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4ui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -49334,7 +49334,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64NV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -49342,7 +49342,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64NV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -49351,7 +49351,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -49360,7 +49360,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -49369,7 +49369,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* values) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -49378,7 +49378,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -49387,7 +49387,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -49396,7 +49396,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_read_buffer] /// Select a color buffer source for pixels @@ -49405,7 +49405,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a color buffer. Accepted values are Back, None, and ColorAttachmenti. /// [AutoGenerated(Category = "NV_read_buffer", Version = "", EntryPoint = "glReadBufferNV")] - public static void ReadBuffer(OpenTK.Graphics.ES31.All mode) { throw new NotImplementedException(); } + public static void ReadBuffer(OpenTK.Graphics.ES31.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_multisample] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -49426,11 +49426,11 @@ namespace OpenTK.Graphics.ES31 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "NV_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleNV")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glResolveDepthValuesNV")] - public static void ResolveDepthValues() { throw new NotImplementedException(); } + public static void ResolveDepthValues() { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for multiple viewports @@ -49446,7 +49446,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorArrayvNV")] [CLSCompliant(false)] - public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for multiple viewports @@ -49462,7 +49462,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorArrayvNV")] [CLSCompliant(false)] - public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for multiple viewports @@ -49478,7 +49478,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorArrayvNV")] [CLSCompliant(false)] - public static unsafe void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for multiple viewports @@ -49494,7 +49494,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorArrayvNV")] [CLSCompliant(false)] - public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for multiple viewports @@ -49510,7 +49510,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorArrayvNV")] [CLSCompliant(false)] - public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for multiple viewports @@ -49526,7 +49526,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorArrayvNV")] [CLSCompliant(false)] - public static unsafe void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -49548,7 +49548,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedNV")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -49570,7 +49570,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedNV")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -49583,7 +49583,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedvNV")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -49596,7 +49596,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedvNV")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -49609,7 +49609,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedvNV")] [CLSCompliant(false)] - public static unsafe void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -49622,7 +49622,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedvNV")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -49635,7 +49635,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedvNV")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -49648,45 +49648,45 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedvNV")] [CLSCompliant(false)] - public static unsafe void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glSetFenceNV")] [CLSCompliant(false)] - public static void SetFence(Int32 fence, OpenTK.Graphics.ES31.All condition) { throw new NotImplementedException(); } + public static void SetFence(Int32 fence, OpenTK.Graphics.ES31.All condition) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glSetFenceNV")] [CLSCompliant(false)] - public static void SetFence(UInt32 fence, OpenTK.Graphics.ES31.All condition) { throw new NotImplementedException(); } + public static void SetFence(UInt32 fence, OpenTK.Graphics.ES31.All condition) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glSignalVkFenceNV")] [CLSCompliant(false)] - public static void SignalVkFence(Int64 vkFence) { throw new NotImplementedException(); } + public static void SignalVkFence(Int64 vkFence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glSignalVkFenceNV")] [CLSCompliant(false)] - public static void SignalVkFence(UInt64 vkFence) { throw new NotImplementedException(); } + public static void SignalVkFence(UInt64 vkFence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glSignalVkSemaphoreNV")] [CLSCompliant(false)] - public static void SignalVkSemaphore(Int64 vkSemaphore) { throw new NotImplementedException(); } + public static void SignalVkSemaphore(Int64 vkSemaphore) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glSignalVkSemaphoreNV")] [CLSCompliant(false)] - public static void SignalVkSemaphore(UInt64 vkSemaphore) { throw new NotImplementedException(); } + public static void SignalVkSemaphore(UInt64 vkSemaphore) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49699,7 +49699,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49712,7 +49712,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49725,7 +49725,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49738,7 +49738,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49751,7 +49751,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49764,7 +49764,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49779,7 +49779,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49794,7 +49794,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49809,7 +49809,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49824,7 +49824,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49839,7 +49839,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49854,7 +49854,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49869,7 +49869,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49884,7 +49884,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49899,7 +49899,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49914,7 +49914,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49929,7 +49929,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49944,7 +49944,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49959,7 +49959,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49974,7 +49974,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49989,7 +49989,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50004,7 +50004,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50019,7 +50019,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50034,7 +50034,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50049,7 +50049,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50064,7 +50064,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50079,7 +50079,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50094,7 +50094,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50109,7 +50109,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50124,7 +50124,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50132,7 +50132,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathNV")] [CLSCompliant(false)] - public static void StencilFillPath(Int32 path, OpenTK.Graphics.ES31.All fillMode, Int32 mask) { throw new NotImplementedException(); } + public static void StencilFillPath(Int32 path, OpenTK.Graphics.ES31.All fillMode, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50140,7 +50140,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathNV")] [CLSCompliant(false)] - public static void StencilFillPath(UInt32 path, OpenTK.Graphics.ES31.All fillMode, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFillPath(UInt32 path, OpenTK.Graphics.ES31.All fillMode, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50153,7 +50153,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50166,7 +50166,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50179,7 +50179,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50192,7 +50192,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50205,7 +50205,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50218,7 +50218,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50233,7 +50233,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50248,7 +50248,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50263,7 +50263,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50278,7 +50278,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50293,7 +50293,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50308,7 +50308,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50323,7 +50323,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50338,7 +50338,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50353,7 +50353,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50368,7 +50368,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50383,7 +50383,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50398,7 +50398,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50413,7 +50413,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50428,7 +50428,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50443,7 +50443,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50458,7 +50458,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50473,7 +50473,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50488,7 +50488,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50503,7 +50503,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50518,7 +50518,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50533,7 +50533,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50548,7 +50548,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50563,7 +50563,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50578,7 +50578,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50586,7 +50586,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathNV")] [CLSCompliant(false)] - public static void StencilStrokePath(Int32 path, Int32 reference, Int32 mask) { throw new NotImplementedException(); } + public static void StencilStrokePath(Int32 path, Int32 reference, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50594,7 +50594,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathNV")] [CLSCompliant(false)] - public static void StencilStrokePath(UInt32 path, Int32 reference, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilStrokePath(UInt32 path, Int32 reference, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50608,7 +50608,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50622,7 +50622,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50636,7 +50636,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50650,7 +50650,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50664,7 +50664,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50678,7 +50678,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50694,7 +50694,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50710,7 +50710,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50726,7 +50726,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50742,7 +50742,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50758,7 +50758,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50774,7 +50774,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50790,7 +50790,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50806,7 +50806,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50822,7 +50822,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50838,7 +50838,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50854,7 +50854,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50870,7 +50870,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50886,7 +50886,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50902,7 +50902,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50918,7 +50918,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50934,7 +50934,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50950,7 +50950,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50966,7 +50966,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50982,7 +50982,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50998,7 +50998,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51014,7 +51014,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51030,7 +51030,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51046,7 +51046,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51062,7 +51062,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51071,7 +51071,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPath(Int32 path, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All coverMode) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPath(Int32 path, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51080,7 +51080,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPath(UInt32 path, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All coverMode) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPath(UInt32 path, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51094,7 +51094,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51108,7 +51108,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51122,7 +51122,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51136,7 +51136,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51150,7 +51150,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51164,7 +51164,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51180,7 +51180,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51196,7 +51196,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51212,7 +51212,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51228,7 +51228,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51244,7 +51244,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51260,7 +51260,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51276,7 +51276,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51292,7 +51292,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51308,7 +51308,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51324,7 +51324,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51340,7 +51340,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51356,7 +51356,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51372,7 +51372,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51388,7 +51388,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51404,7 +51404,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51420,7 +51420,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51436,7 +51436,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51452,7 +51452,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51468,7 +51468,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51484,7 +51484,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51500,7 +51500,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51516,7 +51516,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51532,7 +51532,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51548,7 +51548,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51557,7 +51557,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePath(Int32 path, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All coverMode) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePath(Int32 path, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51566,33 +51566,33 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePath(UInt32 path, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All coverMode) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePath(UInt32 path, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conservative_raster] /// /// [AutoGenerated(Category = "NV_conservative_raster", Version = "", EntryPoint = "glSubpixelPrecisionBiasNV")] [CLSCompliant(false)] - public static void SubpixelPrecisionBia(Int32 xbits, Int32 ybits) { throw new NotImplementedException(); } + public static void SubpixelPrecisionBia(Int32 xbits, Int32 ybits) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conservative_raster] /// /// [AutoGenerated(Category = "NV_conservative_raster", Version = "", EntryPoint = "glSubpixelPrecisionBiasNV")] [CLSCompliant(false)] - public static void SubpixelPrecisionBia(UInt32 xbits, UInt32 ybits) { throw new NotImplementedException(); } + public static void SubpixelPrecisionBia(UInt32 xbits, UInt32 ybits) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glTestFenceNV")] [CLSCompliant(false)] - public static bool TestFence(Int32 fence) { throw new NotImplementedException(); } + public static bool TestFence(Int32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glTestFenceNV")] [CLSCompliant(false)] - public static bool TestFence(UInt32 fence) { throw new NotImplementedException(); } + public static bool TestFence(UInt32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51601,7 +51601,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51610,7 +51610,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51619,7 +51619,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static unsafe void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51628,7 +51628,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51637,7 +51637,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51646,7 +51646,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static unsafe void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51658,7 +51658,7 @@ namespace OpenTK.Graphics.ES31 /// For the vector (glUniform*v) commands, specifies the number of elements that are to be modified. This should be 1 if the targeted uniform variable is not an array, and 1 or more if it is an array. For the matrix (glUniformMatrix*) commands, specifies the number of matrices that are to be modified. This should be 1 if the targeted uniform variable is not an array of matrices, and 1 or more if it is an array of matrices. /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64NV")] - public static void Uniform1(Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51674,7 +51674,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64vNV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51690,7 +51690,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64vNV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51706,7 +51706,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51719,7 +51719,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64NV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, UInt64 x) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, UInt64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51735,7 +51735,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64vNV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51751,7 +51751,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64vNV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51767,7 +51767,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51782,7 +51782,7 @@ namespace OpenTK.Graphics.ES31 /// For the matrix commands, specifies whether to transpose the matrix as the values are loaded into the uniform variable. /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64NV")] - public static void Uniform2(Int32 location, Int64 x, Int64 y) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51798,7 +51798,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64vNV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51814,7 +51814,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64vNV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51830,7 +51830,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51846,7 +51846,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64NV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, UInt64 x, UInt64 y) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, UInt64 x, UInt64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51862,7 +51862,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64vNV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51878,7 +51878,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64vNV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51894,7 +51894,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51912,7 +51912,7 @@ namespace OpenTK.Graphics.ES31 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64NV")] - public static void Uniform3(Int32 location, Int64 x, Int64 y, Int64 z) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51928,7 +51928,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64vNV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51944,7 +51944,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64vNV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51960,7 +51960,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51979,7 +51979,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3ui64NV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51995,7 +51995,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3ui64vNV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -52011,7 +52011,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3ui64vNV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -52027,7 +52027,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3ui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -52048,7 +52048,7 @@ namespace OpenTK.Graphics.ES31 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64NV")] - public static void Uniform4(Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -52064,7 +52064,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64vNV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -52080,7 +52080,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64vNV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -52096,7 +52096,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -52118,7 +52118,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4ui64NV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -52134,7 +52134,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4ui64vNV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -52150,7 +52150,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4ui64vNV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -52166,21 +52166,21 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4ui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64NV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64NV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -52188,7 +52188,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -52196,7 +52196,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -52204,7 +52204,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -52212,7 +52212,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -52220,7 +52220,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -52228,7 +52228,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -52237,7 +52237,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x3fvNV")] [CLSCompliant(false)] - public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -52246,7 +52246,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x3fvNV")] [CLSCompliant(false)] - public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -52255,7 +52255,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x3fvNV")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -52264,7 +52264,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x4fvNV")] [CLSCompliant(false)] - public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -52273,7 +52273,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x4fvNV")] [CLSCompliant(false)] - public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -52282,7 +52282,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x4fvNV")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -52291,7 +52291,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x2fvNV")] [CLSCompliant(false)] - public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -52300,7 +52300,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x2fvNV")] [CLSCompliant(false)] - public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -52309,7 +52309,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x2fvNV")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -52318,7 +52318,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x4fvNV")] [CLSCompliant(false)] - public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -52327,7 +52327,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x4fvNV")] [CLSCompliant(false)] - public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -52336,7 +52336,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x4fvNV")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -52345,7 +52345,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x2fvNV")] [CLSCompliant(false)] - public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -52354,7 +52354,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x2fvNV")] [CLSCompliant(false)] - public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -52363,7 +52363,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x2fvNV")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -52372,7 +52372,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x3fvNV")] [CLSCompliant(false)] - public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -52381,7 +52381,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x3fvNV")] [CLSCompliant(false)] - public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -52390,7 +52390,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x3fvNV")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -52403,7 +52403,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorNV")] [CLSCompliant(false)] - public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: NV_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -52416,7 +52416,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorNV")] [CLSCompliant(false)] - public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set multiple viewports @@ -52432,7 +52432,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportArrayvNV")] [CLSCompliant(false)] - public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new NotImplementedException(); } + public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set multiple viewports @@ -52448,7 +52448,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportArrayvNV")] [CLSCompliant(false)] - public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new NotImplementedException(); } + public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set multiple viewports @@ -52464,7 +52464,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportArrayvNV")] [CLSCompliant(false)] - public static unsafe void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set multiple viewports @@ -52480,7 +52480,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportArrayvNV")] [CLSCompliant(false)] - public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new NotImplementedException(); } + public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set multiple viewports @@ -52496,7 +52496,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportArrayvNV")] [CLSCompliant(false)] - public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new NotImplementedException(); } + public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set multiple viewports @@ -52512,7 +52512,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportArrayvNV")] [CLSCompliant(false)] - public static unsafe void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -52534,7 +52534,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfNV")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, Single x, Single y, Single w, Single h) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, Single x, Single y, Single w, Single h) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -52556,7 +52556,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfNV")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, Single x, Single y, Single w, Single h) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, Single x, Single y, Single w, Single h) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -52569,7 +52569,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvNV")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -52582,7 +52582,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvNV")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -52595,7 +52595,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvNV")] [CLSCompliant(false)] - public static unsafe void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -52608,7 +52608,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvNV")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -52621,7 +52621,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvNV")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -52634,7 +52634,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvNV")] [CLSCompliant(false)] - public static unsafe void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_swizzle] /// @@ -52644,7 +52644,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_swizzle", Version = "", EntryPoint = "glViewportSwizzleNV")] [CLSCompliant(false)] - public static void ViewportSwizzle(Int32 index, OpenTK.Graphics.ES31.All swizzlex, OpenTK.Graphics.ES31.All swizzley, OpenTK.Graphics.ES31.All swizzlez, OpenTK.Graphics.ES31.All swizzlew) { throw new NotImplementedException(); } + public static void ViewportSwizzle(Int32 index, OpenTK.Graphics.ES31.All swizzlex, OpenTK.Graphics.ES31.All swizzley, OpenTK.Graphics.ES31.All swizzlez, OpenTK.Graphics.ES31.All swizzlew) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_swizzle] /// @@ -52654,19 +52654,19 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_swizzle", Version = "", EntryPoint = "glViewportSwizzleNV")] [CLSCompliant(false)] - public static void ViewportSwizzle(UInt32 index, OpenTK.Graphics.ES31.All swizzlex, OpenTK.Graphics.ES31.All swizzley, OpenTK.Graphics.ES31.All swizzlez, OpenTK.Graphics.ES31.All swizzlew) { throw new NotImplementedException(); } + public static void ViewportSwizzle(UInt32 index, OpenTK.Graphics.ES31.All swizzlex, OpenTK.Graphics.ES31.All swizzley, OpenTK.Graphics.ES31.All swizzlez, OpenTK.Graphics.ES31.All swizzlew) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glWaitVkSemaphoreNV")] [CLSCompliant(false)] - public static void WaitVkSemaphore(Int64 vkSemaphore) { throw new NotImplementedException(); } + public static void WaitVkSemaphore(Int64 vkSemaphore) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glWaitVkSemaphoreNV")] [CLSCompliant(false)] - public static void WaitVkSemaphore(UInt64 vkSemaphore) { throw new NotImplementedException(); } + public static void WaitVkSemaphore(UInt64 vkSemaphore) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52675,7 +52675,7 @@ namespace OpenTK.Graphics.ES31 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] Int32[] paths, [CountAttribute(Parameter = "numPaths")] Single[] weights) { throw new NotImplementedException(); } + public static void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] Int32[] paths, [CountAttribute(Parameter = "numPaths")] Single[] weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52684,7 +52684,7 @@ namespace OpenTK.Graphics.ES31 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] ref Int32 paths, [CountAttribute(Parameter = "numPaths")] ref Single weights) { throw new NotImplementedException(); } + public static void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] ref Int32 paths, [CountAttribute(Parameter = "numPaths")] ref Single weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52693,7 +52693,7 @@ namespace OpenTK.Graphics.ES31 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static unsafe void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] Int32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights) { throw new NotImplementedException(); } + public static unsafe void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] Int32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52702,7 +52702,7 @@ namespace OpenTK.Graphics.ES31 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32[] paths, [CountAttribute(Parameter = "numPaths")] Single[] weights) { throw new NotImplementedException(); } + public static void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32[] paths, [CountAttribute(Parameter = "numPaths")] Single[] weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52711,7 +52711,7 @@ namespace OpenTK.Graphics.ES31 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] ref UInt32 paths, [CountAttribute(Parameter = "numPaths")] ref Single weights) { throw new NotImplementedException(); } + public static void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] ref UInt32 paths, [CountAttribute(Parameter = "numPaths")] ref Single weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52720,7 +52720,7 @@ namespace OpenTK.Graphics.ES31 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static unsafe void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights) { throw new NotImplementedException(); } + public static unsafe void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights) { throw new BindingsNotRewrittenException(); } } @@ -52734,7 +52734,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glBindVertexArrayOES")] [CLSCompliant(false)] - public static void BindVertexArray(Int32 array) { throw new NotImplementedException(); } + public static void BindVertexArray(Int32 array) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Bind a vertex array object @@ -52744,7 +52744,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glBindVertexArrayOES")] [CLSCompliant(false)] - public static void BindVertexArray(UInt32 array) { throw new NotImplementedException(); } + public static void BindVertexArray(UInt32 array) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -52757,7 +52757,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiOES")] [CLSCompliant(false)] - public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES31.All mode) { throw new NotImplementedException(); } + public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES31.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -52770,7 +52770,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiOES")] [CLSCompliant(false)] - public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES31.All mode) { throw new NotImplementedException(); } + public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES31.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately @@ -52786,7 +52786,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiOES")] [CLSCompliant(false)] - public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES31.All modeRGB, OpenTK.Graphics.ES31.All modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES31.All modeRGB, OpenTK.Graphics.ES31.All modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately @@ -52802,7 +52802,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiOES")] [CLSCompliant(false)] - public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES31.All modeRGB, OpenTK.Graphics.ES31.All modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES31.All modeRGB, OpenTK.Graphics.ES31.All modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify pixel arithmetic @@ -52816,7 +52816,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciOES")] [CLSCompliant(false)] - public static void BlendFunc(Int32 buf, OpenTK.Graphics.ES31.All src, OpenTK.Graphics.ES31.All dst) { throw new NotImplementedException(); } + public static void BlendFunc(Int32 buf, OpenTK.Graphics.ES31.All src, OpenTK.Graphics.ES31.All dst) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify pixel arithmetic @@ -52830,7 +52830,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciOES")] [CLSCompliant(false)] - public static void BlendFunc(UInt32 buf, OpenTK.Graphics.ES31.All src, OpenTK.Graphics.ES31.All dst) { throw new NotImplementedException(); } + public static void BlendFunc(UInt32 buf, OpenTK.Graphics.ES31.All src, OpenTK.Graphics.ES31.All dst) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify pixel arithmetic for RGB and alpha components separately @@ -52852,7 +52852,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiOES")] [CLSCompliant(false)] - public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.ES31.All srcRGB, OpenTK.Graphics.ES31.All dstRGB, OpenTK.Graphics.ES31.All srcAlpha, OpenTK.Graphics.ES31.All dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.ES31.All srcRGB, OpenTK.Graphics.ES31.All dstRGB, OpenTK.Graphics.ES31.All srcAlpha, OpenTK.Graphics.ES31.All dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify pixel arithmetic for RGB and alpha components separately @@ -52874,7 +52874,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiOES")] [CLSCompliant(false)] - public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.ES31.All srcRGB, OpenTK.Graphics.ES31.All dstRGB, OpenTK.Graphics.ES31.All srcAlpha, OpenTK.Graphics.ES31.All dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.ES31.All srcRGB, OpenTK.Graphics.ES31.All dstRGB, OpenTK.Graphics.ES31.All srcAlpha, OpenTK.Graphics.ES31.All dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Enable and disable writing of frame buffer color components @@ -52894,7 +52894,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glColorMaskiOES")] [CLSCompliant(false)] - public static void ColorMask(Int32 index, bool r, bool g, bool b, bool a) { throw new NotImplementedException(); } + public static void ColorMask(Int32 index, bool r, bool g, bool b, bool a) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Enable and disable writing of frame buffer color components @@ -52914,7 +52914,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glColorMaskiOES")] [CLSCompliant(false)] - public static void ColorMask(UInt32 index, bool r, bool g, bool b, bool a) { throw new NotImplementedException(); } + public static void ColorMask(UInt32 index, bool r, bool g, bool b, bool a) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -52947,7 +52947,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] - public static void CompressedTexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -52983,7 +52983,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -53019,7 +53019,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -53055,7 +53055,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -53090,7 +53090,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] public static void CompressedTexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -53129,7 +53129,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] - public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -53171,7 +53171,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -53213,7 +53213,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -53255,7 +53255,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -53296,7 +53296,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_copy_image] /// Perform a raw data copy between two images @@ -53348,7 +53348,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_copy_image", Version = "", EntryPoint = "glCopyImageSubDataOES")] [CLSCompliant(false)] - public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.ES31.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.ES31.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new NotImplementedException(); } + public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.ES31.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.ES31.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } /// [requires: OES_copy_image] /// Perform a raw data copy between two images @@ -53400,7 +53400,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_copy_image", Version = "", EntryPoint = "glCopyImageSubDataOES")] [CLSCompliant(false)] - public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.ES31.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.ES31.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new NotImplementedException(); } + public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.ES31.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.ES31.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Copy a three-dimensional texture subimage @@ -53433,7 +53433,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the height of the texture subimage. /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCopyTexSubImage3DOES")] - public static void CopyTexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -53443,7 +53443,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArray([CountAttribute(Parameter = "n")] Int32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArray([CountAttribute(Parameter = "n")] Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -53453,7 +53453,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArray([CountAttribute(Parameter = "n")] UInt32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArray([CountAttribute(Parameter = "n")] UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -53466,7 +53466,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32[] arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -53479,7 +53479,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -53492,7 +53492,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32* arrays) { throw new NotImplementedException(); } + public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -53505,7 +53505,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -53518,7 +53518,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -53531,7 +53531,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays) { throw new NotImplementedException(); } + public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -53547,7 +53547,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvOES")] [CLSCompliant(false)] - public static void DepthRangeArray(Int32 first, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void DepthRangeArray(Int32 first, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -53563,7 +53563,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvOES")] [CLSCompliant(false)] - public static void DepthRangeArray(Int32 first, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void DepthRangeArray(Int32 first, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -53579,7 +53579,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvOES")] [CLSCompliant(false)] - public static unsafe void DepthRangeArray(Int32 first, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void DepthRangeArray(Int32 first, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -53595,7 +53595,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvOES")] [CLSCompliant(false)] - public static void DepthRangeArray(UInt32 first, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void DepthRangeArray(UInt32 first, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -53611,7 +53611,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvOES")] [CLSCompliant(false)] - public static void DepthRangeArray(UInt32 first, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void DepthRangeArray(UInt32 first, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -53627,7 +53627,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvOES")] [CLSCompliant(false)] - public static unsafe void DepthRangeArray(UInt32 first, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void DepthRangeArray(UInt32 first, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified viewport @@ -53643,7 +53643,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeIndexedfOES")] [CLSCompliant(false)] - public static void DepthRangeIndexed(Int32 index, Single n, Single f) { throw new NotImplementedException(); } + public static void DepthRangeIndexed(Int32 index, Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified viewport @@ -53659,21 +53659,21 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeIndexedfOES")] [CLSCompliant(false)] - public static void DepthRangeIndexed(UInt32 index, Single n, Single f) { throw new NotImplementedException(); } + public static void DepthRangeIndexed(UInt32 index, Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// /// [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glDisableiOES")] [CLSCompliant(false)] - public static void Disable(OpenTK.Graphics.ES31.All target, Int32 index) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES31.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// /// [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glDisableiOES")] [CLSCompliant(false)] - public static void Disable(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -53695,7 +53695,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexOES")] - public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -53720,7 +53720,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -53745,7 +53745,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -53770,7 +53770,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -53794,7 +53794,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexOES")] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -53815,7 +53815,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexOES")] - public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -53839,7 +53839,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -53863,7 +53863,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -53887,7 +53887,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -53910,7 +53910,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexOES")] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -53935,7 +53935,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexOES")] - public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -53963,7 +53963,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -53991,7 +53991,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -54019,7 +54019,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -54046,7 +54046,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexOES")] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -54070,7 +54070,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexOES")] - public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -54097,7 +54097,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -54124,7 +54124,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -54151,7 +54151,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -54177,7 +54177,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexOES")] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -54206,7 +54206,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexOES")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -54237,7 +54237,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -54268,7 +54268,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -54299,7 +54299,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -54330,7 +54330,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -54359,7 +54359,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexOES")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -54390,7 +54390,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -54421,7 +54421,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -54452,7 +54452,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -54483,7 +54483,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -54511,7 +54511,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexOES")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -54541,7 +54541,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -54571,7 +54571,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -54601,7 +54601,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -54631,7 +54631,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -54659,7 +54659,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexOES")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -54689,7 +54689,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -54719,7 +54719,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -54749,7 +54749,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -54779,19 +54779,19 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_EGL_image] /// /// [AutoGenerated(Category = "OES_EGL_image", Version = "", EntryPoint = "glEGLImageTargetRenderbufferStorageOES")] - public static void EGLImageTargetRenderbufferStorage(OpenTK.Graphics.ES31.All target, IntPtr image) { throw new NotImplementedException(); } + public static void EGLImageTargetRenderbufferStorage(OpenTK.Graphics.ES31.All target, IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: OES_EGL_image] /// /// [AutoGenerated(Category = "OES_EGL_image", Version = "", EntryPoint = "glEGLImageTargetTexture2DOES")] - public static void EGLImageTargetTexture2D(OpenTK.Graphics.ES31.All target, IntPtr image) { throw new NotImplementedException(); } + public static void EGLImageTargetTexture2D(OpenTK.Graphics.ES31.All target, IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// Enable or disable server-side GL capabilities @@ -54802,7 +54802,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glEnableiOES")] [CLSCompliant(false)] - public static void Enable(OpenTK.Graphics.ES31.All target, Int32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES31.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// Enable or disable server-side GL capabilities @@ -54813,7 +54813,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glEnableiOES")] [CLSCompliant(false)] - public static void Enable(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// @@ -54824,7 +54824,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glFramebufferTexture3DOES")] [CLSCompliant(false)] - public static void FramebufferTexture3D(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, Int32 texture, Int32 level, Int32 zoffset) { throw new NotImplementedException(); } + public static void FramebufferTexture3D(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, Int32 texture, Int32 level, Int32 zoffset) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// @@ -54835,7 +54835,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glFramebufferTexture3DOES")] [CLSCompliant(false)] - public static void FramebufferTexture3D(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, UInt32 texture, Int32 level, Int32 zoffset) { throw new NotImplementedException(); } + public static void FramebufferTexture3D(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, UInt32 texture, Int32 level, Int32 zoffset) { throw new BindingsNotRewrittenException(); } /// [requires: OES_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -54855,7 +54855,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureOES")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: OES_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -54875,7 +54875,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureOES")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: OES_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -54894,7 +54894,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureOES")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: OES_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -54913,14 +54913,14 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureOES")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static Int32 GenVertexArray() { throw new NotImplementedException(); } + public static Int32 GenVertexArray() { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -54933,7 +54933,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -54946,7 +54946,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -54959,7 +54959,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* arrays) { throw new NotImplementedException(); } + public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -54972,7 +54972,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -54985,7 +54985,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -54998,14 +54998,14 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays) { throw new NotImplementedException(); } + public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// /// /// [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] - public static void GetBufferPointer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } + public static void GetBufferPointer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -55015,7 +55015,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -55025,7 +55025,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -55035,7 +55035,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -55044,7 +55044,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] public static void GetBufferPointer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// @@ -55052,7 +55052,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// @@ -55060,7 +55060,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// @@ -55068,7 +55068,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// @@ -55076,7 +55076,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// @@ -55084,7 +55084,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// @@ -55092,7 +55092,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55115,7 +55115,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] - public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All[] binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All[] binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55140,7 +55140,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55165,7 +55165,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55190,7 +55190,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55215,7 +55215,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55238,7 +55238,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] - public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55263,7 +55263,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55288,7 +55288,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55313,7 +55313,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55338,7 +55338,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55361,7 +55361,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] - public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55386,7 +55386,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55411,7 +55411,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55436,7 +55436,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55461,7 +55461,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55484,7 +55484,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] - public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All[] binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All[] binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55509,7 +55509,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55534,7 +55534,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55559,7 +55559,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55584,7 +55584,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55607,7 +55607,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] - public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55632,7 +55632,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55657,7 +55657,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55682,7 +55682,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55707,7 +55707,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55730,7 +55730,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] - public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55755,7 +55755,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55780,7 +55780,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55805,7 +55805,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55830,7 +55830,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -55838,7 +55838,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] - public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -55846,7 +55846,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] - public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -55854,7 +55854,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -55862,7 +55862,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -55870,7 +55870,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -55878,7 +55878,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -55886,7 +55886,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivOES")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -55894,7 +55894,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivOES")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -55902,7 +55902,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivOES")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -55911,7 +55911,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -55920,7 +55920,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -55929,7 +55929,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivOES")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -55937,7 +55937,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -55945,7 +55945,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -55953,7 +55953,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivOES")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -55962,7 +55962,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -55971,7 +55971,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -55980,7 +55980,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivOES")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -55988,7 +55988,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -55996,7 +55996,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -56004,7 +56004,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivOES")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// Test whether a capability is enabled @@ -56017,7 +56017,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glIsEnablediOES")] [CLSCompliant(false)] - public static bool IsEnabled(OpenTK.Graphics.ES31.All target, Int32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES31.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// Test whether a capability is enabled @@ -56030,7 +56030,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glIsEnablediOES")] [CLSCompliant(false)] - public static bool IsEnabled(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Determine if a name corresponds to a vertex array object @@ -56040,7 +56040,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glIsVertexArrayOES")] [CLSCompliant(false)] - public static bool IsVertexArray(Int32 array) { throw new NotImplementedException(); } + public static bool IsVertexArray(Int32 array) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Determine if a name corresponds to a vertex array object @@ -56050,7 +56050,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glIsVertexArrayOES")] [CLSCompliant(false)] - public static bool IsVertexArray(UInt32 array) { throw new NotImplementedException(); } + public static bool IsVertexArray(UInt32 array) { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// Map a buffer object's data store @@ -56062,7 +56062,7 @@ namespace OpenTK.Graphics.ES31 /// For glMapBuffer only, specifies the access policy, indicating whether it will be possible to read from, write to, or both read from and write to the buffer object's mapped data store. The symbolic constant must be ReadOnly, WriteOnly, or ReadWrite. /// [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glMapBufferOES")] - public static IntPtr MapBuffer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All access) { throw new NotImplementedException(); } + public static IntPtr MapBuffer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All access) { throw new BindingsNotRewrittenException(); } /// [requires: OES_sample_shading] /// Specifies minimum rate at which sample shaing takes place @@ -56071,7 +56071,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the rate at which samples are shaded within each covered pixel. /// [AutoGenerated(Category = "OES_sample_shading", Version = "", EntryPoint = "glMinSampleShadingOES")] - public static void MinSampleShading(Single value) { throw new NotImplementedException(); } + public static void MinSampleShading(Single value) { throw new BindingsNotRewrittenException(); } /// [requires: OES_tessellation_shader] /// Specifies the parameters for patch primitives @@ -56083,7 +56083,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the new value for the parameter given by pname. /// [AutoGenerated(Category = "OES_tessellation_shader", Version = "", EntryPoint = "glPatchParameteriOES")] - public static void PatchParameter(OpenTK.Graphics.ES31.All pname, Int32 value) { throw new NotImplementedException(); } + public static void PatchParameter(OpenTK.Graphics.ES31.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: OES_primitive_bounding_box] /// @@ -56095,7 +56095,7 @@ namespace OpenTK.Graphics.ES31 /// /// [AutoGenerated(Category = "OES_primitive_bounding_box", Version = "", EntryPoint = "glPrimitiveBoundingBoxOES")] - public static void PrimitiveBoundingBox(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW) { throw new NotImplementedException(); } + public static void PrimitiveBoundingBox(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -56114,7 +56114,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glProgramBinaryOES")] [CLSCompliant(false)] - public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES31.All binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES31.All binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -56135,7 +56135,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -56156,7 +56156,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -56177,7 +56177,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -56198,7 +56198,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T2 binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -56217,7 +56217,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glProgramBinaryOES")] [CLSCompliant(false)] - public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES31.All binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES31.All binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -56238,7 +56238,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -56259,7 +56259,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -56280,7 +56280,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -56301,7 +56301,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T2 binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -56309,7 +56309,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] - public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -56317,7 +56317,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] - public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -56325,7 +56325,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -56333,7 +56333,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -56341,7 +56341,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -56349,7 +56349,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -56357,7 +56357,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivOES")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -56365,7 +56365,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivOES")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -56373,7 +56373,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivOES")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for multiple viewports @@ -56389,7 +56389,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorArrayvOES")] [CLSCompliant(false)] - public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for multiple viewports @@ -56405,7 +56405,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorArrayvOES")] [CLSCompliant(false)] - public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for multiple viewports @@ -56421,7 +56421,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorArrayvOES")] [CLSCompliant(false)] - public static unsafe void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for multiple viewports @@ -56437,7 +56437,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorArrayvOES")] [CLSCompliant(false)] - public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for multiple viewports @@ -56453,7 +56453,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorArrayvOES")] [CLSCompliant(false)] - public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for multiple viewports @@ -56469,7 +56469,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorArrayvOES")] [CLSCompliant(false)] - public static unsafe void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -56491,7 +56491,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedOES")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -56513,7 +56513,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedOES")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -56526,7 +56526,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedvOES")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -56539,7 +56539,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedvOES")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -56552,7 +56552,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedvOES")] [CLSCompliant(false)] - public static unsafe void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -56565,7 +56565,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedvOES")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -56578,7 +56578,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedvOES")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -56591,7 +56591,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedvOES")] [CLSCompliant(false)] - public static unsafe void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -56608,7 +56608,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferOES")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -56625,7 +56625,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferOES")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -56641,7 +56641,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferOES")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.All internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.All internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -56657,7 +56657,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferOES")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.All internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.All internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -56679,7 +56679,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -56701,7 +56701,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -56723,7 +56723,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -56745,7 +56745,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -56781,7 +56781,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] - public static void TexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -56820,7 +56820,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -56859,7 +56859,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -56898,7 +56898,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -56936,7 +56936,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] public static void TexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -56945,7 +56945,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -56954,7 +56954,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -56963,7 +56963,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivOES")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -56971,7 +56971,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -56979,7 +56979,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -56987,7 +56987,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivOES")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -56996,7 +56996,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -57005,7 +57005,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -57014,7 +57014,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivOES")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -57022,7 +57022,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -57030,7 +57030,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -57038,7 +57038,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivOES")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_storage_multisample_2d_array] /// Specify storage for a two-dimensional multisample array texture @@ -57065,7 +57065,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies whether the image will use identical sample locations and the same number of samples for all texels in the image, and the sample locations will not depend on the internal format or size of the image. /// [AutoGenerated(Category = "OES_texture_storage_multisample_2d_array", Version = "", EntryPoint = "glTexStorage3DMultisampleOES")] - public static void TexStorage3DMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TexStorage3DMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -57104,7 +57104,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] - public static void TexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -57146,7 +57146,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -57188,7 +57188,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -57230,7 +57230,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -57271,7 +57271,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] public static void TexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_view] /// Initialize a texture as a data alias of another texture's data store @@ -57302,7 +57302,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_texture_view", Version = "", EntryPoint = "glTextureViewOES")] [CLSCompliant(false)] - public static void TextureView(Int32 texture, OpenTK.Graphics.ES31.All target, Int32 origtexture, OpenTK.Graphics.ES31.All internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new NotImplementedException(); } + public static void TextureView(Int32 texture, OpenTK.Graphics.ES31.All target, Int32 origtexture, OpenTK.Graphics.ES31.All internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_view] /// Initialize a texture as a data alias of another texture's data store @@ -57333,12 +57333,12 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_texture_view", Version = "", EntryPoint = "glTextureViewOES")] [CLSCompliant(false)] - public static void TextureView(UInt32 texture, OpenTK.Graphics.ES31.All target, UInt32 origtexture, OpenTK.Graphics.ES31.All internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new NotImplementedException(); } + public static void TextureView(UInt32 texture, OpenTK.Graphics.ES31.All target, UInt32 origtexture, OpenTK.Graphics.ES31.All internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glUnmapBufferOES")] - public static bool UnmapBuffer(OpenTK.Graphics.ES31.All target) { throw new NotImplementedException(); } + public static bool UnmapBuffer(OpenTK.Graphics.ES31.All target) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set multiple viewports @@ -57354,7 +57354,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportArrayvOES")] [CLSCompliant(false)] - public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new NotImplementedException(); } + public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set multiple viewports @@ -57370,7 +57370,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportArrayvOES")] [CLSCompliant(false)] - public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new NotImplementedException(); } + public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set multiple viewports @@ -57386,7 +57386,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportArrayvOES")] [CLSCompliant(false)] - public static unsafe void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set multiple viewports @@ -57402,7 +57402,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportArrayvOES")] [CLSCompliant(false)] - public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new NotImplementedException(); } + public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set multiple viewports @@ -57418,7 +57418,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportArrayvOES")] [CLSCompliant(false)] - public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new NotImplementedException(); } + public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set multiple viewports @@ -57434,7 +57434,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportArrayvOES")] [CLSCompliant(false)] - public static unsafe void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -57456,7 +57456,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfOES")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, Single x, Single y, Single w, Single h) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, Single x, Single y, Single w, Single h) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -57478,7 +57478,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfOES")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, Single x, Single y, Single w, Single h) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, Single x, Single y, Single w, Single h) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -57491,7 +57491,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvOES")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -57504,7 +57504,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvOES")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -57517,7 +57517,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvOES")] [CLSCompliant(false)] - public static unsafe void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -57530,7 +57530,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvOES")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -57543,7 +57543,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvOES")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -57556,7 +57556,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvOES")] [CLSCompliant(false)] - public static unsafe void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } } @@ -57573,7 +57573,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OVR_multiview_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTextureMultisampleMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, Int32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, Int32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview_multisampled_render_to_texture] /// @@ -57586,7 +57586,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OVR_multiview_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTextureMultisampleMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, UInt32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, UInt32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview_multisampled_render_to_texture] /// @@ -57598,7 +57598,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OVR_multiview_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTextureMultisampleMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview_multisampled_render_to_texture] /// @@ -57610,7 +57610,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OVR_multiview_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTextureMultisampleMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview] /// @@ -57622,7 +57622,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OVR_multiview", Version = "", EntryPoint = "glFramebufferTextureMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultiview(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, Int32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultiview(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, Int32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview] /// @@ -57634,7 +57634,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OVR_multiview", Version = "", EntryPoint = "glFramebufferTextureMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultiview(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, UInt32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultiview(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, UInt32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview] /// @@ -57645,7 +57645,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OVR_multiview", Version = "", EntryPoint = "glFramebufferTextureMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultiview(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultiview(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview] /// @@ -57656,7 +57656,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OVR_multiview", Version = "", EntryPoint = "glFramebufferTextureMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultiview(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultiview(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } } @@ -57672,49 +57672,49 @@ namespace OpenTK.Graphics.ES31 /// Specifies the reference value that incoming alpha values are compared to. This value is clamped to the range [0,1], where 0 represents the lowest possible alpha value and 1 the highest possible value. The initial reference value is 0. /// [AutoGenerated(Category = "QCOM_alpha_test", Version = "", EntryPoint = "glAlphaFuncQCOM")] - public static void AlphaFunc(OpenTK.Graphics.ES31.All func, Single @ref) { throw new NotImplementedException(); } + public static void AlphaFunc(OpenTK.Graphics.ES31.All func, Single @ref) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glDisableDriverControlQCOM")] [CLSCompliant(false)] - public static void DisableDriverControl(Int32 driverControl) { throw new NotImplementedException(); } + public static void DisableDriverControl(Int32 driverControl) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glDisableDriverControlQCOM")] [CLSCompliant(false)] - public static void DisableDriverControl(UInt32 driverControl) { throw new NotImplementedException(); } + public static void DisableDriverControl(UInt32 driverControl) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glEnableDriverControlQCOM")] [CLSCompliant(false)] - public static void EnableDriverControl(Int32 driverControl) { throw new NotImplementedException(); } + public static void EnableDriverControl(Int32 driverControl) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glEnableDriverControlQCOM")] [CLSCompliant(false)] - public static void EnableDriverControl(UInt32 driverControl) { throw new NotImplementedException(); } + public static void EnableDriverControl(UInt32 driverControl) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_tiled_rendering] /// [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glEndTilingQCOM")] [CLSCompliant(false)] - public static void EndTiling(Int32 preserveMask) { throw new NotImplementedException(); } + public static void EndTiling(Int32 preserveMask) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_tiled_rendering] /// [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glEndTilingQCOM")] [CLSCompliant(false)] - public static void EndTiling(UInt32 preserveMask) { throw new NotImplementedException(); } + public static void EndTiling(UInt32 preserveMask) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBufferPointervQCOM")] - public static void ExtGetBufferPointer(OpenTK.Graphics.ES31.All target, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } + public static void ExtGetBufferPointer(OpenTK.Graphics.ES31.All target, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -57723,7 +57723,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ExtGetBufferPointer(OpenTK.Graphics.ES31.All target, [InAttribute, OutAttribute] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -57732,7 +57732,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ExtGetBufferPointer(OpenTK.Graphics.ES31.All target, [InAttribute, OutAttribute] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -57741,7 +57741,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ExtGetBufferPointer(OpenTK.Graphics.ES31.All target, [InAttribute, OutAttribute] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -57749,7 +57749,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBufferPointervQCOM")] public static void ExtGetBufferPointer(OpenTK.Graphics.ES31.All target, [InAttribute, OutAttribute] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -57758,7 +57758,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -57766,7 +57766,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -57775,7 +57775,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] out Int32 buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] out Int32 buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -57784,7 +57784,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -57793,7 +57793,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -57801,7 +57801,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -57810,7 +57810,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] out UInt32 buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] out UInt32 buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -57819,7 +57819,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -57828,7 +57828,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -57836,7 +57836,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -57845,7 +57845,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] out Int32 framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] out Int32 framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -57854,7 +57854,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -57863,7 +57863,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -57871,7 +57871,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -57880,7 +57880,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] out UInt32 framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] out UInt32 framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -57889,7 +57889,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -57898,7 +57898,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32[] length) { throw new NotImplementedException(); } + public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -57907,7 +57907,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute] out String source, [OutAttribute] out Int32 length) { throw new NotImplementedException(); } + public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -57916,7 +57916,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new NotImplementedException(); } + public static unsafe void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -57925,7 +57925,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32[] length) { throw new NotImplementedException(); } + public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -57934,7 +57934,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute] out String source, [OutAttribute] out Int32 length) { throw new NotImplementedException(); } + public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -57943,7 +57943,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new NotImplementedException(); } + public static unsafe void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -57952,7 +57952,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -57960,7 +57960,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -57969,7 +57969,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] out Int32 programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] out Int32 programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -57978,7 +57978,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new NotImplementedException(); } + public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -57987,7 +57987,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -57995,7 +57995,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -58004,7 +58004,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] out UInt32 programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] out UInt32 programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -58013,7 +58013,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new NotImplementedException(); } + public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -58022,7 +58022,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -58030,7 +58030,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -58039,7 +58039,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] out Int32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] out Int32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -58048,7 +58048,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -58057,7 +58057,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -58065,7 +58065,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -58074,7 +58074,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] out UInt32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] out UInt32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -58083,7 +58083,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -58092,7 +58092,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -58100,7 +58100,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -58109,7 +58109,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] out Int32 shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] out Int32 shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -58118,7 +58118,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new NotImplementedException(); } + public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -58127,7 +58127,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -58135,7 +58135,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -58144,7 +58144,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] out UInt32 shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] out UInt32 shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -58153,7 +58153,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new NotImplementedException(); } + public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -58163,7 +58163,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] [CLSCompliant(false)] - public static void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES31.All face, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES31.All face, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -58173,7 +58173,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] [CLSCompliant(false)] - public static void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES31.All face, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES31.All face, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -58183,7 +58183,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES31.All face, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES31.All face, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -58193,7 +58193,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] [CLSCompliant(false)] - public static void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES31.All face, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES31.All face, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -58203,7 +58203,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] [CLSCompliant(false)] - public static void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES31.All face, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES31.All face, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -58213,7 +58213,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES31.All face, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES31.All face, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -58228,7 +58228,7 @@ namespace OpenTK.Graphics.ES31 /// /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] - public static void ExtGetTexSubImage(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [OutAttribute] IntPtr texels) { throw new NotImplementedException(); } + public static void ExtGetTexSubImage(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [OutAttribute] IntPtr texels) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -58246,7 +58246,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ExtGetTexSubImage(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute] T10[] texels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -58264,7 +58264,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ExtGetTexSubImage(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute] T10[,] texels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -58282,7 +58282,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ExtGetTexSubImage(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute] T10[,,] texels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -58299,7 +58299,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] public static void ExtGetTexSubImage(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute] ref T10 texels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -58307,7 +58307,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] [CLSCompliant(false)] - public static void ExtGetTextures([OutAttribute] Int32[] textures, Int32 maxTextures, [OutAttribute] Int32[] numTextures) { throw new NotImplementedException(); } + public static void ExtGetTextures([OutAttribute] Int32[] textures, Int32 maxTextures, [OutAttribute] Int32[] numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -58315,7 +58315,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] [CLSCompliant(false)] - public static void ExtGetTextures([OutAttribute] out Int32 textures, Int32 maxTextures, [OutAttribute] out Int32 numTextures) { throw new NotImplementedException(); } + public static void ExtGetTextures([OutAttribute] out Int32 textures, Int32 maxTextures, [OutAttribute] out Int32 numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -58323,7 +58323,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetTextures([OutAttribute] Int32* textures, Int32 maxTextures, [OutAttribute] Int32* numTextures) { throw new NotImplementedException(); } + public static unsafe void ExtGetTextures([OutAttribute] Int32* textures, Int32 maxTextures, [OutAttribute] Int32* numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -58331,7 +58331,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] [CLSCompliant(false)] - public static void ExtGetTextures([OutAttribute] UInt32[] textures, Int32 maxTextures, [OutAttribute] Int32[] numTextures) { throw new NotImplementedException(); } + public static void ExtGetTextures([OutAttribute] UInt32[] textures, Int32 maxTextures, [OutAttribute] Int32[] numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -58339,7 +58339,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] [CLSCompliant(false)] - public static void ExtGetTextures([OutAttribute] out UInt32 textures, Int32 maxTextures, [OutAttribute] out Int32 numTextures) { throw new NotImplementedException(); } + public static void ExtGetTextures([OutAttribute] out UInt32 textures, Int32 maxTextures, [OutAttribute] out Int32 numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -58347,30 +58347,30 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetTextures([OutAttribute] UInt32* textures, Int32 maxTextures, [OutAttribute] Int32* numTextures) { throw new NotImplementedException(); } + public static unsafe void ExtGetTextures([OutAttribute] UInt32* textures, Int32 maxTextures, [OutAttribute] Int32* numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtIsProgramBinaryQCOM")] [CLSCompliant(false)] - public static bool ExtIsProgramBinary(Int32 program) { throw new NotImplementedException(); } + public static bool ExtIsProgramBinary(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtIsProgramBinaryQCOM")] [CLSCompliant(false)] - public static bool ExtIsProgramBinary(UInt32 program) { throw new NotImplementedException(); } + public static bool ExtIsProgramBinary(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// /// /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtTexObjectStateOverrideiQCOM")] - public static void ExtTexObjectStateOverride(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, Int32 param) { throw new NotImplementedException(); } + public static void ExtTexObjectStateOverride(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_shader_framebuffer_fetch_noncoherent] [AutoGenerated(Category = "QCOM_shader_framebuffer_fetch_noncoherent", Version = "", EntryPoint = "glFramebufferFetchBarrierQCOM")] - public static void FramebufferFetchBarrier() { throw new NotImplementedException(); } + public static void FramebufferFetchBarrier() { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_framebuffer_foveated] /// @@ -58380,7 +58380,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "QCOM_framebuffer_foveated", Version = "", EntryPoint = "glFramebufferFoveationConfigQCOM")] [CLSCompliant(false)] - public static void FramebufferFoveationConfig(Int32 framebuffer, Int32 numLayers, Int32 focalPointsPerLayer, Int32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] out Int32 providedFeatures) { throw new NotImplementedException(); } + public static void FramebufferFoveationConfig(Int32 framebuffer, Int32 numLayers, Int32 focalPointsPerLayer, Int32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] out Int32 providedFeatures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_framebuffer_foveated] /// @@ -58390,7 +58390,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "QCOM_framebuffer_foveated", Version = "", EntryPoint = "glFramebufferFoveationConfigQCOM")] [CLSCompliant(false)] - public static unsafe void FramebufferFoveationConfig(Int32 framebuffer, Int32 numLayers, Int32 focalPointsPerLayer, Int32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] Int32* providedFeatures) { throw new NotImplementedException(); } + public static unsafe void FramebufferFoveationConfig(Int32 framebuffer, Int32 numLayers, Int32 focalPointsPerLayer, Int32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] Int32* providedFeatures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_framebuffer_foveated] /// @@ -58400,7 +58400,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "QCOM_framebuffer_foveated", Version = "", EntryPoint = "glFramebufferFoveationConfigQCOM")] [CLSCompliant(false)] - public static void FramebufferFoveationConfig(UInt32 framebuffer, UInt32 numLayers, UInt32 focalPointsPerLayer, UInt32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] out UInt32 providedFeatures) { throw new NotImplementedException(); } + public static void FramebufferFoveationConfig(UInt32 framebuffer, UInt32 numLayers, UInt32 focalPointsPerLayer, UInt32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] out UInt32 providedFeatures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_framebuffer_foveated] /// @@ -58410,7 +58410,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "QCOM_framebuffer_foveated", Version = "", EntryPoint = "glFramebufferFoveationConfigQCOM")] [CLSCompliant(false)] - public static unsafe void FramebufferFoveationConfig(UInt32 framebuffer, UInt32 numLayers, UInt32 focalPointsPerLayer, UInt32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] UInt32* providedFeatures) { throw new NotImplementedException(); } + public static unsafe void FramebufferFoveationConfig(UInt32 framebuffer, UInt32 numLayers, UInt32 focalPointsPerLayer, UInt32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] UInt32* providedFeatures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_framebuffer_foveated] /// @@ -58423,7 +58423,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "QCOM_framebuffer_foveated", Version = "", EntryPoint = "glFramebufferFoveationParametersQCOM")] [CLSCompliant(false)] - public static void FramebufferFoveationParameters(Int32 framebuffer, Int32 layer, Int32 focalPoint, Single focalX, Single focalY, Single gainX, Single gainY, Single foveaArea) { throw new NotImplementedException(); } + public static void FramebufferFoveationParameters(Int32 framebuffer, Int32 layer, Int32 focalPoint, Single focalX, Single focalY, Single gainX, Single gainY, Single foveaArea) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_framebuffer_foveated] /// @@ -58436,7 +58436,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "QCOM_framebuffer_foveated", Version = "", EntryPoint = "glFramebufferFoveationParametersQCOM")] [CLSCompliant(false)] - public static void FramebufferFoveationParameters(UInt32 framebuffer, UInt32 layer, UInt32 focalPoint, Single focalX, Single focalY, Single gainX, Single gainY, Single foveaArea) { throw new NotImplementedException(); } + public static void FramebufferFoveationParameters(UInt32 framebuffer, UInt32 layer, UInt32 focalPoint, Single focalX, Single focalY, Single gainX, Single gainY, Single foveaArea) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -58444,7 +58444,7 @@ namespace OpenTK.Graphics.ES31 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static void GetDriverControl([OutAttribute] Int32[] num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32[] driverControls) { throw new NotImplementedException(); } + public static void GetDriverControl([OutAttribute] Int32[] num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32[] driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -58452,7 +58452,7 @@ namespace OpenTK.Graphics.ES31 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static void GetDriverControl([OutAttribute] Int32[] num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32[] driverControls) { throw new NotImplementedException(); } + public static void GetDriverControl([OutAttribute] Int32[] num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32[] driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -58460,7 +58460,7 @@ namespace OpenTK.Graphics.ES31 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static void GetDriverControl([OutAttribute] out Int32 num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out Int32 driverControls) { throw new NotImplementedException(); } + public static void GetDriverControl([OutAttribute] out Int32 num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out Int32 driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -58468,7 +58468,7 @@ namespace OpenTK.Graphics.ES31 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static void GetDriverControl([OutAttribute] out Int32 num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out UInt32 driverControls) { throw new NotImplementedException(); } + public static void GetDriverControl([OutAttribute] out Int32 num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out UInt32 driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -58476,7 +58476,7 @@ namespace OpenTK.Graphics.ES31 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static unsafe void GetDriverControl([OutAttribute] Int32* num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32* driverControls) { throw new NotImplementedException(); } + public static unsafe void GetDriverControl([OutAttribute] Int32* num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32* driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -58484,7 +58484,7 @@ namespace OpenTK.Graphics.ES31 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static unsafe void GetDriverControl([OutAttribute] Int32* num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32* driverControls) { throw new NotImplementedException(); } + public static unsafe void GetDriverControl([OutAttribute] Int32* num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32* driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -58493,7 +58493,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -58502,7 +58502,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -58511,7 +58511,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static unsafe void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static unsafe void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -58520,7 +58520,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -58529,7 +58529,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -58538,7 +58538,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static unsafe void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static unsafe void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_tiled_rendering] /// @@ -58548,7 +58548,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glStartTilingQCOM")] [CLSCompliant(false)] - public static void StartTiling(Int32 x, Int32 y, Int32 width, Int32 height, Int32 preserveMask) { throw new NotImplementedException(); } + public static void StartTiling(Int32 x, Int32 y, Int32 width, Int32 height, Int32 preserveMask) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_tiled_rendering] /// @@ -58558,7 +58558,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glStartTilingQCOM")] [CLSCompliant(false)] - public static void StartTiling(UInt32 x, UInt32 y, UInt32 width, UInt32 height, UInt32 preserveMask) { throw new NotImplementedException(); } + public static void StartTiling(UInt32 x, UInt32 y, UInt32 width, UInt32 height, UInt32 preserveMask) { throw new BindingsNotRewrittenException(); } } diff --git a/src/OpenTK/Graphics/OpenGL/GL.cs b/src/OpenTK/Graphics/OpenGL/GL.cs index a45bea32..f7df5c78 100644 --- a/src/OpenTK/Graphics/OpenGL/GL.cs +++ b/src/OpenTK/Graphics/OpenGL/GL.cs @@ -5951,13 +5951,13 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "3DFX_tbuffer", Version = "", EntryPoint = "glTbufferMask3DFX")] [CLSCompliant(false)] - public static void TbufferMask(Int32 mask) { throw new NotImplementedException(); } + public static void TbufferMask(Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: 3DFX_tbuffer] /// [AutoGenerated(Category = "3DFX_tbuffer", Version = "", EntryPoint = "glTbufferMask3DFX")] [CLSCompliant(false)] - public static void TbufferMask(UInt32 mask) { throw new NotImplementedException(); } + public static void TbufferMask(UInt32 mask) { throw new BindingsNotRewrittenException(); } } @@ -5967,27 +5967,27 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glBeginPerfMonitorAMD")] [CLSCompliant(false)] - public static void BeginPerfMonitor(Int32 monitor) { throw new NotImplementedException(); } + public static void BeginPerfMonitor(Int32 monitor) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glBeginPerfMonitorAMD")] [CLSCompliant(false)] - public static void BeginPerfMonitor(UInt32 monitor) { throw new NotImplementedException(); } + public static void BeginPerfMonitor(UInt32 monitor) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_draw_buffers_blend] /// /// [AutoGenerated(Category = "AMD_draw_buffers_blend", Version = "", EntryPoint = "glBlendEquationIndexedAMD")] [CLSCompliant(false)] - public static void BlendEquationIndexed(Int32 buf, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend mode) { throw new NotImplementedException(); } + public static void BlendEquationIndexed(Int32 buf, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend mode) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_draw_buffers_blend] /// /// [AutoGenerated(Category = "AMD_draw_buffers_blend", Version = "", EntryPoint = "glBlendEquationIndexedAMD")] [CLSCompliant(false)] - public static void BlendEquationIndexed(UInt32 buf, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend mode) { throw new NotImplementedException(); } + public static void BlendEquationIndexed(UInt32 buf, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend mode) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_draw_buffers_blend] /// @@ -5995,7 +5995,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_draw_buffers_blend", Version = "", EntryPoint = "glBlendEquationSeparateIndexedAMD")] [CLSCompliant(false)] - public static void BlendEquationSeparateIndexed(Int32 buf, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend modeRGB, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparateIndexed(Int32 buf, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend modeRGB, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_draw_buffers_blend] /// @@ -6003,7 +6003,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_draw_buffers_blend", Version = "", EntryPoint = "glBlendEquationSeparateIndexedAMD")] [CLSCompliant(false)] - public static void BlendEquationSeparateIndexed(UInt32 buf, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend modeRGB, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparateIndexed(UInt32 buf, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend modeRGB, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_draw_buffers_blend] /// @@ -6011,7 +6011,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_draw_buffers_blend", Version = "", EntryPoint = "glBlendFuncIndexedAMD")] [CLSCompliant(false)] - public static void BlendFuncIndexed(Int32 buf, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend src, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend dst) { throw new NotImplementedException(); } + public static void BlendFuncIndexed(Int32 buf, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend src, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend dst) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_draw_buffers_blend] /// @@ -6019,7 +6019,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_draw_buffers_blend", Version = "", EntryPoint = "glBlendFuncIndexedAMD")] [CLSCompliant(false)] - public static void BlendFuncIndexed(UInt32 buf, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend src, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend dst) { throw new NotImplementedException(); } + public static void BlendFuncIndexed(UInt32 buf, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend src, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend dst) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_draw_buffers_blend] /// @@ -6029,7 +6029,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_draw_buffers_blend", Version = "", EntryPoint = "glBlendFuncSeparateIndexedAMD")] [CLSCompliant(false)] - public static void BlendFuncSeparateIndexed(Int32 buf, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend srcRGB, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend dstRGB, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend srcAlpha, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparateIndexed(Int32 buf, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend srcRGB, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend dstRGB, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend srcAlpha, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_draw_buffers_blend] /// @@ -6039,7 +6039,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_draw_buffers_blend", Version = "", EntryPoint = "glBlendFuncSeparateIndexedAMD")] [CLSCompliant(false)] - public static void BlendFuncSeparateIndexed(UInt32 buf, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend srcRGB, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend dstRGB, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend srcAlpha, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparateIndexed(UInt32 buf, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend srcRGB, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend dstRGB, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend srcAlpha, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// Specify a callback to receive debugging messages from the GL @@ -6051,7 +6051,7 @@ namespace OpenTK.Graphics.OpenGL /// A user supplied pointer that will be passed on each invocation of callback. /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glDebugMessageCallbackAMD")] - public static void DebugMessageCallback(DebugProcAmd callback, [OutAttribute] IntPtr userParam) { throw new NotImplementedException(); } + public static void DebugMessageCallback(DebugProcAmd callback, [OutAttribute] IntPtr userParam) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// Specify a callback to receive debugging messages from the GL @@ -6066,7 +6066,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcAmd callback, [InAttribute, OutAttribute] T1[] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// Specify a callback to receive debugging messages from the GL @@ -6081,7 +6081,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcAmd callback, [InAttribute, OutAttribute] T1[,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// Specify a callback to receive debugging messages from the GL @@ -6096,7 +6096,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcAmd callback, [InAttribute, OutAttribute] T1[,,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// Specify a callback to receive debugging messages from the GL @@ -6110,7 +6110,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glDebugMessageCallbackAMD")] public static void DebugMessageCallback(DebugProcAmd callback, [InAttribute, OutAttribute] ref T1 userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// @@ -6120,7 +6120,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glDebugMessageEnableAMD")] [CLSCompliant(false)] - public static void DebugMessageEnable(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.AmdDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageEnable(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.AmdDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// @@ -6130,7 +6130,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glDebugMessageEnableAMD")] [CLSCompliant(false)] - public static void DebugMessageEnable(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.AmdDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageEnable(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.AmdDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// @@ -6140,7 +6140,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glDebugMessageEnableAMD")] [CLSCompliant(false)] - public static unsafe void DebugMessageEnable(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.AmdDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageEnable(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.AmdDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// @@ -6150,7 +6150,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glDebugMessageEnableAMD")] [CLSCompliant(false)] - public static void DebugMessageEnable(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.AmdDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageEnable(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.AmdDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// @@ -6160,7 +6160,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glDebugMessageEnableAMD")] [CLSCompliant(false)] - public static void DebugMessageEnable(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.AmdDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageEnable(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.AmdDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// @@ -6170,7 +6170,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glDebugMessageEnableAMD")] [CLSCompliant(false)] - public static unsafe void DebugMessageEnable(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.AmdDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageEnable(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.AmdDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// Inject an application-supplied message into the debug message queue @@ -6192,7 +6192,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glDebugMessageInsertAMD")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.AmdDebugOutput severity, Int32 id, Int32 length, [CountAttribute(Parameter = "length")] String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.AmdDebugOutput severity, Int32 id, Int32 length, [CountAttribute(Parameter = "length")] String buf) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// Inject an application-supplied message into the debug message queue @@ -6214,7 +6214,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glDebugMessageInsertAMD")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.AmdDebugOutput severity, UInt32 id, Int32 length, [CountAttribute(Parameter = "length")] String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.AmdDebugOutput severity, UInt32 id, Int32 length, [CountAttribute(Parameter = "length")] String buf) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_name_gen_delete] /// @@ -6222,7 +6222,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: num] [AutoGenerated(Category = "AMD_name_gen_delete", Version = "", EntryPoint = "glDeleteNamesAMD")] [CLSCompliant(false)] - public static void DeleteNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, Int32 num, [CountAttribute(Parameter = "num")] Int32[] names) { throw new NotImplementedException(); } + public static void DeleteNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, Int32 num, [CountAttribute(Parameter = "num")] Int32[] names) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_name_gen_delete] /// @@ -6230,7 +6230,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: num] [AutoGenerated(Category = "AMD_name_gen_delete", Version = "", EntryPoint = "glDeleteNamesAMD")] [CLSCompliant(false)] - public static void DeleteNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, Int32 num, [CountAttribute(Parameter = "num")] ref Int32 names) { throw new NotImplementedException(); } + public static void DeleteNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, Int32 num, [CountAttribute(Parameter = "num")] ref Int32 names) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_name_gen_delete] /// @@ -6238,7 +6238,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: num] [AutoGenerated(Category = "AMD_name_gen_delete", Version = "", EntryPoint = "glDeleteNamesAMD")] [CLSCompliant(false)] - public static unsafe void DeleteNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, Int32 num, [CountAttribute(Parameter = "num")] Int32* names) { throw new NotImplementedException(); } + public static unsafe void DeleteNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, Int32 num, [CountAttribute(Parameter = "num")] Int32* names) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_name_gen_delete] /// @@ -6246,7 +6246,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: num] [AutoGenerated(Category = "AMD_name_gen_delete", Version = "", EntryPoint = "glDeleteNamesAMD")] [CLSCompliant(false)] - public static void DeleteNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, UInt32 num, [CountAttribute(Parameter = "num")] UInt32[] names) { throw new NotImplementedException(); } + public static void DeleteNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, UInt32 num, [CountAttribute(Parameter = "num")] UInt32[] names) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_name_gen_delete] /// @@ -6254,7 +6254,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: num] [AutoGenerated(Category = "AMD_name_gen_delete", Version = "", EntryPoint = "glDeleteNamesAMD")] [CLSCompliant(false)] - public static void DeleteNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, UInt32 num, [CountAttribute(Parameter = "num")] ref UInt32 names) { throw new NotImplementedException(); } + public static void DeleteNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, UInt32 num, [CountAttribute(Parameter = "num")] ref UInt32 names) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_name_gen_delete] /// @@ -6262,73 +6262,73 @@ namespace OpenTK.Graphics.OpenGL /// [length: num] [AutoGenerated(Category = "AMD_name_gen_delete", Version = "", EntryPoint = "glDeleteNamesAMD")] [CLSCompliant(false)] - public static unsafe void DeleteNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, UInt32 num, [CountAttribute(Parameter = "num")] UInt32* names) { throw new NotImplementedException(); } + public static unsafe void DeleteNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, UInt32 num, [CountAttribute(Parameter = "num")] UInt32* names) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitor([CountAttribute(Parameter = "n")] Int32 monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitor([CountAttribute(Parameter = "n")] Int32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitor([CountAttribute(Parameter = "n")] UInt32 monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitor([CountAttribute(Parameter = "n")] UInt32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] Int32[] monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] Int32[] monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static unsafe void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] Int32* monitors) { throw new NotImplementedException(); } + public static unsafe void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] Int32* monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static unsafe void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] UInt32* monitors) { throw new NotImplementedException(); } + public static unsafe void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] UInt32* monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glEndPerfMonitorAMD")] [CLSCompliant(false)] - public static void EndPerfMonitor(Int32 monitor) { throw new NotImplementedException(); } + public static void EndPerfMonitor(Int32 monitor) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glEndPerfMonitorAMD")] [CLSCompliant(false)] - public static void EndPerfMonitor(UInt32 monitor) { throw new NotImplementedException(); } + public static void EndPerfMonitor(UInt32 monitor) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -6337,7 +6337,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glFramebufferSamplePositionsfvAMD")] [CLSCompliant(false)] - public static void FramebufferSamplePositions(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, Int32 numsamples, Int32 pixelindex, Single[] values) { throw new NotImplementedException(); } + public static void FramebufferSamplePositions(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, Int32 numsamples, Int32 pixelindex, Single[] values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -6346,7 +6346,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glFramebufferSamplePositionsfvAMD")] [CLSCompliant(false)] - public static void FramebufferSamplePositions(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, Int32 numsamples, Int32 pixelindex, ref Single values) { throw new NotImplementedException(); } + public static void FramebufferSamplePositions(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, Int32 numsamples, Int32 pixelindex, ref Single values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -6355,7 +6355,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glFramebufferSamplePositionsfvAMD")] [CLSCompliant(false)] - public static unsafe void FramebufferSamplePositions(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, Int32 numsamples, Int32 pixelindex, Single* values) { throw new NotImplementedException(); } + public static unsafe void FramebufferSamplePositions(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, Int32 numsamples, Int32 pixelindex, Single* values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -6364,7 +6364,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glFramebufferSamplePositionsfvAMD")] [CLSCompliant(false)] - public static void FramebufferSamplePositions(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, UInt32 numsamples, UInt32 pixelindex, Single[] values) { throw new NotImplementedException(); } + public static void FramebufferSamplePositions(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, UInt32 numsamples, UInt32 pixelindex, Single[] values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -6373,7 +6373,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glFramebufferSamplePositionsfvAMD")] [CLSCompliant(false)] - public static void FramebufferSamplePositions(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, UInt32 numsamples, UInt32 pixelindex, ref Single values) { throw new NotImplementedException(); } + public static void FramebufferSamplePositions(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, UInt32 numsamples, UInt32 pixelindex, ref Single values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -6382,7 +6382,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glFramebufferSamplePositionsfvAMD")] [CLSCompliant(false)] - public static unsafe void FramebufferSamplePositions(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, UInt32 numsamples, UInt32 pixelindex, Single* values) { throw new NotImplementedException(); } + public static unsafe void FramebufferSamplePositions(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, UInt32 numsamples, UInt32 pixelindex, Single* values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_name_gen_delete] /// @@ -6390,7 +6390,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: num] [AutoGenerated(Category = "AMD_name_gen_delete", Version = "", EntryPoint = "glGenNamesAMD")] [CLSCompliant(false)] - public static void GenNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, Int32 num, [OutAttribute, CountAttribute(Parameter = "num")] Int32[] names) { throw new NotImplementedException(); } + public static void GenNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, Int32 num, [OutAttribute, CountAttribute(Parameter = "num")] Int32[] names) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_name_gen_delete] /// @@ -6398,7 +6398,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: num] [AutoGenerated(Category = "AMD_name_gen_delete", Version = "", EntryPoint = "glGenNamesAMD")] [CLSCompliant(false)] - public static void GenNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, Int32 num, [OutAttribute, CountAttribute(Parameter = "num")] out Int32 names) { throw new NotImplementedException(); } + public static void GenNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, Int32 num, [OutAttribute, CountAttribute(Parameter = "num")] out Int32 names) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_name_gen_delete] /// @@ -6406,7 +6406,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: num] [AutoGenerated(Category = "AMD_name_gen_delete", Version = "", EntryPoint = "glGenNamesAMD")] [CLSCompliant(false)] - public static unsafe void GenNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, Int32 num, [OutAttribute, CountAttribute(Parameter = "num")] Int32* names) { throw new NotImplementedException(); } + public static unsafe void GenNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, Int32 num, [OutAttribute, CountAttribute(Parameter = "num")] Int32* names) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_name_gen_delete] /// @@ -6414,7 +6414,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: num] [AutoGenerated(Category = "AMD_name_gen_delete", Version = "", EntryPoint = "glGenNamesAMD")] [CLSCompliant(false)] - public static void GenNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, UInt32 num, [OutAttribute, CountAttribute(Parameter = "num")] UInt32[] names) { throw new NotImplementedException(); } + public static void GenNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, UInt32 num, [OutAttribute, CountAttribute(Parameter = "num")] UInt32[] names) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_name_gen_delete] /// @@ -6422,7 +6422,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: num] [AutoGenerated(Category = "AMD_name_gen_delete", Version = "", EntryPoint = "glGenNamesAMD")] [CLSCompliant(false)] - public static void GenNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, UInt32 num, [OutAttribute, CountAttribute(Parameter = "num")] out UInt32 names) { throw new NotImplementedException(); } + public static void GenNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, UInt32 num, [OutAttribute, CountAttribute(Parameter = "num")] out UInt32 names) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_name_gen_delete] /// @@ -6430,54 +6430,54 @@ namespace OpenTK.Graphics.OpenGL /// [length: num] [AutoGenerated(Category = "AMD_name_gen_delete", Version = "", EntryPoint = "glGenNamesAMD")] [CLSCompliant(false)] - public static unsafe void GenNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, UInt32 num, [OutAttribute, CountAttribute(Parameter = "num")] UInt32* names) { throw new NotImplementedException(); } + public static unsafe void GenNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, UInt32 num, [OutAttribute, CountAttribute(Parameter = "num")] UInt32* names) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static Int32 GenPerfMonitor() { throw new NotImplementedException(); } + public static Int32 GenPerfMonitor() { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] monitors) { throw new NotImplementedException(); } + public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 monitors) { throw new NotImplementedException(); } + public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* monitors) { throw new NotImplementedException(); } + public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] monitors) { throw new NotImplementedException(); } + public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 monitors) { throw new NotImplementedException(); } + public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* monitors) { throw new NotImplementedException(); } + public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// Retrieve messages from the debug message log @@ -6505,7 +6505,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogAMD")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufsize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.AmdDebugOutput[] categories, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String message) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufsize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.AmdDebugOutput[] categories, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String message) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// Retrieve messages from the debug message log @@ -6533,7 +6533,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogAMD")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufsize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.AmdDebugOutput categories, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String message) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufsize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.AmdDebugOutput categories, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String message) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// Retrieve messages from the debug message log @@ -6561,7 +6561,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogAMD")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufsize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.AmdDebugOutput* categories, [OutAttribute, CountAttribute(Parameter = "count")] Int32* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String message) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufsize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.AmdDebugOutput* categories, [OutAttribute, CountAttribute(Parameter = "count")] Int32* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String message) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// Retrieve messages from the debug message log @@ -6589,7 +6589,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogAMD")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufsize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.AmdDebugOutput[] categories, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] severities, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String message) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufsize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.AmdDebugOutput[] categories, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] severities, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String message) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// Retrieve messages from the debug message log @@ -6617,7 +6617,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogAMD")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufsize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.AmdDebugOutput categories, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 severities, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String message) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufsize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.AmdDebugOutput categories, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 severities, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String message) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// Retrieve messages from the debug message log @@ -6645,7 +6645,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogAMD")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufsize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.AmdDebugOutput* categories, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* severities, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String message) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufsize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.AmdDebugOutput* categories, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* severities, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String message) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// Retrieve a named parameter from a framebuffer @@ -6664,7 +6664,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glGetFramebufferParameterfvAMD")] [CLSCompliant(false)] - public static void GetFramebufferParameter(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, Int32 numsamples, Int32 pixelindex, Int32 size, [OutAttribute] Single[] values) { throw new NotImplementedException(); } + public static void GetFramebufferParameter(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, Int32 numsamples, Int32 pixelindex, Int32 size, [OutAttribute] Single[] values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// Retrieve a named parameter from a framebuffer @@ -6683,7 +6683,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glGetFramebufferParameterfvAMD")] [CLSCompliant(false)] - public static void GetFramebufferParameter(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, Int32 numsamples, Int32 pixelindex, Int32 size, [OutAttribute] out Single values) { throw new NotImplementedException(); } + public static void GetFramebufferParameter(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, Int32 numsamples, Int32 pixelindex, Int32 size, [OutAttribute] out Single values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// Retrieve a named parameter from a framebuffer @@ -6702,7 +6702,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glGetFramebufferParameterfvAMD")] [CLSCompliant(false)] - public static unsafe void GetFramebufferParameter(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, Int32 numsamples, Int32 pixelindex, Int32 size, [OutAttribute] Single* values) { throw new NotImplementedException(); } + public static unsafe void GetFramebufferParameter(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, Int32 numsamples, Int32 pixelindex, Int32 size, [OutAttribute] Single* values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// Retrieve a named parameter from a framebuffer @@ -6721,7 +6721,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glGetFramebufferParameterfvAMD")] [CLSCompliant(false)] - public static void GetFramebufferParameter(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, UInt32 numsamples, UInt32 pixelindex, Int32 size, [OutAttribute] Single[] values) { throw new NotImplementedException(); } + public static void GetFramebufferParameter(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, UInt32 numsamples, UInt32 pixelindex, Int32 size, [OutAttribute] Single[] values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// Retrieve a named parameter from a framebuffer @@ -6740,7 +6740,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glGetFramebufferParameterfvAMD")] [CLSCompliant(false)] - public static void GetFramebufferParameter(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, UInt32 numsamples, UInt32 pixelindex, Int32 size, [OutAttribute] out Single values) { throw new NotImplementedException(); } + public static void GetFramebufferParameter(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, UInt32 numsamples, UInt32 pixelindex, Int32 size, [OutAttribute] out Single values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// Retrieve a named parameter from a framebuffer @@ -6759,7 +6759,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glGetFramebufferParameterfvAMD")] [CLSCompliant(false)] - public static unsafe void GetFramebufferParameter(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, UInt32 numsamples, UInt32 pixelindex, Int32 size, [OutAttribute] Single* values) { throw new NotImplementedException(); } + public static unsafe void GetFramebufferParameter(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, UInt32 numsamples, UInt32 pixelindex, Int32 size, [OutAttribute] Single* values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -6770,7 +6770,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glGetNamedFramebufferParameterfvAMD")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, Int32 numsamples, Int32 pixelindex, Int32 size, [OutAttribute] Single[] values) { throw new NotImplementedException(); } + public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, Int32 numsamples, Int32 pixelindex, Int32 size, [OutAttribute] Single[] values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -6781,7 +6781,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glGetNamedFramebufferParameterfvAMD")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, Int32 numsamples, Int32 pixelindex, Int32 size, [OutAttribute] out Single values) { throw new NotImplementedException(); } + public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, Int32 numsamples, Int32 pixelindex, Int32 size, [OutAttribute] out Single values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -6792,7 +6792,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glGetNamedFramebufferParameterfvAMD")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, Int32 numsamples, Int32 pixelindex, Int32 size, [OutAttribute] Single* values) { throw new NotImplementedException(); } + public static unsafe void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, Int32 numsamples, Int32 pixelindex, Int32 size, [OutAttribute] Single* values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -6803,7 +6803,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glGetNamedFramebufferParameterfvAMD")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, UInt32 numsamples, UInt32 pixelindex, Int32 size, [OutAttribute] Single[] values) { throw new NotImplementedException(); } + public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, UInt32 numsamples, UInt32 pixelindex, Int32 size, [OutAttribute] Single[] values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -6814,7 +6814,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glGetNamedFramebufferParameterfvAMD")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, UInt32 numsamples, UInt32 pixelindex, Int32 size, [OutAttribute] out Single values) { throw new NotImplementedException(); } + public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, UInt32 numsamples, UInt32 pixelindex, Int32 size, [OutAttribute] out Single values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -6825,7 +6825,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glGetNamedFramebufferParameterfvAMD")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, UInt32 numsamples, UInt32 pixelindex, Int32 size, [OutAttribute] Single* values) { throw new NotImplementedException(); } + public static unsafe void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, UInt32 numsamples, UInt32 pixelindex, Int32 size, [OutAttribute] Single* values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -6835,7 +6835,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] Int32[] data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] Int32[] data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -6845,7 +6845,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] out Int32 data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] out Int32 data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -6855,7 +6855,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] Int32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] Int32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -6865,7 +6865,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32[] data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32[] data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -6875,7 +6875,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] out UInt32 data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] out UInt32 data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -6885,7 +6885,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -6894,7 +6894,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -6905,7 +6905,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -6916,7 +6916,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -6927,7 +6927,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -6938,7 +6938,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -6947,7 +6947,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -6958,7 +6958,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -6969,7 +6969,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -6980,7 +6980,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -6991,7 +6991,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -7001,7 +7001,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] Int32[] counters) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] Int32[] counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -7011,7 +7011,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] out Int32 counters) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] out Int32 counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -7021,7 +7021,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] Int32* counters) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] Int32* counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -7031,7 +7031,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32[] counters) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32[] counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -7041,7 +7041,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] out UInt32 counters) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] out UInt32 counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -7051,7 +7051,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32* counters) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32* counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -7061,7 +7061,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -7071,7 +7071,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -7081,7 +7081,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -7091,7 +7091,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -7099,7 +7099,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] Int32[] groups) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] Int32[] groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -7107,7 +7107,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] out Int32 groups) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] out Int32 groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -7115,7 +7115,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32[] groups) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32[] groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -7123,7 +7123,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] out UInt32 groups) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] out UInt32 groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -7131,7 +7131,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] Int32* groups) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] Int32* groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -7139,7 +7139,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32* groups) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32* groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -7148,7 +7148,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -7157,7 +7157,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -7166,7 +7166,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -7175,21 +7175,21 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_name_gen_delete] /// /// [AutoGenerated(Category = "AMD_name_gen_delete", Version = "", EntryPoint = "glIsNameAMD")] [CLSCompliant(false)] - public static bool IsName(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, Int32 name) { throw new NotImplementedException(); } + public static bool IsName(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, Int32 name) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_name_gen_delete] /// /// [AutoGenerated(Category = "AMD_name_gen_delete", Version = "", EntryPoint = "glIsNameAMD")] [CLSCompliant(false)] - public static bool IsName(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, UInt32 name) { throw new NotImplementedException(); } + public static bool IsName(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, UInt32 name) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -7207,7 +7207,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the distance in basic machine units between elements of the draw parameter array. /// [AutoGenerated(Category = "AMD_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectAMD")] - public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, IntPtr indirect, Int32 primcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, IntPtr indirect, Int32 primcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -7228,7 +7228,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[] indirect, Int32 primcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -7249,7 +7249,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[,] indirect, Int32 primcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -7270,7 +7270,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[,,] indirect, Int32 primcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -7290,7 +7290,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "AMD_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectAMD")] public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] ref T1 indirect, Int32 primcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -7311,7 +7311,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the distance in basic machine units between elements of the draw parameter array. /// [AutoGenerated(Category = "AMD_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectAMD")] - public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect type, IntPtr indirect, Int32 primcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect type, IntPtr indirect, Int32 primcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -7335,7 +7335,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect type, [InAttribute, OutAttribute] T2[] indirect, Int32 primcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -7359,7 +7359,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect type, [InAttribute, OutAttribute] T2[,] indirect, Int32 primcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -7383,7 +7383,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect type, [InAttribute, OutAttribute] T2[,,] indirect, Int32 primcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -7406,7 +7406,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "AMD_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectAMD")] public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect type, [InAttribute, OutAttribute] ref T2 indirect, Int32 primcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -7415,7 +7415,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glNamedFramebufferSamplePositionsfvAMD")] [CLSCompliant(false)] - public static void NamedFramebufferSamplePositions(Int32 framebuffer, Int32 numsamples, Int32 pixelindex, Single[] values) { throw new NotImplementedException(); } + public static void NamedFramebufferSamplePositions(Int32 framebuffer, Int32 numsamples, Int32 pixelindex, Single[] values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -7424,7 +7424,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glNamedFramebufferSamplePositionsfvAMD")] [CLSCompliant(false)] - public static void NamedFramebufferSamplePositions(Int32 framebuffer, Int32 numsamples, Int32 pixelindex, ref Single values) { throw new NotImplementedException(); } + public static void NamedFramebufferSamplePositions(Int32 framebuffer, Int32 numsamples, Int32 pixelindex, ref Single values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -7433,7 +7433,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glNamedFramebufferSamplePositionsfvAMD")] [CLSCompliant(false)] - public static unsafe void NamedFramebufferSamplePositions(Int32 framebuffer, Int32 numsamples, Int32 pixelindex, Single* values) { throw new NotImplementedException(); } + public static unsafe void NamedFramebufferSamplePositions(Int32 framebuffer, Int32 numsamples, Int32 pixelindex, Single* values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -7442,7 +7442,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glNamedFramebufferSamplePositionsfvAMD")] [CLSCompliant(false)] - public static void NamedFramebufferSamplePositions(UInt32 framebuffer, UInt32 numsamples, UInt32 pixelindex, Single[] values) { throw new NotImplementedException(); } + public static void NamedFramebufferSamplePositions(UInt32 framebuffer, UInt32 numsamples, UInt32 pixelindex, Single[] values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -7451,7 +7451,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glNamedFramebufferSamplePositionsfvAMD")] [CLSCompliant(false)] - public static void NamedFramebufferSamplePositions(UInt32 framebuffer, UInt32 numsamples, UInt32 pixelindex, ref Single values) { throw new NotImplementedException(); } + public static void NamedFramebufferSamplePositions(UInt32 framebuffer, UInt32 numsamples, UInt32 pixelindex, ref Single values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -7460,7 +7460,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glNamedFramebufferSamplePositionsfvAMD")] [CLSCompliant(false)] - public static unsafe void NamedFramebufferSamplePositions(UInt32 framebuffer, UInt32 numsamples, UInt32 pixelindex, Single* values) { throw new NotImplementedException(); } + public static unsafe void NamedFramebufferSamplePositions(UInt32 framebuffer, UInt32 numsamples, UInt32 pixelindex, Single* values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_occlusion_query_event] /// @@ -7469,7 +7469,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_occlusion_query_event", Version = "", EntryPoint = "glQueryObjectParameteruiAMD")] [CLSCompliant(false)] - public static void QueryObjectParameter(OpenTK.Graphics.OpenGL.AmdOcclusionQueryEvent target, Int32 id, OpenTK.Graphics.OpenGL.AmdOcclusionQueryEvent pname, OpenTK.Graphics.OpenGL.OcclusionQueryEventMaskAmd param) { throw new NotImplementedException(); } + public static void QueryObjectParameter(OpenTK.Graphics.OpenGL.AmdOcclusionQueryEvent target, Int32 id, OpenTK.Graphics.OpenGL.AmdOcclusionQueryEvent pname, OpenTK.Graphics.OpenGL.OcclusionQueryEventMaskAmd param) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_occlusion_query_event] /// @@ -7478,7 +7478,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_occlusion_query_event", Version = "", EntryPoint = "glQueryObjectParameteruiAMD")] [CLSCompliant(false)] - public static void QueryObjectParameter(OpenTK.Graphics.OpenGL.AmdOcclusionQueryEvent target, UInt32 id, OpenTK.Graphics.OpenGL.AmdOcclusionQueryEvent pname, OpenTK.Graphics.OpenGL.OcclusionQueryEventMaskAmd param) { throw new NotImplementedException(); } + public static void QueryObjectParameter(OpenTK.Graphics.OpenGL.AmdOcclusionQueryEvent target, UInt32 id, OpenTK.Graphics.OpenGL.AmdOcclusionQueryEvent pname, OpenTK.Graphics.OpenGL.OcclusionQueryEventMaskAmd param) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -7488,7 +7488,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] Int32[] counterList) { throw new NotImplementedException(); } + public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] Int32[] counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -7498,7 +7498,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] out Int32 counterList) { throw new NotImplementedException(); } + public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] out Int32 counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -7508,7 +7508,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static unsafe void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] Int32* counterList) { throw new NotImplementedException(); } + public static unsafe void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] Int32* counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -7518,7 +7518,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32[] counterList) { throw new NotImplementedException(); } + public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32[] counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -7528,7 +7528,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] out UInt32 counterList) { throw new NotImplementedException(); } + public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] out UInt32 counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -7538,7 +7538,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static unsafe void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32* counterList) { throw new NotImplementedException(); } + public static unsafe void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32* counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_sample_positions] /// @@ -7546,7 +7546,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 2] [AutoGenerated(Category = "AMD_sample_positions", Version = "", EntryPoint = "glSetMultisamplefvAMD")] [CLSCompliant(false)] - public static void SetMultisample(OpenTK.Graphics.OpenGL.AmdSamplePositions pname, Int32 index, [CountAttribute(Count = 2)] Single[] val) { throw new NotImplementedException(); } + public static void SetMultisample(OpenTK.Graphics.OpenGL.AmdSamplePositions pname, Int32 index, [CountAttribute(Count = 2)] Single[] val) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_sample_positions] /// @@ -7554,7 +7554,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 2] [AutoGenerated(Category = "AMD_sample_positions", Version = "", EntryPoint = "glSetMultisamplefvAMD")] [CLSCompliant(false)] - public static void SetMultisample(OpenTK.Graphics.OpenGL.AmdSamplePositions pname, Int32 index, [CountAttribute(Count = 2)] ref Single val) { throw new NotImplementedException(); } + public static void SetMultisample(OpenTK.Graphics.OpenGL.AmdSamplePositions pname, Int32 index, [CountAttribute(Count = 2)] ref Single val) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_sample_positions] /// @@ -7562,7 +7562,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 2] [AutoGenerated(Category = "AMD_sample_positions", Version = "", EntryPoint = "glSetMultisamplefvAMD")] [CLSCompliant(false)] - public static unsafe void SetMultisample(OpenTK.Graphics.OpenGL.AmdSamplePositions pname, Int32 index, [CountAttribute(Count = 2)] Single* val) { throw new NotImplementedException(); } + public static unsafe void SetMultisample(OpenTK.Graphics.OpenGL.AmdSamplePositions pname, Int32 index, [CountAttribute(Count = 2)] Single* val) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_sample_positions] /// @@ -7570,7 +7570,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 2] [AutoGenerated(Category = "AMD_sample_positions", Version = "", EntryPoint = "glSetMultisamplefvAMD")] [CLSCompliant(false)] - public static void SetMultisample(OpenTK.Graphics.OpenGL.AmdSamplePositions pname, UInt32 index, [CountAttribute(Count = 2)] Single[] val) { throw new NotImplementedException(); } + public static void SetMultisample(OpenTK.Graphics.OpenGL.AmdSamplePositions pname, UInt32 index, [CountAttribute(Count = 2)] Single[] val) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_sample_positions] /// @@ -7578,7 +7578,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 2] [AutoGenerated(Category = "AMD_sample_positions", Version = "", EntryPoint = "glSetMultisamplefvAMD")] [CLSCompliant(false)] - public static void SetMultisample(OpenTK.Graphics.OpenGL.AmdSamplePositions pname, UInt32 index, [CountAttribute(Count = 2)] ref Single val) { throw new NotImplementedException(); } + public static void SetMultisample(OpenTK.Graphics.OpenGL.AmdSamplePositions pname, UInt32 index, [CountAttribute(Count = 2)] ref Single val) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_sample_positions] /// @@ -7586,37 +7586,37 @@ namespace OpenTK.Graphics.OpenGL /// [length: 2] [AutoGenerated(Category = "AMD_sample_positions", Version = "", EntryPoint = "glSetMultisamplefvAMD")] [CLSCompliant(false)] - public static unsafe void SetMultisample(OpenTK.Graphics.OpenGL.AmdSamplePositions pname, UInt32 index, [CountAttribute(Count = 2)] Single* val) { throw new NotImplementedException(); } + public static unsafe void SetMultisample(OpenTK.Graphics.OpenGL.AmdSamplePositions pname, UInt32 index, [CountAttribute(Count = 2)] Single* val) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_stencil_operation_extended] /// /// [AutoGenerated(Category = "AMD_stencil_operation_extended", Version = "", EntryPoint = "glStencilOpValueAMD")] [CLSCompliant(false)] - public static void StencilOpValue(OpenTK.Graphics.OpenGL.StencilFaceDirection face, Int32 value) { throw new NotImplementedException(); } + public static void StencilOpValue(OpenTK.Graphics.OpenGL.StencilFaceDirection face, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_stencil_operation_extended] /// /// [AutoGenerated(Category = "AMD_stencil_operation_extended", Version = "", EntryPoint = "glStencilOpValueAMD")] [CLSCompliant(false)] - public static void StencilOpValue(OpenTK.Graphics.OpenGL.StencilFaceDirection face, UInt32 value) { throw new NotImplementedException(); } + public static void StencilOpValue(OpenTK.Graphics.OpenGL.StencilFaceDirection face, UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_vertex_shader_tessellator] /// [AutoGenerated(Category = "AMD_vertex_shader_tessellator", Version = "", EntryPoint = "glTessellationFactorAMD")] - public static void TessellationFactor(Single factor) { throw new NotImplementedException(); } + public static void TessellationFactor(Single factor) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_vertex_shader_tessellator] /// [Obsolete("Use AmdVertexShaderTessellator overload instead")] [AutoGenerated(Category = "AMD_vertex_shader_tessellator", Version = "", EntryPoint = "glTessellationModeAMD")] - public static void TessellationMode(OpenTK.Graphics.OpenGL.AmdVertexShaderTesselator mode) { throw new NotImplementedException(); } + public static void TessellationMode(OpenTK.Graphics.OpenGL.AmdVertexShaderTesselator mode) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_vertex_shader_tessellator] /// [AutoGenerated(Category = "AMD_vertex_shader_tessellator", Version = "", EntryPoint = "glTessellationModeAMD")] - public static void TessellationMode(OpenTK.Graphics.OpenGL.AmdVertexShaderTessellator mode) { throw new NotImplementedException(); } + public static void TessellationMode(OpenTK.Graphics.OpenGL.AmdVertexShaderTessellator mode) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_sparse_texture] /// @@ -7628,7 +7628,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_sparse_texture", Version = "", EntryPoint = "glTexStorageSparseAMD")] [CLSCompliant(false)] - public static void TexStorageSparse(OpenTK.Graphics.OpenGL.AmdSparseTexture target, OpenTK.Graphics.OpenGL.AmdSparseTexture internalFormat, Int32 width, Int32 height, Int32 depth, Int32 layers, Int32 flags) { throw new NotImplementedException(); } + public static void TexStorageSparse(OpenTK.Graphics.OpenGL.AmdSparseTexture target, OpenTK.Graphics.OpenGL.AmdSparseTexture internalFormat, Int32 width, Int32 height, Int32 depth, Int32 layers, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_sparse_texture] /// @@ -7640,7 +7640,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_sparse_texture", Version = "", EntryPoint = "glTexStorageSparseAMD")] [CLSCompliant(false)] - public static void TexStorageSparse(OpenTK.Graphics.OpenGL.AmdSparseTexture target, OpenTK.Graphics.OpenGL.AmdSparseTexture internalFormat, Int32 width, Int32 height, Int32 depth, Int32 layers, UInt32 flags) { throw new NotImplementedException(); } + public static void TexStorageSparse(OpenTK.Graphics.OpenGL.AmdSparseTexture target, OpenTK.Graphics.OpenGL.AmdSparseTexture internalFormat, Int32 width, Int32 height, Int32 depth, Int32 layers, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_sparse_texture] /// @@ -7653,7 +7653,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_sparse_texture", Version = "", EntryPoint = "glTextureStorageSparseAMD")] [CLSCompliant(false)] - public static void TextureStorageSparse(Int32 texture, OpenTK.Graphics.OpenGL.AmdSparseTexture target, OpenTK.Graphics.OpenGL.AmdSparseTexture internalFormat, Int32 width, Int32 height, Int32 depth, Int32 layers, Int32 flags) { throw new NotImplementedException(); } + public static void TextureStorageSparse(Int32 texture, OpenTK.Graphics.OpenGL.AmdSparseTexture target, OpenTK.Graphics.OpenGL.AmdSparseTexture internalFormat, Int32 width, Int32 height, Int32 depth, Int32 layers, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_sparse_texture] /// @@ -7666,7 +7666,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_sparse_texture", Version = "", EntryPoint = "glTextureStorageSparseAMD")] [CLSCompliant(false)] - public static void TextureStorageSparse(UInt32 texture, OpenTK.Graphics.OpenGL.AmdSparseTexture target, OpenTK.Graphics.OpenGL.AmdSparseTexture internalFormat, Int32 width, Int32 height, Int32 depth, Int32 layers, UInt32 flags) { throw new NotImplementedException(); } + public static void TextureStorageSparse(UInt32 texture, OpenTK.Graphics.OpenGL.AmdSparseTexture target, OpenTK.Graphics.OpenGL.AmdSparseTexture internalFormat, Int32 width, Int32 height, Int32 depth, Int32 layers, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_interleaved_elements] /// @@ -7674,7 +7674,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_interleaved_elements", Version = "", EntryPoint = "glVertexAttribParameteriAMD")] [CLSCompliant(false)] - public static void VertexAttribParameter(Int32 index, OpenTK.Graphics.OpenGL.AmdInterleavedElements pname, Int32 param) { throw new NotImplementedException(); } + public static void VertexAttribParameter(Int32 index, OpenTK.Graphics.OpenGL.AmdInterleavedElements pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_interleaved_elements] /// @@ -7682,7 +7682,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_interleaved_elements", Version = "", EntryPoint = "glVertexAttribParameteriAMD")] [CLSCompliant(false)] - public static void VertexAttribParameter(UInt32 index, OpenTK.Graphics.OpenGL.AmdInterleavedElements pname, Int32 param) { throw new NotImplementedException(); } + public static void VertexAttribParameter(UInt32 index, OpenTK.Graphics.OpenGL.AmdInterleavedElements pname, Int32 param) { throw new BindingsNotRewrittenException(); } } @@ -7696,7 +7696,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glBindVertexArrayAPPLE")] [CLSCompliant(false)] - public static void BindVertexArray(Int32 array) { throw new NotImplementedException(); } + public static void BindVertexArray(Int32 array) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_object] /// Bind a vertex array object @@ -7706,68 +7706,68 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glBindVertexArrayAPPLE")] [CLSCompliant(false)] - public static void BindVertexArray(UInt32 array) { throw new NotImplementedException(); } + public static void BindVertexArray(UInt32 array) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_flush_buffer_range] /// /// /// [AutoGenerated(Category = "APPLE_flush_buffer_range", Version = "", EntryPoint = "glBufferParameteriAPPLE")] - public static void BufferParameter(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterApple pname, Int32 param) { throw new NotImplementedException(); } + public static void BufferParameter(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterApple pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// [length: n] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glDeleteFencesAPPLE")] [CLSCompliant(false)] - public static void DeleteFence([CountAttribute(Parameter = "n")] Int32 fences) { throw new NotImplementedException(); } + public static void DeleteFence([CountAttribute(Parameter = "n")] Int32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// [length: n] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glDeleteFencesAPPLE")] [CLSCompliant(false)] - public static void DeleteFence([CountAttribute(Parameter = "n")] UInt32 fences) { throw new NotImplementedException(); } + public static void DeleteFence([CountAttribute(Parameter = "n")] UInt32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// /// [length: n] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glDeleteFencesAPPLE")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32[] fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// /// [length: n] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glDeleteFencesAPPLE")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// /// [length: n] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glDeleteFencesAPPLE")] [CLSCompliant(false)] - public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32* fences) { throw new NotImplementedException(); } + public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// /// [length: n] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glDeleteFencesAPPLE")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// /// [length: n] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glDeleteFencesAPPLE")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// /// [length: n] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glDeleteFencesAPPLE")] [CLSCompliant(false)] - public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32* fences) { throw new NotImplementedException(); } + public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_object] /// Delete vertex array objects @@ -7777,7 +7777,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysAPPLE")] [CLSCompliant(false)] - public static void DeleteVertexArray([CountAttribute(Parameter = "n")] Int32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArray([CountAttribute(Parameter = "n")] Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_object] /// Delete vertex array objects @@ -7787,7 +7787,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysAPPLE")] [CLSCompliant(false)] - public static void DeleteVertexArray([CountAttribute(Parameter = "n")] UInt32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArray([CountAttribute(Parameter = "n")] UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_object] /// Delete vertex array objects @@ -7800,7 +7800,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysAPPLE")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32[] arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_object] /// Delete vertex array objects @@ -7813,7 +7813,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysAPPLE")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_object] /// Delete vertex array objects @@ -7826,7 +7826,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysAPPLE")] [CLSCompliant(false)] - public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32* arrays) { throw new NotImplementedException(); } + public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_object] /// Delete vertex array objects @@ -7839,7 +7839,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysAPPLE")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_object] /// Delete vertex array objects @@ -7852,7 +7852,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysAPPLE")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_object] /// Delete vertex array objects @@ -7865,21 +7865,21 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysAPPLE")] [CLSCompliant(false)] - public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays) { throw new NotImplementedException(); } + public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// /// [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glDisableVertexAttribAPPLE")] [CLSCompliant(false)] - public static void DisableVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators pname) { throw new NotImplementedException(); } + public static void DisableVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators pname) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// /// [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glDisableVertexAttribAPPLE")] [CLSCompliant(false)] - public static void DisableVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators pname) { throw new NotImplementedException(); } + public static void DisableVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators pname) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -7887,14 +7887,14 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glDrawElementArrayAPPLE")] - public static void DrawElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 first, Int32 count) { throw new NotImplementedException(); } + public static void DrawElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// /// /// [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glDrawElementArrayAPPLE")] - public static void DrawElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 first, Int32 count) { throw new NotImplementedException(); } + public static void DrawElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -7905,7 +7905,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glDrawRangeElementArrayAPPLE")] [CLSCompliant(false)] - public static void DrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 first, Int32 count) { throw new NotImplementedException(); } + public static void DrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -7916,7 +7916,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glDrawRangeElementArrayAPPLE")] [CLSCompliant(false)] - public static void DrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 first, Int32 count) { throw new NotImplementedException(); } + public static void DrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -7926,7 +7926,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glDrawRangeElementArrayAPPLE")] [CLSCompliant(false)] - public static void DrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 first, Int32 count) { throw new NotImplementedException(); } + public static void DrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -7936,13 +7936,13 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glDrawRangeElementArrayAPPLE")] [CLSCompliant(false)] - public static void DrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 first, Int32 count) { throw new NotImplementedException(); } + public static void DrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// /// [length: COMPSIZE(type)] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glElementPointerAPPLE")] - public static void ElementPointer(OpenTK.Graphics.OpenGL.AppleElementArray type, [CountAttribute(Computed = "type")] IntPtr pointer) { throw new NotImplementedException(); } + public static void ElementPointer(OpenTK.Graphics.OpenGL.AppleElementArray type, [CountAttribute(Computed = "type")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -7951,7 +7951,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ElementPointer(OpenTK.Graphics.OpenGL.AppleElementArray type, [InAttribute, OutAttribute, CountAttribute(Computed = "type")] T1[] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -7960,7 +7960,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ElementPointer(OpenTK.Graphics.OpenGL.AppleElementArray type, [InAttribute, OutAttribute, CountAttribute(Computed = "type")] T1[,] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -7969,7 +7969,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ElementPointer(OpenTK.Graphics.OpenGL.AppleElementArray type, [InAttribute, OutAttribute, CountAttribute(Computed = "type")] T1[,,] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -7977,39 +7977,39 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glElementPointerAPPLE")] public static void ElementPointer(OpenTK.Graphics.OpenGL.AppleElementArray type, [InAttribute, OutAttribute, CountAttribute(Computed = "type")] ref T1 pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// /// [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glEnableVertexAttribAPPLE")] [CLSCompliant(false)] - public static void EnableVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators pname) { throw new NotImplementedException(); } + public static void EnableVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators pname) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// /// [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glEnableVertexAttribAPPLE")] [CLSCompliant(false)] - public static void EnableVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators pname) { throw new NotImplementedException(); } + public static void EnableVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators pname) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glFinishFenceAPPLE")] [CLSCompliant(false)] - public static void FinishFence(Int32 fence) { throw new NotImplementedException(); } + public static void FinishFence(Int32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glFinishFenceAPPLE")] [CLSCompliant(false)] - public static void FinishFence(UInt32 fence) { throw new NotImplementedException(); } + public static void FinishFence(UInt32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// /// [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glFinishObjectAPPLE")] - public static void FinishObject(OpenTK.Graphics.OpenGL.AppleFence @object, Int32 name) { throw new NotImplementedException(); } + public static void FinishObject(OpenTK.Graphics.OpenGL.AppleFence @object, Int32 name) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_flush_buffer_range] /// Indicate modifications to a range of a mapped buffer @@ -8024,7 +8024,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the length of the buffer subrange, in basic machine units. /// [AutoGenerated(Category = "APPLE_flush_buffer_range", Version = "", EntryPoint = "glFlushMappedBufferRangeAPPLE")] - public static void FlushMappedBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_flush_buffer_range] /// Indicate modifications to a range of a mapped buffer @@ -8039,13 +8039,13 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the length of the buffer subrange, in basic machine units. /// [AutoGenerated(Category = "APPLE_flush_buffer_range", Version = "", EntryPoint = "glFlushMappedBufferRangeAPPLE")] - public static void FlushMappedBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_range] /// /// [length: length] [AutoGenerated(Category = "APPLE_vertex_array_range", Version = "", EntryPoint = "glFlushVertexArrayRangeAPPLE")] - public static void FlushVertexArrayRange(Int32 length, [OutAttribute, CountAttribute(Parameter = "length")] IntPtr pointer) { throw new NotImplementedException(); } + public static void FlushVertexArrayRange(Int32 length, [OutAttribute, CountAttribute(Parameter = "length")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_range] /// @@ -8054,7 +8054,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void FlushVertexArrayRange(Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T1[] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_range] /// @@ -8063,7 +8063,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void FlushVertexArrayRange(Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T1[,] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_range] /// @@ -8072,7 +8072,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void FlushVertexArrayRange(Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T1[,,] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_range] /// @@ -8080,61 +8080,61 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "APPLE_vertex_array_range", Version = "", EntryPoint = "glFlushVertexArrayRangeAPPLE")] public static void FlushVertexArrayRange(Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T1 pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glGenFencesAPPLE")] [CLSCompliant(false)] - public static Int32 GenFence() { throw new NotImplementedException(); } + public static Int32 GenFence() { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// /// [length: n] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glGenFencesAPPLE")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// /// [length: n] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glGenFencesAPPLE")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// /// [length: n] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glGenFencesAPPLE")] [CLSCompliant(false)] - public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* fences) { throw new NotImplementedException(); } + public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// /// [length: n] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glGenFencesAPPLE")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// /// [length: n] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glGenFencesAPPLE")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// /// [length: n] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glGenFencesAPPLE")] [CLSCompliant(false)] - public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* fences) { throw new NotImplementedException(); } + public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_object] /// Generate vertex array object names /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysAPPLE")] [CLSCompliant(false)] - public static Int32 GenVertexArray() { throw new NotImplementedException(); } + public static Int32 GenVertexArray() { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_object] /// Generate vertex array object names @@ -8147,7 +8147,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysAPPLE")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_object] /// Generate vertex array object names @@ -8160,7 +8160,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysAPPLE")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_object] /// Generate vertex array object names @@ -8173,7 +8173,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysAPPLE")] [CLSCompliant(false)] - public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* arrays) { throw new NotImplementedException(); } + public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_object] /// Generate vertex array object names @@ -8186,7 +8186,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysAPPLE")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_object] /// Generate vertex array object names @@ -8199,7 +8199,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysAPPLE")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_object] /// Generate vertex array object names @@ -8212,7 +8212,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysAPPLE")] [CLSCompliant(false)] - public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays) { throw new NotImplementedException(); } + public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_object_purgeable] /// @@ -8221,7 +8221,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "APPLE_object_purgeable", Version = "", EntryPoint = "glGetObjectParameterivAPPLE")] [CLSCompliant(false)] - public static void GetObjectParameter(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, Int32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetObjectParameter(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, Int32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_object_purgeable] /// @@ -8230,7 +8230,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "APPLE_object_purgeable", Version = "", EntryPoint = "glGetObjectParameterivAPPLE")] [CLSCompliant(false)] - public static void GetObjectParameter(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, Int32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetObjectParameter(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, Int32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_object_purgeable] /// @@ -8239,7 +8239,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "APPLE_object_purgeable", Version = "", EntryPoint = "glGetObjectParameterivAPPLE")] [CLSCompliant(false)] - public static unsafe void GetObjectParameter(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, Int32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetObjectParameter(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, Int32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_object_purgeable] /// @@ -8248,7 +8248,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "APPLE_object_purgeable", Version = "", EntryPoint = "glGetObjectParameterivAPPLE")] [CLSCompliant(false)] - public static void GetObjectParameter(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, UInt32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetObjectParameter(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, UInt32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_object_purgeable] /// @@ -8257,7 +8257,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "APPLE_object_purgeable", Version = "", EntryPoint = "glGetObjectParameterivAPPLE")] [CLSCompliant(false)] - public static void GetObjectParameter(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, UInt32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetObjectParameter(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, UInt32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_object_purgeable] /// @@ -8266,14 +8266,14 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "APPLE_object_purgeable", Version = "", EntryPoint = "glGetObjectParameterivAPPLE")] [CLSCompliant(false)] - public static unsafe void GetObjectParameter(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, UInt32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetObjectParameter(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, UInt32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_texture_range] /// /// /// [length: 1] [AutoGenerated(Category = "APPLE_texture_range", Version = "", EntryPoint = "glGetTexParameterPointervAPPLE")] - public static void GetTexParameterPointer(OpenTK.Graphics.OpenGL.AppleTextureRange target, OpenTK.Graphics.OpenGL.AppleTextureRange pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetTexParameterPointer(OpenTK.Graphics.OpenGL.AppleTextureRange target, OpenTK.Graphics.OpenGL.AppleTextureRange pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_texture_range] /// @@ -8283,7 +8283,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTexParameterPointer(OpenTK.Graphics.OpenGL.AppleTextureRange target, OpenTK.Graphics.OpenGL.AppleTextureRange pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_texture_range] /// @@ -8293,7 +8293,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTexParameterPointer(OpenTK.Graphics.OpenGL.AppleTextureRange target, OpenTK.Graphics.OpenGL.AppleTextureRange pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_texture_range] /// @@ -8303,7 +8303,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTexParameterPointer(OpenTK.Graphics.OpenGL.AppleTextureRange target, OpenTK.Graphics.OpenGL.AppleTextureRange pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_texture_range] /// @@ -8312,19 +8312,19 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "APPLE_texture_range", Version = "", EntryPoint = "glGetTexParameterPointervAPPLE")] public static void GetTexParameterPointer(OpenTK.Graphics.OpenGL.AppleTextureRange target, OpenTK.Graphics.OpenGL.AppleTextureRange pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glIsFenceAPPLE")] [CLSCompliant(false)] - public static bool IsFence(Int32 fence) { throw new NotImplementedException(); } + public static bool IsFence(Int32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glIsFenceAPPLE")] [CLSCompliant(false)] - public static bool IsFence(UInt32 fence) { throw new NotImplementedException(); } + public static bool IsFence(UInt32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_object] /// Determine if a name corresponds to a vertex array object @@ -8334,7 +8334,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glIsVertexArrayAPPLE")] [CLSCompliant(false)] - public static bool IsVertexArray(Int32 array) { throw new NotImplementedException(); } + public static bool IsVertexArray(Int32 array) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_object] /// Determine if a name corresponds to a vertex array object @@ -8344,21 +8344,21 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glIsVertexArrayAPPLE")] [CLSCompliant(false)] - public static bool IsVertexArray(UInt32 array) { throw new NotImplementedException(); } + public static bool IsVertexArray(UInt32 array) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// /// [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glIsVertexAttribEnabledAPPLE")] [CLSCompliant(false)] - public static bool IsVertexAttribEnabled(Int32 index, OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators pname) { throw new NotImplementedException(); } + public static bool IsVertexAttribEnabled(Int32 index, OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators pname) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// /// [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glIsVertexAttribEnabledAPPLE")] [CLSCompliant(false)] - public static bool IsVertexAttribEnabled(UInt32 index, OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators pname) { throw new NotImplementedException(); } + public static bool IsVertexAttribEnabled(UInt32 index, OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators pname) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8370,7 +8370,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,stride,order)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib1dAPPLE")] [CLSCompliant(false)] - public static void MapVertexAttrib1(Int32 index, Int32 size, Double u1, Double u2, Int32 stride, Int32 order, [CountAttribute(Computed = "size,stride,order")] Double[] points) { throw new NotImplementedException(); } + public static void MapVertexAttrib1(Int32 index, Int32 size, Double u1, Double u2, Int32 stride, Int32 order, [CountAttribute(Computed = "size,stride,order")] Double[] points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8382,7 +8382,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,stride,order)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib1dAPPLE")] [CLSCompliant(false)] - public static void MapVertexAttrib1(Int32 index, Int32 size, Double u1, Double u2, Int32 stride, Int32 order, [CountAttribute(Computed = "size,stride,order")] ref Double points) { throw new NotImplementedException(); } + public static void MapVertexAttrib1(Int32 index, Int32 size, Double u1, Double u2, Int32 stride, Int32 order, [CountAttribute(Computed = "size,stride,order")] ref Double points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8394,7 +8394,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,stride,order)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib1dAPPLE")] [CLSCompliant(false)] - public static unsafe void MapVertexAttrib1(Int32 index, Int32 size, Double u1, Double u2, Int32 stride, Int32 order, [CountAttribute(Computed = "size,stride,order")] Double* points) { throw new NotImplementedException(); } + public static unsafe void MapVertexAttrib1(Int32 index, Int32 size, Double u1, Double u2, Int32 stride, Int32 order, [CountAttribute(Computed = "size,stride,order")] Double* points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8406,7 +8406,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,stride,order)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib1dAPPLE")] [CLSCompliant(false)] - public static void MapVertexAttrib1(UInt32 index, UInt32 size, Double u1, Double u2, Int32 stride, Int32 order, [CountAttribute(Computed = "size,stride,order")] Double[] points) { throw new NotImplementedException(); } + public static void MapVertexAttrib1(UInt32 index, UInt32 size, Double u1, Double u2, Int32 stride, Int32 order, [CountAttribute(Computed = "size,stride,order")] Double[] points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8418,7 +8418,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,stride,order)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib1dAPPLE")] [CLSCompliant(false)] - public static void MapVertexAttrib1(UInt32 index, UInt32 size, Double u1, Double u2, Int32 stride, Int32 order, [CountAttribute(Computed = "size,stride,order")] ref Double points) { throw new NotImplementedException(); } + public static void MapVertexAttrib1(UInt32 index, UInt32 size, Double u1, Double u2, Int32 stride, Int32 order, [CountAttribute(Computed = "size,stride,order")] ref Double points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8430,7 +8430,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,stride,order)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib1dAPPLE")] [CLSCompliant(false)] - public static unsafe void MapVertexAttrib1(UInt32 index, UInt32 size, Double u1, Double u2, Int32 stride, Int32 order, [CountAttribute(Computed = "size,stride,order")] Double* points) { throw new NotImplementedException(); } + public static unsafe void MapVertexAttrib1(UInt32 index, UInt32 size, Double u1, Double u2, Int32 stride, Int32 order, [CountAttribute(Computed = "size,stride,order")] Double* points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8442,7 +8442,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,stride,order)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib1fAPPLE")] [CLSCompliant(false)] - public static void MapVertexAttrib1(Int32 index, Int32 size, Single u1, Single u2, Int32 stride, Int32 order, [CountAttribute(Computed = "size,stride,order")] Single[] points) { throw new NotImplementedException(); } + public static void MapVertexAttrib1(Int32 index, Int32 size, Single u1, Single u2, Int32 stride, Int32 order, [CountAttribute(Computed = "size,stride,order")] Single[] points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8454,7 +8454,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,stride,order)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib1fAPPLE")] [CLSCompliant(false)] - public static void MapVertexAttrib1(Int32 index, Int32 size, Single u1, Single u2, Int32 stride, Int32 order, [CountAttribute(Computed = "size,stride,order")] ref Single points) { throw new NotImplementedException(); } + public static void MapVertexAttrib1(Int32 index, Int32 size, Single u1, Single u2, Int32 stride, Int32 order, [CountAttribute(Computed = "size,stride,order")] ref Single points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8466,7 +8466,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,stride,order)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib1fAPPLE")] [CLSCompliant(false)] - public static unsafe void MapVertexAttrib1(Int32 index, Int32 size, Single u1, Single u2, Int32 stride, Int32 order, [CountAttribute(Computed = "size,stride,order")] Single* points) { throw new NotImplementedException(); } + public static unsafe void MapVertexAttrib1(Int32 index, Int32 size, Single u1, Single u2, Int32 stride, Int32 order, [CountAttribute(Computed = "size,stride,order")] Single* points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8478,7 +8478,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,stride,order)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib1fAPPLE")] [CLSCompliant(false)] - public static void MapVertexAttrib1(UInt32 index, UInt32 size, Single u1, Single u2, Int32 stride, Int32 order, [CountAttribute(Computed = "size,stride,order")] Single[] points) { throw new NotImplementedException(); } + public static void MapVertexAttrib1(UInt32 index, UInt32 size, Single u1, Single u2, Int32 stride, Int32 order, [CountAttribute(Computed = "size,stride,order")] Single[] points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8490,7 +8490,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,stride,order)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib1fAPPLE")] [CLSCompliant(false)] - public static void MapVertexAttrib1(UInt32 index, UInt32 size, Single u1, Single u2, Int32 stride, Int32 order, [CountAttribute(Computed = "size,stride,order")] ref Single points) { throw new NotImplementedException(); } + public static void MapVertexAttrib1(UInt32 index, UInt32 size, Single u1, Single u2, Int32 stride, Int32 order, [CountAttribute(Computed = "size,stride,order")] ref Single points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8502,7 +8502,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,stride,order)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib1fAPPLE")] [CLSCompliant(false)] - public static unsafe void MapVertexAttrib1(UInt32 index, UInt32 size, Single u1, Single u2, Int32 stride, Int32 order, [CountAttribute(Computed = "size,stride,order")] Single* points) { throw new NotImplementedException(); } + public static unsafe void MapVertexAttrib1(UInt32 index, UInt32 size, Single u1, Single u2, Int32 stride, Int32 order, [CountAttribute(Computed = "size,stride,order")] Single* points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8518,7 +8518,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,ustride,uorder,vstride,vorder)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib2dAPPLE")] [CLSCompliant(false)] - public static void MapVertexAttrib2(Int32 index, Int32 size, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] Double[] points) { throw new NotImplementedException(); } + public static void MapVertexAttrib2(Int32 index, Int32 size, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] Double[] points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8534,7 +8534,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,ustride,uorder,vstride,vorder)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib2dAPPLE")] [CLSCompliant(false)] - public static void MapVertexAttrib2(Int32 index, Int32 size, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] ref Double points) { throw new NotImplementedException(); } + public static void MapVertexAttrib2(Int32 index, Int32 size, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] ref Double points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8550,7 +8550,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,ustride,uorder,vstride,vorder)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib2dAPPLE")] [CLSCompliant(false)] - public static unsafe void MapVertexAttrib2(Int32 index, Int32 size, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] Double* points) { throw new NotImplementedException(); } + public static unsafe void MapVertexAttrib2(Int32 index, Int32 size, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] Double* points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8566,7 +8566,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,ustride,uorder,vstride,vorder)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib2dAPPLE")] [CLSCompliant(false)] - public static void MapVertexAttrib2(UInt32 index, UInt32 size, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] Double[] points) { throw new NotImplementedException(); } + public static void MapVertexAttrib2(UInt32 index, UInt32 size, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] Double[] points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8582,7 +8582,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,ustride,uorder,vstride,vorder)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib2dAPPLE")] [CLSCompliant(false)] - public static void MapVertexAttrib2(UInt32 index, UInt32 size, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] ref Double points) { throw new NotImplementedException(); } + public static void MapVertexAttrib2(UInt32 index, UInt32 size, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] ref Double points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8598,7 +8598,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,ustride,uorder,vstride,vorder)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib2dAPPLE")] [CLSCompliant(false)] - public static unsafe void MapVertexAttrib2(UInt32 index, UInt32 size, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] Double* points) { throw new NotImplementedException(); } + public static unsafe void MapVertexAttrib2(UInt32 index, UInt32 size, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] Double* points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8614,7 +8614,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,ustride,uorder,vstride,vorder)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib2fAPPLE")] [CLSCompliant(false)] - public static void MapVertexAttrib2(Int32 index, Int32 size, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] Single[] points) { throw new NotImplementedException(); } + public static void MapVertexAttrib2(Int32 index, Int32 size, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] Single[] points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8630,7 +8630,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,ustride,uorder,vstride,vorder)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib2fAPPLE")] [CLSCompliant(false)] - public static void MapVertexAttrib2(Int32 index, Int32 size, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] ref Single points) { throw new NotImplementedException(); } + public static void MapVertexAttrib2(Int32 index, Int32 size, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] ref Single points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8646,7 +8646,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,ustride,uorder,vstride,vorder)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib2fAPPLE")] [CLSCompliant(false)] - public static unsafe void MapVertexAttrib2(Int32 index, Int32 size, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] Single* points) { throw new NotImplementedException(); } + public static unsafe void MapVertexAttrib2(Int32 index, Int32 size, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] Single* points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8662,7 +8662,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,ustride,uorder,vstride,vorder)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib2fAPPLE")] [CLSCompliant(false)] - public static void MapVertexAttrib2(UInt32 index, UInt32 size, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] Single[] points) { throw new NotImplementedException(); } + public static void MapVertexAttrib2(UInt32 index, UInt32 size, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] Single[] points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8678,7 +8678,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,ustride,uorder,vstride,vorder)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib2fAPPLE")] [CLSCompliant(false)] - public static void MapVertexAttrib2(UInt32 index, UInt32 size, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] ref Single points) { throw new NotImplementedException(); } + public static void MapVertexAttrib2(UInt32 index, UInt32 size, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] ref Single points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8694,7 +8694,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,ustride,uorder,vstride,vorder)] [AutoGenerated(Category = "APPLE_vertex_program_evaluators", Version = "", EntryPoint = "glMapVertexAttrib2fAPPLE")] [CLSCompliant(false)] - public static unsafe void MapVertexAttrib2(UInt32 index, UInt32 size, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] Single* points) { throw new NotImplementedException(); } + public static unsafe void MapVertexAttrib2(UInt32 index, UInt32 size, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] Single* points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -8704,7 +8704,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawElementArrayAPPLE")] [CLSCompliant(false)] - public static void MultiDrawElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Parameter = "primcount")] Int32[] first, [CountAttribute(Parameter = "primcount")] Int32[] count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Parameter = "primcount")] Int32[] first, [CountAttribute(Parameter = "primcount")] Int32[] count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -8714,7 +8714,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawElementArrayAPPLE")] [CLSCompliant(false)] - public static void MultiDrawElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Parameter = "primcount")] ref Int32 first, [CountAttribute(Parameter = "primcount")] ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Parameter = "primcount")] ref Int32 first, [CountAttribute(Parameter = "primcount")] ref Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -8724,7 +8724,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawElementArrayAPPLE")] [CLSCompliant(false)] - public static unsafe void MultiDrawElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Parameter = "primcount")] Int32* first, [CountAttribute(Parameter = "primcount")] Int32* count, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Parameter = "primcount")] Int32* first, [CountAttribute(Parameter = "primcount")] Int32* count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -8733,7 +8733,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawElementArrayAPPLE")] [CLSCompliant(false)] - public static void MultiDrawElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Parameter = "primcount")] Int32[] first, [CountAttribute(Parameter = "primcount")] Int32[] count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Parameter = "primcount")] Int32[] first, [CountAttribute(Parameter = "primcount")] Int32[] count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -8742,7 +8742,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawElementArrayAPPLE")] [CLSCompliant(false)] - public static void MultiDrawElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Parameter = "primcount")] ref Int32 first, [CountAttribute(Parameter = "primcount")] ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Parameter = "primcount")] ref Int32 first, [CountAttribute(Parameter = "primcount")] ref Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -8751,7 +8751,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawElementArrayAPPLE")] [CLSCompliant(false)] - public static unsafe void MultiDrawElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Parameter = "primcount")] Int32* first, [CountAttribute(Parameter = "primcount")] Int32* count, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Parameter = "primcount")] Int32* first, [CountAttribute(Parameter = "primcount")] Int32* count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -8763,7 +8763,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawRangeElementArrayAPPLE")] [CLSCompliant(false)] - public static void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, [CountAttribute(Parameter = "primcount")] Int32[] first, [CountAttribute(Parameter = "primcount")] Int32[] count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, [CountAttribute(Parameter = "primcount")] Int32[] first, [CountAttribute(Parameter = "primcount")] Int32[] count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -8775,7 +8775,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawRangeElementArrayAPPLE")] [CLSCompliant(false)] - public static void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, [CountAttribute(Parameter = "primcount")] ref Int32 first, [CountAttribute(Parameter = "primcount")] ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, [CountAttribute(Parameter = "primcount")] ref Int32 first, [CountAttribute(Parameter = "primcount")] ref Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -8787,7 +8787,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawRangeElementArrayAPPLE")] [CLSCompliant(false)] - public static unsafe void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, [CountAttribute(Parameter = "primcount")] Int32* first, [CountAttribute(Parameter = "primcount")] Int32* count, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, [CountAttribute(Parameter = "primcount")] Int32* first, [CountAttribute(Parameter = "primcount")] Int32* count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -8799,7 +8799,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawRangeElementArrayAPPLE")] [CLSCompliant(false)] - public static void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, [CountAttribute(Parameter = "primcount")] Int32[] first, [CountAttribute(Parameter = "primcount")] Int32[] count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, [CountAttribute(Parameter = "primcount")] Int32[] first, [CountAttribute(Parameter = "primcount")] Int32[] count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -8811,7 +8811,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawRangeElementArrayAPPLE")] [CLSCompliant(false)] - public static void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, [CountAttribute(Parameter = "primcount")] ref Int32 first, [CountAttribute(Parameter = "primcount")] ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, [CountAttribute(Parameter = "primcount")] ref Int32 first, [CountAttribute(Parameter = "primcount")] ref Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -8823,7 +8823,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawRangeElementArrayAPPLE")] [CLSCompliant(false)] - public static unsafe void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, [CountAttribute(Parameter = "primcount")] Int32* first, [CountAttribute(Parameter = "primcount")] Int32* count, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, [CountAttribute(Parameter = "primcount")] Int32* first, [CountAttribute(Parameter = "primcount")] Int32* count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -8834,7 +8834,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawRangeElementArrayAPPLE")] [CLSCompliant(false)] - public static void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, [CountAttribute(Parameter = "primcount")] Int32[] first, [CountAttribute(Parameter = "primcount")] Int32[] count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, [CountAttribute(Parameter = "primcount")] Int32[] first, [CountAttribute(Parameter = "primcount")] Int32[] count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -8845,7 +8845,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawRangeElementArrayAPPLE")] [CLSCompliant(false)] - public static void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, [CountAttribute(Parameter = "primcount")] ref Int32 first, [CountAttribute(Parameter = "primcount")] ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, [CountAttribute(Parameter = "primcount")] ref Int32 first, [CountAttribute(Parameter = "primcount")] ref Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -8856,7 +8856,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawRangeElementArrayAPPLE")] [CLSCompliant(false)] - public static unsafe void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, [CountAttribute(Parameter = "primcount")] Int32* first, [CountAttribute(Parameter = "primcount")] Int32* count, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, [CountAttribute(Parameter = "primcount")] Int32* first, [CountAttribute(Parameter = "primcount")] Int32* count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -8867,7 +8867,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawRangeElementArrayAPPLE")] [CLSCompliant(false)] - public static void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, [CountAttribute(Parameter = "primcount")] Int32[] first, [CountAttribute(Parameter = "primcount")] Int32[] count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, [CountAttribute(Parameter = "primcount")] Int32[] first, [CountAttribute(Parameter = "primcount")] Int32[] count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -8878,7 +8878,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawRangeElementArrayAPPLE")] [CLSCompliant(false)] - public static void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, [CountAttribute(Parameter = "primcount")] ref Int32 first, [CountAttribute(Parameter = "primcount")] ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, [CountAttribute(Parameter = "primcount")] ref Int32 first, [CountAttribute(Parameter = "primcount")] ref Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -8889,7 +8889,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawRangeElementArrayAPPLE")] [CLSCompliant(false)] - public static unsafe void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, [CountAttribute(Parameter = "primcount")] Int32* first, [CountAttribute(Parameter = "primcount")] Int32* count, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, [CountAttribute(Parameter = "primcount")] Int32* first, [CountAttribute(Parameter = "primcount")] Int32* count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_object_purgeable] /// @@ -8897,7 +8897,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_object_purgeable", Version = "", EntryPoint = "glObjectPurgeableAPPLE")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.AppleObjectPurgeable ObjectPurgeable(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, Int32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable option) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.AppleObjectPurgeable ObjectPurgeable(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, Int32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable option) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_object_purgeable] /// @@ -8905,7 +8905,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_object_purgeable", Version = "", EntryPoint = "glObjectPurgeableAPPLE")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.AppleObjectPurgeable ObjectPurgeable(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, UInt32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable option) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.AppleObjectPurgeable ObjectPurgeable(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, UInt32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable option) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_object_purgeable] /// @@ -8913,7 +8913,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_object_purgeable", Version = "", EntryPoint = "glObjectUnpurgeableAPPLE")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.AppleObjectPurgeable ObjectUnpurgeable(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, Int32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable option) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.AppleObjectPurgeable ObjectUnpurgeable(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, Int32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable option) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_object_purgeable] /// @@ -8921,52 +8921,52 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_object_purgeable", Version = "", EntryPoint = "glObjectUnpurgeableAPPLE")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.AppleObjectPurgeable ObjectUnpurgeable(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, UInt32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable option) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.AppleObjectPurgeable ObjectUnpurgeable(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, UInt32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable option) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glSetFenceAPPLE")] [CLSCompliant(false)] - public static void SetFence(Int32 fence) { throw new NotImplementedException(); } + public static void SetFence(Int32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glSetFenceAPPLE")] [CLSCompliant(false)] - public static void SetFence(UInt32 fence) { throw new NotImplementedException(); } + public static void SetFence(UInt32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glTestFenceAPPLE")] [CLSCompliant(false)] - public static bool TestFence(Int32 fence) { throw new NotImplementedException(); } + public static bool TestFence(Int32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glTestFenceAPPLE")] [CLSCompliant(false)] - public static bool TestFence(UInt32 fence) { throw new NotImplementedException(); } + public static bool TestFence(UInt32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// /// [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glTestObjectAPPLE")] [CLSCompliant(false)] - public static bool TestObject(OpenTK.Graphics.OpenGL.AppleFence @object, Int32 name) { throw new NotImplementedException(); } + public static bool TestObject(OpenTK.Graphics.OpenGL.AppleFence @object, Int32 name) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// /// [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glTestObjectAPPLE")] [CLSCompliant(false)] - public static bool TestObject(OpenTK.Graphics.OpenGL.AppleFence @object, UInt32 name) { throw new NotImplementedException(); } + public static bool TestObject(OpenTK.Graphics.OpenGL.AppleFence @object, UInt32 name) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_texture_range] /// /// /// [length: length] [AutoGenerated(Category = "APPLE_texture_range", Version = "", EntryPoint = "glTextureRangeAPPLE")] - public static void TextureRange(OpenTK.Graphics.OpenGL.AppleTextureRange target, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pointer) { throw new NotImplementedException(); } + public static void TextureRange(OpenTK.Graphics.OpenGL.AppleTextureRange target, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_texture_range] /// @@ -8976,7 +8976,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureRange(OpenTK.Graphics.OpenGL.AppleTextureRange target, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_texture_range] /// @@ -8986,7 +8986,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureRange(OpenTK.Graphics.OpenGL.AppleTextureRange target, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_texture_range] /// @@ -8996,7 +8996,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureRange(OpenTK.Graphics.OpenGL.AppleTextureRange target, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_texture_range] /// @@ -9005,19 +9005,19 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "APPLE_texture_range", Version = "", EntryPoint = "glTextureRangeAPPLE")] public static void TextureRange(OpenTK.Graphics.OpenGL.AppleTextureRange target, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_range] /// /// [AutoGenerated(Category = "APPLE_vertex_array_range", Version = "", EntryPoint = "glVertexArrayParameteriAPPLE")] - public static void VertexArrayParameter(OpenTK.Graphics.OpenGL.AppleVertexArrayRange pname, Int32 param) { throw new NotImplementedException(); } + public static void VertexArrayParameter(OpenTK.Graphics.OpenGL.AppleVertexArrayRange pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_range] /// /// [length: length] [AutoGenerated(Category = "APPLE_vertex_array_range", Version = "", EntryPoint = "glVertexArrayRangeAPPLE")] - public static void VertexArrayRange(Int32 length, [OutAttribute, CountAttribute(Parameter = "length")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexArrayRange(Int32 length, [OutAttribute, CountAttribute(Parameter = "length")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_range] /// @@ -9026,7 +9026,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexArrayRange(Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T1[] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_range] /// @@ -9035,7 +9035,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexArrayRange(Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T1[,] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_range] /// @@ -9044,7 +9044,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexArrayRange(Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T1[,,] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_range] /// @@ -9052,7 +9052,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "APPLE_vertex_array_range", Version = "", EntryPoint = "glVertexArrayRangeAPPLE")] public static void VertexArrayRange(Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T1 pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } } @@ -9065,21 +9065,21 @@ namespace OpenTK.Graphics.OpenGL /// Specifies which texture unit to make active. The number of texture units is implementation dependent, but must be at least 80. texture must be one of Texturei, where i ranges from zero to the value of MaxCombinedTextureImageUnits minus one. The initial value is Texture0. /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glActiveTextureARB")] - public static void ActiveTexture(OpenTK.Graphics.OpenGL.TextureUnit texture) { throw new NotImplementedException(); } + public static void ActiveTexture(OpenTK.Graphics.OpenGL.TextureUnit texture) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glAttachObjectARB")] [CLSCompliant(false)] - public static void AttachObject(Int32 containerObj, Int32 obj) { throw new NotImplementedException(); } + public static void AttachObject(Int32 containerObj, Int32 obj) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glAttachObjectARB")] [CLSCompliant(false)] - public static void AttachObject(UInt32 containerObj, UInt32 obj) { throw new NotImplementedException(); } + public static void AttachObject(UInt32 containerObj, UInt32 obj) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Delimit the boundaries of a query object @@ -9092,7 +9092,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glBeginQueryARB")] [CLSCompliant(false)] - public static void BeginQuery(OpenTK.Graphics.OpenGL.ArbOcclusionQuery target, Int32 id) { throw new NotImplementedException(); } + public static void BeginQuery(OpenTK.Graphics.OpenGL.ArbOcclusionQuery target, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Delimit the boundaries of a query object @@ -9105,7 +9105,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glBeginQueryARB")] [CLSCompliant(false)] - public static void BeginQuery(OpenTK.Graphics.OpenGL.ArbOcclusionQuery target, UInt32 id) { throw new NotImplementedException(); } + public static void BeginQuery(OpenTK.Graphics.OpenGL.ArbOcclusionQuery target, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_shader] /// Associates a generic vertex attribute index with a named attribute variable @@ -9121,7 +9121,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_shader", Version = "", EntryPoint = "glBindAttribLocationARB")] [CLSCompliant(false)] - public static void BindAttribLocation(Int32 programObj, Int32 index, String name) { throw new NotImplementedException(); } + public static void BindAttribLocation(Int32 programObj, Int32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_shader] /// Associates a generic vertex attribute index with a named attribute variable @@ -9137,7 +9137,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_shader", Version = "", EntryPoint = "glBindAttribLocationARB")] [CLSCompliant(false)] - public static void BindAttribLocation(UInt32 programObj, UInt32 index, String name) { throw new NotImplementedException(); } + public static void BindAttribLocation(UInt32 programObj, UInt32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Bind a named buffer object @@ -9150,7 +9150,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glBindBufferARB")] [CLSCompliant(false)] - public static void BindBuffer(OpenTK.Graphics.OpenGL.BufferTargetArb target, Int32 buffer) { throw new NotImplementedException(); } + public static void BindBuffer(OpenTK.Graphics.OpenGL.BufferTargetArb target, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Bind a named buffer object @@ -9163,21 +9163,21 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glBindBufferARB")] [CLSCompliant(false)] - public static void BindBuffer(OpenTK.Graphics.OpenGL.BufferTargetArb target, UInt32 buffer) { throw new NotImplementedException(); } + public static void BindBuffer(OpenTK.Graphics.OpenGL.BufferTargetArb target, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// /// [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glBindProgramARB")] [CLSCompliant(false)] - public static void BindProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 program) { throw new NotImplementedException(); } + public static void BindProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// /// [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glBindProgramARB")] [CLSCompliant(false)] - public static void BindProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 program) { throw new NotImplementedException(); } + public static void BindProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -9191,7 +9191,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use BlendEquationMode overload instead")] [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendEquationiARB")] [CLSCompliant(false)] - public static void BlendEquation(Int32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend mode) { throw new NotImplementedException(); } + public static void BlendEquation(Int32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend mode) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -9204,7 +9204,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendEquationiARB")] [CLSCompliant(false)] - public static void BlendEquation(Int32 buf, OpenTK.Graphics.OpenGL.BlendEquationMode mode) { throw new NotImplementedException(); } + public static void BlendEquation(Int32 buf, OpenTK.Graphics.OpenGL.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -9218,7 +9218,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use BlendEquationMode overload instead")] [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendEquationiARB")] [CLSCompliant(false)] - public static void BlendEquation(UInt32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend mode) { throw new NotImplementedException(); } + public static void BlendEquation(UInt32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend mode) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -9231,7 +9231,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendEquationiARB")] [CLSCompliant(false)] - public static void BlendEquation(UInt32 buf, OpenTK.Graphics.OpenGL.BlendEquationMode mode) { throw new NotImplementedException(); } + public static void BlendEquation(UInt32 buf, OpenTK.Graphics.OpenGL.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Set the RGB blend equation and the alpha blend equation separately @@ -9247,7 +9247,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendEquationSeparateiARB")] [CLSCompliant(false)] - public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend modeRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend modeRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Set the RGB blend equation and the alpha blend equation separately @@ -9263,7 +9263,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendEquationSeparateiARB")] [CLSCompliant(false)] - public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend modeRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend modeRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Specify pixel arithmetic @@ -9279,7 +9279,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendFunciARB")] [CLSCompliant(false)] - public static void BlendFunc(Int32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend src, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dst) { throw new NotImplementedException(); } + public static void BlendFunc(Int32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend src, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dst) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Specify pixel arithmetic @@ -9295,7 +9295,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendFunciARB")] [CLSCompliant(false)] - public static void BlendFunc(UInt32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend src, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dst) { throw new NotImplementedException(); } + public static void BlendFunc(UInt32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend src, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dst) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Specify pixel arithmetic for RGB and alpha components separately @@ -9317,7 +9317,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendFuncSeparateiARB")] [CLSCompliant(false)] - public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend srcRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dstRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend srcAlpha, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend srcRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dstRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend srcAlpha, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Specify pixel arithmetic for RGB and alpha components separately @@ -9339,7 +9339,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendFuncSeparateiARB")] [CLSCompliant(false)] - public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend srcRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dstRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend srcAlpha, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend srcRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dstRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend srcAlpha, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Creates and initializes a buffer object's data store @@ -9357,7 +9357,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StreamRead, StreamCopy, StaticDraw, StaticRead, StaticCopy, DynamicDraw, DynamicRead, or DynamicCopy. /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glBufferDataARB")] - public static void BufferData(OpenTK.Graphics.OpenGL.BufferTargetArb target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageArb usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.OpenGL.BufferTargetArb target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageArb usage) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Creates and initializes a buffer object's data store @@ -9378,7 +9378,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL.BufferTargetArb target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Creates and initializes a buffer object's data store @@ -9399,7 +9399,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL.BufferTargetArb target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Creates and initializes a buffer object's data store @@ -9420,7 +9420,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL.BufferTargetArb target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Creates and initializes a buffer object's data store @@ -9440,7 +9440,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glBufferDataARB")] public static void BufferData(OpenTK.Graphics.OpenGL.BufferTargetArb target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Creates and initializes a buffer object's data store @@ -9458,7 +9458,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StreamRead, StreamCopy, StaticDraw, StaticRead, StaticCopy, DynamicDraw, DynamicRead, or DynamicCopy. /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glBufferDataARB")] - public static void BufferData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageArb usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageArb usage) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Creates and initializes a buffer object's data store @@ -9479,7 +9479,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Creates and initializes a buffer object's data store @@ -9500,7 +9500,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Creates and initializes a buffer object's data store @@ -9521,7 +9521,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Creates and initializes a buffer object's data store @@ -9541,7 +9541,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glBufferDataARB")] public static void BufferData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_buffer] /// @@ -9549,7 +9549,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_sparse_buffer", Version = "", EntryPoint = "glBufferPageCommitmentARB")] - public static void BufferPageCommitment(OpenTK.Graphics.OpenGL.ArbSparseBuffer target, IntPtr offset, Int32 size, bool commit) { throw new NotImplementedException(); } + public static void BufferPageCommitment(OpenTK.Graphics.OpenGL.ArbSparseBuffer target, IntPtr offset, Int32 size, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_buffer] /// @@ -9557,7 +9557,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_sparse_buffer", Version = "", EntryPoint = "glBufferPageCommitmentARB")] - public static void BufferPageCommitment(OpenTK.Graphics.OpenGL.ArbSparseBuffer target, IntPtr offset, IntPtr size, bool commit) { throw new NotImplementedException(); } + public static void BufferPageCommitment(OpenTK.Graphics.OpenGL.ArbSparseBuffer target, IntPtr offset, IntPtr size, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Updates a subset of a buffer object's data store @@ -9575,7 +9575,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the new data that will be copied into the data store. /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glBufferSubDataARB")] - public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Updates a subset of a buffer object's data store @@ -9596,7 +9596,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Updates a subset of a buffer object's data store @@ -9617,7 +9617,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Updates a subset of a buffer object's data store @@ -9638,7 +9638,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Updates a subset of a buffer object's data store @@ -9658,7 +9658,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glBufferSubDataARB")] public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Updates a subset of a buffer object's data store @@ -9676,7 +9676,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the new data that will be copied into the data store. /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glBufferSubDataARB")] - public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Updates a subset of a buffer object's data store @@ -9697,7 +9697,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Updates a subset of a buffer object's data store @@ -9718,7 +9718,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Updates a subset of a buffer object's data store @@ -9739,7 +9739,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Updates a subset of a buffer object's data store @@ -9759,7 +9759,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glBufferSubDataARB")] public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_color_buffer_float] /// Specify whether data read via glReadPixels should be clamped @@ -9771,7 +9771,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies whether to apply color clamping. clamp must be True or False. /// [AutoGenerated(Category = "ARB_color_buffer_float", Version = "", EntryPoint = "glClampColorARB")] - public static void ClampColor(OpenTK.Graphics.OpenGL.ArbColorBufferFloat target, OpenTK.Graphics.OpenGL.ArbColorBufferFloat clamp) { throw new NotImplementedException(); } + public static void ClampColor(OpenTK.Graphics.OpenGL.ArbColorBufferFloat target, OpenTK.Graphics.OpenGL.ArbColorBufferFloat clamp) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Select active texture unit @@ -9780,7 +9780,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies which texture unit to make active. The number of texture units is implementation dependent, but must be at least two. texture must be one of Texture, where i ranges from 0 to the value of MaxTextureCoords - 1, which is an implementation-dependent value. The initial value is Texture0. /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glClientActiveTextureARB")] - public static void ClientActiveTexture(OpenTK.Graphics.OpenGL.TextureUnit texture) { throw new NotImplementedException(); } + public static void ClientActiveTexture(OpenTK.Graphics.OpenGL.TextureUnit texture) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Compiles a shader object @@ -9790,7 +9790,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glCompileShaderARB")] [CLSCompliant(false)] - public static void CompileShader(Int32 shaderObj) { throw new NotImplementedException(); } + public static void CompileShader(Int32 shaderObj) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Compiles a shader object @@ -9800,7 +9800,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glCompileShaderARB")] [CLSCompliant(false)] - public static void CompileShader(UInt32 shaderObj) { throw new NotImplementedException(); } + public static void CompileShader(UInt32 shaderObj) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -9809,7 +9809,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glCompileShaderIncludeARB")] [CLSCompliant(false)] - public static void CompileShaderInclude(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] Int32[] length) { throw new NotImplementedException(); } + public static void CompileShaderInclude(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -9818,7 +9818,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glCompileShaderIncludeARB")] [CLSCompliant(false)] - public static void CompileShaderInclude(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new NotImplementedException(); } + public static void CompileShaderInclude(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -9827,7 +9827,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glCompileShaderIncludeARB")] [CLSCompliant(false)] - public static unsafe void CompileShaderInclude(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] Int32* length) { throw new NotImplementedException(); } + public static unsafe void CompileShaderInclude(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -9836,7 +9836,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glCompileShaderIncludeARB")] [CLSCompliant(false)] - public static void CompileShaderInclude(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] Int32[] length) { throw new NotImplementedException(); } + public static void CompileShaderInclude(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -9845,7 +9845,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glCompileShaderIncludeARB")] [CLSCompliant(false)] - public static void CompileShaderInclude(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new NotImplementedException(); } + public static void CompileShaderInclude(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -9854,7 +9854,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glCompileShaderIncludeARB")] [CLSCompliant(false)] - public static unsafe void CompileShaderInclude(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] Int32* length) { throw new NotImplementedException(); } + public static unsafe void CompileShaderInclude(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a one-dimensional texture image in a compressed format @@ -9881,7 +9881,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexImage1DARB")] - public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a one-dimensional texture image in a compressed format @@ -9911,7 +9911,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a one-dimensional texture image in a compressed format @@ -9941,7 +9941,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a one-dimensional texture image in a compressed format @@ -9971,7 +9971,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a one-dimensional texture image in a compressed format @@ -10000,7 +10000,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexImage1DARB")] public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a two-dimensional texture image in a compressed format @@ -10030,7 +10030,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexImage2DARB")] - public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a two-dimensional texture image in a compressed format @@ -10063,7 +10063,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a two-dimensional texture image in a compressed format @@ -10096,7 +10096,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a two-dimensional texture image in a compressed format @@ -10129,7 +10129,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a two-dimensional texture image in a compressed format @@ -10161,7 +10161,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexImage2DARB")] public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a three-dimensional texture image in a compressed format @@ -10194,7 +10194,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexImage3DARB")] - public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a three-dimensional texture image in a compressed format @@ -10230,7 +10230,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a three-dimensional texture image in a compressed format @@ -10266,7 +10266,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a three-dimensional texture image in a compressed format @@ -10302,7 +10302,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a three-dimensional texture image in a compressed format @@ -10337,7 +10337,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexImage3DARB")] public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a one-dimensional texture subimage in a compressed format @@ -10364,7 +10364,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexSubImage1DARB")] - public static void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a one-dimensional texture subimage in a compressed format @@ -10394,7 +10394,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a one-dimensional texture subimage in a compressed format @@ -10424,7 +10424,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a one-dimensional texture subimage in a compressed format @@ -10454,7 +10454,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a one-dimensional texture subimage in a compressed format @@ -10483,7 +10483,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexSubImage1DARB")] public static void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a two-dimensional texture subimage in a compressed format @@ -10516,7 +10516,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexSubImage2DARB")] - public static void CompressedTexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a two-dimensional texture subimage in a compressed format @@ -10552,7 +10552,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a two-dimensional texture subimage in a compressed format @@ -10588,7 +10588,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a two-dimensional texture subimage in a compressed format @@ -10624,7 +10624,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a two-dimensional texture subimage in a compressed format @@ -10659,7 +10659,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexSubImage2DARB")] public static void CompressedTexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a three-dimensional texture subimage in a compressed format @@ -10698,7 +10698,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexSubImage3DARB")] - public static void CompressedTexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a three-dimensional texture subimage in a compressed format @@ -10740,7 +10740,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a three-dimensional texture subimage in a compressed format @@ -10782,7 +10782,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a three-dimensional texture subimage in a compressed format @@ -10824,7 +10824,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a three-dimensional texture subimage in a compressed format @@ -10865,16 +10865,16 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexSubImage3DARB")] public static void CompressedTexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glCreateProgramObjectARB")] - public static Int32 CreateProgramObject() { throw new NotImplementedException(); } + public static Int32 CreateProgramObject() { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glCreateShaderObjectARB")] - public static Int32 CreateShaderObject(OpenTK.Graphics.OpenGL.ArbShaderObjects shaderType) { throw new NotImplementedException(); } + public static Int32 CreateShaderObject(OpenTK.Graphics.OpenGL.ArbShaderObjects shaderType) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_cl_event] /// @@ -10882,7 +10882,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_cl_event", Version = "", EntryPoint = "glCreateSyncFromCLeventARB")] [CLSCompliant(false)] - public static IntPtr CreateSyncFromCLevent([OutAttribute] IntPtr[] context, [OutAttribute] IntPtr[] @event, Int32 flags) { throw new NotImplementedException(); } + public static IntPtr CreateSyncFromCLevent([OutAttribute] IntPtr[] context, [OutAttribute] IntPtr[] @event, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_cl_event] /// @@ -10890,7 +10890,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_cl_event", Version = "", EntryPoint = "glCreateSyncFromCLeventARB")] [CLSCompliant(false)] - public static IntPtr CreateSyncFromCLevent([OutAttribute] IntPtr[] context, [OutAttribute] IntPtr[] @event, UInt32 flags) { throw new NotImplementedException(); } + public static IntPtr CreateSyncFromCLevent([OutAttribute] IntPtr[] context, [OutAttribute] IntPtr[] @event, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_cl_event] /// @@ -10898,7 +10898,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_cl_event", Version = "", EntryPoint = "glCreateSyncFromCLeventARB")] [CLSCompliant(false)] - public static IntPtr CreateSyncFromCLevent([OutAttribute] out IntPtr context, [OutAttribute] out IntPtr @event, Int32 flags) { throw new NotImplementedException(); } + public static IntPtr CreateSyncFromCLevent([OutAttribute] out IntPtr context, [OutAttribute] out IntPtr @event, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_cl_event] /// @@ -10906,7 +10906,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_cl_event", Version = "", EntryPoint = "glCreateSyncFromCLeventARB")] [CLSCompliant(false)] - public static IntPtr CreateSyncFromCLevent([OutAttribute] out IntPtr context, [OutAttribute] out IntPtr @event, UInt32 flags) { throw new NotImplementedException(); } + public static IntPtr CreateSyncFromCLevent([OutAttribute] out IntPtr context, [OutAttribute] out IntPtr @event, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_cl_event] /// @@ -10914,7 +10914,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_cl_event", Version = "", EntryPoint = "glCreateSyncFromCLeventARB")] [CLSCompliant(false)] - public static unsafe IntPtr CreateSyncFromCLevent([OutAttribute] IntPtr* context, [OutAttribute] IntPtr* @event, Int32 flags) { throw new NotImplementedException(); } + public static unsafe IntPtr CreateSyncFromCLevent([OutAttribute] IntPtr* context, [OutAttribute] IntPtr* @event, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_cl_event] /// @@ -10922,12 +10922,12 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_cl_event", Version = "", EntryPoint = "glCreateSyncFromCLeventARB")] [CLSCompliant(false)] - public static unsafe IntPtr CreateSyncFromCLevent([OutAttribute] IntPtr* context, [OutAttribute] IntPtr* @event, UInt32 flags) { throw new NotImplementedException(); } + public static unsafe IntPtr CreateSyncFromCLevent([OutAttribute] IntPtr* context, [OutAttribute] IntPtr* @event, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glCurrentPaletteMatrixARB")] - public static void CurrentPaletteMatrix(Int32 index) { throw new NotImplementedException(); } + public static void CurrentPaletteMatrix(Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Specify a callback to receive debugging messages from the GL @@ -10939,7 +10939,7 @@ namespace OpenTK.Graphics.OpenGL /// A user supplied pointer that will be passed on each invocation of callback. /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageCallbackARB")] - public static void DebugMessageCallback(DebugProcArb callback, [CountAttribute(Computed = "callback")] IntPtr userParam) { throw new NotImplementedException(); } + public static void DebugMessageCallback(DebugProcArb callback, [CountAttribute(Computed = "callback")] IntPtr userParam) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Specify a callback to receive debugging messages from the GL @@ -10954,7 +10954,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcArb callback, [InAttribute, OutAttribute, CountAttribute(Computed = "callback")] T1[] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Specify a callback to receive debugging messages from the GL @@ -10969,7 +10969,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcArb callback, [InAttribute, OutAttribute, CountAttribute(Computed = "callback")] T1[,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Specify a callback to receive debugging messages from the GL @@ -10984,7 +10984,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcArb callback, [InAttribute, OutAttribute, CountAttribute(Computed = "callback")] T1[,,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Specify a callback to receive debugging messages from the GL @@ -10998,7 +10998,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageCallbackARB")] public static void DebugMessageCallback(DebugProcArb callback, [InAttribute, OutAttribute, CountAttribute(Computed = "callback")] ref T1 userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Control the reporting of debug messages in a debug context @@ -11023,7 +11023,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageControlARB")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.OpenGL.ArbDebugOutput source, OpenTK.Graphics.OpenGL.ArbDebugOutput type, OpenTK.Graphics.OpenGL.ArbDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL.ArbDebugOutput source, OpenTK.Graphics.OpenGL.ArbDebugOutput type, OpenTK.Graphics.OpenGL.ArbDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Control the reporting of debug messages in a debug context @@ -11048,7 +11048,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageControlARB")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.OpenGL.ArbDebugOutput source, OpenTK.Graphics.OpenGL.ArbDebugOutput type, OpenTK.Graphics.OpenGL.ArbDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL.ArbDebugOutput source, OpenTK.Graphics.OpenGL.ArbDebugOutput type, OpenTK.Graphics.OpenGL.ArbDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Control the reporting of debug messages in a debug context @@ -11073,7 +11073,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageControlARB")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL.ArbDebugOutput source, OpenTK.Graphics.OpenGL.ArbDebugOutput type, OpenTK.Graphics.OpenGL.ArbDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL.ArbDebugOutput source, OpenTK.Graphics.OpenGL.ArbDebugOutput type, OpenTK.Graphics.OpenGL.ArbDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Control the reporting of debug messages in a debug context @@ -11098,7 +11098,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageControlARB")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.OpenGL.ArbDebugOutput source, OpenTK.Graphics.OpenGL.ArbDebugOutput type, OpenTK.Graphics.OpenGL.ArbDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL.ArbDebugOutput source, OpenTK.Graphics.OpenGL.ArbDebugOutput type, OpenTK.Graphics.OpenGL.ArbDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Control the reporting of debug messages in a debug context @@ -11123,7 +11123,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageControlARB")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.OpenGL.ArbDebugOutput source, OpenTK.Graphics.OpenGL.ArbDebugOutput type, OpenTK.Graphics.OpenGL.ArbDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL.ArbDebugOutput source, OpenTK.Graphics.OpenGL.ArbDebugOutput type, OpenTK.Graphics.OpenGL.ArbDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Control the reporting of debug messages in a debug context @@ -11148,7 +11148,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageControlARB")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL.ArbDebugOutput source, OpenTK.Graphics.OpenGL.ArbDebugOutput type, OpenTK.Graphics.OpenGL.ArbDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL.ArbDebugOutput source, OpenTK.Graphics.OpenGL.ArbDebugOutput type, OpenTK.Graphics.OpenGL.ArbDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Inject an application-supplied message into the debug message queue @@ -11173,7 +11173,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageInsertARB")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.ArbDebugOutput source, OpenTK.Graphics.OpenGL.ArbDebugOutput type, Int32 id, OpenTK.Graphics.OpenGL.ArbDebugOutput severity, Int32 length, [CountAttribute(Parameter = "length")] String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.ArbDebugOutput source, OpenTK.Graphics.OpenGL.ArbDebugOutput type, Int32 id, OpenTK.Graphics.OpenGL.ArbDebugOutput severity, Int32 length, [CountAttribute(Parameter = "length")] String buf) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Inject an application-supplied message into the debug message queue @@ -11198,7 +11198,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageInsertARB")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.ArbDebugOutput source, OpenTK.Graphics.OpenGL.ArbDebugOutput type, UInt32 id, OpenTK.Graphics.OpenGL.ArbDebugOutput severity, Int32 length, [CountAttribute(Parameter = "length")] String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.ArbDebugOutput source, OpenTK.Graphics.OpenGL.ArbDebugOutput type, UInt32 id, OpenTK.Graphics.OpenGL.ArbDebugOutput severity, Int32 length, [CountAttribute(Parameter = "length")] String buf) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Delete named buffer objects @@ -11208,7 +11208,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glDeleteBuffersARB")] [CLSCompliant(false)] - public static void DeleteBuffer([CountAttribute(Parameter = "n")] Int32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffer([CountAttribute(Parameter = "n")] Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Delete named buffer objects @@ -11218,7 +11218,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glDeleteBuffersARB")] [CLSCompliant(false)] - public static void DeleteBuffer([CountAttribute(Parameter = "n")] UInt32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffer([CountAttribute(Parameter = "n")] UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Delete named buffer objects @@ -11231,7 +11231,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glDeleteBuffersARB")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Delete named buffer objects @@ -11244,7 +11244,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glDeleteBuffersARB")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Delete named buffer objects @@ -11257,7 +11257,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glDeleteBuffersARB")] [CLSCompliant(false)] - public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* buffers) { throw new NotImplementedException(); } + public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Delete named buffer objects @@ -11270,7 +11270,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glDeleteBuffersARB")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Delete named buffer objects @@ -11283,7 +11283,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glDeleteBuffersARB")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Delete named buffer objects @@ -11296,25 +11296,25 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glDeleteBuffersARB")] [CLSCompliant(false)] - public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* buffers) { throw new NotImplementedException(); } + public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// /// [length: namelen] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glDeleteNamedStringARB")] - public static void DeleteNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name) { throw new NotImplementedException(); } + public static void DeleteNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glDeleteObjectARB")] [CLSCompliant(false)] - public static void DeleteObject(Int32 obj) { throw new NotImplementedException(); } + public static void DeleteObject(Int32 obj) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glDeleteObjectARB")] [CLSCompliant(false)] - public static void DeleteObject(UInt32 obj) { throw new NotImplementedException(); } + public static void DeleteObject(UInt32 obj) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// Deletes a program object @@ -11324,7 +11324,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glDeleteProgramsARB")] [CLSCompliant(false)] - public static void DeleteProgram([CountAttribute(Parameter = "n")] Int32 programs) { throw new NotImplementedException(); } + public static void DeleteProgram([CountAttribute(Parameter = "n")] Int32 programs) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// Deletes a program object @@ -11334,7 +11334,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glDeleteProgramsARB")] [CLSCompliant(false)] - public static void DeleteProgram([CountAttribute(Parameter = "n")] UInt32 programs) { throw new NotImplementedException(); } + public static void DeleteProgram([CountAttribute(Parameter = "n")] UInt32 programs) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// Deletes a program object @@ -11345,7 +11345,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glDeleteProgramsARB")] [CLSCompliant(false)] - public static void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] Int32[] programs) { throw new NotImplementedException(); } + public static void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] Int32[] programs) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// Deletes a program object @@ -11356,7 +11356,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glDeleteProgramsARB")] [CLSCompliant(false)] - public static void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 programs) { throw new NotImplementedException(); } + public static void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 programs) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// Deletes a program object @@ -11367,7 +11367,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glDeleteProgramsARB")] [CLSCompliant(false)] - public static unsafe void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] Int32* programs) { throw new NotImplementedException(); } + public static unsafe void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] Int32* programs) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// Deletes a program object @@ -11378,7 +11378,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glDeleteProgramsARB")] [CLSCompliant(false)] - public static void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] programs) { throw new NotImplementedException(); } + public static void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] programs) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// Deletes a program object @@ -11389,7 +11389,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glDeleteProgramsARB")] [CLSCompliant(false)] - public static void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 programs) { throw new NotImplementedException(); } + public static void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 programs) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// Deletes a program object @@ -11400,7 +11400,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glDeleteProgramsARB")] [CLSCompliant(false)] - public static unsafe void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] UInt32* programs) { throw new NotImplementedException(); } + public static unsafe void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] UInt32* programs) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Delete named query objects @@ -11410,7 +11410,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glDeleteQueriesARB")] [CLSCompliant(false)] - public static void DeleteQuery([CountAttribute(Parameter = "n")] Int32 ids) { throw new NotImplementedException(); } + public static void DeleteQuery([CountAttribute(Parameter = "n")] Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Delete named query objects @@ -11420,7 +11420,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glDeleteQueriesARB")] [CLSCompliant(false)] - public static void DeleteQuery([CountAttribute(Parameter = "n")] UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteQuery([CountAttribute(Parameter = "n")] UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Delete named query objects @@ -11433,7 +11433,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glDeleteQueriesARB")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Delete named query objects @@ -11446,7 +11446,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glDeleteQueriesARB")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Delete named query objects @@ -11459,7 +11459,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glDeleteQueriesARB")] [CLSCompliant(false)] - public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Delete named query objects @@ -11472,7 +11472,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glDeleteQueriesARB")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Delete named query objects @@ -11485,7 +11485,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glDeleteQueriesARB")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Delete named query objects @@ -11498,33 +11498,33 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glDeleteQueriesARB")] [CLSCompliant(false)] - public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glDetachObjectARB")] [CLSCompliant(false)] - public static void DetachObject(Int32 containerObj, Int32 attachedObj) { throw new NotImplementedException(); } + public static void DetachObject(Int32 containerObj, Int32 attachedObj) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glDetachObjectARB")] [CLSCompliant(false)] - public static void DetachObject(UInt32 containerObj, UInt32 attachedObj) { throw new NotImplementedException(); } + public static void DetachObject(UInt32 containerObj, UInt32 attachedObj) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glDisableVertexAttribArrayARB")] [CLSCompliant(false)] - public static void DisableVertexAttribArray(Int32 index) { throw new NotImplementedException(); } + public static void DisableVertexAttribArray(Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glDisableVertexAttribArrayARB")] [CLSCompliant(false)] - public static void DisableVertexAttribArray(UInt32 index) { throw new NotImplementedException(); } + public static void DisableVertexAttribArray(UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_compute_variable_group_size] /// @@ -11535,7 +11535,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_compute_variable_group_size", Version = "", EntryPoint = "glDispatchComputeGroupSizeARB")] [CLSCompliant(false)] - public static void DispatchComputeGroupSize(Int32 num_groups_x, Int32 num_groups_y, Int32 num_groups_z, Int32 group_size_x, Int32 group_size_y, Int32 group_size_z) { throw new NotImplementedException(); } + public static void DispatchComputeGroupSize(Int32 num_groups_x, Int32 num_groups_y, Int32 num_groups_z, Int32 group_size_x, Int32 group_size_y, Int32 group_size_z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_compute_variable_group_size] /// @@ -11546,7 +11546,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_compute_variable_group_size", Version = "", EntryPoint = "glDispatchComputeGroupSizeARB")] [CLSCompliant(false)] - public static void DispatchComputeGroupSize(UInt32 num_groups_x, UInt32 num_groups_y, UInt32 num_groups_z, UInt32 group_size_x, UInt32 group_size_y, UInt32 group_size_z) { throw new NotImplementedException(); } + public static void DispatchComputeGroupSize(UInt32 num_groups_x, UInt32 num_groups_y, UInt32 num_groups_z, UInt32 group_size_x, UInt32 group_size_y, UInt32 group_size_z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_instanced] /// Draw multiple instances of a range of elements @@ -11565,7 +11565,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_draw_instanced", Version = "", EntryPoint = "glDrawArraysInstancedARB")] - public static void DrawArraysInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 first, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 first, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_instanced] /// Draw multiple instances of a range of elements @@ -11583,7 +11583,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "ARB_draw_instanced", Version = "", EntryPoint = "glDrawArraysInstancedARB")] - public static void DrawArraysInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 first, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 first, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -11596,7 +11596,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_draw_buffers", Version = "", EntryPoint = "glDrawBuffersARB")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL.ArbDrawBuffers[] bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL.ArbDrawBuffers[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -11609,7 +11609,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_draw_buffers", Version = "", EntryPoint = "glDrawBuffersARB")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.OpenGL.ArbDrawBuffers bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.OpenGL.ArbDrawBuffers bufs) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -11622,7 +11622,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_draw_buffers", Version = "", EntryPoint = "glDrawBuffersARB")] [CLSCompliant(false)] - public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL.ArbDrawBuffers* bufs) { throw new NotImplementedException(); } + public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL.ArbDrawBuffers* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_instanced] /// Draw multiple instances of a set of elements @@ -11644,7 +11644,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedARB")] - public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_instanced] /// Draw multiple instances of a set of elements @@ -11669,7 +11669,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_instanced] /// Draw multiple instances of a set of elements @@ -11694,7 +11694,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_instanced] /// Draw multiple instances of a set of elements @@ -11719,7 +11719,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_instanced] /// Draw multiple instances of a set of elements @@ -11743,7 +11743,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedARB")] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_instanced] /// Draw multiple instances of a set of elements @@ -11764,7 +11764,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "ARB_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedARB")] - public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_instanced] /// Draw multiple instances of a set of elements @@ -11788,7 +11788,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_instanced] /// Draw multiple instances of a set of elements @@ -11812,7 +11812,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_instanced] /// Draw multiple instances of a set of elements @@ -11836,7 +11836,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_instanced] /// Draw multiple instances of a set of elements @@ -11859,7 +11859,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedARB")] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Enable or disable a generic vertex attribute array @@ -11869,7 +11869,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glEnableVertexAttribArrayARB")] [CLSCompliant(false)] - public static void EnableVertexAttribArray(Int32 index) { throw new NotImplementedException(); } + public static void EnableVertexAttribArray(Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Enable or disable a generic vertex attribute array @@ -11879,16 +11879,16 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glEnableVertexAttribArrayARB")] [CLSCompliant(false)] - public static void EnableVertexAttribArray(UInt32 index) { throw new NotImplementedException(); } + public static void EnableVertexAttribArray(UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glEndQueryARB")] - public static void EndQuery(OpenTK.Graphics.OpenGL.ArbOcclusionQuery target) { throw new NotImplementedException(); } + public static void EndQuery(OpenTK.Graphics.OpenGL.ArbOcclusionQuery target) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glEvaluateDepthValuesARB")] - public static void EvaluateDepthValues() { throw new NotImplementedException(); } + public static void EvaluateDepthValues() { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -11897,7 +11897,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.ArbSampleLocations target, Int32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.ArbSampleLocations target, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -11906,7 +11906,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.ArbSampleLocations target, Int32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.ArbSampleLocations target, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -11915,7 +11915,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.ArbSampleLocations target, Int32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.ArbSampleLocations target, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -11924,7 +11924,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.ArbSampleLocations target, UInt32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.ArbSampleLocations target, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -11933,7 +11933,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.ArbSampleLocations target, UInt32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.ArbSampleLocations target, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -11942,7 +11942,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.ArbSampleLocations target, UInt32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.ArbSampleLocations target, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_geometry_shader4] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -11961,7 +11961,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_geometry_shader4", Version = "", EntryPoint = "glFramebufferTextureARB")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_geometry_shader4] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -11980,7 +11980,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_geometry_shader4", Version = "", EntryPoint = "glFramebufferTextureARB")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_geometry_shader4] /// @@ -11990,7 +11990,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_geometry_shader4", Version = "", EntryPoint = "glFramebufferTextureFaceARB")] [CLSCompliant(false)] - public static void FramebufferTextureFace(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.TextureTarget face) { throw new NotImplementedException(); } + public static void FramebufferTextureFace(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.TextureTarget face) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_geometry_shader4] /// @@ -12000,7 +12000,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_geometry_shader4", Version = "", EntryPoint = "glFramebufferTextureFaceARB")] [CLSCompliant(false)] - public static void FramebufferTextureFace(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.TextureTarget face) { throw new NotImplementedException(); } + public static void FramebufferTextureFace(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.TextureTarget face) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_geometry_shader4] /// Attach a single layer of a texture to a framebuffer @@ -12022,7 +12022,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_geometry_shader4", Version = "", EntryPoint = "glFramebufferTextureLayerARB")] [CLSCompliant(false)] - public static void FramebufferTextureLayer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } + public static void FramebufferTextureLayer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_geometry_shader4] /// Attach a single layer of a texture to a framebuffer @@ -12044,14 +12044,14 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_geometry_shader4", Version = "", EntryPoint = "glFramebufferTextureLayerARB")] [CLSCompliant(false)] - public static void FramebufferTextureLayer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } + public static void FramebufferTextureLayer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Generate buffer object names /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGenBuffersARB")] [CLSCompliant(false)] - public static Int32 GenBuffer() { throw new NotImplementedException(); } + public static Int32 GenBuffer() { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Generate buffer object names @@ -12064,7 +12064,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGenBuffersARB")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Generate buffer object names @@ -12077,7 +12077,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGenBuffersARB")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Generate buffer object names @@ -12090,7 +12090,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGenBuffersARB")] [CLSCompliant(false)] - public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* buffers) { throw new NotImplementedException(); } + public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Generate buffer object names @@ -12103,7 +12103,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGenBuffersARB")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Generate buffer object names @@ -12116,7 +12116,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGenBuffersARB")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Generate buffer object names @@ -12129,61 +12129,61 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGenBuffersARB")] [CLSCompliant(false)] - public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* buffers) { throw new NotImplementedException(); } + public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGenProgramsARB")] [CLSCompliant(false)] - public static Int32 GenProgram() { throw new NotImplementedException(); } + public static Int32 GenProgram() { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// /// [length: n] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGenProgramsARB")] [CLSCompliant(false)] - public static void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] programs) { throw new NotImplementedException(); } + public static void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] programs) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// /// [length: n] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGenProgramsARB")] [CLSCompliant(false)] - public static void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 programs) { throw new NotImplementedException(); } + public static void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 programs) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// /// [length: n] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGenProgramsARB")] [CLSCompliant(false)] - public static unsafe void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* programs) { throw new NotImplementedException(); } + public static unsafe void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* programs) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// /// [length: n] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGenProgramsARB")] [CLSCompliant(false)] - public static void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] programs) { throw new NotImplementedException(); } + public static void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] programs) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// /// [length: n] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGenProgramsARB")] [CLSCompliant(false)] - public static void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 programs) { throw new NotImplementedException(); } + public static void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 programs) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// /// [length: n] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGenProgramsARB")] [CLSCompliant(false)] - public static unsafe void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* programs) { throw new NotImplementedException(); } + public static unsafe void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* programs) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Generate query object names /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGenQueriesARB")] [CLSCompliant(false)] - public static Int32 GenQuery() { throw new NotImplementedException(); } + public static Int32 GenQuery() { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Generate query object names @@ -12196,7 +12196,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGenQueriesARB")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Generate query object names @@ -12209,7 +12209,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGenQueriesARB")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Generate query object names @@ -12222,7 +12222,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGenQueriesARB")] [CLSCompliant(false)] - public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Generate query object names @@ -12235,7 +12235,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGenQueriesARB")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Generate query object names @@ -12248,7 +12248,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGenQueriesARB")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Generate query object names @@ -12261,7 +12261,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGenQueriesARB")] [CLSCompliant(false)] - public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_shader] /// Returns information about an active attribute variable for the specified program object @@ -12289,7 +12289,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_shader", Version = "", EntryPoint = "glGetActiveAttribARB")] [CLSCompliant(false)] - public static void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ArbVertexShader type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new NotImplementedException(); } + public static void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ArbVertexShader type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_shader] /// Returns information about an active attribute variable for the specified program object @@ -12317,7 +12317,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_shader", Version = "", EntryPoint = "glGetActiveAttribARB")] [CLSCompliant(false)] - public static unsafe void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ArbVertexShader* type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ArbVertexShader* type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_shader] /// Returns information about an active attribute variable for the specified program object @@ -12345,7 +12345,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_shader", Version = "", EntryPoint = "glGetActiveAttribARB")] [CLSCompliant(false)] - public static void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ArbVertexShader type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new NotImplementedException(); } + public static void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ArbVertexShader type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_shader] /// Returns information about an active attribute variable for the specified program object @@ -12373,7 +12373,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_shader", Version = "", EntryPoint = "glGetActiveAttribARB")] [CLSCompliant(false)] - public static unsafe void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ArbVertexShader* type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ArbVertexShader* type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns information about an active uniform variable for the specified program object @@ -12401,7 +12401,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetActiveUniformARB")] [CLSCompliant(false)] - public static void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ArbShaderObjects type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new NotImplementedException(); } + public static void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ArbShaderObjects type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns information about an active uniform variable for the specified program object @@ -12429,7 +12429,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetActiveUniformARB")] [CLSCompliant(false)] - public static unsafe void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ArbShaderObjects* type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ArbShaderObjects* type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns information about an active uniform variable for the specified program object @@ -12457,7 +12457,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetActiveUniformARB")] [CLSCompliant(false)] - public static void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ArbShaderObjects type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new NotImplementedException(); } + public static void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ArbShaderObjects type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns information about an active uniform variable for the specified program object @@ -12485,7 +12485,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetActiveUniformARB")] [CLSCompliant(false)] - public static unsafe void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ArbShaderObjects* type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ArbShaderObjects* type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -12494,7 +12494,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: maxCount] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetAttachedObjectsARB")] [CLSCompliant(false)] - public static void GetAttachedObjects(Int32 containerObj, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32[] obj) { throw new NotImplementedException(); } + public static void GetAttachedObjects(Int32 containerObj, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32[] obj) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -12503,7 +12503,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: maxCount] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetAttachedObjectsARB")] [CLSCompliant(false)] - public static void GetAttachedObjects(Int32 containerObj, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out Int32 obj) { throw new NotImplementedException(); } + public static void GetAttachedObjects(Int32 containerObj, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out Int32 obj) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -12512,7 +12512,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: maxCount] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetAttachedObjectsARB")] [CLSCompliant(false)] - public static unsafe void GetAttachedObjects(Int32 containerObj, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32* obj) { throw new NotImplementedException(); } + public static unsafe void GetAttachedObjects(Int32 containerObj, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32* obj) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -12521,7 +12521,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: maxCount] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetAttachedObjectsARB")] [CLSCompliant(false)] - public static void GetAttachedObjects(UInt32 containerObj, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32[] obj) { throw new NotImplementedException(); } + public static void GetAttachedObjects(UInt32 containerObj, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32[] obj) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -12530,7 +12530,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: maxCount] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetAttachedObjectsARB")] [CLSCompliant(false)] - public static void GetAttachedObjects(UInt32 containerObj, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out UInt32 obj) { throw new NotImplementedException(); } + public static void GetAttachedObjects(UInt32 containerObj, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out UInt32 obj) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -12539,7 +12539,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: maxCount] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetAttachedObjectsARB")] [CLSCompliant(false)] - public static unsafe void GetAttachedObjects(UInt32 containerObj, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32* obj) { throw new NotImplementedException(); } + public static unsafe void GetAttachedObjects(UInt32 containerObj, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32* obj) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_shader] /// Returns the location of an attribute variable @@ -12552,7 +12552,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_shader", Version = "", EntryPoint = "glGetAttribLocationARB")] [CLSCompliant(false)] - public static Int32 GetAttribLocation(Int32 programObj, String name) { throw new NotImplementedException(); } + public static Int32 GetAttribLocation(Int32 programObj, String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_shader] /// Returns the location of an attribute variable @@ -12565,7 +12565,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_shader", Version = "", EntryPoint = "glGetAttribLocationARB")] [CLSCompliant(false)] - public static Int32 GetAttribLocation(UInt32 programObj, String name) { throw new NotImplementedException(); } + public static Int32 GetAttribLocation(UInt32 programObj, String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Return parameters of a buffer object @@ -12582,7 +12582,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use BufferTargetArb overload instead")] [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGetBufferParameterivARB")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.OpenGL.ArbVertexBufferObject target, OpenTK.Graphics.OpenGL.BufferParameterNameArb pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL.ArbVertexBufferObject target, OpenTK.Graphics.OpenGL.BufferParameterNameArb pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Return parameters of a buffer object @@ -12599,7 +12599,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use BufferTargetArb overload instead")] [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGetBufferParameterivARB")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.OpenGL.ArbVertexBufferObject target, OpenTK.Graphics.OpenGL.BufferParameterNameArb pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL.ArbVertexBufferObject target, OpenTK.Graphics.OpenGL.BufferParameterNameArb pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Return parameters of a buffer object @@ -12616,7 +12616,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use BufferTargetArb overload instead")] [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGetBufferParameterivARB")] [CLSCompliant(false)] - public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL.ArbVertexBufferObject target, OpenTK.Graphics.OpenGL.BufferParameterNameArb pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL.ArbVertexBufferObject target, OpenTK.Graphics.OpenGL.BufferParameterNameArb pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Return parameters of a buffer object @@ -12632,7 +12632,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGetBufferParameterivARB")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.BufferParameterNameArb pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.BufferParameterNameArb pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Return parameters of a buffer object @@ -12648,7 +12648,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGetBufferParameterivARB")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.BufferParameterNameArb pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.BufferParameterNameArb pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Return parameters of a buffer object @@ -12664,7 +12664,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGetBufferParameterivARB")] [CLSCompliant(false)] - public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.BufferParameterNameArb pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.BufferParameterNameArb pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// @@ -12672,7 +12672,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [Obsolete("Use BufferTargetArb overload instead")] [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGetBufferPointervARB")] - public static void GetBufferPointer(OpenTK.Graphics.OpenGL.ArbVertexBufferObject target, OpenTK.Graphics.OpenGL.BufferPointerNameArb pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetBufferPointer(OpenTK.Graphics.OpenGL.ArbVertexBufferObject target, OpenTK.Graphics.OpenGL.BufferPointerNameArb pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// @@ -12683,7 +12683,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.OpenGL.ArbVertexBufferObject target, OpenTK.Graphics.OpenGL.BufferPointerNameArb pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// @@ -12694,7 +12694,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.OpenGL.ArbVertexBufferObject target, OpenTK.Graphics.OpenGL.BufferPointerNameArb pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// @@ -12705,7 +12705,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.OpenGL.ArbVertexBufferObject target, OpenTK.Graphics.OpenGL.BufferPointerNameArb pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// @@ -12715,14 +12715,14 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGetBufferPointervARB")] public static void GetBufferPointer(OpenTK.Graphics.OpenGL.ArbVertexBufferObject target, OpenTK.Graphics.OpenGL.BufferPointerNameArb pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGetBufferPointervARB")] - public static void GetBufferPointer(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.BufferPointerNameArb pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetBufferPointer(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.BufferPointerNameArb pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// @@ -12732,7 +12732,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.BufferPointerNameArb pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// @@ -12742,7 +12742,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.BufferPointerNameArb pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// @@ -12752,7 +12752,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.BufferPointerNameArb pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// @@ -12761,7 +12761,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGetBufferPointervARB")] public static void GetBufferPointer(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.BufferPointerNameArb pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Returns a subset of a buffer object's data store @@ -12779,7 +12779,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the location where buffer object data is returned. /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGetBufferSubDataARB")] - public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Returns a subset of a buffer object's data store @@ -12800,7 +12800,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Returns a subset of a buffer object's data store @@ -12821,7 +12821,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Returns a subset of a buffer object's data store @@ -12842,7 +12842,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Returns a subset of a buffer object's data store @@ -12862,7 +12862,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGetBufferSubDataARB")] public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Returns a subset of a buffer object's data store @@ -12880,7 +12880,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the location where buffer object data is returned. /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGetBufferSubDataARB")] - public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, IntPtr size, [OutAttribute, CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, IntPtr size, [OutAttribute, CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Returns a subset of a buffer object's data store @@ -12901,7 +12901,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Returns a subset of a buffer object's data store @@ -12922,7 +12922,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Returns a subset of a buffer object's data store @@ -12943,7 +12943,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Returns a subset of a buffer object's data store @@ -12963,7 +12963,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGetBufferSubDataARB")] public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Return a compressed texture image @@ -12978,7 +12978,7 @@ namespace OpenTK.Graphics.OpenGL /// Returns the compressed texture image. /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glGetCompressedTexImageARB")] - public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, [OutAttribute, CountAttribute(Computed = "target,level")] IntPtr img) { throw new NotImplementedException(); } + public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, [OutAttribute, CountAttribute(Computed = "target,level")] IntPtr img) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Return a compressed texture image @@ -12996,7 +12996,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level")] T2[] img) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Return a compressed texture image @@ -13014,7 +13014,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level")] T2[,] img) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Return a compressed texture image @@ -13032,7 +13032,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level")] T2[,,] img) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Return a compressed texture image @@ -13049,7 +13049,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glGetCompressedTexImageARB")] public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level")] ref T2 img) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Retrieve messages from the debug message log @@ -13080,7 +13080,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Retrieve messages from the debug message log @@ -13111,7 +13111,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.ArbDebugOutput sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.ArbDebugOutput types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.ArbDebugOutput severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.ArbDebugOutput sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.ArbDebugOutput types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.ArbDebugOutput severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Retrieve messages from the debug message log @@ -13142,7 +13142,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Retrieve messages from the debug message log @@ -13173,7 +13173,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Retrieve messages from the debug message log @@ -13204,7 +13204,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.ArbDebugOutput sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.ArbDebugOutput types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.ArbDebugOutput severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.ArbDebugOutput sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.ArbDebugOutput types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.ArbDebugOutput severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Retrieve messages from the debug message log @@ -13235,16 +13235,16 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetGraphicsResetStatusARB")] - public static OpenTK.Graphics.OpenGL.ArbRobustness GetGraphicsResetStatus() { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.ArbRobustness GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetHandleARB")] - public static Int32 GetHandle(OpenTK.Graphics.OpenGL.ArbShaderObjects pname) { throw new NotImplementedException(); } + public static Int32 GetHandle(OpenTK.Graphics.OpenGL.ArbShaderObjects pname) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -13254,7 +13254,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetImageHandleARB")] [CLSCompliant(false)] - public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.ArbBindlessTexture format) { throw new NotImplementedException(); } + public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.ArbBindlessTexture format) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -13264,7 +13264,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetImageHandleARB")] [CLSCompliant(false)] - public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.ArbBindlessTexture format) { throw new NotImplementedException(); } + public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.ArbBindlessTexture format) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -13273,7 +13273,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: maxLength] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetInfoLogARB")] [CLSCompliant(false)] - public static void GetInfoLog(Int32 obj, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String infoLog) { throw new NotImplementedException(); } + public static void GetInfoLog(Int32 obj, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -13282,7 +13282,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: maxLength] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetInfoLogARB")] [CLSCompliant(false)] - public static unsafe void GetInfoLog(Int32 obj, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetInfoLog(Int32 obj, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -13291,7 +13291,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: maxLength] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetInfoLogARB")] [CLSCompliant(false)] - public static void GetInfoLog(UInt32 obj, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String infoLog) { throw new NotImplementedException(); } + public static void GetInfoLog(UInt32 obj, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -13300,7 +13300,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: maxLength] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetInfoLogARB")] [CLSCompliant(false)] - public static unsafe void GetInfoLog(UInt32 obj, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetInfoLog(UInt32 obj, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -13310,7 +13310,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glGetNamedStringARB")] [CLSCompliant(false)] - public static void GetNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 stringlen, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String @string) { throw new NotImplementedException(); } + public static void GetNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 stringlen, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String @string) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -13320,7 +13320,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glGetNamedStringARB")] [CLSCompliant(false)] - public static unsafe void GetNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* stringlen, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String @string) { throw new NotImplementedException(); } + public static unsafe void GetNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* stringlen, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String @string) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -13329,7 +13329,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glGetNamedStringivARB")] [CLSCompliant(false)] - public static void GetNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, OpenTK.Graphics.OpenGL.ArbShadingLanguageInclude pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, OpenTK.Graphics.OpenGL.ArbShadingLanguageInclude pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -13338,7 +13338,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glGetNamedStringivARB")] [CLSCompliant(false)] - public static void GetNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, OpenTK.Graphics.OpenGL.ArbShadingLanguageInclude pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, OpenTK.Graphics.OpenGL.ArbShadingLanguageInclude pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -13347,7 +13347,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glGetNamedStringivARB")] [CLSCompliant(false)] - public static unsafe void GetNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, OpenTK.Graphics.OpenGL.ArbShadingLanguageInclude pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, OpenTK.Graphics.OpenGL.ArbShadingLanguageInclude pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13356,7 +13356,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnColorTableARB")] - public static void GetnColorTable(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr table) { throw new NotImplementedException(); } + public static void GetnColorTable(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr table) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13368,7 +13368,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnColorTable(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] table) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13380,7 +13380,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnColorTable(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] table) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13392,7 +13392,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnColorTable(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] table) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13403,7 +13403,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnColorTableARB")] public static void GetnColorTable(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 table) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13411,7 +13411,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnCompressedTexImageARB")] - public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.ArbRobustness target, Int32 lod, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr img) { throw new NotImplementedException(); } + public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.ArbRobustness target, Int32 lod, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr img) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13422,7 +13422,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.ArbRobustness target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T3[] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13433,7 +13433,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.ArbRobustness target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T3[,] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13444,7 +13444,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.ArbRobustness target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T3[,,] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13454,7 +13454,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnCompressedTexImageARB")] public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.ArbRobustness target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T3 img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13463,7 +13463,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnConvolutionFilterARB")] - public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr image) { throw new NotImplementedException(); } + public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13475,7 +13475,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] image) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13487,7 +13487,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] image) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13499,7 +13499,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] image) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13510,7 +13510,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnConvolutionFilterARB")] public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 image) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13520,7 +13520,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnHistogramARB")] - public static void GetnHistogram(OpenTK.Graphics.OpenGL.ArbRobustness target, bool reset, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr values) { throw new NotImplementedException(); } + public static void GetnHistogram(OpenTK.Graphics.OpenGL.ArbRobustness target, bool reset, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13533,7 +13533,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnHistogram(OpenTK.Graphics.OpenGL.ArbRobustness target, bool reset, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13546,7 +13546,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnHistogram(OpenTK.Graphics.OpenGL.ArbRobustness target, bool reset, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[,] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13559,7 +13559,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnHistogram(OpenTK.Graphics.OpenGL.ArbRobustness target, bool reset, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[,,] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13571,7 +13571,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnHistogramARB")] public static void GetnHistogram(OpenTK.Graphics.OpenGL.ArbRobustness target, bool reset, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T5 values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13580,7 +13580,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapdvARB")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double[] v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13589,7 +13589,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapdvARB")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Double v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Double v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13598,7 +13598,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapdvARB")] [CLSCompliant(false)] - public static unsafe void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double* v) { throw new NotImplementedException(); } + public static unsafe void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13607,7 +13607,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapfvARB")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13616,7 +13616,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapfvARB")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13625,7 +13625,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapfvARB")] [CLSCompliant(false)] - public static unsafe void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* v) { throw new NotImplementedException(); } + public static unsafe void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13634,7 +13634,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapivARB")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13643,7 +13643,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapivARB")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13652,7 +13652,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapivARB")] [CLSCompliant(false)] - public static unsafe void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13662,7 +13662,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMinmaxARB")] - public static void GetnMinmax(OpenTK.Graphics.OpenGL.ArbRobustness target, bool reset, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr values) { throw new NotImplementedException(); } + public static void GetnMinmax(OpenTK.Graphics.OpenGL.ArbRobustness target, bool reset, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13675,7 +13675,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnMinmax(OpenTK.Graphics.OpenGL.ArbRobustness target, bool reset, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13688,7 +13688,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnMinmax(OpenTK.Graphics.OpenGL.ArbRobustness target, bool reset, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[,] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13701,7 +13701,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnMinmax(OpenTK.Graphics.OpenGL.ArbRobustness target, bool reset, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[,,] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13713,7 +13713,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMinmaxARB")] public static void GetnMinmax(OpenTK.Graphics.OpenGL.ArbRobustness target, bool reset, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T5 values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13721,7 +13721,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapfvARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13729,7 +13729,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapfvARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13737,7 +13737,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapfvARB")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* values) { throw new NotImplementedException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13745,7 +13745,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13753,7 +13753,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13761,7 +13761,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13769,7 +13769,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32[] values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13777,7 +13777,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out UInt32 values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out UInt32 values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13785,7 +13785,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32* values) { throw new NotImplementedException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32* values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13793,7 +13793,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int16[] values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int16[] values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13801,7 +13801,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int16 values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int16 values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13809,7 +13809,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int16* values) { throw new NotImplementedException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int16* values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13817,7 +13817,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt16[] values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt16[] values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13825,7 +13825,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out UInt16 values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out UInt16 values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13833,33 +13833,33 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt16* values) { throw new NotImplementedException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt16* values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPolygonStippleARB")] [CLSCompliant(false)] - public static Byte GetnPolygonStipple() { throw new NotImplementedException(); } + public static Byte GetnPolygonStipple() { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPolygonStippleARB")] [CLSCompliant(false)] - public static void GetnPolygonStipple(Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Byte[] pattern) { throw new NotImplementedException(); } + public static void GetnPolygonStipple(Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Byte[] pattern) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPolygonStippleARB")] [CLSCompliant(false)] - public static void GetnPolygonStipple(Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Byte pattern) { throw new NotImplementedException(); } + public static void GetnPolygonStipple(Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Byte pattern) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPolygonStippleARB")] [CLSCompliant(false)] - public static unsafe void GetnPolygonStipple(Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Byte* pattern) { throw new NotImplementedException(); } + public static unsafe void GetnPolygonStipple(Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Byte* pattern) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13871,7 +13871,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: columnBufSize] /// [length: 0] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnSeparableFilterARB")] - public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 rowBufSize, [OutAttribute, CountAttribute(Parameter = "rowBufSize")] IntPtr row, Int32 columnBufSize, [OutAttribute, CountAttribute(Parameter = "columnBufSize")] IntPtr column, [OutAttribute, CountAttribute(Count = 0)] IntPtr span) { throw new NotImplementedException(); } + public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 rowBufSize, [OutAttribute, CountAttribute(Parameter = "rowBufSize")] IntPtr row, Int32 columnBufSize, [OutAttribute, CountAttribute(Parameter = "columnBufSize")] IntPtr column, [OutAttribute, CountAttribute(Count = 0)] IntPtr span) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13888,7 +13888,7 @@ namespace OpenTK.Graphics.OpenGL where T4 : struct where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13905,7 +13905,7 @@ namespace OpenTK.Graphics.OpenGL where T4 : struct where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13922,7 +13922,7 @@ namespace OpenTK.Graphics.OpenGL where T4 : struct where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13938,7 +13938,7 @@ namespace OpenTK.Graphics.OpenGL where T4 : struct where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13948,7 +13948,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnTexImageARB")] - public static void GetnTexImage(OpenTK.Graphics.OpenGL.ArbRobustness target, Int32 level, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr img) { throw new NotImplementedException(); } + public static void GetnTexImage(OpenTK.Graphics.OpenGL.ArbRobustness target, Int32 level, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr img) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13961,7 +13961,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnTexImage(OpenTK.Graphics.OpenGL.ArbRobustness target, Int32 level, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[] img) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13974,7 +13974,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnTexImage(OpenTK.Graphics.OpenGL.ArbRobustness target, Int32 level, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[,] img) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13987,7 +13987,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnTexImage(OpenTK.Graphics.OpenGL.ArbRobustness target, Int32 level, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[,,] img) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13999,7 +13999,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnTexImageARB")] public static void GetnTexImage(OpenTK.Graphics.OpenGL.ArbRobustness target, Int32 level, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T5 img) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14008,7 +14008,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformdvARB")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14017,7 +14017,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformdvARB")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Double @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14026,7 +14026,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformdvARB")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14035,7 +14035,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformdvARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14044,7 +14044,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformdvARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Double @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14053,7 +14053,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformdvARB")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14062,7 +14062,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformfvARB")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14071,7 +14071,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformfvARB")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14080,7 +14080,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformfvARB")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14089,7 +14089,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformfvARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14098,7 +14098,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformfvARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14107,7 +14107,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformfvARB")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// @@ -14116,7 +14116,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetnUniformi64vARB")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// @@ -14125,7 +14125,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetnUniformi64vARB")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// @@ -14134,7 +14134,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetnUniformi64vARB")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// @@ -14143,7 +14143,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetnUniformi64vARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// @@ -14152,7 +14152,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetnUniformi64vARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// @@ -14161,7 +14161,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetnUniformi64vARB")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14170,7 +14170,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformivARB")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14179,7 +14179,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformivARB")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14188,7 +14188,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformivARB")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14197,7 +14197,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformivARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14206,7 +14206,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformivARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14215,7 +14215,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformivARB")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// @@ -14224,7 +14224,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetnUniformui64vARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// @@ -14233,7 +14233,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetnUniformui64vARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// @@ -14242,7 +14242,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetnUniformui64vARB")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14251,7 +14251,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformuivARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14260,7 +14260,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformuivARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14269,7 +14269,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformuivARB")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -14277,7 +14277,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetObjectParameterfvARB")] [CLSCompliant(false)] - public static void GetObjectParameter(Int32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetObjectParameter(Int32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -14285,7 +14285,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetObjectParameterfvARB")] [CLSCompliant(false)] - public static void GetObjectParameter(Int32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetObjectParameter(Int32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -14293,7 +14293,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetObjectParameterfvARB")] [CLSCompliant(false)] - public static unsafe void GetObjectParameter(Int32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetObjectParameter(Int32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -14301,7 +14301,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetObjectParameterfvARB")] [CLSCompliant(false)] - public static void GetObjectParameter(UInt32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetObjectParameter(UInt32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -14309,7 +14309,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetObjectParameterfvARB")] [CLSCompliant(false)] - public static void GetObjectParameter(UInt32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetObjectParameter(UInt32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -14317,7 +14317,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetObjectParameterfvARB")] [CLSCompliant(false)] - public static unsafe void GetObjectParameter(UInt32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetObjectParameter(UInt32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -14325,7 +14325,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetObjectParameterivARB")] [CLSCompliant(false)] - public static void GetObjectParameter(Int32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetObjectParameter(Int32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -14333,7 +14333,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetObjectParameterivARB")] [CLSCompliant(false)] - public static void GetObjectParameter(Int32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetObjectParameter(Int32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -14341,7 +14341,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetObjectParameterivARB")] [CLSCompliant(false)] - public static unsafe void GetObjectParameter(Int32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetObjectParameter(Int32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -14349,7 +14349,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetObjectParameterivARB")] [CLSCompliant(false)] - public static void GetObjectParameter(UInt32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetObjectParameter(UInt32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -14357,7 +14357,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetObjectParameterivARB")] [CLSCompliant(false)] - public static void GetObjectParameter(UInt32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetObjectParameter(UInt32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -14365,7 +14365,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetObjectParameterivARB")] [CLSCompliant(false)] - public static unsafe void GetObjectParameter(UInt32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetObjectParameter(UInt32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14373,7 +14373,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterdvARB")] [CLSCompliant(false)] - public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14381,7 +14381,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterdvARB")] [CLSCompliant(false)] - public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14389,7 +14389,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterdvARB")] [CLSCompliant(false)] - public static unsafe void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14397,7 +14397,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterdvARB")] [CLSCompliant(false)] - public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14405,7 +14405,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterdvARB")] [CLSCompliant(false)] - public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14413,7 +14413,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterdvARB")] [CLSCompliant(false)] - public static unsafe void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14422,7 +14422,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterdvARB")] [CLSCompliant(false)] - public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14431,7 +14431,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterdvARB")] [CLSCompliant(false)] - public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14440,7 +14440,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterdvARB")] [CLSCompliant(false)] - public static unsafe void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14449,7 +14449,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterdvARB")] [CLSCompliant(false)] - public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14458,7 +14458,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterdvARB")] [CLSCompliant(false)] - public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14467,7 +14467,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterdvARB")] [CLSCompliant(false)] - public static unsafe void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14475,7 +14475,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterfvARB")] [CLSCompliant(false)] - public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14483,7 +14483,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterfvARB")] [CLSCompliant(false)] - public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14491,7 +14491,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterfvARB")] [CLSCompliant(false)] - public static unsafe void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14499,7 +14499,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterfvARB")] [CLSCompliant(false)] - public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14507,7 +14507,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterfvARB")] [CLSCompliant(false)] - public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14515,7 +14515,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterfvARB")] [CLSCompliant(false)] - public static unsafe void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14524,7 +14524,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterfvARB")] [CLSCompliant(false)] - public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14533,7 +14533,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterfvARB")] [CLSCompliant(false)] - public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14542,7 +14542,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterfvARB")] [CLSCompliant(false)] - public static unsafe void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14551,7 +14551,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterfvARB")] [CLSCompliant(false)] - public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14560,7 +14560,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterfvARB")] [CLSCompliant(false)] - public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14569,7 +14569,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramEnvParameterfvARB")] [CLSCompliant(false)] - public static unsafe void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// Returns a parameter from a program object @@ -14585,7 +14585,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramivARB")] [CLSCompliant(false)] - public static void GetProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// Returns a parameter from a program object @@ -14601,7 +14601,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramivARB")] [CLSCompliant(false)] - public static unsafe void GetProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14609,7 +14609,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterdvARB")] [CLSCompliant(false)] - public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14617,7 +14617,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterdvARB")] [CLSCompliant(false)] - public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14625,7 +14625,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterdvARB")] [CLSCompliant(false)] - public static unsafe void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14633,7 +14633,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterdvARB")] [CLSCompliant(false)] - public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14641,7 +14641,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterdvARB")] [CLSCompliant(false)] - public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14649,7 +14649,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterdvARB")] [CLSCompliant(false)] - public static unsafe void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14658,7 +14658,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterdvARB")] [CLSCompliant(false)] - public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14667,7 +14667,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterdvARB")] [CLSCompliant(false)] - public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14676,7 +14676,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterdvARB")] [CLSCompliant(false)] - public static unsafe void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14685,7 +14685,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterdvARB")] [CLSCompliant(false)] - public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14694,7 +14694,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterdvARB")] [CLSCompliant(false)] - public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14703,7 +14703,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterdvARB")] [CLSCompliant(false)] - public static unsafe void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14711,7 +14711,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterfvARB")] [CLSCompliant(false)] - public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14719,7 +14719,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterfvARB")] [CLSCompliant(false)] - public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14727,7 +14727,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterfvARB")] [CLSCompliant(false)] - public static unsafe void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14735,7 +14735,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterfvARB")] [CLSCompliant(false)] - public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14743,7 +14743,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterfvARB")] [CLSCompliant(false)] - public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14751,7 +14751,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterfvARB")] [CLSCompliant(false)] - public static unsafe void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14760,7 +14760,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterfvARB")] [CLSCompliant(false)] - public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14769,7 +14769,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterfvARB")] [CLSCompliant(false)] - public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14778,7 +14778,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterfvARB")] [CLSCompliant(false)] - public static unsafe void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14787,7 +14787,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterfvARB")] [CLSCompliant(false)] - public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14796,7 +14796,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterfvARB")] [CLSCompliant(false)] - public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14805,14 +14805,14 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramLocalParameterfvARB")] [CLSCompliant(false)] - public static unsafe void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// /// /// [length: COMPSIZE(target,pname)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramStringARB")] - public static void GetProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Computed = "target,pname")] IntPtr @string) { throw new NotImplementedException(); } + public static void GetProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Computed = "target,pname")] IntPtr @string) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14822,7 +14822,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [InAttribute, OutAttribute, CountAttribute(Computed = "target,pname")] T2[] @string) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14832,7 +14832,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [InAttribute, OutAttribute, CountAttribute(Computed = "target,pname")] T2[,] @string) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14842,7 +14842,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [InAttribute, OutAttribute, CountAttribute(Computed = "target,pname")] T2[,,] @string) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14851,7 +14851,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramStringARB")] public static void GetProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [InAttribute, OutAttribute, CountAttribute(Computed = "target,pname")] ref T2 @string) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// @@ -14859,7 +14859,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryivARB")] [CLSCompliant(false)] - public static void GetQuery(OpenTK.Graphics.OpenGL.ArbOcclusionQuery target, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQuery(OpenTK.Graphics.OpenGL.ArbOcclusionQuery target, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// @@ -14867,7 +14867,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryivARB")] [CLSCompliant(false)] - public static void GetQuery(OpenTK.Graphics.OpenGL.ArbOcclusionQuery target, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQuery(OpenTK.Graphics.OpenGL.ArbOcclusionQuery target, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// @@ -14875,7 +14875,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryivARB")] [CLSCompliant(false)] - public static unsafe void GetQuery(OpenTK.Graphics.OpenGL.ArbOcclusionQuery target, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQuery(OpenTK.Graphics.OpenGL.ArbOcclusionQuery target, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Return parameters of a query object @@ -14891,7 +14891,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryObjectivARB")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Return parameters of a query object @@ -14907,7 +14907,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryObjectivARB")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Return parameters of a query object @@ -14923,7 +14923,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryObjectivARB")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Return parameters of a query object @@ -14939,7 +14939,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryObjectivARB")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Return parameters of a query object @@ -14955,7 +14955,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryObjectivARB")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Return parameters of a query object @@ -14971,7 +14971,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryObjectivARB")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Return parameters of a query object @@ -14987,7 +14987,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryObjectuivARB")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Return parameters of a query object @@ -15003,7 +15003,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryObjectuivARB")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Return parameters of a query object @@ -15019,7 +15019,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryObjectuivARB")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns the source code string from a shader object @@ -15038,7 +15038,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetShaderSourceARB")] [CLSCompliant(false)] - public static void GetShaderSource(Int32 obj, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String source) { throw new NotImplementedException(); } + public static void GetShaderSource(Int32 obj, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns the source code string from a shader object @@ -15057,7 +15057,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetShaderSourceARB")] [CLSCompliant(false)] - public static unsafe void GetShaderSource(Int32 obj, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String source) { throw new NotImplementedException(); } + public static unsafe void GetShaderSource(Int32 obj, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns the source code string from a shader object @@ -15076,7 +15076,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetShaderSourceARB")] [CLSCompliant(false)] - public static void GetShaderSource(UInt32 obj, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String source) { throw new NotImplementedException(); } + public static void GetShaderSource(UInt32 obj, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns the source code string from a shader object @@ -15095,33 +15095,33 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetShaderSourceARB")] [CLSCompliant(false)] - public static unsafe void GetShaderSource(UInt32 obj, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String source) { throw new NotImplementedException(); } + public static unsafe void GetShaderSource(UInt32 obj, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleARB")] [CLSCompliant(false)] - public static Int64 GetTextureHandle(Int32 texture) { throw new NotImplementedException(); } + public static Int64 GetTextureHandle(Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleARB")] [CLSCompliant(false)] - public static Int64 GetTextureHandle(UInt32 texture) { throw new NotImplementedException(); } + public static Int64 GetTextureHandle(UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetTextureSamplerHandleARB")] [CLSCompliant(false)] - public static Int64 GetTextureSamplerHandle(Int32 texture, Int32 sampler) { throw new NotImplementedException(); } + public static Int64 GetTextureSamplerHandle(Int32 texture, Int32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetTextureSamplerHandleARB")] [CLSCompliant(false)] - public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new NotImplementedException(); } + public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns the value of a uniform variable @@ -15137,7 +15137,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetUniformfvARB")] [CLSCompliant(false)] - public static void GetUniform(Int32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] Single[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns the value of a uniform variable @@ -15153,7 +15153,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetUniformfvARB")] [CLSCompliant(false)] - public static void GetUniform(Int32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] out Single @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns the value of a uniform variable @@ -15169,7 +15169,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetUniformfvARB")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns the value of a uniform variable @@ -15185,7 +15185,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetUniformfvARB")] [CLSCompliant(false)] - public static void GetUniform(UInt32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] Single[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns the value of a uniform variable @@ -15201,7 +15201,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetUniformfvARB")] [CLSCompliant(false)] - public static void GetUniform(UInt32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] out Single @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns the value of a uniform variable @@ -15217,7 +15217,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetUniformfvARB")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Returns the value of a uniform variable @@ -15233,7 +15233,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetUniformi64vARB")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Returns the value of a uniform variable @@ -15249,7 +15249,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetUniformi64vARB")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Returns the value of a uniform variable @@ -15265,7 +15265,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetUniformi64vARB")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Returns the value of a uniform variable @@ -15281,7 +15281,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetUniformi64vARB")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Returns the value of a uniform variable @@ -15297,7 +15297,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetUniformi64vARB")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Returns the value of a uniform variable @@ -15313,7 +15313,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetUniformi64vARB")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns the value of a uniform variable @@ -15329,7 +15329,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetUniformivARB")] [CLSCompliant(false)] - public static void GetUniform(Int32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns the value of a uniform variable @@ -15345,7 +15345,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetUniformivARB")] [CLSCompliant(false)] - public static void GetUniform(Int32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns the value of a uniform variable @@ -15361,7 +15361,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetUniformivARB")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns the value of a uniform variable @@ -15377,7 +15377,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetUniformivARB")] [CLSCompliant(false)] - public static void GetUniform(UInt32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns the value of a uniform variable @@ -15393,7 +15393,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetUniformivARB")] [CLSCompliant(false)] - public static void GetUniform(UInt32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns the value of a uniform variable @@ -15409,7 +15409,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetUniformivARB")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns the location of a uniform variable @@ -15422,7 +15422,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetUniformLocationARB")] [CLSCompliant(false)] - public static Int32 GetUniformLocation(Int32 programObj, String name) { throw new NotImplementedException(); } + public static Int32 GetUniformLocation(Int32 programObj, String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns the location of a uniform variable @@ -15435,7 +15435,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetUniformLocationARB")] [CLSCompliant(false)] - public static Int32 GetUniformLocation(UInt32 programObj, String name) { throw new NotImplementedException(); } + public static Int32 GetUniformLocation(UInt32 programObj, String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Returns the value of a uniform variable @@ -15451,7 +15451,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetUniformui64vARB")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Returns the value of a uniform variable @@ -15467,7 +15467,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetUniformui64vARB")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Returns the value of a uniform variable @@ -15483,7 +15483,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetUniformui64vARB")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Return a generic vertex attribute parameter @@ -15499,7 +15499,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribdvARB")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Return a generic vertex attribute parameter @@ -15515,7 +15515,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribdvARB")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Return a generic vertex attribute parameter @@ -15531,7 +15531,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribdvARB")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Return a generic vertex attribute parameter @@ -15547,7 +15547,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribdvARB")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Return a generic vertex attribute parameter @@ -15563,7 +15563,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribdvARB")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Return a generic vertex attribute parameter @@ -15579,7 +15579,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribdvARB")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Return a generic vertex attribute parameter @@ -15595,7 +15595,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribfvARB")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Return a generic vertex attribute parameter @@ -15611,7 +15611,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribfvARB")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Return a generic vertex attribute parameter @@ -15627,7 +15627,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribfvARB")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Return a generic vertex attribute parameter @@ -15643,7 +15643,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribfvARB")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Return a generic vertex attribute parameter @@ -15659,7 +15659,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribfvARB")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Return a generic vertex attribute parameter @@ -15675,7 +15675,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribfvARB")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Return a generic vertex attribute parameter @@ -15691,7 +15691,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribivARB")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Return a generic vertex attribute parameter @@ -15707,7 +15707,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribivARB")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Return a generic vertex attribute parameter @@ -15723,7 +15723,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribivARB")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Return a generic vertex attribute parameter @@ -15739,7 +15739,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribivARB")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Return a generic vertex attribute parameter @@ -15755,7 +15755,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribivARB")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Return a generic vertex attribute parameter @@ -15771,7 +15771,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribivARB")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -15779,7 +15779,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetVertexAttribLui64vARB")] [CLSCompliant(false)] - public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -15787,7 +15787,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetVertexAttribLui64vARB")] [CLSCompliant(false)] - public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -15795,7 +15795,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetVertexAttribLui64vARB")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -15803,7 +15803,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetVertexAttribLui64vARB")] [CLSCompliant(false)] - public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -15811,7 +15811,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetVertexAttribLui64vARB")] [CLSCompliant(false)] - public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -15819,7 +15819,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetVertexAttribLui64vARB")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// @@ -15827,7 +15827,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribPointervARB")] [CLSCompliant(false)] - public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new NotImplementedException(); } + public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// @@ -15837,7 +15837,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// @@ -15847,7 +15847,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// @@ -15857,7 +15857,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// @@ -15867,7 +15867,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// @@ -15875,7 +15875,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glGetVertexAttribPointervARB")] [CLSCompliant(false)] - public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new NotImplementedException(); } + public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// @@ -15885,7 +15885,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// @@ -15895,7 +15895,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// @@ -15905,7 +15905,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// @@ -15915,7 +15915,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Determine if a name corresponds to a buffer object @@ -15925,7 +15925,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glIsBufferARB")] [CLSCompliant(false)] - public static bool IsBuffer(Int32 buffer) { throw new NotImplementedException(); } + public static bool IsBuffer(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Determine if a name corresponds to a buffer object @@ -15935,25 +15935,25 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glIsBufferARB")] [CLSCompliant(false)] - public static bool IsBuffer(UInt32 buffer) { throw new NotImplementedException(); } + public static bool IsBuffer(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glIsImageHandleResidentARB")] [CLSCompliant(false)] - public static bool IsImageHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static bool IsImageHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glIsImageHandleResidentARB")] [CLSCompliant(false)] - public static bool IsImageHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static bool IsImageHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// /// [length: namelen] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glIsNamedStringARB")] - public static bool IsNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name) { throw new NotImplementedException(); } + public static bool IsNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// Determines if a name corresponds to a program object @@ -15963,7 +15963,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glIsProgramARB")] [CLSCompliant(false)] - public static bool IsProgram(Int32 program) { throw new NotImplementedException(); } + public static bool IsProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// Determines if a name corresponds to a program object @@ -15973,7 +15973,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glIsProgramARB")] [CLSCompliant(false)] - public static bool IsProgram(UInt32 program) { throw new NotImplementedException(); } + public static bool IsProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Determine if a name corresponds to a query object @@ -15983,7 +15983,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glIsQueryARB")] [CLSCompliant(false)] - public static bool IsQuery(Int32 id) { throw new NotImplementedException(); } + public static bool IsQuery(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Determine if a name corresponds to a query object @@ -15993,19 +15993,19 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glIsQueryARB")] [CLSCompliant(false)] - public static bool IsQuery(UInt32 id) { throw new NotImplementedException(); } + public static bool IsQuery(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glIsTextureHandleResidentARB")] [CLSCompliant(false)] - public static bool IsTextureHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static bool IsTextureHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glIsTextureHandleResidentARB")] [CLSCompliant(false)] - public static bool IsTextureHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static bool IsTextureHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Links a program object @@ -16015,7 +16015,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glLinkProgramARB")] [CLSCompliant(false)] - public static void LinkProgram(Int32 programObj) { throw new NotImplementedException(); } + public static void LinkProgram(Int32 programObj) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Links a program object @@ -16025,7 +16025,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glLinkProgramARB")] [CLSCompliant(false)] - public static void LinkProgram(UInt32 programObj) { throw new NotImplementedException(); } + public static void LinkProgram(UInt32 programObj) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_transpose_matrix] /// Replace the current matrix with the specified row-major ordered matrix @@ -16035,7 +16035,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transpose_matrix", Version = "", EntryPoint = "glLoadTransposeMatrixdARB")] [CLSCompliant(false)] - public static void LoadTransposeMatrix([CountAttribute(Count = 16)] Double[] m) { throw new NotImplementedException(); } + public static void LoadTransposeMatrix([CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_transpose_matrix] /// Replace the current matrix with the specified row-major ordered matrix @@ -16045,7 +16045,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transpose_matrix", Version = "", EntryPoint = "glLoadTransposeMatrixdARB")] [CLSCompliant(false)] - public static void LoadTransposeMatrix([CountAttribute(Count = 16)] ref Double m) { throw new NotImplementedException(); } + public static void LoadTransposeMatrix([CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_transpose_matrix] /// Replace the current matrix with the specified row-major ordered matrix @@ -16055,7 +16055,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transpose_matrix", Version = "", EntryPoint = "glLoadTransposeMatrixdARB")] [CLSCompliant(false)] - public static unsafe void LoadTransposeMatrix([CountAttribute(Count = 16)] Double* m) { throw new NotImplementedException(); } + public static unsafe void LoadTransposeMatrix([CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_transpose_matrix] /// Replace the current matrix with the specified row-major ordered matrix @@ -16065,7 +16065,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transpose_matrix", Version = "", EntryPoint = "glLoadTransposeMatrixfARB")] [CLSCompliant(false)] - public static void LoadTransposeMatrix([CountAttribute(Count = 16)] Single[] m) { throw new NotImplementedException(); } + public static void LoadTransposeMatrix([CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_transpose_matrix] /// Replace the current matrix with the specified row-major ordered matrix @@ -16075,7 +16075,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transpose_matrix", Version = "", EntryPoint = "glLoadTransposeMatrixfARB")] [CLSCompliant(false)] - public static void LoadTransposeMatrix([CountAttribute(Count = 16)] ref Single m) { throw new NotImplementedException(); } + public static void LoadTransposeMatrix([CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_transpose_matrix] /// Replace the current matrix with the specified row-major ordered matrix @@ -16085,57 +16085,57 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transpose_matrix", Version = "", EntryPoint = "glLoadTransposeMatrixfARB")] [CLSCompliant(false)] - public static unsafe void LoadTransposeMatrix([CountAttribute(Count = 16)] Single* m) { throw new NotImplementedException(); } + public static unsafe void LoadTransposeMatrix([CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleNonResidentARB")] [CLSCompliant(false)] - public static void MakeImageHandleNonResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeImageHandleNonResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleNonResidentARB")] [CLSCompliant(false)] - public static void MakeImageHandleNonResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeImageHandleNonResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleResidentARB")] [CLSCompliant(false)] - public static void MakeImageHandleResident(Int64 handle, OpenTK.Graphics.OpenGL.ArbBindlessTexture access) { throw new NotImplementedException(); } + public static void MakeImageHandleResident(Int64 handle, OpenTK.Graphics.OpenGL.ArbBindlessTexture access) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleResidentARB")] [CLSCompliant(false)] - public static void MakeImageHandleResident(UInt64 handle, OpenTK.Graphics.OpenGL.ArbBindlessTexture access) { throw new NotImplementedException(); } + public static void MakeImageHandleResident(UInt64 handle, OpenTK.Graphics.OpenGL.ArbBindlessTexture access) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleNonResidentARB")] [CLSCompliant(false)] - public static void MakeTextureHandleNonResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleNonResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleNonResidentARB")] [CLSCompliant(false)] - public static void MakeTextureHandleNonResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleNonResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleResidentARB")] [CLSCompliant(false)] - public static void MakeTextureHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleResidentARB")] [CLSCompliant(false)] - public static void MakeTextureHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Map a buffer object's data store @@ -16148,7 +16148,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use BufferAccessArb overload instead")] [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glMapBufferARB")] - public static IntPtr MapBuffer(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.ArbVertexBufferObject access) { throw new NotImplementedException(); } + public static IntPtr MapBuffer(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.ArbVertexBufferObject access) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Map a buffer object's data store @@ -16160,7 +16160,7 @@ namespace OpenTK.Graphics.OpenGL /// For glMapBuffer only, specifies the access policy, indicating whether it will be possible to read from, write to, or both read from and write to the buffer object's mapped data store. The symbolic constant must be ReadOnly, WriteOnly, or ReadWrite. /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glMapBufferARB")] - public static IntPtr MapBuffer(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.BufferAccessArb access) { throw new NotImplementedException(); } + public static IntPtr MapBuffer(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.BufferAccessArb access) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// @@ -16168,7 +16168,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: COMPSIZE(size,type,stride)] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexPointerARB")] - public static void MatrixIndexPointer(Int32 size, OpenTK.Graphics.OpenGL.ArbMatrixPalette type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void MatrixIndexPointer(Int32 size, OpenTK.Graphics.OpenGL.ArbMatrixPalette type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// @@ -16179,7 +16179,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MatrixIndexPointer(Int32 size, OpenTK.Graphics.OpenGL.ArbMatrixPalette type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// @@ -16190,7 +16190,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MatrixIndexPointer(Int32 size, OpenTK.Graphics.OpenGL.ArbMatrixPalette type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// @@ -16201,7 +16201,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MatrixIndexPointer(Int32 size, OpenTK.Graphics.OpenGL.ArbMatrixPalette type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// @@ -16211,124 +16211,124 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexPointerARB")] public static void MatrixIndexPointer(Int32 size, OpenTK.Graphics.OpenGL.ArbMatrixPalette type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T3 pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// /// [length: size] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexubvARB")] [CLSCompliant(false)] - public static void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] Byte[] indices) { throw new NotImplementedException(); } + public static void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] Byte[] indices) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// /// [length: size] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexubvARB")] [CLSCompliant(false)] - public static void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] ref Byte indices) { throw new NotImplementedException(); } + public static void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] ref Byte indices) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// /// [length: size] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexubvARB")] [CLSCompliant(false)] - public static unsafe void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] Byte* indices) { throw new NotImplementedException(); } + public static unsafe void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] Byte* indices) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// /// [length: size] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexuivARB")] [CLSCompliant(false)] - public static void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] Int32[] indices) { throw new NotImplementedException(); } + public static void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] Int32[] indices) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// /// [length: size] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexuivARB")] [CLSCompliant(false)] - public static void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] ref Int32 indices) { throw new NotImplementedException(); } + public static void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] ref Int32 indices) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// /// [length: size] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexuivARB")] [CLSCompliant(false)] - public static unsafe void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] Int32* indices) { throw new NotImplementedException(); } + public static unsafe void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] Int32* indices) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// /// [length: size] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexuivARB")] [CLSCompliant(false)] - public static void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] UInt32[] indices) { throw new NotImplementedException(); } + public static void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] UInt32[] indices) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// /// [length: size] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexuivARB")] [CLSCompliant(false)] - public static void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] ref UInt32 indices) { throw new NotImplementedException(); } + public static void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] ref UInt32 indices) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// /// [length: size] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexuivARB")] [CLSCompliant(false)] - public static unsafe void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] UInt32* indices) { throw new NotImplementedException(); } + public static unsafe void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] UInt32* indices) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// /// [length: size] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexusvARB")] [CLSCompliant(false)] - public static void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] Int16[] indices) { throw new NotImplementedException(); } + public static void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] Int16[] indices) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// /// [length: size] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexusvARB")] [CLSCompliant(false)] - public static void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] ref Int16 indices) { throw new NotImplementedException(); } + public static void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] ref Int16 indices) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// /// [length: size] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexusvARB")] [CLSCompliant(false)] - public static unsafe void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] Int16* indices) { throw new NotImplementedException(); } + public static unsafe void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] Int16* indices) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// /// [length: size] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexusvARB")] [CLSCompliant(false)] - public static void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] UInt16[] indices) { throw new NotImplementedException(); } + public static void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] UInt16[] indices) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// /// [length: size] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexusvARB")] [CLSCompliant(false)] - public static void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] ref UInt16 indices) { throw new NotImplementedException(); } + public static void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] ref UInt16 indices) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// /// [length: size] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexusvARB")] [CLSCompliant(false)] - public static unsafe void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] UInt16* indices) { throw new NotImplementedException(); } + public static unsafe void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] UInt16* indices) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_parallel_shader_compile] /// [AutoGenerated(Category = "ARB_parallel_shader_compile", Version = "", EntryPoint = "glMaxShaderCompilerThreadsARB")] [CLSCompliant(false)] - public static void MaxShaderCompilerThreads(Int32 count) { throw new NotImplementedException(); } + public static void MaxShaderCompilerThreads(Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_parallel_shader_compile] /// [AutoGenerated(Category = "ARB_parallel_shader_compile", Version = "", EntryPoint = "glMaxShaderCompilerThreadsARB")] [CLSCompliant(false)] - public static void MaxShaderCompilerThreads(UInt32 count) { throw new NotImplementedException(); } + public static void MaxShaderCompilerThreads(UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_shading] /// Specifies minimum rate at which sample shaing takes place @@ -16337,7 +16337,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the rate at which samples are shaded within each covered pixel. /// [AutoGenerated(Category = "ARB_sample_shading", Version = "", EntryPoint = "glMinSampleShadingARB")] - public static void MinSampleShading(Single value) { throw new NotImplementedException(); } + public static void MinSampleShading(Single value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -16346,7 +16346,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_indirect_parameters", Version = "", EntryPoint = "glMultiDrawArraysIndirectCountARB")] - public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -16358,7 +16358,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -16370,7 +16370,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[,] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -16382,7 +16382,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[,,] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -16393,7 +16393,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_indirect_parameters", Version = "", EntryPoint = "glMultiDrawArraysIndirectCountARB")] public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] ref T1 indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -16403,7 +16403,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_indirect_parameters", Version = "", EntryPoint = "glMultiDrawElementsIndirectCountARB")] - public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.ArbIndirectParameters type, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.ArbIndirectParameters type, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -16416,7 +16416,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.ArbIndirectParameters type, [InAttribute, OutAttribute] T2[] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -16429,7 +16429,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.ArbIndirectParameters type, [InAttribute, OutAttribute] T2[,] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -16442,7 +16442,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.ArbIndirectParameters type, [InAttribute, OutAttribute] T2[,,] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -16454,7 +16454,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_indirect_parameters", Version = "", EntryPoint = "glMultiDrawElementsIndirectCountARB")] public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.ArbIndirectParameters type, [InAttribute, OutAttribute] ref T2 indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16466,7 +16466,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord1dARB")] - public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Double s) { throw new NotImplementedException(); } + public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Double s) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16479,7 +16479,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord1dvARB")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 1)] Double* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 1)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16491,7 +16491,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord1fARB")] - public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Single s) { throw new NotImplementedException(); } + public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Single s) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16504,7 +16504,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord1fvARB")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 1)] Single* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 1)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16516,7 +16516,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord1iARB")] - public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s) { throw new NotImplementedException(); } + public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16529,7 +16529,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord1ivARB")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 1)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 1)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16541,7 +16541,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord1sARB")] - public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s) { throw new NotImplementedException(); } + public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16554,7 +16554,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord1svARB")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 1)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 1)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16569,7 +16569,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2dARB")] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16582,7 +16582,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2dvARB")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16595,7 +16595,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2dvARB")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16608,7 +16608,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2dvARB")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16623,7 +16623,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2fARB")] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16636,7 +16636,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2fvARB")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16649,7 +16649,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2fvARB")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16662,7 +16662,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2fvARB")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16677,7 +16677,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2iARB")] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16690,7 +16690,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2ivARB")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Int32[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16703,7 +16703,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2ivARB")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] ref Int32 v) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16716,7 +16716,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2ivARB")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16731,7 +16731,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2sARB")] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16744,7 +16744,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2svARB")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Int16[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16757,7 +16757,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2svARB")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] ref Int16 v) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16770,7 +16770,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2svARB")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16788,7 +16788,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3dARB")] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t, Double r) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t, Double r) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16801,7 +16801,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3dvARB")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16814,7 +16814,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3dvARB")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16827,7 +16827,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3dvARB")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16845,7 +16845,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3fARB")] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t, Single r) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t, Single r) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16858,7 +16858,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3fvARB")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16871,7 +16871,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3fvARB")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16884,7 +16884,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3fvARB")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16902,7 +16902,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3iARB")] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t, Int32 r) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t, Int32 r) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16915,7 +16915,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3ivARB")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Int32[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16928,7 +16928,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3ivARB")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] ref Int32 v) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16941,7 +16941,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3ivARB")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16959,7 +16959,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3sARB")] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t, Int16 r) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t, Int16 r) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16972,7 +16972,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3svARB")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16985,7 +16985,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3svARB")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16998,7 +16998,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3svARB")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -17019,7 +17019,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4dARB")] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t, Double r, Double q) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t, Double r, Double q) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -17032,7 +17032,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4dvARB")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -17045,7 +17045,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4dvARB")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -17058,7 +17058,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4dvARB")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -17079,7 +17079,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4fARB")] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t, Single r, Single q) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t, Single r, Single q) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -17092,7 +17092,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4fvARB")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -17105,7 +17105,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4fvARB")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -17118,7 +17118,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4fvARB")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -17139,7 +17139,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4iARB")] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t, Int32 r, Int32 q) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t, Int32 r, Int32 q) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -17152,7 +17152,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4ivARB")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -17165,7 +17165,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4ivARB")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -17178,7 +17178,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4ivARB")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -17199,7 +17199,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4sARB")] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t, Int16 r, Int16 q) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t, Int16 r, Int16 q) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -17212,7 +17212,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4svARB")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -17225,7 +17225,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4svARB")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -17238,7 +17238,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4svARB")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_transpose_matrix] /// Multiply the current matrix with the specified row-major ordered matrix @@ -17248,7 +17248,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transpose_matrix", Version = "", EntryPoint = "glMultTransposeMatrixdARB")] [CLSCompliant(false)] - public static void MultTransposeMatrix([CountAttribute(Count = 16)] Double[] m) { throw new NotImplementedException(); } + public static void MultTransposeMatrix([CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_transpose_matrix] /// Multiply the current matrix with the specified row-major ordered matrix @@ -17258,7 +17258,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transpose_matrix", Version = "", EntryPoint = "glMultTransposeMatrixdARB")] [CLSCompliant(false)] - public static void MultTransposeMatrix([CountAttribute(Count = 16)] ref Double m) { throw new NotImplementedException(); } + public static void MultTransposeMatrix([CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_transpose_matrix] /// Multiply the current matrix with the specified row-major ordered matrix @@ -17268,7 +17268,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transpose_matrix", Version = "", EntryPoint = "glMultTransposeMatrixdARB")] [CLSCompliant(false)] - public static unsafe void MultTransposeMatrix([CountAttribute(Count = 16)] Double* m) { throw new NotImplementedException(); } + public static unsafe void MultTransposeMatrix([CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_transpose_matrix] /// Multiply the current matrix with the specified row-major ordered matrix @@ -17278,7 +17278,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transpose_matrix", Version = "", EntryPoint = "glMultTransposeMatrixfARB")] [CLSCompliant(false)] - public static void MultTransposeMatrix([CountAttribute(Count = 16)] Single[] m) { throw new NotImplementedException(); } + public static void MultTransposeMatrix([CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_transpose_matrix] /// Multiply the current matrix with the specified row-major ordered matrix @@ -17288,7 +17288,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transpose_matrix", Version = "", EntryPoint = "glMultTransposeMatrixfARB")] [CLSCompliant(false)] - public static void MultTransposeMatrix([CountAttribute(Count = 16)] ref Single m) { throw new NotImplementedException(); } + public static void MultTransposeMatrix([CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_transpose_matrix] /// Multiply the current matrix with the specified row-major ordered matrix @@ -17298,7 +17298,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transpose_matrix", Version = "", EntryPoint = "glMultTransposeMatrixfARB")] [CLSCompliant(false)] - public static unsafe void MultTransposeMatrix([CountAttribute(Count = 16)] Single* m) { throw new NotImplementedException(); } + public static unsafe void MultTransposeMatrix([CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_buffer] /// @@ -17307,7 +17307,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sparse_buffer", Version = "", EntryPoint = "glNamedBufferPageCommitmentARB")] [CLSCompliant(false)] - public static void NamedBufferPageCommitment(Int32 buffer, IntPtr offset, Int32 size, bool commit) { throw new NotImplementedException(); } + public static void NamedBufferPageCommitment(Int32 buffer, IntPtr offset, Int32 size, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_buffer] /// @@ -17316,7 +17316,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sparse_buffer", Version = "", EntryPoint = "glNamedBufferPageCommitmentARB")] [CLSCompliant(false)] - public static void NamedBufferPageCommitment(Int32 buffer, IntPtr offset, IntPtr size, bool commit) { throw new NotImplementedException(); } + public static void NamedBufferPageCommitment(Int32 buffer, IntPtr offset, IntPtr size, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_buffer] /// @@ -17325,7 +17325,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sparse_buffer", Version = "", EntryPoint = "glNamedBufferPageCommitmentARB")] [CLSCompliant(false)] - public static void NamedBufferPageCommitment(UInt32 buffer, IntPtr offset, Int32 size, bool commit) { throw new NotImplementedException(); } + public static void NamedBufferPageCommitment(UInt32 buffer, IntPtr offset, Int32 size, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_buffer] /// @@ -17334,7 +17334,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sparse_buffer", Version = "", EntryPoint = "glNamedBufferPageCommitmentARB")] [CLSCompliant(false)] - public static void NamedBufferPageCommitment(UInt32 buffer, IntPtr offset, IntPtr size, bool commit) { throw new NotImplementedException(); } + public static void NamedBufferPageCommitment(UInt32 buffer, IntPtr offset, IntPtr size, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -17343,7 +17343,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -17352,7 +17352,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -17361,7 +17361,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static unsafe void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -17370,7 +17370,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -17379,7 +17379,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -17388,7 +17388,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static unsafe void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -17397,7 +17397,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: stringlen] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glNamedStringARB")] - public static void NamedString(OpenTK.Graphics.OpenGL.ArbShadingLanguageInclude type, Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, Int32 stringlen, [CountAttribute(Parameter = "stringlen")] String @string) { throw new NotImplementedException(); } + public static void NamedString(OpenTK.Graphics.OpenGL.ArbShadingLanguageInclude type, Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, Int32 stringlen, [CountAttribute(Parameter = "stringlen")] String @string) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_point_parameters] /// Specify point parameters @@ -17409,7 +17409,7 @@ namespace OpenTK.Graphics.OpenGL /// For glPointParameterf and glPointParameteri, specifies the value that pname will be set to. /// [AutoGenerated(Category = "ARB_point_parameters", Version = "", EntryPoint = "glPointParameterfARB")] - public static void PointParameter(OpenTK.Graphics.OpenGL.ArbPointParameters pname, Single param) { throw new NotImplementedException(); } + public static void PointParameter(OpenTK.Graphics.OpenGL.ArbPointParameters pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_point_parameters] /// Specify point parameters @@ -17422,7 +17422,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_point_parameters", Version = "", EntryPoint = "glPointParameterfvARB")] [CLSCompliant(false)] - public static void PointParameter(OpenTK.Graphics.OpenGL.ArbPointParameters pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void PointParameter(OpenTK.Graphics.OpenGL.ArbPointParameters pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_point_parameters] /// Specify point parameters @@ -17435,7 +17435,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_point_parameters", Version = "", EntryPoint = "glPointParameterfvARB")] [CLSCompliant(false)] - public static unsafe void PointParameter(OpenTK.Graphics.OpenGL.ArbPointParameters pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void PointParameter(OpenTK.Graphics.OpenGL.ArbPointParameters pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_ES3_2_compatibility] /// @@ -17447,7 +17447,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_ES3_2_compatibility", Version = "", EntryPoint = "glPrimitiveBoundingBoxARB")] - public static void PrimitiveBoundingBox(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW) { throw new NotImplementedException(); } + public static void PrimitiveBoundingBox(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17458,7 +17458,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramEnvParameter4dARB")] [CLSCompliant(false)] - public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17469,7 +17469,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramEnvParameter4dARB")] [CLSCompliant(false)] - public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17477,7 +17477,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramEnvParameter4dvARB")] [CLSCompliant(false)] - public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17485,7 +17485,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramEnvParameter4dvARB")] [CLSCompliant(false)] - public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] ref Double @params) { throw new NotImplementedException(); } + public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] ref Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17493,7 +17493,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramEnvParameter4dvARB")] [CLSCompliant(false)] - public static unsafe void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17501,7 +17501,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramEnvParameter4dvARB")] [CLSCompliant(false)] - public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17509,7 +17509,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramEnvParameter4dvARB")] [CLSCompliant(false)] - public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] ref Double @params) { throw new NotImplementedException(); } + public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] ref Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17517,7 +17517,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramEnvParameter4dvARB")] [CLSCompliant(false)] - public static unsafe void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17528,7 +17528,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramEnvParameter4fARB")] [CLSCompliant(false)] - public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17539,7 +17539,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramEnvParameter4fARB")] [CLSCompliant(false)] - public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17547,7 +17547,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramEnvParameter4fvARB")] [CLSCompliant(false)] - public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17555,7 +17555,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramEnvParameter4fvARB")] [CLSCompliant(false)] - public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] ref Single @params) { throw new NotImplementedException(); } + public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17563,7 +17563,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramEnvParameter4fvARB")] [CLSCompliant(false)] - public static unsafe void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17571,7 +17571,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramEnvParameter4fvARB")] [CLSCompliant(false)] - public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17579,7 +17579,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramEnvParameter4fvARB")] [CLSCompliant(false)] - public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] ref Single @params) { throw new NotImplementedException(); } + public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17587,7 +17587,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramEnvParameter4fvARB")] [CLSCompliant(false)] - public static unsafe void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17598,7 +17598,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramLocalParameter4dARB")] [CLSCompliant(false)] - public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17609,7 +17609,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramLocalParameter4dARB")] [CLSCompliant(false)] - public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17617,7 +17617,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramLocalParameter4dvARB")] [CLSCompliant(false)] - public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17625,7 +17625,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramLocalParameter4dvARB")] [CLSCompliant(false)] - public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] ref Double @params) { throw new NotImplementedException(); } + public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] ref Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17633,7 +17633,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramLocalParameter4dvARB")] [CLSCompliant(false)] - public static unsafe void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17641,7 +17641,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramLocalParameter4dvARB")] [CLSCompliant(false)] - public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17649,7 +17649,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramLocalParameter4dvARB")] [CLSCompliant(false)] - public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] ref Double @params) { throw new NotImplementedException(); } + public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] ref Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17657,7 +17657,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramLocalParameter4dvARB")] [CLSCompliant(false)] - public static unsafe void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17668,7 +17668,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramLocalParameter4fARB")] [CLSCompliant(false)] - public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17679,7 +17679,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramLocalParameter4fARB")] [CLSCompliant(false)] - public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17687,7 +17687,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramLocalParameter4fvARB")] [CLSCompliant(false)] - public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17695,7 +17695,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramLocalParameter4fvARB")] [CLSCompliant(false)] - public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] ref Single @params) { throw new NotImplementedException(); } + public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17703,7 +17703,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramLocalParameter4fvARB")] [CLSCompliant(false)] - public static unsafe void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17711,7 +17711,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramLocalParameter4fvARB")] [CLSCompliant(false)] - public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17719,7 +17719,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramLocalParameter4fvARB")] [CLSCompliant(false)] - public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] ref Single @params) { throw new NotImplementedException(); } + public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17727,7 +17727,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramLocalParameter4fvARB")] [CLSCompliant(false)] - public static unsafe void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_geometry_shader4] /// Specify a parameter for a program object @@ -17743,7 +17743,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_geometry_shader4", Version = "", EntryPoint = "glProgramParameteriARB")] [CLSCompliant(false)] - public static void ProgramParameter(Int32 program, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(Int32 program, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_geometry_shader4] /// Specify a parameter for a program object @@ -17759,7 +17759,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_geometry_shader4", Version = "", EntryPoint = "glProgramParameteriARB")] [CLSCompliant(false)] - public static void ProgramParameter(UInt32 program, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(UInt32 program, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17767,7 +17767,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: len] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramStringARB")] - public static void ProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.All format, Int32 len, [CountAttribute(Parameter = "len")] IntPtr @string) { throw new NotImplementedException(); } + public static void ProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.All format, Int32 len, [CountAttribute(Parameter = "len")] IntPtr @string) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17778,7 +17778,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.All format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T3[] @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17789,7 +17789,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.All format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T3[,] @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17800,7 +17800,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.All format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T3[,,] @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17810,7 +17810,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramStringARB")] public static void ProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.All format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] ref T3 @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17819,7 +17819,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: len] [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramStringARB")] - public static void ProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.ArbVertexProgram format, Int32 len, [CountAttribute(Parameter = "len")] IntPtr @string) { throw new NotImplementedException(); } + public static void ProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.ArbVertexProgram format, Int32 len, [CountAttribute(Parameter = "len")] IntPtr @string) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17831,7 +17831,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.ArbVertexProgram format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T3[] @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17843,7 +17843,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.ArbVertexProgram format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T3[,] @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17855,7 +17855,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.ArbVertexProgram format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T3[,,] @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17866,7 +17866,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramStringARB")] public static void ProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.ArbVertexProgram format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] ref T3 @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -17882,7 +17882,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1i64ARB")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -17898,7 +17898,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1i64ARB")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -17917,7 +17917,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -17936,7 +17936,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -17955,7 +17955,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1i64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -17974,7 +17974,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -17993,7 +17993,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18012,7 +18012,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1i64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18028,7 +18028,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1ui64ARB")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, UInt64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, UInt64 x) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18047,7 +18047,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1ui64vARB")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18066,7 +18066,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1ui64vARB")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18085,7 +18085,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1ui64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18104,7 +18104,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2i64ARB")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int64 x, Int64 y) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18123,7 +18123,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2i64ARB")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int64 x, Int64 y) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18142,7 +18142,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18161,7 +18161,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18180,7 +18180,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2i64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18199,7 +18199,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18218,7 +18218,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18237,7 +18237,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2i64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18256,7 +18256,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2ui64ARB")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, UInt64 x, UInt64 y) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, UInt64 x, UInt64 y) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18275,7 +18275,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2ui64vARB")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18294,7 +18294,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2ui64vARB")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18313,7 +18313,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2ui64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18335,7 +18335,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3i64ARB")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18357,7 +18357,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3i64ARB")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18376,7 +18376,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18395,7 +18395,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18414,7 +18414,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3i64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18433,7 +18433,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18452,7 +18452,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18471,7 +18471,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3i64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18493,7 +18493,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3ui64ARB")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18512,7 +18512,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3ui64vARB")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18531,7 +18531,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3ui64vARB")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18550,7 +18550,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3ui64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18575,7 +18575,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4i64ARB")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18600,7 +18600,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4i64ARB")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18619,7 +18619,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18638,7 +18638,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18657,7 +18657,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4i64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18676,7 +18676,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18695,7 +18695,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18714,7 +18714,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4i64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18739,7 +18739,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4ui64ARB")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18758,7 +18758,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4ui64vARB")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18777,7 +18777,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4ui64vARB")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18796,7 +18796,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4ui64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -18804,7 +18804,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64ARB")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -18812,7 +18812,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64ARB")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -18821,7 +18821,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vARB")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -18830,7 +18830,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vARB")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -18839,7 +18839,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* values) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -18848,7 +18848,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vARB")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -18857,7 +18857,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vARB")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -18866,7 +18866,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -18879,7 +18879,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glReadnPixelsARB")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -18895,7 +18895,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -18911,7 +18911,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -18927,7 +18927,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -18942,7 +18942,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glReadnPixelsARB")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -18954,7 +18954,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glReadnPixelsARB")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -18969,7 +18969,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -18984,7 +18984,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -18999,7 +18999,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -19013,7 +19013,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glReadnPixelsARB")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multisample] /// Specify multisample coverage parameters @@ -19025,7 +19025,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify a single boolean value representing if the coverage masks should be inverted. True and False are accepted. The initial value is False. /// [AutoGenerated(Category = "ARB_multisample", Version = "", EntryPoint = "glSampleCoverageARB")] - public static void SampleCoverage(Single value, bool invert) { throw new NotImplementedException(); } + public static void SampleCoverage(Single value, bool invert) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Replaces the source code in a shader object @@ -19044,7 +19044,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glShaderSourceARB")] [CLSCompliant(false)] - public static void ShaderSource(Int32 shaderObj, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new NotImplementedException(); } + public static void ShaderSource(Int32 shaderObj, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Replaces the source code in a shader object @@ -19063,7 +19063,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glShaderSourceARB")] [CLSCompliant(false)] - public static void ShaderSource(Int32 shaderObj, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new NotImplementedException(); } + public static void ShaderSource(Int32 shaderObj, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Replaces the source code in a shader object @@ -19082,7 +19082,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glShaderSourceARB")] [CLSCompliant(false)] - public static unsafe void ShaderSource(Int32 shaderObj, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new NotImplementedException(); } + public static unsafe void ShaderSource(Int32 shaderObj, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Replaces the source code in a shader object @@ -19101,7 +19101,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glShaderSourceARB")] [CLSCompliant(false)] - public static void ShaderSource(UInt32 shaderObj, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new NotImplementedException(); } + public static void ShaderSource(UInt32 shaderObj, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Replaces the source code in a shader object @@ -19120,7 +19120,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glShaderSourceARB")] [CLSCompliant(false)] - public static void ShaderSource(UInt32 shaderObj, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new NotImplementedException(); } + public static void ShaderSource(UInt32 shaderObj, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Replaces the source code in a shader object @@ -19139,7 +19139,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glShaderSourceARB")] [CLSCompliant(false)] - public static unsafe void ShaderSource(UInt32 shaderObj, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new NotImplementedException(); } + public static unsafe void ShaderSource(UInt32 shaderObj, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gl_spirv] /// @@ -19149,7 +19149,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gl_spirv", Version = "", EntryPoint = "glSpecializeShaderARB")] [CLSCompliant(false)] - public static void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, Int32[] pConstantIndex, Int32[] pConstantValue) { throw new NotImplementedException(); } + public static void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, Int32[] pConstantIndex, Int32[] pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gl_spirv] /// @@ -19159,7 +19159,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gl_spirv", Version = "", EntryPoint = "glSpecializeShaderARB")] [CLSCompliant(false)] - public static void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, ref Int32 pConstantIndex, ref Int32 pConstantValue) { throw new NotImplementedException(); } + public static void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, ref Int32 pConstantIndex, ref Int32 pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gl_spirv] /// @@ -19169,7 +19169,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gl_spirv", Version = "", EntryPoint = "glSpecializeShaderARB")] [CLSCompliant(false)] - public static unsafe void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, Int32* pConstantIndex, Int32* pConstantValue) { throw new NotImplementedException(); } + public static unsafe void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, Int32* pConstantIndex, Int32* pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gl_spirv] /// @@ -19179,7 +19179,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gl_spirv", Version = "", EntryPoint = "glSpecializeShaderARB")] [CLSCompliant(false)] - public static void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, UInt32[] pConstantIndex, UInt32[] pConstantValue) { throw new NotImplementedException(); } + public static void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, UInt32[] pConstantIndex, UInt32[] pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gl_spirv] /// @@ -19189,7 +19189,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gl_spirv", Version = "", EntryPoint = "glSpecializeShaderARB")] [CLSCompliant(false)] - public static void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, ref UInt32 pConstantIndex, ref UInt32 pConstantValue) { throw new NotImplementedException(); } + public static void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, ref UInt32 pConstantIndex, ref UInt32 pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gl_spirv] /// @@ -19199,7 +19199,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gl_spirv", Version = "", EntryPoint = "glSpecializeShaderARB")] [CLSCompliant(false)] - public static unsafe void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, UInt32* pConstantIndex, UInt32* pConstantValue) { throw new NotImplementedException(); } + public static unsafe void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, UInt32* pConstantIndex, UInt32* pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_buffer_object] /// Attach the storage for a buffer object to the active buffer texture @@ -19215,7 +19215,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_texture_buffer_object", Version = "", EntryPoint = "glTexBufferARB")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ArbTextureBufferObject internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ArbTextureBufferObject internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_buffer_object] /// Attach the storage for a buffer object to the active buffer texture @@ -19231,7 +19231,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_texture_buffer_object", Version = "", EntryPoint = "glTexBufferARB")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ArbTextureBufferObject internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ArbTextureBufferObject internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_texture] /// @@ -19244,7 +19244,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_sparse_texture", Version = "", EntryPoint = "glTexPageCommitmentARB")] - public static void TexPageCommitment(OpenTK.Graphics.OpenGL.ArbSparseTexture target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit) { throw new NotImplementedException(); } + public static void TexPageCommitment(OpenTK.Graphics.OpenGL.ArbSparseTexture target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19256,7 +19256,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform1fARB")] - public static void Uniform1(Int32 location, Single v0) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19272,7 +19272,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform1fvARB")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19288,7 +19288,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform1fvARB")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19304,7 +19304,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform1fvARB")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19316,7 +19316,7 @@ namespace OpenTK.Graphics.OpenGL /// For the vector (glUniform*v) commands, specifies the number of elements that are to be modified. This should be 1 if the targeted uniform variable is not an array, and 1 or more if it is an array. For the matrix (glUniformMatrix*) commands, specifies the number of matrices that are to be modified. This should be 1 if the targeted uniform variable is not an array of matrices, and 1 or more if it is an array of matrices. /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform1i64ARB")] - public static void Uniform1(Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19332,7 +19332,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform1i64vARB")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19348,7 +19348,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform1i64vARB")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19364,7 +19364,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform1i64vARB")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19376,7 +19376,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform1iARB")] - public static void Uniform1(Int32 location, Int32 v0) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19392,7 +19392,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform1ivARB")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19408,7 +19408,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform1ivARB")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19424,7 +19424,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform1ivARB")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19437,7 +19437,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform1ui64ARB")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, UInt64 x) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, UInt64 x) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19453,7 +19453,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform1ui64vARB")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19469,7 +19469,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform1ui64vARB")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19485,7 +19485,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform1ui64vARB")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19500,7 +19500,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform2fARB")] - public static void Uniform2(Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19516,7 +19516,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform2fvARB")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19532,7 +19532,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform2fvARB")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19548,7 +19548,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform2fvARB")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19563,7 +19563,7 @@ namespace OpenTK.Graphics.OpenGL /// For the matrix commands, specifies whether to transpose the matrix as the values are loaded into the uniform variable. /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform2i64ARB")] - public static void Uniform2(Int32 location, Int64 x, Int64 y) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19579,7 +19579,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform2i64vARB")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19595,7 +19595,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform2i64vARB")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19611,7 +19611,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform2i64vARB")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19626,7 +19626,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform2iARB")] - public static void Uniform2(Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19642,7 +19642,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform2ivARB")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19658,7 +19658,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform2ivARB")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19674,7 +19674,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform2ui64ARB")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, UInt64 x, UInt64 y) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, UInt64 x, UInt64 y) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19690,7 +19690,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform2ui64vARB")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19706,7 +19706,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform2ui64vARB")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19722,7 +19722,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform2ui64vARB")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19740,7 +19740,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform3fARB")] - public static void Uniform3(Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19756,7 +19756,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform3fvARB")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19772,7 +19772,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform3fvARB")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19788,7 +19788,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform3fvARB")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19806,7 +19806,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform3i64ARB")] - public static void Uniform3(Int32 location, Int64 x, Int64 y, Int64 z) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19822,7 +19822,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform3i64vARB")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19838,7 +19838,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform3i64vARB")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19854,7 +19854,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform3i64vARB")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19872,7 +19872,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform3iARB")] - public static void Uniform3(Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19888,7 +19888,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform3ivARB")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19904,7 +19904,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform3ivARB")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19920,7 +19920,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform3ivARB")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19939,7 +19939,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform3ui64ARB")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19955,7 +19955,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform3ui64vARB")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19971,7 +19971,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform3ui64vARB")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19987,7 +19987,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform3ui64vARB")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -20008,7 +20008,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform4fARB")] - public static void Uniform4(Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -20024,7 +20024,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform4fvARB")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -20040,7 +20040,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform4fvARB")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -20056,7 +20056,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform4fvARB")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -20077,7 +20077,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform4i64ARB")] - public static void Uniform4(Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -20093,7 +20093,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform4i64vARB")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -20109,7 +20109,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform4i64vARB")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -20125,7 +20125,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform4i64vARB")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -20146,7 +20146,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform4iARB")] - public static void Uniform4(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -20162,7 +20162,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform4ivARB")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -20178,7 +20178,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform4ivARB")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -20194,7 +20194,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform4ivARB")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -20216,7 +20216,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform4ui64ARB")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -20232,7 +20232,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform4ui64vARB")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -20248,7 +20248,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform4ui64vARB")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -20264,21 +20264,21 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform4ui64vARB")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64ARB")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64ARB")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -20286,7 +20286,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vARB")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -20294,7 +20294,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vARB")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -20302,7 +20302,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vARB")] [CLSCompliant(false)] - public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -20310,7 +20310,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vARB")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -20318,7 +20318,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vARB")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -20326,7 +20326,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vARB")] [CLSCompliant(false)] - public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -20335,7 +20335,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniformMatrix2fvARB")] [CLSCompliant(false)] - public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -20344,7 +20344,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniformMatrix2fvARB")] [CLSCompliant(false)] - public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -20353,7 +20353,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniformMatrix2fvARB")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -20362,7 +20362,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniformMatrix3fvARB")] [CLSCompliant(false)] - public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -20371,7 +20371,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniformMatrix3fvARB")] [CLSCompliant(false)] - public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -20380,7 +20380,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniformMatrix3fvARB")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -20389,7 +20389,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniformMatrix4fvARB")] [CLSCompliant(false)] - public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -20398,7 +20398,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniformMatrix4fvARB")] [CLSCompliant(false)] - public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -20407,24 +20407,24 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniformMatrix4fvARB")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glUnmapBufferARB")] - public static bool UnmapBuffer(OpenTK.Graphics.OpenGL.BufferTargetArb target) { throw new NotImplementedException(); } + public static bool UnmapBuffer(OpenTK.Graphics.OpenGL.BufferTargetArb target) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUseProgramObjectARB")] [CLSCompliant(false)] - public static void UseProgramObject(Int32 programObj) { throw new NotImplementedException(); } + public static void UseProgramObject(Int32 programObj) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUseProgramObjectARB")] [CLSCompliant(false)] - public static void UseProgramObject(UInt32 programObj) { throw new NotImplementedException(); } + public static void UseProgramObject(UInt32 programObj) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Validates a program object @@ -20434,7 +20434,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glValidateProgramARB")] [CLSCompliant(false)] - public static void ValidateProgram(Int32 programObj) { throw new NotImplementedException(); } + public static void ValidateProgram(Int32 programObj) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Validates a program object @@ -20444,7 +20444,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glValidateProgramARB")] [CLSCompliant(false)] - public static void ValidateProgram(UInt32 programObj) { throw new NotImplementedException(); } + public static void ValidateProgram(UInt32 programObj) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20457,7 +20457,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib1dARB")] [CLSCompliant(false)] - public static void VertexAttrib1(Int32 index, Double x) { throw new NotImplementedException(); } + public static void VertexAttrib1(Int32 index, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20470,7 +20470,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib1dARB")] [CLSCompliant(false)] - public static void VertexAttrib1(UInt32 index, Double x) { throw new NotImplementedException(); } + public static void VertexAttrib1(UInt32 index, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20483,7 +20483,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib1dvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20496,7 +20496,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib1dvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20509,7 +20509,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib1fARB")] [CLSCompliant(false)] - public static void VertexAttrib1(Int32 index, Single x) { throw new NotImplementedException(); } + public static void VertexAttrib1(Int32 index, Single x) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20522,7 +20522,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib1fARB")] [CLSCompliant(false)] - public static void VertexAttrib1(UInt32 index, Single x) { throw new NotImplementedException(); } + public static void VertexAttrib1(UInt32 index, Single x) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20535,7 +20535,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib1fvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20548,7 +20548,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib1fvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20561,7 +20561,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib1sARB")] [CLSCompliant(false)] - public static void VertexAttrib1(Int32 index, Int16 x) { throw new NotImplementedException(); } + public static void VertexAttrib1(Int32 index, Int16 x) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20574,7 +20574,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib1sARB")] [CLSCompliant(false)] - public static void VertexAttrib1(UInt32 index, Int16 x) { throw new NotImplementedException(); } + public static void VertexAttrib1(UInt32 index, Int16 x) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20587,7 +20587,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib1svARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20600,7 +20600,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib1svARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20616,7 +20616,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2dARB")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, Double x, Double y) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20632,7 +20632,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2dARB")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, Double x, Double y) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20645,7 +20645,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2dvARB")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20658,7 +20658,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2dvARB")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20671,7 +20671,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2dvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20684,7 +20684,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2dvARB")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20697,7 +20697,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2dvARB")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20710,7 +20710,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2dvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20726,7 +20726,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2fARB")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, Single x, Single y) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20742,7 +20742,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2fARB")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, Single x, Single y) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20755,7 +20755,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2fvARB")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20768,7 +20768,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2fvARB")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20781,7 +20781,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2fvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20794,7 +20794,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2fvARB")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20807,7 +20807,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2fvARB")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20820,7 +20820,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2fvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20836,7 +20836,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2sARB")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, Int16 x, Int16 y) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, Int16 x, Int16 y) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20852,7 +20852,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2sARB")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, Int16 x, Int16 y) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, Int16 x, Int16 y) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20865,7 +20865,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2svARB")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20878,7 +20878,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2svARB")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20891,7 +20891,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2svARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20904,7 +20904,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2svARB")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20917,7 +20917,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2svARB")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20930,7 +20930,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2svARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20949,7 +20949,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3dARB")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20968,7 +20968,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3dARB")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20981,7 +20981,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3dvARB")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20994,7 +20994,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3dvARB")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21007,7 +21007,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3dvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21020,7 +21020,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3dvARB")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21033,7 +21033,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3dvARB")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21046,7 +21046,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3dvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21065,7 +21065,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3fARB")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21084,7 +21084,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3fARB")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21097,7 +21097,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3fvARB")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21110,7 +21110,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3fvARB")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21123,7 +21123,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3fvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21136,7 +21136,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3fvARB")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21149,7 +21149,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3fvARB")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21162,7 +21162,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3fvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21181,7 +21181,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3sARB")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, Int16 x, Int16 y, Int16 z) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, Int16 x, Int16 y, Int16 z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21200,7 +21200,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3sARB")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, Int16 x, Int16 y, Int16 z) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, Int16 x, Int16 y, Int16 z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21213,7 +21213,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3svARB")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21226,7 +21226,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3svARB")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21239,7 +21239,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3svARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21252,7 +21252,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3svARB")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21265,7 +21265,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3svARB")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21278,7 +21278,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3svARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21291,7 +21291,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4bvARB")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] SByte[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] SByte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21304,7 +21304,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4bvARB")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref SByte v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref SByte v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21317,7 +21317,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4bvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] SByte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] SByte* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21339,7 +21339,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4dARB")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21361,7 +21361,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4dARB")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21374,7 +21374,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4dvARB")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21387,7 +21387,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4dvARB")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21400,7 +21400,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4dvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21413,7 +21413,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4dvARB")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21426,7 +21426,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4dvARB")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21439,7 +21439,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4dvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21461,7 +21461,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4fARB")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21483,7 +21483,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4fARB")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21496,7 +21496,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4fvARB")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21509,7 +21509,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4fvARB")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21522,7 +21522,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4fvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21535,7 +21535,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4fvARB")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21548,7 +21548,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4fvARB")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21561,7 +21561,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4fvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21574,7 +21574,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4ivARB")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21587,7 +21587,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4ivARB")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21600,7 +21600,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4ivARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21613,7 +21613,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4ivARB")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21626,7 +21626,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4ivARB")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21639,112 +21639,112 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4ivARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NbvARB")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] SByte[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] SByte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NbvARB")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref SByte v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref SByte v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NbvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] SByte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] SByte* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NivARB")] [CLSCompliant(false)] - public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NivARB")] [CLSCompliant(false)] - public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NivARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NivARB")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NivARB")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NivARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NsvARB")] [CLSCompliant(false)] - public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NsvARB")] [CLSCompliant(false)] - public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NsvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NsvARB")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NsvARB")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NsvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// @@ -21754,7 +21754,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NubARB")] [CLSCompliant(false)] - public static void VertexAttrib4N(Int32 index, Byte x, Byte y, Byte z, Byte w) { throw new NotImplementedException(); } + public static void VertexAttrib4N(Int32 index, Byte x, Byte y, Byte z, Byte w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// @@ -21764,91 +21764,91 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NubARB")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, Byte x, Byte y, Byte z, Byte w) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, Byte x, Byte y, Byte z, Byte w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NubvARB")] [CLSCompliant(false)] - public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NubvARB")] [CLSCompliant(false)] - public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NubvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NubvARB")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NubvARB")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NubvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NuivARB")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NuivARB")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NuivARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NusvARB")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NusvARB")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref UInt16 v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref UInt16 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NusvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt16* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21870,7 +21870,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4sARB")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, Int16 x, Int16 y, Int16 z, Int16 w) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, Int16 x, Int16 y, Int16 z, Int16 w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21892,7 +21892,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4sARB")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, Int16 x, Int16 y, Int16 z, Int16 w) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, Int16 x, Int16 y, Int16 z, Int16 w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21905,7 +21905,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4svARB")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21918,7 +21918,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4svARB")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21931,7 +21931,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4svARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21944,7 +21944,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4svARB")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21957,7 +21957,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4svARB")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21970,7 +21970,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4svARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21983,7 +21983,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4ubvARB")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21996,7 +21996,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4ubvARB")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -22009,7 +22009,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4ubvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -22022,7 +22022,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4ubvARB")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -22035,7 +22035,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4ubvARB")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -22048,7 +22048,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4ubvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -22061,7 +22061,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4uivARB")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -22074,7 +22074,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4uivARB")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -22087,7 +22087,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4uivARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -22100,7 +22100,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4usvARB")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -22113,7 +22113,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4usvARB")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref UInt16 v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref UInt16 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -22126,7 +22126,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4usvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt16* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -22139,7 +22139,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorARB")] [CLSCompliant(false)] - public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -22152,49 +22152,49 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorARB")] [CLSCompliant(false)] - public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glVertexAttribL1ui64ARB")] [CLSCompliant(false)] - public static void VertexAttribL1(Int32 index, Int64 x) { throw new NotImplementedException(); } + public static void VertexAttribL1(Int32 index, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glVertexAttribL1ui64ARB")] [CLSCompliant(false)] - public static void VertexAttribL1(UInt32 index, UInt64 x) { throw new NotImplementedException(); } + public static void VertexAttribL1(UInt32 index, UInt64 x) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glVertexAttribL1ui64vARB")] [CLSCompliant(false)] - public static void VertexAttribL1(Int32 index, Int64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL1(Int32 index, Int64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glVertexAttribL1ui64vARB")] [CLSCompliant(false)] - public static unsafe void VertexAttribL1(Int32 index, Int64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL1(Int32 index, Int64* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glVertexAttribL1ui64vARB")] [CLSCompliant(false)] - public static void VertexAttribL1(UInt32 index, UInt64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL1(UInt32 index, UInt64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glVertexAttribL1ui64vARB")] [CLSCompliant(false)] - public static unsafe void VertexAttribL1(UInt32 index, UInt64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL1(UInt32 index, UInt64* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Define an array of generic vertex attribute data @@ -22219,7 +22219,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttribPointerARB")] [CLSCompliant(false)] - public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Define an array of generic vertex attribute data @@ -22246,7 +22246,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Define an array of generic vertex attribute data @@ -22273,7 +22273,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Define an array of generic vertex attribute data @@ -22300,7 +22300,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Define an array of generic vertex attribute data @@ -22327,7 +22327,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T5 pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Define an array of generic vertex attribute data @@ -22352,7 +22352,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttribPointerARB")] [CLSCompliant(false)] - public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Define an array of generic vertex attribute data @@ -22379,7 +22379,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Define an array of generic vertex attribute data @@ -22406,7 +22406,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Define an array of generic vertex attribute data @@ -22433,7 +22433,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Define an array of generic vertex attribute data @@ -22460,96 +22460,96 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T5 pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glVertexBlendARB")] - public static void VertexBlend(Int32 count) { throw new NotImplementedException(); } + public static void VertexBlend(Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightbvARB")] [CLSCompliant(false)] - public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] SByte[] weights) { throw new NotImplementedException(); } + public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] SByte[] weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightbvARB")] [CLSCompliant(false)] - public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] ref SByte weights) { throw new NotImplementedException(); } + public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] ref SByte weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightbvARB")] [CLSCompliant(false)] - public static unsafe void Weight(Int32 size, [CountAttribute(Parameter = "size")] SByte* weights) { throw new NotImplementedException(); } + public static unsafe void Weight(Int32 size, [CountAttribute(Parameter = "size")] SByte* weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightdvARB")] [CLSCompliant(false)] - public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] Double[] weights) { throw new NotImplementedException(); } + public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] Double[] weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightdvARB")] [CLSCompliant(false)] - public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] ref Double weights) { throw new NotImplementedException(); } + public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] ref Double weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightdvARB")] [CLSCompliant(false)] - public static unsafe void Weight(Int32 size, [CountAttribute(Parameter = "size")] Double* weights) { throw new NotImplementedException(); } + public static unsafe void Weight(Int32 size, [CountAttribute(Parameter = "size")] Double* weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightfvARB")] [CLSCompliant(false)] - public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] Single[] weights) { throw new NotImplementedException(); } + public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] Single[] weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightfvARB")] [CLSCompliant(false)] - public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] ref Single weights) { throw new NotImplementedException(); } + public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] ref Single weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightfvARB")] [CLSCompliant(false)] - public static unsafe void Weight(Int32 size, [CountAttribute(Parameter = "size")] Single* weights) { throw new NotImplementedException(); } + public static unsafe void Weight(Int32 size, [CountAttribute(Parameter = "size")] Single* weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightivARB")] [CLSCompliant(false)] - public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] Int32[] weights) { throw new NotImplementedException(); } + public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] Int32[] weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightivARB")] [CLSCompliant(false)] - public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] ref Int32 weights) { throw new NotImplementedException(); } + public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] ref Int32 weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightivARB")] [CLSCompliant(false)] - public static unsafe void Weight(Int32 size, [CountAttribute(Parameter = "size")] Int32* weights) { throw new NotImplementedException(); } + public static unsafe void Weight(Int32 size, [CountAttribute(Parameter = "size")] Int32* weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// @@ -22557,7 +22557,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: COMPSIZE(type,stride)] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightPointerARB")] - public static void WeightPointer(Int32 size, OpenTK.Graphics.OpenGL.ArbVertexBlend type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void WeightPointer(Int32 size, OpenTK.Graphics.OpenGL.ArbVertexBlend type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// @@ -22568,7 +22568,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void WeightPointer(Int32 size, OpenTK.Graphics.OpenGL.ArbVertexBlend type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T3[] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// @@ -22579,7 +22579,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void WeightPointer(Int32 size, OpenTK.Graphics.OpenGL.ArbVertexBlend type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T3[,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// @@ -22590,7 +22590,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void WeightPointer(Int32 size, OpenTK.Graphics.OpenGL.ArbVertexBlend type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T3[,,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// @@ -22600,91 +22600,91 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightPointerARB")] public static void WeightPointer(Int32 size, OpenTK.Graphics.OpenGL.ArbVertexBlend type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] ref T3 pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightsvARB")] [CLSCompliant(false)] - public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] Int16[] weights) { throw new NotImplementedException(); } + public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] Int16[] weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightsvARB")] [CLSCompliant(false)] - public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] ref Int16 weights) { throw new NotImplementedException(); } + public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] ref Int16 weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightsvARB")] [CLSCompliant(false)] - public static unsafe void Weight(Int32 size, [CountAttribute(Parameter = "size")] Int16* weights) { throw new NotImplementedException(); } + public static unsafe void Weight(Int32 size, [CountAttribute(Parameter = "size")] Int16* weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightubvARB")] [CLSCompliant(false)] - public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] Byte[] weights) { throw new NotImplementedException(); } + public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] Byte[] weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightubvARB")] [CLSCompliant(false)] - public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] ref Byte weights) { throw new NotImplementedException(); } + public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] ref Byte weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightubvARB")] [CLSCompliant(false)] - public static unsafe void Weight(Int32 size, [CountAttribute(Parameter = "size")] Byte* weights) { throw new NotImplementedException(); } + public static unsafe void Weight(Int32 size, [CountAttribute(Parameter = "size")] Byte* weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightuivARB")] [CLSCompliant(false)] - public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] UInt32[] weights) { throw new NotImplementedException(); } + public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] UInt32[] weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightuivARB")] [CLSCompliant(false)] - public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] ref UInt32 weights) { throw new NotImplementedException(); } + public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] ref UInt32 weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightuivARB")] [CLSCompliant(false)] - public static unsafe void Weight(Int32 size, [CountAttribute(Parameter = "size")] UInt32* weights) { throw new NotImplementedException(); } + public static unsafe void Weight(Int32 size, [CountAttribute(Parameter = "size")] UInt32* weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightusvARB")] [CLSCompliant(false)] - public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] UInt16[] weights) { throw new NotImplementedException(); } + public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] UInt16[] weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightusvARB")] [CLSCompliant(false)] - public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] ref UInt16 weights) { throw new NotImplementedException(); } + public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] ref UInt16 weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightusvARB")] [CLSCompliant(false)] - public static unsafe void Weight(Int32 size, [CountAttribute(Parameter = "size")] UInt16* weights) { throw new NotImplementedException(); } + public static unsafe void Weight(Int32 size, [CountAttribute(Parameter = "size")] UInt16* weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22696,7 +22696,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2dARB")] - public static void WindowPos2(Double x, Double y) { throw new NotImplementedException(); } + public static void WindowPos2(Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22706,7 +22706,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2dvARB")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22716,7 +22716,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2dvARB")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22726,7 +22726,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2dvARB")] [CLSCompliant(false)] - public static unsafe void WindowPos2([CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos2([CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22738,7 +22738,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2fARB")] - public static void WindowPos2(Single x, Single y) { throw new NotImplementedException(); } + public static void WindowPos2(Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22748,7 +22748,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2fvARB")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22758,7 +22758,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2fvARB")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22768,7 +22768,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2fvARB")] [CLSCompliant(false)] - public static unsafe void WindowPos2([CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos2([CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22780,7 +22780,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2iARB")] - public static void WindowPos2(Int32 x, Int32 y) { throw new NotImplementedException(); } + public static void WindowPos2(Int32 x, Int32 y) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22790,7 +22790,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2ivARB")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] Int32[] v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22800,7 +22800,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2ivARB")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] ref Int32 v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22810,7 +22810,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2ivARB")] [CLSCompliant(false)] - public static unsafe void WindowPos2([CountAttribute(Count = 2)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos2([CountAttribute(Count = 2)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22822,7 +22822,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2sARB")] - public static void WindowPos2(Int16 x, Int16 y) { throw new NotImplementedException(); } + public static void WindowPos2(Int16 x, Int16 y) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22832,7 +22832,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2svARB")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] Int16[] v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22842,7 +22842,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2svARB")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] ref Int16 v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22852,7 +22852,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2svARB")] [CLSCompliant(false)] - public static unsafe void WindowPos2([CountAttribute(Count = 2)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos2([CountAttribute(Count = 2)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22867,7 +22867,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3dARB")] - public static void WindowPos3(Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void WindowPos3(Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22877,7 +22877,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3dvARB")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22887,7 +22887,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3dvARB")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22897,7 +22897,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3dvARB")] [CLSCompliant(false)] - public static unsafe void WindowPos3([CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos3([CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22912,7 +22912,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3fARB")] - public static void WindowPos3(Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void WindowPos3(Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22922,7 +22922,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3fvARB")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22932,7 +22932,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3fvARB")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22942,7 +22942,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3fvARB")] [CLSCompliant(false)] - public static unsafe void WindowPos3([CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos3([CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22957,7 +22957,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3iARB")] - public static void WindowPos3(Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void WindowPos3(Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22967,7 +22967,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3ivARB")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] Int32[] v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22977,7 +22977,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3ivARB")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] ref Int32 v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22987,7 +22987,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3ivARB")] [CLSCompliant(false)] - public static unsafe void WindowPos3([CountAttribute(Count = 3)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos3([CountAttribute(Count = 3)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -23002,7 +23002,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3sARB")] - public static void WindowPos3(Int16 x, Int16 y, Int16 z) { throw new NotImplementedException(); } + public static void WindowPos3(Int16 x, Int16 y, Int16 z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -23012,7 +23012,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3svARB")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -23022,7 +23022,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3svARB")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -23032,7 +23032,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3svARB")] [CLSCompliant(false)] - public static unsafe void WindowPos3([CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos3([CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } } @@ -23047,7 +23047,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glAlphaFragmentOp1ATI")] [CLSCompliant(false)] - public static void AlphaFragmentOp1(OpenTK.Graphics.OpenGL.AtiFragmentShader op, Int32 dst, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod) { throw new NotImplementedException(); } + public static void AlphaFragmentOp1(OpenTK.Graphics.OpenGL.AtiFragmentShader op, Int32 dst, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// @@ -23058,7 +23058,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glAlphaFragmentOp1ATI")] [CLSCompliant(false)] - public static void AlphaFragmentOp1(OpenTK.Graphics.OpenGL.AtiFragmentShader op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod) { throw new NotImplementedException(); } + public static void AlphaFragmentOp1(OpenTK.Graphics.OpenGL.AtiFragmentShader op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// @@ -23072,7 +23072,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glAlphaFragmentOp2ATI")] [CLSCompliant(false)] - public static void AlphaFragmentOp2(OpenTK.Graphics.OpenGL.AtiFragmentShader op, Int32 dst, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod) { throw new NotImplementedException(); } + public static void AlphaFragmentOp2(OpenTK.Graphics.OpenGL.AtiFragmentShader op, Int32 dst, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// @@ -23086,7 +23086,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glAlphaFragmentOp2ATI")] [CLSCompliant(false)] - public static void AlphaFragmentOp2(OpenTK.Graphics.OpenGL.AtiFragmentShader op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod) { throw new NotImplementedException(); } + public static void AlphaFragmentOp2(OpenTK.Graphics.OpenGL.AtiFragmentShader op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// @@ -23103,7 +23103,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glAlphaFragmentOp3ATI")] [CLSCompliant(false)] - public static void AlphaFragmentOp3(OpenTK.Graphics.OpenGL.AtiFragmentShader op, Int32 dst, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod, Int32 arg3, Int32 arg3Rep, Int32 arg3Mod) { throw new NotImplementedException(); } + public static void AlphaFragmentOp3(OpenTK.Graphics.OpenGL.AtiFragmentShader op, Int32 dst, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod, Int32 arg3, Int32 arg3Rep, Int32 arg3Mod) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// @@ -23120,7 +23120,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glAlphaFragmentOp3ATI")] [CLSCompliant(false)] - public static void AlphaFragmentOp3(OpenTK.Graphics.OpenGL.AtiFragmentShader op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod, UInt32 arg3, UInt32 arg3Rep, UInt32 arg3Mod) { throw new NotImplementedException(); } + public static void AlphaFragmentOp3(OpenTK.Graphics.OpenGL.AtiFragmentShader op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod, UInt32 arg3, UInt32 arg3Rep, UInt32 arg3Mod) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23131,7 +23131,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glArrayObjectATI")] [CLSCompliant(false)] - public static void ArrayObject(OpenTK.Graphics.OpenGL.EnableCap array, Int32 size, OpenTK.Graphics.OpenGL.AtiVertexArrayObject type, Int32 stride, Int32 buffer, Int32 offset) { throw new NotImplementedException(); } + public static void ArrayObject(OpenTK.Graphics.OpenGL.EnableCap array, Int32 size, OpenTK.Graphics.OpenGL.AtiVertexArrayObject type, Int32 stride, Int32 buffer, Int32 offset) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23142,28 +23142,28 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glArrayObjectATI")] [CLSCompliant(false)] - public static void ArrayObject(OpenTK.Graphics.OpenGL.EnableCap array, Int32 size, OpenTK.Graphics.OpenGL.AtiVertexArrayObject type, Int32 stride, UInt32 buffer, UInt32 offset) { throw new NotImplementedException(); } + public static void ArrayObject(OpenTK.Graphics.OpenGL.EnableCap array, Int32 size, OpenTK.Graphics.OpenGL.AtiVertexArrayObject type, Int32 stride, UInt32 buffer, UInt32 offset) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glBeginFragmentShaderATI")] - public static void BeginFragmentShader() { throw new NotImplementedException(); } + public static void BeginFragmentShader() { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glBindFragmentShaderATI")] [CLSCompliant(false)] - public static void BindFragmentShader(Int32 id) { throw new NotImplementedException(); } + public static void BindFragmentShader(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glBindFragmentShaderATI")] [CLSCompliant(false)] - public static void BindFragmentShader(UInt32 id) { throw new NotImplementedException(); } + public static void BindFragmentShader(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glClientActiveVertexStreamATI")] - public static void ClientActiveVertexStream(OpenTK.Graphics.OpenGL.AtiVertexStreams stream) { throw new NotImplementedException(); } + public static void ClientActiveVertexStream(OpenTK.Graphics.OpenGL.AtiVertexStreams stream) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// @@ -23175,7 +23175,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glColorFragmentOp1ATI")] [CLSCompliant(false)] - public static void ColorFragmentOp1(OpenTK.Graphics.OpenGL.AtiFragmentShader op, Int32 dst, Int32 dstMask, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod) { throw new NotImplementedException(); } + public static void ColorFragmentOp1(OpenTK.Graphics.OpenGL.AtiFragmentShader op, Int32 dst, Int32 dstMask, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// @@ -23187,7 +23187,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glColorFragmentOp1ATI")] [CLSCompliant(false)] - public static void ColorFragmentOp1(OpenTK.Graphics.OpenGL.AtiFragmentShader op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod) { throw new NotImplementedException(); } + public static void ColorFragmentOp1(OpenTK.Graphics.OpenGL.AtiFragmentShader op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// @@ -23202,7 +23202,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glColorFragmentOp2ATI")] [CLSCompliant(false)] - public static void ColorFragmentOp2(OpenTK.Graphics.OpenGL.AtiFragmentShader op, Int32 dst, Int32 dstMask, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod) { throw new NotImplementedException(); } + public static void ColorFragmentOp2(OpenTK.Graphics.OpenGL.AtiFragmentShader op, Int32 dst, Int32 dstMask, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// @@ -23217,7 +23217,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glColorFragmentOp2ATI")] [CLSCompliant(false)] - public static void ColorFragmentOp2(OpenTK.Graphics.OpenGL.AtiFragmentShader op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod) { throw new NotImplementedException(); } + public static void ColorFragmentOp2(OpenTK.Graphics.OpenGL.AtiFragmentShader op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// @@ -23235,7 +23235,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glColorFragmentOp3ATI")] [CLSCompliant(false)] - public static void ColorFragmentOp3(OpenTK.Graphics.OpenGL.AtiFragmentShader op, Int32 dst, Int32 dstMask, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod, Int32 arg3, Int32 arg3Rep, Int32 arg3Mod) { throw new NotImplementedException(); } + public static void ColorFragmentOp3(OpenTK.Graphics.OpenGL.AtiFragmentShader op, Int32 dst, Int32 dstMask, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod, Int32 arg3, Int32 arg3Rep, Int32 arg3Mod) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// @@ -23253,19 +23253,19 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glColorFragmentOp3ATI")] [CLSCompliant(false)] - public static void ColorFragmentOp3(OpenTK.Graphics.OpenGL.AtiFragmentShader op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod, UInt32 arg3, UInt32 arg3Rep, UInt32 arg3Mod) { throw new NotImplementedException(); } + public static void ColorFragmentOp3(OpenTK.Graphics.OpenGL.AtiFragmentShader op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod, UInt32 arg3, UInt32 arg3Rep, UInt32 arg3Mod) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glDeleteFragmentShaderATI")] [CLSCompliant(false)] - public static void DeleteFragmentShader(Int32 id) { throw new NotImplementedException(); } + public static void DeleteFragmentShader(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glDeleteFragmentShaderATI")] [CLSCompliant(false)] - public static void DeleteFragmentShader(UInt32 id) { throw new NotImplementedException(); } + public static void DeleteFragmentShader(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -23278,7 +23278,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_draw_buffers", Version = "", EntryPoint = "glDrawBuffersATI")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL.AtiDrawBuffers[] bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL.AtiDrawBuffers[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -23291,7 +23291,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_draw_buffers", Version = "", EntryPoint = "glDrawBuffersATI")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.OpenGL.AtiDrawBuffers bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.OpenGL.AtiDrawBuffers bufs) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -23304,20 +23304,20 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_draw_buffers", Version = "", EntryPoint = "glDrawBuffersATI")] [CLSCompliant(false)] - public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL.AtiDrawBuffers* bufs) { throw new NotImplementedException(); } + public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL.AtiDrawBuffers* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_element_array] /// /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ATI_element_array", Version = "", EntryPoint = "glDrawElementArrayATI")] - public static void DrawElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count) { throw new NotImplementedException(); } + public static void DrawElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_element_array] /// /// [AutoGenerated(Category = "ATI_element_array", Version = "", EntryPoint = "glDrawElementArrayATI")] - public static void DrawElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count) { throw new NotImplementedException(); } + public static void DrawElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_element_array] /// @@ -23327,7 +23327,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ATI_element_array", Version = "", EntryPoint = "glDrawRangeElementArrayATI")] [CLSCompliant(false)] - public static void DrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count) { throw new NotImplementedException(); } + public static void DrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_element_array] /// @@ -23337,7 +23337,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ATI_element_array", Version = "", EntryPoint = "glDrawRangeElementArrayATI")] [CLSCompliant(false)] - public static void DrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count) { throw new NotImplementedException(); } + public static void DrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_element_array] /// @@ -23346,7 +23346,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_element_array", Version = "", EntryPoint = "glDrawRangeElementArrayATI")] [CLSCompliant(false)] - public static void DrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count) { throw new NotImplementedException(); } + public static void DrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_element_array] /// @@ -23355,13 +23355,13 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_element_array", Version = "", EntryPoint = "glDrawRangeElementArrayATI")] [CLSCompliant(false)] - public static void DrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count) { throw new NotImplementedException(); } + public static void DrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_element_array] /// /// [length: COMPSIZE(type)] [AutoGenerated(Category = "ATI_element_array", Version = "", EntryPoint = "glElementPointerATI")] - public static void ElementPointer(OpenTK.Graphics.OpenGL.AtiElementArray type, [CountAttribute(Computed = "type")] IntPtr pointer) { throw new NotImplementedException(); } + public static void ElementPointer(OpenTK.Graphics.OpenGL.AtiElementArray type, [CountAttribute(Computed = "type")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_element_array] /// @@ -23370,7 +23370,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ElementPointer(OpenTK.Graphics.OpenGL.AtiElementArray type, [InAttribute, OutAttribute, CountAttribute(Computed = "type")] T1[] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ATI_element_array] /// @@ -23379,7 +23379,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ElementPointer(OpenTK.Graphics.OpenGL.AtiElementArray type, [InAttribute, OutAttribute, CountAttribute(Computed = "type")] T1[,] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ATI_element_array] /// @@ -23388,7 +23388,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ElementPointer(OpenTK.Graphics.OpenGL.AtiElementArray type, [InAttribute, OutAttribute, CountAttribute(Computed = "type")] T1[,,] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ATI_element_array] /// @@ -23396,35 +23396,35 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ATI_element_array", Version = "", EntryPoint = "glElementPointerATI")] public static void ElementPointer(OpenTK.Graphics.OpenGL.AtiElementArray type, [InAttribute, OutAttribute, CountAttribute(Computed = "type")] ref T1 pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glEndFragmentShaderATI")] - public static void EndFragmentShader() { throw new NotImplementedException(); } + public static void EndFragmentShader() { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glFreeObjectBufferATI")] [CLSCompliant(false)] - public static void FreeObjectBuffer(Int32 buffer) { throw new NotImplementedException(); } + public static void FreeObjectBuffer(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glFreeObjectBufferATI")] [CLSCompliant(false)] - public static void FreeObjectBuffer(UInt32 buffer) { throw new NotImplementedException(); } + public static void FreeObjectBuffer(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glGenFragmentShadersATI")] [CLSCompliant(false)] - public static Int32 GenFragmentShaders(Int32 range) { throw new NotImplementedException(); } + public static Int32 GenFragmentShaders(Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glGenFragmentShadersATI")] [CLSCompliant(false)] - public static Int32 GenFragmentShaders(UInt32 range) { throw new NotImplementedException(); } + public static Int32 GenFragmentShaders(UInt32 range) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23432,7 +23432,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetArrayObjectfvATI")] [CLSCompliant(false)] - public static void GetArrayObject(OpenTK.Graphics.OpenGL.EnableCap array, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] out Single @params) { throw new NotImplementedException(); } + public static void GetArrayObject(OpenTK.Graphics.OpenGL.EnableCap array, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23440,7 +23440,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetArrayObjectfvATI")] [CLSCompliant(false)] - public static unsafe void GetArrayObject(OpenTK.Graphics.OpenGL.EnableCap array, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetArrayObject(OpenTK.Graphics.OpenGL.EnableCap array, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23448,7 +23448,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetArrayObjectivATI")] [CLSCompliant(false)] - public static void GetArrayObject(OpenTK.Graphics.OpenGL.EnableCap array, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetArrayObject(OpenTK.Graphics.OpenGL.EnableCap array, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23456,7 +23456,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetArrayObjectivATI")] [CLSCompliant(false)] - public static unsafe void GetArrayObject(OpenTK.Graphics.OpenGL.EnableCap array, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetArrayObject(OpenTK.Graphics.OpenGL.EnableCap array, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23464,7 +23464,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetObjectBufferfvATI")] [CLSCompliant(false)] - public static void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] out Single @params) { throw new NotImplementedException(); } + public static void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23472,7 +23472,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetObjectBufferfvATI")] [CLSCompliant(false)] - public static unsafe void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23480,7 +23480,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetObjectBufferfvATI")] [CLSCompliant(false)] - public static void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] out Single @params) { throw new NotImplementedException(); } + public static void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23488,7 +23488,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetObjectBufferfvATI")] [CLSCompliant(false)] - public static unsafe void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23496,7 +23496,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetObjectBufferivATI")] [CLSCompliant(false)] - public static void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23504,7 +23504,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetObjectBufferivATI")] [CLSCompliant(false)] - public static unsafe void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23512,7 +23512,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetObjectBufferivATI")] [CLSCompliant(false)] - public static void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23520,55 +23520,55 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetObjectBufferivATI")] [CLSCompliant(false)] - public static unsafe void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_envmap_bumpmap] /// [AutoGenerated(Category = "ATI_envmap_bumpmap", Version = "", EntryPoint = "glGetTexBumpParameterfvATI")] [CLSCompliant(false)] - public static Single GetTexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname) { throw new NotImplementedException(); } + public static Single GetTexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_envmap_bumpmap] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_envmap_bumpmap", Version = "", EntryPoint = "glGetTexBumpParameterfvATI")] [CLSCompliant(false)] - public static void GetTexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] param) { throw new NotImplementedException(); } + public static void GetTexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] param) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_envmap_bumpmap] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_envmap_bumpmap", Version = "", EntryPoint = "glGetTexBumpParameterfvATI")] [CLSCompliant(false)] - public static void GetTexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single param) { throw new NotImplementedException(); } + public static void GetTexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single param) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_envmap_bumpmap] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_envmap_bumpmap", Version = "", EntryPoint = "glGetTexBumpParameterfvATI")] [CLSCompliant(false)] - public static unsafe void GetTexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* param) { throw new NotImplementedException(); } + public static unsafe void GetTexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* param) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_envmap_bumpmap] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_envmap_bumpmap", Version = "", EntryPoint = "glGetTexBumpParameterivATI")] [CLSCompliant(false)] - public static void GetTexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void GetTexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_envmap_bumpmap] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_envmap_bumpmap", Version = "", EntryPoint = "glGetTexBumpParameterivATI")] [CLSCompliant(false)] - public static void GetTexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 param) { throw new NotImplementedException(); } + public static void GetTexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_envmap_bumpmap] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_envmap_bumpmap", Version = "", EntryPoint = "glGetTexBumpParameterivATI")] [CLSCompliant(false)] - public static unsafe void GetTexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetTexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23576,7 +23576,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetVariantArrayObjectfvATI")] [CLSCompliant(false)] - public static void GetVariantArrayObject(Int32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] out Single @params) { throw new NotImplementedException(); } + public static void GetVariantArrayObject(Int32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23584,7 +23584,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetVariantArrayObjectfvATI")] [CLSCompliant(false)] - public static unsafe void GetVariantArrayObject(Int32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVariantArrayObject(Int32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23592,7 +23592,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetVariantArrayObjectfvATI")] [CLSCompliant(false)] - public static void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] out Single @params) { throw new NotImplementedException(); } + public static void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23600,7 +23600,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetVariantArrayObjectfvATI")] [CLSCompliant(false)] - public static unsafe void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23608,7 +23608,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetVariantArrayObjectivATI")] [CLSCompliant(false)] - public static void GetVariantArrayObject(Int32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVariantArrayObject(Int32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23616,7 +23616,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetVariantArrayObjectivATI")] [CLSCompliant(false)] - public static unsafe void GetVariantArrayObject(Int32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVariantArrayObject(Int32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23624,7 +23624,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetVariantArrayObjectivATI")] [CLSCompliant(false)] - public static void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23632,7 +23632,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetVariantArrayObjectivATI")] [CLSCompliant(false)] - public static unsafe void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_attrib_array_object] /// @@ -23640,7 +23640,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_vertex_attrib_array_object", Version = "", EntryPoint = "glGetVertexAttribArrayObjectfvATI")] [CLSCompliant(false)] - public static void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_attrib_array_object] /// @@ -23648,7 +23648,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_vertex_attrib_array_object", Version = "", EntryPoint = "glGetVertexAttribArrayObjectfvATI")] [CLSCompliant(false)] - public static void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_attrib_array_object] /// @@ -23656,7 +23656,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_vertex_attrib_array_object", Version = "", EntryPoint = "glGetVertexAttribArrayObjectfvATI")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_attrib_array_object] /// @@ -23664,7 +23664,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_vertex_attrib_array_object", Version = "", EntryPoint = "glGetVertexAttribArrayObjectfvATI")] [CLSCompliant(false)] - public static void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_attrib_array_object] /// @@ -23672,7 +23672,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_vertex_attrib_array_object", Version = "", EntryPoint = "glGetVertexAttribArrayObjectfvATI")] [CLSCompliant(false)] - public static void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_attrib_array_object] /// @@ -23680,7 +23680,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_vertex_attrib_array_object", Version = "", EntryPoint = "glGetVertexAttribArrayObjectfvATI")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_attrib_array_object] /// @@ -23688,7 +23688,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_vertex_attrib_array_object", Version = "", EntryPoint = "glGetVertexAttribArrayObjectivATI")] [CLSCompliant(false)] - public static void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_attrib_array_object] /// @@ -23696,7 +23696,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_vertex_attrib_array_object", Version = "", EntryPoint = "glGetVertexAttribArrayObjectivATI")] [CLSCompliant(false)] - public static void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_attrib_array_object] /// @@ -23704,7 +23704,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_vertex_attrib_array_object", Version = "", EntryPoint = "glGetVertexAttribArrayObjectivATI")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_attrib_array_object] /// @@ -23712,7 +23712,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_vertex_attrib_array_object", Version = "", EntryPoint = "glGetVertexAttribArrayObjectivATI")] [CLSCompliant(false)] - public static void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_attrib_array_object] /// @@ -23720,7 +23720,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_vertex_attrib_array_object", Version = "", EntryPoint = "glGetVertexAttribArrayObjectivATI")] [CLSCompliant(false)] - public static void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_attrib_array_object] /// @@ -23728,38 +23728,38 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_vertex_attrib_array_object", Version = "", EntryPoint = "glGetVertexAttribArrayObjectivATI")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glIsObjectBufferATI")] [CLSCompliant(false)] - public static bool IsObjectBuffer(Int32 buffer) { throw new NotImplementedException(); } + public static bool IsObjectBuffer(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glIsObjectBufferATI")] [CLSCompliant(false)] - public static bool IsObjectBuffer(UInt32 buffer) { throw new NotImplementedException(); } + public static bool IsObjectBuffer(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_map_object_buffer] /// [AutoGenerated(Category = "ATI_map_object_buffer", Version = "", EntryPoint = "glMapObjectBufferATI")] [CLSCompliant(false)] - public static IntPtr MapObjectBuffer(Int32 buffer) { throw new NotImplementedException(); } + public static IntPtr MapObjectBuffer(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_map_object_buffer] /// [AutoGenerated(Category = "ATI_map_object_buffer", Version = "", EntryPoint = "glMapObjectBufferATI")] [CLSCompliant(false)] - public static IntPtr MapObjectBuffer(UInt32 buffer) { throw new NotImplementedException(); } + public static IntPtr MapObjectBuffer(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// /// [length: size] /// [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glNewObjectBufferATI")] - public static Int32 NewObjectBuffer(Int32 size, [CountAttribute(Parameter = "size")] IntPtr pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject usage) { throw new NotImplementedException(); } + public static Int32 NewObjectBuffer(Int32 size, [CountAttribute(Parameter = "size")] IntPtr pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject usage) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23769,7 +23769,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static Int32 NewObjectBuffer(Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T1[] pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject usage) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23779,7 +23779,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static Int32 NewObjectBuffer(Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T1[,] pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject usage) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23789,7 +23789,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static Int32 NewObjectBuffer(Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T1[,,] pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject usage) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23798,7 +23798,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glNewObjectBufferATI")] public static Int32 NewObjectBuffer(Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T1 pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject usage) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// @@ -23807,7 +23807,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3bATI")] [CLSCompliant(false)] - public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Byte nx, Byte ny, Byte nz) { throw new NotImplementedException(); } + public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Byte nx, Byte ny, Byte nz) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// @@ -23816,49 +23816,49 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3bATI")] [CLSCompliant(false)] - public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, SByte nx, SByte ny, SByte nz) { throw new NotImplementedException(); } + public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, SByte nx, SByte ny, SByte nz) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3bvATI")] [CLSCompliant(false)] - public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Byte[] coords) { throw new NotImplementedException(); } + public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Byte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3bvATI")] [CLSCompliant(false)] - public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] ref Byte coords) { throw new NotImplementedException(); } + public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] ref Byte coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3bvATI")] [CLSCompliant(false)] - public static unsafe void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3bvATI")] [CLSCompliant(false)] - public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] SByte[] coords) { throw new NotImplementedException(); } + public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] SByte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3bvATI")] [CLSCompliant(false)] - public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] ref SByte coords) { throw new NotImplementedException(); } + public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] ref SByte coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3bvATI")] [CLSCompliant(false)] - public static unsafe void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// @@ -23866,28 +23866,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3dATI")] - public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Double nx, Double ny, Double nz) { throw new NotImplementedException(); } + public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Double nx, Double ny, Double nz) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3dvATI")] [CLSCompliant(false)] - public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Double[] coords) { throw new NotImplementedException(); } + public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Double[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3dvATI")] [CLSCompliant(false)] - public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] ref Double coords) { throw new NotImplementedException(); } + public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] ref Double coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3dvATI")] [CLSCompliant(false)] - public static unsafe void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Double* coords) { throw new NotImplementedException(); } + public static unsafe void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Double* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// @@ -23895,28 +23895,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3fATI")] - public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Single nx, Single ny, Single nz) { throw new NotImplementedException(); } + public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Single nx, Single ny, Single nz) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3fvATI")] [CLSCompliant(false)] - public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Single[] coords) { throw new NotImplementedException(); } + public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Single[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3fvATI")] [CLSCompliant(false)] - public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] ref Single coords) { throw new NotImplementedException(); } + public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] ref Single coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3fvATI")] [CLSCompliant(false)] - public static unsafe void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Single* coords) { throw new NotImplementedException(); } + public static unsafe void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Single* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// @@ -23924,28 +23924,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3iATI")] - public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int32 nx, Int32 ny, Int32 nz) { throw new NotImplementedException(); } + public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int32 nx, Int32 ny, Int32 nz) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3ivATI")] [CLSCompliant(false)] - public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Int32[] coords) { throw new NotImplementedException(); } + public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3ivATI")] [CLSCompliant(false)] - public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] ref Int32 coords) { throw new NotImplementedException(); } + public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3ivATI")] [CLSCompliant(false)] - public static unsafe void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// @@ -23953,28 +23953,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3sATI")] - public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int16 nx, Int16 ny, Int16 nz) { throw new NotImplementedException(); } + public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int16 nx, Int16 ny, Int16 nz) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3svATI")] [CLSCompliant(false)] - public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Int16[] coords) { throw new NotImplementedException(); } + public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Int16[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3svATI")] [CLSCompliant(false)] - public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] ref Int16 coords) { throw new NotImplementedException(); } + public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] ref Int16 coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3svATI")] [CLSCompliant(false)] - public static unsafe void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Int16* coords) { throw new NotImplementedException(); } + public static unsafe void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Int16* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// @@ -23982,7 +23982,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glPassTexCoordATI")] [CLSCompliant(false)] - public static void PassTexCoord(Int32 dst, Int32 coord, OpenTK.Graphics.OpenGL.AtiFragmentShader swizzle) { throw new NotImplementedException(); } + public static void PassTexCoord(Int32 dst, Int32 coord, OpenTK.Graphics.OpenGL.AtiFragmentShader swizzle) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// @@ -23990,19 +23990,19 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glPassTexCoordATI")] [CLSCompliant(false)] - public static void PassTexCoord(UInt32 dst, UInt32 coord, OpenTK.Graphics.OpenGL.AtiFragmentShader swizzle) { throw new NotImplementedException(); } + public static void PassTexCoord(UInt32 dst, UInt32 coord, OpenTK.Graphics.OpenGL.AtiFragmentShader swizzle) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_pn_triangles] /// /// [AutoGenerated(Category = "ATI_pn_triangles", Version = "", EntryPoint = "glPNTrianglesfATI")] - public static void PNTriangles(OpenTK.Graphics.OpenGL.AtiPnTriangles pname, Single param) { throw new NotImplementedException(); } + public static void PNTriangles(OpenTK.Graphics.OpenGL.AtiPnTriangles pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_pn_triangles] /// /// [AutoGenerated(Category = "ATI_pn_triangles", Version = "", EntryPoint = "glPNTrianglesiATI")] - public static void PNTriangles(OpenTK.Graphics.OpenGL.AtiPnTriangles pname, Int32 param) { throw new NotImplementedException(); } + public static void PNTriangles(OpenTK.Graphics.OpenGL.AtiPnTriangles pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// @@ -24010,7 +24010,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glSampleMapATI")] [CLSCompliant(false)] - public static void SampleMap(Int32 dst, Int32 interp, OpenTK.Graphics.OpenGL.AtiFragmentShader swizzle) { throw new NotImplementedException(); } + public static void SampleMap(Int32 dst, Int32 interp, OpenTK.Graphics.OpenGL.AtiFragmentShader swizzle) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// @@ -24018,49 +24018,49 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glSampleMapATI")] [CLSCompliant(false)] - public static void SampleMap(UInt32 dst, UInt32 interp, OpenTK.Graphics.OpenGL.AtiFragmentShader swizzle) { throw new NotImplementedException(); } + public static void SampleMap(UInt32 dst, UInt32 interp, OpenTK.Graphics.OpenGL.AtiFragmentShader swizzle) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// /// [length: 4] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glSetFragmentShaderConstantATI")] [CLSCompliant(false)] - public static void SetFragmentShaderConstant(Int32 dst, [CountAttribute(Count = 4)] Single[] value) { throw new NotImplementedException(); } + public static void SetFragmentShaderConstant(Int32 dst, [CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// /// [length: 4] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glSetFragmentShaderConstantATI")] [CLSCompliant(false)] - public static void SetFragmentShaderConstant(Int32 dst, [CountAttribute(Count = 4)] ref Single value) { throw new NotImplementedException(); } + public static void SetFragmentShaderConstant(Int32 dst, [CountAttribute(Count = 4)] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// /// [length: 4] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glSetFragmentShaderConstantATI")] [CLSCompliant(false)] - public static unsafe void SetFragmentShaderConstant(Int32 dst, [CountAttribute(Count = 4)] Single* value) { throw new NotImplementedException(); } + public static unsafe void SetFragmentShaderConstant(Int32 dst, [CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// /// [length: 4] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glSetFragmentShaderConstantATI")] [CLSCompliant(false)] - public static void SetFragmentShaderConstant(UInt32 dst, [CountAttribute(Count = 4)] Single[] value) { throw new NotImplementedException(); } + public static void SetFragmentShaderConstant(UInt32 dst, [CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// /// [length: 4] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glSetFragmentShaderConstantATI")] [CLSCompliant(false)] - public static void SetFragmentShaderConstant(UInt32 dst, [CountAttribute(Count = 4)] ref Single value) { throw new NotImplementedException(); } + public static void SetFragmentShaderConstant(UInt32 dst, [CountAttribute(Count = 4)] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// /// [length: 4] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glSetFragmentShaderConstantATI")] [CLSCompliant(false)] - public static unsafe void SetFragmentShaderConstant(UInt32 dst, [CountAttribute(Count = 4)] Single* value) { throw new NotImplementedException(); } + public static unsafe void SetFragmentShaderConstant(UInt32 dst, [CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_separate_stencil] /// Set front and/or back function and reference value for stencil testing @@ -24079,7 +24079,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_separate_stencil", Version = "", EntryPoint = "glStencilFuncSeparateATI")] [CLSCompliant(false)] - public static void StencilFuncSeparate(OpenTK.Graphics.OpenGL.StencilFunction frontfunc, OpenTK.Graphics.OpenGL.StencilFunction backfunc, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } + public static void StencilFuncSeparate(OpenTK.Graphics.OpenGL.StencilFunction frontfunc, OpenTK.Graphics.OpenGL.StencilFunction backfunc, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_separate_stencil] /// Set front and/or back function and reference value for stencil testing @@ -24098,7 +24098,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_separate_stencil", Version = "", EntryPoint = "glStencilFuncSeparateATI")] [CLSCompliant(false)] - public static void StencilFuncSeparate(OpenTK.Graphics.OpenGL.StencilFunction frontfunc, OpenTK.Graphics.OpenGL.StencilFunction backfunc, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFuncSeparate(OpenTK.Graphics.OpenGL.StencilFunction frontfunc, OpenTK.Graphics.OpenGL.StencilFunction backfunc, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_separate_stencil] /// Set front and/or back stencil test actions @@ -24116,61 +24116,61 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the stencil action when both the stencil test and the depth test pass, or when the stencil test passes and either there is no depth buffer or depth testing is not enabled. dppass accepts the same symbolic constants as sfail. The initial value is Keep. /// [AutoGenerated(Category = "ATI_separate_stencil", Version = "", EntryPoint = "glStencilOpSeparateATI")] - public static void StencilOpSeparate(OpenTK.Graphics.OpenGL.StencilFaceDirection face, OpenTK.Graphics.OpenGL.StencilOp sfail, OpenTK.Graphics.OpenGL.StencilOp dpfail, OpenTK.Graphics.OpenGL.StencilOp dppass) { throw new NotImplementedException(); } + public static void StencilOpSeparate(OpenTK.Graphics.OpenGL.StencilFaceDirection face, OpenTK.Graphics.OpenGL.StencilOp sfail, OpenTK.Graphics.OpenGL.StencilOp dpfail, OpenTK.Graphics.OpenGL.StencilOp dppass) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_envmap_bumpmap] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_envmap_bumpmap", Version = "", EntryPoint = "glTexBumpParameterfvATI")] [CLSCompliant(false)] - public static void TexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new NotImplementedException(); } + public static void TexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_envmap_bumpmap] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_envmap_bumpmap", Version = "", EntryPoint = "glTexBumpParameterfvATI")] [CLSCompliant(false)] - public static void TexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [CountAttribute(Computed = "pname")] ref Single param) { throw new NotImplementedException(); } + public static void TexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [CountAttribute(Computed = "pname")] ref Single param) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_envmap_bumpmap] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_envmap_bumpmap", Version = "", EntryPoint = "glTexBumpParameterfvATI")] [CLSCompliant(false)] - public static unsafe void TexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [CountAttribute(Computed = "pname")] Single* param) { throw new NotImplementedException(); } + public static unsafe void TexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [CountAttribute(Computed = "pname")] Single* param) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_envmap_bumpmap] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_envmap_bumpmap", Version = "", EntryPoint = "glTexBumpParameterivATI")] [CLSCompliant(false)] - public static void TexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void TexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_envmap_bumpmap] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_envmap_bumpmap", Version = "", EntryPoint = "glTexBumpParameterivATI")] [CLSCompliant(false)] - public static void TexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new NotImplementedException(); } + public static void TexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_envmap_bumpmap] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_envmap_bumpmap", Version = "", EntryPoint = "glTexBumpParameterivATI")] [CLSCompliant(false)] - public static unsafe void TexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void TexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_map_object_buffer] /// [AutoGenerated(Category = "ATI_map_object_buffer", Version = "", EntryPoint = "glUnmapObjectBufferATI")] [CLSCompliant(false)] - public static void UnmapObjectBuffer(Int32 buffer) { throw new NotImplementedException(); } + public static void UnmapObjectBuffer(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_map_object_buffer] /// [AutoGenerated(Category = "ATI_map_object_buffer", Version = "", EntryPoint = "glUnmapObjectBufferATI")] [CLSCompliant(false)] - public static void UnmapObjectBuffer(UInt32 buffer) { throw new NotImplementedException(); } + public static void UnmapObjectBuffer(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -24180,7 +24180,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glUpdateObjectBufferATI")] [CLSCompliant(false)] - public static void UpdateObjectBuffer(Int32 buffer, Int32 offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject preserve) { throw new NotImplementedException(); } + public static void UpdateObjectBuffer(Int32 buffer, Int32 offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject preserve) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -24192,7 +24192,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void UpdateObjectBuffer(Int32 buffer, Int32 offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject preserve) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -24204,7 +24204,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void UpdateObjectBuffer(Int32 buffer, Int32 offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject preserve) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -24216,7 +24216,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void UpdateObjectBuffer(Int32 buffer, Int32 offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject preserve) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -24228,7 +24228,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void UpdateObjectBuffer(Int32 buffer, Int32 offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject preserve) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -24238,7 +24238,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glUpdateObjectBufferATI")] [CLSCompliant(false)] - public static void UpdateObjectBuffer(UInt32 buffer, UInt32 offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject preserve) { throw new NotImplementedException(); } + public static void UpdateObjectBuffer(UInt32 buffer, UInt32 offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject preserve) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -24250,7 +24250,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void UpdateObjectBuffer(UInt32 buffer, UInt32 offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject preserve) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -24262,7 +24262,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void UpdateObjectBuffer(UInt32 buffer, UInt32 offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject preserve) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -24274,7 +24274,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void UpdateObjectBuffer(UInt32 buffer, UInt32 offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject preserve) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -24286,7 +24286,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void UpdateObjectBuffer(UInt32 buffer, UInt32 offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject preserve) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -24296,7 +24296,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glVariantArrayObjectATI")] [CLSCompliant(false)] - public static void VariantArrayObject(Int32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject type, Int32 stride, Int32 buffer, Int32 offset) { throw new NotImplementedException(); } + public static void VariantArrayObject(Int32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject type, Int32 stride, Int32 buffer, Int32 offset) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -24306,7 +24306,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glVariantArrayObjectATI")] [CLSCompliant(false)] - public static void VariantArrayObject(UInt32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject type, Int32 stride, UInt32 buffer, UInt32 offset) { throw new NotImplementedException(); } + public static void VariantArrayObject(UInt32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject type, Int32 stride, UInt32 buffer, UInt32 offset) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_attrib_array_object] /// @@ -24319,7 +24319,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use VertexAttribPointerType overload instead")] [AutoGenerated(Category = "ATI_vertex_attrib_array_object", Version = "", EntryPoint = "glVertexAttribArrayObjectATI")] [CLSCompliant(false)] - public static void VertexAttribArrayObject(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject type, bool normalized, Int32 stride, Int32 buffer, Int32 offset) { throw new NotImplementedException(); } + public static void VertexAttribArrayObject(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject type, bool normalized, Int32 stride, Int32 buffer, Int32 offset) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_attrib_array_object] /// @@ -24331,7 +24331,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_vertex_attrib_array_object", Version = "", EntryPoint = "glVertexAttribArrayObjectATI")] [CLSCompliant(false)] - public static void VertexAttribArrayObject(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, Int32 buffer, Int32 offset) { throw new NotImplementedException(); } + public static void VertexAttribArrayObject(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, Int32 buffer, Int32 offset) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_attrib_array_object] /// @@ -24344,7 +24344,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use VertexAttribPointerType overload instead")] [AutoGenerated(Category = "ATI_vertex_attrib_array_object", Version = "", EntryPoint = "glVertexAttribArrayObjectATI")] [CLSCompliant(false)] - public static void VertexAttribArrayObject(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject type, bool normalized, Int32 stride, UInt32 buffer, UInt32 offset) { throw new NotImplementedException(); } + public static void VertexAttribArrayObject(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject type, bool normalized, Int32 stride, UInt32 buffer, UInt32 offset) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_attrib_array_object] /// @@ -24356,183 +24356,183 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_vertex_attrib_array_object", Version = "", EntryPoint = "glVertexAttribArrayObjectATI")] [CLSCompliant(false)] - public static void VertexAttribArrayObject(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, UInt32 buffer, UInt32 offset) { throw new NotImplementedException(); } + public static void VertexAttribArrayObject(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, UInt32 buffer, UInt32 offset) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexBlendEnvfATI")] - public static void VertexBlendEnv(OpenTK.Graphics.OpenGL.AtiVertexStreams pname, Single param) { throw new NotImplementedException(); } + public static void VertexBlendEnv(OpenTK.Graphics.OpenGL.AtiVertexStreams pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexBlendEnviATI")] - public static void VertexBlendEnv(OpenTK.Graphics.OpenGL.AtiVertexStreams pname, Int32 param) { throw new NotImplementedException(); } + public static void VertexBlendEnv(OpenTK.Graphics.OpenGL.AtiVertexStreams pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream1dATI")] - public static void VertexStream1(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Double x) { throw new NotImplementedException(); } + public static void VertexStream1(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 1] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream1dvATI")] [CLSCompliant(false)] - public static unsafe void VertexStream1(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 1)] Double* coords) { throw new NotImplementedException(); } + public static unsafe void VertexStream1(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 1)] Double* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream1fATI")] - public static void VertexStream1(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Single x) { throw new NotImplementedException(); } + public static void VertexStream1(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Single x) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 1] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream1fvATI")] [CLSCompliant(false)] - public static unsafe void VertexStream1(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 1)] Single* coords) { throw new NotImplementedException(); } + public static unsafe void VertexStream1(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 1)] Single* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream1iATI")] - public static void VertexStream1(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int32 x) { throw new NotImplementedException(); } + public static void VertexStream1(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int32 x) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 1] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream1ivATI")] [CLSCompliant(false)] - public static unsafe void VertexStream1(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void VertexStream1(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream1sATI")] - public static void VertexStream1(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int16 x) { throw new NotImplementedException(); } + public static void VertexStream1(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int16 x) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 1] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream1svATI")] [CLSCompliant(false)] - public static unsafe void VertexStream1(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 1)] Int16* coords) { throw new NotImplementedException(); } + public static unsafe void VertexStream1(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 1)] Int16* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2dATI")] - public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Double x, Double y) { throw new NotImplementedException(); } + public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 2] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2dvATI")] [CLSCompliant(false)] - public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] Double[] coords) { throw new NotImplementedException(); } + public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] Double[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 2] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2dvATI")] [CLSCompliant(false)] - public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] ref Double coords) { throw new NotImplementedException(); } + public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] ref Double coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 2] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2dvATI")] [CLSCompliant(false)] - public static unsafe void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] Double* coords) { throw new NotImplementedException(); } + public static unsafe void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] Double* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2fATI")] - public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Single x, Single y) { throw new NotImplementedException(); } + public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 2] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2fvATI")] [CLSCompliant(false)] - public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] Single[] coords) { throw new NotImplementedException(); } + public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] Single[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 2] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2fvATI")] [CLSCompliant(false)] - public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] ref Single coords) { throw new NotImplementedException(); } + public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] ref Single coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 2] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2fvATI")] [CLSCompliant(false)] - public static unsafe void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] Single* coords) { throw new NotImplementedException(); } + public static unsafe void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] Single* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2iATI")] - public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int32 x, Int32 y) { throw new NotImplementedException(); } + public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int32 x, Int32 y) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 2] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2ivATI")] [CLSCompliant(false)] - public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] Int32[] coords) { throw new NotImplementedException(); } + public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 2] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2ivATI")] [CLSCompliant(false)] - public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] ref Int32 coords) { throw new NotImplementedException(); } + public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 2] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2ivATI")] [CLSCompliant(false)] - public static unsafe void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2sATI")] - public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int16 x, Int16 y) { throw new NotImplementedException(); } + public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int16 x, Int16 y) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 2] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2svATI")] [CLSCompliant(false)] - public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] Int16[] coords) { throw new NotImplementedException(); } + public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] Int16[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 2] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2svATI")] [CLSCompliant(false)] - public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] ref Int16 coords) { throw new NotImplementedException(); } + public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] ref Int16 coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 2] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2svATI")] [CLSCompliant(false)] - public static unsafe void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] Int16* coords) { throw new NotImplementedException(); } + public static unsafe void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] Int16* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// @@ -24540,28 +24540,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3dATI")] - public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3dvATI")] [CLSCompliant(false)] - public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Double[] coords) { throw new NotImplementedException(); } + public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Double[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3dvATI")] [CLSCompliant(false)] - public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] ref Double coords) { throw new NotImplementedException(); } + public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] ref Double coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3dvATI")] [CLSCompliant(false)] - public static unsafe void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Double* coords) { throw new NotImplementedException(); } + public static unsafe void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Double* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// @@ -24569,28 +24569,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3fATI")] - public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3fvATI")] [CLSCompliant(false)] - public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Single[] coords) { throw new NotImplementedException(); } + public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Single[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3fvATI")] [CLSCompliant(false)] - public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] ref Single coords) { throw new NotImplementedException(); } + public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] ref Single coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3fvATI")] [CLSCompliant(false)] - public static unsafe void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Single* coords) { throw new NotImplementedException(); } + public static unsafe void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Single* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// @@ -24598,28 +24598,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3iATI")] - public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3ivATI")] [CLSCompliant(false)] - public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Int32[] coords) { throw new NotImplementedException(); } + public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3ivATI")] [CLSCompliant(false)] - public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] ref Int32 coords) { throw new NotImplementedException(); } + public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3ivATI")] [CLSCompliant(false)] - public static unsafe void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// @@ -24627,28 +24627,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3sATI")] - public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int16 x, Int16 y, Int16 z) { throw new NotImplementedException(); } + public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int16 x, Int16 y, Int16 z) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3svATI")] [CLSCompliant(false)] - public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Int16[] coords) { throw new NotImplementedException(); } + public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Int16[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3svATI")] [CLSCompliant(false)] - public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] ref Int16 coords) { throw new NotImplementedException(); } + public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] ref Int16 coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3svATI")] [CLSCompliant(false)] - public static unsafe void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Int16* coords) { throw new NotImplementedException(); } + public static unsafe void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Int16* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// @@ -24657,28 +24657,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4dATI")] - public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 4] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4dvATI")] [CLSCompliant(false)] - public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] Double[] coords) { throw new NotImplementedException(); } + public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] Double[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 4] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4dvATI")] [CLSCompliant(false)] - public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] ref Double coords) { throw new NotImplementedException(); } + public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] ref Double coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 4] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4dvATI")] [CLSCompliant(false)] - public static unsafe void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] Double* coords) { throw new NotImplementedException(); } + public static unsafe void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] Double* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// @@ -24687,28 +24687,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4fATI")] - public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 4] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4fvATI")] [CLSCompliant(false)] - public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] Single[] coords) { throw new NotImplementedException(); } + public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] Single[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 4] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4fvATI")] [CLSCompliant(false)] - public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] ref Single coords) { throw new NotImplementedException(); } + public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] ref Single coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 4] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4fvATI")] [CLSCompliant(false)] - public static unsafe void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] Single* coords) { throw new NotImplementedException(); } + public static unsafe void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] Single* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// @@ -24717,28 +24717,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4iATI")] - public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } + public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 4] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4ivATI")] [CLSCompliant(false)] - public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] Int32[] coords) { throw new NotImplementedException(); } + public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 4] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4ivATI")] [CLSCompliant(false)] - public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] ref Int32 coords) { throw new NotImplementedException(); } + public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 4] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4ivATI")] [CLSCompliant(false)] - public static unsafe void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// @@ -24747,28 +24747,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4sATI")] - public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int16 x, Int16 y, Int16 z, Int16 w) { throw new NotImplementedException(); } + public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int16 x, Int16 y, Int16 z, Int16 w) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 4] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4svATI")] [CLSCompliant(false)] - public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] Int16[] coords) { throw new NotImplementedException(); } + public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] Int16[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 4] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4svATI")] [CLSCompliant(false)] - public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] ref Int16 coords) { throw new NotImplementedException(); } + public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] ref Int16 coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 4] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4svATI")] [CLSCompliant(false)] - public static unsafe void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] Int16* coords) { throw new NotImplementedException(); } + public static unsafe void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] Int16* coords) { throw new BindingsNotRewrittenException(); } } @@ -24776,7 +24776,7 @@ namespace OpenTK.Graphics.OpenGL { /// [requires: INTEL_framebuffer_CMAA] [AutoGenerated(Category = "INTEL_framebuffer_CMAA", Version = "", EntryPoint = "glApplyFramebufferAttachmentCMAAINTEL")] - public static void ApplyFramebufferAttachment() { throw new NotImplementedException(); } + public static void ApplyFramebufferAttachment() { throw new BindingsNotRewrittenException(); } } @@ -24790,7 +24790,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a floating-point value used in the accumulation buffer operation. op determines how value is used. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glAccum")] - public static void Accum(OpenTK.Graphics.OpenGL.AccumOp op, Single value) { throw new NotImplementedException(); } + public static void Accum(OpenTK.Graphics.OpenGL.AccumOp op, Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Set the active program object for a program pipeline object @@ -24803,7 +24803,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glActiveShaderProgram")] [CLSCompliant(false)] - public static void ActiveShaderProgram(Int32 pipeline, Int32 program) { throw new NotImplementedException(); } + public static void ActiveShaderProgram(Int32 pipeline, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Set the active program object for a program pipeline object @@ -24816,7 +24816,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glActiveShaderProgram")] [CLSCompliant(false)] - public static void ActiveShaderProgram(UInt32 pipeline, UInt32 program) { throw new NotImplementedException(); } + public static void ActiveShaderProgram(UInt32 pipeline, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Select active texture unit @@ -24825,7 +24825,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies which texture unit to make active. The number of texture units is implementation dependent, but must be at least 80. texture must be one of Texturei, where i ranges from zero to the value of MaxCombinedTextureImageUnits minus one. The initial value is Texture0. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glActiveTexture")] - public static void ActiveTexture(OpenTK.Graphics.OpenGL.TextureUnit texture) { throw new NotImplementedException(); } + public static void ActiveTexture(OpenTK.Graphics.OpenGL.TextureUnit texture) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the alpha test function @@ -24837,7 +24837,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the reference value that incoming alpha values are compared to. This value is clamped to the range [0,1], where 0 represents the lowest possible alpha value and 1 the highest possible value. The initial reference value is 0. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glAlphaFunc")] - public static void AlphaFunc(OpenTK.Graphics.OpenGL.AlphaFunction func, Single @ref) { throw new NotImplementedException(); } + public static void AlphaFunc(OpenTK.Graphics.OpenGL.AlphaFunction func, Single @ref) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Determine if textures are loaded in texture memory @@ -24853,7 +24853,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glAreTexturesResident")] [CLSCompliant(false)] - public static bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures, [OutAttribute, CountAttribute(Parameter = "n")] bool[] residences) { throw new NotImplementedException(); } + public static bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures, [OutAttribute, CountAttribute(Parameter = "n")] bool[] residences) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Determine if textures are loaded in texture memory @@ -24869,7 +24869,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glAreTexturesResident")] [CLSCompliant(false)] - public static bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures, [OutAttribute, CountAttribute(Parameter = "n")] out bool residences) { throw new NotImplementedException(); } + public static bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures, [OutAttribute, CountAttribute(Parameter = "n")] out bool residences) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Determine if textures are loaded in texture memory @@ -24885,7 +24885,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glAreTexturesResident")] [CLSCompliant(false)] - public static unsafe bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures, [OutAttribute, CountAttribute(Parameter = "n")] bool* residences) { throw new NotImplementedException(); } + public static unsafe bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures, [OutAttribute, CountAttribute(Parameter = "n")] bool* residences) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Determine if textures are loaded in texture memory @@ -24901,7 +24901,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glAreTexturesResident")] [CLSCompliant(false)] - public static bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures, [OutAttribute, CountAttribute(Parameter = "n")] bool[] residences) { throw new NotImplementedException(); } + public static bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures, [OutAttribute, CountAttribute(Parameter = "n")] bool[] residences) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Determine if textures are loaded in texture memory @@ -24917,7 +24917,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glAreTexturesResident")] [CLSCompliant(false)] - public static bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures, [OutAttribute, CountAttribute(Parameter = "n")] out bool residences) { throw new NotImplementedException(); } + public static bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures, [OutAttribute, CountAttribute(Parameter = "n")] out bool residences) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Determine if textures are loaded in texture memory @@ -24933,7 +24933,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glAreTexturesResident")] [CLSCompliant(false)] - public static unsafe bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures, [OutAttribute, CountAttribute(Parameter = "n")] bool* residences) { throw new NotImplementedException(); } + public static unsafe bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures, [OutAttribute, CountAttribute(Parameter = "n")] bool* residences) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Render a vertex using the specified vertex array element @@ -24942,7 +24942,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an index into the enabled vertex data arrays. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glArrayElement")] - public static void ArrayElement(Int32 i) { throw new NotImplementedException(); } + public static void ArrayElement(Int32 i) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Attaches a shader object to a program object @@ -24955,7 +24955,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glAttachShader")] [CLSCompliant(false)] - public static void AttachShader(Int32 program, Int32 shader) { throw new NotImplementedException(); } + public static void AttachShader(Int32 program, Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Attaches a shader object to a program object @@ -24968,7 +24968,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glAttachShader")] [CLSCompliant(false)] - public static void AttachShader(UInt32 program, UInt32 shader) { throw new NotImplementedException(); } + public static void AttachShader(UInt32 program, UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Delimit the vertices of a primitive or a group of like primitives @@ -24978,7 +24978,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glBegin")] - public static void Begin(OpenTK.Graphics.OpenGL.BeginMode mode) { throw new NotImplementedException(); } + public static void Begin(OpenTK.Graphics.OpenGL.BeginMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Delimit the vertices of a primitive or a group of like primitives @@ -24987,7 +24987,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the primitive or primitives that will be created from vertices presented between glBegin and the subsequent glEnd. Ten symbolic constants are accepted: Points, Lines, LineStrip, LineLoop, Triangles, TriangleStrip, TriangleFan, Quads, QuadStrip, and Polygon. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glBegin")] - public static void Begin(OpenTK.Graphics.OpenGL.PrimitiveType mode) { throw new NotImplementedException(); } + public static void Begin(OpenTK.Graphics.OpenGL.PrimitiveType mode) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Start conditional rendering @@ -25000,7 +25000,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glBeginConditionalRender")] [CLSCompliant(false)] - public static void BeginConditionalRender(Int32 id, OpenTK.Graphics.OpenGL.ConditionalRenderType mode) { throw new NotImplementedException(); } + public static void BeginConditionalRender(Int32 id, OpenTK.Graphics.OpenGL.ConditionalRenderType mode) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Start conditional rendering @@ -25013,7 +25013,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glBeginConditionalRender")] [CLSCompliant(false)] - public static void BeginConditionalRender(UInt32 id, OpenTK.Graphics.OpenGL.ConditionalRenderType mode) { throw new NotImplementedException(); } + public static void BeginConditionalRender(UInt32 id, OpenTK.Graphics.OpenGL.ConditionalRenderType mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delimit the boundaries of a query object @@ -25026,7 +25026,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBeginQuery")] [CLSCompliant(false)] - public static void BeginQuery(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 id) { throw new NotImplementedException(); } + public static void BeginQuery(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delimit the boundaries of a query object @@ -25039,7 +25039,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBeginQuery")] [CLSCompliant(false)] - public static void BeginQuery(OpenTK.Graphics.OpenGL.QueryTarget target, UInt32 id) { throw new NotImplementedException(); } + public static void BeginQuery(OpenTK.Graphics.OpenGL.QueryTarget target, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Delimit the boundaries of a query object on an indexed target @@ -25055,7 +25055,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glBeginQueryIndexed")] [CLSCompliant(false)] - public static void BeginQueryIndexed(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 index, Int32 id) { throw new NotImplementedException(); } + public static void BeginQueryIndexed(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 index, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Delimit the boundaries of a query object on an indexed target @@ -25071,7 +25071,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glBeginQueryIndexed")] [CLSCompliant(false)] - public static void BeginQueryIndexed(OpenTK.Graphics.OpenGL.QueryTarget target, UInt32 index, UInt32 id) { throw new NotImplementedException(); } + public static void BeginQueryIndexed(OpenTK.Graphics.OpenGL.QueryTarget target, UInt32 index, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Start transform feedback operation @@ -25081,7 +25081,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use TransformFeedbackPrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glBeginTransformFeedback")] - public static void BeginTransformFeedback(OpenTK.Graphics.OpenGL.BeginFeedbackMode primitiveMode) { throw new NotImplementedException(); } + public static void BeginTransformFeedback(OpenTK.Graphics.OpenGL.BeginFeedbackMode primitiveMode) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Start transform feedback operation @@ -25090,7 +25090,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the output type of the primitives that will be recorded into the buffer objects that are bound for transform feedback. /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glBeginTransformFeedback")] - public static void BeginTransformFeedback(OpenTK.Graphics.OpenGL.TransformFeedbackPrimitiveType primitiveMode) { throw new NotImplementedException(); } + public static void BeginTransformFeedback(OpenTK.Graphics.OpenGL.TransformFeedbackPrimitiveType primitiveMode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Associates a generic vertex attribute index with a named attribute variable @@ -25106,7 +25106,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glBindAttribLocation")] [CLSCompliant(false)] - public static void BindAttribLocation(Int32 program, Int32 index, String name) { throw new NotImplementedException(); } + public static void BindAttribLocation(Int32 program, Int32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Associates a generic vertex attribute index with a named attribute variable @@ -25122,7 +25122,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glBindAttribLocation")] [CLSCompliant(false)] - public static void BindAttribLocation(UInt32 program, UInt32 index, String name) { throw new NotImplementedException(); } + public static void BindAttribLocation(UInt32 program, UInt32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Bind a named buffer object @@ -25135,7 +25135,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBindBuffer")] [CLSCompliant(false)] - public static void BindBuffer(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 buffer) { throw new NotImplementedException(); } + public static void BindBuffer(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Bind a named buffer object @@ -25148,7 +25148,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBindBuffer")] [CLSCompliant(false)] - public static void BindBuffer(OpenTK.Graphics.OpenGL.BufferTarget target, UInt32 buffer) { throw new NotImplementedException(); } + public static void BindBuffer(OpenTK.Graphics.OpenGL.BufferTarget target, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// Bind a buffer object to an indexed buffer target @@ -25164,7 +25164,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glBindBufferBase")] [CLSCompliant(false)] - public static void BindBufferBase(OpenTK.Graphics.OpenGL.BufferRangeTarget target, Int32 index, Int32 buffer) { throw new NotImplementedException(); } + public static void BindBufferBase(OpenTK.Graphics.OpenGL.BufferRangeTarget target, Int32 index, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// Bind a buffer object to an indexed buffer target @@ -25180,7 +25180,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glBindBufferBase")] [CLSCompliant(false)] - public static void BindBufferBase(OpenTK.Graphics.OpenGL.BufferRangeTarget target, UInt32 index, UInt32 buffer) { throw new NotImplementedException(); } + public static void BindBufferBase(OpenTK.Graphics.OpenGL.BufferRangeTarget target, UInt32 index, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// Bind a buffer object to an indexed buffer target @@ -25197,7 +25197,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use BufferRangeTarget overload instead")] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glBindBufferBase")] [CLSCompliant(false)] - public static void BindBufferBase(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 index, Int32 buffer) { throw new NotImplementedException(); } + public static void BindBufferBase(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 index, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// Bind a buffer object to an indexed buffer target @@ -25214,7 +25214,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use BufferRangeTarget overload instead")] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glBindBufferBase")] [CLSCompliant(false)] - public static void BindBufferBase(OpenTK.Graphics.OpenGL.BufferTarget target, UInt32 index, UInt32 buffer) { throw new NotImplementedException(); } + public static void BindBufferBase(OpenTK.Graphics.OpenGL.BufferTarget target, UInt32 index, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// Bind a range within a buffer object to an indexed buffer target @@ -25236,7 +25236,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glBindBufferRange")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.OpenGL.BufferRangeTarget target, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL.BufferRangeTarget target, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// Bind a range within a buffer object to an indexed buffer target @@ -25258,7 +25258,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glBindBufferRange")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.OpenGL.BufferRangeTarget target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL.BufferRangeTarget target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// Bind a range within a buffer object to an indexed buffer target @@ -25280,7 +25280,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glBindBufferRange")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.OpenGL.BufferRangeTarget target, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL.BufferRangeTarget target, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// Bind a range within a buffer object to an indexed buffer target @@ -25302,7 +25302,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glBindBufferRange")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.OpenGL.BufferRangeTarget target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL.BufferRangeTarget target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// Bind a range within a buffer object to an indexed buffer target @@ -25325,7 +25325,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use BufferRangeTarget overload instead")] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glBindBufferRange")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// Bind a range within a buffer object to an indexed buffer target @@ -25348,7 +25348,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use BufferRangeTarget overload instead")] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glBindBufferRange")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// Bind a range within a buffer object to an indexed buffer target @@ -25371,7 +25371,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use BufferRangeTarget overload instead")] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glBindBufferRange")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// Bind a range within a buffer object to an indexed buffer target @@ -25394,7 +25394,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use BufferRangeTarget overload instead")] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glBindBufferRange")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more buffer objects to a sequence of indexed buffer targets @@ -25413,7 +25413,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersBase")] [CLSCompliant(false)] - public static void BindBuffersBase(OpenTK.Graphics.OpenGL.BufferRangeTarget target, Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32[] buffers) { throw new NotImplementedException(); } + public static void BindBuffersBase(OpenTK.Graphics.OpenGL.BufferRangeTarget target, Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more buffer objects to a sequence of indexed buffer targets @@ -25432,7 +25432,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersBase")] [CLSCompliant(false)] - public static void BindBuffersBase(OpenTK.Graphics.OpenGL.BufferRangeTarget target, Int32 first, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 buffers) { throw new NotImplementedException(); } + public static void BindBuffersBase(OpenTK.Graphics.OpenGL.BufferRangeTarget target, Int32 first, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more buffer objects to a sequence of indexed buffer targets @@ -25451,7 +25451,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersBase")] [CLSCompliant(false)] - public static unsafe void BindBuffersBase(OpenTK.Graphics.OpenGL.BufferRangeTarget target, Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* buffers) { throw new NotImplementedException(); } + public static unsafe void BindBuffersBase(OpenTK.Graphics.OpenGL.BufferRangeTarget target, Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more buffer objects to a sequence of indexed buffer targets @@ -25470,7 +25470,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersBase")] [CLSCompliant(false)] - public static void BindBuffersBase(OpenTK.Graphics.OpenGL.BufferRangeTarget target, UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] buffers) { throw new NotImplementedException(); } + public static void BindBuffersBase(OpenTK.Graphics.OpenGL.BufferRangeTarget target, UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more buffer objects to a sequence of indexed buffer targets @@ -25489,7 +25489,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersBase")] [CLSCompliant(false)] - public static void BindBuffersBase(OpenTK.Graphics.OpenGL.BufferRangeTarget target, UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 buffers) { throw new NotImplementedException(); } + public static void BindBuffersBase(OpenTK.Graphics.OpenGL.BufferRangeTarget target, UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more buffer objects to a sequence of indexed buffer targets @@ -25508,7 +25508,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersBase")] [CLSCompliant(false)] - public static unsafe void BindBuffersBase(OpenTK.Graphics.OpenGL.BufferRangeTarget target, UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* buffers) { throw new NotImplementedException(); } + public static unsafe void BindBuffersBase(OpenTK.Graphics.OpenGL.BufferRangeTarget target, UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind ranges of one or more buffer objects to a sequence of indexed buffer targets @@ -25529,7 +25529,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersRange")] [CLSCompliant(false)] - public static void BindBuffersRange(OpenTK.Graphics.OpenGL.BufferRangeTarget target, Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32[] buffers, [CountAttribute(Parameter = "count")] IntPtr[] offsets, [CountAttribute(Parameter = "count")] IntPtr[] sizes) { throw new NotImplementedException(); } + public static void BindBuffersRange(OpenTK.Graphics.OpenGL.BufferRangeTarget target, Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32[] buffers, [CountAttribute(Parameter = "count")] IntPtr[] offsets, [CountAttribute(Parameter = "count")] IntPtr[] sizes) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind ranges of one or more buffer objects to a sequence of indexed buffer targets @@ -25550,7 +25550,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersRange")] [CLSCompliant(false)] - public static void BindBuffersRange(OpenTK.Graphics.OpenGL.BufferRangeTarget target, Int32 first, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 buffers, [CountAttribute(Parameter = "count")] ref IntPtr offsets, [CountAttribute(Parameter = "count")] ref IntPtr sizes) { throw new NotImplementedException(); } + public static void BindBuffersRange(OpenTK.Graphics.OpenGL.BufferRangeTarget target, Int32 first, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 buffers, [CountAttribute(Parameter = "count")] ref IntPtr offsets, [CountAttribute(Parameter = "count")] ref IntPtr sizes) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind ranges of one or more buffer objects to a sequence of indexed buffer targets @@ -25571,7 +25571,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersRange")] [CLSCompliant(false)] - public static unsafe void BindBuffersRange(OpenTK.Graphics.OpenGL.BufferRangeTarget target, Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* buffers, [CountAttribute(Parameter = "count")] IntPtr* offsets, [CountAttribute(Parameter = "count")] IntPtr* sizes) { throw new NotImplementedException(); } + public static unsafe void BindBuffersRange(OpenTK.Graphics.OpenGL.BufferRangeTarget target, Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* buffers, [CountAttribute(Parameter = "count")] IntPtr* offsets, [CountAttribute(Parameter = "count")] IntPtr* sizes) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind ranges of one or more buffer objects to a sequence of indexed buffer targets @@ -25592,7 +25592,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersRange")] [CLSCompliant(false)] - public static void BindBuffersRange(OpenTK.Graphics.OpenGL.BufferRangeTarget target, UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] buffers, [CountAttribute(Parameter = "count")] IntPtr[] offsets, [CountAttribute(Parameter = "count")] IntPtr[] sizes) { throw new NotImplementedException(); } + public static void BindBuffersRange(OpenTK.Graphics.OpenGL.BufferRangeTarget target, UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] buffers, [CountAttribute(Parameter = "count")] IntPtr[] offsets, [CountAttribute(Parameter = "count")] IntPtr[] sizes) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind ranges of one or more buffer objects to a sequence of indexed buffer targets @@ -25613,7 +25613,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersRange")] [CLSCompliant(false)] - public static void BindBuffersRange(OpenTK.Graphics.OpenGL.BufferRangeTarget target, UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 buffers, [CountAttribute(Parameter = "count")] ref IntPtr offsets, [CountAttribute(Parameter = "count")] ref IntPtr sizes) { throw new NotImplementedException(); } + public static void BindBuffersRange(OpenTK.Graphics.OpenGL.BufferRangeTarget target, UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 buffers, [CountAttribute(Parameter = "count")] ref IntPtr offsets, [CountAttribute(Parameter = "count")] ref IntPtr sizes) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind ranges of one or more buffer objects to a sequence of indexed buffer targets @@ -25634,7 +25634,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersRange")] [CLSCompliant(false)] - public static unsafe void BindBuffersRange(OpenTK.Graphics.OpenGL.BufferRangeTarget target, UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* buffers, [CountAttribute(Parameter = "count")] IntPtr* offsets, [CountAttribute(Parameter = "count")] IntPtr* sizes) { throw new NotImplementedException(); } + public static unsafe void BindBuffersRange(OpenTK.Graphics.OpenGL.BufferRangeTarget target, UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* buffers, [CountAttribute(Parameter = "count")] IntPtr* offsets, [CountAttribute(Parameter = "count")] IntPtr* sizes) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Bind a user-defined varying out variable to a fragment shader color number @@ -25650,7 +25650,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glBindFragDataLocation")] [CLSCompliant(false)] - public static void BindFragDataLocation(Int32 program, Int32 color, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static void BindFragDataLocation(Int32 program, Int32 color, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Bind a user-defined varying out variable to a fragment shader color number @@ -25666,7 +25666,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glBindFragDataLocation")] [CLSCompliant(false)] - public static void BindFragDataLocation(UInt32 program, UInt32 color, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static void BindFragDataLocation(UInt32 program, UInt32 color, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_blend_func_extended|VERSION_3_3] /// Bind a user-defined varying out variable to a fragment shader color number and index @@ -25685,7 +25685,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_blend_func_extended|VERSION_3_3", Version = "3.3", EntryPoint = "glBindFragDataLocationIndexed")] [CLSCompliant(false)] - public static void BindFragDataLocationIndexed(Int32 program, Int32 colorNumber, Int32 index, String name) { throw new NotImplementedException(); } + public static void BindFragDataLocationIndexed(Int32 program, Int32 colorNumber, Int32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_blend_func_extended|VERSION_3_3] /// Bind a user-defined varying out variable to a fragment shader color number and index @@ -25704,7 +25704,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_blend_func_extended|VERSION_3_3", Version = "3.3", EntryPoint = "glBindFragDataLocationIndexed")] [CLSCompliant(false)] - public static void BindFragDataLocationIndexed(UInt32 program, UInt32 colorNumber, UInt32 index, String name) { throw new NotImplementedException(); } + public static void BindFragDataLocationIndexed(UInt32 program, UInt32 colorNumber, UInt32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Bind a framebuffer to a framebuffer target @@ -25717,7 +25717,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glBindFramebuffer")] [CLSCompliant(false)] - public static void BindFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 framebuffer) { throw new NotImplementedException(); } + public static void BindFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Bind a framebuffer to a framebuffer target @@ -25730,7 +25730,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glBindFramebuffer")] [CLSCompliant(false)] - public static void BindFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, UInt32 framebuffer) { throw new NotImplementedException(); } + public static void BindFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, UInt32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_shader_image_load_store|VERSION_4_2] /// Bind a level of a texture to an image unit @@ -25758,7 +25758,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_image_load_store|VERSION_4_2", Version = "4.2", EntryPoint = "glBindImageTexture")] [CLSCompliant(false)] - public static void BindImageTexture(Int32 unit, Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.TextureAccess access, OpenTK.Graphics.OpenGL.SizedInternalFormat format) { throw new NotImplementedException(); } + public static void BindImageTexture(Int32 unit, Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.TextureAccess access, OpenTK.Graphics.OpenGL.SizedInternalFormat format) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_shader_image_load_store|VERSION_4_2] /// Bind a level of a texture to an image unit @@ -25786,7 +25786,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_image_load_store|VERSION_4_2", Version = "4.2", EntryPoint = "glBindImageTexture")] [CLSCompliant(false)] - public static void BindImageTexture(UInt32 unit, UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.TextureAccess access, OpenTK.Graphics.OpenGL.SizedInternalFormat format) { throw new NotImplementedException(); } + public static void BindImageTexture(UInt32 unit, UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.TextureAccess access, OpenTK.Graphics.OpenGL.SizedInternalFormat format) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named texture images to a sequence of consecutive image units @@ -25802,7 +25802,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindImageTextures")] [CLSCompliant(false)] - public static void BindImageTextures(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32[] textures) { throw new NotImplementedException(); } + public static void BindImageTextures(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named texture images to a sequence of consecutive image units @@ -25818,7 +25818,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindImageTextures")] [CLSCompliant(false)] - public static void BindImageTextures(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 textures) { throw new NotImplementedException(); } + public static void BindImageTextures(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named texture images to a sequence of consecutive image units @@ -25834,7 +25834,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindImageTextures")] [CLSCompliant(false)] - public static unsafe void BindImageTextures(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* textures) { throw new NotImplementedException(); } + public static unsafe void BindImageTextures(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named texture images to a sequence of consecutive image units @@ -25850,7 +25850,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindImageTextures")] [CLSCompliant(false)] - public static void BindImageTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] textures) { throw new NotImplementedException(); } + public static void BindImageTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named texture images to a sequence of consecutive image units @@ -25866,7 +25866,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindImageTextures")] [CLSCompliant(false)] - public static void BindImageTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 textures) { throw new NotImplementedException(); } + public static void BindImageTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named texture images to a sequence of consecutive image units @@ -25882,7 +25882,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindImageTextures")] [CLSCompliant(false)] - public static unsafe void BindImageTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* textures) { throw new NotImplementedException(); } + public static unsafe void BindImageTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Bind a program pipeline to the current context @@ -25892,7 +25892,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glBindProgramPipeline")] [CLSCompliant(false)] - public static void BindProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } + public static void BindProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Bind a program pipeline to the current context @@ -25902,7 +25902,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glBindProgramPipeline")] [CLSCompliant(false)] - public static void BindProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static void BindProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Bind a renderbuffer to a renderbuffer target @@ -25915,7 +25915,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glBindRenderbuffer")] [CLSCompliant(false)] - public static void BindRenderbuffer(OpenTK.Graphics.OpenGL.RenderbufferTarget target, Int32 renderbuffer) { throw new NotImplementedException(); } + public static void BindRenderbuffer(OpenTK.Graphics.OpenGL.RenderbufferTarget target, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Bind a renderbuffer to a renderbuffer target @@ -25928,7 +25928,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glBindRenderbuffer")] [CLSCompliant(false)] - public static void BindRenderbuffer(OpenTK.Graphics.OpenGL.RenderbufferTarget target, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void BindRenderbuffer(OpenTK.Graphics.OpenGL.RenderbufferTarget target, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Bind a named sampler to a texturing target @@ -25941,7 +25941,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glBindSampler")] [CLSCompliant(false)] - public static void BindSampler(Int32 unit, Int32 sampler) { throw new NotImplementedException(); } + public static void BindSampler(Int32 unit, Int32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Bind a named sampler to a texturing target @@ -25954,7 +25954,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glBindSampler")] [CLSCompliant(false)] - public static void BindSampler(UInt32 unit, UInt32 sampler) { throw new NotImplementedException(); } + public static void BindSampler(UInt32 unit, UInt32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named sampler objects to a sequence of consecutive sampler units @@ -25970,7 +25970,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindSamplers")] [CLSCompliant(false)] - public static void BindSamplers(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32[] samplers) { throw new NotImplementedException(); } + public static void BindSamplers(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named sampler objects to a sequence of consecutive sampler units @@ -25986,7 +25986,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindSamplers")] [CLSCompliant(false)] - public static void BindSamplers(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 samplers) { throw new NotImplementedException(); } + public static void BindSamplers(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named sampler objects to a sequence of consecutive sampler units @@ -26002,7 +26002,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindSamplers")] [CLSCompliant(false)] - public static unsafe void BindSamplers(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* samplers) { throw new NotImplementedException(); } + public static unsafe void BindSamplers(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named sampler objects to a sequence of consecutive sampler units @@ -26018,7 +26018,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindSamplers")] [CLSCompliant(false)] - public static void BindSamplers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] samplers) { throw new NotImplementedException(); } + public static void BindSamplers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named sampler objects to a sequence of consecutive sampler units @@ -26034,7 +26034,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindSamplers")] [CLSCompliant(false)] - public static void BindSamplers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 samplers) { throw new NotImplementedException(); } + public static void BindSamplers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named sampler objects to a sequence of consecutive sampler units @@ -26050,7 +26050,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindSamplers")] [CLSCompliant(false)] - public static unsafe void BindSamplers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* samplers) { throw new NotImplementedException(); } + public static unsafe void BindSamplers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Bind a named texture to a texturing target @@ -26063,7 +26063,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glBindTexture")] [CLSCompliant(false)] - public static void BindTexture(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 texture) { throw new NotImplementedException(); } + public static void BindTexture(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Bind a named texture to a texturing target @@ -26076,7 +26076,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glBindTexture")] [CLSCompliant(false)] - public static void BindTexture(OpenTK.Graphics.OpenGL.TextureTarget target, UInt32 texture) { throw new NotImplementedException(); } + public static void BindTexture(OpenTK.Graphics.OpenGL.TextureTarget target, UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named textures to a sequence of consecutive texture units @@ -26092,7 +26092,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindTextures")] [CLSCompliant(false)] - public static void BindTextures(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32[] textures) { throw new NotImplementedException(); } + public static void BindTextures(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named textures to a sequence of consecutive texture units @@ -26108,7 +26108,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindTextures")] [CLSCompliant(false)] - public static void BindTextures(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 textures) { throw new NotImplementedException(); } + public static void BindTextures(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named textures to a sequence of consecutive texture units @@ -26124,7 +26124,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindTextures")] [CLSCompliant(false)] - public static unsafe void BindTextures(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* textures) { throw new NotImplementedException(); } + public static unsafe void BindTextures(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named textures to a sequence of consecutive texture units @@ -26140,7 +26140,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindTextures")] [CLSCompliant(false)] - public static void BindTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] textures) { throw new NotImplementedException(); } + public static void BindTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named textures to a sequence of consecutive texture units @@ -26156,7 +26156,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindTextures")] [CLSCompliant(false)] - public static void BindTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 textures) { throw new NotImplementedException(); } + public static void BindTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named textures to a sequence of consecutive texture units @@ -26172,21 +26172,21 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindTextures")] [CLSCompliant(false)] - public static unsafe void BindTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* textures) { throw new NotImplementedException(); } + public static unsafe void BindTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glBindTextureUnit")] [CLSCompliant(false)] - public static void BindTextureUnit(Int32 unit, Int32 texture) { throw new NotImplementedException(); } + public static void BindTextureUnit(Int32 unit, Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glBindTextureUnit")] [CLSCompliant(false)] - public static void BindTextureUnit(UInt32 unit, UInt32 texture) { throw new NotImplementedException(); } + public static void BindTextureUnit(UInt32 unit, UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Bind a transform feedback object @@ -26199,7 +26199,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glBindTransformFeedback")] [CLSCompliant(false)] - public static void BindTransformFeedback(OpenTK.Graphics.OpenGL.TransformFeedbackTarget target, Int32 id) { throw new NotImplementedException(); } + public static void BindTransformFeedback(OpenTK.Graphics.OpenGL.TransformFeedbackTarget target, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Bind a transform feedback object @@ -26212,7 +26212,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glBindTransformFeedback")] [CLSCompliant(false)] - public static void BindTransformFeedback(OpenTK.Graphics.OpenGL.TransformFeedbackTarget target, UInt32 id) { throw new NotImplementedException(); } + public static void BindTransformFeedback(OpenTK.Graphics.OpenGL.TransformFeedbackTarget target, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Bind a vertex array object @@ -26222,7 +26222,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glBindVertexArray")] [CLSCompliant(false)] - public static void BindVertexArray(Int32 array) { throw new NotImplementedException(); } + public static void BindVertexArray(Int32 array) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Bind a vertex array object @@ -26232,7 +26232,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glBindVertexArray")] [CLSCompliant(false)] - public static void BindVertexArray(UInt32 array) { throw new NotImplementedException(); } + public static void BindVertexArray(UInt32 array) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// Bind a buffer to a vertex buffer bind point @@ -26251,7 +26251,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glBindVertexBuffer")] [CLSCompliant(false)] - public static void BindVertexBuffer(Int32 bindingindex, Int32 buffer, IntPtr offset, Int32 stride) { throw new NotImplementedException(); } + public static void BindVertexBuffer(Int32 bindingindex, Int32 buffer, IntPtr offset, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// Bind a buffer to a vertex buffer bind point @@ -26270,7 +26270,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glBindVertexBuffer")] [CLSCompliant(false)] - public static void BindVertexBuffer(UInt32 bindingindex, UInt32 buffer, IntPtr offset, Int32 stride) { throw new NotImplementedException(); } + public static void BindVertexBuffer(UInt32 bindingindex, UInt32 buffer, IntPtr offset, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named buffer objects to a sequence of consecutive vertex buffer binding points @@ -26292,7 +26292,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindVertexBuffers")] [CLSCompliant(false)] - public static void BindVertexBuffers(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32[] buffers, [CountAttribute(Parameter = "count")] IntPtr[] offsets, [CountAttribute(Parameter = "count")] Int32[] strides) { throw new NotImplementedException(); } + public static void BindVertexBuffers(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32[] buffers, [CountAttribute(Parameter = "count")] IntPtr[] offsets, [CountAttribute(Parameter = "count")] Int32[] strides) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named buffer objects to a sequence of consecutive vertex buffer binding points @@ -26314,7 +26314,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindVertexBuffers")] [CLSCompliant(false)] - public static void BindVertexBuffers(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 buffers, [CountAttribute(Parameter = "count")] ref IntPtr offsets, [CountAttribute(Parameter = "count")] ref Int32 strides) { throw new NotImplementedException(); } + public static void BindVertexBuffers(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 buffers, [CountAttribute(Parameter = "count")] ref IntPtr offsets, [CountAttribute(Parameter = "count")] ref Int32 strides) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named buffer objects to a sequence of consecutive vertex buffer binding points @@ -26336,7 +26336,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindVertexBuffers")] [CLSCompliant(false)] - public static unsafe void BindVertexBuffers(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* buffers, [CountAttribute(Parameter = "count")] IntPtr* offsets, [CountAttribute(Parameter = "count")] Int32* strides) { throw new NotImplementedException(); } + public static unsafe void BindVertexBuffers(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* buffers, [CountAttribute(Parameter = "count")] IntPtr* offsets, [CountAttribute(Parameter = "count")] Int32* strides) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named buffer objects to a sequence of consecutive vertex buffer binding points @@ -26358,7 +26358,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindVertexBuffers")] [CLSCompliant(false)] - public static void BindVertexBuffers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] buffers, [CountAttribute(Parameter = "count")] IntPtr[] offsets, [CountAttribute(Parameter = "count")] Int32[] strides) { throw new NotImplementedException(); } + public static void BindVertexBuffers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] buffers, [CountAttribute(Parameter = "count")] IntPtr[] offsets, [CountAttribute(Parameter = "count")] Int32[] strides) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named buffer objects to a sequence of consecutive vertex buffer binding points @@ -26380,7 +26380,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindVertexBuffers")] [CLSCompliant(false)] - public static void BindVertexBuffers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 buffers, [CountAttribute(Parameter = "count")] ref IntPtr offsets, [CountAttribute(Parameter = "count")] ref Int32 strides) { throw new NotImplementedException(); } + public static void BindVertexBuffers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 buffers, [CountAttribute(Parameter = "count")] ref IntPtr offsets, [CountAttribute(Parameter = "count")] ref Int32 strides) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named buffer objects to a sequence of consecutive vertex buffer binding points @@ -26402,7 +26402,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindVertexBuffers")] [CLSCompliant(false)] - public static unsafe void BindVertexBuffers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* buffers, [CountAttribute(Parameter = "count")] IntPtr* offsets, [CountAttribute(Parameter = "count")] Int32* strides) { throw new NotImplementedException(); } + public static unsafe void BindVertexBuffers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* buffers, [CountAttribute(Parameter = "count")] IntPtr* offsets, [CountAttribute(Parameter = "count")] Int32* strides) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Draw a bitmap @@ -26430,7 +26430,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glBitmap")] [CLSCompliant(false)] - public static void Bitmap(Int32 width, Int32 height, Single xorig, Single yorig, Single xmove, Single ymove, [CountAttribute(Computed = "width,height")] Byte[] bitmap) { throw new NotImplementedException(); } + public static void Bitmap(Int32 width, Int32 height, Single xorig, Single yorig, Single xmove, Single ymove, [CountAttribute(Computed = "width,height")] Byte[] bitmap) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Draw a bitmap @@ -26458,7 +26458,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glBitmap")] [CLSCompliant(false)] - public static void Bitmap(Int32 width, Int32 height, Single xorig, Single yorig, Single xmove, Single ymove, [CountAttribute(Computed = "width,height")] ref Byte bitmap) { throw new NotImplementedException(); } + public static void Bitmap(Int32 width, Int32 height, Single xorig, Single yorig, Single xmove, Single ymove, [CountAttribute(Computed = "width,height")] ref Byte bitmap) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Draw a bitmap @@ -26486,7 +26486,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glBitmap")] [CLSCompliant(false)] - public static unsafe void Bitmap(Int32 width, Int32 height, Single xorig, Single yorig, Single xmove, Single ymove, [CountAttribute(Computed = "width,height")] Byte* bitmap) { throw new NotImplementedException(); } + public static unsafe void Bitmap(Int32 width, Int32 height, Single xorig, Single yorig, Single xmove, Single ymove, [CountAttribute(Computed = "width,height")] Byte* bitmap) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4 or ARB_imaging|VERSION_1_4] /// Set the blend color @@ -26504,7 +26504,7 @@ namespace OpenTK.Graphics.OpenGL /// specify the components of BlendColor /// [AutoGenerated(Category = "ARB_imaging|VERSION_1_4", Version = "1.4", EntryPoint = "glBlendColor")] - public static void BlendColor(Single red, Single green, Single blue, Single alpha) { throw new NotImplementedException(); } + public static void BlendColor(Single red, Single green, Single blue, Single alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4 or ARB_imaging|VERSION_1_4] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -26514,7 +26514,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use BlendEquationMode overload instead")] [AutoGenerated(Category = "ARB_imaging|VERSION_1_4", Version = "1.4", EntryPoint = "glBlendEquation")] - public static void BlendEquation(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4 or ARB_imaging|VERSION_1_4] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -26523,7 +26523,7 @@ namespace OpenTK.Graphics.OpenGL /// specifies how source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. /// [AutoGenerated(Category = "ARB_imaging|VERSION_1_4", Version = "1.4", EntryPoint = "glBlendEquation")] - public static void BlendEquation(OpenTK.Graphics.OpenGL.BlendEquationMode mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.OpenGL.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4 or ARB_imaging|VERSION_1_4] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -26533,7 +26533,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ArbDrawBuffersBlend overload instead")] [AutoGenerated(Category = "ARB_imaging|VERSION_1_4", Version = "1.4", EntryPoint = "glBlendEquation")] - public static void BlendEquation(OpenTK.Graphics.OpenGL.Version40 mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.OpenGL.Version40 mode) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -26547,7 +26547,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use BlendEquationMode overload instead")] [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendEquationi")] [CLSCompliant(false)] - public static void BlendEquation(Int32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend mode) { throw new NotImplementedException(); } + public static void BlendEquation(Int32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend mode) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -26560,7 +26560,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendEquationi")] [CLSCompliant(false)] - public static void BlendEquation(Int32 buf, OpenTK.Graphics.OpenGL.BlendEquationMode mode) { throw new NotImplementedException(); } + public static void BlendEquation(Int32 buf, OpenTK.Graphics.OpenGL.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -26574,7 +26574,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ArbDrawBuffersBlend overload instead")] [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendEquationi")] [CLSCompliant(false)] - public static void BlendEquation(Int32 buf, OpenTK.Graphics.OpenGL.Version40 mode) { throw new NotImplementedException(); } + public static void BlendEquation(Int32 buf, OpenTK.Graphics.OpenGL.Version40 mode) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -26588,7 +26588,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use BlendEquationMode overload instead")] [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendEquationi")] [CLSCompliant(false)] - public static void BlendEquation(UInt32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend mode) { throw new NotImplementedException(); } + public static void BlendEquation(UInt32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend mode) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -26601,7 +26601,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendEquationi")] [CLSCompliant(false)] - public static void BlendEquation(UInt32 buf, OpenTK.Graphics.OpenGL.BlendEquationMode mode) { throw new NotImplementedException(); } + public static void BlendEquation(UInt32 buf, OpenTK.Graphics.OpenGL.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -26615,7 +26615,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ArbDrawBuffersBlend overload instead")] [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendEquationi")] [CLSCompliant(false)] - public static void BlendEquation(UInt32 buf, OpenTK.Graphics.OpenGL.Version40 mode) { throw new NotImplementedException(); } + public static void BlendEquation(UInt32 buf, OpenTK.Graphics.OpenGL.Version40 mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Set the RGB blend equation and the alpha blend equation separately @@ -26627,7 +26627,7 @@ namespace OpenTK.Graphics.OpenGL /// specifies the alpha blend equation, how the alpha component of the source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glBlendEquationSeparate")] - public static void BlendEquationSeparate(OpenTK.Graphics.OpenGL.BlendEquationMode modeRGB, OpenTK.Graphics.OpenGL.BlendEquationMode modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(OpenTK.Graphics.OpenGL.BlendEquationMode modeRGB, OpenTK.Graphics.OpenGL.BlendEquationMode modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Set the RGB blend equation and the alpha blend equation separately @@ -26643,7 +26643,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendEquationSeparatei")] [CLSCompliant(false)] - public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.OpenGL.BlendEquationMode modeRGB, OpenTK.Graphics.OpenGL.BlendEquationMode modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.OpenGL.BlendEquationMode modeRGB, OpenTK.Graphics.OpenGL.BlendEquationMode modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Set the RGB blend equation and the alpha blend equation separately @@ -26659,7 +26659,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendEquationSeparatei")] [CLSCompliant(false)] - public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.OpenGL.BlendEquationMode modeRGB, OpenTK.Graphics.OpenGL.BlendEquationMode modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.OpenGL.BlendEquationMode modeRGB, OpenTK.Graphics.OpenGL.BlendEquationMode modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify pixel arithmetic @@ -26671,7 +26671,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies how the red, green, blue, and alpha destination blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha. ConstantColor, OneMinusConstantColor, ConstantAlpha, and OneMinusConstantAlpha. The initial value is Zero. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glBlendFunc")] - public static void BlendFunc(OpenTK.Graphics.OpenGL.BlendingFactorSrc sfactor, OpenTK.Graphics.OpenGL.BlendingFactorDest dfactor) { throw new NotImplementedException(); } + public static void BlendFunc(OpenTK.Graphics.OpenGL.BlendingFactorSrc sfactor, OpenTK.Graphics.OpenGL.BlendingFactorDest dfactor) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify pixel arithmetic @@ -26684,7 +26684,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ArbDrawBuffersBlend overload instead")] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glBlendFunc")] - public static void BlendFunc(OpenTK.Graphics.OpenGL.BlendingFactorSrc sfactor, OpenTK.Graphics.OpenGL.Version40 dfactor) { throw new NotImplementedException(); } + public static void BlendFunc(OpenTK.Graphics.OpenGL.BlendingFactorSrc sfactor, OpenTK.Graphics.OpenGL.Version40 dfactor) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify pixel arithmetic @@ -26701,7 +26701,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use BlendingFactorSrc overload instead")] [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendFunci")] [CLSCompliant(false)] - public static void BlendFunc(Int32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend src, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dst) { throw new NotImplementedException(); } + public static void BlendFunc(Int32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend src, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dst) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify pixel arithmetic @@ -26717,7 +26717,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendFunci")] [CLSCompliant(false)] - public static void BlendFunc(Int32 buf, OpenTK.Graphics.OpenGL.BlendingFactorSrc src, OpenTK.Graphics.OpenGL.BlendingFactorDest dst) { throw new NotImplementedException(); } + public static void BlendFunc(Int32 buf, OpenTK.Graphics.OpenGL.BlendingFactorSrc src, OpenTK.Graphics.OpenGL.BlendingFactorDest dst) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify pixel arithmetic @@ -26734,7 +26734,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ArbDrawBuffersBlend overload instead")] [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendFunci")] [CLSCompliant(false)] - public static void BlendFunc(Int32 buf, OpenTK.Graphics.OpenGL.Version40 src, OpenTK.Graphics.OpenGL.Version40 dst) { throw new NotImplementedException(); } + public static void BlendFunc(Int32 buf, OpenTK.Graphics.OpenGL.Version40 src, OpenTK.Graphics.OpenGL.Version40 dst) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify pixel arithmetic @@ -26751,7 +26751,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use BlendingFactorSrc overload instead")] [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendFunci")] [CLSCompliant(false)] - public static void BlendFunc(UInt32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend src, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dst) { throw new NotImplementedException(); } + public static void BlendFunc(UInt32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend src, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dst) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify pixel arithmetic @@ -26767,7 +26767,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendFunci")] [CLSCompliant(false)] - public static void BlendFunc(UInt32 buf, OpenTK.Graphics.OpenGL.BlendingFactorSrc src, OpenTK.Graphics.OpenGL.BlendingFactorDest dst) { throw new NotImplementedException(); } + public static void BlendFunc(UInt32 buf, OpenTK.Graphics.OpenGL.BlendingFactorSrc src, OpenTK.Graphics.OpenGL.BlendingFactorDest dst) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify pixel arithmetic @@ -26784,7 +26784,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ArbDrawBuffersBlend overload instead")] [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendFunci")] [CLSCompliant(false)] - public static void BlendFunc(UInt32 buf, OpenTK.Graphics.OpenGL.Version40 src, OpenTK.Graphics.OpenGL.Version40 dst) { throw new NotImplementedException(); } + public static void BlendFunc(UInt32 buf, OpenTK.Graphics.OpenGL.Version40 src, OpenTK.Graphics.OpenGL.Version40 dst) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Specify pixel arithmetic for RGB and alpha components separately @@ -26803,7 +26803,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use BlendingFactorSrc overload instead")] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glBlendFuncSeparate")] - public static void BlendFuncSeparate(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend sfactorRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dfactorRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend sfactorAlpha, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dfactorAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend sfactorRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dfactorRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend sfactorAlpha, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dfactorAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Specify pixel arithmetic for RGB and alpha components separately @@ -26821,7 +26821,7 @@ namespace OpenTK.Graphics.OpenGL /// Specified how the alpha source blending factor is computed. The initial value is One. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glBlendFuncSeparate")] - public static void BlendFuncSeparate(OpenTK.Graphics.OpenGL.BlendingFactorSrc sfactorRGB, OpenTK.Graphics.OpenGL.BlendingFactorDest dfactorRGB, OpenTK.Graphics.OpenGL.BlendingFactorSrc sfactorAlpha, OpenTK.Graphics.OpenGL.BlendingFactorDest dfactorAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(OpenTK.Graphics.OpenGL.BlendingFactorSrc sfactorRGB, OpenTK.Graphics.OpenGL.BlendingFactorDest dfactorRGB, OpenTK.Graphics.OpenGL.BlendingFactorSrc sfactorAlpha, OpenTK.Graphics.OpenGL.BlendingFactorDest dfactorAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify pixel arithmetic for RGB and alpha components separately @@ -26844,7 +26844,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use BlendingFactorSrc overload instead")] [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendFuncSeparatei")] [CLSCompliant(false)] - public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend srcRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dstRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend srcAlpha, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend srcRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dstRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend srcAlpha, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify pixel arithmetic for RGB and alpha components separately @@ -26866,7 +26866,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendFuncSeparatei")] [CLSCompliant(false)] - public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.OpenGL.BlendingFactorSrc srcRGB, OpenTK.Graphics.OpenGL.BlendingFactorDest dstRGB, OpenTK.Graphics.OpenGL.BlendingFactorSrc srcAlpha, OpenTK.Graphics.OpenGL.BlendingFactorDest dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.OpenGL.BlendingFactorSrc srcRGB, OpenTK.Graphics.OpenGL.BlendingFactorDest dstRGB, OpenTK.Graphics.OpenGL.BlendingFactorSrc srcAlpha, OpenTK.Graphics.OpenGL.BlendingFactorDest dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify pixel arithmetic for RGB and alpha components separately @@ -26889,7 +26889,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use BlendingFactorSrc overload instead")] [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendFuncSeparatei")] [CLSCompliant(false)] - public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.OpenGL.Version40 srcRGB, OpenTK.Graphics.OpenGL.Version40 dstRGB, OpenTK.Graphics.OpenGL.Version40 srcAlpha, OpenTK.Graphics.OpenGL.Version40 dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.OpenGL.Version40 srcRGB, OpenTK.Graphics.OpenGL.Version40 dstRGB, OpenTK.Graphics.OpenGL.Version40 srcAlpha, OpenTK.Graphics.OpenGL.Version40 dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify pixel arithmetic for RGB and alpha components separately @@ -26912,7 +26912,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use BlendingFactorSrc overload instead")] [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendFuncSeparatei")] [CLSCompliant(false)] - public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend srcRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dstRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend srcAlpha, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend srcRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dstRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend srcAlpha, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify pixel arithmetic for RGB and alpha components separately @@ -26934,7 +26934,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendFuncSeparatei")] [CLSCompliant(false)] - public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.OpenGL.BlendingFactorSrc srcRGB, OpenTK.Graphics.OpenGL.BlendingFactorDest dstRGB, OpenTK.Graphics.OpenGL.BlendingFactorSrc srcAlpha, OpenTK.Graphics.OpenGL.BlendingFactorDest dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.OpenGL.BlendingFactorSrc srcRGB, OpenTK.Graphics.OpenGL.BlendingFactorDest dstRGB, OpenTK.Graphics.OpenGL.BlendingFactorSrc srcAlpha, OpenTK.Graphics.OpenGL.BlendingFactorDest dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify pixel arithmetic for RGB and alpha components separately @@ -26957,7 +26957,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use BlendingFactorSrc overload instead")] [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendFuncSeparatei")] [CLSCompliant(false)] - public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.OpenGL.Version40 srcRGB, OpenTK.Graphics.OpenGL.Version40 dstRGB, OpenTK.Graphics.OpenGL.Version40 srcAlpha, OpenTK.Graphics.OpenGL.Version40 dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.OpenGL.Version40 srcRGB, OpenTK.Graphics.OpenGL.Version40 dstRGB, OpenTK.Graphics.OpenGL.Version40 srcAlpha, OpenTK.Graphics.OpenGL.Version40 dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Copy a block of pixels from the read framebuffer to the draw framebuffer @@ -26993,7 +26993,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the interpolation to be applied if the image is stretched. Must be Nearest or Linear. /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glBlitFramebuffer")] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.OpenGL.ClearBufferMask mask, OpenTK.Graphics.OpenGL.BlitFramebufferFilter filter) { throw new NotImplementedException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.OpenGL.ClearBufferMask mask, OpenTK.Graphics.OpenGL.BlitFramebufferFilter filter) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -27010,7 +27010,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glBlitNamedFramebuffer")] [CLSCompliant(false)] - public static void BlitNamedFramebuffer(Int32 readFramebuffer, Int32 drawFramebuffer, Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.OpenGL.ClearBufferMask mask, OpenTK.Graphics.OpenGL.BlitFramebufferFilter filter) { throw new NotImplementedException(); } + public static void BlitNamedFramebuffer(Int32 readFramebuffer, Int32 drawFramebuffer, Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.OpenGL.ClearBufferMask mask, OpenTK.Graphics.OpenGL.BlitFramebufferFilter filter) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -27027,7 +27027,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glBlitNamedFramebuffer")] [CLSCompliant(false)] - public static void BlitNamedFramebuffer(UInt32 readFramebuffer, UInt32 drawFramebuffer, Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.OpenGL.ClearBufferMask mask, OpenTK.Graphics.OpenGL.BlitFramebufferFilter filter) { throw new NotImplementedException(); } + public static void BlitNamedFramebuffer(UInt32 readFramebuffer, UInt32 drawFramebuffer, Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.OpenGL.ClearBufferMask mask, OpenTK.Graphics.OpenGL.BlitFramebufferFilter filter) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Creates and initializes a buffer object's data store @@ -27045,7 +27045,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StreamRead, StreamCopy, StaticDraw, StaticRead, StaticCopy, DynamicDraw, DynamicRead, or DynamicCopy. /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Creates and initializes a buffer object's data store @@ -27066,7 +27066,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Creates and initializes a buffer object's data store @@ -27087,7 +27087,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Creates and initializes a buffer object's data store @@ -27108,7 +27108,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Creates and initializes a buffer object's data store @@ -27128,7 +27128,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Creates and initializes a buffer object's data store @@ -27146,7 +27146,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StreamRead, StreamCopy, StaticDraw, StaticRead, StaticCopy, DynamicDraw, DynamicRead, or DynamicCopy. /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Creates and initializes a buffer object's data store @@ -27167,7 +27167,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Creates and initializes a buffer object's data store @@ -27188,7 +27188,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Creates and initializes a buffer object's data store @@ -27209,7 +27209,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Creates and initializes a buffer object's data store @@ -27229,7 +27229,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_buffer_storage|VERSION_4_4] /// Creates and initializes a buffer object's immutable data store @@ -27247,7 +27247,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. /// [AutoGenerated(Category = "ARB_buffer_storage|VERSION_4_4", Version = "4.4", EntryPoint = "glBufferStorage")] - public static void BufferStorage(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) { throw new NotImplementedException(); } + public static void BufferStorage(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_buffer_storage|VERSION_4_4] /// Creates and initializes a buffer object's immutable data store @@ -27268,7 +27268,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_buffer_storage|VERSION_4_4] /// Creates and initializes a buffer object's immutable data store @@ -27289,7 +27289,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_buffer_storage|VERSION_4_4] /// Creates and initializes a buffer object's immutable data store @@ -27310,7 +27310,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_buffer_storage|VERSION_4_4] /// Creates and initializes a buffer object's immutable data store @@ -27330,7 +27330,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_buffer_storage|VERSION_4_4", Version = "4.4", EntryPoint = "glBufferStorage")] public static void BufferStorage(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_buffer_storage|VERSION_4_4] /// Creates and initializes a buffer object's immutable data store @@ -27348,7 +27348,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. /// [AutoGenerated(Category = "ARB_buffer_storage|VERSION_4_4", Version = "4.4", EntryPoint = "glBufferStorage")] - public static void BufferStorage(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) { throw new NotImplementedException(); } + public static void BufferStorage(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_buffer_storage|VERSION_4_4] /// Creates and initializes a buffer object's immutable data store @@ -27369,7 +27369,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_buffer_storage|VERSION_4_4] /// Creates and initializes a buffer object's immutable data store @@ -27390,7 +27390,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_buffer_storage|VERSION_4_4] /// Creates and initializes a buffer object's immutable data store @@ -27411,7 +27411,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_buffer_storage|VERSION_4_4] /// Creates and initializes a buffer object's immutable data store @@ -27431,7 +27431,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_buffer_storage|VERSION_4_4", Version = "4.4", EntryPoint = "glBufferStorage")] public static void BufferStorage(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Updates a subset of a buffer object's data store @@ -27449,7 +27449,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the new data that will be copied into the data store. /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferSubData")] - public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Updates a subset of a buffer object's data store @@ -27470,7 +27470,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Updates a subset of a buffer object's data store @@ -27491,7 +27491,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Updates a subset of a buffer object's data store @@ -27512,7 +27512,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Updates a subset of a buffer object's data store @@ -27532,7 +27532,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferSubData")] public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Updates a subset of a buffer object's data store @@ -27550,7 +27550,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the new data that will be copied into the data store. /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferSubData")] - public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Updates a subset of a buffer object's data store @@ -27571,7 +27571,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Updates a subset of a buffer object's data store @@ -27592,7 +27592,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Updates a subset of a buffer object's data store @@ -27613,7 +27613,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Updates a subset of a buffer object's data store @@ -27633,7 +27633,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferSubData")] public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Execute a display list @@ -27643,7 +27643,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glCallList")] [CLSCompliant(false)] - public static void CallList(Int32 list) { throw new NotImplementedException(); } + public static void CallList(Int32 list) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Execute a display list @@ -27653,7 +27653,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glCallList")] [CLSCompliant(false)] - public static void CallList(UInt32 list) { throw new NotImplementedException(); } + public static void CallList(UInt32 list) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Execute a list of display lists @@ -27668,7 +27668,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array of name offsets in the display list. The pointer type is void because the offsets can be bytes, shorts, ints, or floats, depending on the value of type. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glCallLists")] - public static void CallLists(Int32 n, OpenTK.Graphics.OpenGL.ListNameType type, [CountAttribute(Computed = "n,type")] IntPtr lists) { throw new NotImplementedException(); } + public static void CallLists(Int32 n, OpenTK.Graphics.OpenGL.ListNameType type, [CountAttribute(Computed = "n,type")] IntPtr lists) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Execute a list of display lists @@ -27686,7 +27686,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CallLists(Int32 n, OpenTK.Graphics.OpenGL.ListNameType type, [InAttribute, OutAttribute, CountAttribute(Computed = "n,type")] T2[] lists) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Execute a list of display lists @@ -27704,7 +27704,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CallLists(Int32 n, OpenTK.Graphics.OpenGL.ListNameType type, [InAttribute, OutAttribute, CountAttribute(Computed = "n,type")] T2[,] lists) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Execute a list of display lists @@ -27722,7 +27722,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CallLists(Int32 n, OpenTK.Graphics.OpenGL.ListNameType type, [InAttribute, OutAttribute, CountAttribute(Computed = "n,type")] T2[,,] lists) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Execute a list of display lists @@ -27739,7 +27739,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glCallLists")] public static void CallLists(Int32 n, OpenTK.Graphics.OpenGL.ListNameType type, [InAttribute, OutAttribute, CountAttribute(Computed = "n,type")] ref T2 lists) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Check the completeness status of a framebuffer @@ -27748,21 +27748,21 @@ namespace OpenTK.Graphics.OpenGL /// Specify the target of the framebuffer completeness check. /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glCheckFramebufferStatus")] - public static OpenTK.Graphics.OpenGL.FramebufferErrorCode CheckFramebufferStatus(OpenTK.Graphics.OpenGL.FramebufferTarget target) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.FramebufferErrorCode CheckFramebufferStatus(OpenTK.Graphics.OpenGL.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCheckNamedFramebufferStatus")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.All CheckNamedFramebufferStatus(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferTarget target) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.All CheckNamedFramebufferStatus(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCheckNamedFramebufferStatus")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.All CheckNamedFramebufferStatus(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferTarget target) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.All CheckNamedFramebufferStatus(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify whether data read via glReadPixels should be clamped @@ -27774,7 +27774,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies whether to apply color clamping. clamp must be True or False. /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClampColor")] - public static void ClampColor(OpenTK.Graphics.OpenGL.ClampColorTarget target, OpenTK.Graphics.OpenGL.ClampColorMode clamp) { throw new NotImplementedException(); } + public static void ClampColor(OpenTK.Graphics.OpenGL.ClampColorTarget target, OpenTK.Graphics.OpenGL.ClampColorMode clamp) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Clear buffers to preset values @@ -27783,7 +27783,7 @@ namespace OpenTK.Graphics.OpenGL /// Bitwise OR of masks that indicate the buffers to be cleared. The three masks are ColorBufferBit, DepthBufferBit, and StencilBufferBit. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glClear")] - public static void Clear(OpenTK.Graphics.OpenGL.ClearBufferMask mask) { throw new NotImplementedException(); } + public static void Clear(OpenTK.Graphics.OpenGL.ClearBufferMask mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify clear values for the accumulation buffer @@ -27801,7 +27801,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the red, green, blue, and alpha values used when the accumulation buffer is cleared. The initial values are all 0. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glClearAccum")] - public static void ClearAccum(Single red, Single green, Single blue, Single alpha) { throw new NotImplementedException(); } + public static void ClearAccum(Single red, Single green, Single blue, Single alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill a buffer object's data store with a fixed value @@ -27822,7 +27822,7 @@ namespace OpenTK.Graphics.OpenGL /// The address of a memory location storing the data to be replicated into the buffer's data store. /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferData")] - public static void ClearBufferData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearBufferData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill a buffer object's data store with a fixed value @@ -27846,7 +27846,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearBufferData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill a buffer object's data store with a fixed value @@ -27870,7 +27870,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearBufferData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill a buffer object's data store with a fixed value @@ -27894,7 +27894,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearBufferData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill a buffer object's data store with a fixed value @@ -27917,7 +27917,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferData")] public static void ClearBufferData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -27936,7 +27936,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ClearBufferCombined overload instead")] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfi")] - public static void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -27954,7 +27954,7 @@ namespace OpenTK.Graphics.OpenGL /// The value to clear a stencil render buffer to. /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfi")] - public static void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBufferCombined buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBufferCombined buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -27970,7 +27970,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Single[] value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -27986,7 +27986,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref Single value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -28002,7 +28002,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfv")] [CLSCompliant(false)] - public static unsafe void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -28018,7 +28018,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferiv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Int32[] value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -28034,7 +28034,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferiv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref Int32 value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -28050,7 +28050,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferiv")] [CLSCompliant(false)] - public static unsafe void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -28077,7 +28077,7 @@ namespace OpenTK.Graphics.OpenGL /// The address of a memory location storing the data to be replicated into the buffer's data store. /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] - public static void ClearBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -28107,7 +28107,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -28137,7 +28137,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -28167,7 +28167,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -28196,7 +28196,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] public static void ClearBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -28223,7 +28223,7 @@ namespace OpenTK.Graphics.OpenGL /// The address of a memory location storing the data to be replicated into the buffer's data store. /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] - public static void ClearBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -28253,7 +28253,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -28283,7 +28283,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -28313,7 +28313,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -28342,7 +28342,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] public static void ClearBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -28358,7 +28358,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32[] value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -28374,7 +28374,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -28390,7 +28390,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] [CLSCompliant(false)] - public static unsafe void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify clear values for the color buffers @@ -28408,7 +28408,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the red, green, blue, and alpha values used when the color buffers are cleared. The initial values are all 0. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glClearColor")] - public static void ClearColor(Single red, Single green, Single blue, Single alpha) { throw new NotImplementedException(); } + public static void ClearColor(Single red, Single green, Single blue, Single alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify the clear value for the depth buffer @@ -28417,7 +28417,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the depth value used when the depth buffer is cleared. The initial value is 1. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glClearDepth")] - public static void ClearDepth(Double depth) { throw new NotImplementedException(); } + public static void ClearDepth(Double depth) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Specify the clear value for the depth buffer @@ -28426,7 +28426,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the depth value used when the depth buffer is cleared. The initial value is 1. /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glClearDepthf")] - public static void ClearDepth(Single d) { throw new NotImplementedException(); } + public static void ClearDepth(Single d) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the clear value for the color index buffers @@ -28435,7 +28435,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the index used when the color index buffers are cleared. The initial value is 0. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glClearIndex")] - public static void ClearIndex(Single c) { throw new NotImplementedException(); } + public static void ClearIndex(Single c) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28445,7 +28445,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferData")] [CLSCompliant(false)] - public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28457,7 +28457,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28469,7 +28469,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28481,7 +28481,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28493,7 +28493,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28503,7 +28503,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferData")] [CLSCompliant(false)] - public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28515,7 +28515,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28527,7 +28527,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28539,7 +28539,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28551,7 +28551,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28563,7 +28563,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28577,7 +28577,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28591,7 +28591,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28605,7 +28605,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28619,7 +28619,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28631,7 +28631,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28645,7 +28645,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28659,7 +28659,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28673,7 +28673,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28687,7 +28687,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28699,7 +28699,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28713,7 +28713,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28727,7 +28727,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28741,7 +28741,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28755,7 +28755,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28767,7 +28767,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28781,7 +28781,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28795,7 +28795,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28809,7 +28809,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28823,7 +28823,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28833,7 +28833,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferfi")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.ClearBufferCombined buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.ClearBufferCombined buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28843,7 +28843,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferfi")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ClearBufferCombined buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ClearBufferCombined buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28852,7 +28852,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferfv")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Single[] value) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28861,7 +28861,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferfv")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, ref Single value) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28870,7 +28870,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferfv")] [CLSCompliant(false)] - public static unsafe void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Single* value) { throw new NotImplementedException(); } + public static unsafe void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28879,7 +28879,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferfv")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Single[] value) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28888,7 +28888,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferfv")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, ref Single value) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28897,7 +28897,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferfv")] [CLSCompliant(false)] - public static unsafe void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Single* value) { throw new NotImplementedException(); } + public static unsafe void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28906,7 +28906,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferiv")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Int32[] value) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28915,7 +28915,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferiv")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, ref Int32 value) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28924,7 +28924,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferiv")] [CLSCompliant(false)] - public static unsafe void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Int32* value) { throw new NotImplementedException(); } + public static unsafe void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28933,7 +28933,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferiv")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Int32[] value) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28942,7 +28942,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferiv")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, ref Int32 value) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28951,7 +28951,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferiv")] [CLSCompliant(false)] - public static unsafe void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Int32* value) { throw new NotImplementedException(); } + public static unsafe void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28960,7 +28960,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferuiv")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, UInt32[] value) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28969,7 +28969,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferuiv")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, ref UInt32 value) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28978,7 +28978,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferuiv")] [CLSCompliant(false)] - public static unsafe void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify the clear value for the stencil buffer @@ -28987,7 +28987,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the index used when the stencil buffer is cleared. The initial value is 0. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glClearStencil")] - public static void ClearStencil(Int32 s) { throw new NotImplementedException(); } + public static void ClearStencil(Int32 s) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all a texture image with a constant value @@ -29009,7 +29009,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexImage")] [CLSCompliant(false)] - public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all a texture image with a constant value @@ -29033,7 +29033,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all a texture image with a constant value @@ -29057,7 +29057,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all a texture image with a constant value @@ -29081,7 +29081,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all a texture image with a constant value @@ -29105,7 +29105,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all a texture image with a constant value @@ -29127,7 +29127,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexImage")] [CLSCompliant(false)] - public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all a texture image with a constant value @@ -29151,7 +29151,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all a texture image with a constant value @@ -29175,7 +29175,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all a texture image with a constant value @@ -29199,7 +29199,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all a texture image with a constant value @@ -29223,7 +29223,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all or part of a texture image with a constant value @@ -29263,7 +29263,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexSubImage")] [CLSCompliant(false)] - public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all or part of a texture image with a constant value @@ -29305,7 +29305,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all or part of a texture image with a constant value @@ -29347,7 +29347,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all or part of a texture image with a constant value @@ -29389,7 +29389,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all or part of a texture image with a constant value @@ -29431,7 +29431,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all or part of a texture image with a constant value @@ -29471,7 +29471,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexSubImage")] [CLSCompliant(false)] - public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all or part of a texture image with a constant value @@ -29513,7 +29513,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all or part of a texture image with a constant value @@ -29555,7 +29555,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all or part of a texture image with a constant value @@ -29597,7 +29597,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all or part of a texture image with a constant value @@ -29639,7 +29639,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Select active texture unit @@ -29648,7 +29648,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies which texture unit to make active. The number of texture units is implementation dependent, but must be at least two. texture must be one of Texture, where i ranges from 0 to the value of MaxTextureCoords - 1, which is an implementation-dependent value. The initial value is Texture0. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glClientActiveTexture")] - public static void ClientActiveTexture(OpenTK.Graphics.OpenGL.TextureUnit texture) { throw new NotImplementedException(); } + public static void ClientActiveTexture(OpenTK.Graphics.OpenGL.TextureUnit texture) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Block and wait for a sync object to become signaled @@ -29664,7 +29664,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glClientWaitSync")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.OpenGL.ClientWaitSyncFlags flags, Int64 timeout) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.OpenGL.ClientWaitSyncFlags flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Block and wait for a sync object to become signaled @@ -29680,7 +29680,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glClientWaitSync")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.OpenGL.ClientWaitSyncFlags flags, UInt64 timeout) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.OpenGL.ClientWaitSyncFlags flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Block and wait for a sync object to become signaled @@ -29697,7 +29697,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ClientWaitSyncFlags overload instead")] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glClientWaitSync")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.WaitSyncStatus ClientWaitSync(IntPtr sync, Int32 flags, Int64 timeout) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.WaitSyncStatus ClientWaitSync(IntPtr sync, Int32 flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Block and wait for a sync object to become signaled @@ -29714,7 +29714,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ClientWaitSyncFlags overload instead")] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glClientWaitSync")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.WaitSyncStatus ClientWaitSync(IntPtr sync, Int32 flags, UInt64 timeout) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.WaitSyncStatus ClientWaitSync(IntPtr sync, Int32 flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Block and wait for a sync object to become signaled @@ -29731,13 +29731,13 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ClientWaitSyncFlags overload instead")] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glClientWaitSync")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.WaitSyncStatus ClientWaitSync(IntPtr sync, UInt32 flags, UInt64 timeout) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.WaitSyncStatus ClientWaitSync(IntPtr sync, UInt32 flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_clip_control|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_clip_control|VERSION_4_5", Version = "4.5", EntryPoint = "glClipControl")] - public static void ClipControl(OpenTK.Graphics.OpenGL.ClipOrigin origin, OpenTK.Graphics.OpenGL.ClipDepthMode depth) { throw new NotImplementedException(); } + public static void ClipControl(OpenTK.Graphics.OpenGL.ClipOrigin origin, OpenTK.Graphics.OpenGL.ClipDepthMode depth) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a plane against which all geometry is clipped @@ -29750,7 +29750,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glClipPlane")] [CLSCompliant(false)] - public static void ClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, [CountAttribute(Count = 4)] Double[] equation) { throw new NotImplementedException(); } + public static void ClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, [CountAttribute(Count = 4)] Double[] equation) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a plane against which all geometry is clipped @@ -29763,7 +29763,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glClipPlane")] [CLSCompliant(false)] - public static void ClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, [CountAttribute(Count = 4)] ref Double equation) { throw new NotImplementedException(); } + public static void ClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, [CountAttribute(Count = 4)] ref Double equation) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a plane against which all geometry is clipped @@ -29776,7 +29776,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glClipPlane")] [CLSCompliant(false)] - public static unsafe void ClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, [CountAttribute(Count = 4)] Double* equation) { throw new NotImplementedException(); } + public static unsafe void ClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, [CountAttribute(Count = 4)] Double* equation) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -29792,7 +29792,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3b")] [CLSCompliant(false)] - public static void Color3(SByte red, SByte green, SByte blue) { throw new NotImplementedException(); } + public static void Color3(SByte red, SByte green, SByte blue) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -29802,7 +29802,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3bv")] [CLSCompliant(false)] - public static void Color3([CountAttribute(Count = 3)] SByte[] v) { throw new NotImplementedException(); } + public static void Color3([CountAttribute(Count = 3)] SByte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -29812,7 +29812,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3bv")] [CLSCompliant(false)] - public static void Color3([CountAttribute(Count = 3)] ref SByte v) { throw new NotImplementedException(); } + public static void Color3([CountAttribute(Count = 3)] ref SByte v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -29822,7 +29822,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3bv")] [CLSCompliant(false)] - public static unsafe void Color3([CountAttribute(Count = 3)] SByte* v) { throw new NotImplementedException(); } + public static unsafe void Color3([CountAttribute(Count = 3)] SByte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -29837,7 +29837,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current color. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3d")] - public static void Color3(Double red, Double green, Double blue) { throw new NotImplementedException(); } + public static void Color3(Double red, Double green, Double blue) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -29847,7 +29847,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3dv")] [CLSCompliant(false)] - public static void Color3([CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void Color3([CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -29857,7 +29857,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3dv")] [CLSCompliant(false)] - public static void Color3([CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void Color3([CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -29867,7 +29867,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3dv")] [CLSCompliant(false)] - public static unsafe void Color3([CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void Color3([CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -29882,7 +29882,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current color. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3f")] - public static void Color3(Single red, Single green, Single blue) { throw new NotImplementedException(); } + public static void Color3(Single red, Single green, Single blue) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -29892,7 +29892,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3fv")] [CLSCompliant(false)] - public static void Color3([CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void Color3([CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -29902,7 +29902,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3fv")] [CLSCompliant(false)] - public static void Color3([CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void Color3([CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -29912,7 +29912,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3fv")] [CLSCompliant(false)] - public static unsafe void Color3([CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void Color3([CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -29927,7 +29927,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current color. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3i")] - public static void Color3(Int32 red, Int32 green, Int32 blue) { throw new NotImplementedException(); } + public static void Color3(Int32 red, Int32 green, Int32 blue) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -29937,7 +29937,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3iv")] [CLSCompliant(false)] - public static void Color3([CountAttribute(Count = 3)] Int32[] v) { throw new NotImplementedException(); } + public static void Color3([CountAttribute(Count = 3)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -29947,7 +29947,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3iv")] [CLSCompliant(false)] - public static void Color3([CountAttribute(Count = 3)] ref Int32 v) { throw new NotImplementedException(); } + public static void Color3([CountAttribute(Count = 3)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -29957,7 +29957,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3iv")] [CLSCompliant(false)] - public static unsafe void Color3([CountAttribute(Count = 3)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void Color3([CountAttribute(Count = 3)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -29972,7 +29972,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current color. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3s")] - public static void Color3(Int16 red, Int16 green, Int16 blue) { throw new NotImplementedException(); } + public static void Color3(Int16 red, Int16 green, Int16 blue) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -29982,7 +29982,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3sv")] [CLSCompliant(false)] - public static void Color3([CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void Color3([CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -29992,7 +29992,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3sv")] [CLSCompliant(false)] - public static void Color3([CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void Color3([CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30002,7 +30002,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3sv")] [CLSCompliant(false)] - public static unsafe void Color3([CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void Color3([CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30017,7 +30017,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current color. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3ub")] - public static void Color3(Byte red, Byte green, Byte blue) { throw new NotImplementedException(); } + public static void Color3(Byte red, Byte green, Byte blue) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30027,7 +30027,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3ubv")] [CLSCompliant(false)] - public static void Color3([CountAttribute(Count = 3)] Byte[] v) { throw new NotImplementedException(); } + public static void Color3([CountAttribute(Count = 3)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30037,7 +30037,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3ubv")] [CLSCompliant(false)] - public static void Color3([CountAttribute(Count = 3)] ref Byte v) { throw new NotImplementedException(); } + public static void Color3([CountAttribute(Count = 3)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30047,7 +30047,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3ubv")] [CLSCompliant(false)] - public static unsafe void Color3([CountAttribute(Count = 3)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void Color3([CountAttribute(Count = 3)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30063,7 +30063,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3ui")] [CLSCompliant(false)] - public static void Color3(UInt32 red, UInt32 green, UInt32 blue) { throw new NotImplementedException(); } + public static void Color3(UInt32 red, UInt32 green, UInt32 blue) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30073,7 +30073,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3uiv")] [CLSCompliant(false)] - public static void Color3([CountAttribute(Count = 3)] UInt32[] v) { throw new NotImplementedException(); } + public static void Color3([CountAttribute(Count = 3)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30083,7 +30083,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3uiv")] [CLSCompliant(false)] - public static void Color3([CountAttribute(Count = 3)] ref UInt32 v) { throw new NotImplementedException(); } + public static void Color3([CountAttribute(Count = 3)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30093,7 +30093,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3uiv")] [CLSCompliant(false)] - public static unsafe void Color3([CountAttribute(Count = 3)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void Color3([CountAttribute(Count = 3)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30109,7 +30109,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3us")] [CLSCompliant(false)] - public static void Color3(UInt16 red, UInt16 green, UInt16 blue) { throw new NotImplementedException(); } + public static void Color3(UInt16 red, UInt16 green, UInt16 blue) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30119,7 +30119,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3usv")] [CLSCompliant(false)] - public static void Color3([CountAttribute(Count = 3)] UInt16[] v) { throw new NotImplementedException(); } + public static void Color3([CountAttribute(Count = 3)] UInt16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30129,7 +30129,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3usv")] [CLSCompliant(false)] - public static void Color3([CountAttribute(Count = 3)] ref UInt16 v) { throw new NotImplementedException(); } + public static void Color3([CountAttribute(Count = 3)] ref UInt16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30139,7 +30139,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3usv")] [CLSCompliant(false)] - public static unsafe void Color3([CountAttribute(Count = 3)] UInt16* v) { throw new NotImplementedException(); } + public static unsafe void Color3([CountAttribute(Count = 3)] UInt16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30158,7 +30158,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4b")] [CLSCompliant(false)] - public static void Color4(SByte red, SByte green, SByte blue, SByte alpha) { throw new NotImplementedException(); } + public static void Color4(SByte red, SByte green, SByte blue, SByte alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30168,7 +30168,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4bv")] [CLSCompliant(false)] - public static void Color4([CountAttribute(Count = 4)] SByte[] v) { throw new NotImplementedException(); } + public static void Color4([CountAttribute(Count = 4)] SByte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30178,7 +30178,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4bv")] [CLSCompliant(false)] - public static void Color4([CountAttribute(Count = 4)] ref SByte v) { throw new NotImplementedException(); } + public static void Color4([CountAttribute(Count = 4)] ref SByte v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30188,7 +30188,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4bv")] [CLSCompliant(false)] - public static unsafe void Color4([CountAttribute(Count = 4)] SByte* v) { throw new NotImplementedException(); } + public static unsafe void Color4([CountAttribute(Count = 4)] SByte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30206,7 +30206,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4d")] - public static void Color4(Double red, Double green, Double blue, Double alpha) { throw new NotImplementedException(); } + public static void Color4(Double red, Double green, Double blue, Double alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30216,7 +30216,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4dv")] [CLSCompliant(false)] - public static void Color4([CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void Color4([CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30226,7 +30226,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4dv")] [CLSCompliant(false)] - public static void Color4([CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void Color4([CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30236,7 +30236,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4dv")] [CLSCompliant(false)] - public static unsafe void Color4([CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void Color4([CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30254,7 +30254,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4f")] - public static void Color4(Single red, Single green, Single blue, Single alpha) { throw new NotImplementedException(); } + public static void Color4(Single red, Single green, Single blue, Single alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30264,7 +30264,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4fv")] [CLSCompliant(false)] - public static void Color4([CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void Color4([CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30274,7 +30274,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4fv")] [CLSCompliant(false)] - public static void Color4([CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void Color4([CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30284,7 +30284,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4fv")] [CLSCompliant(false)] - public static unsafe void Color4([CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void Color4([CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30302,7 +30302,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4i")] - public static void Color4(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new NotImplementedException(); } + public static void Color4(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30312,7 +30312,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4iv")] [CLSCompliant(false)] - public static void Color4([CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void Color4([CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30322,7 +30322,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4iv")] [CLSCompliant(false)] - public static void Color4([CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void Color4([CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30332,7 +30332,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4iv")] [CLSCompliant(false)] - public static unsafe void Color4([CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void Color4([CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30350,7 +30350,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4s")] - public static void Color4(Int16 red, Int16 green, Int16 blue, Int16 alpha) { throw new NotImplementedException(); } + public static void Color4(Int16 red, Int16 green, Int16 blue, Int16 alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30360,7 +30360,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4sv")] [CLSCompliant(false)] - public static void Color4([CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void Color4([CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30370,7 +30370,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4sv")] [CLSCompliant(false)] - public static void Color4([CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void Color4([CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30380,7 +30380,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4sv")] [CLSCompliant(false)] - public static unsafe void Color4([CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void Color4([CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30398,7 +30398,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4ub")] - public static void Color4(Byte red, Byte green, Byte blue, Byte alpha) { throw new NotImplementedException(); } + public static void Color4(Byte red, Byte green, Byte blue, Byte alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30408,7 +30408,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4ubv")] [CLSCompliant(false)] - public static void Color4([CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void Color4([CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30418,7 +30418,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4ubv")] [CLSCompliant(false)] - public static void Color4([CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void Color4([CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30428,7 +30428,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4ubv")] [CLSCompliant(false)] - public static unsafe void Color4([CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void Color4([CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30447,7 +30447,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4ui")] [CLSCompliant(false)] - public static void Color4(UInt32 red, UInt32 green, UInt32 blue, UInt32 alpha) { throw new NotImplementedException(); } + public static void Color4(UInt32 red, UInt32 green, UInt32 blue, UInt32 alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30457,7 +30457,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4uiv")] [CLSCompliant(false)] - public static void Color4([CountAttribute(Count = 4)] UInt32[] v) { throw new NotImplementedException(); } + public static void Color4([CountAttribute(Count = 4)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30467,7 +30467,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4uiv")] [CLSCompliant(false)] - public static void Color4([CountAttribute(Count = 4)] ref UInt32 v) { throw new NotImplementedException(); } + public static void Color4([CountAttribute(Count = 4)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30477,7 +30477,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4uiv")] [CLSCompliant(false)] - public static unsafe void Color4([CountAttribute(Count = 4)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void Color4([CountAttribute(Count = 4)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30496,7 +30496,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4us")] [CLSCompliant(false)] - public static void Color4(UInt16 red, UInt16 green, UInt16 blue, UInt16 alpha) { throw new NotImplementedException(); } + public static void Color4(UInt16 red, UInt16 green, UInt16 blue, UInt16 alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30506,7 +30506,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4usv")] [CLSCompliant(false)] - public static void Color4([CountAttribute(Count = 4)] UInt16[] v) { throw new NotImplementedException(); } + public static void Color4([CountAttribute(Count = 4)] UInt16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30516,7 +30516,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4usv")] [CLSCompliant(false)] - public static void Color4([CountAttribute(Count = 4)] ref UInt16 v) { throw new NotImplementedException(); } + public static void Color4([CountAttribute(Count = 4)] ref UInt16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30526,7 +30526,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4usv")] [CLSCompliant(false)] - public static unsafe void Color4([CountAttribute(Count = 4)] UInt16* v) { throw new NotImplementedException(); } + public static unsafe void Color4([CountAttribute(Count = 4)] UInt16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Enable and disable writing of frame buffer color components @@ -30544,7 +30544,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify whether red, green, blue, and alpha are to be written into the frame buffer. The initial values are all True, indicating that the color components are written. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColorMask")] - public static void ColorMask(bool red, bool green, bool blue, bool alpha) { throw new NotImplementedException(); } + public static void ColorMask(bool red, bool green, bool blue, bool alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Enable and disable writing of frame buffer color components @@ -30566,7 +30566,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glColorMaski")] [CLSCompliant(false)] - public static void ColorMask(Int32 index, bool r, bool g, bool b, bool a) { throw new NotImplementedException(); } + public static void ColorMask(Int32 index, bool r, bool g, bool b, bool a) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Enable and disable writing of frame buffer color components @@ -30588,7 +30588,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glColorMaski")] [CLSCompliant(false)] - public static void ColorMask(UInt32 index, bool r, bool g, bool b, bool a) { throw new NotImplementedException(); } + public static void ColorMask(UInt32 index, bool r, bool g, bool b, bool a) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Cause a material color to track the current color @@ -30600,63 +30600,63 @@ namespace OpenTK.Graphics.OpenGL /// Specifies which of several material parameters track the current color. Accepted values are Emission, Ambient, Diffuse, Specular, and AmbientAndDiffuse. The initial value is AmbientAndDiffuse. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColorMaterial")] - public static void ColorMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.ColorMaterialParameter mode) { throw new NotImplementedException(); } + public static void ColorMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.ColorMaterialParameter mode) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glColorP3ui")] [CLSCompliant(false)] - public static void ColorP3(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 color) { throw new NotImplementedException(); } + public static void ColorP3(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 color) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glColorP3ui")] [CLSCompliant(false)] - public static void ColorP3(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 color) { throw new NotImplementedException(); } + public static void ColorP3(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 color) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glColorP3uiv")] [CLSCompliant(false)] - public static unsafe void ColorP3(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* color) { throw new NotImplementedException(); } + public static unsafe void ColorP3(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* color) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glColorP3uiv")] [CLSCompliant(false)] - public static unsafe void ColorP3(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* color) { throw new NotImplementedException(); } + public static unsafe void ColorP3(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* color) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glColorP4ui")] [CLSCompliant(false)] - public static void ColorP4(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 color) { throw new NotImplementedException(); } + public static void ColorP4(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 color) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glColorP4ui")] [CLSCompliant(false)] - public static void ColorP4(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 color) { throw new NotImplementedException(); } + public static void ColorP4(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 color) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glColorP4uiv")] [CLSCompliant(false)] - public static unsafe void ColorP4(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* color) { throw new NotImplementedException(); } + public static unsafe void ColorP4(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* color) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glColorP4uiv")] [CLSCompliant(false)] - public static unsafe void ColorP4(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* color) { throw new NotImplementedException(); } + public static unsafe void ColorP4(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* color) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of colors @@ -30674,7 +30674,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the first component of the first color element in the array. The initial value is 0. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glColorPointer")] - public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of colors @@ -30695,7 +30695,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of colors @@ -30716,7 +30716,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of colors @@ -30737,7 +30737,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of colors @@ -30757,7 +30757,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glColorPointer")] public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T3 pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Respecify a portion of a color table @@ -30781,7 +30781,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a one-dimensional array of pixel data that is processed to replace the specified region of the color table. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorSubTable")] - public static void ColorSubTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,count")] IntPtr data) { throw new NotImplementedException(); } + public static void ColorSubTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,count")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// /// Respecify a portion of a color table @@ -30808,7 +30808,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorSubTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,count")] T5[] data) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Respecify a portion of a color table @@ -30835,7 +30835,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorSubTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,count")] T5[,] data) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Respecify a portion of a color table @@ -30862,7 +30862,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorSubTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,count")] T5[,,] data) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Respecify a portion of a color table @@ -30888,7 +30888,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorSubTable")] public static void ColorSubTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,count")] ref T5 data) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a color lookup table @@ -30912,7 +30912,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a one-dimensional array of pixel data that is processed to build the color table. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTable")] - public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr table) { throw new NotImplementedException(); } + public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr table) { throw new BindingsNotRewrittenException(); } /// /// Define a color lookup table @@ -30939,7 +30939,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[] table) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a color lookup table @@ -30966,7 +30966,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,] table) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a color lookup table @@ -30993,7 +30993,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,,] table) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a color lookup table @@ -31019,7 +31019,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTable")] public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T5 table) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Set color lookup table parameters @@ -31035,7 +31035,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTableParameterfv")] [CLSCompliant(false)] - public static void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// Set color lookup table parameters @@ -31051,7 +31051,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTableParameterfv")] [CLSCompliant(false)] - public static void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] ref Single @params) { throw new NotImplementedException(); } + public static void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] ref Single @params) { throw new BindingsNotRewrittenException(); } /// /// Set color lookup table parameters @@ -31067,7 +31067,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTableParameterfv")] [CLSCompliant(false)] - public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// Set color lookup table parameters @@ -31083,7 +31083,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTableParameteriv")] [CLSCompliant(false)] - public static void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// Set color lookup table parameters @@ -31099,7 +31099,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTableParameteriv")] [CLSCompliant(false)] - public static void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// Set color lookup table parameters @@ -31115,7 +31115,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTableParameteriv")] [CLSCompliant(false)] - public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Compiles a shader object @@ -31125,7 +31125,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glCompileShader")] [CLSCompliant(false)] - public static void CompileShader(Int32 shader) { throw new NotImplementedException(); } + public static void CompileShader(Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Compiles a shader object @@ -31135,7 +31135,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glCompileShader")] [CLSCompliant(false)] - public static void CompileShader(UInt32 shader) { throw new NotImplementedException(); } + public static void CompileShader(UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture image in a compressed format @@ -31162,7 +31162,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage1D")] - public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture image in a compressed format @@ -31192,7 +31192,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture image in a compressed format @@ -31222,7 +31222,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture image in a compressed format @@ -31252,7 +31252,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture image in a compressed format @@ -31281,7 +31281,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage1D")] public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture image in a compressed format @@ -31311,7 +31311,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage2D")] - public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture image in a compressed format @@ -31344,7 +31344,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture image in a compressed format @@ -31377,7 +31377,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture image in a compressed format @@ -31410,7 +31410,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture image in a compressed format @@ -31442,7 +31442,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage2D")] public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture image in a compressed format @@ -31475,7 +31475,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage3D")] - public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture image in a compressed format @@ -31511,7 +31511,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture image in a compressed format @@ -31547,7 +31547,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture image in a compressed format @@ -31583,7 +31583,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture image in a compressed format @@ -31618,7 +31618,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage3D")] public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture subimage in a compressed format @@ -31645,7 +31645,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage1D")] - public static void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture subimage in a compressed format @@ -31675,7 +31675,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture subimage in a compressed format @@ -31705,7 +31705,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture subimage in a compressed format @@ -31735,7 +31735,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture subimage in a compressed format @@ -31764,7 +31764,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage1D")] public static void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture subimage in a compressed format @@ -31797,7 +31797,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage2D")] - public static void CompressedTexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture subimage in a compressed format @@ -31833,7 +31833,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture subimage in a compressed format @@ -31869,7 +31869,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture subimage in a compressed format @@ -31905,7 +31905,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture subimage in a compressed format @@ -31940,7 +31940,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage2D")] public static void CompressedTexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture subimage in a compressed format @@ -31979,7 +31979,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage3D")] - public static void CompressedTexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture subimage in a compressed format @@ -32021,7 +32021,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture subimage in a compressed format @@ -32063,7 +32063,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture subimage in a compressed format @@ -32105,7 +32105,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture subimage in a compressed format @@ -32146,7 +32146,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage3D")] public static void CompressedTexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32158,7 +32158,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCompressedTextureSubImage1D")] [CLSCompliant(false)] - public static void CompressedTextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32172,7 +32172,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32186,7 +32186,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32200,7 +32200,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32214,7 +32214,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32226,7 +32226,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCompressedTextureSubImage1D")] [CLSCompliant(false)] - public static void CompressedTextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32240,7 +32240,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32254,7 +32254,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32268,7 +32268,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32282,7 +32282,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32296,7 +32296,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCompressedTextureSubImage2D")] [CLSCompliant(false)] - public static void CompressedTextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32312,7 +32312,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32328,7 +32328,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32344,7 +32344,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32360,7 +32360,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32374,7 +32374,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCompressedTextureSubImage2D")] [CLSCompliant(false)] - public static void CompressedTextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32390,7 +32390,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32406,7 +32406,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32422,7 +32422,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32438,7 +32438,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32454,7 +32454,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCompressedTextureSubImage3D")] [CLSCompliant(false)] - public static void CompressedTextureSubImage3D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage3D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32472,7 +32472,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage3D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32490,7 +32490,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage3D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32508,7 +32508,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage3D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32526,7 +32526,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage3D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32542,7 +32542,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCompressedTextureSubImage3D")] [CLSCompliant(false)] - public static void CompressedTextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32560,7 +32560,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32578,7 +32578,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32596,7 +32596,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32614,7 +32614,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a one-dimensional convolution filter @@ -32638,7 +32638,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a one-dimensional array of pixel data that is processed to build the convolution filter kernel. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter1D")] - public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr image) { throw new NotImplementedException(); } + public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr image) { throw new BindingsNotRewrittenException(); } /// /// Define a one-dimensional convolution filter @@ -32665,7 +32665,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[] image) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a one-dimensional convolution filter @@ -32692,7 +32692,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,] image) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a one-dimensional convolution filter @@ -32719,7 +32719,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,,] image) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a one-dimensional convolution filter @@ -32745,7 +32745,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter1D")] public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T5 image) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a two-dimensional convolution filter @@ -32772,7 +32772,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a two-dimensional array of pixel data that is processed to build the convolution filter kernel. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter2D")] - public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr image) { throw new NotImplementedException(); } + public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr image) { throw new BindingsNotRewrittenException(); } /// /// Define a two-dimensional convolution filter @@ -32802,7 +32802,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[] image) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a two-dimensional convolution filter @@ -32832,7 +32832,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,] image) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a two-dimensional convolution filter @@ -32862,7 +32862,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,,] image) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a two-dimensional convolution filter @@ -32891,7 +32891,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter2D")] public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T6 image) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Set convolution parameters @@ -32906,7 +32906,7 @@ namespace OpenTK.Graphics.OpenGL /// The parameter value. Must be one of Reduce, ConstantBorder, ReplicateBorder. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionParameterf")] - public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, Single @params) { throw new NotImplementedException(); } + public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, Single @params) { throw new BindingsNotRewrittenException(); } /// /// Set convolution parameters @@ -32922,7 +32922,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionParameterfv")] [CLSCompliant(false)] - public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// Set convolution parameters @@ -32938,7 +32938,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionParameterfv")] [CLSCompliant(false)] - public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// Set convolution parameters @@ -32953,7 +32953,7 @@ namespace OpenTK.Graphics.OpenGL /// The parameter value. Must be one of Reduce, ConstantBorder, ReplicateBorder. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionParameteri")] - public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, Int32 @params) { throw new NotImplementedException(); } + public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// Set convolution parameters @@ -32969,7 +32969,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionParameteriv")] [CLSCompliant(false)] - public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// Set convolution parameters @@ -32985,7 +32985,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionParameteriv")] [CLSCompliant(false)] - public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_copy_buffer|VERSION_3_1] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -33006,7 +33006,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the size, in basic machine units, of the data to be copied from readtarget to writetarget. /// [AutoGenerated(Category = "ARB_copy_buffer|VERSION_3_1", Version = "3.1", EntryPoint = "glCopyBufferSubData")] - public static void CopyBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget readTarget, OpenTK.Graphics.OpenGL.BufferTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new NotImplementedException(); } + public static void CopyBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget readTarget, OpenTK.Graphics.OpenGL.BufferTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_copy_buffer|VERSION_3_1] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -33027,7 +33027,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the size, in basic machine units, of the data to be copied from readtarget to writetarget. /// [AutoGenerated(Category = "ARB_copy_buffer|VERSION_3_1", Version = "3.1", EntryPoint = "glCopyBufferSubData")] - public static void CopyBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget readTarget, OpenTK.Graphics.OpenGL.BufferTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new NotImplementedException(); } + public static void CopyBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget readTarget, OpenTK.Graphics.OpenGL.BufferTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// /// Respecify a portion of a color table @@ -33048,7 +33048,7 @@ namespace OpenTK.Graphics.OpenGL /// The number of table entries to replace. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glCopyColorSubTable")] - public static void CopyColorSubTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, Int32 start, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyColorSubTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, Int32 start, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// /// Copy pixels into a color table @@ -33069,7 +33069,7 @@ namespace OpenTK.Graphics.OpenGL /// The width of the pixel rectangle. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glCopyColorTable")] - public static void CopyColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// /// Copy pixels into a one-dimensional convolution filter @@ -33090,7 +33090,7 @@ namespace OpenTK.Graphics.OpenGL /// The width of the pixel array to copy. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glCopyConvolutionFilter1D")] - public static void CopyConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// /// Copy pixels into a two-dimensional convolution filter @@ -33114,7 +33114,7 @@ namespace OpenTK.Graphics.OpenGL /// The height of the pixel array to copy. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glCopyConvolutionFilter2D")] - public static void CopyConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_copy_image|VERSION_4_3] /// Perform a raw data copy between two images @@ -33166,7 +33166,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_copy_image|VERSION_4_3", Version = "4.3", EntryPoint = "glCopyImageSubData")] [CLSCompliant(false)] - public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.OpenGL.ImageTarget srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.OpenGL.ImageTarget dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new NotImplementedException(); } + public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.OpenGL.ImageTarget srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.OpenGL.ImageTarget dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_copy_image|VERSION_4_3] /// Perform a raw data copy between two images @@ -33218,7 +33218,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_copy_image|VERSION_4_3", Version = "4.3", EntryPoint = "glCopyImageSubData")] [CLSCompliant(false)] - public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.OpenGL.ImageTarget srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.OpenGL.ImageTarget dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new NotImplementedException(); } + public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.OpenGL.ImageTarget srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.OpenGL.ImageTarget dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33228,7 +33228,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCopyNamedBufferSubData")] [CLSCompliant(false)] - public static void CopyNamedBufferSubData(Int32 readBuffer, Int32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new NotImplementedException(); } + public static void CopyNamedBufferSubData(Int32 readBuffer, Int32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33238,7 +33238,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCopyNamedBufferSubData")] [CLSCompliant(false)] - public static void CopyNamedBufferSubData(Int32 readBuffer, Int32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new NotImplementedException(); } + public static void CopyNamedBufferSubData(Int32 readBuffer, Int32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33248,7 +33248,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCopyNamedBufferSubData")] [CLSCompliant(false)] - public static void CopyNamedBufferSubData(UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new NotImplementedException(); } + public static void CopyNamedBufferSubData(UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33258,7 +33258,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCopyNamedBufferSubData")] [CLSCompliant(false)] - public static void CopyNamedBufferSubData(UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new NotImplementedException(); } + public static void CopyNamedBufferSubData(UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Copy pixels in the frame buffer @@ -33279,7 +33279,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies whether color values, depth values, or stencil values are to be copied. Symbolic constants Color, Depth, and Stencil are accepted. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glCopyPixels")] - public static void CopyPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelCopyType type) { throw new NotImplementedException(); } + public static void CopyPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelCopyType type) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Copy pixels into a 1D texture image @@ -33306,7 +33306,7 @@ namespace OpenTK.Graphics.OpenGL /// Must be 0. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glCopyTexImage1D")] - public static void CopyTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new NotImplementedException(); } + public static void CopyTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Copy pixels into a 2D texture image @@ -33336,7 +33336,7 @@ namespace OpenTK.Graphics.OpenGL /// Must be 0. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glCopyTexImage2D")] - public static void CopyTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new NotImplementedException(); } + public static void CopyTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Copy a one-dimensional texture subimage @@ -33360,7 +33360,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the width of the texture subimage. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glCopyTexSubImage1D")] - public static void CopyTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Copy a two-dimensional texture subimage @@ -33390,7 +33390,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the height of the texture subimage. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glCopyTexSubImage2D")] - public static void CopyTexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Copy a three-dimensional texture subimage @@ -33423,7 +33423,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the height of the texture subimage. /// [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glCopyTexSubImage3D")] - public static void CopyTexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33434,7 +33434,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCopyTextureSubImage1D")] [CLSCompliant(false)] - public static void CopyTextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyTextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33445,7 +33445,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCopyTextureSubImage1D")] [CLSCompliant(false)] - public static void CopyTextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyTextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33458,7 +33458,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCopyTextureSubImage2D")] [CLSCompliant(false)] - public static void CopyTextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33471,7 +33471,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCopyTextureSubImage2D")] [CLSCompliant(false)] - public static void CopyTextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33485,7 +33485,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCopyTextureSubImage3D")] [CLSCompliant(false)] - public static void CopyTextureSubImage3D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTextureSubImage3D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33499,139 +33499,139 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCopyTextureSubImage3D")] [CLSCompliant(false)] - public static void CopyTextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateBuffers")] [CLSCompliant(false)] - public static void CreateBuffers(Int32 n, [OutAttribute] Int32[] buffers) { throw new NotImplementedException(); } + public static void CreateBuffers(Int32 n, [OutAttribute] Int32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateBuffers")] [CLSCompliant(false)] - public static void CreateBuffers(Int32 n, [OutAttribute] out Int32 buffers) { throw new NotImplementedException(); } + public static void CreateBuffers(Int32 n, [OutAttribute] out Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateBuffers")] [CLSCompliant(false)] - public static unsafe void CreateBuffers(Int32 n, [OutAttribute] Int32* buffers) { throw new NotImplementedException(); } + public static unsafe void CreateBuffers(Int32 n, [OutAttribute] Int32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateBuffers")] [CLSCompliant(false)] - public static void CreateBuffers(Int32 n, [OutAttribute] UInt32[] buffers) { throw new NotImplementedException(); } + public static void CreateBuffers(Int32 n, [OutAttribute] UInt32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateBuffers")] [CLSCompliant(false)] - public static void CreateBuffers(Int32 n, [OutAttribute] out UInt32 buffers) { throw new NotImplementedException(); } + public static void CreateBuffers(Int32 n, [OutAttribute] out UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateBuffers")] [CLSCompliant(false)] - public static unsafe void CreateBuffers(Int32 n, [OutAttribute] UInt32* buffers) { throw new NotImplementedException(); } + public static unsafe void CreateBuffers(Int32 n, [OutAttribute] UInt32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateFramebuffers")] [CLSCompliant(false)] - public static void CreateFramebuffers(Int32 n, [OutAttribute] Int32[] framebuffers) { throw new NotImplementedException(); } + public static void CreateFramebuffers(Int32 n, [OutAttribute] Int32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateFramebuffers")] [CLSCompliant(false)] - public static void CreateFramebuffers(Int32 n, [OutAttribute] out Int32 framebuffers) { throw new NotImplementedException(); } + public static void CreateFramebuffers(Int32 n, [OutAttribute] out Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateFramebuffers")] [CLSCompliant(false)] - public static unsafe void CreateFramebuffers(Int32 n, [OutAttribute] Int32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void CreateFramebuffers(Int32 n, [OutAttribute] Int32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateFramebuffers")] [CLSCompliant(false)] - public static void CreateFramebuffers(Int32 n, [OutAttribute] UInt32[] framebuffers) { throw new NotImplementedException(); } + public static void CreateFramebuffers(Int32 n, [OutAttribute] UInt32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateFramebuffers")] [CLSCompliant(false)] - public static void CreateFramebuffers(Int32 n, [OutAttribute] out UInt32 framebuffers) { throw new NotImplementedException(); } + public static void CreateFramebuffers(Int32 n, [OutAttribute] out UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateFramebuffers")] [CLSCompliant(false)] - public static unsafe void CreateFramebuffers(Int32 n, [OutAttribute] UInt32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void CreateFramebuffers(Int32 n, [OutAttribute] UInt32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Creates a program object /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glCreateProgram")] - public static Int32 CreateProgram() { throw new NotImplementedException(); } + public static Int32 CreateProgram() { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateProgramPipelines")] [CLSCompliant(false)] - public static void CreateProgramPipelines(Int32 n, [OutAttribute] Int32[] pipelines) { throw new NotImplementedException(); } + public static void CreateProgramPipelines(Int32 n, [OutAttribute] Int32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateProgramPipelines")] [CLSCompliant(false)] - public static void CreateProgramPipelines(Int32 n, [OutAttribute] out Int32 pipelines) { throw new NotImplementedException(); } + public static void CreateProgramPipelines(Int32 n, [OutAttribute] out Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateProgramPipelines")] [CLSCompliant(false)] - public static unsafe void CreateProgramPipelines(Int32 n, [OutAttribute] Int32* pipelines) { throw new NotImplementedException(); } + public static unsafe void CreateProgramPipelines(Int32 n, [OutAttribute] Int32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateProgramPipelines")] [CLSCompliant(false)] - public static void CreateProgramPipelines(Int32 n, [OutAttribute] UInt32[] pipelines) { throw new NotImplementedException(); } + public static void CreateProgramPipelines(Int32 n, [OutAttribute] UInt32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateProgramPipelines")] [CLSCompliant(false)] - public static void CreateProgramPipelines(Int32 n, [OutAttribute] out UInt32 pipelines) { throw new NotImplementedException(); } + public static void CreateProgramPipelines(Int32 n, [OutAttribute] out UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateProgramPipelines")] [CLSCompliant(false)] - public static unsafe void CreateProgramPipelines(Int32 n, [OutAttribute] UInt32* pipelines) { throw new NotImplementedException(); } + public static unsafe void CreateProgramPipelines(Int32 n, [OutAttribute] UInt32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33639,7 +33639,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateQueries")] [CLSCompliant(false)] - public static void CreateQueries(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 n, [OutAttribute] Int32[] ids) { throw new NotImplementedException(); } + public static void CreateQueries(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 n, [OutAttribute] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33647,7 +33647,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateQueries")] [CLSCompliant(false)] - public static void CreateQueries(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 n, [OutAttribute] out Int32 ids) { throw new NotImplementedException(); } + public static void CreateQueries(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 n, [OutAttribute] out Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33655,7 +33655,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateQueries")] [CLSCompliant(false)] - public static unsafe void CreateQueries(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 n, [OutAttribute] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void CreateQueries(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 n, [OutAttribute] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33663,7 +33663,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateQueries")] [CLSCompliant(false)] - public static void CreateQueries(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 n, [OutAttribute] UInt32[] ids) { throw new NotImplementedException(); } + public static void CreateQueries(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 n, [OutAttribute] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33671,7 +33671,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateQueries")] [CLSCompliant(false)] - public static void CreateQueries(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 n, [OutAttribute] out UInt32 ids) { throw new NotImplementedException(); } + public static void CreateQueries(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 n, [OutAttribute] out UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33679,91 +33679,91 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateQueries")] [CLSCompliant(false)] - public static unsafe void CreateQueries(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 n, [OutAttribute] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void CreateQueries(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 n, [OutAttribute] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateRenderbuffers")] [CLSCompliant(false)] - public static void CreateRenderbuffers(Int32 n, [OutAttribute] Int32[] renderbuffers) { throw new NotImplementedException(); } + public static void CreateRenderbuffers(Int32 n, [OutAttribute] Int32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateRenderbuffers")] [CLSCompliant(false)] - public static void CreateRenderbuffers(Int32 n, [OutAttribute] out Int32 renderbuffers) { throw new NotImplementedException(); } + public static void CreateRenderbuffers(Int32 n, [OutAttribute] out Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateRenderbuffers")] [CLSCompliant(false)] - public static unsafe void CreateRenderbuffers(Int32 n, [OutAttribute] Int32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void CreateRenderbuffers(Int32 n, [OutAttribute] Int32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateRenderbuffers")] [CLSCompliant(false)] - public static void CreateRenderbuffers(Int32 n, [OutAttribute] UInt32[] renderbuffers) { throw new NotImplementedException(); } + public static void CreateRenderbuffers(Int32 n, [OutAttribute] UInt32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateRenderbuffers")] [CLSCompliant(false)] - public static void CreateRenderbuffers(Int32 n, [OutAttribute] out UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void CreateRenderbuffers(Int32 n, [OutAttribute] out UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateRenderbuffers")] [CLSCompliant(false)] - public static unsafe void CreateRenderbuffers(Int32 n, [OutAttribute] UInt32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void CreateRenderbuffers(Int32 n, [OutAttribute] UInt32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateSamplers")] [CLSCompliant(false)] - public static void CreateSamplers(Int32 n, [OutAttribute] Int32[] samplers) { throw new NotImplementedException(); } + public static void CreateSamplers(Int32 n, [OutAttribute] Int32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateSamplers")] [CLSCompliant(false)] - public static void CreateSamplers(Int32 n, [OutAttribute] out Int32 samplers) { throw new NotImplementedException(); } + public static void CreateSamplers(Int32 n, [OutAttribute] out Int32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateSamplers")] [CLSCompliant(false)] - public static unsafe void CreateSamplers(Int32 n, [OutAttribute] Int32* samplers) { throw new NotImplementedException(); } + public static unsafe void CreateSamplers(Int32 n, [OutAttribute] Int32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateSamplers")] [CLSCompliant(false)] - public static void CreateSamplers(Int32 n, [OutAttribute] UInt32[] samplers) { throw new NotImplementedException(); } + public static void CreateSamplers(Int32 n, [OutAttribute] UInt32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateSamplers")] [CLSCompliant(false)] - public static void CreateSamplers(Int32 n, [OutAttribute] out UInt32 samplers) { throw new NotImplementedException(); } + public static void CreateSamplers(Int32 n, [OutAttribute] out UInt32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateSamplers")] [CLSCompliant(false)] - public static unsafe void CreateSamplers(Int32 n, [OutAttribute] UInt32* samplers) { throw new NotImplementedException(); } + public static unsafe void CreateSamplers(Int32 n, [OutAttribute] UInt32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Creates a shader object @@ -33772,7 +33772,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the type of shader to be created. Must be one of ComputeShader, VertexShader, TessControlShader, TessEvaluationShader, GeometryShader, or FragmentShader. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glCreateShader")] - public static Int32 CreateShader(OpenTK.Graphics.OpenGL.ShaderType type) { throw new NotImplementedException(); } + public static Int32 CreateShader(OpenTK.Graphics.OpenGL.ShaderType type) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Create a stand-alone program from an array of null-terminated source code strings @@ -33787,7 +33787,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array of pointers to source code strings from which to create the program object. /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glCreateShaderProgramv")] - public static Int32 CreateShaderProgram(OpenTK.Graphics.OpenGL.ShaderType type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new NotImplementedException(); } + public static Int32 CreateShaderProgram(OpenTK.Graphics.OpenGL.ShaderType type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33795,7 +33795,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTextures")] [CLSCompliant(false)] - public static void CreateTextures(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [OutAttribute] Int32[] textures) { throw new NotImplementedException(); } + public static void CreateTextures(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [OutAttribute] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33803,7 +33803,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTextures")] [CLSCompliant(false)] - public static void CreateTextures(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [OutAttribute] out Int32 textures) { throw new NotImplementedException(); } + public static void CreateTextures(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [OutAttribute] out Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33811,7 +33811,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTextures")] [CLSCompliant(false)] - public static unsafe void CreateTextures(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [OutAttribute] Int32* textures) { throw new NotImplementedException(); } + public static unsafe void CreateTextures(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [OutAttribute] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33819,7 +33819,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTextures")] [CLSCompliant(false)] - public static void CreateTextures(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [OutAttribute] UInt32[] textures) { throw new NotImplementedException(); } + public static void CreateTextures(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [OutAttribute] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33827,7 +33827,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTextures")] [CLSCompliant(false)] - public static void CreateTextures(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [OutAttribute] out UInt32 textures) { throw new NotImplementedException(); } + public static void CreateTextures(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [OutAttribute] out UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33835,91 +33835,91 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTextures")] [CLSCompliant(false)] - public static unsafe void CreateTextures(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [OutAttribute] UInt32* textures) { throw new NotImplementedException(); } + public static unsafe void CreateTextures(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [OutAttribute] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTransformFeedbacks")] [CLSCompliant(false)] - public static void CreateTransformFeedbacks(Int32 n, [OutAttribute] Int32[] ids) { throw new NotImplementedException(); } + public static void CreateTransformFeedbacks(Int32 n, [OutAttribute] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTransformFeedbacks")] [CLSCompliant(false)] - public static void CreateTransformFeedbacks(Int32 n, [OutAttribute] out Int32 ids) { throw new NotImplementedException(); } + public static void CreateTransformFeedbacks(Int32 n, [OutAttribute] out Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void CreateTransformFeedbacks(Int32 n, [OutAttribute] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void CreateTransformFeedbacks(Int32 n, [OutAttribute] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTransformFeedbacks")] [CLSCompliant(false)] - public static void CreateTransformFeedbacks(Int32 n, [OutAttribute] UInt32[] ids) { throw new NotImplementedException(); } + public static void CreateTransformFeedbacks(Int32 n, [OutAttribute] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTransformFeedbacks")] [CLSCompliant(false)] - public static void CreateTransformFeedbacks(Int32 n, [OutAttribute] out UInt32 ids) { throw new NotImplementedException(); } + public static void CreateTransformFeedbacks(Int32 n, [OutAttribute] out UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void CreateTransformFeedbacks(Int32 n, [OutAttribute] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void CreateTransformFeedbacks(Int32 n, [OutAttribute] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateVertexArrays")] [CLSCompliant(false)] - public static void CreateVertexArrays(Int32 n, [OutAttribute] Int32[] arrays) { throw new NotImplementedException(); } + public static void CreateVertexArrays(Int32 n, [OutAttribute] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateVertexArrays")] [CLSCompliant(false)] - public static void CreateVertexArrays(Int32 n, [OutAttribute] out Int32 arrays) { throw new NotImplementedException(); } + public static void CreateVertexArrays(Int32 n, [OutAttribute] out Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateVertexArrays")] [CLSCompliant(false)] - public static unsafe void CreateVertexArrays(Int32 n, [OutAttribute] Int32* arrays) { throw new NotImplementedException(); } + public static unsafe void CreateVertexArrays(Int32 n, [OutAttribute] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateVertexArrays")] [CLSCompliant(false)] - public static void CreateVertexArrays(Int32 n, [OutAttribute] UInt32[] arrays) { throw new NotImplementedException(); } + public static void CreateVertexArrays(Int32 n, [OutAttribute] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateVertexArrays")] [CLSCompliant(false)] - public static void CreateVertexArrays(Int32 n, [OutAttribute] out UInt32 arrays) { throw new NotImplementedException(); } + public static void CreateVertexArrays(Int32 n, [OutAttribute] out UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateVertexArrays")] [CLSCompliant(false)] - public static unsafe void CreateVertexArrays(Int32 n, [OutAttribute] UInt32* arrays) { throw new NotImplementedException(); } + public static unsafe void CreateVertexArrays(Int32 n, [OutAttribute] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify whether front- or back-facing facets can be culled @@ -33928,7 +33928,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies whether front- or back-facing facets are candidates for culling. Symbolic constants Front, Back, and FrontAndBack are accepted. The initial value is Back. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glCullFace")] - public static void CullFace(OpenTK.Graphics.OpenGL.CullFaceMode mode) { throw new NotImplementedException(); } + public static void CullFace(OpenTK.Graphics.OpenGL.CullFaceMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Specify a callback to receive debugging messages from the GL @@ -33940,7 +33940,7 @@ namespace OpenTK.Graphics.OpenGL /// A user supplied pointer that will be passed on each invocation of callback. /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageCallback")] - public static void DebugMessageCallback(DebugProc callback, IntPtr userParam) { throw new NotImplementedException(); } + public static void DebugMessageCallback(DebugProc callback, IntPtr userParam) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Specify a callback to receive debugging messages from the GL @@ -33955,7 +33955,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Specify a callback to receive debugging messages from the GL @@ -33970,7 +33970,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Specify a callback to receive debugging messages from the GL @@ -33985,7 +33985,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[,,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Specify a callback to receive debugging messages from the GL @@ -33999,7 +33999,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageCallback")] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] ref T1 userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Control the reporting of debug messages in a debug context @@ -34024,7 +34024,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.OpenGL.DebugSourceControl source, OpenTK.Graphics.OpenGL.DebugTypeControl type, OpenTK.Graphics.OpenGL.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL.DebugSourceControl source, OpenTK.Graphics.OpenGL.DebugTypeControl type, OpenTK.Graphics.OpenGL.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Control the reporting of debug messages in a debug context @@ -34049,7 +34049,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.OpenGL.DebugSourceControl source, OpenTK.Graphics.OpenGL.DebugTypeControl type, OpenTK.Graphics.OpenGL.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL.DebugSourceControl source, OpenTK.Graphics.OpenGL.DebugTypeControl type, OpenTK.Graphics.OpenGL.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Control the reporting of debug messages in a debug context @@ -34074,7 +34074,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL.DebugSourceControl source, OpenTK.Graphics.OpenGL.DebugTypeControl type, OpenTK.Graphics.OpenGL.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL.DebugSourceControl source, OpenTK.Graphics.OpenGL.DebugTypeControl type, OpenTK.Graphics.OpenGL.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Control the reporting of debug messages in a debug context @@ -34099,7 +34099,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.OpenGL.DebugSourceControl source, OpenTK.Graphics.OpenGL.DebugTypeControl type, OpenTK.Graphics.OpenGL.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL.DebugSourceControl source, OpenTK.Graphics.OpenGL.DebugTypeControl type, OpenTK.Graphics.OpenGL.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Control the reporting of debug messages in a debug context @@ -34124,7 +34124,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.OpenGL.DebugSourceControl source, OpenTK.Graphics.OpenGL.DebugTypeControl type, OpenTK.Graphics.OpenGL.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL.DebugSourceControl source, OpenTK.Graphics.OpenGL.DebugTypeControl type, OpenTK.Graphics.OpenGL.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Control the reporting of debug messages in a debug context @@ -34149,7 +34149,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL.DebugSourceControl source, OpenTK.Graphics.OpenGL.DebugTypeControl type, OpenTK.Graphics.OpenGL.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL.DebugSourceControl source, OpenTK.Graphics.OpenGL.DebugTypeControl type, OpenTK.Graphics.OpenGL.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Inject an application-supplied message into the debug message queue @@ -34174,7 +34174,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageInsert")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.DebugSourceExternal source, OpenTK.Graphics.OpenGL.DebugType type, Int32 id, OpenTK.Graphics.OpenGL.DebugSeverity severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.DebugSourceExternal source, OpenTK.Graphics.OpenGL.DebugType type, Int32 id, OpenTK.Graphics.OpenGL.DebugSeverity severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Inject an application-supplied message into the debug message queue @@ -34199,7 +34199,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageInsert")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.DebugSourceExternal source, OpenTK.Graphics.OpenGL.DebugType type, UInt32 id, OpenTK.Graphics.OpenGL.DebugSeverity severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.DebugSourceExternal source, OpenTK.Graphics.OpenGL.DebugType type, UInt32 id, OpenTK.Graphics.OpenGL.DebugSeverity severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named buffer objects @@ -34209,7 +34209,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffer([CountAttribute(Parameter = "n")] Int32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffer([CountAttribute(Parameter = "n")] Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named buffer objects @@ -34219,7 +34219,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffer([CountAttribute(Parameter = "n")] UInt32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffer([CountAttribute(Parameter = "n")] UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named buffer objects @@ -34232,7 +34232,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named buffer objects @@ -34245,7 +34245,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named buffer objects @@ -34258,7 +34258,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* buffers) { throw new NotImplementedException(); } + public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named buffer objects @@ -34271,7 +34271,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named buffer objects @@ -34284,7 +34284,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named buffer objects @@ -34297,7 +34297,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* buffers) { throw new NotImplementedException(); } + public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete framebuffer objects @@ -34307,7 +34307,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] Int32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete framebuffer objects @@ -34317,7 +34317,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] UInt32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete framebuffer objects @@ -34330,7 +34330,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete framebuffer objects @@ -34343,7 +34343,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete framebuffer objects @@ -34356,7 +34356,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete framebuffer objects @@ -34369,7 +34369,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete framebuffer objects @@ -34382,7 +34382,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete framebuffer objects @@ -34395,7 +34395,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Delete a contiguous group of display lists @@ -34408,7 +34408,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glDeleteLists")] [CLSCompliant(false)] - public static void DeleteLists(Int32 list, Int32 range) { throw new NotImplementedException(); } + public static void DeleteLists(Int32 list, Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Delete a contiguous group of display lists @@ -34421,7 +34421,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glDeleteLists")] [CLSCompliant(false)] - public static void DeleteLists(UInt32 list, Int32 range) { throw new NotImplementedException(); } + public static void DeleteLists(UInt32 list, Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Deletes a program object @@ -34431,7 +34431,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteProgram")] [CLSCompliant(false)] - public static void DeleteProgram(Int32 program) { throw new NotImplementedException(); } + public static void DeleteProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Deletes a program object @@ -34441,7 +34441,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteProgram")] [CLSCompliant(false)] - public static void DeleteProgram(UInt32 program) { throw new NotImplementedException(); } + public static void DeleteProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Delete program pipeline objects @@ -34451,7 +34451,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glDeleteProgramPipelines")] [CLSCompliant(false)] - public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] Int32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Delete program pipeline objects @@ -34461,7 +34461,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glDeleteProgramPipelines")] [CLSCompliant(false)] - public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] UInt32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Delete program pipeline objects @@ -34474,7 +34474,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glDeleteProgramPipelines")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Delete program pipeline objects @@ -34487,7 +34487,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glDeleteProgramPipelines")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Delete program pipeline objects @@ -34500,7 +34500,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glDeleteProgramPipelines")] [CLSCompliant(false)] - public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32* pipelines) { throw new NotImplementedException(); } + public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Delete program pipeline objects @@ -34513,7 +34513,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glDeleteProgramPipelines")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Delete program pipeline objects @@ -34526,7 +34526,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glDeleteProgramPipelines")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Delete program pipeline objects @@ -34539,7 +34539,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glDeleteProgramPipelines")] [CLSCompliant(false)] - public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new NotImplementedException(); } + public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named query objects @@ -34549,7 +34549,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQuery([CountAttribute(Parameter = "n")] Int32 ids) { throw new NotImplementedException(); } + public static void DeleteQuery([CountAttribute(Parameter = "n")] Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named query objects @@ -34559,7 +34559,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQuery([CountAttribute(Parameter = "n")] UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteQuery([CountAttribute(Parameter = "n")] UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named query objects @@ -34572,7 +34572,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named query objects @@ -34585,7 +34585,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named query objects @@ -34598,7 +34598,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named query objects @@ -34611,7 +34611,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named query objects @@ -34624,7 +34624,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named query objects @@ -34637,7 +34637,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete renderbuffer objects @@ -34647,7 +34647,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] Int32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete renderbuffer objects @@ -34657,7 +34657,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete renderbuffer objects @@ -34670,7 +34670,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete renderbuffer objects @@ -34683,7 +34683,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete renderbuffer objects @@ -34696,7 +34696,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete renderbuffer objects @@ -34709,7 +34709,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete renderbuffer objects @@ -34722,7 +34722,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete renderbuffer objects @@ -34735,7 +34735,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Delete named sampler objects @@ -34745,7 +34745,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static void DeleteSampler([CountAttribute(Parameter = "count")] Int32 samplers) { throw new NotImplementedException(); } + public static void DeleteSampler([CountAttribute(Parameter = "count")] Int32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Delete named sampler objects @@ -34755,7 +34755,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static void DeleteSampler([CountAttribute(Parameter = "count")] UInt32 samplers) { throw new NotImplementedException(); } + public static void DeleteSampler([CountAttribute(Parameter = "count")] UInt32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Delete named sampler objects @@ -34768,7 +34768,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] Int32[] samplers) { throw new NotImplementedException(); } + public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] Int32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Delete named sampler objects @@ -34781,7 +34781,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 samplers) { throw new NotImplementedException(); } + public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Delete named sampler objects @@ -34794,7 +34794,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static unsafe void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] Int32* samplers) { throw new NotImplementedException(); } + public static unsafe void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] Int32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Delete named sampler objects @@ -34807,7 +34807,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] samplers) { throw new NotImplementedException(); } + public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Delete named sampler objects @@ -34820,7 +34820,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 samplers) { throw new NotImplementedException(); } + public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Delete named sampler objects @@ -34833,7 +34833,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static unsafe void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] UInt32* samplers) { throw new NotImplementedException(); } + public static unsafe void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] UInt32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Deletes a shader object @@ -34843,7 +34843,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteShader")] [CLSCompliant(false)] - public static void DeleteShader(Int32 shader) { throw new NotImplementedException(); } + public static void DeleteShader(Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Deletes a shader object @@ -34853,7 +34853,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteShader")] [CLSCompliant(false)] - public static void DeleteShader(UInt32 shader) { throw new NotImplementedException(); } + public static void DeleteShader(UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Delete a sync object @@ -34862,7 +34862,7 @@ namespace OpenTK.Graphics.OpenGL /// The sync object to be deleted. /// [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glDeleteSync")] - public static void DeleteSync(IntPtr sync) { throw new NotImplementedException(); } + public static void DeleteSync(IntPtr sync) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Delete named textures @@ -34872,7 +34872,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTexture([CountAttribute(Parameter = "n")] Int32 textures) { throw new NotImplementedException(); } + public static void DeleteTexture([CountAttribute(Parameter = "n")] Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Delete named textures @@ -34882,7 +34882,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTexture([CountAttribute(Parameter = "n")] UInt32 textures) { throw new NotImplementedException(); } + public static void DeleteTexture([CountAttribute(Parameter = "n")] UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Delete named textures @@ -34895,7 +34895,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Delete named textures @@ -34908,7 +34908,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Delete named textures @@ -34921,7 +34921,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures) { throw new NotImplementedException(); } + public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Delete named textures @@ -34934,7 +34934,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Delete named textures @@ -34947,7 +34947,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Delete named textures @@ -34960,7 +34960,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures) { throw new NotImplementedException(); } + public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Delete transform feedback objects @@ -34970,7 +34970,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static void DeleteTransformFeedback([CountAttribute(Parameter = "n")] Int32 ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedback([CountAttribute(Parameter = "n")] Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Delete transform feedback objects @@ -34980,7 +34980,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static void DeleteTransformFeedback([CountAttribute(Parameter = "n")] UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedback([CountAttribute(Parameter = "n")] UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Delete transform feedback objects @@ -34993,7 +34993,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Delete transform feedback objects @@ -35006,7 +35006,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Delete transform feedback objects @@ -35019,7 +35019,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Delete transform feedback objects @@ -35032,7 +35032,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Delete transform feedback objects @@ -35045,7 +35045,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Delete transform feedback objects @@ -35058,7 +35058,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Delete vertex array objects @@ -35068,7 +35068,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static void DeleteVertexArray([CountAttribute(Parameter = "n")] Int32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArray([CountAttribute(Parameter = "n")] Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Delete vertex array objects @@ -35078,7 +35078,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static void DeleteVertexArray([CountAttribute(Parameter = "n")] UInt32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArray([CountAttribute(Parameter = "n")] UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Delete vertex array objects @@ -35091,7 +35091,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32[] arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Delete vertex array objects @@ -35104,7 +35104,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Delete vertex array objects @@ -35117,7 +35117,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32* arrays) { throw new NotImplementedException(); } + public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Delete vertex array objects @@ -35130,7 +35130,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Delete vertex array objects @@ -35143,7 +35143,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Delete vertex array objects @@ -35156,7 +35156,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays) { throw new NotImplementedException(); } + public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify the value used for depth buffer comparisons @@ -35165,7 +35165,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the depth comparison function. Symbolic constants Never, Less, Equal, Lequal, Greater, Notequal, Gequal, and Always are accepted. The initial value is Less. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glDepthFunc")] - public static void DepthFunc(OpenTK.Graphics.OpenGL.DepthFunction func) { throw new NotImplementedException(); } + public static void DepthFunc(OpenTK.Graphics.OpenGL.DepthFunction func) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Enable or disable writing into the depth buffer @@ -35174,7 +35174,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies whether the depth buffer is enabled for writing. If flag is False, depth buffer writing is disabled. Otherwise, it is enabled. Initially, depth buffer writing is enabled. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glDepthMask")] - public static void DepthMask(bool flag) { throw new NotImplementedException(); } + public static void DepthMask(bool flag) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify mapping of depth values from normalized device coordinates to window coordinates @@ -35186,7 +35186,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the mapping of the far clipping plane to window coordinates. The initial value is 1. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glDepthRange")] - public static void DepthRange(Double near, Double far) { throw new NotImplementedException(); } + public static void DepthRange(Double near, Double far) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -35202,7 +35202,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangeArrayv")] [CLSCompliant(false)] - public static void DepthRangeArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Double[] v) { throw new NotImplementedException(); } + public static void DepthRangeArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -35218,7 +35218,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangeArrayv")] [CLSCompliant(false)] - public static void DepthRangeArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Double v) { throw new NotImplementedException(); } + public static void DepthRangeArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -35234,7 +35234,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangeArrayv")] [CLSCompliant(false)] - public static unsafe void DepthRangeArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Double* v) { throw new NotImplementedException(); } + public static unsafe void DepthRangeArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -35250,7 +35250,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangeArrayv")] [CLSCompliant(false)] - public static void DepthRangeArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Double[] v) { throw new NotImplementedException(); } + public static void DepthRangeArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -35266,7 +35266,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangeArrayv")] [CLSCompliant(false)] - public static void DepthRangeArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Double v) { throw new NotImplementedException(); } + public static void DepthRangeArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -35282,7 +35282,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangeArrayv")] [CLSCompliant(false)] - public static unsafe void DepthRangeArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Double* v) { throw new NotImplementedException(); } + public static unsafe void DepthRangeArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Specify mapping of depth values from normalized device coordinates to window coordinates @@ -35294,7 +35294,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the mapping of the far clipping plane to window coordinates. The initial value is 1. /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangef")] - public static void DepthRange(Single n, Single f) { throw new NotImplementedException(); } + public static void DepthRange(Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified viewport @@ -35310,7 +35310,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangeIndexed")] [CLSCompliant(false)] - public static void DepthRangeIndexed(Int32 index, Double n, Double f) { throw new NotImplementedException(); } + public static void DepthRangeIndexed(Int32 index, Double n, Double f) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified viewport @@ -35326,7 +35326,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangeIndexed")] [CLSCompliant(false)] - public static void DepthRangeIndexed(UInt32 index, Double n, Double f) { throw new NotImplementedException(); } + public static void DepthRangeIndexed(UInt32 index, Double n, Double f) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Detaches a shader object from a program object to which it is attached @@ -35339,7 +35339,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDetachShader")] [CLSCompliant(false)] - public static void DetachShader(Int32 program, Int32 shader) { throw new NotImplementedException(); } + public static void DetachShader(Int32 program, Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Detaches a shader object from a program object to which it is attached @@ -35352,57 +35352,57 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDetachShader")] [CLSCompliant(false)] - public static void DetachShader(UInt32 program, UInt32 shader) { throw new NotImplementedException(); } + public static void DetachShader(UInt32 program, UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glDisable")] - public static void Disable(OpenTK.Graphics.OpenGL.EnableCap cap) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.OpenGL.EnableCap cap) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDisableClientState")] - public static void DisableClientState(OpenTK.Graphics.OpenGL.ArrayCap array) { throw new NotImplementedException(); } + public static void DisableClientState(OpenTK.Graphics.OpenGL.ArrayCap array) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glDisablei")] [CLSCompliant(false)] - public static void Disable(OpenTK.Graphics.OpenGL.IndexedEnableCap target, Int32 index) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.OpenGL.IndexedEnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glDisablei")] [CLSCompliant(false)] - public static void Disable(OpenTK.Graphics.OpenGL.IndexedEnableCap target, UInt32 index) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.OpenGL.IndexedEnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glDisableVertexArrayAttrib")] [CLSCompliant(false)] - public static void DisableVertexArrayAttrib(Int32 vaobj, Int32 index) { throw new NotImplementedException(); } + public static void DisableVertexArrayAttrib(Int32 vaobj, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glDisableVertexArrayAttrib")] [CLSCompliant(false)] - public static void DisableVertexArrayAttrib(UInt32 vaobj, UInt32 index) { throw new NotImplementedException(); } + public static void DisableVertexArrayAttrib(UInt32 vaobj, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDisableVertexAttribArray")] [CLSCompliant(false)] - public static void DisableVertexAttribArray(Int32 index) { throw new NotImplementedException(); } + public static void DisableVertexAttribArray(Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDisableVertexAttribArray")] [CLSCompliant(false)] - public static void DisableVertexAttribArray(UInt32 index) { throw new NotImplementedException(); } + public static void DisableVertexAttribArray(UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_compute_shader|VERSION_4_3] /// Launch one or more compute work groups @@ -35418,7 +35418,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_compute_shader|VERSION_4_3", Version = "4.3", EntryPoint = "glDispatchCompute")] [CLSCompliant(false)] - public static void DispatchCompute(Int32 num_groups_x, Int32 num_groups_y, Int32 num_groups_z) { throw new NotImplementedException(); } + public static void DispatchCompute(Int32 num_groups_x, Int32 num_groups_y, Int32 num_groups_z) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_compute_shader|VERSION_4_3] /// Launch one or more compute work groups @@ -35434,7 +35434,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_compute_shader|VERSION_4_3", Version = "4.3", EntryPoint = "glDispatchCompute")] [CLSCompliant(false)] - public static void DispatchCompute(UInt32 num_groups_x, UInt32 num_groups_y, UInt32 num_groups_z) { throw new NotImplementedException(); } + public static void DispatchCompute(UInt32 num_groups_x, UInt32 num_groups_y, UInt32 num_groups_z) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_compute_shader|VERSION_4_3] /// Launch one or more compute work groups using parameters stored in a buffer @@ -35443,7 +35443,7 @@ namespace OpenTK.Graphics.OpenGL /// The offset into the buffer object currently bound to the DispatchIndirectBuffer buffer target at which the dispatch parameters are stored. /// [AutoGenerated(Category = "ARB_compute_shader|VERSION_4_3", Version = "4.3", EntryPoint = "glDispatchComputeIndirect")] - public static void DispatchComputeIndirect(IntPtr indirect) { throw new NotImplementedException(); } + public static void DispatchComputeIndirect(IntPtr indirect) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -35459,7 +35459,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDrawArrays")] - public static void DrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 first, Int32 count) { throw new NotImplementedException(); } + public static void DrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -35474,7 +35474,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the number of indices to be rendered. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDrawArrays")] - public static void DrawArrays(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 first, Int32 count) { throw new NotImplementedException(); } + public static void DrawArrays(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render primitives from array data, taking parameters from memory @@ -35487,7 +35487,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawArraysIndirect")] - public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL.ArbDrawIndirect mode, IntPtr indirect) { throw new NotImplementedException(); } + public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL.ArbDrawIndirect mode, IntPtr indirect) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render primitives from array data, taking parameters from memory @@ -35503,7 +35503,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL.ArbDrawIndirect mode, [InAttribute, OutAttribute] T1[] indirect) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render primitives from array data, taking parameters from memory @@ -35519,7 +35519,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL.ArbDrawIndirect mode, [InAttribute, OutAttribute] T1[,] indirect) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render primitives from array data, taking parameters from memory @@ -35535,7 +35535,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL.ArbDrawIndirect mode, [InAttribute, OutAttribute] T1[,,] indirect) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render primitives from array data, taking parameters from memory @@ -35550,7 +35550,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawArraysIndirect")] public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL.ArbDrawIndirect mode, [InAttribute, OutAttribute] ref T1 indirect) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render primitives from array data, taking parameters from memory @@ -35562,7 +35562,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of a structure containing the draw parameters. /// [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawArraysIndirect")] - public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, IntPtr indirect) { throw new NotImplementedException(); } + public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, IntPtr indirect) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render primitives from array data, taking parameters from memory @@ -35577,7 +35577,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[] indirect) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render primitives from array data, taking parameters from memory @@ -35592,7 +35592,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[,] indirect) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render primitives from array data, taking parameters from memory @@ -35607,7 +35607,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[,,] indirect) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render primitives from array data, taking parameters from memory @@ -35621,7 +35621,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawArraysIndirect")] public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] ref T1 indirect) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Draw multiple instances of a range of elements @@ -35640,7 +35640,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glDrawArraysInstanced")] - public static void DrawArraysInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 first, Int32 count, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 first, Int32 count, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Draw multiple instances of a range of elements @@ -35658,7 +35658,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glDrawArraysInstanced")] - public static void DrawArraysInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a range of elements with offset applied to instanced attributes @@ -35680,7 +35680,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawArraysInstancedBaseInstance")] [CLSCompliant(false)] - public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a range of elements with offset applied to instanced attributes @@ -35702,7 +35702,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawArraysInstancedBaseInstance")] [CLSCompliant(false)] - public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify which color buffers are to be drawn into @@ -35711,7 +35711,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies up to four color buffers to be drawn into. Symbolic constants None, FrontLeft, FrontRight, BackLeft, BackRight, Front, Back, Left, Right, and FrontAndBack are accepted. The initial value is Front for single-buffered contexts, and Back for double-buffered contexts. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glDrawBuffer")] - public static void DrawBuffer(OpenTK.Graphics.OpenGL.DrawBufferMode buf) { throw new NotImplementedException(); } + public static void DrawBuffer(OpenTK.Graphics.OpenGL.DrawBufferMode buf) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies a list of color buffers to be drawn into @@ -35724,7 +35724,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDrawBuffers")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL.DrawBuffersEnum[] bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL.DrawBuffersEnum[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies a list of color buffers to be drawn into @@ -35737,7 +35737,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDrawBuffers")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.OpenGL.DrawBuffersEnum bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.OpenGL.DrawBuffersEnum bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies a list of color buffers to be drawn into @@ -35750,7 +35750,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDrawBuffers")] [CLSCompliant(false)] - public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL.DrawBuffersEnum* bufs) { throw new NotImplementedException(); } + public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL.DrawBuffersEnum* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -35768,7 +35768,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the location where the indices are stored. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDrawElements")] - public static void DrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] Int32 indices) { throw new NotImplementedException(); } + public static void DrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] Int32 indices) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -35787,7 +35787,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDrawElements")] - public static void DrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -35809,7 +35809,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -35831,7 +35831,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -35853,7 +35853,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -35874,7 +35874,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDrawElements")] public static void DrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -35892,7 +35892,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the location where the indices are stored. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDrawElements")] - public static void DrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] Int32 indices) { throw new NotImplementedException(); } + public static void DrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] Int32 indices) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -35910,7 +35910,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the location where the indices are stored. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDrawElements")] - public static void DrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -35931,7 +35931,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -35952,7 +35952,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -35973,7 +35973,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -35993,7 +35993,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDrawElements")] public static void DrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -36015,7 +36015,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawElementsBaseVertex")] - public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -36040,7 +36040,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -36065,7 +36065,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -36090,7 +36090,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -36114,7 +36114,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawElementsBaseVertex")] public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -36135,7 +36135,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawElementsBaseVertex")] - public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -36159,7 +36159,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -36183,7 +36183,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -36207,7 +36207,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -36230,7 +36230,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawElementsBaseVertex")] public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render indexed primitives from array data, taking parameters from memory @@ -36246,7 +36246,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawElementsIndirect")] - public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL.ArbDrawIndirect mode, OpenTK.Graphics.OpenGL.ArbDrawIndirect type, IntPtr indirect) { throw new NotImplementedException(); } + public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL.ArbDrawIndirect mode, OpenTK.Graphics.OpenGL.ArbDrawIndirect type, IntPtr indirect) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render indexed primitives from array data, taking parameters from memory @@ -36265,7 +36265,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL.ArbDrawIndirect mode, OpenTK.Graphics.OpenGL.ArbDrawIndirect type, [InAttribute, OutAttribute] T2[] indirect) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render indexed primitives from array data, taking parameters from memory @@ -36284,7 +36284,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL.ArbDrawIndirect mode, OpenTK.Graphics.OpenGL.ArbDrawIndirect type, [InAttribute, OutAttribute] T2[,] indirect) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render indexed primitives from array data, taking parameters from memory @@ -36303,7 +36303,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL.ArbDrawIndirect mode, OpenTK.Graphics.OpenGL.ArbDrawIndirect type, [InAttribute, OutAttribute] T2[,,] indirect) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render indexed primitives from array data, taking parameters from memory @@ -36321,7 +36321,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawElementsIndirect")] public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL.ArbDrawIndirect mode, OpenTK.Graphics.OpenGL.ArbDrawIndirect type, [InAttribute, OutAttribute] ref T2 indirect) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render indexed primitives from array data, taking parameters from memory @@ -36336,7 +36336,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of a structure containing the draw parameters. /// [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawElementsIndirect")] - public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.All type, IntPtr indirect) { throw new NotImplementedException(); } + public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.All type, IntPtr indirect) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render indexed primitives from array data, taking parameters from memory @@ -36354,7 +36354,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T2[] indirect) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render indexed primitives from array data, taking parameters from memory @@ -36372,7 +36372,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T2[,] indirect) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render indexed primitives from array data, taking parameters from memory @@ -36390,7 +36390,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T2[,,] indirect) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render indexed primitives from array data, taking parameters from memory @@ -36407,7 +36407,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawElementsIndirect")] public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] ref T2 indirect) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Draw multiple instances of a set of elements @@ -36429,7 +36429,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glDrawElementsInstanced")] - public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Draw multiple instances of a set of elements @@ -36454,7 +36454,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Draw multiple instances of a set of elements @@ -36479,7 +36479,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Draw multiple instances of a set of elements @@ -36504,7 +36504,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Draw multiple instances of a set of elements @@ -36528,7 +36528,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glDrawElementsInstanced")] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Draw multiple instances of a set of elements @@ -36549,7 +36549,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glDrawElementsInstanced")] - public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Draw multiple instances of a set of elements @@ -36573,7 +36573,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Draw multiple instances of a set of elements @@ -36597,7 +36597,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Draw multiple instances of a set of elements @@ -36621,7 +36621,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Draw multiple instances of a set of elements @@ -36644,7 +36644,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glDrawElementsInstanced")] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -36669,7 +36669,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseInstance")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -36694,7 +36694,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseInstance")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -36721,7 +36721,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -36748,7 +36748,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -36775,7 +36775,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -36802,7 +36802,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -36829,7 +36829,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -36856,7 +36856,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -36883,7 +36883,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -36910,7 +36910,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -36935,7 +36935,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawElementsInstancedBaseVertex")] - public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -36963,7 +36963,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -36991,7 +36991,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -37019,7 +37019,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -37046,7 +37046,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawElementsInstancedBaseVertex")] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -37070,7 +37070,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawElementsInstancedBaseVertex")] - public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -37097,7 +37097,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -37124,7 +37124,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -37151,7 +37151,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -37177,7 +37177,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawElementsInstancedBaseVertex")] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -37205,7 +37205,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstance")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -37233,7 +37233,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstance")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -37263,7 +37263,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -37293,7 +37293,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -37323,7 +37323,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -37353,7 +37353,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -37383,7 +37383,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -37413,7 +37413,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -37443,7 +37443,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -37473,7 +37473,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Write a block of pixels to the frame buffer @@ -37494,7 +37494,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the pixel data. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glDrawPixels")] - public static void DrawPixels(Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void DrawPixels(Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Write a block of pixels to the frame buffer @@ -37518,7 +37518,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawPixels(Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T4[] pixels) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Write a block of pixels to the frame buffer @@ -37542,7 +37542,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawPixels(Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T4[,] pixels) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Write a block of pixels to the frame buffer @@ -37566,7 +37566,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawPixels(Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T4[,,] pixels) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Write a block of pixels to the frame buffer @@ -37589,7 +37589,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glDrawPixels")] public static void DrawPixels(Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T4 pixels) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -37615,7 +37615,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glDrawRangeElements")] [CLSCompliant(false)] - public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -37643,7 +37643,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -37671,7 +37671,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -37699,7 +37699,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -37727,7 +37727,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -37753,7 +37753,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glDrawRangeElements")] [CLSCompliant(false)] - public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -37781,7 +37781,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -37809,7 +37809,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -37837,7 +37837,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -37865,7 +37865,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -37890,7 +37890,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glDrawRangeElements")] [CLSCompliant(false)] - public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -37917,7 +37917,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -37944,7 +37944,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -37971,7 +37971,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -37998,7 +37998,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -38023,7 +38023,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glDrawRangeElements")] [CLSCompliant(false)] - public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -38050,7 +38050,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -38077,7 +38077,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -38104,7 +38104,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -38131,7 +38131,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -38160,7 +38160,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawRangeElementsBaseVertex")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -38191,7 +38191,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -38222,7 +38222,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -38253,7 +38253,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -38284,7 +38284,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -38313,7 +38313,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawRangeElementsBaseVertex")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -38344,7 +38344,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -38375,7 +38375,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -38406,7 +38406,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -38437,7 +38437,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -38465,7 +38465,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawRangeElementsBaseVertex")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -38495,7 +38495,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -38525,7 +38525,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -38555,7 +38555,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -38585,7 +38585,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -38613,7 +38613,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawRangeElementsBaseVertex")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -38643,7 +38643,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -38673,7 +38673,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -38703,7 +38703,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -38733,7 +38733,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Render primitives using a count derived from a transform feedback object @@ -38747,7 +38747,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawTransformFeedback")] [CLSCompliant(false)] - public static void DrawTransformFeedback(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 id) { throw new NotImplementedException(); } + public static void DrawTransformFeedback(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Render primitives using a count derived from a transform feedback object @@ -38761,7 +38761,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawTransformFeedback")] [CLSCompliant(false)] - public static void DrawTransformFeedback(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 id) { throw new NotImplementedException(); } + public static void DrawTransformFeedback(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Render primitives using a count derived from a transform feedback object @@ -38774,7 +38774,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawTransformFeedback")] [CLSCompliant(false)] - public static void DrawTransformFeedback(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 id) { throw new NotImplementedException(); } + public static void DrawTransformFeedback(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Render primitives using a count derived from a transform feedback object @@ -38787,7 +38787,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawTransformFeedback")] [CLSCompliant(false)] - public static void DrawTransformFeedback(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 id) { throw new NotImplementedException(); } + public static void DrawTransformFeedback(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_transform_feedback_instanced|VERSION_4_2] /// Render multiple instances of primitives using a count derived from a transform feedback object @@ -38803,7 +38803,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transform_feedback_instanced|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawTransformFeedbackInstanced")] [CLSCompliant(false)] - public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 id, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 id, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_transform_feedback_instanced|VERSION_4_2] /// Render multiple instances of primitives using a count derived from a transform feedback object @@ -38819,7 +38819,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transform_feedback_instanced|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawTransformFeedbackInstanced")] [CLSCompliant(false)] - public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 id, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 id, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Render primitives using a count derived from a specifed stream of a transform feedback object @@ -38836,7 +38836,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawTransformFeedbackStream")] [CLSCompliant(false)] - public static void DrawTransformFeedbackStream(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 id, Int32 stream) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackStream(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 id, Int32 stream) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Render primitives using a count derived from a specifed stream of a transform feedback object @@ -38853,7 +38853,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawTransformFeedbackStream")] [CLSCompliant(false)] - public static void DrawTransformFeedbackStream(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 id, UInt32 stream) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackStream(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 id, UInt32 stream) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Render primitives using a count derived from a specifed stream of a transform feedback object @@ -38869,7 +38869,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawTransformFeedbackStream")] [CLSCompliant(false)] - public static void DrawTransformFeedbackStream(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 id, Int32 stream) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackStream(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 id, Int32 stream) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Render primitives using a count derived from a specifed stream of a transform feedback object @@ -38885,7 +38885,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawTransformFeedbackStream")] [CLSCompliant(false)] - public static void DrawTransformFeedbackStream(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 id, UInt32 stream) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackStream(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 id, UInt32 stream) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_transform_feedback_instanced|VERSION_4_2] /// Render multiple instances of primitives using a count derived from a specifed stream of a transform feedback object @@ -38904,7 +38904,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transform_feedback_instanced|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawTransformFeedbackStreamInstanced")] [CLSCompliant(false)] - public static void DrawTransformFeedbackStreamInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 id, Int32 stream, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackStreamInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 id, Int32 stream, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_transform_feedback_instanced|VERSION_4_2] /// Render multiple instances of primitives using a count derived from a specifed stream of a transform feedback object @@ -38923,7 +38923,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transform_feedback_instanced|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawTransformFeedbackStreamInstanced")] [CLSCompliant(false)] - public static void DrawTransformFeedbackStreamInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 id, UInt32 stream, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackStreamInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 id, UInt32 stream, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Flag edges as either boundary or nonboundary @@ -38932,7 +38932,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the current edge flag value, either True or False. The initial value is True. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEdgeFlag")] - public static void EdgeFlag(bool flag) { throw new NotImplementedException(); } + public static void EdgeFlag(bool flag) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of edge flags @@ -38944,7 +38944,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the first edge flag in the array. The initial value is 0. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glEdgeFlagPointer")] - public static void EdgeFlagPointer(Int32 stride, [CountAttribute(Computed = "stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void EdgeFlagPointer(Int32 stride, [CountAttribute(Computed = "stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of edge flags @@ -38959,7 +38959,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void EdgeFlagPointer(Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "stride")] T1[] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of edge flags @@ -38974,7 +38974,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void EdgeFlagPointer(Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "stride")] T1[,] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of edge flags @@ -38989,7 +38989,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void EdgeFlagPointer(Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "stride")] T1[,,] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of edge flags @@ -39003,7 +39003,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glEdgeFlagPointer")] public static void EdgeFlagPointer(Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "stride")] ref T1 pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Flag edges as either boundary or nonboundary @@ -39014,7 +39014,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ref overload instead")] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEdgeFlagv")] [CLSCompliant(false)] - public static void EdgeFlag([CountAttribute(Count = 1)] bool[] flag) { throw new NotImplementedException(); } + public static void EdgeFlag([CountAttribute(Count = 1)] bool[] flag) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Flag edges as either boundary or nonboundary @@ -39025,7 +39025,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ref overload instead")] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEdgeFlagv")] [CLSCompliant(false)] - public static unsafe void EdgeFlag([CountAttribute(Count = 1)] bool* flag) { throw new NotImplementedException(); } + public static unsafe void EdgeFlag([CountAttribute(Count = 1)] bool* flag) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Enable or disable server-side GL capabilities @@ -39034,7 +39034,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a symbolic constant indicating a GL capability. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEnable")] - public static void Enable(OpenTK.Graphics.OpenGL.EnableCap cap) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.OpenGL.EnableCap cap) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Enable or disable client-side capability @@ -39043,7 +39043,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the capability to enable. Symbolic constants ColorArray, EdgeFlagArray, FogCoordArray, IndexArray, NormalArray, SecondaryColorArray, TextureCoordArray, and VertexArray are accepted. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glEnableClientState")] - public static void EnableClientState(OpenTK.Graphics.OpenGL.ArrayCap array) { throw new NotImplementedException(); } + public static void EnableClientState(OpenTK.Graphics.OpenGL.ArrayCap array) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Enable or disable server-side GL capabilities @@ -39056,7 +39056,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glEnablei")] [CLSCompliant(false)] - public static void Enable(OpenTK.Graphics.OpenGL.IndexedEnableCap target, Int32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.OpenGL.IndexedEnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Enable or disable server-side GL capabilities @@ -39069,21 +39069,21 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glEnablei")] [CLSCompliant(false)] - public static void Enable(OpenTK.Graphics.OpenGL.IndexedEnableCap target, UInt32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.OpenGL.IndexedEnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glEnableVertexArrayAttrib")] [CLSCompliant(false)] - public static void EnableVertexArrayAttrib(Int32 vaobj, Int32 index) { throw new NotImplementedException(); } + public static void EnableVertexArrayAttrib(Int32 vaobj, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glEnableVertexArrayAttrib")] [CLSCompliant(false)] - public static void EnableVertexArrayAttrib(UInt32 vaobj, UInt32 index) { throw new NotImplementedException(); } + public static void EnableVertexArrayAttrib(UInt32 vaobj, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Enable or disable a generic vertex attribute array @@ -39093,7 +39093,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glEnableVertexAttribArray")] [CLSCompliant(false)] - public static void EnableVertexAttribArray(Int32 index) { throw new NotImplementedException(); } + public static void EnableVertexAttribArray(Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Enable or disable a generic vertex attribute array @@ -39103,42 +39103,42 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glEnableVertexAttribArray")] [CLSCompliant(false)] - public static void EnableVertexAttribArray(UInt32 index) { throw new NotImplementedException(); } + public static void EnableVertexAttribArray(UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEnd")] - public static void End() { throw new NotImplementedException(); } + public static void End() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glEndConditionalRender")] - public static void EndConditionalRender() { throw new NotImplementedException(); } + public static void EndConditionalRender() { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEndList")] - public static void EndList() { throw new NotImplementedException(); } + public static void EndList() { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glEndQuery")] - public static void EndQuery(OpenTK.Graphics.OpenGL.QueryTarget target) { throw new NotImplementedException(); } + public static void EndQuery(OpenTK.Graphics.OpenGL.QueryTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// /// [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glEndQueryIndexed")] [CLSCompliant(false)] - public static void EndQueryIndexed(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 index) { throw new NotImplementedException(); } + public static void EndQueryIndexed(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// /// [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glEndQueryIndexed")] [CLSCompliant(false)] - public static void EndQueryIndexed(OpenTK.Graphics.OpenGL.QueryTarget target, UInt32 index) { throw new NotImplementedException(); } + public static void EndQueryIndexed(OpenTK.Graphics.OpenGL.QueryTarget target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glEndTransformFeedback")] - public static void EndTransformFeedback() { throw new NotImplementedException(); } + public static void EndTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Evaluate enabled one- and two-dimensional maps @@ -39147,7 +39147,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a value that is the domain coordinate to the basis function defined in a previous glMap1 or glMap2 command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEvalCoord1d")] - public static void EvalCoord1(Double u) { throw new NotImplementedException(); } + public static void EvalCoord1(Double u) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Evaluate enabled one- and two-dimensional maps @@ -39157,7 +39157,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEvalCoord1dv")] [CLSCompliant(false)] - public static unsafe void EvalCoord1([CountAttribute(Count = 1)] Double* u) { throw new NotImplementedException(); } + public static unsafe void EvalCoord1([CountAttribute(Count = 1)] Double* u) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Evaluate enabled one- and two-dimensional maps @@ -39166,7 +39166,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a value that is the domain coordinate to the basis function defined in a previous glMap1 or glMap2 command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEvalCoord1f")] - public static void EvalCoord1(Single u) { throw new NotImplementedException(); } + public static void EvalCoord1(Single u) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Evaluate enabled one- and two-dimensional maps @@ -39176,7 +39176,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEvalCoord1fv")] [CLSCompliant(false)] - public static unsafe void EvalCoord1([CountAttribute(Count = 1)] Single* u) { throw new NotImplementedException(); } + public static unsafe void EvalCoord1([CountAttribute(Count = 1)] Single* u) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Evaluate enabled one- and two-dimensional maps @@ -39188,7 +39188,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a value that is the domain coordinate to the basis function defined in a previous glMap2 command. This argument is not present in a glEvalCoord1 command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEvalCoord2d")] - public static void EvalCoord2(Double u, Double v) { throw new NotImplementedException(); } + public static void EvalCoord2(Double u, Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Evaluate enabled one- and two-dimensional maps @@ -39198,7 +39198,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEvalCoord2dv")] [CLSCompliant(false)] - public static void EvalCoord2([CountAttribute(Count = 2)] Double[] u) { throw new NotImplementedException(); } + public static void EvalCoord2([CountAttribute(Count = 2)] Double[] u) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Evaluate enabled one- and two-dimensional maps @@ -39208,7 +39208,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEvalCoord2dv")] [CLSCompliant(false)] - public static void EvalCoord2([CountAttribute(Count = 2)] ref Double u) { throw new NotImplementedException(); } + public static void EvalCoord2([CountAttribute(Count = 2)] ref Double u) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Evaluate enabled one- and two-dimensional maps @@ -39218,7 +39218,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEvalCoord2dv")] [CLSCompliant(false)] - public static unsafe void EvalCoord2([CountAttribute(Count = 2)] Double* u) { throw new NotImplementedException(); } + public static unsafe void EvalCoord2([CountAttribute(Count = 2)] Double* u) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Evaluate enabled one- and two-dimensional maps @@ -39230,7 +39230,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a value that is the domain coordinate to the basis function defined in a previous glMap2 command. This argument is not present in a glEvalCoord1 command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEvalCoord2f")] - public static void EvalCoord2(Single u, Single v) { throw new NotImplementedException(); } + public static void EvalCoord2(Single u, Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Evaluate enabled one- and two-dimensional maps @@ -39240,7 +39240,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEvalCoord2fv")] [CLSCompliant(false)] - public static void EvalCoord2([CountAttribute(Count = 2)] Single[] u) { throw new NotImplementedException(); } + public static void EvalCoord2([CountAttribute(Count = 2)] Single[] u) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Evaluate enabled one- and two-dimensional maps @@ -39250,7 +39250,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEvalCoord2fv")] [CLSCompliant(false)] - public static void EvalCoord2([CountAttribute(Count = 2)] ref Single u) { throw new NotImplementedException(); } + public static void EvalCoord2([CountAttribute(Count = 2)] ref Single u) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Evaluate enabled one- and two-dimensional maps @@ -39260,7 +39260,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEvalCoord2fv")] [CLSCompliant(false)] - public static unsafe void EvalCoord2([CountAttribute(Count = 2)] Single* u) { throw new NotImplementedException(); } + public static unsafe void EvalCoord2([CountAttribute(Count = 2)] Single* u) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Compute a one- or two-dimensional grid of points or lines @@ -39275,7 +39275,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the first and last integer values for grid domain variable . /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEvalMesh1")] - public static void EvalMesh1(OpenTK.Graphics.OpenGL.MeshMode1 mode, Int32 i1, Int32 i2) { throw new NotImplementedException(); } + public static void EvalMesh1(OpenTK.Graphics.OpenGL.MeshMode1 mode, Int32 i1, Int32 i2) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Compute a one- or two-dimensional grid of points or lines @@ -39292,7 +39292,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEvalMesh2")] - public static void EvalMesh2(OpenTK.Graphics.OpenGL.MeshMode2 mode, Int32 i1, Int32 i2, Int32 j1, Int32 j2) { throw new NotImplementedException(); } + public static void EvalMesh2(OpenTK.Graphics.OpenGL.MeshMode2 mode, Int32 i1, Int32 i2, Int32 j1, Int32 j2) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Generate and evaluate a single point in a mesh @@ -39301,7 +39301,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the integer value for grid domain variable . /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEvalPoint1")] - public static void EvalPoint1(Int32 i) { throw new NotImplementedException(); } + public static void EvalPoint1(Int32 i) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Generate and evaluate a single point in a mesh @@ -39313,7 +39313,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the integer value for grid domain variable (glEvalPoint2 only). /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEvalPoint2")] - public static void EvalPoint2(Int32 i, Int32 j) { throw new NotImplementedException(); } + public static void EvalPoint2(Int32 i, Int32 j) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Controls feedback mode @@ -39329,7 +39329,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glFeedbackBuffer")] [CLSCompliant(false)] - public static void FeedbackBuffer(Int32 size, OpenTK.Graphics.OpenGL.FeedbackType type, [OutAttribute, CountAttribute(Parameter = "size")] Single[] buffer) { throw new NotImplementedException(); } + public static void FeedbackBuffer(Int32 size, OpenTK.Graphics.OpenGL.FeedbackType type, [OutAttribute, CountAttribute(Parameter = "size")] Single[] buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Controls feedback mode @@ -39345,7 +39345,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glFeedbackBuffer")] [CLSCompliant(false)] - public static void FeedbackBuffer(Int32 size, OpenTK.Graphics.OpenGL.FeedbackType type, [OutAttribute, CountAttribute(Parameter = "size")] out Single buffer) { throw new NotImplementedException(); } + public static void FeedbackBuffer(Int32 size, OpenTK.Graphics.OpenGL.FeedbackType type, [OutAttribute, CountAttribute(Parameter = "size")] out Single buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Controls feedback mode @@ -39361,7 +39361,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glFeedbackBuffer")] [CLSCompliant(false)] - public static unsafe void FeedbackBuffer(Int32 size, OpenTK.Graphics.OpenGL.FeedbackType type, [OutAttribute, CountAttribute(Parameter = "size")] Single* buffer) { throw new NotImplementedException(); } + public static unsafe void FeedbackBuffer(Int32 size, OpenTK.Graphics.OpenGL.FeedbackType type, [OutAttribute, CountAttribute(Parameter = "size")] Single* buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Create a new sync object and insert it into the GL command stream @@ -39375,7 +39375,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SyncCondition overload instead")] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glFenceSync")] [CLSCompliant(false)] - public static IntPtr FenceSync(OpenTK.Graphics.OpenGL.ArbSync condition, Int32 flags) { throw new NotImplementedException(); } + public static IntPtr FenceSync(OpenTK.Graphics.OpenGL.ArbSync condition, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Create a new sync object and insert it into the GL command stream @@ -39389,7 +39389,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SyncCondition overload instead")] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glFenceSync")] [CLSCompliant(false)] - public static IntPtr FenceSync(OpenTK.Graphics.OpenGL.ArbSync condition, UInt32 flags) { throw new NotImplementedException(); } + public static IntPtr FenceSync(OpenTK.Graphics.OpenGL.ArbSync condition, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Create a new sync object and insert it into the GL command stream @@ -39401,19 +39401,19 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a bitwise combination of flags controlling the behavior of the sync object. No flags are presently defined for this operation and flags must be zero.flags is a placeholder for anticipated future extensions of fence sync object capabilities. /// [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glFenceSync")] - public static IntPtr FenceSync(OpenTK.Graphics.OpenGL.SyncCondition condition, OpenTK.Graphics.OpenGL.WaitSyncFlags flags) { throw new NotImplementedException(); } + public static IntPtr FenceSync(OpenTK.Graphics.OpenGL.SyncCondition condition, OpenTK.Graphics.OpenGL.WaitSyncFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Block until all GL execution is complete /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glFinish")] - public static void Finish() { throw new NotImplementedException(); } + public static void Finish() { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Force execution of GL commands in finite time /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glFlush")] - public static void Flush() { throw new NotImplementedException(); } + public static void Flush() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_map_buffer_range|VERSION_3_0] /// Indicate modifications to a range of a mapped buffer @@ -39428,7 +39428,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the length of the buffer subrange, in basic machine units. /// [AutoGenerated(Category = "ARB_map_buffer_range|VERSION_3_0", Version = "3.0", EntryPoint = "glFlushMappedBufferRange")] - public static void FlushMappedBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_map_buffer_range|VERSION_3_0] /// Indicate modifications to a range of a mapped buffer @@ -39443,7 +39443,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the length of the buffer subrange, in basic machine units. /// [AutoGenerated(Category = "ARB_map_buffer_range|VERSION_3_0", Version = "3.0", EntryPoint = "glFlushMappedBufferRange")] - public static void FlushMappedBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -39451,7 +39451,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glFlushMappedNamedBufferRange")] [CLSCompliant(false)] - public static void FlushMappedNamedBufferRange(Int32 buffer, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void FlushMappedNamedBufferRange(Int32 buffer, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -39459,7 +39459,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glFlushMappedNamedBufferRange")] [CLSCompliant(false)] - public static void FlushMappedNamedBufferRange(Int32 buffer, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void FlushMappedNamedBufferRange(Int32 buffer, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -39467,7 +39467,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glFlushMappedNamedBufferRange")] [CLSCompliant(false)] - public static void FlushMappedNamedBufferRange(UInt32 buffer, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void FlushMappedNamedBufferRange(UInt32 buffer, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -39475,7 +39475,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glFlushMappedNamedBufferRange")] [CLSCompliant(false)] - public static void FlushMappedNamedBufferRange(UInt32 buffer, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void FlushMappedNamedBufferRange(UInt32 buffer, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current fog coordinates @@ -39484,7 +39484,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the fog distance. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glFogCoordd")] - public static void FogCoord(Double coord) { throw new NotImplementedException(); } + public static void FogCoord(Double coord) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current fog coordinates @@ -39494,7 +39494,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glFogCoorddv")] [CLSCompliant(false)] - public static unsafe void FogCoord([CountAttribute(Count = 1)] Double* coord) { throw new NotImplementedException(); } + public static unsafe void FogCoord([CountAttribute(Count = 1)] Double* coord) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current fog coordinates @@ -39503,7 +39503,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the fog distance. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glFogCoordf")] - public static void FogCoord(Single coord) { throw new NotImplementedException(); } + public static void FogCoord(Single coord) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current fog coordinates @@ -39513,7 +39513,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glFogCoordfv")] [CLSCompliant(false)] - public static unsafe void FogCoord([CountAttribute(Count = 1)] Single* coord) { throw new NotImplementedException(); } + public static unsafe void FogCoord([CountAttribute(Count = 1)] Single* coord) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Define an array of fog coordinates @@ -39528,7 +39528,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the first coordinate of the first fog coordinate in the array. The initial value is 0. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glFogCoordPointer")] - public static void FogCoordPointer(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void FogCoordPointer(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Define an array of fog coordinates @@ -39546,7 +39546,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void FogCoordPointer(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Define an array of fog coordinates @@ -39564,7 +39564,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void FogCoordPointer(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Define an array of fog coordinates @@ -39582,7 +39582,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void FogCoordPointer(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Define an array of fog coordinates @@ -39599,7 +39599,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glFogCoordPointer")] public static void FogCoordPointer(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify fog parameters @@ -39611,7 +39611,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the value that pname will be set to. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glFogf")] - public static void Fog(OpenTK.Graphics.OpenGL.FogParameter pname, Single param) { throw new NotImplementedException(); } + public static void Fog(OpenTK.Graphics.OpenGL.FogParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify fog parameters @@ -39624,7 +39624,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glFogfv")] [CLSCompliant(false)] - public static void Fog(OpenTK.Graphics.OpenGL.FogParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void Fog(OpenTK.Graphics.OpenGL.FogParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify fog parameters @@ -39637,7 +39637,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glFogfv")] [CLSCompliant(false)] - public static unsafe void Fog(OpenTK.Graphics.OpenGL.FogParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void Fog(OpenTK.Graphics.OpenGL.FogParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify fog parameters @@ -39649,7 +39649,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the value that pname will be set to. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glFogi")] - public static void Fog(OpenTK.Graphics.OpenGL.FogParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void Fog(OpenTK.Graphics.OpenGL.FogParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify fog parameters @@ -39662,7 +39662,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glFogiv")] [CLSCompliant(false)] - public static void Fog(OpenTK.Graphics.OpenGL.FogParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void Fog(OpenTK.Graphics.OpenGL.FogParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify fog parameters @@ -39675,7 +39675,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glFogiv")] [CLSCompliant(false)] - public static unsafe void Fog(OpenTK.Graphics.OpenGL.FogParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void Fog(OpenTK.Graphics.OpenGL.FogParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_framebuffer_no_attachments|VERSION_4_3] /// Set a named parameter of a framebuffer @@ -39690,7 +39690,7 @@ namespace OpenTK.Graphics.OpenGL /// The new value for the parameter named pname. /// [AutoGenerated(Category = "ARB_framebuffer_no_attachments|VERSION_4_3", Version = "4.3", EntryPoint = "glFramebufferParameteri")] - public static void FramebufferParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void FramebufferParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Attach a renderbuffer as a logical buffer to the currently bound framebuffer object @@ -39709,7 +39709,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferRenderbuffer")] [CLSCompliant(false)] - public static void FramebufferRenderbuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new NotImplementedException(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Attach a renderbuffer as a logical buffer to the currently bound framebuffer object @@ -39728,7 +39728,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferRenderbuffer")] [CLSCompliant(false)] - public static void FramebufferRenderbuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -39747,7 +39747,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glFramebufferTexture")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -39766,7 +39766,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glFramebufferTexture")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// @@ -39776,7 +39776,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTexture1D")] [CLSCompliant(false)] - public static void FramebufferTexture1D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture1D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// @@ -39786,7 +39786,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTexture1D")] [CLSCompliant(false)] - public static void FramebufferTexture1D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture1D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// @@ -39796,7 +39796,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTexture2D")] [CLSCompliant(false)] - public static void FramebufferTexture2D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture2D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// @@ -39806,7 +39806,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTexture2D")] [CLSCompliant(false)] - public static void FramebufferTexture2D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture2D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// @@ -39817,7 +39817,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTexture3D")] [CLSCompliant(false)] - public static void FramebufferTexture3D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, Int32 texture, Int32 level, Int32 zoffset) { throw new NotImplementedException(); } + public static void FramebufferTexture3D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, Int32 texture, Int32 level, Int32 zoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// @@ -39828,7 +39828,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTexture3D")] [CLSCompliant(false)] - public static void FramebufferTexture3D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level, Int32 zoffset) { throw new NotImplementedException(); } + public static void FramebufferTexture3D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level, Int32 zoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Attach a single layer of a texture to a framebuffer @@ -39850,7 +39850,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTextureLayer")] [CLSCompliant(false)] - public static void FramebufferTextureLayer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } + public static void FramebufferTextureLayer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Attach a single layer of a texture to a framebuffer @@ -39872,7 +39872,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTextureLayer")] [CLSCompliant(false)] - public static void FramebufferTextureLayer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } + public static void FramebufferTextureLayer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define front- and back-facing polygons @@ -39881,7 +39881,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the orientation of front-facing polygons. Cw and Ccw are accepted. The initial value is Ccw. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glFrontFace")] - public static void FrontFace(OpenTK.Graphics.OpenGL.FrontFaceDirection mode) { throw new NotImplementedException(); } + public static void FrontFace(OpenTK.Graphics.OpenGL.FrontFaceDirection mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Multiply the current matrix by a perspective matrix @@ -39905,14 +39905,14 @@ namespace OpenTK.Graphics.OpenGL /// Specify the distances to the near and far depth clipping planes. Both distances must be positive. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glFrustum")] - public static void Frustum(Double left, Double right, Double bottom, Double top, Double zNear, Double zFar) { throw new NotImplementedException(); } + public static void Frustum(Double left, Double right, Double bottom, Double top, Double zNear, Double zFar) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate buffer object names /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static Int32 GenBuffer() { throw new NotImplementedException(); } + public static Int32 GenBuffer() { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate buffer object names @@ -39925,7 +39925,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate buffer object names @@ -39938,7 +39938,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate buffer object names @@ -39951,7 +39951,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* buffers) { throw new NotImplementedException(); } + public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate buffer object names @@ -39964,7 +39964,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate buffer object names @@ -39977,7 +39977,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate buffer object names @@ -39990,7 +39990,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* buffers) { throw new NotImplementedException(); } + public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate mipmaps for a specified texture target @@ -39999,26 +39999,26 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the target to which the texture whose mimaps to generate is bound. target must be Texture1D, Texture2D, Texture3D, Texture1DArray, Texture2DArray or TextureCubeMap. /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenerateMipmap")] - public static void GenerateMipmap(OpenTK.Graphics.OpenGL.GenerateMipmapTarget target) { throw new NotImplementedException(); } + public static void GenerateMipmap(OpenTK.Graphics.OpenGL.GenerateMipmapTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGenerateTextureMipmap")] [CLSCompliant(false)] - public static void GenerateTextureMipmap(Int32 texture) { throw new NotImplementedException(); } + public static void GenerateTextureMipmap(Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGenerateTextureMipmap")] [CLSCompliant(false)] - public static void GenerateTextureMipmap(UInt32 texture) { throw new NotImplementedException(); } + public static void GenerateTextureMipmap(UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate framebuffer object names /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static Int32 GenFramebuffer() { throw new NotImplementedException(); } + public static Int32 GenFramebuffer() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate framebuffer object names @@ -40031,7 +40031,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate framebuffer object names @@ -40044,7 +40044,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate framebuffer object names @@ -40057,7 +40057,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate framebuffer object names @@ -40070,7 +40070,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate framebuffer object names @@ -40083,7 +40083,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate framebuffer object names @@ -40096,7 +40096,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Generate a contiguous set of empty display lists @@ -40105,14 +40105,14 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the number of contiguous empty display lists to be generated. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGenLists")] - public static Int32 GenLists(Int32 range) { throw new NotImplementedException(); } + public static Int32 GenLists(Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Reserve program pipeline object names /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGenProgramPipelines")] [CLSCompliant(false)] - public static Int32 GenProgramPipeline() { throw new NotImplementedException(); } + public static Int32 GenProgramPipeline() { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Reserve program pipeline object names @@ -40125,7 +40125,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGenProgramPipelines")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Reserve program pipeline object names @@ -40138,7 +40138,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGenProgramPipelines")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Reserve program pipeline object names @@ -40151,7 +40151,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGenProgramPipelines")] [CLSCompliant(false)] - public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* pipelines) { throw new NotImplementedException(); } + public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Reserve program pipeline object names @@ -40164,7 +40164,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGenProgramPipelines")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Reserve program pipeline object names @@ -40177,7 +40177,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGenProgramPipelines")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Reserve program pipeline object names @@ -40190,14 +40190,14 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGenProgramPipelines")] [CLSCompliant(false)] - public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new NotImplementedException(); } + public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate query object names /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static Int32 GenQuery() { throw new NotImplementedException(); } + public static Int32 GenQuery() { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate query object names @@ -40210,7 +40210,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate query object names @@ -40223,7 +40223,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate query object names @@ -40236,7 +40236,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate query object names @@ -40249,7 +40249,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate query object names @@ -40262,7 +40262,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate query object names @@ -40275,14 +40275,14 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate renderbuffer object names /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static Int32 GenRenderbuffer() { throw new NotImplementedException(); } + public static Int32 GenRenderbuffer() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate renderbuffer object names @@ -40295,7 +40295,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate renderbuffer object names @@ -40308,7 +40308,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate renderbuffer object names @@ -40321,7 +40321,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate renderbuffer object names @@ -40334,7 +40334,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate renderbuffer object names @@ -40347,7 +40347,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate renderbuffer object names @@ -40360,14 +40360,14 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Generate sampler object names /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static Int32 GenSampler() { throw new NotImplementedException(); } + public static Int32 GenSampler() { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Generate sampler object names @@ -40380,7 +40380,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] samplers) { throw new NotImplementedException(); } + public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Generate sampler object names @@ -40393,7 +40393,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 samplers) { throw new NotImplementedException(); } + public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Generate sampler object names @@ -40406,7 +40406,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static unsafe void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] Int32* samplers) { throw new NotImplementedException(); } + public static unsafe void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] Int32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Generate sampler object names @@ -40419,7 +40419,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] samplers) { throw new NotImplementedException(); } + public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Generate sampler object names @@ -40432,7 +40432,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 samplers) { throw new NotImplementedException(); } + public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Generate sampler object names @@ -40445,14 +40445,14 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static unsafe void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* samplers) { throw new NotImplementedException(); } + public static unsafe void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Generate texture names /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static Int32 GenTexture() { throw new NotImplementedException(); } + public static Int32 GenTexture() { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Generate texture names @@ -40465,7 +40465,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Generate texture names @@ -40478,7 +40478,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Generate texture names @@ -40491,7 +40491,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* textures) { throw new NotImplementedException(); } + public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Generate texture names @@ -40504,7 +40504,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Generate texture names @@ -40517,7 +40517,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Generate texture names @@ -40530,14 +40530,14 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* textures) { throw new NotImplementedException(); } + public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Reserve transform feedback object names /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static Int32 GenTransformFeedback() { throw new NotImplementedException(); } + public static Int32 GenTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Reserve transform feedback object names @@ -40550,7 +40550,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Reserve transform feedback object names @@ -40563,7 +40563,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new NotImplementedException(); } + public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Reserve transform feedback object names @@ -40576,7 +40576,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Reserve transform feedback object names @@ -40589,7 +40589,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Reserve transform feedback object names @@ -40602,7 +40602,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new NotImplementedException(); } + public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Reserve transform feedback object names @@ -40615,14 +40615,14 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Generate vertex array object names /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static Int32 GenVertexArray() { throw new NotImplementedException(); } + public static Int32 GenVertexArray() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Generate vertex array object names @@ -40635,7 +40635,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Generate vertex array object names @@ -40648,7 +40648,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Generate vertex array object names @@ -40661,7 +40661,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* arrays) { throw new NotImplementedException(); } + public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Generate vertex array object names @@ -40674,7 +40674,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Generate vertex array object names @@ -40687,7 +40687,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Generate vertex array object names @@ -40700,7 +40700,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays) { throw new NotImplementedException(); } + public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_shader_atomic_counters|VERSION_4_2] /// Retrieve information about the set of active atomic counter buffers for a program @@ -40719,7 +40719,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_atomic_counters|VERSION_4_2", Version = "4.2", EntryPoint = "glGetActiveAtomicCounterBufferiv")] [CLSCompliant(false)] - public static void GetActiveAtomicCounterBuffer(Int32 program, Int32 bufferIndex, OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveAtomicCounterBuffer(Int32 program, Int32 bufferIndex, OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_shader_atomic_counters|VERSION_4_2] /// Retrieve information about the set of active atomic counter buffers for a program @@ -40738,7 +40738,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_atomic_counters|VERSION_4_2", Version = "4.2", EntryPoint = "glGetActiveAtomicCounterBufferiv")] [CLSCompliant(false)] - public static void GetActiveAtomicCounterBuffer(Int32 program, Int32 bufferIndex, OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveAtomicCounterBuffer(Int32 program, Int32 bufferIndex, OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_shader_atomic_counters|VERSION_4_2] /// Retrieve information about the set of active atomic counter buffers for a program @@ -40757,7 +40757,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_atomic_counters|VERSION_4_2", Version = "4.2", EntryPoint = "glGetActiveAtomicCounterBufferiv")] [CLSCompliant(false)] - public static unsafe void GetActiveAtomicCounterBuffer(Int32 program, Int32 bufferIndex, OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveAtomicCounterBuffer(Int32 program, Int32 bufferIndex, OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_shader_atomic_counters|VERSION_4_2] /// Retrieve information about the set of active atomic counter buffers for a program @@ -40776,7 +40776,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_atomic_counters|VERSION_4_2", Version = "4.2", EntryPoint = "glGetActiveAtomicCounterBufferiv")] [CLSCompliant(false)] - public static void GetActiveAtomicCounterBuffer(UInt32 program, UInt32 bufferIndex, OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveAtomicCounterBuffer(UInt32 program, UInt32 bufferIndex, OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_shader_atomic_counters|VERSION_4_2] /// Retrieve information about the set of active atomic counter buffers for a program @@ -40795,7 +40795,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_atomic_counters|VERSION_4_2", Version = "4.2", EntryPoint = "glGetActiveAtomicCounterBufferiv")] [CLSCompliant(false)] - public static void GetActiveAtomicCounterBuffer(UInt32 program, UInt32 bufferIndex, OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveAtomicCounterBuffer(UInt32 program, UInt32 bufferIndex, OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_shader_atomic_counters|VERSION_4_2] /// Retrieve information about the set of active atomic counter buffers for a program @@ -40814,7 +40814,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_atomic_counters|VERSION_4_2", Version = "4.2", EntryPoint = "glGetActiveAtomicCounterBufferiv")] [CLSCompliant(false)] - public static unsafe void GetActiveAtomicCounterBuffer(UInt32 program, UInt32 bufferIndex, OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveAtomicCounterBuffer(UInt32 program, UInt32 bufferIndex, OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns information about an active attribute variable for the specified program object @@ -40842,7 +40842,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] - public static void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns information about an active attribute variable for the specified program object @@ -40870,7 +40870,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] - public static unsafe void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns information about an active attribute variable for the specified program object @@ -40898,7 +40898,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] - public static void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns information about an active attribute variable for the specified program object @@ -40926,7 +40926,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] - public static unsafe void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query the name of an active shader subroutine @@ -40951,7 +40951,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineName")] [CLSCompliant(false)] - public static void GetActiveSubroutineName(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveSubroutineName(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query the name of an active shader subroutine @@ -40976,7 +40976,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineName")] [CLSCompliant(false)] - public static unsafe void GetActiveSubroutineName(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveSubroutineName(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query the name of an active shader subroutine @@ -41001,7 +41001,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineName")] [CLSCompliant(false)] - public static void GetActiveSubroutineName(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, UInt32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveSubroutineName(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, UInt32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query the name of an active shader subroutine @@ -41026,7 +41026,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineName")] [CLSCompliant(false)] - public static unsafe void GetActiveSubroutineName(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, UInt32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveSubroutineName(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, UInt32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query a property of an active shader subroutine uniform @@ -41048,7 +41048,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineUniformiv")] [CLSCompliant(false)] - public static void GetActiveSubroutineUniform(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 index, OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] values) { throw new NotImplementedException(); } + public static void GetActiveSubroutineUniform(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 index, OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query a property of an active shader subroutine uniform @@ -41070,7 +41070,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineUniformiv")] [CLSCompliant(false)] - public static void GetActiveSubroutineUniform(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 index, OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 values) { throw new NotImplementedException(); } + public static void GetActiveSubroutineUniform(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 index, OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query a property of an active shader subroutine uniform @@ -41092,7 +41092,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineUniformiv")] [CLSCompliant(false)] - public static unsafe void GetActiveSubroutineUniform(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 index, OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetActiveSubroutineUniform(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 index, OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query a property of an active shader subroutine uniform @@ -41114,7 +41114,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineUniformiv")] [CLSCompliant(false)] - public static void GetActiveSubroutineUniform(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, UInt32 index, OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] values) { throw new NotImplementedException(); } + public static void GetActiveSubroutineUniform(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, UInt32 index, OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query a property of an active shader subroutine uniform @@ -41136,7 +41136,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineUniformiv")] [CLSCompliant(false)] - public static void GetActiveSubroutineUniform(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, UInt32 index, OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 values) { throw new NotImplementedException(); } + public static void GetActiveSubroutineUniform(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, UInt32 index, OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query a property of an active shader subroutine uniform @@ -41158,7 +41158,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineUniformiv")] [CLSCompliant(false)] - public static unsafe void GetActiveSubroutineUniform(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, UInt32 index, OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetActiveSubroutineUniform(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, UInt32 index, OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query the name of an active shader subroutine uniform @@ -41183,7 +41183,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineUniformName")] [CLSCompliant(false)] - public static void GetActiveSubroutineUniformName(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveSubroutineUniformName(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query the name of an active shader subroutine uniform @@ -41208,7 +41208,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineUniformName")] [CLSCompliant(false)] - public static unsafe void GetActiveSubroutineUniformName(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveSubroutineUniformName(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query the name of an active shader subroutine uniform @@ -41233,7 +41233,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineUniformName")] [CLSCompliant(false)] - public static void GetActiveSubroutineUniformName(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, UInt32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveSubroutineUniformName(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, UInt32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query the name of an active shader subroutine uniform @@ -41258,7 +41258,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineUniformName")] [CLSCompliant(false)] - public static unsafe void GetActiveSubroutineUniformName(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, UInt32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveSubroutineUniformName(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, UInt32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns information about an active uniform variable for the specified program object @@ -41286,7 +41286,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] - public static void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ActiveUniformType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ActiveUniformType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns information about an active uniform variable for the specified program object @@ -41314,7 +41314,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] - public static unsafe void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ActiveUniformType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ActiveUniformType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns information about an active uniform variable for the specified program object @@ -41342,7 +41342,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] - public static void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ActiveUniformType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ActiveUniformType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns information about an active uniform variable for the specified program object @@ -41370,7 +41370,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] - public static unsafe void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ActiveUniformType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ActiveUniformType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Query information about an active uniform block @@ -41389,7 +41389,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] - public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Query information about an active uniform block @@ -41408,7 +41408,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] - public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Query information about an active uniform block @@ -41427,7 +41427,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] - public static unsafe void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Query information about an active uniform block @@ -41446,7 +41446,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] - public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Query information about an active uniform block @@ -41465,7 +41465,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] - public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Query information about an active uniform block @@ -41484,7 +41484,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] - public static unsafe void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the name of an active uniform block @@ -41506,7 +41506,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformBlockName")] [CLSCompliant(false)] - public static void GetActiveUniformBlockName(Int32 program, Int32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new NotImplementedException(); } + public static void GetActiveUniformBlockName(Int32 program, Int32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the name of an active uniform block @@ -41528,7 +41528,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformBlockName")] [CLSCompliant(false)] - public static unsafe void GetActiveUniformBlockName(Int32 program, Int32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformBlockName(Int32 program, Int32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the name of an active uniform block @@ -41550,7 +41550,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformBlockName")] [CLSCompliant(false)] - public static void GetActiveUniformBlockName(UInt32 program, UInt32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new NotImplementedException(); } + public static void GetActiveUniformBlockName(UInt32 program, UInt32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the name of an active uniform block @@ -41572,7 +41572,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformBlockName")] [CLSCompliant(false)] - public static unsafe void GetActiveUniformBlockName(UInt32 program, UInt32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformBlockName(UInt32 program, UInt32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Query the name of an active uniform @@ -41594,7 +41594,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformName")] [CLSCompliant(false)] - public static void GetActiveUniformName(Int32 program, Int32 uniformIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformName) { throw new NotImplementedException(); } + public static void GetActiveUniformName(Int32 program, Int32 uniformIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Query the name of an active uniform @@ -41616,7 +41616,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformName")] [CLSCompliant(false)] - public static unsafe void GetActiveUniformName(Int32 program, Int32 uniformIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformName) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformName(Int32 program, Int32 uniformIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Query the name of an active uniform @@ -41638,7 +41638,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformName")] [CLSCompliant(false)] - public static void GetActiveUniformName(UInt32 program, UInt32 uniformIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformName) { throw new NotImplementedException(); } + public static void GetActiveUniformName(UInt32 program, UInt32 uniformIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Query the name of an active uniform @@ -41660,7 +41660,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformName")] [CLSCompliant(false)] - public static unsafe void GetActiveUniformName(UInt32 program, UInt32 uniformIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformName) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformName(UInt32 program, UInt32 uniformIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Returns information about several active uniform variables for the specified program object @@ -41682,7 +41682,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] - public static void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] Int32[] uniformIndices, OpenTK.Graphics.OpenGL.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] Int32[] uniformIndices, OpenTK.Graphics.OpenGL.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Returns information about several active uniform variables for the specified program object @@ -41704,7 +41704,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] - public static void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] ref Int32 uniformIndices, OpenTK.Graphics.OpenGL.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] ref Int32 uniformIndices, OpenTK.Graphics.OpenGL.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Returns information about several active uniform variables for the specified program object @@ -41726,7 +41726,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] - public static unsafe void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] Int32* uniformIndices, OpenTK.Graphics.OpenGL.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] Int32* uniformIndices, OpenTK.Graphics.OpenGL.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Returns information about several active uniform variables for the specified program object @@ -41748,7 +41748,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] - public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32[] uniformIndices, OpenTK.Graphics.OpenGL.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32[] uniformIndices, OpenTK.Graphics.OpenGL.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Returns information about several active uniform variables for the specified program object @@ -41770,7 +41770,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] - public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] ref UInt32 uniformIndices, OpenTK.Graphics.OpenGL.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] ref UInt32 uniformIndices, OpenTK.Graphics.OpenGL.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Returns information about several active uniform variables for the specified program object @@ -41792,7 +41792,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] - public static unsafe void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32* uniformIndices, OpenTK.Graphics.OpenGL.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32* uniformIndices, OpenTK.Graphics.OpenGL.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the handles of the shader objects attached to a program object @@ -41811,7 +41811,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32[] shaders) { throw new NotImplementedException(); } + public static void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32[] shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the handles of the shader objects attached to a program object @@ -41830,7 +41830,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out Int32 shaders) { throw new NotImplementedException(); } + public static void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out Int32 shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the handles of the shader objects attached to a program object @@ -41849,7 +41849,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static unsafe void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32* shaders) { throw new NotImplementedException(); } + public static unsafe void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32* shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the handles of the shader objects attached to a program object @@ -41868,7 +41868,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32[] shaders) { throw new NotImplementedException(); } + public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32[] shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the handles of the shader objects attached to a program object @@ -41887,7 +41887,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out UInt32 shaders) { throw new NotImplementedException(); } + public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out UInt32 shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the handles of the shader objects attached to a program object @@ -41906,7 +41906,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static unsafe void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32* shaders) { throw new NotImplementedException(); } + public static unsafe void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32* shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the location of an attribute variable @@ -41919,7 +41919,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttribLocation")] [CLSCompliant(false)] - public static Int32 GetAttribLocation(Int32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetAttribLocation(Int32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the location of an attribute variable @@ -41932,7 +41932,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttribLocation")] [CLSCompliant(false)] - public static Int32 GetAttribLocation(UInt32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetAttribLocation(UInt32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -41940,7 +41940,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetBooleani_v")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -41948,7 +41948,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetBooleani_v")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -41956,7 +41956,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetBooleani_v")] [CLSCompliant(false)] - public static unsafe void GetBoolean(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBoolean(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -41964,7 +41964,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetBooleani_v")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -41972,7 +41972,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetBooleani_v")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -41980,34 +41980,34 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetBooleani_v")] [CLSCompliant(false)] - public static unsafe void GetBoolean(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBoolean(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static bool GetBoolean(OpenTK.Graphics.OpenGL.GetPName pname) { throw new NotImplementedException(); } + public static bool GetBoolean(OpenTK.Graphics.OpenGL.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool[] data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out bool data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static unsafe void GetBoolean(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBoolean(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// Return parameters of a buffer object @@ -42023,7 +42023,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetBufferParameteri64v")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// Return parameters of a buffer object @@ -42039,7 +42039,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetBufferParameteri64v")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// Return parameters of a buffer object @@ -42055,7 +42055,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetBufferParameteri64v")] [CLSCompliant(false)] - public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a buffer object @@ -42071,7 +42071,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferParameteriv")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a buffer object @@ -42087,7 +42087,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferParameteriv")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a buffer object @@ -42103,7 +42103,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return the pointer to a mapped buffer object's data store @@ -42118,7 +42118,7 @@ namespace OpenTK.Graphics.OpenGL /// Returns the pointer value specified by pname. /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferPointerv")] - public static void GetBufferPointer(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferPointer pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetBufferPointer(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferPointer pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return the pointer to a mapped buffer object's data store @@ -42136,7 +42136,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return the pointer to a mapped buffer object's data store @@ -42154,7 +42154,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return the pointer to a mapped buffer object's data store @@ -42172,7 +42172,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return the pointer to a mapped buffer object's data store @@ -42189,7 +42189,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferPointerv")] public static void GetBufferPointer(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Returns a subset of a buffer object's data store @@ -42207,7 +42207,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the location where buffer object data is returned. /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferSubData")] - public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Returns a subset of a buffer object's data store @@ -42228,7 +42228,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Returns a subset of a buffer object's data store @@ -42249,7 +42249,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Returns a subset of a buffer object's data store @@ -42270,7 +42270,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Returns a subset of a buffer object's data store @@ -42290,7 +42290,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferSubData")] public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Returns a subset of a buffer object's data store @@ -42308,7 +42308,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the location where buffer object data is returned. /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferSubData")] - public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, [OutAttribute, CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, [OutAttribute, CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Returns a subset of a buffer object's data store @@ -42329,7 +42329,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Returns a subset of a buffer object's data store @@ -42350,7 +42350,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Returns a subset of a buffer object's data store @@ -42371,7 +42371,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Returns a subset of a buffer object's data store @@ -42391,7 +42391,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferSubData")] public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the coefficients of the specified clipping plane @@ -42404,7 +42404,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetClipPlane")] [CLSCompliant(false)] - public static void GetClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, [OutAttribute, CountAttribute(Count = 4)] Double[] equation) { throw new NotImplementedException(); } + public static void GetClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, [OutAttribute, CountAttribute(Count = 4)] Double[] equation) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the coefficients of the specified clipping plane @@ -42417,7 +42417,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetClipPlane")] [CLSCompliant(false)] - public static void GetClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, [OutAttribute, CountAttribute(Count = 4)] out Double equation) { throw new NotImplementedException(); } + public static void GetClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, [OutAttribute, CountAttribute(Count = 4)] out Double equation) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the coefficients of the specified clipping plane @@ -42430,7 +42430,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetClipPlane")] [CLSCompliant(false)] - public static unsafe void GetClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, [OutAttribute, CountAttribute(Count = 4)] Double* equation) { throw new NotImplementedException(); } + public static unsafe void GetClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, [OutAttribute, CountAttribute(Count = 4)] Double* equation) { throw new BindingsNotRewrittenException(); } /// /// Retrieve contents of a color lookup table @@ -42448,7 +42448,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a one-dimensional array of pixel data containing the contents of the color table. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTable")] - public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr table) { throw new NotImplementedException(); } + public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr table) { throw new BindingsNotRewrittenException(); } /// /// Retrieve contents of a color lookup table @@ -42469,7 +42469,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[] table) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve contents of a color lookup table @@ -42490,7 +42490,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,] table) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve contents of a color lookup table @@ -42511,7 +42511,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,,] table) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve contents of a color lookup table @@ -42531,7 +42531,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTable")] public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T3 table) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get color lookup table parameters @@ -42547,7 +42547,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTableParameterfv")] [CLSCompliant(false)] - public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get color lookup table parameters @@ -42563,7 +42563,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTableParameterfv")] [CLSCompliant(false)] - public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// /// Get color lookup table parameters @@ -42579,7 +42579,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTableParameterfv")] [CLSCompliant(false)] - public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// Get color lookup table parameters @@ -42595,7 +42595,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTableParameteriv")] [CLSCompliant(false)] - public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get color lookup table parameters @@ -42611,7 +42611,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTableParameteriv")] [CLSCompliant(false)] - public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// Get color lookup table parameters @@ -42627,7 +42627,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTableParameteriv")] [CLSCompliant(false)] - public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Return a compressed texture image @@ -42642,7 +42642,7 @@ namespace OpenTK.Graphics.OpenGL /// Returns the compressed texture image. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glGetCompressedTexImage")] - public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, [OutAttribute, CountAttribute(Computed = "target,level")] IntPtr img) { throw new NotImplementedException(); } + public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, [OutAttribute, CountAttribute(Computed = "target,level")] IntPtr img) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Return a compressed texture image @@ -42660,7 +42660,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level")] T2[] img) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Return a compressed texture image @@ -42678,7 +42678,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level")] T2[,] img) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Return a compressed texture image @@ -42696,7 +42696,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level")] T2[,,] img) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Return a compressed texture image @@ -42713,7 +42713,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glGetCompressedTexImage")] public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level")] ref T2 img) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42722,7 +42722,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetCompressedTextureImage")] [CLSCompliant(false)] - public static void GetCompressedTextureImage(Int32 texture, Int32 level, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetCompressedTextureImage(Int32 texture, Int32 level, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42733,7 +42733,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureImage(Int32 texture, Int32 level, Int32 bufSize, [InAttribute, OutAttribute] T3[] pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42744,7 +42744,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureImage(Int32 texture, Int32 level, Int32 bufSize, [InAttribute, OutAttribute] T3[,] pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42755,7 +42755,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureImage(Int32 texture, Int32 level, Int32 bufSize, [InAttribute, OutAttribute] T3[,,] pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42766,7 +42766,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureImage(Int32 texture, Int32 level, Int32 bufSize, [InAttribute, OutAttribute] ref T3 pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42775,7 +42775,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetCompressedTextureImage")] [CLSCompliant(false)] - public static void GetCompressedTextureImage(UInt32 texture, Int32 level, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetCompressedTextureImage(UInt32 texture, Int32 level, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42786,7 +42786,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureImage(UInt32 texture, Int32 level, Int32 bufSize, [InAttribute, OutAttribute] T3[] pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42797,7 +42797,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureImage(UInt32 texture, Int32 level, Int32 bufSize, [InAttribute, OutAttribute] T3[,] pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42808,7 +42808,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureImage(UInt32 texture, Int32 level, Int32 bufSize, [InAttribute, OutAttribute] T3[,,] pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42819,7 +42819,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureImage(UInt32 texture, Int32 level, Int32 bufSize, [InAttribute, OutAttribute] ref T3 pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -42834,7 +42834,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_get_texture_sub_image|VERSION_4_5", Version = "4.5", EntryPoint = "glGetCompressedTextureSubImage")] [CLSCompliant(false)] - public static void GetCompressedTextureSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetCompressedTextureSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -42851,7 +42851,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [InAttribute, OutAttribute] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -42868,7 +42868,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [InAttribute, OutAttribute] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -42885,7 +42885,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [InAttribute, OutAttribute] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -42902,7 +42902,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [InAttribute, OutAttribute] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -42917,7 +42917,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_get_texture_sub_image|VERSION_4_5", Version = "4.5", EntryPoint = "glGetCompressedTextureSubImage")] [CLSCompliant(false)] - public static void GetCompressedTextureSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetCompressedTextureSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -42934,7 +42934,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [InAttribute, OutAttribute] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -42951,7 +42951,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [InAttribute, OutAttribute] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -42968,7 +42968,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [InAttribute, OutAttribute] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -42985,7 +42985,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [InAttribute, OutAttribute] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get current 1D or 2D convolution filter kernel @@ -43003,7 +43003,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to storage for the output image. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionFilter")] - public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr image) { throw new NotImplementedException(); } + public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr image) { throw new BindingsNotRewrittenException(); } /// /// Get current 1D or 2D convolution filter kernel @@ -43024,7 +43024,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[] image) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get current 1D or 2D convolution filter kernel @@ -43045,7 +43045,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,] image) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get current 1D or 2D convolution filter kernel @@ -43066,7 +43066,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,,] image) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get current 1D or 2D convolution filter kernel @@ -43086,7 +43086,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionFilter")] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T3 image) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get convolution parameters @@ -43102,7 +43102,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionParameterfv")] [CLSCompliant(false)] - public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get convolution parameters @@ -43118,7 +43118,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionParameterfv")] [CLSCompliant(false)] - public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// /// Get convolution parameters @@ -43134,7 +43134,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionParameterfv")] [CLSCompliant(false)] - public static unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// Get convolution parameters @@ -43150,7 +43150,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionParameteriv")] [CLSCompliant(false)] - public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get convolution parameters @@ -43166,7 +43166,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionParameteriv")] [CLSCompliant(false)] - public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// Get convolution parameters @@ -43182,7 +43182,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionParameteriv")] [CLSCompliant(false)] - public static unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve messages from the debug message log @@ -43213,7 +43213,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSource[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSource[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve messages from the debug message log @@ -43244,7 +43244,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.DebugSource sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.DebugSource sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve messages from the debug message log @@ -43275,7 +43275,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSource* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSource* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve messages from the debug message log @@ -43306,7 +43306,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSource[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSource[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve messages from the debug message log @@ -43337,7 +43337,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.DebugSource sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.DebugSource sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve messages from the debug message log @@ -43368,7 +43368,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSource* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSource* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -43376,7 +43376,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetDoublei_v")] [CLSCompliant(false)] - public static void GetDouble(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Double[] data) { throw new NotImplementedException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Double[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -43384,7 +43384,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetDoublei_v")] [CLSCompliant(false)] - public static void GetDouble(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Double data) { throw new NotImplementedException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Double data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -43392,7 +43392,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetDoublei_v")] [CLSCompliant(false)] - public static unsafe void GetDouble(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Double* data) { throw new NotImplementedException(); } + public static unsafe void GetDouble(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Double* data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -43400,7 +43400,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetDoublei_v")] [CLSCompliant(false)] - public static void GetDouble(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Double[] data) { throw new NotImplementedException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Double[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -43408,7 +43408,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetDoublei_v")] [CLSCompliant(false)] - public static void GetDouble(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Double data) { throw new NotImplementedException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Double data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -43416,40 +43416,40 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetDoublei_v")] [CLSCompliant(false)] - public static unsafe void GetDouble(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Double* data) { throw new NotImplementedException(); } + public static unsafe void GetDouble(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Double* data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetDoublev")] [CLSCompliant(false)] - public static Double GetDouble(OpenTK.Graphics.OpenGL.GetPName pname) { throw new NotImplementedException(); } + public static Double GetDouble(OpenTK.Graphics.OpenGL.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetDoublev")] [CLSCompliant(false)] - public static void GetDouble(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] data) { throw new NotImplementedException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetDoublev")] [CLSCompliant(false)] - public static void GetDouble(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double data) { throw new NotImplementedException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetDoublev")] [CLSCompliant(false)] - public static unsafe void GetDouble(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* data) { throw new NotImplementedException(); } + public static unsafe void GetDouble(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return error information /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetError")] - public static OpenTK.Graphics.OpenGL.ErrorCode GetError() { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.ErrorCode GetError() { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -43457,7 +43457,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetFloati_v")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -43465,7 +43465,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetFloati_v")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -43473,7 +43473,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetFloati_v")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -43481,7 +43481,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetFloati_v")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -43489,7 +43489,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetFloati_v")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -43497,34 +43497,34 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetFloati_v")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static Single GetFloat(OpenTK.Graphics.OpenGL.GetPName pname) { throw new NotImplementedException(); } + public static Single GetFloat(OpenTK.Graphics.OpenGL.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_blend_func_extended|VERSION_3_3] /// Query the bindings of color indices to user-defined varying out variables @@ -43537,7 +43537,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_blend_func_extended|VERSION_3_3", Version = "3.3", EntryPoint = "glGetFragDataIndex")] [CLSCompliant(false)] - public static Int32 GetFragDataIndex(Int32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetFragDataIndex(Int32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_blend_func_extended|VERSION_3_3] /// Query the bindings of color indices to user-defined varying out variables @@ -43550,7 +43550,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_blend_func_extended|VERSION_3_3", Version = "3.3", EntryPoint = "glGetFragDataIndex")] [CLSCompliant(false)] - public static Int32 GetFragDataIndex(UInt32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetFragDataIndex(UInt32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Query the bindings of color numbers to user-defined varying out variables @@ -43563,7 +43563,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetFragDataLocation")] [CLSCompliant(false)] - public static Int32 GetFragDataLocation(Int32 program, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetFragDataLocation(Int32 program, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Query the bindings of color numbers to user-defined varying out variables @@ -43576,7 +43576,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetFragDataLocation")] [CLSCompliant(false)] - public static Int32 GetFragDataLocation(UInt32 program, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetFragDataLocation(UInt32 program, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Retrieve information about attachments of a bound framebuffer object @@ -43595,7 +43595,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Retrieve information about attachments of a bound framebuffer object @@ -43614,7 +43614,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Retrieve information about attachments of a bound framebuffer object @@ -43633,7 +43633,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_framebuffer_no_attachments|VERSION_4_3] /// Retrieve a named parameter from a framebuffer @@ -43649,7 +43649,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_no_attachments|VERSION_4_3", Version = "4.3", EntryPoint = "glGetFramebufferParameteriv")] [CLSCompliant(false)] - public static void GetFramebufferParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFramebufferParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_framebuffer_no_attachments|VERSION_4_3] /// Retrieve a named parameter from a framebuffer @@ -43665,7 +43665,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_no_attachments|VERSION_4_3", Version = "4.3", EntryPoint = "glGetFramebufferParameteriv")] [CLSCompliant(false)] - public static void GetFramebufferParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFramebufferParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_framebuffer_no_attachments|VERSION_4_3] /// Retrieve a named parameter from a framebuffer @@ -43681,11 +43681,11 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_no_attachments|VERSION_4_3", Version = "4.3", EntryPoint = "glGetFramebufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetFramebufferParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFramebufferParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetGraphicsResetStatus")] - public static OpenTK.Graphics.OpenGL.ResetStatus GetGraphicsResetStatus() { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.ResetStatus GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// /// Get histogram table @@ -43706,7 +43706,7 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to storage for the returned histogram table. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogram")] - public static void GetHistogram(OpenTK.Graphics.OpenGL.HistogramTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values) { throw new NotImplementedException(); } + public static void GetHistogram(OpenTK.Graphics.OpenGL.HistogramTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values) { throw new BindingsNotRewrittenException(); } /// /// Get histogram table @@ -43730,7 +43730,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetHistogram(OpenTK.Graphics.OpenGL.HistogramTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get histogram table @@ -43754,7 +43754,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetHistogram(OpenTK.Graphics.OpenGL.HistogramTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[,] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get histogram table @@ -43778,7 +43778,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetHistogram(OpenTK.Graphics.OpenGL.HistogramTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[,,] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get histogram table @@ -43801,7 +43801,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogram")] public static void GetHistogram(OpenTK.Graphics.OpenGL.HistogramTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T4 values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get histogram parameters @@ -43817,7 +43817,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogramParameterfv")] [CLSCompliant(false)] - public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTarget target, OpenTK.Graphics.OpenGL.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTarget target, OpenTK.Graphics.OpenGL.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get histogram parameters @@ -43833,7 +43833,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogramParameterfv")] [CLSCompliant(false)] - public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTarget target, OpenTK.Graphics.OpenGL.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTarget target, OpenTK.Graphics.OpenGL.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// /// Get histogram parameters @@ -43849,7 +43849,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogramParameterfv")] [CLSCompliant(false)] - public static unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTarget target, OpenTK.Graphics.OpenGL.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTarget target, OpenTK.Graphics.OpenGL.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// Get histogram parameters @@ -43865,7 +43865,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogramParameteriv")] [CLSCompliant(false)] - public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTarget target, OpenTK.Graphics.OpenGL.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTarget target, OpenTK.Graphics.OpenGL.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get histogram parameters @@ -43881,7 +43881,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogramParameteriv")] [CLSCompliant(false)] - public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTarget target, OpenTK.Graphics.OpenGL.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTarget target, OpenTK.Graphics.OpenGL.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// Get histogram parameters @@ -43897,7 +43897,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogramParameteriv")] [CLSCompliant(false)] - public static unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTarget target, OpenTK.Graphics.OpenGL.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTarget target, OpenTK.Graphics.OpenGL.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// @@ -43905,7 +43905,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// @@ -43913,7 +43913,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// @@ -43921,7 +43921,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static unsafe void GetInteger64(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// @@ -43929,7 +43929,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// @@ -43937,7 +43937,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// @@ -43945,7 +43945,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static unsafe void GetInteger64(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// @@ -43954,7 +43954,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use GetIndexedPName overload instead")] [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.OpenGL.Version32 target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.OpenGL.Version32 target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// @@ -43963,7 +43963,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use GetIndexedPName overload instead")] [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.OpenGL.Version32 target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.OpenGL.Version32 target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// @@ -43972,7 +43972,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use GetIndexedPName overload instead")] [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static unsafe void GetInteger64(OpenTK.Graphics.OpenGL.Version32 target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.OpenGL.Version32 target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// @@ -43981,7 +43981,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use GetIndexedPName overload instead")] [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.OpenGL.Version32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.OpenGL.Version32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// @@ -43990,7 +43990,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use GetIndexedPName overload instead")] [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.OpenGL.Version32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.OpenGL.Version32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// @@ -43999,20 +43999,20 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use GetIndexedPName overload instead")] [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static unsafe void GetInteger64(OpenTK.Graphics.OpenGL.Version32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.OpenGL.Version32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// [Obsolete("Use GetPName overload instead")] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64v")] [CLSCompliant(false)] - public static Int64 GetInteger64(OpenTK.Graphics.OpenGL.ArbSync pname) { throw new NotImplementedException(); } + public static Int64 GetInteger64(OpenTK.Graphics.OpenGL.ArbSync pname) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64v")] [CLSCompliant(false)] - public static Int64 GetInteger64(OpenTK.Graphics.OpenGL.GetPName pname) { throw new NotImplementedException(); } + public static Int64 GetInteger64(OpenTK.Graphics.OpenGL.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// @@ -44020,7 +44020,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use GetPName overload instead")] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.OpenGL.ArbSync pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.OpenGL.ArbSync pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// @@ -44028,7 +44028,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use GetPName overload instead")] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.OpenGL.ArbSync pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.OpenGL.ArbSync pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// @@ -44036,28 +44036,28 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use GetPName overload instead")] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64v")] [CLSCompliant(false)] - public static unsafe void GetInteger64(OpenTK.Graphics.OpenGL.ArbSync pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.OpenGL.ArbSync pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64v")] [CLSCompliant(false)] - public static unsafe void GetInteger64(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// @@ -44065,7 +44065,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// @@ -44073,7 +44073,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// @@ -44081,7 +44081,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// @@ -44089,7 +44089,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// @@ -44097,7 +44097,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// @@ -44105,34 +44105,34 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static Int32 GetInteger(OpenTK.Graphics.OpenGL.GetPName pname) { throw new NotImplementedException(); } + public static Int32 GetInteger(OpenTK.Graphics.OpenGL.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_internalformat_query2|VERSION_4_3] /// Retrieve information about implementation-dependent support for internal formats @@ -44154,7 +44154,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_internalformat_query2|VERSION_4_3", Version = "4.3", EntryPoint = "glGetInternalformati64v")] [CLSCompliant(false)] - public static void GetInternalformat(OpenTK.Graphics.OpenGL.ImageTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetInternalformat(OpenTK.Graphics.OpenGL.ImageTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_internalformat_query2|VERSION_4_3] /// Retrieve information about implementation-dependent support for internal formats @@ -44176,7 +44176,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_internalformat_query2|VERSION_4_3", Version = "4.3", EntryPoint = "glGetInternalformati64v")] [CLSCompliant(false)] - public static void GetInternalformat(OpenTK.Graphics.OpenGL.ImageTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetInternalformat(OpenTK.Graphics.OpenGL.ImageTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_internalformat_query2|VERSION_4_3] /// Retrieve information about implementation-dependent support for internal formats @@ -44198,7 +44198,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_internalformat_query2|VERSION_4_3", Version = "4.3", EntryPoint = "glGetInternalformati64v")] [CLSCompliant(false)] - public static unsafe void GetInternalformat(OpenTK.Graphics.OpenGL.ImageTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetInternalformat(OpenTK.Graphics.OpenGL.ImageTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_internalformat_query|VERSION_4_2] /// Retrieve information about implementation-dependent support for internal formats @@ -44220,7 +44220,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_internalformat_query|VERSION_4_2", Version = "4.2", EntryPoint = "glGetInternalformativ")] [CLSCompliant(false)] - public static void GetInternalformat(OpenTK.Graphics.OpenGL.ImageTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetInternalformat(OpenTK.Graphics.OpenGL.ImageTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_internalformat_query|VERSION_4_2] /// Retrieve information about implementation-dependent support for internal formats @@ -44242,7 +44242,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_internalformat_query|VERSION_4_2", Version = "4.2", EntryPoint = "glGetInternalformativ")] [CLSCompliant(false)] - public static void GetInternalformat(OpenTK.Graphics.OpenGL.ImageTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetInternalformat(OpenTK.Graphics.OpenGL.ImageTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_internalformat_query|VERSION_4_2] /// Retrieve information about implementation-dependent support for internal formats @@ -44264,7 +44264,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_internalformat_query|VERSION_4_2", Version = "4.2", EntryPoint = "glGetInternalformativ")] [CLSCompliant(false)] - public static unsafe void GetInternalformat(OpenTK.Graphics.OpenGL.ImageTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetInternalformat(OpenTK.Graphics.OpenGL.ImageTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return light source parameter values @@ -44280,7 +44280,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetLightfv")] [CLSCompliant(false)] - public static void GetLight(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetLight(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return light source parameter values @@ -44296,7 +44296,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetLightfv")] [CLSCompliant(false)] - public static void GetLight(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetLight(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return light source parameter values @@ -44312,7 +44312,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetLightfv")] [CLSCompliant(false)] - public static unsafe void GetLight(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetLight(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return light source parameter values @@ -44328,7 +44328,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetLightiv")] [CLSCompliant(false)] - public static void GetLight(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetLight(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return light source parameter values @@ -44344,7 +44344,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetLightiv")] [CLSCompliant(false)] - public static void GetLight(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetLight(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return light source parameter values @@ -44360,7 +44360,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetLightiv")] [CLSCompliant(false)] - public static unsafe void GetLight(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetLight(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return evaluator parameters @@ -44376,7 +44376,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetMapdv")] [CLSCompliant(false)] - public static void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute, CountAttribute(Computed = "target,query")] Double[] v) { throw new NotImplementedException(); } + public static void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute, CountAttribute(Computed = "target,query")] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return evaluator parameters @@ -44392,7 +44392,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetMapdv")] [CLSCompliant(false)] - public static void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute, CountAttribute(Computed = "target,query")] out Double v) { throw new NotImplementedException(); } + public static void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute, CountAttribute(Computed = "target,query")] out Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return evaluator parameters @@ -44408,7 +44408,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetMapdv")] [CLSCompliant(false)] - public static unsafe void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute, CountAttribute(Computed = "target,query")] Double* v) { throw new NotImplementedException(); } + public static unsafe void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute, CountAttribute(Computed = "target,query")] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return evaluator parameters @@ -44424,7 +44424,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetMapfv")] [CLSCompliant(false)] - public static void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute, CountAttribute(Computed = "target,query")] Single[] v) { throw new NotImplementedException(); } + public static void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute, CountAttribute(Computed = "target,query")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return evaluator parameters @@ -44440,7 +44440,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetMapfv")] [CLSCompliant(false)] - public static void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute, CountAttribute(Computed = "target,query")] out Single v) { throw new NotImplementedException(); } + public static void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute, CountAttribute(Computed = "target,query")] out Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return evaluator parameters @@ -44456,7 +44456,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetMapfv")] [CLSCompliant(false)] - public static unsafe void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute, CountAttribute(Computed = "target,query")] Single* v) { throw new NotImplementedException(); } + public static unsafe void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute, CountAttribute(Computed = "target,query")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return evaluator parameters @@ -44472,7 +44472,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetMapiv")] [CLSCompliant(false)] - public static void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute, CountAttribute(Computed = "target,query")] Int32[] v) { throw new NotImplementedException(); } + public static void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute, CountAttribute(Computed = "target,query")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return evaluator parameters @@ -44488,7 +44488,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetMapiv")] [CLSCompliant(false)] - public static void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute, CountAttribute(Computed = "target,query")] out Int32 v) { throw new NotImplementedException(); } + public static void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute, CountAttribute(Computed = "target,query")] out Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return evaluator parameters @@ -44504,7 +44504,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetMapiv")] [CLSCompliant(false)] - public static unsafe void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute, CountAttribute(Computed = "target,query")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute, CountAttribute(Computed = "target,query")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return material parameters @@ -44520,7 +44520,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetMaterialfv")] [CLSCompliant(false)] - public static void GetMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return material parameters @@ -44536,7 +44536,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetMaterialfv")] [CLSCompliant(false)] - public static void GetMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return material parameters @@ -44552,7 +44552,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetMaterialfv")] [CLSCompliant(false)] - public static unsafe void GetMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return material parameters @@ -44568,7 +44568,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetMaterialiv")] [CLSCompliant(false)] - public static void GetMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return material parameters @@ -44584,7 +44584,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetMaterialiv")] [CLSCompliant(false)] - public static void GetMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return material parameters @@ -44600,7 +44600,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetMaterialiv")] [CLSCompliant(false)] - public static unsafe void GetMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// /// Get minimum and maximum pixel values @@ -44621,7 +44621,7 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to storage for the returned values. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmax")] - public static void GetMinmax(OpenTK.Graphics.OpenGL.MinmaxTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values) { throw new NotImplementedException(); } + public static void GetMinmax(OpenTK.Graphics.OpenGL.MinmaxTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values) { throw new BindingsNotRewrittenException(); } /// /// Get minimum and maximum pixel values @@ -44645,7 +44645,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetMinmax(OpenTK.Graphics.OpenGL.MinmaxTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get minimum and maximum pixel values @@ -44669,7 +44669,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetMinmax(OpenTK.Graphics.OpenGL.MinmaxTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[,] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get minimum and maximum pixel values @@ -44693,7 +44693,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetMinmax(OpenTK.Graphics.OpenGL.MinmaxTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[,,] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get minimum and maximum pixel values @@ -44716,7 +44716,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmax")] public static void GetMinmax(OpenTK.Graphics.OpenGL.MinmaxTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T4 values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get minmax parameters @@ -44732,7 +44732,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmaxParameterfv")] [CLSCompliant(false)] - public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get minmax parameters @@ -44748,7 +44748,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmaxParameterfv")] [CLSCompliant(false)] - public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// /// Get minmax parameters @@ -44764,7 +44764,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmaxParameterfv")] [CLSCompliant(false)] - public static unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// Get minmax parameters @@ -44780,7 +44780,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmaxParameteriv")] [CLSCompliant(false)] - public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get minmax parameters @@ -44796,7 +44796,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmaxParameteriv")] [CLSCompliant(false)] - public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// Get minmax parameters @@ -44812,7 +44812,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmaxParameteriv")] [CLSCompliant(false)] - public static unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Retrieve the location of a sample @@ -44828,7 +44828,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glGetMultisamplefv")] [CLSCompliant(false)] - public static void GetMultisample(OpenTK.Graphics.OpenGL.GetMultisamplePName pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] val) { throw new NotImplementedException(); } + public static void GetMultisample(OpenTK.Graphics.OpenGL.GetMultisamplePName pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] val) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Retrieve the location of a sample @@ -44844,7 +44844,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glGetMultisamplefv")] [CLSCompliant(false)] - public static void GetMultisample(OpenTK.Graphics.OpenGL.GetMultisamplePName pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single val) { throw new NotImplementedException(); } + public static void GetMultisample(OpenTK.Graphics.OpenGL.GetMultisamplePName pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single val) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Retrieve the location of a sample @@ -44860,7 +44860,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glGetMultisamplefv")] [CLSCompliant(false)] - public static unsafe void GetMultisample(OpenTK.Graphics.OpenGL.GetMultisamplePName pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* val) { throw new NotImplementedException(); } + public static unsafe void GetMultisample(OpenTK.Graphics.OpenGL.GetMultisamplePName pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* val) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Retrieve the location of a sample @@ -44876,7 +44876,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glGetMultisamplefv")] [CLSCompliant(false)] - public static void GetMultisample(OpenTK.Graphics.OpenGL.GetMultisamplePName pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] val) { throw new NotImplementedException(); } + public static void GetMultisample(OpenTK.Graphics.OpenGL.GetMultisamplePName pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] val) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Retrieve the location of a sample @@ -44892,7 +44892,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glGetMultisamplefv")] [CLSCompliant(false)] - public static void GetMultisample(OpenTK.Graphics.OpenGL.GetMultisamplePName pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single val) { throw new NotImplementedException(); } + public static void GetMultisample(OpenTK.Graphics.OpenGL.GetMultisamplePName pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single val) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Retrieve the location of a sample @@ -44908,7 +44908,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glGetMultisamplefv")] [CLSCompliant(false)] - public static unsafe void GetMultisample(OpenTK.Graphics.OpenGL.GetMultisamplePName pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* val) { throw new NotImplementedException(); } + public static unsafe void GetMultisample(OpenTK.Graphics.OpenGL.GetMultisamplePName pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* val) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44916,7 +44916,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteri64v")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44924,7 +44924,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteri64v")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44932,7 +44932,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteri64v")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44940,7 +44940,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteri64v")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44948,7 +44948,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteri64v")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44956,7 +44956,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteri64v")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44964,7 +44964,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44972,7 +44972,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44980,7 +44980,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44988,7 +44988,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44996,7 +44996,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45004,7 +45004,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45012,7 +45012,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferPointerv")] [CLSCompliant(false)] - public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } + public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45022,7 +45022,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45032,7 +45032,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45042,7 +45042,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45052,7 +45052,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45060,7 +45060,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferPointerv")] [CLSCompliant(false)] - public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } + public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45070,7 +45070,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45080,7 +45080,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45090,7 +45090,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45100,7 +45100,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45109,7 +45109,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferSubData")] [CLSCompliant(false)] - public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } + public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [OutAttribute] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45120,7 +45120,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45131,7 +45131,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45142,7 +45142,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45153,7 +45153,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45162,7 +45162,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferSubData")] [CLSCompliant(false)] - public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } + public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [OutAttribute] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45173,7 +45173,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45184,7 +45184,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45195,7 +45195,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45206,7 +45206,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45215,7 +45215,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferSubData")] [CLSCompliant(false)] - public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } + public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [OutAttribute] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45226,7 +45226,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45237,7 +45237,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45248,7 +45248,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45259,7 +45259,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45268,7 +45268,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferSubData")] [CLSCompliant(false)] - public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } + public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [OutAttribute] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45279,7 +45279,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45290,7 +45290,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45301,7 +45301,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45312,7 +45312,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45321,7 +45321,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45330,7 +45330,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45339,7 +45339,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45348,7 +45348,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45357,7 +45357,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45366,7 +45366,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45374,7 +45374,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45382,7 +45382,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45390,7 +45390,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45398,7 +45398,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45406,7 +45406,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45414,7 +45414,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45422,7 +45422,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedRenderbufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45430,7 +45430,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedRenderbufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45438,7 +45438,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedRenderbufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45446,7 +45446,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedRenderbufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45454,7 +45454,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedRenderbufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45462,7 +45462,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedRenderbufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45471,7 +45471,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnColorTable")] - public static void GetnColorTable(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [OutAttribute] IntPtr table) { throw new NotImplementedException(); } + public static void GetnColorTable(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [OutAttribute] IntPtr table) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45483,7 +45483,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnColorTable(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T4[] table) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45495,7 +45495,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnColorTable(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T4[,] table) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45507,7 +45507,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnColorTable(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T4[,,] table) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45518,7 +45518,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnColorTable")] public static void GetnColorTable(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] ref T4 table) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45526,7 +45526,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnCompressedTexImage")] - public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.Version45 target, Int32 lod, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.Version45 target, Int32 lod, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45537,7 +45537,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.Version45 target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute] T3[] pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45548,7 +45548,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.Version45 target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute] T3[,] pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45559,7 +45559,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.Version45 target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute] T3[,,] pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45569,7 +45569,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnCompressedTexImage")] public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.Version45 target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute] ref T3 pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45578,7 +45578,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnConvolutionFilter")] - public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [OutAttribute] IntPtr image) { throw new NotImplementedException(); } + public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [OutAttribute] IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45590,7 +45590,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T4[] image) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45602,7 +45602,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T4[,] image) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45614,7 +45614,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T4[,,] image) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45625,7 +45625,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnConvolutionFilter")] public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] ref T4 image) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45635,7 +45635,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnHistogram")] - public static void GetnHistogram(OpenTK.Graphics.OpenGL.Version45 target, bool reset, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [OutAttribute] IntPtr values) { throw new NotImplementedException(); } + public static void GetnHistogram(OpenTK.Graphics.OpenGL.Version45 target, bool reset, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [OutAttribute] IntPtr values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45648,7 +45648,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnHistogram(OpenTK.Graphics.OpenGL.Version45 target, bool reset, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T5[] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45661,7 +45661,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnHistogram(OpenTK.Graphics.OpenGL.Version45 target, bool reset, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T5[,] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45674,7 +45674,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnHistogram(OpenTK.Graphics.OpenGL.Version45 target, bool reset, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T5[,,] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45686,7 +45686,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnHistogram")] public static void GetnHistogram(OpenTK.Graphics.OpenGL.Version45 target, bool reset, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] ref T5 values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45695,7 +45695,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapdv")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] Double[] v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45704,7 +45704,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapdv")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] out Double v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] out Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45713,7 +45713,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapdv")] [CLSCompliant(false)] - public static unsafe void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] Double* v) { throw new NotImplementedException(); } + public static unsafe void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45722,7 +45722,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapfv")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] Single[] v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45731,7 +45731,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapfv")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] out Single v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] out Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45740,7 +45740,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapfv")] [CLSCompliant(false)] - public static unsafe void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] Single* v) { throw new NotImplementedException(); } + public static unsafe void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45749,7 +45749,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapiv")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] Int32[] v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45758,7 +45758,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapiv")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] out Int32 v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] out Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45767,7 +45767,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapiv")] [CLSCompliant(false)] - public static unsafe void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] Int32* v) { throw new NotImplementedException(); } + public static unsafe void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45777,7 +45777,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMinmax")] - public static void GetnMinmax(OpenTK.Graphics.OpenGL.Version45 target, bool reset, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [OutAttribute] IntPtr values) { throw new NotImplementedException(); } + public static void GetnMinmax(OpenTK.Graphics.OpenGL.Version45 target, bool reset, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [OutAttribute] IntPtr values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45790,7 +45790,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnMinmax(OpenTK.Graphics.OpenGL.Version45 target, bool reset, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T5[] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45803,7 +45803,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnMinmax(OpenTK.Graphics.OpenGL.Version45 target, bool reset, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T5[,] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45816,7 +45816,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnMinmax(OpenTK.Graphics.OpenGL.Version45 target, bool reset, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T5[,,] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45828,7 +45828,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMinmax")] public static void GetnMinmax(OpenTK.Graphics.OpenGL.Version45 target, bool reset, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] ref T5 values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45836,7 +45836,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapfv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] Single[] values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] Single[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45844,7 +45844,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapfv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] out Single values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] out Single values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45852,7 +45852,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapfv")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] Single* values) { throw new NotImplementedException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] Single* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45860,7 +45860,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapuiv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] Int32[] values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45868,7 +45868,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapuiv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] out Int32 values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45876,7 +45876,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapuiv")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45884,7 +45884,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapuiv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] UInt32[] values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] UInt32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45892,7 +45892,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapuiv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] out UInt32 values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] out UInt32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45900,7 +45900,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapuiv")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] UInt32* values) { throw new NotImplementedException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] UInt32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45908,7 +45908,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapusv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] Int16[] values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] Int16[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45916,7 +45916,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapusv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] out Int16 values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] out Int16 values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45924,7 +45924,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapusv")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] Int16* values) { throw new NotImplementedException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] Int16* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45932,7 +45932,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapusv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] UInt16[] values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] UInt16[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45940,7 +45940,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapusv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] out UInt16 values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] out UInt16 values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45948,33 +45948,33 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapusv")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] UInt16* values) { throw new NotImplementedException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] UInt16* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPolygonStipple")] [CLSCompliant(false)] - public static Byte GetnPolygonStipple() { throw new NotImplementedException(); } + public static Byte GetnPolygonStipple() { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPolygonStipple")] [CLSCompliant(false)] - public static void GetnPolygonStipple(Int32 bufSize, [OutAttribute] Byte[] pattern) { throw new NotImplementedException(); } + public static void GetnPolygonStipple(Int32 bufSize, [OutAttribute] Byte[] pattern) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPolygonStipple")] [CLSCompliant(false)] - public static void GetnPolygonStipple(Int32 bufSize, [OutAttribute] out Byte pattern) { throw new NotImplementedException(); } + public static void GetnPolygonStipple(Int32 bufSize, [OutAttribute] out Byte pattern) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPolygonStipple")] [CLSCompliant(false)] - public static unsafe void GetnPolygonStipple(Int32 bufSize, [OutAttribute] Byte* pattern) { throw new NotImplementedException(); } + public static unsafe void GetnPolygonStipple(Int32 bufSize, [OutAttribute] Byte* pattern) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45986,7 +45986,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnSeparableFilter")] - public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 rowBufSize, [OutAttribute] IntPtr row, Int32 columnBufSize, [OutAttribute] IntPtr column, [OutAttribute] IntPtr span) { throw new NotImplementedException(); } + public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 rowBufSize, [OutAttribute] IntPtr row, Int32 columnBufSize, [OutAttribute] IntPtr column, [OutAttribute] IntPtr span) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -46003,7 +46003,7 @@ namespace OpenTK.Graphics.OpenGL where T4 : struct where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -46020,7 +46020,7 @@ namespace OpenTK.Graphics.OpenGL where T4 : struct where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -46037,7 +46037,7 @@ namespace OpenTK.Graphics.OpenGL where T4 : struct where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -46053,7 +46053,7 @@ namespace OpenTK.Graphics.OpenGL where T4 : struct where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -46063,7 +46063,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnTexImage")] - public static void GetnTexImage(OpenTK.Graphics.OpenGL.Version45 target, Int32 level, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetnTexImage(OpenTK.Graphics.OpenGL.Version45 target, Int32 level, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -46076,7 +46076,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnTexImage(OpenTK.Graphics.OpenGL.Version45 target, Int32 level, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T5[] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -46089,7 +46089,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnTexImage(OpenTK.Graphics.OpenGL.Version45 target, Int32 level, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T5[,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -46102,7 +46102,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnTexImage(OpenTK.Graphics.OpenGL.Version45 target, Int32 level, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T5[,,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -46114,7 +46114,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnTexImage")] public static void GetnTexImage(OpenTK.Graphics.OpenGL.Version45 target, Int32 level, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] ref T5 pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -46123,7 +46123,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformdv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -46132,7 +46132,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformdv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Double @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -46141,7 +46141,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformdv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -46150,7 +46150,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformdv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -46159,7 +46159,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformdv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Double @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -46168,7 +46168,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformdv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -46177,7 +46177,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -46186,7 +46186,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -46195,7 +46195,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -46204,7 +46204,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -46213,7 +46213,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -46222,7 +46222,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -46231,7 +46231,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -46240,7 +46240,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -46249,7 +46249,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -46258,7 +46258,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -46267,7 +46267,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -46276,7 +46276,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -46285,7 +46285,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformuiv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -46294,7 +46294,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformuiv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -46303,7 +46303,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformuiv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a named object identified within a namespace @@ -46325,7 +46325,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a named object identified within a namespace @@ -46347,7 +46347,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a named object identified within a namespace @@ -46369,7 +46369,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a named object identified within a namespace @@ -46391,7 +46391,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a named object identified within a namespace @@ -46413,7 +46413,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a named object identified within a namespace @@ -46435,7 +46435,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -46455,7 +46455,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] - public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -46475,7 +46475,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] - public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -46495,7 +46495,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] - public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -46517,7 +46517,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -46539,7 +46539,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -46561,7 +46561,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -46583,7 +46583,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -46605,7 +46605,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -46627,7 +46627,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -46649,7 +46649,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -46671,7 +46671,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -46693,7 +46693,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -46715,7 +46715,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -46737,7 +46737,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -46759,7 +46759,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the specified pixel map @@ -46769,7 +46769,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPixelMapfv")] [CLSCompliant(false)] - public static Single GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map) { throw new NotImplementedException(); } + public static Single GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the specified pixel map @@ -46782,7 +46782,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPixelMapfv")] [CLSCompliant(false)] - public static void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] Single[] values) { throw new NotImplementedException(); } + public static void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] Single[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the specified pixel map @@ -46795,7 +46795,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPixelMapfv")] [CLSCompliant(false)] - public static void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] out Single values) { throw new NotImplementedException(); } + public static void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] out Single values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the specified pixel map @@ -46808,7 +46808,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPixelMapfv")] [CLSCompliant(false)] - public static unsafe void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] Single* values) { throw new NotImplementedException(); } + public static unsafe void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] Single* values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the specified pixel map @@ -46821,7 +46821,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPixelMapuiv")] [CLSCompliant(false)] - public static void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] Int32[] values) { throw new NotImplementedException(); } + public static void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the specified pixel map @@ -46834,7 +46834,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPixelMapuiv")] [CLSCompliant(false)] - public static void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] out Int32 values) { throw new NotImplementedException(); } + public static void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the specified pixel map @@ -46847,7 +46847,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPixelMapuiv")] [CLSCompliant(false)] - public static unsafe void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the specified pixel map @@ -46860,7 +46860,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPixelMapuiv")] [CLSCompliant(false)] - public static void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] UInt32[] values) { throw new NotImplementedException(); } + public static void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] UInt32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the specified pixel map @@ -46873,7 +46873,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPixelMapuiv")] [CLSCompliant(false)] - public static void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] out UInt32 values) { throw new NotImplementedException(); } + public static void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] out UInt32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the specified pixel map @@ -46886,7 +46886,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPixelMapuiv")] [CLSCompliant(false)] - public static unsafe void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] UInt32* values) { throw new NotImplementedException(); } + public static unsafe void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] UInt32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the specified pixel map @@ -46899,7 +46899,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPixelMapusv")] [CLSCompliant(false)] - public static void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] Int16[] values) { throw new NotImplementedException(); } + public static void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] Int16[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the specified pixel map @@ -46912,7 +46912,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPixelMapusv")] [CLSCompliant(false)] - public static void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] out Int16 values) { throw new NotImplementedException(); } + public static void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] out Int16 values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the specified pixel map @@ -46925,7 +46925,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPixelMapusv")] [CLSCompliant(false)] - public static unsafe void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] Int16* values) { throw new NotImplementedException(); } + public static unsafe void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] Int16* values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the specified pixel map @@ -46938,7 +46938,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPixelMapusv")] [CLSCompliant(false)] - public static void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] UInt16[] values) { throw new NotImplementedException(); } + public static void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] UInt16[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the specified pixel map @@ -46951,7 +46951,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPixelMapusv")] [CLSCompliant(false)] - public static void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] out UInt16 values) { throw new NotImplementedException(); } + public static void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] out UInt16 values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the specified pixel map @@ -46964,7 +46964,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPixelMapusv")] [CLSCompliant(false)] - public static unsafe void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] UInt16* values) { throw new NotImplementedException(); } + public static unsafe void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] UInt16* values) { throw new BindingsNotRewrittenException(); } /// /// @@ -46972,7 +46972,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: size] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetPixelMapxv")] [CLSCompliant(false)] - public static void GetPixelMapx(OpenTK.Graphics.OpenGL.OesFixedPoint map, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32[] values) { throw new NotImplementedException(); } + public static void GetPixelMapx(OpenTK.Graphics.OpenGL.OesFixedPoint map, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// /// @@ -46980,7 +46980,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: size] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetPixelMapxv")] [CLSCompliant(false)] - public static void GetPixelMapx(OpenTK.Graphics.OpenGL.OesFixedPoint map, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out Int32 values) { throw new NotImplementedException(); } + public static void GetPixelMapx(OpenTK.Graphics.OpenGL.OesFixedPoint map, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// /// @@ -46988,7 +46988,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: size] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetPixelMapxv")] [CLSCompliant(false)] - public static unsafe void GetPixelMapx(OpenTK.Graphics.OpenGL.OesFixedPoint map, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetPixelMapx(OpenTK.Graphics.OpenGL.OesFixedPoint map, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1 or KHR_debug|VERSION_1_1|VERSION_4_3|VERSION_4_3] /// Return the address of the specified pointer @@ -47000,7 +47000,7 @@ namespace OpenTK.Graphics.OpenGL /// Returns the pointer value specified by pname. /// [AutoGenerated(Category = "KHR_debug|VERSION_1_1|VERSION_4_3|VERSION_4_3", Version = "1.1", EntryPoint = "glGetPointerv")] - public static void GetPointer(OpenTK.Graphics.OpenGL.GetPointervPName pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetPointer(OpenTK.Graphics.OpenGL.GetPointervPName pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1 or KHR_debug|VERSION_1_1|VERSION_4_3|VERSION_4_3] /// Return the address of the specified pointer @@ -47015,7 +47015,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1 or KHR_debug|VERSION_1_1|VERSION_4_3|VERSION_4_3] /// Return the address of the specified pointer @@ -47030,7 +47030,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1 or KHR_debug|VERSION_1_1|VERSION_4_3|VERSION_4_3] /// Return the address of the specified pointer @@ -47045,7 +47045,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1 or KHR_debug|VERSION_1_1|VERSION_4_3|VERSION_4_3] /// Return the address of the specified pointer @@ -47059,14 +47059,14 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "KHR_debug|VERSION_1_1|VERSION_4_3|VERSION_4_3", Version = "1.1", EntryPoint = "glGetPointerv")] public static void GetPointer(OpenTK.Graphics.OpenGL.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the polygon stipple pattern /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPolygonStipple")] [CLSCompliant(false)] - public static Byte GetPolygonStipple() { throw new NotImplementedException(); } + public static Byte GetPolygonStipple() { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the polygon stipple pattern @@ -47076,7 +47076,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPolygonStipple")] [CLSCompliant(false)] - public static void GetPolygonStipple([OutAttribute, CountAttribute(Computed = "")] Byte[] mask) { throw new NotImplementedException(); } + public static void GetPolygonStipple([OutAttribute, CountAttribute(Computed = "")] Byte[] mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the polygon stipple pattern @@ -47086,7 +47086,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPolygonStipple")] [CLSCompliant(false)] - public static void GetPolygonStipple([OutAttribute, CountAttribute(Computed = "")] out Byte mask) { throw new NotImplementedException(); } + public static void GetPolygonStipple([OutAttribute, CountAttribute(Computed = "")] out Byte mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the polygon stipple pattern @@ -47096,7 +47096,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPolygonStipple")] [CLSCompliant(false)] - public static unsafe void GetPolygonStipple([OutAttribute, CountAttribute(Computed = "")] Byte* mask) { throw new NotImplementedException(); } + public static unsafe void GetPolygonStipple([OutAttribute, CountAttribute(Computed = "")] Byte* mask) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -47118,7 +47118,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] [CLSCompliant(false)] - public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -47142,7 +47142,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -47166,7 +47166,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -47190,7 +47190,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -47214,7 +47214,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -47236,7 +47236,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] [CLSCompliant(false)] - public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.BinaryFormat* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.BinaryFormat* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -47260,7 +47260,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.BinaryFormat* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -47284,7 +47284,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.BinaryFormat* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -47308,7 +47308,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.BinaryFormat* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -47332,7 +47332,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.BinaryFormat* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -47354,7 +47354,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] [CLSCompliant(false)] - public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -47378,7 +47378,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -47402,7 +47402,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -47426,7 +47426,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -47450,7 +47450,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -47472,7 +47472,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] [CLSCompliant(false)] - public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.BinaryFormat* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.BinaryFormat* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -47496,7 +47496,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.BinaryFormat* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -47520,7 +47520,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.BinaryFormat* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -47544,7 +47544,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.BinaryFormat* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -47568,7 +47568,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.BinaryFormat* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the information log for a program object @@ -47587,7 +47587,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] [CLSCompliant(false)] - public static void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the information log for a program object @@ -47606,7 +47606,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] [CLSCompliant(false)] - public static unsafe void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the information log for a program object @@ -47625,7 +47625,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] [CLSCompliant(false)] - public static void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the information log for a program object @@ -47644,7 +47644,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] [CLSCompliant(false)] - public static unsafe void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query a property of an interface in a program @@ -47663,7 +47663,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramInterfaceiv")] [CLSCompliant(false)] - public static void GetProgramInterface(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, OpenTK.Graphics.OpenGL.ProgramInterfaceParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramInterface(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, OpenTK.Graphics.OpenGL.ProgramInterfaceParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query a property of an interface in a program @@ -47682,7 +47682,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramInterfaceiv")] [CLSCompliant(false)] - public static void GetProgramInterface(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, OpenTK.Graphics.OpenGL.ProgramInterfaceParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramInterface(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, OpenTK.Graphics.OpenGL.ProgramInterfaceParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query a property of an interface in a program @@ -47701,7 +47701,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramInterfaceiv")] [CLSCompliant(false)] - public static unsafe void GetProgramInterface(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, OpenTK.Graphics.OpenGL.ProgramInterfaceParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramInterface(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, OpenTK.Graphics.OpenGL.ProgramInterfaceParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query a property of an interface in a program @@ -47720,7 +47720,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramInterfaceiv")] [CLSCompliant(false)] - public static void GetProgramInterface(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, OpenTK.Graphics.OpenGL.ProgramInterfaceParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramInterface(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, OpenTK.Graphics.OpenGL.ProgramInterfaceParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query a property of an interface in a program @@ -47739,7 +47739,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramInterfaceiv")] [CLSCompliant(false)] - public static void GetProgramInterface(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, OpenTK.Graphics.OpenGL.ProgramInterfaceParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramInterface(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, OpenTK.Graphics.OpenGL.ProgramInterfaceParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query a property of an interface in a program @@ -47758,7 +47758,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramInterfaceiv")] [CLSCompliant(false)] - public static unsafe void GetProgramInterface(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, OpenTK.Graphics.OpenGL.ProgramInterfaceParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramInterface(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, OpenTK.Graphics.OpenGL.ProgramInterfaceParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a program object @@ -47774,7 +47774,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(Int32 program, OpenTK.Graphics.OpenGL.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgram(Int32 program, OpenTK.Graphics.OpenGL.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a program object @@ -47790,7 +47790,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(Int32 program, OpenTK.Graphics.OpenGL.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(Int32 program, OpenTK.Graphics.OpenGL.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a program object @@ -47806,7 +47806,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static unsafe void GetProgram(Int32 program, OpenTK.Graphics.OpenGL.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(Int32 program, OpenTK.Graphics.OpenGL.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a program object @@ -47823,7 +47823,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use GetProgramParameterName overload instead")] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(Int32 program, OpenTK.Graphics.OpenGL.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgram(Int32 program, OpenTK.Graphics.OpenGL.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a program object @@ -47840,7 +47840,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use GetProgramParameterName overload instead")] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(Int32 program, OpenTK.Graphics.OpenGL.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(Int32 program, OpenTK.Graphics.OpenGL.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a program object @@ -47857,7 +47857,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use GetProgramParameterName overload instead")] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static unsafe void GetProgram(Int32 program, OpenTK.Graphics.OpenGL.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(Int32 program, OpenTK.Graphics.OpenGL.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a program object @@ -47873,7 +47873,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a program object @@ -47889,7 +47889,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a program object @@ -47905,7 +47905,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static unsafe void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a program object @@ -47922,7 +47922,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use GetProgramParameterName overload instead")] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a program object @@ -47939,7 +47939,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use GetProgramParameterName overload instead")] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a program object @@ -47956,7 +47956,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use GetProgramParameterName overload instead")] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static unsafe void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve the info log string from a program pipeline object @@ -47976,7 +47976,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineInfoLog")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve the info log string from a program pipeline object @@ -47996,7 +47996,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineInfoLog")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve the info log string from a program pipeline object @@ -48016,7 +48016,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineInfoLog")] [CLSCompliant(false)] - public static unsafe void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve the info log string from a program pipeline object @@ -48036,7 +48036,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineInfoLog")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve the info log string from a program pipeline object @@ -48056,7 +48056,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineInfoLog")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve the info log string from a program pipeline object @@ -48076,7 +48076,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineInfoLog")] [CLSCompliant(false)] - public static unsafe void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve properties of a program pipeline object @@ -48092,7 +48092,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineiv")] [CLSCompliant(false)] - public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL.ProgramPipelineParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL.ProgramPipelineParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve properties of a program pipeline object @@ -48108,7 +48108,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineiv")] [CLSCompliant(false)] - public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL.ProgramPipelineParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL.ProgramPipelineParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve properties of a program pipeline object @@ -48124,7 +48124,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineiv")] [CLSCompliant(false)] - public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL.ProgramPipelineParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL.ProgramPipelineParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve properties of a program pipeline object @@ -48140,7 +48140,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineiv")] [CLSCompliant(false)] - public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL.ProgramPipelineParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL.ProgramPipelineParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve properties of a program pipeline object @@ -48156,7 +48156,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineiv")] [CLSCompliant(false)] - public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL.ProgramPipelineParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL.ProgramPipelineParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve properties of a program pipeline object @@ -48172,7 +48172,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineiv")] [CLSCompliant(false)] - public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL.ProgramPipelineParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL.ProgramPipelineParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the index of a named resource within a program @@ -48188,7 +48188,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceIndex")] [CLSCompliant(false)] - public static Int32 GetProgramResourceIndex(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceIndex(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the index of a named resource within a program @@ -48204,7 +48204,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceIndex")] [CLSCompliant(false)] - public static Int32 GetProgramResourceIndex(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceIndex(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Retrieve values for multiple properties of a single active resource within a program object @@ -48224,7 +48224,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] - public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL.ProgramProperty[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL.ProgramProperty[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Retrieve values for multiple properties of a single active resource within a program object @@ -48243,7 +48243,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] - public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL.ProgramProperty[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL.ProgramProperty[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Retrieve values for multiple properties of a single active resource within a program object @@ -48263,7 +48263,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] - public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] ref OpenTK.Graphics.OpenGL.ProgramProperty props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] ref OpenTK.Graphics.OpenGL.ProgramProperty props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Retrieve values for multiple properties of a single active resource within a program object @@ -48283,7 +48283,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] - public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL.ProgramProperty* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL.ProgramProperty* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Retrieve values for multiple properties of a single active resource within a program object @@ -48303,7 +48303,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] - public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL.ProgramProperty[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL.ProgramProperty[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Retrieve values for multiple properties of a single active resource within a program object @@ -48322,7 +48322,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] - public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL.ProgramProperty[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL.ProgramProperty[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Retrieve values for multiple properties of a single active resource within a program object @@ -48342,7 +48342,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] - public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] ref OpenTK.Graphics.OpenGL.ProgramProperty props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] ref OpenTK.Graphics.OpenGL.ProgramProperty props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Retrieve values for multiple properties of a single active resource within a program object @@ -48362,7 +48362,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] - public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL.ProgramProperty* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL.ProgramProperty* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the location of a named resource within a program @@ -48378,7 +48378,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceLocation")] [CLSCompliant(false)] - public static Int32 GetProgramResourceLocation(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceLocation(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the location of a named resource within a program @@ -48394,7 +48394,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceLocation")] [CLSCompliant(false)] - public static Int32 GetProgramResourceLocation(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceLocation(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the fragment color index of a named variable within a program @@ -48410,7 +48410,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceLocationIndex")] [CLSCompliant(false)] - public static Int32 GetProgramResourceLocationIndex(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceLocationIndex(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the fragment color index of a named variable within a program @@ -48426,7 +48426,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceLocationIndex")] [CLSCompliant(false)] - public static Int32 GetProgramResourceLocationIndex(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceLocationIndex(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the name of an indexed resource within a program @@ -48452,7 +48452,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceName")] [CLSCompliant(false)] - public static void GetProgramResourceName(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetProgramResourceName(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the name of an indexed resource within a program @@ -48478,7 +48478,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceName")] [CLSCompliant(false)] - public static void GetProgramResourceName(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetProgramResourceName(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the name of an indexed resource within a program @@ -48504,7 +48504,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceName")] [CLSCompliant(false)] - public static unsafe void GetProgramResourceName(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetProgramResourceName(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the name of an indexed resource within a program @@ -48530,7 +48530,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceName")] [CLSCompliant(false)] - public static void GetProgramResourceName(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetProgramResourceName(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the name of an indexed resource within a program @@ -48556,7 +48556,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceName")] [CLSCompliant(false)] - public static void GetProgramResourceName(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetProgramResourceName(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the name of an indexed resource within a program @@ -48582,7 +48582,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceName")] [CLSCompliant(false)] - public static unsafe void GetProgramResourceName(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetProgramResourceName(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve properties of a program object corresponding to a specified shader stage @@ -48601,7 +48601,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetProgramStageiv")] [CLSCompliant(false)] - public static void GetProgramStage(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, OpenTK.Graphics.OpenGL.ProgramStageParameter pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 values) { throw new NotImplementedException(); } + public static void GetProgramStage(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, OpenTK.Graphics.OpenGL.ProgramStageParameter pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve properties of a program object corresponding to a specified shader stage @@ -48620,7 +48620,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetProgramStageiv")] [CLSCompliant(false)] - public static unsafe void GetProgramStage(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, OpenTK.Graphics.OpenGL.ProgramStageParameter pname, [OutAttribute, CountAttribute(Count = 1)] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetProgramStage(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, OpenTK.Graphics.OpenGL.ProgramStageParameter pname, [OutAttribute, CountAttribute(Count = 1)] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve properties of a program object corresponding to a specified shader stage @@ -48639,7 +48639,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetProgramStageiv")] [CLSCompliant(false)] - public static void GetProgramStage(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, OpenTK.Graphics.OpenGL.ProgramStageParameter pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 values) { throw new NotImplementedException(); } + public static void GetProgramStage(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, OpenTK.Graphics.OpenGL.ProgramStageParameter pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve properties of a program object corresponding to a specified shader stage @@ -48658,7 +48658,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetProgramStageiv")] [CLSCompliant(false)] - public static unsafe void GetProgramStage(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, OpenTK.Graphics.OpenGL.ProgramStageParameter pname, [OutAttribute, CountAttribute(Count = 1)] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetProgramStage(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, OpenTK.Graphics.OpenGL.ProgramStageParameter pname, [OutAttribute, CountAttribute(Count = 1)] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -48667,7 +48667,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetQueryBufferObjecti64v")] [CLSCompliant(false)] - public static void GetQueryBufferObject(Int32 id, Int32 buffer, OpenTK.Graphics.OpenGL.All pname, IntPtr offset) { throw new NotImplementedException(); } + public static void GetQueryBufferObject(Int32 id, Int32 buffer, OpenTK.Graphics.OpenGL.All pname, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -48676,7 +48676,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetQueryBufferObjecti64v")] [CLSCompliant(false)] - public static void GetQueryBufferObject(UInt32 id, UInt32 buffer, OpenTK.Graphics.OpenGL.All pname, IntPtr offset) { throw new NotImplementedException(); } + public static void GetQueryBufferObject(UInt32 id, UInt32 buffer, OpenTK.Graphics.OpenGL.All pname, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Return parameters of an indexed query object target @@ -48695,7 +48695,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glGetQueryIndexediv")] [CLSCompliant(false)] - public static void GetQueryIndexed(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 index, OpenTK.Graphics.OpenGL.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQueryIndexed(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 index, OpenTK.Graphics.OpenGL.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Return parameters of an indexed query object target @@ -48714,7 +48714,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glGetQueryIndexediv")] [CLSCompliant(false)] - public static void GetQueryIndexed(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 index, OpenTK.Graphics.OpenGL.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQueryIndexed(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 index, OpenTK.Graphics.OpenGL.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Return parameters of an indexed query object target @@ -48733,7 +48733,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glGetQueryIndexediv")] [CLSCompliant(false)] - public static unsafe void GetQueryIndexed(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 index, OpenTK.Graphics.OpenGL.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryIndexed(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 index, OpenTK.Graphics.OpenGL.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Return parameters of an indexed query object target @@ -48752,7 +48752,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glGetQueryIndexediv")] [CLSCompliant(false)] - public static void GetQueryIndexed(OpenTK.Graphics.OpenGL.QueryTarget target, UInt32 index, OpenTK.Graphics.OpenGL.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQueryIndexed(OpenTK.Graphics.OpenGL.QueryTarget target, UInt32 index, OpenTK.Graphics.OpenGL.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Return parameters of an indexed query object target @@ -48771,7 +48771,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glGetQueryIndexediv")] [CLSCompliant(false)] - public static void GetQueryIndexed(OpenTK.Graphics.OpenGL.QueryTarget target, UInt32 index, OpenTK.Graphics.OpenGL.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQueryIndexed(OpenTK.Graphics.OpenGL.QueryTarget target, UInt32 index, OpenTK.Graphics.OpenGL.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Return parameters of an indexed query object target @@ -48790,7 +48790,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glGetQueryIndexediv")] [CLSCompliant(false)] - public static unsafe void GetQueryIndexed(OpenTK.Graphics.OpenGL.QueryTarget target, UInt32 index, OpenTK.Graphics.OpenGL.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryIndexed(OpenTK.Graphics.OpenGL.QueryTarget target, UInt32 index, OpenTK.Graphics.OpenGL.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object target @@ -48806,7 +48806,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryiv")] [CLSCompliant(false)] - public static void GetQuery(OpenTK.Graphics.OpenGL.QueryTarget target, OpenTK.Graphics.OpenGL.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQuery(OpenTK.Graphics.OpenGL.QueryTarget target, OpenTK.Graphics.OpenGL.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object target @@ -48822,7 +48822,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryiv")] [CLSCompliant(false)] - public static void GetQuery(OpenTK.Graphics.OpenGL.QueryTarget target, OpenTK.Graphics.OpenGL.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQuery(OpenTK.Graphics.OpenGL.QueryTarget target, OpenTK.Graphics.OpenGL.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object target @@ -48838,7 +48838,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryiv")] [CLSCompliant(false)] - public static unsafe void GetQuery(OpenTK.Graphics.OpenGL.QueryTarget target, OpenTK.Graphics.OpenGL.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQuery(OpenTK.Graphics.OpenGL.QueryTarget target, OpenTK.Graphics.OpenGL.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Return parameters of a query object @@ -48854,7 +48854,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glGetQueryObjecti64v")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Return parameters of a query object @@ -48870,7 +48870,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glGetQueryObjecti64v")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Return parameters of a query object @@ -48886,7 +48886,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glGetQueryObjecti64v")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Return parameters of a query object @@ -48902,7 +48902,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glGetQueryObjecti64v")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Return parameters of a query object @@ -48918,7 +48918,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glGetQueryObjecti64v")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Return parameters of a query object @@ -48934,7 +48934,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glGetQueryObjecti64v")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object @@ -48950,7 +48950,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectiv")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object @@ -48966,7 +48966,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectiv")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object @@ -48982,7 +48982,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectiv")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object @@ -48998,7 +48998,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectiv")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object @@ -49014,7 +49014,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectiv")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object @@ -49030,7 +49030,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectiv")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Return parameters of a query object @@ -49046,7 +49046,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glGetQueryObjectui64v")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Return parameters of a query object @@ -49062,7 +49062,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glGetQueryObjectui64v")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Return parameters of a query object @@ -49078,7 +49078,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glGetQueryObjectui64v")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object @@ -49094,7 +49094,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectuiv")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object @@ -49110,7 +49110,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectuiv")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object @@ -49126,7 +49126,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectuiv")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Retrieve information about a bound renderbuffer object @@ -49142,7 +49142,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGetRenderbufferParameteriv")] [CLSCompliant(false)] - public static void GetRenderbufferParameter(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Retrieve information about a bound renderbuffer object @@ -49158,7 +49158,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGetRenderbufferParameteriv")] [CLSCompliant(false)] - public static void GetRenderbufferParameter(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Retrieve information about a bound renderbuffer object @@ -49174,7 +49174,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGetRenderbufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49191,7 +49191,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49208,7 +49208,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49225,7 +49225,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49241,7 +49241,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49257,7 +49257,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49273,7 +49273,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49290,7 +49290,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49307,7 +49307,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49324,7 +49324,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49340,7 +49340,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49356,7 +49356,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49372,7 +49372,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -49380,7 +49380,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] [CLSCompliant(false)] - public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -49388,7 +49388,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] [CLSCompliant(false)] - public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -49396,7 +49396,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -49405,7 +49405,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] [CLSCompliant(false)] - public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -49414,7 +49414,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] [CLSCompliant(false)] - public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -49423,7 +49423,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -49431,7 +49431,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -49439,7 +49439,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -49447,7 +49447,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -49456,7 +49456,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -49465,7 +49465,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -49474,7 +49474,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -49482,7 +49482,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIuiv")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -49490,7 +49490,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIuiv")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -49498,7 +49498,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIuiv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -49507,7 +49507,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIuiv")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -49516,7 +49516,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIuiv")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -49525,7 +49525,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIuiv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49542,7 +49542,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49559,7 +49559,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49576,7 +49576,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49592,7 +49592,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49608,7 +49608,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49624,7 +49624,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49641,7 +49641,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49658,7 +49658,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49675,7 +49675,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49691,7 +49691,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49707,7 +49707,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49723,7 +49723,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// /// Get separable convolution filter kernel images @@ -49747,7 +49747,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to storage for the span filter image (currently unused). /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetSeparableFilter")] - public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr row, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr column, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr span) { throw new NotImplementedException(); } + public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr row, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr column, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr span) { throw new BindingsNotRewrittenException(); } /// /// Get separable convolution filter kernel images @@ -49776,7 +49776,7 @@ namespace OpenTK.Graphics.OpenGL where T3 : struct where T4 : struct where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get separable convolution filter kernel images @@ -49805,7 +49805,7 @@ namespace OpenTK.Graphics.OpenGL where T3 : struct where T4 : struct where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get separable convolution filter kernel images @@ -49834,7 +49834,7 @@ namespace OpenTK.Graphics.OpenGL where T3 : struct where T4 : struct where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get separable convolution filter kernel images @@ -49862,7 +49862,7 @@ namespace OpenTK.Graphics.OpenGL where T3 : struct where T4 : struct where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the information log for a shader object @@ -49881,7 +49881,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] [CLSCompliant(false)] - public static void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the information log for a shader object @@ -49900,7 +49900,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] [CLSCompliant(false)] - public static unsafe void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the information log for a shader object @@ -49919,7 +49919,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] [CLSCompliant(false)] - public static void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the information log for a shader object @@ -49938,7 +49938,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] [CLSCompliant(false)] - public static unsafe void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a shader object @@ -49954,7 +49954,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static void GetShader(Int32 shader, OpenTK.Graphics.OpenGL.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetShader(Int32 shader, OpenTK.Graphics.OpenGL.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a shader object @@ -49970,7 +49970,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static void GetShader(Int32 shader, OpenTK.Graphics.OpenGL.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetShader(Int32 shader, OpenTK.Graphics.OpenGL.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a shader object @@ -49986,7 +49986,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static unsafe void GetShader(Int32 shader, OpenTK.Graphics.OpenGL.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetShader(Int32 shader, OpenTK.Graphics.OpenGL.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a shader object @@ -50002,7 +50002,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static void GetShader(UInt32 shader, OpenTK.Graphics.OpenGL.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetShader(UInt32 shader, OpenTK.Graphics.OpenGL.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a shader object @@ -50018,7 +50018,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static void GetShader(UInt32 shader, OpenTK.Graphics.OpenGL.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetShader(UInt32 shader, OpenTK.Graphics.OpenGL.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a shader object @@ -50034,7 +50034,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static unsafe void GetShader(UInt32 shader, OpenTK.Graphics.OpenGL.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetShader(UInt32 shader, OpenTK.Graphics.OpenGL.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Retrieve the range and precision for numeric formats supported by the shader compiler @@ -50053,7 +50053,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glGetShaderPrecisionFormat")] [CLSCompliant(false)] - public static void GetShaderPrecisionFormat(OpenTK.Graphics.OpenGL.ShaderType shadertype, OpenTK.Graphics.OpenGL.ShaderPrecision precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32[] range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new NotImplementedException(); } + public static void GetShaderPrecisionFormat(OpenTK.Graphics.OpenGL.ShaderType shadertype, OpenTK.Graphics.OpenGL.ShaderPrecision precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32[] range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Retrieve the range and precision for numeric formats supported by the shader compiler @@ -50072,7 +50072,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glGetShaderPrecisionFormat")] [CLSCompliant(false)] - public static void GetShaderPrecisionFormat(OpenTK.Graphics.OpenGL.ShaderType shadertype, OpenTK.Graphics.OpenGL.ShaderPrecision precisiontype, [OutAttribute, CountAttribute(Count = 2)] out Int32 range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new NotImplementedException(); } + public static void GetShaderPrecisionFormat(OpenTK.Graphics.OpenGL.ShaderType shadertype, OpenTK.Graphics.OpenGL.ShaderPrecision precisiontype, [OutAttribute, CountAttribute(Count = 2)] out Int32 range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Retrieve the range and precision for numeric formats supported by the shader compiler @@ -50091,7 +50091,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glGetShaderPrecisionFormat")] [CLSCompliant(false)] - public static unsafe void GetShaderPrecisionFormat(OpenTK.Graphics.OpenGL.ShaderType shadertype, OpenTK.Graphics.OpenGL.ShaderPrecision precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32* range, [OutAttribute, CountAttribute(Count = 1)] Int32* precision) { throw new NotImplementedException(); } + public static unsafe void GetShaderPrecisionFormat(OpenTK.Graphics.OpenGL.ShaderType shadertype, OpenTK.Graphics.OpenGL.ShaderPrecision precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32* range, [OutAttribute, CountAttribute(Count = 1)] Int32* precision) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the source code string from a shader object @@ -50110,7 +50110,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] [CLSCompliant(false)] - public static void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new NotImplementedException(); } + public static void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the source code string from a shader object @@ -50129,7 +50129,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] [CLSCompliant(false)] - public static unsafe void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new NotImplementedException(); } + public static unsafe void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the source code string from a shader object @@ -50148,7 +50148,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] [CLSCompliant(false)] - public static void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new NotImplementedException(); } + public static void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the source code string from a shader object @@ -50167,7 +50167,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] [CLSCompliant(false)] - public static unsafe void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new NotImplementedException(); } + public static unsafe void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return a string describing the current GL connection @@ -50176,7 +50176,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a symbolic constant, one of Vendor, Renderer, Version, or ShadingLanguageVersion. Additionally, glGetStringi accepts the Extensions token. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetString")] - public static String GetString(OpenTK.Graphics.OpenGL.StringName name) { throw new NotImplementedException(); } + public static String GetString(OpenTK.Graphics.OpenGL.StringName name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Return a string describing the current GL connection @@ -50190,7 +50190,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use StringNameIndexed overload instead")] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetStringi")] [CLSCompliant(false)] - public static String GetString(OpenTK.Graphics.OpenGL.StringName name, Int32 index) { throw new NotImplementedException(); } + public static String GetString(OpenTK.Graphics.OpenGL.StringName name, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Return a string describing the current GL connection @@ -50204,7 +50204,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use StringNameIndexed overload instead")] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetStringi")] [CLSCompliant(false)] - public static String GetString(OpenTK.Graphics.OpenGL.StringName name, UInt32 index) { throw new NotImplementedException(); } + public static String GetString(OpenTK.Graphics.OpenGL.StringName name, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Return a string describing the current GL connection @@ -50217,7 +50217,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetStringi")] [CLSCompliant(false)] - public static String GetString(OpenTK.Graphics.OpenGL.StringNameIndexed name, Int32 index) { throw new NotImplementedException(); } + public static String GetString(OpenTK.Graphics.OpenGL.StringNameIndexed name, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Return a string describing the current GL connection @@ -50230,7 +50230,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetStringi")] [CLSCompliant(false)] - public static String GetString(OpenTK.Graphics.OpenGL.StringNameIndexed name, UInt32 index) { throw new NotImplementedException(); } + public static String GetString(OpenTK.Graphics.OpenGL.StringNameIndexed name, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve the index of a subroutine uniform of a given shader stage within a program @@ -50246,7 +50246,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetSubroutineIndex")] [CLSCompliant(false)] - public static Int32 GetSubroutineIndex(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, String name) { throw new NotImplementedException(); } + public static Int32 GetSubroutineIndex(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve the index of a subroutine uniform of a given shader stage within a program @@ -50262,7 +50262,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetSubroutineIndex")] [CLSCompliant(false)] - public static Int32 GetSubroutineIndex(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, String name) { throw new NotImplementedException(); } + public static Int32 GetSubroutineIndex(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve the location of a subroutine uniform of a given shader stage within a program @@ -50278,7 +50278,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetSubroutineUniformLocation")] [CLSCompliant(false)] - public static Int32 GetSubroutineUniformLocation(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, String name) { throw new NotImplementedException(); } + public static Int32 GetSubroutineUniformLocation(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve the location of a subroutine uniform of a given shader stage within a program @@ -50294,7 +50294,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetSubroutineUniformLocation")] [CLSCompliant(false)] - public static Int32 GetSubroutineUniformLocation(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, String name) { throw new NotImplementedException(); } + public static Int32 GetSubroutineUniformLocation(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Query the properties of a sync object @@ -50317,7 +50317,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SyncParameterName overload instead")] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetSynciv")] [CLSCompliant(false)] - public static void GetSync(IntPtr sync, OpenTK.Graphics.OpenGL.ArbSync pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.OpenGL.ArbSync pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Query the properties of a sync object @@ -50340,7 +50340,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SyncParameterName overload instead")] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetSynciv")] [CLSCompliant(false)] - public static void GetSync(IntPtr sync, OpenTK.Graphics.OpenGL.ArbSync pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.OpenGL.ArbSync pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Query the properties of a sync object @@ -50363,7 +50363,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SyncParameterName overload instead")] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetSynciv")] [CLSCompliant(false)] - public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.OpenGL.ArbSync pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.OpenGL.ArbSync pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Query the properties of a sync object @@ -50385,7 +50385,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetSynciv")] [CLSCompliant(false)] - public static void GetSync(IntPtr sync, OpenTK.Graphics.OpenGL.SyncParameterName pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.OpenGL.SyncParameterName pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Query the properties of a sync object @@ -50407,7 +50407,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetSynciv")] [CLSCompliant(false)] - public static void GetSync(IntPtr sync, OpenTK.Graphics.OpenGL.SyncParameterName pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.OpenGL.SyncParameterName pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Query the properties of a sync object @@ -50429,7 +50429,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetSynciv")] [CLSCompliant(false)] - public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.OpenGL.SyncParameterName pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.OpenGL.SyncParameterName pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return texture environment parameters @@ -50445,7 +50445,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexEnvfv")] [CLSCompliant(false)] - public static void GetTexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return texture environment parameters @@ -50461,7 +50461,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexEnvfv")] [CLSCompliant(false)] - public static void GetTexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return texture environment parameters @@ -50477,7 +50477,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexEnvfv")] [CLSCompliant(false)] - public static unsafe void GetTexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return texture environment parameters @@ -50493,7 +50493,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexEnviv")] [CLSCompliant(false)] - public static void GetTexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return texture environment parameters @@ -50509,7 +50509,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexEnviv")] [CLSCompliant(false)] - public static void GetTexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return texture environment parameters @@ -50525,7 +50525,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexEnviv")] [CLSCompliant(false)] - public static unsafe void GetTexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return texture coordinate generation parameters @@ -50541,7 +50541,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexGendv")] [CLSCompliant(false)] - public static void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new NotImplementedException(); } + public static void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return texture coordinate generation parameters @@ -50557,7 +50557,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexGendv")] [CLSCompliant(false)] - public static void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new NotImplementedException(); } + public static void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return texture coordinate generation parameters @@ -50573,7 +50573,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexGendv")] [CLSCompliant(false)] - public static unsafe void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return texture coordinate generation parameters @@ -50589,7 +50589,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexGenfv")] [CLSCompliant(false)] - public static void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return texture coordinate generation parameters @@ -50605,7 +50605,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexGenfv")] [CLSCompliant(false)] - public static void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return texture coordinate generation parameters @@ -50621,7 +50621,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexGenfv")] [CLSCompliant(false)] - public static unsafe void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return texture coordinate generation parameters @@ -50637,7 +50637,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexGeniv")] [CLSCompliant(false)] - public static void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return texture coordinate generation parameters @@ -50653,7 +50653,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexGeniv")] [CLSCompliant(false)] - public static void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return texture coordinate generation parameters @@ -50669,7 +50669,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexGeniv")] [CLSCompliant(false)] - public static unsafe void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return a texture image @@ -50690,7 +50690,7 @@ namespace OpenTK.Graphics.OpenGL /// Returns the texture image. Should be a pointer to an array of the type specified by type. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexImage")] - public static void GetTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,level,format,type")] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,level,format,type")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return a texture image @@ -50714,7 +50714,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] T4[] pixels) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return a texture image @@ -50738,7 +50738,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] T4[,] pixels) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return a texture image @@ -50762,7 +50762,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] T4[,,] pixels) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return a texture image @@ -50785,7 +50785,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexImage")] public static void GetTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] ref T4 pixels) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values for a specific level of detail @@ -50804,7 +50804,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexLevelParameterfv")] [CLSCompliant(false)] - public static void GetTexLevelParameter(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTexLevelParameter(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values for a specific level of detail @@ -50823,7 +50823,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexLevelParameterfv")] [CLSCompliant(false)] - public static void GetTexLevelParameter(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTexLevelParameter(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values for a specific level of detail @@ -50842,7 +50842,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexLevelParameterfv")] [CLSCompliant(false)] - public static unsafe void GetTexLevelParameter(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexLevelParameter(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values for a specific level of detail @@ -50861,7 +50861,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexLevelParameteriv")] [CLSCompliant(false)] - public static void GetTexLevelParameter(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexLevelParameter(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values for a specific level of detail @@ -50880,7 +50880,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexLevelParameteriv")] [CLSCompliant(false)] - public static void GetTexLevelParameter(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexLevelParameter(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values for a specific level of detail @@ -50899,7 +50899,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexLevelParameteriv")] [CLSCompliant(false)] - public static unsafe void GetTexLevelParameter(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexLevelParameter(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -50915,7 +50915,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexParameterfv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -50931,7 +50931,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexParameterfv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -50947,7 +50947,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexParameterfv")] [CLSCompliant(false)] - public static unsafe void GetTexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -50955,7 +50955,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTexParameterIiv")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -50963,7 +50963,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTexParameterIiv")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -50971,7 +50971,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTexParameterIiv")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -50979,7 +50979,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTexParameterIuiv")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -50987,7 +50987,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTexParameterIuiv")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -50995,7 +50995,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTexParameterIuiv")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -51011,7 +51011,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexParameteriv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -51027,7 +51027,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexParameteriv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -51043,7 +51043,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexParameteriv")] [CLSCompliant(false)] - public static unsafe void GetTexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51054,7 +51054,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureImage")] [CLSCompliant(false)] - public static void GetTextureImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetTextureImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51067,7 +51067,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTextureImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51080,7 +51080,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTextureImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51093,7 +51093,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTextureImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[,,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51106,7 +51106,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTextureImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] ref T5 pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51117,7 +51117,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureImage")] [CLSCompliant(false)] - public static void GetTextureImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetTextureImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51130,7 +51130,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTextureImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51143,7 +51143,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTextureImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51156,7 +51156,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTextureImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[,,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51169,7 +51169,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTextureImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] ref T5 pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51178,7 +51178,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameterfv")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51187,7 +51187,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameterfv")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51196,7 +51196,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameterfv")] [CLSCompliant(false)] - public static unsafe void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51205,7 +51205,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameterfv")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51214,7 +51214,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameterfv")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51223,7 +51223,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameterfv")] [CLSCompliant(false)] - public static unsafe void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51232,7 +51232,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameteriv")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51241,7 +51241,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameteriv")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51250,7 +51250,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameteriv")] [CLSCompliant(false)] - public static unsafe void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51259,7 +51259,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameteriv")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51268,7 +51268,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameteriv")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51277,7 +51277,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameteriv")] [CLSCompliant(false)] - public static unsafe void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51285,7 +51285,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterfv")] [CLSCompliant(false)] - public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51293,7 +51293,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterfv")] [CLSCompliant(false)] - public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51301,7 +51301,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterfv")] [CLSCompliant(false)] - public static unsafe void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51309,7 +51309,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterfv")] [CLSCompliant(false)] - public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51317,7 +51317,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterfv")] [CLSCompliant(false)] - public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51325,7 +51325,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterfv")] [CLSCompliant(false)] - public static unsafe void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51333,7 +51333,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIiv")] [CLSCompliant(false)] - public static void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51341,7 +51341,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIiv")] [CLSCompliant(false)] - public static void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51349,7 +51349,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIiv")] [CLSCompliant(false)] - public static unsafe void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51357,7 +51357,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIiv")] [CLSCompliant(false)] - public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51365,7 +51365,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIiv")] [CLSCompliant(false)] - public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51373,7 +51373,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIiv")] [CLSCompliant(false)] - public static unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51381,7 +51381,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIuiv")] [CLSCompliant(false)] - public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51389,7 +51389,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIuiv")] [CLSCompliant(false)] - public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51397,7 +51397,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIuiv")] [CLSCompliant(false)] - public static unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51405,7 +51405,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameteriv")] [CLSCompliant(false)] - public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51413,7 +51413,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameteriv")] [CLSCompliant(false)] - public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51421,7 +51421,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameteriv")] [CLSCompliant(false)] - public static unsafe void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51429,7 +51429,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameteriv")] [CLSCompliant(false)] - public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51437,7 +51437,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameteriv")] [CLSCompliant(false)] - public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51445,7 +51445,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameteriv")] [CLSCompliant(false)] - public static unsafe void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -51462,7 +51462,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_get_texture_sub_image|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureSubImage")] [CLSCompliant(false)] - public static void GetTextureSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetTextureSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -51481,7 +51481,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTextureSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T11[] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -51500,7 +51500,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTextureSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T11[,] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -51519,7 +51519,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTextureSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T11[,,] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -51538,7 +51538,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTextureSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] ref T11 pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -51555,7 +51555,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_get_texture_sub_image|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureSubImage")] [CLSCompliant(false)] - public static void GetTextureSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetTextureSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -51574,7 +51574,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTextureSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T11[] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -51593,7 +51593,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTextureSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T11[,] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -51612,7 +51612,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTextureSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T11[,,] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -51631,7 +51631,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTextureSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] ref T11 pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51640,7 +51640,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki_v")] [CLSCompliant(false)] - public static void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51649,7 +51649,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki_v")] [CLSCompliant(false)] - public static void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51658,7 +51658,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki_v")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51667,7 +51667,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki_v")] [CLSCompliant(false)] - public static void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51676,7 +51676,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki_v")] [CLSCompliant(false)] - public static void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51685,7 +51685,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki_v")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51694,7 +51694,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki64_v")] [CLSCompliant(false)] - public static void GetTransformFeedbacki64_(Int32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] Int64[] param) { throw new NotImplementedException(); } + public static void GetTransformFeedbacki64_(Int32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] Int64[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51703,7 +51703,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki64_v")] [CLSCompliant(false)] - public static void GetTransformFeedbacki64_(Int32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] out Int64 param) { throw new NotImplementedException(); } + public static void GetTransformFeedbacki64_(Int32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] out Int64 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51712,7 +51712,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki64_v")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedbacki64_(Int32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] Int64* param) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbacki64_(Int32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] Int64* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51721,7 +51721,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki64_v")] [CLSCompliant(false)] - public static void GetTransformFeedbacki64_(UInt32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] Int64[] param) { throw new NotImplementedException(); } + public static void GetTransformFeedbacki64_(UInt32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] Int64[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51730,7 +51730,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki64_v")] [CLSCompliant(false)] - public static void GetTransformFeedbacki64_(UInt32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] out Int64 param) { throw new NotImplementedException(); } + public static void GetTransformFeedbacki64_(UInt32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] out Int64 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51739,7 +51739,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki64_v")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedbacki64_(UInt32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] Int64* param) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbacki64_(UInt32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] Int64* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51747,7 +51747,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbackiv")] [CLSCompliant(false)] - public static void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackParameter pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackParameter pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51755,7 +51755,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbackiv")] [CLSCompliant(false)] - public static void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackParameter pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackParameter pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51763,7 +51763,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbackiv")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackParameter pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackParameter pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51771,7 +51771,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbackiv")] [CLSCompliant(false)] - public static void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackParameter pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackParameter pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51779,7 +51779,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbackiv")] [CLSCompliant(false)] - public static void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackParameter pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackParameter pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51787,7 +51787,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbackiv")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackParameter pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackParameter pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Retrieve information about varying variables selected for transform feedback @@ -51815,7 +51815,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] [CLSCompliant(false)] - public static void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Retrieve information about varying variables selected for transform feedback @@ -51843,7 +51843,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] [CLSCompliant(false)] - public static void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.TransformFeedbackType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.TransformFeedbackType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Retrieve information about varying variables selected for transform feedback @@ -51871,7 +51871,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Retrieve information about varying variables selected for transform feedback @@ -51899,7 +51899,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.TransformFeedbackType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.TransformFeedbackType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Retrieve information about varying variables selected for transform feedback @@ -51927,7 +51927,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] [CLSCompliant(false)] - public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Retrieve information about varying variables selected for transform feedback @@ -51955,7 +51955,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] [CLSCompliant(false)] - public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.TransformFeedbackType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.TransformFeedbackType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Retrieve information about varying variables selected for transform feedback @@ -51983,7 +51983,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Retrieve information about varying variables selected for transform feedback @@ -52011,7 +52011,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.TransformFeedbackType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.TransformFeedbackType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the index of a named uniform block @@ -52024,7 +52024,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetUniformBlockIndex")] [CLSCompliant(false)] - public static Int32 GetUniformBlockIndex(Int32 program, [CountAttribute(Computed = "")] String uniformBlockName) { throw new NotImplementedException(); } + public static Int32 GetUniformBlockIndex(Int32 program, [CountAttribute(Computed = "")] String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the index of a named uniform block @@ -52037,7 +52037,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetUniformBlockIndex")] [CLSCompliant(false)] - public static Int32 GetUniformBlockIndex(UInt32 program, [CountAttribute(Computed = "")] String uniformBlockName) { throw new NotImplementedException(); } + public static Int32 GetUniformBlockIndex(UInt32 program, [CountAttribute(Computed = "")] String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Returns the value of a uniform variable @@ -52053,7 +52053,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glGetUniformdv")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Double[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Returns the value of a uniform variable @@ -52069,7 +52069,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glGetUniformdv")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Double @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Returns the value of a uniform variable @@ -52085,7 +52085,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glGetUniformdv")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Returns the value of a uniform variable @@ -52101,7 +52101,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glGetUniformdv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Double[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Returns the value of a uniform variable @@ -52117,7 +52117,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glGetUniformdv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Double @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Returns the value of a uniform variable @@ -52133,7 +52133,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glGetUniformdv")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -52149,7 +52149,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -52165,7 +52165,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Single @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -52181,7 +52181,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -52197,7 +52197,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -52213,7 +52213,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Single @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -52229,7 +52229,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the index of a named uniform block @@ -52248,7 +52248,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetUniformIndices")] [CLSCompliant(false)] - public static void GetUniformIndices(Int32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] Int32[] uniformIndices) { throw new NotImplementedException(); } + public static void GetUniformIndices(Int32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] Int32[] uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the index of a named uniform block @@ -52267,7 +52267,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetUniformIndices")] [CLSCompliant(false)] - public static void GetUniformIndices(Int32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] out Int32 uniformIndices) { throw new NotImplementedException(); } + public static void GetUniformIndices(Int32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] out Int32 uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the index of a named uniform block @@ -52286,7 +52286,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetUniformIndices")] [CLSCompliant(false)] - public static unsafe void GetUniformIndices(Int32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] Int32* uniformIndices) { throw new NotImplementedException(); } + public static unsafe void GetUniformIndices(Int32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] Int32* uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the index of a named uniform block @@ -52305,7 +52305,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetUniformIndices")] [CLSCompliant(false)] - public static void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] UInt32[] uniformIndices) { throw new NotImplementedException(); } + public static void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] UInt32[] uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the index of a named uniform block @@ -52324,7 +52324,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetUniformIndices")] [CLSCompliant(false)] - public static void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] out UInt32 uniformIndices) { throw new NotImplementedException(); } + public static void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] out UInt32 uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the index of a named uniform block @@ -52343,7 +52343,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetUniformIndices")] [CLSCompliant(false)] - public static unsafe void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] UInt32* uniformIndices) { throw new NotImplementedException(); } + public static unsafe void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] UInt32* uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -52359,7 +52359,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -52375,7 +52375,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -52391,7 +52391,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -52407,7 +52407,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -52423,7 +52423,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -52439,7 +52439,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the location of a uniform variable @@ -52452,7 +52452,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformLocation")] [CLSCompliant(false)] - public static Int32 GetUniformLocation(Int32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetUniformLocation(Int32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the location of a uniform variable @@ -52465,7 +52465,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformLocation")] [CLSCompliant(false)] - public static Int32 GetUniformLocation(UInt32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetUniformLocation(UInt32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve the value of a subroutine uniform of a given shader stage of the current program @@ -52481,7 +52481,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetUniformSubroutineuiv")] [CLSCompliant(false)] - public static void GetUniformSubroutine(OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 location, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetUniformSubroutine(OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 location, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve the value of a subroutine uniform of a given shader stage of the current program @@ -52497,7 +52497,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetUniformSubroutineuiv")] [CLSCompliant(false)] - public static unsafe void GetUniformSubroutine(OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 location, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniformSubroutine(OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 location, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve the value of a subroutine uniform of a given shader stage of the current program @@ -52513,7 +52513,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetUniformSubroutineuiv")] [CLSCompliant(false)] - public static void GetUniformSubroutine(OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 location, [OutAttribute, CountAttribute(Count = 1)] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetUniformSubroutine(OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 location, [OutAttribute, CountAttribute(Count = 1)] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve the value of a subroutine uniform of a given shader stage of the current program @@ -52529,7 +52529,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetUniformSubroutineuiv")] [CLSCompliant(false)] - public static unsafe void GetUniformSubroutine(OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 location, [OutAttribute, CountAttribute(Count = 1)] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniformSubroutine(OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 location, [OutAttribute, CountAttribute(Count = 1)] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Returns the value of a uniform variable @@ -52545,7 +52545,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformuiv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Returns the value of a uniform variable @@ -52561,7 +52561,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformuiv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Returns the value of a uniform variable @@ -52577,7 +52577,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformuiv")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -52586,7 +52586,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexed64iv")] [CLSCompliant(false)] - public static void GetVertexArrayIndexed64(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexed64Parameter pname, [OutAttribute] Int64[] param) { throw new NotImplementedException(); } + public static void GetVertexArrayIndexed64(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexed64Parameter pname, [OutAttribute] Int64[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -52595,7 +52595,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexed64iv")] [CLSCompliant(false)] - public static void GetVertexArrayIndexed64(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexed64Parameter pname, [OutAttribute] out Int64 param) { throw new NotImplementedException(); } + public static void GetVertexArrayIndexed64(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexed64Parameter pname, [OutAttribute] out Int64 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -52604,7 +52604,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexed64iv")] [CLSCompliant(false)] - public static unsafe void GetVertexArrayIndexed64(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexed64Parameter pname, [OutAttribute] Int64* param) { throw new NotImplementedException(); } + public static unsafe void GetVertexArrayIndexed64(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexed64Parameter pname, [OutAttribute] Int64* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -52613,7 +52613,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexed64iv")] [CLSCompliant(false)] - public static void GetVertexArrayIndexed64(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexed64Parameter pname, [OutAttribute] Int64[] param) { throw new NotImplementedException(); } + public static void GetVertexArrayIndexed64(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexed64Parameter pname, [OutAttribute] Int64[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -52622,7 +52622,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexed64iv")] [CLSCompliant(false)] - public static void GetVertexArrayIndexed64(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexed64Parameter pname, [OutAttribute] out Int64 param) { throw new NotImplementedException(); } + public static void GetVertexArrayIndexed64(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexed64Parameter pname, [OutAttribute] out Int64 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -52631,7 +52631,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexed64iv")] [CLSCompliant(false)] - public static unsafe void GetVertexArrayIndexed64(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexed64Parameter pname, [OutAttribute] Int64* param) { throw new NotImplementedException(); } + public static unsafe void GetVertexArrayIndexed64(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexed64Parameter pname, [OutAttribute] Int64* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -52640,7 +52640,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexediv")] [CLSCompliant(false)] - public static void GetVertexArrayIndexed(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexedParameter pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetVertexArrayIndexed(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexedParameter pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -52649,7 +52649,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexediv")] [CLSCompliant(false)] - public static void GetVertexArrayIndexed(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexedParameter pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetVertexArrayIndexed(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexedParameter pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -52658,7 +52658,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexediv")] [CLSCompliant(false)] - public static unsafe void GetVertexArrayIndexed(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexedParameter pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetVertexArrayIndexed(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexedParameter pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -52667,7 +52667,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexediv")] [CLSCompliant(false)] - public static void GetVertexArrayIndexed(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexedParameter pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetVertexArrayIndexed(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexedParameter pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -52676,7 +52676,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexediv")] [CLSCompliant(false)] - public static void GetVertexArrayIndexed(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexedParameter pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetVertexArrayIndexed(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexedParameter pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -52685,7 +52685,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexediv")] [CLSCompliant(false)] - public static unsafe void GetVertexArrayIndexed(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexedParameter pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetVertexArrayIndexed(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexedParameter pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -52693,7 +52693,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayiv")] [CLSCompliant(false)] - public static void GetVertexArray(Int32 vaobj, OpenTK.Graphics.OpenGL.VertexArrayParameter pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetVertexArray(Int32 vaobj, OpenTK.Graphics.OpenGL.VertexArrayParameter pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -52701,7 +52701,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayiv")] [CLSCompliant(false)] - public static void GetVertexArray(Int32 vaobj, OpenTK.Graphics.OpenGL.VertexArrayParameter pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetVertexArray(Int32 vaobj, OpenTK.Graphics.OpenGL.VertexArrayParameter pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -52709,7 +52709,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayiv")] [CLSCompliant(false)] - public static unsafe void GetVertexArray(Int32 vaobj, OpenTK.Graphics.OpenGL.VertexArrayParameter pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetVertexArray(Int32 vaobj, OpenTK.Graphics.OpenGL.VertexArrayParameter pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -52717,7 +52717,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayiv")] [CLSCompliant(false)] - public static void GetVertexArray(UInt32 vaobj, OpenTK.Graphics.OpenGL.VertexArrayParameter pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetVertexArray(UInt32 vaobj, OpenTK.Graphics.OpenGL.VertexArrayParameter pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -52725,7 +52725,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayiv")] [CLSCompliant(false)] - public static void GetVertexArray(UInt32 vaobj, OpenTK.Graphics.OpenGL.VertexArrayParameter pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetVertexArray(UInt32 vaobj, OpenTK.Graphics.OpenGL.VertexArrayParameter pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -52733,7 +52733,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayiv")] [CLSCompliant(false)] - public static unsafe void GetVertexArray(UInt32 vaobj, OpenTK.Graphics.OpenGL.VertexArrayParameter pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetVertexArray(UInt32 vaobj, OpenTK.Graphics.OpenGL.VertexArrayParameter pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -52749,7 +52749,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribdv")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -52765,7 +52765,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribdv")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -52781,7 +52781,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribdv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -52797,7 +52797,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribdv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -52813,7 +52813,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribdv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -52829,7 +52829,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribdv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -52845,7 +52845,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -52861,7 +52861,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -52877,7 +52877,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -52893,7 +52893,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -52909,7 +52909,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -52925,7 +52925,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -52933,7 +52933,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] [CLSCompliant(false)] - public static void GetVertexAttribI(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribI(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -52941,7 +52941,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribI(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribI(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -52949,7 +52949,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] [CLSCompliant(false)] - public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -52957,7 +52957,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -52965,7 +52965,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIuiv")] [CLSCompliant(false)] - public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -52973,7 +52973,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIuiv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -52989,7 +52989,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -53005,7 +53005,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -53021,7 +53021,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -53037,7 +53037,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -53053,7 +53053,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -53069,7 +53069,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -53077,7 +53077,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glGetVertexAttribLdv")] [CLSCompliant(false)] - public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -53085,7 +53085,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glGetVertexAttribLdv")] [CLSCompliant(false)] - public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -53093,7 +53093,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glGetVertexAttribLdv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -53101,7 +53101,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glGetVertexAttribLdv")] [CLSCompliant(false)] - public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -53109,7 +53109,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glGetVertexAttribLdv")] [CLSCompliant(false)] - public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -53117,7 +53117,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glGetVertexAttribLdv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return the address of the specified generic vertex attribute pointer @@ -53133,7 +53133,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] [CLSCompliant(false)] - public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameter pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new NotImplementedException(); } + public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameter pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return the address of the specified generic vertex attribute pointer @@ -53151,7 +53151,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return the address of the specified generic vertex attribute pointer @@ -53169,7 +53169,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return the address of the specified generic vertex attribute pointer @@ -53187,7 +53187,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return the address of the specified generic vertex attribute pointer @@ -53205,7 +53205,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return the address of the specified generic vertex attribute pointer @@ -53221,7 +53221,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] [CLSCompliant(false)] - public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameter pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new NotImplementedException(); } + public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameter pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return the address of the specified generic vertex attribute pointer @@ -53239,7 +53239,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return the address of the specified generic vertex attribute pointer @@ -53257,7 +53257,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return the address of the specified generic vertex attribute pointer @@ -53275,7 +53275,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return the address of the specified generic vertex attribute pointer @@ -53293,7 +53293,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify implementation-specific hints @@ -53305,7 +53305,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a symbolic constant indicating the desired behavior. Fastest, Nicest, and DontCare are accepted. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glHint")] - public static void Hint(OpenTK.Graphics.OpenGL.HintTarget target, OpenTK.Graphics.OpenGL.HintMode mode) { throw new NotImplementedException(); } + public static void Hint(OpenTK.Graphics.OpenGL.HintTarget target, OpenTK.Graphics.OpenGL.HintMode mode) { throw new BindingsNotRewrittenException(); } /// /// Define histogram table @@ -53323,7 +53323,7 @@ namespace OpenTK.Graphics.OpenGL /// If True, pixels will be consumed by the histogramming process and no drawing or texture loading will take place. If False, pixels will proceed to the minmax process after histogramming. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glHistogram")] - public static void Histogram(OpenTK.Graphics.OpenGL.HistogramTarget target, Int32 width, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink) { throw new NotImplementedException(); } + public static void Histogram(OpenTK.Graphics.OpenGL.HistogramTarget target, Int32 width, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color index @@ -53332,7 +53332,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the new value for the current color index. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glIndexd")] - public static void Index(Double c) { throw new NotImplementedException(); } + public static void Index(Double c) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color index @@ -53342,7 +53342,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glIndexdv")] [CLSCompliant(false)] - public static unsafe void Index([CountAttribute(Count = 1)] Double* c) { throw new NotImplementedException(); } + public static unsafe void Index([CountAttribute(Count = 1)] Double* c) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color index @@ -53351,7 +53351,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the new value for the current color index. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glIndexf")] - public static void Index(Single c) { throw new NotImplementedException(); } + public static void Index(Single c) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color index @@ -53361,7 +53361,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glIndexfv")] [CLSCompliant(false)] - public static unsafe void Index([CountAttribute(Count = 1)] Single* c) { throw new NotImplementedException(); } + public static unsafe void Index([CountAttribute(Count = 1)] Single* c) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color index @@ -53370,7 +53370,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the new value for the current color index. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glIndexi")] - public static void Index(Int32 c) { throw new NotImplementedException(); } + public static void Index(Int32 c) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color index @@ -53380,7 +53380,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glIndexiv")] [CLSCompliant(false)] - public static unsafe void Index([CountAttribute(Count = 1)] Int32* c) { throw new NotImplementedException(); } + public static unsafe void Index([CountAttribute(Count = 1)] Int32* c) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Control the writing of individual bits in the color index buffers @@ -53390,7 +53390,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glIndexMask")] [CLSCompliant(false)] - public static void IndexMask(Int32 mask) { throw new NotImplementedException(); } + public static void IndexMask(Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Control the writing of individual bits in the color index buffers @@ -53400,7 +53400,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glIndexMask")] [CLSCompliant(false)] - public static void IndexMask(UInt32 mask) { throw new NotImplementedException(); } + public static void IndexMask(UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of color indexes @@ -53415,7 +53415,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the first index in the array. The initial value is 0. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glIndexPointer")] - public static void IndexPointer(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void IndexPointer(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of color indexes @@ -53433,7 +53433,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void IndexPointer(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of color indexes @@ -53451,7 +53451,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void IndexPointer(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of color indexes @@ -53469,7 +53469,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void IndexPointer(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of color indexes @@ -53486,7 +53486,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glIndexPointer")] public static void IndexPointer(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color index @@ -53495,7 +53495,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the new value for the current color index. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glIndexs")] - public static void Index(Int16 c) { throw new NotImplementedException(); } + public static void Index(Int16 c) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color index @@ -53505,7 +53505,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glIndexsv")] [CLSCompliant(false)] - public static unsafe void Index([CountAttribute(Count = 1)] Int16* c) { throw new NotImplementedException(); } + public static unsafe void Index([CountAttribute(Count = 1)] Int16* c) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Set the current color index @@ -53514,7 +53514,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the new value for the current color index. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glIndexub")] - public static void Index(Byte c) { throw new NotImplementedException(); } + public static void Index(Byte c) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Set the current color index @@ -53524,13 +53524,13 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glIndexubv")] [CLSCompliant(false)] - public static unsafe void Index([CountAttribute(Count = 1)] Byte* c) { throw new NotImplementedException(); } + public static unsafe void Index([CountAttribute(Count = 1)] Byte* c) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Initialize the name stack /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glInitNames")] - public static void InitNames() { throw new NotImplementedException(); } + public static void InitNames() { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Simultaneously specify and enable several interleaved arrays @@ -53543,7 +53543,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: COMPSIZE(format,stride)] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glInterleavedArrays")] - public static void InterleavedArrays(OpenTK.Graphics.OpenGL.InterleavedArrayFormat format, Int32 stride, [CountAttribute(Computed = "format,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void InterleavedArrays(OpenTK.Graphics.OpenGL.InterleavedArrayFormat format, Int32 stride, [CountAttribute(Computed = "format,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Simultaneously specify and enable several interleaved arrays @@ -53559,7 +53559,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void InterleavedArrays(OpenTK.Graphics.OpenGL.InterleavedArrayFormat format, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "format,stride")] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Simultaneously specify and enable several interleaved arrays @@ -53575,7 +53575,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void InterleavedArrays(OpenTK.Graphics.OpenGL.InterleavedArrayFormat format, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "format,stride")] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Simultaneously specify and enable several interleaved arrays @@ -53591,7 +53591,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void InterleavedArrays(OpenTK.Graphics.OpenGL.InterleavedArrayFormat format, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "format,stride")] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Simultaneously specify and enable several interleaved arrays @@ -53606,7 +53606,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glInterleavedArrays")] public static void InterleavedArrays(OpenTK.Graphics.OpenGL.InterleavedArrayFormat format, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "format,stride")] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate the content of a buffer object's data store @@ -53616,7 +53616,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateBufferData")] [CLSCompliant(false)] - public static void InvalidateBufferData(Int32 buffer) { throw new NotImplementedException(); } + public static void InvalidateBufferData(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate the content of a buffer object's data store @@ -53626,7 +53626,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateBufferData")] [CLSCompliant(false)] - public static void InvalidateBufferData(UInt32 buffer) { throw new NotImplementedException(); } + public static void InvalidateBufferData(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate a region of a buffer object's data store @@ -53642,7 +53642,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateBufferSubData")] [CLSCompliant(false)] - public static void InvalidateBufferSubData(Int32 buffer, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void InvalidateBufferSubData(Int32 buffer, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate a region of a buffer object's data store @@ -53658,7 +53658,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateBufferSubData")] [CLSCompliant(false)] - public static void InvalidateBufferSubData(Int32 buffer, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void InvalidateBufferSubData(Int32 buffer, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate a region of a buffer object's data store @@ -53674,7 +53674,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateBufferSubData")] [CLSCompliant(false)] - public static void InvalidateBufferSubData(UInt32 buffer, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void InvalidateBufferSubData(UInt32 buffer, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate a region of a buffer object's data store @@ -53690,7 +53690,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateBufferSubData")] [CLSCompliant(false)] - public static void InvalidateBufferSubData(UInt32 buffer, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void InvalidateBufferSubData(UInt32 buffer, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate the content some or all of a framebuffer object's attachments @@ -53706,7 +53706,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateFramebuffer")] [CLSCompliant(false)] - public static void InvalidateFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.OpenGL.FramebufferAttachment[] attachments) { throw new NotImplementedException(); } + public static void InvalidateFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.OpenGL.FramebufferAttachment[] attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate the content some or all of a framebuffer object's attachments @@ -53722,7 +53722,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateFramebuffer")] [CLSCompliant(false)] - public static void InvalidateFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.OpenGL.FramebufferAttachment attachments) { throw new NotImplementedException(); } + public static void InvalidateFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.OpenGL.FramebufferAttachment attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate the content some or all of a framebuffer object's attachments @@ -53738,7 +53738,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateFramebuffer")] [CLSCompliant(false)] - public static unsafe void InvalidateFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.OpenGL.FramebufferAttachment* attachments) { throw new NotImplementedException(); } + public static unsafe void InvalidateFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.OpenGL.FramebufferAttachment* attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -53746,7 +53746,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferData")] [CLSCompliant(false)] - public static void InvalidateNamedFramebufferData(Int32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL.FramebufferAttachment[] attachments) { throw new NotImplementedException(); } + public static void InvalidateNamedFramebufferData(Int32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL.FramebufferAttachment[] attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -53754,7 +53754,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferData")] [CLSCompliant(false)] - public static void InvalidateNamedFramebufferData(Int32 framebuffer, Int32 numAttachments, ref OpenTK.Graphics.OpenGL.FramebufferAttachment attachments) { throw new NotImplementedException(); } + public static void InvalidateNamedFramebufferData(Int32 framebuffer, Int32 numAttachments, ref OpenTK.Graphics.OpenGL.FramebufferAttachment attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -53762,7 +53762,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferData")] [CLSCompliant(false)] - public static unsafe void InvalidateNamedFramebufferData(Int32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL.FramebufferAttachment* attachments) { throw new NotImplementedException(); } + public static unsafe void InvalidateNamedFramebufferData(Int32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL.FramebufferAttachment* attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -53770,7 +53770,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferData")] [CLSCompliant(false)] - public static void InvalidateNamedFramebufferData(UInt32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL.FramebufferAttachment[] attachments) { throw new NotImplementedException(); } + public static void InvalidateNamedFramebufferData(UInt32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL.FramebufferAttachment[] attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -53778,7 +53778,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferData")] [CLSCompliant(false)] - public static void InvalidateNamedFramebufferData(UInt32 framebuffer, Int32 numAttachments, ref OpenTK.Graphics.OpenGL.FramebufferAttachment attachments) { throw new NotImplementedException(); } + public static void InvalidateNamedFramebufferData(UInt32 framebuffer, Int32 numAttachments, ref OpenTK.Graphics.OpenGL.FramebufferAttachment attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -53786,7 +53786,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferData")] [CLSCompliant(false)] - public static unsafe void InvalidateNamedFramebufferData(UInt32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL.FramebufferAttachment* attachments) { throw new NotImplementedException(); } + public static unsafe void InvalidateNamedFramebufferData(UInt32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL.FramebufferAttachment* attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -53798,7 +53798,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferSubData")] [CLSCompliant(false)] - public static void InvalidateNamedFramebufferSubData(Int32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL.FramebufferAttachment[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void InvalidateNamedFramebufferSubData(Int32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL.FramebufferAttachment[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -53810,7 +53810,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferSubData")] [CLSCompliant(false)] - public static void InvalidateNamedFramebufferSubData(Int32 framebuffer, Int32 numAttachments, ref OpenTK.Graphics.OpenGL.FramebufferAttachment attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void InvalidateNamedFramebufferSubData(Int32 framebuffer, Int32 numAttachments, ref OpenTK.Graphics.OpenGL.FramebufferAttachment attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -53822,7 +53822,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferSubData")] [CLSCompliant(false)] - public static unsafe void InvalidateNamedFramebufferSubData(Int32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL.FramebufferAttachment* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static unsafe void InvalidateNamedFramebufferSubData(Int32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL.FramebufferAttachment* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -53834,7 +53834,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferSubData")] [CLSCompliant(false)] - public static void InvalidateNamedFramebufferSubData(UInt32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL.FramebufferAttachment[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void InvalidateNamedFramebufferSubData(UInt32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL.FramebufferAttachment[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -53846,7 +53846,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferSubData")] [CLSCompliant(false)] - public static void InvalidateNamedFramebufferSubData(UInt32 framebuffer, Int32 numAttachments, ref OpenTK.Graphics.OpenGL.FramebufferAttachment attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void InvalidateNamedFramebufferSubData(UInt32 framebuffer, Int32 numAttachments, ref OpenTK.Graphics.OpenGL.FramebufferAttachment attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -53858,7 +53858,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferSubData")] [CLSCompliant(false)] - public static unsafe void InvalidateNamedFramebufferSubData(UInt32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL.FramebufferAttachment* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static unsafe void InvalidateNamedFramebufferSubData(UInt32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL.FramebufferAttachment* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate the content of a region of some or all of a framebuffer object's attachments @@ -53886,7 +53886,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateSubFramebuffer")] [CLSCompliant(false)] - public static void InvalidateSubFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.OpenGL.FramebufferAttachment[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void InvalidateSubFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.OpenGL.FramebufferAttachment[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate the content of a region of some or all of a framebuffer object's attachments @@ -53914,7 +53914,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateSubFramebuffer")] [CLSCompliant(false)] - public static void InvalidateSubFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.OpenGL.FramebufferAttachment attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void InvalidateSubFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.OpenGL.FramebufferAttachment attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate the content of a region of some or all of a framebuffer object's attachments @@ -53942,7 +53942,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateSubFramebuffer")] [CLSCompliant(false)] - public static unsafe void InvalidateSubFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.OpenGL.FramebufferAttachment* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static unsafe void InvalidateSubFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.OpenGL.FramebufferAttachment* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate the entirety a texture image @@ -53955,7 +53955,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateTexImage")] [CLSCompliant(false)] - public static void InvalidateTexImage(Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void InvalidateTexImage(Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate the entirety a texture image @@ -53968,7 +53968,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateTexImage")] [CLSCompliant(false)] - public static void InvalidateTexImage(UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void InvalidateTexImage(UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate a region of a texture image @@ -53999,7 +53999,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateTexSubImage")] [CLSCompliant(false)] - public static void InvalidateTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void InvalidateTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate a region of a texture image @@ -54030,7 +54030,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateTexSubImage")] [CLSCompliant(false)] - public static void InvalidateTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void InvalidateTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Determine if a name corresponds to a buffer object @@ -54040,7 +54040,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glIsBuffer")] [CLSCompliant(false)] - public static bool IsBuffer(Int32 buffer) { throw new NotImplementedException(); } + public static bool IsBuffer(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Determine if a name corresponds to a buffer object @@ -54050,7 +54050,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glIsBuffer")] [CLSCompliant(false)] - public static bool IsBuffer(UInt32 buffer) { throw new NotImplementedException(); } + public static bool IsBuffer(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Test whether a capability is enabled @@ -54059,7 +54059,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a symbolic constant indicating a GL capability. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glIsEnabled")] - public static bool IsEnabled(OpenTK.Graphics.OpenGL.EnableCap cap) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.OpenGL.EnableCap cap) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Test whether a capability is enabled @@ -54072,7 +54072,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glIsEnabledi")] [CLSCompliant(false)] - public static bool IsEnabled(OpenTK.Graphics.OpenGL.IndexedEnableCap target, Int32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.OpenGL.IndexedEnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Test whether a capability is enabled @@ -54085,7 +54085,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glIsEnabledi")] [CLSCompliant(false)] - public static bool IsEnabled(OpenTK.Graphics.OpenGL.IndexedEnableCap target, UInt32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.OpenGL.IndexedEnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Determine if a name corresponds to a framebuffer object @@ -54095,7 +54095,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glIsFramebuffer")] [CLSCompliant(false)] - public static bool IsFramebuffer(Int32 framebuffer) { throw new NotImplementedException(); } + public static bool IsFramebuffer(Int32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Determine if a name corresponds to a framebuffer object @@ -54105,7 +54105,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glIsFramebuffer")] [CLSCompliant(false)] - public static bool IsFramebuffer(UInt32 framebuffer) { throw new NotImplementedException(); } + public static bool IsFramebuffer(UInt32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Determine if a name corresponds to a display list @@ -54115,7 +54115,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glIsList")] [CLSCompliant(false)] - public static bool IsList(Int32 list) { throw new NotImplementedException(); } + public static bool IsList(Int32 list) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Determine if a name corresponds to a display list @@ -54125,7 +54125,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glIsList")] [CLSCompliant(false)] - public static bool IsList(UInt32 list) { throw new NotImplementedException(); } + public static bool IsList(UInt32 list) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Determines if a name corresponds to a program object @@ -54135,7 +54135,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glIsProgram")] [CLSCompliant(false)] - public static bool IsProgram(Int32 program) { throw new NotImplementedException(); } + public static bool IsProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Determines if a name corresponds to a program object @@ -54145,7 +54145,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glIsProgram")] [CLSCompliant(false)] - public static bool IsProgram(UInt32 program) { throw new NotImplementedException(); } + public static bool IsProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Determine if a name corresponds to a program pipeline object @@ -54155,7 +54155,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glIsProgramPipeline")] [CLSCompliant(false)] - public static bool IsProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } + public static bool IsProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Determine if a name corresponds to a program pipeline object @@ -54165,7 +54165,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glIsProgramPipeline")] [CLSCompliant(false)] - public static bool IsProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static bool IsProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Determine if a name corresponds to a query object @@ -54175,7 +54175,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glIsQuery")] [CLSCompliant(false)] - public static bool IsQuery(Int32 id) { throw new NotImplementedException(); } + public static bool IsQuery(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Determine if a name corresponds to a query object @@ -54185,7 +54185,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glIsQuery")] [CLSCompliant(false)] - public static bool IsQuery(UInt32 id) { throw new NotImplementedException(); } + public static bool IsQuery(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Determine if a name corresponds to a renderbuffer object @@ -54195,7 +54195,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glIsRenderbuffer")] [CLSCompliant(false)] - public static bool IsRenderbuffer(Int32 renderbuffer) { throw new NotImplementedException(); } + public static bool IsRenderbuffer(Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Determine if a name corresponds to a renderbuffer object @@ -54205,7 +54205,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glIsRenderbuffer")] [CLSCompliant(false)] - public static bool IsRenderbuffer(UInt32 renderbuffer) { throw new NotImplementedException(); } + public static bool IsRenderbuffer(UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Determine if a name corresponds to a sampler object @@ -54215,7 +54215,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glIsSampler")] [CLSCompliant(false)] - public static bool IsSampler(Int32 sampler) { throw new NotImplementedException(); } + public static bool IsSampler(Int32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Determine if a name corresponds to a sampler object @@ -54225,7 +54225,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glIsSampler")] [CLSCompliant(false)] - public static bool IsSampler(UInt32 sampler) { throw new NotImplementedException(); } + public static bool IsSampler(UInt32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Determines if a name corresponds to a shader object @@ -54235,7 +54235,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glIsShader")] [CLSCompliant(false)] - public static bool IsShader(Int32 shader) { throw new NotImplementedException(); } + public static bool IsShader(Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Determines if a name corresponds to a shader object @@ -54245,7 +54245,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glIsShader")] [CLSCompliant(false)] - public static bool IsShader(UInt32 shader) { throw new NotImplementedException(); } + public static bool IsShader(UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Determine if a name corresponds to a sync object @@ -54254,7 +54254,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a value that may be the name of a sync object. /// [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glIsSync")] - public static bool IsSync(IntPtr sync) { throw new NotImplementedException(); } + public static bool IsSync(IntPtr sync) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Determine if a name corresponds to a texture @@ -54264,7 +54264,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glIsTexture")] [CLSCompliant(false)] - public static bool IsTexture(Int32 texture) { throw new NotImplementedException(); } + public static bool IsTexture(Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Determine if a name corresponds to a texture @@ -54274,7 +54274,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glIsTexture")] [CLSCompliant(false)] - public static bool IsTexture(UInt32 texture) { throw new NotImplementedException(); } + public static bool IsTexture(UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Determine if a name corresponds to a transform feedback object @@ -54284,7 +54284,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glIsTransformFeedback")] [CLSCompliant(false)] - public static bool IsTransformFeedback(Int32 id) { throw new NotImplementedException(); } + public static bool IsTransformFeedback(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Determine if a name corresponds to a transform feedback object @@ -54294,7 +54294,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glIsTransformFeedback")] [CLSCompliant(false)] - public static bool IsTransformFeedback(UInt32 id) { throw new NotImplementedException(); } + public static bool IsTransformFeedback(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Determine if a name corresponds to a vertex array object @@ -54304,7 +54304,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glIsVertexArray")] [CLSCompliant(false)] - public static bool IsVertexArray(Int32 array) { throw new NotImplementedException(); } + public static bool IsVertexArray(Int32 array) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Determine if a name corresponds to a vertex array object @@ -54314,7 +54314,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glIsVertexArray")] [CLSCompliant(false)] - public static bool IsVertexArray(UInt32 array) { throw new NotImplementedException(); } + public static bool IsVertexArray(UInt32 array) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set light source parameters @@ -54329,7 +54329,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the value that parameter pname of light source light will be set to. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLightf")] - public static void Light(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, Single param) { throw new NotImplementedException(); } + public static void Light(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set light source parameters @@ -54345,7 +54345,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLightfv")] [CLSCompliant(false)] - public static void Light(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void Light(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set light source parameters @@ -54361,7 +54361,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLightfv")] [CLSCompliant(false)] - public static unsafe void Light(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void Light(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set light source parameters @@ -54376,7 +54376,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the value that parameter pname of light source light will be set to. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLighti")] - public static void Light(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void Light(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set light source parameters @@ -54392,7 +54392,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLightiv")] [CLSCompliant(false)] - public static void Light(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void Light(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set light source parameters @@ -54408,7 +54408,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLightiv")] [CLSCompliant(false)] - public static unsafe void Light(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void Light(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the lighting model parameters @@ -54420,7 +54420,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the value that param will be set to. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLightModelf")] - public static void LightModel(OpenTK.Graphics.OpenGL.LightModelParameter pname, Single param) { throw new NotImplementedException(); } + public static void LightModel(OpenTK.Graphics.OpenGL.LightModelParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the lighting model parameters @@ -54433,7 +54433,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLightModelfv")] [CLSCompliant(false)] - public static void LightModel(OpenTK.Graphics.OpenGL.LightModelParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void LightModel(OpenTK.Graphics.OpenGL.LightModelParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the lighting model parameters @@ -54446,7 +54446,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLightModelfv")] [CLSCompliant(false)] - public static unsafe void LightModel(OpenTK.Graphics.OpenGL.LightModelParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void LightModel(OpenTK.Graphics.OpenGL.LightModelParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the lighting model parameters @@ -54458,7 +54458,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the value that param will be set to. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLightModeli")] - public static void LightModel(OpenTK.Graphics.OpenGL.LightModelParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void LightModel(OpenTK.Graphics.OpenGL.LightModelParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the lighting model parameters @@ -54471,7 +54471,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLightModeliv")] [CLSCompliant(false)] - public static void LightModel(OpenTK.Graphics.OpenGL.LightModelParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void LightModel(OpenTK.Graphics.OpenGL.LightModelParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the lighting model parameters @@ -54484,7 +54484,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLightModeliv")] [CLSCompliant(false)] - public static unsafe void LightModel(OpenTK.Graphics.OpenGL.LightModelParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void LightModel(OpenTK.Graphics.OpenGL.LightModelParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the line stipple pattern @@ -54497,7 +54497,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLineStipple")] [CLSCompliant(false)] - public static void LineStipple(Int32 factor, Int16 pattern) { throw new NotImplementedException(); } + public static void LineStipple(Int32 factor, Int16 pattern) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the line stipple pattern @@ -54510,7 +54510,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLineStipple")] [CLSCompliant(false)] - public static void LineStipple(Int32 factor, UInt16 pattern) { throw new NotImplementedException(); } + public static void LineStipple(Int32 factor, UInt16 pattern) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify the width of rasterized lines @@ -54519,7 +54519,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the width of rasterized lines. The initial value is 1. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLineWidth")] - public static void LineWidth(Single width) { throw new NotImplementedException(); } + public static void LineWidth(Single width) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Links a program object @@ -54529,7 +54529,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glLinkProgram")] [CLSCompliant(false)] - public static void LinkProgram(Int32 program) { throw new NotImplementedException(); } + public static void LinkProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Links a program object @@ -54539,7 +54539,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glLinkProgram")] [CLSCompliant(false)] - public static void LinkProgram(UInt32 program) { throw new NotImplementedException(); } + public static void LinkProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the display-list base for glCallLists @@ -54549,7 +54549,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glListBase")] [CLSCompliant(false)] - public static void ListBase(Int32 @base) { throw new NotImplementedException(); } + public static void ListBase(Int32 @base) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the display-list base for glCallLists @@ -54559,13 +54559,13 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glListBase")] [CLSCompliant(false)] - public static void ListBase(UInt32 @base) { throw new NotImplementedException(); } + public static void ListBase(UInt32 @base) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Replace the current matrix with the identity matrix /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLoadIdentity")] - public static void LoadIdentity() { throw new NotImplementedException(); } + public static void LoadIdentity() { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Replace the current matrix with the specified matrix @@ -54575,7 +54575,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLoadMatrixd")] [CLSCompliant(false)] - public static void LoadMatrix([CountAttribute(Count = 16)] Double[] m) { throw new NotImplementedException(); } + public static void LoadMatrix([CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Replace the current matrix with the specified matrix @@ -54585,7 +54585,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLoadMatrixd")] [CLSCompliant(false)] - public static void LoadMatrix([CountAttribute(Count = 16)] ref Double m) { throw new NotImplementedException(); } + public static void LoadMatrix([CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Replace the current matrix with the specified matrix @@ -54595,7 +54595,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLoadMatrixd")] [CLSCompliant(false)] - public static unsafe void LoadMatrix([CountAttribute(Count = 16)] Double* m) { throw new NotImplementedException(); } + public static unsafe void LoadMatrix([CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Replace the current matrix with the specified matrix @@ -54605,7 +54605,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLoadMatrixf")] [CLSCompliant(false)] - public static void LoadMatrix([CountAttribute(Count = 16)] Single[] m) { throw new NotImplementedException(); } + public static void LoadMatrix([CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Replace the current matrix with the specified matrix @@ -54615,7 +54615,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLoadMatrixf")] [CLSCompliant(false)] - public static void LoadMatrix([CountAttribute(Count = 16)] ref Single m) { throw new NotImplementedException(); } + public static void LoadMatrix([CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Replace the current matrix with the specified matrix @@ -54625,7 +54625,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLoadMatrixf")] [CLSCompliant(false)] - public static unsafe void LoadMatrix([CountAttribute(Count = 16)] Single* m) { throw new NotImplementedException(); } + public static unsafe void LoadMatrix([CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Load a name onto the name stack @@ -54635,7 +54635,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLoadName")] [CLSCompliant(false)] - public static void LoadName(Int32 name) { throw new NotImplementedException(); } + public static void LoadName(Int32 name) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Load a name onto the name stack @@ -54645,7 +54645,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLoadName")] [CLSCompliant(false)] - public static void LoadName(UInt32 name) { throw new NotImplementedException(); } + public static void LoadName(UInt32 name) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Replace the current matrix with the specified row-major ordered matrix @@ -54655,7 +54655,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glLoadTransposeMatrixd")] [CLSCompliant(false)] - public static void LoadTransposeMatrix([CountAttribute(Count = 16)] Double[] m) { throw new NotImplementedException(); } + public static void LoadTransposeMatrix([CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Replace the current matrix with the specified row-major ordered matrix @@ -54665,7 +54665,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glLoadTransposeMatrixd")] [CLSCompliant(false)] - public static void LoadTransposeMatrix([CountAttribute(Count = 16)] ref Double m) { throw new NotImplementedException(); } + public static void LoadTransposeMatrix([CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Replace the current matrix with the specified row-major ordered matrix @@ -54675,7 +54675,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glLoadTransposeMatrixd")] [CLSCompliant(false)] - public static unsafe void LoadTransposeMatrix([CountAttribute(Count = 16)] Double* m) { throw new NotImplementedException(); } + public static unsafe void LoadTransposeMatrix([CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Replace the current matrix with the specified row-major ordered matrix @@ -54685,7 +54685,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glLoadTransposeMatrixf")] [CLSCompliant(false)] - public static void LoadTransposeMatrix([CountAttribute(Count = 16)] Single[] m) { throw new NotImplementedException(); } + public static void LoadTransposeMatrix([CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Replace the current matrix with the specified row-major ordered matrix @@ -54695,7 +54695,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glLoadTransposeMatrixf")] [CLSCompliant(false)] - public static void LoadTransposeMatrix([CountAttribute(Count = 16)] ref Single m) { throw new NotImplementedException(); } + public static void LoadTransposeMatrix([CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Replace the current matrix with the specified row-major ordered matrix @@ -54705,7 +54705,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glLoadTransposeMatrixf")] [CLSCompliant(false)] - public static unsafe void LoadTransposeMatrix([CountAttribute(Count = 16)] Single* m) { throw new NotImplementedException(); } + public static unsafe void LoadTransposeMatrix([CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a logical pixel operation for rendering @@ -54714,7 +54714,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a symbolic constant that selects a logical operation. The following symbols are accepted: Clear, Set, Copy, CopyInverted, Noop, Invert, And, Nand, Or, Nor, Xor, Equiv, AndReverse, AndInverted, OrReverse, and OrInverted. The initial value is Copy. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLogicOp")] - public static void LogicOp(OpenTK.Graphics.OpenGL.LogicOp opcode) { throw new NotImplementedException(); } + public static void LogicOp(OpenTK.Graphics.OpenGL.LogicOp opcode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Define a one-dimensional evaluator @@ -54739,7 +54739,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMap1d")] [CLSCompliant(false)] - public static void Map1(OpenTK.Graphics.OpenGL.MapTarget target, Double u1, Double u2, Int32 stride, Int32 order, [CountAttribute(Computed = "target,stride,order")] Double[] points) { throw new NotImplementedException(); } + public static void Map1(OpenTK.Graphics.OpenGL.MapTarget target, Double u1, Double u2, Int32 stride, Int32 order, [CountAttribute(Computed = "target,stride,order")] Double[] points) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Define a one-dimensional evaluator @@ -54764,7 +54764,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMap1d")] [CLSCompliant(false)] - public static void Map1(OpenTK.Graphics.OpenGL.MapTarget target, Double u1, Double u2, Int32 stride, Int32 order, [CountAttribute(Computed = "target,stride,order")] ref Double points) { throw new NotImplementedException(); } + public static void Map1(OpenTK.Graphics.OpenGL.MapTarget target, Double u1, Double u2, Int32 stride, Int32 order, [CountAttribute(Computed = "target,stride,order")] ref Double points) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Define a one-dimensional evaluator @@ -54789,7 +54789,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMap1d")] [CLSCompliant(false)] - public static unsafe void Map1(OpenTK.Graphics.OpenGL.MapTarget target, Double u1, Double u2, Int32 stride, Int32 order, [CountAttribute(Computed = "target,stride,order")] Double* points) { throw new NotImplementedException(); } + public static unsafe void Map1(OpenTK.Graphics.OpenGL.MapTarget target, Double u1, Double u2, Int32 stride, Int32 order, [CountAttribute(Computed = "target,stride,order")] Double* points) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Define a one-dimensional evaluator @@ -54814,7 +54814,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMap1f")] [CLSCompliant(false)] - public static void Map1(OpenTK.Graphics.OpenGL.MapTarget target, Single u1, Single u2, Int32 stride, Int32 order, [CountAttribute(Computed = "target,stride,order")] Single[] points) { throw new NotImplementedException(); } + public static void Map1(OpenTK.Graphics.OpenGL.MapTarget target, Single u1, Single u2, Int32 stride, Int32 order, [CountAttribute(Computed = "target,stride,order")] Single[] points) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Define a one-dimensional evaluator @@ -54839,7 +54839,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMap1f")] [CLSCompliant(false)] - public static void Map1(OpenTK.Graphics.OpenGL.MapTarget target, Single u1, Single u2, Int32 stride, Int32 order, [CountAttribute(Computed = "target,stride,order")] ref Single points) { throw new NotImplementedException(); } + public static void Map1(OpenTK.Graphics.OpenGL.MapTarget target, Single u1, Single u2, Int32 stride, Int32 order, [CountAttribute(Computed = "target,stride,order")] ref Single points) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Define a one-dimensional evaluator @@ -54864,7 +54864,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMap1f")] [CLSCompliant(false)] - public static unsafe void Map1(OpenTK.Graphics.OpenGL.MapTarget target, Single u1, Single u2, Int32 stride, Int32 order, [CountAttribute(Computed = "target,stride,order")] Single* points) { throw new NotImplementedException(); } + public static unsafe void Map1(OpenTK.Graphics.OpenGL.MapTarget target, Single u1, Single u2, Int32 stride, Int32 order, [CountAttribute(Computed = "target,stride,order")] Single* points) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Define a two-dimensional evaluator @@ -54901,7 +54901,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMap2d")] [CLSCompliant(false)] - public static void Map2(OpenTK.Graphics.OpenGL.MapTarget target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder")] Double[] points) { throw new NotImplementedException(); } + public static void Map2(OpenTK.Graphics.OpenGL.MapTarget target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder")] Double[] points) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Define a two-dimensional evaluator @@ -54938,7 +54938,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMap2d")] [CLSCompliant(false)] - public static void Map2(OpenTK.Graphics.OpenGL.MapTarget target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder")] ref Double points) { throw new NotImplementedException(); } + public static void Map2(OpenTK.Graphics.OpenGL.MapTarget target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder")] ref Double points) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Define a two-dimensional evaluator @@ -54975,7 +54975,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMap2d")] [CLSCompliant(false)] - public static unsafe void Map2(OpenTK.Graphics.OpenGL.MapTarget target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder")] Double* points) { throw new NotImplementedException(); } + public static unsafe void Map2(OpenTK.Graphics.OpenGL.MapTarget target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder")] Double* points) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Define a two-dimensional evaluator @@ -55012,7 +55012,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMap2f")] [CLSCompliant(false)] - public static void Map2(OpenTK.Graphics.OpenGL.MapTarget target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder")] Single[] points) { throw new NotImplementedException(); } + public static void Map2(OpenTK.Graphics.OpenGL.MapTarget target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder")] Single[] points) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Define a two-dimensional evaluator @@ -55049,7 +55049,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMap2f")] [CLSCompliant(false)] - public static void Map2(OpenTK.Graphics.OpenGL.MapTarget target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder")] ref Single points) { throw new NotImplementedException(); } + public static void Map2(OpenTK.Graphics.OpenGL.MapTarget target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder")] ref Single points) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Define a two-dimensional evaluator @@ -55086,7 +55086,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMap2f")] [CLSCompliant(false)] - public static unsafe void Map2(OpenTK.Graphics.OpenGL.MapTarget target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder")] Single* points) { throw new NotImplementedException(); } + public static unsafe void Map2(OpenTK.Graphics.OpenGL.MapTarget target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder")] Single* points) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Map a buffer object's data store @@ -55098,7 +55098,7 @@ namespace OpenTK.Graphics.OpenGL /// For glMapBuffer only, specifies the access policy, indicating whether it will be possible to read from, write to, or both read from and write to the buffer object's mapped data store. The symbolic constant must be ReadOnly, WriteOnly, or ReadWrite. /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glMapBuffer")] - public static IntPtr MapBuffer(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferAccess access) { throw new NotImplementedException(); } + public static IntPtr MapBuffer(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferAccess access) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_map_buffer_range|VERSION_3_0] /// Map a section of a buffer object's data store @@ -55116,7 +55116,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a combination of access flags indicating the desired access to the range. /// [AutoGenerated(Category = "ARB_map_buffer_range|VERSION_3_0", Version = "3.0", EntryPoint = "glMapBufferRange")] - public static IntPtr MapBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, Int32 length, OpenTK.Graphics.OpenGL.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, Int32 length, OpenTK.Graphics.OpenGL.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_map_buffer_range|VERSION_3_0] /// Map a section of a buffer object's data store @@ -55134,7 +55134,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a combination of access flags indicating the desired access to the range. /// [AutoGenerated(Category = "ARB_map_buffer_range|VERSION_3_0", Version = "3.0", EntryPoint = "glMapBufferRange")] - public static IntPtr MapBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Define a one- or two-dimensional mesh @@ -55149,7 +55149,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the mappings for integer grid domain values i = 0 and i = un. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMapGrid1d")] - public static void MapGrid1(Int32 un, Double u1, Double u2) { throw new NotImplementedException(); } + public static void MapGrid1(Int32 un, Double u1, Double u2) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Define a one- or two-dimensional mesh @@ -55164,7 +55164,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the mappings for integer grid domain values i = 0 and i = un. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMapGrid1f")] - public static void MapGrid1(Int32 un, Single u1, Single u2) { throw new NotImplementedException(); } + public static void MapGrid1(Int32 un, Single u1, Single u2) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Define a one- or two-dimensional mesh @@ -55188,7 +55188,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the mappings for integer grid domain values j = 0 and j = vn (glMapGrid2 only). /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMapGrid2d")] - public static void MapGrid2(Int32 un, Double u1, Double u2, Int32 vn, Double v1, Double v2) { throw new NotImplementedException(); } + public static void MapGrid2(Int32 un, Double u1, Double u2, Int32 vn, Double v1, Double v2) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Define a one- or two-dimensional mesh @@ -55212,21 +55212,21 @@ namespace OpenTK.Graphics.OpenGL /// Specify the mappings for integer grid domain values j = 0 and j = vn (glMapGrid2 only). /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMapGrid2f")] - public static void MapGrid2(Int32 un, Single u1, Single u2, Int32 vn, Single v1, Single v2) { throw new NotImplementedException(); } + public static void MapGrid2(Int32 un, Single u1, Single u2, Int32 vn, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glMapNamedBuffer")] [CLSCompliant(false)] - public static IntPtr MapNamedBuffer(Int32 buffer, OpenTK.Graphics.OpenGL.BufferAccess access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBuffer(Int32 buffer, OpenTK.Graphics.OpenGL.BufferAccess access) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glMapNamedBuffer")] [CLSCompliant(false)] - public static IntPtr MapNamedBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferAccess access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferAccess access) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -55235,7 +55235,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glMapNamedBufferRange")] [CLSCompliant(false)] - public static IntPtr MapNamedBufferRange(Int32 buffer, IntPtr offset, Int32 length, OpenTK.Graphics.OpenGL.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBufferRange(Int32 buffer, IntPtr offset, Int32 length, OpenTK.Graphics.OpenGL.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -55244,7 +55244,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glMapNamedBufferRange")] [CLSCompliant(false)] - public static IntPtr MapNamedBufferRange(Int32 buffer, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBufferRange(Int32 buffer, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -55253,7 +55253,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glMapNamedBufferRange")] [CLSCompliant(false)] - public static IntPtr MapNamedBufferRange(UInt32 buffer, IntPtr offset, Int32 length, OpenTK.Graphics.OpenGL.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBufferRange(UInt32 buffer, IntPtr offset, Int32 length, OpenTK.Graphics.OpenGL.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -55262,7 +55262,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glMapNamedBufferRange")] [CLSCompliant(false)] - public static IntPtr MapNamedBufferRange(UInt32 buffer, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBufferRange(UInt32 buffer, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify material parameters for the lighting model @@ -55277,7 +55277,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the value that parameter Shininess will be set to. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMaterialf")] - public static void Material(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Single param) { throw new NotImplementedException(); } + public static void Material(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify material parameters for the lighting model @@ -55293,7 +55293,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMaterialfv")] [CLSCompliant(false)] - public static void Material(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void Material(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify material parameters for the lighting model @@ -55309,7 +55309,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMaterialfv")] [CLSCompliant(false)] - public static unsafe void Material(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void Material(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify material parameters for the lighting model @@ -55324,7 +55324,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the value that parameter Shininess will be set to. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMateriali")] - public static void Material(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void Material(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify material parameters for the lighting model @@ -55340,7 +55340,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMaterialiv")] [CLSCompliant(false)] - public static void Material(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void Material(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify material parameters for the lighting model @@ -55356,7 +55356,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMaterialiv")] [CLSCompliant(false)] - public static unsafe void Material(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void Material(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify which matrix is the current matrix @@ -55365,7 +55365,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies which matrix stack is the target for subsequent matrix operations. Three values are accepted: Modelview, Projection, and Texture. The initial value is Modelview. Additionally, if the ARB_imaging extension is supported, Color is also accepted. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMatrixMode")] - public static void MatrixMode(OpenTK.Graphics.OpenGL.MatrixMode mode) { throw new NotImplementedException(); } + public static void MatrixMode(OpenTK.Graphics.OpenGL.MatrixMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_shader_image_load_store|VERSION_4_2] /// Defines a barrier ordering memory transactions @@ -55374,12 +55374,12 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the barriers to insert. Must be a bitwise combination of VertexAttribArrayBarrierBit, ElementArrayBarrierBit, UniformBarrierBit, TextureFetchBarrierBit, ShaderImageAccessBarrierBit, CommandBarrierBit, PixelBufferBarrierBit, TextureUpdateBarrierBit, BufferUpdateBarrierBit, FramebufferBarrierBit, TransformFeedbackBarrierBit, AtomicCounterBarrierBit, or ShaderStorageBarrierBit. If the special value AllBarrierBits is specified, all supported barriers will be inserted. /// [AutoGenerated(Category = "ARB_shader_image_load_store|VERSION_4_2", Version = "4.2", EntryPoint = "glMemoryBarrier")] - public static void MemoryBarrier(OpenTK.Graphics.OpenGL.MemoryBarrierFlags barriers) { throw new NotImplementedException(); } + public static void MemoryBarrier(OpenTK.Graphics.OpenGL.MemoryBarrierFlags barriers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_ES3_1_compatibility|VERSION_4_5] /// [AutoGenerated(Category = "ARB_ES3_1_compatibility|VERSION_4_5", Version = "4.5", EntryPoint = "glMemoryBarrierByRegion")] - public static void MemoryBarrierByRegion(OpenTK.Graphics.OpenGL.MemoryBarrierRegionFlags barriers) { throw new NotImplementedException(); } + public static void MemoryBarrierByRegion(OpenTK.Graphics.OpenGL.MemoryBarrierRegionFlags barriers) { throw new BindingsNotRewrittenException(); } /// /// Define minmax table @@ -55394,7 +55394,7 @@ namespace OpenTK.Graphics.OpenGL /// If True, pixels will be consumed by the minmax process and no drawing or texture loading will take place. If False, pixels will proceed to the final conversion process after minmax. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glMinmax")] - public static void Minmax(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink) { throw new NotImplementedException(); } + public static void Minmax(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specifies minimum rate at which sample shaing takes place @@ -55403,7 +55403,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the rate at which samples are shaded within each covered pixel. /// [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glMinSampleShading")] - public static void MinSampleShading(Single value) { throw new NotImplementedException(); } + public static void MinSampleShading(Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives from array data @@ -55423,7 +55423,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawArrays")] [CLSCompliant(false)] - public static void MultiDrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "count")] Int32[] first, [CountAttribute(Computed = "drawcount")] Int32[] count, Int32 drawcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "count")] Int32[] first, [CountAttribute(Computed = "drawcount")] Int32[] count, Int32 drawcount) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives from array data @@ -55443,7 +55443,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawArrays")] [CLSCompliant(false)] - public static void MultiDrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "count")] ref Int32 first, [CountAttribute(Computed = "drawcount")] ref Int32 count, Int32 drawcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "count")] ref Int32 first, [CountAttribute(Computed = "drawcount")] ref Int32 count, Int32 drawcount) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives from array data @@ -55463,7 +55463,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawArrays")] [CLSCompliant(false)] - public static unsafe void MultiDrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "count")] Int32* first, [CountAttribute(Computed = "drawcount")] Int32* count, Int32 drawcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "count")] Int32* first, [CountAttribute(Computed = "drawcount")] Int32* count, Int32 drawcount) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives from array data @@ -55482,7 +55482,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawArrays")] [CLSCompliant(false)] - public static void MultiDrawArrays(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "count")] Int32[] first, [CountAttribute(Computed = "drawcount")] Int32[] count, Int32 drawcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "count")] Int32[] first, [CountAttribute(Computed = "drawcount")] Int32[] count, Int32 drawcount) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives from array data @@ -55501,7 +55501,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawArrays")] [CLSCompliant(false)] - public static void MultiDrawArrays(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "count")] ref Int32 first, [CountAttribute(Computed = "drawcount")] ref Int32 count, Int32 drawcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "count")] ref Int32 first, [CountAttribute(Computed = "drawcount")] ref Int32 count, Int32 drawcount) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives from array data @@ -55520,7 +55520,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawArrays")] [CLSCompliant(false)] - public static unsafe void MultiDrawArrays(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "count")] Int32* first, [CountAttribute(Computed = "drawcount")] Int32* count, Int32 drawcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawArrays(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "count")] Int32* first, [CountAttribute(Computed = "drawcount")] Int32* count, Int32 drawcount) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_multi_draw_indirect|VERSION_4_3] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -55538,7 +55538,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the distance in basic machine units between elements of the draw parameter array. /// [AutoGenerated(Category = "ARB_multi_draw_indirect|VERSION_4_3", Version = "4.3", EntryPoint = "glMultiDrawArraysIndirect")] - public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_multi_draw_indirect|VERSION_4_3] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -55559,7 +55559,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_multi_draw_indirect|VERSION_4_3] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -55580,7 +55580,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[,] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_multi_draw_indirect|VERSION_4_3] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -55601,7 +55601,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[,,] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_multi_draw_indirect|VERSION_4_3] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -55621,7 +55621,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_multi_draw_indirect|VERSION_4_3", Version = "4.3", EntryPoint = "glMultiDrawArraysIndirect")] public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] ref T1 indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -55630,7 +55630,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_4_6", Version = "4.6", EntryPoint = "glMultiDrawArraysIndirectCount")] - public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -55642,7 +55642,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -55654,7 +55654,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[,] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -55666,7 +55666,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[,,] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -55677,7 +55677,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_4_6", Version = "4.6", EntryPoint = "glMultiDrawArraysIndirectCount")] public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] ref T1 indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -55700,7 +55700,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] [CLSCompliant(false)] - public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -55725,7 +55725,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -55750,7 +55750,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -55775,7 +55775,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -55800,7 +55800,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -55823,7 +55823,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] [CLSCompliant(false)] - public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -55848,7 +55848,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -55873,7 +55873,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -55898,7 +55898,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -55923,7 +55923,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -55946,7 +55946,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] [CLSCompliant(false)] - public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -55971,7 +55971,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -55996,7 +55996,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -56021,7 +56021,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -56046,7 +56046,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -56068,7 +56068,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] [CLSCompliant(false)] - public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -56092,7 +56092,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -56116,7 +56116,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -56140,7 +56140,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -56164,7 +56164,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -56186,7 +56186,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] [CLSCompliant(false)] - public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -56210,7 +56210,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -56234,7 +56234,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -56258,7 +56258,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -56282,7 +56282,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -56304,7 +56304,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] [CLSCompliant(false)] - public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -56328,7 +56328,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -56352,7 +56352,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -56376,7 +56376,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -56400,7 +56400,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56426,7 +56426,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] [CLSCompliant(false)] - public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) { throw new NotImplementedException(); } + public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56454,7 +56454,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56482,7 +56482,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56510,7 +56510,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56538,7 +56538,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56564,7 +56564,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] [CLSCompliant(false)] - public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) { throw new NotImplementedException(); } + public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56592,7 +56592,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56620,7 +56620,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56648,7 +56648,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56676,7 +56676,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56702,7 +56702,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] [CLSCompliant(false)] - public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56730,7 +56730,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56758,7 +56758,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56786,7 +56786,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56814,7 +56814,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56839,7 +56839,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] [CLSCompliant(false)] - public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) { throw new NotImplementedException(); } + public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56866,7 +56866,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56893,7 +56893,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56920,7 +56920,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56947,7 +56947,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56972,7 +56972,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] [CLSCompliant(false)] - public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) { throw new NotImplementedException(); } + public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56999,7 +56999,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -57026,7 +57026,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -57053,7 +57053,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -57080,7 +57080,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -57105,7 +57105,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] [CLSCompliant(false)] - public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -57132,7 +57132,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -57159,7 +57159,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -57186,7 +57186,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -57213,7 +57213,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_multi_draw_indirect|VERSION_4_3] /// Render indexed primitives from array data, taking parameters from memory @@ -57234,7 +57234,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the distance in basic machine units between elements of the draw parameter array. /// [AutoGenerated(Category = "ARB_multi_draw_indirect|VERSION_4_3", Version = "4.3", EntryPoint = "glMultiDrawElementsIndirect")] - public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_multi_draw_indirect|VERSION_4_3] /// Render indexed primitives from array data, taking parameters from memory @@ -57258,7 +57258,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_multi_draw_indirect|VERSION_4_3] /// Render indexed primitives from array data, taking parameters from memory @@ -57282,7 +57282,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_multi_draw_indirect|VERSION_4_3] /// Render indexed primitives from array data, taking parameters from memory @@ -57306,7 +57306,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,,] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_multi_draw_indirect|VERSION_4_3] /// Render indexed primitives from array data, taking parameters from memory @@ -57329,7 +57329,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_multi_draw_indirect|VERSION_4_3", Version = "4.3", EntryPoint = "glMultiDrawElementsIndirect")] public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] ref T2 indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -57339,7 +57339,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_4_6", Version = "4.6", EntryPoint = "glMultiDrawElementsIndirectCount")] - public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.Version46 type, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.Version46 type, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -57352,7 +57352,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.Version46 type, [InAttribute, OutAttribute] T2[] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -57365,7 +57365,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.Version46 type, [InAttribute, OutAttribute] T2[,] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -57378,7 +57378,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.Version46 type, [InAttribute, OutAttribute] T2[,,] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -57390,7 +57390,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_4_6", Version = "4.6", EntryPoint = "glMultiDrawElementsIndirectCount")] public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.Version46 type, [InAttribute, OutAttribute] ref T2 indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57402,7 +57402,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord1d")] - public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Double s) { throw new NotImplementedException(); } + public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Double s) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57415,7 +57415,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord1dv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 1)] Double* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 1)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57427,7 +57427,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord1f")] - public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Single s) { throw new NotImplementedException(); } + public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Single s) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57440,7 +57440,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord1fv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 1)] Single* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 1)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57452,7 +57452,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord1i")] - public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s) { throw new NotImplementedException(); } + public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57465,7 +57465,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord1iv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 1)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 1)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57477,7 +57477,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord1s")] - public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s) { throw new NotImplementedException(); } + public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57490,7 +57490,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord1sv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 1)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 1)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57505,7 +57505,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord2d")] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57518,7 +57518,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord2dv")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57531,7 +57531,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord2dv")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57544,7 +57544,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord2dv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57559,7 +57559,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord2f")] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57572,7 +57572,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord2fv")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57585,7 +57585,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord2fv")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57598,7 +57598,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord2fv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57613,7 +57613,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord2i")] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57626,7 +57626,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord2iv")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Int32[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57639,7 +57639,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord2iv")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] ref Int32 v) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57652,7 +57652,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord2iv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57667,7 +57667,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord2s")] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57680,7 +57680,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord2sv")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Int16[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57693,7 +57693,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord2sv")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] ref Int16 v) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57706,7 +57706,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord2sv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57724,7 +57724,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord3d")] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t, Double r) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t, Double r) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57737,7 +57737,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord3dv")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57750,7 +57750,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord3dv")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57763,7 +57763,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord3dv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57781,7 +57781,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord3f")] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t, Single r) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t, Single r) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57794,7 +57794,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord3fv")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57807,7 +57807,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord3fv")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57820,7 +57820,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord3fv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57838,7 +57838,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord3i")] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t, Int32 r) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t, Int32 r) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57851,7 +57851,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord3iv")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Int32[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57864,7 +57864,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord3iv")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] ref Int32 v) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57877,7 +57877,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord3iv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57895,7 +57895,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord3s")] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t, Int16 r) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t, Int16 r) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57908,7 +57908,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord3sv")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57921,7 +57921,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord3sv")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57934,7 +57934,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord3sv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57955,7 +57955,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord4d")] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t, Double r, Double q) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t, Double r, Double q) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57968,7 +57968,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord4dv")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57981,7 +57981,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord4dv")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57994,7 +57994,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord4dv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -58015,7 +58015,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord4f")] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t, Single r, Single q) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t, Single r, Single q) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -58028,7 +58028,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord4fv")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -58041,7 +58041,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord4fv")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -58054,7 +58054,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord4fv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -58075,7 +58075,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord4i")] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t, Int32 r, Int32 q) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t, Int32 r, Int32 q) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -58088,7 +58088,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord4iv")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -58101,7 +58101,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord4iv")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -58114,7 +58114,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord4iv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -58135,7 +58135,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord4s")] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t, Int16 r, Int16 q) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t, Int16 r, Int16 q) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -58148,7 +58148,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord4sv")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -58161,7 +58161,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord4sv")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -58174,7 +58174,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord4sv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -58182,7 +58182,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP1ui")] [CLSCompliant(false)] - public static void MultiTexCoordP1(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 coords) { throw new NotImplementedException(); } + public static void MultiTexCoordP1(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -58190,7 +58190,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP1ui")] [CLSCompliant(false)] - public static void MultiTexCoordP1(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 coords) { throw new NotImplementedException(); } + public static void MultiTexCoordP1(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -58198,7 +58198,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP1uiv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoordP1(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoordP1(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -58206,7 +58206,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP1uiv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoordP1(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoordP1(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -58214,7 +58214,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP2ui")] [CLSCompliant(false)] - public static void MultiTexCoordP2(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 coords) { throw new NotImplementedException(); } + public static void MultiTexCoordP2(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -58222,7 +58222,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP2ui")] [CLSCompliant(false)] - public static void MultiTexCoordP2(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 coords) { throw new NotImplementedException(); } + public static void MultiTexCoordP2(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -58230,7 +58230,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP2uiv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoordP2(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoordP2(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -58238,7 +58238,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP2uiv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoordP2(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoordP2(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -58246,7 +58246,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP3ui")] [CLSCompliant(false)] - public static void MultiTexCoordP3(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 coords) { throw new NotImplementedException(); } + public static void MultiTexCoordP3(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -58254,7 +58254,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP3ui")] [CLSCompliant(false)] - public static void MultiTexCoordP3(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 coords) { throw new NotImplementedException(); } + public static void MultiTexCoordP3(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -58262,7 +58262,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP3uiv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoordP3(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoordP3(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -58270,7 +58270,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP3uiv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoordP3(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoordP3(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -58278,7 +58278,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP4ui")] [CLSCompliant(false)] - public static void MultiTexCoordP4(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 coords) { throw new NotImplementedException(); } + public static void MultiTexCoordP4(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -58286,7 +58286,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP4ui")] [CLSCompliant(false)] - public static void MultiTexCoordP4(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 coords) { throw new NotImplementedException(); } + public static void MultiTexCoordP4(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -58294,7 +58294,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP4uiv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoordP4(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoordP4(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -58302,7 +58302,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP4uiv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoordP4(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoordP4(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Multiply the current matrix with the specified matrix @@ -58312,7 +58312,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMultMatrixd")] [CLSCompliant(false)] - public static void MultMatrix([CountAttribute(Count = 16)] Double[] m) { throw new NotImplementedException(); } + public static void MultMatrix([CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Multiply the current matrix with the specified matrix @@ -58322,7 +58322,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMultMatrixd")] [CLSCompliant(false)] - public static void MultMatrix([CountAttribute(Count = 16)] ref Double m) { throw new NotImplementedException(); } + public static void MultMatrix([CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Multiply the current matrix with the specified matrix @@ -58332,7 +58332,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMultMatrixd")] [CLSCompliant(false)] - public static unsafe void MultMatrix([CountAttribute(Count = 16)] Double* m) { throw new NotImplementedException(); } + public static unsafe void MultMatrix([CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Multiply the current matrix with the specified matrix @@ -58342,7 +58342,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMultMatrixf")] [CLSCompliant(false)] - public static void MultMatrix([CountAttribute(Count = 16)] Single[] m) { throw new NotImplementedException(); } + public static void MultMatrix([CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Multiply the current matrix with the specified matrix @@ -58352,7 +58352,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMultMatrixf")] [CLSCompliant(false)] - public static void MultMatrix([CountAttribute(Count = 16)] ref Single m) { throw new NotImplementedException(); } + public static void MultMatrix([CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Multiply the current matrix with the specified matrix @@ -58362,7 +58362,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMultMatrixf")] [CLSCompliant(false)] - public static unsafe void MultMatrix([CountAttribute(Count = 16)] Single* m) { throw new NotImplementedException(); } + public static unsafe void MultMatrix([CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Multiply the current matrix with the specified row-major ordered matrix @@ -58372,7 +58372,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultTransposeMatrixd")] [CLSCompliant(false)] - public static void MultTransposeMatrix([CountAttribute(Count = 16)] Double[] m) { throw new NotImplementedException(); } + public static void MultTransposeMatrix([CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Multiply the current matrix with the specified row-major ordered matrix @@ -58382,7 +58382,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultTransposeMatrixd")] [CLSCompliant(false)] - public static void MultTransposeMatrix([CountAttribute(Count = 16)] ref Double m) { throw new NotImplementedException(); } + public static void MultTransposeMatrix([CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Multiply the current matrix with the specified row-major ordered matrix @@ -58392,7 +58392,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultTransposeMatrixd")] [CLSCompliant(false)] - public static unsafe void MultTransposeMatrix([CountAttribute(Count = 16)] Double* m) { throw new NotImplementedException(); } + public static unsafe void MultTransposeMatrix([CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Multiply the current matrix with the specified row-major ordered matrix @@ -58402,7 +58402,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultTransposeMatrixf")] [CLSCompliant(false)] - public static void MultTransposeMatrix([CountAttribute(Count = 16)] Single[] m) { throw new NotImplementedException(); } + public static void MultTransposeMatrix([CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Multiply the current matrix with the specified row-major ordered matrix @@ -58412,7 +58412,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultTransposeMatrixf")] [CLSCompliant(false)] - public static void MultTransposeMatrix([CountAttribute(Count = 16)] ref Single m) { throw new NotImplementedException(); } + public static void MultTransposeMatrix([CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Multiply the current matrix with the specified row-major ordered matrix @@ -58422,7 +58422,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultTransposeMatrixf")] [CLSCompliant(false)] - public static unsafe void MultTransposeMatrix([CountAttribute(Count = 16)] Single* m) { throw new NotImplementedException(); } + public static unsafe void MultTransposeMatrix([CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58431,7 +58431,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferData")] [CLSCompliant(false)] - public static void NamedBufferData(Int32 buffer, Int32 size, IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void NamedBufferData(Int32 buffer, Int32 size, IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58442,7 +58442,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute] T2[] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58453,7 +58453,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute] T2[,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58464,7 +58464,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute] T2[,,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58475,7 +58475,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute] ref T2 data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58484,7 +58484,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferData")] [CLSCompliant(false)] - public static void NamedBufferData(Int32 buffer, IntPtr size, IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void NamedBufferData(Int32 buffer, IntPtr size, IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58495,7 +58495,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute] T2[] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58506,7 +58506,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute] T2[,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58517,7 +58517,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute] T2[,,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58528,7 +58528,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute] ref T2 data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58537,7 +58537,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferData")] [CLSCompliant(false)] - public static void NamedBufferData(UInt32 buffer, Int32 size, IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void NamedBufferData(UInt32 buffer, Int32 size, IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58548,7 +58548,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute] T2[] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58559,7 +58559,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute] T2[,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58570,7 +58570,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute] T2[,,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58581,7 +58581,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute] ref T2 data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58590,7 +58590,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferData")] [CLSCompliant(false)] - public static void NamedBufferData(UInt32 buffer, IntPtr size, IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void NamedBufferData(UInt32 buffer, IntPtr size, IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58601,7 +58601,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute] T2[] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58612,7 +58612,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute] T2[,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58623,7 +58623,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute] T2[,,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58634,7 +58634,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute] ref T2 data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58643,7 +58643,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferStorage")] [CLSCompliant(false)] - public static void NamedBufferStorage(Int32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(Int32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58654,7 +58654,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58665,7 +58665,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58676,7 +58676,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58687,7 +58687,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58696,7 +58696,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferStorage")] [CLSCompliant(false)] - public static void NamedBufferStorage(Int32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(Int32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58707,7 +58707,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58718,7 +58718,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58729,7 +58729,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58740,7 +58740,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58749,7 +58749,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferStorage")] [CLSCompliant(false)] - public static void NamedBufferStorage(UInt32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(UInt32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58760,7 +58760,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58771,7 +58771,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58782,7 +58782,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58793,7 +58793,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58802,7 +58802,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferStorage")] [CLSCompliant(false)] - public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58813,7 +58813,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58824,7 +58824,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58835,7 +58835,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58846,7 +58846,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58855,7 +58855,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size)] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferSubData")] [CLSCompliant(false)] - public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58866,7 +58866,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58877,7 +58877,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58888,7 +58888,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58899,7 +58899,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58908,7 +58908,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size)] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferSubData")] [CLSCompliant(false)] - public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58919,7 +58919,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58930,7 +58930,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58941,7 +58941,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58952,7 +58952,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58961,7 +58961,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size)] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferSubData")] [CLSCompliant(false)] - public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58972,7 +58972,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58983,7 +58983,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58994,7 +58994,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59005,7 +59005,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59014,7 +59014,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size)] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferSubData")] [CLSCompliant(false)] - public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59025,7 +59025,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59036,7 +59036,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59047,7 +59047,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59058,21 +59058,21 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferDrawBuffer")] [CLSCompliant(false)] - public static void NamedFramebufferDrawBuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.DrawBufferMode buf) { throw new NotImplementedException(); } + public static void NamedFramebufferDrawBuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.DrawBufferMode buf) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferDrawBuffer")] [CLSCompliant(false)] - public static void NamedFramebufferDrawBuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.DrawBufferMode buf) { throw new NotImplementedException(); } + public static void NamedFramebufferDrawBuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.DrawBufferMode buf) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59080,7 +59080,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferDrawBuffers")] [CLSCompliant(false)] - public static void NamedFramebufferDrawBuffers(Int32 framebuffer, Int32 n, OpenTK.Graphics.OpenGL.DrawBuffersEnum[] bufs) { throw new NotImplementedException(); } + public static void NamedFramebufferDrawBuffers(Int32 framebuffer, Int32 n, OpenTK.Graphics.OpenGL.DrawBuffersEnum[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59088,7 +59088,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferDrawBuffers")] [CLSCompliant(false)] - public static void NamedFramebufferDrawBuffers(Int32 framebuffer, Int32 n, ref OpenTK.Graphics.OpenGL.DrawBuffersEnum bufs) { throw new NotImplementedException(); } + public static void NamedFramebufferDrawBuffers(Int32 framebuffer, Int32 n, ref OpenTK.Graphics.OpenGL.DrawBuffersEnum bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59096,7 +59096,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferDrawBuffers")] [CLSCompliant(false)] - public static unsafe void NamedFramebufferDrawBuffers(Int32 framebuffer, Int32 n, OpenTK.Graphics.OpenGL.DrawBuffersEnum* bufs) { throw new NotImplementedException(); } + public static unsafe void NamedFramebufferDrawBuffers(Int32 framebuffer, Int32 n, OpenTK.Graphics.OpenGL.DrawBuffersEnum* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59104,7 +59104,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferDrawBuffers")] [CLSCompliant(false)] - public static void NamedFramebufferDrawBuffers(UInt32 framebuffer, Int32 n, OpenTK.Graphics.OpenGL.DrawBuffersEnum[] bufs) { throw new NotImplementedException(); } + public static void NamedFramebufferDrawBuffers(UInt32 framebuffer, Int32 n, OpenTK.Graphics.OpenGL.DrawBuffersEnum[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59112,7 +59112,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferDrawBuffers")] [CLSCompliant(false)] - public static void NamedFramebufferDrawBuffers(UInt32 framebuffer, Int32 n, ref OpenTK.Graphics.OpenGL.DrawBuffersEnum bufs) { throw new NotImplementedException(); } + public static void NamedFramebufferDrawBuffers(UInt32 framebuffer, Int32 n, ref OpenTK.Graphics.OpenGL.DrawBuffersEnum bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59120,7 +59120,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferDrawBuffers")] [CLSCompliant(false)] - public static unsafe void NamedFramebufferDrawBuffers(UInt32 framebuffer, Int32 n, OpenTK.Graphics.OpenGL.DrawBuffersEnum* bufs) { throw new NotImplementedException(); } + public static unsafe void NamedFramebufferDrawBuffers(UInt32 framebuffer, Int32 n, OpenTK.Graphics.OpenGL.DrawBuffersEnum* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59128,7 +59128,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferParameteri")] [CLSCompliant(false)] - public static void NamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void NamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59136,21 +59136,21 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferParameteri")] [CLSCompliant(false)] - public static void NamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void NamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferReadBuffer")] [CLSCompliant(false)] - public static void NamedFramebufferReadBuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.ReadBufferMode src) { throw new NotImplementedException(); } + public static void NamedFramebufferReadBuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.ReadBufferMode src) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferReadBuffer")] [CLSCompliant(false)] - public static void NamedFramebufferReadBuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ReadBufferMode src) { throw new NotImplementedException(); } + public static void NamedFramebufferReadBuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ReadBufferMode src) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59159,7 +59159,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferRenderbuffer")] [CLSCompliant(false)] - public static void NamedFramebufferRenderbuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new NotImplementedException(); } + public static void NamedFramebufferRenderbuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59168,7 +59168,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferRenderbuffer")] [CLSCompliant(false)] - public static void NamedFramebufferRenderbuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void NamedFramebufferRenderbuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59177,7 +59177,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferTexture")] [CLSCompliant(false)] - public static void NamedFramebufferTexture(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void NamedFramebufferTexture(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59186,7 +59186,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferTexture")] [CLSCompliant(false)] - public static void NamedFramebufferTexture(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void NamedFramebufferTexture(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59196,7 +59196,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferTextureLayer")] [CLSCompliant(false)] - public static void NamedFramebufferTextureLayer(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } + public static void NamedFramebufferTextureLayer(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59206,7 +59206,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferTextureLayer")] [CLSCompliant(false)] - public static void NamedFramebufferTextureLayer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } + public static void NamedFramebufferTextureLayer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59215,7 +59215,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedRenderbufferStorage")] [CLSCompliant(false)] - public static void NamedRenderbufferStorage(Int32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorage(Int32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59224,7 +59224,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedRenderbufferStorage")] [CLSCompliant(false)] - public static void NamedRenderbufferStorage(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorage(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59234,7 +59234,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedRenderbufferStorageMultisample")] [CLSCompliant(false)] - public static void NamedRenderbufferStorageMultisample(Int32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorageMultisample(Int32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59244,7 +59244,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedRenderbufferStorageMultisample")] [CLSCompliant(false)] - public static void NamedRenderbufferStorageMultisample(UInt32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorageMultisample(UInt32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Create or replace a display list @@ -59257,7 +59257,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNewList")] [CLSCompliant(false)] - public static void NewList(Int32 list, OpenTK.Graphics.OpenGL.ListMode mode) { throw new NotImplementedException(); } + public static void NewList(Int32 list, OpenTK.Graphics.OpenGL.ListMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Create or replace a display list @@ -59270,7 +59270,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNewList")] [CLSCompliant(false)] - public static void NewList(UInt32 list, OpenTK.Graphics.OpenGL.ListMode mode) { throw new NotImplementedException(); } + public static void NewList(UInt32 list, OpenTK.Graphics.OpenGL.ListMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59286,7 +59286,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3b")] [CLSCompliant(false)] - public static void Normal3(Byte nx, Byte ny, Byte nz) { throw new NotImplementedException(); } + public static void Normal3(Byte nx, Byte ny, Byte nz) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59302,7 +59302,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3b")] [CLSCompliant(false)] - public static void Normal3(SByte nx, SByte ny, SByte nz) { throw new NotImplementedException(); } + public static void Normal3(SByte nx, SByte ny, SByte nz) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59312,7 +59312,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3bv")] [CLSCompliant(false)] - public static void Normal3([CountAttribute(Count = 3)] Byte[] v) { throw new NotImplementedException(); } + public static void Normal3([CountAttribute(Count = 3)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59322,7 +59322,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3bv")] [CLSCompliant(false)] - public static void Normal3([CountAttribute(Count = 3)] ref Byte v) { throw new NotImplementedException(); } + public static void Normal3([CountAttribute(Count = 3)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59332,7 +59332,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3bv")] [CLSCompliant(false)] - public static unsafe void Normal3([CountAttribute(Count = 3)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void Normal3([CountAttribute(Count = 3)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59342,7 +59342,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3bv")] [CLSCompliant(false)] - public static void Normal3([CountAttribute(Count = 3)] SByte[] v) { throw new NotImplementedException(); } + public static void Normal3([CountAttribute(Count = 3)] SByte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59352,7 +59352,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3bv")] [CLSCompliant(false)] - public static void Normal3([CountAttribute(Count = 3)] ref SByte v) { throw new NotImplementedException(); } + public static void Normal3([CountAttribute(Count = 3)] ref SByte v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59362,7 +59362,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3bv")] [CLSCompliant(false)] - public static unsafe void Normal3([CountAttribute(Count = 3)] SByte* v) { throw new NotImplementedException(); } + public static unsafe void Normal3([CountAttribute(Count = 3)] SByte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59377,7 +59377,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , and coordinates of the new current normal. The initial value of the current normal is the unit vector, (0, 0, 1). /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3d")] - public static void Normal3(Double nx, Double ny, Double nz) { throw new NotImplementedException(); } + public static void Normal3(Double nx, Double ny, Double nz) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59387,7 +59387,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3dv")] [CLSCompliant(false)] - public static void Normal3([CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void Normal3([CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59397,7 +59397,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3dv")] [CLSCompliant(false)] - public static void Normal3([CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void Normal3([CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59407,7 +59407,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3dv")] [CLSCompliant(false)] - public static unsafe void Normal3([CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void Normal3([CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59422,7 +59422,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , and coordinates of the new current normal. The initial value of the current normal is the unit vector, (0, 0, 1). /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3f")] - public static void Normal3(Single nx, Single ny, Single nz) { throw new NotImplementedException(); } + public static void Normal3(Single nx, Single ny, Single nz) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59432,7 +59432,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3fv")] [CLSCompliant(false)] - public static void Normal3([CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void Normal3([CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59442,7 +59442,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3fv")] [CLSCompliant(false)] - public static void Normal3([CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void Normal3([CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59452,7 +59452,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3fv")] [CLSCompliant(false)] - public static unsafe void Normal3([CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void Normal3([CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59467,7 +59467,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , and coordinates of the new current normal. The initial value of the current normal is the unit vector, (0, 0, 1). /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3i")] - public static void Normal3(Int32 nx, Int32 ny, Int32 nz) { throw new NotImplementedException(); } + public static void Normal3(Int32 nx, Int32 ny, Int32 nz) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59477,7 +59477,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3iv")] [CLSCompliant(false)] - public static void Normal3([CountAttribute(Count = 3)] Int32[] v) { throw new NotImplementedException(); } + public static void Normal3([CountAttribute(Count = 3)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59487,7 +59487,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3iv")] [CLSCompliant(false)] - public static void Normal3([CountAttribute(Count = 3)] ref Int32 v) { throw new NotImplementedException(); } + public static void Normal3([CountAttribute(Count = 3)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59497,7 +59497,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3iv")] [CLSCompliant(false)] - public static unsafe void Normal3([CountAttribute(Count = 3)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void Normal3([CountAttribute(Count = 3)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59512,7 +59512,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , and coordinates of the new current normal. The initial value of the current normal is the unit vector, (0, 0, 1). /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3s")] - public static void Normal3(Int16 nx, Int16 ny, Int16 nz) { throw new NotImplementedException(); } + public static void Normal3(Int16 nx, Int16 ny, Int16 nz) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59522,7 +59522,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3sv")] [CLSCompliant(false)] - public static void Normal3([CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void Normal3([CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59532,7 +59532,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3sv")] [CLSCompliant(false)] - public static void Normal3([CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void Normal3([CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59542,35 +59542,35 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3sv")] [CLSCompliant(false)] - public static unsafe void Normal3([CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void Normal3([CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glNormalP3ui")] [CLSCompliant(false)] - public static void NormalP3(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 coords) { throw new NotImplementedException(); } + public static void NormalP3(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glNormalP3ui")] [CLSCompliant(false)] - public static void NormalP3(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 coords) { throw new NotImplementedException(); } + public static void NormalP3(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glNormalP3uiv")] [CLSCompliant(false)] - public static unsafe void NormalP3(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void NormalP3(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glNormalP3uiv")] [CLSCompliant(false)] - public static unsafe void NormalP3(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new NotImplementedException(); } + public static unsafe void NormalP3(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of normals @@ -59585,7 +59585,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the first coordinate of the first normal in the array. The initial value is 0. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glNormalPointer")] - public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of normals @@ -59603,7 +59603,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of normals @@ -59621,7 +59621,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of normals @@ -59639,7 +59639,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of normals @@ -59656,7 +59656,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glNormalPointer")] public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Label a named object identified within a namespace @@ -59675,7 +59675,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glObjectLabel")] [CLSCompliant(false)] - public static void ObjectLabel(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier identifier, Int32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier identifier, Int32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Label a named object identified within a namespace @@ -59694,7 +59694,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glObjectLabel")] [CLSCompliant(false)] - public static void ObjectLabel(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier identifier, UInt32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier identifier, UInt32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Label a a sync object identified by a pointer @@ -59709,7 +59709,7 @@ namespace OpenTK.Graphics.OpenGL /// The address of a string containing the label to assign to the object. /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glObjectPtrLabel")] - public static void ObjectPtrLabel(IntPtr ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new NotImplementedException(); } + public static void ObjectPtrLabel(IntPtr ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Label a a sync object identified by a pointer @@ -59727,7 +59727,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Label a a sync object identified by a pointer @@ -59745,7 +59745,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Label a a sync object identified by a pointer @@ -59763,7 +59763,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Label a a sync object identified by a pointer @@ -59780,7 +59780,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glObjectPtrLabel")] public static void ObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Multiply the current matrix with an orthographic matrix @@ -59804,7 +59804,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the distances to the nearer and farther depth clipping planes. These values are negative if the plane is to be behind the viewer. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glOrtho")] - public static void Ortho(Double left, Double right, Double bottom, Double top, Double zNear, Double zFar) { throw new NotImplementedException(); } + public static void Ortho(Double left, Double right, Double bottom, Double top, Double zNear, Double zFar) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Place a marker in the feedback buffer @@ -59813,7 +59813,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a marker value to be placed in the feedback buffer following a PassThroughToken. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPassThrough")] - public static void PassThrough(Single token) { throw new NotImplementedException(); } + public static void PassThrough(Single token) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_tessellation_shader|VERSION_4_0] /// Specifies the parameters for patch primitives @@ -59826,7 +59826,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_tessellation_shader|VERSION_4_0", Version = "4.0", EntryPoint = "glPatchParameterfv")] [CLSCompliant(false)] - public static void PatchParameter(OpenTK.Graphics.OpenGL.PatchParameterFloat pname, [CountAttribute(Computed = "pname")] Single[] values) { throw new NotImplementedException(); } + public static void PatchParameter(OpenTK.Graphics.OpenGL.PatchParameterFloat pname, [CountAttribute(Computed = "pname")] Single[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_tessellation_shader|VERSION_4_0] /// Specifies the parameters for patch primitives @@ -59839,7 +59839,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_tessellation_shader|VERSION_4_0", Version = "4.0", EntryPoint = "glPatchParameterfv")] [CLSCompliant(false)] - public static void PatchParameter(OpenTK.Graphics.OpenGL.PatchParameterFloat pname, [CountAttribute(Computed = "pname")] ref Single values) { throw new NotImplementedException(); } + public static void PatchParameter(OpenTK.Graphics.OpenGL.PatchParameterFloat pname, [CountAttribute(Computed = "pname")] ref Single values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_tessellation_shader|VERSION_4_0] /// Specifies the parameters for patch primitives @@ -59852,7 +59852,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_tessellation_shader|VERSION_4_0", Version = "4.0", EntryPoint = "glPatchParameterfv")] [CLSCompliant(false)] - public static unsafe void PatchParameter(OpenTK.Graphics.OpenGL.PatchParameterFloat pname, [CountAttribute(Computed = "pname")] Single* values) { throw new NotImplementedException(); } + public static unsafe void PatchParameter(OpenTK.Graphics.OpenGL.PatchParameterFloat pname, [CountAttribute(Computed = "pname")] Single* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_tessellation_shader|VERSION_4_0] /// Specifies the parameters for patch primitives @@ -59864,13 +59864,13 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the new value for the parameter given by pname. /// [AutoGenerated(Category = "ARB_tessellation_shader|VERSION_4_0", Version = "4.0", EntryPoint = "glPatchParameteri")] - public static void PatchParameter(OpenTK.Graphics.OpenGL.PatchParameterInt pname, Int32 value) { throw new NotImplementedException(); } + public static void PatchParameter(OpenTK.Graphics.OpenGL.PatchParameterInt pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Pause transform feedback operations /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glPauseTransformFeedback")] - public static void PauseTransformFeedback() { throw new NotImplementedException(); } + public static void PauseTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set up pixel transfer maps @@ -59886,7 +59886,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelMapfv")] [CLSCompliant(false)] - public static void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] Single[] values) { throw new NotImplementedException(); } + public static void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] Single[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set up pixel transfer maps @@ -59902,7 +59902,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelMapfv")] [CLSCompliant(false)] - public static void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] ref Single values) { throw new NotImplementedException(); } + public static void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] ref Single values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set up pixel transfer maps @@ -59918,7 +59918,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelMapfv")] [CLSCompliant(false)] - public static unsafe void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] Single* values) { throw new NotImplementedException(); } + public static unsafe void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] Single* values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set up pixel transfer maps @@ -59934,7 +59934,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelMapuiv")] [CLSCompliant(false)] - public static void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] Int32[] values) { throw new NotImplementedException(); } + public static void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set up pixel transfer maps @@ -59950,7 +59950,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelMapuiv")] [CLSCompliant(false)] - public static void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] ref Int32 values) { throw new NotImplementedException(); } + public static void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] ref Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set up pixel transfer maps @@ -59966,7 +59966,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelMapuiv")] [CLSCompliant(false)] - public static unsafe void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set up pixel transfer maps @@ -59982,7 +59982,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelMapuiv")] [CLSCompliant(false)] - public static void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] UInt32[] values) { throw new NotImplementedException(); } + public static void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] UInt32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set up pixel transfer maps @@ -59998,7 +59998,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelMapuiv")] [CLSCompliant(false)] - public static void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] ref UInt32 values) { throw new NotImplementedException(); } + public static void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] ref UInt32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set up pixel transfer maps @@ -60014,7 +60014,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelMapuiv")] [CLSCompliant(false)] - public static unsafe void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] UInt32* values) { throw new NotImplementedException(); } + public static unsafe void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] UInt32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set up pixel transfer maps @@ -60030,7 +60030,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelMapusv")] [CLSCompliant(false)] - public static void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] Int16[] values) { throw new NotImplementedException(); } + public static void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] Int16[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set up pixel transfer maps @@ -60046,7 +60046,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelMapusv")] [CLSCompliant(false)] - public static void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] ref Int16 values) { throw new NotImplementedException(); } + public static void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] ref Int16 values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set up pixel transfer maps @@ -60062,7 +60062,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelMapusv")] [CLSCompliant(false)] - public static unsafe void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] Int16* values) { throw new NotImplementedException(); } + public static unsafe void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] Int16* values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set up pixel transfer maps @@ -60078,7 +60078,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelMapusv")] [CLSCompliant(false)] - public static void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] UInt16[] values) { throw new NotImplementedException(); } + public static void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] UInt16[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set up pixel transfer maps @@ -60094,7 +60094,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelMapusv")] [CLSCompliant(false)] - public static void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] ref UInt16 values) { throw new NotImplementedException(); } + public static void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] ref UInt16 values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set up pixel transfer maps @@ -60110,7 +60110,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelMapusv")] [CLSCompliant(false)] - public static unsafe void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] UInt16* values) { throw new NotImplementedException(); } + public static unsafe void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] UInt16* values) { throw new BindingsNotRewrittenException(); } /// /// @@ -60118,7 +60118,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: size] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelMapx")] [CLSCompliant(false)] - public static void PixelMapx(OpenTK.Graphics.OpenGL.OesFixedPoint map, Int32 size, [CountAttribute(Parameter = "size")] Int32[] values) { throw new NotImplementedException(); } + public static void PixelMapx(OpenTK.Graphics.OpenGL.OesFixedPoint map, Int32 size, [CountAttribute(Parameter = "size")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// /// @@ -60126,7 +60126,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: size] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelMapx")] [CLSCompliant(false)] - public static void PixelMapx(OpenTK.Graphics.OpenGL.OesFixedPoint map, Int32 size, [CountAttribute(Parameter = "size")] ref Int32 values) { throw new NotImplementedException(); } + public static void PixelMapx(OpenTK.Graphics.OpenGL.OesFixedPoint map, Int32 size, [CountAttribute(Parameter = "size")] ref Int32 values) { throw new BindingsNotRewrittenException(); } /// /// @@ -60134,7 +60134,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: size] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelMapx")] [CLSCompliant(false)] - public static unsafe void PixelMapx(OpenTK.Graphics.OpenGL.OesFixedPoint map, Int32 size, [CountAttribute(Parameter = "size")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void PixelMapx(OpenTK.Graphics.OpenGL.OesFixedPoint map, Int32 size, [CountAttribute(Parameter = "size")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set pixel storage modes @@ -60146,7 +60146,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the value that pname is set to. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelStoref")] - public static void PixelStore(OpenTK.Graphics.OpenGL.PixelStoreParameter pname, Single param) { throw new NotImplementedException(); } + public static void PixelStore(OpenTK.Graphics.OpenGL.PixelStoreParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set pixel storage modes @@ -60158,13 +60158,13 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the value that pname is set to. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelStorei")] - public static void PixelStore(OpenTK.Graphics.OpenGL.PixelStoreParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void PixelStore(OpenTK.Graphics.OpenGL.PixelStoreParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelStorex")] - public static void PixelStorex(OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new NotImplementedException(); } + public static void PixelStorex(OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set pixel transfer modes @@ -60176,7 +60176,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the value that pname is set to. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelTransferf")] - public static void PixelTransfer(OpenTK.Graphics.OpenGL.PixelTransferParameter pname, Single param) { throw new NotImplementedException(); } + public static void PixelTransfer(OpenTK.Graphics.OpenGL.PixelTransferParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set pixel transfer modes @@ -60188,7 +60188,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the value that pname is set to. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelTransferi")] - public static void PixelTransfer(OpenTK.Graphics.OpenGL.PixelTransferParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void PixelTransfer(OpenTK.Graphics.OpenGL.PixelTransferParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the pixel zoom factors @@ -60200,7 +60200,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the and zoom factors for pixel write operations. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelZoom")] - public static void PixelZoom(Single xfactor, Single yfactor) { throw new NotImplementedException(); } + public static void PixelZoom(Single xfactor, Single yfactor) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Specify point parameters @@ -60212,7 +60212,7 @@ namespace OpenTK.Graphics.OpenGL /// For glPointParameterf and glPointParameteri, specifies the value that pname will be set to. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glPointParameterf")] - public static void PointParameter(OpenTK.Graphics.OpenGL.PointParameterName pname, Single param) { throw new NotImplementedException(); } + public static void PointParameter(OpenTK.Graphics.OpenGL.PointParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Specify point parameters @@ -60225,7 +60225,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glPointParameterfv")] [CLSCompliant(false)] - public static void PointParameter(OpenTK.Graphics.OpenGL.PointParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void PointParameter(OpenTK.Graphics.OpenGL.PointParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Specify point parameters @@ -60238,7 +60238,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glPointParameterfv")] [CLSCompliant(false)] - public static unsafe void PointParameter(OpenTK.Graphics.OpenGL.PointParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void PointParameter(OpenTK.Graphics.OpenGL.PointParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Specify point parameters @@ -60250,7 +60250,7 @@ namespace OpenTK.Graphics.OpenGL /// For glPointParameterf and glPointParameteri, specifies the value that pname will be set to. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glPointParameteri")] - public static void PointParameter(OpenTK.Graphics.OpenGL.PointParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void PointParameter(OpenTK.Graphics.OpenGL.PointParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Specify point parameters @@ -60263,7 +60263,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glPointParameteriv")] [CLSCompliant(false)] - public static void PointParameter(OpenTK.Graphics.OpenGL.PointParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void PointParameter(OpenTK.Graphics.OpenGL.PointParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Specify point parameters @@ -60276,7 +60276,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glPointParameteriv")] [CLSCompliant(false)] - public static unsafe void PointParameter(OpenTK.Graphics.OpenGL.PointParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void PointParameter(OpenTK.Graphics.OpenGL.PointParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify the diameter of rasterized points @@ -60285,7 +60285,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the diameter of rasterized points. The initial value is 1. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPointSize")] - public static void PointSize(Single size) { throw new NotImplementedException(); } + public static void PointSize(Single size) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Select a polygon rasterization mode @@ -60297,7 +60297,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies how polygons will be rasterized. Accepted values are Point, Line, and Fill. The initial value is Fill for both front- and back-facing polygons. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPolygonMode")] - public static void PolygonMode(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.PolygonMode mode) { throw new NotImplementedException(); } + public static void PolygonMode(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.PolygonMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Set the scale and units used to calculate depth values @@ -60309,14 +60309,14 @@ namespace OpenTK.Graphics.OpenGL /// Is multiplied by an implementation-specific value to create a constant depth offset. The initial value is 0. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glPolygonOffset")] - public static void PolygonOffset(Single factor, Single units) { throw new NotImplementedException(); } + public static void PolygonOffset(Single factor, Single units) { throw new BindingsNotRewrittenException(); } /// [requires: v4.6 or ARB_polygon_offset_clamp|VERSION_4_6] /// /// /// [AutoGenerated(Category = "ARB_polygon_offset_clamp|VERSION_4_6", Version = "4.6", EntryPoint = "glPolygonOffsetClamp")] - public static void PolygonOffsetClamp(Single factor, Single units, Single clamp) { throw new NotImplementedException(); } + public static void PolygonOffsetClamp(Single factor, Single units, Single clamp) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the polygon stippling pattern @@ -60326,7 +60326,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPolygonStipple")] [CLSCompliant(false)] - public static void PolygonStipple([CountAttribute(Computed = "")] Byte[] mask) { throw new NotImplementedException(); } + public static void PolygonStipple([CountAttribute(Computed = "")] Byte[] mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the polygon stippling pattern @@ -60336,7 +60336,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPolygonStipple")] [CLSCompliant(false)] - public static void PolygonStipple([CountAttribute(Computed = "")] ref Byte mask) { throw new NotImplementedException(); } + public static void PolygonStipple([CountAttribute(Computed = "")] ref Byte mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the polygon stippling pattern @@ -60346,29 +60346,29 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPolygonStipple")] [CLSCompliant(false)] - public static unsafe void PolygonStipple([CountAttribute(Computed = "")] Byte* mask) { throw new NotImplementedException(); } + public static unsafe void PolygonStipple([CountAttribute(Computed = "")] Byte* mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPopAttrib")] - public static void PopAttrib() { throw new NotImplementedException(); } + public static void PopAttrib() { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glPopClientAttrib")] - public static void PopClientAttrib() { throw new NotImplementedException(); } + public static void PopClientAttrib() { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Pop the active debug group /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glPopDebugGroup")] - public static void PopDebugGroup() { throw new NotImplementedException(); } + public static void PopDebugGroup() { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPopMatrix")] - public static void PopMatrix() { throw new NotImplementedException(); } + public static void PopMatrix() { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPopName")] - public static void PopName() { throw new NotImplementedException(); } + public static void PopName() { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Specify the primitive restart index @@ -60378,7 +60378,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glPrimitiveRestartIndex")] [CLSCompliant(false)] - public static void PrimitiveRestartIndex(Int32 index) { throw new NotImplementedException(); } + public static void PrimitiveRestartIndex(Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Specify the primitive restart index @@ -60388,7 +60388,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glPrimitiveRestartIndex")] [CLSCompliant(false)] - public static void PrimitiveRestartIndex(UInt32 index) { throw new NotImplementedException(); } + public static void PrimitiveRestartIndex(UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Set texture residence priority @@ -60404,7 +60404,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glPrioritizeTextures")] [CLSCompliant(false)] - public static void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures, [CountAttribute(Parameter = "n")] Single[] priorities) { throw new NotImplementedException(); } + public static void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures, [CountAttribute(Parameter = "n")] Single[] priorities) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Set texture residence priority @@ -60420,7 +60420,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glPrioritizeTextures")] [CLSCompliant(false)] - public static void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures, [CountAttribute(Parameter = "n")] ref Single priorities) { throw new NotImplementedException(); } + public static void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures, [CountAttribute(Parameter = "n")] ref Single priorities) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Set texture residence priority @@ -60436,7 +60436,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glPrioritizeTextures")] [CLSCompliant(false)] - public static unsafe void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures, [CountAttribute(Parameter = "n")] Single* priorities) { throw new NotImplementedException(); } + public static unsafe void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures, [CountAttribute(Parameter = "n")] Single* priorities) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Set texture residence priority @@ -60452,7 +60452,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glPrioritizeTextures")] [CLSCompliant(false)] - public static void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures, [CountAttribute(Parameter = "n")] Single[] priorities) { throw new NotImplementedException(); } + public static void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures, [CountAttribute(Parameter = "n")] Single[] priorities) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Set texture residence priority @@ -60468,7 +60468,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glPrioritizeTextures")] [CLSCompliant(false)] - public static void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures, [CountAttribute(Parameter = "n")] ref Single priorities) { throw new NotImplementedException(); } + public static void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures, [CountAttribute(Parameter = "n")] ref Single priorities) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Set texture residence priority @@ -60484,7 +60484,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glPrioritizeTextures")] [CLSCompliant(false)] - public static unsafe void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures, [CountAttribute(Parameter = "n")] Single* priorities) { throw new NotImplementedException(); } + public static unsafe void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures, [CountAttribute(Parameter = "n")] Single* priorities) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Load a program object with a program binary @@ -60503,7 +60503,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramBinary")] [CLSCompliant(false)] - public static void ProgramBinary(Int32 program, OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ProgramBinary(Int32 program, OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Load a program object with a program binary @@ -60524,7 +60524,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Load a program object with a program binary @@ -60545,7 +60545,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Load a program object with a program binary @@ -60566,7 +60566,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Load a program object with a program binary @@ -60587,7 +60587,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T2 binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Load a program object with a program binary @@ -60606,7 +60606,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramBinary")] [CLSCompliant(false)] - public static void ProgramBinary(UInt32 program, OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ProgramBinary(UInt32 program, OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Load a program object with a program binary @@ -60627,7 +60627,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Load a program object with a program binary @@ -60648,7 +60648,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Load a program object with a program binary @@ -60669,7 +60669,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Load a program object with a program binary @@ -60690,7 +60690,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T2 binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|ARB_separate_shader_objects|VERSION_4_1|VERSION_4_1] /// Specify a parameter for a program object @@ -60707,7 +60707,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ProgramParameterName overload instead")] [AutoGenerated(Category = "ARB_get_program_binary|ARB_separate_shader_objects|VERSION_4_1|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramParameteri")] [CLSCompliant(false)] - public static void ProgramParameter(Int32 program, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(Int32 program, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|ARB_separate_shader_objects|VERSION_4_1|VERSION_4_1] /// Specify a parameter for a program object @@ -60723,7 +60723,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_get_program_binary|ARB_separate_shader_objects|VERSION_4_1|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramParameteri")] [CLSCompliant(false)] - public static void ProgramParameter(Int32 program, OpenTK.Graphics.OpenGL.ProgramParameterName pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(Int32 program, OpenTK.Graphics.OpenGL.ProgramParameterName pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|ARB_separate_shader_objects|VERSION_4_1|VERSION_4_1] /// Specify a parameter for a program object @@ -60740,7 +60740,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ProgramParameterName overload instead")] [AutoGenerated(Category = "ARB_get_program_binary|ARB_separate_shader_objects|VERSION_4_1|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramParameteri")] [CLSCompliant(false)] - public static void ProgramParameter(Int32 program, OpenTK.Graphics.OpenGL.Version32 pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(Int32 program, OpenTK.Graphics.OpenGL.Version32 pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|ARB_separate_shader_objects|VERSION_4_1|VERSION_4_1] /// Specify a parameter for a program object @@ -60757,7 +60757,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ProgramParameterName overload instead")] [AutoGenerated(Category = "ARB_get_program_binary|ARB_separate_shader_objects|VERSION_4_1|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramParameteri")] [CLSCompliant(false)] - public static void ProgramParameter(UInt32 program, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(UInt32 program, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|ARB_separate_shader_objects|VERSION_4_1|VERSION_4_1] /// Specify a parameter for a program object @@ -60773,7 +60773,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_get_program_binary|ARB_separate_shader_objects|VERSION_4_1|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramParameteri")] [CLSCompliant(false)] - public static void ProgramParameter(UInt32 program, OpenTK.Graphics.OpenGL.ProgramParameterName pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(UInt32 program, OpenTK.Graphics.OpenGL.ProgramParameterName pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|ARB_separate_shader_objects|VERSION_4_1|VERSION_4_1] /// Specify a parameter for a program object @@ -60790,7 +60790,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ProgramParameterName overload instead")] [AutoGenerated(Category = "ARB_get_program_binary|ARB_separate_shader_objects|VERSION_4_1|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramParameteri")] [CLSCompliant(false)] - public static void ProgramParameter(UInt32 program, OpenTK.Graphics.OpenGL.Version32 pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(UInt32 program, OpenTK.Graphics.OpenGL.Version32 pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -60806,7 +60806,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1d")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Double v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Double v0) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -60822,7 +60822,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1d")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Double v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Double v0) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -60841,7 +60841,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1dv")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -60860,7 +60860,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1dv")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -60879,7 +60879,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -60898,7 +60898,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1dv")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -60917,7 +60917,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1dv")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -60936,7 +60936,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -60952,7 +60952,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1f")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Single v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -60968,7 +60968,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1f")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Single v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -60987,7 +60987,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1fv")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61006,7 +61006,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1fv")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61025,7 +61025,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61044,7 +61044,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1fv")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61063,7 +61063,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1fv")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61082,7 +61082,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61098,7 +61098,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1i")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61114,7 +61114,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1i")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61133,7 +61133,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1iv")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61152,7 +61152,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1iv")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61171,7 +61171,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1iv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61190,7 +61190,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1iv")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61209,7 +61209,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1iv")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61228,7 +61228,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1iv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61244,7 +61244,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1ui")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, UInt32 v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, UInt32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61263,7 +61263,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1uiv")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61282,7 +61282,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1uiv")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61301,7 +61301,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1uiv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61320,7 +61320,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2d")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Double v0, Double v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Double v0, Double v1) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61339,7 +61339,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2d")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Double v0, Double v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Double v0, Double v1) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61358,7 +61358,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2dv")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61377,7 +61377,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2dv")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61396,7 +61396,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61415,7 +61415,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2dv")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61434,7 +61434,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2dv")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61453,7 +61453,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61472,7 +61472,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2f")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61491,7 +61491,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2f")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61510,7 +61510,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2fv")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61529,7 +61529,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2fv")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61548,7 +61548,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61567,7 +61567,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2fv")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61586,7 +61586,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2fv")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61605,7 +61605,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61624,7 +61624,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2i")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61643,7 +61643,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2i")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61662,7 +61662,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2iv")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61681,7 +61681,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2iv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61700,7 +61700,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2iv")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61719,7 +61719,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2iv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61738,7 +61738,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2ui")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, UInt32 v0, UInt32 v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, UInt32 v0, UInt32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61757,7 +61757,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2uiv")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61776,7 +61776,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2uiv")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61795,7 +61795,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2uiv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61817,7 +61817,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3d")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Double v0, Double v1, Double v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Double v0, Double v1, Double v2) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61839,7 +61839,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3d")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Double v0, Double v1, Double v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Double v0, Double v1, Double v2) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61858,7 +61858,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3dv")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61877,7 +61877,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3dv")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61896,7 +61896,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61915,7 +61915,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3dv")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61934,7 +61934,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3dv")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61953,7 +61953,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61975,7 +61975,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3f")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61997,7 +61997,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3f")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62016,7 +62016,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3fv")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62035,7 +62035,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3fv")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62054,7 +62054,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62073,7 +62073,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3fv")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62092,7 +62092,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3fv")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62111,7 +62111,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62133,7 +62133,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3i")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62155,7 +62155,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3i")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62174,7 +62174,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3iv")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62193,7 +62193,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3iv")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62212,7 +62212,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3iv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62231,7 +62231,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3iv")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62250,7 +62250,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3iv")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62269,7 +62269,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3iv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62291,7 +62291,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3ui")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62310,7 +62310,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3uiv")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62329,7 +62329,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3uiv")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62348,7 +62348,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3uiv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62373,7 +62373,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4d")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Double v0, Double v1, Double v2, Double v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Double v0, Double v1, Double v2, Double v3) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62398,7 +62398,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4d")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Double v0, Double v1, Double v2, Double v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Double v0, Double v1, Double v2, Double v3) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62417,7 +62417,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4dv")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62436,7 +62436,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4dv")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62455,7 +62455,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62474,7 +62474,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4dv")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62493,7 +62493,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4dv")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62512,7 +62512,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62537,7 +62537,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4f")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62562,7 +62562,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4f")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62581,7 +62581,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4fv")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62600,7 +62600,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4fv")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62619,7 +62619,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62638,7 +62638,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4fv")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62657,7 +62657,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4fv")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62676,7 +62676,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62701,7 +62701,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4i")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62726,7 +62726,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4i")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62745,7 +62745,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4iv")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62764,7 +62764,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4iv")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62783,7 +62783,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4iv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62802,7 +62802,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4iv")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62821,7 +62821,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4iv")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62840,7 +62840,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4iv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62865,7 +62865,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4ui")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62884,7 +62884,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4uiv")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62903,7 +62903,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4uiv")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62922,7 +62922,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4uiv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -62932,7 +62932,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -62942,7 +62942,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -62952,7 +62952,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -62962,7 +62962,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -62972,7 +62972,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -62982,7 +62982,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -62992,7 +62992,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63002,7 +63002,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63012,7 +63012,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63022,7 +63022,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63032,7 +63032,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63042,7 +63042,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63052,7 +63052,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63062,7 +63062,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63072,7 +63072,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63082,7 +63082,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63092,7 +63092,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63102,7 +63102,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63112,7 +63112,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63122,7 +63122,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63132,7 +63132,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63142,7 +63142,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63152,7 +63152,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63162,7 +63162,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63172,7 +63172,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63182,7 +63182,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63192,7 +63192,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63202,7 +63202,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63212,7 +63212,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63222,7 +63222,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63232,7 +63232,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63242,7 +63242,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63252,7 +63252,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63262,7 +63262,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63272,7 +63272,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63282,7 +63282,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63292,7 +63292,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63302,7 +63302,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63312,7 +63312,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63322,7 +63322,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63332,7 +63332,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63342,7 +63342,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63352,7 +63352,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63362,7 +63362,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63372,7 +63372,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63382,7 +63382,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63392,7 +63392,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63402,7 +63402,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63412,7 +63412,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63422,7 +63422,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63432,7 +63432,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63442,7 +63442,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63452,7 +63452,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63462,7 +63462,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63472,7 +63472,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63482,7 +63482,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63492,7 +63492,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63502,7 +63502,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63512,7 +63512,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63522,7 +63522,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63532,7 +63532,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63542,7 +63542,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63552,7 +63552,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63562,7 +63562,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63572,7 +63572,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63582,7 +63582,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63592,7 +63592,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63602,7 +63602,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63612,7 +63612,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63622,7 +63622,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63632,7 +63632,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63642,7 +63642,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63652,7 +63652,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63662,7 +63662,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63672,7 +63672,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63682,7 +63682,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63692,7 +63692,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63702,7 +63702,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63712,7 +63712,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63722,7 +63722,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63732,7 +63732,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63742,7 +63742,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63752,7 +63752,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63762,7 +63762,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63772,7 +63772,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63782,7 +63782,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63792,7 +63792,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63802,7 +63802,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63812,7 +63812,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63822,7 +63822,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63832,7 +63832,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63842,7 +63842,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63852,7 +63852,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63862,7 +63862,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63872,7 +63872,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63882,7 +63882,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63892,7 +63892,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63902,7 +63902,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63912,7 +63912,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63922,7 +63922,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63932,7 +63932,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63942,7 +63942,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63952,7 +63952,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63962,7 +63962,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63972,7 +63972,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63982,7 +63982,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63992,7 +63992,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -64002,7 +64002,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_provoking_vertex|VERSION_3_2] /// Specifiy the vertex to be used as the source of data for flat shaded varyings @@ -64011,7 +64011,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the vertex to be used as the source of data for flat shaded varyings. /// [AutoGenerated(Category = "ARB_provoking_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glProvokingVertex")] - public static void ProvokingVertex(OpenTK.Graphics.OpenGL.ProvokingVertexMode mode) { throw new NotImplementedException(); } + public static void ProvokingVertex(OpenTK.Graphics.OpenGL.ProvokingVertexMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Push and pop the server attribute stack @@ -64020,7 +64020,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a mask that indicates which attributes to save. Values for mask are listed below. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPushAttrib")] - public static void PushAttrib(OpenTK.Graphics.OpenGL.AttribMask mask) { throw new NotImplementedException(); } + public static void PushAttrib(OpenTK.Graphics.OpenGL.AttribMask mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Push and pop the client attribute stack @@ -64029,7 +64029,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a mask that indicates which attributes to save. Values for mask are listed below. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glPushClientAttrib")] - public static void PushClientAttrib(OpenTK.Graphics.OpenGL.ClientAttribMask mask) { throw new NotImplementedException(); } + public static void PushClientAttrib(OpenTK.Graphics.OpenGL.ClientAttribMask mask) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Push a named debug group into the command stream @@ -64048,7 +64048,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glPushDebugGroup")] [CLSCompliant(false)] - public static void PushDebugGroup(OpenTK.Graphics.OpenGL.DebugSourceExternal source, Int32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new NotImplementedException(); } + public static void PushDebugGroup(OpenTK.Graphics.OpenGL.DebugSourceExternal source, Int32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Push a named debug group into the command stream @@ -64067,13 +64067,13 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glPushDebugGroup")] [CLSCompliant(false)] - public static void PushDebugGroup(OpenTK.Graphics.OpenGL.DebugSourceExternal source, UInt32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new NotImplementedException(); } + public static void PushDebugGroup(OpenTK.Graphics.OpenGL.DebugSourceExternal source, UInt32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Push and pop the current matrix stack /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPushMatrix")] - public static void PushMatrix() { throw new NotImplementedException(); } + public static void PushMatrix() { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Push and pop the name stack @@ -64083,7 +64083,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPushName")] [CLSCompliant(false)] - public static void PushName(Int32 name) { throw new NotImplementedException(); } + public static void PushName(Int32 name) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Push and pop the name stack @@ -64093,7 +64093,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPushName")] [CLSCompliant(false)] - public static void PushName(UInt32 name) { throw new NotImplementedException(); } + public static void PushName(UInt32 name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Record the GL time into a query object after all previous commands have reached the GL server but have not yet necessarily executed. @@ -64106,7 +64106,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glQueryCounter")] [CLSCompliant(false)] - public static void QueryCounter(Int32 id, OpenTK.Graphics.OpenGL.QueryCounterTarget target) { throw new NotImplementedException(); } + public static void QueryCounter(Int32 id, OpenTK.Graphics.OpenGL.QueryCounterTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Record the GL time into a query object after all previous commands have reached the GL server but have not yet necessarily executed. @@ -64119,7 +64119,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glQueryCounter")] [CLSCompliant(false)] - public static void QueryCounter(UInt32 id, OpenTK.Graphics.OpenGL.QueryCounterTarget target) { throw new NotImplementedException(); } + public static void QueryCounter(UInt32 id, OpenTK.Graphics.OpenGL.QueryCounterTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64131,7 +64131,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , , and object coordinates (if present) for the raster position. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2d")] - public static void RasterPos2(Double x, Double y) { throw new NotImplementedException(); } + public static void RasterPos2(Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64141,7 +64141,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2dv")] [CLSCompliant(false)] - public static void RasterPos2([CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void RasterPos2([CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64151,7 +64151,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2dv")] [CLSCompliant(false)] - public static void RasterPos2([CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void RasterPos2([CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64161,7 +64161,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2dv")] [CLSCompliant(false)] - public static unsafe void RasterPos2([CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void RasterPos2([CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64173,7 +64173,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , , and object coordinates (if present) for the raster position. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2f")] - public static void RasterPos2(Single x, Single y) { throw new NotImplementedException(); } + public static void RasterPos2(Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64183,7 +64183,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2fv")] [CLSCompliant(false)] - public static void RasterPos2([CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void RasterPos2([CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64193,7 +64193,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2fv")] [CLSCompliant(false)] - public static void RasterPos2([CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void RasterPos2([CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64203,7 +64203,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2fv")] [CLSCompliant(false)] - public static unsafe void RasterPos2([CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void RasterPos2([CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64215,7 +64215,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , , and object coordinates (if present) for the raster position. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2i")] - public static void RasterPos2(Int32 x, Int32 y) { throw new NotImplementedException(); } + public static void RasterPos2(Int32 x, Int32 y) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64225,7 +64225,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2iv")] [CLSCompliant(false)] - public static void RasterPos2([CountAttribute(Count = 2)] Int32[] v) { throw new NotImplementedException(); } + public static void RasterPos2([CountAttribute(Count = 2)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64235,7 +64235,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2iv")] [CLSCompliant(false)] - public static void RasterPos2([CountAttribute(Count = 2)] ref Int32 v) { throw new NotImplementedException(); } + public static void RasterPos2([CountAttribute(Count = 2)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64245,7 +64245,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2iv")] [CLSCompliant(false)] - public static unsafe void RasterPos2([CountAttribute(Count = 2)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void RasterPos2([CountAttribute(Count = 2)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64257,7 +64257,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , , and object coordinates (if present) for the raster position. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2s")] - public static void RasterPos2(Int16 x, Int16 y) { throw new NotImplementedException(); } + public static void RasterPos2(Int16 x, Int16 y) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64267,7 +64267,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2sv")] [CLSCompliant(false)] - public static void RasterPos2([CountAttribute(Count = 2)] Int16[] v) { throw new NotImplementedException(); } + public static void RasterPos2([CountAttribute(Count = 2)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64277,7 +64277,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2sv")] [CLSCompliant(false)] - public static void RasterPos2([CountAttribute(Count = 2)] ref Int16 v) { throw new NotImplementedException(); } + public static void RasterPos2([CountAttribute(Count = 2)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64287,7 +64287,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2sv")] [CLSCompliant(false)] - public static unsafe void RasterPos2([CountAttribute(Count = 2)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void RasterPos2([CountAttribute(Count = 2)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64302,7 +64302,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , , and object coordinates (if present) for the raster position. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3d")] - public static void RasterPos3(Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void RasterPos3(Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64312,7 +64312,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3dv")] [CLSCompliant(false)] - public static void RasterPos3([CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void RasterPos3([CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64322,7 +64322,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3dv")] [CLSCompliant(false)] - public static void RasterPos3([CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void RasterPos3([CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64332,7 +64332,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3dv")] [CLSCompliant(false)] - public static unsafe void RasterPos3([CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void RasterPos3([CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64347,7 +64347,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , , and object coordinates (if present) for the raster position. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3f")] - public static void RasterPos3(Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void RasterPos3(Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64357,7 +64357,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3fv")] [CLSCompliant(false)] - public static void RasterPos3([CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void RasterPos3([CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64367,7 +64367,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3fv")] [CLSCompliant(false)] - public static void RasterPos3([CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void RasterPos3([CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64377,7 +64377,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3fv")] [CLSCompliant(false)] - public static unsafe void RasterPos3([CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void RasterPos3([CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64392,7 +64392,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , , and object coordinates (if present) for the raster position. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3i")] - public static void RasterPos3(Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void RasterPos3(Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64402,7 +64402,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3iv")] [CLSCompliant(false)] - public static void RasterPos3([CountAttribute(Count = 3)] Int32[] v) { throw new NotImplementedException(); } + public static void RasterPos3([CountAttribute(Count = 3)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64412,7 +64412,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3iv")] [CLSCompliant(false)] - public static void RasterPos3([CountAttribute(Count = 3)] ref Int32 v) { throw new NotImplementedException(); } + public static void RasterPos3([CountAttribute(Count = 3)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64422,7 +64422,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3iv")] [CLSCompliant(false)] - public static unsafe void RasterPos3([CountAttribute(Count = 3)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void RasterPos3([CountAttribute(Count = 3)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64437,7 +64437,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , , and object coordinates (if present) for the raster position. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3s")] - public static void RasterPos3(Int16 x, Int16 y, Int16 z) { throw new NotImplementedException(); } + public static void RasterPos3(Int16 x, Int16 y, Int16 z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64447,7 +64447,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3sv")] [CLSCompliant(false)] - public static void RasterPos3([CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void RasterPos3([CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64457,7 +64457,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3sv")] [CLSCompliant(false)] - public static void RasterPos3([CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void RasterPos3([CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64467,7 +64467,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3sv")] [CLSCompliant(false)] - public static unsafe void RasterPos3([CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void RasterPos3([CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64485,7 +64485,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , , and object coordinates (if present) for the raster position. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4d")] - public static void RasterPos4(Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void RasterPos4(Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64495,7 +64495,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4dv")] [CLSCompliant(false)] - public static void RasterPos4([CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void RasterPos4([CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64505,7 +64505,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4dv")] [CLSCompliant(false)] - public static void RasterPos4([CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void RasterPos4([CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64515,7 +64515,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4dv")] [CLSCompliant(false)] - public static unsafe void RasterPos4([CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void RasterPos4([CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64533,7 +64533,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , , and object coordinates (if present) for the raster position. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4f")] - public static void RasterPos4(Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void RasterPos4(Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64543,7 +64543,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4fv")] [CLSCompliant(false)] - public static void RasterPos4([CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void RasterPos4([CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64553,7 +64553,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4fv")] [CLSCompliant(false)] - public static void RasterPos4([CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void RasterPos4([CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64563,7 +64563,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4fv")] [CLSCompliant(false)] - public static unsafe void RasterPos4([CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void RasterPos4([CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64581,7 +64581,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , , and object coordinates (if present) for the raster position. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4i")] - public static void RasterPos4(Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } + public static void RasterPos4(Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64591,7 +64591,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4iv")] [CLSCompliant(false)] - public static void RasterPos4([CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void RasterPos4([CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64601,7 +64601,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4iv")] [CLSCompliant(false)] - public static void RasterPos4([CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void RasterPos4([CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64611,7 +64611,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4iv")] [CLSCompliant(false)] - public static unsafe void RasterPos4([CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void RasterPos4([CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64629,7 +64629,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , , and object coordinates (if present) for the raster position. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4s")] - public static void RasterPos4(Int16 x, Int16 y, Int16 z, Int16 w) { throw new NotImplementedException(); } + public static void RasterPos4(Int16 x, Int16 y, Int16 z, Int16 w) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64639,7 +64639,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4sv")] [CLSCompliant(false)] - public static void RasterPos4([CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void RasterPos4([CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64649,7 +64649,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4sv")] [CLSCompliant(false)] - public static void RasterPos4([CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void RasterPos4([CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64659,7 +64659,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4sv")] [CLSCompliant(false)] - public static unsafe void RasterPos4([CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void RasterPos4([CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Select a color buffer source for pixels @@ -64668,7 +64668,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a color buffer. Accepted values are FrontLeft, FrontRight, BackLeft, BackRight, Front, Back, Left, Right, and the constants ColorAttachmenti. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glReadBuffer")] - public static void ReadBuffer(OpenTK.Graphics.OpenGL.ReadBufferMode src) { throw new NotImplementedException(); } + public static void ReadBuffer(OpenTK.Graphics.OpenGL.ReadBufferMode src) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -64680,7 +64680,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glReadnPixels")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [OutAttribute] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -64695,7 +64695,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -64710,7 +64710,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -64725,7 +64725,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -64739,7 +64739,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glReadnPixels")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Read a block of pixels from the frame buffer @@ -64766,7 +64766,7 @@ namespace OpenTK.Graphics.OpenGL /// Returns the pixel data. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glReadPixels")] - public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Read a block of pixels from the frame buffer @@ -64796,7 +64796,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Read a block of pixels from the frame buffer @@ -64826,7 +64826,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Read a block of pixels from the frame buffer @@ -64856,7 +64856,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Read a block of pixels from the frame buffer @@ -64885,7 +64885,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glReadPixels")] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T6 pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Draw a rectangle @@ -64903,7 +64903,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the opposite vertex of the rectangle. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRectd")] - public static void Rect(Double x1, Double y1, Double x2, Double y2) { throw new NotImplementedException(); } + public static void Rect(Double x1, Double y1, Double x2, Double y2) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Draw a rectangle @@ -64916,7 +64916,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRectdv")] [CLSCompliant(false)] - public static void Rect([CountAttribute(Count = 2)] Double[] v1, [CountAttribute(Count = 2)] Double[] v2) { throw new NotImplementedException(); } + public static void Rect([CountAttribute(Count = 2)] Double[] v1, [CountAttribute(Count = 2)] Double[] v2) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Draw a rectangle @@ -64929,7 +64929,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRectdv")] [CLSCompliant(false)] - public static void Rect([CountAttribute(Count = 2)] ref Double v1, [CountAttribute(Count = 2)] ref Double v2) { throw new NotImplementedException(); } + public static void Rect([CountAttribute(Count = 2)] ref Double v1, [CountAttribute(Count = 2)] ref Double v2) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Draw a rectangle @@ -64942,7 +64942,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRectdv")] [CLSCompliant(false)] - public static unsafe void Rect([CountAttribute(Count = 2)] Double* v1, [CountAttribute(Count = 2)] Double* v2) { throw new NotImplementedException(); } + public static unsafe void Rect([CountAttribute(Count = 2)] Double* v1, [CountAttribute(Count = 2)] Double* v2) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Draw a rectangle @@ -64960,7 +64960,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the opposite vertex of the rectangle. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRectf")] - public static void Rect(Single x1, Single y1, Single x2, Single y2) { throw new NotImplementedException(); } + public static void Rect(Single x1, Single y1, Single x2, Single y2) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Draw a rectangle @@ -64973,7 +64973,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRectfv")] [CLSCompliant(false)] - public static void Rect([CountAttribute(Count = 2)] Single[] v1, [CountAttribute(Count = 2)] Single[] v2) { throw new NotImplementedException(); } + public static void Rect([CountAttribute(Count = 2)] Single[] v1, [CountAttribute(Count = 2)] Single[] v2) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Draw a rectangle @@ -64986,7 +64986,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRectfv")] [CLSCompliant(false)] - public static void Rect([CountAttribute(Count = 2)] ref Single v1, [CountAttribute(Count = 2)] ref Single v2) { throw new NotImplementedException(); } + public static void Rect([CountAttribute(Count = 2)] ref Single v1, [CountAttribute(Count = 2)] ref Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Draw a rectangle @@ -64999,7 +64999,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRectfv")] [CLSCompliant(false)] - public static unsafe void Rect([CountAttribute(Count = 2)] Single* v1, [CountAttribute(Count = 2)] Single* v2) { throw new NotImplementedException(); } + public static unsafe void Rect([CountAttribute(Count = 2)] Single* v1, [CountAttribute(Count = 2)] Single* v2) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Draw a rectangle @@ -65017,7 +65017,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the opposite vertex of the rectangle. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRecti")] - public static void Rect(Int32 x1, Int32 y1, Int32 x2, Int32 y2) { throw new NotImplementedException(); } + public static void Rect(Int32 x1, Int32 y1, Int32 x2, Int32 y2) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Draw a rectangle @@ -65030,7 +65030,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRectiv")] [CLSCompliant(false)] - public static void Rect([CountAttribute(Count = 2)] Int32[] v1, [CountAttribute(Count = 2)] Int32[] v2) { throw new NotImplementedException(); } + public static void Rect([CountAttribute(Count = 2)] Int32[] v1, [CountAttribute(Count = 2)] Int32[] v2) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Draw a rectangle @@ -65043,7 +65043,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRectiv")] [CLSCompliant(false)] - public static void Rect([CountAttribute(Count = 2)] ref Int32 v1, [CountAttribute(Count = 2)] ref Int32 v2) { throw new NotImplementedException(); } + public static void Rect([CountAttribute(Count = 2)] ref Int32 v1, [CountAttribute(Count = 2)] ref Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Draw a rectangle @@ -65056,7 +65056,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRectiv")] [CLSCompliant(false)] - public static unsafe void Rect([CountAttribute(Count = 2)] Int32* v1, [CountAttribute(Count = 2)] Int32* v2) { throw new NotImplementedException(); } + public static unsafe void Rect([CountAttribute(Count = 2)] Int32* v1, [CountAttribute(Count = 2)] Int32* v2) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// @@ -65064,7 +65064,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRects")] - public static void Rects(Int16 x1, Int16 y1, Int16 x2, Int16 y2) { throw new NotImplementedException(); } + public static void Rects(Int16 x1, Int16 y1, Int16 x2, Int16 y2) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Draw a rectangle @@ -65077,7 +65077,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRectsv")] [CLSCompliant(false)] - public static void Rect([CountAttribute(Count = 2)] Int16[] v1, [CountAttribute(Count = 2)] Int16[] v2) { throw new NotImplementedException(); } + public static void Rect([CountAttribute(Count = 2)] Int16[] v1, [CountAttribute(Count = 2)] Int16[] v2) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Draw a rectangle @@ -65090,7 +65090,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRectsv")] [CLSCompliant(false)] - public static void Rect([CountAttribute(Count = 2)] ref Int16 v1, [CountAttribute(Count = 2)] ref Int16 v2) { throw new NotImplementedException(); } + public static void Rect([CountAttribute(Count = 2)] ref Int16 v1, [CountAttribute(Count = 2)] ref Int16 v2) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Draw a rectangle @@ -65103,13 +65103,13 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRectsv")] [CLSCompliant(false)] - public static unsafe void Rect([CountAttribute(Count = 2)] Int16* v1, [CountAttribute(Count = 2)] Int16* v2) { throw new NotImplementedException(); } + public static unsafe void Rect([CountAttribute(Count = 2)] Int16* v1, [CountAttribute(Count = 2)] Int16* v2) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Release resources consumed by the implementation's shader compiler /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glReleaseShaderCompiler")] - public static void ReleaseShaderCompiler() { throw new NotImplementedException(); } + public static void ReleaseShaderCompiler() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Establish data storage, format and dimensions of a renderbuffer object's image @@ -65127,7 +65127,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glRenderbufferStorage")] - public static void RenderbufferStorage(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorage(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -65148,7 +65148,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glRenderbufferStorageMultisample")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.OpenGL.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.OpenGL.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set rasterization mode @@ -65157,7 +65157,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the rasterization mode. Three values are accepted: Render, Select, and Feedback. The initial value is Render. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRenderMode")] - public static Int32 RenderMode(OpenTK.Graphics.OpenGL.RenderingMode mode) { throw new NotImplementedException(); } + public static Int32 RenderMode(OpenTK.Graphics.OpenGL.RenderingMode mode) { throw new BindingsNotRewrittenException(); } /// /// Reset histogram table entries to zero @@ -65166,7 +65166,7 @@ namespace OpenTK.Graphics.OpenGL /// Must be Histogram. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glResetHistogram")] - public static void ResetHistogram(OpenTK.Graphics.OpenGL.HistogramTarget target) { throw new NotImplementedException(); } + public static void ResetHistogram(OpenTK.Graphics.OpenGL.HistogramTarget target) { throw new BindingsNotRewrittenException(); } /// /// Reset minmax table entries to initial values @@ -65175,13 +65175,13 @@ namespace OpenTK.Graphics.OpenGL /// Must be Minmax. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glResetMinmax")] - public static void ResetMinmax(OpenTK.Graphics.OpenGL.MinmaxTarget target) { throw new NotImplementedException(); } + public static void ResetMinmax(OpenTK.Graphics.OpenGL.MinmaxTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Resume transform feedback operations /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glResumeTransformFeedback")] - public static void ResumeTransformFeedback() { throw new NotImplementedException(); } + public static void ResumeTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Multiply the current matrix by a rotation matrix @@ -65199,7 +65199,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the x, y, and z coordinates of a vector, respectively. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRotated")] - public static void Rotate(Double angle, Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void Rotate(Double angle, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Multiply the current matrix by a rotation matrix @@ -65217,7 +65217,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the x, y, and z coordinates of a vector, respectively. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRotatef")] - public static void Rotate(Single angle, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void Rotate(Single angle, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify multisample coverage parameters @@ -65229,7 +65229,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify a single boolean value representing if the coverage masks should be inverted. True and False are accepted. The initial value is False. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glSampleCoverage")] - public static void SampleCoverage(Single value, bool invert) { throw new NotImplementedException(); } + public static void SampleCoverage(Single value, bool invert) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Set the value of a sub-word of the sample mask @@ -65242,7 +65242,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glSampleMaski")] [CLSCompliant(false)] - public static void SampleMask(Int32 maskNumber, Int32 mask) { throw new NotImplementedException(); } + public static void SampleMask(Int32 maskNumber, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Set the value of a sub-word of the sample mask @@ -65255,7 +65255,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glSampleMaski")] [CLSCompliant(false)] - public static void SampleMask(UInt32 maskNumber, UInt32 mask) { throw new NotImplementedException(); } + public static void SampleMask(UInt32 maskNumber, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65272,7 +65272,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterf")] [CLSCompliant(false)] - public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, Single param) { throw new NotImplementedException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65288,7 +65288,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterf")] [CLSCompliant(false)] - public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, Single param) { throw new NotImplementedException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65305,7 +65305,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterf")] [CLSCompliant(false)] - public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, Single param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65321,7 +65321,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterf")] [CLSCompliant(false)] - public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, Single param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65338,7 +65338,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterfv")] [CLSCompliant(false)] - public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65355,7 +65355,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterfv")] [CLSCompliant(false)] - public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [CountAttribute(Computed = "pname")] Single* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [CountAttribute(Computed = "pname")] Single* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65371,7 +65371,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterfv")] [CLSCompliant(false)] - public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65387,7 +65387,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterfv")] [CLSCompliant(false)] - public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Single* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Single* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65404,7 +65404,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterfv")] [CLSCompliant(false)] - public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65421,7 +65421,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterfv")] [CLSCompliant(false)] - public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [CountAttribute(Computed = "pname")] Single* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [CountAttribute(Computed = "pname")] Single* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65437,7 +65437,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterfv")] [CLSCompliant(false)] - public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65453,7 +65453,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterfv")] [CLSCompliant(false)] - public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Single* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Single* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65470,7 +65470,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameteri")] [CLSCompliant(false)] - public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65486,7 +65486,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameteri")] [CLSCompliant(false)] - public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65503,7 +65503,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameteri")] [CLSCompliant(false)] - public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65519,7 +65519,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameteri")] [CLSCompliant(false)] - public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -65528,7 +65528,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIiv")] [CLSCompliant(false)] - public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -65537,7 +65537,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIiv")] [CLSCompliant(false)] - public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -65546,7 +65546,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIiv")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -65554,7 +65554,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIiv")] [CLSCompliant(false)] - public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -65562,7 +65562,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIiv")] [CLSCompliant(false)] - public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -65570,7 +65570,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIiv")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -65579,7 +65579,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIiv")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -65588,7 +65588,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIiv")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -65597,7 +65597,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIiv")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -65605,7 +65605,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIiv")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -65613,7 +65613,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIiv")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -65621,7 +65621,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIiv")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -65630,7 +65630,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIuiv")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -65639,7 +65639,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIuiv")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -65648,7 +65648,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIuiv")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -65656,7 +65656,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIuiv")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -65664,7 +65664,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIuiv")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -65672,7 +65672,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIuiv")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65689,7 +65689,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameteriv")] [CLSCompliant(false)] - public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65706,7 +65706,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameteriv")] [CLSCompliant(false)] - public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65722,7 +65722,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameteriv")] [CLSCompliant(false)] - public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65738,7 +65738,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameteriv")] [CLSCompliant(false)] - public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65755,7 +65755,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameteriv")] [CLSCompliant(false)] - public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65772,7 +65772,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameteriv")] [CLSCompliant(false)] - public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65788,7 +65788,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameteriv")] [CLSCompliant(false)] - public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65804,7 +65804,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameteriv")] [CLSCompliant(false)] - public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Multiply the current matrix by a general scaling matrix @@ -65819,7 +65819,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify scale factors along the x, y, and z axes, respectively. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glScaled")] - public static void Scale(Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void Scale(Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Multiply the current matrix by a general scaling matrix @@ -65834,7 +65834,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify scale factors along the x, y, and z axes, respectively. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glScalef")] - public static void Scale(Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void Scale(Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define the scissor box @@ -65852,7 +65852,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the width and height of the scissor box. When a GL context is first attached to a window, width and height are set to the dimensions of that window. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glScissor")] - public static void Scissor(Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void Scissor(Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for multiple viewports @@ -65868,7 +65868,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorArrayv")] [CLSCompliant(false)] - public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for multiple viewports @@ -65884,7 +65884,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorArrayv")] [CLSCompliant(false)] - public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for multiple viewports @@ -65900,7 +65900,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorArrayv")] [CLSCompliant(false)] - public static unsafe void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for multiple viewports @@ -65916,7 +65916,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorArrayv")] [CLSCompliant(false)] - public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for multiple viewports @@ -65932,7 +65932,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorArrayv")] [CLSCompliant(false)] - public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for multiple viewports @@ -65948,7 +65948,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorArrayv")] [CLSCompliant(false)] - public static unsafe void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for a specific viewport @@ -65970,7 +65970,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorIndexed")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for a specific viewport @@ -65992,7 +65992,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorIndexed")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for a specific viewport @@ -66005,7 +66005,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorIndexedv")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for a specific viewport @@ -66018,7 +66018,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorIndexedv")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for a specific viewport @@ -66031,7 +66031,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorIndexedv")] [CLSCompliant(false)] - public static unsafe void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for a specific viewport @@ -66044,7 +66044,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorIndexedv")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for a specific viewport @@ -66057,7 +66057,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorIndexedv")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for a specific viewport @@ -66070,7 +66070,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorIndexedv")] [CLSCompliant(false)] - public static unsafe void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66086,7 +66086,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3b")] [CLSCompliant(false)] - public static void SecondaryColor3(SByte red, SByte green, SByte blue) { throw new NotImplementedException(); } + public static void SecondaryColor3(SByte red, SByte green, SByte blue) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66096,7 +66096,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3bv")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] SByte[] v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] SByte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66106,7 +66106,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3bv")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] ref SByte v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] ref SByte v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66116,7 +66116,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3bv")] [CLSCompliant(false)] - public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] SByte* v) { throw new NotImplementedException(); } + public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] SByte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66131,7 +66131,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3d")] - public static void SecondaryColor3(Double red, Double green, Double blue) { throw new NotImplementedException(); } + public static void SecondaryColor3(Double red, Double green, Double blue) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66141,7 +66141,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3dv")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66151,7 +66151,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3dv")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66161,7 +66161,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3dv")] [CLSCompliant(false)] - public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66176,7 +66176,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3f")] - public static void SecondaryColor3(Single red, Single green, Single blue) { throw new NotImplementedException(); } + public static void SecondaryColor3(Single red, Single green, Single blue) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66186,7 +66186,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3fv")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66196,7 +66196,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3fv")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66206,7 +66206,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3fv")] [CLSCompliant(false)] - public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66221,7 +66221,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3i")] - public static void SecondaryColor3(Int32 red, Int32 green, Int32 blue) { throw new NotImplementedException(); } + public static void SecondaryColor3(Int32 red, Int32 green, Int32 blue) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66231,7 +66231,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3iv")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] Int32[] v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66241,7 +66241,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3iv")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] ref Int32 v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66251,7 +66251,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3iv")] [CLSCompliant(false)] - public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66266,7 +66266,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3s")] - public static void SecondaryColor3(Int16 red, Int16 green, Int16 blue) { throw new NotImplementedException(); } + public static void SecondaryColor3(Int16 red, Int16 green, Int16 blue) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66276,7 +66276,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3sv")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66286,7 +66286,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3sv")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66296,7 +66296,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3sv")] [CLSCompliant(false)] - public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66311,7 +66311,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3ub")] - public static void SecondaryColor3(Byte red, Byte green, Byte blue) { throw new NotImplementedException(); } + public static void SecondaryColor3(Byte red, Byte green, Byte blue) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66321,7 +66321,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3ubv")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] Byte[] v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66331,7 +66331,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3ubv")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] ref Byte v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66341,7 +66341,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3ubv")] [CLSCompliant(false)] - public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66357,7 +66357,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3ui")] [CLSCompliant(false)] - public static void SecondaryColor3(UInt32 red, UInt32 green, UInt32 blue) { throw new NotImplementedException(); } + public static void SecondaryColor3(UInt32 red, UInt32 green, UInt32 blue) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66367,7 +66367,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3uiv")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] UInt32[] v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66377,7 +66377,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3uiv")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] ref UInt32 v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66387,7 +66387,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3uiv")] [CLSCompliant(false)] - public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66403,7 +66403,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3us")] [CLSCompliant(false)] - public static void SecondaryColor3(UInt16 red, UInt16 green, UInt16 blue) { throw new NotImplementedException(); } + public static void SecondaryColor3(UInt16 red, UInt16 green, UInt16 blue) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66413,7 +66413,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3usv")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] UInt16[] v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] UInt16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66423,7 +66423,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3usv")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] ref UInt16 v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] ref UInt16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66433,35 +66433,35 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3usv")] [CLSCompliant(false)] - public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] UInt16* v) { throw new NotImplementedException(); } + public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] UInt16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glSecondaryColorP3ui")] [CLSCompliant(false)] - public static void SecondaryColorP3(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 color) { throw new NotImplementedException(); } + public static void SecondaryColorP3(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 color) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glSecondaryColorP3ui")] [CLSCompliant(false)] - public static void SecondaryColorP3(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 color) { throw new NotImplementedException(); } + public static void SecondaryColorP3(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 color) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glSecondaryColorP3uiv")] [CLSCompliant(false)] - public static unsafe void SecondaryColorP3(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* color) { throw new NotImplementedException(); } + public static unsafe void SecondaryColorP3(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* color) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glSecondaryColorP3uiv")] [CLSCompliant(false)] - public static unsafe void SecondaryColorP3(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* color) { throw new NotImplementedException(); } + public static unsafe void SecondaryColorP3(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* color) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Define an array of secondary colors @@ -66479,7 +66479,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the first component of the first color element in the array. The initial value is 0. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColorPointer")] - public static void SecondaryColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void SecondaryColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Define an array of secondary colors @@ -66500,7 +66500,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SecondaryColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Define an array of secondary colors @@ -66521,7 +66521,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SecondaryColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Define an array of secondary colors @@ -66542,7 +66542,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SecondaryColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Define an array of secondary colors @@ -66562,7 +66562,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColorPointer")] public static void SecondaryColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T3 pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Establish a buffer for selection mode values @@ -66575,7 +66575,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glSelectBuffer")] [CLSCompliant(false)] - public static void SelectBuffer(Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32[] buffer) { throw new NotImplementedException(); } + public static void SelectBuffer(Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32[] buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Establish a buffer for selection mode values @@ -66588,7 +66588,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glSelectBuffer")] [CLSCompliant(false)] - public static void SelectBuffer(Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out Int32 buffer) { throw new NotImplementedException(); } + public static void SelectBuffer(Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Establish a buffer for selection mode values @@ -66601,7 +66601,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glSelectBuffer")] [CLSCompliant(false)] - public static unsafe void SelectBuffer(Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32* buffer) { throw new NotImplementedException(); } + public static unsafe void SelectBuffer(Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32* buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Establish a buffer for selection mode values @@ -66614,7 +66614,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glSelectBuffer")] [CLSCompliant(false)] - public static void SelectBuffer(Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32[] buffer) { throw new NotImplementedException(); } + public static void SelectBuffer(Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32[] buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Establish a buffer for selection mode values @@ -66627,7 +66627,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glSelectBuffer")] [CLSCompliant(false)] - public static void SelectBuffer(Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out UInt32 buffer) { throw new NotImplementedException(); } + public static void SelectBuffer(Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Establish a buffer for selection mode values @@ -66640,7 +66640,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glSelectBuffer")] [CLSCompliant(false)] - public static unsafe void SelectBuffer(Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32* buffer) { throw new NotImplementedException(); } + public static unsafe void SelectBuffer(Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32* buffer) { throw new BindingsNotRewrittenException(); } /// /// Define a separable two-dimensional convolution filter @@ -66670,7 +66670,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a one-dimensional array of pixel data that is processed to build the column filter kernel. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glSeparableFilter2D")] - public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "target,format,type,width")] IntPtr row, [CountAttribute(Computed = "target,format,type,height")] IntPtr column) { throw new NotImplementedException(); } + public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "target,format,type,width")] IntPtr row, [CountAttribute(Computed = "target,format,type,height")] IntPtr column) { throw new BindingsNotRewrittenException(); } /// /// Define a separable two-dimensional convolution filter @@ -66704,7 +66704,7 @@ namespace OpenTK.Graphics.OpenGL public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,width")] T6[] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] T7[] column) where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a separable two-dimensional convolution filter @@ -66738,7 +66738,7 @@ namespace OpenTK.Graphics.OpenGL public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,width")] T6[,] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] T7[,] column) where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a separable two-dimensional convolution filter @@ -66772,7 +66772,7 @@ namespace OpenTK.Graphics.OpenGL public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,width")] T6[,,] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] T7[,,] column) where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a separable two-dimensional convolution filter @@ -66805,7 +66805,7 @@ namespace OpenTK.Graphics.OpenGL public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,width")] ref T6 row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] ref T7 column) where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Select flat or smooth shading @@ -66814,7 +66814,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a symbolic value representing a shading technique. Accepted values are Flat and Smooth. The initial value is Smooth. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glShadeModel")] - public static void ShadeModel(OpenTK.Graphics.OpenGL.ShadingModel mode) { throw new NotImplementedException(); } + public static void ShadeModel(OpenTK.Graphics.OpenGL.ShadingModel mode) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -66836,7 +66836,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -66860,7 +66860,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -66884,7 +66884,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -66908,7 +66908,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -66932,7 +66932,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -66954,7 +66954,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -66978,7 +66978,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67002,7 +67002,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67026,7 +67026,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67050,7 +67050,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67072,7 +67072,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67096,7 +67096,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67120,7 +67120,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67144,7 +67144,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67168,7 +67168,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67190,7 +67190,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67214,7 +67214,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67238,7 +67238,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67262,7 +67262,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67286,7 +67286,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67308,7 +67308,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67332,7 +67332,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67356,7 +67356,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67380,7 +67380,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67404,7 +67404,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67426,7 +67426,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67450,7 +67450,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67474,7 +67474,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67498,7 +67498,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67522,7 +67522,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Replaces the source code in a shader object @@ -67541,7 +67541,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new NotImplementedException(); } + public static void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Replaces the source code in a shader object @@ -67560,7 +67560,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new NotImplementedException(); } + public static void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Replaces the source code in a shader object @@ -67579,7 +67579,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static unsafe void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new NotImplementedException(); } + public static unsafe void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Replaces the source code in a shader object @@ -67598,7 +67598,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new NotImplementedException(); } + public static void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Replaces the source code in a shader object @@ -67617,7 +67617,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new NotImplementedException(); } + public static void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Replaces the source code in a shader object @@ -67636,7 +67636,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static unsafe void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new NotImplementedException(); } + public static unsafe void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_shader_storage_buffer_object|VERSION_4_3] /// Change an active shader storage block binding @@ -67652,7 +67652,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_storage_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glShaderStorageBlockBinding")] [CLSCompliant(false)] - public static void ShaderStorageBlockBinding(Int32 program, Int32 storageBlockIndex, Int32 storageBlockBinding) { throw new NotImplementedException(); } + public static void ShaderStorageBlockBinding(Int32 program, Int32 storageBlockIndex, Int32 storageBlockBinding) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_shader_storage_buffer_object|VERSION_4_3] /// Change an active shader storage block binding @@ -67668,7 +67668,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_storage_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glShaderStorageBlockBinding")] [CLSCompliant(false)] - public static void ShaderStorageBlockBinding(UInt32 program, UInt32 storageBlockIndex, UInt32 storageBlockBinding) { throw new NotImplementedException(); } + public static void ShaderStorageBlockBinding(UInt32 program, UInt32 storageBlockIndex, UInt32 storageBlockBinding) { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -67678,7 +67678,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_6", Version = "4.6", EntryPoint = "glSpecializeShader")] [CLSCompliant(false)] - public static void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, Int32[] pConstantIndex, Int32[] pConstantValue) { throw new NotImplementedException(); } + public static void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, Int32[] pConstantIndex, Int32[] pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -67688,7 +67688,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_6", Version = "4.6", EntryPoint = "glSpecializeShader")] [CLSCompliant(false)] - public static void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, ref Int32 pConstantIndex, ref Int32 pConstantValue) { throw new NotImplementedException(); } + public static void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, ref Int32 pConstantIndex, ref Int32 pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -67698,7 +67698,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_6", Version = "4.6", EntryPoint = "glSpecializeShader")] [CLSCompliant(false)] - public static unsafe void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, Int32* pConstantIndex, Int32* pConstantValue) { throw new NotImplementedException(); } + public static unsafe void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, Int32* pConstantIndex, Int32* pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -67708,7 +67708,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_6", Version = "4.6", EntryPoint = "glSpecializeShader")] [CLSCompliant(false)] - public static void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, UInt32[] pConstantIndex, UInt32[] pConstantValue) { throw new NotImplementedException(); } + public static void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, UInt32[] pConstantIndex, UInt32[] pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -67718,7 +67718,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_6", Version = "4.6", EntryPoint = "glSpecializeShader")] [CLSCompliant(false)] - public static void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, ref UInt32 pConstantIndex, ref UInt32 pConstantValue) { throw new NotImplementedException(); } + public static void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, ref UInt32 pConstantIndex, ref UInt32 pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -67728,7 +67728,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_6", Version = "4.6", EntryPoint = "glSpecializeShader")] [CLSCompliant(false)] - public static unsafe void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, UInt32* pConstantIndex, UInt32* pConstantValue) { throw new NotImplementedException(); } + public static unsafe void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, UInt32* pConstantIndex, UInt32* pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set front and back function and reference value for stencil testing @@ -67744,7 +67744,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glStencilFunc")] [CLSCompliant(false)] - public static void StencilFunc(OpenTK.Graphics.OpenGL.StencilFunction func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } + public static void StencilFunc(OpenTK.Graphics.OpenGL.StencilFunction func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set front and back function and reference value for stencil testing @@ -67760,7 +67760,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glStencilFunc")] [CLSCompliant(false)] - public static void StencilFunc(OpenTK.Graphics.OpenGL.StencilFunction func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFunc(OpenTK.Graphics.OpenGL.StencilFunction func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Set front and/or back function and reference value for stencil testing @@ -67779,7 +67779,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")] [CLSCompliant(false)] - public static void StencilFuncSeparate(OpenTK.Graphics.OpenGL.StencilFace face, OpenTK.Graphics.OpenGL.StencilFunction func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } + public static void StencilFuncSeparate(OpenTK.Graphics.OpenGL.StencilFace face, OpenTK.Graphics.OpenGL.StencilFunction func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Set front and/or back function and reference value for stencil testing @@ -67798,7 +67798,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")] [CLSCompliant(false)] - public static void StencilFuncSeparate(OpenTK.Graphics.OpenGL.StencilFace face, OpenTK.Graphics.OpenGL.StencilFunction func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFuncSeparate(OpenTK.Graphics.OpenGL.StencilFace face, OpenTK.Graphics.OpenGL.StencilFunction func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Set front and/or back function and reference value for stencil testing @@ -67818,7 +67818,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use StencilFace overload instead")] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")] [CLSCompliant(false)] - public static void StencilFuncSeparate(OpenTK.Graphics.OpenGL.Version20 face, OpenTK.Graphics.OpenGL.StencilFunction func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } + public static void StencilFuncSeparate(OpenTK.Graphics.OpenGL.Version20 face, OpenTK.Graphics.OpenGL.StencilFunction func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Set front and/or back function and reference value for stencil testing @@ -67838,7 +67838,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use StencilFace overload instead")] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")] [CLSCompliant(false)] - public static void StencilFuncSeparate(OpenTK.Graphics.OpenGL.Version20 face, OpenTK.Graphics.OpenGL.StencilFunction func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFuncSeparate(OpenTK.Graphics.OpenGL.Version20 face, OpenTK.Graphics.OpenGL.StencilFunction func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Control the front and back writing of individual bits in the stencil planes @@ -67848,7 +67848,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glStencilMask")] [CLSCompliant(false)] - public static void StencilMask(Int32 mask) { throw new NotImplementedException(); } + public static void StencilMask(Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Control the front and back writing of individual bits in the stencil planes @@ -67858,7 +67858,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glStencilMask")] [CLSCompliant(false)] - public static void StencilMask(UInt32 mask) { throw new NotImplementedException(); } + public static void StencilMask(UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Control the front and/or back writing of individual bits in the stencil planes @@ -67871,7 +67871,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMaskSeparate")] [CLSCompliant(false)] - public static void StencilMaskSeparate(OpenTK.Graphics.OpenGL.StencilFace face, Int32 mask) { throw new NotImplementedException(); } + public static void StencilMaskSeparate(OpenTK.Graphics.OpenGL.StencilFace face, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Control the front and/or back writing of individual bits in the stencil planes @@ -67884,7 +67884,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMaskSeparate")] [CLSCompliant(false)] - public static void StencilMaskSeparate(OpenTK.Graphics.OpenGL.StencilFace face, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilMaskSeparate(OpenTK.Graphics.OpenGL.StencilFace face, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set front and back stencil test actions @@ -67899,7 +67899,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the stencil action when both the stencil test and the depth test pass, or when the stencil test passes and either there is no depth buffer or depth testing is not enabled. dppass accepts the same symbolic constants as sfail. The initial value is Keep. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glStencilOp")] - public static void StencilOp(OpenTK.Graphics.OpenGL.StencilOp fail, OpenTK.Graphics.OpenGL.StencilOp zfail, OpenTK.Graphics.OpenGL.StencilOp zpass) { throw new NotImplementedException(); } + public static void StencilOp(OpenTK.Graphics.OpenGL.StencilOp fail, OpenTK.Graphics.OpenGL.StencilOp zfail, OpenTK.Graphics.OpenGL.StencilOp zpass) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Set front and/or back stencil test actions @@ -67917,7 +67917,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the stencil action when both the stencil test and the depth test pass, or when the stencil test passes and either there is no depth buffer or depth testing is not enabled. dppass accepts the same symbolic constants as sfail. The initial value is Keep. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glStencilOpSeparate")] - public static void StencilOpSeparate(OpenTK.Graphics.OpenGL.StencilFace face, OpenTK.Graphics.OpenGL.StencilOp sfail, OpenTK.Graphics.OpenGL.StencilOp dpfail, OpenTK.Graphics.OpenGL.StencilOp dppass) { throw new NotImplementedException(); } + public static void StencilOpSeparate(OpenTK.Graphics.OpenGL.StencilFace face, OpenTK.Graphics.OpenGL.StencilOp sfail, OpenTK.Graphics.OpenGL.StencilOp dpfail, OpenTK.Graphics.OpenGL.StencilOp dppass) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Attach the storage for a buffer object to the active buffer texture @@ -67933,7 +67933,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glTexBuffer")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.OpenGL.TextureBufferTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.OpenGL.TextureBufferTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Attach the storage for a buffer object to the active buffer texture @@ -67949,7 +67949,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glTexBuffer")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.OpenGL.TextureBufferTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.OpenGL.TextureBufferTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_texture_buffer_range|VERSION_4_3] /// Bind a range of a buffer's data store to a buffer texture @@ -67971,7 +67971,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_texture_buffer_range|VERSION_4_3", Version = "4.3", EntryPoint = "glTexBufferRange")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.OpenGL.TextureBufferTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.OpenGL.TextureBufferTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_texture_buffer_range|VERSION_4_3] /// Bind a range of a buffer's data store to a buffer texture @@ -67993,7 +67993,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_texture_buffer_range|VERSION_4_3", Version = "4.3", EntryPoint = "glTexBufferRange")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.OpenGL.TextureBufferTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.OpenGL.TextureBufferTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_texture_buffer_range|VERSION_4_3] /// Bind a range of a buffer's data store to a buffer texture @@ -68015,7 +68015,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_texture_buffer_range|VERSION_4_3", Version = "4.3", EntryPoint = "glTexBufferRange")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.OpenGL.TextureBufferTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.OpenGL.TextureBufferTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_texture_buffer_range|VERSION_4_3] /// Bind a range of a buffer's data store to a buffer texture @@ -68037,7 +68037,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_texture_buffer_range|VERSION_4_3", Version = "4.3", EntryPoint = "glTexBufferRange")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.OpenGL.TextureBufferTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.OpenGL.TextureBufferTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68046,7 +68046,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord1d")] - public static void TexCoord1(Double s) { throw new NotImplementedException(); } + public static void TexCoord1(Double s) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68056,7 +68056,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord1dv")] [CLSCompliant(false)] - public static unsafe void TexCoord1([CountAttribute(Count = 1)] Double* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord1([CountAttribute(Count = 1)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68065,7 +68065,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord1f")] - public static void TexCoord1(Single s) { throw new NotImplementedException(); } + public static void TexCoord1(Single s) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68075,7 +68075,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord1fv")] [CLSCompliant(false)] - public static unsafe void TexCoord1([CountAttribute(Count = 1)] Single* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord1([CountAttribute(Count = 1)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68084,7 +68084,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord1i")] - public static void TexCoord1(Int32 s) { throw new NotImplementedException(); } + public static void TexCoord1(Int32 s) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68094,7 +68094,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord1iv")] [CLSCompliant(false)] - public static unsafe void TexCoord1([CountAttribute(Count = 1)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord1([CountAttribute(Count = 1)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68103,7 +68103,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord1s")] - public static void TexCoord1(Int16 s) { throw new NotImplementedException(); } + public static void TexCoord1(Int16 s) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68113,7 +68113,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord1sv")] [CLSCompliant(false)] - public static unsafe void TexCoord1([CountAttribute(Count = 1)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord1([CountAttribute(Count = 1)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68125,7 +68125,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2d")] - public static void TexCoord2(Double s, Double t) { throw new NotImplementedException(); } + public static void TexCoord2(Double s, Double t) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68135,7 +68135,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2dv")] [CLSCompliant(false)] - public static void TexCoord2([CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void TexCoord2([CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68145,7 +68145,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2dv")] [CLSCompliant(false)] - public static void TexCoord2([CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void TexCoord2([CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68155,7 +68155,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2dv")] [CLSCompliant(false)] - public static unsafe void TexCoord2([CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord2([CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68167,7 +68167,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2f")] - public static void TexCoord2(Single s, Single t) { throw new NotImplementedException(); } + public static void TexCoord2(Single s, Single t) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68177,7 +68177,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2fv")] [CLSCompliant(false)] - public static void TexCoord2([CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void TexCoord2([CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68187,7 +68187,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2fv")] [CLSCompliant(false)] - public static void TexCoord2([CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void TexCoord2([CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68197,7 +68197,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2fv")] [CLSCompliant(false)] - public static unsafe void TexCoord2([CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord2([CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68209,7 +68209,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2i")] - public static void TexCoord2(Int32 s, Int32 t) { throw new NotImplementedException(); } + public static void TexCoord2(Int32 s, Int32 t) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68219,7 +68219,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2iv")] [CLSCompliant(false)] - public static void TexCoord2([CountAttribute(Count = 2)] Int32[] v) { throw new NotImplementedException(); } + public static void TexCoord2([CountAttribute(Count = 2)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68229,7 +68229,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2iv")] [CLSCompliant(false)] - public static void TexCoord2([CountAttribute(Count = 2)] ref Int32 v) { throw new NotImplementedException(); } + public static void TexCoord2([CountAttribute(Count = 2)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68239,7 +68239,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2iv")] [CLSCompliant(false)] - public static unsafe void TexCoord2([CountAttribute(Count = 2)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord2([CountAttribute(Count = 2)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68251,7 +68251,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2s")] - public static void TexCoord2(Int16 s, Int16 t) { throw new NotImplementedException(); } + public static void TexCoord2(Int16 s, Int16 t) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68261,7 +68261,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2sv")] [CLSCompliant(false)] - public static void TexCoord2([CountAttribute(Count = 2)] Int16[] v) { throw new NotImplementedException(); } + public static void TexCoord2([CountAttribute(Count = 2)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68271,7 +68271,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2sv")] [CLSCompliant(false)] - public static void TexCoord2([CountAttribute(Count = 2)] ref Int16 v) { throw new NotImplementedException(); } + public static void TexCoord2([CountAttribute(Count = 2)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68281,7 +68281,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2sv")] [CLSCompliant(false)] - public static unsafe void TexCoord2([CountAttribute(Count = 2)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord2([CountAttribute(Count = 2)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68296,7 +68296,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3d")] - public static void TexCoord3(Double s, Double t, Double r) { throw new NotImplementedException(); } + public static void TexCoord3(Double s, Double t, Double r) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68306,7 +68306,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3dv")] [CLSCompliant(false)] - public static void TexCoord3([CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void TexCoord3([CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68316,7 +68316,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3dv")] [CLSCompliant(false)] - public static void TexCoord3([CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void TexCoord3([CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68326,7 +68326,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3dv")] [CLSCompliant(false)] - public static unsafe void TexCoord3([CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord3([CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68341,7 +68341,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3f")] - public static void TexCoord3(Single s, Single t, Single r) { throw new NotImplementedException(); } + public static void TexCoord3(Single s, Single t, Single r) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68351,7 +68351,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3fv")] [CLSCompliant(false)] - public static void TexCoord3([CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void TexCoord3([CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68361,7 +68361,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3fv")] [CLSCompliant(false)] - public static void TexCoord3([CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void TexCoord3([CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68371,7 +68371,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3fv")] [CLSCompliant(false)] - public static unsafe void TexCoord3([CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord3([CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68386,7 +68386,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3i")] - public static void TexCoord3(Int32 s, Int32 t, Int32 r) { throw new NotImplementedException(); } + public static void TexCoord3(Int32 s, Int32 t, Int32 r) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68396,7 +68396,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3iv")] [CLSCompliant(false)] - public static void TexCoord3([CountAttribute(Count = 3)] Int32[] v) { throw new NotImplementedException(); } + public static void TexCoord3([CountAttribute(Count = 3)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68406,7 +68406,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3iv")] [CLSCompliant(false)] - public static void TexCoord3([CountAttribute(Count = 3)] ref Int32 v) { throw new NotImplementedException(); } + public static void TexCoord3([CountAttribute(Count = 3)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68416,7 +68416,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3iv")] [CLSCompliant(false)] - public static unsafe void TexCoord3([CountAttribute(Count = 3)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord3([CountAttribute(Count = 3)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68431,7 +68431,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3s")] - public static void TexCoord3(Int16 s, Int16 t, Int16 r) { throw new NotImplementedException(); } + public static void TexCoord3(Int16 s, Int16 t, Int16 r) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68441,7 +68441,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3sv")] [CLSCompliant(false)] - public static void TexCoord3([CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void TexCoord3([CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68451,7 +68451,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3sv")] [CLSCompliant(false)] - public static void TexCoord3([CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void TexCoord3([CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68461,7 +68461,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3sv")] [CLSCompliant(false)] - public static unsafe void TexCoord3([CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord3([CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68479,7 +68479,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4d")] - public static void TexCoord4(Double s, Double t, Double r, Double q) { throw new NotImplementedException(); } + public static void TexCoord4(Double s, Double t, Double r, Double q) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68489,7 +68489,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4dv")] [CLSCompliant(false)] - public static void TexCoord4([CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void TexCoord4([CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68499,7 +68499,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4dv")] [CLSCompliant(false)] - public static void TexCoord4([CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void TexCoord4([CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68509,7 +68509,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4dv")] [CLSCompliant(false)] - public static unsafe void TexCoord4([CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord4([CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68527,7 +68527,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4f")] - public static void TexCoord4(Single s, Single t, Single r, Single q) { throw new NotImplementedException(); } + public static void TexCoord4(Single s, Single t, Single r, Single q) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68537,7 +68537,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4fv")] [CLSCompliant(false)] - public static void TexCoord4([CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void TexCoord4([CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68547,7 +68547,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4fv")] [CLSCompliant(false)] - public static void TexCoord4([CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void TexCoord4([CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68557,7 +68557,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4fv")] [CLSCompliant(false)] - public static unsafe void TexCoord4([CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord4([CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68575,7 +68575,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4i")] - public static void TexCoord4(Int32 s, Int32 t, Int32 r, Int32 q) { throw new NotImplementedException(); } + public static void TexCoord4(Int32 s, Int32 t, Int32 r, Int32 q) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68585,7 +68585,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4iv")] [CLSCompliant(false)] - public static void TexCoord4([CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void TexCoord4([CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68595,7 +68595,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4iv")] [CLSCompliant(false)] - public static void TexCoord4([CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void TexCoord4([CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68605,7 +68605,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4iv")] [CLSCompliant(false)] - public static unsafe void TexCoord4([CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord4([CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68623,7 +68623,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4s")] - public static void TexCoord4(Int16 s, Int16 t, Int16 r, Int16 q) { throw new NotImplementedException(); } + public static void TexCoord4(Int16 s, Int16 t, Int16 r, Int16 q) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68633,7 +68633,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4sv")] [CLSCompliant(false)] - public static void TexCoord4([CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void TexCoord4([CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68643,7 +68643,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4sv")] [CLSCompliant(false)] - public static void TexCoord4([CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void TexCoord4([CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68653,119 +68653,119 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4sv")] [CLSCompliant(false)] - public static unsafe void TexCoord4([CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord4([CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP1ui")] [CLSCompliant(false)] - public static void TexCoordP1(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 coords) { throw new NotImplementedException(); } + public static void TexCoordP1(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP1ui")] [CLSCompliant(false)] - public static void TexCoordP1(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 coords) { throw new NotImplementedException(); } + public static void TexCoordP1(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP1uiv")] [CLSCompliant(false)] - public static unsafe void TexCoordP1(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoordP1(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP1uiv")] [CLSCompliant(false)] - public static unsafe void TexCoordP1(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoordP1(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP2ui")] [CLSCompliant(false)] - public static void TexCoordP2(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 coords) { throw new NotImplementedException(); } + public static void TexCoordP2(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP2ui")] [CLSCompliant(false)] - public static void TexCoordP2(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 coords) { throw new NotImplementedException(); } + public static void TexCoordP2(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP2uiv")] [CLSCompliant(false)] - public static unsafe void TexCoordP2(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoordP2(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP2uiv")] [CLSCompliant(false)] - public static unsafe void TexCoordP2(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoordP2(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP3ui")] [CLSCompliant(false)] - public static void TexCoordP3(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 coords) { throw new NotImplementedException(); } + public static void TexCoordP3(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP3ui")] [CLSCompliant(false)] - public static void TexCoordP3(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 coords) { throw new NotImplementedException(); } + public static void TexCoordP3(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP3uiv")] [CLSCompliant(false)] - public static unsafe void TexCoordP3(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoordP3(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP3uiv")] [CLSCompliant(false)] - public static unsafe void TexCoordP3(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoordP3(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP4ui")] [CLSCompliant(false)] - public static void TexCoordP4(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 coords) { throw new NotImplementedException(); } + public static void TexCoordP4(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP4ui")] [CLSCompliant(false)] - public static void TexCoordP4(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 coords) { throw new NotImplementedException(); } + public static void TexCoordP4(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP4uiv")] [CLSCompliant(false)] - public static unsafe void TexCoordP4(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoordP4(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP4uiv")] [CLSCompliant(false)] - public static unsafe void TexCoordP4(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoordP4(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of texture coordinates @@ -68783,7 +68783,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the first coordinate of the first texture coordinate set in the array. The initial value is 0. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glTexCoordPointer")] - public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of texture coordinates @@ -68804,7 +68804,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of texture coordinates @@ -68825,7 +68825,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of texture coordinates @@ -68846,7 +68846,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of texture coordinates @@ -68866,7 +68866,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glTexCoordPointer")] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T3 pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set texture environment parameters @@ -68881,7 +68881,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a single symbolic constant, one of Add, AddSigned, Interpolate, Modulate, Decal, Blend, Replace, Subtract, Combine, Texture, Constant, PrimaryColor, Previous, SrcColor, OneMinusSrcColor, SrcAlpha, OneMinusSrcAlpha, a single boolean value for the point sprite texture coordinate replacement, a single floating-point value for the texture level-of-detail bias, or 1.0, 2.0, or 4.0 when specifying the RgbScale or AlphaScale. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexEnvf")] - public static void TexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Single param) { throw new NotImplementedException(); } + public static void TexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set texture environment parameters @@ -68897,7 +68897,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexEnvfv")] [CLSCompliant(false)] - public static void TexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void TexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set texture environment parameters @@ -68913,7 +68913,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexEnvfv")] [CLSCompliant(false)] - public static unsafe void TexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void TexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set texture environment parameters @@ -68928,7 +68928,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a single symbolic constant, one of Add, AddSigned, Interpolate, Modulate, Decal, Blend, Replace, Subtract, Combine, Texture, Constant, PrimaryColor, Previous, SrcColor, OneMinusSrcColor, SrcAlpha, OneMinusSrcAlpha, a single boolean value for the point sprite texture coordinate replacement, a single floating-point value for the texture level-of-detail bias, or 1.0, 2.0, or 4.0 when specifying the RgbScale or AlphaScale. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexEnvi")] - public static void TexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void TexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set texture environment parameters @@ -68944,7 +68944,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexEnviv")] [CLSCompliant(false)] - public static void TexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set texture environment parameters @@ -68960,14 +68960,14 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexEnviv")] [CLSCompliant(false)] - public static unsafe void TexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexGend")] - public static void TexGend(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Double param) { throw new NotImplementedException(); } + public static void TexGend(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Double param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Control the generation of texture coordinates @@ -68983,7 +68983,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexGendv")] [CLSCompliant(false)] - public static void TexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Double[] @params) { throw new NotImplementedException(); } + public static void TexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Control the generation of texture coordinates @@ -68999,7 +68999,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexGendv")] [CLSCompliant(false)] - public static void TexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] ref Double @params) { throw new NotImplementedException(); } + public static void TexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] ref Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Control the generation of texture coordinates @@ -69015,7 +69015,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexGendv")] [CLSCompliant(false)] - public static unsafe void TexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void TexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Control the generation of texture coordinates @@ -69030,7 +69030,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a single-valued texture generation parameter, one of ObjectLinear, EyeLinear, SphereMap, NormalMap, or ReflectionMap. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexGenf")] - public static void TexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Single param) { throw new NotImplementedException(); } + public static void TexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Control the generation of texture coordinates @@ -69046,7 +69046,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexGenfv")] [CLSCompliant(false)] - public static void TexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void TexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Control the generation of texture coordinates @@ -69062,7 +69062,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexGenfv")] [CLSCompliant(false)] - public static unsafe void TexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void TexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Control the generation of texture coordinates @@ -69077,7 +69077,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a single-valued texture generation parameter, one of ObjectLinear, EyeLinear, SphereMap, NormalMap, or ReflectionMap. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexGeni")] - public static void TexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void TexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Control the generation of texture coordinates @@ -69093,7 +69093,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexGeniv")] [CLSCompliant(false)] - public static void TexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Control the generation of texture coordinates @@ -69109,7 +69109,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexGeniv")] [CLSCompliant(false)] - public static unsafe void TexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a one-dimensional texture image @@ -69139,7 +69139,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexImage1D")] - public static void TexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a one-dimensional texture image @@ -69172,7 +69172,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T7[] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a one-dimensional texture image @@ -69205,7 +69205,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T7[,] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a one-dimensional texture image @@ -69238,7 +69238,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T7[,,] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a one-dimensional texture image @@ -69270,7 +69270,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexImage1D")] public static void TexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T7 pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -69303,7 +69303,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexImage2D")] - public static void TexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -69339,7 +69339,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -69375,7 +69375,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -69411,7 +69411,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -69446,7 +69446,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexImage2D")] public static void TexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Establish the data storage, format, dimensions, and number of samples of a multisample texture's image @@ -69470,7 +69470,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies whether the image will use identical sample locations and the same number of samples for all texels in the image, and the sample locations will not depend on the internal format or size of the image. /// [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glTexImage2DMultisample")] - public static void TexImage2DMultisample(OpenTK.Graphics.OpenGL.TextureTargetMultisample target, Int32 samples, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TexImage2DMultisample(OpenTK.Graphics.OpenGL.TextureTargetMultisample target, Int32 samples, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Specify a three-dimensional texture image @@ -69506,7 +69506,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glTexImage3D")] - public static void TexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Specify a three-dimensional texture image @@ -69545,7 +69545,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Specify a three-dimensional texture image @@ -69584,7 +69584,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Specify a three-dimensional texture image @@ -69623,7 +69623,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Specify a three-dimensional texture image @@ -69661,7 +69661,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glTexImage3D")] public static void TexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Establish the data storage, format, dimensions, and number of samples of a multisample texture's image @@ -69688,7 +69688,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies whether the image will use identical sample locations and the same number of samples for all texels in the image, and the sample locations will not depend on the internal format or size of the image. /// [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glTexImage3DMultisample")] - public static void TexImage3DMultisample(OpenTK.Graphics.OpenGL.TextureTargetMultisample target, Int32 samples, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TexImage3DMultisample(OpenTK.Graphics.OpenGL.TextureTargetMultisample target, Int32 samples, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -69703,7 +69703,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the value of pname. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexParameterf")] - public static void TexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single param) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -69719,7 +69719,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexParameterfv")] [CLSCompliant(false)] - public static void TexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -69735,7 +69735,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexParameterfv")] [CLSCompliant(false)] - public static unsafe void TexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -69750,7 +69750,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the value of pname. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexParameteri")] - public static void TexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -69758,7 +69758,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glTexParameterIiv")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -69766,7 +69766,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glTexParameterIiv")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -69774,7 +69774,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glTexParameterIiv")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -69782,7 +69782,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glTexParameterIuiv")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -69790,7 +69790,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glTexParameterIuiv")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -69798,7 +69798,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glTexParameterIuiv")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -69814,7 +69814,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexParameteriv")] [CLSCompliant(false)] - public static void TexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -69830,7 +69830,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexParameteriv")] [CLSCompliant(false)] - public static unsafe void TexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_texture_storage|VERSION_4_2] /// Simultaneously specify storage for all levels of a one-dimensional texture @@ -69848,7 +69848,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the width of the texture, in texels. /// [AutoGenerated(Category = "ARB_texture_storage|VERSION_4_2", Version = "4.2", EntryPoint = "glTexStorage1D")] - public static void TexStorage1D(OpenTK.Graphics.OpenGL.TextureTarget1d target, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TexStorage1D(OpenTK.Graphics.OpenGL.TextureTarget1d target, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_texture_storage|VERSION_4_2] /// Simultaneously specify storage for all levels of a two-dimensional or one-dimensional array texture @@ -69869,7 +69869,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the height of the texture, in texels. /// [AutoGenerated(Category = "ARB_texture_storage|VERSION_4_2", Version = "4.2", EntryPoint = "glTexStorage2D")] - public static void TexStorage2D(OpenTK.Graphics.OpenGL.TextureTarget2d target, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TexStorage2D(OpenTK.Graphics.OpenGL.TextureTarget2d target, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_texture_storage_multisample|VERSION_4_3] /// Specify storage for a two-dimensional multisample texture @@ -69893,7 +69893,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies whether the image will use identical sample locations and the same number of samples for all texels in the image, and the sample locations will not depend on the internal format or size of the image. /// [AutoGenerated(Category = "ARB_texture_storage_multisample|VERSION_4_3", Version = "4.3", EntryPoint = "glTexStorage2DMultisample")] - public static void TexStorage2DMultisample(OpenTK.Graphics.OpenGL.TextureTargetMultisample2d target, Int32 samples, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TexStorage2DMultisample(OpenTK.Graphics.OpenGL.TextureTargetMultisample2d target, Int32 samples, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_texture_storage|VERSION_4_2] /// Simultaneously specify storage for all levels of a three-dimensional, two-dimensional array or cube-map array texture @@ -69917,7 +69917,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the depth of the texture, in texels. /// [AutoGenerated(Category = "ARB_texture_storage|VERSION_4_2", Version = "4.2", EntryPoint = "glTexStorage3D")] - public static void TexStorage3D(OpenTK.Graphics.OpenGL.TextureTarget3d target, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TexStorage3D(OpenTK.Graphics.OpenGL.TextureTarget3d target, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_texture_storage_multisample|VERSION_4_3] /// Specify storage for a two-dimensional multisample array texture @@ -69944,7 +69944,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies whether the image will use identical sample locations and the same number of samples for all texels in the image, and the sample locations will not depend on the internal format or size of the image. /// [AutoGenerated(Category = "ARB_texture_storage_multisample|VERSION_4_3", Version = "4.3", EntryPoint = "glTexStorage3DMultisample")] - public static void TexStorage3DMultisample(OpenTK.Graphics.OpenGL.TextureTargetMultisample3d target, Int32 samples, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TexStorage3DMultisample(OpenTK.Graphics.OpenGL.TextureTargetMultisample3d target, Int32 samples, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Specify a one-dimensional texture subimage @@ -69971,7 +69971,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glTexSubImage1D")] - public static void TexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Specify a one-dimensional texture subimage @@ -70001,7 +70001,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T6[] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Specify a one-dimensional texture subimage @@ -70031,7 +70031,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T6[,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Specify a one-dimensional texture subimage @@ -70061,7 +70061,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T6[,,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Specify a one-dimensional texture subimage @@ -70090,7 +70090,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glTexSubImage1D")] public static void TexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T6 pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Specify a two-dimensional texture subimage @@ -70123,7 +70123,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glTexSubImage2D")] - public static void TexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Specify a two-dimensional texture subimage @@ -70159,7 +70159,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Specify a two-dimensional texture subimage @@ -70195,7 +70195,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Specify a two-dimensional texture subimage @@ -70231,7 +70231,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Specify a two-dimensional texture subimage @@ -70266,7 +70266,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glTexSubImage2D")] public static void TexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Specify a three-dimensional texture subimage @@ -70305,7 +70305,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glTexSubImage3D")] - public static void TexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Specify a three-dimensional texture subimage @@ -70347,7 +70347,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Specify a three-dimensional texture subimage @@ -70389,7 +70389,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Specify a three-dimensional texture subimage @@ -70431,7 +70431,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Specify a three-dimensional texture subimage @@ -70472,11 +70472,11 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glTexSubImage3D")] public static void TexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_texture_barrier|VERSION_4_5] [AutoGenerated(Category = "ARB_texture_barrier|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureBarrier")] - public static void TextureBarrier() { throw new NotImplementedException(); } + public static void TextureBarrier() { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70484,7 +70484,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureBuffer")] [CLSCompliant(false)] - public static void TextureBuffer(Int32 texture, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void TextureBuffer(Int32 texture, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70492,7 +70492,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureBuffer")] [CLSCompliant(false)] - public static void TextureBuffer(UInt32 texture, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void TextureBuffer(UInt32 texture, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70502,7 +70502,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureBufferRange")] [CLSCompliant(false)] - public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70512,7 +70512,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureBufferRange")] [CLSCompliant(false)] - public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70522,7 +70522,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureBufferRange")] [CLSCompliant(false)] - public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70532,7 +70532,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureBufferRange")] [CLSCompliant(false)] - public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70540,7 +70540,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterf")] [CLSCompliant(false)] - public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single param) { throw new NotImplementedException(); } + public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70548,7 +70548,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterf")] [CLSCompliant(false)] - public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single param) { throw new NotImplementedException(); } + public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70556,7 +70556,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterfv")] [CLSCompliant(false)] - public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single[] param) { throw new NotImplementedException(); } + public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70564,7 +70564,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterfv")] [CLSCompliant(false)] - public static unsafe void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single* param) { throw new NotImplementedException(); } + public static unsafe void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70572,7 +70572,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterfv")] [CLSCompliant(false)] - public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single[] param) { throw new NotImplementedException(); } + public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70580,7 +70580,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterfv")] [CLSCompliant(false)] - public static unsafe void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single* param) { throw new NotImplementedException(); } + public static unsafe void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70588,7 +70588,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameteri")] [CLSCompliant(false)] - public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70596,7 +70596,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameteri")] [CLSCompliant(false)] - public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70604,7 +70604,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIiv")] [CLSCompliant(false)] - public static void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.All pname, Int32[] @params) { throw new NotImplementedException(); } + public static void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.All pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70612,7 +70612,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIiv")] [CLSCompliant(false)] - public static void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.All pname, ref Int32 @params) { throw new NotImplementedException(); } + public static void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.All pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70620,7 +70620,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIiv")] [CLSCompliant(false)] - public static unsafe void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.All pname, Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.All pname, Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70628,7 +70628,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIiv")] [CLSCompliant(false)] - public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, Int32[] @params) { throw new NotImplementedException(); } + public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70636,7 +70636,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIiv")] [CLSCompliant(false)] - public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, ref Int32 @params) { throw new NotImplementedException(); } + public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70644,7 +70644,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIiv")] [CLSCompliant(false)] - public static unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70652,7 +70652,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIuiv")] [CLSCompliant(false)] - public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, UInt32[] @params) { throw new NotImplementedException(); } + public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70660,7 +70660,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIuiv")] [CLSCompliant(false)] - public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, ref UInt32 @params) { throw new NotImplementedException(); } + public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70668,7 +70668,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIuiv")] [CLSCompliant(false)] - public static unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70676,7 +70676,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameteriv")] [CLSCompliant(false)] - public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32[] param) { throw new NotImplementedException(); } + public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70684,7 +70684,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameteriv")] [CLSCompliant(false)] - public static unsafe void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32* param) { throw new NotImplementedException(); } + public static unsafe void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70692,7 +70692,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameteriv")] [CLSCompliant(false)] - public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32[] param) { throw new NotImplementedException(); } + public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70700,7 +70700,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameteriv")] [CLSCompliant(false)] - public static unsafe void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32* param) { throw new NotImplementedException(); } + public static unsafe void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70709,7 +70709,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureStorage1D")] [CLSCompliant(false)] - public static void TextureStorage1D(Int32 texture, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TextureStorage1D(Int32 texture, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70718,7 +70718,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureStorage1D")] [CLSCompliant(false)] - public static void TextureStorage1D(UInt32 texture, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TextureStorage1D(UInt32 texture, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70728,7 +70728,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureStorage2D")] [CLSCompliant(false)] - public static void TextureStorage2D(Int32 texture, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TextureStorage2D(Int32 texture, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70738,7 +70738,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureStorage2D")] [CLSCompliant(false)] - public static void TextureStorage2D(UInt32 texture, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TextureStorage2D(UInt32 texture, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70749,7 +70749,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureStorage2DMultisample")] [CLSCompliant(false)] - public static void TextureStorage2DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage2DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70760,7 +70760,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureStorage2DMultisample")] [CLSCompliant(false)] - public static void TextureStorage2DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage2DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70771,7 +70771,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureStorage3D")] [CLSCompliant(false)] - public static void TextureStorage3D(Int32 texture, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TextureStorage3D(Int32 texture, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70782,7 +70782,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureStorage3D")] [CLSCompliant(false)] - public static void TextureStorage3D(UInt32 texture, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TextureStorage3D(UInt32 texture, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70794,7 +70794,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureStorage3DMultisample")] [CLSCompliant(false)] - public static void TextureStorage3DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage3DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70806,7 +70806,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureStorage3DMultisample")] [CLSCompliant(false)] - public static void TextureStorage3DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage3DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70818,7 +70818,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureSubImage1D")] [CLSCompliant(false)] - public static void TextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70832,7 +70832,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70846,7 +70846,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70860,7 +70860,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[,,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70874,7 +70874,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T6 pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70886,7 +70886,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureSubImage1D")] [CLSCompliant(false)] - public static void TextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70900,7 +70900,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70914,7 +70914,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70928,7 +70928,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[,,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70942,7 +70942,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T6 pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70956,7 +70956,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureSubImage2D")] [CLSCompliant(false)] - public static void TextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70972,7 +70972,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70988,7 +70988,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71004,7 +71004,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71020,7 +71020,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71034,7 +71034,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureSubImage2D")] [CLSCompliant(false)] - public static void TextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71050,7 +71050,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71066,7 +71066,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71082,7 +71082,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71098,7 +71098,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71114,7 +71114,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureSubImage3D")] [CLSCompliant(false)] - public static void TextureSubImage3D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureSubImage3D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71132,7 +71132,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage3D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71150,7 +71150,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage3D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71168,7 +71168,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage3D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71186,7 +71186,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage3D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71202,7 +71202,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureSubImage3D")] [CLSCompliant(false)] - public static void TextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71220,7 +71220,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71238,7 +71238,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71256,7 +71256,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71274,7 +71274,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_texture_view|VERSION_4_3] /// Initialize a texture as a data alias of another texture's data store @@ -71305,7 +71305,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_texture_view|VERSION_4_3", Version = "4.3", EntryPoint = "glTextureView")] [CLSCompliant(false)] - public static void TextureView(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 origtexture, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new NotImplementedException(); } + public static void TextureView(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 origtexture, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_texture_view|VERSION_4_3] /// Initialize a texture as a data alias of another texture's data store @@ -71336,7 +71336,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_texture_view|VERSION_4_3", Version = "4.3", EntryPoint = "glTextureView")] [CLSCompliant(false)] - public static void TextureView(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, UInt32 origtexture, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new NotImplementedException(); } + public static void TextureView(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, UInt32 origtexture, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71344,7 +71344,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTransformFeedbackBufferBase")] [CLSCompliant(false)] - public static void TransformFeedbackBufferBase(Int32 xfb, Int32 index, Int32 buffer) { throw new NotImplementedException(); } + public static void TransformFeedbackBufferBase(Int32 xfb, Int32 index, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71352,7 +71352,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTransformFeedbackBufferBase")] [CLSCompliant(false)] - public static void TransformFeedbackBufferBase(UInt32 xfb, UInt32 index, UInt32 buffer) { throw new NotImplementedException(); } + public static void TransformFeedbackBufferBase(UInt32 xfb, UInt32 index, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71362,7 +71362,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTransformFeedbackBufferRange")] [CLSCompliant(false)] - public static void TransformFeedbackBufferRange(Int32 xfb, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TransformFeedbackBufferRange(Int32 xfb, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71372,7 +71372,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTransformFeedbackBufferRange")] [CLSCompliant(false)] - public static void TransformFeedbackBufferRange(Int32 xfb, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TransformFeedbackBufferRange(Int32 xfb, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71382,7 +71382,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTransformFeedbackBufferRange")] [CLSCompliant(false)] - public static void TransformFeedbackBufferRange(UInt32 xfb, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TransformFeedbackBufferRange(UInt32 xfb, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71392,7 +71392,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTransformFeedbackBufferRange")] [CLSCompliant(false)] - public static void TransformFeedbackBufferRange(UInt32 xfb, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TransformFeedbackBufferRange(UInt32 xfb, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify values to record in transform feedback buffers @@ -71411,7 +71411,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glTransformFeedbackVaryings")] [CLSCompliant(false)] - public static void TransformFeedbackVaryings(Int32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.OpenGL.TransformFeedbackMode bufferMode) { throw new NotImplementedException(); } + public static void TransformFeedbackVaryings(Int32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.OpenGL.TransformFeedbackMode bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify values to record in transform feedback buffers @@ -71430,7 +71430,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glTransformFeedbackVaryings")] [CLSCompliant(false)] - public static void TransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.OpenGL.TransformFeedbackMode bufferMode) { throw new NotImplementedException(); } + public static void TransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.OpenGL.TransformFeedbackMode bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Multiply the current matrix by a translation matrix @@ -71445,7 +71445,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the x, y, and z coordinates of a translation vector. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTranslated")] - public static void Translate(Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void Translate(Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Multiply the current matrix by a translation matrix @@ -71460,7 +71460,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the x, y, and z coordinates of a translation vector. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTranslatef")] - public static void Translate(Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void Translate(Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -71472,7 +71472,7 @@ namespace OpenTK.Graphics.OpenGL /// For the vector (glUniform*v) commands, specifies the number of elements that are to be modified. This should be 1 if the targeted uniform variable is not an array, and 1 or more if it is an array. For the matrix (glUniformMatrix*) commands, specifies the number of matrices that are to be modified. This should be 1 if the targeted uniform variable is not an array of matrices, and 1 or more if it is an array of matrices. /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform1d")] - public static void Uniform1(Int32 location, Double x) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -71488,7 +71488,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform1dv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Double[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -71504,7 +71504,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform1dv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Double value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -71520,7 +71520,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform1dv")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Double* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -71532,7 +71532,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1f")] - public static void Uniform1(Int32 location, Single v0) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -71548,7 +71548,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1fv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -71564,7 +71564,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1fv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -71580,7 +71580,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1fv")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -71592,7 +71592,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1i")] - public static void Uniform1(Int32 location, Int32 v0) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -71608,7 +71608,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1iv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -71624,7 +71624,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1iv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -71640,7 +71640,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1iv")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -71653,7 +71653,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1ui")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, UInt32 v0) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, UInt32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -71669,7 +71669,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1uiv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -71685,7 +71685,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1uiv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt32 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -71701,7 +71701,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1uiv")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -71716,7 +71716,7 @@ namespace OpenTK.Graphics.OpenGL /// For the matrix commands, specifies whether to transpose the matrix as the values are loaded into the uniform variable. /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform2d")] - public static void Uniform2(Int32 location, Double x, Double y) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -71732,7 +71732,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform2dv")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -71748,7 +71748,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform2dv")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -71764,7 +71764,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform2dv")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -71779,7 +71779,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2f")] - public static void Uniform2(Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -71795,7 +71795,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2fv")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -71811,7 +71811,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2fv")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -71827,7 +71827,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2fv")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -71842,7 +71842,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2i")] - public static void Uniform2(Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -71858,7 +71858,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2iv")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -71874,7 +71874,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2iv")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -71890,7 +71890,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform2ui")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, UInt32 v0, UInt32 v1) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, UInt32 v0, UInt32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -71906,7 +71906,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform2uiv")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -71922,7 +71922,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform2uiv")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -71938,7 +71938,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform2uiv")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -71956,7 +71956,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform3d")] - public static void Uniform3(Int32 location, Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -71972,7 +71972,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform3dv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -71988,7 +71988,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform3dv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -72004,7 +72004,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform3dv")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -72022,7 +72022,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3f")] - public static void Uniform3(Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -72038,7 +72038,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3fv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -72054,7 +72054,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3fv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -72070,7 +72070,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3fv")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -72088,7 +72088,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3i")] - public static void Uniform3(Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -72104,7 +72104,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3iv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -72120,7 +72120,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3iv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -72136,7 +72136,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3iv")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -72155,7 +72155,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform3ui")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -72171,7 +72171,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform3uiv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -72187,7 +72187,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform3uiv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -72203,7 +72203,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform3uiv")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -72224,7 +72224,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform4d")] - public static void Uniform4(Int32 location, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -72240,7 +72240,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform4dv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -72256,7 +72256,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform4dv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -72272,7 +72272,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform4dv")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -72293,7 +72293,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4f")] - public static void Uniform4(Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -72309,7 +72309,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4fv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -72325,7 +72325,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4fv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -72341,7 +72341,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4fv")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -72362,7 +72362,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4i")] - public static void Uniform4(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -72378,7 +72378,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4iv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -72394,7 +72394,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4iv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -72410,7 +72410,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4iv")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -72432,7 +72432,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform4ui")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -72448,7 +72448,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform4uiv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -72464,7 +72464,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform4uiv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -72480,7 +72480,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform4uiv")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Assign a binding point to an active uniform block @@ -72496,7 +72496,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glUniformBlockBinding")] [CLSCompliant(false)] - public static void UniformBlockBinding(Int32 program, Int32 uniformBlockIndex, Int32 uniformBlockBinding) { throw new NotImplementedException(); } + public static void UniformBlockBinding(Int32 program, Int32 uniformBlockIndex, Int32 uniformBlockBinding) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Assign a binding point to an active uniform block @@ -72512,7 +72512,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glUniformBlockBinding")] [CLSCompliant(false)] - public static void UniformBlockBinding(UInt32 program, UInt32 uniformBlockIndex, UInt32 uniformBlockBinding) { throw new NotImplementedException(); } + public static void UniformBlockBinding(UInt32 program, UInt32 uniformBlockIndex, UInt32 uniformBlockBinding) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72521,7 +72521,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix2dv")] [CLSCompliant(false)] - public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72530,7 +72530,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix2dv")] [CLSCompliant(false)] - public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new NotImplementedException(); } + public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72539,7 +72539,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix2dv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -72548,7 +72548,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] [CLSCompliant(false)] - public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -72557,7 +72557,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] [CLSCompliant(false)] - public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -72566,7 +72566,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72575,7 +72575,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix2x3dv")] [CLSCompliant(false)] - public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72584,7 +72584,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix2x3dv")] [CLSCompliant(false)] - public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new NotImplementedException(); } + public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72593,7 +72593,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix2x3dv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -72602,7 +72602,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix2x3fv")] [CLSCompliant(false)] - public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -72611,7 +72611,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix2x3fv")] [CLSCompliant(false)] - public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -72620,7 +72620,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix2x3fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72629,7 +72629,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix2x4dv")] [CLSCompliant(false)] - public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72638,7 +72638,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix2x4dv")] [CLSCompliant(false)] - public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new NotImplementedException(); } + public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72647,7 +72647,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix2x4dv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -72656,7 +72656,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix2x4fv")] [CLSCompliant(false)] - public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -72665,7 +72665,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix2x4fv")] [CLSCompliant(false)] - public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -72674,7 +72674,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix2x4fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72683,7 +72683,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix3dv")] [CLSCompliant(false)] - public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72692,7 +72692,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix3dv")] [CLSCompliant(false)] - public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Double value) { throw new NotImplementedException(); } + public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72701,7 +72701,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix3dv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -72710,7 +72710,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] [CLSCompliant(false)] - public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -72719,7 +72719,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] [CLSCompliant(false)] - public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -72728,7 +72728,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72737,7 +72737,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix3x2dv")] [CLSCompliant(false)] - public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72746,7 +72746,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix3x2dv")] [CLSCompliant(false)] - public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new NotImplementedException(); } + public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72755,7 +72755,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix3x2dv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -72764,7 +72764,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix3x2fv")] [CLSCompliant(false)] - public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -72773,7 +72773,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix3x2fv")] [CLSCompliant(false)] - public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -72782,7 +72782,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix3x2fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72791,7 +72791,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix3x4dv")] [CLSCompliant(false)] - public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72800,7 +72800,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix3x4dv")] [CLSCompliant(false)] - public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new NotImplementedException(); } + public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72809,7 +72809,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix3x4dv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -72818,7 +72818,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix3x4fv")] [CLSCompliant(false)] - public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -72827,7 +72827,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix3x4fv")] [CLSCompliant(false)] - public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -72836,7 +72836,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix3x4fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72845,7 +72845,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix4dv")] [CLSCompliant(false)] - public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72854,7 +72854,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix4dv")] [CLSCompliant(false)] - public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Double value) { throw new NotImplementedException(); } + public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72863,7 +72863,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix4dv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -72872,7 +72872,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] [CLSCompliant(false)] - public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -72881,7 +72881,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] [CLSCompliant(false)] - public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -72890,7 +72890,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72899,7 +72899,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix4x2dv")] [CLSCompliant(false)] - public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72908,7 +72908,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix4x2dv")] [CLSCompliant(false)] - public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new NotImplementedException(); } + public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72917,7 +72917,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix4x2dv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -72926,7 +72926,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix4x2fv")] [CLSCompliant(false)] - public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -72935,7 +72935,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix4x2fv")] [CLSCompliant(false)] - public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -72944,7 +72944,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix4x2fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72953,7 +72953,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix4x3dv")] [CLSCompliant(false)] - public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72962,7 +72962,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix4x3dv")] [CLSCompliant(false)] - public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new NotImplementedException(); } + public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72971,7 +72971,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix4x3dv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -72980,7 +72980,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix4x3fv")] [CLSCompliant(false)] - public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -72989,7 +72989,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix4x3fv")] [CLSCompliant(false)] - public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -72998,7 +72998,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix4x3fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Load active subroutine uniforms @@ -73014,7 +73014,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformSubroutinesuiv")] [CLSCompliant(false)] - public static void UniformSubroutines(OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 count, [CountAttribute(Parameter = "count")] Int32[] indices) { throw new NotImplementedException(); } + public static void UniformSubroutines(OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 count, [CountAttribute(Parameter = "count")] Int32[] indices) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Load active subroutine uniforms @@ -73030,7 +73030,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformSubroutinesuiv")] [CLSCompliant(false)] - public static void UniformSubroutines(OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 indices) { throw new NotImplementedException(); } + public static void UniformSubroutines(OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 indices) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Load active subroutine uniforms @@ -73046,7 +73046,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformSubroutinesuiv")] [CLSCompliant(false)] - public static unsafe void UniformSubroutines(OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 count, [CountAttribute(Parameter = "count")] Int32* indices) { throw new NotImplementedException(); } + public static unsafe void UniformSubroutines(OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 count, [CountAttribute(Parameter = "count")] Int32* indices) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Load active subroutine uniforms @@ -73062,7 +73062,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformSubroutinesuiv")] [CLSCompliant(false)] - public static void UniformSubroutines(OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] indices) { throw new NotImplementedException(); } + public static void UniformSubroutines(OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] indices) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Load active subroutine uniforms @@ -73078,7 +73078,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformSubroutinesuiv")] [CLSCompliant(false)] - public static void UniformSubroutines(OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 indices) { throw new NotImplementedException(); } + public static void UniformSubroutines(OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 indices) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Load active subroutine uniforms @@ -73094,24 +73094,24 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformSubroutinesuiv")] [CLSCompliant(false)] - public static unsafe void UniformSubroutines(OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 count, [CountAttribute(Parameter = "count")] UInt32* indices) { throw new NotImplementedException(); } + public static unsafe void UniformSubroutines(OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 count, [CountAttribute(Parameter = "count")] UInt32* indices) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glUnmapBuffer")] - public static bool UnmapBuffer(OpenTK.Graphics.OpenGL.BufferTarget target) { throw new NotImplementedException(); } + public static bool UnmapBuffer(OpenTK.Graphics.OpenGL.BufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glUnmapNamedBuffer")] [CLSCompliant(false)] - public static bool UnmapNamedBuffer(Int32 buffer) { throw new NotImplementedException(); } + public static bool UnmapNamedBuffer(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glUnmapNamedBuffer")] [CLSCompliant(false)] - public static bool UnmapNamedBuffer(UInt32 buffer) { throw new NotImplementedException(); } + public static bool UnmapNamedBuffer(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Installs a program object as part of current rendering state @@ -73121,7 +73121,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUseProgram")] [CLSCompliant(false)] - public static void UseProgram(Int32 program) { throw new NotImplementedException(); } + public static void UseProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Installs a program object as part of current rendering state @@ -73131,7 +73131,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUseProgram")] [CLSCompliant(false)] - public static void UseProgram(UInt32 program) { throw new NotImplementedException(); } + public static void UseProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Bind stages of a program object to a program pipeline @@ -73147,7 +73147,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glUseProgramStages")] [CLSCompliant(false)] - public static void UseProgramStages(Int32 pipeline, OpenTK.Graphics.OpenGL.ProgramStageMask stages, Int32 program) { throw new NotImplementedException(); } + public static void UseProgramStages(Int32 pipeline, OpenTK.Graphics.OpenGL.ProgramStageMask stages, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Bind stages of a program object to a program pipeline @@ -73163,7 +73163,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glUseProgramStages")] [CLSCompliant(false)] - public static void UseProgramStages(UInt32 pipeline, OpenTK.Graphics.OpenGL.ProgramStageMask stages, UInt32 program) { throw new NotImplementedException(); } + public static void UseProgramStages(UInt32 pipeline, OpenTK.Graphics.OpenGL.ProgramStageMask stages, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Validates a program object @@ -73173,7 +73173,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glValidateProgram")] [CLSCompliant(false)] - public static void ValidateProgram(Int32 program) { throw new NotImplementedException(); } + public static void ValidateProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Validates a program object @@ -73183,7 +73183,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glValidateProgram")] [CLSCompliant(false)] - public static void ValidateProgram(UInt32 program) { throw new NotImplementedException(); } + public static void ValidateProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Validate a program pipeline object against current GL state @@ -73193,7 +73193,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glValidateProgramPipeline")] [CLSCompliant(false)] - public static void ValidateProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } + public static void ValidateProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Validate a program pipeline object against current GL state @@ -73203,7 +73203,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glValidateProgramPipeline")] [CLSCompliant(false)] - public static void ValidateProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static void ValidateProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73215,7 +73215,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2d")] - public static void Vertex2(Double x, Double y) { throw new NotImplementedException(); } + public static void Vertex2(Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73225,7 +73225,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2dv")] [CLSCompliant(false)] - public static void Vertex2([CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void Vertex2([CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73235,7 +73235,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2dv")] [CLSCompliant(false)] - public static void Vertex2([CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void Vertex2([CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73245,7 +73245,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2dv")] [CLSCompliant(false)] - public static unsafe void Vertex2([CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void Vertex2([CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73257,7 +73257,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2f")] - public static void Vertex2(Single x, Single y) { throw new NotImplementedException(); } + public static void Vertex2(Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73267,7 +73267,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2fv")] [CLSCompliant(false)] - public static void Vertex2([CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void Vertex2([CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73277,7 +73277,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2fv")] [CLSCompliant(false)] - public static void Vertex2([CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void Vertex2([CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73287,7 +73287,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2fv")] [CLSCompliant(false)] - public static unsafe void Vertex2([CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void Vertex2([CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73299,7 +73299,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2i")] - public static void Vertex2(Int32 x, Int32 y) { throw new NotImplementedException(); } + public static void Vertex2(Int32 x, Int32 y) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73309,7 +73309,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2iv")] [CLSCompliant(false)] - public static void Vertex2([CountAttribute(Count = 2)] Int32[] v) { throw new NotImplementedException(); } + public static void Vertex2([CountAttribute(Count = 2)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73319,7 +73319,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2iv")] [CLSCompliant(false)] - public static void Vertex2([CountAttribute(Count = 2)] ref Int32 v) { throw new NotImplementedException(); } + public static void Vertex2([CountAttribute(Count = 2)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73329,7 +73329,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2iv")] [CLSCompliant(false)] - public static unsafe void Vertex2([CountAttribute(Count = 2)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void Vertex2([CountAttribute(Count = 2)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73341,7 +73341,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2s")] - public static void Vertex2(Int16 x, Int16 y) { throw new NotImplementedException(); } + public static void Vertex2(Int16 x, Int16 y) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73351,7 +73351,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2sv")] [CLSCompliant(false)] - public static void Vertex2([CountAttribute(Count = 2)] Int16[] v) { throw new NotImplementedException(); } + public static void Vertex2([CountAttribute(Count = 2)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73361,7 +73361,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2sv")] [CLSCompliant(false)] - public static void Vertex2([CountAttribute(Count = 2)] ref Int16 v) { throw new NotImplementedException(); } + public static void Vertex2([CountAttribute(Count = 2)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73371,7 +73371,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2sv")] [CLSCompliant(false)] - public static unsafe void Vertex2([CountAttribute(Count = 2)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void Vertex2([CountAttribute(Count = 2)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73386,7 +73386,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3d")] - public static void Vertex3(Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void Vertex3(Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73396,7 +73396,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3dv")] [CLSCompliant(false)] - public static void Vertex3([CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void Vertex3([CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73406,7 +73406,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3dv")] [CLSCompliant(false)] - public static void Vertex3([CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void Vertex3([CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73416,7 +73416,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3dv")] [CLSCompliant(false)] - public static unsafe void Vertex3([CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void Vertex3([CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73431,7 +73431,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3f")] - public static void Vertex3(Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void Vertex3(Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73441,7 +73441,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3fv")] [CLSCompliant(false)] - public static void Vertex3([CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void Vertex3([CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73451,7 +73451,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3fv")] [CLSCompliant(false)] - public static void Vertex3([CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void Vertex3([CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73461,7 +73461,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3fv")] [CLSCompliant(false)] - public static unsafe void Vertex3([CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void Vertex3([CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73476,7 +73476,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3i")] - public static void Vertex3(Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void Vertex3(Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73486,7 +73486,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3iv")] [CLSCompliant(false)] - public static void Vertex3([CountAttribute(Count = 3)] Int32[] v) { throw new NotImplementedException(); } + public static void Vertex3([CountAttribute(Count = 3)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73496,7 +73496,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3iv")] [CLSCompliant(false)] - public static void Vertex3([CountAttribute(Count = 3)] ref Int32 v) { throw new NotImplementedException(); } + public static void Vertex3([CountAttribute(Count = 3)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73506,7 +73506,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3iv")] [CLSCompliant(false)] - public static unsafe void Vertex3([CountAttribute(Count = 3)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void Vertex3([CountAttribute(Count = 3)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73521,7 +73521,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3s")] - public static void Vertex3(Int16 x, Int16 y, Int16 z) { throw new NotImplementedException(); } + public static void Vertex3(Int16 x, Int16 y, Int16 z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73531,7 +73531,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3sv")] [CLSCompliant(false)] - public static void Vertex3([CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void Vertex3([CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73541,7 +73541,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3sv")] [CLSCompliant(false)] - public static void Vertex3([CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void Vertex3([CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73551,7 +73551,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3sv")] [CLSCompliant(false)] - public static unsafe void Vertex3([CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void Vertex3([CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73569,7 +73569,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4d")] - public static void Vertex4(Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void Vertex4(Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73579,7 +73579,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4dv")] [CLSCompliant(false)] - public static void Vertex4([CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void Vertex4([CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73589,7 +73589,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4dv")] [CLSCompliant(false)] - public static void Vertex4([CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void Vertex4([CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73599,7 +73599,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4dv")] [CLSCompliant(false)] - public static unsafe void Vertex4([CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void Vertex4([CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73617,7 +73617,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4f")] - public static void Vertex4(Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void Vertex4(Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73627,7 +73627,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4fv")] [CLSCompliant(false)] - public static void Vertex4([CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void Vertex4([CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73637,7 +73637,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4fv")] [CLSCompliant(false)] - public static void Vertex4([CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void Vertex4([CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73647,7 +73647,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4fv")] [CLSCompliant(false)] - public static unsafe void Vertex4([CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void Vertex4([CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73665,7 +73665,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4i")] - public static void Vertex4(Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } + public static void Vertex4(Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73675,7 +73675,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4iv")] [CLSCompliant(false)] - public static void Vertex4([CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void Vertex4([CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73685,7 +73685,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4iv")] [CLSCompliant(false)] - public static void Vertex4([CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void Vertex4([CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73695,7 +73695,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4iv")] [CLSCompliant(false)] - public static unsafe void Vertex4([CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void Vertex4([CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73713,7 +73713,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4s")] - public static void Vertex4(Int16 x, Int16 y, Int16 z, Int16 w) { throw new NotImplementedException(); } + public static void Vertex4(Int16 x, Int16 y, Int16 z, Int16 w) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73723,7 +73723,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4sv")] [CLSCompliant(false)] - public static void Vertex4([CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void Vertex4([CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73733,7 +73733,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4sv")] [CLSCompliant(false)] - public static void Vertex4([CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void Vertex4([CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73743,7 +73743,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4sv")] [CLSCompliant(false)] - public static unsafe void Vertex4([CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void Vertex4([CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -73751,7 +73751,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayAttribBinding")] [CLSCompliant(false)] - public static void VertexArrayAttribBinding(Int32 vaobj, Int32 attribindex, Int32 bindingindex) { throw new NotImplementedException(); } + public static void VertexArrayAttribBinding(Int32 vaobj, Int32 attribindex, Int32 bindingindex) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -73759,7 +73759,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayAttribBinding")] [CLSCompliant(false)] - public static void VertexArrayAttribBinding(UInt32 vaobj, UInt32 attribindex, UInt32 bindingindex) { throw new NotImplementedException(); } + public static void VertexArrayAttribBinding(UInt32 vaobj, UInt32 attribindex, UInt32 bindingindex) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -73770,7 +73770,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayAttribFormat")] [CLSCompliant(false)] - public static void VertexArrayAttribFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribType type, bool normalized, Int32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayAttribFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribType type, bool normalized, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -73781,7 +73781,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayAttribFormat")] [CLSCompliant(false)] - public static void VertexArrayAttribFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribType type, bool normalized, UInt32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayAttribFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribType type, bool normalized, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -73791,7 +73791,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayAttribIFormat")] [CLSCompliant(false)] - public static void VertexArrayAttribIFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribType type, Int32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayAttribIFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribType type, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -73801,7 +73801,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayAttribIFormat")] [CLSCompliant(false)] - public static void VertexArrayAttribIFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribType type, UInt32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayAttribIFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribType type, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -73811,7 +73811,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayAttribLFormat")] [CLSCompliant(false)] - public static void VertexArrayAttribLFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.All type, Int32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayAttribLFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.All type, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -73821,7 +73821,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayAttribLFormat")] [CLSCompliant(false)] - public static void VertexArrayAttribLFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.All type, UInt32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayAttribLFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.All type, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -73829,7 +73829,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayBindingDivisor")] [CLSCompliant(false)] - public static void VertexArrayBindingDivisor(Int32 vaobj, Int32 bindingindex, Int32 divisor) { throw new NotImplementedException(); } + public static void VertexArrayBindingDivisor(Int32 vaobj, Int32 bindingindex, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -73837,21 +73837,21 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayBindingDivisor")] [CLSCompliant(false)] - public static void VertexArrayBindingDivisor(UInt32 vaobj, UInt32 bindingindex, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexArrayBindingDivisor(UInt32 vaobj, UInt32 bindingindex, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayElementBuffer")] [CLSCompliant(false)] - public static void VertexArrayElementBuffer(Int32 vaobj, Int32 buffer) { throw new NotImplementedException(); } + public static void VertexArrayElementBuffer(Int32 vaobj, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayElementBuffer")] [CLSCompliant(false)] - public static void VertexArrayElementBuffer(UInt32 vaobj, UInt32 buffer) { throw new NotImplementedException(); } + public static void VertexArrayElementBuffer(UInt32 vaobj, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -73861,7 +73861,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayVertexBuffer")] [CLSCompliant(false)] - public static void VertexArrayVertexBuffer(Int32 vaobj, Int32 bindingindex, Int32 buffer, IntPtr offset, Int32 stride) { throw new NotImplementedException(); } + public static void VertexArrayVertexBuffer(Int32 vaobj, Int32 bindingindex, Int32 buffer, IntPtr offset, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -73871,7 +73871,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayVertexBuffer")] [CLSCompliant(false)] - public static void VertexArrayVertexBuffer(UInt32 vaobj, UInt32 bindingindex, UInt32 buffer, IntPtr offset, Int32 stride) { throw new NotImplementedException(); } + public static void VertexArrayVertexBuffer(UInt32 vaobj, UInt32 bindingindex, UInt32 buffer, IntPtr offset, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -73882,7 +73882,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayVertexBuffers")] [CLSCompliant(false)] - public static void VertexArrayVertexBuffers(Int32 vaobj, Int32 first, Int32 count, Int32[] buffers, IntPtr[] offsets, Int32[] strides) { throw new NotImplementedException(); } + public static void VertexArrayVertexBuffers(Int32 vaobj, Int32 first, Int32 count, Int32[] buffers, IntPtr[] offsets, Int32[] strides) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -73893,7 +73893,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayVertexBuffers")] [CLSCompliant(false)] - public static void VertexArrayVertexBuffers(Int32 vaobj, Int32 first, Int32 count, ref Int32 buffers, ref IntPtr offsets, ref Int32 strides) { throw new NotImplementedException(); } + public static void VertexArrayVertexBuffers(Int32 vaobj, Int32 first, Int32 count, ref Int32 buffers, ref IntPtr offsets, ref Int32 strides) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -73904,7 +73904,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayVertexBuffers")] [CLSCompliant(false)] - public static unsafe void VertexArrayVertexBuffers(Int32 vaobj, Int32 first, Int32 count, Int32* buffers, IntPtr* offsets, Int32* strides) { throw new NotImplementedException(); } + public static unsafe void VertexArrayVertexBuffers(Int32 vaobj, Int32 first, Int32 count, Int32* buffers, IntPtr* offsets, Int32* strides) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -73915,7 +73915,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayVertexBuffers")] [CLSCompliant(false)] - public static void VertexArrayVertexBuffers(UInt32 vaobj, UInt32 first, Int32 count, UInt32[] buffers, IntPtr[] offsets, Int32[] strides) { throw new NotImplementedException(); } + public static void VertexArrayVertexBuffers(UInt32 vaobj, UInt32 first, Int32 count, UInt32[] buffers, IntPtr[] offsets, Int32[] strides) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -73926,7 +73926,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayVertexBuffers")] [CLSCompliant(false)] - public static void VertexArrayVertexBuffers(UInt32 vaobj, UInt32 first, Int32 count, ref UInt32 buffers, ref IntPtr offsets, ref Int32 strides) { throw new NotImplementedException(); } + public static void VertexArrayVertexBuffers(UInt32 vaobj, UInt32 first, Int32 count, ref UInt32 buffers, ref IntPtr offsets, ref Int32 strides) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -73937,7 +73937,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayVertexBuffers")] [CLSCompliant(false)] - public static unsafe void VertexArrayVertexBuffers(UInt32 vaobj, UInt32 first, Int32 count, UInt32* buffers, IntPtr* offsets, Int32* strides) { throw new NotImplementedException(); } + public static unsafe void VertexArrayVertexBuffers(UInt32 vaobj, UInt32 first, Int32 count, UInt32* buffers, IntPtr* offsets, Int32* strides) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -73950,7 +73950,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1d")] [CLSCompliant(false)] - public static void VertexAttrib1(Int32 index, Double x) { throw new NotImplementedException(); } + public static void VertexAttrib1(Int32 index, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -73963,7 +73963,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1d")] [CLSCompliant(false)] - public static void VertexAttrib1(UInt32 index, Double x) { throw new NotImplementedException(); } + public static void VertexAttrib1(UInt32 index, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -73976,7 +73976,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1dv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -73989,7 +73989,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1dv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74002,7 +74002,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1f")] [CLSCompliant(false)] - public static void VertexAttrib1(Int32 index, Single x) { throw new NotImplementedException(); } + public static void VertexAttrib1(Int32 index, Single x) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74015,7 +74015,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1f")] [CLSCompliant(false)] - public static void VertexAttrib1(UInt32 index, Single x) { throw new NotImplementedException(); } + public static void VertexAttrib1(UInt32 index, Single x) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74028,7 +74028,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74041,7 +74041,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74054,7 +74054,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1s")] [CLSCompliant(false)] - public static void VertexAttrib1(Int32 index, Int16 x) { throw new NotImplementedException(); } + public static void VertexAttrib1(Int32 index, Int16 x) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74067,7 +74067,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1s")] [CLSCompliant(false)] - public static void VertexAttrib1(UInt32 index, Int16 x) { throw new NotImplementedException(); } + public static void VertexAttrib1(UInt32 index, Int16 x) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74080,7 +74080,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1sv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74093,7 +74093,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1sv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74109,7 +74109,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2d")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, Double x, Double y) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74125,7 +74125,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2d")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, Double x, Double y) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74138,7 +74138,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2dv")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74151,7 +74151,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2dv")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74164,7 +74164,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2dv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74177,7 +74177,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2dv")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74190,7 +74190,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2dv")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74203,7 +74203,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2dv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74219,7 +74219,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2f")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, Single x, Single y) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74235,7 +74235,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2f")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, Single x, Single y) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74248,7 +74248,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74261,7 +74261,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74274,7 +74274,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74287,7 +74287,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74300,7 +74300,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74313,7 +74313,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74329,7 +74329,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2s")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, Int16 x, Int16 y) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, Int16 x, Int16 y) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74345,7 +74345,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2s")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, Int16 x, Int16 y) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, Int16 x, Int16 y) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74358,7 +74358,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2sv")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74371,7 +74371,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2sv")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74384,7 +74384,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2sv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74397,7 +74397,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2sv")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74410,7 +74410,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2sv")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74423,7 +74423,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2sv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74442,7 +74442,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3d")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74461,7 +74461,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3d")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74474,7 +74474,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3dv")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74487,7 +74487,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3dv")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74500,7 +74500,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3dv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74513,7 +74513,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3dv")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74526,7 +74526,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3dv")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74539,7 +74539,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3dv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74558,7 +74558,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3f")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74577,7 +74577,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3f")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74590,7 +74590,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74603,7 +74603,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74616,7 +74616,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74629,7 +74629,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74642,7 +74642,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74655,7 +74655,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74674,7 +74674,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3s")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, Int16 x, Int16 y, Int16 z) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, Int16 x, Int16 y, Int16 z) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74693,7 +74693,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3s")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, Int16 x, Int16 y, Int16 z) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, Int16 x, Int16 y, Int16 z) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74706,7 +74706,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3sv")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74719,7 +74719,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3sv")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74732,7 +74732,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3sv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74745,7 +74745,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3sv")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74758,7 +74758,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3sv")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74771,7 +74771,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3sv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74784,7 +74784,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4bv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] SByte[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] SByte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74797,7 +74797,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4bv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref SByte v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref SByte v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74810,7 +74810,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4bv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] SByte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] SByte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74832,7 +74832,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4d")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74854,7 +74854,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4d")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74867,7 +74867,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4dv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74880,7 +74880,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4dv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74893,7 +74893,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4dv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74906,7 +74906,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4dv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74919,7 +74919,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4dv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74932,7 +74932,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4dv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74954,7 +74954,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4f")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74976,7 +74976,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4f")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74989,7 +74989,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75002,7 +75002,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75015,7 +75015,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75028,7 +75028,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75041,7 +75041,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75054,7 +75054,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75067,7 +75067,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4iv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75080,7 +75080,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4iv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75093,7 +75093,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4iv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75106,7 +75106,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4iv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75119,7 +75119,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4iv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75132,112 +75132,112 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4iv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nbv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] SByte[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] SByte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nbv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref SByte v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref SByte v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nbv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] SByte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] SByte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Niv")] [CLSCompliant(false)] - public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Niv")] [CLSCompliant(false)] - public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Niv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Niv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Niv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Niv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nsv")] [CLSCompliant(false)] - public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nsv")] [CLSCompliant(false)] - public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nsv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nsv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nsv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nsv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -75247,7 +75247,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nub")] [CLSCompliant(false)] - public static void VertexAttrib4N(Int32 index, Byte x, Byte y, Byte z, Byte w) { throw new NotImplementedException(); } + public static void VertexAttrib4N(Int32 index, Byte x, Byte y, Byte z, Byte w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -75257,91 +75257,91 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nub")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, Byte x, Byte y, Byte z, Byte w) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, Byte x, Byte y, Byte z, Byte w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")] [CLSCompliant(false)] - public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")] [CLSCompliant(false)] - public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nuiv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nuiv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nuiv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nusv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nusv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref UInt16 v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref UInt16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nusv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75363,7 +75363,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4s")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, Int16 x, Int16 y, Int16 z, Int16 w) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, Int16 x, Int16 y, Int16 z, Int16 w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75385,7 +75385,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4s")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, Int16 x, Int16 y, Int16 z, Int16 w) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, Int16 x, Int16 y, Int16 z, Int16 w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75398,7 +75398,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4sv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75411,7 +75411,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4sv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75424,7 +75424,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4sv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75437,7 +75437,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4sv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75450,7 +75450,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4sv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75463,7 +75463,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4sv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75476,7 +75476,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75489,7 +75489,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75502,7 +75502,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75515,7 +75515,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75528,7 +75528,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75541,7 +75541,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75554,7 +75554,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4uiv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75567,7 +75567,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4uiv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75580,7 +75580,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4uiv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75593,7 +75593,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4usv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75606,7 +75606,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4usv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref UInt16 v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref UInt16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75619,7 +75619,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4usv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// Associate a vertex attribute and a vertex buffer binding @@ -75632,7 +75632,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glVertexAttribBinding")] [CLSCompliant(false)] - public static void VertexAttribBinding(Int32 attribindex, Int32 bindingindex) { throw new NotImplementedException(); } + public static void VertexAttribBinding(Int32 attribindex, Int32 bindingindex) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// Associate a vertex attribute and a vertex buffer binding @@ -75645,7 +75645,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glVertexAttribBinding")] [CLSCompliant(false)] - public static void VertexAttribBinding(UInt32 attribindex, UInt32 bindingindex) { throw new NotImplementedException(); } + public static void VertexAttribBinding(UInt32 attribindex, UInt32 bindingindex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -75658,7 +75658,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribDivisor")] [CLSCompliant(false)] - public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -75671,7 +75671,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribDivisor")] [CLSCompliant(false)] - public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// Specify the organization of vertex arrays @@ -75693,7 +75693,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glVertexAttribFormat")] [CLSCompliant(false)] - public static void VertexAttribFormat(Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribType type, bool normalized, Int32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexAttribFormat(Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribType type, bool normalized, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// Specify the organization of vertex arrays @@ -75715,49 +75715,49 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glVertexAttribFormat")] [CLSCompliant(false)] - public static void VertexAttribFormat(UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribType type, bool normalized, UInt32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexAttribFormat(UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribType type, bool normalized, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI1i")] [CLSCompliant(false)] - public static void VertexAttribI1(Int32 index, Int32 x) { throw new NotImplementedException(); } + public static void VertexAttribI1(Int32 index, Int32 x) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI1i")] [CLSCompliant(false)] - public static void VertexAttribI1(UInt32 index, Int32 x) { throw new NotImplementedException(); } + public static void VertexAttribI1(UInt32 index, Int32 x) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 1] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI1iv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI1(Int32 index, [CountAttribute(Count = 1)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI1(Int32 index, [CountAttribute(Count = 1)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 1] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI1iv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI1(UInt32 index, [CountAttribute(Count = 1)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI1(UInt32 index, [CountAttribute(Count = 1)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI1ui")] [CLSCompliant(false)] - public static void VertexAttribI1(UInt32 index, UInt32 x) { throw new NotImplementedException(); } + public static void VertexAttribI1(UInt32 index, UInt32 x) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 1] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI1uiv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI1(UInt32 index, [CountAttribute(Count = 1)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI1(UInt32 index, [CountAttribute(Count = 1)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -75765,7 +75765,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2i")] [CLSCompliant(false)] - public static void VertexAttribI2(Int32 index, Int32 x, Int32 y) { throw new NotImplementedException(); } + public static void VertexAttribI2(Int32 index, Int32 x, Int32 y) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -75773,49 +75773,49 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2i")] [CLSCompliant(false)] - public static void VertexAttribI2(UInt32 index, Int32 x, Int32 y) { throw new NotImplementedException(); } + public static void VertexAttribI2(UInt32 index, Int32 x, Int32 y) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 2] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2iv")] [CLSCompliant(false)] - public static void VertexAttribI2(Int32 index, [CountAttribute(Count = 2)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI2(Int32 index, [CountAttribute(Count = 2)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 2] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2iv")] [CLSCompliant(false)] - public static void VertexAttribI2(Int32 index, [CountAttribute(Count = 2)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI2(Int32 index, [CountAttribute(Count = 2)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 2] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2iv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI2(Int32 index, [CountAttribute(Count = 2)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI2(Int32 index, [CountAttribute(Count = 2)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 2] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2iv")] [CLSCompliant(false)] - public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 2] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2iv")] [CLSCompliant(false)] - public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 2] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2iv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -75823,28 +75823,28 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2ui")] [CLSCompliant(false)] - public static void VertexAttribI2(UInt32 index, UInt32 x, UInt32 y) { throw new NotImplementedException(); } + public static void VertexAttribI2(UInt32 index, UInt32 x, UInt32 y) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 2] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2uiv")] [CLSCompliant(false)] - public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] UInt32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 2] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2uiv")] [CLSCompliant(false)] - public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] ref UInt32 v) { throw new NotImplementedException(); } + public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 2] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2uiv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -75853,7 +75853,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3i")] [CLSCompliant(false)] - public static void VertexAttribI3(Int32 index, Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void VertexAttribI3(Int32 index, Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -75862,49 +75862,49 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3i")] [CLSCompliant(false)] - public static void VertexAttribI3(UInt32 index, Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void VertexAttribI3(UInt32 index, Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 3] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3iv")] [CLSCompliant(false)] - public static void VertexAttribI3(Int32 index, [CountAttribute(Count = 3)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI3(Int32 index, [CountAttribute(Count = 3)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 3] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3iv")] [CLSCompliant(false)] - public static void VertexAttribI3(Int32 index, [CountAttribute(Count = 3)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI3(Int32 index, [CountAttribute(Count = 3)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 3] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3iv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI3(Int32 index, [CountAttribute(Count = 3)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI3(Int32 index, [CountAttribute(Count = 3)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 3] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3iv")] [CLSCompliant(false)] - public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 3] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3iv")] [CLSCompliant(false)] - public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 3] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3iv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -75913,49 +75913,49 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3ui")] [CLSCompliant(false)] - public static void VertexAttribI3(UInt32 index, UInt32 x, UInt32 y, UInt32 z) { throw new NotImplementedException(); } + public static void VertexAttribI3(UInt32 index, UInt32 x, UInt32 y, UInt32 z) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 3] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3uiv")] [CLSCompliant(false)] - public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] UInt32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 3] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3uiv")] [CLSCompliant(false)] - public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] ref UInt32 v) { throw new NotImplementedException(); } + public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 3] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3uiv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4bv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] SByte[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] SByte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4bv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref SByte v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref SByte v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4bv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] SByte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] SByte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -75965,7 +75965,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4i")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -75975,133 +75975,133 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4i")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4sv")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4sv")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4sv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4sv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4sv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4sv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76111,49 +76111,49 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ui")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4uiv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4uiv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4uiv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4usv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt16[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4usv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref UInt16 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref UInt16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4usv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// @@ -76162,7 +76162,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glVertexAttribIFormat")] [CLSCompliant(false)] - public static void VertexAttribIFormat(Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIntegerType type, Int32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexAttribIFormat(Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIntegerType type, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// @@ -76171,7 +76171,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glVertexAttribIFormat")] [CLSCompliant(false)] - public static void VertexAttribIFormat(UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIntegerType type, UInt32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexAttribIFormat(UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIntegerType type, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76181,7 +76181,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,type,stride)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] [CLSCompliant(false)] - public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIntegerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIntegerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76193,7 +76193,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76205,7 +76205,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76217,7 +76217,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76229,7 +76229,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76240,7 +76240,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use VertexAttribIntegerType overload instead")] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] [CLSCompliant(false)] - public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76253,7 +76253,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76266,7 +76266,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76279,7 +76279,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76292,7 +76292,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76302,7 +76302,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,type,stride)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] [CLSCompliant(false)] - public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIntegerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIntegerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76314,7 +76314,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76326,7 +76326,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76338,7 +76338,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76350,7 +76350,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76361,7 +76361,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use VertexAttribIntegerType overload instead")] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] [CLSCompliant(false)] - public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76374,7 +76374,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76387,7 +76387,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76400,7 +76400,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76413,35 +76413,35 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL1d")] [CLSCompliant(false)] - public static void VertexAttribL1(Int32 index, Double x) { throw new NotImplementedException(); } + public static void VertexAttribL1(Int32 index, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL1d")] [CLSCompliant(false)] - public static void VertexAttribL1(UInt32 index, Double x) { throw new NotImplementedException(); } + public static void VertexAttribL1(UInt32 index, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL1dv")] [CLSCompliant(false)] - public static unsafe void VertexAttribL1(Int32 index, [CountAttribute(Count = 1)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL1(Int32 index, [CountAttribute(Count = 1)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL1dv")] [CLSCompliant(false)] - public static unsafe void VertexAttribL1(UInt32 index, [CountAttribute(Count = 1)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL1(UInt32 index, [CountAttribute(Count = 1)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76449,7 +76449,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2d")] [CLSCompliant(false)] - public static void VertexAttribL2(Int32 index, Double x, Double y) { throw new NotImplementedException(); } + public static void VertexAttribL2(Int32 index, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76457,49 +76457,49 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2d")] [CLSCompliant(false)] - public static void VertexAttribL2(UInt32 index, Double x, Double y) { throw new NotImplementedException(); } + public static void VertexAttribL2(UInt32 index, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 2] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2dv")] [CLSCompliant(false)] - public static void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 2] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2dv")] [CLSCompliant(false)] - public static void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 2] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2dv")] [CLSCompliant(false)] - public static unsafe void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 2] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2dv")] [CLSCompliant(false)] - public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 2] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2dv")] [CLSCompliant(false)] - public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 2] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2dv")] [CLSCompliant(false)] - public static unsafe void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76508,7 +76508,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3d")] [CLSCompliant(false)] - public static void VertexAttribL3(Int32 index, Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void VertexAttribL3(Int32 index, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76517,49 +76517,49 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3d")] [CLSCompliant(false)] - public static void VertexAttribL3(UInt32 index, Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void VertexAttribL3(UInt32 index, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 3] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3dv")] [CLSCompliant(false)] - public static void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 3] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3dv")] [CLSCompliant(false)] - public static void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 3] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3dv")] [CLSCompliant(false)] - public static unsafe void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 3] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3dv")] [CLSCompliant(false)] - public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 3] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3dv")] [CLSCompliant(false)] - public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 3] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3dv")] [CLSCompliant(false)] - public static unsafe void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76569,7 +76569,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4d")] [CLSCompliant(false)] - public static void VertexAttribL4(Int32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void VertexAttribL4(Int32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76579,49 +76579,49 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4d")] [CLSCompliant(false)] - public static void VertexAttribL4(UInt32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void VertexAttribL4(UInt32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4dv")] [CLSCompliant(false)] - public static void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4dv")] [CLSCompliant(false)] - public static void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4dv")] [CLSCompliant(false)] - public static unsafe void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4dv")] [CLSCompliant(false)] - public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4dv")] [CLSCompliant(false)] - public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4dv")] [CLSCompliant(false)] - public static unsafe void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// @@ -76630,7 +76630,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glVertexAttribLFormat")] [CLSCompliant(false)] - public static void VertexAttribLFormat(Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDoubleType type, Int32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexAttribLFormat(Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDoubleType type, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// @@ -76639,7 +76639,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glVertexAttribLFormat")] [CLSCompliant(false)] - public static void VertexAttribLFormat(UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDoubleType type, UInt32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexAttribLFormat(UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDoubleType type, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76649,7 +76649,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: size] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribLPointer")] [CLSCompliant(false)] - public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDoubleType type, Int32 stride, [CountAttribute(Parameter = "size")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDoubleType type, Int32 stride, [CountAttribute(Parameter = "size")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76661,7 +76661,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76673,7 +76673,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76685,7 +76685,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76697,7 +76697,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76708,7 +76708,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use VertexAttribDoubleType overload instead")] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribLPointer")] [CLSCompliant(false)] - public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDPointerType type, Int32 stride, [CountAttribute(Parameter = "size")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDPointerType type, Int32 stride, [CountAttribute(Parameter = "size")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76721,7 +76721,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76734,7 +76734,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76747,7 +76747,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76760,7 +76760,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76770,7 +76770,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: size] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribLPointer")] [CLSCompliant(false)] - public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDoubleType type, Int32 stride, [CountAttribute(Parameter = "size")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDoubleType type, Int32 stride, [CountAttribute(Parameter = "size")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76782,7 +76782,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76794,7 +76794,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76806,7 +76806,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76818,7 +76818,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76829,7 +76829,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use VertexAttribDoubleType overload instead")] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribLPointer")] [CLSCompliant(false)] - public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDPointerType type, Int32 stride, [CountAttribute(Parameter = "size")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDPointerType type, Int32 stride, [CountAttribute(Parameter = "size")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76842,7 +76842,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76855,7 +76855,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76868,7 +76868,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76881,7 +76881,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -76890,7 +76890,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP1ui")] [CLSCompliant(false)] - public static void VertexAttribP1(Int32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, Int32 value) { throw new NotImplementedException(); } + public static void VertexAttribP1(Int32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -76899,7 +76899,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP1ui")] [CLSCompliant(false)] - public static void VertexAttribP1(UInt32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, UInt32 value) { throw new NotImplementedException(); } + public static void VertexAttribP1(UInt32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -76908,7 +76908,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP1uiv")] [CLSCompliant(false)] - public static unsafe void VertexAttribP1(Int32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void VertexAttribP1(Int32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -76917,7 +76917,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP1uiv")] [CLSCompliant(false)] - public static unsafe void VertexAttribP1(UInt32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void VertexAttribP1(UInt32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -76926,7 +76926,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP2ui")] [CLSCompliant(false)] - public static void VertexAttribP2(Int32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, Int32 value) { throw new NotImplementedException(); } + public static void VertexAttribP2(Int32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -76935,7 +76935,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP2ui")] [CLSCompliant(false)] - public static void VertexAttribP2(UInt32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, UInt32 value) { throw new NotImplementedException(); } + public static void VertexAttribP2(UInt32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -76944,7 +76944,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP2uiv")] [CLSCompliant(false)] - public static unsafe void VertexAttribP2(Int32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void VertexAttribP2(Int32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -76953,7 +76953,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP2uiv")] [CLSCompliant(false)] - public static unsafe void VertexAttribP2(UInt32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void VertexAttribP2(UInt32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -76962,7 +76962,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP3ui")] [CLSCompliant(false)] - public static void VertexAttribP3(Int32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, Int32 value) { throw new NotImplementedException(); } + public static void VertexAttribP3(Int32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -76971,7 +76971,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP3ui")] [CLSCompliant(false)] - public static void VertexAttribP3(UInt32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, UInt32 value) { throw new NotImplementedException(); } + public static void VertexAttribP3(UInt32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -76980,7 +76980,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP3uiv")] [CLSCompliant(false)] - public static unsafe void VertexAttribP3(Int32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void VertexAttribP3(Int32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -76989,7 +76989,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP3uiv")] [CLSCompliant(false)] - public static unsafe void VertexAttribP3(UInt32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void VertexAttribP3(UInt32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -76998,7 +76998,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP4ui")] [CLSCompliant(false)] - public static void VertexAttribP4(Int32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, Int32 value) { throw new NotImplementedException(); } + public static void VertexAttribP4(Int32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -77007,7 +77007,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP4ui")] [CLSCompliant(false)] - public static void VertexAttribP4(UInt32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, UInt32 value) { throw new NotImplementedException(); } + public static void VertexAttribP4(UInt32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -77016,7 +77016,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP4uiv")] [CLSCompliant(false)] - public static unsafe void VertexAttribP4(Int32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void VertexAttribP4(Int32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -77025,7 +77025,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP4uiv")] [CLSCompliant(false)] - public static unsafe void VertexAttribP4(UInt32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void VertexAttribP4(UInt32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Define an array of generic vertex attribute data @@ -77050,7 +77050,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] [CLSCompliant(false)] - public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Define an array of generic vertex attribute data @@ -77077,7 +77077,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Define an array of generic vertex attribute data @@ -77104,7 +77104,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Define an array of generic vertex attribute data @@ -77131,7 +77131,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Define an array of generic vertex attribute data @@ -77158,7 +77158,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T5 pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Define an array of generic vertex attribute data @@ -77183,7 +77183,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] [CLSCompliant(false)] - public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Define an array of generic vertex attribute data @@ -77210,7 +77210,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Define an array of generic vertex attribute data @@ -77237,7 +77237,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Define an array of generic vertex attribute data @@ -77264,7 +77264,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Define an array of generic vertex attribute data @@ -77291,7 +77291,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T5 pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// Modify the rate at which generic vertex attributes advance @@ -77304,7 +77304,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glVertexBindingDivisor")] [CLSCompliant(false)] - public static void VertexBindingDivisor(Int32 bindingindex, Int32 divisor) { throw new NotImplementedException(); } + public static void VertexBindingDivisor(Int32 bindingindex, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// Modify the rate at which generic vertex attributes advance @@ -77317,91 +77317,91 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glVertexBindingDivisor")] [CLSCompliant(false)] - public static void VertexBindingDivisor(UInt32 bindingindex, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexBindingDivisor(UInt32 bindingindex, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP2ui")] [CLSCompliant(false)] - public static void VertexP2(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 value) { throw new NotImplementedException(); } + public static void VertexP2(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP2ui")] [CLSCompliant(false)] - public static void VertexP2(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 value) { throw new NotImplementedException(); } + public static void VertexP2(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP2uiv")] [CLSCompliant(false)] - public static unsafe void VertexP2(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void VertexP2(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP2uiv")] [CLSCompliant(false)] - public static unsafe void VertexP2(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void VertexP2(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP3ui")] [CLSCompliant(false)] - public static void VertexP3(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 value) { throw new NotImplementedException(); } + public static void VertexP3(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP3ui")] [CLSCompliant(false)] - public static void VertexP3(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 value) { throw new NotImplementedException(); } + public static void VertexP3(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP3uiv")] [CLSCompliant(false)] - public static unsafe void VertexP3(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void VertexP3(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP3uiv")] [CLSCompliant(false)] - public static unsafe void VertexP3(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void VertexP3(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP4ui")] [CLSCompliant(false)] - public static void VertexP4(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 value) { throw new NotImplementedException(); } + public static void VertexP4(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP4ui")] [CLSCompliant(false)] - public static void VertexP4(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 value) { throw new NotImplementedException(); } + public static void VertexP4(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP4uiv")] [CLSCompliant(false)] - public static unsafe void VertexP4(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void VertexP4(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP4uiv")] [CLSCompliant(false)] - public static unsafe void VertexP4(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void VertexP4(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of vertex data @@ -77419,7 +77419,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the first coordinate of the first vertex in the array. The initial value is 0. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glVertexPointer")] - public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of vertex data @@ -77440,7 +77440,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of vertex data @@ -77461,7 +77461,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of vertex data @@ -77482,7 +77482,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of vertex data @@ -77502,7 +77502,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glVertexPointer")] public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T3 pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set the viewport @@ -77520,7 +77520,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the width and height of the viewport. When a GL context is first attached to a window, width and height are set to the dimensions of that window. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glViewport")] - public static void Viewport(Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void Viewport(Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set multiple viewports @@ -77536,7 +77536,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportArrayv")] [CLSCompliant(false)] - public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new NotImplementedException(); } + public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set multiple viewports @@ -77552,7 +77552,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportArrayv")] [CLSCompliant(false)] - public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new NotImplementedException(); } + public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set multiple viewports @@ -77568,7 +77568,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportArrayv")] [CLSCompliant(false)] - public static unsafe void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set multiple viewports @@ -77584,7 +77584,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportArrayv")] [CLSCompliant(false)] - public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new NotImplementedException(); } + public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set multiple viewports @@ -77600,7 +77600,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportArrayv")] [CLSCompliant(false)] - public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new NotImplementedException(); } + public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set multiple viewports @@ -77616,7 +77616,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportArrayv")] [CLSCompliant(false)] - public static unsafe void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set a specified viewport @@ -77638,7 +77638,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportIndexedf")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, Single x, Single y, Single w, Single h) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, Single x, Single y, Single w, Single h) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set a specified viewport @@ -77660,7 +77660,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportIndexedf")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, Single x, Single y, Single w, Single h) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, Single x, Single y, Single w, Single h) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set a specified viewport @@ -77673,7 +77673,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportIndexedfv")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set a specified viewport @@ -77686,7 +77686,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportIndexedfv")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set a specified viewport @@ -77699,7 +77699,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportIndexedfv")] [CLSCompliant(false)] - public static unsafe void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set a specified viewport @@ -77712,7 +77712,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportIndexedfv")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set a specified viewport @@ -77725,7 +77725,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportIndexedfv")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set a specified viewport @@ -77738,7 +77738,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportIndexedfv")] [CLSCompliant(false)] - public static unsafe void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -77755,7 +77755,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use WaitSyncFlags overload instead")] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glWaitSync")] [CLSCompliant(false)] - public static void WaitSync(IntPtr sync, Int32 flags, Int64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, Int32 flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -77772,7 +77772,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use WaitSyncFlags overload instead")] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glWaitSync")] [CLSCompliant(false)] - public static void WaitSync(IntPtr sync, Int32 flags, UInt64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, Int32 flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -77789,7 +77789,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use WaitSyncFlags overload instead")] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glWaitSync")] [CLSCompliant(false)] - public static void WaitSync(IntPtr sync, UInt32 flags, UInt64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, UInt32 flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -77805,7 +77805,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glWaitSync")] [CLSCompliant(false)] - public static void WaitSync(IntPtr sync, OpenTK.Graphics.OpenGL.WaitSyncFlags flags, Int64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, OpenTK.Graphics.OpenGL.WaitSyncFlags flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -77821,7 +77821,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glWaitSync")] [CLSCompliant(false)] - public static void WaitSync(IntPtr sync, OpenTK.Graphics.OpenGL.WaitSyncFlags flags, UInt64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, OpenTK.Graphics.OpenGL.WaitSyncFlags flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -77833,7 +77833,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2d")] - public static void WindowPos2(Double x, Double y) { throw new NotImplementedException(); } + public static void WindowPos2(Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -77843,7 +77843,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2dv")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -77853,7 +77853,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2dv")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -77863,7 +77863,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2dv")] [CLSCompliant(false)] - public static unsafe void WindowPos2([CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos2([CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -77875,7 +77875,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2f")] - public static void WindowPos2(Single x, Single y) { throw new NotImplementedException(); } + public static void WindowPos2(Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -77885,7 +77885,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2fv")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -77895,7 +77895,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2fv")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -77905,7 +77905,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2fv")] [CLSCompliant(false)] - public static unsafe void WindowPos2([CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos2([CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -77917,7 +77917,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2i")] - public static void WindowPos2(Int32 x, Int32 y) { throw new NotImplementedException(); } + public static void WindowPos2(Int32 x, Int32 y) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -77927,7 +77927,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2iv")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] Int32[] v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -77937,7 +77937,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2iv")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] ref Int32 v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -77947,7 +77947,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2iv")] [CLSCompliant(false)] - public static unsafe void WindowPos2([CountAttribute(Count = 2)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos2([CountAttribute(Count = 2)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -77959,7 +77959,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2s")] - public static void WindowPos2(Int16 x, Int16 y) { throw new NotImplementedException(); } + public static void WindowPos2(Int16 x, Int16 y) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -77969,7 +77969,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2sv")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] Int16[] v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -77979,7 +77979,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2sv")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] ref Int16 v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -77989,7 +77989,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2sv")] [CLSCompliant(false)] - public static unsafe void WindowPos2([CountAttribute(Count = 2)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos2([CountAttribute(Count = 2)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -78004,7 +78004,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3d")] - public static void WindowPos3(Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void WindowPos3(Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -78014,7 +78014,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3dv")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -78024,7 +78024,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3dv")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -78034,7 +78034,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3dv")] [CLSCompliant(false)] - public static unsafe void WindowPos3([CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos3([CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -78049,7 +78049,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3f")] - public static void WindowPos3(Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void WindowPos3(Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -78059,7 +78059,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3fv")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -78069,7 +78069,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3fv")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -78079,7 +78079,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3fv")] [CLSCompliant(false)] - public static unsafe void WindowPos3([CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos3([CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -78094,7 +78094,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3i")] - public static void WindowPos3(Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void WindowPos3(Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -78104,7 +78104,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3iv")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] Int32[] v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -78114,7 +78114,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3iv")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] ref Int32 v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -78124,7 +78124,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3iv")] [CLSCompliant(false)] - public static unsafe void WindowPos3([CountAttribute(Count = 3)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos3([CountAttribute(Count = 3)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -78139,7 +78139,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3s")] - public static void WindowPos3(Int16 x, Int16 y, Int16 z) { throw new NotImplementedException(); } + public static void WindowPos3(Int16 x, Int16 y, Int16 z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -78149,7 +78149,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3sv")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -78159,7 +78159,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3sv")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -78169,7 +78169,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3sv")] [CLSCompliant(false)] - public static unsafe void WindowPos3([CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos3([CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } public static partial class Ext { @@ -78179,7 +78179,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_win32_keyed_mutex", Version = "", EntryPoint = "glAcquireKeyedMutexWin32EXT")] [CLSCompliant(false)] - public static bool AcquireKeyedMutexWin32(Int32 memory, Int64 key, Int32 timeout) { throw new NotImplementedException(); } + public static bool AcquireKeyedMutexWin32(Int32 memory, Int64 key, Int32 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_win32_keyed_mutex] /// @@ -78187,19 +78187,19 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_win32_keyed_mutex", Version = "", EntryPoint = "glAcquireKeyedMutexWin32EXT")] [CLSCompliant(false)] - public static bool AcquireKeyedMutexWin32(UInt32 memory, UInt64 key, UInt32 timeout) { throw new NotImplementedException(); } + public static bool AcquireKeyedMutexWin32(UInt32 memory, UInt64 key, UInt32 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveProgramEXT")] [CLSCompliant(false)] - public static void ActiveProgram(Int32 program) { throw new NotImplementedException(); } + public static void ActiveProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveProgramEXT")] [CLSCompliant(false)] - public static void ActiveProgram(UInt32 program) { throw new NotImplementedException(); } + public static void ActiveProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Set the active program object for a program pipeline object @@ -78212,7 +78212,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveShaderProgramEXT")] [CLSCompliant(false)] - public static void ActiveShaderProgram(Int32 pipeline, Int32 program) { throw new NotImplementedException(); } + public static void ActiveShaderProgram(Int32 pipeline, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Set the active program object for a program pipeline object @@ -78225,17 +78225,17 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveShaderProgramEXT")] [CLSCompliant(false)] - public static void ActiveShaderProgram(UInt32 pipeline, UInt32 program) { throw new NotImplementedException(); } + public static void ActiveShaderProgram(UInt32 pipeline, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_stencil_two_side] /// [AutoGenerated(Category = "EXT_stencil_two_side", Version = "", EntryPoint = "glActiveStencilFaceEXT")] - public static void ActiveStencilFace(OpenTK.Graphics.OpenGL.StencilFaceDirection face) { throw new NotImplementedException(); } + public static void ActiveStencilFace(OpenTK.Graphics.OpenGL.StencilFaceDirection face) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_light_texture] /// [AutoGenerated(Category = "EXT_light_texture", Version = "", EntryPoint = "glApplyTextureEXT")] - public static void ApplyTexture(OpenTK.Graphics.OpenGL.ExtLightTexture mode) { throw new NotImplementedException(); } + public static void ApplyTexture(OpenTK.Graphics.OpenGL.ExtLightTexture mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Determine if textures are loaded in texture memory @@ -78251,7 +78251,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glAreTexturesResidentEXT")] [CLSCompliant(false)] - public static bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures, [OutAttribute, CountAttribute(Parameter = "n")] bool[] residences) { throw new NotImplementedException(); } + public static bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures, [OutAttribute, CountAttribute(Parameter = "n")] bool[] residences) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Determine if textures are loaded in texture memory @@ -78267,7 +78267,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glAreTexturesResidentEXT")] [CLSCompliant(false)] - public static bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures, [OutAttribute, CountAttribute(Parameter = "n")] out bool residences) { throw new NotImplementedException(); } + public static bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures, [OutAttribute, CountAttribute(Parameter = "n")] out bool residences) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Determine if textures are loaded in texture memory @@ -78283,7 +78283,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glAreTexturesResidentEXT")] [CLSCompliant(false)] - public static unsafe bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures, [OutAttribute, CountAttribute(Parameter = "n")] bool* residences) { throw new NotImplementedException(); } + public static unsafe bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures, [OutAttribute, CountAttribute(Parameter = "n")] bool* residences) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Determine if textures are loaded in texture memory @@ -78299,7 +78299,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glAreTexturesResidentEXT")] [CLSCompliant(false)] - public static bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures, [OutAttribute, CountAttribute(Parameter = "n")] bool[] residences) { throw new NotImplementedException(); } + public static bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures, [OutAttribute, CountAttribute(Parameter = "n")] bool[] residences) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Determine if textures are loaded in texture memory @@ -78315,7 +78315,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glAreTexturesResidentEXT")] [CLSCompliant(false)] - public static bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures, [OutAttribute, CountAttribute(Parameter = "n")] out bool residences) { throw new NotImplementedException(); } + public static bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures, [OutAttribute, CountAttribute(Parameter = "n")] out bool residences) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Determine if textures are loaded in texture memory @@ -78331,7 +78331,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glAreTexturesResidentEXT")] [CLSCompliant(false)] - public static unsafe bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures, [OutAttribute, CountAttribute(Parameter = "n")] bool* residences) { throw new NotImplementedException(); } + public static unsafe bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures, [OutAttribute, CountAttribute(Parameter = "n")] bool* residences) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Render a vertex using the specified vertex array element @@ -78340,7 +78340,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an index into the enabled vertex data arrays. /// [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glArrayElementEXT")] - public static void ArrayElement(Int32 i) { throw new NotImplementedException(); } + public static void ArrayElement(Int32 i) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// Start transform feedback operation @@ -78349,11 +78349,11 @@ namespace OpenTK.Graphics.OpenGL /// Specify the output type of the primitives that will be recorded into the buffer objects that are bound for transform feedback. /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glBeginTransformFeedbackEXT")] - public static void BeginTransformFeedback(OpenTK.Graphics.OpenGL.ExtTransformFeedback primitiveMode) { throw new NotImplementedException(); } + public static void BeginTransformFeedback(OpenTK.Graphics.OpenGL.ExtTransformFeedback primitiveMode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glBeginVertexShaderEXT")] - public static void BeginVertexShader() { throw new NotImplementedException(); } + public static void BeginVertexShader() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// Bind a buffer object to an indexed buffer target @@ -78369,7 +78369,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glBindBufferBaseEXT")] [CLSCompliant(false)] - public static void BindBufferBase(OpenTK.Graphics.OpenGL.ExtTransformFeedback target, Int32 index, Int32 buffer) { throw new NotImplementedException(); } + public static void BindBufferBase(OpenTK.Graphics.OpenGL.ExtTransformFeedback target, Int32 index, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// Bind a buffer object to an indexed buffer target @@ -78385,7 +78385,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glBindBufferBaseEXT")] [CLSCompliant(false)] - public static void BindBufferBase(OpenTK.Graphics.OpenGL.ExtTransformFeedback target, UInt32 index, UInt32 buffer) { throw new NotImplementedException(); } + public static void BindBufferBase(OpenTK.Graphics.OpenGL.ExtTransformFeedback target, UInt32 index, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// @@ -78394,7 +78394,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glBindBufferOffsetEXT")] [CLSCompliant(false)] - public static void BindBufferOffset(OpenTK.Graphics.OpenGL.ExtTransformFeedback target, Int32 index, Int32 buffer, IntPtr offset) { throw new NotImplementedException(); } + public static void BindBufferOffset(OpenTK.Graphics.OpenGL.ExtTransformFeedback target, Int32 index, Int32 buffer, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// @@ -78403,7 +78403,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glBindBufferOffsetEXT")] [CLSCompliant(false)] - public static void BindBufferOffset(OpenTK.Graphics.OpenGL.ExtTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset) { throw new NotImplementedException(); } + public static void BindBufferOffset(OpenTK.Graphics.OpenGL.ExtTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// Bind a range within a buffer object to an indexed buffer target @@ -78425,7 +78425,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glBindBufferRangeEXT")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.OpenGL.ExtTransformFeedback target, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL.ExtTransformFeedback target, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// Bind a range within a buffer object to an indexed buffer target @@ -78447,7 +78447,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glBindBufferRangeEXT")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.OpenGL.ExtTransformFeedback target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL.ExtTransformFeedback target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// Bind a range within a buffer object to an indexed buffer target @@ -78469,7 +78469,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glBindBufferRangeEXT")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.OpenGL.ExtTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL.ExtTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// Bind a range within a buffer object to an indexed buffer target @@ -78491,7 +78491,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glBindBufferRangeEXT")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.OpenGL.ExtTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL.ExtTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Bind a user-defined varying out variable to a fragment shader color number @@ -78507,7 +78507,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glBindFragDataLocationEXT")] [CLSCompliant(false)] - public static void BindFragDataLocation(Int32 program, Int32 color, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static void BindFragDataLocation(Int32 program, Int32 color, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Bind a user-defined varying out variable to a fragment shader color number @@ -78523,7 +78523,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glBindFragDataLocationEXT")] [CLSCompliant(false)] - public static void BindFragDataLocation(UInt32 program, UInt32 color, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static void BindFragDataLocation(UInt32 program, UInt32 color, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Bind a framebuffer to a framebuffer target @@ -78536,7 +78536,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glBindFramebufferEXT")] [CLSCompliant(false)] - public static void BindFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 framebuffer) { throw new NotImplementedException(); } + public static void BindFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Bind a framebuffer to a framebuffer target @@ -78549,7 +78549,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glBindFramebufferEXT")] [CLSCompliant(false)] - public static void BindFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, UInt32 framebuffer) { throw new NotImplementedException(); } + public static void BindFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, UInt32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_image_load_store] /// Bind a level of a texture to an image unit @@ -78577,7 +78577,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_shader_image_load_store", Version = "", EntryPoint = "glBindImageTextureEXT")] [CLSCompliant(false)] - public static void BindImageTexture(Int32 index, Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore access, Int32 format) { throw new NotImplementedException(); } + public static void BindImageTexture(Int32 index, Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore access, Int32 format) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_image_load_store] /// Bind a level of a texture to an image unit @@ -78605,19 +78605,19 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_shader_image_load_store", Version = "", EntryPoint = "glBindImageTextureEXT")] [CLSCompliant(false)] - public static void BindImageTexture(UInt32 index, UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore access, Int32 format) { throw new NotImplementedException(); } + public static void BindImageTexture(UInt32 index, UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore access, Int32 format) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glBindLightParameterEXT")] - public static Int32 BindLightParameter(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter value) { throw new NotImplementedException(); } + public static Int32 BindLightParameter(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glBindMaterialParameterEXT")] - public static Int32 BindMaterialParameter(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter value) { throw new NotImplementedException(); } + public static Int32 BindMaterialParameter(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -78625,7 +78625,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glBindMultiTextureEXT")] [CLSCompliant(false)] - public static void BindMultiTexture(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 texture) { throw new NotImplementedException(); } + public static void BindMultiTexture(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -78633,12 +78633,12 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glBindMultiTextureEXT")] [CLSCompliant(false)] - public static void BindMultiTexture(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, UInt32 texture) { throw new NotImplementedException(); } + public static void BindMultiTexture(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glBindParameterEXT")] - public static Int32 BindParameter(OpenTK.Graphics.OpenGL.ExtVertexShader value) { throw new NotImplementedException(); } + public static Int32 BindParameter(OpenTK.Graphics.OpenGL.ExtVertexShader value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind a program pipeline to the current context @@ -78648,7 +78648,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glBindProgramPipelineEXT")] [CLSCompliant(false)] - public static void BindProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } + public static void BindProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind a program pipeline to the current context @@ -78658,7 +78658,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glBindProgramPipelineEXT")] [CLSCompliant(false)] - public static void BindProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static void BindProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Bind a renderbuffer to a renderbuffer target @@ -78671,7 +78671,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glBindRenderbufferEXT")] [CLSCompliant(false)] - public static void BindRenderbuffer(OpenTK.Graphics.OpenGL.RenderbufferTarget target, Int32 renderbuffer) { throw new NotImplementedException(); } + public static void BindRenderbuffer(OpenTK.Graphics.OpenGL.RenderbufferTarget target, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Bind a renderbuffer to a renderbuffer target @@ -78684,14 +78684,14 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glBindRenderbufferEXT")] [CLSCompliant(false)] - public static void BindRenderbuffer(OpenTK.Graphics.OpenGL.RenderbufferTarget target, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void BindRenderbuffer(OpenTK.Graphics.OpenGL.RenderbufferTarget target, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glBindTexGenParameterEXT")] - public static Int32 BindTexGenParameter(OpenTK.Graphics.OpenGL.TextureUnit unit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter value) { throw new NotImplementedException(); } + public static Int32 BindTexGenParameter(OpenTK.Graphics.OpenGL.TextureUnit unit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Bind a named texture to a texturing target @@ -78704,7 +78704,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glBindTextureEXT")] [CLSCompliant(false)] - public static void BindTexture(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 texture) { throw new NotImplementedException(); } + public static void BindTexture(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Bind a named texture to a texturing target @@ -78717,25 +78717,25 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glBindTextureEXT")] [CLSCompliant(false)] - public static void BindTexture(OpenTK.Graphics.OpenGL.TextureTarget target, UInt32 texture) { throw new NotImplementedException(); } + public static void BindTexture(OpenTK.Graphics.OpenGL.TextureTarget target, UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glBindTextureUnitParameterEXT")] - public static Int32 BindTextureUnitParameter(OpenTK.Graphics.OpenGL.TextureUnit unit, OpenTK.Graphics.OpenGL.ExtVertexShader value) { throw new NotImplementedException(); } + public static Int32 BindTextureUnitParameter(OpenTK.Graphics.OpenGL.TextureUnit unit, OpenTK.Graphics.OpenGL.ExtVertexShader value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glBindVertexShaderEXT")] [CLSCompliant(false)] - public static void BindVertexShader(Int32 id) { throw new NotImplementedException(); } + public static void BindVertexShader(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glBindVertexShaderEXT")] [CLSCompliant(false)] - public static void BindVertexShader(UInt32 id) { throw new NotImplementedException(); } + public static void BindVertexShader(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// @@ -78743,7 +78743,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3bEXT")] [CLSCompliant(false)] - public static void Binormal3(Byte bx, Byte by, Byte bz) { throw new NotImplementedException(); } + public static void Binormal3(Byte bx, Byte by, Byte bz) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// @@ -78751,150 +78751,150 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3bEXT")] [CLSCompliant(false)] - public static void Binormal3(SByte bx, SByte by, SByte bz) { throw new NotImplementedException(); } + public static void Binormal3(SByte bx, SByte by, SByte bz) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3bvEXT")] [CLSCompliant(false)] - public static void Binormal3([CountAttribute(Count = 3)] Byte[] v) { throw new NotImplementedException(); } + public static void Binormal3([CountAttribute(Count = 3)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3bvEXT")] [CLSCompliant(false)] - public static void Binormal3([CountAttribute(Count = 3)] ref Byte v) { throw new NotImplementedException(); } + public static void Binormal3([CountAttribute(Count = 3)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3bvEXT")] [CLSCompliant(false)] - public static unsafe void Binormal3([CountAttribute(Count = 3)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void Binormal3([CountAttribute(Count = 3)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3bvEXT")] [CLSCompliant(false)] - public static void Binormal3([CountAttribute(Count = 3)] SByte[] v) { throw new NotImplementedException(); } + public static void Binormal3([CountAttribute(Count = 3)] SByte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3bvEXT")] [CLSCompliant(false)] - public static void Binormal3([CountAttribute(Count = 3)] ref SByte v) { throw new NotImplementedException(); } + public static void Binormal3([CountAttribute(Count = 3)] ref SByte v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3bvEXT")] [CLSCompliant(false)] - public static unsafe void Binormal3([CountAttribute(Count = 3)] SByte* v) { throw new NotImplementedException(); } + public static unsafe void Binormal3([CountAttribute(Count = 3)] SByte* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// /// /// [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3dEXT")] - public static void Binormal3(Double bx, Double by, Double bz) { throw new NotImplementedException(); } + public static void Binormal3(Double bx, Double by, Double bz) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3dvEXT")] [CLSCompliant(false)] - public static void Binormal3([CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void Binormal3([CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3dvEXT")] [CLSCompliant(false)] - public static void Binormal3([CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void Binormal3([CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3dvEXT")] [CLSCompliant(false)] - public static unsafe void Binormal3([CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void Binormal3([CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// /// /// [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3fEXT")] - public static void Binormal3(Single bx, Single by, Single bz) { throw new NotImplementedException(); } + public static void Binormal3(Single bx, Single by, Single bz) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3fvEXT")] [CLSCompliant(false)] - public static void Binormal3([CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void Binormal3([CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3fvEXT")] [CLSCompliant(false)] - public static void Binormal3([CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void Binormal3([CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3fvEXT")] [CLSCompliant(false)] - public static unsafe void Binormal3([CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void Binormal3([CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// /// /// [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3iEXT")] - public static void Binormal3(Int32 bx, Int32 by, Int32 bz) { throw new NotImplementedException(); } + public static void Binormal3(Int32 bx, Int32 by, Int32 bz) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3ivEXT")] [CLSCompliant(false)] - public static void Binormal3([CountAttribute(Count = 3)] Int32[] v) { throw new NotImplementedException(); } + public static void Binormal3([CountAttribute(Count = 3)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3ivEXT")] [CLSCompliant(false)] - public static void Binormal3([CountAttribute(Count = 3)] ref Int32 v) { throw new NotImplementedException(); } + public static void Binormal3([CountAttribute(Count = 3)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3ivEXT")] [CLSCompliant(false)] - public static unsafe void Binormal3([CountAttribute(Count = 3)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void Binormal3([CountAttribute(Count = 3)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// /// /// [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3sEXT")] - public static void Binormal3(Int16 bx, Int16 by, Int16 bz) { throw new NotImplementedException(); } + public static void Binormal3(Int16 bx, Int16 by, Int16 bz) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3svEXT")] [CLSCompliant(false)] - public static void Binormal3([CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void Binormal3([CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3svEXT")] [CLSCompliant(false)] - public static void Binormal3([CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void Binormal3([CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3svEXT")] [CLSCompliant(false)] - public static unsafe void Binormal3([CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void Binormal3([CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// /// /// [length: COMPSIZE(type,stride)] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormalPointerEXT")] - public static void BinormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void BinormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// @@ -78904,7 +78904,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BinormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// @@ -78914,7 +78914,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BinormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// @@ -78924,7 +78924,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BinormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// @@ -78933,7 +78933,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormalPointerEXT")] public static void BinormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_color] /// Set the blend color @@ -78951,7 +78951,7 @@ namespace OpenTK.Graphics.OpenGL /// specify the components of BlendColor /// [AutoGenerated(Category = "EXT_blend_color", Version = "", EntryPoint = "glBlendColorEXT")] - public static void BlendColor(Single red, Single green, Single blue, Single alpha) { throw new NotImplementedException(); } + public static void BlendColor(Single red, Single green, Single blue, Single alpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_minmax] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -78960,7 +78960,7 @@ namespace OpenTK.Graphics.OpenGL /// specifies how source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. /// [AutoGenerated(Category = "EXT_blend_minmax", Version = "", EntryPoint = "glBlendEquationEXT")] - public static void BlendEquation(OpenTK.Graphics.OpenGL.BlendEquationMode mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.OpenGL.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_minmax] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -78970,7 +78970,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use BlendEquationMode overload instead")] [AutoGenerated(Category = "EXT_blend_minmax", Version = "", EntryPoint = "glBlendEquationEXT")] - public static void BlendEquation(OpenTK.Graphics.OpenGL.ExtBlendMinmax mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.OpenGL.ExtBlendMinmax mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_equation_separate] /// Set the RGB blend equation and the alpha blend equation separately @@ -78982,7 +78982,7 @@ namespace OpenTK.Graphics.OpenGL /// specifies the alpha blend equation, how the alpha component of the source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. /// [AutoGenerated(Category = "EXT_blend_equation_separate", Version = "", EntryPoint = "glBlendEquationSeparateEXT")] - public static void BlendEquationSeparate(OpenTK.Graphics.OpenGL.BlendEquationModeExt modeRGB, OpenTK.Graphics.OpenGL.BlendEquationModeExt modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(OpenTK.Graphics.OpenGL.BlendEquationModeExt modeRGB, OpenTK.Graphics.OpenGL.BlendEquationModeExt modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_equation_separate] /// Set the RGB blend equation and the alpha blend equation separately @@ -78995,7 +78995,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use BlendEquationModeExt overload instead")] [AutoGenerated(Category = "EXT_blend_equation_separate", Version = "", EntryPoint = "glBlendEquationSeparateEXT")] - public static void BlendEquationSeparate(OpenTK.Graphics.OpenGL.ExtBlendEquationSeparate modeRGB, OpenTK.Graphics.OpenGL.ExtBlendEquationSeparate modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(OpenTK.Graphics.OpenGL.ExtBlendEquationSeparate modeRGB, OpenTK.Graphics.OpenGL.ExtBlendEquationSeparate modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_separate] /// Specify pixel arithmetic for RGB and alpha components separately @@ -79013,7 +79013,7 @@ namespace OpenTK.Graphics.OpenGL /// Specified how the alpha source blending factor is computed. The initial value is One. /// [AutoGenerated(Category = "EXT_blend_func_separate", Version = "", EntryPoint = "glBlendFuncSeparateEXT")] - public static void BlendFuncSeparate(OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate sfactorRGB, OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate dfactorRGB, OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate sfactorAlpha, OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate dfactorAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate sfactorRGB, OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate dfactorRGB, OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate sfactorAlpha, OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate dfactorAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_blit] /// Copy a block of pixels from the read framebuffer to the draw framebuffer @@ -79049,7 +79049,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the interpolation to be applied if the image is stretched. Must be Nearest or Linear. /// [AutoGenerated(Category = "EXT_framebuffer_blit", Version = "", EntryPoint = "glBlitFramebufferEXT")] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.OpenGL.ClearBufferMask mask, OpenTK.Graphics.OpenGL.BlitFramebufferFilter filter) { throw new NotImplementedException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.OpenGL.ClearBufferMask mask, OpenTK.Graphics.OpenGL.BlitFramebufferFilter filter) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_blit] /// Copy a block of pixels from the read framebuffer to the draw framebuffer @@ -79086,7 +79086,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use BlitFramebufferFilter overload instead")] [AutoGenerated(Category = "EXT_framebuffer_blit", Version = "", EntryPoint = "glBlitFramebufferEXT")] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.OpenGL.ClearBufferMask mask, OpenTK.Graphics.OpenGL.ExtFramebufferBlit filter) { throw new NotImplementedException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.OpenGL.ClearBufferMask mask, OpenTK.Graphics.OpenGL.ExtFramebufferBlit filter) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -79096,7 +79096,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.OpenGL.ExtExternalBuffer target, IntPtr offset, Int32 size, IntPtr clientBuffer, Int32 flags) { throw new NotImplementedException(); } + public static void BufferStorageExternal(OpenTK.Graphics.OpenGL.ExtExternalBuffer target, IntPtr offset, Int32 size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -79106,7 +79106,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.OpenGL.ExtExternalBuffer target, IntPtr offset, Int32 size, IntPtr clientBuffer, UInt32 flags) { throw new NotImplementedException(); } + public static void BufferStorageExternal(OpenTK.Graphics.OpenGL.ExtExternalBuffer target, IntPtr offset, Int32 size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -79116,7 +79116,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.OpenGL.ExtExternalBuffer target, IntPtr offset, IntPtr size, IntPtr clientBuffer, Int32 flags) { throw new NotImplementedException(); } + public static void BufferStorageExternal(OpenTK.Graphics.OpenGL.ExtExternalBuffer target, IntPtr offset, IntPtr size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -79126,7 +79126,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.OpenGL.ExtExternalBuffer target, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags) { throw new NotImplementedException(); } + public static void BufferStorageExternal(OpenTK.Graphics.OpenGL.ExtExternalBuffer target, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -79135,7 +79135,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.OpenGL.BufferTargetArb target, Int32 size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.OpenGL.BufferTargetArb target, Int32 size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -79144,7 +79144,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.OpenGL.BufferTargetArb target, Int32 size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.OpenGL.BufferTargetArb target, Int32 size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -79153,7 +79153,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -79162,7 +79162,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Check the completeness status of a framebuffer @@ -79171,21 +79171,21 @@ namespace OpenTK.Graphics.OpenGL /// Specify the target of the framebuffer completeness check. /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glCheckFramebufferStatusEXT")] - public static OpenTK.Graphics.OpenGL.FramebufferErrorCode CheckFramebufferStatus(OpenTK.Graphics.OpenGL.FramebufferTarget target) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.FramebufferErrorCode CheckFramebufferStatus(OpenTK.Graphics.OpenGL.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCheckNamedFramebufferStatusEXT")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.ExtDirectStateAccess CheckNamedFramebufferStatus(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferTarget target) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.ExtDirectStateAccess CheckNamedFramebufferStatus(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCheckNamedFramebufferStatusEXT")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.ExtDirectStateAccess CheckNamedFramebufferStatus(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferTarget target) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.ExtDirectStateAccess CheckNamedFramebufferStatus(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_integer] /// @@ -79193,7 +79193,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_texture_integer", Version = "", EntryPoint = "glClearColorIiEXT")] - public static void ClearColorI(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new NotImplementedException(); } + public static void ClearColorI(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_integer] /// @@ -79202,7 +79202,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_integer", Version = "", EntryPoint = "glClearColorIuiEXT")] [CLSCompliant(false)] - public static void ClearColorI(UInt32 red, UInt32 green, UInt32 blue, UInt32 alpha) { throw new NotImplementedException(); } + public static void ClearColorI(UInt32 red, UInt32 green, UInt32 blue, UInt32 alpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79213,7 +79213,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79226,7 +79226,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79239,7 +79239,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79252,7 +79252,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79265,7 +79265,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79275,7 +79275,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79287,7 +79287,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79299,7 +79299,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79311,7 +79311,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79323,7 +79323,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79334,7 +79334,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79347,7 +79347,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79360,7 +79360,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79373,7 +79373,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79386,7 +79386,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79396,7 +79396,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79408,7 +79408,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79420,7 +79420,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79432,7 +79432,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79444,7 +79444,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79457,7 +79457,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79472,7 +79472,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79487,7 +79487,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79502,7 +79502,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79517,7 +79517,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79530,7 +79530,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79545,7 +79545,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79560,7 +79560,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79575,7 +79575,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79590,7 +79590,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79603,7 +79603,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79618,7 +79618,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79633,7 +79633,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79648,7 +79648,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79663,7 +79663,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79676,7 +79676,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79691,7 +79691,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79706,7 +79706,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79721,7 +79721,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79736,7 +79736,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79748,7 +79748,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79762,7 +79762,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79776,7 +79776,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79790,7 +79790,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79804,7 +79804,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79816,7 +79816,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79830,7 +79830,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79844,7 +79844,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79858,7 +79858,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79872,7 +79872,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79885,7 +79885,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79900,7 +79900,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79915,7 +79915,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79930,7 +79930,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79945,7 +79945,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79958,7 +79958,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79973,7 +79973,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79988,7 +79988,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80003,7 +80003,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80018,7 +80018,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80031,7 +80031,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80046,7 +80046,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80061,7 +80061,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80076,7 +80076,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80091,7 +80091,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80104,7 +80104,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80119,7 +80119,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80134,7 +80134,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80149,7 +80149,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80164,7 +80164,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80176,7 +80176,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80190,7 +80190,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80204,7 +80204,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80218,7 +80218,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80232,7 +80232,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80244,7 +80244,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80258,7 +80258,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80272,7 +80272,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80286,7 +80286,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80300,12 +80300,12 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClientAttribDefaultEXT")] - public static void ClientAttribDefault(OpenTK.Graphics.OpenGL.ClientAttribMask mask) { throw new NotImplementedException(); } + public static void ClientAttribDefault(OpenTK.Graphics.OpenGL.ClientAttribMask mask) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers2] /// @@ -80315,7 +80315,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_draw_buffers2", Version = "", EntryPoint = "glColorMaskIndexedEXT")] [CLSCompliant(false)] - public static void ColorMaskIndexed(Int32 index, bool r, bool g, bool b, bool a) { throw new NotImplementedException(); } + public static void ColorMaskIndexed(Int32 index, bool r, bool g, bool b, bool a) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers2] /// @@ -80325,7 +80325,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_draw_buffers2", Version = "", EntryPoint = "glColorMaskIndexedEXT")] [CLSCompliant(false)] - public static void ColorMaskIndexed(UInt32 index, bool r, bool g, bool b, bool a) { throw new NotImplementedException(); } + public static void ColorMaskIndexed(UInt32 index, bool r, bool g, bool b, bool a) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of colors @@ -80346,7 +80346,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the first component of the first color element in the array. The initial value is 0. /// [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glColorPointerEXT")] - public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, Int32 count, [CountAttribute(Computed = "size,type,stride,count")] IntPtr pointer) { throw new NotImplementedException(); } + public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, Int32 count, [CountAttribute(Computed = "size,type,stride,count")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of colors @@ -80370,7 +80370,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride,count")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of colors @@ -80394,7 +80394,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride,count")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of colors @@ -80418,7 +80418,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride,count")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of colors @@ -80441,7 +80441,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glColorPointerEXT")] public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride,count")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_color_subtable] /// Respecify a portion of a color table @@ -80465,7 +80465,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a one-dimensional array of pixel data that is processed to replace the specified region of the color table. /// [AutoGenerated(Category = "EXT_color_subtable", Version = "", EntryPoint = "glColorSubTableEXT")] - public static void ColorSubTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,count")] IntPtr data) { throw new NotImplementedException(); } + public static void ColorSubTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,count")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_color_subtable] /// Respecify a portion of a color table @@ -80492,7 +80492,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorSubTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,count")] T5[] data) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_color_subtable] /// Respecify a portion of a color table @@ -80519,7 +80519,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorSubTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,count")] T5[,] data) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_color_subtable] /// Respecify a portion of a color table @@ -80546,7 +80546,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorSubTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,count")] T5[,,] data) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_color_subtable] /// Respecify a portion of a color table @@ -80572,7 +80572,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_color_subtable", Version = "", EntryPoint = "glColorSubTableEXT")] public static void ColorSubTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,count")] ref T5 data) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_paletted_texture] /// Define a color lookup table @@ -80596,7 +80596,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a one-dimensional array of pixel data that is processed to build the color table. /// [AutoGenerated(Category = "EXT_paletted_texture", Version = "", EntryPoint = "glColorTableEXT")] - public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalFormat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr table) { throw new NotImplementedException(); } + public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalFormat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr table) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_paletted_texture] /// Define a color lookup table @@ -80623,7 +80623,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalFormat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[] table) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_paletted_texture] /// Define a color lookup table @@ -80650,7 +80650,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalFormat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,] table) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_paletted_texture] /// Define a color lookup table @@ -80677,7 +80677,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalFormat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,,] table) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_paletted_texture] /// Define a color lookup table @@ -80703,7 +80703,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_paletted_texture", Version = "", EntryPoint = "glColorTableEXT")] public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalFormat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T5 table) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80715,7 +80715,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage1DEXT")] - public static void CompressedMultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedMultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80730,7 +80730,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedMultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80745,7 +80745,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedMultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80760,7 +80760,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedMultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80774,7 +80774,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage1DEXT")] public static void CompressedMultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80787,7 +80787,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage2DEXT")] - public static void CompressedMultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedMultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80803,7 +80803,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedMultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80819,7 +80819,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedMultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80835,7 +80835,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedMultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80850,7 +80850,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage2DEXT")] public static void CompressedMultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80864,7 +80864,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage3DEXT")] - public static void CompressedMultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedMultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80881,7 +80881,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedMultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80898,7 +80898,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedMultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80915,7 +80915,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedMultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80931,7 +80931,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage3DEXT")] public static void CompressedMultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T9 bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80943,7 +80943,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexSubImage1DEXT")] - public static void CompressedMultiTexSubImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedMultiTexSubImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80958,7 +80958,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedMultiTexSubImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80973,7 +80973,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedMultiTexSubImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80988,7 +80988,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedMultiTexSubImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81002,7 +81002,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexSubImage1DEXT")] public static void CompressedMultiTexSubImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81016,7 +81016,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexSubImage2DEXT")] - public static void CompressedMultiTexSubImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedMultiTexSubImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81033,7 +81033,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedMultiTexSubImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81050,7 +81050,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedMultiTexSubImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81067,7 +81067,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedMultiTexSubImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81083,7 +81083,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexSubImage2DEXT")] public static void CompressedMultiTexSubImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T9 bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81099,7 +81099,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexSubImage3DEXT")] - public static void CompressedMultiTexSubImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedMultiTexSubImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81118,7 +81118,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedMultiTexSubImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T11[] bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81137,7 +81137,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedMultiTexSubImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T11[,] bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81156,7 +81156,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedMultiTexSubImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T11[,,] bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81174,7 +81174,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexSubImage3DEXT")] public static void CompressedMultiTexSubImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T11 bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81187,7 +81187,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage1DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81202,7 +81202,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81217,7 +81217,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81232,7 +81232,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81247,7 +81247,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81260,7 +81260,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage1DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81275,7 +81275,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81290,7 +81290,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81305,7 +81305,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81320,7 +81320,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81334,7 +81334,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage2DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81350,7 +81350,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81366,7 +81366,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81382,7 +81382,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81398,7 +81398,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81412,7 +81412,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage2DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81428,7 +81428,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81444,7 +81444,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81460,7 +81460,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81476,7 +81476,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81491,7 +81491,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage3DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81508,7 +81508,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81525,7 +81525,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81542,7 +81542,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81559,7 +81559,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T9 bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81574,7 +81574,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage3DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81591,7 +81591,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81608,7 +81608,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81625,7 +81625,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81642,7 +81642,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T9 bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81655,7 +81655,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage1DEXT")] [CLSCompliant(false)] - public static void CompressedTextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81670,7 +81670,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81685,7 +81685,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81700,7 +81700,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81715,7 +81715,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81728,7 +81728,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage1DEXT")] [CLSCompliant(false)] - public static void CompressedTextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81743,7 +81743,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81758,7 +81758,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81773,7 +81773,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81788,7 +81788,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81803,7 +81803,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage2DEXT")] [CLSCompliant(false)] - public static void CompressedTextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81820,7 +81820,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81837,7 +81837,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81854,7 +81854,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81871,7 +81871,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T9 bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81886,7 +81886,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage2DEXT")] [CLSCompliant(false)] - public static void CompressedTextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81903,7 +81903,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81920,7 +81920,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81937,7 +81937,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81954,7 +81954,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T9 bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81971,7 +81971,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage3DEXT")] [CLSCompliant(false)] - public static void CompressedTextureSubImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81990,7 +81990,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T11[] bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -82009,7 +82009,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T11[,] bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -82028,7 +82028,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T11[,,] bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -82047,7 +82047,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T11 bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -82064,7 +82064,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage3DEXT")] [CLSCompliant(false)] - public static void CompressedTextureSubImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -82083,7 +82083,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T11[] bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -82102,7 +82102,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T11[,] bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -82121,7 +82121,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T11[,,] bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -82140,7 +82140,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T11 bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a one-dimensional convolution filter @@ -82164,7 +82164,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a one-dimensional array of pixel data that is processed to build the convolution filter kernel. /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter1DEXT")] - public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr image) { throw new NotImplementedException(); } + public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a one-dimensional convolution filter @@ -82191,7 +82191,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[] image) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a one-dimensional convolution filter @@ -82218,7 +82218,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,] image) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a one-dimensional convolution filter @@ -82245,7 +82245,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,,] image) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a one-dimensional convolution filter @@ -82271,7 +82271,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter1DEXT")] public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T5 image) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a one-dimensional convolution filter @@ -82296,7 +82296,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter1DEXT")] - public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr image) { throw new NotImplementedException(); } + public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a one-dimensional convolution filter @@ -82324,7 +82324,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[] image) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a one-dimensional convolution filter @@ -82352,7 +82352,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,] image) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a one-dimensional convolution filter @@ -82380,7 +82380,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,,] image) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a one-dimensional convolution filter @@ -82407,7 +82407,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter1DEXT")] public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T5 image) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a two-dimensional convolution filter @@ -82434,7 +82434,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a two-dimensional array of pixel data that is processed to build the convolution filter kernel. /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter2DEXT")] - public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr image) { throw new NotImplementedException(); } + public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a two-dimensional convolution filter @@ -82464,7 +82464,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[] image) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a two-dimensional convolution filter @@ -82494,7 +82494,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,] image) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a two-dimensional convolution filter @@ -82524,7 +82524,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,,] image) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a two-dimensional convolution filter @@ -82553,7 +82553,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter2DEXT")] public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T6 image) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a two-dimensional convolution filter @@ -82581,7 +82581,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter2DEXT")] - public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr image) { throw new NotImplementedException(); } + public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a two-dimensional convolution filter @@ -82612,7 +82612,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[] image) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a two-dimensional convolution filter @@ -82643,7 +82643,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,] image) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a two-dimensional convolution filter @@ -82674,7 +82674,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,,] image) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a two-dimensional convolution filter @@ -82704,7 +82704,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter2DEXT")] public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T6 image) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Set convolution parameters @@ -82719,7 +82719,7 @@ namespace OpenTK.Graphics.OpenGL /// The parameter value. Must be one of Reduce, ConstantBorder, ReplicateBorder. /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionParameterfEXT")] - public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, Single @params) { throw new NotImplementedException(); } + public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Set convolution parameters @@ -82735,7 +82735,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionParameterfEXT")] - public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, Single @params) { throw new NotImplementedException(); } + public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Set convolution parameters @@ -82751,7 +82751,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionParameterfvEXT")] [CLSCompliant(false)] - public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Set convolution parameters @@ -82767,7 +82767,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Set convolution parameters @@ -82784,7 +82784,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionParameterfvEXT")] [CLSCompliant(false)] - public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Set convolution parameters @@ -82801,7 +82801,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Set convolution parameters @@ -82816,7 +82816,7 @@ namespace OpenTK.Graphics.OpenGL /// The parameter value. Must be one of Reduce, ConstantBorder, ReplicateBorder. /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionParameteriEXT")] - public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, Int32 @params) { throw new NotImplementedException(); } + public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Set convolution parameters @@ -82832,7 +82832,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionParameteriEXT")] - public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, Int32 @params) { throw new NotImplementedException(); } + public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Set convolution parameters @@ -82848,7 +82848,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionParameterivEXT")] [CLSCompliant(false)] - public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Set convolution parameters @@ -82864,7 +82864,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionParameterivEXT")] [CLSCompliant(false)] - public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Set convolution parameters @@ -82881,7 +82881,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionParameterivEXT")] [CLSCompliant(false)] - public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Set convolution parameters @@ -82898,7 +82898,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionParameterivEXT")] [CLSCompliant(false)] - public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_color_subtable] /// Respecify a portion of a color table @@ -82919,7 +82919,7 @@ namespace OpenTK.Graphics.OpenGL /// The number of table entries to replace. /// [AutoGenerated(Category = "EXT_color_subtable", Version = "", EntryPoint = "glCopyColorSubTableEXT")] - public static void CopyColorSubTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, Int32 start, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyColorSubTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, Int32 start, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Copy pixels into a one-dimensional convolution filter @@ -82940,7 +82940,7 @@ namespace OpenTK.Graphics.OpenGL /// The width of the pixel array to copy. /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glCopyConvolutionFilter1DEXT")] - public static void CopyConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Copy pixels into a one-dimensional convolution filter @@ -82962,7 +82962,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glCopyConvolutionFilter1DEXT")] - public static void CopyConvolutionFilter1D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyConvolutionFilter1D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Copy pixels into a two-dimensional convolution filter @@ -82986,7 +82986,7 @@ namespace OpenTK.Graphics.OpenGL /// The height of the pixel array to copy. /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glCopyConvolutionFilter2DEXT")] - public static void CopyConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Copy pixels into a two-dimensional convolution filter @@ -83011,7 +83011,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glCopyConvolutionFilter2DEXT")] - public static void CopyConvolutionFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyConvolutionFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -83023,7 +83023,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyMultiTexImage1DEXT")] - public static void CopyMultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new NotImplementedException(); } + public static void CopyMultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -83036,7 +83036,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyMultiTexImage2DEXT")] - public static void CopyMultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new NotImplementedException(); } + public static void CopyMultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -83047,7 +83047,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyMultiTexSubImage1DEXT")] - public static void CopyMultiTexSubImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyMultiTexSubImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -83060,7 +83060,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyMultiTexSubImage2DEXT")] - public static void CopyMultiTexSubImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyMultiTexSubImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -83074,7 +83074,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyMultiTexSubImage3DEXT")] - public static void CopyMultiTexSubImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyMultiTexSubImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_copy_texture] /// Copy pixels into a 1D texture image @@ -83101,7 +83101,7 @@ namespace OpenTK.Graphics.OpenGL /// Must be 0. /// [AutoGenerated(Category = "EXT_copy_texture", Version = "", EntryPoint = "glCopyTexImage1DEXT")] - public static void CopyTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new NotImplementedException(); } + public static void CopyTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_copy_texture] /// Copy pixels into a 2D texture image @@ -83131,7 +83131,7 @@ namespace OpenTK.Graphics.OpenGL /// Must be 0. /// [AutoGenerated(Category = "EXT_copy_texture", Version = "", EntryPoint = "glCopyTexImage2DEXT")] - public static void CopyTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new NotImplementedException(); } + public static void CopyTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_copy_texture] /// Copy a one-dimensional texture subimage @@ -83155,7 +83155,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the width of the texture subimage. /// [AutoGenerated(Category = "EXT_copy_texture", Version = "", EntryPoint = "glCopyTexSubImage1DEXT")] - public static void CopyTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_copy_texture] /// Copy a two-dimensional texture subimage @@ -83185,7 +83185,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the height of the texture subimage. /// [AutoGenerated(Category = "EXT_copy_texture", Version = "", EntryPoint = "glCopyTexSubImage2DEXT")] - public static void CopyTexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_copy_texture] /// Copy a three-dimensional texture subimage @@ -83218,7 +83218,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the height of the texture subimage. /// [AutoGenerated(Category = "EXT_copy_texture", Version = "", EntryPoint = "glCopyTexSubImage3DEXT")] - public static void CopyTexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -83231,7 +83231,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureImage1DEXT")] [CLSCompliant(false)] - public static void CopyTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new NotImplementedException(); } + public static void CopyTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -83244,7 +83244,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureImage1DEXT")] [CLSCompliant(false)] - public static void CopyTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new NotImplementedException(); } + public static void CopyTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -83258,7 +83258,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureImage2DEXT")] [CLSCompliant(false)] - public static void CopyTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new NotImplementedException(); } + public static void CopyTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -83272,7 +83272,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureImage2DEXT")] [CLSCompliant(false)] - public static void CopyTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new NotImplementedException(); } + public static void CopyTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -83284,7 +83284,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureSubImage1DEXT")] [CLSCompliant(false)] - public static void CopyTextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyTextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -83296,7 +83296,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureSubImage1DEXT")] [CLSCompliant(false)] - public static void CopyTextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyTextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -83310,7 +83310,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureSubImage2DEXT")] [CLSCompliant(false)] - public static void CopyTextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -83324,7 +83324,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureSubImage2DEXT")] [CLSCompliant(false)] - public static void CopyTextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -83339,7 +83339,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureSubImage3DEXT")] [CLSCompliant(false)] - public static void CopyTextureSubImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTextureSubImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -83354,49 +83354,49 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureSubImage3DEXT")] [CLSCompliant(false)] - public static void CopyTextureSubImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTextureSubImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static void CreateMemoryObjects(Int32 n, [OutAttribute] Int32[] memoryObjects) { throw new NotImplementedException(); } + public static void CreateMemoryObjects(Int32 n, [OutAttribute] Int32[] memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static void CreateMemoryObjects(Int32 n, [OutAttribute] out Int32 memoryObjects) { throw new NotImplementedException(); } + public static void CreateMemoryObjects(Int32 n, [OutAttribute] out Int32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static unsafe void CreateMemoryObjects(Int32 n, [OutAttribute] Int32* memoryObjects) { throw new NotImplementedException(); } + public static unsafe void CreateMemoryObjects(Int32 n, [OutAttribute] Int32* memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static void CreateMemoryObjects(Int32 n, [OutAttribute] UInt32[] memoryObjects) { throw new NotImplementedException(); } + public static void CreateMemoryObjects(Int32 n, [OutAttribute] UInt32[] memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static void CreateMemoryObjects(Int32 n, [OutAttribute] out UInt32 memoryObjects) { throw new NotImplementedException(); } + public static void CreateMemoryObjects(Int32 n, [OutAttribute] out UInt32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static unsafe void CreateMemoryObjects(Int32 n, [OutAttribute] UInt32* memoryObjects) { throw new NotImplementedException(); } + public static unsafe void CreateMemoryObjects(Int32 n, [OutAttribute] UInt32* memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Create a stand-alone program from an array of null-terminated source code strings @@ -83408,7 +83408,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the number of source code strings in the array strings. /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glCreateShaderProgramEXT")] - public static Int32 CreateShaderProgram(OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects type, String @string) { throw new NotImplementedException(); } + public static Int32 CreateShaderProgram(OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects type, String @string) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Create a stand-alone program from an array of null-terminated source code strings @@ -83423,49 +83423,49 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array of pointers to source code strings from which to create the program object. /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glCreateShaderProgramvEXT")] - public static Int32 CreateShaderProgram(OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new NotImplementedException(); } + public static Int32 CreateShaderProgram(OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_cull_vertex] /// /// [length: 4] [AutoGenerated(Category = "EXT_cull_vertex", Version = "", EntryPoint = "glCullParameterdvEXT")] [CLSCompliant(false)] - public static void CullParameter(OpenTK.Graphics.OpenGL.ExtCullVertex pname, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void CullParameter(OpenTK.Graphics.OpenGL.ExtCullVertex pname, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_cull_vertex] /// /// [length: 4] [AutoGenerated(Category = "EXT_cull_vertex", Version = "", EntryPoint = "glCullParameterdvEXT")] [CLSCompliant(false)] - public static void CullParameter(OpenTK.Graphics.OpenGL.ExtCullVertex pname, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void CullParameter(OpenTK.Graphics.OpenGL.ExtCullVertex pname, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_cull_vertex] /// /// [length: 4] [AutoGenerated(Category = "EXT_cull_vertex", Version = "", EntryPoint = "glCullParameterdvEXT")] [CLSCompliant(false)] - public static unsafe void CullParameter(OpenTK.Graphics.OpenGL.ExtCullVertex pname, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void CullParameter(OpenTK.Graphics.OpenGL.ExtCullVertex pname, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_cull_vertex] /// /// [length: 4] [AutoGenerated(Category = "EXT_cull_vertex", Version = "", EntryPoint = "glCullParameterfvEXT")] [CLSCompliant(false)] - public static void CullParameter(OpenTK.Graphics.OpenGL.ExtCullVertex pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void CullParameter(OpenTK.Graphics.OpenGL.ExtCullVertex pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_cull_vertex] /// /// [length: 4] [AutoGenerated(Category = "EXT_cull_vertex", Version = "", EntryPoint = "glCullParameterfvEXT")] [CLSCompliant(false)] - public static void CullParameter(OpenTK.Graphics.OpenGL.ExtCullVertex pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void CullParameter(OpenTK.Graphics.OpenGL.ExtCullVertex pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_cull_vertex] /// /// [length: 4] [AutoGenerated(Category = "EXT_cull_vertex", Version = "", EntryPoint = "glCullParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void CullParameter(OpenTK.Graphics.OpenGL.ExtCullVertex pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void CullParameter(OpenTK.Graphics.OpenGL.ExtCullVertex pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Delete framebuffer objects @@ -83475,7 +83475,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersEXT")] [CLSCompliant(false)] - public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] Int32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Delete framebuffer objects @@ -83485,7 +83485,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersEXT")] [CLSCompliant(false)] - public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] UInt32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Delete framebuffer objects @@ -83498,7 +83498,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersEXT")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Delete framebuffer objects @@ -83511,7 +83511,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersEXT")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Delete framebuffer objects @@ -83524,7 +83524,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersEXT")] [CLSCompliant(false)] - public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Delete framebuffer objects @@ -83537,7 +83537,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersEXT")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Delete framebuffer objects @@ -83550,7 +83550,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersEXT")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Delete framebuffer objects @@ -83563,61 +83563,61 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersEXT")] [CLSCompliant(false)] - public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObject([CountAttribute(Parameter = "n")] Int32 memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObject([CountAttribute(Parameter = "n")] Int32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObject([CountAttribute(Parameter = "n")] UInt32 memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObject([CountAttribute(Parameter = "n")] UInt32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] Int32[] memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] Int32[] memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static unsafe void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] Int32* memoryObjects) { throw new NotImplementedException(); } + public static unsafe void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] Int32* memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static unsafe void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] UInt32* memoryObjects) { throw new NotImplementedException(); } + public static unsafe void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] UInt32* memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -83627,7 +83627,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] Int32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -83637,7 +83637,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] UInt32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -83650,7 +83650,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -83663,7 +83663,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -83676,7 +83676,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32* pipelines) { throw new NotImplementedException(); } + public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -83689,7 +83689,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -83702,7 +83702,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -83715,7 +83715,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new NotImplementedException(); } + public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Delete renderbuffer objects @@ -83725,7 +83725,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersEXT")] [CLSCompliant(false)] - public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] Int32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Delete renderbuffer objects @@ -83735,7 +83735,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersEXT")] [CLSCompliant(false)] - public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Delete renderbuffer objects @@ -83748,7 +83748,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersEXT")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Delete renderbuffer objects @@ -83761,7 +83761,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersEXT")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Delete renderbuffer objects @@ -83774,7 +83774,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersEXT")] [CLSCompliant(false)] - public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Delete renderbuffer objects @@ -83787,7 +83787,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersEXT")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Delete renderbuffer objects @@ -83800,7 +83800,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersEXT")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Delete renderbuffer objects @@ -83813,61 +83813,61 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersEXT")] [CLSCompliant(false)] - public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphore([CountAttribute(Parameter = "count")] Int32 semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphore([CountAttribute(Parameter = "count")] Int32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphore([CountAttribute(Parameter = "count")] UInt32 semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphore([CountAttribute(Parameter = "count")] UInt32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] Int32[] semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] Int32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] ref Int32 semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] ref Int32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] Int32* semaphores) { throw new NotImplementedException(); } + public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] Int32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] UInt32[] semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] UInt32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] ref UInt32 semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] ref UInt32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] UInt32* semaphores) { throw new NotImplementedException(); } + public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] UInt32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Delete named textures @@ -83877,7 +83877,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glDeleteTexturesEXT")] [CLSCompliant(false)] - public static void DeleteTexture([CountAttribute(Parameter = "n")] Int32 textures) { throw new NotImplementedException(); } + public static void DeleteTexture([CountAttribute(Parameter = "n")] Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Delete named textures @@ -83887,7 +83887,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glDeleteTexturesEXT")] [CLSCompliant(false)] - public static void DeleteTexture([CountAttribute(Parameter = "n")] UInt32 textures) { throw new NotImplementedException(); } + public static void DeleteTexture([CountAttribute(Parameter = "n")] UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Delete named textures @@ -83900,7 +83900,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glDeleteTexturesEXT")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Delete named textures @@ -83913,7 +83913,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glDeleteTexturesEXT")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Delete named textures @@ -83926,7 +83926,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glDeleteTexturesEXT")] [CLSCompliant(false)] - public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures) { throw new NotImplementedException(); } + public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Delete named textures @@ -83939,7 +83939,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glDeleteTexturesEXT")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Delete named textures @@ -83952,7 +83952,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glDeleteTexturesEXT")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Delete named textures @@ -83965,53 +83965,53 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glDeleteTexturesEXT")] [CLSCompliant(false)] - public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures) { throw new NotImplementedException(); } + public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glDeleteVertexShaderEXT")] [CLSCompliant(false)] - public static void DeleteVertexShader(Int32 id) { throw new NotImplementedException(); } + public static void DeleteVertexShader(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glDeleteVertexShaderEXT")] [CLSCompliant(false)] - public static void DeleteVertexShader(UInt32 id) { throw new NotImplementedException(); } + public static void DeleteVertexShader(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_depth_bounds_test] /// /// [AutoGenerated(Category = "EXT_depth_bounds_test", Version = "", EntryPoint = "glDepthBoundsEXT")] - public static void DepthBounds(Double zmin, Double zmax) { throw new NotImplementedException(); } + public static void DepthBounds(Double zmin, Double zmax) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glDisableClientStateiEXT")] [CLSCompliant(false)] - public static void DisableClientState(OpenTK.Graphics.OpenGL.ArrayCap array, Int32 index) { throw new NotImplementedException(); } + public static void DisableClientState(OpenTK.Graphics.OpenGL.ArrayCap array, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glDisableClientStateiEXT")] [CLSCompliant(false)] - public static void DisableClientState(OpenTK.Graphics.OpenGL.ArrayCap array, UInt32 index) { throw new NotImplementedException(); } + public static void DisableClientState(OpenTK.Graphics.OpenGL.ArrayCap array, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glDisableClientStateIndexedEXT")] [CLSCompliant(false)] - public static void DisableClientStateIndexed(OpenTK.Graphics.OpenGL.ArrayCap array, Int32 index) { throw new NotImplementedException(); } + public static void DisableClientStateIndexed(OpenTK.Graphics.OpenGL.ArrayCap array, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glDisableClientStateIndexedEXT")] [CLSCompliant(false)] - public static void DisableClientStateIndexed(OpenTK.Graphics.OpenGL.ArrayCap array, UInt32 index) { throw new NotImplementedException(); } + public static void DisableClientStateIndexed(OpenTK.Graphics.OpenGL.ArrayCap array, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -84019,7 +84019,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ArrayCap overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glDisableClientStateIndexedEXT")] [CLSCompliant(false)] - public static void DisableClientStateIndexed(OpenTK.Graphics.OpenGL.EnableCap array, Int32 index) { throw new NotImplementedException(); } + public static void DisableClientStateIndexed(OpenTK.Graphics.OpenGL.EnableCap array, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -84027,7 +84027,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ArrayCap overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glDisableClientStateIndexedEXT")] [CLSCompliant(false)] - public static void DisableClientStateIndexed(OpenTK.Graphics.OpenGL.EnableCap array, UInt32 index) { throw new NotImplementedException(); } + public static void DisableClientStateIndexed(OpenTK.Graphics.OpenGL.EnableCap array, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -84035,7 +84035,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use IndexedEnableCap overload instead")] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glDisableIndexedEXT")] [CLSCompliant(false)] - public static void DisableIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, Int32 index) { throw new NotImplementedException(); } + public static void DisableIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -84043,61 +84043,61 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use IndexedEnableCap overload instead")] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glDisableIndexedEXT")] [CLSCompliant(false)] - public static void DisableIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, UInt32 index) { throw new NotImplementedException(); } + public static void DisableIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glDisableIndexedEXT")] [CLSCompliant(false)] - public static void DisableIndexed(OpenTK.Graphics.OpenGL.IndexedEnableCap target, Int32 index) { throw new NotImplementedException(); } + public static void DisableIndexed(OpenTK.Graphics.OpenGL.IndexedEnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glDisableIndexedEXT")] [CLSCompliant(false)] - public static void DisableIndexed(OpenTK.Graphics.OpenGL.IndexedEnableCap target, UInt32 index) { throw new NotImplementedException(); } + public static void DisableIndexed(OpenTK.Graphics.OpenGL.IndexedEnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glDisableVariantClientStateEXT")] [CLSCompliant(false)] - public static void DisableVariantClientState(Int32 id) { throw new NotImplementedException(); } + public static void DisableVariantClientState(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glDisableVariantClientStateEXT")] [CLSCompliant(false)] - public static void DisableVariantClientState(UInt32 id) { throw new NotImplementedException(); } + public static void DisableVariantClientState(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glDisableVertexArrayAttribEXT")] [CLSCompliant(false)] - public static void DisableVertexArrayAttrib(Int32 vaobj, Int32 index) { throw new NotImplementedException(); } + public static void DisableVertexArrayAttrib(Int32 vaobj, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glDisableVertexArrayAttribEXT")] [CLSCompliant(false)] - public static void DisableVertexArrayAttrib(UInt32 vaobj, UInt32 index) { throw new NotImplementedException(); } + public static void DisableVertexArrayAttrib(UInt32 vaobj, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glDisableVertexArrayEXT")] [CLSCompliant(false)] - public static void DisableVertexArray(Int32 vaobj, OpenTK.Graphics.OpenGL.EnableCap array) { throw new NotImplementedException(); } + public static void DisableVertexArray(Int32 vaobj, OpenTK.Graphics.OpenGL.EnableCap array) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glDisableVertexArrayEXT")] [CLSCompliant(false)] - public static void DisableVertexArray(UInt32 vaobj, OpenTK.Graphics.OpenGL.EnableCap array) { throw new NotImplementedException(); } + public static void DisableVertexArray(UInt32 vaobj, OpenTK.Graphics.OpenGL.EnableCap array) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Render primitives from array data @@ -84113,7 +84113,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glDrawArraysEXT")] - public static void DrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 first, Int32 count) { throw new NotImplementedException(); } + public static void DrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Render primitives from array data @@ -84128,7 +84128,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the number of indices to be rendered. /// [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glDrawArraysEXT")] - public static void DrawArrays(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 first, Int32 count) { throw new NotImplementedException(); } + public static void DrawArrays(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced] /// Draw multiple instances of a range of elements @@ -84147,7 +84147,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "EXT_draw_instanced", Version = "", EntryPoint = "glDrawArraysInstancedEXT")] - public static void DrawArraysInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced] /// Draw multiple instances of a range of elements @@ -84165,7 +84165,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "EXT_draw_instanced", Version = "", EntryPoint = "glDrawArraysInstancedEXT")] - public static void DrawArraysInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced] /// Draw multiple instances of a set of elements @@ -84187,7 +84187,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "EXT_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] - public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced] /// Draw multiple instances of a set of elements @@ -84212,7 +84212,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced] /// Draw multiple instances of a set of elements @@ -84237,7 +84237,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced] /// Draw multiple instances of a set of elements @@ -84262,7 +84262,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced] /// Draw multiple instances of a set of elements @@ -84286,7 +84286,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced] /// Draw multiple instances of a set of elements @@ -84307,7 +84307,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "EXT_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] - public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced] /// Draw multiple instances of a set of elements @@ -84331,7 +84331,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced] /// Draw multiple instances of a set of elements @@ -84355,7 +84355,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced] /// Draw multiple instances of a set of elements @@ -84379,7 +84379,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced] /// Draw multiple instances of a set of elements @@ -84402,7 +84402,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_range_elements] /// Render primitives from array data @@ -84428,7 +84428,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "EXT_draw_range_elements", Version = "", EntryPoint = "glDrawRangeElementsEXT")] [CLSCompliant(false)] - public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_range_elements] /// Render primitives from array data @@ -84456,7 +84456,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_range_elements] /// Render primitives from array data @@ -84484,7 +84484,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_range_elements] /// Render primitives from array data @@ -84512,7 +84512,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_range_elements] /// Render primitives from array data @@ -84540,7 +84540,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_range_elements] /// Render primitives from array data @@ -84566,7 +84566,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "EXT_draw_range_elements", Version = "", EntryPoint = "glDrawRangeElementsEXT")] [CLSCompliant(false)] - public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_range_elements] /// Render primitives from array data @@ -84594,7 +84594,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_range_elements] /// Render primitives from array data @@ -84622,7 +84622,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_range_elements] /// Render primitives from array data @@ -84650,7 +84650,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_range_elements] /// Render primitives from array data @@ -84678,7 +84678,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_range_elements] /// Render primitives from array data @@ -84703,7 +84703,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_draw_range_elements", Version = "", EntryPoint = "glDrawRangeElementsEXT")] [CLSCompliant(false)] - public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_range_elements] /// Render primitives from array data @@ -84730,7 +84730,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_range_elements] /// Render primitives from array data @@ -84757,7 +84757,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_range_elements] /// Render primitives from array data @@ -84784,7 +84784,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_range_elements] /// Render primitives from array data @@ -84811,7 +84811,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_range_elements] /// Render primitives from array data @@ -84836,7 +84836,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_draw_range_elements", Version = "", EntryPoint = "glDrawRangeElementsEXT")] [CLSCompliant(false)] - public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_range_elements] /// Render primitives from array data @@ -84863,7 +84863,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_range_elements] /// Render primitives from array data @@ -84890,7 +84890,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_range_elements] /// Render primitives from array data @@ -84917,7 +84917,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_range_elements] /// Render primitives from array data @@ -84944,7 +84944,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of edge flags @@ -84960,7 +84960,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glEdgeFlagPointerEXT")] [CLSCompliant(false)] - public static void EdgeFlagPointer(Int32 stride, Int32 count, [CountAttribute(Computed = "stride,count")] bool[] pointer) { throw new NotImplementedException(); } + public static void EdgeFlagPointer(Int32 stride, Int32 count, [CountAttribute(Computed = "stride,count")] bool[] pointer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of edge flags @@ -84976,7 +84976,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glEdgeFlagPointerEXT")] [CLSCompliant(false)] - public static void EdgeFlagPointer(Int32 stride, Int32 count, [CountAttribute(Computed = "stride,count")] ref bool pointer) { throw new NotImplementedException(); } + public static void EdgeFlagPointer(Int32 stride, Int32 count, [CountAttribute(Computed = "stride,count")] ref bool pointer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of edge flags @@ -84992,7 +84992,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glEdgeFlagPointerEXT")] [CLSCompliant(false)] - public static unsafe void EdgeFlagPointer(Int32 stride, Int32 count, [CountAttribute(Computed = "stride,count")] bool* pointer) { throw new NotImplementedException(); } + public static unsafe void EdgeFlagPointer(Int32 stride, Int32 count, [CountAttribute(Computed = "stride,count")] bool* pointer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Enable or disable client-side capability @@ -85003,7 +85003,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glEnableClientStateiEXT")] [CLSCompliant(false)] - public static void EnableClientState(OpenTK.Graphics.OpenGL.ArrayCap array, Int32 index) { throw new NotImplementedException(); } + public static void EnableClientState(OpenTK.Graphics.OpenGL.ArrayCap array, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Enable or disable client-side capability @@ -85014,21 +85014,21 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glEnableClientStateiEXT")] [CLSCompliant(false)] - public static void EnableClientState(OpenTK.Graphics.OpenGL.ArrayCap array, UInt32 index) { throw new NotImplementedException(); } + public static void EnableClientState(OpenTK.Graphics.OpenGL.ArrayCap array, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glEnableClientStateIndexedEXT")] [CLSCompliant(false)] - public static void EnableClientStateIndexed(OpenTK.Graphics.OpenGL.ArrayCap array, Int32 index) { throw new NotImplementedException(); } + public static void EnableClientStateIndexed(OpenTK.Graphics.OpenGL.ArrayCap array, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glEnableClientStateIndexedEXT")] [CLSCompliant(false)] - public static void EnableClientStateIndexed(OpenTK.Graphics.OpenGL.ArrayCap array, UInt32 index) { throw new NotImplementedException(); } + public static void EnableClientStateIndexed(OpenTK.Graphics.OpenGL.ArrayCap array, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -85036,7 +85036,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ArrayCap overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glEnableClientStateIndexedEXT")] [CLSCompliant(false)] - public static void EnableClientStateIndexed(OpenTK.Graphics.OpenGL.EnableCap array, Int32 index) { throw new NotImplementedException(); } + public static void EnableClientStateIndexed(OpenTK.Graphics.OpenGL.EnableCap array, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -85044,7 +85044,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ArrayCap overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glEnableClientStateIndexedEXT")] [CLSCompliant(false)] - public static void EnableClientStateIndexed(OpenTK.Graphics.OpenGL.EnableCap array, UInt32 index) { throw new NotImplementedException(); } + public static void EnableClientStateIndexed(OpenTK.Graphics.OpenGL.EnableCap array, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -85052,7 +85052,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use IndexedEnableCap overload instead")] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glEnableIndexedEXT")] [CLSCompliant(false)] - public static void EnableIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, Int32 index) { throw new NotImplementedException(); } + public static void EnableIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -85060,69 +85060,69 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use IndexedEnableCap overload instead")] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glEnableIndexedEXT")] [CLSCompliant(false)] - public static void EnableIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, UInt32 index) { throw new NotImplementedException(); } + public static void EnableIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glEnableIndexedEXT")] [CLSCompliant(false)] - public static void EnableIndexed(OpenTK.Graphics.OpenGL.IndexedEnableCap target, Int32 index) { throw new NotImplementedException(); } + public static void EnableIndexed(OpenTK.Graphics.OpenGL.IndexedEnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glEnableIndexedEXT")] [CLSCompliant(false)] - public static void EnableIndexed(OpenTK.Graphics.OpenGL.IndexedEnableCap target, UInt32 index) { throw new NotImplementedException(); } + public static void EnableIndexed(OpenTK.Graphics.OpenGL.IndexedEnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glEnableVariantClientStateEXT")] [CLSCompliant(false)] - public static void EnableVariantClientState(Int32 id) { throw new NotImplementedException(); } + public static void EnableVariantClientState(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glEnableVariantClientStateEXT")] [CLSCompliant(false)] - public static void EnableVariantClientState(UInt32 id) { throw new NotImplementedException(); } + public static void EnableVariantClientState(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glEnableVertexArrayAttribEXT")] [CLSCompliant(false)] - public static void EnableVertexArrayAttrib(Int32 vaobj, Int32 index) { throw new NotImplementedException(); } + public static void EnableVertexArrayAttrib(Int32 vaobj, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glEnableVertexArrayAttribEXT")] [CLSCompliant(false)] - public static void EnableVertexArrayAttrib(UInt32 vaobj, UInt32 index) { throw new NotImplementedException(); } + public static void EnableVertexArrayAttrib(UInt32 vaobj, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glEnableVertexArrayEXT")] [CLSCompliant(false)] - public static void EnableVertexArray(Int32 vaobj, OpenTK.Graphics.OpenGL.EnableCap array) { throw new NotImplementedException(); } + public static void EnableVertexArray(Int32 vaobj, OpenTK.Graphics.OpenGL.EnableCap array) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glEnableVertexArrayEXT")] [CLSCompliant(false)] - public static void EnableVertexArray(UInt32 vaobj, OpenTK.Graphics.OpenGL.EnableCap array) { throw new NotImplementedException(); } + public static void EnableVertexArray(UInt32 vaobj, OpenTK.Graphics.OpenGL.EnableCap array) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glEndTransformFeedbackEXT")] - public static void EndTransformFeedback() { throw new NotImplementedException(); } + public static void EndTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glEndVertexShaderEXT")] - public static void EndVertexShader() { throw new NotImplementedException(); } + public static void EndVertexShader() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -85130,7 +85130,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glExtractComponentEXT")] [CLSCompliant(false)] - public static void ExtractComponent(Int32 res, Int32 src, Int32 num) { throw new NotImplementedException(); } + public static void ExtractComponent(Int32 res, Int32 src, Int32 num) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -85138,7 +85138,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glExtractComponentEXT")] [CLSCompliant(false)] - public static void ExtractComponent(UInt32 res, UInt32 src, UInt32 num) { throw new NotImplementedException(); } + public static void ExtractComponent(UInt32 res, UInt32 src, UInt32 num) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -85146,7 +85146,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFlushMappedNamedBufferRangeEXT")] [CLSCompliant(false)] - public static void FlushMappedNamedBufferRange(Int32 buffer, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void FlushMappedNamedBufferRange(Int32 buffer, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -85154,7 +85154,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFlushMappedNamedBufferRangeEXT")] [CLSCompliant(false)] - public static void FlushMappedNamedBufferRange(Int32 buffer, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void FlushMappedNamedBufferRange(Int32 buffer, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -85162,7 +85162,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFlushMappedNamedBufferRangeEXT")] [CLSCompliant(false)] - public static void FlushMappedNamedBufferRange(UInt32 buffer, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void FlushMappedNamedBufferRange(UInt32 buffer, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -85170,7 +85170,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFlushMappedNamedBufferRangeEXT")] [CLSCompliant(false)] - public static void FlushMappedNamedBufferRange(UInt32 buffer, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void FlushMappedNamedBufferRange(UInt32 buffer, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_fog_coord] /// Set the current fog coordinates @@ -85179,7 +85179,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the fog distance. /// [AutoGenerated(Category = "EXT_fog_coord", Version = "", EntryPoint = "glFogCoorddEXT")] - public static void FogCoord(Double coord) { throw new NotImplementedException(); } + public static void FogCoord(Double coord) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_fog_coord] /// Set the current fog coordinates @@ -85189,7 +85189,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_fog_coord", Version = "", EntryPoint = "glFogCoorddvEXT")] [CLSCompliant(false)] - public static unsafe void FogCoord([CountAttribute(Count = 1)] Double* coord) { throw new NotImplementedException(); } + public static unsafe void FogCoord([CountAttribute(Count = 1)] Double* coord) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_fog_coord] /// Set the current fog coordinates @@ -85198,7 +85198,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the fog distance. /// [AutoGenerated(Category = "EXT_fog_coord", Version = "", EntryPoint = "glFogCoordfEXT")] - public static void FogCoord(Single coord) { throw new NotImplementedException(); } + public static void FogCoord(Single coord) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_fog_coord] /// Set the current fog coordinates @@ -85208,7 +85208,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_fog_coord", Version = "", EntryPoint = "glFogCoordfvEXT")] [CLSCompliant(false)] - public static unsafe void FogCoord([CountAttribute(Count = 1)] Single* coord) { throw new NotImplementedException(); } + public static unsafe void FogCoord([CountAttribute(Count = 1)] Single* coord) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_fog_coord] /// Define an array of fog coordinates @@ -85224,7 +85224,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use FogPointerTypeExt overload instead")] [AutoGenerated(Category = "EXT_fog_coord", Version = "", EntryPoint = "glFogCoordPointerEXT")] - public static void FogCoordPointer(OpenTK.Graphics.OpenGL.ExtFogCoord type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void FogCoordPointer(OpenTK.Graphics.OpenGL.ExtFogCoord type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_fog_coord] /// Define an array of fog coordinates @@ -85243,7 +85243,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void FogCoordPointer(OpenTK.Graphics.OpenGL.ExtFogCoord type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_fog_coord] /// Define an array of fog coordinates @@ -85262,7 +85262,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void FogCoordPointer(OpenTK.Graphics.OpenGL.ExtFogCoord type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_fog_coord] /// Define an array of fog coordinates @@ -85281,7 +85281,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void FogCoordPointer(OpenTK.Graphics.OpenGL.ExtFogCoord type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_fog_coord] /// Define an array of fog coordinates @@ -85299,7 +85299,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_fog_coord", Version = "", EntryPoint = "glFogCoordPointerEXT")] public static void FogCoordPointer(OpenTK.Graphics.OpenGL.ExtFogCoord type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_fog_coord] /// Define an array of fog coordinates @@ -85314,7 +85314,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the first coordinate of the first fog coordinate in the array. The initial value is 0. /// [AutoGenerated(Category = "EXT_fog_coord", Version = "", EntryPoint = "glFogCoordPointerEXT")] - public static void FogCoordPointer(OpenTK.Graphics.OpenGL.FogPointerTypeExt type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void FogCoordPointer(OpenTK.Graphics.OpenGL.FogPointerTypeExt type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_fog_coord] /// Define an array of fog coordinates @@ -85332,7 +85332,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void FogCoordPointer(OpenTK.Graphics.OpenGL.FogPointerTypeExt type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_fog_coord] /// Define an array of fog coordinates @@ -85350,7 +85350,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void FogCoordPointer(OpenTK.Graphics.OpenGL.FogPointerTypeExt type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_fog_coord] /// Define an array of fog coordinates @@ -85368,7 +85368,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void FogCoordPointer(OpenTK.Graphics.OpenGL.FogPointerTypeExt type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_fog_coord] /// Define an array of fog coordinates @@ -85385,21 +85385,21 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_fog_coord", Version = "", EntryPoint = "glFogCoordPointerEXT")] public static void FogCoordPointer(OpenTK.Graphics.OpenGL.FogPointerTypeExt type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferDrawBufferEXT")] [CLSCompliant(false)] - public static void FramebufferDrawBuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.DrawBufferMode mode) { throw new NotImplementedException(); } + public static void FramebufferDrawBuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.DrawBufferMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferDrawBufferEXT")] [CLSCompliant(false)] - public static void FramebufferDrawBuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.DrawBufferMode mode) { throw new NotImplementedException(); } + public static void FramebufferDrawBuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.DrawBufferMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -85407,7 +85407,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferDrawBuffersEXT")] [CLSCompliant(false)] - public static void FramebufferDrawBuffers(Int32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL.DrawBufferMode[] bufs) { throw new NotImplementedException(); } + public static void FramebufferDrawBuffers(Int32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL.DrawBufferMode[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -85415,7 +85415,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferDrawBuffersEXT")] [CLSCompliant(false)] - public static void FramebufferDrawBuffers(Int32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.OpenGL.DrawBufferMode bufs) { throw new NotImplementedException(); } + public static void FramebufferDrawBuffers(Int32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.OpenGL.DrawBufferMode bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -85423,7 +85423,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferDrawBuffersEXT")] [CLSCompliant(false)] - public static unsafe void FramebufferDrawBuffers(Int32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL.DrawBufferMode* bufs) { throw new NotImplementedException(); } + public static unsafe void FramebufferDrawBuffers(Int32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL.DrawBufferMode* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -85431,7 +85431,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferDrawBuffersEXT")] [CLSCompliant(false)] - public static void FramebufferDrawBuffers(UInt32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL.DrawBufferMode[] bufs) { throw new NotImplementedException(); } + public static void FramebufferDrawBuffers(UInt32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL.DrawBufferMode[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -85439,7 +85439,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferDrawBuffersEXT")] [CLSCompliant(false)] - public static void FramebufferDrawBuffers(UInt32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.OpenGL.DrawBufferMode bufs) { throw new NotImplementedException(); } + public static void FramebufferDrawBuffers(UInt32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.OpenGL.DrawBufferMode bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -85447,21 +85447,21 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferDrawBuffersEXT")] [CLSCompliant(false)] - public static unsafe void FramebufferDrawBuffers(UInt32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL.DrawBufferMode* bufs) { throw new NotImplementedException(); } + public static unsafe void FramebufferDrawBuffers(UInt32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL.DrawBufferMode* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferReadBufferEXT")] [CLSCompliant(false)] - public static void FramebufferReadBuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.ReadBufferMode mode) { throw new NotImplementedException(); } + public static void FramebufferReadBuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.ReadBufferMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferReadBufferEXT")] [CLSCompliant(false)] - public static void FramebufferReadBuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ReadBufferMode mode) { throw new NotImplementedException(); } + public static void FramebufferReadBuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ReadBufferMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Attach a renderbuffer as a logical buffer to the currently bound framebuffer object @@ -85480,7 +85480,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glFramebufferRenderbufferEXT")] [CLSCompliant(false)] - public static void FramebufferRenderbuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new NotImplementedException(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Attach a renderbuffer as a logical buffer to the currently bound framebuffer object @@ -85499,7 +85499,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glFramebufferRenderbufferEXT")] [CLSCompliant(false)] - public static void FramebufferRenderbuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// @@ -85509,7 +85509,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glFramebufferTexture1DEXT")] [CLSCompliant(false)] - public static void FramebufferTexture1D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture1D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// @@ -85519,7 +85519,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glFramebufferTexture1DEXT")] [CLSCompliant(false)] - public static void FramebufferTexture1D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture1D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// @@ -85529,7 +85529,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glFramebufferTexture2DEXT")] [CLSCompliant(false)] - public static void FramebufferTexture2D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture2D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// @@ -85539,7 +85539,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glFramebufferTexture2DEXT")] [CLSCompliant(false)] - public static void FramebufferTexture2D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture2D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// @@ -85550,7 +85550,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glFramebufferTexture3DEXT")] [CLSCompliant(false)] - public static void FramebufferTexture3D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, Int32 texture, Int32 level, Int32 zoffset) { throw new NotImplementedException(); } + public static void FramebufferTexture3D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, Int32 texture, Int32 level, Int32 zoffset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// @@ -85561,7 +85561,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glFramebufferTexture3DEXT")] [CLSCompliant(false)] - public static void FramebufferTexture3D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level, Int32 zoffset) { throw new NotImplementedException(); } + public static void FramebufferTexture3D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level, Int32 zoffset) { throw new BindingsNotRewrittenException(); } /// [requires: NV_geometry_program4] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -85580,7 +85580,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_geometry_program4", Version = "", EntryPoint = "glFramebufferTextureEXT")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: NV_geometry_program4] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -85599,7 +85599,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_geometry_program4", Version = "", EntryPoint = "glFramebufferTextureEXT")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: NV_geometry_program4] /// @@ -85609,7 +85609,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_geometry_program4", Version = "", EntryPoint = "glFramebufferTextureFaceEXT")] [CLSCompliant(false)] - public static void FramebufferTextureFace(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.TextureTarget face) { throw new NotImplementedException(); } + public static void FramebufferTextureFace(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.TextureTarget face) { throw new BindingsNotRewrittenException(); } /// [requires: NV_geometry_program4] /// @@ -85619,7 +85619,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_geometry_program4", Version = "", EntryPoint = "glFramebufferTextureFaceEXT")] [CLSCompliant(false)] - public static void FramebufferTextureFace(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.TextureTarget face) { throw new NotImplementedException(); } + public static void FramebufferTextureFace(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.TextureTarget face) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_array|NV_geometry_program4] /// Attach a single layer of a texture to a framebuffer @@ -85641,7 +85641,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_array|NV_geometry_program4", Version = "", EntryPoint = "glFramebufferTextureLayerEXT")] [CLSCompliant(false)] - public static void FramebufferTextureLayer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } + public static void FramebufferTextureLayer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_array|NV_geometry_program4] /// Attach a single layer of a texture to a framebuffer @@ -85663,7 +85663,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_array|NV_geometry_program4", Version = "", EntryPoint = "glFramebufferTextureLayerEXT")] [CLSCompliant(false)] - public static void FramebufferTextureLayer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } + public static void FramebufferTextureLayer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Generate mipmaps for a specified texture target @@ -85672,34 +85672,34 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the target to which the texture whose mimaps to generate is bound. target must be Texture1D, Texture2D, Texture3D, Texture1DArray, Texture2DArray or TextureCubeMap. /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenerateMipmapEXT")] - public static void GenerateMipmap(OpenTK.Graphics.OpenGL.GenerateMipmapTarget target) { throw new NotImplementedException(); } + public static void GenerateMipmap(OpenTK.Graphics.OpenGL.GenerateMipmapTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGenerateMultiTexMipmapEXT")] - public static void GenerateMultiTexMipmap(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target) { throw new NotImplementedException(); } + public static void GenerateMultiTexMipmap(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGenerateTextureMipmapEXT")] [CLSCompliant(false)] - public static void GenerateTextureMipmap(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target) { throw new NotImplementedException(); } + public static void GenerateTextureMipmap(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGenerateTextureMipmapEXT")] [CLSCompliant(false)] - public static void GenerateTextureMipmap(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target) { throw new NotImplementedException(); } + public static void GenerateTextureMipmap(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Generate framebuffer object names /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersEXT")] [CLSCompliant(false)] - public static Int32 GenFramebuffer() { throw new NotImplementedException(); } + public static Int32 GenFramebuffer() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Generate framebuffer object names @@ -85712,7 +85712,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersEXT")] [CLSCompliant(false)] - public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Generate framebuffer object names @@ -85725,7 +85725,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersEXT")] [CLSCompliant(false)] - public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Generate framebuffer object names @@ -85738,7 +85738,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersEXT")] [CLSCompliant(false)] - public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Generate framebuffer object names @@ -85751,7 +85751,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersEXT")] [CLSCompliant(false)] - public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Generate framebuffer object names @@ -85764,7 +85764,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersEXT")] [CLSCompliant(false)] - public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Generate framebuffer object names @@ -85777,14 +85777,14 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersEXT")] [CLSCompliant(false)] - public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static Int32 GenProgramPipeline() { throw new NotImplementedException(); } + public static Int32 GenProgramPipeline() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -85797,7 +85797,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -85810,7 +85810,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -85823,7 +85823,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* pipelines) { throw new NotImplementedException(); } + public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -85836,7 +85836,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -85849,7 +85849,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -85862,14 +85862,14 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new NotImplementedException(); } + public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Generate renderbuffer object names /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersEXT")] [CLSCompliant(false)] - public static Int32 GenRenderbuffer() { throw new NotImplementedException(); } + public static Int32 GenRenderbuffer() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Generate renderbuffer object names @@ -85882,7 +85882,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersEXT")] [CLSCompliant(false)] - public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Generate renderbuffer object names @@ -85895,7 +85895,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersEXT")] [CLSCompliant(false)] - public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Generate renderbuffer object names @@ -85908,7 +85908,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersEXT")] [CLSCompliant(false)] - public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Generate renderbuffer object names @@ -85921,7 +85921,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersEXT")] [CLSCompliant(false)] - public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Generate renderbuffer object names @@ -85934,7 +85934,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersEXT")] [CLSCompliant(false)] - public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Generate renderbuffer object names @@ -85947,54 +85947,54 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersEXT")] [CLSCompliant(false)] - public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static Int32 GenSemaphore() { throw new NotImplementedException(); } + public static Int32 GenSemaphore() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] semaphores) { throw new NotImplementedException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 semaphores) { throw new NotImplementedException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] Int32* semaphores) { throw new NotImplementedException(); } + public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] Int32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] semaphores) { throw new NotImplementedException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 semaphores) { throw new NotImplementedException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* semaphores) { throw new NotImplementedException(); } + public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -86003,7 +86003,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGenSymbolsEXT")] [CLSCompliant(false)] - public static Int32 GenSymbol(OpenTK.Graphics.OpenGL.ExtVertexShader datatype, OpenTK.Graphics.OpenGL.ExtVertexShader storagetype, OpenTK.Graphics.OpenGL.ExtVertexShader range, Int32 components) { throw new NotImplementedException(); } + public static Int32 GenSymbol(OpenTK.Graphics.OpenGL.ExtVertexShader datatype, OpenTK.Graphics.OpenGL.ExtVertexShader storagetype, OpenTK.Graphics.OpenGL.ExtVertexShader range, Int32 components) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -86012,14 +86012,14 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGenSymbolsEXT")] [CLSCompliant(false)] - public static Int32 GenSymbol(OpenTK.Graphics.OpenGL.ExtVertexShader datatype, OpenTK.Graphics.OpenGL.ExtVertexShader storagetype, OpenTK.Graphics.OpenGL.ExtVertexShader range, UInt32 components) { throw new NotImplementedException(); } + public static Int32 GenSymbol(OpenTK.Graphics.OpenGL.ExtVertexShader datatype, OpenTK.Graphics.OpenGL.ExtVertexShader storagetype, OpenTK.Graphics.OpenGL.ExtVertexShader range, UInt32 components) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Generate texture names /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glGenTexturesEXT")] [CLSCompliant(false)] - public static Int32 GenTexture() { throw new NotImplementedException(); } + public static Int32 GenTexture() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Generate texture names @@ -86032,7 +86032,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glGenTexturesEXT")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Generate texture names @@ -86045,7 +86045,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glGenTexturesEXT")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Generate texture names @@ -86058,7 +86058,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glGenTexturesEXT")] [CLSCompliant(false)] - public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* textures) { throw new NotImplementedException(); } + public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Generate texture names @@ -86071,7 +86071,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glGenTexturesEXT")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Generate texture names @@ -86084,7 +86084,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glGenTexturesEXT")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Generate texture names @@ -86097,19 +86097,19 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glGenTexturesEXT")] [CLSCompliant(false)] - public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* textures) { throw new NotImplementedException(); } + public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGenVertexShadersEXT")] [CLSCompliant(false)] - public static Int32 GenVertexShaders(Int32 range) { throw new NotImplementedException(); } + public static Int32 GenVertexShaders(Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGenVertexShadersEXT")] [CLSCompliant(false)] - public static Int32 GenVertexShaders(UInt32 range) { throw new NotImplementedException(); } + public static Int32 GenVertexShaders(UInt32 range) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -86117,7 +86117,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] [CLSCompliant(false)] - public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new NotImplementedException(); } + public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -86125,7 +86125,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] [CLSCompliant(false)] - public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new NotImplementedException(); } + public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -86133,7 +86133,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetBooleanIndexed(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBooleanIndexed(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -86141,7 +86141,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] [CLSCompliant(false)] - public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new NotImplementedException(); } + public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -86149,7 +86149,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] [CLSCompliant(false)] - public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new NotImplementedException(); } + public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -86157,7 +86157,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetBooleanIndexed(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBooleanIndexed(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -86166,7 +86166,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] [CLSCompliant(false)] - public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new NotImplementedException(); } + public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -86175,7 +86175,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] [CLSCompliant(false)] - public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new NotImplementedException(); } + public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -86184,7 +86184,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetBooleanIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBooleanIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -86193,7 +86193,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] [CLSCompliant(false)] - public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new NotImplementedException(); } + public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -86202,7 +86202,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] [CLSCompliant(false)] - public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new NotImplementedException(); } + public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -86211,7 +86211,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetBooleanIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBooleanIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_paletted_texture] /// Retrieve contents of a color lookup table @@ -86229,7 +86229,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a one-dimensional array of pixel data containing the contents of the color table. /// [AutoGenerated(Category = "EXT_paletted_texture", Version = "", EntryPoint = "glGetColorTableEXT")] - public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_paletted_texture] /// Retrieve contents of a color lookup table @@ -86250,7 +86250,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_paletted_texture] /// Retrieve contents of a color lookup table @@ -86271,7 +86271,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_paletted_texture] /// Retrieve contents of a color lookup table @@ -86292,7 +86292,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_paletted_texture] /// Retrieve contents of a color lookup table @@ -86312,7 +86312,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_paletted_texture", Version = "", EntryPoint = "glGetColorTableEXT")] public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_paletted_texture] /// Get color lookup table parameters @@ -86328,7 +86328,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_paletted_texture", Version = "", EntryPoint = "glGetColorTableParameterfvEXT")] [CLSCompliant(false)] - public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_paletted_texture] /// Get color lookup table parameters @@ -86344,7 +86344,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_paletted_texture", Version = "", EntryPoint = "glGetColorTableParameterfvEXT")] [CLSCompliant(false)] - public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_paletted_texture] /// Get color lookup table parameters @@ -86360,7 +86360,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_paletted_texture", Version = "", EntryPoint = "glGetColorTableParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_paletted_texture] /// Get color lookup table parameters @@ -86376,7 +86376,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_paletted_texture", Version = "", EntryPoint = "glGetColorTableParameterivEXT")] [CLSCompliant(false)] - public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_paletted_texture] /// Get color lookup table parameters @@ -86392,7 +86392,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_paletted_texture", Version = "", EntryPoint = "glGetColorTableParameterivEXT")] [CLSCompliant(false)] - public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_paletted_texture] /// Get color lookup table parameters @@ -86408,7 +86408,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_paletted_texture", Version = "", EntryPoint = "glGetColorTableParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86416,7 +86416,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: COMPSIZE(target,lod)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetCompressedMultiTexImageEXT")] - public static void GetCompressedMultiTexImage(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [OutAttribute, CountAttribute(Computed = "target,lod")] IntPtr img) { throw new NotImplementedException(); } + public static void GetCompressedMultiTexImage(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [OutAttribute, CountAttribute(Computed = "target,lod")] IntPtr img) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86427,7 +86427,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedMultiTexImage(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] T3[] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86438,7 +86438,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedMultiTexImage(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] T3[,] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86449,7 +86449,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedMultiTexImage(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] T3[,,] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86459,7 +86459,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetCompressedMultiTexImageEXT")] public static void GetCompressedMultiTexImage(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] ref T3 img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86468,7 +86468,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,lod)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetCompressedTextureImageEXT")] [CLSCompliant(false)] - public static void GetCompressedTextureImage(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [OutAttribute, CountAttribute(Computed = "target,lod")] IntPtr img) { throw new NotImplementedException(); } + public static void GetCompressedTextureImage(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [OutAttribute, CountAttribute(Computed = "target,lod")] IntPtr img) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86479,7 +86479,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureImage(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] T3[] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86490,7 +86490,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureImage(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] T3[,] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86501,7 +86501,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureImage(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] T3[,,] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86512,7 +86512,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureImage(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] ref T3 img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86521,7 +86521,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,lod)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetCompressedTextureImageEXT")] [CLSCompliant(false)] - public static void GetCompressedTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [OutAttribute, CountAttribute(Computed = "target,lod")] IntPtr img) { throw new NotImplementedException(); } + public static void GetCompressedTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [OutAttribute, CountAttribute(Computed = "target,lod")] IntPtr img) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86532,7 +86532,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] T3[] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86543,7 +86543,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] T3[,] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86554,7 +86554,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] T3[,,] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86565,7 +86565,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] ref T3 img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get current 1D or 2D convolution filter kernel @@ -86583,7 +86583,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to storage for the output image. /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetConvolutionFilterEXT")] - public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr image) { throw new NotImplementedException(); } + public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get current 1D or 2D convolution filter kernel @@ -86604,7 +86604,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[] image) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get current 1D or 2D convolution filter kernel @@ -86625,7 +86625,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,] image) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get current 1D or 2D convolution filter kernel @@ -86646,7 +86646,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,,] image) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get current 1D or 2D convolution filter kernel @@ -86666,7 +86666,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetConvolutionFilterEXT")] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T3 image) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get current 1D or 2D convolution filter kernel @@ -86685,7 +86685,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetConvolutionFilterEXT")] - public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr image) { throw new NotImplementedException(); } + public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get current 1D or 2D convolution filter kernel @@ -86707,7 +86707,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[] image) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get current 1D or 2D convolution filter kernel @@ -86729,7 +86729,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,] image) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get current 1D or 2D convolution filter kernel @@ -86751,7 +86751,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,,] image) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get current 1D or 2D convolution filter kernel @@ -86772,7 +86772,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetConvolutionFilterEXT")] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T3 image) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get convolution parameters @@ -86788,7 +86788,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetConvolutionParameterfvEXT")] [CLSCompliant(false)] - public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get convolution parameters @@ -86804,7 +86804,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetConvolutionParameterfvEXT")] [CLSCompliant(false)] - public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get convolution parameters @@ -86820,7 +86820,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetConvolutionParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get convolution parameters @@ -86837,7 +86837,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetConvolutionParameterfvEXT")] [CLSCompliant(false)] - public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get convolution parameters @@ -86854,7 +86854,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetConvolutionParameterfvEXT")] [CLSCompliant(false)] - public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get convolution parameters @@ -86871,7 +86871,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetConvolutionParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get convolution parameters @@ -86887,7 +86887,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetConvolutionParameterivEXT")] [CLSCompliant(false)] - public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get convolution parameters @@ -86903,7 +86903,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetConvolutionParameterivEXT")] [CLSCompliant(false)] - public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get convolution parameters @@ -86919,7 +86919,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetConvolutionParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get convolution parameters @@ -86936,7 +86936,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetConvolutionParameterivEXT")] [CLSCompliant(false)] - public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get convolution parameters @@ -86953,7 +86953,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetConvolutionParameterivEXT")] [CLSCompliant(false)] - public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get convolution parameters @@ -86970,7 +86970,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetConvolutionParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86978,7 +86978,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoublei_vEXT")] [CLSCompliant(false)] - public static void GetDouble(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new NotImplementedException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86986,7 +86986,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoublei_vEXT")] [CLSCompliant(false)] - public static void GetDouble(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new NotImplementedException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86994,7 +86994,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoublei_vEXT")] [CLSCompliant(false)] - public static unsafe void GetDouble(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetDouble(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87002,7 +87002,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoublei_vEXT")] [CLSCompliant(false)] - public static void GetDouble(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new NotImplementedException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87010,7 +87010,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoublei_vEXT")] [CLSCompliant(false)] - public static void GetDouble(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new NotImplementedException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87018,7 +87018,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoublei_vEXT")] [CLSCompliant(false)] - public static unsafe void GetDouble(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetDouble(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87026,7 +87026,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] [CLSCompliant(false)] - public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Double[] data) { throw new NotImplementedException(); } + public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Double[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87034,7 +87034,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] [CLSCompliant(false)] - public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Double data) { throw new NotImplementedException(); } + public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Double data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87042,7 +87042,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetDoubleIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Double* data) { throw new NotImplementedException(); } + public static unsafe void GetDoubleIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Double* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87050,7 +87050,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] [CLSCompliant(false)] - public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Double[] data) { throw new NotImplementedException(); } + public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Double[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87058,7 +87058,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] [CLSCompliant(false)] - public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Double data) { throw new NotImplementedException(); } + public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Double data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87066,7 +87066,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetDoubleIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Double* data) { throw new NotImplementedException(); } + public static unsafe void GetDoubleIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Double* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87074,7 +87074,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloati_vEXT")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87082,7 +87082,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloati_vEXT")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87090,7 +87090,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloati_vEXT")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87098,7 +87098,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloati_vEXT")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87106,7 +87106,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloati_vEXT")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87114,7 +87114,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloati_vEXT")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87122,7 +87122,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] [CLSCompliant(false)] - public static void GetFloatIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloatIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87130,7 +87130,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] [CLSCompliant(false)] - public static void GetFloatIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new NotImplementedException(); } + public static void GetFloatIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87138,7 +87138,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetFloatIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloatIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87146,7 +87146,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] [CLSCompliant(false)] - public static void GetFloatIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloatIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87154,7 +87154,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] [CLSCompliant(false)] - public static void GetFloatIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new NotImplementedException(); } + public static void GetFloatIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87162,7 +87162,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetFloatIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloatIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Query the bindings of color numbers to user-defined varying out variables @@ -87175,7 +87175,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glGetFragDataLocationEXT")] [CLSCompliant(false)] - public static Int32 GetFragDataLocation(Int32 program, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetFragDataLocation(Int32 program, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Query the bindings of color numbers to user-defined varying out variables @@ -87188,7 +87188,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glGetFragDataLocationEXT")] [CLSCompliant(false)] - public static Int32 GetFragDataLocation(UInt32 program, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetFragDataLocation(UInt32 program, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Retrieve information about attachments of a bound framebuffer object @@ -87207,7 +87207,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGetFramebufferAttachmentParameterivEXT")] [CLSCompliant(false)] - public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Retrieve information about attachments of a bound framebuffer object @@ -87226,7 +87226,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGetFramebufferAttachmentParameterivEXT")] [CLSCompliant(false)] - public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Retrieve information about attachments of a bound framebuffer object @@ -87245,7 +87245,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGetFramebufferAttachmentParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Retrieve a named parameter from a framebuffer @@ -87261,7 +87261,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Retrieve a named parameter from a framebuffer @@ -87277,7 +87277,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Retrieve a named parameter from a framebuffer @@ -87293,7 +87293,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Retrieve a named parameter from a framebuffer @@ -87309,7 +87309,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Retrieve a named parameter from a framebuffer @@ -87325,7 +87325,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Retrieve a named parameter from a framebuffer @@ -87341,7 +87341,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram table @@ -87363,7 +87363,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use HistogramTargetExt overload instead")] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetHistogramEXT")] - public static void GetHistogram(OpenTK.Graphics.OpenGL.ExtHistogram target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values) { throw new NotImplementedException(); } + public static void GetHistogram(OpenTK.Graphics.OpenGL.ExtHistogram target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram table @@ -87388,7 +87388,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetHistogram(OpenTK.Graphics.OpenGL.ExtHistogram target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram table @@ -87413,7 +87413,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetHistogram(OpenTK.Graphics.OpenGL.ExtHistogram target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[,] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram table @@ -87438,7 +87438,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetHistogram(OpenTK.Graphics.OpenGL.ExtHistogram target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[,,] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram table @@ -87462,7 +87462,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetHistogramEXT")] public static void GetHistogram(OpenTK.Graphics.OpenGL.ExtHistogram target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T4 values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram table @@ -87483,7 +87483,7 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to storage for the returned histogram table. /// [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetHistogramEXT")] - public static void GetHistogram(OpenTK.Graphics.OpenGL.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values) { throw new NotImplementedException(); } + public static void GetHistogram(OpenTK.Graphics.OpenGL.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram table @@ -87507,7 +87507,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetHistogram(OpenTK.Graphics.OpenGL.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram table @@ -87531,7 +87531,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetHistogram(OpenTK.Graphics.OpenGL.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[,] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram table @@ -87555,7 +87555,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetHistogram(OpenTK.Graphics.OpenGL.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[,,] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram table @@ -87578,7 +87578,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetHistogramEXT")] public static void GetHistogram(OpenTK.Graphics.OpenGL.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T4 values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram parameters @@ -87595,7 +87595,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use HistogramTargetExt overload instead")] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetHistogramParameterfvEXT")] [CLSCompliant(false)] - public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram parameters @@ -87612,7 +87612,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use HistogramTargetExt overload instead")] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetHistogramParameterfvEXT")] [CLSCompliant(false)] - public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram parameters @@ -87629,7 +87629,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use HistogramTargetExt overload instead")] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetHistogramParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram parameters @@ -87645,7 +87645,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetHistogramParameterfvEXT")] [CLSCompliant(false)] - public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTargetExt target, OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTargetExt target, OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram parameters @@ -87661,7 +87661,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetHistogramParameterfvEXT")] [CLSCompliant(false)] - public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTargetExt target, OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTargetExt target, OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram parameters @@ -87677,7 +87677,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetHistogramParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTargetExt target, OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTargetExt target, OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram parameters @@ -87694,7 +87694,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use HistogramTargetExt overload instead")] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetHistogramParameterivEXT")] [CLSCompliant(false)] - public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram parameters @@ -87711,7 +87711,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use HistogramTargetExt overload instead")] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetHistogramParameterivEXT")] [CLSCompliant(false)] - public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram parameters @@ -87728,7 +87728,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use HistogramTargetExt overload instead")] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetHistogramParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram parameters @@ -87744,7 +87744,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetHistogramParameterivEXT")] [CLSCompliant(false)] - public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTargetExt target, OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTargetExt target, OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram parameters @@ -87760,7 +87760,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetHistogramParameterivEXT")] [CLSCompliant(false)] - public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTargetExt target, OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTargetExt target, OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram parameters @@ -87776,7 +87776,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetHistogramParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTargetExt target, OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTargetExt target, OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -87785,7 +87785,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use GetIndexedPName overload instead")] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetIntegerIndexedvEXT")] [CLSCompliant(false)] - public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new NotImplementedException(); } + public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -87794,7 +87794,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use GetIndexedPName overload instead")] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetIntegerIndexedvEXT")] [CLSCompliant(false)] - public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new NotImplementedException(); } + public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -87803,7 +87803,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use GetIndexedPName overload instead")] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetIntegerIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetIntegerIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetIntegerIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -87812,7 +87812,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use GetIndexedPName overload instead")] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetIntegerIndexedvEXT")] [CLSCompliant(false)] - public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new NotImplementedException(); } + public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -87821,7 +87821,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use GetIndexedPName overload instead")] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetIntegerIndexedvEXT")] [CLSCompliant(false)] - public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new NotImplementedException(); } + public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -87830,7 +87830,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use GetIndexedPName overload instead")] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetIntegerIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetIntegerIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetIntegerIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -87838,7 +87838,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetIntegerIndexedvEXT")] [CLSCompliant(false)] - public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new NotImplementedException(); } + public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -87846,7 +87846,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetIntegerIndexedvEXT")] [CLSCompliant(false)] - public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new NotImplementedException(); } + public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -87854,7 +87854,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetIntegerIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetIntegerIndexed(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetIntegerIndexed(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -87862,7 +87862,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetIntegerIndexedvEXT")] [CLSCompliant(false)] - public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new NotImplementedException(); } + public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -87870,7 +87870,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetIntegerIndexedvEXT")] [CLSCompliant(false)] - public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new NotImplementedException(); } + public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -87878,7 +87878,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetIntegerIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetIntegerIndexed(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetIntegerIndexed(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -87886,7 +87886,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantBooleanvEXT")] [CLSCompliant(false)] - public static void GetInvariantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool[] data) { throw new NotImplementedException(); } + public static void GetInvariantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -87894,7 +87894,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantBooleanvEXT")] [CLSCompliant(false)] - public static void GetInvariantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out bool data) { throw new NotImplementedException(); } + public static void GetInvariantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -87902,7 +87902,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantBooleanvEXT")] [CLSCompliant(false)] - public static unsafe void GetInvariantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetInvariantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -87910,7 +87910,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantBooleanvEXT")] [CLSCompliant(false)] - public static void GetInvariantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool[] data) { throw new NotImplementedException(); } + public static void GetInvariantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -87918,7 +87918,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantBooleanvEXT")] [CLSCompliant(false)] - public static void GetInvariantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out bool data) { throw new NotImplementedException(); } + public static void GetInvariantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -87926,7 +87926,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantBooleanvEXT")] [CLSCompliant(false)] - public static unsafe void GetInvariantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetInvariantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -87934,7 +87934,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantFloatvEXT")] [CLSCompliant(false)] - public static void GetInvariantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single[] data) { throw new NotImplementedException(); } + public static void GetInvariantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -87942,7 +87942,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantFloatvEXT")] [CLSCompliant(false)] - public static void GetInvariantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Single data) { throw new NotImplementedException(); } + public static void GetInvariantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -87950,7 +87950,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantFloatvEXT")] [CLSCompliant(false)] - public static unsafe void GetInvariantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetInvariantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -87958,7 +87958,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantFloatvEXT")] [CLSCompliant(false)] - public static void GetInvariantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single[] data) { throw new NotImplementedException(); } + public static void GetInvariantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -87966,7 +87966,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantFloatvEXT")] [CLSCompliant(false)] - public static void GetInvariantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Single data) { throw new NotImplementedException(); } + public static void GetInvariantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -87974,7 +87974,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantFloatvEXT")] [CLSCompliant(false)] - public static unsafe void GetInvariantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetInvariantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -87982,7 +87982,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantIntegervEXT")] [CLSCompliant(false)] - public static void GetInvariantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInvariantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -87990,7 +87990,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantIntegervEXT")] [CLSCompliant(false)] - public static void GetInvariantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInvariantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -87998,7 +87998,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantIntegervEXT")] [CLSCompliant(false)] - public static unsafe void GetInvariantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInvariantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88006,7 +88006,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantIntegervEXT")] [CLSCompliant(false)] - public static void GetInvariantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInvariantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88014,7 +88014,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantIntegervEXT")] [CLSCompliant(false)] - public static void GetInvariantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInvariantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88022,7 +88022,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantIntegervEXT")] [CLSCompliant(false)] - public static unsafe void GetInvariantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInvariantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88030,7 +88030,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantBooleanvEXT")] [CLSCompliant(false)] - public static void GetLocalConstantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool[] data) { throw new NotImplementedException(); } + public static void GetLocalConstantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88038,7 +88038,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantBooleanvEXT")] [CLSCompliant(false)] - public static void GetLocalConstantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out bool data) { throw new NotImplementedException(); } + public static void GetLocalConstantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88046,7 +88046,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantBooleanvEXT")] [CLSCompliant(false)] - public static unsafe void GetLocalConstantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetLocalConstantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88054,7 +88054,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantBooleanvEXT")] [CLSCompliant(false)] - public static void GetLocalConstantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool[] data) { throw new NotImplementedException(); } + public static void GetLocalConstantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88062,7 +88062,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantBooleanvEXT")] [CLSCompliant(false)] - public static void GetLocalConstantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out bool data) { throw new NotImplementedException(); } + public static void GetLocalConstantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88070,7 +88070,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantBooleanvEXT")] [CLSCompliant(false)] - public static unsafe void GetLocalConstantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetLocalConstantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88078,7 +88078,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantFloatvEXT")] [CLSCompliant(false)] - public static void GetLocalConstantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single[] data) { throw new NotImplementedException(); } + public static void GetLocalConstantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88086,7 +88086,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantFloatvEXT")] [CLSCompliant(false)] - public static void GetLocalConstantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Single data) { throw new NotImplementedException(); } + public static void GetLocalConstantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88094,7 +88094,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantFloatvEXT")] [CLSCompliant(false)] - public static unsafe void GetLocalConstantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetLocalConstantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88102,7 +88102,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantFloatvEXT")] [CLSCompliant(false)] - public static void GetLocalConstantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single[] data) { throw new NotImplementedException(); } + public static void GetLocalConstantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88110,7 +88110,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantFloatvEXT")] [CLSCompliant(false)] - public static void GetLocalConstantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Single data) { throw new NotImplementedException(); } + public static void GetLocalConstantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88118,7 +88118,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantFloatvEXT")] [CLSCompliant(false)] - public static unsafe void GetLocalConstantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetLocalConstantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88126,7 +88126,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantIntegervEXT")] [CLSCompliant(false)] - public static void GetLocalConstantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32[] data) { throw new NotImplementedException(); } + public static void GetLocalConstantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88134,7 +88134,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantIntegervEXT")] [CLSCompliant(false)] - public static void GetLocalConstantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Int32 data) { throw new NotImplementedException(); } + public static void GetLocalConstantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88142,7 +88142,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantIntegervEXT")] [CLSCompliant(false)] - public static unsafe void GetLocalConstantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetLocalConstantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88150,7 +88150,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantIntegervEXT")] [CLSCompliant(false)] - public static void GetLocalConstantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32[] data) { throw new NotImplementedException(); } + public static void GetLocalConstantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88158,7 +88158,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantIntegervEXT")] [CLSCompliant(false)] - public static void GetLocalConstantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Int32 data) { throw new NotImplementedException(); } + public static void GetLocalConstantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88166,7 +88166,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantIntegervEXT")] [CLSCompliant(false)] - public static unsafe void GetLocalConstantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetLocalConstantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -88174,7 +88174,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -88182,7 +88182,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -88190,7 +88190,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -88198,7 +88198,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -88206,7 +88206,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -88214,7 +88214,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minimum and maximum pixel values @@ -88236,7 +88236,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use MinmaxTargetExt overload instead")] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetMinmaxEXT")] - public static void GetMinmax(OpenTK.Graphics.OpenGL.ExtHistogram target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values) { throw new NotImplementedException(); } + public static void GetMinmax(OpenTK.Graphics.OpenGL.ExtHistogram target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minimum and maximum pixel values @@ -88261,7 +88261,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetMinmax(OpenTK.Graphics.OpenGL.ExtHistogram target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minimum and maximum pixel values @@ -88286,7 +88286,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetMinmax(OpenTK.Graphics.OpenGL.ExtHistogram target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[,] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minimum and maximum pixel values @@ -88311,7 +88311,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetMinmax(OpenTK.Graphics.OpenGL.ExtHistogram target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[,,] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minimum and maximum pixel values @@ -88335,7 +88335,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetMinmaxEXT")] public static void GetMinmax(OpenTK.Graphics.OpenGL.ExtHistogram target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T4 values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minimum and maximum pixel values @@ -88356,7 +88356,7 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to storage for the returned values. /// [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetMinmaxEXT")] - public static void GetMinmax(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values) { throw new NotImplementedException(); } + public static void GetMinmax(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minimum and maximum pixel values @@ -88380,7 +88380,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetMinmax(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minimum and maximum pixel values @@ -88404,7 +88404,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetMinmax(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[,] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minimum and maximum pixel values @@ -88428,7 +88428,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetMinmax(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[,,] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minimum and maximum pixel values @@ -88451,7 +88451,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetMinmaxEXT")] public static void GetMinmax(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T4 values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minmax parameters @@ -88468,7 +88468,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use MinmaxTargetExt overload instead")] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetMinmaxParameterfvEXT")] [CLSCompliant(false)] - public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minmax parameters @@ -88485,7 +88485,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use MinmaxTargetExt overload instead")] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetMinmaxParameterfvEXT")] [CLSCompliant(false)] - public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minmax parameters @@ -88502,7 +88502,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use MinmaxTargetExt overload instead")] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetMinmaxParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minmax parameters @@ -88518,7 +88518,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetMinmaxParameterfvEXT")] [CLSCompliant(false)] - public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minmax parameters @@ -88534,7 +88534,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetMinmaxParameterfvEXT")] [CLSCompliant(false)] - public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minmax parameters @@ -88550,7 +88550,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetMinmaxParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minmax parameters @@ -88567,7 +88567,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use MinmaxTargetExt overload instead")] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetMinmaxParameterivEXT")] [CLSCompliant(false)] - public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minmax parameters @@ -88584,7 +88584,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use MinmaxTargetExt overload instead")] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetMinmaxParameterivEXT")] [CLSCompliant(false)] - public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minmax parameters @@ -88601,7 +88601,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use MinmaxTargetExt overload instead")] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetMinmaxParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minmax parameters @@ -88617,7 +88617,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetMinmaxParameterivEXT")] [CLSCompliant(false)] - public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minmax parameters @@ -88633,7 +88633,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetMinmaxParameterivEXT")] [CLSCompliant(false)] - public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minmax parameters @@ -88649,7 +88649,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetMinmaxParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88658,7 +88658,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexEnvfvEXT")] [CLSCompliant(false)] - public static void GetMultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88667,7 +88667,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexEnvfvEXT")] [CLSCompliant(false)] - public static void GetMultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetMultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88676,7 +88676,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexEnvfvEXT")] [CLSCompliant(false)] - public static unsafe void GetMultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88685,7 +88685,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexEnvivEXT")] [CLSCompliant(false)] - public static void GetMultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88694,7 +88694,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexEnvivEXT")] [CLSCompliant(false)] - public static void GetMultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88703,7 +88703,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexEnvivEXT")] [CLSCompliant(false)] - public static unsafe void GetMultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88712,7 +88712,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexGendvEXT")] [CLSCompliant(false)] - public static void GetMultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88721,7 +88721,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexGendvEXT")] [CLSCompliant(false)] - public static void GetMultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new NotImplementedException(); } + public static void GetMultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88730,7 +88730,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexGendvEXT")] [CLSCompliant(false)] - public static unsafe void GetMultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88739,7 +88739,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexGenfvEXT")] [CLSCompliant(false)] - public static void GetMultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88748,7 +88748,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexGenfvEXT")] [CLSCompliant(false)] - public static void GetMultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetMultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88757,7 +88757,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexGenfvEXT")] [CLSCompliant(false)] - public static unsafe void GetMultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88766,7 +88766,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexGenivEXT")] [CLSCompliant(false)] - public static void GetMultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88775,7 +88775,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexGenivEXT")] [CLSCompliant(false)] - public static void GetMultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88784,7 +88784,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexGenivEXT")] [CLSCompliant(false)] - public static unsafe void GetMultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88794,7 +88794,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: COMPSIZE(target,level,format,type)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexImageEXT")] - public static void GetMultiTexImage(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,level,format,type")] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetMultiTexImage(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,level,format,type")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88807,7 +88807,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetMultiTexImage(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] T5[] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88820,7 +88820,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetMultiTexImage(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] T5[,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88833,7 +88833,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetMultiTexImage(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] T5[,,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88845,7 +88845,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexImageEXT")] public static void GetMultiTexImage(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] ref T5 pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88855,7 +88855,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexLevelParameterfvEXT")] [CLSCompliant(false)] - public static void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88865,7 +88865,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexLevelParameterfvEXT")] [CLSCompliant(false)] - public static void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88875,7 +88875,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexLevelParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88885,7 +88885,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexLevelParameterivEXT")] [CLSCompliant(false)] - public static void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88895,7 +88895,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexLevelParameterivEXT")] [CLSCompliant(false)] - public static void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88905,7 +88905,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexLevelParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88914,7 +88914,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterfvEXT")] [CLSCompliant(false)] - public static void GetMultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88923,7 +88923,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterfvEXT")] [CLSCompliant(false)] - public static void GetMultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetMultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88932,7 +88932,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void GetMultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88941,7 +88941,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterIivEXT")] [CLSCompliant(false)] - public static void GetMultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88950,7 +88950,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterIivEXT")] [CLSCompliant(false)] - public static void GetMultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88959,7 +88959,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void GetMultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88968,7 +88968,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterIuivEXT")] [CLSCompliant(false)] - public static void GetMultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88977,7 +88977,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterIuivEXT")] [CLSCompliant(false)] - public static void GetMultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetMultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88986,7 +88986,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void GetMultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88995,7 +88995,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterivEXT")] [CLSCompliant(false)] - public static void GetMultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89004,7 +89004,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterivEXT")] [CLSCompliant(false)] - public static void GetMultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89013,7 +89013,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetMultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89021,7 +89021,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89029,7 +89029,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89037,7 +89037,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89046,7 +89046,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89055,7 +89055,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89064,7 +89064,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89072,7 +89072,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89080,7 +89080,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89088,7 +89088,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89097,7 +89097,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89106,7 +89106,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89115,7 +89115,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89123,7 +89123,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferPointervEXT")] [CLSCompliant(false)] - public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89133,7 +89133,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89143,7 +89143,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89153,7 +89153,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89163,7 +89163,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89172,7 +89172,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferPointervEXT")] [CLSCompliant(false)] - public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89183,7 +89183,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89194,7 +89194,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89205,7 +89205,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89216,7 +89216,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89224,7 +89224,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferPointervEXT")] [CLSCompliant(false)] - public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89234,7 +89234,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89244,7 +89244,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89254,7 +89254,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89264,7 +89264,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89273,7 +89273,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferPointervEXT")] [CLSCompliant(false)] - public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89284,7 +89284,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89295,7 +89295,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89306,7 +89306,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89317,7 +89317,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89326,7 +89326,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [OutAttribute, CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [OutAttribute, CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89337,7 +89337,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89348,7 +89348,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89359,7 +89359,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89370,7 +89370,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89379,7 +89379,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [OutAttribute, CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [OutAttribute, CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89390,7 +89390,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89401,7 +89401,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89412,7 +89412,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89423,7 +89423,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89432,7 +89432,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [OutAttribute, CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [OutAttribute, CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89443,7 +89443,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89454,7 +89454,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89465,7 +89465,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89476,7 +89476,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89485,7 +89485,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [OutAttribute, CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [OutAttribute, CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89496,7 +89496,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89507,7 +89507,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89518,7 +89518,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89529,7 +89529,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89538,7 +89538,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89547,7 +89547,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89556,7 +89556,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89565,7 +89565,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89574,7 +89574,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89583,7 +89583,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89591,7 +89591,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89599,7 +89599,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89607,7 +89607,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89615,7 +89615,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89623,7 +89623,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89631,7 +89631,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89641,7 +89641,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ProgramProperty overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramivEXT")] [CLSCompliant(false)] - public static void GetNamedProgram(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedProgram(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89651,7 +89651,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ProgramProperty overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedProgram(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedProgram(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89660,7 +89660,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramivEXT")] [CLSCompliant(false)] - public static void GetNamedProgram(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ProgramProperty pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedProgram(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ProgramProperty pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89669,7 +89669,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedProgram(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ProgramProperty pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedProgram(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ProgramProperty pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89679,7 +89679,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ProgramProperty overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramivEXT")] [CLSCompliant(false)] - public static void GetNamedProgram(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedProgram(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89689,7 +89689,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ProgramProperty overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedProgram(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedProgram(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89698,7 +89698,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramivEXT")] [CLSCompliant(false)] - public static void GetNamedProgram(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ProgramProperty pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedProgram(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ProgramProperty pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89707,7 +89707,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedProgram(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ProgramProperty pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedProgram(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ProgramProperty pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89716,7 +89716,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterdvEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89725,7 +89725,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterdvEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89734,7 +89734,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterdvEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89743,7 +89743,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterdvEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89752,7 +89752,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterdvEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89761,7 +89761,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterdvEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89770,7 +89770,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterfvEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89779,7 +89779,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterfvEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89788,7 +89788,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89797,7 +89797,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterfvEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89806,7 +89806,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterfvEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89815,7 +89815,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89824,7 +89824,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIivEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameterI(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameterI(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89833,7 +89833,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIivEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameterI(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameterI(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89842,7 +89842,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedProgramLocalParameterI(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedProgramLocalParameterI(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89851,7 +89851,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIivEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89860,7 +89860,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIivEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89869,7 +89869,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89878,7 +89878,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIuivEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89887,7 +89887,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIuivEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89896,7 +89896,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89905,7 +89905,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(program,pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramStringEXT")] [CLSCompliant(false)] - public static void GetNamedProgramString(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "program,pname")] IntPtr @string) { throw new NotImplementedException(); } + public static void GetNamedProgramString(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "program,pname")] IntPtr @string) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89916,7 +89916,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedProgramString(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Computed = "program,pname")] T3[] @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89927,7 +89927,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedProgramString(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Computed = "program,pname")] T3[,] @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89938,7 +89938,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedProgramString(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Computed = "program,pname")] T3[,,] @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89949,7 +89949,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedProgramString(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Computed = "program,pname")] ref T3 @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89958,7 +89958,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(program,pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramStringEXT")] [CLSCompliant(false)] - public static void GetNamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "program,pname")] IntPtr @string) { throw new NotImplementedException(); } + public static void GetNamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "program,pname")] IntPtr @string) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89969,7 +89969,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Computed = "program,pname")] T3[] @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89980,7 +89980,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Computed = "program,pname")] T3[,] @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89991,7 +89991,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Computed = "program,pname")] T3[,,] @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90002,7 +90002,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Computed = "program,pname")] ref T3 @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90010,7 +90010,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedRenderbufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90018,7 +90018,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedRenderbufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90026,7 +90026,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedRenderbufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90034,7 +90034,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedRenderbufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90042,7 +90042,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedRenderbufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90050,7 +90050,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedRenderbufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -90072,7 +90072,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.OpenGL.ExtDebugLabel type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL.ExtDebugLabel type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -90094,7 +90094,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.OpenGL.ExtDebugLabel type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL.ExtDebugLabel type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -90116,7 +90116,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL.ExtDebugLabel type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL.ExtDebugLabel type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -90138,7 +90138,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.OpenGL.ExtDebugLabel type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL.ExtDebugLabel type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -90160,7 +90160,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.OpenGL.ExtDebugLabel type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL.ExtDebugLabel type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -90182,7 +90182,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL.ExtDebugLabel type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL.ExtDebugLabel type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_pixel_transform] /// @@ -90190,7 +90190,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_pixel_transform", Version = "", EntryPoint = "glGetPixelTransformParameterfvEXT")] [CLSCompliant(false)] - public static void GetPixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetPixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_pixel_transform] /// @@ -90198,7 +90198,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_pixel_transform", Version = "", EntryPoint = "glGetPixelTransformParameterfvEXT")] [CLSCompliant(false)] - public static void GetPixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetPixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_pixel_transform] /// @@ -90206,7 +90206,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_pixel_transform", Version = "", EntryPoint = "glGetPixelTransformParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void GetPixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetPixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_pixel_transform] /// @@ -90214,7 +90214,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_pixel_transform", Version = "", EntryPoint = "glGetPixelTransformParameterivEXT")] [CLSCompliant(false)] - public static void GetPixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetPixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_pixel_transform] /// @@ -90222,7 +90222,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_pixel_transform", Version = "", EntryPoint = "glGetPixelTransformParameterivEXT")] [CLSCompliant(false)] - public static void GetPixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetPixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_pixel_transform] /// @@ -90230,7 +90230,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_pixel_transform", Version = "", EntryPoint = "glGetPixelTransformParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetPixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetPixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90238,7 +90238,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointeri_vEXT")] [CLSCompliant(false)] - public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90248,7 +90248,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90258,7 +90258,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90268,7 +90268,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90278,7 +90278,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90286,7 +90286,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointeri_vEXT")] [CLSCompliant(false)] - public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90296,7 +90296,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90306,7 +90306,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90316,7 +90316,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90326,7 +90326,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90334,7 +90334,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointerIndexedvEXT")] [CLSCompliant(false)] - public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr data) { throw new NotImplementedException(); } + public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90344,7 +90344,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90354,7 +90354,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90364,7 +90364,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90374,7 +90374,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90382,7 +90382,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointerIndexedvEXT")] [CLSCompliant(false)] - public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr data) { throw new NotImplementedException(); } + public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90392,7 +90392,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90402,7 +90402,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90412,7 +90412,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90422,13 +90422,13 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// /// [length: 1] [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glGetPointervEXT")] - public static void GetPointer(OpenTK.Graphics.OpenGL.GetPointervPName pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetPointer(OpenTK.Graphics.OpenGL.GetPointervPName pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// @@ -90437,7 +90437,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// @@ -90446,7 +90446,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// @@ -90455,7 +90455,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// @@ -90463,7 +90463,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glGetPointervEXT")] public static void GetPointer(OpenTK.Graphics.OpenGL.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -90483,7 +90483,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -90503,7 +90503,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -90523,7 +90523,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static unsafe void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -90543,7 +90543,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -90563,7 +90563,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -90583,7 +90583,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static unsafe void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -90599,7 +90599,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -90615,7 +90615,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -90631,7 +90631,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -90647,7 +90647,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -90663,7 +90663,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -90679,7 +90679,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_timer_query] /// Return parameters of a query object @@ -90695,7 +90695,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_timer_query] /// Return parameters of a query object @@ -90711,7 +90711,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_timer_query] /// Return parameters of a query object @@ -90727,7 +90727,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_timer_query] /// Return parameters of a query object @@ -90743,7 +90743,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_timer_query] /// Return parameters of a query object @@ -90759,7 +90759,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_timer_query] /// Return parameters of a query object @@ -90775,7 +90775,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_timer_query] /// Return parameters of a query object @@ -90791,7 +90791,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_timer_query] /// Return parameters of a query object @@ -90807,7 +90807,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_timer_query] /// Return parameters of a query object @@ -90823,7 +90823,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Retrieve information about a bound renderbuffer object @@ -90839,7 +90839,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGetRenderbufferParameterivEXT")] [CLSCompliant(false)] - public static void GetRenderbufferParameter(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Retrieve information about a bound renderbuffer object @@ -90855,7 +90855,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGetRenderbufferParameterivEXT")] [CLSCompliant(false)] - public static void GetRenderbufferParameter(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Retrieve information about a bound renderbuffer object @@ -90871,7 +90871,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGetRenderbufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -90879,7 +90879,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -90887,7 +90887,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -90895,7 +90895,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -90903,7 +90903,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, [OutAttribute] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, [OutAttribute] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -90911,7 +90911,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, [OutAttribute] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, [OutAttribute] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -90919,7 +90919,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, [OutAttribute] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, [OutAttribute] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get separable convolution filter kernel images @@ -90943,7 +90943,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to storage for the span filter image (currently unused). /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetSeparableFilterEXT")] - public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr row, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr column, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr span) { throw new NotImplementedException(); } + public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr row, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr column, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr span) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get separable convolution filter kernel images @@ -90972,7 +90972,7 @@ namespace OpenTK.Graphics.OpenGL where T3 : struct where T4 : struct where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get separable convolution filter kernel images @@ -91001,7 +91001,7 @@ namespace OpenTK.Graphics.OpenGL where T3 : struct where T4 : struct where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get separable convolution filter kernel images @@ -91030,7 +91030,7 @@ namespace OpenTK.Graphics.OpenGL where T3 : struct where T4 : struct where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get separable convolution filter kernel images @@ -91058,7 +91058,7 @@ namespace OpenTK.Graphics.OpenGL where T3 : struct where T4 : struct where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_integer] /// @@ -91066,7 +91066,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_integer", Version = "", EntryPoint = "glGetTexParameterIivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_integer] /// @@ -91074,7 +91074,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_integer", Version = "", EntryPoint = "glGetTexParameterIivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_integer] /// @@ -91082,7 +91082,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_integer", Version = "", EntryPoint = "glGetTexParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_integer] /// @@ -91090,7 +91090,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_integer", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_integer] /// @@ -91098,7 +91098,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_integer", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_integer] /// @@ -91106,7 +91106,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_integer", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91117,7 +91117,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,level,format,type)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureImageEXT")] [CLSCompliant(false)] - public static void GetTextureImage(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,level,format,type")] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetTextureImage(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,level,format,type")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91130,7 +91130,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTextureImage(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] T5[] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91143,7 +91143,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTextureImage(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] T5[,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91156,7 +91156,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTextureImage(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] T5[,,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91169,7 +91169,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTextureImage(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] ref T5 pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91180,7 +91180,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,level,format,type)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureImageEXT")] [CLSCompliant(false)] - public static void GetTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,level,format,type")] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,level,format,type")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91193,7 +91193,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] T5[] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91206,7 +91206,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] T5[,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91219,7 +91219,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] T5[,,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91232,7 +91232,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] ref T5 pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91242,7 +91242,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterfvEXT")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91252,7 +91252,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterfvEXT")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91262,7 +91262,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91272,7 +91272,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterfvEXT")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91282,7 +91282,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterfvEXT")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91292,7 +91292,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91302,7 +91302,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterivEXT")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91312,7 +91312,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterivEXT")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91322,7 +91322,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91332,7 +91332,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterivEXT")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91342,7 +91342,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterivEXT")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91352,7 +91352,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91361,7 +91361,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterfvEXT")] [CLSCompliant(false)] - public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91370,7 +91370,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterfvEXT")] [CLSCompliant(false)] - public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91379,7 +91379,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91388,7 +91388,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterfvEXT")] [CLSCompliant(false)] - public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91397,7 +91397,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterfvEXT")] [CLSCompliant(false)] - public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91406,7 +91406,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91415,7 +91415,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterIivEXT")] [CLSCompliant(false)] - public static void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91424,7 +91424,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterIivEXT")] [CLSCompliant(false)] - public static void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91433,7 +91433,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91442,7 +91442,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterIivEXT")] [CLSCompliant(false)] - public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91451,7 +91451,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterIivEXT")] [CLSCompliant(false)] - public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91460,7 +91460,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91469,7 +91469,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterIuivEXT")] [CLSCompliant(false)] - public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91478,7 +91478,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterIuivEXT")] [CLSCompliant(false)] - public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91487,7 +91487,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91496,7 +91496,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterivEXT")] [CLSCompliant(false)] - public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91505,7 +91505,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterivEXT")] [CLSCompliant(false)] - public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91514,7 +91514,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91523,7 +91523,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterivEXT")] [CLSCompliant(false)] - public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91532,7 +91532,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterivEXT")] [CLSCompliant(false)] - public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91541,7 +91541,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// Retrieve information about varying variables selected for transform feedback @@ -91569,7 +91569,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glGetTransformFeedbackVaryingEXT")] [CLSCompliant(false)] - public static void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// Retrieve information about varying variables selected for transform feedback @@ -91597,7 +91597,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glGetTransformFeedbackVaryingEXT")] [CLSCompliant(false)] - public static void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ExtTransformFeedback type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ExtTransformFeedback type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// Retrieve information about varying variables selected for transform feedback @@ -91625,7 +91625,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glGetTransformFeedbackVaryingEXT")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// Retrieve information about varying variables selected for transform feedback @@ -91653,7 +91653,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glGetTransformFeedbackVaryingEXT")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ExtTransformFeedback* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ExtTransformFeedback* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// Retrieve information about varying variables selected for transform feedback @@ -91681,7 +91681,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glGetTransformFeedbackVaryingEXT")] [CLSCompliant(false)] - public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// Retrieve information about varying variables selected for transform feedback @@ -91709,7 +91709,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glGetTransformFeedbackVaryingEXT")] [CLSCompliant(false)] - public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ExtTransformFeedback type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ExtTransformFeedback type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// Retrieve information about varying variables selected for transform feedback @@ -91737,7 +91737,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glGetTransformFeedbackVaryingEXT")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// Retrieve information about varying variables selected for transform feedback @@ -91765,35 +91765,35 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glGetTransformFeedbackVaryingEXT")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ExtTransformFeedback* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ExtTransformFeedback* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_bindable_uniform] /// /// [AutoGenerated(Category = "EXT_bindable_uniform", Version = "", EntryPoint = "glGetUniformBufferSizeEXT")] [CLSCompliant(false)] - public static Int32 GetUniformBufferSize(Int32 program, Int32 location) { throw new NotImplementedException(); } + public static Int32 GetUniformBufferSize(Int32 program, Int32 location) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_bindable_uniform] /// /// [AutoGenerated(Category = "EXT_bindable_uniform", Version = "", EntryPoint = "glGetUniformBufferSizeEXT")] [CLSCompliant(false)] - public static Int32 GetUniformBufferSize(UInt32 program, Int32 location) { throw new NotImplementedException(); } + public static Int32 GetUniformBufferSize(UInt32 program, Int32 location) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_bindable_uniform] /// /// [AutoGenerated(Category = "EXT_bindable_uniform", Version = "", EntryPoint = "glGetUniformOffsetEXT")] [CLSCompliant(false)] - public static IntPtr GetUniformOffset(Int32 program, Int32 location) { throw new NotImplementedException(); } + public static IntPtr GetUniformOffset(Int32 program, Int32 location) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_bindable_uniform] /// /// [AutoGenerated(Category = "EXT_bindable_uniform", Version = "", EntryPoint = "glGetUniformOffsetEXT")] [CLSCompliant(false)] - public static IntPtr GetUniformOffset(UInt32 program, Int32 location) { throw new NotImplementedException(); } + public static IntPtr GetUniformOffset(UInt32 program, Int32 location) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Returns the value of a uniform variable @@ -91809,7 +91809,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glGetUniformuivEXT")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Returns the value of a uniform variable @@ -91825,7 +91825,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glGetUniformuivEXT")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Returns the value of a uniform variable @@ -91841,7 +91841,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glGetUniformuivEXT")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Returns the value of a uniform variable @@ -91857,7 +91857,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glGetUniformuivEXT")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Returns the value of a uniform variable @@ -91873,7 +91873,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glGetUniformuivEXT")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Returns the value of a uniform variable @@ -91889,7 +91889,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glGetUniformuivEXT")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -91897,7 +91897,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte[] data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -91905,7 +91905,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Byte data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Byte data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -91913,7 +91913,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static unsafe void GetUnsignedByte(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte* data) { throw new NotImplementedException(); } + public static unsafe void GetUnsignedByte(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -91921,7 +91921,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte[] data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -91929,7 +91929,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Byte data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Byte data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -91937,34 +91937,34 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static unsafe void GetUnsignedByte(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte* data) { throw new NotImplementedException(); } + public static unsafe void GetUnsignedByte(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static Byte GetUnsignedByte(OpenTK.Graphics.OpenGL.GetPName pname) { throw new NotImplementedException(); } + public static Byte GetUnsignedByte(OpenTK.Graphics.OpenGL.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte[] data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Byte data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Byte data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static unsafe void GetUnsignedByte(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte* data) { throw new NotImplementedException(); } + public static unsafe void GetUnsignedByte(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -91972,7 +91972,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantBooleanvEXT")] [CLSCompliant(false)] - public static void GetVariantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool[] data) { throw new NotImplementedException(); } + public static void GetVariantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -91980,7 +91980,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantBooleanvEXT")] [CLSCompliant(false)] - public static void GetVariantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out bool data) { throw new NotImplementedException(); } + public static void GetVariantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -91988,7 +91988,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantBooleanvEXT")] [CLSCompliant(false)] - public static unsafe void GetVariantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetVariantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -91996,7 +91996,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantBooleanvEXT")] [CLSCompliant(false)] - public static void GetVariantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool[] data) { throw new NotImplementedException(); } + public static void GetVariantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92004,7 +92004,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantBooleanvEXT")] [CLSCompliant(false)] - public static void GetVariantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out bool data) { throw new NotImplementedException(); } + public static void GetVariantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92012,7 +92012,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantBooleanvEXT")] [CLSCompliant(false)] - public static unsafe void GetVariantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetVariantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92020,7 +92020,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantFloatvEXT")] [CLSCompliant(false)] - public static void GetVariantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single[] data) { throw new NotImplementedException(); } + public static void GetVariantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92028,7 +92028,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantFloatvEXT")] [CLSCompliant(false)] - public static void GetVariantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Single data) { throw new NotImplementedException(); } + public static void GetVariantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92036,7 +92036,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantFloatvEXT")] [CLSCompliant(false)] - public static unsafe void GetVariantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetVariantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92044,7 +92044,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantFloatvEXT")] [CLSCompliant(false)] - public static void GetVariantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single[] data) { throw new NotImplementedException(); } + public static void GetVariantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92052,7 +92052,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantFloatvEXT")] [CLSCompliant(false)] - public static void GetVariantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Single data) { throw new NotImplementedException(); } + public static void GetVariantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92060,7 +92060,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantFloatvEXT")] [CLSCompliant(false)] - public static unsafe void GetVariantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetVariantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92068,7 +92068,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantIntegervEXT")] [CLSCompliant(false)] - public static void GetVariantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32[] data) { throw new NotImplementedException(); } + public static void GetVariantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92076,7 +92076,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantIntegervEXT")] [CLSCompliant(false)] - public static void GetVariantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Int32 data) { throw new NotImplementedException(); } + public static void GetVariantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92084,7 +92084,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantIntegervEXT")] [CLSCompliant(false)] - public static unsafe void GetVariantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetVariantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92092,7 +92092,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantIntegervEXT")] [CLSCompliant(false)] - public static void GetVariantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32[] data) { throw new NotImplementedException(); } + public static void GetVariantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92100,7 +92100,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantIntegervEXT")] [CLSCompliant(false)] - public static void GetVariantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Int32 data) { throw new NotImplementedException(); } + public static void GetVariantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92108,7 +92108,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantIntegervEXT")] [CLSCompliant(false)] - public static unsafe void GetVariantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetVariantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92116,7 +92116,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantPointervEXT")] [CLSCompliant(false)] - public static void GetVariantPointer(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] IntPtr data) { throw new NotImplementedException(); } + public static void GetVariantPointer(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92126,7 +92126,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVariantPointer(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [InAttribute, OutAttribute, CountAttribute(Computed = "id")] T2[] data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92136,7 +92136,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVariantPointer(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [InAttribute, OutAttribute, CountAttribute(Computed = "id")] T2[,] data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92146,7 +92146,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVariantPointer(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [InAttribute, OutAttribute, CountAttribute(Computed = "id")] T2[,,] data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92156,7 +92156,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVariantPointer(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [InAttribute, OutAttribute, CountAttribute(Computed = "id")] ref T2 data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92164,7 +92164,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantPointervEXT")] [CLSCompliant(false)] - public static void GetVariantPointer(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] IntPtr data) { throw new NotImplementedException(); } + public static void GetVariantPointer(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92174,7 +92174,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVariantPointer(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [InAttribute, OutAttribute, CountAttribute(Computed = "id")] T2[] data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92184,7 +92184,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVariantPointer(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [InAttribute, OutAttribute, CountAttribute(Computed = "id")] T2[,] data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92194,7 +92194,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVariantPointer(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [InAttribute, OutAttribute, CountAttribute(Computed = "id")] T2[,,] data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92204,7 +92204,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVariantPointer(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [InAttribute, OutAttribute, CountAttribute(Computed = "id")] ref T2 data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92213,7 +92213,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayInteger(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetVertexArrayInteger(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92222,7 +92222,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayInteger(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetVertexArrayInteger(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92231,7 +92231,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegeri_vEXT")] [CLSCompliant(false)] - public static unsafe void GetVertexArrayInteger(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetVertexArrayInteger(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92240,7 +92240,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayInteger(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetVertexArrayInteger(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92249,7 +92249,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayInteger(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetVertexArrayInteger(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92258,7 +92258,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegeri_vEXT")] [CLSCompliant(false)] - public static unsafe void GetVertexArrayInteger(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetVertexArrayInteger(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92266,7 +92266,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayInteger(Int32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetVertexArrayInteger(Int32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92274,7 +92274,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayInteger(Int32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetVertexArrayInteger(Int32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92282,7 +92282,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegervEXT")] [CLSCompliant(false)] - public static unsafe void GetVertexArrayInteger(Int32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetVertexArrayInteger(Int32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92290,7 +92290,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayInteger(UInt32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetVertexArrayInteger(UInt32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92298,7 +92298,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayInteger(UInt32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetVertexArrayInteger(UInt32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92306,7 +92306,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegervEXT")] [CLSCompliant(false)] - public static unsafe void GetVertexArrayInteger(UInt32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetVertexArrayInteger(UInt32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92315,7 +92315,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] IntPtr param) { throw new NotImplementedException(); } + public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] IntPtr param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92326,7 +92326,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] T3[] param) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92337,7 +92337,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] T3[,] param) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92348,7 +92348,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] T3[,,] param) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92359,7 +92359,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] ref T3 param) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92368,7 +92368,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] IntPtr param) { throw new NotImplementedException(); } + public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] IntPtr param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92379,7 +92379,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] T3[] param) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92390,7 +92390,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] T3[,] param) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92401,7 +92401,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] T3[,,] param) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92412,7 +92412,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] ref T3 param) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92420,7 +92420,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr param) { throw new NotImplementedException(); } + public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92430,7 +92430,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] param) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92440,7 +92440,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] param) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92450,7 +92450,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] param) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92460,7 +92460,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 param) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92468,7 +92468,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr param) { throw new NotImplementedException(); } + public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92478,7 +92478,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] param) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92488,7 +92488,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] param) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92498,7 +92498,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] param) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92508,7 +92508,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 param) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -92516,7 +92516,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glGetVertexAttribIivEXT")] [CLSCompliant(false)] - public static void GetVertexAttribI(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram4 pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribI(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram4 pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -92524,7 +92524,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glGetVertexAttribIivEXT")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribI(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram4 pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribI(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram4 pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -92532,7 +92532,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glGetVertexAttribIivEXT")] [CLSCompliant(false)] - public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram4 pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram4 pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -92540,7 +92540,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glGetVertexAttribIivEXT")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram4 pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram4 pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -92548,7 +92548,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glGetVertexAttribIuivEXT")] [CLSCompliant(false)] - public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram4 pname, [OutAttribute, CountAttribute(Count = 1)] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram4 pname, [OutAttribute, CountAttribute(Count = 1)] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -92556,7 +92556,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glGetVertexAttribIuivEXT")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram4 pname, [OutAttribute, CountAttribute(Count = 1)] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram4 pname, [OutAttribute, CountAttribute(Count = 1)] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -92564,7 +92564,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glGetVertexAttribLdvEXT")] [CLSCompliant(false)] - public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -92572,7 +92572,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glGetVertexAttribLdvEXT")] [CLSCompliant(false)] - public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -92580,7 +92580,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glGetVertexAttribLdvEXT")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -92588,7 +92588,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glGetVertexAttribLdvEXT")] [CLSCompliant(false)] - public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -92596,7 +92596,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glGetVertexAttribLdvEXT")] [CLSCompliant(false)] - public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -92604,7 +92604,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glGetVertexAttribLdvEXT")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Define histogram table @@ -92623,7 +92623,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use HistogramTargetExt overload instead")] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glHistogramEXT")] - public static void Histogram(OpenTK.Graphics.OpenGL.ExtHistogram target, Int32 width, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink) { throw new NotImplementedException(); } + public static void Histogram(OpenTK.Graphics.OpenGL.ExtHistogram target, Int32 width, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Define histogram table @@ -92641,7 +92641,7 @@ namespace OpenTK.Graphics.OpenGL /// If True, pixels will be consumed by the histogramming process and no drawing or texture loading will take place. If False, pixels will proceed to the minmax process after histogramming. /// [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glHistogramEXT")] - public static void Histogram(OpenTK.Graphics.OpenGL.HistogramTargetExt target, Int32 width, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink) { throw new NotImplementedException(); } + public static void Histogram(OpenTK.Graphics.OpenGL.HistogramTargetExt target, Int32 width, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_fd] /// @@ -92650,7 +92650,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object_fd", Version = "", EntryPoint = "glImportMemoryFdEXT")] [CLSCompliant(false)] - public static void ImportMemoryF(Int32 memory, Int64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportMemoryF(Int32 memory, Int64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_fd] /// @@ -92659,7 +92659,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object_fd", Version = "", EntryPoint = "glImportMemoryFdEXT")] [CLSCompliant(false)] - public static void ImportMemoryF(UInt32 memory, UInt64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportMemoryF(UInt32 memory, UInt64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -92668,7 +92668,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -92679,7 +92679,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -92690,7 +92690,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -92701,7 +92701,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -92712,7 +92712,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T3 handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -92721,7 +92721,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -92732,7 +92732,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -92743,7 +92743,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -92754,7 +92754,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -92765,7 +92765,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T3 handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -92774,7 +92774,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32NameEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -92785,7 +92785,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -92796,7 +92796,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -92807,7 +92807,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -92818,7 +92818,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T3 name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -92827,7 +92827,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32NameEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -92838,7 +92838,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -92849,7 +92849,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -92860,7 +92860,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -92871,7 +92871,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T3 name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_fd] /// @@ -92879,7 +92879,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_semaphore_fd", Version = "", EntryPoint = "glImportSemaphoreFdEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreF(Int32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportSemaphoreF(Int32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_fd] /// @@ -92887,7 +92887,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_semaphore_fd", Version = "", EntryPoint = "glImportSemaphoreFdEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreF(UInt32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportSemaphoreF(UInt32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -92895,7 +92895,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -92905,7 +92905,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -92915,7 +92915,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -92925,7 +92925,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -92935,7 +92935,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T2 handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -92943,7 +92943,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -92953,7 +92953,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -92963,7 +92963,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -92973,7 +92973,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -92983,7 +92983,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T2 handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -92991,7 +92991,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32NameEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -93001,7 +93001,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -93011,7 +93011,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -93021,7 +93021,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -93031,7 +93031,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T2 name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -93039,7 +93039,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32NameEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -93049,7 +93049,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -93059,7 +93059,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -93069,7 +93069,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -93079,7 +93079,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T2 name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_x11_sync_object] /// @@ -93087,7 +93087,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_x11_sync_object", Version = "", EntryPoint = "glImportSyncEXT")] [CLSCompliant(false)] - public static IntPtr ImportSync(OpenTK.Graphics.OpenGL.ExtX11SyncObject external_sync_type, IntPtr external_sync, Int32 flags) { throw new NotImplementedException(); } + public static IntPtr ImportSync(OpenTK.Graphics.OpenGL.ExtX11SyncObject external_sync_type, IntPtr external_sync, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_x11_sync_object] /// @@ -93095,19 +93095,19 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_x11_sync_object", Version = "", EntryPoint = "glImportSyncEXT")] [CLSCompliant(false)] - public static IntPtr ImportSync(OpenTK.Graphics.OpenGL.ExtX11SyncObject external_sync_type, IntPtr external_sync, UInt32 flags) { throw new NotImplementedException(); } + public static IntPtr ImportSync(OpenTK.Graphics.OpenGL.ExtX11SyncObject external_sync_type, IntPtr external_sync, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_index_func] /// /// [AutoGenerated(Category = "EXT_index_func", Version = "", EntryPoint = "glIndexFuncEXT")] - public static void IndexFunc(OpenTK.Graphics.OpenGL.ExtIndexFunc func, Single @ref) { throw new NotImplementedException(); } + public static void IndexFunc(OpenTK.Graphics.OpenGL.ExtIndexFunc func, Single @ref) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_index_material] /// /// [AutoGenerated(Category = "EXT_index_material", Version = "", EntryPoint = "glIndexMaterialEXT")] - public static void IndexMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.ExtIndexMaterial mode) { throw new NotImplementedException(); } + public static void IndexMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.ExtIndexMaterial mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of color indexes @@ -93125,7 +93125,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the first index in the array. The initial value is 0. /// [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glIndexPointerEXT")] - public static void IndexPointer(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, Int32 count, [CountAttribute(Computed = "type,stride,count")] IntPtr pointer) { throw new NotImplementedException(); } + public static void IndexPointer(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, Int32 count, [CountAttribute(Computed = "type,stride,count")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of color indexes @@ -93146,7 +93146,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void IndexPointer(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride,count")] T3[] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of color indexes @@ -93167,7 +93167,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void IndexPointer(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride,count")] T3[,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of color indexes @@ -93188,7 +93188,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void IndexPointer(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride,count")] T3[,,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of color indexes @@ -93208,7 +93208,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glIndexPointerEXT")] public static void IndexPointer(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride,count")] ref T3 pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -93216,7 +93216,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glInsertComponentEXT")] [CLSCompliant(false)] - public static void InsertComponent(Int32 res, Int32 src, Int32 num) { throw new NotImplementedException(); } + public static void InsertComponent(Int32 res, Int32 src, Int32 num) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -93224,13 +93224,13 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glInsertComponentEXT")] [CLSCompliant(false)] - public static void InsertComponent(UInt32 res, UInt32 src, UInt32 num) { throw new NotImplementedException(); } + public static void InsertComponent(UInt32 res, UInt32 src, UInt32 num) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_marker] /// /// [AutoGenerated(Category = "EXT_debug_marker", Version = "", EntryPoint = "glInsertEventMarkerEXT")] - public static void InsertEventMarker(Int32 length, String marker) { throw new NotImplementedException(); } + public static void InsertEventMarker(Int32 length, String marker) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -93238,7 +93238,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use IndexedEnableCap overload instead")] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glIsEnabledIndexedEXT")] [CLSCompliant(false)] - public static bool IsEnabledIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, Int32 index) { throw new NotImplementedException(); } + public static bool IsEnabledIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -93246,21 +93246,21 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use IndexedEnableCap overload instead")] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glIsEnabledIndexedEXT")] [CLSCompliant(false)] - public static bool IsEnabledIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, UInt32 index) { throw new NotImplementedException(); } + public static bool IsEnabledIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glIsEnabledIndexedEXT")] [CLSCompliant(false)] - public static bool IsEnabledIndexed(OpenTK.Graphics.OpenGL.IndexedEnableCap target, Int32 index) { throw new NotImplementedException(); } + public static bool IsEnabledIndexed(OpenTK.Graphics.OpenGL.IndexedEnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glIsEnabledIndexedEXT")] [CLSCompliant(false)] - public static bool IsEnabledIndexed(OpenTK.Graphics.OpenGL.IndexedEnableCap target, UInt32 index) { throw new NotImplementedException(); } + public static bool IsEnabledIndexed(OpenTK.Graphics.OpenGL.IndexedEnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Determine if a name corresponds to a framebuffer object @@ -93270,7 +93270,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glIsFramebufferEXT")] [CLSCompliant(false)] - public static bool IsFramebuffer(Int32 framebuffer) { throw new NotImplementedException(); } + public static bool IsFramebuffer(Int32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Determine if a name corresponds to a framebuffer object @@ -93280,19 +93280,19 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glIsFramebufferEXT")] [CLSCompliant(false)] - public static bool IsFramebuffer(UInt32 framebuffer) { throw new NotImplementedException(); } + public static bool IsFramebuffer(UInt32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glIsMemoryObjectEXT")] [CLSCompliant(false)] - public static bool IsMemoryObject(Int32 memoryObject) { throw new NotImplementedException(); } + public static bool IsMemoryObject(Int32 memoryObject) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glIsMemoryObjectEXT")] [CLSCompliant(false)] - public static bool IsMemoryObject(UInt32 memoryObject) { throw new NotImplementedException(); } + public static bool IsMemoryObject(UInt32 memoryObject) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Determine if a name corresponds to a program pipeline object @@ -93302,7 +93302,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glIsProgramPipelineEXT")] [CLSCompliant(false)] - public static bool IsProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } + public static bool IsProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Determine if a name corresponds to a program pipeline object @@ -93312,7 +93312,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glIsProgramPipelineEXT")] [CLSCompliant(false)] - public static bool IsProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static bool IsProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Determine if a name corresponds to a renderbuffer object @@ -93322,7 +93322,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glIsRenderbufferEXT")] [CLSCompliant(false)] - public static bool IsRenderbuffer(Int32 renderbuffer) { throw new NotImplementedException(); } + public static bool IsRenderbuffer(Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Determine if a name corresponds to a renderbuffer object @@ -93332,19 +93332,19 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glIsRenderbufferEXT")] [CLSCompliant(false)] - public static bool IsRenderbuffer(UInt32 renderbuffer) { throw new NotImplementedException(); } + public static bool IsRenderbuffer(UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glIsSemaphoreEXT")] [CLSCompliant(false)] - public static bool IsSemaphore(Int32 semaphore) { throw new NotImplementedException(); } + public static bool IsSemaphore(Int32 semaphore) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glIsSemaphoreEXT")] [CLSCompliant(false)] - public static bool IsSemaphore(UInt32 semaphore) { throw new NotImplementedException(); } + public static bool IsSemaphore(UInt32 semaphore) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Determine if a name corresponds to a texture @@ -93354,7 +93354,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glIsTextureEXT")] [CLSCompliant(false)] - public static bool IsTexture(Int32 texture) { throw new NotImplementedException(); } + public static bool IsTexture(Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Determine if a name corresponds to a texture @@ -93364,21 +93364,21 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glIsTextureEXT")] [CLSCompliant(false)] - public static bool IsTexture(UInt32 texture) { throw new NotImplementedException(); } + public static bool IsTexture(UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glIsVariantEnabledEXT")] [CLSCompliant(false)] - public static bool IsVariantEnabled(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader cap) { throw new NotImplementedException(); } + public static bool IsVariantEnabled(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader cap) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glIsVariantEnabledEXT")] [CLSCompliant(false)] - public static bool IsVariantEnabled(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader cap) { throw new NotImplementedException(); } + public static bool IsVariantEnabled(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader cap) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// @@ -93387,7 +93387,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glLabelObjectEXT")] [CLSCompliant(false)] - public static void LabelObject(OpenTK.Graphics.OpenGL.ExtDebugLabel type, Int32 @object, Int32 length, String label) { throw new NotImplementedException(); } + public static void LabelObject(OpenTK.Graphics.OpenGL.ExtDebugLabel type, Int32 @object, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// @@ -93396,20 +93396,20 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glLabelObjectEXT")] [CLSCompliant(false)] - public static void LabelObject(OpenTK.Graphics.OpenGL.ExtDebugLabel type, UInt32 @object, Int32 length, String label) { throw new NotImplementedException(); } + public static void LabelObject(OpenTK.Graphics.OpenGL.ExtDebugLabel type, UInt32 @object, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_compiled_vertex_array] /// /// [AutoGenerated(Category = "EXT_compiled_vertex_array", Version = "", EntryPoint = "glLockArraysEXT")] - public static void LockArrays(Int32 first, Int32 count) { throw new NotImplementedException(); } + public static void LockArrays(Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMapNamedBufferEXT")] [CLSCompliant(false)] - public static IntPtr MapNamedBuffer(Int32 buffer, OpenTK.Graphics.OpenGL.BufferAccess access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBuffer(Int32 buffer, OpenTK.Graphics.OpenGL.BufferAccess access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -93417,14 +93417,14 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMapNamedBufferEXT")] [CLSCompliant(false)] - public static IntPtr MapNamedBuffer(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBuffer(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMapNamedBufferEXT")] [CLSCompliant(false)] - public static IntPtr MapNamedBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferAccess access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferAccess access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -93432,7 +93432,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMapNamedBufferEXT")] [CLSCompliant(false)] - public static IntPtr MapNamedBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -93441,7 +93441,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMapNamedBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapNamedBufferRange(Int32 buffer, IntPtr offset, Int32 length, OpenTK.Graphics.OpenGL.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBufferRange(Int32 buffer, IntPtr offset, Int32 length, OpenTK.Graphics.OpenGL.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -93450,7 +93450,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMapNamedBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapNamedBufferRange(Int32 buffer, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBufferRange(Int32 buffer, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -93459,7 +93459,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMapNamedBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapNamedBufferRange(UInt32 buffer, IntPtr offset, Int32 length, OpenTK.Graphics.OpenGL.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBufferRange(UInt32 buffer, IntPtr offset, Int32 length, OpenTK.Graphics.OpenGL.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -93468,7 +93468,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMapNamedBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapNamedBufferRange(UInt32 buffer, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBufferRange(UInt32 buffer, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -93479,180 +93479,180 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixFrustumEXT")] - public static void MatrixFrustum(OpenTK.Graphics.OpenGL.MatrixMode mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar) { throw new NotImplementedException(); } + public static void MatrixFrustum(OpenTK.Graphics.OpenGL.MatrixMode mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoaddEXT")] [CLSCompliant(false)] - public static void MatrixLoad(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new NotImplementedException(); } + public static void MatrixLoad(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoaddEXT")] [CLSCompliant(false)] - public static void MatrixLoad(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new NotImplementedException(); } + public static void MatrixLoad(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoaddEXT")] [CLSCompliant(false)] - public static unsafe void MatrixLoad(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoad(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadfEXT")] [CLSCompliant(false)] - public static void MatrixLoad(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new NotImplementedException(); } + public static void MatrixLoad(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadfEXT")] [CLSCompliant(false)] - public static void MatrixLoad(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new NotImplementedException(); } + public static void MatrixLoad(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadfEXT")] [CLSCompliant(false)] - public static unsafe void MatrixLoad(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoad(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadIdentityEXT")] - public static void MatrixLoadIdentity(OpenTK.Graphics.OpenGL.MatrixMode mode) { throw new NotImplementedException(); } + public static void MatrixLoadIdentity(OpenTK.Graphics.OpenGL.MatrixMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] [CLSCompliant(false)] - public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new NotImplementedException(); } + public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] [CLSCompliant(false)] - public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new NotImplementedException(); } + public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] [CLSCompliant(false)] - public static unsafe void MatrixLoadTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoadTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] [CLSCompliant(false)] - public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new NotImplementedException(); } + public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] [CLSCompliant(false)] - public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new NotImplementedException(); } + public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] [CLSCompliant(false)] - public static unsafe void MatrixLoadTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoadTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultdEXT")] [CLSCompliant(false)] - public static void MatrixMult(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new NotImplementedException(); } + public static void MatrixMult(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultdEXT")] [CLSCompliant(false)] - public static void MatrixMult(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new NotImplementedException(); } + public static void MatrixMult(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultdEXT")] [CLSCompliant(false)] - public static unsafe void MatrixMult(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMult(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultfEXT")] [CLSCompliant(false)] - public static void MatrixMult(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new NotImplementedException(); } + public static void MatrixMult(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultfEXT")] [CLSCompliant(false)] - public static void MatrixMult(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new NotImplementedException(); } + public static void MatrixMult(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultfEXT")] [CLSCompliant(false)] - public static unsafe void MatrixMult(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMult(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] [CLSCompliant(false)] - public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new NotImplementedException(); } + public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] [CLSCompliant(false)] - public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new NotImplementedException(); } + public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] [CLSCompliant(false)] - public static unsafe void MatrixMultTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMultTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] [CLSCompliant(false)] - public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new NotImplementedException(); } + public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] [CLSCompliant(false)] - public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new NotImplementedException(); } + public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] [CLSCompliant(false)] - public static unsafe void MatrixMultTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMultTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -93663,17 +93663,17 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixOrthoEXT")] - public static void MatrixOrtho(OpenTK.Graphics.OpenGL.MatrixMode mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar) { throw new NotImplementedException(); } + public static void MatrixOrtho(OpenTK.Graphics.OpenGL.MatrixMode mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixPopEXT")] - public static void MatrixPop(OpenTK.Graphics.OpenGL.MatrixMode mode) { throw new NotImplementedException(); } + public static void MatrixPop(OpenTK.Graphics.OpenGL.MatrixMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixPushEXT")] - public static void MatrixPush(OpenTK.Graphics.OpenGL.MatrixMode mode) { throw new NotImplementedException(); } + public static void MatrixPush(OpenTK.Graphics.OpenGL.MatrixMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -93682,7 +93682,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixRotatedEXT")] - public static void MatrixRotate(OpenTK.Graphics.OpenGL.MatrixMode mode, Double angle, Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void MatrixRotate(OpenTK.Graphics.OpenGL.MatrixMode mode, Double angle, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -93691,7 +93691,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixRotatefEXT")] - public static void MatrixRotate(OpenTK.Graphics.OpenGL.MatrixMode mode, Single angle, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void MatrixRotate(OpenTK.Graphics.OpenGL.MatrixMode mode, Single angle, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -93699,7 +93699,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixScaledEXT")] - public static void MatrixScale(OpenTK.Graphics.OpenGL.MatrixMode mode, Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void MatrixScale(OpenTK.Graphics.OpenGL.MatrixMode mode, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -93707,7 +93707,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixScalefEXT")] - public static void MatrixScale(OpenTK.Graphics.OpenGL.MatrixMode mode, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void MatrixScale(OpenTK.Graphics.OpenGL.MatrixMode mode, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -93715,7 +93715,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixTranslatedEXT")] - public static void MatrixTranslate(OpenTK.Graphics.OpenGL.MatrixMode mode, Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void MatrixTranslate(OpenTK.Graphics.OpenGL.MatrixMode mode, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -93723,7 +93723,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixTranslatefEXT")] - public static void MatrixTranslate(OpenTK.Graphics.OpenGL.MatrixMode mode, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void MatrixTranslate(OpenTK.Graphics.OpenGL.MatrixMode mode, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_image_load_store] /// Defines a barrier ordering memory transactions @@ -93733,7 +93733,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_shader_image_load_store", Version = "", EntryPoint = "glMemoryBarrierEXT")] [CLSCompliant(false)] - public static void MemoryBarrier(Int32 barriers) { throw new NotImplementedException(); } + public static void MemoryBarrier(Int32 barriers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_image_load_store] /// Defines a barrier ordering memory transactions @@ -93743,7 +93743,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_shader_image_load_store", Version = "", EntryPoint = "glMemoryBarrierEXT")] [CLSCompliant(false)] - public static void MemoryBarrier(UInt32 barriers) { throw new NotImplementedException(); } + public static void MemoryBarrier(UInt32 barriers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -93751,7 +93751,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, Int32[] @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -93759,7 +93759,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, ref Int32 @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -93767,7 +93767,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -93775,7 +93775,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, Int32[] @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -93783,7 +93783,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, ref Int32 @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -93791,7 +93791,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Define minmax table @@ -93807,7 +93807,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use MinmaxTargetExt overload instead")] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glMinmaxEXT")] - public static void Minmax(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink) { throw new NotImplementedException(); } + public static void Minmax(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Define minmax table @@ -93822,7 +93822,7 @@ namespace OpenTK.Graphics.OpenGL /// If True, pixels will be consumed by the minmax process and no drawing or texture loading will take place. If False, pixels will proceed to the final conversion process after minmax. /// [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glMinmaxEXT")] - public static void Minmax(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink) { throw new NotImplementedException(); } + public static void Minmax(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -93842,7 +93842,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static void MultiDrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -93862,7 +93862,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static void MultiDrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -93882,7 +93882,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -93901,7 +93901,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static void MultiDrawArrays(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -93920,7 +93920,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static void MultiDrawArrays(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -93939,7 +93939,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawArrays(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawArrays(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -93962,7 +93962,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -93987,7 +93987,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94012,7 +94012,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94037,7 +94037,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94062,7 +94062,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94085,7 +94085,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94110,7 +94110,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94135,7 +94135,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94160,7 +94160,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94185,7 +94185,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94208,7 +94208,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94233,7 +94233,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94258,7 +94258,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94283,7 +94283,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94308,7 +94308,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94330,7 +94330,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94354,7 +94354,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94378,7 +94378,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94402,7 +94402,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94426,7 +94426,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94448,7 +94448,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94472,7 +94472,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94496,7 +94496,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94520,7 +94520,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94544,7 +94544,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94566,7 +94566,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94590,7 +94590,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94614,7 +94614,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94638,7 +94638,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94662,7 +94662,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94671,7 +94671,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexBufferEXT")] [CLSCompliant(false)] - public static void MultiTexBuffer(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void MultiTexBuffer(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94680,7 +94680,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexBufferEXT")] [CLSCompliant(false)] - public static void MultiTexBuffer(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void MultiTexBuffer(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94689,7 +94689,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: COMPSIZE(size,type,stride)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexCoordPointerEXT")] - public static void MultiTexCoordPointer(OpenTK.Graphics.OpenGL.TextureUnit texunit, Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void MultiTexCoordPointer(OpenTK.Graphics.OpenGL.TextureUnit texunit, Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94701,7 +94701,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiTexCoordPointer(OpenTK.Graphics.OpenGL.TextureUnit texunit, Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94713,7 +94713,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiTexCoordPointer(OpenTK.Graphics.OpenGL.TextureUnit texunit, Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94725,7 +94725,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiTexCoordPointer(OpenTK.Graphics.OpenGL.TextureUnit texunit, Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94736,7 +94736,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexCoordPointerEXT")] public static void MultiTexCoordPointer(OpenTK.Graphics.OpenGL.TextureUnit texunit, Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94744,7 +94744,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexEnvfEXT")] - public static void MultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Single param) { throw new NotImplementedException(); } + public static void MultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94753,7 +94753,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexEnvfvEXT")] [CLSCompliant(false)] - public static void MultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void MultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94762,7 +94762,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexEnvfvEXT")] [CLSCompliant(false)] - public static unsafe void MultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void MultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94770,7 +94770,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexEnviEXT")] - public static void MultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void MultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94779,7 +94779,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexEnvivEXT")] [CLSCompliant(false)] - public static void MultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void MultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94788,7 +94788,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexEnvivEXT")] [CLSCompliant(false)] - public static unsafe void MultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94796,7 +94796,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexGendEXT")] - public static void MultiTexGend(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Double param) { throw new NotImplementedException(); } + public static void MultiTexGend(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Double param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94805,7 +94805,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexGendvEXT")] [CLSCompliant(false)] - public static void MultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Double[] @params) { throw new NotImplementedException(); } + public static void MultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94814,7 +94814,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexGendvEXT")] [CLSCompliant(false)] - public static void MultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] ref Double @params) { throw new NotImplementedException(); } + public static void MultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] ref Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94823,7 +94823,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexGendvEXT")] [CLSCompliant(false)] - public static unsafe void MultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void MultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94831,7 +94831,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexGenfEXT")] - public static void MultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Single param) { throw new NotImplementedException(); } + public static void MultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94840,7 +94840,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexGenfvEXT")] [CLSCompliant(false)] - public static void MultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void MultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94849,7 +94849,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexGenfvEXT")] [CLSCompliant(false)] - public static unsafe void MultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void MultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94857,7 +94857,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexGeniEXT")] - public static void MultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void MultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94866,7 +94866,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexGenivEXT")] [CLSCompliant(false)] - public static void MultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void MultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94875,7 +94875,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexGenivEXT")] [CLSCompliant(false)] - public static unsafe void MultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94889,7 +94889,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width)] [Obsolete("Use int overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage1DEXT")] - public static void MultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new NotImplementedException(); } + public static void MultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94906,7 +94906,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94923,7 +94923,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94940,7 +94940,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94956,7 +94956,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage1DEXT")] public static void MultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94969,7 +94969,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage1DEXT")] - public static void MultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new NotImplementedException(); } + public static void MultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94985,7 +94985,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95001,7 +95001,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95017,7 +95017,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95032,7 +95032,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage1DEXT")] public static void MultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95047,7 +95047,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height)] [Obsolete("Use int overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage2DEXT")] - public static void MultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void MultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95065,7 +95065,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95083,7 +95083,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95101,7 +95101,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95118,7 +95118,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage2DEXT")] public static void MultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95132,7 +95132,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage2DEXT")] - public static void MultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void MultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95149,7 +95149,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95166,7 +95166,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95183,7 +95183,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95199,7 +95199,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage2DEXT")] public static void MultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95215,7 +95215,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height,depth)] [Obsolete("Use int overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage3DEXT")] - public static void MultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void MultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95234,7 +95234,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95253,7 +95253,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95272,7 +95272,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95290,7 +95290,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage3DEXT")] public static void MultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95305,7 +95305,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage3DEXT")] - public static void MultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void MultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95323,7 +95323,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95341,7 +95341,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95359,7 +95359,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95376,7 +95376,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage3DEXT")] public static void MultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95384,7 +95384,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterfEXT")] - public static void MultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single param) { throw new NotImplementedException(); } + public static void MultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95393,7 +95393,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterfvEXT")] [CLSCompliant(false)] - public static void MultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void MultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95402,7 +95402,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void MultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void MultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95410,7 +95410,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameteriEXT")] - public static void MultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void MultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95419,7 +95419,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterIivEXT")] [CLSCompliant(false)] - public static void MultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void MultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95428,7 +95428,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterIivEXT")] [CLSCompliant(false)] - public static void MultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void MultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95437,7 +95437,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void MultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95446,7 +95446,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterIuivEXT")] [CLSCompliant(false)] - public static void MultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void MultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95455,7 +95455,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterIuivEXT")] [CLSCompliant(false)] - public static void MultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void MultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95464,7 +95464,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void MultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void MultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95473,7 +95473,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterivEXT")] [CLSCompliant(false)] - public static void MultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void MultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95482,7 +95482,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterivEXT")] [CLSCompliant(false)] - public static unsafe void MultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95490,7 +95490,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexRenderbufferEXT")] [CLSCompliant(false)] - public static void MultiTexRenderbuffer(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 renderbuffer) { throw new NotImplementedException(); } + public static void MultiTexRenderbuffer(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95498,7 +95498,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexRenderbufferEXT")] [CLSCompliant(false)] - public static void MultiTexRenderbuffer(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void MultiTexRenderbuffer(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95510,7 +95510,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexSubImage1DEXT")] - public static void MultiTexSubImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new NotImplementedException(); } + public static void MultiTexSubImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95525,7 +95525,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiTexSubImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T7[] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95540,7 +95540,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiTexSubImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T7[,] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95555,7 +95555,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiTexSubImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T7[,,] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95569,7 +95569,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexSubImage1DEXT")] public static void MultiTexSubImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T7 pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95583,7 +95583,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexSubImage2DEXT")] - public static void MultiTexSubImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void MultiTexSubImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95600,7 +95600,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiTexSubImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95617,7 +95617,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiTexSubImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95634,7 +95634,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiTexSubImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95650,7 +95650,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexSubImage2DEXT")] public static void MultiTexSubImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95666,7 +95666,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexSubImage3DEXT")] - public static void MultiTexSubImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void MultiTexSubImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95685,7 +95685,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiTexSubImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T11[] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95704,7 +95704,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiTexSubImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T11[,] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95723,7 +95723,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiTexSubImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T11[,,] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95741,7 +95741,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexSubImage3DEXT")] public static void MultiTexSubImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T11 pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95750,7 +95750,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] [CLSCompliant(false)] - public static void NamedBufferData(Int32 buffer, Int32 size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void NamedBufferData(Int32 buffer, Int32 size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95760,7 +95760,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] [CLSCompliant(false)] - public static void NamedBufferData(Int32 buffer, Int32 size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) { throw new NotImplementedException(); } + public static void NamedBufferData(Int32 buffer, Int32 size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95771,7 +95771,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95783,7 +95783,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95794,7 +95794,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95806,7 +95806,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95817,7 +95817,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95829,7 +95829,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95840,7 +95840,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T2 data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95852,7 +95852,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T2 data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95861,7 +95861,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] [CLSCompliant(false)] - public static void NamedBufferData(Int32 buffer, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void NamedBufferData(Int32 buffer, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95871,7 +95871,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] [CLSCompliant(false)] - public static void NamedBufferData(Int32 buffer, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) { throw new NotImplementedException(); } + public static void NamedBufferData(Int32 buffer, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95882,7 +95882,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95894,7 +95894,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95905,7 +95905,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95917,7 +95917,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95928,7 +95928,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95940,7 +95940,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95951,7 +95951,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T2 data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95963,7 +95963,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T2 data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95972,7 +95972,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] [CLSCompliant(false)] - public static void NamedBufferData(UInt32 buffer, Int32 size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void NamedBufferData(UInt32 buffer, Int32 size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95982,7 +95982,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] [CLSCompliant(false)] - public static void NamedBufferData(UInt32 buffer, Int32 size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) { throw new NotImplementedException(); } + public static void NamedBufferData(UInt32 buffer, Int32 size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95993,7 +95993,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96005,7 +96005,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96016,7 +96016,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96028,7 +96028,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96039,7 +96039,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96051,7 +96051,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96062,7 +96062,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T2 data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96074,7 +96074,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T2 data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96083,7 +96083,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] [CLSCompliant(false)] - public static void NamedBufferData(UInt32 buffer, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void NamedBufferData(UInt32 buffer, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96093,7 +96093,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] [CLSCompliant(false)] - public static void NamedBufferData(UInt32 buffer, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) { throw new NotImplementedException(); } + public static void NamedBufferData(UInt32 buffer, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96104,7 +96104,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96116,7 +96116,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96127,7 +96127,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96139,7 +96139,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96150,7 +96150,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96162,7 +96162,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96173,7 +96173,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T2 data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96185,7 +96185,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T2 data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_buffer] /// @@ -96194,7 +96194,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sparse_buffer", Version = "", EntryPoint = "glNamedBufferPageCommitmentEXT")] [CLSCompliant(false)] - public static void NamedBufferPageCommitment(Int32 buffer, IntPtr offset, Int32 size, bool commit) { throw new NotImplementedException(); } + public static void NamedBufferPageCommitment(Int32 buffer, IntPtr offset, Int32 size, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_buffer] /// @@ -96203,7 +96203,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sparse_buffer", Version = "", EntryPoint = "glNamedBufferPageCommitmentEXT")] [CLSCompliant(false)] - public static void NamedBufferPageCommitment(Int32 buffer, IntPtr offset, IntPtr size, bool commit) { throw new NotImplementedException(); } + public static void NamedBufferPageCommitment(Int32 buffer, IntPtr offset, IntPtr size, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_buffer] /// @@ -96212,7 +96212,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sparse_buffer", Version = "", EntryPoint = "glNamedBufferPageCommitmentEXT")] [CLSCompliant(false)] - public static void NamedBufferPageCommitment(UInt32 buffer, IntPtr offset, Int32 size, bool commit) { throw new NotImplementedException(); } + public static void NamedBufferPageCommitment(UInt32 buffer, IntPtr offset, Int32 size, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_buffer] /// @@ -96221,7 +96221,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sparse_buffer", Version = "", EntryPoint = "glNamedBufferPageCommitmentEXT")] [CLSCompliant(false)] - public static void NamedBufferPageCommitment(UInt32 buffer, IntPtr offset, IntPtr size, bool commit) { throw new NotImplementedException(); } + public static void NamedBufferPageCommitment(UInt32 buffer, IntPtr offset, IntPtr size, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96230,7 +96230,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(Int32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(Int32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96240,7 +96240,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(Int32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(Int32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96250,7 +96250,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(Int32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(Int32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96261,7 +96261,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96273,7 +96273,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96285,7 +96285,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96296,7 +96296,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96308,7 +96308,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96320,7 +96320,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96331,7 +96331,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96343,7 +96343,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96355,7 +96355,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96366,7 +96366,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96378,7 +96378,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96390,7 +96390,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96399,7 +96399,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(Int32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(Int32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96409,7 +96409,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(Int32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(Int32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96419,7 +96419,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(Int32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(Int32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96430,7 +96430,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96442,7 +96442,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96454,7 +96454,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96465,7 +96465,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96477,7 +96477,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96489,7 +96489,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96500,7 +96500,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96512,7 +96512,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96524,7 +96524,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96535,7 +96535,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96547,7 +96547,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96559,7 +96559,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96568,7 +96568,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(UInt32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(UInt32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96578,7 +96578,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(UInt32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(UInt32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96588,7 +96588,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(UInt32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(UInt32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96599,7 +96599,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96611,7 +96611,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96623,7 +96623,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96634,7 +96634,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96646,7 +96646,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96658,7 +96658,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96669,7 +96669,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96681,7 +96681,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96693,7 +96693,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96704,7 +96704,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96716,7 +96716,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96728,7 +96728,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96737,7 +96737,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96747,7 +96747,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96757,7 +96757,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96768,7 +96768,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96780,7 +96780,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96792,7 +96792,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96803,7 +96803,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96815,7 +96815,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96827,7 +96827,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96838,7 +96838,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96850,7 +96850,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96862,7 +96862,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96873,7 +96873,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96885,7 +96885,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96897,7 +96897,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -96907,7 +96907,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, Int32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -96917,7 +96917,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, Int32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -96927,7 +96927,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, UInt32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -96937,7 +96937,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -96946,7 +96946,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glNamedBufferStorageMemEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageMem(Int32 buffer, Int32 size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void NamedBufferStorageMem(Int32 buffer, Int32 size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -96955,7 +96955,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glNamedBufferStorageMemEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageMem(Int32 buffer, IntPtr size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void NamedBufferStorageMem(Int32 buffer, IntPtr size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -96964,7 +96964,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glNamedBufferStorageMemEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageMem(UInt32 buffer, Int32 size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void NamedBufferStorageMem(UInt32 buffer, Int32 size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -96973,7 +96973,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glNamedBufferStorageMemEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageMem(UInt32 buffer, IntPtr size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void NamedBufferStorageMem(UInt32 buffer, IntPtr size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96982,7 +96982,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96993,7 +96993,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97004,7 +97004,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97015,7 +97015,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97026,7 +97026,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97035,7 +97035,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97046,7 +97046,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97057,7 +97057,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97068,7 +97068,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97079,7 +97079,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97088,7 +97088,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97099,7 +97099,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97110,7 +97110,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97121,7 +97121,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97132,7 +97132,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97141,7 +97141,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97152,7 +97152,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97163,7 +97163,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97174,7 +97174,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97185,7 +97185,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97195,7 +97195,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedCopyBufferSubDataEXT")] [CLSCompliant(false)] - public static void NamedCopyBufferSubData(Int32 readBuffer, Int32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new NotImplementedException(); } + public static void NamedCopyBufferSubData(Int32 readBuffer, Int32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97205,7 +97205,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedCopyBufferSubDataEXT")] [CLSCompliant(false)] - public static void NamedCopyBufferSubData(Int32 readBuffer, Int32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new NotImplementedException(); } + public static void NamedCopyBufferSubData(Int32 readBuffer, Int32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97215,7 +97215,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedCopyBufferSubDataEXT")] [CLSCompliant(false)] - public static void NamedCopyBufferSubData(UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new NotImplementedException(); } + public static void NamedCopyBufferSubData(UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97225,7 +97225,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedCopyBufferSubDataEXT")] [CLSCompliant(false)] - public static void NamedCopyBufferSubData(UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new NotImplementedException(); } + public static void NamedCopyBufferSubData(UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97234,7 +97234,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferParameteriEXT")] [CLSCompliant(false)] - public static void NamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 param) { throw new NotImplementedException(); } + public static void NamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97242,7 +97242,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferParameteriEXT")] [CLSCompliant(false)] - public static void NamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void NamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97251,7 +97251,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferParameteriEXT")] [CLSCompliant(false)] - public static void NamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void NamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97260,7 +97260,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferParameteriEXT")] [CLSCompliant(false)] - public static void NamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 param) { throw new NotImplementedException(); } + public static void NamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97268,7 +97268,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferParameteriEXT")] [CLSCompliant(false)] - public static void NamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void NamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97277,7 +97277,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferParameteriEXT")] [CLSCompliant(false)] - public static void NamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void NamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97286,7 +97286,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferRenderbufferEXT")] [CLSCompliant(false)] - public static void NamedFramebufferRenderbuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new NotImplementedException(); } + public static void NamedFramebufferRenderbuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97295,7 +97295,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferRenderbufferEXT")] [CLSCompliant(false)] - public static void NamedFramebufferRenderbuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void NamedFramebufferRenderbuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97305,7 +97305,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTexture1DEXT")] [CLSCompliant(false)] - public static void NamedFramebufferTexture1D(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void NamedFramebufferTexture1D(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97315,7 +97315,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTexture1DEXT")] [CLSCompliant(false)] - public static void NamedFramebufferTexture1D(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void NamedFramebufferTexture1D(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97325,7 +97325,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTexture2DEXT")] [CLSCompliant(false)] - public static void NamedFramebufferTexture2D(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void NamedFramebufferTexture2D(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97335,7 +97335,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTexture2DEXT")] [CLSCompliant(false)] - public static void NamedFramebufferTexture2D(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void NamedFramebufferTexture2D(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97346,7 +97346,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTexture3DEXT")] [CLSCompliant(false)] - public static void NamedFramebufferTexture3D(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, Int32 texture, Int32 level, Int32 zoffset) { throw new NotImplementedException(); } + public static void NamedFramebufferTexture3D(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, Int32 texture, Int32 level, Int32 zoffset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97357,7 +97357,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTexture3DEXT")] [CLSCompliant(false)] - public static void NamedFramebufferTexture3D(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level, Int32 zoffset) { throw new NotImplementedException(); } + public static void NamedFramebufferTexture3D(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level, Int32 zoffset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97366,7 +97366,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTextureEXT")] [CLSCompliant(false)] - public static void NamedFramebufferTexture(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void NamedFramebufferTexture(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97375,7 +97375,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTextureEXT")] [CLSCompliant(false)] - public static void NamedFramebufferTexture(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void NamedFramebufferTexture(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97385,7 +97385,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTextureFaceEXT")] [CLSCompliant(false)] - public static void NamedFramebufferTextureFace(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.TextureTarget face) { throw new NotImplementedException(); } + public static void NamedFramebufferTextureFace(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.TextureTarget face) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97395,7 +97395,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTextureFaceEXT")] [CLSCompliant(false)] - public static void NamedFramebufferTextureFace(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.TextureTarget face) { throw new NotImplementedException(); } + public static void NamedFramebufferTextureFace(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.TextureTarget face) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97405,7 +97405,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTextureLayerEXT")] [CLSCompliant(false)] - public static void NamedFramebufferTextureLayer(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } + public static void NamedFramebufferTextureLayer(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97415,7 +97415,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTextureLayerEXT")] [CLSCompliant(false)] - public static void NamedFramebufferTextureLayer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } + public static void NamedFramebufferTextureLayer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97427,7 +97427,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4dEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97439,7 +97439,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4dEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97448,7 +97448,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4dvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97457,7 +97457,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4dvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [CountAttribute(Count = 4)] ref Double @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [CountAttribute(Count = 4)] ref Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97466,7 +97466,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4dvEXT")] [CLSCompliant(false)] - public static unsafe void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97475,7 +97475,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4dvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97484,7 +97484,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4dvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] ref Double @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] ref Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97493,7 +97493,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4dvEXT")] [CLSCompliant(false)] - public static unsafe void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97505,7 +97505,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4fEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97517,7 +97517,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4fEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97526,7 +97526,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4fvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97535,7 +97535,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4fvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [CountAttribute(Count = 4)] ref Single @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [CountAttribute(Count = 4)] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97544,7 +97544,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4fvEXT")] [CLSCompliant(false)] - public static unsafe void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97553,7 +97553,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4fvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97562,7 +97562,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4fvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] ref Single @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97571,7 +97571,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4fvEXT")] [CLSCompliant(false)] - public static unsafe void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97583,7 +97583,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4iEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameterI4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameterI4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97595,7 +97595,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4iEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97604,7 +97604,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4ivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameterI4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameterI4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97613,7 +97613,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4ivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameterI4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [CountAttribute(Count = 4)] ref Int32 @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameterI4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [CountAttribute(Count = 4)] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97622,7 +97622,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4ivEXT")] [CLSCompliant(false)] - public static unsafe void NamedProgramLocalParameterI4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParameterI4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97631,7 +97631,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4ivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97640,7 +97640,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4ivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] ref Int32 @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97649,7 +97649,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4ivEXT")] [CLSCompliant(false)] - public static unsafe void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97661,7 +97661,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4uiEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97670,7 +97670,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4uivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] UInt32[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97679,7 +97679,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4uivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] ref UInt32 @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97688,7 +97688,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4uivEXT")] [CLSCompliant(false)] - public static unsafe void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97698,7 +97698,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameters4fvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameters4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameters4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97708,7 +97708,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameters4fvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameters4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameters4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97718,7 +97718,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameters4fvEXT")] [CLSCompliant(false)] - public static unsafe void NamedProgramLocalParameters4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParameters4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97728,7 +97728,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameters4fvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameters4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameters4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97738,7 +97738,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameters4fvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameters4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameters4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97748,7 +97748,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameters4fvEXT")] [CLSCompliant(false)] - public static unsafe void NamedProgramLocalParameters4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParameters4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97758,7 +97758,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParametersI4ivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParametersI4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParametersI4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97768,7 +97768,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParametersI4ivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParametersI4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParametersI4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97778,7 +97778,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParametersI4ivEXT")] [CLSCompliant(false)] - public static unsafe void NamedProgramLocalParametersI4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParametersI4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97788,7 +97788,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParametersI4ivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97798,7 +97798,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParametersI4ivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97808,7 +97808,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParametersI4ivEXT")] [CLSCompliant(false)] - public static unsafe void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97818,7 +97818,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParametersI4uivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97828,7 +97828,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParametersI4uivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97838,7 +97838,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParametersI4uivEXT")] [CLSCompliant(false)] - public static unsafe void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97848,7 +97848,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: len] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramStringEXT")] [CLSCompliant(false)] - public static void NamedProgramString(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess format, Int32 len, [CountAttribute(Parameter = "len")] IntPtr @string) { throw new NotImplementedException(); } + public static void NamedProgramString(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess format, Int32 len, [CountAttribute(Parameter = "len")] IntPtr @string) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97860,7 +97860,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedProgramString(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T4[] @string) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97872,7 +97872,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedProgramString(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T4[,] @string) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97884,7 +97884,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedProgramString(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T4[,,] @string) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97896,7 +97896,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedProgramString(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] ref T4 @string) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97906,7 +97906,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: len] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramStringEXT")] [CLSCompliant(false)] - public static void NamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess format, Int32 len, [CountAttribute(Parameter = "len")] IntPtr @string) { throw new NotImplementedException(); } + public static void NamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess format, Int32 len, [CountAttribute(Parameter = "len")] IntPtr @string) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97918,7 +97918,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T4[] @string) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97930,7 +97930,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T4[,] @string) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97942,7 +97942,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T4[,,] @string) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97954,7 +97954,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] ref T4 @string) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97964,7 +97964,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorage(Int32 renderbuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorage(Int32 renderbuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97974,7 +97974,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorage(Int32 renderbuffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorage(Int32 renderbuffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97983,7 +97983,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorage(Int32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorage(Int32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97993,7 +97993,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorage(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorage(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -98003,7 +98003,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorage(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorage(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -98012,7 +98012,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorage(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorage(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -98023,7 +98023,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageMultisampleCoverageEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorageMultisampleCoverage(Int32 renderbuffer, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorageMultisampleCoverage(Int32 renderbuffer, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -98034,7 +98034,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageMultisampleCoverageEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorageMultisampleCoverage(UInt32 renderbuffer, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorageMultisampleCoverage(UInt32 renderbuffer, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -98045,7 +98045,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageMultisampleEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorageMultisample(Int32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorageMultisample(Int32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -98056,7 +98056,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageMultisampleEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorageMultisample(Int32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorageMultisample(Int32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -98066,7 +98066,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageMultisampleEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorageMultisample(Int32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorageMultisample(Int32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -98077,7 +98077,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageMultisampleEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorageMultisample(UInt32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorageMultisample(UInt32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -98088,7 +98088,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageMultisampleEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorageMultisample(UInt32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorageMultisample(UInt32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -98098,7 +98098,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageMultisampleEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorageMultisample(UInt32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorageMultisample(UInt32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of normals @@ -98116,7 +98116,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the first coordinate of the first normal in the array. The initial value is 0. /// [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glNormalPointerEXT")] - public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, Int32 count, [CountAttribute(Computed = "type,stride,count")] IntPtr pointer) { throw new NotImplementedException(); } + public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, Int32 count, [CountAttribute(Computed = "type,stride,count")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of normals @@ -98137,7 +98137,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride,count")] T3[] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of normals @@ -98158,7 +98158,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride,count")] T3[,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of normals @@ -98179,7 +98179,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride,count")] T3[,,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of normals @@ -98199,14 +98199,14 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glNormalPointerEXT")] public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride,count")] ref T3 pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_pixel_transform] /// /// /// [AutoGenerated(Category = "EXT_pixel_transform", Version = "", EntryPoint = "glPixelTransformParameterfEXT")] - public static void PixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, Single param) { throw new NotImplementedException(); } + public static void PixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_pixel_transform] /// @@ -98214,14 +98214,14 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_pixel_transform", Version = "", EntryPoint = "glPixelTransformParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void PixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [CountAttribute(Count = 1)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void PixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [CountAttribute(Count = 1)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_pixel_transform] /// /// /// [AutoGenerated(Category = "EXT_pixel_transform", Version = "", EntryPoint = "glPixelTransformParameteriEXT")] - public static void PixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, Int32 param) { throw new NotImplementedException(); } + public static void PixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_pixel_transform] /// @@ -98229,7 +98229,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_pixel_transform", Version = "", EntryPoint = "glPixelTransformParameterivEXT")] [CLSCompliant(false)] - public static unsafe void PixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void PixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_point_parameters] /// Specify point parameters @@ -98241,7 +98241,7 @@ namespace OpenTK.Graphics.OpenGL /// For glPointParameterf and glPointParameteri, specifies the value that pname will be set to. /// [AutoGenerated(Category = "EXT_point_parameters", Version = "", EntryPoint = "glPointParameterfEXT")] - public static void PointParameter(OpenTK.Graphics.OpenGL.ExtPointParameters pname, Single param) { throw new NotImplementedException(); } + public static void PointParameter(OpenTK.Graphics.OpenGL.ExtPointParameters pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_point_parameters] /// Specify point parameters @@ -98254,7 +98254,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_point_parameters", Version = "", EntryPoint = "glPointParameterfvEXT")] [CLSCompliant(false)] - public static void PointParameter(OpenTK.Graphics.OpenGL.ExtPointParameters pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void PointParameter(OpenTK.Graphics.OpenGL.ExtPointParameters pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_point_parameters] /// Specify point parameters @@ -98267,14 +98267,14 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_point_parameters", Version = "", EntryPoint = "glPointParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void PointParameter(OpenTK.Graphics.OpenGL.ExtPointParameters pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void PointParameter(OpenTK.Graphics.OpenGL.ExtPointParameters pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_polygon_offset_clamp] /// /// /// [AutoGenerated(Category = "EXT_polygon_offset_clamp", Version = "", EntryPoint = "glPolygonOffsetClampEXT")] - public static void PolygonOffsetClamp(Single factor, Single units, Single clamp) { throw new NotImplementedException(); } + public static void PolygonOffsetClamp(Single factor, Single units, Single clamp) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_polygon_offset] /// Set the scale and units used to calculate depth values @@ -98286,11 +98286,11 @@ namespace OpenTK.Graphics.OpenGL /// Is multiplied by an implementation-specific value to create a constant depth offset. The initial value is 0. /// [AutoGenerated(Category = "EXT_polygon_offset", Version = "", EntryPoint = "glPolygonOffsetEXT")] - public static void PolygonOffset(Single factor, Single bias) { throw new NotImplementedException(); } + public static void PolygonOffset(Single factor, Single bias) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_marker] [AutoGenerated(Category = "EXT_debug_marker", Version = "", EntryPoint = "glPopGroupMarkerEXT")] - public static void PopGroupMarker() { throw new NotImplementedException(); } + public static void PopGroupMarker() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Set texture residence priority @@ -98306,7 +98306,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glPrioritizeTexturesEXT")] [CLSCompliant(false)] - public static void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures, [CountAttribute(Parameter = "n")] Single[] priorities) { throw new NotImplementedException(); } + public static void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures, [CountAttribute(Parameter = "n")] Single[] priorities) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Set texture residence priority @@ -98322,7 +98322,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glPrioritizeTexturesEXT")] [CLSCompliant(false)] - public static void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures, [CountAttribute(Parameter = "n")] ref Single priorities) { throw new NotImplementedException(); } + public static void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures, [CountAttribute(Parameter = "n")] ref Single priorities) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Set texture residence priority @@ -98338,7 +98338,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glPrioritizeTexturesEXT")] [CLSCompliant(false)] - public static unsafe void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures, [CountAttribute(Parameter = "n")] Single* priorities) { throw new NotImplementedException(); } + public static unsafe void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures, [CountAttribute(Parameter = "n")] Single* priorities) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Set texture residence priority @@ -98354,7 +98354,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glPrioritizeTexturesEXT")] [CLSCompliant(false)] - public static void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures, [CountAttribute(Parameter = "n")] Single[] priorities) { throw new NotImplementedException(); } + public static void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures, [CountAttribute(Parameter = "n")] Single[] priorities) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Set texture residence priority @@ -98370,7 +98370,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glPrioritizeTexturesEXT")] [CLSCompliant(false)] - public static void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures, [CountAttribute(Parameter = "n")] ref Single priorities) { throw new NotImplementedException(); } + public static void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures, [CountAttribute(Parameter = "n")] ref Single priorities) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Set texture residence priority @@ -98386,7 +98386,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glPrioritizeTexturesEXT")] [CLSCompliant(false)] - public static unsafe void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures, [CountAttribute(Parameter = "n")] Single* priorities) { throw new NotImplementedException(); } + public static unsafe void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures, [CountAttribute(Parameter = "n")] Single* priorities) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_program_parameters] /// @@ -98395,7 +98395,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_gpu_program_parameters", Version = "", EntryPoint = "glProgramEnvParameters4fvEXT")] [CLSCompliant(false)] - public static void ProgramEnvParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] @params) { throw new NotImplementedException(); } + public static void ProgramEnvParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_program_parameters] /// @@ -98404,7 +98404,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_gpu_program_parameters", Version = "", EntryPoint = "glProgramEnvParameters4fvEXT")] [CLSCompliant(false)] - public static void ProgramEnvParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single @params) { throw new NotImplementedException(); } + public static void ProgramEnvParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_program_parameters] /// @@ -98413,7 +98413,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_gpu_program_parameters", Version = "", EntryPoint = "glProgramEnvParameters4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramEnvParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramEnvParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_program_parameters] /// @@ -98422,7 +98422,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_gpu_program_parameters", Version = "", EntryPoint = "glProgramEnvParameters4fvEXT")] [CLSCompliant(false)] - public static void ProgramEnvParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] @params) { throw new NotImplementedException(); } + public static void ProgramEnvParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_program_parameters] /// @@ -98431,7 +98431,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_gpu_program_parameters", Version = "", EntryPoint = "glProgramEnvParameters4fvEXT")] [CLSCompliant(false)] - public static void ProgramEnvParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single @params) { throw new NotImplementedException(); } + public static void ProgramEnvParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_program_parameters] /// @@ -98440,7 +98440,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_gpu_program_parameters", Version = "", EntryPoint = "glProgramEnvParameters4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramEnvParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramEnvParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_program_parameters] /// @@ -98449,7 +98449,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_gpu_program_parameters", Version = "", EntryPoint = "glProgramLocalParameters4fvEXT")] [CLSCompliant(false)] - public static void ProgramLocalParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] @params) { throw new NotImplementedException(); } + public static void ProgramLocalParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_program_parameters] /// @@ -98458,7 +98458,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_gpu_program_parameters", Version = "", EntryPoint = "glProgramLocalParameters4fvEXT")] [CLSCompliant(false)] - public static void ProgramLocalParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single @params) { throw new NotImplementedException(); } + public static void ProgramLocalParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_program_parameters] /// @@ -98467,7 +98467,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_gpu_program_parameters", Version = "", EntryPoint = "glProgramLocalParameters4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramLocalParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramLocalParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_program_parameters] /// @@ -98476,7 +98476,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_gpu_program_parameters", Version = "", EntryPoint = "glProgramLocalParameters4fvEXT")] [CLSCompliant(false)] - public static void ProgramLocalParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] @params) { throw new NotImplementedException(); } + public static void ProgramLocalParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_program_parameters] /// @@ -98485,7 +98485,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_gpu_program_parameters", Version = "", EntryPoint = "glProgramLocalParameters4fvEXT")] [CLSCompliant(false)] - public static void ProgramLocalParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single @params) { throw new NotImplementedException(); } + public static void ProgramLocalParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_program_parameters] /// @@ -98494,7 +98494,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_gpu_program_parameters", Version = "", EntryPoint = "glProgramLocalParameters4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramLocalParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramLocalParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_geometry_shader4|EXT_separate_shader_objects] /// Specify a parameter for a program object @@ -98510,7 +98510,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_geometry_shader4|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramParameteriEXT")] [CLSCompliant(false)] - public static void ProgramParameter(Int32 program, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(Int32 program, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_geometry_shader4|EXT_separate_shader_objects] /// Specify a parameter for a program object @@ -98526,7 +98526,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_geometry_shader4|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramParameteriEXT")] [CLSCompliant(false)] - public static void ProgramParameter(UInt32 program, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(UInt32 program, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -98542,7 +98542,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform1dEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Double x) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -98558,7 +98558,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform1dEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Double x) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -98577,7 +98577,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform1dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -98596,7 +98596,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform1dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -98615,7 +98615,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform1dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -98634,7 +98634,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform1dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -98653,7 +98653,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform1dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -98672,7 +98672,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform1dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -98688,7 +98688,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Single v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -98704,7 +98704,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Single v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -98723,7 +98723,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -98742,7 +98742,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -98761,7 +98761,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -98780,7 +98780,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -98799,7 +98799,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -98818,7 +98818,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -98834,7 +98834,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1iEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -98850,7 +98850,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1iEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -98869,7 +98869,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -98888,7 +98888,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -98907,7 +98907,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -98926,7 +98926,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -98945,7 +98945,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -98964,7 +98964,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -98980,7 +98980,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uiEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, UInt32 v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, UInt32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -98999,7 +98999,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99018,7 +99018,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99037,7 +99037,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -99056,7 +99056,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform2dEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Double x, Double y) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -99075,7 +99075,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform2dEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Double x, Double y) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -99094,7 +99094,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -99113,7 +99113,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -99132,7 +99132,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform2dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -99151,7 +99151,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -99170,7 +99170,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -99189,7 +99189,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform2dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99208,7 +99208,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99227,7 +99227,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99246,7 +99246,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99265,7 +99265,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99284,7 +99284,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99303,7 +99303,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99322,7 +99322,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99341,7 +99341,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99360,7 +99360,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2iEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99379,7 +99379,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2iEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99398,7 +99398,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99417,7 +99417,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99436,7 +99436,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99455,7 +99455,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99474,7 +99474,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2uiEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, UInt32 v0, UInt32 v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, UInt32 v0, UInt32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99493,7 +99493,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99512,7 +99512,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99531,7 +99531,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2uivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -99553,7 +99553,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform3dEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -99575,7 +99575,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform3dEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -99594,7 +99594,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -99613,7 +99613,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -99632,7 +99632,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform3dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -99651,7 +99651,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -99670,7 +99670,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -99689,7 +99689,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform3dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99711,7 +99711,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99733,7 +99733,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99752,7 +99752,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99771,7 +99771,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99790,7 +99790,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99809,7 +99809,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99828,7 +99828,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99847,7 +99847,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99869,7 +99869,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3iEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99891,7 +99891,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3iEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99910,7 +99910,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99929,7 +99929,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99948,7 +99948,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99967,7 +99967,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99986,7 +99986,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100005,7 +100005,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100027,7 +100027,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3uiEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100046,7 +100046,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100065,7 +100065,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100084,7 +100084,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3uivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -100109,7 +100109,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform4dEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -100134,7 +100134,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform4dEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -100153,7 +100153,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -100172,7 +100172,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -100191,7 +100191,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform4dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -100210,7 +100210,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -100229,7 +100229,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -100248,7 +100248,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform4dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100273,7 +100273,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100298,7 +100298,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100317,7 +100317,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100336,7 +100336,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100355,7 +100355,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100374,7 +100374,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100393,7 +100393,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100412,7 +100412,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100437,7 +100437,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4iEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100462,7 +100462,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4iEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100481,7 +100481,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100500,7 +100500,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100519,7 +100519,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100538,7 +100538,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100557,7 +100557,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100576,7 +100576,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100601,7 +100601,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4uiEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100620,7 +100620,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100639,7 +100639,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100658,7 +100658,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4uivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -100668,7 +100668,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -100678,7 +100678,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -100688,7 +100688,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -100698,7 +100698,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -100708,7 +100708,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -100718,7 +100718,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -100728,7 +100728,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -100738,7 +100738,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -100748,7 +100748,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -100758,7 +100758,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -100768,7 +100768,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -100778,7 +100778,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -100788,7 +100788,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -100798,7 +100798,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -100808,7 +100808,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x3dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -100818,7 +100818,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -100828,7 +100828,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -100838,7 +100838,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x3dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -100848,7 +100848,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -100858,7 +100858,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -100868,7 +100868,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -100878,7 +100878,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -100888,7 +100888,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -100898,7 +100898,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -100908,7 +100908,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -100918,7 +100918,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -100928,7 +100928,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x4dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -100938,7 +100938,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -100948,7 +100948,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -100958,7 +100958,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x4dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -100968,7 +100968,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -100978,7 +100978,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -100988,7 +100988,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -100998,7 +100998,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101008,7 +101008,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101018,7 +101018,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101028,7 +101028,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101038,7 +101038,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101048,7 +101048,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101058,7 +101058,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101068,7 +101068,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101078,7 +101078,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101088,7 +101088,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101098,7 +101098,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101108,7 +101108,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101118,7 +101118,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101128,7 +101128,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101138,7 +101138,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101148,7 +101148,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101158,7 +101158,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101168,7 +101168,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x2dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101178,7 +101178,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101188,7 +101188,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101198,7 +101198,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x2dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101208,7 +101208,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101218,7 +101218,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101228,7 +101228,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101238,7 +101238,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101248,7 +101248,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101258,7 +101258,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101268,7 +101268,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101278,7 +101278,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101288,7 +101288,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x4dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101298,7 +101298,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101308,7 +101308,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101318,7 +101318,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x4dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101328,7 +101328,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101338,7 +101338,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101348,7 +101348,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101358,7 +101358,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101368,7 +101368,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101378,7 +101378,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101388,7 +101388,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101398,7 +101398,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101408,7 +101408,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101418,7 +101418,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101428,7 +101428,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101438,7 +101438,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -101448,7 +101448,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -101458,7 +101458,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -101468,7 +101468,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -101478,7 +101478,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -101488,7 +101488,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -101498,7 +101498,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101508,7 +101508,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101518,7 +101518,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101528,7 +101528,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x2dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101538,7 +101538,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101548,7 +101548,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101558,7 +101558,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x2dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101568,7 +101568,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101578,7 +101578,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101588,7 +101588,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101598,7 +101598,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101608,7 +101608,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101618,7 +101618,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101628,7 +101628,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101638,7 +101638,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101648,7 +101648,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x3dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101658,7 +101658,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101668,7 +101668,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101678,7 +101678,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x3dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101688,7 +101688,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101698,7 +101698,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101708,7 +101708,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101718,7 +101718,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101728,7 +101728,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101738,7 +101738,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_provoking_vertex] /// Specifiy the vertex to be used as the source of data for flat shaded varyings @@ -101747,46 +101747,46 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the vertex to be used as the source of data for flat shaded varyings. /// [AutoGenerated(Category = "EXT_provoking_vertex", Version = "", EntryPoint = "glProvokingVertexEXT")] - public static void ProvokingVertex(OpenTK.Graphics.OpenGL.ExtProvokingVertex mode) { throw new NotImplementedException(); } + public static void ProvokingVertex(OpenTK.Graphics.OpenGL.ExtProvokingVertex mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glPushClientAttribDefaultEXT")] - public static void PushClientAttribDefault(OpenTK.Graphics.OpenGL.ClientAttribMask mask) { throw new NotImplementedException(); } + public static void PushClientAttribDefault(OpenTK.Graphics.OpenGL.ClientAttribMask mask) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_marker] /// /// [AutoGenerated(Category = "EXT_debug_marker", Version = "", EntryPoint = "glPushGroupMarkerEXT")] - public static void PushGroupMarker(Int32 length, String marker) { throw new NotImplementedException(); } + public static void PushGroupMarker(Int32 length, String marker) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glRasterSamplesEXT")] [CLSCompliant(false)] - public static void RasterSamples(Int32 samples, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void RasterSamples(Int32 samples, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glRasterSamplesEXT")] [CLSCompliant(false)] - public static void RasterSamples(UInt32 samples, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void RasterSamples(UInt32 samples, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_win32_keyed_mutex] /// /// [AutoGenerated(Category = "EXT_win32_keyed_mutex", Version = "", EntryPoint = "glReleaseKeyedMutexWin32EXT")] [CLSCompliant(false)] - public static bool ReleaseKeyedMutexWin32(Int32 memory, Int64 key) { throw new NotImplementedException(); } + public static bool ReleaseKeyedMutexWin32(Int32 memory, Int64 key) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_win32_keyed_mutex] /// /// [AutoGenerated(Category = "EXT_win32_keyed_mutex", Version = "", EntryPoint = "glReleaseKeyedMutexWin32EXT")] [CLSCompliant(false)] - public static bool ReleaseKeyedMutexWin32(UInt32 memory, UInt64 key) { throw new NotImplementedException(); } + public static bool ReleaseKeyedMutexWin32(UInt32 memory, UInt64 key) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Establish data storage, format and dimensions of a renderbuffer object's image @@ -101804,7 +101804,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glRenderbufferStorageEXT")] - public static void RenderbufferStorage(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorage(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_multisample] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -101826,7 +101826,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use RenderbufferTarget overload instead")] [AutoGenerated(Category = "EXT_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleEXT")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.OpenGL.ExtFramebufferMultisample target, Int32 samples, OpenTK.Graphics.OpenGL.ExtFramebufferMultisample internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.OpenGL.ExtFramebufferMultisample target, Int32 samples, OpenTK.Graphics.OpenGL.ExtFramebufferMultisample internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_multisample] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -101847,7 +101847,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "EXT_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleEXT")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.OpenGL.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.OpenGL.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Reset histogram table entries to zero @@ -101857,7 +101857,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use HistogramTargetExt overload instead")] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glResetHistogramEXT")] - public static void ResetHistogram(OpenTK.Graphics.OpenGL.ExtHistogram target) { throw new NotImplementedException(); } + public static void ResetHistogram(OpenTK.Graphics.OpenGL.ExtHistogram target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Reset histogram table entries to zero @@ -101866,7 +101866,7 @@ namespace OpenTK.Graphics.OpenGL /// Must be Histogram. /// [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glResetHistogramEXT")] - public static void ResetHistogram(OpenTK.Graphics.OpenGL.HistogramTargetExt target) { throw new NotImplementedException(); } + public static void ResetHistogram(OpenTK.Graphics.OpenGL.HistogramTargetExt target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Reset minmax table entries to initial values @@ -101876,7 +101876,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use MinmaxTargetExt overload instead")] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glResetMinmaxEXT")] - public static void ResetMinmax(OpenTK.Graphics.OpenGL.ExtHistogram target) { throw new NotImplementedException(); } + public static void ResetMinmax(OpenTK.Graphics.OpenGL.ExtHistogram target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Reset minmax table entries to initial values @@ -101885,18 +101885,18 @@ namespace OpenTK.Graphics.OpenGL /// Must be Minmax. /// [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glResetMinmaxEXT")] - public static void ResetMinmax(OpenTK.Graphics.OpenGL.MinmaxTargetExt target) { throw new NotImplementedException(); } + public static void ResetMinmax(OpenTK.Graphics.OpenGL.MinmaxTargetExt target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multisample] /// /// [AutoGenerated(Category = "EXT_multisample", Version = "", EntryPoint = "glSampleMaskEXT")] - public static void SampleMask(Single value, bool invert) { throw new NotImplementedException(); } + public static void SampleMask(Single value, bool invert) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multisample] /// [AutoGenerated(Category = "EXT_multisample", Version = "", EntryPoint = "glSamplePatternEXT")] - public static void SamplePattern(OpenTK.Graphics.OpenGL.ExtMultisample pattern) { throw new NotImplementedException(); } + public static void SamplePattern(OpenTK.Graphics.OpenGL.ExtMultisample pattern) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -101912,7 +101912,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3bEXT")] [CLSCompliant(false)] - public static void SecondaryColor3(SByte red, SByte green, SByte blue) { throw new NotImplementedException(); } + public static void SecondaryColor3(SByte red, SByte green, SByte blue) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -101922,7 +101922,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3bvEXT")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] SByte[] v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] SByte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -101932,7 +101932,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3bvEXT")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] ref SByte v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] ref SByte v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -101942,7 +101942,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3bvEXT")] [CLSCompliant(false)] - public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] SByte* v) { throw new NotImplementedException(); } + public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] SByte* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -101957,7 +101957,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3dEXT")] - public static void SecondaryColor3(Double red, Double green, Double blue) { throw new NotImplementedException(); } + public static void SecondaryColor3(Double red, Double green, Double blue) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -101967,7 +101967,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3dvEXT")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -101977,7 +101977,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3dvEXT")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -101987,7 +101987,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3dvEXT")] [CLSCompliant(false)] - public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102002,7 +102002,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3fEXT")] - public static void SecondaryColor3(Single red, Single green, Single blue) { throw new NotImplementedException(); } + public static void SecondaryColor3(Single red, Single green, Single blue) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102012,7 +102012,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3fvEXT")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102022,7 +102022,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3fvEXT")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102032,7 +102032,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3fvEXT")] [CLSCompliant(false)] - public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102047,7 +102047,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3iEXT")] - public static void SecondaryColor3(Int32 red, Int32 green, Int32 blue) { throw new NotImplementedException(); } + public static void SecondaryColor3(Int32 red, Int32 green, Int32 blue) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102057,7 +102057,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3ivEXT")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] Int32[] v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102067,7 +102067,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3ivEXT")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] ref Int32 v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102077,7 +102077,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3ivEXT")] [CLSCompliant(false)] - public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102092,7 +102092,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3sEXT")] - public static void SecondaryColor3(Int16 red, Int16 green, Int16 blue) { throw new NotImplementedException(); } + public static void SecondaryColor3(Int16 red, Int16 green, Int16 blue) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102102,7 +102102,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3svEXT")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102112,7 +102112,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3svEXT")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102122,7 +102122,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3svEXT")] [CLSCompliant(false)] - public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102137,7 +102137,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3ubEXT")] - public static void SecondaryColor3(Byte red, Byte green, Byte blue) { throw new NotImplementedException(); } + public static void SecondaryColor3(Byte red, Byte green, Byte blue) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102147,7 +102147,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3ubvEXT")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] Byte[] v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102157,7 +102157,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3ubvEXT")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] ref Byte v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102167,7 +102167,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3ubvEXT")] [CLSCompliant(false)] - public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102183,7 +102183,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3uiEXT")] [CLSCompliant(false)] - public static void SecondaryColor3(UInt32 red, UInt32 green, UInt32 blue) { throw new NotImplementedException(); } + public static void SecondaryColor3(UInt32 red, UInt32 green, UInt32 blue) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102193,7 +102193,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3uivEXT")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] UInt32[] v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102203,7 +102203,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3uivEXT")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] ref UInt32 v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102213,7 +102213,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3uivEXT")] [CLSCompliant(false)] - public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102229,7 +102229,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3usEXT")] [CLSCompliant(false)] - public static void SecondaryColor3(UInt16 red, UInt16 green, UInt16 blue) { throw new NotImplementedException(); } + public static void SecondaryColor3(UInt16 red, UInt16 green, UInt16 blue) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102239,7 +102239,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3usvEXT")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] UInt16[] v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] UInt16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102249,7 +102249,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3usvEXT")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] ref UInt16 v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] ref UInt16 v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102259,7 +102259,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3usvEXT")] [CLSCompliant(false)] - public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] UInt16* v) { throw new NotImplementedException(); } + public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] UInt16* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Define an array of secondary colors @@ -102277,7 +102277,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the first component of the first color element in the array. The initial value is 0. /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColorPointerEXT")] - public static void SecondaryColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void SecondaryColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Define an array of secondary colors @@ -102298,7 +102298,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SecondaryColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Define an array of secondary colors @@ -102319,7 +102319,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SecondaryColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Define an array of secondary colors @@ -102340,7 +102340,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SecondaryColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Define an array of secondary colors @@ -102360,7 +102360,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColorPointerEXT")] public static void SecondaryColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T3 pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -102368,7 +102368,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, Int64[] @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -102376,7 +102376,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, ref Int64 @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, ref Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -102384,7 +102384,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, Int64* @params) { throw new NotImplementedException(); } + public static unsafe void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -102392,7 +102392,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, UInt64[] @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -102400,7 +102400,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, ref UInt64 @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, ref UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -102408,7 +102408,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a separable two-dimensional convolution filter @@ -102438,7 +102438,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a one-dimensional array of pixel data that is processed to build the column filter kernel. /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glSeparableFilter2DEXT")] - public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "target,format,type,width")] IntPtr row, [CountAttribute(Computed = "target,format,type,height")] IntPtr column) { throw new NotImplementedException(); } + public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "target,format,type,width")] IntPtr row, [CountAttribute(Computed = "target,format,type,height")] IntPtr column) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a separable two-dimensional convolution filter @@ -102472,7 +102472,7 @@ namespace OpenTK.Graphics.OpenGL public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,width")] T6[] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] T7[] column) where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a separable two-dimensional convolution filter @@ -102506,7 +102506,7 @@ namespace OpenTK.Graphics.OpenGL public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,width")] T6[,] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] T7[,] column) where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a separable two-dimensional convolution filter @@ -102540,7 +102540,7 @@ namespace OpenTK.Graphics.OpenGL public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,width")] T6[,,] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] T7[,,] column) where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a separable two-dimensional convolution filter @@ -102573,7 +102573,7 @@ namespace OpenTK.Graphics.OpenGL public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,width")] ref T6 row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] ref T7 column) where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102581,7 +102581,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id,type)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glSetInvariantEXT")] [CLSCompliant(false)] - public static void SetInvariant(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [CountAttribute(Computed = "id,type")] IntPtr addr) { throw new NotImplementedException(); } + public static void SetInvariant(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [CountAttribute(Computed = "id,type")] IntPtr addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102591,7 +102591,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SetInvariant(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type")] T2[] addr) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102601,7 +102601,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SetInvariant(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type")] T2[,] addr) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102611,7 +102611,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SetInvariant(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type")] T2[,,] addr) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102621,7 +102621,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SetInvariant(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type")] ref T2 addr) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102629,7 +102629,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id,type)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glSetInvariantEXT")] [CLSCompliant(false)] - public static void SetInvariant(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [CountAttribute(Computed = "id,type")] IntPtr addr) { throw new NotImplementedException(); } + public static void SetInvariant(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [CountAttribute(Computed = "id,type")] IntPtr addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102639,7 +102639,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SetInvariant(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type")] T2[] addr) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102649,7 +102649,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SetInvariant(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type")] T2[,] addr) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102659,7 +102659,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SetInvariant(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type")] T2[,,] addr) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102669,7 +102669,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SetInvariant(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type")] ref T2 addr) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102677,7 +102677,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id,type)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glSetLocalConstantEXT")] [CLSCompliant(false)] - public static void SetLocalConstant(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [CountAttribute(Computed = "id,type")] IntPtr addr) { throw new NotImplementedException(); } + public static void SetLocalConstant(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [CountAttribute(Computed = "id,type")] IntPtr addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102687,7 +102687,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SetLocalConstant(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type")] T2[] addr) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102697,7 +102697,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SetLocalConstant(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type")] T2[,] addr) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102707,7 +102707,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SetLocalConstant(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type")] T2[,,] addr) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102717,7 +102717,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SetLocalConstant(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type")] ref T2 addr) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102725,7 +102725,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id,type)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glSetLocalConstantEXT")] [CLSCompliant(false)] - public static void SetLocalConstant(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [CountAttribute(Computed = "id,type")] IntPtr addr) { throw new NotImplementedException(); } + public static void SetLocalConstant(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [CountAttribute(Computed = "id,type")] IntPtr addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102735,7 +102735,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SetLocalConstant(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type")] T2[] addr) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102745,7 +102745,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SetLocalConstant(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type")] T2[,] addr) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102755,7 +102755,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SetLocalConstant(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type")] T2[,,] addr) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102765,7 +102765,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SetLocalConstant(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type")] ref T2 addr) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102773,7 +102773,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glShaderOp1EXT")] [CLSCompliant(false)] - public static void ShaderOp1(OpenTK.Graphics.OpenGL.ExtVertexShader op, Int32 res, Int32 arg1) { throw new NotImplementedException(); } + public static void ShaderOp1(OpenTK.Graphics.OpenGL.ExtVertexShader op, Int32 res, Int32 arg1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102781,7 +102781,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glShaderOp1EXT")] [CLSCompliant(false)] - public static void ShaderOp1(OpenTK.Graphics.OpenGL.ExtVertexShader op, UInt32 res, UInt32 arg1) { throw new NotImplementedException(); } + public static void ShaderOp1(OpenTK.Graphics.OpenGL.ExtVertexShader op, UInt32 res, UInt32 arg1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102790,7 +102790,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glShaderOp2EXT")] [CLSCompliant(false)] - public static void ShaderOp2(OpenTK.Graphics.OpenGL.ExtVertexShader op, Int32 res, Int32 arg1, Int32 arg2) { throw new NotImplementedException(); } + public static void ShaderOp2(OpenTK.Graphics.OpenGL.ExtVertexShader op, Int32 res, Int32 arg1, Int32 arg2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102799,7 +102799,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glShaderOp2EXT")] [CLSCompliant(false)] - public static void ShaderOp2(OpenTK.Graphics.OpenGL.ExtVertexShader op, UInt32 res, UInt32 arg1, UInt32 arg2) { throw new NotImplementedException(); } + public static void ShaderOp2(OpenTK.Graphics.OpenGL.ExtVertexShader op, UInt32 res, UInt32 arg1, UInt32 arg2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102809,7 +102809,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glShaderOp3EXT")] [CLSCompliant(false)] - public static void ShaderOp3(OpenTK.Graphics.OpenGL.ExtVertexShader op, Int32 res, Int32 arg1, Int32 arg2, Int32 arg3) { throw new NotImplementedException(); } + public static void ShaderOp3(OpenTK.Graphics.OpenGL.ExtVertexShader op, Int32 res, Int32 arg1, Int32 arg2, Int32 arg3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102819,7 +102819,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glShaderOp3EXT")] [CLSCompliant(false)] - public static void ShaderOp3(OpenTK.Graphics.OpenGL.ExtVertexShader op, UInt32 res, UInt32 arg1, UInt32 arg2, UInt32 arg3) { throw new NotImplementedException(); } + public static void ShaderOp3(OpenTK.Graphics.OpenGL.ExtVertexShader op, UInt32 res, UInt32 arg1, UInt32 arg2, UInt32 arg3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -102830,7 +102830,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.OpenGL.TextureLayout[] dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.OpenGL.TextureLayout[] dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -102841,7 +102841,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.OpenGL.TextureLayout dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.OpenGL.TextureLayout dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -102852,7 +102852,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.OpenGL.TextureLayout* dstLayouts) { throw new NotImplementedException(); } + public static unsafe void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.OpenGL.TextureLayout* dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -102863,7 +102863,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.OpenGL.TextureLayout[] dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.OpenGL.TextureLayout[] dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -102874,7 +102874,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.OpenGL.TextureLayout dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.OpenGL.TextureLayout dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -102885,21 +102885,21 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.OpenGL.TextureLayout* dstLayouts) { throw new NotImplementedException(); } + public static unsafe void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.OpenGL.TextureLayout* dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_stencil_clear_tag] /// /// [AutoGenerated(Category = "EXT_stencil_clear_tag", Version = "", EntryPoint = "glStencilClearTagEXT")] [CLSCompliant(false)] - public static void StencilClearTag(Int32 stencilTagBits, Int32 stencilClearTag) { throw new NotImplementedException(); } + public static void StencilClearTag(Int32 stencilTagBits, Int32 stencilClearTag) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_stencil_clear_tag] /// /// [AutoGenerated(Category = "EXT_stencil_clear_tag", Version = "", EntryPoint = "glStencilClearTagEXT")] [CLSCompliant(false)] - public static void StencilClearTag(Int32 stencilTagBits, UInt32 stencilClearTag) { throw new NotImplementedException(); } + public static void StencilClearTag(Int32 stencilTagBits, UInt32 stencilClearTag) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102910,7 +102910,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glSwizzleEXT")] [CLSCompliant(false)] - public static void Swizzle(Int32 res, Int32 @in, OpenTK.Graphics.OpenGL.ExtVertexShader outX, OpenTK.Graphics.OpenGL.ExtVertexShader outY, OpenTK.Graphics.OpenGL.ExtVertexShader outZ, OpenTK.Graphics.OpenGL.ExtVertexShader outW) { throw new NotImplementedException(); } + public static void Swizzle(Int32 res, Int32 @in, OpenTK.Graphics.OpenGL.ExtVertexShader outX, OpenTK.Graphics.OpenGL.ExtVertexShader outY, OpenTK.Graphics.OpenGL.ExtVertexShader outZ, OpenTK.Graphics.OpenGL.ExtVertexShader outW) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102921,7 +102921,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glSwizzleEXT")] [CLSCompliant(false)] - public static void Swizzle(UInt32 res, UInt32 @in, OpenTK.Graphics.OpenGL.ExtVertexShader outX, OpenTK.Graphics.OpenGL.ExtVertexShader outY, OpenTK.Graphics.OpenGL.ExtVertexShader outZ, OpenTK.Graphics.OpenGL.ExtVertexShader outW) { throw new NotImplementedException(); } + public static void Swizzle(UInt32 res, UInt32 @in, OpenTK.Graphics.OpenGL.ExtVertexShader outX, OpenTK.Graphics.OpenGL.ExtVertexShader outY, OpenTK.Graphics.OpenGL.ExtVertexShader outZ, OpenTK.Graphics.OpenGL.ExtVertexShader outW) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// @@ -102929,7 +102929,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3bEXT")] [CLSCompliant(false)] - public static void Tangent3(Byte tx, Byte ty, Byte tz) { throw new NotImplementedException(); } + public static void Tangent3(Byte tx, Byte ty, Byte tz) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// @@ -102937,150 +102937,150 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3bEXT")] [CLSCompliant(false)] - public static void Tangent3(SByte tx, SByte ty, SByte tz) { throw new NotImplementedException(); } + public static void Tangent3(SByte tx, SByte ty, SByte tz) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3bvEXT")] [CLSCompliant(false)] - public static void Tangent3([CountAttribute(Count = 3)] Byte[] v) { throw new NotImplementedException(); } + public static void Tangent3([CountAttribute(Count = 3)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3bvEXT")] [CLSCompliant(false)] - public static void Tangent3([CountAttribute(Count = 3)] ref Byte v) { throw new NotImplementedException(); } + public static void Tangent3([CountAttribute(Count = 3)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3bvEXT")] [CLSCompliant(false)] - public static unsafe void Tangent3([CountAttribute(Count = 3)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void Tangent3([CountAttribute(Count = 3)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3bvEXT")] [CLSCompliant(false)] - public static void Tangent3([CountAttribute(Count = 3)] SByte[] v) { throw new NotImplementedException(); } + public static void Tangent3([CountAttribute(Count = 3)] SByte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3bvEXT")] [CLSCompliant(false)] - public static void Tangent3([CountAttribute(Count = 3)] ref SByte v) { throw new NotImplementedException(); } + public static void Tangent3([CountAttribute(Count = 3)] ref SByte v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3bvEXT")] [CLSCompliant(false)] - public static unsafe void Tangent3([CountAttribute(Count = 3)] SByte* v) { throw new NotImplementedException(); } + public static unsafe void Tangent3([CountAttribute(Count = 3)] SByte* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// /// /// [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3dEXT")] - public static void Tangent3(Double tx, Double ty, Double tz) { throw new NotImplementedException(); } + public static void Tangent3(Double tx, Double ty, Double tz) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3dvEXT")] [CLSCompliant(false)] - public static void Tangent3([CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void Tangent3([CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3dvEXT")] [CLSCompliant(false)] - public static void Tangent3([CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void Tangent3([CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3dvEXT")] [CLSCompliant(false)] - public static unsafe void Tangent3([CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void Tangent3([CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// /// /// [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3fEXT")] - public static void Tangent3(Single tx, Single ty, Single tz) { throw new NotImplementedException(); } + public static void Tangent3(Single tx, Single ty, Single tz) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3fvEXT")] [CLSCompliant(false)] - public static void Tangent3([CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void Tangent3([CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3fvEXT")] [CLSCompliant(false)] - public static void Tangent3([CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void Tangent3([CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3fvEXT")] [CLSCompliant(false)] - public static unsafe void Tangent3([CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void Tangent3([CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// /// /// [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3iEXT")] - public static void Tangent3(Int32 tx, Int32 ty, Int32 tz) { throw new NotImplementedException(); } + public static void Tangent3(Int32 tx, Int32 ty, Int32 tz) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3ivEXT")] [CLSCompliant(false)] - public static void Tangent3([CountAttribute(Count = 3)] Int32[] v) { throw new NotImplementedException(); } + public static void Tangent3([CountAttribute(Count = 3)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3ivEXT")] [CLSCompliant(false)] - public static void Tangent3([CountAttribute(Count = 3)] ref Int32 v) { throw new NotImplementedException(); } + public static void Tangent3([CountAttribute(Count = 3)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3ivEXT")] [CLSCompliant(false)] - public static unsafe void Tangent3([CountAttribute(Count = 3)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void Tangent3([CountAttribute(Count = 3)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// /// /// [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3sEXT")] - public static void Tangent3(Int16 tx, Int16 ty, Int16 tz) { throw new NotImplementedException(); } + public static void Tangent3(Int16 tx, Int16 ty, Int16 tz) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3svEXT")] [CLSCompliant(false)] - public static void Tangent3([CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void Tangent3([CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3svEXT")] [CLSCompliant(false)] - public static void Tangent3([CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void Tangent3([CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3svEXT")] [CLSCompliant(false)] - public static unsafe void Tangent3([CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void Tangent3([CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// /// /// [length: COMPSIZE(type,stride)] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangentPointerEXT")] - public static void TangentPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void TangentPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// @@ -103090,7 +103090,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TangentPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// @@ -103100,7 +103100,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TangentPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// @@ -103110,7 +103110,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TangentPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// @@ -103119,7 +103119,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangentPointerEXT")] public static void TangentPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer_object] /// Attach the storage for a buffer object to the active buffer texture @@ -103135,7 +103135,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_buffer_object", Version = "", EntryPoint = "glTexBufferEXT")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtTextureBufferObject internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtTextureBufferObject internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer_object] /// Attach the storage for a buffer object to the active buffer texture @@ -103151,7 +103151,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_buffer_object", Version = "", EntryPoint = "glTexBufferEXT")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtTextureBufferObject internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtTextureBufferObject internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of texture coordinates @@ -103172,7 +103172,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the first coordinate of the first texture coordinate set in the array. The initial value is 0. /// [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glTexCoordPointerEXT")] - public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, Int32 count, [CountAttribute(Computed = "size,type,stride,count")] IntPtr pointer) { throw new NotImplementedException(); } + public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, Int32 count, [CountAttribute(Computed = "size,type,stride,count")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of texture coordinates @@ -103196,7 +103196,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride,count")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of texture coordinates @@ -103220,7 +103220,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride,count")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of texture coordinates @@ -103244,7 +103244,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride,count")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of texture coordinates @@ -103267,7 +103267,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glTexCoordPointerEXT")] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride,count")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture3D] /// Specify a three-dimensional texture image @@ -103303,7 +103303,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "EXT_texture3D", Version = "", EntryPoint = "glTexImage3DEXT")] - public static void TexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture3D] /// Specify a three-dimensional texture image @@ -103342,7 +103342,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture3D] /// Specify a three-dimensional texture image @@ -103381,7 +103381,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture3D] /// Specify a three-dimensional texture image @@ -103420,7 +103420,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture3D] /// Specify a three-dimensional texture image @@ -103458,7 +103458,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_texture3D", Version = "", EntryPoint = "glTexImage3DEXT")] public static void TexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_integer] /// @@ -103466,7 +103466,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_integer", Version = "", EntryPoint = "glTexParameterIivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_integer] /// @@ -103474,7 +103474,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_integer", Version = "", EntryPoint = "glTexParameterIivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_integer] /// @@ -103482,7 +103482,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_integer", Version = "", EntryPoint = "glTexParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_integer] /// @@ -103490,7 +103490,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_integer", Version = "", EntryPoint = "glTexParameterIuivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_integer] /// @@ -103498,7 +103498,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_integer", Version = "", EntryPoint = "glTexParameterIuivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_integer] /// @@ -103506,7 +103506,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_integer", Version = "", EntryPoint = "glTexParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -103517,7 +103517,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem1DEXT")] [CLSCompliant(false)] - public static void TexStorageMem1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -103528,7 +103528,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem1DEXT")] [CLSCompliant(false)] - public static void TexStorageMem1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -103540,7 +103540,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DEXT")] [CLSCompliant(false)] - public static void TexStorageMem2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -103552,7 +103552,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DEXT")] [CLSCompliant(false)] - public static void TexStorageMem2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -103565,7 +103565,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem2DMultisample(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2DMultisample(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -103578,7 +103578,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem2DMultisample(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2DMultisample(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -103591,7 +103591,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DEXT")] [CLSCompliant(false)] - public static void TexStorageMem3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -103604,7 +103604,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DEXT")] [CLSCompliant(false)] - public static void TexStorageMem3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -103618,7 +103618,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem3DMultisample(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3DMultisample(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -103632,7 +103632,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem3DMultisample(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3DMultisample(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_subtexture] /// Specify a one-dimensional texture subimage @@ -103659,7 +103659,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "EXT_subtexture", Version = "", EntryPoint = "glTexSubImage1DEXT")] - public static void TexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_subtexture] /// Specify a one-dimensional texture subimage @@ -103689,7 +103689,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T6[] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_subtexture] /// Specify a one-dimensional texture subimage @@ -103719,7 +103719,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T6[,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_subtexture] /// Specify a one-dimensional texture subimage @@ -103749,7 +103749,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T6[,,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_subtexture] /// Specify a one-dimensional texture subimage @@ -103778,7 +103778,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_subtexture", Version = "", EntryPoint = "glTexSubImage1DEXT")] public static void TexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T6 pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_subtexture] /// Specify a two-dimensional texture subimage @@ -103811,7 +103811,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "EXT_subtexture", Version = "", EntryPoint = "glTexSubImage2DEXT")] - public static void TexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_subtexture] /// Specify a two-dimensional texture subimage @@ -103847,7 +103847,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_subtexture] /// Specify a two-dimensional texture subimage @@ -103883,7 +103883,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_subtexture] /// Specify a two-dimensional texture subimage @@ -103919,7 +103919,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_subtexture] /// Specify a two-dimensional texture subimage @@ -103954,7 +103954,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_subtexture", Version = "", EntryPoint = "glTexSubImage2DEXT")] public static void TexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture3D] /// Specify a three-dimensional texture subimage @@ -103993,7 +103993,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "EXT_texture3D", Version = "", EntryPoint = "glTexSubImage3DEXT")] - public static void TexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture3D] /// Specify a three-dimensional texture subimage @@ -104035,7 +104035,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture3D] /// Specify a three-dimensional texture subimage @@ -104077,7 +104077,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture3D] /// Specify a three-dimensional texture subimage @@ -104119,7 +104119,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture3D] /// Specify a three-dimensional texture subimage @@ -104160,7 +104160,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_texture3D", Version = "", EntryPoint = "glTexSubImage3DEXT")] public static void TexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104170,7 +104170,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureBufferEXT")] [CLSCompliant(false)] - public static void TextureBuffer(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void TextureBuffer(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104179,7 +104179,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureBufferEXT")] [CLSCompliant(false)] - public static void TextureBuffer(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void TextureBuffer(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104189,7 +104189,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureBufferEXT")] [CLSCompliant(false)] - public static void TextureBuffer(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void TextureBuffer(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104198,7 +104198,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureBufferEXT")] [CLSCompliant(false)] - public static void TextureBuffer(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void TextureBuffer(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104210,7 +104210,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureBufferRangeEXT")] [CLSCompliant(false)] - public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104222,7 +104222,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureBufferRangeEXT")] [CLSCompliant(false)] - public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104233,7 +104233,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureBufferRangeEXT")] [CLSCompliant(false)] - public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104244,7 +104244,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureBufferRangeEXT")] [CLSCompliant(false)] - public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104256,7 +104256,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureBufferRangeEXT")] [CLSCompliant(false)] - public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104268,7 +104268,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureBufferRangeEXT")] [CLSCompliant(false)] - public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104279,7 +104279,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureBufferRangeEXT")] [CLSCompliant(false)] - public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104290,7 +104290,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureBufferRangeEXT")] [CLSCompliant(false)] - public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104305,7 +104305,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use int overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] [CLSCompliant(false)] - public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104322,7 +104322,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104339,7 +104339,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104356,7 +104356,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104373,7 +104373,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104387,7 +104387,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] [CLSCompliant(false)] - public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104403,7 +104403,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104419,7 +104419,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104435,7 +104435,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104451,7 +104451,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104466,7 +104466,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use int overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] [CLSCompliant(false)] - public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104483,7 +104483,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104500,7 +104500,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104517,7 +104517,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104534,7 +104534,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104548,7 +104548,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] [CLSCompliant(false)] - public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104564,7 +104564,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104580,7 +104580,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104596,7 +104596,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104612,7 +104612,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104628,7 +104628,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use int overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] [CLSCompliant(false)] - public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104646,7 +104646,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104664,7 +104664,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104682,7 +104682,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104700,7 +104700,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104715,7 +104715,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] [CLSCompliant(false)] - public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104732,7 +104732,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104749,7 +104749,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104766,7 +104766,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104783,7 +104783,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104799,7 +104799,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use int overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] [CLSCompliant(false)] - public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104817,7 +104817,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104835,7 +104835,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104853,7 +104853,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104871,7 +104871,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104886,7 +104886,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] [CLSCompliant(false)] - public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104903,7 +104903,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104920,7 +104920,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104937,7 +104937,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104954,7 +104954,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104971,7 +104971,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use int overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] [CLSCompliant(false)] - public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104990,7 +104990,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105009,7 +105009,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105028,7 +105028,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105047,7 +105047,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105063,7 +105063,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] [CLSCompliant(false)] - public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105081,7 +105081,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105099,7 +105099,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105117,7 +105117,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105135,7 +105135,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105152,7 +105152,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use int overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] [CLSCompliant(false)] - public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105171,7 +105171,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105190,7 +105190,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105209,7 +105209,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105228,7 +105228,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105244,7 +105244,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] [CLSCompliant(false)] - public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105262,7 +105262,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105280,7 +105280,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105298,7 +105298,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105316,23 +105316,23 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_light_texture] /// [AutoGenerated(Category = "EXT_light_texture", Version = "", EntryPoint = "glTextureLightEXT")] - public static void TextureLight(OpenTK.Graphics.OpenGL.ExtLightTexture pname) { throw new NotImplementedException(); } + public static void TextureLight(OpenTK.Graphics.OpenGL.ExtLightTexture pname) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_light_texture] /// /// [AutoGenerated(Category = "EXT_light_texture", Version = "", EntryPoint = "glTextureMaterialEXT")] - public static void TextureMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter mode) { throw new NotImplementedException(); } + public static void TextureMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_perturb_normal] /// [AutoGenerated(Category = "EXT_texture_perturb_normal", Version = "", EntryPoint = "glTextureNormalEXT")] - public static void TextureNormal(OpenTK.Graphics.OpenGL.ExtTexturePerturbNormal mode) { throw new NotImplementedException(); } + public static void TextureNormal(OpenTK.Graphics.OpenGL.ExtTexturePerturbNormal mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105346,7 +105346,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTexturePageCommitmentEXT")] [CLSCompliant(false)] - public static void TexturePageCommitment(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit) { throw new NotImplementedException(); } + public static void TexturePageCommitment(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105360,7 +105360,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTexturePageCommitmentEXT")] [CLSCompliant(false)] - public static void TexturePageCommitment(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit) { throw new NotImplementedException(); } + public static void TexturePageCommitment(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105369,7 +105369,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterfEXT")] [CLSCompliant(false)] - public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single param) { throw new NotImplementedException(); } + public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105378,7 +105378,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterfEXT")] [CLSCompliant(false)] - public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single param) { throw new NotImplementedException(); } + public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105387,7 +105387,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterfvEXT")] [CLSCompliant(false)] - public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105396,7 +105396,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105405,7 +105405,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterfvEXT")] [CLSCompliant(false)] - public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105414,7 +105414,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105423,7 +105423,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameteriEXT")] [CLSCompliant(false)] - public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105432,7 +105432,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameteriEXT")] [CLSCompliant(false)] - public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105441,7 +105441,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterIivEXT")] [CLSCompliant(false)] - public static void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105450,7 +105450,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterIivEXT")] [CLSCompliant(false)] - public static void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105459,7 +105459,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105468,7 +105468,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterIivEXT")] [CLSCompliant(false)] - public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105477,7 +105477,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterIivEXT")] [CLSCompliant(false)] - public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105486,7 +105486,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105495,7 +105495,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterIuivEXT")] [CLSCompliant(false)] - public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105504,7 +105504,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterIuivEXT")] [CLSCompliant(false)] - public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105513,7 +105513,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105522,7 +105522,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterivEXT")] [CLSCompliant(false)] - public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105531,7 +105531,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterivEXT")] [CLSCompliant(false)] - public static unsafe void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105540,7 +105540,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterivEXT")] [CLSCompliant(false)] - public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105549,7 +105549,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterivEXT")] [CLSCompliant(false)] - public static unsafe void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105557,7 +105557,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureRenderbufferEXT")] [CLSCompliant(false)] - public static void TextureRenderbuffer(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 renderbuffer) { throw new NotImplementedException(); } + public static void TextureRenderbuffer(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105565,7 +105565,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureRenderbufferEXT")] [CLSCompliant(false)] - public static void TextureRenderbuffer(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void TextureRenderbuffer(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105576,7 +105576,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage1DEXT")] [CLSCompliant(false)] - public static void TextureStorage1D(Int32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 levels, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TextureStorage1D(Int32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 levels, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105586,7 +105586,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage1DEXT")] [CLSCompliant(false)] - public static void TextureStorage1D(Int32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TextureStorage1D(Int32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105597,7 +105597,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage1DEXT")] [CLSCompliant(false)] - public static void TextureStorage1D(UInt32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 levels, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TextureStorage1D(UInt32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 levels, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105607,7 +105607,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage1DEXT")] [CLSCompliant(false)] - public static void TextureStorage1D(UInt32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TextureStorage1D(UInt32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105619,7 +105619,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage2DEXT")] [CLSCompliant(false)] - public static void TextureStorage2D(Int32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 levels, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TextureStorage2D(Int32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 levels, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105630,7 +105630,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage2DEXT")] [CLSCompliant(false)] - public static void TextureStorage2D(Int32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TextureStorage2D(Int32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105642,7 +105642,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage2DEXT")] [CLSCompliant(false)] - public static void TextureStorage2D(UInt32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 levels, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TextureStorage2D(UInt32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 levels, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105653,7 +105653,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage2DEXT")] [CLSCompliant(false)] - public static void TextureStorage2D(UInt32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TextureStorage2D(UInt32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105666,7 +105666,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage2DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorage2DMultisample(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage2DMultisample(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105678,7 +105678,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage2DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorage2DMultisample(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage2DMultisample(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105691,7 +105691,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage2DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorage2DMultisample(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage2DMultisample(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105703,7 +105703,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage2DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorage2DMultisample(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage2DMultisample(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105716,7 +105716,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage3DEXT")] [CLSCompliant(false)] - public static void TextureStorage3D(Int32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 levels, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TextureStorage3D(Int32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 levels, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105728,7 +105728,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage3DEXT")] [CLSCompliant(false)] - public static void TextureStorage3D(Int32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TextureStorage3D(Int32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105741,7 +105741,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage3DEXT")] [CLSCompliant(false)] - public static void TextureStorage3D(UInt32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 levels, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TextureStorage3D(UInt32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 levels, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105753,7 +105753,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage3DEXT")] [CLSCompliant(false)] - public static void TextureStorage3D(UInt32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TextureStorage3D(UInt32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105767,7 +105767,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage3DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorage3DMultisample(Int32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 samples, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage3DMultisample(Int32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 samples, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105780,7 +105780,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage3DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorage3DMultisample(Int32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 samples, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage3DMultisample(Int32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 samples, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105794,7 +105794,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage3DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorage3DMultisample(UInt32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 samples, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage3DMultisample(UInt32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 samples, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105807,7 +105807,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage3DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorage3DMultisample(UInt32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 samples, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage3DMultisample(UInt32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 samples, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -105818,7 +105818,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem1DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem1D(Int32 texture, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem1D(Int32 texture, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -105829,7 +105829,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem1DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem1D(UInt32 texture, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem1D(UInt32 texture, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -105841,7 +105841,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem2DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem2D(Int32 texture, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem2D(Int32 texture, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -105853,7 +105853,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem2DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem2D(UInt32 texture, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem2D(UInt32 texture, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -105866,7 +105866,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorageMem2DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem2DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -105879,7 +105879,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorageMem2DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem2DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -105892,7 +105892,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem3DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem3D(Int32 texture, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem3D(Int32 texture, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -105905,7 +105905,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem3DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem3D(UInt32 texture, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem3D(UInt32 texture, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -105919,7 +105919,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorageMem3DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem3DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -105933,7 +105933,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorageMem3DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem3DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105946,7 +105946,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage1DEXT")] [CLSCompliant(false)] - public static void TextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105961,7 +105961,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T7[] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105976,7 +105976,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T7[,] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105991,7 +105991,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T7[,,] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106006,7 +106006,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T7 pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106019,7 +106019,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage1DEXT")] [CLSCompliant(false)] - public static void TextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106034,7 +106034,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T7[] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106049,7 +106049,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T7[,] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106064,7 +106064,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T7[,,] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106079,7 +106079,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T7 pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106094,7 +106094,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage2DEXT")] [CLSCompliant(false)] - public static void TextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106111,7 +106111,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106128,7 +106128,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106145,7 +106145,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106162,7 +106162,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106177,7 +106177,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage2DEXT")] [CLSCompliant(false)] - public static void TextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106194,7 +106194,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106211,7 +106211,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106228,7 +106228,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106245,7 +106245,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106262,7 +106262,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage3DEXT")] [CLSCompliant(false)] - public static void TextureSubImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureSubImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106281,7 +106281,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T11[] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106300,7 +106300,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T11[,] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106319,7 +106319,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T11[,,] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106338,7 +106338,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T11 pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106355,7 +106355,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage3DEXT")] [CLSCompliant(false)] - public static void TextureSubImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureSubImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106374,7 +106374,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T11[] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106393,7 +106393,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T11[,] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106412,7 +106412,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T11[,,] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106431,7 +106431,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T11 pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// Specify values to record in transform feedback buffers @@ -106450,7 +106450,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackVaryingsEXT")] [CLSCompliant(false)] - public static void TransformFeedbackVaryings(Int32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.OpenGL.ExtTransformFeedback bufferMode) { throw new NotImplementedException(); } + public static void TransformFeedbackVaryings(Int32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.OpenGL.ExtTransformFeedback bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// Specify values to record in transform feedback buffers @@ -106469,7 +106469,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackVaryingsEXT")] [CLSCompliant(false)] - public static void TransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.OpenGL.ExtTransformFeedback bufferMode) { throw new NotImplementedException(); } + public static void TransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.OpenGL.ExtTransformFeedback bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106482,7 +106482,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform1uiEXT")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 v0) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106495,7 +106495,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform1uiEXT")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, UInt32 v0) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, UInt32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106511,7 +106511,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform1uivEXT")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106527,7 +106527,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform1uivEXT")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106543,7 +106543,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform1uivEXT")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106559,7 +106559,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform1uivEXT")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106575,7 +106575,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform1uivEXT")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt32 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106591,7 +106591,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform1uivEXT")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106607,7 +106607,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform2uiEXT")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106623,7 +106623,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform2uiEXT")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, UInt32 v0, UInt32 v1) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, UInt32 v0, UInt32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106639,7 +106639,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform2uivEXT")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106655,7 +106655,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform2uivEXT")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106671,7 +106671,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform2uivEXT")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106687,7 +106687,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform2uivEXT")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106703,7 +106703,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform2uivEXT")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106722,7 +106722,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform3uiEXT")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106741,7 +106741,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform3uiEXT")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106757,7 +106757,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform3uivEXT")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106773,7 +106773,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform3uivEXT")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106789,7 +106789,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform3uivEXT")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106805,7 +106805,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform3uivEXT")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106821,7 +106821,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform3uivEXT")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106837,7 +106837,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform3uivEXT")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106859,7 +106859,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform4uiEXT")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106881,7 +106881,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform4uiEXT")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106897,7 +106897,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform4uivEXT")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106913,7 +106913,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform4uivEXT")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106929,7 +106929,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform4uivEXT")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106945,7 +106945,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform4uivEXT")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106961,7 +106961,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform4uivEXT")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106977,7 +106977,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform4uivEXT")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_bindable_uniform] /// @@ -106985,7 +106985,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_bindable_uniform", Version = "", EntryPoint = "glUniformBufferEXT")] [CLSCompliant(false)] - public static void UniformBuffer(Int32 program, Int32 location, Int32 buffer) { throw new NotImplementedException(); } + public static void UniformBuffer(Int32 program, Int32 location, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_bindable_uniform] /// @@ -106993,23 +106993,23 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_bindable_uniform", Version = "", EntryPoint = "glUniformBufferEXT")] [CLSCompliant(false)] - public static void UniformBuffer(UInt32 program, Int32 location, UInt32 buffer) { throw new NotImplementedException(); } + public static void UniformBuffer(UInt32 program, Int32 location, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_compiled_vertex_array] [AutoGenerated(Category = "EXT_compiled_vertex_array", Version = "", EntryPoint = "glUnlockArraysEXT")] - public static void UnlockArrays() { throw new NotImplementedException(); } + public static void UnlockArrays() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glUnmapNamedBufferEXT")] [CLSCompliant(false)] - public static bool UnmapNamedBuffer(Int32 buffer) { throw new NotImplementedException(); } + public static bool UnmapNamedBuffer(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glUnmapNamedBufferEXT")] [CLSCompliant(false)] - public static bool UnmapNamedBuffer(UInt32 buffer) { throw new NotImplementedException(); } + public static bool UnmapNamedBuffer(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind stages of a program object to a program pipeline @@ -107025,7 +107025,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseProgramStagesEXT")] [CLSCompliant(false)] - public static void UseProgramStages(Int32 pipeline, Int32 stages, Int32 program) { throw new NotImplementedException(); } + public static void UseProgramStages(Int32 pipeline, Int32 stages, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind stages of a program object to a program pipeline @@ -107041,21 +107041,21 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseProgramStagesEXT")] [CLSCompliant(false)] - public static void UseProgramStages(UInt32 pipeline, UInt32 stages, UInt32 program) { throw new NotImplementedException(); } + public static void UseProgramStages(UInt32 pipeline, UInt32 stages, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseShaderProgramEXT")] [CLSCompliant(false)] - public static void UseShaderProgram(OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects type, Int32 program) { throw new NotImplementedException(); } + public static void UseShaderProgram(OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects type, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseShaderProgramEXT")] [CLSCompliant(false)] - public static void UseShaderProgram(OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects type, UInt32 program) { throw new NotImplementedException(); } + public static void UseShaderProgram(OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects type, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Validate a program pipeline object against current GL state @@ -107065,7 +107065,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glValidateProgramPipelineEXT")] [CLSCompliant(false)] - public static void ValidateProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } + public static void ValidateProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Validate a program pipeline object against current GL state @@ -107075,154 +107075,154 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glValidateProgramPipelineEXT")] [CLSCompliant(false)] - public static void ValidateProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static void ValidateProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantbvEXT")] [CLSCompliant(false)] - public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] SByte[] addr) { throw new NotImplementedException(); } + public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] SByte[] addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantbvEXT")] [CLSCompliant(false)] - public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] ref SByte addr) { throw new NotImplementedException(); } + public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] ref SByte addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantbvEXT")] [CLSCompliant(false)] - public static unsafe void Variant(UInt32 id, [CountAttribute(Computed = "id")] SByte* addr) { throw new NotImplementedException(); } + public static unsafe void Variant(UInt32 id, [CountAttribute(Computed = "id")] SByte* addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantdvEXT")] [CLSCompliant(false)] - public static void Variant(Int32 id, [CountAttribute(Computed = "id")] Double[] addr) { throw new NotImplementedException(); } + public static void Variant(Int32 id, [CountAttribute(Computed = "id")] Double[] addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantdvEXT")] [CLSCompliant(false)] - public static void Variant(Int32 id, [CountAttribute(Computed = "id")] ref Double addr) { throw new NotImplementedException(); } + public static void Variant(Int32 id, [CountAttribute(Computed = "id")] ref Double addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantdvEXT")] [CLSCompliant(false)] - public static unsafe void Variant(Int32 id, [CountAttribute(Computed = "id")] Double* addr) { throw new NotImplementedException(); } + public static unsafe void Variant(Int32 id, [CountAttribute(Computed = "id")] Double* addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantdvEXT")] [CLSCompliant(false)] - public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] Double[] addr) { throw new NotImplementedException(); } + public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] Double[] addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantdvEXT")] [CLSCompliant(false)] - public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] ref Double addr) { throw new NotImplementedException(); } + public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] ref Double addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantdvEXT")] [CLSCompliant(false)] - public static unsafe void Variant(UInt32 id, [CountAttribute(Computed = "id")] Double* addr) { throw new NotImplementedException(); } + public static unsafe void Variant(UInt32 id, [CountAttribute(Computed = "id")] Double* addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantfvEXT")] [CLSCompliant(false)] - public static void Variant(Int32 id, [CountAttribute(Computed = "id")] Single[] addr) { throw new NotImplementedException(); } + public static void Variant(Int32 id, [CountAttribute(Computed = "id")] Single[] addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantfvEXT")] [CLSCompliant(false)] - public static void Variant(Int32 id, [CountAttribute(Computed = "id")] ref Single addr) { throw new NotImplementedException(); } + public static void Variant(Int32 id, [CountAttribute(Computed = "id")] ref Single addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantfvEXT")] [CLSCompliant(false)] - public static unsafe void Variant(Int32 id, [CountAttribute(Computed = "id")] Single* addr) { throw new NotImplementedException(); } + public static unsafe void Variant(Int32 id, [CountAttribute(Computed = "id")] Single* addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantfvEXT")] [CLSCompliant(false)] - public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] Single[] addr) { throw new NotImplementedException(); } + public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] Single[] addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantfvEXT")] [CLSCompliant(false)] - public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] ref Single addr) { throw new NotImplementedException(); } + public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] ref Single addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantfvEXT")] [CLSCompliant(false)] - public static unsafe void Variant(UInt32 id, [CountAttribute(Computed = "id")] Single* addr) { throw new NotImplementedException(); } + public static unsafe void Variant(UInt32 id, [CountAttribute(Computed = "id")] Single* addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantivEXT")] [CLSCompliant(false)] - public static void Variant(Int32 id, [CountAttribute(Computed = "id")] Int32[] addr) { throw new NotImplementedException(); } + public static void Variant(Int32 id, [CountAttribute(Computed = "id")] Int32[] addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantivEXT")] [CLSCompliant(false)] - public static void Variant(Int32 id, [CountAttribute(Computed = "id")] ref Int32 addr) { throw new NotImplementedException(); } + public static void Variant(Int32 id, [CountAttribute(Computed = "id")] ref Int32 addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantivEXT")] [CLSCompliant(false)] - public static unsafe void Variant(Int32 id, [CountAttribute(Computed = "id")] Int32* addr) { throw new NotImplementedException(); } + public static unsafe void Variant(Int32 id, [CountAttribute(Computed = "id")] Int32* addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantivEXT")] [CLSCompliant(false)] - public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] Int32[] addr) { throw new NotImplementedException(); } + public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] Int32[] addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantivEXT")] [CLSCompliant(false)] - public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] ref Int32 addr) { throw new NotImplementedException(); } + public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] ref Int32 addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantivEXT")] [CLSCompliant(false)] - public static unsafe void Variant(UInt32 id, [CountAttribute(Computed = "id")] Int32* addr) { throw new NotImplementedException(); } + public static unsafe void Variant(UInt32 id, [CountAttribute(Computed = "id")] Int32* addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -107231,7 +107231,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id,type,stride)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantPointerEXT")] [CLSCompliant(false)] - public static void VariantPointer(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, Int32 stride, [CountAttribute(Computed = "id,type,stride")] IntPtr addr) { throw new NotImplementedException(); } + public static void VariantPointer(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, Int32 stride, [CountAttribute(Computed = "id,type,stride")] IntPtr addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -107242,7 +107242,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VariantPointer(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type,stride")] T3[] addr) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -107253,7 +107253,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VariantPointer(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type,stride")] T3[,] addr) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -107264,7 +107264,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VariantPointer(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type,stride")] T3[,,] addr) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -107275,7 +107275,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VariantPointer(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type,stride")] ref T3 addr) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -107284,7 +107284,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id,type,stride)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantPointerEXT")] [CLSCompliant(false)] - public static void VariantPointer(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, UInt32 stride, [CountAttribute(Computed = "id,type,stride")] IntPtr addr) { throw new NotImplementedException(); } + public static void VariantPointer(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, UInt32 stride, [CountAttribute(Computed = "id,type,stride")] IntPtr addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -107295,7 +107295,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VariantPointer(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, UInt32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type,stride")] T3[] addr) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -107306,7 +107306,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VariantPointer(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, UInt32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type,stride")] T3[,] addr) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -107317,7 +107317,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VariantPointer(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, UInt32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type,stride")] T3[,,] addr) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -107328,133 +107328,133 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VariantPointer(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, UInt32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type,stride")] ref T3 addr) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantsvEXT")] [CLSCompliant(false)] - public static void Variant(Int32 id, [CountAttribute(Computed = "id")] Int16[] addr) { throw new NotImplementedException(); } + public static void Variant(Int32 id, [CountAttribute(Computed = "id")] Int16[] addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantsvEXT")] [CLSCompliant(false)] - public static void Variant(Int32 id, [CountAttribute(Computed = "id")] ref Int16 addr) { throw new NotImplementedException(); } + public static void Variant(Int32 id, [CountAttribute(Computed = "id")] ref Int16 addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantsvEXT")] [CLSCompliant(false)] - public static unsafe void Variant(Int32 id, [CountAttribute(Computed = "id")] Int16* addr) { throw new NotImplementedException(); } + public static unsafe void Variant(Int32 id, [CountAttribute(Computed = "id")] Int16* addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantsvEXT")] [CLSCompliant(false)] - public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] Int16[] addr) { throw new NotImplementedException(); } + public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] Int16[] addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantsvEXT")] [CLSCompliant(false)] - public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] ref Int16 addr) { throw new NotImplementedException(); } + public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] ref Int16 addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantsvEXT")] [CLSCompliant(false)] - public static unsafe void Variant(UInt32 id, [CountAttribute(Computed = "id")] Int16* addr) { throw new NotImplementedException(); } + public static unsafe void Variant(UInt32 id, [CountAttribute(Computed = "id")] Int16* addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantubvEXT")] [CLSCompliant(false)] - public static void Variant(Int32 id, [CountAttribute(Computed = "id")] Byte[] addr) { throw new NotImplementedException(); } + public static void Variant(Int32 id, [CountAttribute(Computed = "id")] Byte[] addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantubvEXT")] [CLSCompliant(false)] - public static void Variant(Int32 id, [CountAttribute(Computed = "id")] ref Byte addr) { throw new NotImplementedException(); } + public static void Variant(Int32 id, [CountAttribute(Computed = "id")] ref Byte addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantubvEXT")] [CLSCompliant(false)] - public static unsafe void Variant(Int32 id, [CountAttribute(Computed = "id")] Byte* addr) { throw new NotImplementedException(); } + public static unsafe void Variant(Int32 id, [CountAttribute(Computed = "id")] Byte* addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantubvEXT")] [CLSCompliant(false)] - public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] Byte[] addr) { throw new NotImplementedException(); } + public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] Byte[] addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantubvEXT")] [CLSCompliant(false)] - public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] ref Byte addr) { throw new NotImplementedException(); } + public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] ref Byte addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantubvEXT")] [CLSCompliant(false)] - public static unsafe void Variant(UInt32 id, [CountAttribute(Computed = "id")] Byte* addr) { throw new NotImplementedException(); } + public static unsafe void Variant(UInt32 id, [CountAttribute(Computed = "id")] Byte* addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantuivEXT")] [CLSCompliant(false)] - public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] UInt32[] addr) { throw new NotImplementedException(); } + public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] UInt32[] addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantuivEXT")] [CLSCompliant(false)] - public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] ref UInt32 addr) { throw new NotImplementedException(); } + public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] ref UInt32 addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantuivEXT")] [CLSCompliant(false)] - public static unsafe void Variant(UInt32 id, [CountAttribute(Computed = "id")] UInt32* addr) { throw new NotImplementedException(); } + public static unsafe void Variant(UInt32 id, [CountAttribute(Computed = "id")] UInt32* addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantusvEXT")] [CLSCompliant(false)] - public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] UInt16[] addr) { throw new NotImplementedException(); } + public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] UInt16[] addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantusvEXT")] [CLSCompliant(false)] - public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] ref UInt16 addr) { throw new NotImplementedException(); } + public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] ref UInt16 addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantusvEXT")] [CLSCompliant(false)] - public static unsafe void Variant(UInt32 id, [CountAttribute(Computed = "id")] UInt16* addr) { throw new NotImplementedException(); } + public static unsafe void Variant(UInt32 id, [CountAttribute(Computed = "id")] UInt16* addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107464,7 +107464,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayBindVertexBufferEXT")] [CLSCompliant(false)] - public static void VertexArrayBindVertexBuffer(Int32 vaobj, Int32 bindingindex, Int32 buffer, IntPtr offset, Int32 stride) { throw new NotImplementedException(); } + public static void VertexArrayBindVertexBuffer(Int32 vaobj, Int32 bindingindex, Int32 buffer, IntPtr offset, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107474,7 +107474,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayBindVertexBufferEXT")] [CLSCompliant(false)] - public static void VertexArrayBindVertexBuffer(UInt32 vaobj, UInt32 bindingindex, UInt32 buffer, IntPtr offset, Int32 stride) { throw new NotImplementedException(); } + public static void VertexArrayBindVertexBuffer(UInt32 vaobj, UInt32 bindingindex, UInt32 buffer, IntPtr offset, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107485,7 +107485,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayColorOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayColorOffset(Int32 vaobj, Int32 buffer, Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayColorOffset(Int32 vaobj, Int32 buffer, Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107496,7 +107496,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayColorOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayColorOffset(UInt32 vaobj, UInt32 buffer, Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayColorOffset(UInt32 vaobj, UInt32 buffer, Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107505,7 +107505,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayEdgeFlagOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayEdgeFlagOffset(Int32 vaobj, Int32 buffer, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayEdgeFlagOffset(Int32 vaobj, Int32 buffer, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107514,7 +107514,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayEdgeFlagOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayEdgeFlagOffset(UInt32 vaobj, UInt32 buffer, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayEdgeFlagOffset(UInt32 vaobj, UInt32 buffer, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107524,7 +107524,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayFogCoordOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayFogCoordOffset(Int32 vaobj, Int32 buffer, OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayFogCoordOffset(Int32 vaobj, Int32 buffer, OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107534,7 +107534,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayFogCoordOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayFogCoordOffset(UInt32 vaobj, UInt32 buffer, OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayFogCoordOffset(UInt32 vaobj, UInt32 buffer, OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107544,7 +107544,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayIndexOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayIndexOffset(Int32 vaobj, Int32 buffer, OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayIndexOffset(Int32 vaobj, Int32 buffer, OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107554,7 +107554,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayIndexOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayIndexOffset(UInt32 vaobj, UInt32 buffer, OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayIndexOffset(UInt32 vaobj, UInt32 buffer, OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107566,7 +107566,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayMultiTexCoordOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayMultiTexCoordOffset(Int32 vaobj, Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess texunit, Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayMultiTexCoordOffset(Int32 vaobj, Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess texunit, Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107578,7 +107578,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayMultiTexCoordOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayMultiTexCoordOffset(UInt32 vaobj, UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess texunit, Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayMultiTexCoordOffset(UInt32 vaobj, UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess texunit, Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107588,7 +107588,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayNormalOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayNormalOffset(Int32 vaobj, Int32 buffer, OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayNormalOffset(Int32 vaobj, Int32 buffer, OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107598,7 +107598,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayNormalOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayNormalOffset(UInt32 vaobj, UInt32 buffer, OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayNormalOffset(UInt32 vaobj, UInt32 buffer, OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107609,7 +107609,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArraySecondaryColorOffsetEXT")] [CLSCompliant(false)] - public static void VertexArraySecondaryColorOffset(Int32 vaobj, Int32 buffer, Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArraySecondaryColorOffset(Int32 vaobj, Int32 buffer, Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107620,7 +107620,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArraySecondaryColorOffsetEXT")] [CLSCompliant(false)] - public static void VertexArraySecondaryColorOffset(UInt32 vaobj, UInt32 buffer, Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArraySecondaryColorOffset(UInt32 vaobj, UInt32 buffer, Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107631,7 +107631,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayTexCoordOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayTexCoordOffset(Int32 vaobj, Int32 buffer, Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayTexCoordOffset(Int32 vaobj, Int32 buffer, Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107642,7 +107642,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayTexCoordOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayTexCoordOffset(UInt32 vaobj, UInt32 buffer, Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayTexCoordOffset(UInt32 vaobj, UInt32 buffer, Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107650,7 +107650,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribBindingEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribBinding(Int32 vaobj, Int32 attribindex, Int32 bindingindex) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribBinding(Int32 vaobj, Int32 attribindex, Int32 bindingindex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107658,7 +107658,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribBindingEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribBinding(UInt32 vaobj, UInt32 attribindex, UInt32 bindingindex) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribBinding(UInt32 vaobj, UInt32 attribindex, UInt32 bindingindex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107666,7 +107666,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribDivisorEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribDivisor(Int32 vaobj, Int32 index, Int32 divisor) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribDivisor(Int32 vaobj, Int32 index, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107674,7 +107674,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribDivisorEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribDivisor(UInt32 vaobj, UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribDivisor(UInt32 vaobj, UInt32 index, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107685,7 +107685,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribFormatEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, bool normalized, Int32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, bool normalized, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107696,7 +107696,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribFormatEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, bool normalized, UInt32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, bool normalized, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107706,7 +107706,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribIFormatEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribIFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, Int32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribIFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107716,7 +107716,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribIFormatEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribIFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, UInt32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribIFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107728,7 +107728,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribIOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribIOffset(Int32 vaobj, Int32 buffer, Int32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribIOffset(Int32 vaobj, Int32 buffer, Int32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107740,7 +107740,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribIOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribIOffset(UInt32 vaobj, UInt32 buffer, UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribIOffset(UInt32 vaobj, UInt32 buffer, UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107750,7 +107750,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribLFormatEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribLFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, Int32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribLFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107760,7 +107760,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribLFormatEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribLFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, UInt32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribLFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107772,7 +107772,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribLOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribLOffset(Int32 vaobj, Int32 buffer, Int32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribLOffset(Int32 vaobj, Int32 buffer, Int32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107785,7 +107785,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ExtDirectStateAccess overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribLOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribLOffset(Int32 vaobj, Int32 buffer, Int32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribLOffset(Int32 vaobj, Int32 buffer, Int32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107797,7 +107797,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribLOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribLOffset(UInt32 vaobj, UInt32 buffer, UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribLOffset(UInt32 vaobj, UInt32 buffer, UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107810,7 +107810,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ExtDirectStateAccess overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribLOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribLOffset(UInt32 vaobj, UInt32 buffer, UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribLOffset(UInt32 vaobj, UInt32 buffer, UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107823,7 +107823,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribOffset(Int32 vaobj, Int32 buffer, Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribOffset(Int32 vaobj, Int32 buffer, Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107836,7 +107836,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribOffset(UInt32 vaobj, UInt32 buffer, UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribOffset(UInt32 vaobj, UInt32 buffer, UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107844,7 +107844,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexBindingDivisorEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexBindingDivisor(Int32 vaobj, Int32 bindingindex, Int32 divisor) { throw new NotImplementedException(); } + public static void VertexArrayVertexBindingDivisor(Int32 vaobj, Int32 bindingindex, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107852,7 +107852,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexBindingDivisorEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexBindingDivisor(UInt32 vaobj, UInt32 bindingindex, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexArrayVertexBindingDivisor(UInt32 vaobj, UInt32 bindingindex, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107863,7 +107863,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexOffset(Int32 vaobj, Int32 buffer, Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayVertexOffset(Int32 vaobj, Int32 buffer, Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107874,49 +107874,49 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexOffset(UInt32 vaobj, UInt32 buffer, Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayVertexOffset(UInt32 vaobj, UInt32 buffer, Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI1iEXT")] [CLSCompliant(false)] - public static void VertexAttribI1(Int32 index, Int32 x) { throw new NotImplementedException(); } + public static void VertexAttribI1(Int32 index, Int32 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI1iEXT")] [CLSCompliant(false)] - public static void VertexAttribI1(UInt32 index, Int32 x) { throw new NotImplementedException(); } + public static void VertexAttribI1(UInt32 index, Int32 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 1] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI1ivEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribI1(Int32 index, [CountAttribute(Count = 1)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI1(Int32 index, [CountAttribute(Count = 1)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 1] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI1ivEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribI1(UInt32 index, [CountAttribute(Count = 1)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI1(UInt32 index, [CountAttribute(Count = 1)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI1uiEXT")] [CLSCompliant(false)] - public static void VertexAttribI1(UInt32 index, UInt32 x) { throw new NotImplementedException(); } + public static void VertexAttribI1(UInt32 index, UInt32 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 1] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI1uivEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribI1(UInt32 index, [CountAttribute(Count = 1)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI1(UInt32 index, [CountAttribute(Count = 1)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -107924,7 +107924,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI2iEXT")] [CLSCompliant(false)] - public static void VertexAttribI2(Int32 index, Int32 x, Int32 y) { throw new NotImplementedException(); } + public static void VertexAttribI2(Int32 index, Int32 x, Int32 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -107932,49 +107932,49 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI2iEXT")] [CLSCompliant(false)] - public static void VertexAttribI2(UInt32 index, Int32 x, Int32 y) { throw new NotImplementedException(); } + public static void VertexAttribI2(UInt32 index, Int32 x, Int32 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI2ivEXT")] [CLSCompliant(false)] - public static void VertexAttribI2(Int32 index, [CountAttribute(Count = 2)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI2(Int32 index, [CountAttribute(Count = 2)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI2ivEXT")] [CLSCompliant(false)] - public static void VertexAttribI2(Int32 index, [CountAttribute(Count = 2)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI2(Int32 index, [CountAttribute(Count = 2)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI2ivEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribI2(Int32 index, [CountAttribute(Count = 2)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI2(Int32 index, [CountAttribute(Count = 2)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI2ivEXT")] [CLSCompliant(false)] - public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI2ivEXT")] [CLSCompliant(false)] - public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI2ivEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -107982,28 +107982,28 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI2uiEXT")] [CLSCompliant(false)] - public static void VertexAttribI2(UInt32 index, UInt32 x, UInt32 y) { throw new NotImplementedException(); } + public static void VertexAttribI2(UInt32 index, UInt32 x, UInt32 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI2uivEXT")] [CLSCompliant(false)] - public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] UInt32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI2uivEXT")] [CLSCompliant(false)] - public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] ref UInt32 v) { throw new NotImplementedException(); } + public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI2uivEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -108012,7 +108012,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI3iEXT")] [CLSCompliant(false)] - public static void VertexAttribI3(Int32 index, Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void VertexAttribI3(Int32 index, Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -108021,49 +108021,49 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI3iEXT")] [CLSCompliant(false)] - public static void VertexAttribI3(UInt32 index, Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void VertexAttribI3(UInt32 index, Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI3ivEXT")] [CLSCompliant(false)] - public static void VertexAttribI3(Int32 index, [CountAttribute(Count = 3)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI3(Int32 index, [CountAttribute(Count = 3)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI3ivEXT")] [CLSCompliant(false)] - public static void VertexAttribI3(Int32 index, [CountAttribute(Count = 3)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI3(Int32 index, [CountAttribute(Count = 3)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI3ivEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribI3(Int32 index, [CountAttribute(Count = 3)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI3(Int32 index, [CountAttribute(Count = 3)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI3ivEXT")] [CLSCompliant(false)] - public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI3ivEXT")] [CLSCompliant(false)] - public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI3ivEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -108072,49 +108072,49 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI3uiEXT")] [CLSCompliant(false)] - public static void VertexAttribI3(UInt32 index, UInt32 x, UInt32 y, UInt32 z) { throw new NotImplementedException(); } + public static void VertexAttribI3(UInt32 index, UInt32 x, UInt32 y, UInt32 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI3uivEXT")] [CLSCompliant(false)] - public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] UInt32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI3uivEXT")] [CLSCompliant(false)] - public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] ref UInt32 v) { throw new NotImplementedException(); } + public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI3uivEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4bvEXT")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] SByte[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] SByte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4bvEXT")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref SByte v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref SByte v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4bvEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] SByte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] SByte* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -108124,7 +108124,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4iEXT")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -108134,133 +108134,133 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4iEXT")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4ivEXT")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4ivEXT")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4ivEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4ivEXT")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4ivEXT")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4ivEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4svEXT")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4svEXT")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4svEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4svEXT")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4svEXT")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4svEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4ubvEXT")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4ubvEXT")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4ubvEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4ubvEXT")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4ubvEXT")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4ubvEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -108270,49 +108270,49 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4uiEXT")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4uivEXT")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4uivEXT")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4uivEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4usvEXT")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt16[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4usvEXT")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref UInt16 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref UInt16 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4usvEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt16* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -108322,7 +108322,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,type,stride)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribIPointerEXT")] [CLSCompliant(false)] - public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -108334,7 +108334,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -108346,7 +108346,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -108358,7 +108358,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -108370,7 +108370,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -108380,7 +108380,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,type,stride)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribIPointerEXT")] [CLSCompliant(false)] - public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -108392,7 +108392,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -108404,7 +108404,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -108416,7 +108416,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -108428,35 +108428,35 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL1dEXT")] [CLSCompliant(false)] - public static void VertexAttribL1(Int32 index, Double x) { throw new NotImplementedException(); } + public static void VertexAttribL1(Int32 index, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL1dEXT")] [CLSCompliant(false)] - public static void VertexAttribL1(UInt32 index, Double x) { throw new NotImplementedException(); } + public static void VertexAttribL1(UInt32 index, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [length: 1] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL1dvEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribL1(Int32 index, [CountAttribute(Count = 1)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL1(Int32 index, [CountAttribute(Count = 1)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [length: 1] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL1dvEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribL1(UInt32 index, [CountAttribute(Count = 1)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL1(UInt32 index, [CountAttribute(Count = 1)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -108464,7 +108464,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL2dEXT")] [CLSCompliant(false)] - public static void VertexAttribL2(Int32 index, Double x, Double y) { throw new NotImplementedException(); } + public static void VertexAttribL2(Int32 index, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -108472,49 +108472,49 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL2dEXT")] [CLSCompliant(false)] - public static void VertexAttribL2(UInt32 index, Double x, Double y) { throw new NotImplementedException(); } + public static void VertexAttribL2(UInt32 index, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [length: 2] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL2dvEXT")] [CLSCompliant(false)] - public static void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [length: 2] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL2dvEXT")] [CLSCompliant(false)] - public static void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [length: 2] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL2dvEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [length: 2] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL2dvEXT")] [CLSCompliant(false)] - public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [length: 2] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL2dvEXT")] [CLSCompliant(false)] - public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [length: 2] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL2dvEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -108523,7 +108523,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL3dEXT")] [CLSCompliant(false)] - public static void VertexAttribL3(Int32 index, Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void VertexAttribL3(Int32 index, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -108532,49 +108532,49 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL3dEXT")] [CLSCompliant(false)] - public static void VertexAttribL3(UInt32 index, Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void VertexAttribL3(UInt32 index, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [length: 3] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL3dvEXT")] [CLSCompliant(false)] - public static void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [length: 3] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL3dvEXT")] [CLSCompliant(false)] - public static void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [length: 3] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL3dvEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [length: 3] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL3dvEXT")] [CLSCompliant(false)] - public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [length: 3] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL3dvEXT")] [CLSCompliant(false)] - public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [length: 3] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL3dvEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -108584,7 +108584,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL4dEXT")] [CLSCompliant(false)] - public static void VertexAttribL4(Int32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void VertexAttribL4(Int32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -108594,49 +108594,49 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL4dEXT")] [CLSCompliant(false)] - public static void VertexAttribL4(UInt32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void VertexAttribL4(UInt32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [length: 4] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL4dvEXT")] [CLSCompliant(false)] - public static void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [length: 4] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL4dvEXT")] [CLSCompliant(false)] - public static void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [length: 4] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL4dvEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [length: 4] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL4dvEXT")] [CLSCompliant(false)] - public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [length: 4] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL4dvEXT")] [CLSCompliant(false)] - public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [length: 4] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL4dvEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -108646,7 +108646,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: size] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribLPointerEXT")] [CLSCompliant(false)] - public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, [CountAttribute(Parameter = "size")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, [CountAttribute(Parameter = "size")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -108658,7 +108658,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -108670,7 +108670,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -108682,7 +108682,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -108694,7 +108694,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -108704,7 +108704,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: size] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribLPointerEXT")] [CLSCompliant(false)] - public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, [CountAttribute(Parameter = "size")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, [CountAttribute(Parameter = "size")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -108716,7 +108716,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -108728,7 +108728,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -108740,7 +108740,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -108752,7 +108752,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of vertex data @@ -108773,7 +108773,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the first coordinate of the first vertex in the array. The initial value is 0. /// [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glVertexPointerEXT")] - public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, Int32 count, [CountAttribute(Computed = "size,type,stride,count")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, Int32 count, [CountAttribute(Computed = "size,type,stride,count")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of vertex data @@ -108797,7 +108797,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride,count")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of vertex data @@ -108821,7 +108821,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride,count")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of vertex data @@ -108845,7 +108845,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride,count")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of vertex data @@ -108868,18 +108868,18 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glVertexPointerEXT")] public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride,count")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_weighting] /// [AutoGenerated(Category = "EXT_vertex_weighting", Version = "", EntryPoint = "glVertexWeightfEXT")] - public static void VertexWeight(Single weight) { throw new NotImplementedException(); } + public static void VertexWeight(Single weight) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_weighting] /// [length: 1] [AutoGenerated(Category = "EXT_vertex_weighting", Version = "", EntryPoint = "glVertexWeightfvEXT")] [CLSCompliant(false)] - public static unsafe void VertexWeight([CountAttribute(Count = 1)] Single* weight) { throw new NotImplementedException(); } + public static unsafe void VertexWeight([CountAttribute(Count = 1)] Single* weight) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_weighting] /// @@ -108887,7 +108887,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: COMPSIZE(type,stride)] [AutoGenerated(Category = "EXT_vertex_weighting", Version = "", EntryPoint = "glVertexWeightPointerEXT")] - public static void VertexWeightPointer(Int32 size, OpenTK.Graphics.OpenGL.ExtVertexWeighting type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexWeightPointer(Int32 size, OpenTK.Graphics.OpenGL.ExtVertexWeighting type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_weighting] /// @@ -108898,7 +108898,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexWeightPointer(Int32 size, OpenTK.Graphics.OpenGL.ExtVertexWeighting type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T3[] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_weighting] /// @@ -108909,7 +108909,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexWeightPointer(Int32 size, OpenTK.Graphics.OpenGL.ExtVertexWeighting type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T3[,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_weighting] /// @@ -108920,7 +108920,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexWeightPointer(Int32 size, OpenTK.Graphics.OpenGL.ExtVertexWeighting type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T3[,,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_weighting] /// @@ -108930,7 +108930,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_vertex_weighting", Version = "", EntryPoint = "glVertexWeightPointerEXT")] public static void VertexWeightPointer(Int32 size, OpenTK.Graphics.OpenGL.ExtVertexWeighting type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] ref T3 pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -108941,7 +108941,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.OpenGL.TextureLayout[] srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.OpenGL.TextureLayout[] srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -108952,7 +108952,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.OpenGL.TextureLayout srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.OpenGL.TextureLayout srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -108963,7 +108963,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.OpenGL.TextureLayout* srcLayouts) { throw new NotImplementedException(); } + public static unsafe void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.OpenGL.TextureLayout* srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -108974,7 +108974,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.OpenGL.TextureLayout[] srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.OpenGL.TextureLayout[] srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -108985,7 +108985,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.OpenGL.TextureLayout srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.OpenGL.TextureLayout srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -108996,7 +108996,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.OpenGL.TextureLayout* srcLayouts) { throw new NotImplementedException(); } + public static unsafe void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.OpenGL.TextureLayout* srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_window_rectangles] /// @@ -109004,7 +109004,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(count)] [AutoGenerated(Category = "EXT_window_rectangles", Version = "", EntryPoint = "glWindowRectanglesEXT")] [CLSCompliant(false)] - public static void WindowRectangles(OpenTK.Graphics.OpenGL.ExtWindowRectangles mode, Int32 count, [CountAttribute(Computed = "count")] Int32[] box) { throw new NotImplementedException(); } + public static void WindowRectangles(OpenTK.Graphics.OpenGL.ExtWindowRectangles mode, Int32 count, [CountAttribute(Computed = "count")] Int32[] box) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_window_rectangles] /// @@ -109012,7 +109012,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(count)] [AutoGenerated(Category = "EXT_window_rectangles", Version = "", EntryPoint = "glWindowRectanglesEXT")] [CLSCompliant(false)] - public static void WindowRectangles(OpenTK.Graphics.OpenGL.ExtWindowRectangles mode, Int32 count, [CountAttribute(Computed = "count")] ref Int32 box) { throw new NotImplementedException(); } + public static void WindowRectangles(OpenTK.Graphics.OpenGL.ExtWindowRectangles mode, Int32 count, [CountAttribute(Computed = "count")] ref Int32 box) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_window_rectangles] /// @@ -109020,7 +109020,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(count)] [AutoGenerated(Category = "EXT_window_rectangles", Version = "", EntryPoint = "glWindowRectanglesEXT")] [CLSCompliant(false)] - public static unsafe void WindowRectangles(OpenTK.Graphics.OpenGL.ExtWindowRectangles mode, Int32 count, [CountAttribute(Computed = "count")] Int32* box) { throw new NotImplementedException(); } + public static unsafe void WindowRectangles(OpenTK.Graphics.OpenGL.ExtWindowRectangles mode, Int32 count, [CountAttribute(Computed = "count")] Int32* box) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -109031,7 +109031,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glWriteMaskEXT")] [CLSCompliant(false)] - public static void WriteMask(Int32 res, Int32 @in, OpenTK.Graphics.OpenGL.ExtVertexShader outX, OpenTK.Graphics.OpenGL.ExtVertexShader outY, OpenTK.Graphics.OpenGL.ExtVertexShader outZ, OpenTK.Graphics.OpenGL.ExtVertexShader outW) { throw new NotImplementedException(); } + public static void WriteMask(Int32 res, Int32 @in, OpenTK.Graphics.OpenGL.ExtVertexShader outX, OpenTK.Graphics.OpenGL.ExtVertexShader outY, OpenTK.Graphics.OpenGL.ExtVertexShader outZ, OpenTK.Graphics.OpenGL.ExtVertexShader outW) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -109042,7 +109042,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glWriteMaskEXT")] [CLSCompliant(false)] - public static void WriteMask(UInt32 res, UInt32 @in, OpenTK.Graphics.OpenGL.ExtVertexShader outX, OpenTK.Graphics.OpenGL.ExtVertexShader outY, OpenTK.Graphics.OpenGL.ExtVertexShader outZ, OpenTK.Graphics.OpenGL.ExtVertexShader outW) { throw new NotImplementedException(); } + public static void WriteMask(UInt32 res, UInt32 @in, OpenTK.Graphics.OpenGL.ExtVertexShader outX, OpenTK.Graphics.OpenGL.ExtVertexShader outY, OpenTK.Graphics.OpenGL.ExtVertexShader outZ, OpenTK.Graphics.OpenGL.ExtVertexShader outW) { throw new BindingsNotRewrittenException(); } } @@ -109050,13 +109050,13 @@ namespace OpenTK.Graphics.OpenGL { /// [requires: GREMEDY_frame_terminator] [AutoGenerated(Category = "GREMEDY_frame_terminator", Version = "", EntryPoint = "glFrameTerminatorGREMEDY")] - public static void FrameTerminator() { throw new NotImplementedException(); } + public static void FrameTerminator() { throw new BindingsNotRewrittenException(); } /// [requires: GREMEDY_string_marker] /// /// [length: len] [AutoGenerated(Category = "GREMEDY_string_marker", Version = "", EntryPoint = "glStringMarkerGREMEDY")] - public static void StringMarker(Int32 len, [CountAttribute(Parameter = "len")] IntPtr @string) { throw new NotImplementedException(); } + public static void StringMarker(Int32 len, [CountAttribute(Parameter = "len")] IntPtr @string) { throw new BindingsNotRewrittenException(); } /// [requires: GREMEDY_string_marker] /// @@ -109065,7 +109065,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StringMarker(Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T1[] @string) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: GREMEDY_string_marker] /// @@ -109074,7 +109074,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StringMarker(Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T1[,] @string) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: GREMEDY_string_marker] /// @@ -109083,7 +109083,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StringMarker(Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T1[,,] @string) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: GREMEDY_string_marker] /// @@ -109091,7 +109091,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "GREMEDY_string_marker", Version = "", EntryPoint = "glStringMarkerGREMEDY")] public static void StringMarker(Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] ref T1 @string) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } } @@ -109103,7 +109103,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "HP_image_transform", Version = "", EntryPoint = "glGetImageTransformParameterfvHP")] [CLSCompliant(false)] - public static void GetImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: HP_image_transform] /// @@ -109111,7 +109111,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "HP_image_transform", Version = "", EntryPoint = "glGetImageTransformParameterfvHP")] [CLSCompliant(false)] - public static void GetImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: HP_image_transform] /// @@ -109119,7 +109119,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "HP_image_transform", Version = "", EntryPoint = "glGetImageTransformParameterfvHP")] [CLSCompliant(false)] - public static unsafe void GetImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: HP_image_transform] /// @@ -109127,7 +109127,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "HP_image_transform", Version = "", EntryPoint = "glGetImageTransformParameterivHP")] [CLSCompliant(false)] - public static void GetImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: HP_image_transform] /// @@ -109135,7 +109135,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "HP_image_transform", Version = "", EntryPoint = "glGetImageTransformParameterivHP")] [CLSCompliant(false)] - public static void GetImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: HP_image_transform] /// @@ -109143,14 +109143,14 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "HP_image_transform", Version = "", EntryPoint = "glGetImageTransformParameterivHP")] [CLSCompliant(false)] - public static unsafe void GetImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: HP_image_transform] /// /// /// [AutoGenerated(Category = "HP_image_transform", Version = "", EntryPoint = "glImageTransformParameterfHP")] - public static void ImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, Single param) { throw new NotImplementedException(); } + public static void ImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: HP_image_transform] /// @@ -109158,7 +109158,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "HP_image_transform", Version = "", EntryPoint = "glImageTransformParameterfvHP")] [CLSCompliant(false)] - public static void ImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void ImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: HP_image_transform] /// @@ -109166,14 +109166,14 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "HP_image_transform", Version = "", EntryPoint = "glImageTransformParameterfvHP")] [CLSCompliant(false)] - public static unsafe void ImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: HP_image_transform] /// /// /// [AutoGenerated(Category = "HP_image_transform", Version = "", EntryPoint = "glImageTransformParameteriHP")] - public static void ImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, Int32 param) { throw new NotImplementedException(); } + public static void ImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: HP_image_transform] /// @@ -109181,7 +109181,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "HP_image_transform", Version = "", EntryPoint = "glImageTransformParameterivHP")] [CLSCompliant(false)] - public static void ImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void ImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: HP_image_transform] /// @@ -109189,7 +109189,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "HP_image_transform", Version = "", EntryPoint = "glImageTransformParameterivHP")] [CLSCompliant(false)] - public static unsafe void ImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } } @@ -109202,7 +109202,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,type,stride)] /// [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glColorPointerListIBM")] - public static void ColorPointerList(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer, Int32 ptrstride) { throw new NotImplementedException(); } + public static void ColorPointerList(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer, Int32 ptrstride) { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109214,7 +109214,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorPointerList(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[] pointer, Int32 ptrstride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109226,7 +109226,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorPointerList(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,] pointer, Int32 ptrstride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109238,7 +109238,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorPointerList(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,,] pointer, Int32 ptrstride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109249,7 +109249,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glColorPointerListIBM")] public static void ColorPointerList(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T3 pointer, Int32 ptrstride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109257,7 +109257,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glEdgeFlagPointerListIBM")] [CLSCompliant(false)] - public static unsafe void EdgeFlagPointerList(Int32 stride, [CountAttribute(Computed = "stride")] bool*[] pointer, Int32 ptrstride) { throw new NotImplementedException(); } + public static unsafe void EdgeFlagPointerList(Int32 stride, [CountAttribute(Computed = "stride")] bool*[] pointer, Int32 ptrstride) { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109265,7 +109265,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glEdgeFlagPointerListIBM")] [CLSCompliant(false)] - public static unsafe void EdgeFlagPointerList(Int32 stride, [CountAttribute(Computed = "stride")] ref bool* pointer, Int32 ptrstride) { throw new NotImplementedException(); } + public static unsafe void EdgeFlagPointerList(Int32 stride, [CountAttribute(Computed = "stride")] ref bool* pointer, Int32 ptrstride) { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109273,12 +109273,12 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glEdgeFlagPointerListIBM")] [CLSCompliant(false)] - public static unsafe void EdgeFlagPointerList(Int32 stride, [CountAttribute(Computed = "stride")] bool** pointer, Int32 ptrstride) { throw new NotImplementedException(); } + public static unsafe void EdgeFlagPointerList(Int32 stride, [CountAttribute(Computed = "stride")] bool** pointer, Int32 ptrstride) { throw new BindingsNotRewrittenException(); } /// [requires: IBM_static_data] /// [AutoGenerated(Category = "IBM_static_data", Version = "", EntryPoint = "glFlushStaticDataIBM")] - public static void FlushStaticData(OpenTK.Graphics.OpenGL.IbmStaticData target) { throw new NotImplementedException(); } + public static void FlushStaticData(OpenTK.Graphics.OpenGL.IbmStaticData target) { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109286,7 +109286,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(type,stride)] /// [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glFogCoordPointerListIBM")] - public static void FogCoordPointerList(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer, Int32 ptrstride) { throw new NotImplementedException(); } + public static void FogCoordPointerList(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer, Int32 ptrstride) { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109297,7 +109297,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void FogCoordPointerList(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[] pointer, Int32 ptrstride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109308,7 +109308,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void FogCoordPointerList(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,] pointer, Int32 ptrstride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109319,7 +109319,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void FogCoordPointerList(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,,] pointer, Int32 ptrstride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109329,7 +109329,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glFogCoordPointerListIBM")] public static void FogCoordPointerList(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] ref T2 pointer, Int32 ptrstride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109338,7 +109338,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use FogPointerType overload instead")] [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glFogCoordPointerListIBM")] - public static void FogCoordPointerList(OpenTK.Graphics.OpenGL.IbmVertexArrayLists type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer, Int32 ptrstride) { throw new NotImplementedException(); } + public static void FogCoordPointerList(OpenTK.Graphics.OpenGL.IbmVertexArrayLists type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer, Int32 ptrstride) { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109350,7 +109350,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void FogCoordPointerList(OpenTK.Graphics.OpenGL.IbmVertexArrayLists type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[] pointer, Int32 ptrstride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109362,7 +109362,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void FogCoordPointerList(OpenTK.Graphics.OpenGL.IbmVertexArrayLists type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,] pointer, Int32 ptrstride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109374,7 +109374,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void FogCoordPointerList(OpenTK.Graphics.OpenGL.IbmVertexArrayLists type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,,] pointer, Int32 ptrstride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109385,7 +109385,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glFogCoordPointerListIBM")] public static void FogCoordPointerList(OpenTK.Graphics.OpenGL.IbmVertexArrayLists type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] ref T2 pointer, Int32 ptrstride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109393,7 +109393,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(type,stride)] /// [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glIndexPointerListIBM")] - public static void IndexPointerList(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer, Int32 ptrstride) { throw new NotImplementedException(); } + public static void IndexPointerList(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer, Int32 ptrstride) { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109404,7 +109404,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void IndexPointerList(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[] pointer, Int32 ptrstride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109415,7 +109415,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void IndexPointerList(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,] pointer, Int32 ptrstride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109426,7 +109426,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void IndexPointerList(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,,] pointer, Int32 ptrstride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109436,7 +109436,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glIndexPointerListIBM")] public static void IndexPointerList(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] ref T2 pointer, Int32 ptrstride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_multimode_draw_arrays] /// [length: COMPSIZE(primcount)] @@ -109446,7 +109446,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "IBM_multimode_draw_arrays", Version = "", EntryPoint = "glMultiModeDrawArraysIBM")] [CLSCompliant(false)] - public static void MultiModeDrawArrays([CountAttribute(Computed = "primcount")] OpenTK.Graphics.OpenGL.PrimitiveType[] mode, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount, Int32 modestride) { throw new NotImplementedException(); } + public static void MultiModeDrawArrays([CountAttribute(Computed = "primcount")] OpenTK.Graphics.OpenGL.PrimitiveType[] mode, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount, Int32 modestride) { throw new BindingsNotRewrittenException(); } /// [requires: IBM_multimode_draw_arrays] /// [length: COMPSIZE(primcount)] @@ -109456,7 +109456,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "IBM_multimode_draw_arrays", Version = "", EntryPoint = "glMultiModeDrawArraysIBM")] [CLSCompliant(false)] - public static void MultiModeDrawArrays([CountAttribute(Computed = "primcount")] ref OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount, Int32 modestride) { throw new NotImplementedException(); } + public static void MultiModeDrawArrays([CountAttribute(Computed = "primcount")] ref OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount, Int32 modestride) { throw new BindingsNotRewrittenException(); } /// [requires: IBM_multimode_draw_arrays] /// [length: COMPSIZE(primcount)] @@ -109466,7 +109466,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "IBM_multimode_draw_arrays", Version = "", EntryPoint = "glMultiModeDrawArraysIBM")] [CLSCompliant(false)] - public static unsafe void MultiModeDrawArrays([CountAttribute(Computed = "primcount")] OpenTK.Graphics.OpenGL.PrimitiveType* mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount, Int32 modestride) { throw new NotImplementedException(); } + public static unsafe void MultiModeDrawArrays([CountAttribute(Computed = "primcount")] OpenTK.Graphics.OpenGL.PrimitiveType* mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount, Int32 modestride) { throw new BindingsNotRewrittenException(); } /// [requires: IBM_multimode_draw_arrays] /// [length: COMPSIZE(primcount)] @@ -109477,7 +109477,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "IBM_multimode_draw_arrays", Version = "", EntryPoint = "glMultiModeDrawElementsIBM")] [CLSCompliant(false)] - public static void MultiModeDrawElements([CountAttribute(Computed = "primcount")] OpenTK.Graphics.OpenGL.PrimitiveType[] mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount, Int32 modestride) { throw new NotImplementedException(); } + public static void MultiModeDrawElements([CountAttribute(Computed = "primcount")] OpenTK.Graphics.OpenGL.PrimitiveType[] mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount, Int32 modestride) { throw new BindingsNotRewrittenException(); } /// [requires: IBM_multimode_draw_arrays] /// [length: COMPSIZE(primcount)] @@ -109490,7 +109490,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiModeDrawElements([CountAttribute(Computed = "primcount")] OpenTK.Graphics.OpenGL.PrimitiveType[] mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount, Int32 modestride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_multimode_draw_arrays] /// [length: COMPSIZE(primcount)] @@ -109503,7 +109503,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiModeDrawElements([CountAttribute(Computed = "primcount")] OpenTK.Graphics.OpenGL.PrimitiveType[] mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount, Int32 modestride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_multimode_draw_arrays] /// [length: COMPSIZE(primcount)] @@ -109516,7 +109516,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiModeDrawElements([CountAttribute(Computed = "primcount")] OpenTK.Graphics.OpenGL.PrimitiveType[] mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount, Int32 modestride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_multimode_draw_arrays] /// [length: COMPSIZE(primcount)] @@ -109529,7 +109529,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiModeDrawElements([CountAttribute(Computed = "primcount")] OpenTK.Graphics.OpenGL.PrimitiveType[] mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount, Int32 modestride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_multimode_draw_arrays] /// [length: COMPSIZE(primcount)] @@ -109540,7 +109540,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "IBM_multimode_draw_arrays", Version = "", EntryPoint = "glMultiModeDrawElementsIBM")] [CLSCompliant(false)] - public static void MultiModeDrawElements([CountAttribute(Computed = "primcount")] ref OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount, Int32 modestride) { throw new NotImplementedException(); } + public static void MultiModeDrawElements([CountAttribute(Computed = "primcount")] ref OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount, Int32 modestride) { throw new BindingsNotRewrittenException(); } /// [requires: IBM_multimode_draw_arrays] /// [length: COMPSIZE(primcount)] @@ -109553,7 +109553,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiModeDrawElements([CountAttribute(Computed = "primcount")] ref OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount, Int32 modestride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_multimode_draw_arrays] /// [length: COMPSIZE(primcount)] @@ -109566,7 +109566,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiModeDrawElements([CountAttribute(Computed = "primcount")] ref OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount, Int32 modestride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_multimode_draw_arrays] /// [length: COMPSIZE(primcount)] @@ -109579,7 +109579,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiModeDrawElements([CountAttribute(Computed = "primcount")] ref OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount, Int32 modestride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_multimode_draw_arrays] /// [length: COMPSIZE(primcount)] @@ -109592,7 +109592,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiModeDrawElements([CountAttribute(Computed = "primcount")] ref OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount, Int32 modestride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_multimode_draw_arrays] /// [length: COMPSIZE(primcount)] @@ -109603,7 +109603,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "IBM_multimode_draw_arrays", Version = "", EntryPoint = "glMultiModeDrawElementsIBM")] [CLSCompliant(false)] - public static unsafe void MultiModeDrawElements([CountAttribute(Computed = "primcount")] OpenTK.Graphics.OpenGL.PrimitiveType* mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount, Int32 modestride) { throw new NotImplementedException(); } + public static unsafe void MultiModeDrawElements([CountAttribute(Computed = "primcount")] OpenTK.Graphics.OpenGL.PrimitiveType* mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount, Int32 modestride) { throw new BindingsNotRewrittenException(); } /// [requires: IBM_multimode_draw_arrays] /// [length: COMPSIZE(primcount)] @@ -109616,7 +109616,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiModeDrawElements([CountAttribute(Computed = "primcount")] OpenTK.Graphics.OpenGL.PrimitiveType* mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount, Int32 modestride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_multimode_draw_arrays] /// [length: COMPSIZE(primcount)] @@ -109629,7 +109629,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiModeDrawElements([CountAttribute(Computed = "primcount")] OpenTK.Graphics.OpenGL.PrimitiveType* mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount, Int32 modestride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_multimode_draw_arrays] /// [length: COMPSIZE(primcount)] @@ -109642,7 +109642,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiModeDrawElements([CountAttribute(Computed = "primcount")] OpenTK.Graphics.OpenGL.PrimitiveType* mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount, Int32 modestride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_multimode_draw_arrays] /// [length: COMPSIZE(primcount)] @@ -109655,7 +109655,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiModeDrawElements([CountAttribute(Computed = "primcount")] OpenTK.Graphics.OpenGL.PrimitiveType* mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount, Int32 modestride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109663,7 +109663,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(type,stride)] /// [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glNormalPointerListIBM")] - public static void NormalPointerList(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer, Int32 ptrstride) { throw new NotImplementedException(); } + public static void NormalPointerList(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer, Int32 ptrstride) { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109674,7 +109674,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NormalPointerList(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[] pointer, Int32 ptrstride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109685,7 +109685,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NormalPointerList(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,] pointer, Int32 ptrstride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109696,7 +109696,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NormalPointerList(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,,] pointer, Int32 ptrstride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109706,7 +109706,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glNormalPointerListIBM")] public static void NormalPointerList(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] ref T2 pointer, Int32 ptrstride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109715,7 +109715,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,type,stride)] /// [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glSecondaryColorPointerListIBM")] - public static void SecondaryColorPointerList(Int32 size, OpenTK.Graphics.OpenGL.IbmVertexArrayLists type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer, Int32 ptrstride) { throw new NotImplementedException(); } + public static void SecondaryColorPointerList(Int32 size, OpenTK.Graphics.OpenGL.IbmVertexArrayLists type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer, Int32 ptrstride) { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109727,7 +109727,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SecondaryColorPointerList(Int32 size, OpenTK.Graphics.OpenGL.IbmVertexArrayLists type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[] pointer, Int32 ptrstride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109739,7 +109739,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SecondaryColorPointerList(Int32 size, OpenTK.Graphics.OpenGL.IbmVertexArrayLists type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,] pointer, Int32 ptrstride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109751,7 +109751,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SecondaryColorPointerList(Int32 size, OpenTK.Graphics.OpenGL.IbmVertexArrayLists type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,,] pointer, Int32 ptrstride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109762,7 +109762,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glSecondaryColorPointerListIBM")] public static void SecondaryColorPointerList(Int32 size, OpenTK.Graphics.OpenGL.IbmVertexArrayLists type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T3 pointer, Int32 ptrstride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109771,7 +109771,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,type,stride)] /// [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glTexCoordPointerListIBM")] - public static void TexCoordPointerList(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer, Int32 ptrstride) { throw new NotImplementedException(); } + public static void TexCoordPointerList(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer, Int32 ptrstride) { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109783,7 +109783,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexCoordPointerList(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[] pointer, Int32 ptrstride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109795,7 +109795,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexCoordPointerList(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,] pointer, Int32 ptrstride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109807,7 +109807,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexCoordPointerList(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,,] pointer, Int32 ptrstride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109818,7 +109818,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glTexCoordPointerListIBM")] public static void TexCoordPointerList(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T3 pointer, Int32 ptrstride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109827,7 +109827,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,type,stride)] /// [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glVertexPointerListIBM")] - public static void VertexPointerList(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer, Int32 ptrstride) { throw new NotImplementedException(); } + public static void VertexPointerList(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer, Int32 ptrstride) { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109839,7 +109839,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexPointerList(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[] pointer, Int32 ptrstride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109851,7 +109851,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexPointerList(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,] pointer, Int32 ptrstride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109863,7 +109863,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexPointerList(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,,] pointer, Int32 ptrstride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109874,7 +109874,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glVertexPointerListIBM")] public static void VertexPointerList(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T3 pointer, Int32 ptrstride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } } @@ -109897,7 +109897,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use IngrBlendFuncSeparate overload instead")] [AutoGenerated(Category = "INGR_blend_func_separate", Version = "", EntryPoint = "glBlendFuncSeparateINGR")] - public static void BlendFuncSeparate(OpenTK.Graphics.OpenGL.All sfactorRGB, OpenTK.Graphics.OpenGL.All dfactorRGB, OpenTK.Graphics.OpenGL.All sfactorAlpha, OpenTK.Graphics.OpenGL.All dfactorAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(OpenTK.Graphics.OpenGL.All sfactorRGB, OpenTK.Graphics.OpenGL.All dfactorRGB, OpenTK.Graphics.OpenGL.All sfactorAlpha, OpenTK.Graphics.OpenGL.All dfactorAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: INGR_blend_func_separate] /// Specify pixel arithmetic for RGB and alpha components separately @@ -109915,7 +109915,7 @@ namespace OpenTK.Graphics.OpenGL /// Specified how the alpha source blending factor is computed. The initial value is One. /// [AutoGenerated(Category = "INGR_blend_func_separate", Version = "", EntryPoint = "glBlendFuncSeparateINGR")] - public static void BlendFuncSeparate(OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate sfactorRGB, OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate dfactorRGB, OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate sfactorAlpha, OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate dfactorAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate sfactorRGB, OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate dfactorRGB, OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate sfactorAlpha, OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate dfactorAlpha) { throw new BindingsNotRewrittenException(); } } @@ -109925,13 +109925,13 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glBeginPerfQueryINTEL")] [CLSCompliant(false)] - public static void BeginPerfQuery(Int32 queryHandle) { throw new NotImplementedException(); } + public static void BeginPerfQuery(Int32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glBeginPerfQueryINTEL")] [CLSCompliant(false)] - public static void BeginPerfQuery(UInt32 queryHandle) { throw new NotImplementedException(); } + public static void BeginPerfQuery(UInt32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_parallel_arrays] /// Define an array of colors @@ -109946,7 +109946,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the first component of the first color element in the array. The initial value is 0. /// [AutoGenerated(Category = "INTEL_parallel_arrays", Version = "", EntryPoint = "glColorPointervINTEL")] - public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [CountAttribute(Count = 4)] IntPtr pointer) { throw new NotImplementedException(); } + public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [CountAttribute(Count = 4)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_parallel_arrays] /// Define an array of colors @@ -109964,7 +109964,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [InAttribute, OutAttribute, CountAttribute(Count = 4)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_parallel_arrays] /// Define an array of colors @@ -109982,7 +109982,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [InAttribute, OutAttribute, CountAttribute(Count = 4)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_parallel_arrays] /// Define an array of colors @@ -110000,7 +110000,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [InAttribute, OutAttribute, CountAttribute(Count = 4)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_parallel_arrays] /// Define an array of colors @@ -110017,168 +110017,168 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "INTEL_parallel_arrays", Version = "", EntryPoint = "glColorPointervINTEL")] public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [InAttribute, OutAttribute, CountAttribute(Count = 4)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static void CreatePerfQuery(Int32 queryId, [OutAttribute] Int32[] queryHandle) { throw new NotImplementedException(); } + public static void CreatePerfQuery(Int32 queryId, [OutAttribute] Int32[] queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static void CreatePerfQuery(Int32 queryId, [OutAttribute] out Int32 queryHandle) { throw new NotImplementedException(); } + public static void CreatePerfQuery(Int32 queryId, [OutAttribute] out Int32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static unsafe void CreatePerfQuery(Int32 queryId, [OutAttribute] Int32* queryHandle) { throw new NotImplementedException(); } + public static unsafe void CreatePerfQuery(Int32 queryId, [OutAttribute] Int32* queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static void CreatePerfQuery(UInt32 queryId, [OutAttribute] UInt32[] queryHandle) { throw new NotImplementedException(); } + public static void CreatePerfQuery(UInt32 queryId, [OutAttribute] UInt32[] queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static void CreatePerfQuery(UInt32 queryId, [OutAttribute] out UInt32 queryHandle) { throw new NotImplementedException(); } + public static void CreatePerfQuery(UInt32 queryId, [OutAttribute] out UInt32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static unsafe void CreatePerfQuery(UInt32 queryId, [OutAttribute] UInt32* queryHandle) { throw new NotImplementedException(); } + public static unsafe void CreatePerfQuery(UInt32 queryId, [OutAttribute] UInt32* queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glDeletePerfQueryINTEL")] [CLSCompliant(false)] - public static void DeletePerfQuery(Int32 queryHandle) { throw new NotImplementedException(); } + public static void DeletePerfQuery(Int32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glDeletePerfQueryINTEL")] [CLSCompliant(false)] - public static void DeletePerfQuery(UInt32 queryHandle) { throw new NotImplementedException(); } + public static void DeletePerfQuery(UInt32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glEndPerfQueryINTEL")] [CLSCompliant(false)] - public static void EndPerfQuery(Int32 queryHandle) { throw new NotImplementedException(); } + public static void EndPerfQuery(Int32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glEndPerfQueryINTEL")] [CLSCompliant(false)] - public static void EndPerfQuery(UInt32 queryHandle) { throw new NotImplementedException(); } + public static void EndPerfQuery(UInt32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static Int32 GetFirstPerfQueryI() { throw new NotImplementedException(); } + public static Int32 GetFirstPerfQueryI() { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetFirstPerfQueryI([OutAttribute] Int32[] queryId) { throw new NotImplementedException(); } + public static void GetFirstPerfQueryI([OutAttribute] Int32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetFirstPerfQueryI([OutAttribute] out Int32 queryId) { throw new NotImplementedException(); } + public static void GetFirstPerfQueryI([OutAttribute] out Int32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static unsafe void GetFirstPerfQueryI([OutAttribute] Int32* queryId) { throw new NotImplementedException(); } + public static unsafe void GetFirstPerfQueryI([OutAttribute] Int32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetFirstPerfQueryI([OutAttribute] UInt32[] queryId) { throw new NotImplementedException(); } + public static void GetFirstPerfQueryI([OutAttribute] UInt32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetFirstPerfQueryI([OutAttribute] out UInt32 queryId) { throw new NotImplementedException(); } + public static void GetFirstPerfQueryI([OutAttribute] out UInt32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static unsafe void GetFirstPerfQueryI([OutAttribute] UInt32* queryId) { throw new NotImplementedException(); } + public static unsafe void GetFirstPerfQueryI([OutAttribute] UInt32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static Int32 GetNextPerfQueryI(Int32 queryId) { throw new NotImplementedException(); } + public static Int32 GetNextPerfQueryI(Int32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static Int32 GetNextPerfQueryI(UInt32 queryId) { throw new NotImplementedException(); } + public static Int32 GetNextPerfQueryI(UInt32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetNextPerfQueryI(Int32 queryId, [OutAttribute] Int32[] nextQueryId) { throw new NotImplementedException(); } + public static void GetNextPerfQueryI(Int32 queryId, [OutAttribute] Int32[] nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetNextPerfQueryI(Int32 queryId, [OutAttribute] out Int32 nextQueryId) { throw new NotImplementedException(); } + public static void GetNextPerfQueryI(Int32 queryId, [OutAttribute] out Int32 nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static unsafe void GetNextPerfQueryI(Int32 queryId, [OutAttribute] Int32* nextQueryId) { throw new NotImplementedException(); } + public static unsafe void GetNextPerfQueryI(Int32 queryId, [OutAttribute] Int32* nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] UInt32[] nextQueryId) { throw new NotImplementedException(); } + public static void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] UInt32[] nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] out UInt32 nextQueryId) { throw new NotImplementedException(); } + public static void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] out UInt32 nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static unsafe void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] UInt32* nextQueryId) { throw new NotImplementedException(); } + public static unsafe void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] UInt32* nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110194,7 +110194,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32[] counterOffset, [OutAttribute] Int32[] counterDataSize, [OutAttribute] Int32[] counterTypeEnum, [OutAttribute] Int32[] counterDataTypeEnum, [OutAttribute] Int64[] rawCounterMaxValue) { throw new NotImplementedException(); } + public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32[] counterOffset, [OutAttribute] Int32[] counterDataSize, [OutAttribute] Int32[] counterTypeEnum, [OutAttribute] Int32[] counterDataTypeEnum, [OutAttribute] Int64[] rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110210,7 +110210,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out Int32 counterOffset, [OutAttribute] out Int32 counterDataSize, [OutAttribute] out Int32 counterTypeEnum, [OutAttribute] out Int32 counterDataTypeEnum, [OutAttribute] out Int64 rawCounterMaxValue) { throw new NotImplementedException(); } + public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out Int32 counterOffset, [OutAttribute] out Int32 counterDataSize, [OutAttribute] out Int32 counterTypeEnum, [OutAttribute] out Int32 counterDataTypeEnum, [OutAttribute] out Int64 rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110226,7 +110226,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32* counterOffset, [OutAttribute] Int32* counterDataSize, [OutAttribute] Int32* counterTypeEnum, [OutAttribute] Int32* counterDataTypeEnum, [OutAttribute] Int64* rawCounterMaxValue) { throw new NotImplementedException(); } + public static unsafe void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32* counterOffset, [OutAttribute] Int32* counterDataSize, [OutAttribute] Int32* counterTypeEnum, [OutAttribute] Int32* counterDataTypeEnum, [OutAttribute] Int64* rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110242,7 +110242,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32[] counterOffset, [OutAttribute] UInt32[] counterDataSize, [OutAttribute] UInt32[] counterTypeEnum, [OutAttribute] UInt32[] counterDataTypeEnum, [OutAttribute] UInt64[] rawCounterMaxValue) { throw new NotImplementedException(); } + public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32[] counterOffset, [OutAttribute] UInt32[] counterDataSize, [OutAttribute] UInt32[] counterTypeEnum, [OutAttribute] UInt32[] counterDataTypeEnum, [OutAttribute] UInt64[] rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110258,7 +110258,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out UInt32 counterOffset, [OutAttribute] out UInt32 counterDataSize, [OutAttribute] out UInt32 counterTypeEnum, [OutAttribute] out UInt32 counterDataTypeEnum, [OutAttribute] out UInt64 rawCounterMaxValue) { throw new NotImplementedException(); } + public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out UInt32 counterOffset, [OutAttribute] out UInt32 counterDataSize, [OutAttribute] out UInt32 counterTypeEnum, [OutAttribute] out UInt32 counterDataTypeEnum, [OutAttribute] out UInt64 rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110274,7 +110274,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue) { throw new NotImplementedException(); } + public static unsafe void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110284,7 +110284,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] Int32[] bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] Int32[] bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110294,7 +110294,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110304,7 +110304,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] Int32* bytesWritten) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] Int32* bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110316,7 +110316,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] Int32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110328,7 +110328,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] out Int32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110340,7 +110340,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] Int32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110352,7 +110352,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] Int32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110364,7 +110364,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] out Int32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110376,7 +110376,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] Int32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110388,7 +110388,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] Int32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110400,7 +110400,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] out Int32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110412,7 +110412,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] Int32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110424,7 +110424,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] Int32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110436,7 +110436,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] out Int32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110448,7 +110448,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] Int32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110458,7 +110458,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32[] bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32[] bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110468,7 +110468,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] out UInt32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] out UInt32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110478,7 +110478,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32* bytesWritten) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32* bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110490,7 +110490,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] UInt32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110502,7 +110502,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] out UInt32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110514,7 +110514,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] UInt32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110526,7 +110526,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] UInt32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110538,7 +110538,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] out UInt32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110550,7 +110550,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] UInt32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110562,7 +110562,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] UInt32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110574,7 +110574,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] out UInt32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110586,7 +110586,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] UInt32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110598,7 +110598,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] UInt32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110610,7 +110610,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] out UInt32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110622,55 +110622,55 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] UInt32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static Int32 GetPerfQueryIdByName([OutAttribute] out String queryName) { throw new NotImplementedException(); } + public static Int32 GetPerfQueryIdByName([OutAttribute] out String queryName) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32[] queryId) { throw new NotImplementedException(); } + public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out Int32 queryId) { throw new NotImplementedException(); } + public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out Int32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32* queryId) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32[] queryId) { throw new NotImplementedException(); } + public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out UInt32 queryId) { throw new NotImplementedException(); } + public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out UInt32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32* queryId) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110682,7 +110682,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32[] dataSize, [OutAttribute] Int32[] noCounters, [OutAttribute] Int32[] noInstances, [OutAttribute] Int32[] capsMask) { throw new NotImplementedException(); } + public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32[] dataSize, [OutAttribute] Int32[] noCounters, [OutAttribute] Int32[] noInstances, [OutAttribute] Int32[] capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110694,7 +110694,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out Int32 dataSize, [OutAttribute] out Int32 noCounters, [OutAttribute] out Int32 noInstances, [OutAttribute] out Int32 capsMask) { throw new NotImplementedException(); } + public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out Int32 dataSize, [OutAttribute] out Int32 noCounters, [OutAttribute] out Int32 noInstances, [OutAttribute] out Int32 capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110706,7 +110706,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32* dataSize, [OutAttribute] Int32* noCounters, [OutAttribute] Int32* noInstances, [OutAttribute] Int32* capsMask) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32* dataSize, [OutAttribute] Int32* noCounters, [OutAttribute] Int32* noInstances, [OutAttribute] Int32* capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110718,7 +110718,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32[] dataSize, [OutAttribute] UInt32[] noCounters, [OutAttribute] UInt32[] noInstances, [OutAttribute] UInt32[] capsMask) { throw new NotImplementedException(); } + public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32[] dataSize, [OutAttribute] UInt32[] noCounters, [OutAttribute] UInt32[] noInstances, [OutAttribute] UInt32[] capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110730,7 +110730,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out UInt32 dataSize, [OutAttribute] out UInt32 noCounters, [OutAttribute] out UInt32 noInstances, [OutAttribute] out UInt32 capsMask) { throw new NotImplementedException(); } + public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out UInt32 dataSize, [OutAttribute] out UInt32 noCounters, [OutAttribute] out UInt32 noInstances, [OutAttribute] out UInt32 capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110742,7 +110742,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_map_texture] /// @@ -110752,7 +110752,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "INTEL_map_texture", Version = "", EntryPoint = "glMapTexture2DINTEL")] [CLSCompliant(false)] - public static IntPtr MapTexture2D(Int32 texture, Int32 level, Int32 access, [OutAttribute, CountAttribute(Count = 1)] out Int32 stride, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.IntelMapTexture layout) { throw new NotImplementedException(); } + public static IntPtr MapTexture2D(Int32 texture, Int32 level, Int32 access, [OutAttribute, CountAttribute(Count = 1)] out Int32 stride, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.IntelMapTexture layout) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_map_texture] /// @@ -110762,7 +110762,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "INTEL_map_texture", Version = "", EntryPoint = "glMapTexture2DINTEL")] [CLSCompliant(false)] - public static unsafe IntPtr MapTexture2D(Int32 texture, Int32 level, Int32 access, [OutAttribute, CountAttribute(Count = 1)] Int32* stride, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.IntelMapTexture* layout) { throw new NotImplementedException(); } + public static unsafe IntPtr MapTexture2D(Int32 texture, Int32 level, Int32 access, [OutAttribute, CountAttribute(Count = 1)] Int32* stride, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.IntelMapTexture* layout) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_map_texture] /// @@ -110772,7 +110772,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "INTEL_map_texture", Version = "", EntryPoint = "glMapTexture2DINTEL")] [CLSCompliant(false)] - public static IntPtr MapTexture2D(UInt32 texture, Int32 level, UInt32 access, [OutAttribute, CountAttribute(Count = 1)] out Int32 stride, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.IntelMapTexture layout) { throw new NotImplementedException(); } + public static IntPtr MapTexture2D(UInt32 texture, Int32 level, UInt32 access, [OutAttribute, CountAttribute(Count = 1)] out Int32 stride, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.IntelMapTexture layout) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_map_texture] /// @@ -110782,7 +110782,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "INTEL_map_texture", Version = "", EntryPoint = "glMapTexture2DINTEL")] [CLSCompliant(false)] - public static unsafe IntPtr MapTexture2D(UInt32 texture, Int32 level, UInt32 access, [OutAttribute, CountAttribute(Count = 1)] Int32* stride, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.IntelMapTexture* layout) { throw new NotImplementedException(); } + public static unsafe IntPtr MapTexture2D(UInt32 texture, Int32 level, UInt32 access, [OutAttribute, CountAttribute(Count = 1)] Int32* stride, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.IntelMapTexture* layout) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_parallel_arrays] /// Define an array of normals @@ -110794,7 +110794,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the first coordinate of the first normal in the array. The initial value is 0. /// [AutoGenerated(Category = "INTEL_parallel_arrays", Version = "", EntryPoint = "glNormalPointervINTEL")] - public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, [CountAttribute(Count = 4)] IntPtr pointer) { throw new NotImplementedException(); } + public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, [CountAttribute(Count = 4)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_parallel_arrays] /// Define an array of normals @@ -110809,7 +110809,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, [InAttribute, OutAttribute, CountAttribute(Count = 4)] T1[] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_parallel_arrays] /// Define an array of normals @@ -110824,7 +110824,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, [InAttribute, OutAttribute, CountAttribute(Count = 4)] T1[,] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_parallel_arrays] /// Define an array of normals @@ -110839,7 +110839,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, [InAttribute, OutAttribute, CountAttribute(Count = 4)] T1[,,] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_parallel_arrays] /// Define an array of normals @@ -110853,19 +110853,19 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "INTEL_parallel_arrays", Version = "", EntryPoint = "glNormalPointervINTEL")] public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, [InAttribute, OutAttribute, CountAttribute(Count = 4)] ref T1 pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_map_texture] /// [AutoGenerated(Category = "INTEL_map_texture", Version = "", EntryPoint = "glSyncTextureINTEL")] [CLSCompliant(false)] - public static void SyncTexture(Int32 texture) { throw new NotImplementedException(); } + public static void SyncTexture(Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_map_texture] /// [AutoGenerated(Category = "INTEL_map_texture", Version = "", EntryPoint = "glSyncTextureINTEL")] [CLSCompliant(false)] - public static void SyncTexture(UInt32 texture) { throw new NotImplementedException(); } + public static void SyncTexture(UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_parallel_arrays] /// Define an array of texture coordinates @@ -110880,7 +110880,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the first coordinate of the first texture coordinate set in the array. The initial value is 0. /// [AutoGenerated(Category = "INTEL_parallel_arrays", Version = "", EntryPoint = "glTexCoordPointervINTEL")] - public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [CountAttribute(Count = 4)] IntPtr pointer) { throw new NotImplementedException(); } + public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [CountAttribute(Count = 4)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_parallel_arrays] /// Define an array of texture coordinates @@ -110898,7 +110898,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [InAttribute, OutAttribute, CountAttribute(Count = 4)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_parallel_arrays] /// Define an array of texture coordinates @@ -110916,7 +110916,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [InAttribute, OutAttribute, CountAttribute(Count = 4)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_parallel_arrays] /// Define an array of texture coordinates @@ -110934,7 +110934,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [InAttribute, OutAttribute, CountAttribute(Count = 4)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_parallel_arrays] /// Define an array of texture coordinates @@ -110951,21 +110951,21 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "INTEL_parallel_arrays", Version = "", EntryPoint = "glTexCoordPointervINTEL")] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [InAttribute, OutAttribute, CountAttribute(Count = 4)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_map_texture] /// /// [AutoGenerated(Category = "INTEL_map_texture", Version = "", EntryPoint = "glUnmapTexture2DINTEL")] [CLSCompliant(false)] - public static void UnmapTexture2D(Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void UnmapTexture2D(Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_map_texture] /// /// [AutoGenerated(Category = "INTEL_map_texture", Version = "", EntryPoint = "glUnmapTexture2DINTEL")] [CLSCompliant(false)] - public static void UnmapTexture2D(UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void UnmapTexture2D(UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_parallel_arrays] /// Define an array of vertex data @@ -110980,7 +110980,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the first coordinate of the first vertex in the array. The initial value is 0. /// [AutoGenerated(Category = "INTEL_parallel_arrays", Version = "", EntryPoint = "glVertexPointervINTEL")] - public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [CountAttribute(Count = 4)] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [CountAttribute(Count = 4)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_parallel_arrays] /// Define an array of vertex data @@ -110998,7 +110998,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [InAttribute, OutAttribute, CountAttribute(Count = 4)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_parallel_arrays] /// Define an array of vertex data @@ -111016,7 +111016,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [InAttribute, OutAttribute, CountAttribute(Count = 4)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_parallel_arrays] /// Define an array of vertex data @@ -111034,7 +111034,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [InAttribute, OutAttribute, CountAttribute(Count = 4)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_parallel_arrays] /// Define an array of vertex data @@ -111051,7 +111051,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "INTEL_parallel_arrays", Version = "", EntryPoint = "glVertexPointervINTEL")] public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [InAttribute, OutAttribute, CountAttribute(Count = 4)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } } @@ -111059,7 +111059,7 @@ namespace OpenTK.Graphics.OpenGL { /// [requires: KHR_blend_equation_advanced] [AutoGenerated(Category = "KHR_blend_equation_advanced", Version = "", EntryPoint = "glBlendBarrierKHR")] - public static void BlendBarrier() { throw new NotImplementedException(); } + public static void BlendBarrier() { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -111071,7 +111071,7 @@ namespace OpenTK.Graphics.OpenGL /// A user supplied pointer that will be passed on each invocation of callback. /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallbackKHR")] - public static void DebugMessageCallback(DebugProcKhr callback, IntPtr userParam) { throw new NotImplementedException(); } + public static void DebugMessageCallback(DebugProcKhr callback, IntPtr userParam) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -111086,7 +111086,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -111101,7 +111101,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -111116,7 +111116,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[,,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -111130,7 +111130,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallbackKHR")] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] ref T1 userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -111155,7 +111155,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.OpenGL.KhrDebug source, OpenTK.Graphics.OpenGL.KhrDebug type, OpenTK.Graphics.OpenGL.KhrDebug severity, Int32 count, Int32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL.KhrDebug source, OpenTK.Graphics.OpenGL.KhrDebug type, OpenTK.Graphics.OpenGL.KhrDebug severity, Int32 count, Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -111180,7 +111180,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.OpenGL.KhrDebug source, OpenTK.Graphics.OpenGL.KhrDebug type, OpenTK.Graphics.OpenGL.KhrDebug severity, Int32 count, ref Int32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL.KhrDebug source, OpenTK.Graphics.OpenGL.KhrDebug type, OpenTK.Graphics.OpenGL.KhrDebug severity, Int32 count, ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -111205,7 +111205,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL.KhrDebug source, OpenTK.Graphics.OpenGL.KhrDebug type, OpenTK.Graphics.OpenGL.KhrDebug severity, Int32 count, Int32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL.KhrDebug source, OpenTK.Graphics.OpenGL.KhrDebug type, OpenTK.Graphics.OpenGL.KhrDebug severity, Int32 count, Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -111230,7 +111230,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.OpenGL.KhrDebug source, OpenTK.Graphics.OpenGL.KhrDebug type, OpenTK.Graphics.OpenGL.KhrDebug severity, Int32 count, UInt32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL.KhrDebug source, OpenTK.Graphics.OpenGL.KhrDebug type, OpenTK.Graphics.OpenGL.KhrDebug severity, Int32 count, UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -111255,7 +111255,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.OpenGL.KhrDebug source, OpenTK.Graphics.OpenGL.KhrDebug type, OpenTK.Graphics.OpenGL.KhrDebug severity, Int32 count, ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL.KhrDebug source, OpenTK.Graphics.OpenGL.KhrDebug type, OpenTK.Graphics.OpenGL.KhrDebug severity, Int32 count, ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -111280,7 +111280,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL.KhrDebug source, OpenTK.Graphics.OpenGL.KhrDebug type, OpenTK.Graphics.OpenGL.KhrDebug severity, Int32 count, UInt32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL.KhrDebug source, OpenTK.Graphics.OpenGL.KhrDebug type, OpenTK.Graphics.OpenGL.KhrDebug severity, Int32 count, UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Inject an application-supplied message into the debug message queue @@ -111305,7 +111305,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.KhrDebug source, OpenTK.Graphics.OpenGL.KhrDebug type, Int32 id, OpenTK.Graphics.OpenGL.KhrDebug severity, Int32 length, String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.KhrDebug source, OpenTK.Graphics.OpenGL.KhrDebug type, Int32 id, OpenTK.Graphics.OpenGL.KhrDebug severity, Int32 length, String buf) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Inject an application-supplied message into the debug message queue @@ -111330,7 +111330,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.KhrDebug source, OpenTK.Graphics.OpenGL.KhrDebug type, UInt32 id, OpenTK.Graphics.OpenGL.KhrDebug severity, Int32 length, String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.KhrDebug source, OpenTK.Graphics.OpenGL.KhrDebug type, UInt32 id, OpenTK.Graphics.OpenGL.KhrDebug severity, Int32 length, String buf) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -111361,7 +111361,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -111392,7 +111392,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.KhrDebug sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.KhrDebug types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.KhrDebug severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.KhrDebug sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.KhrDebug types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.KhrDebug severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -111423,7 +111423,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -111454,7 +111454,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -111485,7 +111485,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.KhrDebug sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.KhrDebug types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.KhrDebug severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.KhrDebug sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.KhrDebug types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.KhrDebug severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -111516,11 +111516,11 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetGraphicsResetStatusKHR")] - public static OpenTK.Graphics.OpenGL.KhrRobustness GetGraphicsResetStatus() { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.KhrRobustness GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -111529,7 +111529,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -111538,7 +111538,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -111547,7 +111547,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -111556,7 +111556,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -111565,7 +111565,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -111574,7 +111574,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -111583,7 +111583,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -111592,7 +111592,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -111601,7 +111601,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -111610,7 +111610,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -111619,7 +111619,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -111628,7 +111628,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -111637,7 +111637,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuivKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -111646,7 +111646,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuivKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -111655,7 +111655,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuivKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -111677,7 +111677,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.OpenGL.KhrDebug identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL.KhrDebug identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -111699,7 +111699,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.OpenGL.KhrDebug identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL.KhrDebug identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -111721,7 +111721,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL.KhrDebug identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL.KhrDebug identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -111743,7 +111743,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.OpenGL.KhrDebug identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL.KhrDebug identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -111765,7 +111765,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.OpenGL.KhrDebug identifier, UInt32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL.KhrDebug identifier, UInt32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -111787,7 +111787,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL.KhrDebug identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL.KhrDebug identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -111807,7 +111807,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] - public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -111827,7 +111827,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] - public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -111847,7 +111847,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] - public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -111869,7 +111869,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -111891,7 +111891,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -111913,7 +111913,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -111935,7 +111935,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -111957,7 +111957,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -111979,7 +111979,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -112001,7 +112001,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -112023,7 +112023,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -112045,7 +112045,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -112067,7 +112067,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -112089,7 +112089,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -112111,13 +112111,13 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointervKHR")] - public static void GetPointer(OpenTK.Graphics.OpenGL.KhrDebug pname, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } + public static void GetPointer(OpenTK.Graphics.OpenGL.KhrDebug pname, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// @@ -112126,7 +112126,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.KhrDebug pname, [InAttribute, OutAttribute] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// @@ -112135,7 +112135,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.KhrDebug pname, [InAttribute, OutAttribute] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// @@ -112144,7 +112144,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.KhrDebug pname, [InAttribute, OutAttribute] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// @@ -112152,7 +112152,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointervKHR")] public static void GetPointer(OpenTK.Graphics.OpenGL.KhrDebug pname, [InAttribute, OutAttribute] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a named object identified within a namespace @@ -112171,7 +112171,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] [CLSCompliant(false)] - public static void ObjectLabel(OpenTK.Graphics.OpenGL.KhrDebug identifier, Int32 name, Int32 length, String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.OpenGL.KhrDebug identifier, Int32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a named object identified within a namespace @@ -112190,7 +112190,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] [CLSCompliant(false)] - public static void ObjectLabel(OpenTK.Graphics.OpenGL.KhrDebug identifier, UInt32 name, Int32 length, String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.OpenGL.KhrDebug identifier, UInt32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -112205,7 +112205,7 @@ namespace OpenTK.Graphics.OpenGL /// The address of a string containing the label to assign to the object. /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabelKHR")] - public static void ObjectPtrLabel(IntPtr ptr, Int32 length, String label) { throw new NotImplementedException(); } + public static void ObjectPtrLabel(IntPtr ptr, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -112223,7 +112223,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 length, String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -112241,7 +112241,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 length, String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -112259,7 +112259,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 length, String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -112276,13 +112276,13 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabelKHR")] public static void ObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 length, String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Pop the active debug group /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPopDebugGroupKHR")] - public static void PopDebugGroup() { throw new NotImplementedException(); } + public static void PopDebugGroup() { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Push a named debug group into the command stream @@ -112301,7 +112301,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroupKHR")] [CLSCompliant(false)] - public static void PushDebugGroup(OpenTK.Graphics.OpenGL.KhrDebug source, Int32 id, Int32 length, String message) { throw new NotImplementedException(); } + public static void PushDebugGroup(OpenTK.Graphics.OpenGL.KhrDebug source, Int32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Push a named debug group into the command stream @@ -112320,7 +112320,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroupKHR")] [CLSCompliant(false)] - public static void PushDebugGroup(OpenTK.Graphics.OpenGL.KhrDebug source, UInt32 id, Int32 length, String message) { throw new NotImplementedException(); } + public static void PushDebugGroup(OpenTK.Graphics.OpenGL.KhrDebug source, UInt32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -112332,7 +112332,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: bufSize] [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixelsKHR")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -112347,7 +112347,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -112362,7 +112362,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -112377,7 +112377,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -112391,7 +112391,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixelsKHR")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } } @@ -112399,7 +112399,7 @@ namespace OpenTK.Graphics.OpenGL { /// [requires: MESA_resize_buffers] [AutoGenerated(Category = "MESA_resize_buffers", Version = "", EntryPoint = "glResizeBuffersMESA")] - public static void ResizeBuffers() { throw new NotImplementedException(); } + public static void ResizeBuffers() { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112411,7 +112411,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2dMESA")] - public static void WindowPos2(Double x, Double y) { throw new NotImplementedException(); } + public static void WindowPos2(Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112421,7 +112421,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2dvMESA")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112431,7 +112431,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2dvMESA")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112441,7 +112441,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2dvMESA")] [CLSCompliant(false)] - public static unsafe void WindowPos2([CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos2([CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112453,7 +112453,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2fMESA")] - public static void WindowPos2(Single x, Single y) { throw new NotImplementedException(); } + public static void WindowPos2(Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112463,7 +112463,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2fvMESA")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112473,7 +112473,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2fvMESA")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112483,7 +112483,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2fvMESA")] [CLSCompliant(false)] - public static unsafe void WindowPos2([CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos2([CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112495,7 +112495,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2iMESA")] - public static void WindowPos2(Int32 x, Int32 y) { throw new NotImplementedException(); } + public static void WindowPos2(Int32 x, Int32 y) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112505,7 +112505,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2ivMESA")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] Int32[] v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112515,7 +112515,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2ivMESA")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] ref Int32 v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112525,7 +112525,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2ivMESA")] [CLSCompliant(false)] - public static unsafe void WindowPos2([CountAttribute(Count = 2)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos2([CountAttribute(Count = 2)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112537,7 +112537,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2sMESA")] - public static void WindowPos2(Int16 x, Int16 y) { throw new NotImplementedException(); } + public static void WindowPos2(Int16 x, Int16 y) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112547,7 +112547,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2svMESA")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] Int16[] v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112557,7 +112557,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2svMESA")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] ref Int16 v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112567,7 +112567,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2svMESA")] [CLSCompliant(false)] - public static unsafe void WindowPos2([CountAttribute(Count = 2)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos2([CountAttribute(Count = 2)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112582,7 +112582,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3dMESA")] - public static void WindowPos3(Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void WindowPos3(Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112592,7 +112592,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3dvMESA")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112602,7 +112602,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3dvMESA")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112612,7 +112612,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3dvMESA")] [CLSCompliant(false)] - public static unsafe void WindowPos3([CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos3([CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112627,7 +112627,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3fMESA")] - public static void WindowPos3(Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void WindowPos3(Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112637,7 +112637,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3fvMESA")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112647,7 +112647,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3fvMESA")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112657,7 +112657,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3fvMESA")] [CLSCompliant(false)] - public static unsafe void WindowPos3([CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos3([CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112672,7 +112672,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3iMESA")] - public static void WindowPos3(Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void WindowPos3(Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112682,7 +112682,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3ivMESA")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] Int32[] v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112692,7 +112692,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3ivMESA")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] ref Int32 v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112702,7 +112702,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3ivMESA")] [CLSCompliant(false)] - public static unsafe void WindowPos3([CountAttribute(Count = 3)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos3([CountAttribute(Count = 3)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112717,7 +112717,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3sMESA")] - public static void WindowPos3(Int16 x, Int16 y, Int16 z) { throw new NotImplementedException(); } + public static void WindowPos3(Int16 x, Int16 y, Int16 z) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112727,7 +112727,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3svMESA")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112737,7 +112737,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3svMESA")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112747,7 +112747,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3svMESA")] [CLSCompliant(false)] - public static unsafe void WindowPos3([CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos3([CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112763,7 +112763,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4dMESA")] - public static void WindowPos4(Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void WindowPos4(Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112773,7 +112773,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4dvMESA")] [CLSCompliant(false)] - public static void WindowPos4([CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void WindowPos4([CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112783,7 +112783,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4dvMESA")] [CLSCompliant(false)] - public static void WindowPos4([CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void WindowPos4([CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112793,7 +112793,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4dvMESA")] [CLSCompliant(false)] - public static unsafe void WindowPos4([CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos4([CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112809,7 +112809,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4fMESA")] - public static void WindowPos4(Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void WindowPos4(Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112819,7 +112819,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4fvMESA")] [CLSCompliant(false)] - public static void WindowPos4([CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void WindowPos4([CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112829,7 +112829,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4fvMESA")] [CLSCompliant(false)] - public static void WindowPos4([CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void WindowPos4([CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112839,7 +112839,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4fvMESA")] [CLSCompliant(false)] - public static unsafe void WindowPos4([CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos4([CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112855,7 +112855,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4iMESA")] - public static void WindowPos4(Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } + public static void WindowPos4(Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112865,7 +112865,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4ivMESA")] [CLSCompliant(false)] - public static void WindowPos4([CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void WindowPos4([CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112875,7 +112875,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4ivMESA")] [CLSCompliant(false)] - public static void WindowPos4([CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void WindowPos4([CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112885,7 +112885,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4ivMESA")] [CLSCompliant(false)] - public static unsafe void WindowPos4([CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos4([CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112901,7 +112901,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4sMESA")] - public static void WindowPos4(Int16 x, Int16 y, Int16 z, Int16 w) { throw new NotImplementedException(); } + public static void WindowPos4(Int16 x, Int16 y, Int16 z, Int16 w) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112911,7 +112911,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4svMESA")] [CLSCompliant(false)] - public static void WindowPos4([CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void WindowPos4([CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112921,7 +112921,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4svMESA")] [CLSCompliant(false)] - public static void WindowPos4([CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void WindowPos4([CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112931,7 +112931,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4svMESA")] [CLSCompliant(false)] - public static unsafe void WindowPos4([CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos4([CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } } @@ -112942,19 +112942,19 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(name)] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glActiveVaryingNV")] [CLSCompliant(false)] - public static void ActiveVarying(Int32 program, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static void ActiveVarying(Int32 program, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// /// [length: COMPSIZE(name)] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glActiveVaryingNV")] [CLSCompliant(false)] - public static void ActiveVarying(UInt32 program, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static void ActiveVarying(UInt32 program, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: NV_alpha_to_coverage_dither_control] /// [AutoGenerated(Category = "NV_alpha_to_coverage_dither_control", Version = "", EntryPoint = "glAlphaToCoverageDitherControlNV")] - public static void AlphaToCoverageDitherControl(OpenTK.Graphics.OpenGL.NvAlphaToCoverageDitherControl mode) { throw new NotImplementedException(); } + public static void AlphaToCoverageDitherControl(OpenTK.Graphics.OpenGL.NvAlphaToCoverageDitherControl mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -112962,7 +112962,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glAreProgramsResidentNV")] [CLSCompliant(false)] - public static bool AreProgramsResident(Int32 n, [CountAttribute(Parameter = "n")] Int32[] programs, [OutAttribute, CountAttribute(Parameter = "n")] bool[] residences) { throw new NotImplementedException(); } + public static bool AreProgramsResident(Int32 n, [CountAttribute(Parameter = "n")] Int32[] programs, [OutAttribute, CountAttribute(Parameter = "n")] bool[] residences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -112970,7 +112970,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glAreProgramsResidentNV")] [CLSCompliant(false)] - public static bool AreProgramsResident(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 programs, [OutAttribute, CountAttribute(Parameter = "n")] out bool residences) { throw new NotImplementedException(); } + public static bool AreProgramsResident(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 programs, [OutAttribute, CountAttribute(Parameter = "n")] out bool residences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -112978,7 +112978,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glAreProgramsResidentNV")] [CLSCompliant(false)] - public static unsafe bool AreProgramsResident(Int32 n, [CountAttribute(Parameter = "n")] Int32* programs, [OutAttribute, CountAttribute(Parameter = "n")] bool* residences) { throw new NotImplementedException(); } + public static unsafe bool AreProgramsResident(Int32 n, [CountAttribute(Parameter = "n")] Int32* programs, [OutAttribute, CountAttribute(Parameter = "n")] bool* residences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -112986,7 +112986,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glAreProgramsResidentNV")] [CLSCompliant(false)] - public static bool AreProgramsResident(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] programs, [OutAttribute, CountAttribute(Parameter = "n")] bool[] residences) { throw new NotImplementedException(); } + public static bool AreProgramsResident(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] programs, [OutAttribute, CountAttribute(Parameter = "n")] bool[] residences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -112994,7 +112994,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glAreProgramsResidentNV")] [CLSCompliant(false)] - public static bool AreProgramsResident(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 programs, [OutAttribute, CountAttribute(Parameter = "n")] out bool residences) { throw new NotImplementedException(); } + public static bool AreProgramsResident(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 programs, [OutAttribute, CountAttribute(Parameter = "n")] out bool residences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -113002,7 +113002,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glAreProgramsResidentNV")] [CLSCompliant(false)] - public static unsafe bool AreProgramsResident(Int32 n, [CountAttribute(Parameter = "n")] UInt32* programs, [OutAttribute, CountAttribute(Parameter = "n")] bool* residences) { throw new NotImplementedException(); } + public static unsafe bool AreProgramsResident(Int32 n, [CountAttribute(Parameter = "n")] UInt32* programs, [OutAttribute, CountAttribute(Parameter = "n")] bool* residences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conditional_render] /// Start conditional rendering @@ -113015,7 +113015,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNV")] [CLSCompliant(false)] - public static void BeginConditionalRender(Int32 id, OpenTK.Graphics.OpenGL.NvConditionalRender mode) { throw new NotImplementedException(); } + public static void BeginConditionalRender(Int32 id, OpenTK.Graphics.OpenGL.NvConditionalRender mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conditional_render] /// Start conditional rendering @@ -113028,19 +113028,19 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNV")] [CLSCompliant(false)] - public static void BeginConditionalRender(UInt32 id, OpenTK.Graphics.OpenGL.NvConditionalRender mode) { throw new NotImplementedException(); } + public static void BeginConditionalRender(UInt32 id, OpenTK.Graphics.OpenGL.NvConditionalRender mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glBeginOcclusionQueryNV")] [CLSCompliant(false)] - public static void BeginOcclusionQuery(Int32 id) { throw new NotImplementedException(); } + public static void BeginOcclusionQuery(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glBeginOcclusionQueryNV")] [CLSCompliant(false)] - public static void BeginOcclusionQuery(UInt32 id) { throw new NotImplementedException(); } + public static void BeginOcclusionQuery(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// Start transform feedback operation @@ -113049,19 +113049,19 @@ namespace OpenTK.Graphics.OpenGL /// Specify the output type of the primitives that will be recorded into the buffer objects that are bound for transform feedback. /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glBeginTransformFeedbackNV")] - public static void BeginTransformFeedback(OpenTK.Graphics.OpenGL.NvTransformFeedback primitiveMode) { throw new NotImplementedException(); } + public static void BeginTransformFeedback(OpenTK.Graphics.OpenGL.NvTransformFeedback primitiveMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glBeginVideoCaptureNV")] [CLSCompliant(false)] - public static void BeginVideoCapture(Int32 video_capture_slot) { throw new NotImplementedException(); } + public static void BeginVideoCapture(Int32 video_capture_slot) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glBeginVideoCaptureNV")] [CLSCompliant(false)] - public static void BeginVideoCapture(UInt32 video_capture_slot) { throw new NotImplementedException(); } + public static void BeginVideoCapture(UInt32 video_capture_slot) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// Bind a buffer object to an indexed buffer target @@ -113077,7 +113077,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glBindBufferBaseNV")] [CLSCompliant(false)] - public static void BindBufferBase(OpenTK.Graphics.OpenGL.NvTransformFeedback target, Int32 index, Int32 buffer) { throw new NotImplementedException(); } + public static void BindBufferBase(OpenTK.Graphics.OpenGL.NvTransformFeedback target, Int32 index, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// Bind a buffer object to an indexed buffer target @@ -113093,7 +113093,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glBindBufferBaseNV")] [CLSCompliant(false)] - public static void BindBufferBase(OpenTK.Graphics.OpenGL.NvTransformFeedback target, UInt32 index, UInt32 buffer) { throw new NotImplementedException(); } + public static void BindBufferBase(OpenTK.Graphics.OpenGL.NvTransformFeedback target, UInt32 index, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// @@ -113102,7 +113102,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glBindBufferOffsetNV")] [CLSCompliant(false)] - public static void BindBufferOffset(OpenTK.Graphics.OpenGL.NvTransformFeedback target, Int32 index, Int32 buffer, IntPtr offset) { throw new NotImplementedException(); } + public static void BindBufferOffset(OpenTK.Graphics.OpenGL.NvTransformFeedback target, Int32 index, Int32 buffer, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// @@ -113111,7 +113111,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glBindBufferOffsetNV")] [CLSCompliant(false)] - public static void BindBufferOffset(OpenTK.Graphics.OpenGL.NvTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset) { throw new NotImplementedException(); } + public static void BindBufferOffset(OpenTK.Graphics.OpenGL.NvTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// Bind a range within a buffer object to an indexed buffer target @@ -113133,7 +113133,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glBindBufferRangeNV")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.OpenGL.NvTransformFeedback target, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL.NvTransformFeedback target, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// Bind a range within a buffer object to an indexed buffer target @@ -113155,7 +113155,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glBindBufferRangeNV")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.OpenGL.NvTransformFeedback target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL.NvTransformFeedback target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// Bind a range within a buffer object to an indexed buffer target @@ -113177,7 +113177,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glBindBufferRangeNV")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.OpenGL.NvTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL.NvTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// Bind a range within a buffer object to an indexed buffer target @@ -113199,21 +113199,21 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glBindBufferRangeNV")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.OpenGL.NvTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL.NvTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glBindProgramNV")] [CLSCompliant(false)] - public static void BindProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 id) { throw new NotImplementedException(); } + public static void BindProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glBindProgramNV")] [CLSCompliant(false)] - public static void BindProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 id) { throw new NotImplementedException(); } + public static void BindProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Bind a transform feedback object @@ -113226,7 +113226,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glBindTransformFeedbackNV")] [CLSCompliant(false)] - public static void BindTransformFeedback(OpenTK.Graphics.OpenGL.BufferTargetArb target, Int32 id) { throw new NotImplementedException(); } + public static void BindTransformFeedback(OpenTK.Graphics.OpenGL.BufferTargetArb target, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Bind a transform feedback object @@ -113239,7 +113239,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glBindTransformFeedbackNV")] [CLSCompliant(false)] - public static void BindTransformFeedback(OpenTK.Graphics.OpenGL.BufferTargetArb target, UInt32 id) { throw new NotImplementedException(); } + public static void BindTransformFeedback(OpenTK.Graphics.OpenGL.BufferTargetArb target, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Bind a transform feedback object @@ -113253,7 +113253,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use BufferTargetArb overload instead")] [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glBindTransformFeedbackNV")] [CLSCompliant(false)] - public static void BindTransformFeedback(OpenTK.Graphics.OpenGL.NvTransformFeedback2 target, Int32 id) { throw new NotImplementedException(); } + public static void BindTransformFeedback(OpenTK.Graphics.OpenGL.NvTransformFeedback2 target, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Bind a transform feedback object @@ -113267,7 +113267,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use BufferTargetArb overload instead")] [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glBindTransformFeedbackNV")] [CLSCompliant(false)] - public static void BindTransformFeedback(OpenTK.Graphics.OpenGL.NvTransformFeedback2 target, UInt32 id) { throw new NotImplementedException(); } + public static void BindTransformFeedback(OpenTK.Graphics.OpenGL.NvTransformFeedback2 target, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -113276,7 +113276,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glBindVideoCaptureStreamBufferNV")] [CLSCompliant(false)] - public static void BindVideoCaptureStreamBuffer(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture frame_region, IntPtr offset) { throw new NotImplementedException(); } + public static void BindVideoCaptureStreamBuffer(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture frame_region, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -113285,7 +113285,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glBindVideoCaptureStreamBufferNV")] [CLSCompliant(false)] - public static void BindVideoCaptureStreamBuffer(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture frame_region, IntPtr offset) { throw new NotImplementedException(); } + public static void BindVideoCaptureStreamBuffer(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture frame_region, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -113295,7 +113295,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glBindVideoCaptureStreamTextureNV")] [CLSCompliant(false)] - public static void BindVideoCaptureStreamTexture(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture frame_region, OpenTK.Graphics.OpenGL.NvVideoCapture target, Int32 texture) { throw new NotImplementedException(); } + public static void BindVideoCaptureStreamTexture(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture frame_region, OpenTK.Graphics.OpenGL.NvVideoCapture target, Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -113305,17 +113305,17 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glBindVideoCaptureStreamTextureNV")] [CLSCompliant(false)] - public static void BindVideoCaptureStreamTexture(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture frame_region, OpenTK.Graphics.OpenGL.NvVideoCapture target, UInt32 texture) { throw new NotImplementedException(); } + public static void BindVideoCaptureStreamTexture(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture frame_region, OpenTK.Graphics.OpenGL.NvVideoCapture target, UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: NV_blend_equation_advanced] [AutoGenerated(Category = "NV_blend_equation_advanced", Version = "", EntryPoint = "glBlendBarrierNV")] - public static void BlendBarrier() { throw new NotImplementedException(); } + public static void BlendBarrier() { throw new BindingsNotRewrittenException(); } /// [requires: NV_blend_equation_advanced] /// /// [AutoGenerated(Category = "NV_blend_equation_advanced", Version = "", EntryPoint = "glBlendParameteriNV")] - public static void BlendParameter(OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced pname, Int32 value) { throw new NotImplementedException(); } + public static void BlendParameter(OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -113324,7 +113324,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glBufferAddressRangeNV")] [CLSCompliant(false)] - public static void BufferAddressRange(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory pname, Int32 index, Int64 address, Int32 length) { throw new NotImplementedException(); } + public static void BufferAddressRange(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory pname, Int32 index, Int64 address, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -113333,7 +113333,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glBufferAddressRangeNV")] [CLSCompliant(false)] - public static void BufferAddressRange(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory pname, Int32 index, Int64 address, IntPtr length) { throw new NotImplementedException(); } + public static void BufferAddressRange(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory pname, Int32 index, Int64 address, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -113342,7 +113342,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glBufferAddressRangeNV")] [CLSCompliant(false)] - public static void BufferAddressRange(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory pname, UInt32 index, UInt64 address, Int32 length) { throw new NotImplementedException(); } + public static void BufferAddressRange(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory pname, UInt32 index, UInt64 address, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -113351,19 +113351,19 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glBufferAddressRangeNV")] [CLSCompliant(false)] - public static void BufferAddressRange(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory pname, UInt32 index, UInt64 address, IntPtr length) { throw new NotImplementedException(); } + public static void BufferAddressRange(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory pname, UInt32 index, UInt64 address, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCallCommandListNV")] [CLSCompliant(false)] - public static void CallCommandList(Int32 list) { throw new NotImplementedException(); } + public static void CallCommandList(Int32 list) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCallCommandListNV")] [CLSCompliant(false)] - public static void CallCommandList(UInt32 list) { throw new NotImplementedException(); } + public static void CallCommandList(UInt32 list) { throw new BindingsNotRewrittenException(); } /// [requires: NV_depth_buffer_float] /// Specify the clear value for the depth buffer @@ -113372,32 +113372,32 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the depth value used when the depth buffer is cleared. The initial value is 1. /// [AutoGenerated(Category = "NV_depth_buffer_float", Version = "", EntryPoint = "glClearDepthdNV")] - public static void ClearDepth(Double depth) { throw new NotImplementedException(); } + public static void ClearDepth(Double depth) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glColor3hNV")] - public static void Color3h(Half red, Half green, Half blue) { throw new NotImplementedException(); } + public static void Color3h(Half red, Half green, Half blue) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glColor3hvNV")] [CLSCompliant(false)] - public static void Color3h([CountAttribute(Count = 3)] Half[] v) { throw new NotImplementedException(); } + public static void Color3h([CountAttribute(Count = 3)] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glColor3hvNV")] [CLSCompliant(false)] - public static void Color3h([CountAttribute(Count = 3)] ref Half v) { throw new NotImplementedException(); } + public static void Color3h([CountAttribute(Count = 3)] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glColor3hvNV")] [CLSCompliant(false)] - public static unsafe void Color3h([CountAttribute(Count = 3)] Half* v) { throw new NotImplementedException(); } + public static unsafe void Color3h([CountAttribute(Count = 3)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -113405,32 +113405,32 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glColor4hNV")] - public static void Color4h(Half red, Half green, Half blue, Half alpha) { throw new NotImplementedException(); } + public static void Color4h(Half red, Half green, Half blue, Half alpha) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 4] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glColor4hvNV")] [CLSCompliant(false)] - public static void Color4h([CountAttribute(Count = 4)] Half[] v) { throw new NotImplementedException(); } + public static void Color4h([CountAttribute(Count = 4)] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 4] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glColor4hvNV")] [CLSCompliant(false)] - public static void Color4h([CountAttribute(Count = 4)] ref Half v) { throw new NotImplementedException(); } + public static void Color4h([CountAttribute(Count = 4)] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 4] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glColor4hvNV")] [CLSCompliant(false)] - public static unsafe void Color4h([CountAttribute(Count = 4)] Half* v) { throw new NotImplementedException(); } + public static unsafe void Color4h([CountAttribute(Count = 4)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// /// /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glColorFormatNV")] - public static void ColorFormat(Int32 size, OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, Int32 stride) { throw new NotImplementedException(); } + public static void ColorFormat(Int32 size, OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -113440,7 +113440,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glCombinerInputNV")] - public static void CombinerInput(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners input, OpenTK.Graphics.OpenGL.NvRegisterCombiners mapping, OpenTK.Graphics.OpenGL.NvRegisterCombiners componentUsage) { throw new NotImplementedException(); } + public static void CombinerInput(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners input, OpenTK.Graphics.OpenGL.NvRegisterCombiners mapping, OpenTK.Graphics.OpenGL.NvRegisterCombiners componentUsage) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -113454,47 +113454,47 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glCombinerOutputNV")] - public static void CombinerOutput(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners abOutput, OpenTK.Graphics.OpenGL.NvRegisterCombiners cdOutput, OpenTK.Graphics.OpenGL.NvRegisterCombiners sumOutput, OpenTK.Graphics.OpenGL.NvRegisterCombiners scale, OpenTK.Graphics.OpenGL.NvRegisterCombiners bias, bool abDotProduct, bool cdDotProduct, bool muxSum) { throw new NotImplementedException(); } + public static void CombinerOutput(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners abOutput, OpenTK.Graphics.OpenGL.NvRegisterCombiners cdOutput, OpenTK.Graphics.OpenGL.NvRegisterCombiners sumOutput, OpenTK.Graphics.OpenGL.NvRegisterCombiners scale, OpenTK.Graphics.OpenGL.NvRegisterCombiners bias, bool abDotProduct, bool cdDotProduct, bool muxSum) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// /// [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glCombinerParameterfNV")] - public static void CombinerParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, Single param) { throw new NotImplementedException(); } + public static void CombinerParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glCombinerParameterfvNV")] [CLSCompliant(false)] - public static void CombinerParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void CombinerParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glCombinerParameterfvNV")] [CLSCompliant(false)] - public static unsafe void CombinerParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void CombinerParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// /// [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glCombinerParameteriNV")] - public static void CombinerParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, Int32 param) { throw new NotImplementedException(); } + public static void CombinerParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glCombinerParameterivNV")] [CLSCompliant(false)] - public static void CombinerParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void CombinerParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glCombinerParameterivNV")] [CLSCompliant(false)] - public static unsafe void CombinerParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void CombinerParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners2] /// @@ -113502,7 +113502,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_register_combiners2", Version = "", EntryPoint = "glCombinerStageParameterfvNV")] [CLSCompliant(false)] - public static void CombinerStageParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners2 stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners2 pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void CombinerStageParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners2 stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners2 pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners2] /// @@ -113510,7 +113510,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_register_combiners2", Version = "", EntryPoint = "glCombinerStageParameterfvNV")] [CLSCompliant(false)] - public static void CombinerStageParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners2 stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners2 pname, [CountAttribute(Computed = "pname")] ref Single @params) { throw new NotImplementedException(); } + public static void CombinerStageParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners2 stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners2 pname, [CountAttribute(Computed = "pname")] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners2] /// @@ -113518,45 +113518,45 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_register_combiners2", Version = "", EntryPoint = "glCombinerStageParameterfvNV")] [CLSCompliant(false)] - public static unsafe void CombinerStageParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners2 stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners2 pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void CombinerStageParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners2 stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners2 pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCommandListSegmentsNV")] [CLSCompliant(false)] - public static void CommandListSegments(Int32 list, Int32 segments) { throw new NotImplementedException(); } + public static void CommandListSegments(Int32 list, Int32 segments) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCommandListSegmentsNV")] [CLSCompliant(false)] - public static void CommandListSegments(UInt32 list, UInt32 segments) { throw new NotImplementedException(); } + public static void CommandListSegments(UInt32 list, UInt32 segments) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCompileCommandListNV")] [CLSCompliant(false)] - public static void CompileCommandList(Int32 list) { throw new NotImplementedException(); } + public static void CompileCommandList(Int32 list) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCompileCommandListNV")] [CLSCompliant(false)] - public static void CompileCommandList(UInt32 list) { throw new NotImplementedException(); } + public static void CompileCommandList(UInt32 list) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conservative_raster_dilate] /// /// [AutoGenerated(Category = "NV_conservative_raster_dilate", Version = "", EntryPoint = "glConservativeRasterParameterfNV")] - public static void ConservativeRasterParameter(OpenTK.Graphics.OpenGL.NvConservativeRasterDilate pname, Single value) { throw new NotImplementedException(); } + public static void ConservativeRasterParameter(OpenTK.Graphics.OpenGL.NvConservativeRasterDilate pname, Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conservative_raster_pre_snap_triangles] /// /// [AutoGenerated(Category = "NV_conservative_raster_pre_snap_triangles", Version = "", EntryPoint = "glConservativeRasterParameteriNV")] - public static void ConservativeRasterParameter(OpenTK.Graphics.OpenGL.NvConservativeRasterPreSnapTriangles pname, Int32 param) { throw new NotImplementedException(); } + public static void ConservativeRasterParameter(OpenTK.Graphics.OpenGL.NvConservativeRasterPreSnapTriangles pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: NV_copy_image] /// Perform a raw data copy between two images @@ -113606,7 +113606,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_copy_image", Version = "", EntryPoint = "glCopyImageSubDataNV")] [CLSCompliant(false)] - public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.OpenGL.NvCopyImage srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.OpenGL.NvCopyImage dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.OpenGL.NvCopyImage srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.OpenGL.NvCopyImage dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: NV_copy_image] /// Perform a raw data copy between two images @@ -113656,47 +113656,47 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_copy_image", Version = "", EntryPoint = "glCopyImageSubDataNV")] [CLSCompliant(false)] - public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.OpenGL.NvCopyImage srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.OpenGL.NvCopyImage dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.OpenGL.NvCopyImage srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.OpenGL.NvCopyImage dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCopyPathNV")] [CLSCompliant(false)] - public static void CopyPath(Int32 resultPath, Int32 srcPath) { throw new NotImplementedException(); } + public static void CopyPath(Int32 resultPath, Int32 srcPath) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCopyPathNV")] [CLSCompliant(false)] - public static void CopyPath(UInt32 resultPath, UInt32 srcPath) { throw new NotImplementedException(); } + public static void CopyPath(UInt32 resultPath, UInt32 srcPath) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationNV")] - public static void CoverageModulation(OpenTK.Graphics.OpenGL.NvFramebufferMixedSamples components) { throw new NotImplementedException(); } + public static void CoverageModulation(OpenTK.Graphics.OpenGL.NvFramebufferMixedSamples components) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static void CoverageModulationTable(Int32 n, Single[] v) { throw new NotImplementedException(); } + public static void CoverageModulationTable(Int32 n, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static void CoverageModulationTable(Int32 n, ref Single v) { throw new NotImplementedException(); } + public static void CoverageModulationTable(Int32 n, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static unsafe void CoverageModulationTable(Int32 n, Single* v) { throw new NotImplementedException(); } + public static unsafe void CoverageModulationTable(Int32 n, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113708,7 +113708,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113720,7 +113720,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113732,7 +113732,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113744,7 +113744,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113756,7 +113756,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113768,7 +113768,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113782,7 +113782,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113796,7 +113796,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113810,7 +113810,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113824,7 +113824,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113838,7 +113838,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113852,7 +113852,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113866,7 +113866,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113880,7 +113880,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113894,7 +113894,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113908,7 +113908,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113922,7 +113922,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113936,7 +113936,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113950,7 +113950,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113964,7 +113964,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113978,7 +113978,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113992,7 +113992,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114006,7 +114006,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114020,7 +114020,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114034,7 +114034,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114048,7 +114048,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114062,7 +114062,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114076,7 +114076,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114090,7 +114090,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114104,21 +114104,21 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] [CLSCompliant(false)] - public static void CoverFillPath(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering coverMode) { throw new NotImplementedException(); } + public static void CoverFillPath(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] [CLSCompliant(false)] - public static void CoverFillPath(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering coverMode) { throw new NotImplementedException(); } + public static void CoverFillPath(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114130,7 +114130,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114142,7 +114142,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114154,7 +114154,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114166,7 +114166,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114178,7 +114178,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114190,7 +114190,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114204,7 +114204,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114218,7 +114218,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114232,7 +114232,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114246,7 +114246,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114260,7 +114260,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114274,7 +114274,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114288,7 +114288,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114302,7 +114302,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114316,7 +114316,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114330,7 +114330,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114344,7 +114344,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114358,7 +114358,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114372,7 +114372,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114386,7 +114386,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114400,7 +114400,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114414,7 +114414,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114428,7 +114428,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114442,7 +114442,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114456,7 +114456,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114470,7 +114470,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114484,7 +114484,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114498,7 +114498,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114512,7 +114512,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114526,281 +114526,281 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathNV")] [CLSCompliant(false)] - public static void CoverStrokePath(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering coverMode) { throw new NotImplementedException(); } + public static void CoverStrokePath(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathNV")] [CLSCompliant(false)] - public static void CoverStrokePath(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering coverMode) { throw new NotImplementedException(); } + public static void CoverStrokePath(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateCommandListsNV")] [CLSCompliant(false)] - public static void CreateCommandLists(Int32 n, [OutAttribute] Int32[] lists) { throw new NotImplementedException(); } + public static void CreateCommandLists(Int32 n, [OutAttribute] Int32[] lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateCommandListsNV")] [CLSCompliant(false)] - public static void CreateCommandLists(Int32 n, [OutAttribute] out Int32 lists) { throw new NotImplementedException(); } + public static void CreateCommandLists(Int32 n, [OutAttribute] out Int32 lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateCommandListsNV")] [CLSCompliant(false)] - public static unsafe void CreateCommandLists(Int32 n, [OutAttribute] Int32* lists) { throw new NotImplementedException(); } + public static unsafe void CreateCommandLists(Int32 n, [OutAttribute] Int32* lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateCommandListsNV")] [CLSCompliant(false)] - public static void CreateCommandLists(Int32 n, [OutAttribute] UInt32[] lists) { throw new NotImplementedException(); } + public static void CreateCommandLists(Int32 n, [OutAttribute] UInt32[] lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateCommandListsNV")] [CLSCompliant(false)] - public static void CreateCommandLists(Int32 n, [OutAttribute] out UInt32 lists) { throw new NotImplementedException(); } + public static void CreateCommandLists(Int32 n, [OutAttribute] out UInt32 lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateCommandListsNV")] [CLSCompliant(false)] - public static unsafe void CreateCommandLists(Int32 n, [OutAttribute] UInt32* lists) { throw new NotImplementedException(); } + public static unsafe void CreateCommandLists(Int32 n, [OutAttribute] UInt32* lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateStatesNV")] [CLSCompliant(false)] - public static void CreateStates(Int32 n, [OutAttribute] Int32[] states) { throw new NotImplementedException(); } + public static void CreateStates(Int32 n, [OutAttribute] Int32[] states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateStatesNV")] [CLSCompliant(false)] - public static void CreateStates(Int32 n, [OutAttribute] out Int32 states) { throw new NotImplementedException(); } + public static void CreateStates(Int32 n, [OutAttribute] out Int32 states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateStatesNV")] [CLSCompliant(false)] - public static unsafe void CreateStates(Int32 n, [OutAttribute] Int32* states) { throw new NotImplementedException(); } + public static unsafe void CreateStates(Int32 n, [OutAttribute] Int32* states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateStatesNV")] [CLSCompliant(false)] - public static void CreateStates(Int32 n, [OutAttribute] UInt32[] states) { throw new NotImplementedException(); } + public static void CreateStates(Int32 n, [OutAttribute] UInt32[] states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateStatesNV")] [CLSCompliant(false)] - public static void CreateStates(Int32 n, [OutAttribute] out UInt32 states) { throw new NotImplementedException(); } + public static void CreateStates(Int32 n, [OutAttribute] out UInt32 states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateStatesNV")] [CLSCompliant(false)] - public static unsafe void CreateStates(Int32 n, [OutAttribute] UInt32* states) { throw new NotImplementedException(); } + public static unsafe void CreateStates(Int32 n, [OutAttribute] UInt32* states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static void DeleteCommandList(Int32 lists) { throw new NotImplementedException(); } + public static void DeleteCommandList(Int32 lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static void DeleteCommandList(UInt32 lists) { throw new NotImplementedException(); } + public static void DeleteCommandList(UInt32 lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static void DeleteCommandLists(Int32 n, Int32[] lists) { throw new NotImplementedException(); } + public static void DeleteCommandLists(Int32 n, Int32[] lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static void DeleteCommandLists(Int32 n, ref Int32 lists) { throw new NotImplementedException(); } + public static void DeleteCommandLists(Int32 n, ref Int32 lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static unsafe void DeleteCommandLists(Int32 n, Int32* lists) { throw new NotImplementedException(); } + public static unsafe void DeleteCommandLists(Int32 n, Int32* lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static void DeleteCommandLists(Int32 n, UInt32[] lists) { throw new NotImplementedException(); } + public static void DeleteCommandLists(Int32 n, UInt32[] lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static void DeleteCommandLists(Int32 n, ref UInt32 lists) { throw new NotImplementedException(); } + public static void DeleteCommandLists(Int32 n, ref UInt32 lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static unsafe void DeleteCommandLists(Int32 n, UInt32* lists) { throw new NotImplementedException(); } + public static unsafe void DeleteCommandLists(Int32 n, UInt32* lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFence([CountAttribute(Parameter = "n")] Int32 fences) { throw new NotImplementedException(); } + public static void DeleteFence([CountAttribute(Parameter = "n")] Int32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFence([CountAttribute(Parameter = "n")] UInt32 fences) { throw new NotImplementedException(); } + public static void DeleteFence([CountAttribute(Parameter = "n")] UInt32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32[] fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32* fences) { throw new NotImplementedException(); } + public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32* fences) { throw new NotImplementedException(); } + public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// [length: n] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glDeleteOcclusionQueriesNV")] [CLSCompliant(false)] - public static void DeleteOcclusionQuery([CountAttribute(Parameter = "n")] Int32 ids) { throw new NotImplementedException(); } + public static void DeleteOcclusionQuery([CountAttribute(Parameter = "n")] Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// [length: n] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glDeleteOcclusionQueriesNV")] [CLSCompliant(false)] - public static void DeleteOcclusionQuery([CountAttribute(Parameter = "n")] UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteOcclusionQuery([CountAttribute(Parameter = "n")] UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// /// [length: n] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glDeleteOcclusionQueriesNV")] [CLSCompliant(false)] - public static void DeleteOcclusionQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void DeleteOcclusionQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// /// [length: n] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glDeleteOcclusionQueriesNV")] [CLSCompliant(false)] - public static void DeleteOcclusionQueries(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new NotImplementedException(); } + public static void DeleteOcclusionQueries(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// /// [length: n] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glDeleteOcclusionQueriesNV")] [CLSCompliant(false)] - public static unsafe void DeleteOcclusionQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteOcclusionQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// /// [length: n] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glDeleteOcclusionQueriesNV")] [CLSCompliant(false)] - public static void DeleteOcclusionQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void DeleteOcclusionQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// /// [length: n] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glDeleteOcclusionQueriesNV")] [CLSCompliant(false)] - public static void DeleteOcclusionQueries(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteOcclusionQueries(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// /// [length: n] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glDeleteOcclusionQueriesNV")] [CLSCompliant(false)] - public static unsafe void DeleteOcclusionQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteOcclusionQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glDeletePathsNV")] [CLSCompliant(false)] - public static void DeletePath(Int32 path, Int32 range) { throw new NotImplementedException(); } + public static void DeletePath(Int32 path, Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glDeletePathsNV")] [CLSCompliant(false)] - public static void DeletePath(UInt32 path, Int32 range) { throw new NotImplementedException(); } + public static void DeletePath(UInt32 path, Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Deletes a program object @@ -114810,7 +114810,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glDeleteProgramsNV")] [CLSCompliant(false)] - public static void DeleteProgram([CountAttribute(Parameter = "n")] Int32 programs) { throw new NotImplementedException(); } + public static void DeleteProgram([CountAttribute(Parameter = "n")] Int32 programs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Deletes a program object @@ -114820,7 +114820,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glDeleteProgramsNV")] [CLSCompliant(false)] - public static void DeleteProgram([CountAttribute(Parameter = "n")] UInt32 programs) { throw new NotImplementedException(); } + public static void DeleteProgram([CountAttribute(Parameter = "n")] UInt32 programs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Deletes a program object @@ -114831,7 +114831,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glDeleteProgramsNV")] [CLSCompliant(false)] - public static void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] Int32[] programs) { throw new NotImplementedException(); } + public static void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] Int32[] programs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Deletes a program object @@ -114842,7 +114842,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glDeleteProgramsNV")] [CLSCompliant(false)] - public static void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 programs) { throw new NotImplementedException(); } + public static void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 programs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Deletes a program object @@ -114853,7 +114853,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glDeleteProgramsNV")] [CLSCompliant(false)] - public static unsafe void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] Int32* programs) { throw new NotImplementedException(); } + public static unsafe void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] Int32* programs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Deletes a program object @@ -114864,7 +114864,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glDeleteProgramsNV")] [CLSCompliant(false)] - public static void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] programs) { throw new NotImplementedException(); } + public static void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] programs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Deletes a program object @@ -114875,7 +114875,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glDeleteProgramsNV")] [CLSCompliant(false)] - public static void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 programs) { throw new NotImplementedException(); } + public static void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 programs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Deletes a program object @@ -114886,61 +114886,61 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glDeleteProgramsNV")] [CLSCompliant(false)] - public static unsafe void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] UInt32* programs) { throw new NotImplementedException(); } + public static unsafe void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] UInt32* programs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static void DeleteState(Int32 states) { throw new NotImplementedException(); } + public static void DeleteState(Int32 states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static void DeleteState(UInt32 states) { throw new NotImplementedException(); } + public static void DeleteState(UInt32 states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static void DeleteStates(Int32 n, Int32[] states) { throw new NotImplementedException(); } + public static void DeleteStates(Int32 n, Int32[] states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static void DeleteStates(Int32 n, ref Int32 states) { throw new NotImplementedException(); } + public static void DeleteStates(Int32 n, ref Int32 states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static unsafe void DeleteStates(Int32 n, Int32* states) { throw new NotImplementedException(); } + public static unsafe void DeleteStates(Int32 n, Int32* states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static void DeleteStates(Int32 n, UInt32[] states) { throw new NotImplementedException(); } + public static void DeleteStates(Int32 n, UInt32[] states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static void DeleteStates(Int32 n, ref UInt32 states) { throw new NotImplementedException(); } + public static void DeleteStates(Int32 n, ref UInt32 states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static unsafe void DeleteStates(Int32 n, UInt32* states) { throw new NotImplementedException(); } + public static unsafe void DeleteStates(Int32 n, UInt32* states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Delete transform feedback objects @@ -114950,7 +114950,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")] [CLSCompliant(false)] - public static void DeleteTransformFeedback([CountAttribute(Parameter = "n")] Int32 ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedback([CountAttribute(Parameter = "n")] Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Delete transform feedback objects @@ -114960,7 +114960,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")] [CLSCompliant(false)] - public static void DeleteTransformFeedback([CountAttribute(Parameter = "n")] UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedback([CountAttribute(Parameter = "n")] UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Delete transform feedback objects @@ -114973,7 +114973,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")] [CLSCompliant(false)] - public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Delete transform feedback objects @@ -114986,7 +114986,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")] [CLSCompliant(false)] - public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Delete transform feedback objects @@ -114999,7 +114999,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")] [CLSCompliant(false)] - public static unsafe void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Delete transform feedback objects @@ -115012,7 +115012,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")] [CLSCompliant(false)] - public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Delete transform feedback objects @@ -115025,7 +115025,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")] [CLSCompliant(false)] - public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Delete transform feedback objects @@ -115038,13 +115038,13 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")] [CLSCompliant(false)] - public static unsafe void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_depth_buffer_float] /// /// [AutoGenerated(Category = "NV_depth_buffer_float", Version = "", EntryPoint = "glDepthBoundsdNV")] - public static void DepthBounds(Double zmin, Double zmax) { throw new NotImplementedException(); } + public static void DepthBounds(Double zmin, Double zmax) { throw new BindingsNotRewrittenException(); } /// [requires: NV_depth_buffer_float] /// Specify mapping of depth values from normalized device coordinates to window coordinates @@ -115056,7 +115056,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the mapping of the far clipping plane to window coordinates. The initial value is 1. /// [AutoGenerated(Category = "NV_depth_buffer_float", Version = "", EntryPoint = "glDepthRangedNV")] - public static void DepthRange(Double zNear, Double zFar) { throw new NotImplementedException(); } + public static void DepthRange(Double zNear, Double zFar) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115065,7 +115065,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsAddressNV")] [CLSCompliant(false)] - public static void DrawCommandsAddres(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, Int64[] indirects, Int32[] sizes, Int32 count) { throw new NotImplementedException(); } + public static void DrawCommandsAddres(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, Int64[] indirects, Int32[] sizes, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115074,7 +115074,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsAddressNV")] [CLSCompliant(false)] - public static void DrawCommandsAddres(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, ref Int64 indirects, ref Int32 sizes, Int32 count) { throw new NotImplementedException(); } + public static void DrawCommandsAddres(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, ref Int64 indirects, ref Int32 sizes, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115083,7 +115083,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsAddressNV")] [CLSCompliant(false)] - public static unsafe void DrawCommandsAddres(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, Int64* indirects, Int32* sizes, Int32 count) { throw new NotImplementedException(); } + public static unsafe void DrawCommandsAddres(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, Int64* indirects, Int32* sizes, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115092,7 +115092,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsAddressNV")] [CLSCompliant(false)] - public static void DrawCommandsAddres(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, UInt64[] indirects, Int32[] sizes, UInt32 count) { throw new NotImplementedException(); } + public static void DrawCommandsAddres(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, UInt64[] indirects, Int32[] sizes, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115101,7 +115101,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsAddressNV")] [CLSCompliant(false)] - public static void DrawCommandsAddres(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, ref UInt64 indirects, ref Int32 sizes, UInt32 count) { throw new NotImplementedException(); } + public static void DrawCommandsAddres(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, ref UInt64 indirects, ref Int32 sizes, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115110,7 +115110,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsAddressNV")] [CLSCompliant(false)] - public static unsafe void DrawCommandsAddres(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, UInt64* indirects, Int32* sizes, UInt32 count) { throw new NotImplementedException(); } + public static unsafe void DrawCommandsAddres(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, UInt64* indirects, Int32* sizes, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115120,7 +115120,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsNV")] [CLSCompliant(false)] - public static void DrawCommands(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, Int32 buffer, IntPtr[] indirects, Int32[] sizes, Int32 count) { throw new NotImplementedException(); } + public static void DrawCommands(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, Int32 buffer, IntPtr[] indirects, Int32[] sizes, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115130,7 +115130,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsNV")] [CLSCompliant(false)] - public static void DrawCommands(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, Int32 buffer, ref IntPtr indirects, ref Int32 sizes, Int32 count) { throw new NotImplementedException(); } + public static void DrawCommands(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, Int32 buffer, ref IntPtr indirects, ref Int32 sizes, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115140,7 +115140,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsNV")] [CLSCompliant(false)] - public static unsafe void DrawCommands(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, Int32 buffer, IntPtr* indirects, Int32* sizes, Int32 count) { throw new NotImplementedException(); } + public static unsafe void DrawCommands(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, Int32 buffer, IntPtr* indirects, Int32* sizes, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115150,7 +115150,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsNV")] [CLSCompliant(false)] - public static void DrawCommands(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, UInt32 buffer, IntPtr[] indirects, Int32[] sizes, UInt32 count) { throw new NotImplementedException(); } + public static void DrawCommands(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, UInt32 buffer, IntPtr[] indirects, Int32[] sizes, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115160,7 +115160,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsNV")] [CLSCompliant(false)] - public static void DrawCommands(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, UInt32 buffer, ref IntPtr indirects, ref Int32 sizes, UInt32 count) { throw new NotImplementedException(); } + public static void DrawCommands(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, UInt32 buffer, ref IntPtr indirects, ref Int32 sizes, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115170,7 +115170,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsNV")] [CLSCompliant(false)] - public static unsafe void DrawCommands(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, UInt32 buffer, IntPtr* indirects, Int32* sizes, UInt32 count) { throw new NotImplementedException(); } + public static unsafe void DrawCommands(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, UInt32 buffer, IntPtr* indirects, Int32* sizes, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115180,7 +115180,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesAddressNV")] [CLSCompliant(false)] - public static void DrawCommandsStatesAddres(Int64[] indirects, Int32[] sizes, Int32[] states, Int32[] fbos, Int32 count) { throw new NotImplementedException(); } + public static void DrawCommandsStatesAddres(Int64[] indirects, Int32[] sizes, Int32[] states, Int32[] fbos, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115190,7 +115190,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesAddressNV")] [CLSCompliant(false)] - public static void DrawCommandsStatesAddres(ref Int64 indirects, ref Int32 sizes, ref Int32 states, ref Int32 fbos, Int32 count) { throw new NotImplementedException(); } + public static void DrawCommandsStatesAddres(ref Int64 indirects, ref Int32 sizes, ref Int32 states, ref Int32 fbos, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115200,7 +115200,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesAddressNV")] [CLSCompliant(false)] - public static unsafe void DrawCommandsStatesAddres(Int64* indirects, Int32* sizes, Int32* states, Int32* fbos, Int32 count) { throw new NotImplementedException(); } + public static unsafe void DrawCommandsStatesAddres(Int64* indirects, Int32* sizes, Int32* states, Int32* fbos, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115210,7 +115210,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesAddressNV")] [CLSCompliant(false)] - public static void DrawCommandsStatesAddres(UInt64[] indirects, Int32[] sizes, UInt32[] states, UInt32[] fbos, UInt32 count) { throw new NotImplementedException(); } + public static void DrawCommandsStatesAddres(UInt64[] indirects, Int32[] sizes, UInt32[] states, UInt32[] fbos, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115220,7 +115220,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesAddressNV")] [CLSCompliant(false)] - public static void DrawCommandsStatesAddres(ref UInt64 indirects, ref Int32 sizes, ref UInt32 states, ref UInt32 fbos, UInt32 count) { throw new NotImplementedException(); } + public static void DrawCommandsStatesAddres(ref UInt64 indirects, ref Int32 sizes, ref UInt32 states, ref UInt32 fbos, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115230,7 +115230,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesAddressNV")] [CLSCompliant(false)] - public static unsafe void DrawCommandsStatesAddres(UInt64* indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count) { throw new NotImplementedException(); } + public static unsafe void DrawCommandsStatesAddres(UInt64* indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115241,7 +115241,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesNV")] [CLSCompliant(false)] - public static void DrawCommandsStates(Int32 buffer, IntPtr[] indirects, Int32[] sizes, Int32[] states, Int32[] fbos, Int32 count) { throw new NotImplementedException(); } + public static void DrawCommandsStates(Int32 buffer, IntPtr[] indirects, Int32[] sizes, Int32[] states, Int32[] fbos, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115252,7 +115252,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesNV")] [CLSCompliant(false)] - public static void DrawCommandsStates(Int32 buffer, ref IntPtr indirects, ref Int32 sizes, ref Int32 states, ref Int32 fbos, Int32 count) { throw new NotImplementedException(); } + public static void DrawCommandsStates(Int32 buffer, ref IntPtr indirects, ref Int32 sizes, ref Int32 states, ref Int32 fbos, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115263,7 +115263,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesNV")] [CLSCompliant(false)] - public static unsafe void DrawCommandsStates(Int32 buffer, IntPtr* indirects, Int32* sizes, Int32* states, Int32* fbos, Int32 count) { throw new NotImplementedException(); } + public static unsafe void DrawCommandsStates(Int32 buffer, IntPtr* indirects, Int32* sizes, Int32* states, Int32* fbos, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115274,7 +115274,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesNV")] [CLSCompliant(false)] - public static void DrawCommandsStates(UInt32 buffer, IntPtr[] indirects, Int32[] sizes, UInt32[] states, UInt32[] fbos, UInt32 count) { throw new NotImplementedException(); } + public static void DrawCommandsStates(UInt32 buffer, IntPtr[] indirects, Int32[] sizes, UInt32[] states, UInt32[] fbos, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115285,7 +115285,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesNV")] [CLSCompliant(false)] - public static void DrawCommandsStates(UInt32 buffer, ref IntPtr indirects, ref Int32 sizes, ref UInt32 states, ref UInt32 fbos, UInt32 count) { throw new NotImplementedException(); } + public static void DrawCommandsStates(UInt32 buffer, ref IntPtr indirects, ref Int32 sizes, ref UInt32 states, ref UInt32 fbos, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115296,7 +115296,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesNV")] [CLSCompliant(false)] - public static unsafe void DrawCommandsStates(UInt32 buffer, IntPtr* indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count) { throw new NotImplementedException(); } + public static unsafe void DrawCommandsStates(UInt32 buffer, IntPtr* indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_texture] /// @@ -115312,7 +115312,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_draw_texture", Version = "", EntryPoint = "glDrawTextureNV")] [CLSCompliant(false)] - public static void DrawTexture(Int32 texture, Int32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new NotImplementedException(); } + public static void DrawTexture(Int32 texture, Int32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_texture] /// @@ -115328,7 +115328,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_draw_texture", Version = "", EntryPoint = "glDrawTextureNV")] [CLSCompliant(false)] - public static void DrawTexture(UInt32 texture, UInt32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new NotImplementedException(); } + public static void DrawTexture(UInt32 texture, UInt32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Render primitives using a count derived from a transform feedback object @@ -115342,7 +115342,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glDrawTransformFeedbackNV")] [CLSCompliant(false)] - public static void DrawTransformFeedback(OpenTK.Graphics.OpenGL.NvTransformFeedback2 mode, Int32 id) { throw new NotImplementedException(); } + public static void DrawTransformFeedback(OpenTK.Graphics.OpenGL.NvTransformFeedback2 mode, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Render primitives using a count derived from a transform feedback object @@ -115356,7 +115356,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glDrawTransformFeedbackNV")] [CLSCompliant(false)] - public static void DrawTransformFeedback(OpenTK.Graphics.OpenGL.NvTransformFeedback2 mode, UInt32 id) { throw new NotImplementedException(); } + public static void DrawTransformFeedback(OpenTK.Graphics.OpenGL.NvTransformFeedback2 mode, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Render primitives using a count derived from a transform feedback object @@ -115369,7 +115369,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glDrawTransformFeedbackNV")] [CLSCompliant(false)] - public static void DrawTransformFeedback(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 id) { throw new NotImplementedException(); } + public static void DrawTransformFeedback(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Render primitives using a count derived from a transform feedback object @@ -115382,7 +115382,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glDrawTransformFeedbackNV")] [CLSCompliant(false)] - public static void DrawTransformFeedback(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 id) { throw new NotImplementedException(); } + public static void DrawTransformFeedback(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// @@ -115398,7 +115398,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glDrawVkImageNV")] [CLSCompliant(false)] - public static void DrawVkImage(Int64 vkImage, Int32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new NotImplementedException(); } + public static void DrawVkImage(Int64 vkImage, Int32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// @@ -115414,42 +115414,42 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glDrawVkImageNV")] [CLSCompliant(false)] - public static void DrawVkImage(UInt64 vkImage, UInt32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new NotImplementedException(); } + public static void DrawVkImage(UInt64 vkImage, UInt32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glEdgeFlagFormatNV")] - public static void EdgeFlagFormat(Int32 stride) { throw new NotImplementedException(); } + public static void EdgeFlagFormat(Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conditional_render] [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glEndConditionalRenderNV")] - public static void EndConditionalRender() { throw new NotImplementedException(); } + public static void EndConditionalRender() { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glEndOcclusionQueryNV")] - public static void EndOcclusionQuery() { throw new NotImplementedException(); } + public static void EndOcclusionQuery() { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glEndTransformFeedbackNV")] - public static void EndTransformFeedback() { throw new NotImplementedException(); } + public static void EndTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glEndVideoCaptureNV")] [CLSCompliant(false)] - public static void EndVideoCapture(Int32 video_capture_slot) { throw new NotImplementedException(); } + public static void EndVideoCapture(Int32 video_capture_slot) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glEndVideoCaptureNV")] [CLSCompliant(false)] - public static void EndVideoCapture(UInt32 video_capture_slot) { throw new NotImplementedException(); } + public static void EndVideoCapture(UInt32 video_capture_slot) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// /// [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glEvalMapsNV")] - public static void EvalMap(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators mode) { throw new NotImplementedException(); } + public static void EvalMap(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -115457,7 +115457,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glExecuteProgramNV")] [CLSCompliant(false)] - public static void ExecuteProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 id, [CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void ExecuteProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 id, [CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -115465,7 +115465,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glExecuteProgramNV")] [CLSCompliant(false)] - public static void ExecuteProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 id, [CountAttribute(Count = 4)] ref Single @params) { throw new NotImplementedException(); } + public static void ExecuteProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 id, [CountAttribute(Count = 4)] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -115473,7 +115473,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glExecuteProgramNV")] [CLSCompliant(false)] - public static unsafe void ExecuteProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 id, [CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ExecuteProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 id, [CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -115481,7 +115481,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glExecuteProgramNV")] [CLSCompliant(false)] - public static void ExecuteProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 id, [CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void ExecuteProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 id, [CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -115489,7 +115489,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glExecuteProgramNV")] [CLSCompliant(false)] - public static void ExecuteProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 id, [CountAttribute(Count = 4)] ref Single @params) { throw new NotImplementedException(); } + public static void ExecuteProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 id, [CountAttribute(Count = 4)] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -115497,7 +115497,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glExecuteProgramNV")] [CLSCompliant(false)] - public static unsafe void ExecuteProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 id, [CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ExecuteProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 id, [CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -115505,57 +115505,57 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glFinalCombinerInputNV")] - public static void FinalCombinerInput(OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners input, OpenTK.Graphics.OpenGL.NvRegisterCombiners mapping, OpenTK.Graphics.OpenGL.NvRegisterCombiners componentUsage) { throw new NotImplementedException(); } + public static void FinalCombinerInput(OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners input, OpenTK.Graphics.OpenGL.NvRegisterCombiners mapping, OpenTK.Graphics.OpenGL.NvRegisterCombiners componentUsage) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glFinishFenceNV")] [CLSCompliant(false)] - public static void FinishFence(Int32 fence) { throw new NotImplementedException(); } + public static void FinishFence(Int32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glFinishFenceNV")] [CLSCompliant(false)] - public static void FinishFence(UInt32 fence) { throw new NotImplementedException(); } + public static void FinishFence(UInt32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_pixel_data_range] /// [AutoGenerated(Category = "NV_pixel_data_range", Version = "", EntryPoint = "glFlushPixelDataRangeNV")] - public static void FlushPixelDataRange(OpenTK.Graphics.OpenGL.NvPixelDataRange target) { throw new NotImplementedException(); } + public static void FlushPixelDataRange(OpenTK.Graphics.OpenGL.NvPixelDataRange target) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_array_range] [AutoGenerated(Category = "NV_vertex_array_range", Version = "", EntryPoint = "glFlushVertexArrayRangeNV")] - public static void FlushVertexArrayRange() { throw new NotImplementedException(); } + public static void FlushVertexArrayRange() { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glFogCoordFormatNV")] - public static void FogCoordFormat(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, Int32 stride) { throw new NotImplementedException(); } + public static void FogCoordFormat(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glFogCoordhNV")] - public static void FogCoordh(Half fog) { throw new NotImplementedException(); } + public static void FogCoordh(Half fog) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 1] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glFogCoordhvNV")] [CLSCompliant(false)] - public static unsafe void FogCoordh([CountAttribute(Count = 1)] Half* fog) { throw new NotImplementedException(); } + public static unsafe void FogCoordh([CountAttribute(Count = 1)] Half* fog) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_coverage_to_color] /// [AutoGenerated(Category = "NV_fragment_coverage_to_color", Version = "", EntryPoint = "glFragmentCoverageColorNV")] [CLSCompliant(false)] - public static void FragmentCoverageColor(Int32 color) { throw new NotImplementedException(); } + public static void FragmentCoverageColor(Int32 color) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_coverage_to_color] /// [AutoGenerated(Category = "NV_fragment_coverage_to_color", Version = "", EntryPoint = "glFragmentCoverageColorNV")] [CLSCompliant(false)] - public static void FragmentCoverageColor(UInt32 color) { throw new NotImplementedException(); } + public static void FragmentCoverageColor(UInt32 color) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -115564,7 +115564,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.NvSampleLocations target, Int32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.NvSampleLocations target, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -115573,7 +115573,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.NvSampleLocations target, Int32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.NvSampleLocations target, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -115582,7 +115582,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.NvSampleLocations target, Int32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.NvSampleLocations target, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -115591,7 +115591,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.NvSampleLocations target, UInt32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.NvSampleLocations target, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -115600,7 +115600,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.NvSampleLocations target, UInt32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.NvSampleLocations target, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -115609,160 +115609,160 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.NvSampleLocations target, UInt32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.NvSampleLocations target, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static Int32 GenFence() { throw new NotImplementedException(); } + public static Int32 GenFence() { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* fences) { throw new NotImplementedException(); } + public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* fences) { throw new NotImplementedException(); } + public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGenOcclusionQueriesNV")] [CLSCompliant(false)] - public static Int32 GenOcclusionQuery() { throw new NotImplementedException(); } + public static Int32 GenOcclusionQuery() { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// /// [length: n] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGenOcclusionQueriesNV")] [CLSCompliant(false)] - public static void GenOcclusionQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void GenOcclusionQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// /// [length: n] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGenOcclusionQueriesNV")] [CLSCompliant(false)] - public static void GenOcclusionQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new NotImplementedException(); } + public static void GenOcclusionQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// /// [length: n] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGenOcclusionQueriesNV")] [CLSCompliant(false)] - public static unsafe void GenOcclusionQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void GenOcclusionQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// /// [length: n] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGenOcclusionQueriesNV")] [CLSCompliant(false)] - public static void GenOcclusionQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void GenOcclusionQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// /// [length: n] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGenOcclusionQueriesNV")] [CLSCompliant(false)] - public static void GenOcclusionQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new NotImplementedException(); } + public static void GenOcclusionQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// /// [length: n] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGenOcclusionQueriesNV")] [CLSCompliant(false)] - public static unsafe void GenOcclusionQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void GenOcclusionQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGenPathsNV")] - public static Int32 GenPath(Int32 range) { throw new NotImplementedException(); } + public static Int32 GenPath(Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGenProgramsNV")] [CLSCompliant(false)] - public static Int32 GenProgram() { throw new NotImplementedException(); } + public static Int32 GenProgram() { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGenProgramsNV")] [CLSCompliant(false)] - public static void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] programs) { throw new NotImplementedException(); } + public static void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] programs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGenProgramsNV")] [CLSCompliant(false)] - public static void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 programs) { throw new NotImplementedException(); } + public static void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 programs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGenProgramsNV")] [CLSCompliant(false)] - public static unsafe void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* programs) { throw new NotImplementedException(); } + public static unsafe void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* programs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGenProgramsNV")] [CLSCompliant(false)] - public static void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] programs) { throw new NotImplementedException(); } + public static void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] programs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGenProgramsNV")] [CLSCompliant(false)] - public static void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 programs) { throw new NotImplementedException(); } + public static void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 programs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGenProgramsNV")] [CLSCompliant(false)] - public static unsafe void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* programs) { throw new NotImplementedException(); } + public static unsafe void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* programs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Reserve transform feedback object names /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glGenTransformFeedbacksNV")] [CLSCompliant(false)] - public static Int32 GenTransformFeedback() { throw new NotImplementedException(); } + public static Int32 GenTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Reserve transform feedback object names @@ -115775,7 +115775,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glGenTransformFeedbacksNV")] [CLSCompliant(false)] - public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Reserve transform feedback object names @@ -115788,7 +115788,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glGenTransformFeedbacksNV")] [CLSCompliant(false)] - public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new NotImplementedException(); } + public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Reserve transform feedback object names @@ -115801,7 +115801,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glGenTransformFeedbacksNV")] [CLSCompliant(false)] - public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Reserve transform feedback object names @@ -115814,7 +115814,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glGenTransformFeedbacksNV")] [CLSCompliant(false)] - public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Reserve transform feedback object names @@ -115827,7 +115827,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glGenTransformFeedbacksNV")] [CLSCompliant(false)] - public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new NotImplementedException(); } + public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Reserve transform feedback object names @@ -115840,7 +115840,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glGenTransformFeedbacksNV")] [CLSCompliant(false)] - public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// @@ -115852,7 +115852,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(program,index,bufSize)] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glGetActiveVaryingNV")] [CLSCompliant(false)] - public static void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.NvTransformFeedback type, [OutAttribute, CountAttribute(Computed = "program,index,bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.NvTransformFeedback type, [OutAttribute, CountAttribute(Computed = "program,index,bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// @@ -115864,7 +115864,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(program,index,bufSize)] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glGetActiveVaryingNV")] [CLSCompliant(false)] - public static unsafe void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.NvTransformFeedback* type, [OutAttribute, CountAttribute(Computed = "program,index,bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.NvTransformFeedback* type, [OutAttribute, CountAttribute(Computed = "program,index,bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// @@ -115876,7 +115876,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(program,index,bufSize)] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glGetActiveVaryingNV")] [CLSCompliant(false)] - public static void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.NvTransformFeedback type, [OutAttribute, CountAttribute(Computed = "program,index,bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.NvTransformFeedback type, [OutAttribute, CountAttribute(Computed = "program,index,bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// @@ -115888,7 +115888,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(program,index,bufSize)] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glGetActiveVaryingNV")] [CLSCompliant(false)] - public static unsafe void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.NvTransformFeedback* type, [OutAttribute, CountAttribute(Computed = "program,index,bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.NvTransformFeedback* type, [OutAttribute, CountAttribute(Computed = "program,index,bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Return parameters of a buffer object @@ -115904,7 +115904,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Return parameters of a buffer object @@ -115920,7 +115920,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Return parameters of a buffer object @@ -115936,7 +115936,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetBufferParameterui64vNV")] [CLSCompliant(false)] - public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Return parameters of a buffer object @@ -115952,7 +115952,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Return parameters of a buffer object @@ -115968,7 +115968,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Return parameters of a buffer object @@ -115984,7 +115984,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetBufferParameterui64vNV")] [CLSCompliant(false)] - public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -115994,7 +115994,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glGetCombinerInputParameterfvNV")] [CLSCompliant(false)] - public static void GetCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -116004,7 +116004,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glGetCombinerInputParameterfvNV")] [CLSCompliant(false)] - public static void GetCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -116014,7 +116014,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glGetCombinerInputParameterfvNV")] [CLSCompliant(false)] - public static unsafe void GetCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -116024,7 +116024,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glGetCombinerInputParameterivNV")] [CLSCompliant(false)] - public static void GetCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -116034,7 +116034,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glGetCombinerInputParameterivNV")] [CLSCompliant(false)] - public static void GetCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -116044,7 +116044,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glGetCombinerInputParameterivNV")] [CLSCompliant(false)] - public static unsafe void GetCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -116053,7 +116053,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glGetCombinerOutputParameterfvNV")] [CLSCompliant(false)] - public static void GetCombinerOutputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetCombinerOutputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -116062,7 +116062,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glGetCombinerOutputParameterfvNV")] [CLSCompliant(false)] - public static void GetCombinerOutputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetCombinerOutputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -116071,7 +116071,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glGetCombinerOutputParameterfvNV")] [CLSCompliant(false)] - public static unsafe void GetCombinerOutputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetCombinerOutputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -116080,7 +116080,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glGetCombinerOutputParameterivNV")] [CLSCompliant(false)] - public static void GetCombinerOutputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetCombinerOutputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -116089,7 +116089,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glGetCombinerOutputParameterivNV")] [CLSCompliant(false)] - public static void GetCombinerOutputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetCombinerOutputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -116098,7 +116098,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glGetCombinerOutputParameterivNV")] [CLSCompliant(false)] - public static unsafe void GetCombinerOutputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetCombinerOutputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners2] /// @@ -116106,7 +116106,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_register_combiners2", Version = "", EntryPoint = "glGetCombinerStageParameterfvNV")] [CLSCompliant(false)] - public static void GetCombinerStageParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners2 stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners2 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetCombinerStageParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners2 stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners2 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners2] /// @@ -116114,7 +116114,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_register_combiners2", Version = "", EntryPoint = "glGetCombinerStageParameterfvNV")] [CLSCompliant(false)] - public static void GetCombinerStageParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners2 stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners2 pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetCombinerStageParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners2 stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners2 pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners2] /// @@ -116122,47 +116122,47 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_register_combiners2", Version = "", EntryPoint = "glGetCombinerStageParameterfvNV")] [CLSCompliant(false)] - public static unsafe void GetCombinerStageParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners2 stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners2 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetCombinerStageParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners2 stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners2 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glGetCommandHeaderNV")] [CLSCompliant(false)] - public static Int32 GetCommandHeader(OpenTK.Graphics.OpenGL.NvCommandList tokenID, Int32 size) { throw new NotImplementedException(); } + public static Int32 GetCommandHeader(OpenTK.Graphics.OpenGL.NvCommandList tokenID, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glGetCommandHeaderNV")] [CLSCompliant(false)] - public static Int32 GetCommandHeader(OpenTK.Graphics.OpenGL.NvCommandList tokenID, UInt32 size) { throw new NotImplementedException(); } + public static Int32 GetCommandHeader(OpenTK.Graphics.OpenGL.NvCommandList tokenID, UInt32 size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glGetCoverageModulationTableNV")] [CLSCompliant(false)] - public static Single GetCoverageModulationTable() { throw new NotImplementedException(); } + public static Single GetCoverageModulationTable() { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glGetCoverageModulationTableNV")] [CLSCompliant(false)] - public static void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] Single[] v) { throw new NotImplementedException(); } + public static void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glGetCoverageModulationTableNV")] [CLSCompliant(false)] - public static void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] out Single v) { throw new NotImplementedException(); } + public static void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] out Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glGetCoverageModulationTableNV")] [CLSCompliant(false)] - public static unsafe void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] Single* v) { throw new NotImplementedException(); } + public static unsafe void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -116170,7 +116170,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static void GetFence(Int32 fence, OpenTK.Graphics.OpenGL.NvFence pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFence(Int32 fence, OpenTK.Graphics.OpenGL.NvFence pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -116178,7 +116178,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static void GetFence(Int32 fence, OpenTK.Graphics.OpenGL.NvFence pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFence(Int32 fence, OpenTK.Graphics.OpenGL.NvFence pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -116186,7 +116186,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static unsafe void GetFence(Int32 fence, OpenTK.Graphics.OpenGL.NvFence pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFence(Int32 fence, OpenTK.Graphics.OpenGL.NvFence pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -116194,7 +116194,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static void GetFence(UInt32 fence, OpenTK.Graphics.OpenGL.NvFence pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFence(UInt32 fence, OpenTK.Graphics.OpenGL.NvFence pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -116202,7 +116202,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static void GetFence(UInt32 fence, OpenTK.Graphics.OpenGL.NvFence pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFence(UInt32 fence, OpenTK.Graphics.OpenGL.NvFence pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -116210,7 +116210,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static unsafe void GetFence(UInt32 fence, OpenTK.Graphics.OpenGL.NvFence pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFence(UInt32 fence, OpenTK.Graphics.OpenGL.NvFence pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -116218,7 +116218,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glGetFinalCombinerInputParameterfvNV")] [CLSCompliant(false)] - public static void GetFinalCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetFinalCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -116226,7 +116226,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glGetFinalCombinerInputParameterfvNV")] [CLSCompliant(false)] - public static void GetFinalCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetFinalCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -116234,7 +116234,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glGetFinalCombinerInputParameterfvNV")] [CLSCompliant(false)] - public static unsafe void GetFinalCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetFinalCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -116242,7 +116242,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glGetFinalCombinerInputParameterivNV")] [CLSCompliant(false)] - public static void GetFinalCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFinalCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -116250,7 +116250,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glGetFinalCombinerInputParameterivNV")] [CLSCompliant(false)] - public static void GetFinalCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFinalCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -116258,7 +116258,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glGetFinalCombinerInputParameterivNV")] [CLSCompliant(false)] - public static unsafe void GetFinalCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFinalCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -116268,7 +116268,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetImageHandleNV")] [CLSCompliant(false)] - public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.NvBindlessTexture format) { throw new NotImplementedException(); } + public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.NvBindlessTexture format) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -116278,7 +116278,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetImageHandleNV")] [CLSCompliant(false)] - public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.NvBindlessTexture format) { throw new NotImplementedException(); } + public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.NvBindlessTexture format) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -116286,7 +116286,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glGetIntegerui64i_vNV")] [CLSCompliant(false)] - public static void GetIntegerui64(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory value, Int32 index, [OutAttribute, CountAttribute(Computed = "value")] Int64[] result) { throw new NotImplementedException(); } + public static void GetIntegerui64(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory value, Int32 index, [OutAttribute, CountAttribute(Computed = "value")] Int64[] result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -116294,7 +116294,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glGetIntegerui64i_vNV")] [CLSCompliant(false)] - public static void GetIntegerui64(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory value, Int32 index, [OutAttribute, CountAttribute(Computed = "value")] out Int64 result) { throw new NotImplementedException(); } + public static void GetIntegerui64(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory value, Int32 index, [OutAttribute, CountAttribute(Computed = "value")] out Int64 result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -116302,7 +116302,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glGetIntegerui64i_vNV")] [CLSCompliant(false)] - public static unsafe void GetIntegerui64(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory value, Int32 index, [OutAttribute, CountAttribute(Computed = "value")] Int64* result) { throw new NotImplementedException(); } + public static unsafe void GetIntegerui64(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory value, Int32 index, [OutAttribute, CountAttribute(Computed = "value")] Int64* result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -116310,7 +116310,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glGetIntegerui64i_vNV")] [CLSCompliant(false)] - public static void GetIntegerui64(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory value, UInt32 index, [OutAttribute, CountAttribute(Computed = "value")] UInt64[] result) { throw new NotImplementedException(); } + public static void GetIntegerui64(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory value, UInt32 index, [OutAttribute, CountAttribute(Computed = "value")] UInt64[] result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -116318,7 +116318,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glGetIntegerui64i_vNV")] [CLSCompliant(false)] - public static void GetIntegerui64(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory value, UInt32 index, [OutAttribute, CountAttribute(Computed = "value")] out UInt64 result) { throw new NotImplementedException(); } + public static void GetIntegerui64(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory value, UInt32 index, [OutAttribute, CountAttribute(Computed = "value")] out UInt64 result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -116326,55 +116326,55 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glGetIntegerui64i_vNV")] [CLSCompliant(false)] - public static unsafe void GetIntegerui64(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory value, UInt32 index, [OutAttribute, CountAttribute(Computed = "value")] UInt64* result) { throw new NotImplementedException(); } + public static unsafe void GetIntegerui64(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory value, UInt32 index, [OutAttribute, CountAttribute(Computed = "value")] UInt64* result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetIntegerui64vNV")] [CLSCompliant(false)] - public static Int64 GetInteger(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value) { throw new NotImplementedException(); } + public static Int64 GetInteger(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetIntegerui64vNV")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute, CountAttribute(Computed = "value")] Int64[] result) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute, CountAttribute(Computed = "value")] Int64[] result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetIntegerui64vNV")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute, CountAttribute(Computed = "value")] out Int64 result) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute, CountAttribute(Computed = "value")] out Int64 result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetIntegerui64vNV")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute, CountAttribute(Computed = "value")] Int64* result) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute, CountAttribute(Computed = "value")] Int64* result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetIntegerui64vNV")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute, CountAttribute(Computed = "value")] UInt64[] result) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute, CountAttribute(Computed = "value")] UInt64[] result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetIntegerui64vNV")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute, CountAttribute(Computed = "value")] out UInt64 result) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute, CountAttribute(Computed = "value")] out UInt64 result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetIntegerui64vNV")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute, CountAttribute(Computed = "value")] UInt64* result) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute, CountAttribute(Computed = "value")] UInt64* result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_internalformat_sample_query] /// @@ -116385,7 +116385,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] - public static void GetInternalformatSample(OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery target, OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery internalformat, Int32 samples, OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetInternalformatSample(OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery target, OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery internalformat, Int32 samples, OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_internalformat_sample_query] /// @@ -116396,7 +116396,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] - public static void GetInternalformatSample(OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery target, OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery internalformat, Int32 samples, OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetInternalformatSample(OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery target, OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery internalformat, Int32 samples, OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_internalformat_sample_query] /// @@ -116407,7 +116407,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] - public static unsafe void GetInternalformatSample(OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery target, OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery internalformat, Int32 samples, OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetInternalformatSample(OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery target, OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery internalformat, Int32 samples, OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116416,7 +116416,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapAttribParameterfvNV")] [CLSCompliant(false)] - public static void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116425,7 +116425,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapAttribParameterfvNV")] [CLSCompliant(false)] - public static void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116434,7 +116434,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapAttribParameterfvNV")] [CLSCompliant(false)] - public static unsafe void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116443,7 +116443,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapAttribParameterfvNV")] [CLSCompliant(false)] - public static void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116452,7 +116452,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapAttribParameterfvNV")] [CLSCompliant(false)] - public static void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116461,7 +116461,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapAttribParameterfvNV")] [CLSCompliant(false)] - public static unsafe void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116470,7 +116470,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapAttribParameterivNV")] [CLSCompliant(false)] - public static void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116479,7 +116479,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapAttribParameterivNV")] [CLSCompliant(false)] - public static void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116488,7 +116488,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapAttribParameterivNV")] [CLSCompliant(false)] - public static unsafe void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116497,7 +116497,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapAttribParameterivNV")] [CLSCompliant(false)] - public static void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116506,7 +116506,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapAttribParameterivNV")] [CLSCompliant(false)] - public static void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116515,7 +116515,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapAttribParameterivNV")] [CLSCompliant(false)] - public static unsafe void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116527,7 +116527,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapControlPointsNV")] [CLSCompliant(false)] - public static void GetMapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, bool packed, [OutAttribute, CountAttribute(Computed = "target")] IntPtr points) { throw new NotImplementedException(); } + public static void GetMapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, bool packed, [OutAttribute, CountAttribute(Computed = "target")] IntPtr points) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116541,7 +116541,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetMapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, bool packed, [InAttribute, OutAttribute, CountAttribute(Computed = "target")] T6[] points) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116555,7 +116555,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetMapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, bool packed, [InAttribute, OutAttribute, CountAttribute(Computed = "target")] T6[,] points) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116569,7 +116569,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetMapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, bool packed, [InAttribute, OutAttribute, CountAttribute(Computed = "target")] T6[,,] points) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116583,7 +116583,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetMapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, bool packed, [InAttribute, OutAttribute, CountAttribute(Computed = "target")] ref T6 points) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116595,7 +116595,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapControlPointsNV")] [CLSCompliant(false)] - public static void GetMapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, bool packed, [OutAttribute, CountAttribute(Computed = "target")] IntPtr points) { throw new NotImplementedException(); } + public static void GetMapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, bool packed, [OutAttribute, CountAttribute(Computed = "target")] IntPtr points) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116609,7 +116609,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetMapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, bool packed, [InAttribute, OutAttribute, CountAttribute(Computed = "target")] T6[] points) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116623,7 +116623,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetMapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, bool packed, [InAttribute, OutAttribute, CountAttribute(Computed = "target")] T6[,] points) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116637,7 +116637,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetMapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, bool packed, [InAttribute, OutAttribute, CountAttribute(Computed = "target")] T6[,,] points) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116651,7 +116651,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetMapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, bool packed, [InAttribute, OutAttribute, CountAttribute(Computed = "target")] ref T6 points) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116659,7 +116659,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,pname)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapParameterfvNV")] [CLSCompliant(false)] - public static void GetMapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "target,pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetMapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "target,pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116667,7 +116667,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,pname)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapParameterfvNV")] [CLSCompliant(false)] - public static void GetMapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "target,pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetMapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "target,pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116675,7 +116675,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,pname)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapParameterfvNV")] [CLSCompliant(false)] - public static unsafe void GetMapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "target,pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetMapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "target,pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116683,7 +116683,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,pname)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapParameterivNV")] [CLSCompliant(false)] - public static void GetMapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "target,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "target,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116691,7 +116691,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,pname)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapParameterivNV")] [CLSCompliant(false)] - public static void GetMapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "target,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "target,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116699,7 +116699,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,pname)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapParameterivNV")] [CLSCompliant(false)] - public static unsafe void GetMapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "target,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "target,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_explicit_multisample] /// Retrieve the location of a sample @@ -116715,7 +116715,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_explicit_multisample", Version = "", EntryPoint = "glGetMultisamplefvNV")] [CLSCompliant(false)] - public static void GetMultisample(OpenTK.Graphics.OpenGL.NvExplicitMultisample pname, Int32 index, [OutAttribute, CountAttribute(Count = 2)] Single[] val) { throw new NotImplementedException(); } + public static void GetMultisample(OpenTK.Graphics.OpenGL.NvExplicitMultisample pname, Int32 index, [OutAttribute, CountAttribute(Count = 2)] Single[] val) { throw new BindingsNotRewrittenException(); } /// [requires: NV_explicit_multisample] /// Retrieve the location of a sample @@ -116731,7 +116731,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_explicit_multisample", Version = "", EntryPoint = "glGetMultisamplefvNV")] [CLSCompliant(false)] - public static void GetMultisample(OpenTK.Graphics.OpenGL.NvExplicitMultisample pname, Int32 index, [OutAttribute, CountAttribute(Count = 2)] out Single val) { throw new NotImplementedException(); } + public static void GetMultisample(OpenTK.Graphics.OpenGL.NvExplicitMultisample pname, Int32 index, [OutAttribute, CountAttribute(Count = 2)] out Single val) { throw new BindingsNotRewrittenException(); } /// [requires: NV_explicit_multisample] /// Retrieve the location of a sample @@ -116747,7 +116747,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_explicit_multisample", Version = "", EntryPoint = "glGetMultisamplefvNV")] [CLSCompliant(false)] - public static unsafe void GetMultisample(OpenTK.Graphics.OpenGL.NvExplicitMultisample pname, Int32 index, [OutAttribute, CountAttribute(Count = 2)] Single* val) { throw new NotImplementedException(); } + public static unsafe void GetMultisample(OpenTK.Graphics.OpenGL.NvExplicitMultisample pname, Int32 index, [OutAttribute, CountAttribute(Count = 2)] Single* val) { throw new BindingsNotRewrittenException(); } /// [requires: NV_explicit_multisample] /// Retrieve the location of a sample @@ -116763,7 +116763,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_explicit_multisample", Version = "", EntryPoint = "glGetMultisamplefvNV")] [CLSCompliant(false)] - public static void GetMultisample(OpenTK.Graphics.OpenGL.NvExplicitMultisample pname, UInt32 index, [OutAttribute, CountAttribute(Count = 2)] Single[] val) { throw new NotImplementedException(); } + public static void GetMultisample(OpenTK.Graphics.OpenGL.NvExplicitMultisample pname, UInt32 index, [OutAttribute, CountAttribute(Count = 2)] Single[] val) { throw new BindingsNotRewrittenException(); } /// [requires: NV_explicit_multisample] /// Retrieve the location of a sample @@ -116779,7 +116779,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_explicit_multisample", Version = "", EntryPoint = "glGetMultisamplefvNV")] [CLSCompliant(false)] - public static void GetMultisample(OpenTK.Graphics.OpenGL.NvExplicitMultisample pname, UInt32 index, [OutAttribute, CountAttribute(Count = 2)] out Single val) { throw new NotImplementedException(); } + public static void GetMultisample(OpenTK.Graphics.OpenGL.NvExplicitMultisample pname, UInt32 index, [OutAttribute, CountAttribute(Count = 2)] out Single val) { throw new BindingsNotRewrittenException(); } /// [requires: NV_explicit_multisample] /// Retrieve the location of a sample @@ -116795,7 +116795,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_explicit_multisample", Version = "", EntryPoint = "glGetMultisamplefvNV")] [CLSCompliant(false)] - public static unsafe void GetMultisample(OpenTK.Graphics.OpenGL.NvExplicitMultisample pname, UInt32 index, [OutAttribute, CountAttribute(Count = 2)] Single* val) { throw new NotImplementedException(); } + public static unsafe void GetMultisample(OpenTK.Graphics.OpenGL.NvExplicitMultisample pname, UInt32 index, [OutAttribute, CountAttribute(Count = 2)] Single* val) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -116803,7 +116803,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -116811,7 +116811,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -116819,7 +116819,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -116828,7 +116828,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -116837,7 +116837,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -116846,7 +116846,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -116854,7 +116854,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -116862,7 +116862,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -116870,7 +116870,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -116879,7 +116879,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -116888,7 +116888,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -116897,7 +116897,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// @@ -116905,7 +116905,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGetOcclusionQueryivNV")] [CLSCompliant(false)] - public static void GetOcclusionQuery(Int32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetOcclusionQuery(Int32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// @@ -116913,7 +116913,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGetOcclusionQueryivNV")] [CLSCompliant(false)] - public static void GetOcclusionQuery(Int32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetOcclusionQuery(Int32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// @@ -116921,7 +116921,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGetOcclusionQueryivNV")] [CLSCompliant(false)] - public static unsafe void GetOcclusionQuery(Int32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetOcclusionQuery(Int32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// @@ -116929,7 +116929,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGetOcclusionQueryivNV")] [CLSCompliant(false)] - public static void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// @@ -116937,7 +116937,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGetOcclusionQueryivNV")] [CLSCompliant(false)] - public static void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// @@ -116945,7 +116945,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGetOcclusionQueryivNV")] [CLSCompliant(false)] - public static unsafe void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// @@ -116953,7 +116953,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGetOcclusionQueryuivNV")] [CLSCompliant(false)] - public static void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// @@ -116961,7 +116961,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGetOcclusionQueryuivNV")] [CLSCompliant(false)] - public static void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// @@ -116969,7 +116969,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGetOcclusionQueryuivNV")] [CLSCompliant(false)] - public static unsafe void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -116977,7 +116977,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void GetPathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -116985,7 +116985,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new NotImplementedException(); } + public static void GetPathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -116993,7 +116993,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117001,7 +117001,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117009,7 +117009,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117017,169 +117017,169 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] - public static unsafe void GetPathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static Byte GetPathCommand(Int32 path) { throw new NotImplementedException(); } + public static Byte GetPathCommand(Int32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static Byte GetPathCommand(UInt32 path) { throw new NotImplementedException(); } + public static Byte GetPathCommand(UInt32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte[] commands) { throw new NotImplementedException(); } + public static void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte[] commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Byte commands) { throw new NotImplementedException(); } + public static void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Byte commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static unsafe void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands) { throw new NotImplementedException(); } + public static unsafe void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte[] commands) { throw new NotImplementedException(); } + public static void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte[] commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Byte commands) { throw new NotImplementedException(); } + public static void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Byte commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static unsafe void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands) { throw new NotImplementedException(); } + public static unsafe void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static Single GetPathCoord(Int32 path) { throw new NotImplementedException(); } + public static Single GetPathCoord(Int32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static Single GetPathCoord(UInt32 path) { throw new NotImplementedException(); } + public static Single GetPathCoord(UInt32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] coords) { throw new NotImplementedException(); } + public static void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single coords) { throw new NotImplementedException(); } + public static void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static unsafe void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords) { throw new NotImplementedException(); } + public static unsafe void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] coords) { throw new NotImplementedException(); } + public static void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single coords) { throw new NotImplementedException(); } + public static void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static unsafe void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords) { throw new NotImplementedException(); } + public static unsafe void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static Single GetPathDashArray(Int32 path) { throw new NotImplementedException(); } + public static Single GetPathDashArray(Int32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static Single GetPathDashArray(UInt32 path) { throw new NotImplementedException(); } + public static Single GetPathDashArray(UInt32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] dashArray) { throw new NotImplementedException(); } + public static void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single dashArray) { throw new NotImplementedException(); } + public static void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static unsafe void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray) { throw new NotImplementedException(); } + public static unsafe void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] dashArray) { throw new NotImplementedException(); } + public static void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single dashArray) { throw new NotImplementedException(); } + public static void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static unsafe void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray) { throw new NotImplementedException(); } + public static unsafe void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117187,7 +117187,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathLengthNV")] [CLSCompliant(false)] - public static Single GetPathLength(Int32 path, Int32 startSegment, Int32 numSegments) { throw new NotImplementedException(); } + public static Single GetPathLength(Int32 path, Int32 startSegment, Int32 numSegments) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117195,7 +117195,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathLengthNV")] [CLSCompliant(false)] - public static Single GetPathLength(UInt32 path, Int32 startSegment, Int32 numSegments) { throw new NotImplementedException(); } + public static Single GetPathLength(UInt32 path, Int32 startSegment, Int32 numSegments) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117205,7 +117205,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new NotImplementedException(); } + public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117215,7 +117215,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new NotImplementedException(); } + public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117225,7 +117225,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new NotImplementedException(); } + public static unsafe void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117235,7 +117235,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new NotImplementedException(); } + public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117245,7 +117245,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new NotImplementedException(); } + public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117255,7 +117255,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new NotImplementedException(); } + public static unsafe void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117267,7 +117267,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new NotImplementedException(); } + public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117279,7 +117279,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new NotImplementedException(); } + public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117291,7 +117291,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new NotImplementedException(); } + public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117305,7 +117305,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117319,7 +117319,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117333,7 +117333,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117347,7 +117347,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117361,7 +117361,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117375,7 +117375,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117389,7 +117389,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117403,7 +117403,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117417,7 +117417,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117431,7 +117431,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117445,7 +117445,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117459,7 +117459,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117471,7 +117471,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new NotImplementedException(); } + public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117483,7 +117483,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new NotImplementedException(); } + public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117495,7 +117495,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new NotImplementedException(); } + public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117509,7 +117509,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117523,7 +117523,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117537,7 +117537,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117551,7 +117551,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117565,7 +117565,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117579,7 +117579,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117593,7 +117593,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117607,7 +117607,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117621,7 +117621,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117635,7 +117635,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117649,7 +117649,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117663,7 +117663,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117671,7 +117671,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new NotImplementedException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117679,7 +117679,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new NotImplementedException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117687,7 +117687,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117695,7 +117695,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new NotImplementedException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117703,7 +117703,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new NotImplementedException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117711,7 +117711,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117719,7 +117719,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117727,7 +117727,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117735,7 +117735,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117743,7 +117743,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117751,7 +117751,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117759,7 +117759,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117773,7 +117773,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new NotImplementedException(); } + public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117787,7 +117787,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new NotImplementedException(); } + public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117801,7 +117801,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new NotImplementedException(); } + public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117815,7 +117815,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new NotImplementedException(); } + public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117829,7 +117829,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new NotImplementedException(); } + public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117843,7 +117843,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new NotImplementedException(); } + public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117859,7 +117859,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117875,7 +117875,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117891,7 +117891,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117907,7 +117907,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117923,7 +117923,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117939,7 +117939,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117955,7 +117955,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117971,7 +117971,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117987,7 +117987,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118003,7 +118003,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118019,7 +118019,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118035,7 +118035,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118051,7 +118051,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118067,7 +118067,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118083,7 +118083,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118099,7 +118099,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118115,7 +118115,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118131,7 +118131,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118147,7 +118147,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118163,7 +118163,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118179,7 +118179,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118195,7 +118195,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118211,7 +118211,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118227,7 +118227,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118235,7 +118235,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.OpenGL.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.OpenGL.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118243,7 +118243,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.OpenGL.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.OpenGL.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118251,7 +118251,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathTexGen(OpenTK.Graphics.OpenGL.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.OpenGL.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118259,7 +118259,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.OpenGL.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.OpenGL.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118267,7 +118267,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.OpenGL.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.OpenGL.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118275,7 +118275,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static unsafe void GetPathTexGen(OpenTK.Graphics.OpenGL.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.OpenGL.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -118283,7 +118283,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramEnvParameterIivNV")] [CLSCompliant(false)] - public static void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -118291,7 +118291,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramEnvParameterIivNV")] [CLSCompliant(false)] - public static void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -118299,7 +118299,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramEnvParameterIivNV")] [CLSCompliant(false)] - public static unsafe void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -118307,7 +118307,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramEnvParameterIivNV")] [CLSCompliant(false)] - public static void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -118315,7 +118315,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramEnvParameterIivNV")] [CLSCompliant(false)] - public static void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -118323,7 +118323,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramEnvParameterIivNV")] [CLSCompliant(false)] - public static unsafe void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -118331,7 +118331,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramEnvParameterIuivNV")] [CLSCompliant(false)] - public static void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -118339,7 +118339,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramEnvParameterIuivNV")] [CLSCompliant(false)] - public static void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -118347,7 +118347,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramEnvParameterIuivNV")] [CLSCompliant(false)] - public static unsafe void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Returns a parameter from a program object @@ -118363,7 +118363,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramivNV")] [CLSCompliant(false)] - public static void GetProgram(Int32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgram(Int32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Returns a parameter from a program object @@ -118379,7 +118379,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramivNV")] [CLSCompliant(false)] - public static void GetProgram(Int32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(Int32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Returns a parameter from a program object @@ -118395,7 +118395,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramivNV")] [CLSCompliant(false)] - public static unsafe void GetProgram(Int32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(Int32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Returns a parameter from a program object @@ -118411,7 +118411,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramivNV")] [CLSCompliant(false)] - public static void GetProgram(UInt32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgram(UInt32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Returns a parameter from a program object @@ -118427,7 +118427,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramivNV")] [CLSCompliant(false)] - public static void GetProgram(UInt32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(UInt32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Returns a parameter from a program object @@ -118443,7 +118443,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramivNV")] [CLSCompliant(false)] - public static unsafe void GetProgram(UInt32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(UInt32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -118451,7 +118451,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramLocalParameterIivNV")] [CLSCompliant(false)] - public static void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -118459,7 +118459,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramLocalParameterIivNV")] [CLSCompliant(false)] - public static void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -118467,7 +118467,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramLocalParameterIivNV")] [CLSCompliant(false)] - public static unsafe void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -118475,7 +118475,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramLocalParameterIivNV")] [CLSCompliant(false)] - public static void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -118483,7 +118483,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramLocalParameterIivNV")] [CLSCompliant(false)] - public static void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -118491,7 +118491,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramLocalParameterIivNV")] [CLSCompliant(false)] - public static unsafe void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -118499,7 +118499,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramLocalParameterIuivNV")] [CLSCompliant(false)] - public static void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -118507,7 +118507,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramLocalParameterIuivNV")] [CLSCompliant(false)] - public static void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -118515,7 +118515,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramLocalParameterIuivNV")] [CLSCompliant(false)] - public static unsafe void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -118524,7 +118524,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glGetProgramNamedParameterdvNV")] [CLSCompliant(false)] - public static void GetProgramNamedParameter(Int32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetProgramNamedParameter(Int32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -118533,7 +118533,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glGetProgramNamedParameterdvNV")] [CLSCompliant(false)] - public static void GetProgramNamedParameter(Int32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetProgramNamedParameter(Int32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -118542,7 +118542,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glGetProgramNamedParameterdvNV")] [CLSCompliant(false)] - public static unsafe void GetProgramNamedParameter(Int32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramNamedParameter(Int32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -118551,7 +118551,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glGetProgramNamedParameterdvNV")] [CLSCompliant(false)] - public static void GetProgramNamedParameter(UInt32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetProgramNamedParameter(UInt32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -118560,7 +118560,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glGetProgramNamedParameterdvNV")] [CLSCompliant(false)] - public static void GetProgramNamedParameter(UInt32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetProgramNamedParameter(UInt32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -118569,7 +118569,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glGetProgramNamedParameterdvNV")] [CLSCompliant(false)] - public static unsafe void GetProgramNamedParameter(UInt32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramNamedParameter(UInt32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -118578,7 +118578,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glGetProgramNamedParameterfvNV")] [CLSCompliant(false)] - public static void GetProgramNamedParameter(Int32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramNamedParameter(Int32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -118587,7 +118587,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glGetProgramNamedParameterfvNV")] [CLSCompliant(false)] - public static void GetProgramNamedParameter(Int32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramNamedParameter(Int32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -118596,7 +118596,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glGetProgramNamedParameterfvNV")] [CLSCompliant(false)] - public static unsafe void GetProgramNamedParameter(Int32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramNamedParameter(Int32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -118605,7 +118605,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glGetProgramNamedParameterfvNV")] [CLSCompliant(false)] - public static void GetProgramNamedParameter(UInt32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramNamedParameter(UInt32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -118614,7 +118614,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glGetProgramNamedParameterfvNV")] [CLSCompliant(false)] - public static void GetProgramNamedParameter(UInt32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramNamedParameter(UInt32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -118623,7 +118623,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glGetProgramNamedParameterfvNV")] [CLSCompliant(false)] - public static unsafe void GetProgramNamedParameter(UInt32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramNamedParameter(UInt32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118632,7 +118632,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramParameterdvNV")] [CLSCompliant(false)] - public static void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118641,7 +118641,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramParameterdvNV")] [CLSCompliant(false)] - public static void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118650,7 +118650,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramParameterdvNV")] [CLSCompliant(false)] - public static unsafe void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118659,7 +118659,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramParameterdvNV")] [CLSCompliant(false)] - public static void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118668,7 +118668,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramParameterdvNV")] [CLSCompliant(false)] - public static void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118677,7 +118677,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramParameterdvNV")] [CLSCompliant(false)] - public static unsafe void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118686,7 +118686,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramParameterfvNV")] [CLSCompliant(false)] - public static void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118695,7 +118695,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramParameterfvNV")] [CLSCompliant(false)] - public static void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118704,7 +118704,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramParameterfvNV")] [CLSCompliant(false)] - public static unsafe void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118713,7 +118713,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramParameterfvNV")] [CLSCompliant(false)] - public static void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118722,7 +118722,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramParameterfvNV")] [CLSCompliant(false)] - public static void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118731,7 +118731,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramParameterfvNV")] [CLSCompliant(false)] - public static unsafe void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -118750,7 +118750,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL.NvPathRendering programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.OpenGL.NvPathRendering[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL.NvPathRendering programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.OpenGL.NvPathRendering[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -118769,7 +118769,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL.NvPathRendering programInterface, Int32 index, Int32 propCount, ref OpenTK.Graphics.OpenGL.NvPathRendering props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL.NvPathRendering programInterface, Int32 index, Int32 propCount, ref OpenTK.Graphics.OpenGL.NvPathRendering props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -118788,7 +118788,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL.NvPathRendering programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.OpenGL.NvPathRendering* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL.NvPathRendering programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.OpenGL.NvPathRendering* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -118807,7 +118807,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL.NvPathRendering programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.OpenGL.NvPathRendering[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL.NvPathRendering programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.OpenGL.NvPathRendering[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -118826,7 +118826,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL.NvPathRendering programInterface, UInt32 index, Int32 propCount, ref OpenTK.Graphics.OpenGL.NvPathRendering props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL.NvPathRendering programInterface, UInt32 index, Int32 propCount, ref OpenTK.Graphics.OpenGL.NvPathRendering props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -118845,7 +118845,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL.NvPathRendering programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.OpenGL.NvPathRendering* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL.NvPathRendering programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.OpenGL.NvPathRendering* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118853,7 +118853,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id,pname)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramStringNV")] [CLSCompliant(false)] - public static void GetProgramString(Int32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Computed = "id,pname")] Byte[] program) { throw new NotImplementedException(); } + public static void GetProgramString(Int32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Computed = "id,pname")] Byte[] program) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118861,7 +118861,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id,pname)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramStringNV")] [CLSCompliant(false)] - public static void GetProgramString(Int32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Computed = "id,pname")] out Byte program) { throw new NotImplementedException(); } + public static void GetProgramString(Int32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Computed = "id,pname")] out Byte program) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118869,7 +118869,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id,pname)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramStringNV")] [CLSCompliant(false)] - public static unsafe void GetProgramString(Int32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Computed = "id,pname")] Byte* program) { throw new NotImplementedException(); } + public static unsafe void GetProgramString(Int32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Computed = "id,pname")] Byte* program) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118877,7 +118877,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id,pname)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramStringNV")] [CLSCompliant(false)] - public static void GetProgramString(UInt32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Computed = "id,pname")] Byte[] program) { throw new NotImplementedException(); } + public static void GetProgramString(UInt32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Computed = "id,pname")] Byte[] program) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118885,7 +118885,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id,pname)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramStringNV")] [CLSCompliant(false)] - public static void GetProgramString(UInt32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Computed = "id,pname")] out Byte program) { throw new NotImplementedException(); } + public static void GetProgramString(UInt32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Computed = "id,pname")] out Byte program) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118893,7 +118893,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id,pname)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramStringNV")] [CLSCompliant(false)] - public static unsafe void GetProgramString(UInt32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Computed = "id,pname")] Byte* program) { throw new NotImplementedException(); } + public static unsafe void GetProgramString(UInt32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Computed = "id,pname")] Byte* program) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program5] /// @@ -118901,7 +118901,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_gpu_program5", Version = "", EntryPoint = "glGetProgramSubroutineParameteruivNV")] [CLSCompliant(false)] - public static void GetProgramSubroutineParameter(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] param) { throw new NotImplementedException(); } + public static void GetProgramSubroutineParameter(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program5] /// @@ -118909,7 +118909,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_gpu_program5", Version = "", EntryPoint = "glGetProgramSubroutineParameteruivNV")] [CLSCompliant(false)] - public static void GetProgramSubroutineParameter(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 param) { throw new NotImplementedException(); } + public static void GetProgramSubroutineParameter(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program5] /// @@ -118917,7 +118917,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_gpu_program5", Version = "", EntryPoint = "glGetProgramSubroutineParameteruivNV")] [CLSCompliant(false)] - public static unsafe void GetProgramSubroutineParameter(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetProgramSubroutineParameter(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program5] /// @@ -118925,7 +118925,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_gpu_program5", Version = "", EntryPoint = "glGetProgramSubroutineParameteruivNV")] [CLSCompliant(false)] - public static void GetProgramSubroutineParameter(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] UInt32[] param) { throw new NotImplementedException(); } + public static void GetProgramSubroutineParameter(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] UInt32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program5] /// @@ -118933,7 +118933,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_gpu_program5", Version = "", EntryPoint = "glGetProgramSubroutineParameteruivNV")] [CLSCompliant(false)] - public static void GetProgramSubroutineParameter(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out UInt32 param) { throw new NotImplementedException(); } + public static void GetProgramSubroutineParameter(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out UInt32 param) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program5] /// @@ -118941,38 +118941,38 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_gpu_program5", Version = "", EntryPoint = "glGetProgramSubroutineParameteruivNV")] [CLSCompliant(false)] - public static unsafe void GetProgramSubroutineParameter(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] UInt32* param) { throw new NotImplementedException(); } + public static unsafe void GetProgramSubroutineParameter(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] UInt32* param) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glGetStageIndexNV")] - public static Int16 GetStageIndex(OpenTK.Graphics.OpenGL.NvCommandList shadertype) { throw new NotImplementedException(); } + public static Int16 GetStageIndex(OpenTK.Graphics.OpenGL.NvCommandList shadertype) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleNV")] [CLSCompliant(false)] - public static Int64 GetTextureHandle(Int32 texture) { throw new NotImplementedException(); } + public static Int64 GetTextureHandle(Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleNV")] [CLSCompliant(false)] - public static Int64 GetTextureHandle(UInt32 texture) { throw new NotImplementedException(); } + public static Int64 GetTextureHandle(UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureSamplerHandleNV")] [CLSCompliant(false)] - public static Int64 GetTextureSamplerHandle(Int32 texture, Int32 sampler) { throw new NotImplementedException(); } + public static Int64 GetTextureSamplerHandle(Int32 texture, Int32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureSamplerHandleNV")] [CLSCompliant(false)] - public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new NotImplementedException(); } + public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118981,7 +118981,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetTrackMatrixivNV")] [CLSCompliant(false)] - public static void GetTrackMatrix(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 address, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTrackMatrix(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 address, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118990,7 +118990,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetTrackMatrixivNV")] [CLSCompliant(false)] - public static unsafe void GetTrackMatrix(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 address, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTrackMatrix(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 address, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118999,7 +118999,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetTrackMatrixivNV")] [CLSCompliant(false)] - public static void GetTrackMatrix(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 address, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTrackMatrix(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 address, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -119008,7 +119008,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetTrackMatrixivNV")] [CLSCompliant(false)] - public static unsafe void GetTrackMatrix(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 address, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTrackMatrix(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 address, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// Retrieve information about varying variables selected for transform feedback @@ -119024,7 +119024,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glGetTransformFeedbackVaryingNV")] [CLSCompliant(false)] - public static void GetTransformFeedbackVarying(Int32 program, Int32 index, [OutAttribute, CountAttribute(Count = 1)] out Int32 location) { throw new NotImplementedException(); } + public static void GetTransformFeedbackVarying(Int32 program, Int32 index, [OutAttribute, CountAttribute(Count = 1)] out Int32 location) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// Retrieve information about varying variables selected for transform feedback @@ -119040,7 +119040,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glGetTransformFeedbackVaryingNV")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, [OutAttribute, CountAttribute(Count = 1)] Int32* location) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, [OutAttribute, CountAttribute(Count = 1)] Int32* location) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// Retrieve information about varying variables selected for transform feedback @@ -119056,7 +119056,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glGetTransformFeedbackVaryingNV")] [CLSCompliant(false)] - public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, [OutAttribute, CountAttribute(Count = 1)] out Int32 location) { throw new NotImplementedException(); } + public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, [OutAttribute, CountAttribute(Count = 1)] out Int32 location) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// Retrieve information about varying variables selected for transform feedback @@ -119072,7 +119072,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glGetTransformFeedbackVaryingNV")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, [OutAttribute, CountAttribute(Count = 1)] Int32* location) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, [OutAttribute, CountAttribute(Count = 1)] Int32* location) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Returns the value of a uniform variable @@ -119088,7 +119088,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Returns the value of a uniform variable @@ -119104,7 +119104,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Returns the value of a uniform variable @@ -119120,7 +119120,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Returns the value of a uniform variable @@ -119136,7 +119136,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Returns the value of a uniform variable @@ -119152,7 +119152,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Returns the value of a uniform variable @@ -119168,7 +119168,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_shader_buffer_load] /// Returns the value of a uniform variable @@ -119184,7 +119184,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_shader_buffer_load", Version = "", EntryPoint = "glGetUniformui64vNV")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_shader_buffer_load] /// Returns the value of a uniform variable @@ -119200,7 +119200,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_shader_buffer_load", Version = "", EntryPoint = "glGetUniformui64vNV")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_shader_buffer_load] /// Returns the value of a uniform variable @@ -119216,21 +119216,21 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_shader_buffer_load", Version = "", EntryPoint = "glGetUniformui64vNV")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// /// [length: COMPSIZE(name)] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glGetVaryingLocationNV")] [CLSCompliant(false)] - public static Int32 GetVaryingLocation(Int32 program, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetVaryingLocation(Int32 program, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// /// [length: COMPSIZE(name)] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glGetVaryingLocationNV")] [CLSCompliant(false)] - public static Int32 GetVaryingLocation(UInt32 program, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetVaryingLocation(UInt32 program, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119247,7 +119247,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use NvVertexProgram overload instead")] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribdvNV")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] out Double @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119264,7 +119264,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use NvVertexProgram overload instead")] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribdvNV")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119280,7 +119280,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribdvNV")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] out Double @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119296,7 +119296,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribdvNV")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119313,7 +119313,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use NvVertexProgram overload instead")] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribdvNV")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] out Double @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119330,7 +119330,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use NvVertexProgram overload instead")] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribdvNV")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119346,7 +119346,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribdvNV")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] out Double @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119362,7 +119362,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribdvNV")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119379,7 +119379,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use NvVertexProgram overload instead")] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribfvNV")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119396,7 +119396,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use NvVertexProgram overload instead")] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribfvNV")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119412,7 +119412,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribfvNV")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119428,7 +119428,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribfvNV")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119445,7 +119445,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use NvVertexProgram overload instead")] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribfvNV")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119462,7 +119462,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use NvVertexProgram overload instead")] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribfvNV")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119478,7 +119478,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribfvNV")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119494,7 +119494,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribfvNV")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119511,7 +119511,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use NvVertexProgram overload instead")] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribivNV")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119528,7 +119528,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use NvVertexProgram overload instead")] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribivNV")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119544,7 +119544,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribivNV")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119560,7 +119560,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribivNV")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119577,7 +119577,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use NvVertexProgram overload instead")] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribivNV")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119594,7 +119594,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use NvVertexProgram overload instead")] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribivNV")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119610,7 +119610,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribivNV")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119626,7 +119626,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribivNV")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -119634,7 +119634,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLi64vNV")] [CLSCompliant(false)] - public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -119642,7 +119642,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLi64vNV")] [CLSCompliant(false)] - public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -119650,7 +119650,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLi64vNV")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -119658,7 +119658,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLi64vNV")] [CLSCompliant(false)] - public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -119666,7 +119666,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLi64vNV")] [CLSCompliant(false)] - public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -119674,7 +119674,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLi64vNV")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -119682,7 +119682,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLui64vNV")] [CLSCompliant(false)] - public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -119690,7 +119690,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLui64vNV")] [CLSCompliant(false)] - public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -119698,7 +119698,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLui64vNV")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -119706,7 +119706,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribPointervNV")] [CLSCompliant(false)] - public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new NotImplementedException(); } + public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -119716,7 +119716,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -119726,7 +119726,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -119736,7 +119736,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -119746,7 +119746,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -119754,7 +119754,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribPointervNV")] [CLSCompliant(false)] - public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new NotImplementedException(); } + public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -119764,7 +119764,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -119774,7 +119774,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -119784,7 +119784,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -119794,7 +119794,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119802,7 +119802,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureivNV")] [CLSCompliant(false)] - public static void GetVideoCapture(Int32 video_capture_slot, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVideoCapture(Int32 video_capture_slot, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119810,7 +119810,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureivNV")] [CLSCompliant(false)] - public static void GetVideoCapture(Int32 video_capture_slot, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVideoCapture(Int32 video_capture_slot, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119818,7 +119818,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureivNV")] [CLSCompliant(false)] - public static unsafe void GetVideoCapture(Int32 video_capture_slot, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVideoCapture(Int32 video_capture_slot, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119826,7 +119826,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureivNV")] [CLSCompliant(false)] - public static void GetVideoCapture(UInt32 video_capture_slot, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVideoCapture(UInt32 video_capture_slot, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119834,7 +119834,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureivNV")] [CLSCompliant(false)] - public static void GetVideoCapture(UInt32 video_capture_slot, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVideoCapture(UInt32 video_capture_slot, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119842,7 +119842,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureivNV")] [CLSCompliant(false)] - public static unsafe void GetVideoCapture(UInt32 video_capture_slot, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVideoCapture(UInt32 video_capture_slot, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119851,7 +119851,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureStreamdvNV")] [CLSCompliant(false)] - public static void GetVideoCaptureStream(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new NotImplementedException(); } + public static void GetVideoCaptureStream(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119860,7 +119860,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureStreamdvNV")] [CLSCompliant(false)] - public static void GetVideoCaptureStream(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new NotImplementedException(); } + public static void GetVideoCaptureStream(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119869,7 +119869,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureStreamdvNV")] [CLSCompliant(false)] - public static unsafe void GetVideoCaptureStream(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetVideoCaptureStream(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119878,7 +119878,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureStreamdvNV")] [CLSCompliant(false)] - public static void GetVideoCaptureStream(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new NotImplementedException(); } + public static void GetVideoCaptureStream(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119887,7 +119887,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureStreamdvNV")] [CLSCompliant(false)] - public static void GetVideoCaptureStream(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new NotImplementedException(); } + public static void GetVideoCaptureStream(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119896,7 +119896,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureStreamdvNV")] [CLSCompliant(false)] - public static unsafe void GetVideoCaptureStream(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetVideoCaptureStream(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119905,7 +119905,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureStreamfvNV")] [CLSCompliant(false)] - public static void GetVideoCaptureStream(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetVideoCaptureStream(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119914,7 +119914,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureStreamfvNV")] [CLSCompliant(false)] - public static void GetVideoCaptureStream(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetVideoCaptureStream(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119923,7 +119923,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureStreamfvNV")] [CLSCompliant(false)] - public static unsafe void GetVideoCaptureStream(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVideoCaptureStream(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119932,7 +119932,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureStreamfvNV")] [CLSCompliant(false)] - public static void GetVideoCaptureStream(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetVideoCaptureStream(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119941,7 +119941,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureStreamfvNV")] [CLSCompliant(false)] - public static void GetVideoCaptureStream(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetVideoCaptureStream(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119950,7 +119950,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureStreamfvNV")] [CLSCompliant(false)] - public static unsafe void GetVideoCaptureStream(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVideoCaptureStream(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119959,7 +119959,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureStreamivNV")] [CLSCompliant(false)] - public static void GetVideoCaptureStream(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVideoCaptureStream(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119968,7 +119968,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureStreamivNV")] [CLSCompliant(false)] - public static void GetVideoCaptureStream(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVideoCaptureStream(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119977,7 +119977,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureStreamivNV")] [CLSCompliant(false)] - public static unsafe void GetVideoCaptureStream(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVideoCaptureStream(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119986,7 +119986,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureStreamivNV")] [CLSCompliant(false)] - public static void GetVideoCaptureStream(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVideoCaptureStream(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119995,7 +119995,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureStreamivNV")] [CLSCompliant(false)] - public static void GetVideoCaptureStream(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVideoCaptureStream(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -120004,7 +120004,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureStreamivNV")] [CLSCompliant(false)] - public static unsafe void GetVideoCaptureStream(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVideoCaptureStream(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -120012,7 +120012,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoi64vNV")] [CLSCompliant(false)] - public static void GetVideo(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetVideo(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -120020,7 +120020,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoi64vNV")] [CLSCompliant(false)] - public static void GetVideo(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetVideo(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -120028,7 +120028,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoi64vNV")] [CLSCompliant(false)] - public static unsafe void GetVideo(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetVideo(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -120036,7 +120036,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoi64vNV")] [CLSCompliant(false)] - public static void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -120044,7 +120044,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoi64vNV")] [CLSCompliant(false)] - public static void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -120052,7 +120052,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoi64vNV")] [CLSCompliant(false)] - public static unsafe void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -120060,7 +120060,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoivNV")] [CLSCompliant(false)] - public static void GetVideo(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVideo(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -120068,7 +120068,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoivNV")] [CLSCompliant(false)] - public static void GetVideo(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVideo(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -120076,7 +120076,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoivNV")] [CLSCompliant(false)] - public static unsafe void GetVideo(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVideo(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -120084,7 +120084,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoivNV")] [CLSCompliant(false)] - public static void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -120092,7 +120092,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoivNV")] [CLSCompliant(false)] - public static void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -120100,7 +120100,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoivNV")] [CLSCompliant(false)] - public static unsafe void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -120108,7 +120108,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoui64vNV")] [CLSCompliant(false)] - public static void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -120116,7 +120116,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoui64vNV")] [CLSCompliant(false)] - public static void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -120124,7 +120124,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoui64vNV")] [CLSCompliant(false)] - public static unsafe void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -120132,7 +120132,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideouivNV")] [CLSCompliant(false)] - public static void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -120140,7 +120140,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideouivNV")] [CLSCompliant(false)] - public static void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -120148,18 +120148,18 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideouivNV")] [CLSCompliant(false)] - public static unsafe void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [length: COMPSIZE(name)] [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glGetVkProcAddrNV")] - public static IntPtr GetVkProcAddr([CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static IntPtr GetVkProcAddr([CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glIndexFormatNV")] - public static void IndexFormat(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, Int32 stride) { throw new NotImplementedException(); } + public static void IndexFormat(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -120168,7 +120168,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glInterpolatePathsNV")] [CLSCompliant(false)] - public static void InterpolatePath(Int32 resultPath, Int32 pathA, Int32 pathB, Single weight) { throw new NotImplementedException(); } + public static void InterpolatePath(Int32 resultPath, Int32 pathA, Int32 pathB, Single weight) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -120177,84 +120177,84 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glInterpolatePathsNV")] [CLSCompliant(false)] - public static void InterpolatePath(UInt32 resultPath, UInt32 pathA, UInt32 pathB, Single weight) { throw new NotImplementedException(); } + public static void InterpolatePath(UInt32 resultPath, UInt32 pathA, UInt32 pathB, Single weight) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glIsBufferResidentNV")] - public static bool IsBufferResident(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target) { throw new NotImplementedException(); } + public static bool IsBufferResident(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glIsCommandListNV")] [CLSCompliant(false)] - public static bool IsCommandList(Int32 list) { throw new NotImplementedException(); } + public static bool IsCommandList(Int32 list) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glIsCommandListNV")] [CLSCompliant(false)] - public static bool IsCommandList(UInt32 list) { throw new NotImplementedException(); } + public static bool IsCommandList(UInt32 list) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glIsFenceNV")] [CLSCompliant(false)] - public static bool IsFence(Int32 fence) { throw new NotImplementedException(); } + public static bool IsFence(Int32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glIsFenceNV")] [CLSCompliant(false)] - public static bool IsFence(UInt32 fence) { throw new NotImplementedException(); } + public static bool IsFence(UInt32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsImageHandleResidentNV")] [CLSCompliant(false)] - public static bool IsImageHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static bool IsImageHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsImageHandleResidentNV")] [CLSCompliant(false)] - public static bool IsImageHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static bool IsImageHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glIsNamedBufferResidentNV")] [CLSCompliant(false)] - public static bool IsNamedBufferResident(Int32 buffer) { throw new NotImplementedException(); } + public static bool IsNamedBufferResident(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glIsNamedBufferResidentNV")] [CLSCompliant(false)] - public static bool IsNamedBufferResident(UInt32 buffer) { throw new NotImplementedException(); } + public static bool IsNamedBufferResident(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glIsOcclusionQueryNV")] [CLSCompliant(false)] - public static bool IsOcclusionQuery(Int32 id) { throw new NotImplementedException(); } + public static bool IsOcclusionQuery(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glIsOcclusionQueryNV")] [CLSCompliant(false)] - public static bool IsOcclusionQuery(UInt32 id) { throw new NotImplementedException(); } + public static bool IsOcclusionQuery(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPathNV")] [CLSCompliant(false)] - public static bool IsPath(Int32 path) { throw new NotImplementedException(); } + public static bool IsPath(Int32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPathNV")] [CLSCompliant(false)] - public static bool IsPath(UInt32 path) { throw new NotImplementedException(); } + public static bool IsPath(UInt32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -120263,7 +120263,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPointInFillPathNV")] [CLSCompliant(false)] - public static bool IsPointInFillPath(Int32 path, Int32 mask, Single x, Single y) { throw new NotImplementedException(); } + public static bool IsPointInFillPath(Int32 path, Int32 mask, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -120272,7 +120272,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPointInFillPathNV")] [CLSCompliant(false)] - public static bool IsPointInFillPath(UInt32 path, UInt32 mask, Single x, Single y) { throw new NotImplementedException(); } + public static bool IsPointInFillPath(UInt32 path, UInt32 mask, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -120280,7 +120280,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPointInStrokePathNV")] [CLSCompliant(false)] - public static bool IsPointInStrokePath(Int32 path, Single x, Single y) { throw new NotImplementedException(); } + public static bool IsPointInStrokePath(Int32 path, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -120288,7 +120288,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPointInStrokePathNV")] [CLSCompliant(false)] - public static bool IsPointInStrokePath(UInt32 path, Single x, Single y) { throw new NotImplementedException(); } + public static bool IsPointInStrokePath(UInt32 path, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Determines if a name corresponds to a program object @@ -120298,7 +120298,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glIsProgramNV")] [CLSCompliant(false)] - public static bool IsProgram(Int32 id) { throw new NotImplementedException(); } + public static bool IsProgram(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Determines if a name corresponds to a program object @@ -120308,31 +120308,31 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glIsProgramNV")] [CLSCompliant(false)] - public static bool IsProgram(UInt32 id) { throw new NotImplementedException(); } + public static bool IsProgram(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glIsStateNV")] [CLSCompliant(false)] - public static bool IsState(Int32 state) { throw new NotImplementedException(); } + public static bool IsState(Int32 state) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glIsStateNV")] [CLSCompliant(false)] - public static bool IsState(UInt32 state) { throw new NotImplementedException(); } + public static bool IsState(UInt32 state) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsTextureHandleResidentNV")] [CLSCompliant(false)] - public static bool IsTextureHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static bool IsTextureHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsTextureHandleResidentNV")] [CLSCompliant(false)] - public static bool IsTextureHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static bool IsTextureHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Determine if a name corresponds to a transform feedback object @@ -120342,7 +120342,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glIsTransformFeedbackNV")] [CLSCompliant(false)] - public static bool IsTransformFeedback(Int32 id) { throw new NotImplementedException(); } + public static bool IsTransformFeedback(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Determine if a name corresponds to a transform feedback object @@ -120352,7 +120352,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glIsTransformFeedbackNV")] [CLSCompliant(false)] - public static bool IsTransformFeedback(UInt32 id) { throw new NotImplementedException(); } + public static bool IsTransformFeedback(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120364,7 +120364,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glListDrawCommandsStatesClientNV")] [CLSCompliant(false)] - public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, IntPtr indirects, Int32[] sizes, Int32[] states, Int32[] fbos, Int32 count) { throw new NotImplementedException(); } + public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, IntPtr indirects, Int32[] sizes, Int32[] states, Int32[] fbos, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120376,7 +120376,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glListDrawCommandsStatesClientNV")] [CLSCompliant(false)] - public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, IntPtr indirects, ref Int32 sizes, ref Int32 states, ref Int32 fbos, Int32 count) { throw new NotImplementedException(); } + public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, IntPtr indirects, ref Int32 sizes, ref Int32 states, ref Int32 fbos, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120388,7 +120388,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glListDrawCommandsStatesClientNV")] [CLSCompliant(false)] - public static unsafe void ListDrawCommandsStatesClient(Int32 list, Int32 segment, IntPtr indirects, Int32* sizes, Int32* states, Int32* fbos, Int32 count) { throw new NotImplementedException(); } + public static unsafe void ListDrawCommandsStatesClient(Int32 list, Int32 segment, IntPtr indirects, Int32* sizes, Int32* states, Int32* fbos, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120402,7 +120402,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] T2[] indirects, Int32[] sizes, Int32[] states, Int32[] fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120416,7 +120416,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] T2[] indirects, ref Int32 sizes, ref Int32 states, ref Int32 fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120430,7 +120430,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] T2[] indirects, Int32* sizes, Int32* states, Int32* fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120444,7 +120444,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] T2[,] indirects, Int32[] sizes, Int32[] states, Int32[] fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120458,7 +120458,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] T2[,] indirects, ref Int32 sizes, ref Int32 states, ref Int32 fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120472,7 +120472,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] T2[,] indirects, Int32* sizes, Int32* states, Int32* fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120486,7 +120486,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] T2[,,] indirects, Int32[] sizes, Int32[] states, Int32[] fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120500,7 +120500,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] T2[,,] indirects, ref Int32 sizes, ref Int32 states, ref Int32 fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120514,7 +120514,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] T2[,,] indirects, Int32* sizes, Int32* states, Int32* fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120528,7 +120528,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] ref T2 indirects, Int32[] sizes, Int32[] states, Int32[] fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120542,7 +120542,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] ref T2 indirects, ref Int32 sizes, ref Int32 states, ref Int32 fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120556,7 +120556,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] ref T2 indirects, Int32* sizes, Int32* states, Int32* fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120568,7 +120568,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glListDrawCommandsStatesClientNV")] [CLSCompliant(false)] - public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, IntPtr indirects, Int32[] sizes, UInt32[] states, UInt32[] fbos, UInt32 count) { throw new NotImplementedException(); } + public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, IntPtr indirects, Int32[] sizes, UInt32[] states, UInt32[] fbos, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120580,7 +120580,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glListDrawCommandsStatesClientNV")] [CLSCompliant(false)] - public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, IntPtr indirects, ref Int32 sizes, ref UInt32 states, ref UInt32 fbos, UInt32 count) { throw new NotImplementedException(); } + public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, IntPtr indirects, ref Int32 sizes, ref UInt32 states, ref UInt32 fbos, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120592,7 +120592,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glListDrawCommandsStatesClientNV")] [CLSCompliant(false)] - public static unsafe void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, IntPtr indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count) { throw new NotImplementedException(); } + public static unsafe void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, IntPtr indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120606,7 +120606,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] T2[] indirects, Int32[] sizes, UInt32[] states, UInt32[] fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120620,7 +120620,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] T2[] indirects, ref Int32 sizes, ref UInt32 states, ref UInt32 fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120634,7 +120634,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] T2[] indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120648,7 +120648,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] T2[,] indirects, Int32[] sizes, UInt32[] states, UInt32[] fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120662,7 +120662,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] T2[,] indirects, ref Int32 sizes, ref UInt32 states, ref UInt32 fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120676,7 +120676,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] T2[,] indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120690,7 +120690,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] T2[,,] indirects, Int32[] sizes, UInt32[] states, UInt32[] fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120704,7 +120704,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] T2[,,] indirects, ref Int32 sizes, ref UInt32 states, ref UInt32 fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120718,7 +120718,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] T2[,,] indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120732,7 +120732,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] ref T2 indirects, Int32[] sizes, UInt32[] states, UInt32[] fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120746,7 +120746,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] ref T2 indirects, ref Int32 sizes, ref UInt32 states, ref UInt32 fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120760,7 +120760,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] ref T2 indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -120769,7 +120769,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: len] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glLoadProgramNV")] [CLSCompliant(false)] - public static void LoadProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 id, Int32 len, [CountAttribute(Parameter = "len")] Byte[] program) { throw new NotImplementedException(); } + public static void LoadProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 id, Int32 len, [CountAttribute(Parameter = "len")] Byte[] program) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -120778,7 +120778,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: len] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glLoadProgramNV")] [CLSCompliant(false)] - public static void LoadProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 id, Int32 len, [CountAttribute(Parameter = "len")] ref Byte program) { throw new NotImplementedException(); } + public static void LoadProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 id, Int32 len, [CountAttribute(Parameter = "len")] ref Byte program) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -120787,7 +120787,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: len] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glLoadProgramNV")] [CLSCompliant(false)] - public static unsafe void LoadProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 id, Int32 len, [CountAttribute(Parameter = "len")] Byte* program) { throw new NotImplementedException(); } + public static unsafe void LoadProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 id, Int32 len, [CountAttribute(Parameter = "len")] Byte* program) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -120796,7 +120796,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: len] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glLoadProgramNV")] [CLSCompliant(false)] - public static void LoadProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 id, Int32 len, [CountAttribute(Parameter = "len")] Byte[] program) { throw new NotImplementedException(); } + public static void LoadProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 id, Int32 len, [CountAttribute(Parameter = "len")] Byte[] program) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -120805,7 +120805,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: len] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glLoadProgramNV")] [CLSCompliant(false)] - public static void LoadProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 id, Int32 len, [CountAttribute(Parameter = "len")] ref Byte program) { throw new NotImplementedException(); } + public static void LoadProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 id, Int32 len, [CountAttribute(Parameter = "len")] ref Byte program) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -120814,94 +120814,94 @@ namespace OpenTK.Graphics.OpenGL /// [length: len] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glLoadProgramNV")] [CLSCompliant(false)] - public static unsafe void LoadProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 id, Int32 len, [CountAttribute(Parameter = "len")] Byte* program) { throw new NotImplementedException(); } + public static unsafe void LoadProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 id, Int32 len, [CountAttribute(Parameter = "len")] Byte* program) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glMakeBufferNonResidentNV")] - public static void MakeBufferNonResident(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target) { throw new NotImplementedException(); } + public static void MakeBufferNonResident(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glMakeBufferResidentNV")] - public static void MakeBufferResident(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad access) { throw new NotImplementedException(); } + public static void MakeBufferResident(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad access) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleNonResidentNV")] [CLSCompliant(false)] - public static void MakeImageHandleNonResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeImageHandleNonResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleNonResidentNV")] [CLSCompliant(false)] - public static void MakeImageHandleNonResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeImageHandleNonResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleResidentNV")] [CLSCompliant(false)] - public static void MakeImageHandleResident(Int64 handle, OpenTK.Graphics.OpenGL.NvBindlessTexture access) { throw new NotImplementedException(); } + public static void MakeImageHandleResident(Int64 handle, OpenTK.Graphics.OpenGL.NvBindlessTexture access) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleResidentNV")] [CLSCompliant(false)] - public static void MakeImageHandleResident(UInt64 handle, OpenTK.Graphics.OpenGL.NvBindlessTexture access) { throw new NotImplementedException(); } + public static void MakeImageHandleResident(UInt64 handle, OpenTK.Graphics.OpenGL.NvBindlessTexture access) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glMakeNamedBufferNonResidentNV")] [CLSCompliant(false)] - public static void MakeNamedBufferNonResident(Int32 buffer) { throw new NotImplementedException(); } + public static void MakeNamedBufferNonResident(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glMakeNamedBufferNonResidentNV")] [CLSCompliant(false)] - public static void MakeNamedBufferNonResident(UInt32 buffer) { throw new NotImplementedException(); } + public static void MakeNamedBufferNonResident(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glMakeNamedBufferResidentNV")] [CLSCompliant(false)] - public static void MakeNamedBufferResident(Int32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad access) { throw new NotImplementedException(); } + public static void MakeNamedBufferResident(Int32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad access) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glMakeNamedBufferResidentNV")] [CLSCompliant(false)] - public static void MakeNamedBufferResident(UInt32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad access) { throw new NotImplementedException(); } + public static void MakeNamedBufferResident(UInt32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad access) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleNonResidentNV")] [CLSCompliant(false)] - public static void MakeTextureHandleNonResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleNonResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleNonResidentNV")] [CLSCompliant(false)] - public static void MakeTextureHandleNonResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleNonResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleResidentNV")] [CLSCompliant(false)] - public static void MakeTextureHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleResidentNV")] [CLSCompliant(false)] - public static void MakeTextureHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -120915,7 +120915,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,uorder,vorder)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glMapControlPointsNV")] [CLSCompliant(false)] - public static void MapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, [CountAttribute(Computed = "target,uorder,vorder")] IntPtr points) { throw new NotImplementedException(); } + public static void MapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, [CountAttribute(Computed = "target,uorder,vorder")] IntPtr points) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -120931,7 +120931,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, [InAttribute, OutAttribute, CountAttribute(Computed = "target,uorder,vorder")] T8[] points) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -120947,7 +120947,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, [InAttribute, OutAttribute, CountAttribute(Computed = "target,uorder,vorder")] T8[,] points) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -120963,7 +120963,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, [InAttribute, OutAttribute, CountAttribute(Computed = "target,uorder,vorder")] T8[,,] points) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -120979,7 +120979,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, [InAttribute, OutAttribute, CountAttribute(Computed = "target,uorder,vorder")] ref T8 points) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -120993,7 +120993,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,uorder,vorder)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glMapControlPointsNV")] [CLSCompliant(false)] - public static void MapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, [CountAttribute(Computed = "target,uorder,vorder")] IntPtr points) { throw new NotImplementedException(); } + public static void MapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, [CountAttribute(Computed = "target,uorder,vorder")] IntPtr points) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -121009,7 +121009,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, [InAttribute, OutAttribute, CountAttribute(Computed = "target,uorder,vorder")] T8[] points) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -121025,7 +121025,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, [InAttribute, OutAttribute, CountAttribute(Computed = "target,uorder,vorder")] T8[,] points) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -121041,7 +121041,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, [InAttribute, OutAttribute, CountAttribute(Computed = "target,uorder,vorder")] T8[,,] points) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -121057,7 +121057,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, [InAttribute, OutAttribute, CountAttribute(Computed = "target,uorder,vorder")] ref T8 points) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -121065,7 +121065,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,pname)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glMapParameterfvNV")] [CLSCompliant(false)] - public static void MapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [CountAttribute(Computed = "target,pname")] Single[] @params) { throw new NotImplementedException(); } + public static void MapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [CountAttribute(Computed = "target,pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -121073,7 +121073,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,pname)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glMapParameterfvNV")] [CLSCompliant(false)] - public static void MapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [CountAttribute(Computed = "target,pname")] ref Single @params) { throw new NotImplementedException(); } + public static void MapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [CountAttribute(Computed = "target,pname")] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -121081,7 +121081,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,pname)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glMapParameterfvNV")] [CLSCompliant(false)] - public static unsafe void MapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [CountAttribute(Computed = "target,pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void MapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [CountAttribute(Computed = "target,pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -121089,7 +121089,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,pname)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glMapParameterivNV")] [CLSCompliant(false)] - public static void MapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [CountAttribute(Computed = "target,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void MapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [CountAttribute(Computed = "target,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -121097,7 +121097,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,pname)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glMapParameterivNV")] [CLSCompliant(false)] - public static void MapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [CountAttribute(Computed = "target,pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void MapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [CountAttribute(Computed = "target,pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -121105,137 +121105,137 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,pname)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glMapParameterivNV")] [CLSCompliant(false)] - public static unsafe void MapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [CountAttribute(Computed = "target,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [CountAttribute(Computed = "target,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x2fNV")] [CLSCompliant(false)] - public static void MatrixLoad3x2(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixLoad3x2(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x2fNV")] [CLSCompliant(false)] - public static void MatrixLoad3x2(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixLoad3x2(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x2fNV")] [CLSCompliant(false)] - public static unsafe void MatrixLoad3x2(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoad3x2(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x3fNV")] [CLSCompliant(false)] - public static void MatrixLoad3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixLoad3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x3fNV")] [CLSCompliant(false)] - public static void MatrixLoad3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixLoad3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x3fNV")] [CLSCompliant(false)] - public static unsafe void MatrixLoad3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoad3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTranspose3x3fNV")] [CLSCompliant(false)] - public static void MatrixLoadTranspose3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixLoadTranspose3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTranspose3x3fNV")] [CLSCompliant(false)] - public static void MatrixLoadTranspose3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixLoadTranspose3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTranspose3x3fNV")] [CLSCompliant(false)] - public static unsafe void MatrixLoadTranspose3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoadTranspose3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x2fNV")] [CLSCompliant(false)] - public static void MatrixMult3x2(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixMult3x2(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x2fNV")] [CLSCompliant(false)] - public static void MatrixMult3x2(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixMult3x2(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x2fNV")] [CLSCompliant(false)] - public static unsafe void MatrixMult3x2(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMult3x2(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x3fNV")] [CLSCompliant(false)] - public static void MatrixMult3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixMult3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x3fNV")] [CLSCompliant(false)] - public static void MatrixMult3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixMult3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x3fNV")] [CLSCompliant(false)] - public static unsafe void MatrixMult3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMult3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTranspose3x3fNV")] [CLSCompliant(false)] - public static void MatrixMultTranspose3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixMultTranspose3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTranspose3x3fNV")] [CLSCompliant(false)] - public static void MatrixMultTranspose3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixMultTranspose3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTranspose3x3fNV")] [CLSCompliant(false)] - public static unsafe void MatrixMultTranspose3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMultTranspose3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastBarrierNV")] - public static void MulticastBarrier() { throw new NotImplementedException(); } + public static void MulticastBarrier() { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121252,7 +121252,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastBlitFramebufferNV")] [CLSCompliant(false)] - public static void MulticastBlitFramebuffer(Int32 srcGpu, Int32 dstGpu, Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, Int32 mask, OpenTK.Graphics.OpenGL.NvGpuMulticast filter) { throw new NotImplementedException(); } + public static void MulticastBlitFramebuffer(Int32 srcGpu, Int32 dstGpu, Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, Int32 mask, OpenTK.Graphics.OpenGL.NvGpuMulticast filter) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121269,7 +121269,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastBlitFramebufferNV")] [CLSCompliant(false)] - public static void MulticastBlitFramebuffer(UInt32 srcGpu, UInt32 dstGpu, Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, UInt32 mask, OpenTK.Graphics.OpenGL.NvGpuMulticast filter) { throw new NotImplementedException(); } + public static void MulticastBlitFramebuffer(UInt32 srcGpu, UInt32 dstGpu, Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, UInt32 mask, OpenTK.Graphics.OpenGL.NvGpuMulticast filter) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121279,7 +121279,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastBufferSubDataNV")] [CLSCompliant(false)] - public static void MulticastBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, Int32 size, IntPtr data) { throw new NotImplementedException(); } + public static void MulticastBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, Int32 size, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121291,7 +121291,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MulticastBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121303,7 +121303,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MulticastBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121315,7 +121315,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MulticastBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121327,7 +121327,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MulticastBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121337,7 +121337,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastBufferSubDataNV")] [CLSCompliant(false)] - public static void MulticastBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, IntPtr size, IntPtr data) { throw new NotImplementedException(); } + public static void MulticastBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, IntPtr size, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121349,7 +121349,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MulticastBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121361,7 +121361,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MulticastBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121373,7 +121373,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MulticastBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121385,7 +121385,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MulticastBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121395,7 +121395,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastBufferSubDataNV")] [CLSCompliant(false)] - public static void MulticastBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, Int32 size, IntPtr data) { throw new NotImplementedException(); } + public static void MulticastBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, Int32 size, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121407,7 +121407,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MulticastBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121419,7 +121419,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MulticastBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121431,7 +121431,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MulticastBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121443,7 +121443,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MulticastBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121453,7 +121453,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastBufferSubDataNV")] [CLSCompliant(false)] - public static void MulticastBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, IntPtr size, IntPtr data) { throw new NotImplementedException(); } + public static void MulticastBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, IntPtr size, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121465,7 +121465,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MulticastBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121477,7 +121477,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MulticastBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121489,7 +121489,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MulticastBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121501,7 +121501,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MulticastBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121513,7 +121513,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastCopyBufferSubDataNV")] [CLSCompliant(false)] - public static void MulticastCopyBufferSubData(Int32 readGpu, Int32 writeGpuMask, Int32 readBuffer, Int32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new NotImplementedException(); } + public static void MulticastCopyBufferSubData(Int32 readGpu, Int32 writeGpuMask, Int32 readBuffer, Int32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121525,7 +121525,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastCopyBufferSubDataNV")] [CLSCompliant(false)] - public static void MulticastCopyBufferSubData(Int32 readGpu, Int32 writeGpuMask, Int32 readBuffer, Int32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new NotImplementedException(); } + public static void MulticastCopyBufferSubData(Int32 readGpu, Int32 writeGpuMask, Int32 readBuffer, Int32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121537,7 +121537,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastCopyBufferSubDataNV")] [CLSCompliant(false)] - public static void MulticastCopyBufferSubData(UInt32 readGpu, UInt32 writeGpuMask, UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new NotImplementedException(); } + public static void MulticastCopyBufferSubData(UInt32 readGpu, UInt32 writeGpuMask, UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121549,7 +121549,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastCopyBufferSubDataNV")] [CLSCompliant(false)] - public static void MulticastCopyBufferSubData(UInt32 readGpu, UInt32 writeGpuMask, UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new NotImplementedException(); } + public static void MulticastCopyBufferSubData(UInt32 readGpu, UInt32 writeGpuMask, UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121571,7 +121571,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastCopyImageSubDataNV")] [CLSCompliant(false)] - public static void MulticastCopyImageSubData(Int32 srcGpu, Int32 dstGpuMask, Int32 srcName, OpenTK.Graphics.OpenGL.NvGpuMulticast srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.OpenGL.NvGpuMulticast dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new NotImplementedException(); } + public static void MulticastCopyImageSubData(Int32 srcGpu, Int32 dstGpuMask, Int32 srcName, OpenTK.Graphics.OpenGL.NvGpuMulticast srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.OpenGL.NvGpuMulticast dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121593,7 +121593,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastCopyImageSubDataNV")] [CLSCompliant(false)] - public static void MulticastCopyImageSubData(UInt32 srcGpu, UInt32 dstGpuMask, UInt32 srcName, OpenTK.Graphics.OpenGL.NvGpuMulticast srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.OpenGL.NvGpuMulticast dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new NotImplementedException(); } + public static void MulticastCopyImageSubData(UInt32 srcGpu, UInt32 dstGpuMask, UInt32 srcName, OpenTK.Graphics.OpenGL.NvGpuMulticast srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.OpenGL.NvGpuMulticast dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121603,7 +121603,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void MulticastFramebufferSampleLocations(Int32 gpu, Int32 framebuffer, Int32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void MulticastFramebufferSampleLocations(Int32 gpu, Int32 framebuffer, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121613,7 +121613,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void MulticastFramebufferSampleLocations(Int32 gpu, Int32 framebuffer, Int32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void MulticastFramebufferSampleLocations(Int32 gpu, Int32 framebuffer, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121623,7 +121623,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void MulticastFramebufferSampleLocations(Int32 gpu, Int32 framebuffer, Int32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void MulticastFramebufferSampleLocations(Int32 gpu, Int32 framebuffer, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121633,7 +121633,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void MulticastFramebufferSampleLocations(UInt32 gpu, UInt32 framebuffer, UInt32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void MulticastFramebufferSampleLocations(UInt32 gpu, UInt32 framebuffer, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121643,7 +121643,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void MulticastFramebufferSampleLocations(UInt32 gpu, UInt32 framebuffer, UInt32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void MulticastFramebufferSampleLocations(UInt32 gpu, UInt32 framebuffer, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121653,7 +121653,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void MulticastFramebufferSampleLocations(UInt32 gpu, UInt32 framebuffer, UInt32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void MulticastFramebufferSampleLocations(UInt32 gpu, UInt32 framebuffer, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121662,7 +121662,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastGetQueryObjecti64vNV")] [CLSCompliant(false)] - public static void MulticastGetQueryObject(Int32 gpu, Int32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void MulticastGetQueryObject(Int32 gpu, Int32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121671,7 +121671,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastGetQueryObjecti64vNV")] [CLSCompliant(false)] - public static void MulticastGetQueryObject(Int32 gpu, Int32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void MulticastGetQueryObject(Int32 gpu, Int32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121680,7 +121680,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastGetQueryObjecti64vNV")] [CLSCompliant(false)] - public static unsafe void MulticastGetQueryObject(Int32 gpu, Int32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void MulticastGetQueryObject(Int32 gpu, Int32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121689,7 +121689,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastGetQueryObjecti64vNV")] [CLSCompliant(false)] - public static void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121698,7 +121698,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastGetQueryObjecti64vNV")] [CLSCompliant(false)] - public static void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121707,7 +121707,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastGetQueryObjecti64vNV")] [CLSCompliant(false)] - public static unsafe void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121716,7 +121716,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastGetQueryObjectivNV")] [CLSCompliant(false)] - public static void MulticastGetQueryObject(Int32 gpu, Int32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void MulticastGetQueryObject(Int32 gpu, Int32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121725,7 +121725,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastGetQueryObjectivNV")] [CLSCompliant(false)] - public static void MulticastGetQueryObject(Int32 gpu, Int32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void MulticastGetQueryObject(Int32 gpu, Int32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121734,7 +121734,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastGetQueryObjectivNV")] [CLSCompliant(false)] - public static unsafe void MulticastGetQueryObject(Int32 gpu, Int32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MulticastGetQueryObject(Int32 gpu, Int32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121743,7 +121743,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastGetQueryObjectivNV")] [CLSCompliant(false)] - public static void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121752,7 +121752,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastGetQueryObjectivNV")] [CLSCompliant(false)] - public static void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121761,7 +121761,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastGetQueryObjectivNV")] [CLSCompliant(false)] - public static unsafe void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121770,7 +121770,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastGetQueryObjectui64vNV")] [CLSCompliant(false)] - public static void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] UInt64[] @params) { throw new NotImplementedException(); } + public static void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121779,7 +121779,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastGetQueryObjectui64vNV")] [CLSCompliant(false)] - public static void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] out UInt64 @params) { throw new NotImplementedException(); } + public static void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121788,7 +121788,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastGetQueryObjectui64vNV")] [CLSCompliant(false)] - public static unsafe void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121797,7 +121797,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastGetQueryObjectuivNV")] [CLSCompliant(false)] - public static void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } + public static void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121806,7 +121806,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastGetQueryObjectuivNV")] [CLSCompliant(false)] - public static void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } + public static void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121815,21 +121815,21 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastGetQueryObjectuivNV")] [CLSCompliant(false)] - public static unsafe void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastWaitSyncNV")] [CLSCompliant(false)] - public static void MulticastWaitSync(Int32 signalGpu, Int32 waitGpuMask) { throw new NotImplementedException(); } + public static void MulticastWaitSync(Int32 signalGpu, Int32 waitGpuMask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastWaitSyncNV")] [CLSCompliant(false)] - public static void MulticastWaitSync(UInt32 signalGpu, UInt32 waitGpuMask) { throw new NotImplementedException(); } + public static void MulticastWaitSync(UInt32 signalGpu, UInt32 waitGpuMask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -121839,7 +121839,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_bindless_multi_draw_indirect_count", Version = "", EntryPoint = "glMultiDrawArraysIndirectBindlessCountNV")] - public static void MultiDrawArraysIndirectBindlessCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, IntPtr indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) { throw new NotImplementedException(); } + public static void MultiDrawArraysIndirectBindlessCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, IntPtr indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -121852,7 +121852,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawArraysIndirectBindlessCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[] indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -121865,7 +121865,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawArraysIndirectBindlessCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[,] indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -121878,7 +121878,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawArraysIndirectBindlessCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[,,] indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -121890,7 +121890,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "NV_bindless_multi_draw_indirect_count", Version = "", EntryPoint = "glMultiDrawArraysIndirectBindlessCountNV")] public static void MultiDrawArraysIndirectBindlessCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] ref T1 indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -121899,7 +121899,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_bindless_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectBindlessNV")] - public static void MultiDrawArraysIndirectBindles(OpenTK.Graphics.OpenGL.PrimitiveType mode, IntPtr indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) { throw new NotImplementedException(); } + public static void MultiDrawArraysIndirectBindles(OpenTK.Graphics.OpenGL.PrimitiveType mode, IntPtr indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -121911,7 +121911,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawArraysIndirectBindles(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -121923,7 +121923,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawArraysIndirectBindles(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[,] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -121935,7 +121935,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawArraysIndirectBindles(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[,,] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -121946,7 +121946,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "NV_bindless_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectBindlessNV")] public static void MultiDrawArraysIndirectBindles(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] ref T1 indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -121957,7 +121957,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_bindless_multi_draw_indirect_count", Version = "", EntryPoint = "glMultiDrawElementsIndirectBindlessCountNV")] - public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirectCount type, IntPtr indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) { throw new NotImplementedException(); } + public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirectCount type, IntPtr indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -121971,7 +121971,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirectCount type, [InAttribute, OutAttribute] T2[] indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -121985,7 +121985,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirectCount type, [InAttribute, OutAttribute] T2[,] indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -121999,7 +121999,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirectCount type, [InAttribute, OutAttribute] T2[,,] indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -122012,7 +122012,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "NV_bindless_multi_draw_indirect_count", Version = "", EntryPoint = "glMultiDrawElementsIndirectBindlessCountNV")] public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirectCount type, [InAttribute, OutAttribute] ref T2 indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -122022,7 +122022,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_bindless_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectBindlessNV")] - public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect type, IntPtr indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) { throw new NotImplementedException(); } + public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect type, IntPtr indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -122035,7 +122035,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect type, [InAttribute, OutAttribute] T2[] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -122048,7 +122048,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect type, [InAttribute, OutAttribute] T2[,] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -122061,7 +122061,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect type, [InAttribute, OutAttribute] T2[,,] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -122073,48 +122073,48 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "NV_bindless_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectBindlessNV")] public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect type, [InAttribute, OutAttribute] ref T2 indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glMultiTexCoord1hNV")] - public static void MultiTexCoord1h(OpenTK.Graphics.OpenGL.TextureUnit target, Half s) { throw new NotImplementedException(); } + public static void MultiTexCoord1h(OpenTK.Graphics.OpenGL.TextureUnit target, Half s) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 1] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glMultiTexCoord1hvNV")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord1h(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 1)] Half* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord1h(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 1)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glMultiTexCoord2hNV")] - public static void MultiTexCoord2h(OpenTK.Graphics.OpenGL.TextureUnit target, Half s, Half t) { throw new NotImplementedException(); } + public static void MultiTexCoord2h(OpenTK.Graphics.OpenGL.TextureUnit target, Half s, Half t) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 2] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glMultiTexCoord2hvNV")] [CLSCompliant(false)] - public static void MultiTexCoord2h(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Half[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord2h(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 2] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glMultiTexCoord2hvNV")] [CLSCompliant(false)] - public static void MultiTexCoord2h(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] ref Half v) { throw new NotImplementedException(); } + public static void MultiTexCoord2h(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 2] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glMultiTexCoord2hvNV")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord2h(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Half* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord2h(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -122122,28 +122122,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glMultiTexCoord3hNV")] - public static void MultiTexCoord3h(OpenTK.Graphics.OpenGL.TextureUnit target, Half s, Half t, Half r) { throw new NotImplementedException(); } + public static void MultiTexCoord3h(OpenTK.Graphics.OpenGL.TextureUnit target, Half s, Half t, Half r) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glMultiTexCoord3hvNV")] [CLSCompliant(false)] - public static void MultiTexCoord3h(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Half[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord3h(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glMultiTexCoord3hvNV")] [CLSCompliant(false)] - public static void MultiTexCoord3h(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] ref Half v) { throw new NotImplementedException(); } + public static void MultiTexCoord3h(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glMultiTexCoord3hvNV")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord3h(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Half* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord3h(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -122152,28 +122152,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glMultiTexCoord4hNV")] - public static void MultiTexCoord4h(OpenTK.Graphics.OpenGL.TextureUnit target, Half s, Half t, Half r, Half q) { throw new NotImplementedException(); } + public static void MultiTexCoord4h(OpenTK.Graphics.OpenGL.TextureUnit target, Half s, Half t, Half r, Half q) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 4] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glMultiTexCoord4hvNV")] [CLSCompliant(false)] - public static void MultiTexCoord4h(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Half[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord4h(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 4] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glMultiTexCoord4hvNV")] [CLSCompliant(false)] - public static void MultiTexCoord4h(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] ref Half v) { throw new NotImplementedException(); } + public static void MultiTexCoord4h(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 4] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glMultiTexCoord4hvNV")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord4h(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Half* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord4h(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -122182,7 +122182,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -122191,7 +122191,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -122200,7 +122200,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -122209,7 +122209,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -122218,7 +122218,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -122227,38 +122227,38 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glNormal3hNV")] - public static void Normal3h(Half nx, Half ny, Half nz) { throw new NotImplementedException(); } + public static void Normal3h(Half nx, Half ny, Half nz) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glNormal3hvNV")] [CLSCompliant(false)] - public static void Normal3h([CountAttribute(Count = 3)] Half[] v) { throw new NotImplementedException(); } + public static void Normal3h([CountAttribute(Count = 3)] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glNormal3hvNV")] [CLSCompliant(false)] - public static void Normal3h([CountAttribute(Count = 3)] ref Half v) { throw new NotImplementedException(); } + public static void Normal3h([CountAttribute(Count = 3)] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glNormal3hvNV")] [CLSCompliant(false)] - public static unsafe void Normal3h([CountAttribute(Count = 3)] Half* v) { throw new NotImplementedException(); } + public static unsafe void Normal3h([CountAttribute(Count = 3)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glNormalFormatNV")] - public static void NormalFormat(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, Int32 stride) { throw new NotImplementedException(); } + public static void NormalFormat(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122267,7 +122267,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(genMode,colorFormat)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] - public static void PathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering genMode, OpenTK.Graphics.OpenGL.NvPathRendering colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single[] coeffs) { throw new NotImplementedException(); } + public static void PathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering genMode, OpenTK.Graphics.OpenGL.NvPathRendering colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122276,7 +122276,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(genMode,colorFormat)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] - public static void PathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering genMode, OpenTK.Graphics.OpenGL.NvPathRendering colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] ref Single coeffs) { throw new NotImplementedException(); } + public static void PathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering genMode, OpenTK.Graphics.OpenGL.NvPathRendering colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122285,7 +122285,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(genMode,colorFormat)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] - public static unsafe void PathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering genMode, OpenTK.Graphics.OpenGL.NvPathRendering colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single* coeffs) { throw new NotImplementedException(); } + public static unsafe void PathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering genMode, OpenTK.Graphics.OpenGL.NvPathRendering colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122296,7 +122296,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122309,7 +122309,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122322,7 +122322,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122335,7 +122335,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122348,7 +122348,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122359,7 +122359,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122372,7 +122372,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122385,7 +122385,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122398,7 +122398,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122411,7 +122411,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122422,7 +122422,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122435,7 +122435,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122448,7 +122448,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122461,7 +122461,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122474,7 +122474,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122485,7 +122485,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122498,7 +122498,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122511,7 +122511,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122524,7 +122524,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122537,7 +122537,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122548,7 +122548,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122561,7 +122561,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122574,7 +122574,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122587,7 +122587,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122600,7 +122600,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122611,7 +122611,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122624,7 +122624,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122637,7 +122637,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122650,7 +122650,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122663,7 +122663,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122672,7 +122672,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoordsNV")] [CLSCompliant(false)] - public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122683,7 +122683,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122694,7 +122694,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[,] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122705,7 +122705,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[,,] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122716,7 +122716,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T3 coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122725,7 +122725,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoordsNV")] [CLSCompliant(false)] - public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122736,7 +122736,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122747,7 +122747,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[,] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122758,7 +122758,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[,,] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122769,12 +122769,12 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T3 coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoverDepthFuncNV")] - public static void PathCoverDepthFunc(OpenTK.Graphics.OpenGL.DepthFunction func) { throw new NotImplementedException(); } + public static void PathCoverDepthFunc(OpenTK.Graphics.OpenGL.DepthFunction func) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122782,7 +122782,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single[] dashArray) { throw new NotImplementedException(); } + public static void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single[] dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122790,7 +122790,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] ref Single dashArray) { throw new NotImplementedException(); } + public static void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] ref Single dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122798,7 +122798,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static unsafe void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray) { throw new NotImplementedException(); } + public static unsafe void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122806,7 +122806,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single[] dashArray) { throw new NotImplementedException(); } + public static void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single[] dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122814,7 +122814,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] ref Single dashArray) { throw new NotImplementedException(); } + public static void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] ref Single dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122822,12 +122822,12 @@ namespace OpenTK.Graphics.OpenGL /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static unsafe void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray) { throw new NotImplementedException(); } + public static unsafe void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathFogGenNV")] - public static void PathFogGen(OpenTK.Graphics.OpenGL.NvPathRendering genMode) { throw new NotImplementedException(); } + public static void PathFogGen(OpenTK.Graphics.OpenGL.NvPathRendering genMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122840,7 +122840,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122855,7 +122855,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T2[] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122870,7 +122870,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T2[,] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122885,7 +122885,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122900,7 +122900,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] ref T2 fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122913,7 +122913,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122928,7 +122928,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T2[] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122943,7 +122943,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T2[,] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122958,7 +122958,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122973,7 +122973,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] ref T2 fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122984,7 +122984,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122995,7 +122995,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123008,7 +123008,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T1[] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123021,7 +123021,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T1[] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123034,7 +123034,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T1[,] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123047,7 +123047,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T1[,] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123060,7 +123060,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123073,7 +123073,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123086,7 +123086,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] ref T1 fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123099,7 +123099,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] ref T1 fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123113,7 +123113,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123129,7 +123129,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123145,7 +123145,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123161,7 +123161,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123177,7 +123177,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123191,7 +123191,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123207,7 +123207,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123223,7 +123223,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123239,7 +123239,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123255,7 +123255,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123270,7 +123270,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123288,7 +123288,7 @@ namespace OpenTK.Graphics.OpenGL public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123306,7 +123306,7 @@ namespace OpenTK.Graphics.OpenGL public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123324,7 +123324,7 @@ namespace OpenTK.Graphics.OpenGL public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123342,7 +123342,7 @@ namespace OpenTK.Graphics.OpenGL public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123357,7 +123357,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123375,7 +123375,7 @@ namespace OpenTK.Graphics.OpenGL public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123393,7 +123393,7 @@ namespace OpenTK.Graphics.OpenGL public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123411,7 +123411,7 @@ namespace OpenTK.Graphics.OpenGL public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123429,7 +123429,7 @@ namespace OpenTK.Graphics.OpenGL public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123443,7 +123443,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathMemoryGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, Int32 fontSize, IntPtr fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, Int32 fontSize, IntPtr fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123459,7 +123459,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123475,7 +123475,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[,] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123491,7 +123491,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[,,] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123507,7 +123507,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, Int32 fontSize, [InAttribute, OutAttribute] ref T3 fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123521,7 +123521,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathMemoryGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123537,7 +123537,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123553,7 +123553,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[,] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123569,7 +123569,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[,,] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123585,7 +123585,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] ref T3 fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123599,7 +123599,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathMemoryGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, Int32 fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, Int32 fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123615,7 +123615,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123631,7 +123631,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[,] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123647,7 +123647,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[,,] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123663,7 +123663,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, Int32 fontSize, [InAttribute, OutAttribute] ref T3 fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123677,7 +123677,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathMemoryGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123693,7 +123693,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123709,7 +123709,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[,] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123725,7 +123725,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[,,] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123741,7 +123741,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] ref T3 fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123749,7 +123749,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, Single value) { throw new NotImplementedException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123757,7 +123757,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, Single value) { throw new NotImplementedException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123765,7 +123765,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123773,7 +123773,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123781,7 +123781,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123789,7 +123789,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123797,7 +123797,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameteriNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, Int32 value) { throw new NotImplementedException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123805,7 +123805,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameteriNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, Int32 value) { throw new NotImplementedException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123813,7 +123813,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123821,7 +123821,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123829,7 +123829,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123837,13 +123837,13 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilDepthOffsetNV")] - public static void PathStencilDepthOffset(Single factor, Single units) { throw new NotImplementedException(); } + public static void PathStencilDepthOffset(Single factor, Single units) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123851,7 +123851,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilFuncNV")] [CLSCompliant(false)] - public static void PathStencilFunc(OpenTK.Graphics.OpenGL.StencilFunction func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } + public static void PathStencilFunc(OpenTK.Graphics.OpenGL.StencilFunction func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123859,7 +123859,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilFuncNV")] [CLSCompliant(false)] - public static void PathStencilFunc(OpenTK.Graphics.OpenGL.StencilFunction func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } + public static void PathStencilFunc(OpenTK.Graphics.OpenGL.StencilFunction func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123868,7 +123868,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] - public static void PathString(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new NotImplementedException(); } + public static void PathString(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123879,7 +123879,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123890,7 +123890,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123901,7 +123901,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123912,7 +123912,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123921,7 +123921,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] - public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new NotImplementedException(); } + public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123932,7 +123932,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123943,7 +123943,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123954,7 +123954,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123965,7 +123965,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123978,7 +123978,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123993,7 +123993,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124008,7 +124008,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124023,7 +124023,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124038,7 +124038,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124051,7 +124051,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124066,7 +124066,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124081,7 +124081,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124096,7 +124096,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124111,7 +124111,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124124,7 +124124,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124139,7 +124139,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124154,7 +124154,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124169,7 +124169,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124184,7 +124184,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124197,7 +124197,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124212,7 +124212,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124227,7 +124227,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124242,7 +124242,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124257,7 +124257,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124270,7 +124270,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124285,7 +124285,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124300,7 +124300,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124315,7 +124315,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124330,7 +124330,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124343,7 +124343,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124358,7 +124358,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124373,7 +124373,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124388,7 +124388,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124403,7 +124403,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124413,7 +124413,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCoordsNV")] [CLSCompliant(false)] - public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124425,7 +124425,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124437,7 +124437,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[,] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124449,7 +124449,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[,,] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124461,7 +124461,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T4 coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124471,7 +124471,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCoordsNV")] [CLSCompliant(false)] - public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124483,7 +124483,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124495,7 +124495,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[,] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124507,7 +124507,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[,,] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124519,7 +124519,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T4 coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124528,7 +124528,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(genMode,components)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] - public static void PathTexGen(OpenTK.Graphics.OpenGL.NvPathRendering texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single[] coeffs) { throw new NotImplementedException(); } + public static void PathTexGen(OpenTK.Graphics.OpenGL.NvPathRendering texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124537,7 +124537,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(genMode,components)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] - public static void PathTexGen(OpenTK.Graphics.OpenGL.NvPathRendering texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] ref Single coeffs) { throw new NotImplementedException(); } + public static void PathTexGen(OpenTK.Graphics.OpenGL.NvPathRendering texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124546,20 +124546,20 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(genMode,components)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] - public static unsafe void PathTexGen(OpenTK.Graphics.OpenGL.NvPathRendering texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single* coeffs) { throw new NotImplementedException(); } + public static unsafe void PathTexGen(OpenTK.Graphics.OpenGL.NvPathRendering texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Pause transform feedback operations /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glPauseTransformFeedbackNV")] - public static void PauseTransformFeedback() { throw new NotImplementedException(); } + public static void PauseTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [requires: NV_pixel_data_range] /// /// /// [length: length] [AutoGenerated(Category = "NV_pixel_data_range", Version = "", EntryPoint = "glPixelDataRangeNV")] - public static void PixelDataRange(OpenTK.Graphics.OpenGL.NvPixelDataRange target, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pointer) { throw new NotImplementedException(); } + public static void PixelDataRange(OpenTK.Graphics.OpenGL.NvPixelDataRange target, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_pixel_data_range] /// @@ -124569,7 +124569,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PixelDataRange(OpenTK.Graphics.OpenGL.NvPixelDataRange target, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_pixel_data_range] /// @@ -124579,7 +124579,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PixelDataRange(OpenTK.Graphics.OpenGL.NvPixelDataRange target, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_pixel_data_range] /// @@ -124589,7 +124589,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PixelDataRange(OpenTK.Graphics.OpenGL.NvPixelDataRange target, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_pixel_data_range] /// @@ -124598,7 +124598,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "NV_pixel_data_range", Version = "", EntryPoint = "glPixelDataRangeNV")] public static void PixelDataRange(OpenTK.Graphics.OpenGL.NvPixelDataRange target, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124611,7 +124611,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] [CLSCompliant(false)] - public static bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] out Single x, [OutAttribute, CountAttribute(Count = 1)] out Single y, [OutAttribute, CountAttribute(Count = 1)] out Single tangentX, [OutAttribute, CountAttribute(Count = 1)] out Single tangentY) { throw new NotImplementedException(); } + public static bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] out Single x, [OutAttribute, CountAttribute(Count = 1)] out Single y, [OutAttribute, CountAttribute(Count = 1)] out Single tangentX, [OutAttribute, CountAttribute(Count = 1)] out Single tangentY) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124624,7 +124624,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] [CLSCompliant(false)] - public static unsafe bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY) { throw new NotImplementedException(); } + public static unsafe bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124637,7 +124637,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] [CLSCompliant(false)] - public static bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] out Single x, [OutAttribute, CountAttribute(Count = 1)] out Single y, [OutAttribute, CountAttribute(Count = 1)] out Single tangentX, [OutAttribute, CountAttribute(Count = 1)] out Single tangentY) { throw new NotImplementedException(); } + public static bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] out Single x, [OutAttribute, CountAttribute(Count = 1)] out Single y, [OutAttribute, CountAttribute(Count = 1)] out Single tangentX, [OutAttribute, CountAttribute(Count = 1)] out Single tangentY) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124650,7 +124650,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] [CLSCompliant(false)] - public static unsafe bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY) { throw new NotImplementedException(); } + public static unsafe bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY) { throw new BindingsNotRewrittenException(); } /// [requires: NV_point_sprite] /// Specify point parameters @@ -124662,7 +124662,7 @@ namespace OpenTK.Graphics.OpenGL /// For glPointParameterf and glPointParameteri, specifies the value that pname will be set to. /// [AutoGenerated(Category = "NV_point_sprite", Version = "", EntryPoint = "glPointParameteriNV")] - public static void PointParameter(OpenTK.Graphics.OpenGL.NvPointSprite pname, Int32 param) { throw new NotImplementedException(); } + public static void PointParameter(OpenTK.Graphics.OpenGL.NvPointSprite pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: NV_point_sprite] /// Specify point parameters @@ -124675,7 +124675,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_point_sprite", Version = "", EntryPoint = "glPointParameterivNV")] [CLSCompliant(false)] - public static void PointParameter(OpenTK.Graphics.OpenGL.NvPointSprite pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void PointParameter(OpenTK.Graphics.OpenGL.NvPointSprite pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_point_sprite] /// Specify point parameters @@ -124688,7 +124688,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_point_sprite", Version = "", EntryPoint = "glPointParameterivNV")] [CLSCompliant(false)] - public static unsafe void PointParameter(OpenTK.Graphics.OpenGL.NvPointSprite pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void PointParameter(OpenTK.Graphics.OpenGL.NvPointSprite pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -124706,7 +124706,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glPresentFrameDualFillNV")] [CLSCompliant(false)] - public static void PresentFrameDualFill(Int32 video_slot, Int64 minPresentTime, Int32 beginPresentTimeId, Int32 presentDurationId, OpenTK.Graphics.OpenGL.NvPresentVideo type, OpenTK.Graphics.OpenGL.NvPresentVideo target0, Int32 fill0, OpenTK.Graphics.OpenGL.NvPresentVideo target1, Int32 fill1, OpenTK.Graphics.OpenGL.NvPresentVideo target2, Int32 fill2, OpenTK.Graphics.OpenGL.NvPresentVideo target3, Int32 fill3) { throw new NotImplementedException(); } + public static void PresentFrameDualFill(Int32 video_slot, Int64 minPresentTime, Int32 beginPresentTimeId, Int32 presentDurationId, OpenTK.Graphics.OpenGL.NvPresentVideo type, OpenTK.Graphics.OpenGL.NvPresentVideo target0, Int32 fill0, OpenTK.Graphics.OpenGL.NvPresentVideo target1, Int32 fill1, OpenTK.Graphics.OpenGL.NvPresentVideo target2, Int32 fill2, OpenTK.Graphics.OpenGL.NvPresentVideo target3, Int32 fill3) { throw new BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -124724,7 +124724,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glPresentFrameDualFillNV")] [CLSCompliant(false)] - public static void PresentFrameDualFill(UInt32 video_slot, UInt64 minPresentTime, UInt32 beginPresentTimeId, UInt32 presentDurationId, OpenTK.Graphics.OpenGL.NvPresentVideo type, OpenTK.Graphics.OpenGL.NvPresentVideo target0, UInt32 fill0, OpenTK.Graphics.OpenGL.NvPresentVideo target1, UInt32 fill1, OpenTK.Graphics.OpenGL.NvPresentVideo target2, UInt32 fill2, OpenTK.Graphics.OpenGL.NvPresentVideo target3, UInt32 fill3) { throw new NotImplementedException(); } + public static void PresentFrameDualFill(UInt32 video_slot, UInt64 minPresentTime, UInt32 beginPresentTimeId, UInt32 presentDurationId, OpenTK.Graphics.OpenGL.NvPresentVideo type, OpenTK.Graphics.OpenGL.NvPresentVideo target0, UInt32 fill0, OpenTK.Graphics.OpenGL.NvPresentVideo target1, UInt32 fill1, OpenTK.Graphics.OpenGL.NvPresentVideo target2, UInt32 fill2, OpenTK.Graphics.OpenGL.NvPresentVideo target3, UInt32 fill3) { throw new BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -124740,7 +124740,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glPresentFrameKeyedNV")] [CLSCompliant(false)] - public static void PresentFrameKeye(Int32 video_slot, Int64 minPresentTime, Int32 beginPresentTimeId, Int32 presentDurationId, OpenTK.Graphics.OpenGL.NvPresentVideo type, OpenTK.Graphics.OpenGL.NvPresentVideo target0, Int32 fill0, Int32 key0, OpenTK.Graphics.OpenGL.NvPresentVideo target1, Int32 fill1, Int32 key1) { throw new NotImplementedException(); } + public static void PresentFrameKeye(Int32 video_slot, Int64 minPresentTime, Int32 beginPresentTimeId, Int32 presentDurationId, OpenTK.Graphics.OpenGL.NvPresentVideo type, OpenTK.Graphics.OpenGL.NvPresentVideo target0, Int32 fill0, Int32 key0, OpenTK.Graphics.OpenGL.NvPresentVideo target1, Int32 fill1, Int32 key1) { throw new BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -124756,7 +124756,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glPresentFrameKeyedNV")] [CLSCompliant(false)] - public static void PresentFrameKeye(UInt32 video_slot, UInt64 minPresentTime, UInt32 beginPresentTimeId, UInt32 presentDurationId, OpenTK.Graphics.OpenGL.NvPresentVideo type, OpenTK.Graphics.OpenGL.NvPresentVideo target0, UInt32 fill0, UInt32 key0, OpenTK.Graphics.OpenGL.NvPresentVideo target1, UInt32 fill1, UInt32 key1) { throw new NotImplementedException(); } + public static void PresentFrameKeye(UInt32 video_slot, UInt64 minPresentTime, UInt32 beginPresentTimeId, UInt32 presentDurationId, OpenTK.Graphics.OpenGL.NvPresentVideo type, OpenTK.Graphics.OpenGL.NvPresentVideo target0, UInt32 fill0, UInt32 key0, OpenTK.Graphics.OpenGL.NvPresentVideo target1, UInt32 fill1, UInt32 key1) { throw new BindingsNotRewrittenException(); } /// [requires: NV_primitive_restart] /// Specify the primitive restart index @@ -124766,7 +124766,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_primitive_restart", Version = "", EntryPoint = "glPrimitiveRestartIndexNV")] [CLSCompliant(false)] - public static void PrimitiveRestartIndex(Int32 index) { throw new NotImplementedException(); } + public static void PrimitiveRestartIndex(Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: NV_primitive_restart] /// Specify the primitive restart index @@ -124776,11 +124776,11 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_primitive_restart", Version = "", EntryPoint = "glPrimitiveRestartIndexNV")] [CLSCompliant(false)] - public static void PrimitiveRestartIndex(UInt32 index) { throw new NotImplementedException(); } + public static void PrimitiveRestartIndex(UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: NV_primitive_restart] [AutoGenerated(Category = "NV_primitive_restart", Version = "", EntryPoint = "glPrimitiveRestartNV")] - public static void PrimitiveRestart() { throw new NotImplementedException(); } + public static void PrimitiveRestart() { throw new BindingsNotRewrittenException(); } /// [requires: NV_parameter_buffer_object] /// @@ -124790,7 +124790,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_parameter_buffer_object", Version = "", EntryPoint = "glProgramBufferParametersfvNV")] [CLSCompliant(false)] - public static void ProgramBufferParameters(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, Int32 bindingIndex, Int32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] Single[] @params) { throw new NotImplementedException(); } + public static void ProgramBufferParameters(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, Int32 bindingIndex, Int32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_parameter_buffer_object] /// @@ -124800,7 +124800,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_parameter_buffer_object", Version = "", EntryPoint = "glProgramBufferParametersfvNV")] [CLSCompliant(false)] - public static void ProgramBufferParameters(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, Int32 bindingIndex, Int32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] ref Single @params) { throw new NotImplementedException(); } + public static void ProgramBufferParameters(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, Int32 bindingIndex, Int32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_parameter_buffer_object] /// @@ -124810,7 +124810,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_parameter_buffer_object", Version = "", EntryPoint = "glProgramBufferParametersfvNV")] [CLSCompliant(false)] - public static unsafe void ProgramBufferParameters(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, Int32 bindingIndex, Int32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramBufferParameters(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, Int32 bindingIndex, Int32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_parameter_buffer_object] /// @@ -124820,7 +124820,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_parameter_buffer_object", Version = "", EntryPoint = "glProgramBufferParametersfvNV")] [CLSCompliant(false)] - public static void ProgramBufferParameters(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, UInt32 bindingIndex, UInt32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] Single[] @params) { throw new NotImplementedException(); } + public static void ProgramBufferParameters(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, UInt32 bindingIndex, UInt32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_parameter_buffer_object] /// @@ -124830,7 +124830,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_parameter_buffer_object", Version = "", EntryPoint = "glProgramBufferParametersfvNV")] [CLSCompliant(false)] - public static void ProgramBufferParameters(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, UInt32 bindingIndex, UInt32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] ref Single @params) { throw new NotImplementedException(); } + public static void ProgramBufferParameters(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, UInt32 bindingIndex, UInt32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_parameter_buffer_object] /// @@ -124840,7 +124840,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_parameter_buffer_object", Version = "", EntryPoint = "glProgramBufferParametersfvNV")] [CLSCompliant(false)] - public static unsafe void ProgramBufferParameters(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, UInt32 bindingIndex, UInt32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramBufferParameters(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, UInt32 bindingIndex, UInt32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_parameter_buffer_object] /// @@ -124850,7 +124850,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_parameter_buffer_object", Version = "", EntryPoint = "glProgramBufferParametersIivNV")] [CLSCompliant(false)] - public static void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, Int32 bindingIndex, Int32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] Int32[] @params) { throw new NotImplementedException(); } + public static void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, Int32 bindingIndex, Int32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_parameter_buffer_object] /// @@ -124860,7 +124860,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_parameter_buffer_object", Version = "", EntryPoint = "glProgramBufferParametersIivNV")] [CLSCompliant(false)] - public static void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, Int32 bindingIndex, Int32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 @params) { throw new NotImplementedException(); } + public static void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, Int32 bindingIndex, Int32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_parameter_buffer_object] /// @@ -124870,7 +124870,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_parameter_buffer_object", Version = "", EntryPoint = "glProgramBufferParametersIivNV")] [CLSCompliant(false)] - public static unsafe void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, Int32 bindingIndex, Int32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, Int32 bindingIndex, Int32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_parameter_buffer_object] /// @@ -124880,7 +124880,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_parameter_buffer_object", Version = "", EntryPoint = "glProgramBufferParametersIivNV")] [CLSCompliant(false)] - public static void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, UInt32 bindingIndex, UInt32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] Int32[] @params) { throw new NotImplementedException(); } + public static void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, UInt32 bindingIndex, UInt32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_parameter_buffer_object] /// @@ -124890,7 +124890,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_parameter_buffer_object", Version = "", EntryPoint = "glProgramBufferParametersIivNV")] [CLSCompliant(false)] - public static void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, UInt32 bindingIndex, UInt32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 @params) { throw new NotImplementedException(); } + public static void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, UInt32 bindingIndex, UInt32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_parameter_buffer_object] /// @@ -124900,7 +124900,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_parameter_buffer_object", Version = "", EntryPoint = "glProgramBufferParametersIivNV")] [CLSCompliant(false)] - public static unsafe void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, UInt32 bindingIndex, UInt32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, UInt32 bindingIndex, UInt32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_parameter_buffer_object] /// @@ -124910,7 +124910,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_parameter_buffer_object", Version = "", EntryPoint = "glProgramBufferParametersIuivNV")] [CLSCompliant(false)] - public static void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, UInt32 bindingIndex, UInt32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] @params) { throw new NotImplementedException(); } + public static void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, UInt32 bindingIndex, UInt32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_parameter_buffer_object] /// @@ -124920,7 +124920,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_parameter_buffer_object", Version = "", EntryPoint = "glProgramBufferParametersIuivNV")] [CLSCompliant(false)] - public static void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, UInt32 bindingIndex, UInt32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, UInt32 bindingIndex, UInt32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_parameter_buffer_object] /// @@ -124930,7 +124930,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_parameter_buffer_object", Version = "", EntryPoint = "glProgramBufferParametersIuivNV")] [CLSCompliant(false)] - public static unsafe void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, UInt32 bindingIndex, UInt32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, UInt32 bindingIndex, UInt32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -124941,7 +124941,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParameterI4iNV")] [CLSCompliant(false)] - public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } + public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -124952,7 +124952,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParameterI4iNV")] [CLSCompliant(false)] - public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } + public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -124960,7 +124960,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParameterI4ivNV")] [CLSCompliant(false)] - public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -124968,7 +124968,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParameterI4ivNV")] [CLSCompliant(false)] - public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [CountAttribute(Count = 4)] ref Int32 @params) { throw new NotImplementedException(); } + public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [CountAttribute(Count = 4)] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -124976,7 +124976,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParameterI4ivNV")] [CLSCompliant(false)] - public static unsafe void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -124984,7 +124984,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParameterI4ivNV")] [CLSCompliant(false)] - public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -124992,7 +124992,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParameterI4ivNV")] [CLSCompliant(false)] - public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] ref Int32 @params) { throw new NotImplementedException(); } + public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125000,7 +125000,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParameterI4ivNV")] [CLSCompliant(false)] - public static unsafe void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125011,7 +125011,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParameterI4uiNV")] [CLSCompliant(false)] - public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) { throw new NotImplementedException(); } + public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125019,7 +125019,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParameterI4uivNV")] [CLSCompliant(false)] - public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] UInt32[] @params) { throw new NotImplementedException(); } + public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125027,7 +125027,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParameterI4uivNV")] [CLSCompliant(false)] - public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] ref UInt32 @params) { throw new NotImplementedException(); } + public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125035,7 +125035,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParameterI4uivNV")] [CLSCompliant(false)] - public static unsafe void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125044,7 +125044,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParametersI4ivNV")] [CLSCompliant(false)] - public static void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] @params) { throw new NotImplementedException(); } + public static void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125053,7 +125053,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParametersI4ivNV")] [CLSCompliant(false)] - public static void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 @params) { throw new NotImplementedException(); } + public static void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125062,7 +125062,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParametersI4ivNV")] [CLSCompliant(false)] - public static unsafe void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125071,7 +125071,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParametersI4ivNV")] [CLSCompliant(false)] - public static void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] @params) { throw new NotImplementedException(); } + public static void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125080,7 +125080,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParametersI4ivNV")] [CLSCompliant(false)] - public static void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 @params) { throw new NotImplementedException(); } + public static void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125089,7 +125089,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParametersI4ivNV")] [CLSCompliant(false)] - public static unsafe void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125098,7 +125098,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParametersI4uivNV")] [CLSCompliant(false)] - public static void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] @params) { throw new NotImplementedException(); } + public static void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125107,7 +125107,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParametersI4uivNV")] [CLSCompliant(false)] - public static void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125116,7 +125116,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParametersI4uivNV")] [CLSCompliant(false)] - public static unsafe void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125127,7 +125127,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParameterI4iNV")] [CLSCompliant(false)] - public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } + public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125138,7 +125138,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParameterI4iNV")] [CLSCompliant(false)] - public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } + public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125146,7 +125146,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParameterI4ivNV")] [CLSCompliant(false)] - public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125154,7 +125154,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParameterI4ivNV")] [CLSCompliant(false)] - public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [CountAttribute(Count = 4)] ref Int32 @params) { throw new NotImplementedException(); } + public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [CountAttribute(Count = 4)] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125162,7 +125162,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParameterI4ivNV")] [CLSCompliant(false)] - public static unsafe void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125170,7 +125170,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParameterI4ivNV")] [CLSCompliant(false)] - public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125178,7 +125178,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParameterI4ivNV")] [CLSCompliant(false)] - public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] ref Int32 @params) { throw new NotImplementedException(); } + public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125186,7 +125186,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParameterI4ivNV")] [CLSCompliant(false)] - public static unsafe void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125197,7 +125197,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParameterI4uiNV")] [CLSCompliant(false)] - public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) { throw new NotImplementedException(); } + public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125205,7 +125205,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParameterI4uivNV")] [CLSCompliant(false)] - public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] UInt32[] @params) { throw new NotImplementedException(); } + public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125213,7 +125213,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParameterI4uivNV")] [CLSCompliant(false)] - public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] ref UInt32 @params) { throw new NotImplementedException(); } + public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125221,7 +125221,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParameterI4uivNV")] [CLSCompliant(false)] - public static unsafe void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125230,7 +125230,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParametersI4ivNV")] [CLSCompliant(false)] - public static void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] @params) { throw new NotImplementedException(); } + public static void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125239,7 +125239,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParametersI4ivNV")] [CLSCompliant(false)] - public static void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 @params) { throw new NotImplementedException(); } + public static void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125248,7 +125248,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParametersI4ivNV")] [CLSCompliant(false)] - public static unsafe void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125257,7 +125257,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParametersI4ivNV")] [CLSCompliant(false)] - public static void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] @params) { throw new NotImplementedException(); } + public static void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125266,7 +125266,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParametersI4ivNV")] [CLSCompliant(false)] - public static void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 @params) { throw new NotImplementedException(); } + public static void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125275,7 +125275,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParametersI4ivNV")] [CLSCompliant(false)] - public static unsafe void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125284,7 +125284,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParametersI4uivNV")] [CLSCompliant(false)] - public static void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] @params) { throw new NotImplementedException(); } + public static void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125293,7 +125293,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParametersI4uivNV")] [CLSCompliant(false)] - public static void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125302,7 +125302,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParametersI4uivNV")] [CLSCompliant(false)] - public static unsafe void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -125314,7 +125314,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4dNV")] [CLSCompliant(false)] - public static void ProgramNamedParameter4(Int32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void ProgramNamedParameter4(Int32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -125326,7 +125326,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4dNV")] [CLSCompliant(false)] - public static unsafe void ProgramNamedParameter4(Int32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static unsafe void ProgramNamedParameter4(Int32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -125338,7 +125338,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4dNV")] [CLSCompliant(false)] - public static void ProgramNamedParameter4(UInt32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void ProgramNamedParameter4(UInt32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -125350,7 +125350,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4dNV")] [CLSCompliant(false)] - public static unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -125359,7 +125359,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4dvNV")] [CLSCompliant(false)] - public static void ProgramNamedParameter4(Int32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void ProgramNamedParameter4(Int32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -125368,7 +125368,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4dvNV")] [CLSCompliant(false)] - public static void ProgramNamedParameter4(Int32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void ProgramNamedParameter4(Int32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -125377,7 +125377,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4dvNV")] [CLSCompliant(false)] - public static unsafe void ProgramNamedParameter4(Int32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, [CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void ProgramNamedParameter4(Int32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, [CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -125386,7 +125386,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4dvNV")] [CLSCompliant(false)] - public static void ProgramNamedParameter4(UInt32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void ProgramNamedParameter4(UInt32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -125395,7 +125395,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4dvNV")] [CLSCompliant(false)] - public static void ProgramNamedParameter4(UInt32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void ProgramNamedParameter4(UInt32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -125404,7 +125404,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4dvNV")] [CLSCompliant(false)] - public static unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, [CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, [CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -125416,7 +125416,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4fNV")] [CLSCompliant(false)] - public static void ProgramNamedParameter4(Int32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void ProgramNamedParameter4(Int32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -125428,7 +125428,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4fNV")] [CLSCompliant(false)] - public static unsafe void ProgramNamedParameter4(Int32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static unsafe void ProgramNamedParameter4(Int32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -125440,7 +125440,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4fNV")] [CLSCompliant(false)] - public static void ProgramNamedParameter4(UInt32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void ProgramNamedParameter4(UInt32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -125452,7 +125452,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4fNV")] [CLSCompliant(false)] - public static unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -125461,7 +125461,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4fvNV")] [CLSCompliant(false)] - public static void ProgramNamedParameter4(Int32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void ProgramNamedParameter4(Int32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -125470,7 +125470,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4fvNV")] [CLSCompliant(false)] - public static void ProgramNamedParameter4(Int32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void ProgramNamedParameter4(Int32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -125479,7 +125479,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4fvNV")] [CLSCompliant(false)] - public static unsafe void ProgramNamedParameter4(Int32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ProgramNamedParameter4(Int32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -125488,7 +125488,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4fvNV")] [CLSCompliant(false)] - public static void ProgramNamedParameter4(UInt32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void ProgramNamedParameter4(UInt32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -125497,7 +125497,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4fvNV")] [CLSCompliant(false)] - public static void ProgramNamedParameter4(UInt32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void ProgramNamedParameter4(UInt32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -125506,7 +125506,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4fvNV")] [CLSCompliant(false)] - public static unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specify a parameter for a program object @@ -125525,7 +125525,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameter4dNV")] [CLSCompliant(false)] - public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specify a parameter for a program object @@ -125544,7 +125544,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameter4dNV")] [CLSCompliant(false)] - public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specify a parameter for a program object @@ -125560,7 +125560,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameter4dvNV")] [CLSCompliant(false)] - public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specify a parameter for a program object @@ -125576,7 +125576,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameter4dvNV")] [CLSCompliant(false)] - public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specify a parameter for a program object @@ -125592,7 +125592,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameter4dvNV")] [CLSCompliant(false)] - public static unsafe void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specify a parameter for a program object @@ -125608,7 +125608,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameter4dvNV")] [CLSCompliant(false)] - public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specify a parameter for a program object @@ -125624,7 +125624,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameter4dvNV")] [CLSCompliant(false)] - public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specify a parameter for a program object @@ -125640,7 +125640,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameter4dvNV")] [CLSCompliant(false)] - public static unsafe void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specify a parameter for a program object @@ -125659,7 +125659,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameter4fNV")] [CLSCompliant(false)] - public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specify a parameter for a program object @@ -125678,7 +125678,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameter4fNV")] [CLSCompliant(false)] - public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specify a parameter for a program object @@ -125694,7 +125694,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameter4fvNV")] [CLSCompliant(false)] - public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specify a parameter for a program object @@ -125710,7 +125710,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameter4fvNV")] [CLSCompliant(false)] - public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specify a parameter for a program object @@ -125726,7 +125726,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameter4fvNV")] [CLSCompliant(false)] - public static unsafe void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specify a parameter for a program object @@ -125742,7 +125742,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameter4fvNV")] [CLSCompliant(false)] - public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specify a parameter for a program object @@ -125758,7 +125758,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameter4fvNV")] [CLSCompliant(false)] - public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specify a parameter for a program object @@ -125774,7 +125774,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameter4fvNV")] [CLSCompliant(false)] - public static unsafe void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -125783,7 +125783,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4dvNV")] [CLSCompliant(false)] - public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] v) { throw new NotImplementedException(); } + public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -125792,7 +125792,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4dvNV")] [CLSCompliant(false)] - public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double v) { throw new NotImplementedException(); } + public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -125801,7 +125801,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4dvNV")] [CLSCompliant(false)] - public static unsafe void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Double* v) { throw new NotImplementedException(); } + public static unsafe void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -125810,7 +125810,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4dvNV")] [CLSCompliant(false)] - public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] v) { throw new NotImplementedException(); } + public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -125819,7 +125819,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4dvNV")] [CLSCompliant(false)] - public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double v) { throw new NotImplementedException(); } + public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -125828,7 +125828,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4dvNV")] [CLSCompliant(false)] - public static unsafe void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Double* v) { throw new NotImplementedException(); } + public static unsafe void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -125838,7 +125838,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use int overload instead")] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4dvNV")] [CLSCompliant(false)] - public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, UInt32 count, [CountAttribute(Parameter = "count*4")] Double[] v) { throw new NotImplementedException(); } + public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, UInt32 count, [CountAttribute(Parameter = "count*4")] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -125848,7 +125848,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use int overload instead")] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4dvNV")] [CLSCompliant(false)] - public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, UInt32 count, [CountAttribute(Parameter = "count*4")] ref Double v) { throw new NotImplementedException(); } + public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, UInt32 count, [CountAttribute(Parameter = "count*4")] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -125858,7 +125858,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use int overload instead")] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4dvNV")] [CLSCompliant(false)] - public static unsafe void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, UInt32 count, [CountAttribute(Parameter = "count*4")] Double* v) { throw new NotImplementedException(); } + public static unsafe void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, UInt32 count, [CountAttribute(Parameter = "count*4")] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -125867,7 +125867,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4fvNV")] [CLSCompliant(false)] - public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] v) { throw new NotImplementedException(); } + public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -125876,7 +125876,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4fvNV")] [CLSCompliant(false)] - public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single v) { throw new NotImplementedException(); } + public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -125885,7 +125885,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4fvNV")] [CLSCompliant(false)] - public static unsafe void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* v) { throw new NotImplementedException(); } + public static unsafe void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -125894,7 +125894,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4fvNV")] [CLSCompliant(false)] - public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] v) { throw new NotImplementedException(); } + public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -125903,7 +125903,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4fvNV")] [CLSCompliant(false)] - public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single v) { throw new NotImplementedException(); } + public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -125912,7 +125912,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4fvNV")] [CLSCompliant(false)] - public static unsafe void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* v) { throw new NotImplementedException(); } + public static unsafe void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -125922,7 +125922,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use int overload instead")] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4fvNV")] [CLSCompliant(false)] - public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, UInt32 count, [CountAttribute(Parameter = "count*4")] Single[] v) { throw new NotImplementedException(); } + public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, UInt32 count, [CountAttribute(Parameter = "count*4")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -125932,7 +125932,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use int overload instead")] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4fvNV")] [CLSCompliant(false)] - public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, UInt32 count, [CountAttribute(Parameter = "count*4")] ref Single v) { throw new NotImplementedException(); } + public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, UInt32 count, [CountAttribute(Parameter = "count*4")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -125942,7 +125942,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use int overload instead")] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4fvNV")] [CLSCompliant(false)] - public static unsafe void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, UInt32 count, [CountAttribute(Parameter = "count*4")] Single* v) { throw new NotImplementedException(); } + public static unsafe void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, UInt32 count, [CountAttribute(Parameter = "count*4")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -125952,7 +125952,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.OpenGL.NvPathRendering genMode, Int32 components, Single[] coeffs) { throw new NotImplementedException(); } + public static void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.OpenGL.NvPathRendering genMode, Int32 components, Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -125962,7 +125962,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.OpenGL.NvPathRendering genMode, Int32 components, ref Single coeffs) { throw new NotImplementedException(); } + public static void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.OpenGL.NvPathRendering genMode, Int32 components, ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -125972,7 +125972,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static unsafe void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.OpenGL.NvPathRendering genMode, Int32 components, Single* coeffs) { throw new NotImplementedException(); } + public static unsafe void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.OpenGL.NvPathRendering genMode, Int32 components, Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -125982,7 +125982,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.OpenGL.NvPathRendering genMode, Int32 components, Single[] coeffs) { throw new NotImplementedException(); } + public static void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.OpenGL.NvPathRendering genMode, Int32 components, Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -125992,7 +125992,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.OpenGL.NvPathRendering genMode, Int32 components, ref Single coeffs) { throw new NotImplementedException(); } + public static void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.OpenGL.NvPathRendering genMode, Int32 components, ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -126002,7 +126002,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static unsafe void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.OpenGL.NvPathRendering genMode, Int32 components, Single* coeffs) { throw new NotImplementedException(); } + public static unsafe void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.OpenGL.NvPathRendering genMode, Int32 components, Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program5] /// @@ -126010,7 +126010,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_gpu_program5", Version = "", EntryPoint = "glProgramSubroutineParametersuivNV")] [CLSCompliant(false)] - public static void ProgramSubroutineParameters(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 count, [CountAttribute(Parameter = "count")] Int32[] @params) { throw new NotImplementedException(); } + public static void ProgramSubroutineParameters(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 count, [CountAttribute(Parameter = "count")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program5] /// @@ -126018,7 +126018,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_gpu_program5", Version = "", EntryPoint = "glProgramSubroutineParametersuivNV")] [CLSCompliant(false)] - public static void ProgramSubroutineParameters(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 @params) { throw new NotImplementedException(); } + public static void ProgramSubroutineParameters(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program5] /// @@ -126026,7 +126026,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_gpu_program5", Version = "", EntryPoint = "glProgramSubroutineParametersuivNV")] [CLSCompliant(false)] - public static unsafe void ProgramSubroutineParameters(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 count, [CountAttribute(Parameter = "count")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramSubroutineParameters(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 count, [CountAttribute(Parameter = "count")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program5] /// @@ -126034,7 +126034,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_gpu_program5", Version = "", EntryPoint = "glProgramSubroutineParametersuivNV")] [CLSCompliant(false)] - public static void ProgramSubroutineParameters(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] @params) { throw new NotImplementedException(); } + public static void ProgramSubroutineParameters(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program5] /// @@ -126042,7 +126042,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_gpu_program5", Version = "", EntryPoint = "glProgramSubroutineParametersuivNV")] [CLSCompliant(false)] - public static void ProgramSubroutineParameters(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void ProgramSubroutineParameters(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program5] /// @@ -126050,7 +126050,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_gpu_program5", Version = "", EntryPoint = "glProgramSubroutineParametersuivNV")] [CLSCompliant(false)] - public static unsafe void ProgramSubroutineParameters(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 count, [CountAttribute(Parameter = "count")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramSubroutineParameters(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 count, [CountAttribute(Parameter = "count")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126066,7 +126066,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64NV")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126082,7 +126082,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64NV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126101,7 +126101,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126120,7 +126120,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126139,7 +126139,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126158,7 +126158,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126177,7 +126177,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126196,7 +126196,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126212,7 +126212,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64NV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, UInt64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, UInt64 x) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126231,7 +126231,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126250,7 +126250,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126269,7 +126269,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126288,7 +126288,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64NV")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int64 x, Int64 y) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126307,7 +126307,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64NV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int64 x, Int64 y) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126326,7 +126326,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126345,7 +126345,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126364,7 +126364,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126383,7 +126383,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126402,7 +126402,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126421,7 +126421,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126440,7 +126440,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2ui64NV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, UInt64 x, UInt64 y) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, UInt64 x, UInt64 y) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126459,7 +126459,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126478,7 +126478,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126497,7 +126497,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2ui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126519,7 +126519,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64NV")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126541,7 +126541,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64NV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126560,7 +126560,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126579,7 +126579,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126598,7 +126598,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126617,7 +126617,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126636,7 +126636,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126655,7 +126655,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126677,7 +126677,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3ui64NV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126696,7 +126696,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126715,7 +126715,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126734,7 +126734,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3ui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126759,7 +126759,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64NV")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126784,7 +126784,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64NV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126803,7 +126803,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126822,7 +126822,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126841,7 +126841,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126860,7 +126860,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126879,7 +126879,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126898,7 +126898,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126923,7 +126923,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4ui64NV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126942,7 +126942,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126961,7 +126961,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126980,7 +126980,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4ui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -126988,7 +126988,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64NV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -126996,7 +126996,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64NV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -127005,7 +127005,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -127014,7 +127014,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -127023,7 +127023,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* values) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -127032,7 +127032,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -127041,7 +127041,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -127050,7 +127050,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for a specified program object @@ -127066,7 +127066,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glProgramUniformui64NV")] [CLSCompliant(false)] - public static void ProgramUniform(Int32 program, Int32 location, Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform(Int32 program, Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for a specified program object @@ -127082,7 +127082,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glProgramUniformui64NV")] [CLSCompliant(false)] - public static void ProgramUniform(UInt32 program, Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform(UInt32 program, Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for a specified program object @@ -127101,7 +127101,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glProgramUniformui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for a specified program object @@ -127120,7 +127120,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glProgramUniformui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for a specified program object @@ -127139,7 +127139,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glProgramUniformui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for a specified program object @@ -127158,7 +127158,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glProgramUniformui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for a specified program object @@ -127177,7 +127177,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glProgramUniformui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for a specified program object @@ -127196,13 +127196,13 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glProgramUniformui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_geometry_program4] /// /// [AutoGenerated(Category = "NV_geometry_program4", Version = "", EntryPoint = "glProgramVertexLimitNV")] - public static void ProgramVertexLimit(OpenTK.Graphics.OpenGL.NvGeometryProgram4 target, Int32 limit) { throw new NotImplementedException(); } + public static void ProgramVertexLimit(OpenTK.Graphics.OpenGL.NvGeometryProgram4 target, Int32 limit) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_multisample_coverage] /// @@ -127212,169 +127212,169 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_framebuffer_multisample_coverage", Version = "", EntryPoint = "glRenderbufferStorageMultisampleCoverageNV")] - public static void RenderbufferStorageMultisampleCoverage(OpenTK.Graphics.OpenGL.RenderbufferTarget target, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisampleCoverage(OpenTK.Graphics.OpenGL.RenderbufferTarget target, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glRenderGpuMaskNV")] [CLSCompliant(false)] - public static void RenderGpuMask(Int32 mask) { throw new NotImplementedException(); } + public static void RenderGpuMask(Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glRenderGpuMaskNV")] [CLSCompliant(false)] - public static void RenderGpuMask(UInt32 mask) { throw new NotImplementedException(); } + public static void RenderGpuMask(UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glRequestResidentProgramsNV")] [CLSCompliant(false)] - public static void RequestResidentProgram(Int32 n, [CountAttribute(Parameter = "n")] Int32[] programs) { throw new NotImplementedException(); } + public static void RequestResidentProgram(Int32 n, [CountAttribute(Parameter = "n")] Int32[] programs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glRequestResidentProgramsNV")] [CLSCompliant(false)] - public static void RequestResidentProgram(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 programs) { throw new NotImplementedException(); } + public static void RequestResidentProgram(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 programs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glRequestResidentProgramsNV")] [CLSCompliant(false)] - public static unsafe void RequestResidentProgram(Int32 n, [CountAttribute(Parameter = "n")] Int32* programs) { throw new NotImplementedException(); } + public static unsafe void RequestResidentProgram(Int32 n, [CountAttribute(Parameter = "n")] Int32* programs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glRequestResidentProgramsNV")] [CLSCompliant(false)] - public static void RequestResidentProgram(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] programs) { throw new NotImplementedException(); } + public static void RequestResidentProgram(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] programs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glRequestResidentProgramsNV")] [CLSCompliant(false)] - public static void RequestResidentProgram(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 programs) { throw new NotImplementedException(); } + public static void RequestResidentProgram(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 programs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glRequestResidentProgramsNV")] [CLSCompliant(false)] - public static unsafe void RequestResidentProgram(Int32 n, [CountAttribute(Parameter = "n")] UInt32* programs) { throw new NotImplementedException(); } + public static unsafe void RequestResidentProgram(Int32 n, [CountAttribute(Parameter = "n")] UInt32* programs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glResolveDepthValuesNV")] - public static void ResolveDepthValues() { throw new NotImplementedException(); } + public static void ResolveDepthValues() { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Resume transform feedback operations /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glResumeTransformFeedbackNV")] - public static void ResumeTransformFeedback() { throw new NotImplementedException(); } + public static void ResumeTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [requires: NV_explicit_multisample] /// /// [AutoGenerated(Category = "NV_explicit_multisample", Version = "", EntryPoint = "glSampleMaskIndexedNV")] [CLSCompliant(false)] - public static void SampleMaskIndexed(Int32 index, Int32 mask) { throw new NotImplementedException(); } + public static void SampleMaskIndexed(Int32 index, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_explicit_multisample] /// /// [AutoGenerated(Category = "NV_explicit_multisample", Version = "", EntryPoint = "glSampleMaskIndexedNV")] [CLSCompliant(false)] - public static void SampleMaskIndexed(UInt32 index, UInt32 mask) { throw new NotImplementedException(); } + public static void SampleMaskIndexed(UInt32 index, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glSecondaryColor3hNV")] - public static void SecondaryColor3h(Half red, Half green, Half blue) { throw new NotImplementedException(); } + public static void SecondaryColor3h(Half red, Half green, Half blue) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glSecondaryColor3hvNV")] [CLSCompliant(false)] - public static void SecondaryColor3h([CountAttribute(Count = 3)] Half[] v) { throw new NotImplementedException(); } + public static void SecondaryColor3h([CountAttribute(Count = 3)] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glSecondaryColor3hvNV")] [CLSCompliant(false)] - public static void SecondaryColor3h([CountAttribute(Count = 3)] ref Half v) { throw new NotImplementedException(); } + public static void SecondaryColor3h([CountAttribute(Count = 3)] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glSecondaryColor3hvNV")] [CLSCompliant(false)] - public static unsafe void SecondaryColor3h([CountAttribute(Count = 3)] Half* v) { throw new NotImplementedException(); } + public static unsafe void SecondaryColor3h([CountAttribute(Count = 3)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// /// /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glSecondaryColorFormatNV")] - public static void SecondaryColorFormat(Int32 size, OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, Int32 stride) { throw new NotImplementedException(); } + public static void SecondaryColorFormat(Int32 size, OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glSetFenceNV")] [CLSCompliant(false)] - public static void SetFence(Int32 fence, OpenTK.Graphics.OpenGL.NvFence condition) { throw new NotImplementedException(); } + public static void SetFence(Int32 fence, OpenTK.Graphics.OpenGL.NvFence condition) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glSetFenceNV")] [CLSCompliant(false)] - public static void SetFence(UInt32 fence, OpenTK.Graphics.OpenGL.NvFence condition) { throw new NotImplementedException(); } + public static void SetFence(UInt32 fence, OpenTK.Graphics.OpenGL.NvFence condition) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glSignalVkFenceNV")] [CLSCompliant(false)] - public static void SignalVkFence(Int64 vkFence) { throw new NotImplementedException(); } + public static void SignalVkFence(Int64 vkFence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glSignalVkFenceNV")] [CLSCompliant(false)] - public static void SignalVkFence(UInt64 vkFence) { throw new NotImplementedException(); } + public static void SignalVkFence(UInt64 vkFence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glSignalVkSemaphoreNV")] [CLSCompliant(false)] - public static void SignalVkSemaphore(Int64 vkSemaphore) { throw new NotImplementedException(); } + public static void SignalVkSemaphore(Int64 vkSemaphore) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glSignalVkSemaphoreNV")] [CLSCompliant(false)] - public static void SignalVkSemaphore(UInt64 vkSemaphore) { throw new NotImplementedException(); } + public static void SignalVkSemaphore(UInt64 vkSemaphore) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glStateCaptureNV")] [CLSCompliant(false)] - public static void StateCapture(Int32 state, OpenTK.Graphics.OpenGL.NvCommandList mode) { throw new NotImplementedException(); } + public static void StateCapture(Int32 state, OpenTK.Graphics.OpenGL.NvCommandList mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glStateCaptureNV")] [CLSCompliant(false)] - public static void StateCapture(UInt32 state, OpenTK.Graphics.OpenGL.NvCommandList mode) { throw new NotImplementedException(); } + public static void StateCapture(UInt32 state, OpenTK.Graphics.OpenGL.NvCommandList mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127387,7 +127387,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127400,7 +127400,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127413,7 +127413,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127426,7 +127426,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127439,7 +127439,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127452,7 +127452,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127467,7 +127467,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127482,7 +127482,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127497,7 +127497,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127512,7 +127512,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127527,7 +127527,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127542,7 +127542,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127557,7 +127557,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127572,7 +127572,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127587,7 +127587,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127602,7 +127602,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127617,7 +127617,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127632,7 +127632,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127647,7 +127647,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127662,7 +127662,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127677,7 +127677,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127692,7 +127692,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127707,7 +127707,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127722,7 +127722,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127737,7 +127737,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127752,7 +127752,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127767,7 +127767,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127782,7 +127782,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127797,7 +127797,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127812,7 +127812,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127820,7 +127820,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathNV")] [CLSCompliant(false)] - public static void StencilFillPath(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask) { throw new NotImplementedException(); } + public static void StencilFillPath(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127828,7 +127828,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathNV")] [CLSCompliant(false)] - public static void StencilFillPath(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFillPath(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127841,7 +127841,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127854,7 +127854,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127867,7 +127867,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127880,7 +127880,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127893,7 +127893,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127906,7 +127906,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127921,7 +127921,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127936,7 +127936,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127951,7 +127951,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127966,7 +127966,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127981,7 +127981,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127996,7 +127996,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128011,7 +128011,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128026,7 +128026,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128041,7 +128041,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128056,7 +128056,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128071,7 +128071,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128086,7 +128086,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128101,7 +128101,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128116,7 +128116,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128131,7 +128131,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128146,7 +128146,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128161,7 +128161,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128176,7 +128176,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128191,7 +128191,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128206,7 +128206,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128221,7 +128221,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128236,7 +128236,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128251,7 +128251,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128266,7 +128266,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128274,7 +128274,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathNV")] [CLSCompliant(false)] - public static void StencilStrokePath(Int32 path, Int32 reference, Int32 mask) { throw new NotImplementedException(); } + public static void StencilStrokePath(Int32 path, Int32 reference, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128282,7 +128282,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathNV")] [CLSCompliant(false)] - public static void StencilStrokePath(UInt32 path, Int32 reference, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilStrokePath(UInt32 path, Int32 reference, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128296,7 +128296,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128310,7 +128310,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128324,7 +128324,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128338,7 +128338,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128352,7 +128352,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128366,7 +128366,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128382,7 +128382,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128398,7 +128398,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128414,7 +128414,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128430,7 +128430,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128446,7 +128446,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128462,7 +128462,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128478,7 +128478,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128494,7 +128494,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128510,7 +128510,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128526,7 +128526,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128542,7 +128542,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128558,7 +128558,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128574,7 +128574,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128590,7 +128590,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128606,7 +128606,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128622,7 +128622,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128638,7 +128638,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128654,7 +128654,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128670,7 +128670,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128686,7 +128686,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128702,7 +128702,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128718,7 +128718,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128734,7 +128734,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128750,7 +128750,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128759,7 +128759,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPath(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPath(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128768,7 +128768,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPath(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPath(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128782,7 +128782,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128796,7 +128796,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128810,7 +128810,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128824,7 +128824,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128838,7 +128838,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128852,7 +128852,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128868,7 +128868,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128884,7 +128884,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128900,7 +128900,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128916,7 +128916,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128932,7 +128932,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128948,7 +128948,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128964,7 +128964,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128980,7 +128980,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128996,7 +128996,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129012,7 +129012,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129028,7 +129028,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129044,7 +129044,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129060,7 +129060,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129076,7 +129076,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129092,7 +129092,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129108,7 +129108,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129124,7 +129124,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129140,7 +129140,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129156,7 +129156,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129172,7 +129172,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129188,7 +129188,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129204,7 +129204,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129220,7 +129220,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129236,7 +129236,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129245,7 +129245,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePath(Int32 path, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePath(Int32 path, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129254,93 +129254,93 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePath(UInt32 path, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePath(UInt32 path, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conservative_raster] /// /// [AutoGenerated(Category = "NV_conservative_raster", Version = "", EntryPoint = "glSubpixelPrecisionBiasNV")] [CLSCompliant(false)] - public static void SubpixelPrecisionBia(Int32 xbits, Int32 ybits) { throw new NotImplementedException(); } + public static void SubpixelPrecisionBia(Int32 xbits, Int32 ybits) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conservative_raster] /// /// [AutoGenerated(Category = "NV_conservative_raster", Version = "", EntryPoint = "glSubpixelPrecisionBiasNV")] [CLSCompliant(false)] - public static void SubpixelPrecisionBia(UInt32 xbits, UInt32 ybits) { throw new NotImplementedException(); } + public static void SubpixelPrecisionBia(UInt32 xbits, UInt32 ybits) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glTestFenceNV")] [CLSCompliant(false)] - public static bool TestFence(Int32 fence) { throw new NotImplementedException(); } + public static bool TestFence(Int32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glTestFenceNV")] [CLSCompliant(false)] - public static bool TestFence(UInt32 fence) { throw new NotImplementedException(); } + public static bool TestFence(UInt32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glTexCoord1hNV")] - public static void TexCoord1h(Half s) { throw new NotImplementedException(); } + public static void TexCoord1h(Half s) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 1] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glTexCoord1hvNV")] [CLSCompliant(false)] - public static unsafe void TexCoord1h([CountAttribute(Count = 1)] Half* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord1h([CountAttribute(Count = 1)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glTexCoord2hNV")] - public static void TexCoord2h(Half s, Half t) { throw new NotImplementedException(); } + public static void TexCoord2h(Half s, Half t) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 2] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glTexCoord2hvNV")] [CLSCompliant(false)] - public static void TexCoord2h([CountAttribute(Count = 2)] Half[] v) { throw new NotImplementedException(); } + public static void TexCoord2h([CountAttribute(Count = 2)] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 2] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glTexCoord2hvNV")] [CLSCompliant(false)] - public static void TexCoord2h([CountAttribute(Count = 2)] ref Half v) { throw new NotImplementedException(); } + public static void TexCoord2h([CountAttribute(Count = 2)] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 2] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glTexCoord2hvNV")] [CLSCompliant(false)] - public static unsafe void TexCoord2h([CountAttribute(Count = 2)] Half* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord2h([CountAttribute(Count = 2)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glTexCoord3hNV")] - public static void TexCoord3h(Half s, Half t, Half r) { throw new NotImplementedException(); } + public static void TexCoord3h(Half s, Half t, Half r) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glTexCoord3hvNV")] [CLSCompliant(false)] - public static void TexCoord3h([CountAttribute(Count = 3)] Half[] v) { throw new NotImplementedException(); } + public static void TexCoord3h([CountAttribute(Count = 3)] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glTexCoord3hvNV")] [CLSCompliant(false)] - public static void TexCoord3h([CountAttribute(Count = 3)] ref Half v) { throw new NotImplementedException(); } + public static void TexCoord3h([CountAttribute(Count = 3)] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glTexCoord3hvNV")] [CLSCompliant(false)] - public static unsafe void TexCoord3h([CountAttribute(Count = 3)] Half* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord3h([CountAttribute(Count = 3)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -129348,32 +129348,32 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glTexCoord4hNV")] - public static void TexCoord4h(Half s, Half t, Half r, Half q) { throw new NotImplementedException(); } + public static void TexCoord4h(Half s, Half t, Half r, Half q) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 4] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glTexCoord4hvNV")] [CLSCompliant(false)] - public static void TexCoord4h([CountAttribute(Count = 4)] Half[] v) { throw new NotImplementedException(); } + public static void TexCoord4h([CountAttribute(Count = 4)] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 4] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glTexCoord4hvNV")] [CLSCompliant(false)] - public static void TexCoord4h([CountAttribute(Count = 4)] ref Half v) { throw new NotImplementedException(); } + public static void TexCoord4h([CountAttribute(Count = 4)] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 4] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glTexCoord4hvNV")] [CLSCompliant(false)] - public static unsafe void TexCoord4h([CountAttribute(Count = 4)] Half* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord4h([CountAttribute(Count = 4)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// /// /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glTexCoordFormatNV")] - public static void TexCoordFormat(Int32 size, OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, Int32 stride) { throw new NotImplementedException(); } + public static void TexCoordFormat(Int32 size, OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_texture_multisample] /// @@ -129384,7 +129384,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_texture_multisample", Version = "", EntryPoint = "glTexImage2DMultisampleCoverageNV")] - public static void TexImage2DMultisampleCoverage(OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 coverageSamples, Int32 colorSamples, Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations) { throw new NotImplementedException(); } + public static void TexImage2DMultisampleCoverage(OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 coverageSamples, Int32 colorSamples, Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations) { throw new BindingsNotRewrittenException(); } /// [requires: NV_texture_multisample] /// @@ -129396,25 +129396,25 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_texture_multisample", Version = "", EntryPoint = "glTexImage3DMultisampleCoverageNV")] - public static void TexImage3DMultisampleCoverage(OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 coverageSamples, Int32 colorSamples, Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations) { throw new NotImplementedException(); } + public static void TexImage3DMultisampleCoverage(OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 coverageSamples, Int32 colorSamples, Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations) { throw new BindingsNotRewrittenException(); } /// [requires: NV_explicit_multisample] /// /// [AutoGenerated(Category = "NV_explicit_multisample", Version = "", EntryPoint = "glTexRenderbufferNV")] [CLSCompliant(false)] - public static void TexRenderbuffer(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 renderbuffer) { throw new NotImplementedException(); } + public static void TexRenderbuffer(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_explicit_multisample] /// /// [AutoGenerated(Category = "NV_explicit_multisample", Version = "", EntryPoint = "glTexRenderbufferNV")] [CLSCompliant(false)] - public static void TexRenderbuffer(OpenTK.Graphics.OpenGL.TextureTarget target, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void TexRenderbuffer(OpenTK.Graphics.OpenGL.TextureTarget target, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_texture_barrier] [AutoGenerated(Category = "NV_texture_barrier", Version = "", EntryPoint = "glTextureBarrierNV")] - public static void TextureBarrier() { throw new NotImplementedException(); } + public static void TextureBarrier() { throw new BindingsNotRewrittenException(); } /// [requires: NV_texture_multisample] /// @@ -129427,7 +129427,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_texture_multisample", Version = "", EntryPoint = "glTextureImage2DMultisampleCoverageNV")] [CLSCompliant(false)] - public static void TextureImage2DMultisampleCoverage(Int32 texture, OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 coverageSamples, Int32 colorSamples, Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations) { throw new NotImplementedException(); } + public static void TextureImage2DMultisampleCoverage(Int32 texture, OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 coverageSamples, Int32 colorSamples, Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations) { throw new BindingsNotRewrittenException(); } /// [requires: NV_texture_multisample] /// @@ -129440,7 +129440,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_texture_multisample", Version = "", EntryPoint = "glTextureImage2DMultisampleCoverageNV")] [CLSCompliant(false)] - public static void TextureImage2DMultisampleCoverage(UInt32 texture, OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 coverageSamples, Int32 colorSamples, Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations) { throw new NotImplementedException(); } + public static void TextureImage2DMultisampleCoverage(UInt32 texture, OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 coverageSamples, Int32 colorSamples, Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations) { throw new BindingsNotRewrittenException(); } /// [requires: NV_texture_multisample] /// @@ -129452,7 +129452,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_texture_multisample", Version = "", EntryPoint = "glTextureImage2DMultisampleNV")] [CLSCompliant(false)] - public static void TextureImage2DMultisample(Int32 texture, OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 samples, Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations) { throw new NotImplementedException(); } + public static void TextureImage2DMultisample(Int32 texture, OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 samples, Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations) { throw new BindingsNotRewrittenException(); } /// [requires: NV_texture_multisample] /// @@ -129464,7 +129464,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_texture_multisample", Version = "", EntryPoint = "glTextureImage2DMultisampleNV")] [CLSCompliant(false)] - public static void TextureImage2DMultisample(UInt32 texture, OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 samples, Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations) { throw new NotImplementedException(); } + public static void TextureImage2DMultisample(UInt32 texture, OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 samples, Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations) { throw new BindingsNotRewrittenException(); } /// [requires: NV_texture_multisample] /// @@ -129478,7 +129478,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_texture_multisample", Version = "", EntryPoint = "glTextureImage3DMultisampleCoverageNV")] [CLSCompliant(false)] - public static void TextureImage3DMultisampleCoverage(Int32 texture, OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 coverageSamples, Int32 colorSamples, Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations) { throw new NotImplementedException(); } + public static void TextureImage3DMultisampleCoverage(Int32 texture, OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 coverageSamples, Int32 colorSamples, Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations) { throw new BindingsNotRewrittenException(); } /// [requires: NV_texture_multisample] /// @@ -129492,7 +129492,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_texture_multisample", Version = "", EntryPoint = "glTextureImage3DMultisampleCoverageNV")] [CLSCompliant(false)] - public static void TextureImage3DMultisampleCoverage(UInt32 texture, OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 coverageSamples, Int32 colorSamples, Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations) { throw new NotImplementedException(); } + public static void TextureImage3DMultisampleCoverage(UInt32 texture, OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 coverageSamples, Int32 colorSamples, Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations) { throw new BindingsNotRewrittenException(); } /// [requires: NV_texture_multisample] /// @@ -129505,7 +129505,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_texture_multisample", Version = "", EntryPoint = "glTextureImage3DMultisampleNV")] [CLSCompliant(false)] - public static void TextureImage3DMultisample(Int32 texture, OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 samples, Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations) { throw new NotImplementedException(); } + public static void TextureImage3DMultisample(Int32 texture, OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 samples, Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations) { throw new BindingsNotRewrittenException(); } /// [requires: NV_texture_multisample] /// @@ -129518,7 +129518,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_texture_multisample", Version = "", EntryPoint = "glTextureImage3DMultisampleNV")] [CLSCompliant(false)] - public static void TextureImage3DMultisample(UInt32 texture, OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 samples, Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations) { throw new NotImplementedException(); } + public static void TextureImage3DMultisample(UInt32 texture, OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 samples, Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -129527,7 +129527,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glTrackMatrixNV")] [CLSCompliant(false)] - public static void TrackMatrix(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 address, OpenTK.Graphics.OpenGL.NvVertexProgram matrix, OpenTK.Graphics.OpenGL.NvVertexProgram transform) { throw new NotImplementedException(); } + public static void TrackMatrix(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 address, OpenTK.Graphics.OpenGL.NvVertexProgram matrix, OpenTK.Graphics.OpenGL.NvVertexProgram transform) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -129536,7 +129536,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glTrackMatrixNV")] [CLSCompliant(false)] - public static void TrackMatrix(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 address, OpenTK.Graphics.OpenGL.NvVertexProgram matrix, OpenTK.Graphics.OpenGL.NvVertexProgram transform) { throw new NotImplementedException(); } + public static void TrackMatrix(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 address, OpenTK.Graphics.OpenGL.NvVertexProgram matrix, OpenTK.Graphics.OpenGL.NvVertexProgram transform) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// @@ -129544,7 +129544,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackAttribsNV")] [CLSCompliant(false)] - public static void TransformFeedbackAttrib(Int32 count, [CountAttribute(Computed = "count")] Int32[] attribs, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new NotImplementedException(); } + public static void TransformFeedbackAttrib(Int32 count, [CountAttribute(Computed = "count")] Int32[] attribs, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// @@ -129552,7 +129552,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackAttribsNV")] [CLSCompliant(false)] - public static void TransformFeedbackAttrib(Int32 count, [CountAttribute(Computed = "count")] ref Int32 attribs, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new NotImplementedException(); } + public static void TransformFeedbackAttrib(Int32 count, [CountAttribute(Computed = "count")] ref Int32 attribs, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// @@ -129560,7 +129560,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackAttribsNV")] [CLSCompliant(false)] - public static unsafe void TransformFeedbackAttrib(Int32 count, [CountAttribute(Computed = "count")] Int32* attribs, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new NotImplementedException(); } + public static unsafe void TransformFeedbackAttrib(Int32 count, [CountAttribute(Computed = "count")] Int32* attribs, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// @@ -129570,7 +129570,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackStreamAttribsNV")] [CLSCompliant(false)] - public static void TransformFeedbackStreamAttrib(Int32 count, [CountAttribute(Parameter = "count")] Int32[] attribs, Int32 nbuffers, [CountAttribute(Parameter = "nbuffers")] Int32[] bufstreams, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new NotImplementedException(); } + public static void TransformFeedbackStreamAttrib(Int32 count, [CountAttribute(Parameter = "count")] Int32[] attribs, Int32 nbuffers, [CountAttribute(Parameter = "nbuffers")] Int32[] bufstreams, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// @@ -129580,7 +129580,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackStreamAttribsNV")] [CLSCompliant(false)] - public static void TransformFeedbackStreamAttrib(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 attribs, Int32 nbuffers, [CountAttribute(Parameter = "nbuffers")] ref Int32 bufstreams, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new NotImplementedException(); } + public static void TransformFeedbackStreamAttrib(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 attribs, Int32 nbuffers, [CountAttribute(Parameter = "nbuffers")] ref Int32 bufstreams, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// @@ -129590,7 +129590,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackStreamAttribsNV")] [CLSCompliant(false)] - public static unsafe void TransformFeedbackStreamAttrib(Int32 count, [CountAttribute(Parameter = "count")] Int32* attribs, Int32 nbuffers, [CountAttribute(Parameter = "nbuffers")] Int32* bufstreams, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new NotImplementedException(); } + public static unsafe void TransformFeedbackStreamAttrib(Int32 count, [CountAttribute(Parameter = "count")] Int32* attribs, Int32 nbuffers, [CountAttribute(Parameter = "nbuffers")] Int32* bufstreams, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// Specify values to record in transform feedback buffers @@ -129609,7 +129609,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackVaryingsNV")] [CLSCompliant(false)] - public static void TransformFeedbackVaryings(Int32 program, Int32 count, [CountAttribute(Parameter = "count")] Int32[] locations, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new NotImplementedException(); } + public static void TransformFeedbackVaryings(Int32 program, Int32 count, [CountAttribute(Parameter = "count")] Int32[] locations, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// Specify values to record in transform feedback buffers @@ -129628,7 +129628,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackVaryingsNV")] [CLSCompliant(false)] - public static void TransformFeedbackVaryings(Int32 program, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 locations, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new NotImplementedException(); } + public static void TransformFeedbackVaryings(Int32 program, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 locations, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// Specify values to record in transform feedback buffers @@ -129647,7 +129647,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackVaryingsNV")] [CLSCompliant(false)] - public static unsafe void TransformFeedbackVaryings(Int32 program, Int32 count, [CountAttribute(Parameter = "count")] Int32* locations, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new NotImplementedException(); } + public static unsafe void TransformFeedbackVaryings(Int32 program, Int32 count, [CountAttribute(Parameter = "count")] Int32* locations, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// Specify values to record in transform feedback buffers @@ -129666,7 +129666,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackVaryingsNV")] [CLSCompliant(false)] - public static void TransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] Int32[] locations, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new NotImplementedException(); } + public static void TransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] Int32[] locations, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// Specify values to record in transform feedback buffers @@ -129685,7 +129685,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackVaryingsNV")] [CLSCompliant(false)] - public static void TransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 locations, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new NotImplementedException(); } + public static void TransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 locations, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// Specify values to record in transform feedback buffers @@ -129704,7 +129704,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackVaryingsNV")] [CLSCompliant(false)] - public static unsafe void TransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] Int32* locations, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new NotImplementedException(); } + public static unsafe void TransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] Int32* locations, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129713,7 +129713,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129722,7 +129722,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129731,7 +129731,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static unsafe void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129740,7 +129740,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129749,7 +129749,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129758,7 +129758,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static unsafe void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -129770,7 +129770,7 @@ namespace OpenTK.Graphics.OpenGL /// For the vector (glUniform*v) commands, specifies the number of elements that are to be modified. This should be 1 if the targeted uniform variable is not an array, and 1 or more if it is an array. For the matrix (glUniformMatrix*) commands, specifies the number of matrices that are to be modified. This should be 1 if the targeted uniform variable is not an array of matrices, and 1 or more if it is an array of matrices. /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64NV")] - public static void Uniform1(Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -129786,7 +129786,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64vNV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -129802,7 +129802,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64vNV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -129818,7 +129818,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -129831,7 +129831,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64NV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, UInt64 x) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, UInt64 x) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -129847,7 +129847,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64vNV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -129863,7 +129863,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64vNV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -129879,7 +129879,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -129894,7 +129894,7 @@ namespace OpenTK.Graphics.OpenGL /// For the matrix commands, specifies whether to transpose the matrix as the values are loaded into the uniform variable. /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64NV")] - public static void Uniform2(Int32 location, Int64 x, Int64 y) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -129910,7 +129910,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64vNV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -129926,7 +129926,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64vNV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -129942,7 +129942,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -129958,7 +129958,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64NV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, UInt64 x, UInt64 y) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, UInt64 x, UInt64 y) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -129974,7 +129974,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64vNV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -129990,7 +129990,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64vNV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -130006,7 +130006,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -130024,7 +130024,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64NV")] - public static void Uniform3(Int32 location, Int64 x, Int64 y, Int64 z) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -130040,7 +130040,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64vNV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -130056,7 +130056,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64vNV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -130072,7 +130072,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -130091,7 +130091,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform3ui64NV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -130107,7 +130107,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform3ui64vNV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -130123,7 +130123,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform3ui64vNV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -130139,7 +130139,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform3ui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -130160,7 +130160,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64NV")] - public static void Uniform4(Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -130176,7 +130176,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64vNV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -130192,7 +130192,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64vNV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -130208,7 +130208,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -130230,7 +130230,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform4ui64NV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -130246,7 +130246,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform4ui64vNV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -130262,7 +130262,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform4ui64vNV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -130278,21 +130278,21 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform4ui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64NV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64NV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -130300,7 +130300,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -130308,7 +130308,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -130316,7 +130316,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -130324,7 +130324,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -130332,7 +130332,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -130340,7 +130340,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for the current program object @@ -130353,7 +130353,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glUniformui64NV")] [CLSCompliant(false)] - public static void Uniform(Int32 location, Int64 value) { throw new NotImplementedException(); } + public static void Uniform(Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for the current program object @@ -130366,7 +130366,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glUniformui64NV")] [CLSCompliant(false)] - public static void Uniform(Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void Uniform(Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for the current program object @@ -130382,7 +130382,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glUniformui64vNV")] [CLSCompliant(false)] - public static void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for the current program object @@ -130398,7 +130398,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glUniformui64vNV")] [CLSCompliant(false)] - public static void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for the current program object @@ -130414,7 +130414,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glUniformui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for the current program object @@ -130430,7 +130430,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glUniformui64vNV")] [CLSCompliant(false)] - public static void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for the current program object @@ -130446,7 +130446,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glUniformui64vNV")] [CLSCompliant(false)] - public static void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for the current program object @@ -130462,11 +130462,11 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glUniformui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAUFiniNV")] - public static void VDPAUFin() { throw new NotImplementedException(); } + public static void VDPAUFin() { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130476,7 +130476,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAUGetSurfaceivNV")] [CLSCompliant(false)] - public static void VDPAUGetSurface(IntPtr surface, OpenTK.Graphics.OpenGL.NvVdpauInterop pname, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new NotImplementedException(); } + public static void VDPAUGetSurface(IntPtr surface, OpenTK.Graphics.OpenGL.NvVdpauInterop pname, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130486,7 +130486,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAUGetSurfaceivNV")] [CLSCompliant(false)] - public static void VDPAUGetSurface(IntPtr surface, OpenTK.Graphics.OpenGL.NvVdpauInterop pname, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new NotImplementedException(); } + public static void VDPAUGetSurface(IntPtr surface, OpenTK.Graphics.OpenGL.NvVdpauInterop pname, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130496,13 +130496,13 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAUGetSurfaceivNV")] [CLSCompliant(false)] - public static unsafe void VDPAUGetSurface(IntPtr surface, OpenTK.Graphics.OpenGL.NvVdpauInterop pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void VDPAUGetSurface(IntPtr surface, OpenTK.Graphics.OpenGL.NvVdpauInterop pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// /// [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAUInitNV")] - public static void VDPAUInit(IntPtr vdpDevice, IntPtr getProcAddress) { throw new NotImplementedException(); } + public static void VDPAUInit(IntPtr vdpDevice, IntPtr getProcAddress) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130512,7 +130512,7 @@ namespace OpenTK.Graphics.OpenGL public static void VDPAUInit([InAttribute, OutAttribute] T0[] vdpDevice, [InAttribute, OutAttribute] T1[] getProcAddress) where T0 : struct where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130522,7 +130522,7 @@ namespace OpenTK.Graphics.OpenGL public static void VDPAUInit([InAttribute, OutAttribute] T0[,] vdpDevice, [InAttribute, OutAttribute] T1[,] getProcAddress) where T0 : struct where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130532,7 +130532,7 @@ namespace OpenTK.Graphics.OpenGL public static void VDPAUInit([InAttribute, OutAttribute] T0[,,] vdpDevice, [InAttribute, OutAttribute] T1[,,] getProcAddress) where T0 : struct where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130541,33 +130541,33 @@ namespace OpenTK.Graphics.OpenGL public static void VDPAUInit([InAttribute, OutAttribute] ref T0 vdpDevice, [InAttribute, OutAttribute] ref T1 getProcAddress) where T0 : struct where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAUIsSurfaceNV")] - public static bool VDPAUIsSurface(IntPtr surface) { throw new NotImplementedException(); } + public static bool VDPAUIsSurface(IntPtr surface) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// /// [length: numSurfaces] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAUMapSurfacesNV")] [CLSCompliant(false)] - public static void VDPAUMapSurfaces(Int32 numSurfaces, [CountAttribute(Parameter = "numSurfaces")] IntPtr[] surfaces) { throw new NotImplementedException(); } + public static void VDPAUMapSurfaces(Int32 numSurfaces, [CountAttribute(Parameter = "numSurfaces")] IntPtr[] surfaces) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// /// [length: numSurfaces] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAUMapSurfacesNV")] [CLSCompliant(false)] - public static void VDPAUMapSurfaces(Int32 numSurfaces, [CountAttribute(Parameter = "numSurfaces")] ref IntPtr surfaces) { throw new NotImplementedException(); } + public static void VDPAUMapSurfaces(Int32 numSurfaces, [CountAttribute(Parameter = "numSurfaces")] ref IntPtr surfaces) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// /// [length: numSurfaces] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAUMapSurfacesNV")] [CLSCompliant(false)] - public static unsafe void VDPAUMapSurfaces(Int32 numSurfaces, [CountAttribute(Parameter = "numSurfaces")] IntPtr* surfaces) { throw new NotImplementedException(); } + public static unsafe void VDPAUMapSurfaces(Int32 numSurfaces, [CountAttribute(Parameter = "numSurfaces")] IntPtr* surfaces) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130576,7 +130576,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numTextureNames] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] [CLSCompliant(false)] - public static IntPtr VDPAURegisterOutputSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32[] textureNames) { throw new NotImplementedException(); } + public static IntPtr VDPAURegisterOutputSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32[] textureNames) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130585,7 +130585,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numTextureNames] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] [CLSCompliant(false)] - public static IntPtr VDPAURegisterOutputSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref Int32 textureNames) { throw new NotImplementedException(); } + public static IntPtr VDPAURegisterOutputSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref Int32 textureNames) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130594,7 +130594,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numTextureNames] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] [CLSCompliant(false)] - public static unsafe IntPtr VDPAURegisterOutputSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32* textureNames) { throw new NotImplementedException(); } + public static unsafe IntPtr VDPAURegisterOutputSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32* textureNames) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130603,7 +130603,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numTextureNames] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] [CLSCompliant(false)] - public static IntPtr VDPAURegisterOutputSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32[] textureNames) { throw new NotImplementedException(); } + public static IntPtr VDPAURegisterOutputSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32[] textureNames) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130612,7 +130612,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numTextureNames] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] [CLSCompliant(false)] - public static IntPtr VDPAURegisterOutputSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref UInt32 textureNames) { throw new NotImplementedException(); } + public static IntPtr VDPAURegisterOutputSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref UInt32 textureNames) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130621,7 +130621,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numTextureNames] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] [CLSCompliant(false)] - public static unsafe IntPtr VDPAURegisterOutputSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32* textureNames) { throw new NotImplementedException(); } + public static unsafe IntPtr VDPAURegisterOutputSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32* textureNames) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130632,7 +130632,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32[] textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130643,7 +130643,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref Int32 textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130654,7 +130654,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32* textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130665,7 +130665,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32[] textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130676,7 +130676,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref UInt32 textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130687,7 +130687,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32* textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130698,7 +130698,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32[] textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130709,7 +130709,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref Int32 textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130720,7 +130720,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32* textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130731,7 +130731,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32[] textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130742,7 +130742,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref UInt32 textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130753,7 +130753,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32* textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130764,7 +130764,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[,,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32[] textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130775,7 +130775,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[,,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref Int32 textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130786,7 +130786,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[,,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32* textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130797,7 +130797,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[,,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32[] textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130808,7 +130808,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[,,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref UInt32 textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130819,7 +130819,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[,,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32* textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130830,7 +130830,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] ref T0 vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32[] textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130841,7 +130841,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] ref T0 vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref Int32 textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130852,7 +130852,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] ref T0 vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32* textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130863,7 +130863,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] ref T0 vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32[] textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130874,7 +130874,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] ref T0 vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref UInt32 textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130885,7 +130885,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] ref T0 vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32* textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130894,7 +130894,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numTextureNames] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] [CLSCompliant(false)] - public static IntPtr VDPAURegisterVideoSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32[] textureNames) { throw new NotImplementedException(); } + public static IntPtr VDPAURegisterVideoSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32[] textureNames) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130903,7 +130903,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numTextureNames] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] [CLSCompliant(false)] - public static IntPtr VDPAURegisterVideoSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref Int32 textureNames) { throw new NotImplementedException(); } + public static IntPtr VDPAURegisterVideoSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref Int32 textureNames) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130912,7 +130912,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numTextureNames] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] [CLSCompliant(false)] - public static unsafe IntPtr VDPAURegisterVideoSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32* textureNames) { throw new NotImplementedException(); } + public static unsafe IntPtr VDPAURegisterVideoSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32* textureNames) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130921,7 +130921,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numTextureNames] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] [CLSCompliant(false)] - public static IntPtr VDPAURegisterVideoSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32[] textureNames) { throw new NotImplementedException(); } + public static IntPtr VDPAURegisterVideoSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32[] textureNames) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130930,7 +130930,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numTextureNames] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] [CLSCompliant(false)] - public static IntPtr VDPAURegisterVideoSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref UInt32 textureNames) { throw new NotImplementedException(); } + public static IntPtr VDPAURegisterVideoSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref UInt32 textureNames) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130939,7 +130939,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numTextureNames] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] [CLSCompliant(false)] - public static unsafe IntPtr VDPAURegisterVideoSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32* textureNames) { throw new NotImplementedException(); } + public static unsafe IntPtr VDPAURegisterVideoSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32* textureNames) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130950,7 +130950,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32[] textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130961,7 +130961,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref Int32 textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130972,7 +130972,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32* textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130983,7 +130983,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32[] textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130994,7 +130994,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref UInt32 textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -131005,7 +131005,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32* textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -131016,7 +131016,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32[] textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -131027,7 +131027,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref Int32 textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -131038,7 +131038,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32* textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -131049,7 +131049,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32[] textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -131060,7 +131060,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref UInt32 textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -131071,7 +131071,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32* textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -131082,7 +131082,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[,,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32[] textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -131093,7 +131093,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[,,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref Int32 textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -131104,7 +131104,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[,,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32* textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -131115,7 +131115,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[,,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32[] textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -131126,7 +131126,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[,,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref UInt32 textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -131137,7 +131137,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[,,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32* textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -131148,7 +131148,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] ref T0 vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32[] textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -131159,7 +131159,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] ref T0 vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref Int32 textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -131170,7 +131170,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] ref T0 vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32* textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -131181,7 +131181,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] ref T0 vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32[] textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -131192,7 +131192,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] ref T0 vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref UInt32 textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -131203,88 +131203,88 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] ref T0 vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32* textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// /// [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAUSurfaceAccessNV")] - public static void VDPAUSurfaceAccess(IntPtr surface, OpenTK.Graphics.OpenGL.NvVdpauInterop access) { throw new NotImplementedException(); } + public static void VDPAUSurfaceAccess(IntPtr surface, OpenTK.Graphics.OpenGL.NvVdpauInterop access) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// /// [length: numSurface] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAUUnmapSurfacesNV")] [CLSCompliant(false)] - public static void VDPAUUnmapSurfaces(Int32 numSurface, [CountAttribute(Parameter = "numSurface")] IntPtr[] surfaces) { throw new NotImplementedException(); } + public static void VDPAUUnmapSurfaces(Int32 numSurface, [CountAttribute(Parameter = "numSurface")] IntPtr[] surfaces) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// /// [length: numSurface] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAUUnmapSurfacesNV")] [CLSCompliant(false)] - public static void VDPAUUnmapSurfaces(Int32 numSurface, [CountAttribute(Parameter = "numSurface")] ref IntPtr surfaces) { throw new NotImplementedException(); } + public static void VDPAUUnmapSurfaces(Int32 numSurface, [CountAttribute(Parameter = "numSurface")] ref IntPtr surfaces) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// /// [length: numSurface] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAUUnmapSurfacesNV")] [CLSCompliant(false)] - public static unsafe void VDPAUUnmapSurfaces(Int32 numSurface, [CountAttribute(Parameter = "numSurface")] IntPtr* surfaces) { throw new NotImplementedException(); } + public static unsafe void VDPAUUnmapSurfaces(Int32 numSurface, [CountAttribute(Parameter = "numSurface")] IntPtr* surfaces) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAUUnregisterSurfaceNV")] - public static void VDPAUUnregisterSurface(IntPtr surface) { throw new NotImplementedException(); } + public static void VDPAUUnregisterSurface(IntPtr surface) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertex2hNV")] - public static void Vertex2h(Half x, Half y) { throw new NotImplementedException(); } + public static void Vertex2h(Half x, Half y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 2] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertex2hvNV")] [CLSCompliant(false)] - public static void Vertex2h([CountAttribute(Count = 2)] Half[] v) { throw new NotImplementedException(); } + public static void Vertex2h([CountAttribute(Count = 2)] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 2] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertex2hvNV")] [CLSCompliant(false)] - public static void Vertex2h([CountAttribute(Count = 2)] ref Half v) { throw new NotImplementedException(); } + public static void Vertex2h([CountAttribute(Count = 2)] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 2] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertex2hvNV")] [CLSCompliant(false)] - public static unsafe void Vertex2h([CountAttribute(Count = 2)] Half* v) { throw new NotImplementedException(); } + public static unsafe void Vertex2h([CountAttribute(Count = 2)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertex3hNV")] - public static void Vertex3h(Half x, Half y, Half z) { throw new NotImplementedException(); } + public static void Vertex3h(Half x, Half y, Half z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertex3hvNV")] [CLSCompliant(false)] - public static void Vertex3h([CountAttribute(Count = 3)] Half[] v) { throw new NotImplementedException(); } + public static void Vertex3h([CountAttribute(Count = 3)] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertex3hvNV")] [CLSCompliant(false)] - public static void Vertex3h([CountAttribute(Count = 3)] ref Half v) { throw new NotImplementedException(); } + public static void Vertex3h([CountAttribute(Count = 3)] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertex3hvNV")] [CLSCompliant(false)] - public static unsafe void Vertex3h([CountAttribute(Count = 3)] Half* v) { throw new NotImplementedException(); } + public static unsafe void Vertex3h([CountAttribute(Count = 3)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -131292,31 +131292,31 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertex4hNV")] - public static void Vertex4h(Half x, Half y, Half z, Half w) { throw new NotImplementedException(); } + public static void Vertex4h(Half x, Half y, Half z, Half w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 4] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertex4hvNV")] [CLSCompliant(false)] - public static void Vertex4h([CountAttribute(Count = 4)] Half[] v) { throw new NotImplementedException(); } + public static void Vertex4h([CountAttribute(Count = 4)] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 4] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertex4hvNV")] [CLSCompliant(false)] - public static void Vertex4h([CountAttribute(Count = 4)] ref Half v) { throw new NotImplementedException(); } + public static void Vertex4h([CountAttribute(Count = 4)] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 4] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertex4hvNV")] [CLSCompliant(false)] - public static unsafe void Vertex4h([CountAttribute(Count = 4)] Half* v) { throw new NotImplementedException(); } + public static unsafe void Vertex4h([CountAttribute(Count = 4)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_array_range] /// /// [length: COMPSIZE(length)] [AutoGenerated(Category = "NV_vertex_array_range", Version = "", EntryPoint = "glVertexArrayRangeNV")] - public static void VertexArrayRange(Int32 length, [CountAttribute(Computed = "length")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexArrayRange(Int32 length, [CountAttribute(Computed = "length")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_array_range] /// @@ -131325,7 +131325,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexArrayRange(Int32 length, [InAttribute, OutAttribute, CountAttribute(Computed = "length")] T1[] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_array_range] /// @@ -131334,7 +131334,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexArrayRange(Int32 length, [InAttribute, OutAttribute, CountAttribute(Computed = "length")] T1[,] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_array_range] /// @@ -131343,7 +131343,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexArrayRange(Int32 length, [InAttribute, OutAttribute, CountAttribute(Computed = "length")] T1[,,] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_array_range] /// @@ -131351,7 +131351,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "NV_vertex_array_range", Version = "", EntryPoint = "glVertexArrayRangeNV")] public static void VertexArrayRange(Int32 length, [InAttribute, OutAttribute, CountAttribute(Computed = "length")] ref T1 pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131364,7 +131364,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib1dNV")] [CLSCompliant(false)] - public static void VertexAttrib1(Int32 index, Double x) { throw new NotImplementedException(); } + public static void VertexAttrib1(Int32 index, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131377,7 +131377,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib1dNV")] [CLSCompliant(false)] - public static void VertexAttrib1(UInt32 index, Double x) { throw new NotImplementedException(); } + public static void VertexAttrib1(UInt32 index, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131390,7 +131390,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib1dvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131403,7 +131403,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib1dvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131416,7 +131416,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib1fNV")] [CLSCompliant(false)] - public static void VertexAttrib1(Int32 index, Single x) { throw new NotImplementedException(); } + public static void VertexAttrib1(Int32 index, Single x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131429,7 +131429,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib1fNV")] [CLSCompliant(false)] - public static void VertexAttrib1(UInt32 index, Single x) { throw new NotImplementedException(); } + public static void VertexAttrib1(UInt32 index, Single x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131442,7 +131442,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib1fvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131455,35 +131455,35 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib1fvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib1hNV")] [CLSCompliant(false)] - public static void VertexAttrib1h(Int32 index, Half x) { throw new NotImplementedException(); } + public static void VertexAttrib1h(Int32 index, Half x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib1hNV")] [CLSCompliant(false)] - public static void VertexAttrib1h(UInt32 index, Half x) { throw new NotImplementedException(); } + public static void VertexAttrib1h(UInt32 index, Half x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 1] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib1hvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1h(Int32 index, [CountAttribute(Count = 1)] Half* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1h(Int32 index, [CountAttribute(Count = 1)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 1] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib1hvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1h(UInt32 index, [CountAttribute(Count = 1)] Half* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1h(UInt32 index, [CountAttribute(Count = 1)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131496,7 +131496,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib1sNV")] [CLSCompliant(false)] - public static void VertexAttrib1(Int32 index, Int16 x) { throw new NotImplementedException(); } + public static void VertexAttrib1(Int32 index, Int16 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131509,7 +131509,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib1sNV")] [CLSCompliant(false)] - public static void VertexAttrib1(UInt32 index, Int16 x) { throw new NotImplementedException(); } + public static void VertexAttrib1(UInt32 index, Int16 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131522,7 +131522,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib1svNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131535,7 +131535,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib1svNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131551,7 +131551,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2dNV")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, Double x, Double y) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131567,7 +131567,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2dNV")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, Double x, Double y) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131580,7 +131580,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2dvNV")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131593,7 +131593,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2dvNV")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131606,7 +131606,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2dvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131619,7 +131619,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2dvNV")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131632,7 +131632,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2dvNV")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131645,7 +131645,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2dvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131661,7 +131661,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2fNV")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, Single x, Single y) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131677,7 +131677,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2fNV")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, Single x, Single y) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131690,7 +131690,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2fvNV")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131703,7 +131703,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2fvNV")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131716,7 +131716,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2fvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131729,7 +131729,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2fvNV")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131742,7 +131742,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2fvNV")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131755,7 +131755,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2fvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -131763,7 +131763,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib2hNV")] [CLSCompliant(false)] - public static void VertexAttrib2h(Int32 index, Half x, Half y) { throw new NotImplementedException(); } + public static void VertexAttrib2h(Int32 index, Half x, Half y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -131771,49 +131771,49 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib2hNV")] [CLSCompliant(false)] - public static void VertexAttrib2h(UInt32 index, Half x, Half y) { throw new NotImplementedException(); } + public static void VertexAttrib2h(UInt32 index, Half x, Half y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 2] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib2hvNV")] [CLSCompliant(false)] - public static void VertexAttrib2h(Int32 index, [CountAttribute(Count = 2)] Half[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2h(Int32 index, [CountAttribute(Count = 2)] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 2] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib2hvNV")] [CLSCompliant(false)] - public static void VertexAttrib2h(Int32 index, [CountAttribute(Count = 2)] ref Half v) { throw new NotImplementedException(); } + public static void VertexAttrib2h(Int32 index, [CountAttribute(Count = 2)] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 2] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib2hvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2h(Int32 index, [CountAttribute(Count = 2)] Half* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2h(Int32 index, [CountAttribute(Count = 2)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 2] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib2hvNV")] [CLSCompliant(false)] - public static void VertexAttrib2h(UInt32 index, [CountAttribute(Count = 2)] Half[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2h(UInt32 index, [CountAttribute(Count = 2)] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 2] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib2hvNV")] [CLSCompliant(false)] - public static void VertexAttrib2h(UInt32 index, [CountAttribute(Count = 2)] ref Half v) { throw new NotImplementedException(); } + public static void VertexAttrib2h(UInt32 index, [CountAttribute(Count = 2)] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 2] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib2hvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2h(UInt32 index, [CountAttribute(Count = 2)] Half* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2h(UInt32 index, [CountAttribute(Count = 2)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131829,7 +131829,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2sNV")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, Int16 x, Int16 y) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, Int16 x, Int16 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131845,7 +131845,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2sNV")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, Int16 x, Int16 y) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, Int16 x, Int16 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131858,7 +131858,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2svNV")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131871,7 +131871,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2svNV")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131884,7 +131884,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2svNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131897,7 +131897,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2svNV")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131910,7 +131910,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2svNV")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131923,7 +131923,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2svNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131942,7 +131942,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3dNV")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131961,7 +131961,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3dNV")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131974,7 +131974,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3dvNV")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131987,7 +131987,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3dvNV")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132000,7 +132000,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3dvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132013,7 +132013,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3dvNV")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132026,7 +132026,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3dvNV")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132039,7 +132039,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3dvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132058,7 +132058,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3fNV")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132077,7 +132077,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3fNV")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132090,7 +132090,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3fvNV")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132103,7 +132103,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3fvNV")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132116,7 +132116,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3fvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132129,7 +132129,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3fvNV")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132142,7 +132142,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3fvNV")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132155,7 +132155,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3fvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -132164,7 +132164,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib3hNV")] [CLSCompliant(false)] - public static void VertexAttrib3h(Int32 index, Half x, Half y, Half z) { throw new NotImplementedException(); } + public static void VertexAttrib3h(Int32 index, Half x, Half y, Half z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -132173,49 +132173,49 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib3hNV")] [CLSCompliant(false)] - public static void VertexAttrib3h(UInt32 index, Half x, Half y, Half z) { throw new NotImplementedException(); } + public static void VertexAttrib3h(UInt32 index, Half x, Half y, Half z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib3hvNV")] [CLSCompliant(false)] - public static void VertexAttrib3h(Int32 index, [CountAttribute(Count = 3)] Half[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3h(Int32 index, [CountAttribute(Count = 3)] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib3hvNV")] [CLSCompliant(false)] - public static void VertexAttrib3h(Int32 index, [CountAttribute(Count = 3)] ref Half v) { throw new NotImplementedException(); } + public static void VertexAttrib3h(Int32 index, [CountAttribute(Count = 3)] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib3hvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3h(Int32 index, [CountAttribute(Count = 3)] Half* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3h(Int32 index, [CountAttribute(Count = 3)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib3hvNV")] [CLSCompliant(false)] - public static void VertexAttrib3h(UInt32 index, [CountAttribute(Count = 3)] Half[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3h(UInt32 index, [CountAttribute(Count = 3)] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib3hvNV")] [CLSCompliant(false)] - public static void VertexAttrib3h(UInt32 index, [CountAttribute(Count = 3)] ref Half v) { throw new NotImplementedException(); } + public static void VertexAttrib3h(UInt32 index, [CountAttribute(Count = 3)] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib3hvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3h(UInt32 index, [CountAttribute(Count = 3)] Half* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3h(UInt32 index, [CountAttribute(Count = 3)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132234,7 +132234,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3sNV")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, Int16 x, Int16 y, Int16 z) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, Int16 x, Int16 y, Int16 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132253,7 +132253,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3sNV")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, Int16 x, Int16 y, Int16 z) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, Int16 x, Int16 y, Int16 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132266,7 +132266,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3svNV")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132279,7 +132279,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3svNV")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132292,7 +132292,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3svNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132305,7 +132305,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3svNV")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132318,7 +132318,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3svNV")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132331,7 +132331,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3svNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132353,7 +132353,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4dNV")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132375,7 +132375,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4dNV")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132388,7 +132388,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4dvNV")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132401,7 +132401,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4dvNV")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132414,7 +132414,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4dvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132427,7 +132427,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4dvNV")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132440,7 +132440,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4dvNV")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132453,7 +132453,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4dvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132475,7 +132475,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4fNV")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132497,7 +132497,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4fNV")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132510,7 +132510,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4fvNV")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132523,7 +132523,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4fvNV")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132536,7 +132536,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4fvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132549,7 +132549,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4fvNV")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132562,7 +132562,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4fvNV")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132575,7 +132575,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4fvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -132585,7 +132585,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib4hNV")] [CLSCompliant(false)] - public static void VertexAttrib4h(Int32 index, Half x, Half y, Half z, Half w) { throw new NotImplementedException(); } + public static void VertexAttrib4h(Int32 index, Half x, Half y, Half z, Half w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -132595,49 +132595,49 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib4hNV")] [CLSCompliant(false)] - public static void VertexAttrib4h(UInt32 index, Half x, Half y, Half z, Half w) { throw new NotImplementedException(); } + public static void VertexAttrib4h(UInt32 index, Half x, Half y, Half z, Half w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 4] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib4hvNV")] [CLSCompliant(false)] - public static void VertexAttrib4h(Int32 index, [CountAttribute(Count = 4)] Half[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4h(Int32 index, [CountAttribute(Count = 4)] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 4] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib4hvNV")] [CLSCompliant(false)] - public static void VertexAttrib4h(Int32 index, [CountAttribute(Count = 4)] ref Half v) { throw new NotImplementedException(); } + public static void VertexAttrib4h(Int32 index, [CountAttribute(Count = 4)] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 4] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib4hvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4h(Int32 index, [CountAttribute(Count = 4)] Half* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4h(Int32 index, [CountAttribute(Count = 4)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 4] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib4hvNV")] [CLSCompliant(false)] - public static void VertexAttrib4h(UInt32 index, [CountAttribute(Count = 4)] Half[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4h(UInt32 index, [CountAttribute(Count = 4)] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 4] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib4hvNV")] [CLSCompliant(false)] - public static void VertexAttrib4h(UInt32 index, [CountAttribute(Count = 4)] ref Half v) { throw new NotImplementedException(); } + public static void VertexAttrib4h(UInt32 index, [CountAttribute(Count = 4)] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 4] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib4hvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4h(UInt32 index, [CountAttribute(Count = 4)] Half* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4h(UInt32 index, [CountAttribute(Count = 4)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132659,7 +132659,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4sNV")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, Int16 x, Int16 y, Int16 z, Int16 w) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, Int16 x, Int16 y, Int16 z, Int16 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132681,7 +132681,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4sNV")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, Int16 x, Int16 y, Int16 z, Int16 w) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, Int16 x, Int16 y, Int16 z, Int16 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132694,7 +132694,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4svNV")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132707,7 +132707,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4svNV")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132720,7 +132720,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4svNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132733,7 +132733,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4svNV")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132746,7 +132746,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4svNV")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132759,7 +132759,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4svNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132781,7 +132781,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4ubNV")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, Byte x, Byte y, Byte z, Byte w) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, Byte x, Byte y, Byte z, Byte w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132803,7 +132803,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4ubNV")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, Byte x, Byte y, Byte z, Byte w) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, Byte x, Byte y, Byte z, Byte w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132816,7 +132816,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4ubvNV")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132829,7 +132829,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4ubvNV")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132842,7 +132842,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4ubvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132855,7 +132855,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4ubvNV")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132868,7 +132868,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4ubvNV")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132881,7 +132881,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4ubvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// Specify the organization of vertex arrays @@ -132903,7 +132903,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glVertexAttribFormatNV")] [CLSCompliant(false)] - public static void VertexAttribFormat(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, bool normalized, Int32 stride) { throw new NotImplementedException(); } + public static void VertexAttribFormat(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, bool normalized, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// Specify the organization of vertex arrays @@ -132925,7 +132925,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glVertexAttribFormatNV")] [CLSCompliant(false)] - public static void VertexAttribFormat(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, bool normalized, Int32 stride) { throw new NotImplementedException(); } + public static void VertexAttribFormat(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, bool normalized, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -132934,7 +132934,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glVertexAttribIFormatNV")] [CLSCompliant(false)] - public static void VertexAttribIFormat(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, Int32 stride) { throw new NotImplementedException(); } + public static void VertexAttribIFormat(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -132943,49 +132943,49 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glVertexAttribIFormatNV")] [CLSCompliant(false)] - public static void VertexAttribIFormat(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, Int32 stride) { throw new NotImplementedException(); } + public static void VertexAttribIFormat(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL1i64NV")] [CLSCompliant(false)] - public static void VertexAttribL1(Int32 index, Int64 x) { throw new NotImplementedException(); } + public static void VertexAttribL1(Int32 index, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL1i64NV")] [CLSCompliant(false)] - public static void VertexAttribL1(UInt32 index, Int64 x) { throw new NotImplementedException(); } + public static void VertexAttribL1(UInt32 index, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 1] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL1i64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL1(Int32 index, [CountAttribute(Count = 1)] Int64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL1(Int32 index, [CountAttribute(Count = 1)] Int64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 1] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL1i64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL1(UInt32 index, [CountAttribute(Count = 1)] Int64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL1(UInt32 index, [CountAttribute(Count = 1)] Int64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL1ui64NV")] [CLSCompliant(false)] - public static void VertexAttribL1(UInt32 index, UInt64 x) { throw new NotImplementedException(); } + public static void VertexAttribL1(UInt32 index, UInt64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 1] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL1ui64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL1(UInt32 index, [CountAttribute(Count = 1)] UInt64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL1(UInt32 index, [CountAttribute(Count = 1)] UInt64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -132993,7 +132993,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2i64NV")] [CLSCompliant(false)] - public static void VertexAttribL2(Int32 index, Int64 x, Int64 y) { throw new NotImplementedException(); } + public static void VertexAttribL2(Int32 index, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -133001,49 +133001,49 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2i64NV")] [CLSCompliant(false)] - public static void VertexAttribL2(UInt32 index, Int64 x, Int64 y) { throw new NotImplementedException(); } + public static void VertexAttribL2(UInt32 index, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] Int64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] Int64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] ref Int64 v) { throw new NotImplementedException(); } + public static void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] ref Int64 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2i64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] Int64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] Int64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] Int64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] Int64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] ref Int64 v) { throw new NotImplementedException(); } + public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] ref Int64 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2i64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] Int64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] Int64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -133051,28 +133051,28 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2ui64NV")] [CLSCompliant(false)] - public static void VertexAttribL2(UInt32 index, UInt64 x, UInt64 y) { throw new NotImplementedException(); } + public static void VertexAttribL2(UInt32 index, UInt64 x, UInt64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2ui64vNV")] [CLSCompliant(false)] - public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] UInt64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] UInt64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2ui64vNV")] [CLSCompliant(false)] - public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] ref UInt64 v) { throw new NotImplementedException(); } + public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] ref UInt64 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2ui64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] UInt64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] UInt64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -133081,7 +133081,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3i64NV")] [CLSCompliant(false)] - public static void VertexAttribL3(Int32 index, Int64 x, Int64 y, Int64 z) { throw new NotImplementedException(); } + public static void VertexAttribL3(Int32 index, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -133090,49 +133090,49 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3i64NV")] [CLSCompliant(false)] - public static void VertexAttribL3(UInt32 index, Int64 x, Int64 y, Int64 z) { throw new NotImplementedException(); } + public static void VertexAttribL3(UInt32 index, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] Int64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] Int64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] ref Int64 v) { throw new NotImplementedException(); } + public static void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] ref Int64 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3i64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] Int64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] Int64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] Int64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] Int64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] ref Int64 v) { throw new NotImplementedException(); } + public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] ref Int64 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3i64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] Int64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] Int64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -133141,28 +133141,28 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3ui64NV")] [CLSCompliant(false)] - public static void VertexAttribL3(UInt32 index, UInt64 x, UInt64 y, UInt64 z) { throw new NotImplementedException(); } + public static void VertexAttribL3(UInt32 index, UInt64 x, UInt64 y, UInt64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3ui64vNV")] [CLSCompliant(false)] - public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] UInt64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] UInt64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3ui64vNV")] [CLSCompliant(false)] - public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] ref UInt64 v) { throw new NotImplementedException(); } + public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] ref UInt64 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3ui64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] UInt64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] UInt64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -133172,7 +133172,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4i64NV")] [CLSCompliant(false)] - public static void VertexAttribL4(Int32 index, Int64 x, Int64 y, Int64 z, Int64 w) { throw new NotImplementedException(); } + public static void VertexAttribL4(Int32 index, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -133182,49 +133182,49 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4i64NV")] [CLSCompliant(false)] - public static void VertexAttribL4(UInt32 index, Int64 x, Int64 y, Int64 z, Int64 w) { throw new NotImplementedException(); } + public static void VertexAttribL4(UInt32 index, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] Int64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] Int64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] ref Int64 v) { throw new NotImplementedException(); } + public static void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] ref Int64 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4i64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] Int64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] Int64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] Int64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] Int64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] ref Int64 v) { throw new NotImplementedException(); } + public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] ref Int64 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4i64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] Int64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] Int64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -133234,28 +133234,28 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4ui64NV")] [CLSCompliant(false)] - public static void VertexAttribL4(UInt32 index, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new NotImplementedException(); } + public static void VertexAttribL4(UInt32 index, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4ui64vNV")] [CLSCompliant(false)] - public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] UInt64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] UInt64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4ui64vNV")] [CLSCompliant(false)] - public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] ref UInt64 v) { throw new NotImplementedException(); } + public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] ref UInt64 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4ui64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] UInt64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] UInt64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -133264,7 +133264,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribLFormatNV")] [CLSCompliant(false)] - public static void VertexAttribLFormat(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit type, Int32 stride) { throw new NotImplementedException(); } + public static void VertexAttribLFormat(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -133273,7 +133273,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribLFormatNV")] [CLSCompliant(false)] - public static void VertexAttribLFormat(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit type, Int32 stride) { throw new NotImplementedException(); } + public static void VertexAttribLFormat(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Define an array of generic vertex attribute data @@ -133295,7 +133295,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribPointerNV")] [CLSCompliant(false)] - public static void VertexAttribPointer(Int32 index, Int32 fsize, OpenTK.Graphics.OpenGL.VertexAttribParameterArb type, Int32 stride, [CountAttribute(Computed = "fsize,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribPointer(Int32 index, Int32 fsize, OpenTK.Graphics.OpenGL.VertexAttribParameterArb type, Int32 stride, [CountAttribute(Computed = "fsize,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Define an array of generic vertex attribute data @@ -133319,7 +133319,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 fsize, OpenTK.Graphics.OpenGL.VertexAttribParameterArb type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "fsize,type,stride")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Define an array of generic vertex attribute data @@ -133343,7 +133343,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 fsize, OpenTK.Graphics.OpenGL.VertexAttribParameterArb type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "fsize,type,stride")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Define an array of generic vertex attribute data @@ -133367,7 +133367,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 fsize, OpenTK.Graphics.OpenGL.VertexAttribParameterArb type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "fsize,type,stride")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Define an array of generic vertex attribute data @@ -133391,7 +133391,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 fsize, OpenTK.Graphics.OpenGL.VertexAttribParameterArb type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "fsize,type,stride")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Define an array of generic vertex attribute data @@ -133413,7 +133413,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribPointerNV")] [CLSCompliant(false)] - public static void VertexAttribPointer(UInt32 index, Int32 fsize, OpenTK.Graphics.OpenGL.VertexAttribParameterArb type, Int32 stride, [CountAttribute(Computed = "fsize,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribPointer(UInt32 index, Int32 fsize, OpenTK.Graphics.OpenGL.VertexAttribParameterArb type, Int32 stride, [CountAttribute(Computed = "fsize,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Define an array of generic vertex attribute data @@ -133437,7 +133437,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 fsize, OpenTK.Graphics.OpenGL.VertexAttribParameterArb type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "fsize,type,stride")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Define an array of generic vertex attribute data @@ -133461,7 +133461,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 fsize, OpenTK.Graphics.OpenGL.VertexAttribParameterArb type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "fsize,type,stride")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Define an array of generic vertex attribute data @@ -133485,7 +133485,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 fsize, OpenTK.Graphics.OpenGL.VertexAttribParameterArb type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "fsize,type,stride")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Define an array of generic vertex attribute data @@ -133509,7 +133509,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 fsize, OpenTK.Graphics.OpenGL.VertexAttribParameterArb type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "fsize,type,stride")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133517,7 +133517,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1dvNV")] [CLSCompliant(false)] - public static void VertexAttribs1(Int32 index, Int32 count, [CountAttribute(Parameter = "count")] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribs1(Int32 index, Int32 count, [CountAttribute(Parameter = "count")] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133525,7 +133525,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1dvNV")] [CLSCompliant(false)] - public static void VertexAttribs1(Int32 index, Int32 count, [CountAttribute(Parameter = "count")] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribs1(Int32 index, Int32 count, [CountAttribute(Parameter = "count")] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133533,7 +133533,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1dvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs1(Int32 index, Int32 count, [CountAttribute(Parameter = "count")] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs1(Int32 index, Int32 count, [CountAttribute(Parameter = "count")] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133541,7 +133541,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1dvNV")] [CLSCompliant(false)] - public static void VertexAttribs1(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribs1(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133549,7 +133549,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1dvNV")] [CLSCompliant(false)] - public static void VertexAttribs1(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribs1(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133557,7 +133557,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1dvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs1(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs1(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133565,7 +133565,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1fvNV")] [CLSCompliant(false)] - public static void VertexAttribs1(Int32 index, Int32 count, [CountAttribute(Parameter = "count")] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttribs1(Int32 index, Int32 count, [CountAttribute(Parameter = "count")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133573,7 +133573,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1fvNV")] [CLSCompliant(false)] - public static void VertexAttribs1(Int32 index, Int32 count, [CountAttribute(Parameter = "count")] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttribs1(Int32 index, Int32 count, [CountAttribute(Parameter = "count")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133581,7 +133581,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1fvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs1(Int32 index, Int32 count, [CountAttribute(Parameter = "count")] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs1(Int32 index, Int32 count, [CountAttribute(Parameter = "count")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133589,7 +133589,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1fvNV")] [CLSCompliant(false)] - public static void VertexAttribs1(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttribs1(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133597,7 +133597,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1fvNV")] [CLSCompliant(false)] - public static void VertexAttribs1(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttribs1(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133605,7 +133605,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1fvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs1(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs1(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -133613,7 +133613,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs1hvNV")] [CLSCompliant(false)] - public static void VertexAttribs1h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] Half[] v) { throw new NotImplementedException(); } + public static void VertexAttribs1h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -133621,7 +133621,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs1hvNV")] [CLSCompliant(false)] - public static void VertexAttribs1h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] ref Half v) { throw new NotImplementedException(); } + public static void VertexAttribs1h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -133629,7 +133629,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs1hvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs1h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] Half* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs1h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -133637,7 +133637,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs1hvNV")] [CLSCompliant(false)] - public static void VertexAttribs1h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] Half[] v) { throw new NotImplementedException(); } + public static void VertexAttribs1h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -133645,7 +133645,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs1hvNV")] [CLSCompliant(false)] - public static void VertexAttribs1h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] ref Half v) { throw new NotImplementedException(); } + public static void VertexAttribs1h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -133653,7 +133653,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs1hvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs1h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] Half* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs1h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133661,7 +133661,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1svNV")] [CLSCompliant(false)] - public static void VertexAttribs1(Int32 index, Int32 count, [CountAttribute(Parameter = "count")] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttribs1(Int32 index, Int32 count, [CountAttribute(Parameter = "count")] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133669,7 +133669,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1svNV")] [CLSCompliant(false)] - public static void VertexAttribs1(Int32 index, Int32 count, [CountAttribute(Parameter = "count")] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttribs1(Int32 index, Int32 count, [CountAttribute(Parameter = "count")] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133677,7 +133677,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1svNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs1(Int32 index, Int32 count, [CountAttribute(Parameter = "count")] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs1(Int32 index, Int32 count, [CountAttribute(Parameter = "count")] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133685,7 +133685,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1svNV")] [CLSCompliant(false)] - public static void VertexAttribs1(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttribs1(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133693,7 +133693,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1svNV")] [CLSCompliant(false)] - public static void VertexAttribs1(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttribs1(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133701,7 +133701,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1svNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs1(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs1(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133709,7 +133709,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*2] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2dvNV")] [CLSCompliant(false)] - public static void VertexAttribs2(Int32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribs2(Int32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133717,7 +133717,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*2] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2dvNV")] [CLSCompliant(false)] - public static void VertexAttribs2(Int32 index, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribs2(Int32 index, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133725,7 +133725,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*2] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2dvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs2(Int32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs2(Int32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133733,7 +133733,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*2] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2dvNV")] [CLSCompliant(false)] - public static void VertexAttribs2(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribs2(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133741,7 +133741,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*2] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2dvNV")] [CLSCompliant(false)] - public static void VertexAttribs2(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribs2(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133749,7 +133749,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*2] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2dvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs2(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs2(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133757,7 +133757,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*2] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2fvNV")] [CLSCompliant(false)] - public static void VertexAttribs2(Int32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttribs2(Int32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133765,7 +133765,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*2] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2fvNV")] [CLSCompliant(false)] - public static void VertexAttribs2(Int32 index, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttribs2(Int32 index, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133773,7 +133773,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*2] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2fvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs2(Int32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs2(Int32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133781,7 +133781,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*2] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2fvNV")] [CLSCompliant(false)] - public static void VertexAttribs2(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttribs2(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133789,7 +133789,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*2] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2fvNV")] [CLSCompliant(false)] - public static void VertexAttribs2(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttribs2(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133797,7 +133797,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*2] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2fvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs2(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs2(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -133805,7 +133805,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs2hvNV")] [CLSCompliant(false)] - public static void VertexAttribs2h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] Half[] v) { throw new NotImplementedException(); } + public static void VertexAttribs2h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -133813,7 +133813,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs2hvNV")] [CLSCompliant(false)] - public static void VertexAttribs2h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] ref Half v) { throw new NotImplementedException(); } + public static void VertexAttribs2h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -133821,7 +133821,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs2hvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs2h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] Half* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs2h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -133829,7 +133829,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs2hvNV")] [CLSCompliant(false)] - public static void VertexAttribs2h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] Half[] v) { throw new NotImplementedException(); } + public static void VertexAttribs2h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -133837,7 +133837,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs2hvNV")] [CLSCompliant(false)] - public static void VertexAttribs2h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] ref Half v) { throw new NotImplementedException(); } + public static void VertexAttribs2h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -133845,7 +133845,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs2hvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs2h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] Half* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs2h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133853,7 +133853,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*2] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2svNV")] [CLSCompliant(false)] - public static void VertexAttribs2(Int32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttribs2(Int32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133861,7 +133861,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*2] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2svNV")] [CLSCompliant(false)] - public static void VertexAttribs2(Int32 index, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttribs2(Int32 index, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133869,7 +133869,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*2] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2svNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs2(Int32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs2(Int32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133877,7 +133877,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*2] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2svNV")] [CLSCompliant(false)] - public static void VertexAttribs2(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttribs2(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133885,7 +133885,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*2] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2svNV")] [CLSCompliant(false)] - public static void VertexAttribs2(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttribs2(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133893,7 +133893,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*2] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2svNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs2(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs2(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133901,7 +133901,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*3] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3dvNV")] [CLSCompliant(false)] - public static void VertexAttribs3(Int32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribs3(Int32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133909,7 +133909,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*3] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3dvNV")] [CLSCompliant(false)] - public static void VertexAttribs3(Int32 index, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribs3(Int32 index, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133917,7 +133917,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*3] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3dvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs3(Int32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs3(Int32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133925,7 +133925,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*3] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3dvNV")] [CLSCompliant(false)] - public static void VertexAttribs3(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribs3(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133933,7 +133933,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*3] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3dvNV")] [CLSCompliant(false)] - public static void VertexAttribs3(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribs3(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133941,7 +133941,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*3] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3dvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs3(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs3(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133949,7 +133949,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*3] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3fvNV")] [CLSCompliant(false)] - public static void VertexAttribs3(Int32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttribs3(Int32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133957,7 +133957,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*3] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3fvNV")] [CLSCompliant(false)] - public static void VertexAttribs3(Int32 index, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttribs3(Int32 index, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133965,7 +133965,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*3] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3fvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs3(Int32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs3(Int32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133973,7 +133973,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*3] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3fvNV")] [CLSCompliant(false)] - public static void VertexAttribs3(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttribs3(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133981,7 +133981,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*3] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3fvNV")] [CLSCompliant(false)] - public static void VertexAttribs3(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttribs3(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133989,7 +133989,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*3] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3fvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs3(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs3(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -133997,7 +133997,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs3hvNV")] [CLSCompliant(false)] - public static void VertexAttribs3h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] Half[] v) { throw new NotImplementedException(); } + public static void VertexAttribs3h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -134005,7 +134005,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs3hvNV")] [CLSCompliant(false)] - public static void VertexAttribs3h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] ref Half v) { throw new NotImplementedException(); } + public static void VertexAttribs3h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -134013,7 +134013,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs3hvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs3h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] Half* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs3h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -134021,7 +134021,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs3hvNV")] [CLSCompliant(false)] - public static void VertexAttribs3h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] Half[] v) { throw new NotImplementedException(); } + public static void VertexAttribs3h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -134029,7 +134029,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs3hvNV")] [CLSCompliant(false)] - public static void VertexAttribs3h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] ref Half v) { throw new NotImplementedException(); } + public static void VertexAttribs3h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -134037,7 +134037,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs3hvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs3h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] Half* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs3h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134045,7 +134045,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*3] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3svNV")] [CLSCompliant(false)] - public static void VertexAttribs3(Int32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttribs3(Int32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134053,7 +134053,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*3] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3svNV")] [CLSCompliant(false)] - public static void VertexAttribs3(Int32 index, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttribs3(Int32 index, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134061,7 +134061,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*3] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3svNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs3(Int32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs3(Int32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134069,7 +134069,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*3] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3svNV")] [CLSCompliant(false)] - public static void VertexAttribs3(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttribs3(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134077,7 +134077,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*3] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3svNV")] [CLSCompliant(false)] - public static void VertexAttribs3(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttribs3(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134085,7 +134085,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*3] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3svNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs3(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs3(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134093,7 +134093,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4dvNV")] [CLSCompliant(false)] - public static void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134101,7 +134101,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4dvNV")] [CLSCompliant(false)] - public static void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134109,7 +134109,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4dvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134117,7 +134117,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4dvNV")] [CLSCompliant(false)] - public static void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134125,7 +134125,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4dvNV")] [CLSCompliant(false)] - public static void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134133,7 +134133,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4dvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134141,7 +134141,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4fvNV")] [CLSCompliant(false)] - public static void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134149,7 +134149,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4fvNV")] [CLSCompliant(false)] - public static void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134157,7 +134157,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4fvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134165,7 +134165,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4fvNV")] [CLSCompliant(false)] - public static void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134173,7 +134173,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4fvNV")] [CLSCompliant(false)] - public static void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134181,7 +134181,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4fvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -134189,7 +134189,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs4hvNV")] [CLSCompliant(false)] - public static void VertexAttribs4h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] Half[] v) { throw new NotImplementedException(); } + public static void VertexAttribs4h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -134197,7 +134197,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs4hvNV")] [CLSCompliant(false)] - public static void VertexAttribs4h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] ref Half v) { throw new NotImplementedException(); } + public static void VertexAttribs4h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -134205,7 +134205,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs4hvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs4h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] Half* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs4h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -134213,7 +134213,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs4hvNV")] [CLSCompliant(false)] - public static void VertexAttribs4h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] Half[] v) { throw new NotImplementedException(); } + public static void VertexAttribs4h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -134221,7 +134221,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs4hvNV")] [CLSCompliant(false)] - public static void VertexAttribs4h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] ref Half v) { throw new NotImplementedException(); } + public static void VertexAttribs4h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -134229,7 +134229,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs4hvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs4h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] Half* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs4h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134237,7 +134237,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4svNV")] [CLSCompliant(false)] - public static void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134245,7 +134245,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4svNV")] [CLSCompliant(false)] - public static void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134253,7 +134253,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4svNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134261,7 +134261,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4svNV")] [CLSCompliant(false)] - public static void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134269,7 +134269,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4svNV")] [CLSCompliant(false)] - public static void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134277,7 +134277,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4svNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134285,7 +134285,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4ubvNV")] [CLSCompliant(false)] - public static void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134293,7 +134293,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4ubvNV")] [CLSCompliant(false)] - public static void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134301,7 +134301,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4ubvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134309,7 +134309,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4ubvNV")] [CLSCompliant(false)] - public static void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134317,7 +134317,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4ubvNV")] [CLSCompliant(false)] - public static void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134325,25 +134325,25 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4ubvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// /// /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glVertexFormatNV")] - public static void VertexFormat(Int32 size, OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, Int32 stride) { throw new NotImplementedException(); } + public static void VertexFormat(Int32 size, OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexWeighthNV")] - public static void VertexWeighth(Half weight) { throw new NotImplementedException(); } + public static void VertexWeighth(Half weight) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 1] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexWeighthvNV")] [CLSCompliant(false)] - public static unsafe void VertexWeighth([CountAttribute(Count = 1)] Half* weight) { throw new NotImplementedException(); } + public static unsafe void VertexWeighth([CountAttribute(Count = 1)] Half* weight) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134351,7 +134351,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.NvVideoCapture VideoCapture(Int32 video_capture_slot, [OutAttribute] Int32[] sequence_num, [OutAttribute] Int64[] capture_time) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.NvVideoCapture VideoCapture(Int32 video_capture_slot, [OutAttribute] Int32[] sequence_num, [OutAttribute] Int64[] capture_time) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134359,7 +134359,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.NvVideoCapture VideoCapture(Int32 video_capture_slot, [OutAttribute] out Int32 sequence_num, [OutAttribute] out Int64 capture_time) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.NvVideoCapture VideoCapture(Int32 video_capture_slot, [OutAttribute] out Int32 sequence_num, [OutAttribute] out Int64 capture_time) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134367,7 +134367,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureNV")] [CLSCompliant(false)] - public static unsafe OpenTK.Graphics.OpenGL.NvVideoCapture VideoCapture(Int32 video_capture_slot, [OutAttribute] Int32* sequence_num, [OutAttribute] Int64* capture_time) { throw new NotImplementedException(); } + public static unsafe OpenTK.Graphics.OpenGL.NvVideoCapture VideoCapture(Int32 video_capture_slot, [OutAttribute] Int32* sequence_num, [OutAttribute] Int64* capture_time) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134375,7 +134375,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.NvVideoCapture VideoCapture(UInt32 video_capture_slot, [OutAttribute] UInt32[] sequence_num, [OutAttribute] UInt64[] capture_time) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.NvVideoCapture VideoCapture(UInt32 video_capture_slot, [OutAttribute] UInt32[] sequence_num, [OutAttribute] UInt64[] capture_time) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134383,7 +134383,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.NvVideoCapture VideoCapture(UInt32 video_capture_slot, [OutAttribute] out UInt32 sequence_num, [OutAttribute] out UInt64 capture_time) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.NvVideoCapture VideoCapture(UInt32 video_capture_slot, [OutAttribute] out UInt32 sequence_num, [OutAttribute] out UInt64 capture_time) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134391,7 +134391,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureNV")] [CLSCompliant(false)] - public static unsafe OpenTK.Graphics.OpenGL.NvVideoCapture VideoCapture(UInt32 video_capture_slot, [OutAttribute] UInt32* sequence_num, [OutAttribute] UInt64* capture_time) { throw new NotImplementedException(); } + public static unsafe OpenTK.Graphics.OpenGL.NvVideoCapture VideoCapture(UInt32 video_capture_slot, [OutAttribute] UInt32* sequence_num, [OutAttribute] UInt64* capture_time) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134400,7 +134400,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureStreamParameterdvNV")] [CLSCompliant(false)] - public static void VideoCaptureStreamParameter(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] Double[] @params) { throw new NotImplementedException(); } + public static void VideoCaptureStreamParameter(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134409,7 +134409,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureStreamParameterdvNV")] [CLSCompliant(false)] - public static void VideoCaptureStreamParameter(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] ref Double @params) { throw new NotImplementedException(); } + public static void VideoCaptureStreamParameter(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] ref Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134418,7 +134418,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureStreamParameterdvNV")] [CLSCompliant(false)] - public static unsafe void VideoCaptureStreamParameter(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void VideoCaptureStreamParameter(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134427,7 +134427,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureStreamParameterdvNV")] [CLSCompliant(false)] - public static void VideoCaptureStreamParameter(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] Double[] @params) { throw new NotImplementedException(); } + public static void VideoCaptureStreamParameter(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134436,7 +134436,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureStreamParameterdvNV")] [CLSCompliant(false)] - public static void VideoCaptureStreamParameter(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] ref Double @params) { throw new NotImplementedException(); } + public static void VideoCaptureStreamParameter(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] ref Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134445,7 +134445,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureStreamParameterdvNV")] [CLSCompliant(false)] - public static unsafe void VideoCaptureStreamParameter(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void VideoCaptureStreamParameter(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134454,7 +134454,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureStreamParameterfvNV")] [CLSCompliant(false)] - public static void VideoCaptureStreamParameter(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void VideoCaptureStreamParameter(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134463,7 +134463,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureStreamParameterfvNV")] [CLSCompliant(false)] - public static void VideoCaptureStreamParameter(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] ref Single @params) { throw new NotImplementedException(); } + public static void VideoCaptureStreamParameter(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134472,7 +134472,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureStreamParameterfvNV")] [CLSCompliant(false)] - public static unsafe void VideoCaptureStreamParameter(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void VideoCaptureStreamParameter(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134481,7 +134481,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureStreamParameterfvNV")] [CLSCompliant(false)] - public static void VideoCaptureStreamParameter(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void VideoCaptureStreamParameter(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134490,7 +134490,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureStreamParameterfvNV")] [CLSCompliant(false)] - public static void VideoCaptureStreamParameter(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] ref Single @params) { throw new NotImplementedException(); } + public static void VideoCaptureStreamParameter(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134499,7 +134499,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureStreamParameterfvNV")] [CLSCompliant(false)] - public static unsafe void VideoCaptureStreamParameter(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void VideoCaptureStreamParameter(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134508,7 +134508,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureStreamParameterivNV")] [CLSCompliant(false)] - public static void VideoCaptureStreamParameter(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void VideoCaptureStreamParameter(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134517,7 +134517,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureStreamParameterivNV")] [CLSCompliant(false)] - public static void VideoCaptureStreamParameter(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void VideoCaptureStreamParameter(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134526,7 +134526,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureStreamParameterivNV")] [CLSCompliant(false)] - public static unsafe void VideoCaptureStreamParameter(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void VideoCaptureStreamParameter(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134535,7 +134535,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureStreamParameterivNV")] [CLSCompliant(false)] - public static void VideoCaptureStreamParameter(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void VideoCaptureStreamParameter(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134544,7 +134544,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureStreamParameterivNV")] [CLSCompliant(false)] - public static void VideoCaptureStreamParameter(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void VideoCaptureStreamParameter(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134553,7 +134553,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glVideoCaptureStreamParameterivNV")] [CLSCompliant(false)] - public static unsafe void VideoCaptureStreamParameter(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void VideoCaptureStreamParameter(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_clip_space_w_scaling] /// @@ -134561,7 +134561,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_clip_space_w_scaling", Version = "", EntryPoint = "glViewportPositionWScaleNV")] [CLSCompliant(false)] - public static void ViewportPositionWScale(Int32 index, Single xcoeff, Single ycoeff) { throw new NotImplementedException(); } + public static void ViewportPositionWScale(Int32 index, Single xcoeff, Single ycoeff) { throw new BindingsNotRewrittenException(); } /// [requires: NV_clip_space_w_scaling] /// @@ -134569,7 +134569,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_clip_space_w_scaling", Version = "", EntryPoint = "glViewportPositionWScaleNV")] [CLSCompliant(false)] - public static void ViewportPositionWScale(UInt32 index, Single xcoeff, Single ycoeff) { throw new NotImplementedException(); } + public static void ViewportPositionWScale(UInt32 index, Single xcoeff, Single ycoeff) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_swizzle] /// @@ -134579,7 +134579,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_viewport_swizzle", Version = "", EntryPoint = "glViewportSwizzleNV")] [CLSCompliant(false)] - public static void ViewportSwizzle(Int32 index, OpenTK.Graphics.OpenGL.NvViewportSwizzle swizzlex, OpenTK.Graphics.OpenGL.NvViewportSwizzle swizzley, OpenTK.Graphics.OpenGL.NvViewportSwizzle swizzlez, OpenTK.Graphics.OpenGL.NvViewportSwizzle swizzlew) { throw new NotImplementedException(); } + public static void ViewportSwizzle(Int32 index, OpenTK.Graphics.OpenGL.NvViewportSwizzle swizzlex, OpenTK.Graphics.OpenGL.NvViewportSwizzle swizzley, OpenTK.Graphics.OpenGL.NvViewportSwizzle swizzlez, OpenTK.Graphics.OpenGL.NvViewportSwizzle swizzlew) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_swizzle] /// @@ -134589,19 +134589,19 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_viewport_swizzle", Version = "", EntryPoint = "glViewportSwizzleNV")] [CLSCompliant(false)] - public static void ViewportSwizzle(UInt32 index, OpenTK.Graphics.OpenGL.NvViewportSwizzle swizzlex, OpenTK.Graphics.OpenGL.NvViewportSwizzle swizzley, OpenTK.Graphics.OpenGL.NvViewportSwizzle swizzlez, OpenTK.Graphics.OpenGL.NvViewportSwizzle swizzlew) { throw new NotImplementedException(); } + public static void ViewportSwizzle(UInt32 index, OpenTK.Graphics.OpenGL.NvViewportSwizzle swizzlex, OpenTK.Graphics.OpenGL.NvViewportSwizzle swizzley, OpenTK.Graphics.OpenGL.NvViewportSwizzle swizzlez, OpenTK.Graphics.OpenGL.NvViewportSwizzle swizzlew) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glWaitVkSemaphoreNV")] [CLSCompliant(false)] - public static void WaitVkSemaphore(Int64 vkSemaphore) { throw new NotImplementedException(); } + public static void WaitVkSemaphore(Int64 vkSemaphore) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glWaitVkSemaphoreNV")] [CLSCompliant(false)] - public static void WaitVkSemaphore(UInt64 vkSemaphore) { throw new NotImplementedException(); } + public static void WaitVkSemaphore(UInt64 vkSemaphore) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -134610,7 +134610,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] Int32[] paths, [CountAttribute(Parameter = "numPaths")] Single[] weights) { throw new NotImplementedException(); } + public static void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] Int32[] paths, [CountAttribute(Parameter = "numPaths")] Single[] weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -134619,7 +134619,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] ref Int32 paths, [CountAttribute(Parameter = "numPaths")] ref Single weights) { throw new NotImplementedException(); } + public static void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] ref Int32 paths, [CountAttribute(Parameter = "numPaths")] ref Single weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -134628,7 +134628,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static unsafe void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] Int32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights) { throw new NotImplementedException(); } + public static unsafe void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] Int32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -134637,7 +134637,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32[] paths, [CountAttribute(Parameter = "numPaths")] Single[] weights) { throw new NotImplementedException(); } + public static void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32[] paths, [CountAttribute(Parameter = "numPaths")] Single[] weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -134646,7 +134646,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] ref UInt32 paths, [CountAttribute(Parameter = "numPaths")] ref Single weights) { throw new NotImplementedException(); } + public static void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] ref UInt32 paths, [CountAttribute(Parameter = "numPaths")] ref Single weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -134655,7 +134655,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static unsafe void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights) { throw new NotImplementedException(); } + public static unsafe void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights) { throw new BindingsNotRewrittenException(); } } @@ -134669,7 +134669,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NVX_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNVX")] [CLSCompliant(false)] - public static void BeginConditionalRender(Int32 id) { throw new NotImplementedException(); } + public static void BeginConditionalRender(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: NVX_conditional_render] /// Start conditional rendering @@ -134679,11 +134679,11 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NVX_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNVX")] [CLSCompliant(false)] - public static void BeginConditionalRender(UInt32 id) { throw new NotImplementedException(); } + public static void BeginConditionalRender(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: NVX_conditional_render] [AutoGenerated(Category = "NVX_conditional_render", Version = "", EntryPoint = "glEndConditionalRenderNVX")] - public static void EndConditionalRender() { throw new NotImplementedException(); } + public static void EndConditionalRender() { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134705,7 +134705,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NVX_linked_gpu_multicast", Version = "", EntryPoint = "glLGPUCopyImageSubDataNVX")] [CLSCompliant(false)] - public static void LGPUCopyImageSubData(Int32 sourceGpu, Int32 destinationGpuMask, Int32 srcName, OpenTK.Graphics.OpenGL.NvxLinkedGpuMulticast srcTarget, Int32 srcLevel, Int32 srcX, Int32 srxY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.OpenGL.NvxLinkedGpuMulticast dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void LGPUCopyImageSubData(Int32 sourceGpu, Int32 destinationGpuMask, Int32 srcName, OpenTK.Graphics.OpenGL.NvxLinkedGpuMulticast srcTarget, Int32 srcLevel, Int32 srcX, Int32 srxY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.OpenGL.NvxLinkedGpuMulticast dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134727,11 +134727,11 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NVX_linked_gpu_multicast", Version = "", EntryPoint = "glLGPUCopyImageSubDataNVX")] [CLSCompliant(false)] - public static void LGPUCopyImageSubData(UInt32 sourceGpu, UInt32 destinationGpuMask, UInt32 srcName, OpenTK.Graphics.OpenGL.NvxLinkedGpuMulticast srcTarget, Int32 srcLevel, Int32 srcX, Int32 srxY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.OpenGL.NvxLinkedGpuMulticast dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void LGPUCopyImageSubData(UInt32 sourceGpu, UInt32 destinationGpuMask, UInt32 srcName, OpenTK.Graphics.OpenGL.NvxLinkedGpuMulticast srcTarget, Int32 srcLevel, Int32 srcX, Int32 srxY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.OpenGL.NvxLinkedGpuMulticast dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] [AutoGenerated(Category = "NVX_linked_gpu_multicast", Version = "", EntryPoint = "glLGPUInterlockNVX")] - public static void LGPUInterlock() { throw new NotImplementedException(); } + public static void LGPUInterlock() { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134741,7 +134741,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NVX_linked_gpu_multicast", Version = "", EntryPoint = "glLGPUNamedBufferSubDataNVX")] [CLSCompliant(false)] - public static void LGPUNamedBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, Int32 size, IntPtr data) { throw new NotImplementedException(); } + public static void LGPUNamedBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, Int32 size, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134753,7 +134753,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void LGPUNamedBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134765,7 +134765,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void LGPUNamedBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134777,7 +134777,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void LGPUNamedBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134789,7 +134789,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void LGPUNamedBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134799,7 +134799,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NVX_linked_gpu_multicast", Version = "", EntryPoint = "glLGPUNamedBufferSubDataNVX")] [CLSCompliant(false)] - public static void LGPUNamedBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, IntPtr size, IntPtr data) { throw new NotImplementedException(); } + public static void LGPUNamedBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, IntPtr size, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134811,7 +134811,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void LGPUNamedBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134823,7 +134823,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void LGPUNamedBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134835,7 +134835,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void LGPUNamedBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134847,7 +134847,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void LGPUNamedBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134857,7 +134857,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NVX_linked_gpu_multicast", Version = "", EntryPoint = "glLGPUNamedBufferSubDataNVX")] [CLSCompliant(false)] - public static void LGPUNamedBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, Int32 size, IntPtr data) { throw new NotImplementedException(); } + public static void LGPUNamedBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, Int32 size, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134869,7 +134869,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void LGPUNamedBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134881,7 +134881,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void LGPUNamedBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134893,7 +134893,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void LGPUNamedBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134905,7 +134905,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void LGPUNamedBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134915,7 +134915,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NVX_linked_gpu_multicast", Version = "", EntryPoint = "glLGPUNamedBufferSubDataNVX")] [CLSCompliant(false)] - public static void LGPUNamedBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, IntPtr size, IntPtr data) { throw new NotImplementedException(); } + public static void LGPUNamedBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, IntPtr size, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134927,7 +134927,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void LGPUNamedBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134939,7 +134939,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void LGPUNamedBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134951,7 +134951,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void LGPUNamedBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134963,7 +134963,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void LGPUNamedBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } } @@ -134973,13 +134973,13 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glAccumxOES")] - public static void Accumx(OpenTK.Graphics.OpenGL.OesFixedPoint op, Int32 value) { throw new NotImplementedException(); } + public static void Accumx(OpenTK.Graphics.OpenGL.OesFixedPoint op, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glAlphaFuncxOES")] - public static void AlphaFuncx(OpenTK.Graphics.OpenGL.OesFixedPoint func, Int32 @ref) { throw new NotImplementedException(); } + public static void AlphaFuncx(OpenTK.Graphics.OpenGL.OesFixedPoint func, Int32 @ref) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -134991,7 +134991,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(width,height)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glBitmapxOES")] [CLSCompliant(false)] - public static void Bitmapx(Int32 width, Int32 height, Int32 xorig, Int32 yorig, Int32 xmove, Int32 ymove, [CountAttribute(Computed = "width,height")] Byte[] bitmap) { throw new NotImplementedException(); } + public static void Bitmapx(Int32 width, Int32 height, Int32 xorig, Int32 yorig, Int32 xmove, Int32 ymove, [CountAttribute(Computed = "width,height")] Byte[] bitmap) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135003,7 +135003,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(width,height)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glBitmapxOES")] [CLSCompliant(false)] - public static void Bitmapx(Int32 width, Int32 height, Int32 xorig, Int32 yorig, Int32 xmove, Int32 ymove, [CountAttribute(Computed = "width,height")] ref Byte bitmap) { throw new NotImplementedException(); } + public static void Bitmapx(Int32 width, Int32 height, Int32 xorig, Int32 yorig, Int32 xmove, Int32 ymove, [CountAttribute(Computed = "width,height")] ref Byte bitmap) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135015,7 +135015,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(width,height)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glBitmapxOES")] [CLSCompliant(false)] - public static unsafe void Bitmapx(Int32 width, Int32 height, Int32 xorig, Int32 yorig, Int32 xmove, Int32 ymove, [CountAttribute(Computed = "width,height")] Byte* bitmap) { throw new NotImplementedException(); } + public static unsafe void Bitmapx(Int32 width, Int32 height, Int32 xorig, Int32 yorig, Int32 xmove, Int32 ymove, [CountAttribute(Computed = "width,height")] Byte* bitmap) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135023,7 +135023,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glBlendColorxOES")] - public static void BlendColorx(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new NotImplementedException(); } + public static void BlendColorx(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135031,7 +135031,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClearAccumxOES")] - public static void ClearAccumx(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new NotImplementedException(); } + public static void ClearAccumx(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135039,7 +135039,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClearColorxOES")] - public static void ClearColorx(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new NotImplementedException(); } + public static void ClearColorx(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Specify the clear value for the depth buffer @@ -135048,12 +135048,12 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the depth value used when the depth buffer is cleared. The initial value is 1. /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glClearDepthfOES")] - public static void ClearDepth(Single depth) { throw new NotImplementedException(); } + public static void ClearDepth(Single depth) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClearDepthxOES")] - public static void ClearDepthx(Int32 depth) { throw new NotImplementedException(); } + public static void ClearDepthx(Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Specify a plane against which all geometry is clipped @@ -135066,7 +135066,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glClipPlanefOES")] [CLSCompliant(false)] - public static void ClipPlane(OpenTK.Graphics.OpenGL.OesSinglePrecision plane, [CountAttribute(Count = 4)] Single[] equation) { throw new NotImplementedException(); } + public static void ClipPlane(OpenTK.Graphics.OpenGL.OesSinglePrecision plane, [CountAttribute(Count = 4)] Single[] equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Specify a plane against which all geometry is clipped @@ -135079,7 +135079,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glClipPlanefOES")] [CLSCompliant(false)] - public static void ClipPlane(OpenTK.Graphics.OpenGL.OesSinglePrecision plane, [CountAttribute(Count = 4)] ref Single equation) { throw new NotImplementedException(); } + public static void ClipPlane(OpenTK.Graphics.OpenGL.OesSinglePrecision plane, [CountAttribute(Count = 4)] ref Single equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Specify a plane against which all geometry is clipped @@ -135092,53 +135092,53 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glClipPlanefOES")] [CLSCompliant(false)] - public static unsafe void ClipPlane(OpenTK.Graphics.OpenGL.OesSinglePrecision plane, [CountAttribute(Count = 4)] Single* equation) { throw new NotImplementedException(); } + public static unsafe void ClipPlane(OpenTK.Graphics.OpenGL.OesSinglePrecision plane, [CountAttribute(Count = 4)] Single* equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClipPlanexOES")] [CLSCompliant(false)] - public static void ClipPlanex(OpenTK.Graphics.OpenGL.OesFixedPoint plane, [CountAttribute(Count = 4)] Int32[] equation) { throw new NotImplementedException(); } + public static void ClipPlanex(OpenTK.Graphics.OpenGL.OesFixedPoint plane, [CountAttribute(Count = 4)] Int32[] equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClipPlanexOES")] [CLSCompliant(false)] - public static void ClipPlanex(OpenTK.Graphics.OpenGL.OesFixedPoint plane, [CountAttribute(Count = 4)] ref Int32 equation) { throw new NotImplementedException(); } + public static void ClipPlanex(OpenTK.Graphics.OpenGL.OesFixedPoint plane, [CountAttribute(Count = 4)] ref Int32 equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClipPlanexOES")] [CLSCompliant(false)] - public static unsafe void ClipPlanex(OpenTK.Graphics.OpenGL.OesFixedPoint plane, [CountAttribute(Count = 4)] Int32* equation) { throw new NotImplementedException(); } + public static unsafe void ClipPlanex(OpenTK.Graphics.OpenGL.OesFixedPoint plane, [CountAttribute(Count = 4)] Int32* equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor3xOES")] - public static void Color3x(Int32 red, Int32 green, Int32 blue) { throw new NotImplementedException(); } + public static void Color3x(Int32 red, Int32 green, Int32 blue) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor3xvOES")] [CLSCompliant(false)] - public static void Color3x([CountAttribute(Count = 3)] Int32[] components) { throw new NotImplementedException(); } + public static void Color3x([CountAttribute(Count = 3)] Int32[] components) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor3xvOES")] [CLSCompliant(false)] - public static void Color3x([CountAttribute(Count = 3)] ref Int32 components) { throw new NotImplementedException(); } + public static void Color3x([CountAttribute(Count = 3)] ref Int32 components) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor3xvOES")] [CLSCompliant(false)] - public static unsafe void Color3x([CountAttribute(Count = 3)] Int32* components) { throw new NotImplementedException(); } + public static unsafe void Color3x([CountAttribute(Count = 3)] Int32* components) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135146,32 +135146,32 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor4xOES")] - public static void Color4x(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new NotImplementedException(); } + public static void Color4x(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor4xvOES")] [CLSCompliant(false)] - public static void Color4x([CountAttribute(Count = 4)] Int32[] components) { throw new NotImplementedException(); } + public static void Color4x([CountAttribute(Count = 4)] Int32[] components) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor4xvOES")] [CLSCompliant(false)] - public static void Color4x([CountAttribute(Count = 4)] ref Int32 components) { throw new NotImplementedException(); } + public static void Color4x([CountAttribute(Count = 4)] ref Int32 components) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor4xvOES")] [CLSCompliant(false)] - public static unsafe void Color4x([CountAttribute(Count = 4)] Int32* components) { throw new NotImplementedException(); } + public static unsafe void Color4x([CountAttribute(Count = 4)] Int32* components) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glConvolutionParameterxOES")] - public static void ConvolutionParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new NotImplementedException(); } + public static void ConvolutionParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135179,7 +135179,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glConvolutionParameterxvOES")] [CLSCompliant(false)] - public static void ConvolutionParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void ConvolutionParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135187,7 +135187,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glConvolutionParameterxvOES")] [CLSCompliant(false)] - public static unsafe void ConvolutionParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ConvolutionParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Specify mapping of depth values from normalized device coordinates to window coordinates @@ -135199,48 +135199,48 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the mapping of the far clipping plane to window coordinates. The initial value is 1. /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glDepthRangefOES")] - public static void DepthRange(Single n, Single f) { throw new NotImplementedException(); } + public static void DepthRange(Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glDepthRangexOES")] - public static void DepthRangex(Int32 n, Int32 f) { throw new NotImplementedException(); } + public static void DepthRangex(Int32 n, Int32 f) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glEvalCoord1xOES")] - public static void EvalCoord1x(Int32 u) { throw new NotImplementedException(); } + public static void EvalCoord1x(Int32 u) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 1] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glEvalCoord1xvOES")] [CLSCompliant(false)] - public static unsafe void EvalCoord1x([CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void EvalCoord1x([CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glEvalCoord2xOES")] - public static void EvalCoord2x(Int32 u, Int32 v) { throw new NotImplementedException(); } + public static void EvalCoord2x(Int32 u, Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glEvalCoord2xvOES")] [CLSCompliant(false)] - public static void EvalCoord2x([CountAttribute(Count = 2)] Int32[] coords) { throw new NotImplementedException(); } + public static void EvalCoord2x([CountAttribute(Count = 2)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glEvalCoord2xvOES")] [CLSCompliant(false)] - public static void EvalCoord2x([CountAttribute(Count = 2)] ref Int32 coords) { throw new NotImplementedException(); } + public static void EvalCoord2x([CountAttribute(Count = 2)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glEvalCoord2xvOES")] [CLSCompliant(false)] - public static unsafe void EvalCoord2x([CountAttribute(Count = 2)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void EvalCoord2x([CountAttribute(Count = 2)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135248,7 +135248,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFeedbackBufferxOES")] [CLSCompliant(false)] - public static void FeedbackBufferx(Int32 n, OpenTK.Graphics.OpenGL.OesFixedPoint type, [CountAttribute(Parameter = "n")] Int32[] buffer) { throw new NotImplementedException(); } + public static void FeedbackBufferx(Int32 n, OpenTK.Graphics.OpenGL.OesFixedPoint type, [CountAttribute(Parameter = "n")] Int32[] buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135256,7 +135256,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFeedbackBufferxOES")] [CLSCompliant(false)] - public static void FeedbackBufferx(Int32 n, OpenTK.Graphics.OpenGL.OesFixedPoint type, [CountAttribute(Parameter = "n")] ref Int32 buffer) { throw new NotImplementedException(); } + public static void FeedbackBufferx(Int32 n, OpenTK.Graphics.OpenGL.OesFixedPoint type, [CountAttribute(Parameter = "n")] ref Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135264,27 +135264,27 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFeedbackBufferxOES")] [CLSCompliant(false)] - public static unsafe void FeedbackBufferx(Int32 n, OpenTK.Graphics.OpenGL.OesFixedPoint type, [CountAttribute(Parameter = "n")] Int32* buffer) { throw new NotImplementedException(); } + public static unsafe void FeedbackBufferx(Int32 n, OpenTK.Graphics.OpenGL.OesFixedPoint type, [CountAttribute(Parameter = "n")] Int32* buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFogxOES")] - public static void Fogx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new NotImplementedException(); } + public static void Fogx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFogxvOES")] [CLSCompliant(false)] - public static void Fogx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void Fogx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFogxvOES")] [CLSCompliant(false)] - public static unsafe void Fogx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void Fogx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Multiply the current matrix by a perspective matrix @@ -135308,7 +135308,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the distances to the near and far depth clipping planes. Both distances must be positive. /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glFrustumfOES")] - public static void Frustum(Single l, Single r, Single b, Single t, Single n, Single f) { throw new NotImplementedException(); } + public static void Frustum(Single l, Single r, Single b, Single t, Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135318,7 +135318,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFrustumxOES")] - public static void Frustumx(Int32 l, Int32 r, Int32 b, Int32 t, Int32 n, Int32 f) { throw new NotImplementedException(); } + public static void Frustumx(Int32 l, Int32 r, Int32 b, Int32 t, Int32 n, Int32 f) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Return the coefficients of the specified clipping plane @@ -135331,7 +135331,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glGetClipPlanefOES")] [CLSCompliant(false)] - public static void GetClipPlane(OpenTK.Graphics.OpenGL.OesSinglePrecision plane, [OutAttribute, CountAttribute(Count = 4)] Single[] equation) { throw new NotImplementedException(); } + public static void GetClipPlane(OpenTK.Graphics.OpenGL.OesSinglePrecision plane, [OutAttribute, CountAttribute(Count = 4)] Single[] equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Return the coefficients of the specified clipping plane @@ -135344,7 +135344,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glGetClipPlanefOES")] [CLSCompliant(false)] - public static void GetClipPlane(OpenTK.Graphics.OpenGL.OesSinglePrecision plane, [OutAttribute, CountAttribute(Count = 4)] out Single equation) { throw new NotImplementedException(); } + public static void GetClipPlane(OpenTK.Graphics.OpenGL.OesSinglePrecision plane, [OutAttribute, CountAttribute(Count = 4)] out Single equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Return the coefficients of the specified clipping plane @@ -135357,28 +135357,28 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glGetClipPlanefOES")] [CLSCompliant(false)] - public static unsafe void GetClipPlane(OpenTK.Graphics.OpenGL.OesSinglePrecision plane, [OutAttribute, CountAttribute(Count = 4)] Single* equation) { throw new NotImplementedException(); } + public static unsafe void GetClipPlane(OpenTK.Graphics.OpenGL.OesSinglePrecision plane, [OutAttribute, CountAttribute(Count = 4)] Single* equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetClipPlanexOES")] [CLSCompliant(false)] - public static void GetClipPlanex(OpenTK.Graphics.OpenGL.OesFixedPoint plane, [OutAttribute, CountAttribute(Count = 4)] Int32[] equation) { throw new NotImplementedException(); } + public static void GetClipPlanex(OpenTK.Graphics.OpenGL.OesFixedPoint plane, [OutAttribute, CountAttribute(Count = 4)] Int32[] equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetClipPlanexOES")] [CLSCompliant(false)] - public static void GetClipPlanex(OpenTK.Graphics.OpenGL.OesFixedPoint plane, [OutAttribute, CountAttribute(Count = 4)] out Int32 equation) { throw new NotImplementedException(); } + public static void GetClipPlanex(OpenTK.Graphics.OpenGL.OesFixedPoint plane, [OutAttribute, CountAttribute(Count = 4)] out Int32 equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetClipPlanexOES")] [CLSCompliant(false)] - public static unsafe void GetClipPlanex(OpenTK.Graphics.OpenGL.OesFixedPoint plane, [OutAttribute, CountAttribute(Count = 4)] Int32* equation) { throw new NotImplementedException(); } + public static unsafe void GetClipPlanex(OpenTK.Graphics.OpenGL.OesFixedPoint plane, [OutAttribute, CountAttribute(Count = 4)] Int32* equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135386,7 +135386,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetConvolutionParameterxvOES")] [CLSCompliant(false)] - public static void GetConvolutionParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetConvolutionParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135394,7 +135394,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetConvolutionParameterxvOES")] [CLSCompliant(false)] - public static void GetConvolutionParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetConvolutionParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135402,34 +135402,34 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetConvolutionParameterxvOES")] [CLSCompliant(false)] - public static unsafe void GetConvolutionParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetConvolutionParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetFixedvOES")] [CLSCompliant(false)] - public static Int32 GetFixed(OpenTK.Graphics.OpenGL.OesFixedPoint pname) { throw new NotImplementedException(); } + public static Int32 GetFixed(OpenTK.Graphics.OpenGL.OesFixedPoint pname) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetFixedvOES")] [CLSCompliant(false)] - public static void GetFixed(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFixed(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetFixedvOES")] [CLSCompliant(false)] - public static void GetFixed(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFixed(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetFixedvOES")] [CLSCompliant(false)] - public static unsafe void GetFixed(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFixed(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135437,7 +135437,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetHistogramParameterxvOES")] [CLSCompliant(false)] - public static void GetHistogramParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetHistogramParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135445,7 +135445,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetHistogramParameterxvOES")] [CLSCompliant(false)] - public static void GetHistogramParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetHistogramParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135453,7 +135453,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetHistogramParameterxvOES")] [CLSCompliant(false)] - public static unsafe void GetHistogramParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetHistogramParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135461,7 +135461,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetLightxOES")] [CLSCompliant(false)] - public static void GetLightx(OpenTK.Graphics.OpenGL.OesFixedPoint light, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetLightx(OpenTK.Graphics.OpenGL.OesFixedPoint light, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135469,7 +135469,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetLightxOES")] [CLSCompliant(false)] - public static void GetLightx(OpenTK.Graphics.OpenGL.OesFixedPoint light, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetLightx(OpenTK.Graphics.OpenGL.OesFixedPoint light, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135477,7 +135477,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetLightxOES")] [CLSCompliant(false)] - public static unsafe void GetLightx(OpenTK.Graphics.OpenGL.OesFixedPoint light, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetLightx(OpenTK.Graphics.OpenGL.OesFixedPoint light, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135485,7 +135485,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(query)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMapxvOES")] [CLSCompliant(false)] - public static void GetMapx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint query, [OutAttribute, CountAttribute(Computed = "query")] Int32[] v) { throw new NotImplementedException(); } + public static void GetMapx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint query, [OutAttribute, CountAttribute(Computed = "query")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135493,7 +135493,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(query)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMapxvOES")] [CLSCompliant(false)] - public static void GetMapx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint query, [OutAttribute, CountAttribute(Computed = "query")] out Int32 v) { throw new NotImplementedException(); } + public static void GetMapx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint query, [OutAttribute, CountAttribute(Computed = "query")] out Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135501,14 +135501,14 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(query)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMapxvOES")] [CLSCompliant(false)] - public static unsafe void GetMapx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint query, [OutAttribute, CountAttribute(Computed = "query")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void GetMapx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint query, [OutAttribute, CountAttribute(Computed = "query")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMaterialxOES")] - public static void GetMaterialx(OpenTK.Graphics.OpenGL.OesFixedPoint face, OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new NotImplementedException(); } + public static void GetMaterialx(OpenTK.Graphics.OpenGL.OesFixedPoint face, OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135516,7 +135516,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMaterialxvOES")] [CLSCompliant(false)] - public static void GetMaterialx(OpenTK.Graphics.OpenGL.OesFixedPoint face, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMaterialx(OpenTK.Graphics.OpenGL.OesFixedPoint face, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135524,7 +135524,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMaterialxvOES")] [CLSCompliant(false)] - public static unsafe void GetMaterialx(OpenTK.Graphics.OpenGL.OesFixedPoint face, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMaterialx(OpenTK.Graphics.OpenGL.OesFixedPoint face, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135532,7 +135532,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexEnvxvOES")] [CLSCompliant(false)] - public static void GetTexEnvx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexEnvx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135540,7 +135540,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexEnvxvOES")] [CLSCompliant(false)] - public static void GetTexEnvx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexEnvx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135548,7 +135548,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexEnvxvOES")] [CLSCompliant(false)] - public static unsafe void GetTexEnvx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexEnvx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135556,7 +135556,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexGenxvOES")] [CLSCompliant(false)] - public static void GetTexGenx(OpenTK.Graphics.OpenGL.OesFixedPoint coord, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexGenx(OpenTK.Graphics.OpenGL.OesFixedPoint coord, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135564,7 +135564,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexGenxvOES")] [CLSCompliant(false)] - public static void GetTexGenx(OpenTK.Graphics.OpenGL.OesFixedPoint coord, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexGenx(OpenTK.Graphics.OpenGL.OesFixedPoint coord, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135572,7 +135572,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexGenxvOES")] [CLSCompliant(false)] - public static unsafe void GetTexGenx(OpenTK.Graphics.OpenGL.OesFixedPoint coord, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexGenx(OpenTK.Graphics.OpenGL.OesFixedPoint coord, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135581,7 +135581,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexLevelParameterxvOES")] [CLSCompliant(false)] - public static void GetTexLevelParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, Int32 level, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexLevelParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, Int32 level, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135590,7 +135590,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexLevelParameterxvOES")] [CLSCompliant(false)] - public static void GetTexLevelParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, Int32 level, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexLevelParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, Int32 level, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135599,7 +135599,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexLevelParameterxvOES")] [CLSCompliant(false)] - public static unsafe void GetTexLevelParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, Int32 level, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexLevelParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, Int32 level, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135607,7 +135607,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexParameterxvOES")] [CLSCompliant(false)] - public static void GetTexParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135615,7 +135615,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexParameterxvOES")] [CLSCompliant(false)] - public static void GetTexParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135623,45 +135623,45 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexParameterxvOES")] [CLSCompliant(false)] - public static unsafe void GetTexParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glIndexxOES")] - public static void Indexx(Int32 component) { throw new NotImplementedException(); } + public static void Indexx(Int32 component) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 1] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glIndexxvOES")] [CLSCompliant(false)] - public static unsafe void Indexx([CountAttribute(Count = 1)] Int32* component) { throw new NotImplementedException(); } + public static unsafe void Indexx([CountAttribute(Count = 1)] Int32* component) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightModelxOES")] - public static void LightModelx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new NotImplementedException(); } + public static void LightModelx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightModelxvOES")] [CLSCompliant(false)] - public static void LightModelx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void LightModelx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightModelxvOES")] [CLSCompliant(false)] - public static unsafe void LightModelx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void LightModelx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightxOES")] - public static void Lightx(OpenTK.Graphics.OpenGL.OesFixedPoint light, OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new NotImplementedException(); } + public static void Lightx(OpenTK.Graphics.OpenGL.OesFixedPoint light, OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135669,7 +135669,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightxvOES")] [CLSCompliant(false)] - public static void Lightx(OpenTK.Graphics.OpenGL.OesFixedPoint light, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void Lightx(OpenTK.Graphics.OpenGL.OesFixedPoint light, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135677,48 +135677,48 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightxvOES")] [CLSCompliant(false)] - public static unsafe void Lightx(OpenTK.Graphics.OpenGL.OesFixedPoint light, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void Lightx(OpenTK.Graphics.OpenGL.OesFixedPoint light, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLineWidthxOES")] - public static void LineWidthx(Int32 width) { throw new NotImplementedException(); } + public static void LineWidthx(Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadMatrixxOES")] [CLSCompliant(false)] - public static void LoadMatrixx([CountAttribute(Count = 16)] Int32[] m) { throw new NotImplementedException(); } + public static void LoadMatrixx([CountAttribute(Count = 16)] Int32[] m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadMatrixxOES")] [CLSCompliant(false)] - public static void LoadMatrixx([CountAttribute(Count = 16)] ref Int32 m) { throw new NotImplementedException(); } + public static void LoadMatrixx([CountAttribute(Count = 16)] ref Int32 m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadMatrixxOES")] [CLSCompliant(false)] - public static unsafe void LoadMatrixx([CountAttribute(Count = 16)] Int32* m) { throw new NotImplementedException(); } + public static unsafe void LoadMatrixx([CountAttribute(Count = 16)] Int32* m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadTransposeMatrixxOES")] [CLSCompliant(false)] - public static void LoadTransposeMatrixx([CountAttribute(Count = 16)] Int32[] m) { throw new NotImplementedException(); } + public static void LoadTransposeMatrixx([CountAttribute(Count = 16)] Int32[] m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadTransposeMatrixxOES")] [CLSCompliant(false)] - public static void LoadTransposeMatrixx([CountAttribute(Count = 16)] ref Int32 m) { throw new NotImplementedException(); } + public static void LoadTransposeMatrixx([CountAttribute(Count = 16)] ref Int32 m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadTransposeMatrixxOES")] [CLSCompliant(false)] - public static unsafe void LoadTransposeMatrixx([CountAttribute(Count = 16)] Int32* m) { throw new NotImplementedException(); } + public static unsafe void LoadTransposeMatrixx([CountAttribute(Count = 16)] Int32* m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135728,7 +135728,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMap1xOES")] - public static void Map1x(OpenTK.Graphics.OpenGL.OesFixedPoint target, Int32 u1, Int32 u2, Int32 stride, Int32 order, Int32 points) { throw new NotImplementedException(); } + public static void Map1x(OpenTK.Graphics.OpenGL.OesFixedPoint target, Int32 u1, Int32 u2, Int32 stride, Int32 order, Int32 points) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135742,14 +135742,14 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMap2xOES")] - public static void Map2x(OpenTK.Graphics.OpenGL.OesFixedPoint target, Int32 u1, Int32 u2, Int32 ustride, Int32 uorder, Int32 v1, Int32 v2, Int32 vstride, Int32 vorder, Int32 points) { throw new NotImplementedException(); } + public static void Map2x(OpenTK.Graphics.OpenGL.OesFixedPoint target, Int32 u1, Int32 u2, Int32 ustride, Int32 uorder, Int32 v1, Int32 v2, Int32 vstride, Int32 vorder, Int32 points) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMapGrid1xOES")] - public static void MapGrid1x(Int32 n, Int32 u1, Int32 u2) { throw new NotImplementedException(); } + public static void MapGrid1x(Int32 n, Int32 u1, Int32 u2) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135758,14 +135758,14 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMapGrid2xOES")] - public static void MapGrid2x(Int32 n, Int32 u1, Int32 u2, Int32 v1, Int32 v2) { throw new NotImplementedException(); } + public static void MapGrid2x(Int32 n, Int32 u1, Int32 u2, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMaterialxOES")] - public static void Materialx(OpenTK.Graphics.OpenGL.OesFixedPoint face, OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new NotImplementedException(); } + public static void Materialx(OpenTK.Graphics.OpenGL.OesFixedPoint face, OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135773,7 +135773,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMaterialxvOES")] [CLSCompliant(false)] - public static void Materialx(OpenTK.Graphics.OpenGL.OesFixedPoint face, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void Materialx(OpenTK.Graphics.OpenGL.OesFixedPoint face, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135781,7 +135781,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMaterialxvOES")] [CLSCompliant(false)] - public static unsafe void Materialx(OpenTK.Graphics.OpenGL.OesFixedPoint face, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void Materialx(OpenTK.Graphics.OpenGL.OesFixedPoint face, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -135794,7 +135794,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord1bOES")] [CLSCompliant(false)] - public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, Byte s) { throw new NotImplementedException(); } + public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, Byte s) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -135807,7 +135807,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord1bOES")] [CLSCompliant(false)] - public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, SByte s) { throw new NotImplementedException(); } + public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, SByte s) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -135820,7 +135820,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord1bvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 1)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 1)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -135833,20 +135833,20 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord1bvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 1)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 1)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord1xOES")] - public static void MultiTexCoord1x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, Int32 s) { throw new NotImplementedException(); } + public static void MultiTexCoord1x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, Int32 s) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 1] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord1xvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord1x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord1x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -135862,7 +135862,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bOES")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, Byte s, Byte t) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, Byte s, Byte t) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -135878,7 +135878,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bOES")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, SByte s, SByte t) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, SByte s, SByte t) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -135891,7 +135891,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 2)] Byte[] coords) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 2)] Byte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -135904,7 +135904,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 2)] ref Byte coords) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 2)] ref Byte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -135917,7 +135917,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 2)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 2)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -135930,7 +135930,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 2)] SByte[] coords) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 2)] SByte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -135943,7 +135943,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 2)] ref SByte coords) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 2)] ref SByte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -135956,35 +135956,35 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 2)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 2)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord2xOES")] - public static void MultiTexCoord2x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, Int32 s, Int32 t) { throw new NotImplementedException(); } + public static void MultiTexCoord2x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, Int32 s, Int32 t) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord2xvOES")] [CLSCompliant(false)] - public static void MultiTexCoord2x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 2)] Int32[] coords) { throw new NotImplementedException(); } + public static void MultiTexCoord2x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 2)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord2xvOES")] [CLSCompliant(false)] - public static void MultiTexCoord2x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 2)] ref Int32 coords) { throw new NotImplementedException(); } + public static void MultiTexCoord2x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 2)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord2xvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord2x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 2)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord2x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 2)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136003,7 +136003,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bOES")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, Byte s, Byte t, Byte r) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, Byte s, Byte t, Byte r) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136022,7 +136022,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bOES")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, SByte s, SByte t, SByte r) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, SByte s, SByte t, SByte r) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136035,7 +136035,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 3)] Byte[] coords) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 3)] Byte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136048,7 +136048,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 3)] ref Byte coords) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 3)] ref Byte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136061,7 +136061,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 3)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 3)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136074,7 +136074,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 3)] SByte[] coords) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 3)] SByte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136087,7 +136087,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 3)] ref SByte coords) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 3)] ref SByte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136100,7 +136100,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 3)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 3)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -136108,28 +136108,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord3xOES")] - public static void MultiTexCoord3x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, Int32 s, Int32 t, Int32 r) { throw new NotImplementedException(); } + public static void MultiTexCoord3x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, Int32 s, Int32 t, Int32 r) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord3xvOES")] [CLSCompliant(false)] - public static void MultiTexCoord3x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 3)] Int32[] coords) { throw new NotImplementedException(); } + public static void MultiTexCoord3x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 3)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord3xvOES")] [CLSCompliant(false)] - public static void MultiTexCoord3x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 3)] ref Int32 coords) { throw new NotImplementedException(); } + public static void MultiTexCoord3x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 3)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord3xvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord3x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 3)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord3x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 3)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136151,7 +136151,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bOES")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, Byte s, Byte t, Byte r, Byte q) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, Byte s, Byte t, Byte r, Byte q) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136173,7 +136173,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bOES")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, SByte s, SByte t, SByte r, SByte q) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, SByte s, SByte t, SByte r, SByte q) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136186,7 +136186,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 4)] Byte[] coords) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 4)] Byte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136199,7 +136199,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 4)] ref Byte coords) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 4)] ref Byte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136212,7 +136212,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 4)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 4)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136225,7 +136225,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 4)] SByte[] coords) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 4)] SByte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136238,7 +136238,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 4)] ref SByte coords) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 4)] ref SByte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136251,7 +136251,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 4)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 4)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -136260,89 +136260,89 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord4xOES")] - public static void MultiTexCoord4x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, Int32 s, Int32 t, Int32 r, Int32 q) { throw new NotImplementedException(); } + public static void MultiTexCoord4x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, Int32 s, Int32 t, Int32 r, Int32 q) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord4xvOES")] [CLSCompliant(false)] - public static void MultiTexCoord4x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 4)] Int32[] coords) { throw new NotImplementedException(); } + public static void MultiTexCoord4x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 4)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord4xvOES")] [CLSCompliant(false)] - public static void MultiTexCoord4x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 4)] ref Int32 coords) { throw new NotImplementedException(); } + public static void MultiTexCoord4x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 4)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord4xvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord4x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 4)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord4x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 4)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultMatrixxOES")] [CLSCompliant(false)] - public static void MultMatrixx([CountAttribute(Count = 16)] Int32[] m) { throw new NotImplementedException(); } + public static void MultMatrixx([CountAttribute(Count = 16)] Int32[] m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultMatrixxOES")] [CLSCompliant(false)] - public static void MultMatrixx([CountAttribute(Count = 16)] ref Int32 m) { throw new NotImplementedException(); } + public static void MultMatrixx([CountAttribute(Count = 16)] ref Int32 m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultMatrixxOES")] [CLSCompliant(false)] - public static unsafe void MultMatrixx([CountAttribute(Count = 16)] Int32* m) { throw new NotImplementedException(); } + public static unsafe void MultMatrixx([CountAttribute(Count = 16)] Int32* m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultTransposeMatrixxOES")] [CLSCompliant(false)] - public static void MultTransposeMatrixx([CountAttribute(Count = 16)] Int32[] m) { throw new NotImplementedException(); } + public static void MultTransposeMatrixx([CountAttribute(Count = 16)] Int32[] m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultTransposeMatrixxOES")] [CLSCompliant(false)] - public static void MultTransposeMatrixx([CountAttribute(Count = 16)] ref Int32 m) { throw new NotImplementedException(); } + public static void MultTransposeMatrixx([CountAttribute(Count = 16)] ref Int32 m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultTransposeMatrixxOES")] [CLSCompliant(false)] - public static unsafe void MultTransposeMatrixx([CountAttribute(Count = 16)] Int32* m) { throw new NotImplementedException(); } + public static unsafe void MultTransposeMatrixx([CountAttribute(Count = 16)] Int32* m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glNormal3xOES")] - public static void Normal3x(Int32 nx, Int32 ny, Int32 nz) { throw new NotImplementedException(); } + public static void Normal3x(Int32 nx, Int32 ny, Int32 nz) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glNormal3xvOES")] [CLSCompliant(false)] - public static void Normal3x([CountAttribute(Count = 3)] Int32[] coords) { throw new NotImplementedException(); } + public static void Normal3x([CountAttribute(Count = 3)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glNormal3xvOES")] [CLSCompliant(false)] - public static void Normal3x([CountAttribute(Count = 3)] ref Int32 coords) { throw new NotImplementedException(); } + public static void Normal3x([CountAttribute(Count = 3)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glNormal3xvOES")] [CLSCompliant(false)] - public static unsafe void Normal3x([CountAttribute(Count = 3)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void Normal3x([CountAttribute(Count = 3)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Multiply the current matrix with an orthographic matrix @@ -136366,7 +136366,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the distances to the nearer and farther depth clipping planes. These values are negative if the plane is to be behind the viewer. /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glOrthofOES")] - public static void Ortho(Single l, Single r, Single b, Single t, Single n, Single f) { throw new NotImplementedException(); } + public static void Ortho(Single l, Single r, Single b, Single t, Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -136376,55 +136376,55 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glOrthoxOES")] - public static void Orthox(Int32 l, Int32 r, Int32 b, Int32 t, Int32 n, Int32 f) { throw new NotImplementedException(); } + public static void Orthox(Int32 l, Int32 r, Int32 b, Int32 t, Int32 n, Int32 f) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPassThroughxOES")] - public static void PassThroughx(Int32 token) { throw new NotImplementedException(); } + public static void PassThroughx(Int32 token) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelTransferxOES")] - public static void PixelTransferx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new NotImplementedException(); } + public static void PixelTransferx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelZoomxOES")] - public static void PixelZoomx(Int32 xfactor, Int32 yfactor) { throw new NotImplementedException(); } + public static void PixelZoomx(Int32 xfactor, Int32 yfactor) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPointParameterxOES")] - public static void PointParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new NotImplementedException(); } + public static void PointParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPointParameterxvOES")] [CLSCompliant(false)] - public static void PointParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void PointParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPointParameterxvOES")] [CLSCompliant(false)] - public static unsafe void PointParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void PointParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPointSizexOES")] - public static void PointSizex(Int32 size) { throw new NotImplementedException(); } + public static void PointSizex(Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPolygonOffsetxOES")] - public static void PolygonOffsetx(Int32 factor, Int32 units) { throw new NotImplementedException(); } + public static void PolygonOffsetx(Int32 factor, Int32 units) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -136432,7 +136432,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")] [CLSCompliant(false)] - public static void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures, [CountAttribute(Parameter = "n")] Int32[] priorities) { throw new NotImplementedException(); } + public static void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures, [CountAttribute(Parameter = "n")] Int32[] priorities) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -136440,7 +136440,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")] [CLSCompliant(false)] - public static void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures, [CountAttribute(Parameter = "n")] ref Int32 priorities) { throw new NotImplementedException(); } + public static void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures, [CountAttribute(Parameter = "n")] ref Int32 priorities) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -136448,7 +136448,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")] [CLSCompliant(false)] - public static unsafe void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures, [CountAttribute(Parameter = "n")] Int32* priorities) { throw new NotImplementedException(); } + public static unsafe void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures, [CountAttribute(Parameter = "n")] Int32* priorities) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -136456,7 +136456,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")] [CLSCompliant(false)] - public static void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures, [CountAttribute(Parameter = "n")] Int32[] priorities) { throw new NotImplementedException(); } + public static void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures, [CountAttribute(Parameter = "n")] Int32[] priorities) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -136464,7 +136464,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")] [CLSCompliant(false)] - public static void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures, [CountAttribute(Parameter = "n")] ref Int32 priorities) { throw new NotImplementedException(); } + public static void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures, [CountAttribute(Parameter = "n")] ref Int32 priorities) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -136472,77 +136472,77 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")] [CLSCompliant(false)] - public static unsafe void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures, [CountAttribute(Parameter = "n")] Int32* priorities) { throw new NotImplementedException(); } + public static unsafe void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures, [CountAttribute(Parameter = "n")] Int32* priorities) { throw new BindingsNotRewrittenException(); } /// [requires: OES_query_matrix] /// [length: 16] /// [length: 16] [AutoGenerated(Category = "OES_query_matrix", Version = "", EntryPoint = "glQueryMatrixxOES")] [CLSCompliant(false)] - public static Int32 QueryMatrixx([OutAttribute, CountAttribute(Count = 16)] Int32[] mantissa, [OutAttribute, CountAttribute(Count = 16)] Int32[] exponent) { throw new NotImplementedException(); } + public static Int32 QueryMatrixx([OutAttribute, CountAttribute(Count = 16)] Int32[] mantissa, [OutAttribute, CountAttribute(Count = 16)] Int32[] exponent) { throw new BindingsNotRewrittenException(); } /// [requires: OES_query_matrix] /// [length: 16] /// [length: 16] [AutoGenerated(Category = "OES_query_matrix", Version = "", EntryPoint = "glQueryMatrixxOES")] [CLSCompliant(false)] - public static Int32 QueryMatrixx([OutAttribute, CountAttribute(Count = 16)] out Int32 mantissa, [OutAttribute, CountAttribute(Count = 16)] out Int32 exponent) { throw new NotImplementedException(); } + public static Int32 QueryMatrixx([OutAttribute, CountAttribute(Count = 16)] out Int32 mantissa, [OutAttribute, CountAttribute(Count = 16)] out Int32 exponent) { throw new BindingsNotRewrittenException(); } /// [requires: OES_query_matrix] /// [length: 16] /// [length: 16] [AutoGenerated(Category = "OES_query_matrix", Version = "", EntryPoint = "glQueryMatrixxOES")] [CLSCompliant(false)] - public static unsafe Int32 QueryMatrixx([OutAttribute, CountAttribute(Count = 16)] Int32* mantissa, [OutAttribute, CountAttribute(Count = 16)] Int32* exponent) { throw new NotImplementedException(); } + public static unsafe Int32 QueryMatrixx([OutAttribute, CountAttribute(Count = 16)] Int32* mantissa, [OutAttribute, CountAttribute(Count = 16)] Int32* exponent) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos2xOES")] - public static void RasterPos2x(Int32 x, Int32 y) { throw new NotImplementedException(); } + public static void RasterPos2x(Int32 x, Int32 y) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos2xvOES")] [CLSCompliant(false)] - public static void RasterPos2x([CountAttribute(Count = 2)] Int32[] coords) { throw new NotImplementedException(); } + public static void RasterPos2x([CountAttribute(Count = 2)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos2xvOES")] [CLSCompliant(false)] - public static void RasterPos2x([CountAttribute(Count = 2)] ref Int32 coords) { throw new NotImplementedException(); } + public static void RasterPos2x([CountAttribute(Count = 2)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos2xvOES")] [CLSCompliant(false)] - public static unsafe void RasterPos2x([CountAttribute(Count = 2)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void RasterPos2x([CountAttribute(Count = 2)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos3xOES")] - public static void RasterPos3x(Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void RasterPos3x(Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos3xvOES")] [CLSCompliant(false)] - public static void RasterPos3x([CountAttribute(Count = 3)] Int32[] coords) { throw new NotImplementedException(); } + public static void RasterPos3x([CountAttribute(Count = 3)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos3xvOES")] [CLSCompliant(false)] - public static void RasterPos3x([CountAttribute(Count = 3)] ref Int32 coords) { throw new NotImplementedException(); } + public static void RasterPos3x([CountAttribute(Count = 3)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos3xvOES")] [CLSCompliant(false)] - public static unsafe void RasterPos3x([CountAttribute(Count = 3)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void RasterPos3x([CountAttribute(Count = 3)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -136550,25 +136550,25 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos4xOES")] - public static void RasterPos4x(Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } + public static void RasterPos4x(Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos4xvOES")] [CLSCompliant(false)] - public static void RasterPos4x([CountAttribute(Count = 4)] Int32[] coords) { throw new NotImplementedException(); } + public static void RasterPos4x([CountAttribute(Count = 4)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos4xvOES")] [CLSCompliant(false)] - public static void RasterPos4x([CountAttribute(Count = 4)] ref Int32 coords) { throw new NotImplementedException(); } + public static void RasterPos4x([CountAttribute(Count = 4)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos4xvOES")] [CLSCompliant(false)] - public static unsafe void RasterPos4x([CountAttribute(Count = 4)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void RasterPos4x([CountAttribute(Count = 4)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -136576,28 +136576,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRectxOES")] - public static void Rectx(Int32 x1, Int32 y1, Int32 x2, Int32 y2) { throw new NotImplementedException(); } + public static void Rectx(Int32 x1, Int32 y1, Int32 x2, Int32 y2) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRectxvOES")] [CLSCompliant(false)] - public static void Rectx([CountAttribute(Count = 2)] Int32[] v1, [CountAttribute(Count = 2)] Int32[] v2) { throw new NotImplementedException(); } + public static void Rectx([CountAttribute(Count = 2)] Int32[] v1, [CountAttribute(Count = 2)] Int32[] v2) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRectxvOES")] [CLSCompliant(false)] - public static void Rectx([CountAttribute(Count = 2)] ref Int32 v1, [CountAttribute(Count = 2)] ref Int32 v2) { throw new NotImplementedException(); } + public static void Rectx([CountAttribute(Count = 2)] ref Int32 v1, [CountAttribute(Count = 2)] ref Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRectxvOES")] [CLSCompliant(false)] - public static unsafe void Rectx([CountAttribute(Count = 2)] Int32* v1, [CountAttribute(Count = 2)] Int32* v2) { throw new NotImplementedException(); } + public static unsafe void Rectx([CountAttribute(Count = 2)] Int32* v1, [CountAttribute(Count = 2)] Int32* v2) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -136605,20 +136605,20 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRotatexOES")] - public static void Rotatex(Int32 angle, Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void Rotatex(Int32 angle, Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glSampleCoveragexOES")] - public static void SampleCoveragex(Int32 value, bool invert) { throw new NotImplementedException(); } + public static void SampleCoveragex(Int32 value, bool invert) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glScalexOES")] - public static void Scalex(Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void Scalex(Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136628,7 +136628,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord1bOES")] [CLSCompliant(false)] - public static void TexCoord1(Byte s) { throw new NotImplementedException(); } + public static void TexCoord1(Byte s) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136638,7 +136638,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord1bOES")] [CLSCompliant(false)] - public static void TexCoord1(SByte s) { throw new NotImplementedException(); } + public static void TexCoord1(SByte s) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136648,7 +136648,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord1bvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord1([CountAttribute(Count = 1)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord1([CountAttribute(Count = 1)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136658,18 +136658,18 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord1bvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord1([CountAttribute(Count = 1)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord1([CountAttribute(Count = 1)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord1xOES")] - public static void TexCoord1x(Int32 s) { throw new NotImplementedException(); } + public static void TexCoord1x(Int32 s) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 1] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord1xvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord1x([CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord1x([CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136682,7 +136682,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bOES")] [CLSCompliant(false)] - public static void TexCoord2(Byte s, Byte t) { throw new NotImplementedException(); } + public static void TexCoord2(Byte s, Byte t) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136695,7 +136695,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bOES")] [CLSCompliant(false)] - public static void TexCoord2(SByte s, SByte t) { throw new NotImplementedException(); } + public static void TexCoord2(SByte s, SByte t) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136705,7 +136705,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")] [CLSCompliant(false)] - public static void TexCoord2([CountAttribute(Count = 2)] Byte[] coords) { throw new NotImplementedException(); } + public static void TexCoord2([CountAttribute(Count = 2)] Byte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136715,7 +136715,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")] [CLSCompliant(false)] - public static void TexCoord2([CountAttribute(Count = 2)] ref Byte coords) { throw new NotImplementedException(); } + public static void TexCoord2([CountAttribute(Count = 2)] ref Byte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136725,7 +136725,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord2([CountAttribute(Count = 2)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord2([CountAttribute(Count = 2)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136735,7 +136735,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")] [CLSCompliant(false)] - public static void TexCoord2([CountAttribute(Count = 2)] SByte[] coords) { throw new NotImplementedException(); } + public static void TexCoord2([CountAttribute(Count = 2)] SByte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136745,7 +136745,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")] [CLSCompliant(false)] - public static void TexCoord2([CountAttribute(Count = 2)] ref SByte coords) { throw new NotImplementedException(); } + public static void TexCoord2([CountAttribute(Count = 2)] ref SByte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136755,31 +136755,31 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord2([CountAttribute(Count = 2)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord2([CountAttribute(Count = 2)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord2xOES")] - public static void TexCoord2x(Int32 s, Int32 t) { throw new NotImplementedException(); } + public static void TexCoord2x(Int32 s, Int32 t) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord2xvOES")] [CLSCompliant(false)] - public static void TexCoord2x([CountAttribute(Count = 2)] Int32[] coords) { throw new NotImplementedException(); } + public static void TexCoord2x([CountAttribute(Count = 2)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord2xvOES")] [CLSCompliant(false)] - public static void TexCoord2x([CountAttribute(Count = 2)] ref Int32 coords) { throw new NotImplementedException(); } + public static void TexCoord2x([CountAttribute(Count = 2)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord2xvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord2x([CountAttribute(Count = 2)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord2x([CountAttribute(Count = 2)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136795,7 +136795,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bOES")] [CLSCompliant(false)] - public static void TexCoord3(Byte s, Byte t, Byte r) { throw new NotImplementedException(); } + public static void TexCoord3(Byte s, Byte t, Byte r) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136811,7 +136811,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bOES")] [CLSCompliant(false)] - public static void TexCoord3(SByte s, SByte t, SByte r) { throw new NotImplementedException(); } + public static void TexCoord3(SByte s, SByte t, SByte r) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136821,7 +136821,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")] [CLSCompliant(false)] - public static void TexCoord3([CountAttribute(Count = 3)] Byte[] coords) { throw new NotImplementedException(); } + public static void TexCoord3([CountAttribute(Count = 3)] Byte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136831,7 +136831,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")] [CLSCompliant(false)] - public static void TexCoord3([CountAttribute(Count = 3)] ref Byte coords) { throw new NotImplementedException(); } + public static void TexCoord3([CountAttribute(Count = 3)] ref Byte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136841,7 +136841,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord3([CountAttribute(Count = 3)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord3([CountAttribute(Count = 3)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136851,7 +136851,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")] [CLSCompliant(false)] - public static void TexCoord3([CountAttribute(Count = 3)] SByte[] coords) { throw new NotImplementedException(); } + public static void TexCoord3([CountAttribute(Count = 3)] SByte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136861,7 +136861,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")] [CLSCompliant(false)] - public static void TexCoord3([CountAttribute(Count = 3)] ref SByte coords) { throw new NotImplementedException(); } + public static void TexCoord3([CountAttribute(Count = 3)] ref SByte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136871,32 +136871,32 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord3([CountAttribute(Count = 3)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord3([CountAttribute(Count = 3)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord3xOES")] - public static void TexCoord3x(Int32 s, Int32 t, Int32 r) { throw new NotImplementedException(); } + public static void TexCoord3x(Int32 s, Int32 t, Int32 r) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord3xvOES")] [CLSCompliant(false)] - public static void TexCoord3x([CountAttribute(Count = 3)] Int32[] coords) { throw new NotImplementedException(); } + public static void TexCoord3x([CountAttribute(Count = 3)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord3xvOES")] [CLSCompliant(false)] - public static void TexCoord3x([CountAttribute(Count = 3)] ref Int32 coords) { throw new NotImplementedException(); } + public static void TexCoord3x([CountAttribute(Count = 3)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord3xvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord3x([CountAttribute(Count = 3)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord3x([CountAttribute(Count = 3)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136915,7 +136915,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bOES")] [CLSCompliant(false)] - public static void TexCoord4(Byte s, Byte t, Byte r, Byte q) { throw new NotImplementedException(); } + public static void TexCoord4(Byte s, Byte t, Byte r, Byte q) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136934,7 +136934,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bOES")] [CLSCompliant(false)] - public static void TexCoord4(SByte s, SByte t, SByte r, SByte q) { throw new NotImplementedException(); } + public static void TexCoord4(SByte s, SByte t, SByte r, SByte q) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136944,7 +136944,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")] [CLSCompliant(false)] - public static void TexCoord4([CountAttribute(Count = 4)] Byte[] coords) { throw new NotImplementedException(); } + public static void TexCoord4([CountAttribute(Count = 4)] Byte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136954,7 +136954,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")] [CLSCompliant(false)] - public static void TexCoord4([CountAttribute(Count = 4)] ref Byte coords) { throw new NotImplementedException(); } + public static void TexCoord4([CountAttribute(Count = 4)] ref Byte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136964,7 +136964,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord4([CountAttribute(Count = 4)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord4([CountAttribute(Count = 4)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136974,7 +136974,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")] [CLSCompliant(false)] - public static void TexCoord4([CountAttribute(Count = 4)] SByte[] coords) { throw new NotImplementedException(); } + public static void TexCoord4([CountAttribute(Count = 4)] SByte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136984,7 +136984,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")] [CLSCompliant(false)] - public static void TexCoord4([CountAttribute(Count = 4)] ref SByte coords) { throw new NotImplementedException(); } + public static void TexCoord4([CountAttribute(Count = 4)] ref SByte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136994,7 +136994,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord4([CountAttribute(Count = 4)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord4([CountAttribute(Count = 4)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -137002,32 +137002,32 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord4xOES")] - public static void TexCoord4x(Int32 s, Int32 t, Int32 r, Int32 q) { throw new NotImplementedException(); } + public static void TexCoord4x(Int32 s, Int32 t, Int32 r, Int32 q) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord4xvOES")] [CLSCompliant(false)] - public static void TexCoord4x([CountAttribute(Count = 4)] Int32[] coords) { throw new NotImplementedException(); } + public static void TexCoord4x([CountAttribute(Count = 4)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord4xvOES")] [CLSCompliant(false)] - public static void TexCoord4x([CountAttribute(Count = 4)] ref Int32 coords) { throw new NotImplementedException(); } + public static void TexCoord4x([CountAttribute(Count = 4)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord4xvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord4x([CountAttribute(Count = 4)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord4x([CountAttribute(Count = 4)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexEnvxOES")] - public static void TexEnvx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new NotImplementedException(); } + public static void TexEnvx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -137035,7 +137035,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexEnvxvOES")] [CLSCompliant(false)] - public static void TexEnvx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexEnvx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -137043,14 +137043,14 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexEnvxvOES")] [CLSCompliant(false)] - public static unsafe void TexEnvx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexEnvx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexGenxOES")] - public static void TexGenx(OpenTK.Graphics.OpenGL.OesFixedPoint coord, OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new NotImplementedException(); } + public static void TexGenx(OpenTK.Graphics.OpenGL.OesFixedPoint coord, OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -137058,7 +137058,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexGenxvOES")] [CLSCompliant(false)] - public static void TexGenx(OpenTK.Graphics.OpenGL.OesFixedPoint coord, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexGenx(OpenTK.Graphics.OpenGL.OesFixedPoint coord, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -137066,14 +137066,14 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexGenxvOES")] [CLSCompliant(false)] - public static unsafe void TexGenx(OpenTK.Graphics.OpenGL.OesFixedPoint coord, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexGenx(OpenTK.Graphics.OpenGL.OesFixedPoint coord, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexParameterxOES")] - public static void TexParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new NotImplementedException(); } + public static void TexParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -137081,7 +137081,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexParameterxvOES")] [CLSCompliant(false)] - public static void TexParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -137089,14 +137089,14 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexParameterxvOES")] [CLSCompliant(false)] - public static unsafe void TexParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTranslatexOES")] - public static void Translatex(Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void Translatex(Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137109,7 +137109,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bOES")] [CLSCompliant(false)] - public static void Vertex2(Byte x, Byte y) { throw new NotImplementedException(); } + public static void Vertex2(Byte x, Byte y) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137122,7 +137122,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bOES")] [CLSCompliant(false)] - public static void Vertex2(SByte x, SByte y) { throw new NotImplementedException(); } + public static void Vertex2(SByte x, SByte y) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137132,7 +137132,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bvOES")] [CLSCompliant(false)] - public static void Vertex2([CountAttribute(Count = 2)] Byte[] coords) { throw new NotImplementedException(); } + public static void Vertex2([CountAttribute(Count = 2)] Byte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137142,7 +137142,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bvOES")] [CLSCompliant(false)] - public static void Vertex2([CountAttribute(Count = 2)] ref Byte coords) { throw new NotImplementedException(); } + public static void Vertex2([CountAttribute(Count = 2)] ref Byte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137152,7 +137152,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bvOES")] [CLSCompliant(false)] - public static unsafe void Vertex2([CountAttribute(Count = 2)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void Vertex2([CountAttribute(Count = 2)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137162,7 +137162,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bvOES")] [CLSCompliant(false)] - public static void Vertex2([CountAttribute(Count = 2)] SByte[] coords) { throw new NotImplementedException(); } + public static void Vertex2([CountAttribute(Count = 2)] SByte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137172,7 +137172,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bvOES")] [CLSCompliant(false)] - public static void Vertex2([CountAttribute(Count = 2)] ref SByte coords) { throw new NotImplementedException(); } + public static void Vertex2([CountAttribute(Count = 2)] ref SByte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137182,24 +137182,24 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bvOES")] [CLSCompliant(false)] - public static unsafe void Vertex2([CountAttribute(Count = 2)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void Vertex2([CountAttribute(Count = 2)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex2xOES")] - public static void Vertex2x(Int32 x) { throw new NotImplementedException(); } + public static void Vertex2x(Int32 x) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex2xvOES")] [CLSCompliant(false)] - public static void Vertex2x([CountAttribute(Count = 2)] Int32[] coords) { throw new NotImplementedException(); } + public static void Vertex2x([CountAttribute(Count = 2)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex2xvOES")] [CLSCompliant(false)] - public static unsafe void Vertex2x([CountAttribute(Count = 2)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void Vertex2x([CountAttribute(Count = 2)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137215,7 +137215,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bOES")] [CLSCompliant(false)] - public static void Vertex3(Byte x, Byte y, Byte z) { throw new NotImplementedException(); } + public static void Vertex3(Byte x, Byte y, Byte z) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137231,7 +137231,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bOES")] [CLSCompliant(false)] - public static void Vertex3(SByte x, SByte y, SByte z) { throw new NotImplementedException(); } + public static void Vertex3(SByte x, SByte y, SByte z) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137241,7 +137241,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")] [CLSCompliant(false)] - public static void Vertex3([CountAttribute(Count = 3)] Byte[] coords) { throw new NotImplementedException(); } + public static void Vertex3([CountAttribute(Count = 3)] Byte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137251,7 +137251,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")] [CLSCompliant(false)] - public static void Vertex3([CountAttribute(Count = 3)] ref Byte coords) { throw new NotImplementedException(); } + public static void Vertex3([CountAttribute(Count = 3)] ref Byte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137261,7 +137261,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")] [CLSCompliant(false)] - public static unsafe void Vertex3([CountAttribute(Count = 3)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void Vertex3([CountAttribute(Count = 3)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137271,7 +137271,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")] [CLSCompliant(false)] - public static void Vertex3([CountAttribute(Count = 3)] SByte[] coords) { throw new NotImplementedException(); } + public static void Vertex3([CountAttribute(Count = 3)] SByte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137281,7 +137281,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")] [CLSCompliant(false)] - public static void Vertex3([CountAttribute(Count = 3)] ref SByte coords) { throw new NotImplementedException(); } + public static void Vertex3([CountAttribute(Count = 3)] ref SByte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137291,31 +137291,31 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")] [CLSCompliant(false)] - public static unsafe void Vertex3([CountAttribute(Count = 3)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void Vertex3([CountAttribute(Count = 3)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex3xOES")] - public static void Vertex3x(Int32 x, Int32 y) { throw new NotImplementedException(); } + public static void Vertex3x(Int32 x, Int32 y) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex3xvOES")] [CLSCompliant(false)] - public static void Vertex3x([CountAttribute(Count = 3)] Int32[] coords) { throw new NotImplementedException(); } + public static void Vertex3x([CountAttribute(Count = 3)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex3xvOES")] [CLSCompliant(false)] - public static void Vertex3x([CountAttribute(Count = 3)] ref Int32 coords) { throw new NotImplementedException(); } + public static void Vertex3x([CountAttribute(Count = 3)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex3xvOES")] [CLSCompliant(false)] - public static unsafe void Vertex3x([CountAttribute(Count = 3)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void Vertex3x([CountAttribute(Count = 3)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137334,7 +137334,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bOES")] [CLSCompliant(false)] - public static void Vertex4(Byte x, Byte y, Byte z, Byte w) { throw new NotImplementedException(); } + public static void Vertex4(Byte x, Byte y, Byte z, Byte w) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137353,7 +137353,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bOES")] [CLSCompliant(false)] - public static void Vertex4(SByte x, SByte y, SByte z, SByte w) { throw new NotImplementedException(); } + public static void Vertex4(SByte x, SByte y, SByte z, SByte w) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137363,7 +137363,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")] [CLSCompliant(false)] - public static void Vertex4([CountAttribute(Count = 4)] Byte[] coords) { throw new NotImplementedException(); } + public static void Vertex4([CountAttribute(Count = 4)] Byte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137373,7 +137373,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")] [CLSCompliant(false)] - public static void Vertex4([CountAttribute(Count = 4)] ref Byte coords) { throw new NotImplementedException(); } + public static void Vertex4([CountAttribute(Count = 4)] ref Byte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137383,7 +137383,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")] [CLSCompliant(false)] - public static unsafe void Vertex4([CountAttribute(Count = 4)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void Vertex4([CountAttribute(Count = 4)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137393,7 +137393,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")] [CLSCompliant(false)] - public static void Vertex4([CountAttribute(Count = 4)] SByte[] coords) { throw new NotImplementedException(); } + public static void Vertex4([CountAttribute(Count = 4)] SByte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137403,7 +137403,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")] [CLSCompliant(false)] - public static void Vertex4([CountAttribute(Count = 4)] ref SByte coords) { throw new NotImplementedException(); } + public static void Vertex4([CountAttribute(Count = 4)] ref SByte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137413,32 +137413,32 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")] [CLSCompliant(false)] - public static unsafe void Vertex4([CountAttribute(Count = 4)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void Vertex4([CountAttribute(Count = 4)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex4xOES")] - public static void Vertex4x(Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void Vertex4x(Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex4xvOES")] [CLSCompliant(false)] - public static void Vertex4x([CountAttribute(Count = 4)] Int32[] coords) { throw new NotImplementedException(); } + public static void Vertex4x([CountAttribute(Count = 4)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex4xvOES")] [CLSCompliant(false)] - public static void Vertex4x([CountAttribute(Count = 4)] ref Int32 coords) { throw new NotImplementedException(); } + public static void Vertex4x([CountAttribute(Count = 4)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex4xvOES")] [CLSCompliant(false)] - public static unsafe void Vertex4x([CountAttribute(Count = 4)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void Vertex4x([CountAttribute(Count = 4)] Int32* coords) { throw new BindingsNotRewrittenException(); } } @@ -137453,7 +137453,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OVR_multiview", Version = "", EntryPoint = "glFramebufferTextureMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultiview(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultiview(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview] /// @@ -137464,7 +137464,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OVR_multiview", Version = "", EntryPoint = "glFramebufferTextureMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultiview(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultiview(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } } @@ -137480,7 +137480,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a symbolic constant indicating the desired behavior. Fastest, Nicest, and DontCare are accepted. /// [AutoGenerated(Category = "PGI_misc_hints", Version = "", EntryPoint = "glHintPGI")] - public static void Hint(OpenTK.Graphics.OpenGL.PgiMiscHints target, Int32 mode) { throw new NotImplementedException(); } + public static void Hint(OpenTK.Graphics.OpenGL.PgiMiscHints target, Int32 mode) { throw new BindingsNotRewrittenException(); } } @@ -137500,7 +137500,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableParameterfvSGI")] [CLSCompliant(false)] - public static void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Set color lookup table parameters @@ -137516,7 +137516,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableParameterfvSGI")] [CLSCompliant(false)] - public static void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi pname, [CountAttribute(Computed = "pname")] ref Single @params) { throw new NotImplementedException(); } + public static void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi pname, [CountAttribute(Computed = "pname")] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Set color lookup table parameters @@ -137532,7 +137532,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableParameterfvSGI")] [CLSCompliant(false)] - public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Set color lookup table parameters @@ -137549,7 +137549,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ColorTableTargetSgi overload instead")] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableParameterfvSGI")] [CLSCompliant(false)] - public static void ColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void ColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Set color lookup table parameters @@ -137566,7 +137566,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ColorTableTargetSgi overload instead")] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableParameterfvSGI")] [CLSCompliant(false)] - public static void ColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [CountAttribute(Computed = "pname")] ref Single @params) { throw new NotImplementedException(); } + public static void ColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [CountAttribute(Computed = "pname")] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Set color lookup table parameters @@ -137583,7 +137583,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ColorTableTargetSgi overload instead")] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableParameterfvSGI")] [CLSCompliant(false)] - public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Set color lookup table parameters @@ -137599,7 +137599,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableParameterivSGI")] [CLSCompliant(false)] - public static void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Set color lookup table parameters @@ -137615,7 +137615,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableParameterivSGI")] [CLSCompliant(false)] - public static void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Set color lookup table parameters @@ -137631,7 +137631,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableParameterivSGI")] [CLSCompliant(false)] - public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Set color lookup table parameters @@ -137648,7 +137648,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ColorTableTargetSgi overload instead")] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableParameterivSGI")] [CLSCompliant(false)] - public static void ColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void ColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Set color lookup table parameters @@ -137665,7 +137665,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ColorTableTargetSgi overload instead")] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableParameterivSGI")] [CLSCompliant(false)] - public static void ColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void ColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Set color lookup table parameters @@ -137682,7 +137682,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ColorTableTargetSgi overload instead")] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableParameterivSGI")] [CLSCompliant(false)] - public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Define a color lookup table @@ -137706,7 +137706,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a one-dimensional array of pixel data that is processed to build the color table. /// [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableSGI")] - public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr table) { throw new NotImplementedException(); } + public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr table) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Define a color lookup table @@ -137733,7 +137733,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[] table) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Define a color lookup table @@ -137760,7 +137760,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,] table) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Define a color lookup table @@ -137787,7 +137787,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,,] table) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Define a color lookup table @@ -137813,7 +137813,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableSGI")] public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T5 table) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Define a color lookup table @@ -137838,7 +137838,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ColorTableTargetSgi overload instead")] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableSGI")] - public static void ColorTable(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr table) { throw new NotImplementedException(); } + public static void ColorTable(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr table) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Define a color lookup table @@ -137866,7 +137866,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorTable(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[] table) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Define a color lookup table @@ -137894,7 +137894,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorTable(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,] table) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Define a color lookup table @@ -137922,7 +137922,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorTable(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,,] table) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Define a color lookup table @@ -137949,7 +137949,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableSGI")] public static void ColorTable(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T5 table) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Copy pixels into a color table @@ -137970,7 +137970,7 @@ namespace OpenTK.Graphics.OpenGL /// The width of the pixel rectangle. /// [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glCopyColorTableSGI")] - public static void CopyColorTable(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyColorTable(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Copy pixels into a color table @@ -137992,7 +137992,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ColorTableTargetSgi overload instead")] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glCopyColorTableSGI")] - public static void CopyColorTable(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyColorTable(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Get color lookup table parameters @@ -138008,7 +138008,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glGetColorTableParameterfvSGI")] [CLSCompliant(false)] - public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Get color lookup table parameters @@ -138024,7 +138024,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glGetColorTableParameterfvSGI")] [CLSCompliant(false)] - public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Get color lookup table parameters @@ -138040,7 +138040,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glGetColorTableParameterfvSGI")] [CLSCompliant(false)] - public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Get color lookup table parameters @@ -138057,7 +138057,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ColorTableTargetSgi overload instead")] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glGetColorTableParameterfvSGI")] [CLSCompliant(false)] - public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Get color lookup table parameters @@ -138074,7 +138074,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ColorTableTargetSgi overload instead")] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glGetColorTableParameterfvSGI")] [CLSCompliant(false)] - public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Get color lookup table parameters @@ -138091,7 +138091,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ColorTableTargetSgi overload instead")] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glGetColorTableParameterfvSGI")] [CLSCompliant(false)] - public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Get color lookup table parameters @@ -138107,7 +138107,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glGetColorTableParameterivSGI")] [CLSCompliant(false)] - public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Get color lookup table parameters @@ -138123,7 +138123,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glGetColorTableParameterivSGI")] [CLSCompliant(false)] - public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Get color lookup table parameters @@ -138139,7 +138139,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glGetColorTableParameterivSGI")] [CLSCompliant(false)] - public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Get color lookup table parameters @@ -138156,7 +138156,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ColorTableTargetSgi overload instead")] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glGetColorTableParameterivSGI")] [CLSCompliant(false)] - public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Get color lookup table parameters @@ -138173,7 +138173,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ColorTableTargetSgi overload instead")] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glGetColorTableParameterivSGI")] [CLSCompliant(false)] - public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Get color lookup table parameters @@ -138190,7 +138190,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ColorTableTargetSgi overload instead")] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glGetColorTableParameterivSGI")] [CLSCompliant(false)] - public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Retrieve contents of a color lookup table @@ -138208,7 +138208,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a one-dimensional array of pixel data containing the contents of the color table. /// [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glGetColorTableSGI")] - public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr table) { throw new NotImplementedException(); } + public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr table) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Retrieve contents of a color lookup table @@ -138229,7 +138229,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[] table) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Retrieve contents of a color lookup table @@ -138250,7 +138250,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,] table) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Retrieve contents of a color lookup table @@ -138271,7 +138271,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,,] table) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Retrieve contents of a color lookup table @@ -138291,7 +138291,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glGetColorTableSGI")] public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T3 table) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Retrieve contents of a color lookup table @@ -138310,7 +138310,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ColorTableTargetSgi overload instead")] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glGetColorTableSGI")] - public static void GetColorTable(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr table) { throw new NotImplementedException(); } + public static void GetColorTable(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr table) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Retrieve contents of a color lookup table @@ -138332,7 +138332,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[] table) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Retrieve contents of a color lookup table @@ -138354,7 +138354,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,] table) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Retrieve contents of a color lookup table @@ -138376,7 +138376,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,,] table) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Retrieve contents of a color lookup table @@ -138397,7 +138397,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glGetColorTableSGI")] public static void GetColorTable(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T3 table) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } } @@ -138409,7 +138409,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n*2] [AutoGenerated(Category = "SGIS_detail_texture", Version = "", EntryPoint = "glDetailTexFuncSGIS")] [CLSCompliant(false)] - public static void DetailTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [CountAttribute(Parameter = "n*2")] Single[] points) { throw new NotImplementedException(); } + public static void DetailTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [CountAttribute(Parameter = "n*2")] Single[] points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_detail_texture] /// @@ -138417,7 +138417,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n*2] [AutoGenerated(Category = "SGIS_detail_texture", Version = "", EntryPoint = "glDetailTexFuncSGIS")] [CLSCompliant(false)] - public static void DetailTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [CountAttribute(Parameter = "n*2")] ref Single points) { throw new NotImplementedException(); } + public static void DetailTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [CountAttribute(Parameter = "n*2")] ref Single points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_detail_texture] /// @@ -138425,112 +138425,112 @@ namespace OpenTK.Graphics.OpenGL /// [length: n*2] [AutoGenerated(Category = "SGIS_detail_texture", Version = "", EntryPoint = "glDetailTexFuncSGIS")] [CLSCompliant(false)] - public static unsafe void DetailTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [CountAttribute(Parameter = "n*2")] Single* points) { throw new NotImplementedException(); } + public static unsafe void DetailTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [CountAttribute(Parameter = "n*2")] Single* points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_fog_function] /// /// [length: n*2] [AutoGenerated(Category = "SGIS_fog_function", Version = "", EntryPoint = "glFogFuncSGIS")] [CLSCompliant(false)] - public static void FogFunc(Int32 n, [CountAttribute(Parameter = "n*2")] Single[] points) { throw new NotImplementedException(); } + public static void FogFunc(Int32 n, [CountAttribute(Parameter = "n*2")] Single[] points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_fog_function] /// /// [length: n*2] [AutoGenerated(Category = "SGIS_fog_function", Version = "", EntryPoint = "glFogFuncSGIS")] [CLSCompliant(false)] - public static void FogFunc(Int32 n, [CountAttribute(Parameter = "n*2")] ref Single points) { throw new NotImplementedException(); } + public static void FogFunc(Int32 n, [CountAttribute(Parameter = "n*2")] ref Single points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_fog_function] /// /// [length: n*2] [AutoGenerated(Category = "SGIS_fog_function", Version = "", EntryPoint = "glFogFuncSGIS")] [CLSCompliant(false)] - public static unsafe void FogFunc(Int32 n, [CountAttribute(Parameter = "n*2")] Single* points) { throw new NotImplementedException(); } + public static unsafe void FogFunc(Int32 n, [CountAttribute(Parameter = "n*2")] Single* points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_detail_texture] /// [AutoGenerated(Category = "SGIS_detail_texture", Version = "", EntryPoint = "glGetDetailTexFuncSGIS")] [CLSCompliant(false)] - public static Single GetDetailTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target) { throw new NotImplementedException(); } + public static Single GetDetailTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_detail_texture] /// /// [length: COMPSIZE(target)] [AutoGenerated(Category = "SGIS_detail_texture", Version = "", EntryPoint = "glGetDetailTexFuncSGIS")] [CLSCompliant(false)] - public static void GetDetailTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, [OutAttribute, CountAttribute(Computed = "target")] Single[] points) { throw new NotImplementedException(); } + public static void GetDetailTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, [OutAttribute, CountAttribute(Computed = "target")] Single[] points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_detail_texture] /// /// [length: COMPSIZE(target)] [AutoGenerated(Category = "SGIS_detail_texture", Version = "", EntryPoint = "glGetDetailTexFuncSGIS")] [CLSCompliant(false)] - public static void GetDetailTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, [OutAttribute, CountAttribute(Computed = "target")] out Single points) { throw new NotImplementedException(); } + public static void GetDetailTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, [OutAttribute, CountAttribute(Computed = "target")] out Single points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_detail_texture] /// /// [length: COMPSIZE(target)] [AutoGenerated(Category = "SGIS_detail_texture", Version = "", EntryPoint = "glGetDetailTexFuncSGIS")] [CLSCompliant(false)] - public static unsafe void GetDetailTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, [OutAttribute, CountAttribute(Computed = "target")] Single* points) { throw new NotImplementedException(); } + public static unsafe void GetDetailTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, [OutAttribute, CountAttribute(Computed = "target")] Single* points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_fog_function] [AutoGenerated(Category = "SGIS_fog_function", Version = "", EntryPoint = "glGetFogFuncSGIS")] [CLSCompliant(false)] - public static Single GetFogFunc() { throw new NotImplementedException(); } + public static Single GetFogFunc() { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_fog_function] /// [length: COMPSIZE()] [AutoGenerated(Category = "SGIS_fog_function", Version = "", EntryPoint = "glGetFogFuncSGIS")] [CLSCompliant(false)] - public static void GetFogFunc([OutAttribute, CountAttribute(Computed = "")] Single[] points) { throw new NotImplementedException(); } + public static void GetFogFunc([OutAttribute, CountAttribute(Computed = "")] Single[] points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_fog_function] /// [length: COMPSIZE()] [AutoGenerated(Category = "SGIS_fog_function", Version = "", EntryPoint = "glGetFogFuncSGIS")] [CLSCompliant(false)] - public static void GetFogFunc([OutAttribute, CountAttribute(Computed = "")] out Single points) { throw new NotImplementedException(); } + public static void GetFogFunc([OutAttribute, CountAttribute(Computed = "")] out Single points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_fog_function] /// [length: COMPSIZE()] [AutoGenerated(Category = "SGIS_fog_function", Version = "", EntryPoint = "glGetFogFuncSGIS")] [CLSCompliant(false)] - public static unsafe void GetFogFunc([OutAttribute, CountAttribute(Computed = "")] Single* points) { throw new NotImplementedException(); } + public static unsafe void GetFogFunc([OutAttribute, CountAttribute(Computed = "")] Single* points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glGetPixelTexGenParameterfvSGIS")] [CLSCompliant(false)] - public static Single GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname) { throw new NotImplementedException(); } + public static Single GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// [Obsolete("Use PixelTexGenParameterNameSgis overload instead")] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glGetPixelTexGenParameterfvSGIS")] [CLSCompliant(false)] - public static Single GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname) { throw new NotImplementedException(); } + public static Single GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glGetPixelTexGenParameterfvSGIS")] [CLSCompliant(false)] - public static void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glGetPixelTexGenParameterfvSGIS")] [CLSCompliant(false)] - public static void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glGetPixelTexGenParameterfvSGIS")] [CLSCompliant(false)] - public static unsafe void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// @@ -138538,7 +138538,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PixelTexGenParameterNameSgis overload instead")] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glGetPixelTexGenParameterfvSGIS")] [CLSCompliant(false)] - public static void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// @@ -138546,7 +138546,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PixelTexGenParameterNameSgis overload instead")] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glGetPixelTexGenParameterfvSGIS")] [CLSCompliant(false)] - public static void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// @@ -138554,28 +138554,28 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PixelTexGenParameterNameSgis overload instead")] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glGetPixelTexGenParameterfvSGIS")] [CLSCompliant(false)] - public static unsafe void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glGetPixelTexGenParameterivSGIS")] [CLSCompliant(false)] - public static void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glGetPixelTexGenParameterivSGIS")] [CLSCompliant(false)] - public static void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glGetPixelTexGenParameterivSGIS")] [CLSCompliant(false)] - public static unsafe void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// @@ -138583,7 +138583,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PixelTexGenParameterNameSgis overload instead")] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glGetPixelTexGenParameterivSGIS")] [CLSCompliant(false)] - public static void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// @@ -138591,7 +138591,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PixelTexGenParameterNameSgis overload instead")] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glGetPixelTexGenParameterivSGIS")] [CLSCompliant(false)] - public static void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// @@ -138599,34 +138599,34 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PixelTexGenParameterNameSgis overload instead")] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glGetPixelTexGenParameterivSGIS")] [CLSCompliant(false)] - public static unsafe void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_sharpen_texture] /// [AutoGenerated(Category = "SGIS_sharpen_texture", Version = "", EntryPoint = "glGetSharpenTexFuncSGIS")] [CLSCompliant(false)] - public static Single GetSharpenTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target) { throw new NotImplementedException(); } + public static Single GetSharpenTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_sharpen_texture] /// /// [length: COMPSIZE(target)] [AutoGenerated(Category = "SGIS_sharpen_texture", Version = "", EntryPoint = "glGetSharpenTexFuncSGIS")] [CLSCompliant(false)] - public static void GetSharpenTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, [OutAttribute, CountAttribute(Computed = "target")] Single[] points) { throw new NotImplementedException(); } + public static void GetSharpenTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, [OutAttribute, CountAttribute(Computed = "target")] Single[] points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_sharpen_texture] /// /// [length: COMPSIZE(target)] [AutoGenerated(Category = "SGIS_sharpen_texture", Version = "", EntryPoint = "glGetSharpenTexFuncSGIS")] [CLSCompliant(false)] - public static void GetSharpenTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, [OutAttribute, CountAttribute(Computed = "target")] out Single points) { throw new NotImplementedException(); } + public static void GetSharpenTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, [OutAttribute, CountAttribute(Computed = "target")] out Single points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_sharpen_texture] /// /// [length: COMPSIZE(target)] [AutoGenerated(Category = "SGIS_sharpen_texture", Version = "", EntryPoint = "glGetSharpenTexFuncSGIS")] [CLSCompliant(false)] - public static unsafe void GetSharpenTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, [OutAttribute, CountAttribute(Computed = "target")] Single* points) { throw new NotImplementedException(); } + public static unsafe void GetSharpenTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, [OutAttribute, CountAttribute(Computed = "target")] Single* points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_texture_filter4] /// @@ -138634,7 +138634,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,filter)] [AutoGenerated(Category = "SGIS_texture_filter4", Version = "", EntryPoint = "glGetTexFilterFuncSGIS")] [CLSCompliant(false)] - public static void GetTexFilterFunc(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SgisTextureFilter4 filter, [OutAttribute, CountAttribute(Computed = "target,filter")] Single[] weights) { throw new NotImplementedException(); } + public static void GetTexFilterFunc(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SgisTextureFilter4 filter, [OutAttribute, CountAttribute(Computed = "target,filter")] Single[] weights) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_texture_filter4] /// @@ -138642,7 +138642,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,filter)] [AutoGenerated(Category = "SGIS_texture_filter4", Version = "", EntryPoint = "glGetTexFilterFuncSGIS")] [CLSCompliant(false)] - public static void GetTexFilterFunc(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SgisTextureFilter4 filter, [OutAttribute, CountAttribute(Computed = "target,filter")] out Single weights) { throw new NotImplementedException(); } + public static void GetTexFilterFunc(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SgisTextureFilter4 filter, [OutAttribute, CountAttribute(Computed = "target,filter")] out Single weights) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_texture_filter4] /// @@ -138650,34 +138650,34 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,filter)] [AutoGenerated(Category = "SGIS_texture_filter4", Version = "", EntryPoint = "glGetTexFilterFuncSGIS")] [CLSCompliant(false)] - public static unsafe void GetTexFilterFunc(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SgisTextureFilter4 filter, [OutAttribute, CountAttribute(Computed = "target,filter")] Single* weights) { throw new NotImplementedException(); } + public static unsafe void GetTexFilterFunc(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SgisTextureFilter4 filter, [OutAttribute, CountAttribute(Computed = "target,filter")] Single* weights) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// /// [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glPixelTexGenParameterfSGIS")] - public static void PixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, Single param) { throw new NotImplementedException(); } + public static void PixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// /// [Obsolete("Use PixelTexGenParameterNameSgis overload instead")] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glPixelTexGenParameterfSGIS")] - public static void PixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, Single param) { throw new NotImplementedException(); } + public static void PixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glPixelTexGenParameterfvSGIS")] [CLSCompliant(false)] - public static void PixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void PixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glPixelTexGenParameterfvSGIS")] [CLSCompliant(false)] - public static unsafe void PixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void PixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// @@ -138685,7 +138685,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PixelTexGenParameterNameSgis overload instead")] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glPixelTexGenParameterfvSGIS")] [CLSCompliant(false)] - public static void PixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void PixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// @@ -138693,34 +138693,34 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PixelTexGenParameterNameSgis overload instead")] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glPixelTexGenParameterfvSGIS")] [CLSCompliant(false)] - public static unsafe void PixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void PixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// /// [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glPixelTexGenParameteriSGIS")] - public static void PixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, Int32 param) { throw new NotImplementedException(); } + public static void PixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// /// [Obsolete("Use PixelTexGenParameterNameSgis overload instead")] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glPixelTexGenParameteriSGIS")] - public static void PixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, Int32 param) { throw new NotImplementedException(); } + public static void PixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glPixelTexGenParameterivSGIS")] [CLSCompliant(false)] - public static void PixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void PixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glPixelTexGenParameterivSGIS")] [CLSCompliant(false)] - public static unsafe void PixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void PixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// @@ -138728,7 +138728,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PixelTexGenParameterNameSgis overload instead")] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glPixelTexGenParameterivSGIS")] [CLSCompliant(false)] - public static void PixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void PixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// @@ -138736,7 +138736,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PixelTexGenParameterNameSgis overload instead")] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glPixelTexGenParameterivSGIS")] [CLSCompliant(false)] - public static unsafe void PixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void PixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_point_parameters] /// Specify point parameters @@ -138748,7 +138748,7 @@ namespace OpenTK.Graphics.OpenGL /// For glPointParameterf and glPointParameteri, specifies the value that pname will be set to. /// [AutoGenerated(Category = "SGIS_point_parameters", Version = "", EntryPoint = "glPointParameterfSGIS")] - public static void PointParameter(OpenTK.Graphics.OpenGL.SgisPointParameters pname, Single param) { throw new NotImplementedException(); } + public static void PointParameter(OpenTK.Graphics.OpenGL.SgisPointParameters pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_point_parameters] /// Specify point parameters @@ -138761,7 +138761,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SGIS_point_parameters", Version = "", EntryPoint = "glPointParameterfvSGIS")] [CLSCompliant(false)] - public static void PointParameter(OpenTK.Graphics.OpenGL.SgisPointParameters pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void PointParameter(OpenTK.Graphics.OpenGL.SgisPointParameters pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_point_parameters] /// Specify point parameters @@ -138774,24 +138774,24 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SGIS_point_parameters", Version = "", EntryPoint = "glPointParameterfvSGIS")] [CLSCompliant(false)] - public static unsafe void PointParameter(OpenTK.Graphics.OpenGL.SgisPointParameters pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void PointParameter(OpenTK.Graphics.OpenGL.SgisPointParameters pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_multisample] /// /// [AutoGenerated(Category = "SGIS_multisample", Version = "", EntryPoint = "glSampleMaskSGIS")] - public static void SampleMask(Single value, bool invert) { throw new NotImplementedException(); } + public static void SampleMask(Single value, bool invert) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_multisample] /// [AutoGenerated(Category = "SGIS_multisample", Version = "", EntryPoint = "glSamplePatternSGIS")] - public static void SamplePattern(OpenTK.Graphics.OpenGL.SamplePatternSgis pattern) { throw new NotImplementedException(); } + public static void SamplePattern(OpenTK.Graphics.OpenGL.SamplePatternSgis pattern) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_multisample] /// [Obsolete("Use SamplePatternSgis overload instead")] [AutoGenerated(Category = "SGIS_multisample", Version = "", EntryPoint = "glSamplePatternSGIS")] - public static void SamplePattern(OpenTK.Graphics.OpenGL.SgisMultisample pattern) { throw new NotImplementedException(); } + public static void SamplePattern(OpenTK.Graphics.OpenGL.SgisMultisample pattern) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_sharpen_texture] /// @@ -138799,7 +138799,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n*2] [AutoGenerated(Category = "SGIS_sharpen_texture", Version = "", EntryPoint = "glSharpenTexFuncSGIS")] [CLSCompliant(false)] - public static void SharpenTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [CountAttribute(Parameter = "n*2")] Single[] points) { throw new NotImplementedException(); } + public static void SharpenTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [CountAttribute(Parameter = "n*2")] Single[] points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_sharpen_texture] /// @@ -138807,7 +138807,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n*2] [AutoGenerated(Category = "SGIS_sharpen_texture", Version = "", EntryPoint = "glSharpenTexFuncSGIS")] [CLSCompliant(false)] - public static void SharpenTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [CountAttribute(Parameter = "n*2")] ref Single points) { throw new NotImplementedException(); } + public static void SharpenTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [CountAttribute(Parameter = "n*2")] ref Single points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_sharpen_texture] /// @@ -138815,7 +138815,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n*2] [AutoGenerated(Category = "SGIS_sharpen_texture", Version = "", EntryPoint = "glSharpenTexFuncSGIS")] [CLSCompliant(false)] - public static unsafe void SharpenTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [CountAttribute(Parameter = "n*2")] Single* points) { throw new NotImplementedException(); } + public static unsafe void SharpenTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [CountAttribute(Parameter = "n*2")] Single* points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_texture_filter4] /// @@ -138824,7 +138824,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "SGIS_texture_filter4", Version = "", EntryPoint = "glTexFilterFuncSGIS")] [CLSCompliant(false)] - public static void TexFilterFunc(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SgisTextureFilter4 filter, Int32 n, [CountAttribute(Parameter = "n")] Single[] weights) { throw new NotImplementedException(); } + public static void TexFilterFunc(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SgisTextureFilter4 filter, Int32 n, [CountAttribute(Parameter = "n")] Single[] weights) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_texture_filter4] /// @@ -138833,7 +138833,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "SGIS_texture_filter4", Version = "", EntryPoint = "glTexFilterFuncSGIS")] [CLSCompliant(false)] - public static void TexFilterFunc(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SgisTextureFilter4 filter, Int32 n, [CountAttribute(Parameter = "n")] ref Single weights) { throw new NotImplementedException(); } + public static void TexFilterFunc(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SgisTextureFilter4 filter, Int32 n, [CountAttribute(Parameter = "n")] ref Single weights) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_texture_filter4] /// @@ -138842,7 +138842,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "SGIS_texture_filter4", Version = "", EntryPoint = "glTexFilterFuncSGIS")] [CLSCompliant(false)] - public static unsafe void TexFilterFunc(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SgisTextureFilter4 filter, Int32 n, [CountAttribute(Parameter = "n")] Single* weights) { throw new NotImplementedException(); } + public static unsafe void TexFilterFunc(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SgisTextureFilter4 filter, Int32 n, [CountAttribute(Parameter = "n")] Single* weights) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_texture4D] /// @@ -138857,7 +138857,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: COMPSIZE(format,type,width,height,depth,size4d)] [AutoGenerated(Category = "SGIS_texture4D", Version = "", EntryPoint = "glTexImage4DSGIS")] - public static void TexImage4D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 size4d, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth,size4d")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexImage4D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 size4d, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth,size4d")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_texture4D] /// @@ -138875,7 +138875,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexImage4D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 size4d, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth,size4d")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_texture4D] /// @@ -138893,7 +138893,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexImage4D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 size4d, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth,size4d")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_texture4D] /// @@ -138911,7 +138911,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexImage4D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 size4d, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth,size4d")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_texture4D] /// @@ -138928,7 +138928,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "SGIS_texture4D", Version = "", EntryPoint = "glTexImage4DSGIS")] public static void TexImage4D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 size4d, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth,size4d")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_texture4D] /// @@ -138945,7 +138945,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: COMPSIZE(format,type,width,height,depth,size4d)] [AutoGenerated(Category = "SGIS_texture4D", Version = "", EntryPoint = "glTexSubImage4DSGIS")] - public static void TexSubImage4D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 woffset, Int32 width, Int32 height, Int32 depth, Int32 size4d, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth,size4d")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexSubImage4D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 woffset, Int32 width, Int32 height, Int32 depth, Int32 size4d, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth,size4d")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_texture4D] /// @@ -138965,7 +138965,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexSubImage4D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 woffset, Int32 width, Int32 height, Int32 depth, Int32 size4d, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth,size4d")] T12[] pixels) where T12 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_texture4D] /// @@ -138985,7 +138985,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexSubImage4D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 woffset, Int32 width, Int32 height, Int32 depth, Int32 size4d, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth,size4d")] T12[,] pixels) where T12 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_texture4D] /// @@ -139005,7 +139005,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexSubImage4D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 woffset, Int32 width, Int32 height, Int32 depth, Int32 size4d, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth,size4d")] T12[,,] pixels) where T12 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_texture4D] /// @@ -139024,7 +139024,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "SGIS_texture4D", Version = "", EntryPoint = "glTexSubImage4DSGIS")] public static void TexSubImage4D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 woffset, Int32 width, Int32 height, Int32 depth, Int32 size4d, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth,size4d")] ref T12 pixels) where T12 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_texture_color_mask] /// @@ -139032,7 +139032,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SGIS_texture_color_mask", Version = "", EntryPoint = "glTextureColorMaskSGIS")] - public static void TextureColorMask(bool red, bool green, bool blue, bool alpha) { throw new NotImplementedException(); } + public static void TextureColorMask(bool red, bool green, bool blue, bool alpha) { throw new BindingsNotRewrittenException(); } } @@ -139042,13 +139042,13 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glAsyncMarkerSGIX")] [CLSCompliant(false)] - public static void AsyncMarker(Int32 marker) { throw new NotImplementedException(); } + public static void AsyncMarker(Int32 marker) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_async] /// [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glAsyncMarkerSGIX")] [CLSCompliant(false)] - public static void AsyncMarker(UInt32 marker) { throw new NotImplementedException(); } + public static void AsyncMarker(UInt32 marker) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_polynomial_ffd] /// @@ -139067,7 +139067,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,ustride,uorder,vstride,vorder,wstride,worder)] [AutoGenerated(Category = "SGIX_polynomial_ffd", Version = "", EntryPoint = "glDeformationMap3dSGIX")] [CLSCompliant(false)] - public static void DeformationMap3(OpenTK.Graphics.OpenGL.FfdTargetSgix target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double w1, Double w2, Int32 wstride, Int32 worder, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] Double[] points) { throw new NotImplementedException(); } + public static void DeformationMap3(OpenTK.Graphics.OpenGL.FfdTargetSgix target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double w1, Double w2, Int32 wstride, Int32 worder, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] Double[] points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_polynomial_ffd] /// @@ -139086,7 +139086,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,ustride,uorder,vstride,vorder,wstride,worder)] [AutoGenerated(Category = "SGIX_polynomial_ffd", Version = "", EntryPoint = "glDeformationMap3dSGIX")] [CLSCompliant(false)] - public static void DeformationMap3(OpenTK.Graphics.OpenGL.FfdTargetSgix target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double w1, Double w2, Int32 wstride, Int32 worder, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] ref Double points) { throw new NotImplementedException(); } + public static void DeformationMap3(OpenTK.Graphics.OpenGL.FfdTargetSgix target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double w1, Double w2, Int32 wstride, Int32 worder, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] ref Double points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_polynomial_ffd] /// @@ -139105,7 +139105,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,ustride,uorder,vstride,vorder,wstride,worder)] [AutoGenerated(Category = "SGIX_polynomial_ffd", Version = "", EntryPoint = "glDeformationMap3dSGIX")] [CLSCompliant(false)] - public static unsafe void DeformationMap3(OpenTK.Graphics.OpenGL.FfdTargetSgix target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double w1, Double w2, Int32 wstride, Int32 worder, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] Double* points) { throw new NotImplementedException(); } + public static unsafe void DeformationMap3(OpenTK.Graphics.OpenGL.FfdTargetSgix target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double w1, Double w2, Int32 wstride, Int32 worder, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] Double* points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_polynomial_ffd] /// @@ -139125,7 +139125,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use FfdTargetSgix overload instead")] [AutoGenerated(Category = "SGIX_polynomial_ffd", Version = "", EntryPoint = "glDeformationMap3dSGIX")] [CLSCompliant(false)] - public static void DeformationMap3(OpenTK.Graphics.OpenGL.SgixPolynomialFfd target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double w1, Double w2, Int32 wstride, Int32 worder, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] Double[] points) { throw new NotImplementedException(); } + public static void DeformationMap3(OpenTK.Graphics.OpenGL.SgixPolynomialFfd target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double w1, Double w2, Int32 wstride, Int32 worder, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] Double[] points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_polynomial_ffd] /// @@ -139145,7 +139145,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use FfdTargetSgix overload instead")] [AutoGenerated(Category = "SGIX_polynomial_ffd", Version = "", EntryPoint = "glDeformationMap3dSGIX")] [CLSCompliant(false)] - public static void DeformationMap3(OpenTK.Graphics.OpenGL.SgixPolynomialFfd target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double w1, Double w2, Int32 wstride, Int32 worder, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] ref Double points) { throw new NotImplementedException(); } + public static void DeformationMap3(OpenTK.Graphics.OpenGL.SgixPolynomialFfd target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double w1, Double w2, Int32 wstride, Int32 worder, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] ref Double points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_polynomial_ffd] /// @@ -139165,7 +139165,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use FfdTargetSgix overload instead")] [AutoGenerated(Category = "SGIX_polynomial_ffd", Version = "", EntryPoint = "glDeformationMap3dSGIX")] [CLSCompliant(false)] - public static unsafe void DeformationMap3(OpenTK.Graphics.OpenGL.SgixPolynomialFfd target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double w1, Double w2, Int32 wstride, Int32 worder, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] Double* points) { throw new NotImplementedException(); } + public static unsafe void DeformationMap3(OpenTK.Graphics.OpenGL.SgixPolynomialFfd target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double w1, Double w2, Int32 wstride, Int32 worder, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] Double* points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_polynomial_ffd] /// @@ -139184,7 +139184,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,ustride,uorder,vstride,vorder,wstride,worder)] [AutoGenerated(Category = "SGIX_polynomial_ffd", Version = "", EntryPoint = "glDeformationMap3fSGIX")] [CLSCompliant(false)] - public static void DeformationMap3(OpenTK.Graphics.OpenGL.FfdTargetSgix target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single w1, Single w2, Int32 wstride, Int32 worder, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] Single[] points) { throw new NotImplementedException(); } + public static void DeformationMap3(OpenTK.Graphics.OpenGL.FfdTargetSgix target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single w1, Single w2, Int32 wstride, Int32 worder, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] Single[] points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_polynomial_ffd] /// @@ -139203,7 +139203,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,ustride,uorder,vstride,vorder,wstride,worder)] [AutoGenerated(Category = "SGIX_polynomial_ffd", Version = "", EntryPoint = "glDeformationMap3fSGIX")] [CLSCompliant(false)] - public static void DeformationMap3(OpenTK.Graphics.OpenGL.FfdTargetSgix target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single w1, Single w2, Int32 wstride, Int32 worder, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] ref Single points) { throw new NotImplementedException(); } + public static void DeformationMap3(OpenTK.Graphics.OpenGL.FfdTargetSgix target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single w1, Single w2, Int32 wstride, Int32 worder, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] ref Single points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_polynomial_ffd] /// @@ -139222,7 +139222,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,ustride,uorder,vstride,vorder,wstride,worder)] [AutoGenerated(Category = "SGIX_polynomial_ffd", Version = "", EntryPoint = "glDeformationMap3fSGIX")] [CLSCompliant(false)] - public static unsafe void DeformationMap3(OpenTK.Graphics.OpenGL.FfdTargetSgix target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single w1, Single w2, Int32 wstride, Int32 worder, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] Single* points) { throw new NotImplementedException(); } + public static unsafe void DeformationMap3(OpenTK.Graphics.OpenGL.FfdTargetSgix target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single w1, Single w2, Int32 wstride, Int32 worder, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] Single* points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_polynomial_ffd] /// @@ -139242,7 +139242,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use FfdTargetSgix overload instead")] [AutoGenerated(Category = "SGIX_polynomial_ffd", Version = "", EntryPoint = "glDeformationMap3fSGIX")] [CLSCompliant(false)] - public static void DeformationMap3(OpenTK.Graphics.OpenGL.SgixPolynomialFfd target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single w1, Single w2, Int32 wstride, Int32 worder, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] Single[] points) { throw new NotImplementedException(); } + public static void DeformationMap3(OpenTK.Graphics.OpenGL.SgixPolynomialFfd target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single w1, Single w2, Int32 wstride, Int32 worder, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] Single[] points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_polynomial_ffd] /// @@ -139262,7 +139262,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use FfdTargetSgix overload instead")] [AutoGenerated(Category = "SGIX_polynomial_ffd", Version = "", EntryPoint = "glDeformationMap3fSGIX")] [CLSCompliant(false)] - public static void DeformationMap3(OpenTK.Graphics.OpenGL.SgixPolynomialFfd target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single w1, Single w2, Int32 wstride, Int32 worder, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] ref Single points) { throw new NotImplementedException(); } + public static void DeformationMap3(OpenTK.Graphics.OpenGL.SgixPolynomialFfd target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single w1, Single w2, Int32 wstride, Int32 worder, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] ref Single points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_polynomial_ffd] /// @@ -139282,80 +139282,80 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use FfdTargetSgix overload instead")] [AutoGenerated(Category = "SGIX_polynomial_ffd", Version = "", EntryPoint = "glDeformationMap3fSGIX")] [CLSCompliant(false)] - public static unsafe void DeformationMap3(OpenTK.Graphics.OpenGL.SgixPolynomialFfd target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single w1, Single w2, Int32 wstride, Int32 worder, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] Single* points) { throw new NotImplementedException(); } + public static unsafe void DeformationMap3(OpenTK.Graphics.OpenGL.SgixPolynomialFfd target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single w1, Single w2, Int32 wstride, Int32 worder, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] Single* points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_polynomial_ffd] /// [AutoGenerated(Category = "SGIX_polynomial_ffd", Version = "", EntryPoint = "glDeformSGIX")] - public static void Deform(OpenTK.Graphics.OpenGL.FfdMaskSgix mask) { throw new NotImplementedException(); } + public static void Deform(OpenTK.Graphics.OpenGL.FfdMaskSgix mask) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_polynomial_ffd] /// [Obsolete("Use FfdMaskSgix overload instead")] [AutoGenerated(Category = "SGIX_polynomial_ffd", Version = "", EntryPoint = "glDeformSGIX")] - public static void Deform(Int32 mask) { throw new NotImplementedException(); } + public static void Deform(Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_polynomial_ffd] /// [Obsolete("Use FfdMaskSgix overload instead")] [AutoGenerated(Category = "SGIX_polynomial_ffd", Version = "", EntryPoint = "glDeformSGIX")] [CLSCompliant(false)] - public static void Deform(UInt32 mask) { throw new NotImplementedException(); } + public static void Deform(UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_async] /// /// [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glDeleteAsyncMarkersSGIX")] [CLSCompliant(false)] - public static void DeleteAsyncMarkers(Int32 marker, Int32 range) { throw new NotImplementedException(); } + public static void DeleteAsyncMarkers(Int32 marker, Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_async] /// /// [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glDeleteAsyncMarkersSGIX")] [CLSCompliant(false)] - public static void DeleteAsyncMarkers(UInt32 marker, Int32 range) { throw new NotImplementedException(); } + public static void DeleteAsyncMarkers(UInt32 marker, Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_async] /// [length: 1] [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glFinishAsyncSGIX")] [CLSCompliant(false)] - public static Int32 FinishAsync([OutAttribute, CountAttribute(Count = 1)] out Int32 markerp) { throw new NotImplementedException(); } + public static Int32 FinishAsync([OutAttribute, CountAttribute(Count = 1)] out Int32 markerp) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_async] /// [length: 1] [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glFinishAsyncSGIX")] [CLSCompliant(false)] - public static unsafe Int32 FinishAsync([OutAttribute, CountAttribute(Count = 1)] Int32* markerp) { throw new NotImplementedException(); } + public static unsafe Int32 FinishAsync([OutAttribute, CountAttribute(Count = 1)] Int32* markerp) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_async] /// [length: 1] [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glFinishAsyncSGIX")] [CLSCompliant(false)] - public static Int32 FinishAsync([OutAttribute, CountAttribute(Count = 1)] out UInt32 markerp) { throw new NotImplementedException(); } + public static Int32 FinishAsync([OutAttribute, CountAttribute(Count = 1)] out UInt32 markerp) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_async] /// [length: 1] [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glFinishAsyncSGIX")] [CLSCompliant(false)] - public static unsafe Int32 FinishAsync([OutAttribute, CountAttribute(Count = 1)] UInt32* markerp) { throw new NotImplementedException(); } + public static unsafe Int32 FinishAsync([OutAttribute, CountAttribute(Count = 1)] UInt32* markerp) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_flush_raster] [AutoGenerated(Category = "SGIX_flush_raster", Version = "", EntryPoint = "glFlushRasterSGIX")] - public static void FlushRaster() { throw new NotImplementedException(); } + public static void FlushRaster() { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// /// [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentColorMaterialSGIX")] - public static void FragmentColorMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter mode) { throw new NotImplementedException(); } + public static void FragmentColorMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter mode) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// /// /// [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightfSGIX")] - public static void FragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Single param) { throw new NotImplementedException(); } + public static void FragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139363,7 +139363,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightfvSGIX")] [CLSCompliant(false)] - public static void FragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void FragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139371,14 +139371,14 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightfvSGIX")] [CLSCompliant(false)] - public static unsafe void FragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void FragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// /// /// [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightiSGIX")] - public static void FragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Int32 param) { throw new NotImplementedException(); } + public static void FragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139386,7 +139386,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightivSGIX")] [CLSCompliant(false)] - public static void FragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void FragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139394,34 +139394,34 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightivSGIX")] [CLSCompliant(false)] - public static unsafe void FragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void FragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// /// [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightModelfSGIX")] - public static void FragmentLightModel(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix pname, Single param) { throw new NotImplementedException(); } + public static void FragmentLightModel(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// /// [Obsolete("Use FragmentLightModelParameterSgix overload instead")] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightModelfSGIX")] - public static void FragmentLightModel(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Single param) { throw new NotImplementedException(); } + public static void FragmentLightModel(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightModelfvSGIX")] [CLSCompliant(false)] - public static void FragmentLightModel(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void FragmentLightModel(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightModelfvSGIX")] [CLSCompliant(false)] - public static unsafe void FragmentLightModel(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void FragmentLightModel(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139429,7 +139429,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use FragmentLightModelParameterSgix overload instead")] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightModelfvSGIX")] [CLSCompliant(false)] - public static void FragmentLightModel(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void FragmentLightModel(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139437,34 +139437,34 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use FragmentLightModelParameterSgix overload instead")] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightModelfvSGIX")] [CLSCompliant(false)] - public static unsafe void FragmentLightModel(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void FragmentLightModel(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// /// [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightModeliSGIX")] - public static void FragmentLightModel(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix pname, Int32 param) { throw new NotImplementedException(); } + public static void FragmentLightModel(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// /// [Obsolete("Use FragmentLightModelParameterSgix overload instead")] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightModeliSGIX")] - public static void FragmentLightModel(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Int32 param) { throw new NotImplementedException(); } + public static void FragmentLightModel(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightModelivSGIX")] [CLSCompliant(false)] - public static void FragmentLightModel(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void FragmentLightModel(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightModelivSGIX")] [CLSCompliant(false)] - public static unsafe void FragmentLightModel(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void FragmentLightModel(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139472,7 +139472,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use FragmentLightModelParameterSgix overload instead")] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightModelivSGIX")] [CLSCompliant(false)] - public static void FragmentLightModel(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void FragmentLightModel(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139480,14 +139480,14 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use FragmentLightModelParameterSgix overload instead")] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightModelivSGIX")] [CLSCompliant(false)] - public static unsafe void FragmentLightModel(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void FragmentLightModel(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// /// /// [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentMaterialfSGIX")] - public static void FragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Single param) { throw new NotImplementedException(); } + public static void FragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139495,7 +139495,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentMaterialfvSGIX")] [CLSCompliant(false)] - public static void FragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void FragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139503,14 +139503,14 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentMaterialfvSGIX")] [CLSCompliant(false)] - public static unsafe void FragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void FragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// /// /// [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentMaterialiSGIX")] - public static void FragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void FragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139518,7 +139518,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentMaterialivSGIX")] [CLSCompliant(false)] - public static void FragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void FragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139526,17 +139526,17 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentMaterialivSGIX")] [CLSCompliant(false)] - public static unsafe void FragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void FragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_framezoom] /// [AutoGenerated(Category = "SGIX_framezoom", Version = "", EntryPoint = "glFrameZoomSGIX")] - public static void FrameZoom(Int32 factor) { throw new NotImplementedException(); } + public static void FrameZoom(Int32 factor) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_async] /// [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glGenAsyncMarkersSGIX")] - public static Int32 GenAsyncMarkers(Int32 range) { throw new NotImplementedException(); } + public static Int32 GenAsyncMarkers(Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139544,7 +139544,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glGetFragmentLightfvSGIX")] [CLSCompliant(false)] - public static void GetFragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetFragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139552,7 +139552,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glGetFragmentLightfvSGIX")] [CLSCompliant(false)] - public static void GetFragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetFragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139560,7 +139560,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glGetFragmentLightfvSGIX")] [CLSCompliant(false)] - public static unsafe void GetFragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetFragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139568,7 +139568,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glGetFragmentLightivSGIX")] [CLSCompliant(false)] - public static void GetFragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139576,7 +139576,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glGetFragmentLightivSGIX")] [CLSCompliant(false)] - public static void GetFragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139584,7 +139584,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glGetFragmentLightivSGIX")] [CLSCompliant(false)] - public static unsafe void GetFragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139592,7 +139592,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glGetFragmentMaterialfvSGIX")] [CLSCompliant(false)] - public static void GetFragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetFragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139600,7 +139600,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glGetFragmentMaterialfvSGIX")] [CLSCompliant(false)] - public static void GetFragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetFragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139608,7 +139608,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glGetFragmentMaterialfvSGIX")] [CLSCompliant(false)] - public static unsafe void GetFragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetFragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139616,7 +139616,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glGetFragmentMaterialivSGIX")] [CLSCompliant(false)] - public static void GetFragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139624,7 +139624,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glGetFragmentMaterialivSGIX")] [CLSCompliant(false)] - public static void GetFragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139632,11 +139632,11 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glGetFragmentMaterialivSGIX")] [CLSCompliant(false)] - public static unsafe void GetFragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_instruments] [AutoGenerated(Category = "SGIX_instruments", Version = "", EntryPoint = "glGetInstrumentsSGIX")] - public static Int32 GetInstruments() { throw new NotImplementedException(); } + public static Int32 GetInstruments() { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139644,7 +139644,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glGetListParameterfvSGIX")] [CLSCompliant(false)] - public static void GetListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139652,7 +139652,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glGetListParameterfvSGIX")] [CLSCompliant(false)] - public static void GetListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139660,7 +139660,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glGetListParameterfvSGIX")] [CLSCompliant(false)] - public static unsafe void GetListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139668,7 +139668,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glGetListParameterfvSGIX")] [CLSCompliant(false)] - public static void GetListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139676,7 +139676,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glGetListParameterfvSGIX")] [CLSCompliant(false)] - public static void GetListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139684,7 +139684,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glGetListParameterfvSGIX")] [CLSCompliant(false)] - public static unsafe void GetListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139692,7 +139692,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glGetListParameterivSGIX")] [CLSCompliant(false)] - public static void GetListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139700,7 +139700,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glGetListParameterivSGIX")] [CLSCompliant(false)] - public static void GetListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139708,7 +139708,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glGetListParameterivSGIX")] [CLSCompliant(false)] - public static unsafe void GetListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139716,7 +139716,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glGetListParameterivSGIX")] [CLSCompliant(false)] - public static void GetListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139724,7 +139724,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glGetListParameterivSGIX")] [CLSCompliant(false)] - public static void GetListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139732,14 +139732,14 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glGetListParameterivSGIX")] [CLSCompliant(false)] - public static unsafe void GetListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_igloo_interface] /// /// [length: COMPSIZE(pname)] [Obsolete("Use SgixIglooInterface overload instead")] [AutoGenerated(Category = "SGIX_igloo_interface", Version = "", EntryPoint = "glIglooInterfaceSGIX")] - public static void IglooInterface(OpenTK.Graphics.OpenGL.All pname, [CountAttribute(Computed = "pname")] IntPtr @params) { throw new NotImplementedException(); } + public static void IglooInterface(OpenTK.Graphics.OpenGL.All pname, [CountAttribute(Computed = "pname")] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_igloo_interface] /// @@ -139749,7 +139749,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void IglooInterface(OpenTK.Graphics.OpenGL.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_igloo_interface] /// @@ -139759,7 +139759,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void IglooInterface(OpenTK.Graphics.OpenGL.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_igloo_interface] /// @@ -139769,7 +139769,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void IglooInterface(OpenTK.Graphics.OpenGL.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_igloo_interface] /// @@ -139778,13 +139778,13 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "SGIX_igloo_interface", Version = "", EntryPoint = "glIglooInterfaceSGIX")] public static void IglooInterface(OpenTK.Graphics.OpenGL.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_igloo_interface] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_igloo_interface", Version = "", EntryPoint = "glIglooInterfaceSGIX")] - public static void IglooInterface(OpenTK.Graphics.OpenGL.SgixIglooInterface pname, [CountAttribute(Computed = "pname")] IntPtr @params) { throw new NotImplementedException(); } + public static void IglooInterface(OpenTK.Graphics.OpenGL.SgixIglooInterface pname, [CountAttribute(Computed = "pname")] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_igloo_interface] /// @@ -139793,7 +139793,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void IglooInterface(OpenTK.Graphics.OpenGL.SgixIglooInterface pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_igloo_interface] /// @@ -139802,7 +139802,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void IglooInterface(OpenTK.Graphics.OpenGL.SgixIglooInterface pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_igloo_interface] /// @@ -139811,7 +139811,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void IglooInterface(OpenTK.Graphics.OpenGL.SgixIglooInterface pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_igloo_interface] /// @@ -139819,53 +139819,53 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "SGIX_igloo_interface", Version = "", EntryPoint = "glIglooInterfaceSGIX")] public static void IglooInterface(OpenTK.Graphics.OpenGL.SgixIglooInterface pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_instruments] /// /// [length: size] [AutoGenerated(Category = "SGIX_instruments", Version = "", EntryPoint = "glInstrumentsBufferSGIX")] [CLSCompliant(false)] - public static void InstrumentsBuffer(Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32[] buffer) { throw new NotImplementedException(); } + public static void InstrumentsBuffer(Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32[] buffer) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_instruments] /// /// [length: size] [AutoGenerated(Category = "SGIX_instruments", Version = "", EntryPoint = "glInstrumentsBufferSGIX")] [CLSCompliant(false)] - public static void InstrumentsBuffer(Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out Int32 buffer) { throw new NotImplementedException(); } + public static void InstrumentsBuffer(Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_instruments] /// /// [length: size] [AutoGenerated(Category = "SGIX_instruments", Version = "", EntryPoint = "glInstrumentsBufferSGIX")] [CLSCompliant(false)] - public static unsafe void InstrumentsBuffer(Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32* buffer) { throw new NotImplementedException(); } + public static unsafe void InstrumentsBuffer(Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32* buffer) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_async] /// [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glIsAsyncMarkerSGIX")] [CLSCompliant(false)] - public static bool IsAsyncMarker(Int32 marker) { throw new NotImplementedException(); } + public static bool IsAsyncMarker(Int32 marker) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_async] /// [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glIsAsyncMarkerSGIX")] [CLSCompliant(false)] - public static bool IsAsyncMarker(UInt32 marker) { throw new NotImplementedException(); } + public static bool IsAsyncMarker(UInt32 marker) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// /// [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glLightEnviSGIX")] - public static void LightEnv(OpenTK.Graphics.OpenGL.LightEnvParameterSgix pname, Int32 param) { throw new NotImplementedException(); } + public static void LightEnv(OpenTK.Graphics.OpenGL.LightEnvParameterSgix pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// /// [Obsolete("Use LightEnvParameterSgix overload instead")] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glLightEnviSGIX")] - public static void LightEnv(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Int32 param) { throw new NotImplementedException(); } + public static void LightEnv(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139873,7 +139873,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glListParameterfSGIX")] [CLSCompliant(false)] - public static void ListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Single param) { throw new NotImplementedException(); } + public static void ListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139881,7 +139881,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glListParameterfSGIX")] [CLSCompliant(false)] - public static void ListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Single param) { throw new NotImplementedException(); } + public static void ListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139889,7 +139889,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glListParameterfvSGIX")] [CLSCompliant(false)] - public static void ListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void ListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139897,7 +139897,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glListParameterfvSGIX")] [CLSCompliant(false)] - public static unsafe void ListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139905,7 +139905,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glListParameterfvSGIX")] [CLSCompliant(false)] - public static void ListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void ListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139913,7 +139913,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glListParameterfvSGIX")] [CLSCompliant(false)] - public static unsafe void ListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139921,7 +139921,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glListParameteriSGIX")] [CLSCompliant(false)] - public static void ListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void ListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139929,7 +139929,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glListParameteriSGIX")] [CLSCompliant(false)] - public static void ListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void ListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139937,7 +139937,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glListParameterivSGIX")] [CLSCompliant(false)] - public static void ListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void ListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139945,7 +139945,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glListParameterivSGIX")] [CLSCompliant(false)] - public static unsafe void ListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139953,7 +139953,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glListParameterivSGIX")] [CLSCompliant(false)] - public static void ListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void ListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139961,142 +139961,142 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glListParameterivSGIX")] [CLSCompliant(false)] - public static unsafe void ListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_polynomial_ffd] /// [AutoGenerated(Category = "SGIX_polynomial_ffd", Version = "", EntryPoint = "glLoadIdentityDeformationMapSGIX")] - public static void LoadIdentityDeformationMap(OpenTK.Graphics.OpenGL.FfdMaskSgix mask) { throw new NotImplementedException(); } + public static void LoadIdentityDeformationMap(OpenTK.Graphics.OpenGL.FfdMaskSgix mask) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_polynomial_ffd] /// [Obsolete("Use FfdMaskSgix overload instead")] [AutoGenerated(Category = "SGIX_polynomial_ffd", Version = "", EntryPoint = "glLoadIdentityDeformationMapSGIX")] - public static void LoadIdentityDeformationMap(Int32 mask) { throw new NotImplementedException(); } + public static void LoadIdentityDeformationMap(Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_polynomial_ffd] /// [Obsolete("Use FfdMaskSgix overload instead")] [AutoGenerated(Category = "SGIX_polynomial_ffd", Version = "", EntryPoint = "glLoadIdentityDeformationMapSGIX")] [CLSCompliant(false)] - public static void LoadIdentityDeformationMap(UInt32 mask) { throw new NotImplementedException(); } + public static void LoadIdentityDeformationMap(UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_pixel_texture] /// [AutoGenerated(Category = "SGIX_pixel_texture", Version = "", EntryPoint = "glPixelTexGenSGIX")] - public static void PixelTexGen(OpenTK.Graphics.OpenGL.SgixPixelTexture mode) { throw new NotImplementedException(); } + public static void PixelTexGen(OpenTK.Graphics.OpenGL.SgixPixelTexture mode) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_async] /// [length: 1] [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glPollAsyncSGIX")] [CLSCompliant(false)] - public static Int32 PollAsync([OutAttribute, CountAttribute(Count = 1)] out Int32 markerp) { throw new NotImplementedException(); } + public static Int32 PollAsync([OutAttribute, CountAttribute(Count = 1)] out Int32 markerp) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_async] /// [length: 1] [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glPollAsyncSGIX")] [CLSCompliant(false)] - public static unsafe Int32 PollAsync([OutAttribute, CountAttribute(Count = 1)] Int32* markerp) { throw new NotImplementedException(); } + public static unsafe Int32 PollAsync([OutAttribute, CountAttribute(Count = 1)] Int32* markerp) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_async] /// [length: 1] [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glPollAsyncSGIX")] [CLSCompliant(false)] - public static Int32 PollAsync([OutAttribute, CountAttribute(Count = 1)] out UInt32 markerp) { throw new NotImplementedException(); } + public static Int32 PollAsync([OutAttribute, CountAttribute(Count = 1)] out UInt32 markerp) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_async] /// [length: 1] [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glPollAsyncSGIX")] [CLSCompliant(false)] - public static unsafe Int32 PollAsync([OutAttribute, CountAttribute(Count = 1)] UInt32* markerp) { throw new NotImplementedException(); } + public static unsafe Int32 PollAsync([OutAttribute, CountAttribute(Count = 1)] UInt32* markerp) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_instruments] /// [length: 1] [AutoGenerated(Category = "SGIX_instruments", Version = "", EntryPoint = "glPollInstrumentsSGIX")] [CLSCompliant(false)] - public static Int32 PollInstruments([OutAttribute, CountAttribute(Count = 1)] out Int32 marker_p) { throw new NotImplementedException(); } + public static Int32 PollInstruments([OutAttribute, CountAttribute(Count = 1)] out Int32 marker_p) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_instruments] /// [length: 1] [AutoGenerated(Category = "SGIX_instruments", Version = "", EntryPoint = "glPollInstrumentsSGIX")] [CLSCompliant(false)] - public static unsafe Int32 PollInstruments([OutAttribute, CountAttribute(Count = 1)] Int32* marker_p) { throw new NotImplementedException(); } + public static unsafe Int32 PollInstruments([OutAttribute, CountAttribute(Count = 1)] Int32* marker_p) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_instruments] /// [AutoGenerated(Category = "SGIX_instruments", Version = "", EntryPoint = "glReadInstrumentsSGIX")] - public static void ReadInstruments(Int32 marker) { throw new NotImplementedException(); } + public static void ReadInstruments(Int32 marker) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_reference_plane] /// [length: 4] [AutoGenerated(Category = "SGIX_reference_plane", Version = "", EntryPoint = "glReferencePlaneSGIX")] [CLSCompliant(false)] - public static void ReferencePlane([CountAttribute(Count = 4)] Double[] equation) { throw new NotImplementedException(); } + public static void ReferencePlane([CountAttribute(Count = 4)] Double[] equation) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_reference_plane] /// [length: 4] [AutoGenerated(Category = "SGIX_reference_plane", Version = "", EntryPoint = "glReferencePlaneSGIX")] [CLSCompliant(false)] - public static void ReferencePlane([CountAttribute(Count = 4)] ref Double equation) { throw new NotImplementedException(); } + public static void ReferencePlane([CountAttribute(Count = 4)] ref Double equation) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_reference_plane] /// [length: 4] [AutoGenerated(Category = "SGIX_reference_plane", Version = "", EntryPoint = "glReferencePlaneSGIX")] [CLSCompliant(false)] - public static unsafe void ReferencePlane([CountAttribute(Count = 4)] Double* equation) { throw new NotImplementedException(); } + public static unsafe void ReferencePlane([CountAttribute(Count = 4)] Double* equation) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_sprite] /// /// [AutoGenerated(Category = "SGIX_sprite", Version = "", EntryPoint = "glSpriteParameterfSGIX")] - public static void SpriteParameter(OpenTK.Graphics.OpenGL.SgixSprite pname, Single param) { throw new NotImplementedException(); } + public static void SpriteParameter(OpenTK.Graphics.OpenGL.SgixSprite pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_sprite] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_sprite", Version = "", EntryPoint = "glSpriteParameterfvSGIX")] [CLSCompliant(false)] - public static void SpriteParameter(OpenTK.Graphics.OpenGL.SgixSprite pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void SpriteParameter(OpenTK.Graphics.OpenGL.SgixSprite pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_sprite] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_sprite", Version = "", EntryPoint = "glSpriteParameterfvSGIX")] [CLSCompliant(false)] - public static unsafe void SpriteParameter(OpenTK.Graphics.OpenGL.SgixSprite pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void SpriteParameter(OpenTK.Graphics.OpenGL.SgixSprite pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_sprite] /// /// [AutoGenerated(Category = "SGIX_sprite", Version = "", EntryPoint = "glSpriteParameteriSGIX")] - public static void SpriteParameter(OpenTK.Graphics.OpenGL.SgixSprite pname, Int32 param) { throw new NotImplementedException(); } + public static void SpriteParameter(OpenTK.Graphics.OpenGL.SgixSprite pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_sprite] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_sprite", Version = "", EntryPoint = "glSpriteParameterivSGIX")] [CLSCompliant(false)] - public static void SpriteParameter(OpenTK.Graphics.OpenGL.SgixSprite pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void SpriteParameter(OpenTK.Graphics.OpenGL.SgixSprite pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_sprite] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_sprite", Version = "", EntryPoint = "glSpriteParameterivSGIX")] [CLSCompliant(false)] - public static unsafe void SpriteParameter(OpenTK.Graphics.OpenGL.SgixSprite pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void SpriteParameter(OpenTK.Graphics.OpenGL.SgixSprite pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_instruments] [AutoGenerated(Category = "SGIX_instruments", Version = "", EntryPoint = "glStartInstrumentsSGIX")] - public static void StartInstruments() { throw new NotImplementedException(); } + public static void StartInstruments() { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_instruments] /// [AutoGenerated(Category = "SGIX_instruments", Version = "", EntryPoint = "glStopInstrumentsSGIX")] - public static void StopInstruments(Int32 marker) { throw new NotImplementedException(); } + public static void StopInstruments(Int32 marker) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_tag_sample_buffer] [AutoGenerated(Category = "SGIX_tag_sample_buffer", Version = "", EntryPoint = "glTagSampleBufferSGIX")] - public static void TagSampleBuffer() { throw new NotImplementedException(); } + public static void TagSampleBuffer() { throw new BindingsNotRewrittenException(); } } @@ -140110,28 +140110,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor3fVertex3fSUN")] - public static void Color3fVertex3(Single r, Single g, Single b, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void Color3fVertex3(Single r, Single g, Single b, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 3] /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor3fVertex3fvSUN")] [CLSCompliant(false)] - public static void Color3fVertex3([CountAttribute(Count = 3)] Single[] c, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void Color3fVertex3([CountAttribute(Count = 3)] Single[] c, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 3] /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor3fVertex3fvSUN")] [CLSCompliant(false)] - public static void Color3fVertex3([CountAttribute(Count = 3)] ref Single c, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void Color3fVertex3([CountAttribute(Count = 3)] ref Single c, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 3] /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor3fVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void Color3fVertex3([CountAttribute(Count = 3)] Single* c, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void Color3fVertex3([CountAttribute(Count = 3)] Single* c, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -140145,7 +140145,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor4fNormal3fVertex3fSUN")] - public static void Color4fNormal3fVertex3(Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void Color4fNormal3fVertex3(Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 4] @@ -140153,7 +140153,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor4fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void Color4fNormal3fVertex3([CountAttribute(Count = 4)] Single[] c, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void Color4fNormal3fVertex3([CountAttribute(Count = 4)] Single[] c, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 4] @@ -140161,7 +140161,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor4fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void Color4fNormal3fVertex3([CountAttribute(Count = 4)] ref Single c, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void Color4fNormal3fVertex3([CountAttribute(Count = 4)] ref Single c, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 4] @@ -140169,7 +140169,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor4fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void Color4fNormal3fVertex3([CountAttribute(Count = 4)] Single* c, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void Color4fNormal3fVertex3([CountAttribute(Count = 4)] Single* c, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -140179,28 +140179,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor4ubVertex2fSUN")] - public static void Color4ubVertex2(Byte r, Byte g, Byte b, Byte a, Single x, Single y) { throw new NotImplementedException(); } + public static void Color4ubVertex2(Byte r, Byte g, Byte b, Byte a, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 4] /// [length: 2] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor4ubVertex2fvSUN")] [CLSCompliant(false)] - public static void Color4ubVertex2([CountAttribute(Count = 4)] Byte[] c, [CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void Color4ubVertex2([CountAttribute(Count = 4)] Byte[] c, [CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 4] /// [length: 2] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor4ubVertex2fvSUN")] [CLSCompliant(false)] - public static void Color4ubVertex2([CountAttribute(Count = 4)] ref Byte c, [CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void Color4ubVertex2([CountAttribute(Count = 4)] ref Byte c, [CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 4] /// [length: 2] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor4ubVertex2fvSUN")] [CLSCompliant(false)] - public static unsafe void Color4ubVertex2([CountAttribute(Count = 4)] Byte* c, [CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void Color4ubVertex2([CountAttribute(Count = 4)] Byte* c, [CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -140211,28 +140211,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor4ubVertex3fSUN")] - public static void Color4ubVertex3(Byte r, Byte g, Byte b, Byte a, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void Color4ubVertex3(Byte r, Byte g, Byte b, Byte a, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 4] /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor4ubVertex3fvSUN")] [CLSCompliant(false)] - public static void Color4ubVertex3([CountAttribute(Count = 4)] Byte[] c, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void Color4ubVertex3([CountAttribute(Count = 4)] Byte[] c, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 4] /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor4ubVertex3fvSUN")] [CLSCompliant(false)] - public static void Color4ubVertex3([CountAttribute(Count = 4)] ref Byte c, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void Color4ubVertex3([CountAttribute(Count = 4)] ref Byte c, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 4] /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor4ubVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void Color4ubVertex3([CountAttribute(Count = 4)] Byte* c, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void Color4ubVertex3([CountAttribute(Count = 4)] Byte* c, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_mesh_array] /// @@ -140241,7 +140241,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "SUN_mesh_array", Version = "", EntryPoint = "glDrawMeshArraysSUN")] - public static void DrawMeshArrays(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 first, Int32 count, Int32 width) { throw new NotImplementedException(); } + public static void DrawMeshArrays(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 first, Int32 count, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_mesh_array] /// @@ -140249,56 +140249,56 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SUN_mesh_array", Version = "", EntryPoint = "glDrawMeshArraysSUN")] - public static void DrawMeshArrays(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 first, Int32 count, Int32 width) { throw new NotImplementedException(); } + public static void DrawMeshArrays(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 first, Int32 count, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_global_alpha] /// [AutoGenerated(Category = "SUN_global_alpha", Version = "", EntryPoint = "glGlobalAlphaFactorbSUN")] [CLSCompliant(false)] - public static void GlobalAlphaFactor(SByte factor) { throw new NotImplementedException(); } + public static void GlobalAlphaFactor(SByte factor) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_global_alpha] /// [AutoGenerated(Category = "SUN_global_alpha", Version = "", EntryPoint = "glGlobalAlphaFactordSUN")] - public static void GlobalAlphaFactor(Double factor) { throw new NotImplementedException(); } + public static void GlobalAlphaFactor(Double factor) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_global_alpha] /// [AutoGenerated(Category = "SUN_global_alpha", Version = "", EntryPoint = "glGlobalAlphaFactorfSUN")] - public static void GlobalAlphaFactor(Single factor) { throw new NotImplementedException(); } + public static void GlobalAlphaFactor(Single factor) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_global_alpha] /// [AutoGenerated(Category = "SUN_global_alpha", Version = "", EntryPoint = "glGlobalAlphaFactoriSUN")] - public static void GlobalAlphaFactor(Int32 factor) { throw new NotImplementedException(); } + public static void GlobalAlphaFactor(Int32 factor) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_global_alpha] /// [AutoGenerated(Category = "SUN_global_alpha", Version = "", EntryPoint = "glGlobalAlphaFactorsSUN")] - public static void GlobalAlphaFactors(Int16 factor) { throw new NotImplementedException(); } + public static void GlobalAlphaFactors(Int16 factor) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_global_alpha] /// [AutoGenerated(Category = "SUN_global_alpha", Version = "", EntryPoint = "glGlobalAlphaFactorubSUN")] - public static void GlobalAlphaFactor(Byte factor) { throw new NotImplementedException(); } + public static void GlobalAlphaFactor(Byte factor) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_global_alpha] /// [AutoGenerated(Category = "SUN_global_alpha", Version = "", EntryPoint = "glGlobalAlphaFactoruiSUN")] [CLSCompliant(false)] - public static void GlobalAlphaFactor(UInt32 factor) { throw new NotImplementedException(); } + public static void GlobalAlphaFactor(UInt32 factor) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_global_alpha] /// [AutoGenerated(Category = "SUN_global_alpha", Version = "", EntryPoint = "glGlobalAlphaFactorusSUN")] [CLSCompliant(false)] - public static void GlobalAlphaFactor(Int16 factor) { throw new NotImplementedException(); } + public static void GlobalAlphaFactor(Int16 factor) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_global_alpha] /// [AutoGenerated(Category = "SUN_global_alpha", Version = "", EntryPoint = "glGlobalAlphaFactorusSUN")] [CLSCompliant(false)] - public static void GlobalAlphaFactor(UInt16 factor) { throw new NotImplementedException(); } + public static void GlobalAlphaFactor(UInt16 factor) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -140308,35 +140308,35 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glNormal3fVertex3fSUN")] - public static void Normal3fVertex3(Single nx, Single ny, Single nz, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void Normal3fVertex3(Single nx, Single ny, Single nz, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 3] /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void Normal3fVertex3([CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void Normal3fVertex3([CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 3] /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void Normal3fVertex3([CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void Normal3fVertex3([CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 3] /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void Normal3fVertex3([CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void Normal3fVertex3([CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_triangle_list] /// /// /// [length: COMPSIZE(type,stride)] [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodePointerSUN")] - public static void ReplacementCodePointer(OpenTK.Graphics.OpenGL.SunTriangleList type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void ReplacementCodePointer(OpenTK.Graphics.OpenGL.SunTriangleList type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_triangle_list] /// @@ -140346,7 +140346,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ReplacementCodePointer(OpenTK.Graphics.OpenGL.SunTriangleList type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SUN_triangle_list] /// @@ -140356,7 +140356,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ReplacementCodePointer(OpenTK.Graphics.OpenGL.SunTriangleList type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SUN_triangle_list] /// @@ -140366,7 +140366,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ReplacementCodePointer(OpenTK.Graphics.OpenGL.SunTriangleList type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SUN_triangle_list] /// @@ -140375,24 +140375,24 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodePointerSUN")] public static void ReplacementCodePointer(OpenTK.Graphics.OpenGL.SunTriangleList type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SUN_triangle_list] /// [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeubSUN")] - public static void ReplacementCode(Byte code) { throw new NotImplementedException(); } + public static void ReplacementCode(Byte code) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_triangle_list] /// [length: COMPSIZE()] [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeubvSUN")] [CLSCompliant(false)] - public static void ReplacementCode([CountAttribute(Computed = "")] Byte[] code) { throw new NotImplementedException(); } + public static void ReplacementCode([CountAttribute(Computed = "")] Byte[] code) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_triangle_list] /// [length: COMPSIZE()] [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeubvSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCode([CountAttribute(Computed = "")] Byte* code) { throw new NotImplementedException(); } + public static unsafe void ReplacementCode([CountAttribute(Computed = "")] Byte* code) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -140404,7 +140404,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor3fVertex3fSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiColor3fVertex3(Int32 rc, Single r, Single g, Single b, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void ReplacementCodeuiColor3fVertex3(Int32 rc, Single r, Single g, Single b, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -140416,7 +140416,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor3fVertex3fSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiColor3fVertex3(UInt32 rc, Single r, Single g, Single b, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void ReplacementCodeuiColor3fVertex3(UInt32 rc, Single r, Single g, Single b, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140424,7 +140424,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor3fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiColor3fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 3)] Single[] c, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiColor3fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 3)] Single[] c, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140432,7 +140432,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor3fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiColor3fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 3)] ref Single c, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiColor3fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 3)] ref Single c, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140440,7 +140440,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor3fVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCodeuiColor3fVertex3([CountAttribute(Count = 1)] Int32* rc, [CountAttribute(Count = 3)] Single* c, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ReplacementCodeuiColor3fVertex3([CountAttribute(Count = 1)] Int32* rc, [CountAttribute(Count = 3)] Single* c, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140448,7 +140448,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor3fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiColor3fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 3)] Single[] c, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiColor3fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 3)] Single[] c, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140456,7 +140456,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor3fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiColor3fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 3)] ref Single c, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiColor3fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 3)] ref Single c, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140464,7 +140464,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor3fVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCodeuiColor3fVertex3([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 3)] Single* c, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ReplacementCodeuiColor3fVertex3([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 3)] Single* c, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -140480,7 +140480,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4fNormal3fVertex3fSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiColor4fNormal3fVertex3(Int32 rc, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void ReplacementCodeuiColor4fNormal3fVertex3(Int32 rc, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -140496,7 +140496,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4fNormal3fVertex3fSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiColor4fNormal3fVertex3(UInt32 rc, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void ReplacementCodeuiColor4fNormal3fVertex3(UInt32 rc, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140505,7 +140505,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiColor4fNormal3fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 4)] Single[] c, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiColor4fNormal3fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 4)] Single[] c, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140514,7 +140514,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiColor4fNormal3fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 4)] ref Single c, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiColor4fNormal3fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 4)] ref Single c, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140523,7 +140523,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCodeuiColor4fNormal3fVertex3([CountAttribute(Count = 1)] Int32* rc, [CountAttribute(Count = 4)] Single* c, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ReplacementCodeuiColor4fNormal3fVertex3([CountAttribute(Count = 1)] Int32* rc, [CountAttribute(Count = 4)] Single* c, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140532,7 +140532,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiColor4fNormal3fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 4)] Single[] c, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiColor4fNormal3fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 4)] Single[] c, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140541,7 +140541,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiColor4fNormal3fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 4)] ref Single c, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiColor4fNormal3fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 4)] ref Single c, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140550,7 +140550,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCodeuiColor4fNormal3fVertex3([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 4)] Single* c, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ReplacementCodeuiColor4fNormal3fVertex3([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 4)] Single* c, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -140563,7 +140563,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4ubVertex3fSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiColor4ubVertex3(Int32 rc, Byte r, Byte g, Byte b, Byte a, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void ReplacementCodeuiColor4ubVertex3(Int32 rc, Byte r, Byte g, Byte b, Byte a, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -140576,7 +140576,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4ubVertex3fSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiColor4ubVertex3(UInt32 rc, Byte r, Byte g, Byte b, Byte a, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void ReplacementCodeuiColor4ubVertex3(UInt32 rc, Byte r, Byte g, Byte b, Byte a, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140584,7 +140584,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4ubVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiColor4ubVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 4)] Byte[] c, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiColor4ubVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 4)] Byte[] c, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140592,7 +140592,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4ubVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiColor4ubVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 4)] ref Byte c, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiColor4ubVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 4)] ref Byte c, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140600,7 +140600,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4ubVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCodeuiColor4ubVertex3([CountAttribute(Count = 1)] Int32* rc, [CountAttribute(Count = 4)] Byte* c, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ReplacementCodeuiColor4ubVertex3([CountAttribute(Count = 1)] Int32* rc, [CountAttribute(Count = 4)] Byte* c, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140608,7 +140608,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4ubVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiColor4ubVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 4)] Byte[] c, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiColor4ubVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 4)] Byte[] c, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140616,7 +140616,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4ubVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiColor4ubVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 4)] ref Byte c, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiColor4ubVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 4)] ref Byte c, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140624,7 +140624,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4ubVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCodeuiColor4ubVertex3([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 4)] Byte* c, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ReplacementCodeuiColor4ubVertex3([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 4)] Byte* c, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -140636,7 +140636,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiNormal3fVertex3fSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiNormal3fVertex3(Int32 rc, Single nx, Single ny, Single nz, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void ReplacementCodeuiNormal3fVertex3(Int32 rc, Single nx, Single ny, Single nz, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -140648,7 +140648,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiNormal3fVertex3fSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiNormal3fVertex3(UInt32 rc, Single nx, Single ny, Single nz, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void ReplacementCodeuiNormal3fVertex3(UInt32 rc, Single nx, Single ny, Single nz, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140656,7 +140656,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiNormal3fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiNormal3fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140664,7 +140664,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiNormal3fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiNormal3fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140672,7 +140672,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCodeuiNormal3fVertex3([CountAttribute(Count = 1)] Int32* rc, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ReplacementCodeuiNormal3fVertex3([CountAttribute(Count = 1)] Int32* rc, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140680,7 +140680,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiNormal3fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiNormal3fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140688,7 +140688,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiNormal3fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiNormal3fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140696,19 +140696,19 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCodeuiNormal3fVertex3([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ReplacementCodeuiNormal3fVertex3([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_triangle_list] /// [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeuiSUN")] [CLSCompliant(false)] - public static void ReplacementCode(Int32 code) { throw new NotImplementedException(); } + public static void ReplacementCode(Int32 code) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_triangle_list] /// [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeuiSUN")] [CLSCompliant(false)] - public static void ReplacementCode(UInt32 code) { throw new NotImplementedException(); } + public static void ReplacementCode(UInt32 code) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -140726,7 +140726,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32 rc, Single s, Single t, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32 rc, Single s, Single t, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -140744,7 +140744,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32 rc, Single s, Single t, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32 rc, Single s, Single t, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140754,7 +140754,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 4)] Single[] c, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 4)] Single[] c, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140764,7 +140764,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 4)] ref Single c, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 4)] ref Single c, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140774,7 +140774,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([CountAttribute(Count = 1)] Int32* rc, [CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 4)] Single* c, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([CountAttribute(Count = 1)] Int32* rc, [CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 4)] Single* c, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140784,7 +140784,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 4)] Single[] c, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 4)] Single[] c, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140794,7 +140794,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 4)] ref Single c, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 4)] ref Single c, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140804,7 +140804,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 4)] Single* c, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 4)] Single* c, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -140818,7 +140818,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32 rc, Single s, Single t, Single nx, Single ny, Single nz, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32 rc, Single s, Single t, Single nx, Single ny, Single nz, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -140832,7 +140832,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32 rc, Single s, Single t, Single nx, Single ny, Single nz, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32 rc, Single s, Single t, Single nx, Single ny, Single nz, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140841,7 +140841,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiTexCoord2fNormal3fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiTexCoord2fNormal3fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140850,7 +140850,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiTexCoord2fNormal3fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiTexCoord2fNormal3fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140859,7 +140859,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([CountAttribute(Count = 1)] Int32* rc, [CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([CountAttribute(Count = 1)] Int32* rc, [CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140868,7 +140868,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiTexCoord2fNormal3fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiTexCoord2fNormal3fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140877,7 +140877,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiTexCoord2fNormal3fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiTexCoord2fNormal3fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140886,7 +140886,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -140897,7 +140897,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fVertex3fSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiTexCoord2fVertex3(Int32 rc, Single s, Single t, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void ReplacementCodeuiTexCoord2fVertex3(Int32 rc, Single s, Single t, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -140908,7 +140908,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fVertex3fSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiTexCoord2fVertex3(UInt32 rc, Single s, Single t, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void ReplacementCodeuiTexCoord2fVertex3(UInt32 rc, Single s, Single t, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140916,7 +140916,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiTexCoord2fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiTexCoord2fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140924,7 +140924,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiTexCoord2fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiTexCoord2fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140932,7 +140932,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCodeuiTexCoord2fVertex3([CountAttribute(Count = 1)] Int32* rc, [CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ReplacementCodeuiTexCoord2fVertex3([CountAttribute(Count = 1)] Int32* rc, [CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140940,7 +140940,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiTexCoord2fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiTexCoord2fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140948,7 +140948,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiTexCoord2fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiTexCoord2fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140956,7 +140956,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCodeuiTexCoord2fVertex3([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ReplacementCodeuiTexCoord2fVertex3([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -140965,7 +140965,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiVertex3fSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiVertex3(Int32 rc, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void ReplacementCodeuiVertex3(Int32 rc, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -140974,109 +140974,109 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiVertex3fSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiVertex3(UInt32 rc, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void ReplacementCodeuiVertex3(UInt32 rc, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCodeuiVertex3([CountAttribute(Count = 1)] Int32* rc, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ReplacementCodeuiVertex3([CountAttribute(Count = 1)] Int32* rc, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCodeuiVertex3([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ReplacementCodeuiVertex3([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_triangle_list] /// [length: COMPSIZE()] [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeuivSUN")] [CLSCompliant(false)] - public static void ReplacementCode([CountAttribute(Computed = "")] Int32[] code) { throw new NotImplementedException(); } + public static void ReplacementCode([CountAttribute(Computed = "")] Int32[] code) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_triangle_list] /// [length: COMPSIZE()] [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeuivSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCode([CountAttribute(Computed = "")] Int32* code) { throw new NotImplementedException(); } + public static unsafe void ReplacementCode([CountAttribute(Computed = "")] Int32* code) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_triangle_list] /// [length: COMPSIZE()] [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeuivSUN")] [CLSCompliant(false)] - public static void ReplacementCode([CountAttribute(Computed = "")] UInt32[] code) { throw new NotImplementedException(); } + public static void ReplacementCode([CountAttribute(Computed = "")] UInt32[] code) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_triangle_list] /// [length: COMPSIZE()] [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeuivSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCode([CountAttribute(Computed = "")] UInt32* code) { throw new NotImplementedException(); } + public static unsafe void ReplacementCode([CountAttribute(Computed = "")] UInt32* code) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_triangle_list] /// [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeusSUN")] [CLSCompliant(false)] - public static void ReplacementCode(Int16 code) { throw new NotImplementedException(); } + public static void ReplacementCode(Int16 code) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_triangle_list] /// [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeusSUN")] [CLSCompliant(false)] - public static void ReplacementCode(UInt16 code) { throw new NotImplementedException(); } + public static void ReplacementCode(UInt16 code) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_triangle_list] /// [length: COMPSIZE()] [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeusvSUN")] [CLSCompliant(false)] - public static void ReplacementCode([CountAttribute(Computed = "")] Int16[] code) { throw new NotImplementedException(); } + public static void ReplacementCode([CountAttribute(Computed = "")] Int16[] code) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_triangle_list] /// [length: COMPSIZE()] [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeusvSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCode([CountAttribute(Computed = "")] Int16* code) { throw new NotImplementedException(); } + public static unsafe void ReplacementCode([CountAttribute(Computed = "")] Int16* code) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_triangle_list] /// [length: COMPSIZE()] [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeusvSUN")] [CLSCompliant(false)] - public static void ReplacementCode([CountAttribute(Computed = "")] UInt16[] code) { throw new NotImplementedException(); } + public static void ReplacementCode([CountAttribute(Computed = "")] UInt16[] code) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_triangle_list] /// [length: COMPSIZE()] [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeusvSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCode([CountAttribute(Computed = "")] UInt16* code) { throw new NotImplementedException(); } + public static unsafe void ReplacementCode([CountAttribute(Computed = "")] UInt16* code) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -141088,7 +141088,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fColor3fVertex3fSUN")] - public static void TexCoord2fColor3fVertex3(Single s, Single t, Single r, Single g, Single b, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void TexCoord2fColor3fVertex3(Single s, Single t, Single r, Single g, Single b, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 2] @@ -141096,7 +141096,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fColor3fVertex3fvSUN")] [CLSCompliant(false)] - public static void TexCoord2fColor3fVertex3([CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 3)] Single[] c, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void TexCoord2fColor3fVertex3([CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 3)] Single[] c, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 2] @@ -141104,7 +141104,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fColor3fVertex3fvSUN")] [CLSCompliant(false)] - public static void TexCoord2fColor3fVertex3([CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 3)] ref Single c, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void TexCoord2fColor3fVertex3([CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 3)] ref Single c, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 2] @@ -141112,7 +141112,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fColor3fVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void TexCoord2fColor3fVertex3([CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 3)] Single* c, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord2fColor3fVertex3([CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 3)] Single* c, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -141128,7 +141128,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fColor4fNormal3fVertex3fSUN")] - public static void TexCoord2fColor4fNormal3fVertex3(Single s, Single t, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void TexCoord2fColor4fNormal3fVertex3(Single s, Single t, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 2] @@ -141137,7 +141137,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fColor4fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void TexCoord2fColor4fNormal3fVertex3([CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 4)] Single[] c, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void TexCoord2fColor4fNormal3fVertex3([CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 4)] Single[] c, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 2] @@ -141146,7 +141146,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fColor4fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void TexCoord2fColor4fNormal3fVertex3([CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 4)] ref Single c, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void TexCoord2fColor4fNormal3fVertex3([CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 4)] ref Single c, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 2] @@ -141155,7 +141155,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fColor4fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void TexCoord2fColor4fNormal3fVertex3([CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 4)] Single* c, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord2fColor4fNormal3fVertex3([CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 4)] Single* c, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -141168,7 +141168,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fColor4ubVertex3fSUN")] - public static void TexCoord2fColor4ubVertex3(Single s, Single t, Byte r, Byte g, Byte b, Byte a, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void TexCoord2fColor4ubVertex3(Single s, Single t, Byte r, Byte g, Byte b, Byte a, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 2] @@ -141176,7 +141176,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fColor4ubVertex3fvSUN")] [CLSCompliant(false)] - public static void TexCoord2fColor4ubVertex3([CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 4)] Byte[] c, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void TexCoord2fColor4ubVertex3([CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 4)] Byte[] c, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 2] @@ -141184,7 +141184,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fColor4ubVertex3fvSUN")] [CLSCompliant(false)] - public static void TexCoord2fColor4ubVertex3([CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 4)] ref Byte c, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void TexCoord2fColor4ubVertex3([CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 4)] ref Byte c, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 2] @@ -141192,7 +141192,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fColor4ubVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void TexCoord2fColor4ubVertex3([CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 4)] Byte* c, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord2fColor4ubVertex3([CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 4)] Byte* c, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -141204,7 +141204,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fNormal3fVertex3fSUN")] - public static void TexCoord2fNormal3fVertex3(Single s, Single t, Single nx, Single ny, Single nz, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void TexCoord2fNormal3fVertex3(Single s, Single t, Single nx, Single ny, Single nz, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 2] @@ -141212,7 +141212,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void TexCoord2fNormal3fVertex3([CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void TexCoord2fNormal3fVertex3([CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 2] @@ -141220,7 +141220,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void TexCoord2fNormal3fVertex3([CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void TexCoord2fNormal3fVertex3([CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 2] @@ -141228,7 +141228,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void TexCoord2fNormal3fVertex3([CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord2fNormal3fVertex3([CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -141237,28 +141237,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fVertex3fSUN")] - public static void TexCoord2fVertex3(Single s, Single t, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void TexCoord2fVertex3(Single s, Single t, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 2] /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fVertex3fvSUN")] [CLSCompliant(false)] - public static void TexCoord2fVertex3([CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void TexCoord2fVertex3([CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 2] /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fVertex3fvSUN")] [CLSCompliant(false)] - public static void TexCoord2fVertex3([CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void TexCoord2fVertex3([CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 2] /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void TexCoord2fVertex3([CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord2fVertex3([CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -141277,7 +141277,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord4fColor4fNormal3fVertex4fSUN")] - public static void TexCoord4fColor4fNormal3fVertex4(Single s, Single t, Single p, Single q, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void TexCoord4fColor4fNormal3fVertex4(Single s, Single t, Single p, Single q, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 4] @@ -141286,7 +141286,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord4fColor4fNormal3fVertex4fvSUN")] [CLSCompliant(false)] - public static void TexCoord4fColor4fNormal3fVertex4([CountAttribute(Count = 4)] Single[] tc, [CountAttribute(Count = 4)] Single[] c, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void TexCoord4fColor4fNormal3fVertex4([CountAttribute(Count = 4)] Single[] tc, [CountAttribute(Count = 4)] Single[] c, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 4] @@ -141295,7 +141295,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord4fColor4fNormal3fVertex4fvSUN")] [CLSCompliant(false)] - public static void TexCoord4fColor4fNormal3fVertex4([CountAttribute(Count = 4)] ref Single tc, [CountAttribute(Count = 4)] ref Single c, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void TexCoord4fColor4fNormal3fVertex4([CountAttribute(Count = 4)] ref Single tc, [CountAttribute(Count = 4)] ref Single c, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 4] @@ -141304,7 +141304,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord4fColor4fNormal3fVertex4fvSUN")] [CLSCompliant(false)] - public static unsafe void TexCoord4fColor4fNormal3fVertex4([CountAttribute(Count = 4)] Single* tc, [CountAttribute(Count = 4)] Single* c, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord4fColor4fNormal3fVertex4([CountAttribute(Count = 4)] Single* tc, [CountAttribute(Count = 4)] Single* c, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -141316,28 +141316,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord4fVertex4fSUN")] - public static void TexCoord4fVertex4(Single s, Single t, Single p, Single q, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void TexCoord4fVertex4(Single s, Single t, Single p, Single q, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 4] /// [length: 4] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord4fVertex4fvSUN")] [CLSCompliant(false)] - public static void TexCoord4fVertex4([CountAttribute(Count = 4)] Single[] tc, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void TexCoord4fVertex4([CountAttribute(Count = 4)] Single[] tc, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 4] /// [length: 4] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord4fVertex4fvSUN")] [CLSCompliant(false)] - public static void TexCoord4fVertex4([CountAttribute(Count = 4)] ref Single tc, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void TexCoord4fVertex4([CountAttribute(Count = 4)] ref Single tc, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 4] /// [length: 4] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord4fVertex4fvSUN")] [CLSCompliant(false)] - public static unsafe void TexCoord4fVertex4([CountAttribute(Count = 4)] Single* tc, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord4fVertex4([CountAttribute(Count = 4)] Single* tc, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } } @@ -141345,7 +141345,7 @@ namespace OpenTK.Graphics.OpenGL { /// [requires: SUNX_constant_data] [AutoGenerated(Category = "SUNX_constant_data", Version = "", EntryPoint = "glFinishTextureSUNX")] - public static void FinishTexture() { throw new NotImplementedException(); } + public static void FinishTexture() { throw new BindingsNotRewrittenException(); } } diff --git a/src/OpenTK/Graphics/OpenGL4/GL4.cs b/src/OpenTK/Graphics/OpenGL4/GL4.cs index 0e0ac94d..1dfba67d 100644 --- a/src/OpenTK/Graphics/OpenGL4/GL4.cs +++ b/src/OpenTK/Graphics/OpenGL4/GL4.cs @@ -2773,126 +2773,126 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glBeginPerfMonitorAMD")] [CLSCompliant(false)] - public static void BeginPerfMonitor(Int32 monitor) { throw new NotImplementedException(); } + public static void BeginPerfMonitor(Int32 monitor) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glBeginPerfMonitorAMD")] [CLSCompliant(false)] - public static void BeginPerfMonitor(UInt32 monitor) { throw new NotImplementedException(); } + public static void BeginPerfMonitor(UInt32 monitor) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitor([CountAttribute(Parameter = "n")] Int32 monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitor([CountAttribute(Parameter = "n")] Int32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitor([CountAttribute(Parameter = "n")] UInt32 monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitor([CountAttribute(Parameter = "n")] UInt32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] Int32[] monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] Int32[] monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static unsafe void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] Int32* monitors) { throw new NotImplementedException(); } + public static unsafe void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] Int32* monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static unsafe void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] UInt32* monitors) { throw new NotImplementedException(); } + public static unsafe void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] UInt32* monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glEndPerfMonitorAMD")] [CLSCompliant(false)] - public static void EndPerfMonitor(Int32 monitor) { throw new NotImplementedException(); } + public static void EndPerfMonitor(Int32 monitor) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glEndPerfMonitorAMD")] [CLSCompliant(false)] - public static void EndPerfMonitor(UInt32 monitor) { throw new NotImplementedException(); } + public static void EndPerfMonitor(UInt32 monitor) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static Int32 GenPerfMonitor() { throw new NotImplementedException(); } + public static Int32 GenPerfMonitor() { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] monitors) { throw new NotImplementedException(); } + public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 monitors) { throw new NotImplementedException(); } + public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* monitors) { throw new NotImplementedException(); } + public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] monitors) { throw new NotImplementedException(); } + public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 monitors) { throw new NotImplementedException(); } + public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* monitors) { throw new NotImplementedException(); } + public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2902,7 +2902,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.OpenGL4.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] Int32[] data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.OpenGL4.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] Int32[] data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2912,7 +2912,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.OpenGL4.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] out Int32 data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.OpenGL4.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] out Int32 data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2922,7 +2922,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.OpenGL4.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] Int32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.OpenGL4.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] Int32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2932,7 +2932,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.OpenGL4.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32[] data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.OpenGL4.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32[] data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2942,7 +2942,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.OpenGL4.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] out UInt32 data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.OpenGL4.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] out UInt32 data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2952,7 +2952,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.OpenGL4.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.OpenGL4.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2961,7 +2961,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2972,7 +2972,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2983,7 +2983,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2994,7 +2994,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3005,7 +3005,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3014,7 +3014,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3025,7 +3025,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3036,7 +3036,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3047,7 +3047,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3058,7 +3058,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3068,7 +3068,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] Int32[] counters) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] Int32[] counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3078,7 +3078,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] out Int32 counters) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] out Int32 counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3088,7 +3088,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] Int32* counters) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] Int32* counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3098,7 +3098,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32[] counters) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32[] counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3108,7 +3108,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] out UInt32 counters) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] out UInt32 counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3118,7 +3118,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32* counters) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32* counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3128,7 +3128,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3138,7 +3138,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3148,7 +3148,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3158,7 +3158,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -3166,7 +3166,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] Int32[] groups) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] Int32[] groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -3174,7 +3174,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] out Int32 groups) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] out Int32 groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -3182,7 +3182,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32[] groups) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32[] groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -3190,7 +3190,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] out UInt32 groups) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] out UInt32 groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -3198,7 +3198,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] Int32* groups) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] Int32* groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -3206,7 +3206,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32* groups) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32* groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3215,7 +3215,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3224,7 +3224,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3233,7 +3233,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3242,7 +3242,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3252,7 +3252,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] Int32[] counterList) { throw new NotImplementedException(); } + public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] Int32[] counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3262,7 +3262,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] out Int32 counterList) { throw new NotImplementedException(); } + public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] out Int32 counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3272,7 +3272,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static unsafe void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] Int32* counterList) { throw new NotImplementedException(); } + public static unsafe void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] Int32* counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3282,7 +3282,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32[] counterList) { throw new NotImplementedException(); } + public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32[] counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3292,7 +3292,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] out UInt32 counterList) { throw new NotImplementedException(); } + public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] out UInt32 counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3302,7 +3302,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static unsafe void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32* counterList) { throw new NotImplementedException(); } + public static unsafe void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32* counterList) { throw new BindingsNotRewrittenException(); } } @@ -3319,7 +3319,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendEquationiARB")] [CLSCompliant(false)] - public static void BlendEquation(Int32 buf, OpenTK.Graphics.OpenGL4.BlendEquationMode mode) { throw new NotImplementedException(); } + public static void BlendEquation(Int32 buf, OpenTK.Graphics.OpenGL4.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -3332,7 +3332,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendEquationiARB")] [CLSCompliant(false)] - public static void BlendEquation(UInt32 buf, OpenTK.Graphics.OpenGL4.BlendEquationMode mode) { throw new NotImplementedException(); } + public static void BlendEquation(UInt32 buf, OpenTK.Graphics.OpenGL4.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Set the RGB blend equation and the alpha blend equation separately @@ -3348,7 +3348,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendEquationSeparateiARB")] [CLSCompliant(false)] - public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.OpenGL4.All modeRGB, OpenTK.Graphics.OpenGL4.All modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.OpenGL4.All modeRGB, OpenTK.Graphics.OpenGL4.All modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Set the RGB blend equation and the alpha blend equation separately @@ -3364,7 +3364,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendEquationSeparateiARB")] [CLSCompliant(false)] - public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.OpenGL4.All modeRGB, OpenTK.Graphics.OpenGL4.All modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.OpenGL4.All modeRGB, OpenTK.Graphics.OpenGL4.All modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Specify pixel arithmetic @@ -3380,7 +3380,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendFunciARB")] [CLSCompliant(false)] - public static void BlendFunc(Int32 buf, OpenTK.Graphics.OpenGL4.All src, OpenTK.Graphics.OpenGL4.All dst) { throw new NotImplementedException(); } + public static void BlendFunc(Int32 buf, OpenTK.Graphics.OpenGL4.All src, OpenTK.Graphics.OpenGL4.All dst) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Specify pixel arithmetic @@ -3396,7 +3396,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendFunciARB")] [CLSCompliant(false)] - public static void BlendFunc(UInt32 buf, OpenTK.Graphics.OpenGL4.All src, OpenTK.Graphics.OpenGL4.All dst) { throw new NotImplementedException(); } + public static void BlendFunc(UInt32 buf, OpenTK.Graphics.OpenGL4.All src, OpenTK.Graphics.OpenGL4.All dst) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Specify pixel arithmetic for RGB and alpha components separately @@ -3418,7 +3418,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendFuncSeparateiARB")] [CLSCompliant(false)] - public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.OpenGL4.All srcRGB, OpenTK.Graphics.OpenGL4.All dstRGB, OpenTK.Graphics.OpenGL4.All srcAlpha, OpenTK.Graphics.OpenGL4.All dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.OpenGL4.All srcRGB, OpenTK.Graphics.OpenGL4.All dstRGB, OpenTK.Graphics.OpenGL4.All srcAlpha, OpenTK.Graphics.OpenGL4.All dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Specify pixel arithmetic for RGB and alpha components separately @@ -3440,7 +3440,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendFuncSeparateiARB")] [CLSCompliant(false)] - public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.OpenGL4.All srcRGB, OpenTK.Graphics.OpenGL4.All dstRGB, OpenTK.Graphics.OpenGL4.All srcAlpha, OpenTK.Graphics.OpenGL4.All dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.OpenGL4.All srcRGB, OpenTK.Graphics.OpenGL4.All dstRGB, OpenTK.Graphics.OpenGL4.All srcAlpha, OpenTK.Graphics.OpenGL4.All dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_buffer] /// @@ -3448,7 +3448,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_sparse_buffer", Version = "", EntryPoint = "glBufferPageCommitmentARB")] - public static void BufferPageCommitment(OpenTK.Graphics.OpenGL4.All target, IntPtr offset, Int32 size, bool commit) { throw new NotImplementedException(); } + public static void BufferPageCommitment(OpenTK.Graphics.OpenGL4.All target, IntPtr offset, Int32 size, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_buffer] /// @@ -3456,7 +3456,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_sparse_buffer", Version = "", EntryPoint = "glBufferPageCommitmentARB")] - public static void BufferPageCommitment(OpenTK.Graphics.OpenGL4.All target, IntPtr offset, IntPtr size, bool commit) { throw new NotImplementedException(); } + public static void BufferPageCommitment(OpenTK.Graphics.OpenGL4.All target, IntPtr offset, IntPtr size, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -3465,7 +3465,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glCompileShaderIncludeARB")] [CLSCompliant(false)] - public static void CompileShaderInclude(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] Int32[] length) { throw new NotImplementedException(); } + public static void CompileShaderInclude(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -3474,7 +3474,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glCompileShaderIncludeARB")] [CLSCompliant(false)] - public static void CompileShaderInclude(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new NotImplementedException(); } + public static void CompileShaderInclude(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -3483,7 +3483,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glCompileShaderIncludeARB")] [CLSCompliant(false)] - public static unsafe void CompileShaderInclude(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] Int32* length) { throw new NotImplementedException(); } + public static unsafe void CompileShaderInclude(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -3492,7 +3492,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glCompileShaderIncludeARB")] [CLSCompliant(false)] - public static void CompileShaderInclude(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] Int32[] length) { throw new NotImplementedException(); } + public static void CompileShaderInclude(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -3501,7 +3501,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glCompileShaderIncludeARB")] [CLSCompliant(false)] - public static void CompileShaderInclude(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new NotImplementedException(); } + public static void CompileShaderInclude(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -3510,7 +3510,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glCompileShaderIncludeARB")] [CLSCompliant(false)] - public static unsafe void CompileShaderInclude(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] Int32* length) { throw new NotImplementedException(); } + public static unsafe void CompileShaderInclude(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_cl_event] /// @@ -3518,7 +3518,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_cl_event", Version = "", EntryPoint = "glCreateSyncFromCLeventARB")] [CLSCompliant(false)] - public static IntPtr CreateSyncFromCLevent([OutAttribute] IntPtr[] context, [OutAttribute] IntPtr[] @event, Int32 flags) { throw new NotImplementedException(); } + public static IntPtr CreateSyncFromCLevent([OutAttribute] IntPtr[] context, [OutAttribute] IntPtr[] @event, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_cl_event] /// @@ -3526,7 +3526,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_cl_event", Version = "", EntryPoint = "glCreateSyncFromCLeventARB")] [CLSCompliant(false)] - public static IntPtr CreateSyncFromCLevent([OutAttribute] IntPtr[] context, [OutAttribute] IntPtr[] @event, UInt32 flags) { throw new NotImplementedException(); } + public static IntPtr CreateSyncFromCLevent([OutAttribute] IntPtr[] context, [OutAttribute] IntPtr[] @event, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_cl_event] /// @@ -3534,7 +3534,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_cl_event", Version = "", EntryPoint = "glCreateSyncFromCLeventARB")] [CLSCompliant(false)] - public static IntPtr CreateSyncFromCLevent([OutAttribute] out IntPtr context, [OutAttribute] out IntPtr @event, Int32 flags) { throw new NotImplementedException(); } + public static IntPtr CreateSyncFromCLevent([OutAttribute] out IntPtr context, [OutAttribute] out IntPtr @event, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_cl_event] /// @@ -3542,7 +3542,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_cl_event", Version = "", EntryPoint = "glCreateSyncFromCLeventARB")] [CLSCompliant(false)] - public static IntPtr CreateSyncFromCLevent([OutAttribute] out IntPtr context, [OutAttribute] out IntPtr @event, UInt32 flags) { throw new NotImplementedException(); } + public static IntPtr CreateSyncFromCLevent([OutAttribute] out IntPtr context, [OutAttribute] out IntPtr @event, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_cl_event] /// @@ -3550,7 +3550,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_cl_event", Version = "", EntryPoint = "glCreateSyncFromCLeventARB")] [CLSCompliant(false)] - public static unsafe IntPtr CreateSyncFromCLevent([OutAttribute] IntPtr* context, [OutAttribute] IntPtr* @event, Int32 flags) { throw new NotImplementedException(); } + public static unsafe IntPtr CreateSyncFromCLevent([OutAttribute] IntPtr* context, [OutAttribute] IntPtr* @event, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_cl_event] /// @@ -3558,7 +3558,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_cl_event", Version = "", EntryPoint = "glCreateSyncFromCLeventARB")] [CLSCompliant(false)] - public static unsafe IntPtr CreateSyncFromCLevent([OutAttribute] IntPtr* context, [OutAttribute] IntPtr* @event, UInt32 flags) { throw new NotImplementedException(); } + public static unsafe IntPtr CreateSyncFromCLevent([OutAttribute] IntPtr* context, [OutAttribute] IntPtr* @event, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Specify a callback to receive debugging messages from the GL @@ -3570,7 +3570,7 @@ namespace OpenTK.Graphics.OpenGL4 /// A user supplied pointer that will be passed on each invocation of callback. /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageCallbackARB")] - public static void DebugMessageCallback(DebugProcArb callback, [CountAttribute(Computed = "callback")] IntPtr userParam) { throw new NotImplementedException(); } + public static void DebugMessageCallback(DebugProcArb callback, [CountAttribute(Computed = "callback")] IntPtr userParam) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Specify a callback to receive debugging messages from the GL @@ -3585,7 +3585,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcArb callback, [InAttribute, OutAttribute, CountAttribute(Computed = "callback")] T1[] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Specify a callback to receive debugging messages from the GL @@ -3600,7 +3600,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcArb callback, [InAttribute, OutAttribute, CountAttribute(Computed = "callback")] T1[,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Specify a callback to receive debugging messages from the GL @@ -3615,7 +3615,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcArb callback, [InAttribute, OutAttribute, CountAttribute(Computed = "callback")] T1[,,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Specify a callback to receive debugging messages from the GL @@ -3629,7 +3629,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageCallbackARB")] public static void DebugMessageCallback(DebugProcArb callback, [InAttribute, OutAttribute, CountAttribute(Computed = "callback")] ref T1 userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Control the reporting of debug messages in a debug context @@ -3654,7 +3654,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageControlARB")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Control the reporting of debug messages in a debug context @@ -3679,7 +3679,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageControlARB")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Control the reporting of debug messages in a debug context @@ -3704,7 +3704,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageControlARB")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Control the reporting of debug messages in a debug context @@ -3729,7 +3729,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageControlARB")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Control the reporting of debug messages in a debug context @@ -3754,7 +3754,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageControlARB")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Control the reporting of debug messages in a debug context @@ -3779,7 +3779,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageControlARB")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Inject an application-supplied message into the debug message queue @@ -3804,7 +3804,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageInsertARB")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, Int32 id, OpenTK.Graphics.OpenGL4.All severity, Int32 length, [CountAttribute(Parameter = "length")] String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, Int32 id, OpenTK.Graphics.OpenGL4.All severity, Int32 length, [CountAttribute(Parameter = "length")] String buf) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Inject an application-supplied message into the debug message queue @@ -3829,13 +3829,13 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageInsertARB")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, UInt32 id, OpenTK.Graphics.OpenGL4.All severity, Int32 length, [CountAttribute(Parameter = "length")] String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, UInt32 id, OpenTK.Graphics.OpenGL4.All severity, Int32 length, [CountAttribute(Parameter = "length")] String buf) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// /// [length: namelen] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glDeleteNamedStringARB")] - public static void DeleteNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name) { throw new NotImplementedException(); } + public static void DeleteNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_compute_variable_group_size] /// @@ -3846,7 +3846,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_compute_variable_group_size", Version = "", EntryPoint = "glDispatchComputeGroupSizeARB")] [CLSCompliant(false)] - public static void DispatchComputeGroupSize(Int32 num_groups_x, Int32 num_groups_y, Int32 num_groups_z, Int32 group_size_x, Int32 group_size_y, Int32 group_size_z) { throw new NotImplementedException(); } + public static void DispatchComputeGroupSize(Int32 num_groups_x, Int32 num_groups_y, Int32 num_groups_z, Int32 group_size_x, Int32 group_size_y, Int32 group_size_z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_compute_variable_group_size] /// @@ -3857,7 +3857,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_compute_variable_group_size", Version = "", EntryPoint = "glDispatchComputeGroupSizeARB")] [CLSCompliant(false)] - public static void DispatchComputeGroupSize(UInt32 num_groups_x, UInt32 num_groups_y, UInt32 num_groups_z, UInt32 group_size_x, UInt32 group_size_y, UInt32 group_size_z) { throw new NotImplementedException(); } + public static void DispatchComputeGroupSize(UInt32 num_groups_x, UInt32 num_groups_y, UInt32 num_groups_z, UInt32 group_size_x, UInt32 group_size_y, UInt32 group_size_z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_instanced] /// Draw multiple instances of a range of elements @@ -3875,7 +3875,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "ARB_draw_instanced", Version = "", EntryPoint = "glDrawArraysInstancedARB")] - public static void DrawArraysInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 first, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 first, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_instanced] /// Draw multiple instances of a set of elements @@ -3896,7 +3896,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "ARB_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedARB")] - public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_instanced] /// Draw multiple instances of a set of elements @@ -3920,7 +3920,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_instanced] /// Draw multiple instances of a set of elements @@ -3944,7 +3944,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_instanced] /// Draw multiple instances of a set of elements @@ -3968,7 +3968,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_instanced] /// Draw multiple instances of a set of elements @@ -3991,11 +3991,11 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedARB")] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glEvaluateDepthValuesARB")] - public static void EvaluateDepthValues() { throw new NotImplementedException(); } + public static void EvaluateDepthValues() { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -4004,7 +4004,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, Int32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -4013,7 +4013,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, Int32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -4022,7 +4022,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, Int32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -4031,7 +4031,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, UInt32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -4040,7 +4040,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, UInt32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -4049,7 +4049,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, UInt32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_geometry_shader4] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -4068,7 +4068,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_geometry_shader4", Version = "", EntryPoint = "glFramebufferTextureARB")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_geometry_shader4] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -4087,7 +4087,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_geometry_shader4", Version = "", EntryPoint = "glFramebufferTextureARB")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_geometry_shader4] /// @@ -4097,7 +4097,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_geometry_shader4", Version = "", EntryPoint = "glFramebufferTextureFaceARB")] [CLSCompliant(false)] - public static void FramebufferTextureFace(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.TextureTarget face) { throw new NotImplementedException(); } + public static void FramebufferTextureFace(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.TextureTarget face) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_geometry_shader4] /// @@ -4107,7 +4107,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_geometry_shader4", Version = "", EntryPoint = "glFramebufferTextureFaceARB")] [CLSCompliant(false)] - public static void FramebufferTextureFace(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.TextureTarget face) { throw new NotImplementedException(); } + public static void FramebufferTextureFace(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.TextureTarget face) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_geometry_shader4] /// Attach a single layer of a texture to a framebuffer @@ -4129,7 +4129,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_geometry_shader4", Version = "", EntryPoint = "glFramebufferTextureLayerARB")] [CLSCompliant(false)] - public static void FramebufferTextureLayer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } + public static void FramebufferTextureLayer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_geometry_shader4] /// Attach a single layer of a texture to a framebuffer @@ -4151,7 +4151,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_geometry_shader4", Version = "", EntryPoint = "glFramebufferTextureLayerARB")] [CLSCompliant(false)] - public static void FramebufferTextureLayer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } + public static void FramebufferTextureLayer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Retrieve messages from the debug message log @@ -4182,7 +4182,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Retrieve messages from the debug message log @@ -4213,7 +4213,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Retrieve messages from the debug message log @@ -4244,7 +4244,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Retrieve messages from the debug message log @@ -4275,7 +4275,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Retrieve messages from the debug message log @@ -4306,7 +4306,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Retrieve messages from the debug message log @@ -4337,11 +4337,11 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetGraphicsResetStatusARB")] - public static OpenTK.Graphics.OpenGL4.All GetGraphicsResetStatus() { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL4.All GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -4351,7 +4351,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetImageHandleARB")] [CLSCompliant(false)] - public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL4.All format) { throw new NotImplementedException(); } + public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL4.All format) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -4361,7 +4361,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetImageHandleARB")] [CLSCompliant(false)] - public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL4.All format) { throw new NotImplementedException(); } + public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL4.All format) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -4371,7 +4371,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glGetNamedStringARB")] [CLSCompliant(false)] - public static void GetNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 stringlen, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String @string) { throw new NotImplementedException(); } + public static void GetNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 stringlen, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String @string) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -4381,7 +4381,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glGetNamedStringARB")] [CLSCompliant(false)] - public static unsafe void GetNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* stringlen, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String @string) { throw new NotImplementedException(); } + public static unsafe void GetNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* stringlen, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String @string) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -4390,7 +4390,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glGetNamedStringivARB")] [CLSCompliant(false)] - public static void GetNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -4399,7 +4399,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glGetNamedStringivARB")] [CLSCompliant(false)] - public static void GetNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -4408,7 +4408,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glGetNamedStringivARB")] [CLSCompliant(false)] - public static unsafe void GetNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4417,7 +4417,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnColorTableARB")] - public static void GetnColorTable(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr table) { throw new NotImplementedException(); } + public static void GetnColorTable(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr table) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4429,7 +4429,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnColorTable(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] table) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4441,7 +4441,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnColorTable(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] table) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4453,7 +4453,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnColorTable(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] table) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4464,7 +4464,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnColorTableARB")] public static void GetnColorTable(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 table) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4472,7 +4472,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnCompressedTexImageARB")] - public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 lod, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr img) { throw new NotImplementedException(); } + public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 lod, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr img) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4483,7 +4483,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T3[] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4494,7 +4494,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T3[,] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4505,7 +4505,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T3[,,] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4515,7 +4515,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnCompressedTexImageARB")] public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T3 img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4524,7 +4524,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnConvolutionFilterARB")] - public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr image) { throw new NotImplementedException(); } + public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4536,7 +4536,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] image) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4548,7 +4548,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] image) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4560,7 +4560,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] image) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4571,7 +4571,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnConvolutionFilterARB")] public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 image) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4581,7 +4581,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnHistogramARB")] - public static void GetnHistogram(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr values) { throw new NotImplementedException(); } + public static void GetnHistogram(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4594,7 +4594,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnHistogram(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4607,7 +4607,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnHistogram(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[,] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4620,7 +4620,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnHistogram(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[,,] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4632,7 +4632,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnHistogramARB")] public static void GetnHistogram(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T5 values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4641,7 +4641,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapdvARB")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double[] v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4650,7 +4650,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapdvARB")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Double v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Double v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4659,7 +4659,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapdvARB")] [CLSCompliant(false)] - public static unsafe void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double* v) { throw new NotImplementedException(); } + public static unsafe void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4668,7 +4668,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapfvARB")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4677,7 +4677,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapfvARB")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4686,7 +4686,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapfvARB")] [CLSCompliant(false)] - public static unsafe void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* v) { throw new NotImplementedException(); } + public static unsafe void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4695,7 +4695,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapivARB")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4704,7 +4704,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapivARB")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4713,7 +4713,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapivARB")] [CLSCompliant(false)] - public static unsafe void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4723,7 +4723,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMinmaxARB")] - public static void GetnMinmax(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr values) { throw new NotImplementedException(); } + public static void GetnMinmax(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4736,7 +4736,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnMinmax(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4749,7 +4749,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnMinmax(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[,] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4762,7 +4762,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnMinmax(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[,,] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4774,7 +4774,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMinmaxARB")] public static void GetnMinmax(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T5 values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4782,7 +4782,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapfvARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4790,7 +4790,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapfvARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4798,7 +4798,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapfvARB")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* values) { throw new NotImplementedException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4806,7 +4806,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4814,7 +4814,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4822,7 +4822,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4830,7 +4830,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32[] values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4838,7 +4838,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out UInt32 values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out UInt32 values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4846,7 +4846,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32* values) { throw new NotImplementedException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32* values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4854,7 +4854,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int16[] values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int16[] values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4862,7 +4862,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int16 values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int16 values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4870,7 +4870,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int16* values) { throw new NotImplementedException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int16* values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4878,7 +4878,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt16[] values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt16[] values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4886,7 +4886,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out UInt16 values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out UInt16 values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4894,33 +4894,33 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt16* values) { throw new NotImplementedException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt16* values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPolygonStippleARB")] [CLSCompliant(false)] - public static Byte GetnPolygonStipple() { throw new NotImplementedException(); } + public static Byte GetnPolygonStipple() { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPolygonStippleARB")] [CLSCompliant(false)] - public static void GetnPolygonStipple(Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Byte[] pattern) { throw new NotImplementedException(); } + public static void GetnPolygonStipple(Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Byte[] pattern) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPolygonStippleARB")] [CLSCompliant(false)] - public static void GetnPolygonStipple(Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Byte pattern) { throw new NotImplementedException(); } + public static void GetnPolygonStipple(Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Byte pattern) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPolygonStippleARB")] [CLSCompliant(false)] - public static unsafe void GetnPolygonStipple(Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Byte* pattern) { throw new NotImplementedException(); } + public static unsafe void GetnPolygonStipple(Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Byte* pattern) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4932,7 +4932,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: columnBufSize] /// [length: 0] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnSeparableFilterARB")] - public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 rowBufSize, [OutAttribute, CountAttribute(Parameter = "rowBufSize")] IntPtr row, Int32 columnBufSize, [OutAttribute, CountAttribute(Parameter = "columnBufSize")] IntPtr column, [OutAttribute, CountAttribute(Count = 0)] IntPtr span) { throw new NotImplementedException(); } + public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 rowBufSize, [OutAttribute, CountAttribute(Parameter = "rowBufSize")] IntPtr row, Int32 columnBufSize, [OutAttribute, CountAttribute(Parameter = "columnBufSize")] IntPtr column, [OutAttribute, CountAttribute(Count = 0)] IntPtr span) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4949,7 +4949,7 @@ namespace OpenTK.Graphics.OpenGL4 where T4 : struct where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4966,7 +4966,7 @@ namespace OpenTK.Graphics.OpenGL4 where T4 : struct where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4983,7 +4983,7 @@ namespace OpenTK.Graphics.OpenGL4 where T4 : struct where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4999,7 +4999,7 @@ namespace OpenTK.Graphics.OpenGL4 where T4 : struct where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5009,7 +5009,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnTexImageARB")] - public static void GetnTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 level, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr img) { throw new NotImplementedException(); } + public static void GetnTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 level, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr img) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5022,7 +5022,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 level, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[] img) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5035,7 +5035,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 level, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[,] img) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5048,7 +5048,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 level, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[,,] img) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5060,7 +5060,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnTexImageARB")] public static void GetnTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 level, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T5 img) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5069,7 +5069,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformdvARB")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5078,7 +5078,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformdvARB")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Double @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5087,7 +5087,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformdvARB")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5096,7 +5096,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformdvARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5105,7 +5105,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformdvARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Double @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5114,7 +5114,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformdvARB")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5123,7 +5123,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformfvARB")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5132,7 +5132,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformfvARB")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5141,7 +5141,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformfvARB")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5150,7 +5150,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformfvARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5159,7 +5159,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformfvARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5168,7 +5168,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformfvARB")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// @@ -5177,7 +5177,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetnUniformi64vARB")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// @@ -5186,7 +5186,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetnUniformi64vARB")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// @@ -5195,7 +5195,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetnUniformi64vARB")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// @@ -5204,7 +5204,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetnUniformi64vARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// @@ -5213,7 +5213,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetnUniformi64vARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// @@ -5222,7 +5222,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetnUniformi64vARB")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5231,7 +5231,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformivARB")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5240,7 +5240,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformivARB")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5249,7 +5249,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformivARB")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5258,7 +5258,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformivARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5267,7 +5267,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformivARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5276,7 +5276,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformivARB")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// @@ -5285,7 +5285,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetnUniformui64vARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// @@ -5294,7 +5294,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetnUniformui64vARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// @@ -5303,7 +5303,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetnUniformui64vARB")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5312,7 +5312,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformuivARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5321,7 +5321,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformuivARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5330,33 +5330,33 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformuivARB")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleARB")] [CLSCompliant(false)] - public static Int64 GetTextureHandle(Int32 texture) { throw new NotImplementedException(); } + public static Int64 GetTextureHandle(Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleARB")] [CLSCompliant(false)] - public static Int64 GetTextureHandle(UInt32 texture) { throw new NotImplementedException(); } + public static Int64 GetTextureHandle(UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetTextureSamplerHandleARB")] [CLSCompliant(false)] - public static Int64 GetTextureSamplerHandle(Int32 texture, Int32 sampler) { throw new NotImplementedException(); } + public static Int64 GetTextureSamplerHandle(Int32 texture, Int32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetTextureSamplerHandleARB")] [CLSCompliant(false)] - public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new NotImplementedException(); } + public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Returns the value of a uniform variable @@ -5372,7 +5372,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetUniformi64vARB")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Returns the value of a uniform variable @@ -5388,7 +5388,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetUniformi64vARB")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Returns the value of a uniform variable @@ -5404,7 +5404,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetUniformi64vARB")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Returns the value of a uniform variable @@ -5420,7 +5420,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetUniformi64vARB")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Returns the value of a uniform variable @@ -5436,7 +5436,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetUniformi64vARB")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Returns the value of a uniform variable @@ -5452,7 +5452,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetUniformi64vARB")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Returns the value of a uniform variable @@ -5468,7 +5468,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetUniformui64vARB")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Returns the value of a uniform variable @@ -5484,7 +5484,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetUniformui64vARB")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Returns the value of a uniform variable @@ -5500,7 +5500,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetUniformui64vARB")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -5508,7 +5508,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetVertexAttribLui64vARB")] [CLSCompliant(false)] - public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameterArb pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameterArb pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -5516,7 +5516,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetVertexAttribLui64vARB")] [CLSCompliant(false)] - public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameterArb pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameterArb pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -5524,7 +5524,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetVertexAttribLui64vARB")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameterArb pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameterArb pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -5532,7 +5532,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetVertexAttribLui64vARB")] [CLSCompliant(false)] - public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameterArb pname, [OutAttribute] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameterArb pname, [OutAttribute] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -5540,7 +5540,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetVertexAttribLui64vARB")] [CLSCompliant(false)] - public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameterArb pname, [OutAttribute] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameterArb pname, [OutAttribute] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -5548,99 +5548,99 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetVertexAttribLui64vARB")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameterArb pname, [OutAttribute] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameterArb pname, [OutAttribute] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glIsImageHandleResidentARB")] [CLSCompliant(false)] - public static bool IsImageHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static bool IsImageHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glIsImageHandleResidentARB")] [CLSCompliant(false)] - public static bool IsImageHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static bool IsImageHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// /// [length: namelen] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glIsNamedStringARB")] - public static bool IsNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name) { throw new NotImplementedException(); } + public static bool IsNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glIsTextureHandleResidentARB")] [CLSCompliant(false)] - public static bool IsTextureHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static bool IsTextureHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glIsTextureHandleResidentARB")] [CLSCompliant(false)] - public static bool IsTextureHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static bool IsTextureHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleNonResidentARB")] [CLSCompliant(false)] - public static void MakeImageHandleNonResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeImageHandleNonResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleNonResidentARB")] [CLSCompliant(false)] - public static void MakeImageHandleNonResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeImageHandleNonResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleResidentARB")] [CLSCompliant(false)] - public static void MakeImageHandleResident(Int64 handle, OpenTK.Graphics.OpenGL4.All access) { throw new NotImplementedException(); } + public static void MakeImageHandleResident(Int64 handle, OpenTK.Graphics.OpenGL4.All access) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleResidentARB")] [CLSCompliant(false)] - public static void MakeImageHandleResident(UInt64 handle, OpenTK.Graphics.OpenGL4.All access) { throw new NotImplementedException(); } + public static void MakeImageHandleResident(UInt64 handle, OpenTK.Graphics.OpenGL4.All access) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleNonResidentARB")] [CLSCompliant(false)] - public static void MakeTextureHandleNonResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleNonResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleNonResidentARB")] [CLSCompliant(false)] - public static void MakeTextureHandleNonResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleNonResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleResidentARB")] [CLSCompliant(false)] - public static void MakeTextureHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleResidentARB")] [CLSCompliant(false)] - public static void MakeTextureHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_parallel_shader_compile] /// [AutoGenerated(Category = "ARB_parallel_shader_compile", Version = "", EntryPoint = "glMaxShaderCompilerThreadsARB")] [CLSCompliant(false)] - public static void MaxShaderCompilerThreads(Int32 count) { throw new NotImplementedException(); } + public static void MaxShaderCompilerThreads(Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_parallel_shader_compile] /// [AutoGenerated(Category = "ARB_parallel_shader_compile", Version = "", EntryPoint = "glMaxShaderCompilerThreadsARB")] [CLSCompliant(false)] - public static void MaxShaderCompilerThreads(UInt32 count) { throw new NotImplementedException(); } + public static void MaxShaderCompilerThreads(UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_shading] /// Specifies minimum rate at which sample shaing takes place @@ -5649,7 +5649,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the rate at which samples are shaded within each covered pixel. /// [AutoGenerated(Category = "ARB_sample_shading", Version = "", EntryPoint = "glMinSampleShadingARB")] - public static void MinSampleShading(Single value) { throw new NotImplementedException(); } + public static void MinSampleShading(Single value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -5658,7 +5658,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_indirect_parameters", Version = "", EntryPoint = "glMultiDrawArraysIndirectCountARB")] - public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -5670,7 +5670,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] T1[] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -5682,7 +5682,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] T1[,] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -5694,7 +5694,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] T1[,,] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -5705,7 +5705,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_indirect_parameters", Version = "", EntryPoint = "glMultiDrawArraysIndirectCountARB")] public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] ref T1 indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -5715,7 +5715,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_indirect_parameters", Version = "", EntryPoint = "glMultiDrawElementsIndirectCountARB")] - public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -5728,7 +5728,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -5741,7 +5741,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[,] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -5754,7 +5754,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[,,] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -5766,7 +5766,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_indirect_parameters", Version = "", EntryPoint = "glMultiDrawElementsIndirectCountARB")] public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] ref T2 indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_buffer] /// @@ -5775,7 +5775,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sparse_buffer", Version = "", EntryPoint = "glNamedBufferPageCommitmentARB")] [CLSCompliant(false)] - public static void NamedBufferPageCommitment(Int32 buffer, IntPtr offset, Int32 size, bool commit) { throw new NotImplementedException(); } + public static void NamedBufferPageCommitment(Int32 buffer, IntPtr offset, Int32 size, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_buffer] /// @@ -5784,7 +5784,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sparse_buffer", Version = "", EntryPoint = "glNamedBufferPageCommitmentARB")] [CLSCompliant(false)] - public static void NamedBufferPageCommitment(Int32 buffer, IntPtr offset, IntPtr size, bool commit) { throw new NotImplementedException(); } + public static void NamedBufferPageCommitment(Int32 buffer, IntPtr offset, IntPtr size, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_buffer] /// @@ -5793,7 +5793,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sparse_buffer", Version = "", EntryPoint = "glNamedBufferPageCommitmentARB")] [CLSCompliant(false)] - public static void NamedBufferPageCommitment(UInt32 buffer, IntPtr offset, Int32 size, bool commit) { throw new NotImplementedException(); } + public static void NamedBufferPageCommitment(UInt32 buffer, IntPtr offset, Int32 size, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_buffer] /// @@ -5802,7 +5802,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sparse_buffer", Version = "", EntryPoint = "glNamedBufferPageCommitmentARB")] [CLSCompliant(false)] - public static void NamedBufferPageCommitment(UInt32 buffer, IntPtr offset, IntPtr size, bool commit) { throw new NotImplementedException(); } + public static void NamedBufferPageCommitment(UInt32 buffer, IntPtr offset, IntPtr size, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -5811,7 +5811,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -5820,7 +5820,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -5829,7 +5829,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static unsafe void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -5838,7 +5838,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -5847,7 +5847,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -5856,7 +5856,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static unsafe void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -5865,7 +5865,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: stringlen] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glNamedStringARB")] - public static void NamedString(OpenTK.Graphics.OpenGL4.All type, Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, Int32 stringlen, [CountAttribute(Parameter = "stringlen")] String @string) { throw new NotImplementedException(); } + public static void NamedString(OpenTK.Graphics.OpenGL4.All type, Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, Int32 stringlen, [CountAttribute(Parameter = "stringlen")] String @string) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_ES3_2_compatibility] /// @@ -5877,7 +5877,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_ES3_2_compatibility", Version = "", EntryPoint = "glPrimitiveBoundingBoxARB")] - public static void PrimitiveBoundingBox(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW) { throw new NotImplementedException(); } + public static void PrimitiveBoundingBox(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_geometry_shader4] /// Specify a parameter for a program object @@ -5893,7 +5893,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_geometry_shader4", Version = "", EntryPoint = "glProgramParameteriARB")] [CLSCompliant(false)] - public static void ProgramParameter(Int32 program, OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(Int32 program, OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_geometry_shader4] /// Specify a parameter for a program object @@ -5909,7 +5909,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_geometry_shader4", Version = "", EntryPoint = "glProgramParameteriARB")] [CLSCompliant(false)] - public static void ProgramParameter(UInt32 program, OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(UInt32 program, OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -5925,7 +5925,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1i64ARB")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -5941,7 +5941,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1i64ARB")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -5960,7 +5960,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -5979,7 +5979,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -5998,7 +5998,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1i64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6017,7 +6017,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6036,7 +6036,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6055,7 +6055,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1i64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6071,7 +6071,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1ui64ARB")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, UInt64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, UInt64 x) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6090,7 +6090,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1ui64vARB")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6109,7 +6109,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1ui64vARB")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6128,7 +6128,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1ui64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6147,7 +6147,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2i64ARB")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int64 x, Int64 y) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6166,7 +6166,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2i64ARB")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int64 x, Int64 y) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6185,7 +6185,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6204,7 +6204,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6223,7 +6223,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2i64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6242,7 +6242,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6261,7 +6261,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6280,7 +6280,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2i64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6299,7 +6299,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2ui64ARB")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, UInt64 x, UInt64 y) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, UInt64 x, UInt64 y) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6318,7 +6318,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2ui64vARB")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6337,7 +6337,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2ui64vARB")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6356,7 +6356,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2ui64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6378,7 +6378,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3i64ARB")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6400,7 +6400,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3i64ARB")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6419,7 +6419,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6438,7 +6438,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6457,7 +6457,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3i64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6476,7 +6476,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6495,7 +6495,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6514,7 +6514,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3i64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6536,7 +6536,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3ui64ARB")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6555,7 +6555,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3ui64vARB")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6574,7 +6574,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3ui64vARB")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6593,7 +6593,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3ui64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6618,7 +6618,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4i64ARB")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6643,7 +6643,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4i64ARB")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6662,7 +6662,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6681,7 +6681,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6700,7 +6700,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4i64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6719,7 +6719,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6738,7 +6738,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6757,7 +6757,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4i64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6782,7 +6782,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4ui64ARB")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6801,7 +6801,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4ui64vARB")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6820,7 +6820,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4ui64vARB")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6839,7 +6839,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4ui64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -6847,7 +6847,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64ARB")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -6855,7 +6855,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64ARB")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -6864,7 +6864,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vARB")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -6873,7 +6873,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vARB")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -6882,7 +6882,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* values) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -6891,7 +6891,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vARB")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -6900,7 +6900,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vARB")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -6909,7 +6909,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -6922,7 +6922,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glReadnPixelsARB")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -6938,7 +6938,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -6954,7 +6954,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -6970,7 +6970,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -6985,7 +6985,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glReadnPixelsARB")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -6997,7 +6997,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glReadnPixelsARB")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -7012,7 +7012,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -7027,7 +7027,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -7042,7 +7042,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -7056,7 +7056,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glReadnPixelsARB")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gl_spirv] /// @@ -7066,7 +7066,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gl_spirv", Version = "", EntryPoint = "glSpecializeShaderARB")] [CLSCompliant(false)] - public static void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, Int32[] pConstantIndex, Int32[] pConstantValue) { throw new NotImplementedException(); } + public static void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, Int32[] pConstantIndex, Int32[] pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gl_spirv] /// @@ -7076,7 +7076,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gl_spirv", Version = "", EntryPoint = "glSpecializeShaderARB")] [CLSCompliant(false)] - public static void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, ref Int32 pConstantIndex, ref Int32 pConstantValue) { throw new NotImplementedException(); } + public static void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, ref Int32 pConstantIndex, ref Int32 pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gl_spirv] /// @@ -7086,7 +7086,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gl_spirv", Version = "", EntryPoint = "glSpecializeShaderARB")] [CLSCompliant(false)] - public static unsafe void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, Int32* pConstantIndex, Int32* pConstantValue) { throw new NotImplementedException(); } + public static unsafe void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, Int32* pConstantIndex, Int32* pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gl_spirv] /// @@ -7096,7 +7096,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gl_spirv", Version = "", EntryPoint = "glSpecializeShaderARB")] [CLSCompliant(false)] - public static void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, UInt32[] pConstantIndex, UInt32[] pConstantValue) { throw new NotImplementedException(); } + public static void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, UInt32[] pConstantIndex, UInt32[] pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gl_spirv] /// @@ -7106,7 +7106,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gl_spirv", Version = "", EntryPoint = "glSpecializeShaderARB")] [CLSCompliant(false)] - public static void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, ref UInt32 pConstantIndex, ref UInt32 pConstantValue) { throw new NotImplementedException(); } + public static void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, ref UInt32 pConstantIndex, ref UInt32 pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gl_spirv] /// @@ -7116,7 +7116,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gl_spirv", Version = "", EntryPoint = "glSpecializeShaderARB")] [CLSCompliant(false)] - public static unsafe void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, UInt32* pConstantIndex, UInt32* pConstantValue) { throw new NotImplementedException(); } + public static unsafe void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, UInt32* pConstantIndex, UInt32* pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_buffer_object] /// Attach the storage for a buffer object to the active buffer texture @@ -7132,7 +7132,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_texture_buffer_object", Version = "", EntryPoint = "glTexBufferARB")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.All internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.All internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_buffer_object] /// Attach the storage for a buffer object to the active buffer texture @@ -7148,7 +7148,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_texture_buffer_object", Version = "", EntryPoint = "glTexBufferARB")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.All internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.All internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_texture] /// @@ -7161,7 +7161,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_sparse_texture", Version = "", EntryPoint = "glTexPageCommitmentARB")] - public static void TexPageCommitment(OpenTK.Graphics.OpenGL4.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit) { throw new NotImplementedException(); } + public static void TexPageCommitment(OpenTK.Graphics.OpenGL4.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7173,7 +7173,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector (glUniform*v) commands, specifies the number of elements that are to be modified. This should be 1 if the targeted uniform variable is not an array, and 1 or more if it is an array. For the matrix (glUniformMatrix*) commands, specifies the number of matrices that are to be modified. This should be 1 if the targeted uniform variable is not an array of matrices, and 1 or more if it is an array of matrices. /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform1i64ARB")] - public static void Uniform1(Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7189,7 +7189,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform1i64vARB")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7205,7 +7205,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform1i64vARB")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7221,7 +7221,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform1i64vARB")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7234,7 +7234,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform1ui64ARB")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, UInt64 x) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, UInt64 x) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7250,7 +7250,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform1ui64vARB")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7266,7 +7266,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform1ui64vARB")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7282,7 +7282,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform1ui64vARB")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7297,7 +7297,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the matrix commands, specifies whether to transpose the matrix as the values are loaded into the uniform variable. /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform2i64ARB")] - public static void Uniform2(Int32 location, Int64 x, Int64 y) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7313,7 +7313,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform2i64vARB")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7329,7 +7329,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform2i64vARB")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7345,7 +7345,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform2i64vARB")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7361,7 +7361,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform2ui64ARB")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, UInt64 x, UInt64 y) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, UInt64 x, UInt64 y) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7377,7 +7377,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform2ui64vARB")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7393,7 +7393,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform2ui64vARB")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7409,7 +7409,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform2ui64vARB")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7427,7 +7427,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform3i64ARB")] - public static void Uniform3(Int32 location, Int64 x, Int64 y, Int64 z) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7443,7 +7443,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform3i64vARB")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7459,7 +7459,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform3i64vARB")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7475,7 +7475,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform3i64vARB")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7494,7 +7494,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform3ui64ARB")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7510,7 +7510,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform3ui64vARB")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7526,7 +7526,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform3ui64vARB")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7542,7 +7542,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform3ui64vARB")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7563,7 +7563,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform4i64ARB")] - public static void Uniform4(Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7579,7 +7579,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform4i64vARB")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7595,7 +7595,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform4i64vARB")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7611,7 +7611,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform4i64vARB")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7633,7 +7633,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform4ui64ARB")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7649,7 +7649,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform4ui64vARB")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7665,7 +7665,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform4ui64vARB")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7681,21 +7681,21 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform4ui64vARB")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64ARB")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64ARB")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -7703,7 +7703,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vARB")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -7711,7 +7711,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vARB")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -7719,7 +7719,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vARB")] [CLSCompliant(false)] - public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -7727,7 +7727,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vARB")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -7735,7 +7735,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vARB")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -7743,7 +7743,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vARB")] [CLSCompliant(false)] - public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -7756,7 +7756,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorARB")] [CLSCompliant(false)] - public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -7769,49 +7769,49 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorARB")] [CLSCompliant(false)] - public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glVertexAttribL1ui64ARB")] [CLSCompliant(false)] - public static void VertexAttribL1(Int32 index, Int64 x) { throw new NotImplementedException(); } + public static void VertexAttribL1(Int32 index, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glVertexAttribL1ui64ARB")] [CLSCompliant(false)] - public static void VertexAttribL1(UInt32 index, UInt64 x) { throw new NotImplementedException(); } + public static void VertexAttribL1(UInt32 index, UInt64 x) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glVertexAttribL1ui64vARB")] [CLSCompliant(false)] - public static void VertexAttribL1(Int32 index, Int64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL1(Int32 index, Int64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glVertexAttribL1ui64vARB")] [CLSCompliant(false)] - public static unsafe void VertexAttribL1(Int32 index, Int64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL1(Int32 index, Int64* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glVertexAttribL1ui64vARB")] [CLSCompliant(false)] - public static void VertexAttribL1(UInt32 index, UInt64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL1(UInt32 index, UInt64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glVertexAttribL1ui64vARB")] [CLSCompliant(false)] - public static unsafe void VertexAttribL1(UInt32 index, UInt64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL1(UInt32 index, UInt64* v) { throw new BindingsNotRewrittenException(); } } @@ -7819,7 +7819,7 @@ namespace OpenTK.Graphics.OpenGL4 { /// [requires: INTEL_framebuffer_CMAA] [AutoGenerated(Category = "INTEL_framebuffer_CMAA", Version = "", EntryPoint = "glApplyFramebufferAttachmentCMAAINTEL")] - public static void ApplyFramebufferAttachment() { throw new NotImplementedException(); } + public static void ApplyFramebufferAttachment() { throw new BindingsNotRewrittenException(); } } @@ -7834,7 +7834,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glActiveShaderProgram")] [CLSCompliant(false)] - public static void ActiveShaderProgram(Int32 pipeline, Int32 program) { throw new NotImplementedException(); } + public static void ActiveShaderProgram(Int32 pipeline, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Set the active program object for a program pipeline object @@ -7847,7 +7847,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glActiveShaderProgram")] [CLSCompliant(false)] - public static void ActiveShaderProgram(UInt32 pipeline, UInt32 program) { throw new NotImplementedException(); } + public static void ActiveShaderProgram(UInt32 pipeline, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Select active texture unit @@ -7856,7 +7856,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies which texture unit to make active. The number of texture units is implementation dependent, but must be at least 80. texture must be one of Texturei, where i ranges from zero to the value of MaxCombinedTextureImageUnits minus one. The initial value is Texture0. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glActiveTexture")] - public static void ActiveTexture(OpenTK.Graphics.OpenGL4.TextureUnit texture) { throw new NotImplementedException(); } + public static void ActiveTexture(OpenTK.Graphics.OpenGL4.TextureUnit texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Attaches a shader object to a program object @@ -7869,7 +7869,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glAttachShader")] [CLSCompliant(false)] - public static void AttachShader(Int32 program, Int32 shader) { throw new NotImplementedException(); } + public static void AttachShader(Int32 program, Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Attaches a shader object to a program object @@ -7882,7 +7882,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glAttachShader")] [CLSCompliant(false)] - public static void AttachShader(UInt32 program, UInt32 shader) { throw new NotImplementedException(); } + public static void AttachShader(UInt32 program, UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Start conditional rendering @@ -7895,7 +7895,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glBeginConditionalRender")] [CLSCompliant(false)] - public static void BeginConditionalRender(Int32 id, OpenTK.Graphics.OpenGL4.ConditionalRenderType mode) { throw new NotImplementedException(); } + public static void BeginConditionalRender(Int32 id, OpenTK.Graphics.OpenGL4.ConditionalRenderType mode) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Start conditional rendering @@ -7908,7 +7908,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glBeginConditionalRender")] [CLSCompliant(false)] - public static void BeginConditionalRender(UInt32 id, OpenTK.Graphics.OpenGL4.ConditionalRenderType mode) { throw new NotImplementedException(); } + public static void BeginConditionalRender(UInt32 id, OpenTK.Graphics.OpenGL4.ConditionalRenderType mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delimit the boundaries of a query object @@ -7921,7 +7921,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBeginQuery")] [CLSCompliant(false)] - public static void BeginQuery(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 id) { throw new NotImplementedException(); } + public static void BeginQuery(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delimit the boundaries of a query object @@ -7934,7 +7934,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBeginQuery")] [CLSCompliant(false)] - public static void BeginQuery(OpenTK.Graphics.OpenGL4.QueryTarget target, UInt32 id) { throw new NotImplementedException(); } + public static void BeginQuery(OpenTK.Graphics.OpenGL4.QueryTarget target, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Delimit the boundaries of a query object on an indexed target @@ -7950,7 +7950,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glBeginQueryIndexed")] [CLSCompliant(false)] - public static void BeginQueryIndexed(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 index, Int32 id) { throw new NotImplementedException(); } + public static void BeginQueryIndexed(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 index, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Delimit the boundaries of a query object on an indexed target @@ -7966,7 +7966,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glBeginQueryIndexed")] [CLSCompliant(false)] - public static void BeginQueryIndexed(OpenTK.Graphics.OpenGL4.QueryTarget target, UInt32 index, UInt32 id) { throw new NotImplementedException(); } + public static void BeginQueryIndexed(OpenTK.Graphics.OpenGL4.QueryTarget target, UInt32 index, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Start transform feedback operation @@ -7975,7 +7975,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specify the output type of the primitives that will be recorded into the buffer objects that are bound for transform feedback. /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glBeginTransformFeedback")] - public static void BeginTransformFeedback(OpenTK.Graphics.OpenGL4.TransformFeedbackPrimitiveType primitiveMode) { throw new NotImplementedException(); } + public static void BeginTransformFeedback(OpenTK.Graphics.OpenGL4.TransformFeedbackPrimitiveType primitiveMode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Associates a generic vertex attribute index with a named attribute variable @@ -7991,7 +7991,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glBindAttribLocation")] [CLSCompliant(false)] - public static void BindAttribLocation(Int32 program, Int32 index, String name) { throw new NotImplementedException(); } + public static void BindAttribLocation(Int32 program, Int32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Associates a generic vertex attribute index with a named attribute variable @@ -8007,7 +8007,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glBindAttribLocation")] [CLSCompliant(false)] - public static void BindAttribLocation(UInt32 program, UInt32 index, String name) { throw new NotImplementedException(); } + public static void BindAttribLocation(UInt32 program, UInt32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Bind a named buffer object @@ -8020,7 +8020,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBindBuffer")] [CLSCompliant(false)] - public static void BindBuffer(OpenTK.Graphics.OpenGL4.BufferTarget target, Int32 buffer) { throw new NotImplementedException(); } + public static void BindBuffer(OpenTK.Graphics.OpenGL4.BufferTarget target, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Bind a named buffer object @@ -8033,7 +8033,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBindBuffer")] [CLSCompliant(false)] - public static void BindBuffer(OpenTK.Graphics.OpenGL4.BufferTarget target, UInt32 buffer) { throw new NotImplementedException(); } + public static void BindBuffer(OpenTK.Graphics.OpenGL4.BufferTarget target, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// Bind a buffer object to an indexed buffer target @@ -8049,7 +8049,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glBindBufferBase")] [CLSCompliant(false)] - public static void BindBufferBase(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, Int32 index, Int32 buffer) { throw new NotImplementedException(); } + public static void BindBufferBase(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, Int32 index, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// Bind a buffer object to an indexed buffer target @@ -8065,7 +8065,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glBindBufferBase")] [CLSCompliant(false)] - public static void BindBufferBase(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, UInt32 index, UInt32 buffer) { throw new NotImplementedException(); } + public static void BindBufferBase(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, UInt32 index, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// Bind a range within a buffer object to an indexed buffer target @@ -8087,7 +8087,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glBindBufferRange")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// Bind a range within a buffer object to an indexed buffer target @@ -8109,7 +8109,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glBindBufferRange")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// Bind a range within a buffer object to an indexed buffer target @@ -8131,7 +8131,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glBindBufferRange")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// Bind a range within a buffer object to an indexed buffer target @@ -8153,7 +8153,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glBindBufferRange")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more buffer objects to a sequence of indexed buffer targets @@ -8172,7 +8172,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersBase")] [CLSCompliant(false)] - public static void BindBuffersBase(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32[] buffers) { throw new NotImplementedException(); } + public static void BindBuffersBase(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more buffer objects to a sequence of indexed buffer targets @@ -8191,7 +8191,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersBase")] [CLSCompliant(false)] - public static void BindBuffersBase(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, Int32 first, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 buffers) { throw new NotImplementedException(); } + public static void BindBuffersBase(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, Int32 first, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more buffer objects to a sequence of indexed buffer targets @@ -8210,7 +8210,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersBase")] [CLSCompliant(false)] - public static unsafe void BindBuffersBase(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* buffers) { throw new NotImplementedException(); } + public static unsafe void BindBuffersBase(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more buffer objects to a sequence of indexed buffer targets @@ -8229,7 +8229,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersBase")] [CLSCompliant(false)] - public static void BindBuffersBase(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] buffers) { throw new NotImplementedException(); } + public static void BindBuffersBase(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more buffer objects to a sequence of indexed buffer targets @@ -8248,7 +8248,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersBase")] [CLSCompliant(false)] - public static void BindBuffersBase(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 buffers) { throw new NotImplementedException(); } + public static void BindBuffersBase(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more buffer objects to a sequence of indexed buffer targets @@ -8267,7 +8267,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersBase")] [CLSCompliant(false)] - public static unsafe void BindBuffersBase(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* buffers) { throw new NotImplementedException(); } + public static unsafe void BindBuffersBase(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind ranges of one or more buffer objects to a sequence of indexed buffer targets @@ -8288,7 +8288,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersRange")] [CLSCompliant(false)] - public static void BindBuffersRange(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32[] buffers, [CountAttribute(Parameter = "count")] IntPtr[] offsets, [CountAttribute(Parameter = "count")] IntPtr[] sizes) { throw new NotImplementedException(); } + public static void BindBuffersRange(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32[] buffers, [CountAttribute(Parameter = "count")] IntPtr[] offsets, [CountAttribute(Parameter = "count")] IntPtr[] sizes) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind ranges of one or more buffer objects to a sequence of indexed buffer targets @@ -8309,7 +8309,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersRange")] [CLSCompliant(false)] - public static void BindBuffersRange(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, Int32 first, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 buffers, [CountAttribute(Parameter = "count")] ref IntPtr offsets, [CountAttribute(Parameter = "count")] ref IntPtr sizes) { throw new NotImplementedException(); } + public static void BindBuffersRange(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, Int32 first, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 buffers, [CountAttribute(Parameter = "count")] ref IntPtr offsets, [CountAttribute(Parameter = "count")] ref IntPtr sizes) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind ranges of one or more buffer objects to a sequence of indexed buffer targets @@ -8330,7 +8330,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersRange")] [CLSCompliant(false)] - public static unsafe void BindBuffersRange(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* buffers, [CountAttribute(Parameter = "count")] IntPtr* offsets, [CountAttribute(Parameter = "count")] IntPtr* sizes) { throw new NotImplementedException(); } + public static unsafe void BindBuffersRange(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* buffers, [CountAttribute(Parameter = "count")] IntPtr* offsets, [CountAttribute(Parameter = "count")] IntPtr* sizes) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind ranges of one or more buffer objects to a sequence of indexed buffer targets @@ -8351,7 +8351,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersRange")] [CLSCompliant(false)] - public static void BindBuffersRange(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] buffers, [CountAttribute(Parameter = "count")] IntPtr[] offsets, [CountAttribute(Parameter = "count")] IntPtr[] sizes) { throw new NotImplementedException(); } + public static void BindBuffersRange(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] buffers, [CountAttribute(Parameter = "count")] IntPtr[] offsets, [CountAttribute(Parameter = "count")] IntPtr[] sizes) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind ranges of one or more buffer objects to a sequence of indexed buffer targets @@ -8372,7 +8372,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersRange")] [CLSCompliant(false)] - public static void BindBuffersRange(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 buffers, [CountAttribute(Parameter = "count")] ref IntPtr offsets, [CountAttribute(Parameter = "count")] ref IntPtr sizes) { throw new NotImplementedException(); } + public static void BindBuffersRange(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 buffers, [CountAttribute(Parameter = "count")] ref IntPtr offsets, [CountAttribute(Parameter = "count")] ref IntPtr sizes) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind ranges of one or more buffer objects to a sequence of indexed buffer targets @@ -8393,7 +8393,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindBuffersRange")] [CLSCompliant(false)] - public static unsafe void BindBuffersRange(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* buffers, [CountAttribute(Parameter = "count")] IntPtr* offsets, [CountAttribute(Parameter = "count")] IntPtr* sizes) { throw new NotImplementedException(); } + public static unsafe void BindBuffersRange(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* buffers, [CountAttribute(Parameter = "count")] IntPtr* offsets, [CountAttribute(Parameter = "count")] IntPtr* sizes) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Bind a user-defined varying out variable to a fragment shader color number @@ -8409,7 +8409,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glBindFragDataLocation")] [CLSCompliant(false)] - public static void BindFragDataLocation(Int32 program, Int32 color, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static void BindFragDataLocation(Int32 program, Int32 color, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Bind a user-defined varying out variable to a fragment shader color number @@ -8425,7 +8425,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glBindFragDataLocation")] [CLSCompliant(false)] - public static void BindFragDataLocation(UInt32 program, UInt32 color, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static void BindFragDataLocation(UInt32 program, UInt32 color, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_blend_func_extended|VERSION_3_3] /// Bind a user-defined varying out variable to a fragment shader color number and index @@ -8444,7 +8444,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_blend_func_extended|VERSION_3_3", Version = "3.3", EntryPoint = "glBindFragDataLocationIndexed")] [CLSCompliant(false)] - public static void BindFragDataLocationIndexed(Int32 program, Int32 colorNumber, Int32 index, String name) { throw new NotImplementedException(); } + public static void BindFragDataLocationIndexed(Int32 program, Int32 colorNumber, Int32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_blend_func_extended|VERSION_3_3] /// Bind a user-defined varying out variable to a fragment shader color number and index @@ -8463,7 +8463,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_blend_func_extended|VERSION_3_3", Version = "3.3", EntryPoint = "glBindFragDataLocationIndexed")] [CLSCompliant(false)] - public static void BindFragDataLocationIndexed(UInt32 program, UInt32 colorNumber, UInt32 index, String name) { throw new NotImplementedException(); } + public static void BindFragDataLocationIndexed(UInt32 program, UInt32 colorNumber, UInt32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Bind a framebuffer to a framebuffer target @@ -8476,7 +8476,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glBindFramebuffer")] [CLSCompliant(false)] - public static void BindFramebuffer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, Int32 framebuffer) { throw new NotImplementedException(); } + public static void BindFramebuffer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, Int32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Bind a framebuffer to a framebuffer target @@ -8489,7 +8489,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glBindFramebuffer")] [CLSCompliant(false)] - public static void BindFramebuffer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, UInt32 framebuffer) { throw new NotImplementedException(); } + public static void BindFramebuffer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, UInt32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_shader_image_load_store|VERSION_4_2] /// Bind a level of a texture to an image unit @@ -8517,7 +8517,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_image_load_store|VERSION_4_2", Version = "4.2", EntryPoint = "glBindImageTexture")] [CLSCompliant(false)] - public static void BindImageTexture(Int32 unit, Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL4.TextureAccess access, OpenTK.Graphics.OpenGL4.SizedInternalFormat format) { throw new NotImplementedException(); } + public static void BindImageTexture(Int32 unit, Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL4.TextureAccess access, OpenTK.Graphics.OpenGL4.SizedInternalFormat format) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_shader_image_load_store|VERSION_4_2] /// Bind a level of a texture to an image unit @@ -8545,7 +8545,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_image_load_store|VERSION_4_2", Version = "4.2", EntryPoint = "glBindImageTexture")] [CLSCompliant(false)] - public static void BindImageTexture(UInt32 unit, UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL4.TextureAccess access, OpenTK.Graphics.OpenGL4.SizedInternalFormat format) { throw new NotImplementedException(); } + public static void BindImageTexture(UInt32 unit, UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL4.TextureAccess access, OpenTK.Graphics.OpenGL4.SizedInternalFormat format) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named texture images to a sequence of consecutive image units @@ -8561,7 +8561,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindImageTextures")] [CLSCompliant(false)] - public static void BindImageTextures(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32[] textures) { throw new NotImplementedException(); } + public static void BindImageTextures(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named texture images to a sequence of consecutive image units @@ -8577,7 +8577,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindImageTextures")] [CLSCompliant(false)] - public static void BindImageTextures(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 textures) { throw new NotImplementedException(); } + public static void BindImageTextures(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named texture images to a sequence of consecutive image units @@ -8593,7 +8593,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindImageTextures")] [CLSCompliant(false)] - public static unsafe void BindImageTextures(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* textures) { throw new NotImplementedException(); } + public static unsafe void BindImageTextures(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named texture images to a sequence of consecutive image units @@ -8609,7 +8609,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindImageTextures")] [CLSCompliant(false)] - public static void BindImageTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] textures) { throw new NotImplementedException(); } + public static void BindImageTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named texture images to a sequence of consecutive image units @@ -8625,7 +8625,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindImageTextures")] [CLSCompliant(false)] - public static void BindImageTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 textures) { throw new NotImplementedException(); } + public static void BindImageTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named texture images to a sequence of consecutive image units @@ -8641,7 +8641,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindImageTextures")] [CLSCompliant(false)] - public static unsafe void BindImageTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* textures) { throw new NotImplementedException(); } + public static unsafe void BindImageTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Bind a program pipeline to the current context @@ -8651,7 +8651,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glBindProgramPipeline")] [CLSCompliant(false)] - public static void BindProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } + public static void BindProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Bind a program pipeline to the current context @@ -8661,7 +8661,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glBindProgramPipeline")] [CLSCompliant(false)] - public static void BindProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static void BindProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Bind a renderbuffer to a renderbuffer target @@ -8674,7 +8674,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glBindRenderbuffer")] [CLSCompliant(false)] - public static void BindRenderbuffer(OpenTK.Graphics.OpenGL4.RenderbufferTarget target, Int32 renderbuffer) { throw new NotImplementedException(); } + public static void BindRenderbuffer(OpenTK.Graphics.OpenGL4.RenderbufferTarget target, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Bind a renderbuffer to a renderbuffer target @@ -8687,7 +8687,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glBindRenderbuffer")] [CLSCompliant(false)] - public static void BindRenderbuffer(OpenTK.Graphics.OpenGL4.RenderbufferTarget target, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void BindRenderbuffer(OpenTK.Graphics.OpenGL4.RenderbufferTarget target, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Bind a named sampler to a texturing target @@ -8700,7 +8700,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glBindSampler")] [CLSCompliant(false)] - public static void BindSampler(Int32 unit, Int32 sampler) { throw new NotImplementedException(); } + public static void BindSampler(Int32 unit, Int32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Bind a named sampler to a texturing target @@ -8713,7 +8713,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glBindSampler")] [CLSCompliant(false)] - public static void BindSampler(UInt32 unit, UInt32 sampler) { throw new NotImplementedException(); } + public static void BindSampler(UInt32 unit, UInt32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named sampler objects to a sequence of consecutive sampler units @@ -8729,7 +8729,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindSamplers")] [CLSCompliant(false)] - public static void BindSamplers(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32[] samplers) { throw new NotImplementedException(); } + public static void BindSamplers(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named sampler objects to a sequence of consecutive sampler units @@ -8745,7 +8745,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindSamplers")] [CLSCompliant(false)] - public static void BindSamplers(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 samplers) { throw new NotImplementedException(); } + public static void BindSamplers(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named sampler objects to a sequence of consecutive sampler units @@ -8761,7 +8761,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindSamplers")] [CLSCompliant(false)] - public static unsafe void BindSamplers(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* samplers) { throw new NotImplementedException(); } + public static unsafe void BindSamplers(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named sampler objects to a sequence of consecutive sampler units @@ -8777,7 +8777,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindSamplers")] [CLSCompliant(false)] - public static void BindSamplers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] samplers) { throw new NotImplementedException(); } + public static void BindSamplers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named sampler objects to a sequence of consecutive sampler units @@ -8793,7 +8793,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindSamplers")] [CLSCompliant(false)] - public static void BindSamplers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 samplers) { throw new NotImplementedException(); } + public static void BindSamplers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named sampler objects to a sequence of consecutive sampler units @@ -8809,7 +8809,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindSamplers")] [CLSCompliant(false)] - public static unsafe void BindSamplers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* samplers) { throw new NotImplementedException(); } + public static unsafe void BindSamplers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Bind a named texture to a texturing target @@ -8822,7 +8822,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glBindTexture")] [CLSCompliant(false)] - public static void BindTexture(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 texture) { throw new NotImplementedException(); } + public static void BindTexture(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Bind a named texture to a texturing target @@ -8835,7 +8835,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glBindTexture")] [CLSCompliant(false)] - public static void BindTexture(OpenTK.Graphics.OpenGL4.TextureTarget target, UInt32 texture) { throw new NotImplementedException(); } + public static void BindTexture(OpenTK.Graphics.OpenGL4.TextureTarget target, UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named textures to a sequence of consecutive texture units @@ -8851,7 +8851,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindTextures")] [CLSCompliant(false)] - public static void BindTextures(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32[] textures) { throw new NotImplementedException(); } + public static void BindTextures(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named textures to a sequence of consecutive texture units @@ -8867,7 +8867,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindTextures")] [CLSCompliant(false)] - public static void BindTextures(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 textures) { throw new NotImplementedException(); } + public static void BindTextures(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named textures to a sequence of consecutive texture units @@ -8883,7 +8883,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindTextures")] [CLSCompliant(false)] - public static unsafe void BindTextures(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* textures) { throw new NotImplementedException(); } + public static unsafe void BindTextures(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named textures to a sequence of consecutive texture units @@ -8899,7 +8899,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindTextures")] [CLSCompliant(false)] - public static void BindTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] textures) { throw new NotImplementedException(); } + public static void BindTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named textures to a sequence of consecutive texture units @@ -8915,7 +8915,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindTextures")] [CLSCompliant(false)] - public static void BindTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 textures) { throw new NotImplementedException(); } + public static void BindTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named textures to a sequence of consecutive texture units @@ -8931,21 +8931,21 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindTextures")] [CLSCompliant(false)] - public static unsafe void BindTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* textures) { throw new NotImplementedException(); } + public static unsafe void BindTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glBindTextureUnit")] [CLSCompliant(false)] - public static void BindTextureUnit(Int32 unit, Int32 texture) { throw new NotImplementedException(); } + public static void BindTextureUnit(Int32 unit, Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glBindTextureUnit")] [CLSCompliant(false)] - public static void BindTextureUnit(UInt32 unit, UInt32 texture) { throw new NotImplementedException(); } + public static void BindTextureUnit(UInt32 unit, UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Bind a transform feedback object @@ -8958,7 +8958,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glBindTransformFeedback")] [CLSCompliant(false)] - public static void BindTransformFeedback(OpenTK.Graphics.OpenGL4.TransformFeedbackTarget target, Int32 id) { throw new NotImplementedException(); } + public static void BindTransformFeedback(OpenTK.Graphics.OpenGL4.TransformFeedbackTarget target, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Bind a transform feedback object @@ -8971,7 +8971,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glBindTransformFeedback")] [CLSCompliant(false)] - public static void BindTransformFeedback(OpenTK.Graphics.OpenGL4.TransformFeedbackTarget target, UInt32 id) { throw new NotImplementedException(); } + public static void BindTransformFeedback(OpenTK.Graphics.OpenGL4.TransformFeedbackTarget target, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Bind a vertex array object @@ -8981,7 +8981,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glBindVertexArray")] [CLSCompliant(false)] - public static void BindVertexArray(Int32 array) { throw new NotImplementedException(); } + public static void BindVertexArray(Int32 array) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Bind a vertex array object @@ -8991,7 +8991,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glBindVertexArray")] [CLSCompliant(false)] - public static void BindVertexArray(UInt32 array) { throw new NotImplementedException(); } + public static void BindVertexArray(UInt32 array) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// Bind a buffer to a vertex buffer bind point @@ -9010,7 +9010,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glBindVertexBuffer")] [CLSCompliant(false)] - public static void BindVertexBuffer(Int32 bindingindex, Int32 buffer, IntPtr offset, Int32 stride) { throw new NotImplementedException(); } + public static void BindVertexBuffer(Int32 bindingindex, Int32 buffer, IntPtr offset, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// Bind a buffer to a vertex buffer bind point @@ -9029,7 +9029,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glBindVertexBuffer")] [CLSCompliant(false)] - public static void BindVertexBuffer(UInt32 bindingindex, UInt32 buffer, IntPtr offset, Int32 stride) { throw new NotImplementedException(); } + public static void BindVertexBuffer(UInt32 bindingindex, UInt32 buffer, IntPtr offset, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named buffer objects to a sequence of consecutive vertex buffer binding points @@ -9051,7 +9051,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindVertexBuffers")] [CLSCompliant(false)] - public static void BindVertexBuffers(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32[] buffers, [CountAttribute(Parameter = "count")] IntPtr[] offsets, [CountAttribute(Parameter = "count")] Int32[] strides) { throw new NotImplementedException(); } + public static void BindVertexBuffers(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32[] buffers, [CountAttribute(Parameter = "count")] IntPtr[] offsets, [CountAttribute(Parameter = "count")] Int32[] strides) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named buffer objects to a sequence of consecutive vertex buffer binding points @@ -9073,7 +9073,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindVertexBuffers")] [CLSCompliant(false)] - public static void BindVertexBuffers(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 buffers, [CountAttribute(Parameter = "count")] ref IntPtr offsets, [CountAttribute(Parameter = "count")] ref Int32 strides) { throw new NotImplementedException(); } + public static void BindVertexBuffers(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 buffers, [CountAttribute(Parameter = "count")] ref IntPtr offsets, [CountAttribute(Parameter = "count")] ref Int32 strides) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named buffer objects to a sequence of consecutive vertex buffer binding points @@ -9095,7 +9095,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindVertexBuffers")] [CLSCompliant(false)] - public static unsafe void BindVertexBuffers(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* buffers, [CountAttribute(Parameter = "count")] IntPtr* offsets, [CountAttribute(Parameter = "count")] Int32* strides) { throw new NotImplementedException(); } + public static unsafe void BindVertexBuffers(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* buffers, [CountAttribute(Parameter = "count")] IntPtr* offsets, [CountAttribute(Parameter = "count")] Int32* strides) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named buffer objects to a sequence of consecutive vertex buffer binding points @@ -9117,7 +9117,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindVertexBuffers")] [CLSCompliant(false)] - public static void BindVertexBuffers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] buffers, [CountAttribute(Parameter = "count")] IntPtr[] offsets, [CountAttribute(Parameter = "count")] Int32[] strides) { throw new NotImplementedException(); } + public static void BindVertexBuffers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] buffers, [CountAttribute(Parameter = "count")] IntPtr[] offsets, [CountAttribute(Parameter = "count")] Int32[] strides) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named buffer objects to a sequence of consecutive vertex buffer binding points @@ -9139,7 +9139,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindVertexBuffers")] [CLSCompliant(false)] - public static void BindVertexBuffers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 buffers, [CountAttribute(Parameter = "count")] ref IntPtr offsets, [CountAttribute(Parameter = "count")] ref Int32 strides) { throw new NotImplementedException(); } + public static void BindVertexBuffers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 buffers, [CountAttribute(Parameter = "count")] ref IntPtr offsets, [CountAttribute(Parameter = "count")] ref Int32 strides) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named buffer objects to a sequence of consecutive vertex buffer binding points @@ -9161,7 +9161,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindVertexBuffers")] [CLSCompliant(false)] - public static unsafe void BindVertexBuffers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* buffers, [CountAttribute(Parameter = "count")] IntPtr* offsets, [CountAttribute(Parameter = "count")] Int32* strides) { throw new NotImplementedException(); } + public static unsafe void BindVertexBuffers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* buffers, [CountAttribute(Parameter = "count")] IntPtr* offsets, [CountAttribute(Parameter = "count")] Int32* strides) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4 or ARB_imaging|VERSION_1_4] /// Set the blend color @@ -9179,7 +9179,7 @@ namespace OpenTK.Graphics.OpenGL4 /// specify the components of BlendColor /// [AutoGenerated(Category = "ARB_imaging|VERSION_1_4", Version = "1.4", EntryPoint = "glBlendColor")] - public static void BlendColor(Single red, Single green, Single blue, Single alpha) { throw new NotImplementedException(); } + public static void BlendColor(Single red, Single green, Single blue, Single alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4 or ARB_imaging|VERSION_1_4] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -9188,7 +9188,7 @@ namespace OpenTK.Graphics.OpenGL4 /// specifies how source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. /// [AutoGenerated(Category = "ARB_imaging|VERSION_1_4", Version = "1.4", EntryPoint = "glBlendEquation")] - public static void BlendEquation(OpenTK.Graphics.OpenGL4.BlendEquationMode mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.OpenGL4.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -9201,7 +9201,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendEquationi")] [CLSCompliant(false)] - public static void BlendEquation(Int32 buf, OpenTK.Graphics.OpenGL4.BlendEquationMode mode) { throw new NotImplementedException(); } + public static void BlendEquation(Int32 buf, OpenTK.Graphics.OpenGL4.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -9214,7 +9214,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendEquationi")] [CLSCompliant(false)] - public static void BlendEquation(UInt32 buf, OpenTK.Graphics.OpenGL4.BlendEquationMode mode) { throw new NotImplementedException(); } + public static void BlendEquation(UInt32 buf, OpenTK.Graphics.OpenGL4.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Set the RGB blend equation and the alpha blend equation separately @@ -9226,7 +9226,7 @@ namespace OpenTK.Graphics.OpenGL4 /// specifies the alpha blend equation, how the alpha component of the source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glBlendEquationSeparate")] - public static void BlendEquationSeparate(OpenTK.Graphics.OpenGL4.BlendEquationMode modeRGB, OpenTK.Graphics.OpenGL4.BlendEquationMode modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(OpenTK.Graphics.OpenGL4.BlendEquationMode modeRGB, OpenTK.Graphics.OpenGL4.BlendEquationMode modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Set the RGB blend equation and the alpha blend equation separately @@ -9242,7 +9242,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendEquationSeparatei")] [CLSCompliant(false)] - public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.OpenGL4.BlendEquationMode modeRGB, OpenTK.Graphics.OpenGL4.BlendEquationMode modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.OpenGL4.BlendEquationMode modeRGB, OpenTK.Graphics.OpenGL4.BlendEquationMode modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Set the RGB blend equation and the alpha blend equation separately @@ -9258,7 +9258,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendEquationSeparatei")] [CLSCompliant(false)] - public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.OpenGL4.BlendEquationMode modeRGB, OpenTK.Graphics.OpenGL4.BlendEquationMode modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.OpenGL4.BlendEquationMode modeRGB, OpenTK.Graphics.OpenGL4.BlendEquationMode modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify pixel arithmetic @@ -9270,7 +9270,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies how the red, green, blue, and alpha destination blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha. ConstantColor, OneMinusConstantColor, ConstantAlpha, and OneMinusConstantAlpha. The initial value is Zero. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glBlendFunc")] - public static void BlendFunc(OpenTK.Graphics.OpenGL4.BlendingFactorSrc sfactor, OpenTK.Graphics.OpenGL4.BlendingFactorDest dfactor) { throw new NotImplementedException(); } + public static void BlendFunc(OpenTK.Graphics.OpenGL4.BlendingFactorSrc sfactor, OpenTK.Graphics.OpenGL4.BlendingFactorDest dfactor) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify pixel arithmetic @@ -9286,7 +9286,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendFunci")] [CLSCompliant(false)] - public static void BlendFunc(Int32 buf, OpenTK.Graphics.OpenGL4.BlendingFactorSrc src, OpenTK.Graphics.OpenGL4.BlendingFactorDest dst) { throw new NotImplementedException(); } + public static void BlendFunc(Int32 buf, OpenTK.Graphics.OpenGL4.BlendingFactorSrc src, OpenTK.Graphics.OpenGL4.BlendingFactorDest dst) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify pixel arithmetic @@ -9302,7 +9302,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendFunci")] [CLSCompliant(false)] - public static void BlendFunc(UInt32 buf, OpenTK.Graphics.OpenGL4.BlendingFactorSrc src, OpenTK.Graphics.OpenGL4.BlendingFactorDest dst) { throw new NotImplementedException(); } + public static void BlendFunc(UInt32 buf, OpenTK.Graphics.OpenGL4.BlendingFactorSrc src, OpenTK.Graphics.OpenGL4.BlendingFactorDest dst) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Specify pixel arithmetic for RGB and alpha components separately @@ -9320,7 +9320,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specified how the alpha source blending factor is computed. The initial value is One. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glBlendFuncSeparate")] - public static void BlendFuncSeparate(OpenTK.Graphics.OpenGL4.BlendingFactorSrc sfactorRGB, OpenTK.Graphics.OpenGL4.BlendingFactorDest dfactorRGB, OpenTK.Graphics.OpenGL4.BlendingFactorSrc sfactorAlpha, OpenTK.Graphics.OpenGL4.BlendingFactorDest dfactorAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(OpenTK.Graphics.OpenGL4.BlendingFactorSrc sfactorRGB, OpenTK.Graphics.OpenGL4.BlendingFactorDest dfactorRGB, OpenTK.Graphics.OpenGL4.BlendingFactorSrc sfactorAlpha, OpenTK.Graphics.OpenGL4.BlendingFactorDest dfactorAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify pixel arithmetic for RGB and alpha components separately @@ -9342,7 +9342,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendFuncSeparatei")] [CLSCompliant(false)] - public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.OpenGL4.BlendingFactorSrc srcRGB, OpenTK.Graphics.OpenGL4.BlendingFactorDest dstRGB, OpenTK.Graphics.OpenGL4.BlendingFactorSrc srcAlpha, OpenTK.Graphics.OpenGL4.BlendingFactorDest dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.OpenGL4.BlendingFactorSrc srcRGB, OpenTK.Graphics.OpenGL4.BlendingFactorDest dstRGB, OpenTK.Graphics.OpenGL4.BlendingFactorSrc srcAlpha, OpenTK.Graphics.OpenGL4.BlendingFactorDest dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify pixel arithmetic for RGB and alpha components separately @@ -9364,7 +9364,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendFuncSeparatei")] [CLSCompliant(false)] - public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.OpenGL4.BlendingFactorSrc srcRGB, OpenTK.Graphics.OpenGL4.BlendingFactorDest dstRGB, OpenTK.Graphics.OpenGL4.BlendingFactorSrc srcAlpha, OpenTK.Graphics.OpenGL4.BlendingFactorDest dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.OpenGL4.BlendingFactorSrc srcRGB, OpenTK.Graphics.OpenGL4.BlendingFactorDest dstRGB, OpenTK.Graphics.OpenGL4.BlendingFactorSrc srcAlpha, OpenTK.Graphics.OpenGL4.BlendingFactorDest dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Copy a block of pixels from the read framebuffer to the draw framebuffer @@ -9400,7 +9400,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the interpolation to be applied if the image is stretched. Must be Nearest or Linear. /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glBlitFramebuffer")] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.OpenGL4.ClearBufferMask mask, OpenTK.Graphics.OpenGL4.BlitFramebufferFilter filter) { throw new NotImplementedException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.OpenGL4.ClearBufferMask mask, OpenTK.Graphics.OpenGL4.BlitFramebufferFilter filter) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -9417,7 +9417,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glBlitNamedFramebuffer")] [CLSCompliant(false)] - public static void BlitNamedFramebuffer(Int32 readFramebuffer, Int32 drawFramebuffer, Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.OpenGL4.ClearBufferMask mask, OpenTK.Graphics.OpenGL4.BlitFramebufferFilter filter) { throw new NotImplementedException(); } + public static void BlitNamedFramebuffer(Int32 readFramebuffer, Int32 drawFramebuffer, Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.OpenGL4.ClearBufferMask mask, OpenTK.Graphics.OpenGL4.BlitFramebufferFilter filter) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -9434,7 +9434,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glBlitNamedFramebuffer")] [CLSCompliant(false)] - public static void BlitNamedFramebuffer(UInt32 readFramebuffer, UInt32 drawFramebuffer, Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.OpenGL4.ClearBufferMask mask, OpenTK.Graphics.OpenGL4.BlitFramebufferFilter filter) { throw new NotImplementedException(); } + public static void BlitNamedFramebuffer(UInt32 readFramebuffer, UInt32 drawFramebuffer, Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.OpenGL4.ClearBufferMask mask, OpenTK.Graphics.OpenGL4.BlitFramebufferFilter filter) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Creates and initializes a buffer object's data store @@ -9452,7 +9452,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StreamRead, StreamCopy, StaticDraw, StaticRead, StaticCopy, DynamicDraw, DynamicRead, or DynamicCopy. /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Creates and initializes a buffer object's data store @@ -9473,7 +9473,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Creates and initializes a buffer object's data store @@ -9494,7 +9494,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Creates and initializes a buffer object's data store @@ -9515,7 +9515,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Creates and initializes a buffer object's data store @@ -9535,7 +9535,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Creates and initializes a buffer object's data store @@ -9553,7 +9553,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StreamRead, StreamCopy, StaticDraw, StaticRead, StaticCopy, DynamicDraw, DynamicRead, or DynamicCopy. /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Creates and initializes a buffer object's data store @@ -9574,7 +9574,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Creates and initializes a buffer object's data store @@ -9595,7 +9595,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Creates and initializes a buffer object's data store @@ -9616,7 +9616,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Creates and initializes a buffer object's data store @@ -9636,7 +9636,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_buffer_storage|VERSION_4_4] /// Creates and initializes a buffer object's immutable data store @@ -9654,7 +9654,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. /// [AutoGenerated(Category = "ARB_buffer_storage|VERSION_4_4", Version = "4.4", EntryPoint = "glBufferStorage")] - public static void BufferStorage(OpenTK.Graphics.OpenGL4.BufferTarget target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) { throw new NotImplementedException(); } + public static void BufferStorage(OpenTK.Graphics.OpenGL4.BufferTarget target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_buffer_storage|VERSION_4_4] /// Creates and initializes a buffer object's immutable data store @@ -9675,7 +9675,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.OpenGL4.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_buffer_storage|VERSION_4_4] /// Creates and initializes a buffer object's immutable data store @@ -9696,7 +9696,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.OpenGL4.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_buffer_storage|VERSION_4_4] /// Creates and initializes a buffer object's immutable data store @@ -9717,7 +9717,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.OpenGL4.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_buffer_storage|VERSION_4_4] /// Creates and initializes a buffer object's immutable data store @@ -9737,7 +9737,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_buffer_storage|VERSION_4_4", Version = "4.4", EntryPoint = "glBufferStorage")] public static void BufferStorage(OpenTK.Graphics.OpenGL4.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_buffer_storage|VERSION_4_4] /// Creates and initializes a buffer object's immutable data store @@ -9755,7 +9755,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. /// [AutoGenerated(Category = "ARB_buffer_storage|VERSION_4_4", Version = "4.4", EntryPoint = "glBufferStorage")] - public static void BufferStorage(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) { throw new NotImplementedException(); } + public static void BufferStorage(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_buffer_storage|VERSION_4_4] /// Creates and initializes a buffer object's immutable data store @@ -9776,7 +9776,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_buffer_storage|VERSION_4_4] /// Creates and initializes a buffer object's immutable data store @@ -9797,7 +9797,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_buffer_storage|VERSION_4_4] /// Creates and initializes a buffer object's immutable data store @@ -9818,7 +9818,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_buffer_storage|VERSION_4_4] /// Creates and initializes a buffer object's immutable data store @@ -9838,7 +9838,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_buffer_storage|VERSION_4_4", Version = "4.4", EntryPoint = "glBufferStorage")] public static void BufferStorage(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Updates a subset of a buffer object's data store @@ -9856,7 +9856,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the new data that will be copied into the data store. /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferSubData")] - public static void BufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Updates a subset of a buffer object's data store @@ -9877,7 +9877,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Updates a subset of a buffer object's data store @@ -9898,7 +9898,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Updates a subset of a buffer object's data store @@ -9919,7 +9919,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Updates a subset of a buffer object's data store @@ -9939,7 +9939,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferSubData")] public static void BufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Updates a subset of a buffer object's data store @@ -9957,7 +9957,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the new data that will be copied into the data store. /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferSubData")] - public static void BufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Updates a subset of a buffer object's data store @@ -9978,7 +9978,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Updates a subset of a buffer object's data store @@ -9999,7 +9999,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Updates a subset of a buffer object's data store @@ -10020,7 +10020,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Updates a subset of a buffer object's data store @@ -10040,7 +10040,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferSubData")] public static void BufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Check the completeness status of a framebuffer @@ -10049,21 +10049,21 @@ namespace OpenTK.Graphics.OpenGL4 /// Specify the target of the framebuffer completeness check. /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glCheckFramebufferStatus")] - public static OpenTK.Graphics.OpenGL4.FramebufferErrorCode CheckFramebufferStatus(OpenTK.Graphics.OpenGL4.FramebufferTarget target) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL4.FramebufferErrorCode CheckFramebufferStatus(OpenTK.Graphics.OpenGL4.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCheckNamedFramebufferStatus")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All CheckNamedFramebufferStatus(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferTarget target) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL4.All CheckNamedFramebufferStatus(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCheckNamedFramebufferStatus")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All CheckNamedFramebufferStatus(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferTarget target) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL4.All CheckNamedFramebufferStatus(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify whether data read via glReadPixels should be clamped @@ -10075,7 +10075,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies whether to apply color clamping. clamp must be True or False. /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClampColor")] - public static void ClampColor(OpenTK.Graphics.OpenGL4.ClampColorTarget target, OpenTK.Graphics.OpenGL4.ClampColorMode clamp) { throw new NotImplementedException(); } + public static void ClampColor(OpenTK.Graphics.OpenGL4.ClampColorTarget target, OpenTK.Graphics.OpenGL4.ClampColorMode clamp) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Clear buffers to preset values @@ -10084,7 +10084,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Bitwise OR of masks that indicate the buffers to be cleared. The three masks are ColorBufferBit, DepthBufferBit, and StencilBufferBit. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glClear")] - public static void Clear(OpenTK.Graphics.OpenGL4.ClearBufferMask mask) { throw new NotImplementedException(); } + public static void Clear(OpenTK.Graphics.OpenGL4.ClearBufferMask mask) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill a buffer object's data store with a fixed value @@ -10105,7 +10105,7 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a memory location storing the data to be replicated into the buffer's data store. /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferData")] - public static void ClearBufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearBufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill a buffer object's data store with a fixed value @@ -10129,7 +10129,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearBufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill a buffer object's data store with a fixed value @@ -10153,7 +10153,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearBufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill a buffer object's data store with a fixed value @@ -10177,7 +10177,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearBufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill a buffer object's data store with a fixed value @@ -10200,7 +10200,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferData")] public static void ClearBufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -10218,7 +10218,7 @@ namespace OpenTK.Graphics.OpenGL4 /// The value to clear a stencil render buffer to. /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfi")] - public static void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBufferCombined buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBufferCombined buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -10234,7 +10234,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Single[] value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -10250,7 +10250,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref Single value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -10266,7 +10266,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfv")] [CLSCompliant(false)] - public static unsafe void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -10282,7 +10282,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferiv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Int32[] value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -10298,7 +10298,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferiv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref Int32 value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -10314,7 +10314,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferiv")] [CLSCompliant(false)] - public static unsafe void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -10341,7 +10341,7 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a memory location storing the data to be replicated into the buffer's data store. /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] - public static void ClearBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -10371,7 +10371,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -10401,7 +10401,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -10431,7 +10431,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -10460,7 +10460,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] public static void ClearBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -10487,7 +10487,7 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a memory location storing the data to be replicated into the buffer's data store. /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] - public static void ClearBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -10517,7 +10517,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -10547,7 +10547,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -10577,7 +10577,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -10606,7 +10606,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] public static void ClearBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -10622,7 +10622,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32[] value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -10638,7 +10638,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -10654,7 +10654,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] [CLSCompliant(false)] - public static unsafe void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify clear values for the color buffers @@ -10672,7 +10672,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specify the red, green, blue, and alpha values used when the color buffers are cleared. The initial values are all 0. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glClearColor")] - public static void ClearColor(Single red, Single green, Single blue, Single alpha) { throw new NotImplementedException(); } + public static void ClearColor(Single red, Single green, Single blue, Single alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify the clear value for the depth buffer @@ -10681,7 +10681,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the depth value used when the depth buffer is cleared. The initial value is 1. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glClearDepth")] - public static void ClearDepth(Double depth) { throw new NotImplementedException(); } + public static void ClearDepth(Double depth) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Specify the clear value for the depth buffer @@ -10690,7 +10690,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the depth value used when the depth buffer is cleared. The initial value is 1. /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glClearDepthf")] - public static void ClearDepth(Single d) { throw new NotImplementedException(); } + public static void ClearDepth(Single d) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10700,7 +10700,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferData")] [CLSCompliant(false)] - public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10712,7 +10712,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10724,7 +10724,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10736,7 +10736,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10748,7 +10748,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10758,7 +10758,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferData")] [CLSCompliant(false)] - public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10770,7 +10770,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10782,7 +10782,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10794,7 +10794,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10806,7 +10806,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10818,7 +10818,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10832,7 +10832,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10846,7 +10846,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10860,7 +10860,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10874,7 +10874,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10886,7 +10886,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10900,7 +10900,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10914,7 +10914,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10928,7 +10928,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10942,7 +10942,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10954,7 +10954,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10968,7 +10968,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10982,7 +10982,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10996,7 +10996,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11010,7 +11010,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11022,7 +11022,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11036,7 +11036,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11050,7 +11050,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11064,7 +11064,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11078,7 +11078,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11088,7 +11088,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferfi")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBufferCombined buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBufferCombined buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11098,7 +11098,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferfi")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBufferCombined buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBufferCombined buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11107,7 +11107,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferfv")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, Single[] value) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11116,7 +11116,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferfv")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, ref Single value) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11125,7 +11125,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferfv")] [CLSCompliant(false)] - public static unsafe void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, Single* value) { throw new NotImplementedException(); } + public static unsafe void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11134,7 +11134,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferfv")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, Single[] value) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11143,7 +11143,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferfv")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, ref Single value) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11152,7 +11152,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferfv")] [CLSCompliant(false)] - public static unsafe void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, Single* value) { throw new NotImplementedException(); } + public static unsafe void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11161,7 +11161,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferiv")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, Int32[] value) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11170,7 +11170,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferiv")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, ref Int32 value) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11179,7 +11179,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferiv")] [CLSCompliant(false)] - public static unsafe void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, Int32* value) { throw new NotImplementedException(); } + public static unsafe void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11188,7 +11188,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferiv")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, Int32[] value) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11197,7 +11197,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferiv")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, ref Int32 value) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11206,7 +11206,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferiv")] [CLSCompliant(false)] - public static unsafe void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, Int32* value) { throw new NotImplementedException(); } + public static unsafe void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11215,7 +11215,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferuiv")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, UInt32[] value) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11224,7 +11224,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferuiv")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, ref UInt32 value) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11233,7 +11233,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferuiv")] [CLSCompliant(false)] - public static unsafe void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify the clear value for the stencil buffer @@ -11242,7 +11242,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the index used when the stencil buffer is cleared. The initial value is 0. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glClearStencil")] - public static void ClearStencil(Int32 s) { throw new NotImplementedException(); } + public static void ClearStencil(Int32 s) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all a texture image with a constant value @@ -11264,7 +11264,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexImage")] [CLSCompliant(false)] - public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all a texture image with a constant value @@ -11288,7 +11288,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all a texture image with a constant value @@ -11312,7 +11312,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all a texture image with a constant value @@ -11336,7 +11336,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all a texture image with a constant value @@ -11360,7 +11360,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all a texture image with a constant value @@ -11382,7 +11382,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexImage")] [CLSCompliant(false)] - public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all a texture image with a constant value @@ -11406,7 +11406,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all a texture image with a constant value @@ -11430,7 +11430,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all a texture image with a constant value @@ -11454,7 +11454,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all a texture image with a constant value @@ -11478,7 +11478,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all or part of a texture image with a constant value @@ -11518,7 +11518,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexSubImage")] [CLSCompliant(false)] - public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all or part of a texture image with a constant value @@ -11560,7 +11560,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all or part of a texture image with a constant value @@ -11602,7 +11602,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all or part of a texture image with a constant value @@ -11644,7 +11644,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all or part of a texture image with a constant value @@ -11686,7 +11686,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all or part of a texture image with a constant value @@ -11726,7 +11726,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_clear_texture|VERSION_4_4", Version = "4.4", EntryPoint = "glClearTexSubImage")] [CLSCompliant(false)] - public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all or part of a texture image with a constant value @@ -11768,7 +11768,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all or part of a texture image with a constant value @@ -11810,7 +11810,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all or part of a texture image with a constant value @@ -11852,7 +11852,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all or part of a texture image with a constant value @@ -11894,7 +11894,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Block and wait for a sync object to become signaled @@ -11910,7 +11910,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glClientWaitSync")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.OpenGL4.ClientWaitSyncFlags flags, Int64 timeout) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL4.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.OpenGL4.ClientWaitSyncFlags flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Block and wait for a sync object to become signaled @@ -11926,13 +11926,13 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glClientWaitSync")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.OpenGL4.ClientWaitSyncFlags flags, UInt64 timeout) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL4.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.OpenGL4.ClientWaitSyncFlags flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_clip_control|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_clip_control|VERSION_4_5", Version = "4.5", EntryPoint = "glClipControl")] - public static void ClipControl(OpenTK.Graphics.OpenGL4.ClipOrigin origin, OpenTK.Graphics.OpenGL4.ClipDepthMode depth) { throw new NotImplementedException(); } + public static void ClipControl(OpenTK.Graphics.OpenGL4.ClipOrigin origin, OpenTK.Graphics.OpenGL4.ClipDepthMode depth) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Enable and disable writing of frame buffer color components @@ -11950,7 +11950,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specify whether red, green, blue, and alpha are to be written into the frame buffer. The initial values are all True, indicating that the color components are written. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColorMask")] - public static void ColorMask(bool red, bool green, bool blue, bool alpha) { throw new NotImplementedException(); } + public static void ColorMask(bool red, bool green, bool blue, bool alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Enable and disable writing of frame buffer color components @@ -11972,7 +11972,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glColorMaski")] [CLSCompliant(false)] - public static void ColorMask(Int32 index, bool r, bool g, bool b, bool a) { throw new NotImplementedException(); } + public static void ColorMask(Int32 index, bool r, bool g, bool b, bool a) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Enable and disable writing of frame buffer color components @@ -11994,63 +11994,63 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glColorMaski")] [CLSCompliant(false)] - public static void ColorMask(UInt32 index, bool r, bool g, bool b, bool a) { throw new NotImplementedException(); } + public static void ColorMask(UInt32 index, bool r, bool g, bool b, bool a) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glColorP3ui")] [CLSCompliant(false)] - public static void ColorP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 color) { throw new NotImplementedException(); } + public static void ColorP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 color) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glColorP3ui")] [CLSCompliant(false)] - public static void ColorP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 color) { throw new NotImplementedException(); } + public static void ColorP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 color) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glColorP3uiv")] [CLSCompliant(false)] - public static unsafe void ColorP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* color) { throw new NotImplementedException(); } + public static unsafe void ColorP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* color) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glColorP3uiv")] [CLSCompliant(false)] - public static unsafe void ColorP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* color) { throw new NotImplementedException(); } + public static unsafe void ColorP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* color) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glColorP4ui")] [CLSCompliant(false)] - public static void ColorP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 color) { throw new NotImplementedException(); } + public static void ColorP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 color) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glColorP4ui")] [CLSCompliant(false)] - public static void ColorP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 color) { throw new NotImplementedException(); } + public static void ColorP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 color) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glColorP4uiv")] [CLSCompliant(false)] - public static unsafe void ColorP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* color) { throw new NotImplementedException(); } + public static unsafe void ColorP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* color) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glColorP4uiv")] [CLSCompliant(false)] - public static unsafe void ColorP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* color) { throw new NotImplementedException(); } + public static unsafe void ColorP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* color) { throw new BindingsNotRewrittenException(); } /// /// Respecify a portion of a color table @@ -12074,7 +12074,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Pointer to a one-dimensional array of pixel data that is processed to replace the specified region of the color table. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorSubTable")] - public static void ColorSubTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,count")] IntPtr data) { throw new NotImplementedException(); } + public static void ColorSubTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,count")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// /// Respecify a portion of a color table @@ -12101,7 +12101,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ColorSubTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,count")] T5[] data) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Respecify a portion of a color table @@ -12128,7 +12128,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ColorSubTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,count")] T5[,] data) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Respecify a portion of a color table @@ -12155,7 +12155,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ColorSubTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,count")] T5[,,] data) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Respecify a portion of a color table @@ -12181,7 +12181,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorSubTable")] public static void ColorSubTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,count")] ref T5 data) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a color lookup table @@ -12205,7 +12205,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Pointer to a one-dimensional array of pixel data that is processed to build the color table. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTable")] - public static void ColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr table) { throw new NotImplementedException(); } + public static void ColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr table) { throw new BindingsNotRewrittenException(); } /// /// Define a color lookup table @@ -12232,7 +12232,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[] table) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a color lookup table @@ -12259,7 +12259,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,] table) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a color lookup table @@ -12286,7 +12286,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,,] table) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a color lookup table @@ -12312,7 +12312,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTable")] public static void ColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T5 table) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Set color lookup table parameters @@ -12328,7 +12328,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTableParameterfv")] [CLSCompliant(false)] - public static void ColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void ColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// Set color lookup table parameters @@ -12344,7 +12344,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTableParameterfv")] [CLSCompliant(false)] - public static void ColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] ref Single @params) { throw new NotImplementedException(); } + public static void ColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] ref Single @params) { throw new BindingsNotRewrittenException(); } /// /// Set color lookup table parameters @@ -12360,7 +12360,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTableParameterfv")] [CLSCompliant(false)] - public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// Set color lookup table parameters @@ -12376,7 +12376,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTableParameteriv")] [CLSCompliant(false)] - public static void ColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void ColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// Set color lookup table parameters @@ -12392,7 +12392,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTableParameteriv")] [CLSCompliant(false)] - public static void ColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void ColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// Set color lookup table parameters @@ -12408,7 +12408,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTableParameteriv")] [CLSCompliant(false)] - public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Compiles a shader object @@ -12418,7 +12418,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glCompileShader")] [CLSCompliant(false)] - public static void CompileShader(Int32 shader) { throw new NotImplementedException(); } + public static void CompileShader(Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Compiles a shader object @@ -12428,7 +12428,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glCompileShader")] [CLSCompliant(false)] - public static void CompileShader(UInt32 shader) { throw new NotImplementedException(); } + public static void CompileShader(UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture image in a compressed format @@ -12455,7 +12455,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage1D")] - public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture image in a compressed format @@ -12485,7 +12485,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture image in a compressed format @@ -12515,7 +12515,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture image in a compressed format @@ -12545,7 +12545,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture image in a compressed format @@ -12574,7 +12574,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage1D")] public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture image in a compressed format @@ -12604,7 +12604,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage2D")] - public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture image in a compressed format @@ -12637,7 +12637,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture image in a compressed format @@ -12670,7 +12670,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture image in a compressed format @@ -12703,7 +12703,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture image in a compressed format @@ -12735,7 +12735,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage2D")] public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture image in a compressed format @@ -12768,7 +12768,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage3D")] - public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture image in a compressed format @@ -12804,7 +12804,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture image in a compressed format @@ -12840,7 +12840,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture image in a compressed format @@ -12876,7 +12876,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture image in a compressed format @@ -12911,7 +12911,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage3D")] public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture subimage in a compressed format @@ -12938,7 +12938,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage1D")] - public static void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture subimage in a compressed format @@ -12968,7 +12968,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture subimage in a compressed format @@ -12998,7 +12998,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture subimage in a compressed format @@ -13028,7 +13028,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture subimage in a compressed format @@ -13057,7 +13057,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage1D")] public static void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture subimage in a compressed format @@ -13090,7 +13090,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage2D")] - public static void CompressedTexSubImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexSubImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture subimage in a compressed format @@ -13126,7 +13126,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture subimage in a compressed format @@ -13162,7 +13162,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture subimage in a compressed format @@ -13198,7 +13198,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture subimage in a compressed format @@ -13233,7 +13233,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage2D")] public static void CompressedTexSubImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture subimage in a compressed format @@ -13272,7 +13272,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage3D")] - public static void CompressedTexSubImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexSubImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture subimage in a compressed format @@ -13314,7 +13314,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture subimage in a compressed format @@ -13356,7 +13356,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture subimage in a compressed format @@ -13398,7 +13398,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture subimage in a compressed format @@ -13439,7 +13439,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage3D")] public static void CompressedTexSubImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13451,7 +13451,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCompressedTextureSubImage1D")] [CLSCompliant(false)] - public static void CompressedTextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13465,7 +13465,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13479,7 +13479,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13493,7 +13493,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13507,7 +13507,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13519,7 +13519,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCompressedTextureSubImage1D")] [CLSCompliant(false)] - public static void CompressedTextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13533,7 +13533,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13547,7 +13547,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13561,7 +13561,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13575,7 +13575,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13589,7 +13589,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCompressedTextureSubImage2D")] [CLSCompliant(false)] - public static void CompressedTextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13605,7 +13605,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13621,7 +13621,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13637,7 +13637,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13653,7 +13653,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13667,7 +13667,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCompressedTextureSubImage2D")] [CLSCompliant(false)] - public static void CompressedTextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13683,7 +13683,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13699,7 +13699,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13715,7 +13715,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13731,7 +13731,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13747,7 +13747,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCompressedTextureSubImage3D")] [CLSCompliant(false)] - public static void CompressedTextureSubImage3D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage3D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13765,7 +13765,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage3D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13783,7 +13783,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage3D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13801,7 +13801,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage3D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13819,7 +13819,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage3D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13835,7 +13835,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCompressedTextureSubImage3D")] [CLSCompliant(false)] - public static void CompressedTextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13853,7 +13853,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13871,7 +13871,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13889,7 +13889,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13907,7 +13907,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a one-dimensional convolution filter @@ -13931,7 +13931,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Pointer to a one-dimensional array of pixel data that is processed to build the convolution filter kernel. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter1D")] - public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr image) { throw new NotImplementedException(); } + public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr image) { throw new BindingsNotRewrittenException(); } /// /// Define a one-dimensional convolution filter @@ -13958,7 +13958,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[] image) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a one-dimensional convolution filter @@ -13985,7 +13985,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,] image) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a one-dimensional convolution filter @@ -14012,7 +14012,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,,] image) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a one-dimensional convolution filter @@ -14038,7 +14038,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter1D")] public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T5 image) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a two-dimensional convolution filter @@ -14065,7 +14065,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Pointer to a two-dimensional array of pixel data that is processed to build the convolution filter kernel. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter2D")] - public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr image) { throw new NotImplementedException(); } + public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr image) { throw new BindingsNotRewrittenException(); } /// /// Define a two-dimensional convolution filter @@ -14095,7 +14095,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[] image) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a two-dimensional convolution filter @@ -14125,7 +14125,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,] image) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a two-dimensional convolution filter @@ -14155,7 +14155,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,,] image) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a two-dimensional convolution filter @@ -14184,7 +14184,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter2D")] public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T6 image) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Set convolution parameters @@ -14199,7 +14199,7 @@ namespace OpenTK.Graphics.OpenGL4 /// The parameter value. Must be one of Reduce, ConstantBorder, ReplicateBorder. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionParameterf")] - public static void ConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameter pname, Single @params) { throw new NotImplementedException(); } + public static void ConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameter pname, Single @params) { throw new BindingsNotRewrittenException(); } /// /// Set convolution parameters @@ -14215,7 +14215,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionParameterfv")] [CLSCompliant(false)] - public static void ConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void ConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// Set convolution parameters @@ -14231,7 +14231,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionParameterfv")] [CLSCompliant(false)] - public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// Set convolution parameters @@ -14246,7 +14246,7 @@ namespace OpenTK.Graphics.OpenGL4 /// The parameter value. Must be one of Reduce, ConstantBorder, ReplicateBorder. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionParameteri")] - public static void ConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameter pname, Int32 @params) { throw new NotImplementedException(); } + public static void ConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameter pname, Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// Set convolution parameters @@ -14262,7 +14262,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionParameteriv")] [CLSCompliant(false)] - public static void ConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void ConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// Set convolution parameters @@ -14278,7 +14278,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionParameteriv")] [CLSCompliant(false)] - public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_copy_buffer|VERSION_3_1] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -14299,7 +14299,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the size, in basic machine units, of the data to be copied from readtarget to writetarget. /// [AutoGenerated(Category = "ARB_copy_buffer|VERSION_3_1", Version = "3.1", EntryPoint = "glCopyBufferSubData")] - public static void CopyBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget readTarget, OpenTK.Graphics.OpenGL4.BufferTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new NotImplementedException(); } + public static void CopyBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget readTarget, OpenTK.Graphics.OpenGL4.BufferTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_copy_buffer|VERSION_3_1] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -14320,7 +14320,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the size, in basic machine units, of the data to be copied from readtarget to writetarget. /// [AutoGenerated(Category = "ARB_copy_buffer|VERSION_3_1", Version = "3.1", EntryPoint = "glCopyBufferSubData")] - public static void CopyBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget readTarget, OpenTK.Graphics.OpenGL4.BufferTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new NotImplementedException(); } + public static void CopyBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget readTarget, OpenTK.Graphics.OpenGL4.BufferTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// /// Respecify a portion of a color table @@ -14341,7 +14341,7 @@ namespace OpenTK.Graphics.OpenGL4 /// The number of table entries to replace. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glCopyColorSubTable")] - public static void CopyColorSubTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, Int32 start, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyColorSubTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, Int32 start, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// /// Copy pixels into a color table @@ -14362,7 +14362,7 @@ namespace OpenTK.Graphics.OpenGL4 /// The width of the pixel rectangle. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glCopyColorTable")] - public static void CopyColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// /// Copy pixels into a one-dimensional convolution filter @@ -14383,7 +14383,7 @@ namespace OpenTK.Graphics.OpenGL4 /// The width of the pixel array to copy. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glCopyConvolutionFilter1D")] - public static void CopyConvolutionFilter1D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyConvolutionFilter1D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// /// Copy pixels into a two-dimensional convolution filter @@ -14407,7 +14407,7 @@ namespace OpenTK.Graphics.OpenGL4 /// The height of the pixel array to copy. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glCopyConvolutionFilter2D")] - public static void CopyConvolutionFilter2D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyConvolutionFilter2D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_copy_image|VERSION_4_3] /// Perform a raw data copy between two images @@ -14459,7 +14459,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_copy_image|VERSION_4_3", Version = "4.3", EntryPoint = "glCopyImageSubData")] [CLSCompliant(false)] - public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.OpenGL4.ImageTarget srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.OpenGL4.ImageTarget dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new NotImplementedException(); } + public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.OpenGL4.ImageTarget srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.OpenGL4.ImageTarget dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_copy_image|VERSION_4_3] /// Perform a raw data copy between two images @@ -14511,7 +14511,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_copy_image|VERSION_4_3", Version = "4.3", EntryPoint = "glCopyImageSubData")] [CLSCompliant(false)] - public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.OpenGL4.ImageTarget srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.OpenGL4.ImageTarget dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new NotImplementedException(); } + public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.OpenGL4.ImageTarget srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.OpenGL4.ImageTarget dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -14521,7 +14521,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCopyNamedBufferSubData")] [CLSCompliant(false)] - public static void CopyNamedBufferSubData(Int32 readBuffer, Int32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new NotImplementedException(); } + public static void CopyNamedBufferSubData(Int32 readBuffer, Int32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -14531,7 +14531,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCopyNamedBufferSubData")] [CLSCompliant(false)] - public static void CopyNamedBufferSubData(Int32 readBuffer, Int32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new NotImplementedException(); } + public static void CopyNamedBufferSubData(Int32 readBuffer, Int32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -14541,7 +14541,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCopyNamedBufferSubData")] [CLSCompliant(false)] - public static void CopyNamedBufferSubData(UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new NotImplementedException(); } + public static void CopyNamedBufferSubData(UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -14551,7 +14551,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCopyNamedBufferSubData")] [CLSCompliant(false)] - public static void CopyNamedBufferSubData(UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new NotImplementedException(); } + public static void CopyNamedBufferSubData(UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Copy pixels into a 1D texture image @@ -14578,7 +14578,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Must be 0. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glCopyTexImage1D")] - public static void CopyTexImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new NotImplementedException(); } + public static void CopyTexImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Copy pixels into a 2D texture image @@ -14608,7 +14608,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Must be 0. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glCopyTexImage2D")] - public static void CopyTexImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new NotImplementedException(); } + public static void CopyTexImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Copy a one-dimensional texture subimage @@ -14632,7 +14632,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the width of the texture subimage. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glCopyTexSubImage1D")] - public static void CopyTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Copy a two-dimensional texture subimage @@ -14662,7 +14662,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the height of the texture subimage. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glCopyTexSubImage2D")] - public static void CopyTexSubImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Copy a three-dimensional texture subimage @@ -14695,7 +14695,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the height of the texture subimage. /// [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glCopyTexSubImage3D")] - public static void CopyTexSubImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -14706,7 +14706,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCopyTextureSubImage1D")] [CLSCompliant(false)] - public static void CopyTextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyTextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -14717,7 +14717,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCopyTextureSubImage1D")] [CLSCompliant(false)] - public static void CopyTextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyTextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -14730,7 +14730,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCopyTextureSubImage2D")] [CLSCompliant(false)] - public static void CopyTextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -14743,7 +14743,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCopyTextureSubImage2D")] [CLSCompliant(false)] - public static void CopyTextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -14757,7 +14757,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCopyTextureSubImage3D")] [CLSCompliant(false)] - public static void CopyTextureSubImage3D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTextureSubImage3D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -14771,139 +14771,139 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCopyTextureSubImage3D")] [CLSCompliant(false)] - public static void CopyTextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateBuffers")] [CLSCompliant(false)] - public static void CreateBuffers(Int32 n, [OutAttribute] Int32[] buffers) { throw new NotImplementedException(); } + public static void CreateBuffers(Int32 n, [OutAttribute] Int32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateBuffers")] [CLSCompliant(false)] - public static void CreateBuffers(Int32 n, [OutAttribute] out Int32 buffers) { throw new NotImplementedException(); } + public static void CreateBuffers(Int32 n, [OutAttribute] out Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateBuffers")] [CLSCompliant(false)] - public static unsafe void CreateBuffers(Int32 n, [OutAttribute] Int32* buffers) { throw new NotImplementedException(); } + public static unsafe void CreateBuffers(Int32 n, [OutAttribute] Int32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateBuffers")] [CLSCompliant(false)] - public static void CreateBuffers(Int32 n, [OutAttribute] UInt32[] buffers) { throw new NotImplementedException(); } + public static void CreateBuffers(Int32 n, [OutAttribute] UInt32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateBuffers")] [CLSCompliant(false)] - public static void CreateBuffers(Int32 n, [OutAttribute] out UInt32 buffers) { throw new NotImplementedException(); } + public static void CreateBuffers(Int32 n, [OutAttribute] out UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateBuffers")] [CLSCompliant(false)] - public static unsafe void CreateBuffers(Int32 n, [OutAttribute] UInt32* buffers) { throw new NotImplementedException(); } + public static unsafe void CreateBuffers(Int32 n, [OutAttribute] UInt32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateFramebuffers")] [CLSCompliant(false)] - public static void CreateFramebuffers(Int32 n, [OutAttribute] Int32[] framebuffers) { throw new NotImplementedException(); } + public static void CreateFramebuffers(Int32 n, [OutAttribute] Int32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateFramebuffers")] [CLSCompliant(false)] - public static void CreateFramebuffers(Int32 n, [OutAttribute] out Int32 framebuffers) { throw new NotImplementedException(); } + public static void CreateFramebuffers(Int32 n, [OutAttribute] out Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateFramebuffers")] [CLSCompliant(false)] - public static unsafe void CreateFramebuffers(Int32 n, [OutAttribute] Int32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void CreateFramebuffers(Int32 n, [OutAttribute] Int32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateFramebuffers")] [CLSCompliant(false)] - public static void CreateFramebuffers(Int32 n, [OutAttribute] UInt32[] framebuffers) { throw new NotImplementedException(); } + public static void CreateFramebuffers(Int32 n, [OutAttribute] UInt32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateFramebuffers")] [CLSCompliant(false)] - public static void CreateFramebuffers(Int32 n, [OutAttribute] out UInt32 framebuffers) { throw new NotImplementedException(); } + public static void CreateFramebuffers(Int32 n, [OutAttribute] out UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateFramebuffers")] [CLSCompliant(false)] - public static unsafe void CreateFramebuffers(Int32 n, [OutAttribute] UInt32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void CreateFramebuffers(Int32 n, [OutAttribute] UInt32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Creates a program object /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glCreateProgram")] - public static Int32 CreateProgram() { throw new NotImplementedException(); } + public static Int32 CreateProgram() { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateProgramPipelines")] [CLSCompliant(false)] - public static void CreateProgramPipelines(Int32 n, [OutAttribute] Int32[] pipelines) { throw new NotImplementedException(); } + public static void CreateProgramPipelines(Int32 n, [OutAttribute] Int32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateProgramPipelines")] [CLSCompliant(false)] - public static void CreateProgramPipelines(Int32 n, [OutAttribute] out Int32 pipelines) { throw new NotImplementedException(); } + public static void CreateProgramPipelines(Int32 n, [OutAttribute] out Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateProgramPipelines")] [CLSCompliant(false)] - public static unsafe void CreateProgramPipelines(Int32 n, [OutAttribute] Int32* pipelines) { throw new NotImplementedException(); } + public static unsafe void CreateProgramPipelines(Int32 n, [OutAttribute] Int32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateProgramPipelines")] [CLSCompliant(false)] - public static void CreateProgramPipelines(Int32 n, [OutAttribute] UInt32[] pipelines) { throw new NotImplementedException(); } + public static void CreateProgramPipelines(Int32 n, [OutAttribute] UInt32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateProgramPipelines")] [CLSCompliant(false)] - public static void CreateProgramPipelines(Int32 n, [OutAttribute] out UInt32 pipelines) { throw new NotImplementedException(); } + public static void CreateProgramPipelines(Int32 n, [OutAttribute] out UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateProgramPipelines")] [CLSCompliant(false)] - public static unsafe void CreateProgramPipelines(Int32 n, [OutAttribute] UInt32* pipelines) { throw new NotImplementedException(); } + public static unsafe void CreateProgramPipelines(Int32 n, [OutAttribute] UInt32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -14911,7 +14911,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateQueries")] [CLSCompliant(false)] - public static void CreateQueries(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 n, [OutAttribute] Int32[] ids) { throw new NotImplementedException(); } + public static void CreateQueries(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 n, [OutAttribute] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -14919,7 +14919,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateQueries")] [CLSCompliant(false)] - public static void CreateQueries(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 n, [OutAttribute] out Int32 ids) { throw new NotImplementedException(); } + public static void CreateQueries(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 n, [OutAttribute] out Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -14927,7 +14927,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateQueries")] [CLSCompliant(false)] - public static unsafe void CreateQueries(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 n, [OutAttribute] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void CreateQueries(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 n, [OutAttribute] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -14935,7 +14935,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateQueries")] [CLSCompliant(false)] - public static void CreateQueries(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 n, [OutAttribute] UInt32[] ids) { throw new NotImplementedException(); } + public static void CreateQueries(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 n, [OutAttribute] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -14943,7 +14943,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateQueries")] [CLSCompliant(false)] - public static void CreateQueries(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 n, [OutAttribute] out UInt32 ids) { throw new NotImplementedException(); } + public static void CreateQueries(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 n, [OutAttribute] out UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -14951,91 +14951,91 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateQueries")] [CLSCompliant(false)] - public static unsafe void CreateQueries(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 n, [OutAttribute] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void CreateQueries(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 n, [OutAttribute] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateRenderbuffers")] [CLSCompliant(false)] - public static void CreateRenderbuffers(Int32 n, [OutAttribute] Int32[] renderbuffers) { throw new NotImplementedException(); } + public static void CreateRenderbuffers(Int32 n, [OutAttribute] Int32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateRenderbuffers")] [CLSCompliant(false)] - public static void CreateRenderbuffers(Int32 n, [OutAttribute] out Int32 renderbuffers) { throw new NotImplementedException(); } + public static void CreateRenderbuffers(Int32 n, [OutAttribute] out Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateRenderbuffers")] [CLSCompliant(false)] - public static unsafe void CreateRenderbuffers(Int32 n, [OutAttribute] Int32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void CreateRenderbuffers(Int32 n, [OutAttribute] Int32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateRenderbuffers")] [CLSCompliant(false)] - public static void CreateRenderbuffers(Int32 n, [OutAttribute] UInt32[] renderbuffers) { throw new NotImplementedException(); } + public static void CreateRenderbuffers(Int32 n, [OutAttribute] UInt32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateRenderbuffers")] [CLSCompliant(false)] - public static void CreateRenderbuffers(Int32 n, [OutAttribute] out UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void CreateRenderbuffers(Int32 n, [OutAttribute] out UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateRenderbuffers")] [CLSCompliant(false)] - public static unsafe void CreateRenderbuffers(Int32 n, [OutAttribute] UInt32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void CreateRenderbuffers(Int32 n, [OutAttribute] UInt32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateSamplers")] [CLSCompliant(false)] - public static void CreateSamplers(Int32 n, [OutAttribute] Int32[] samplers) { throw new NotImplementedException(); } + public static void CreateSamplers(Int32 n, [OutAttribute] Int32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateSamplers")] [CLSCompliant(false)] - public static void CreateSamplers(Int32 n, [OutAttribute] out Int32 samplers) { throw new NotImplementedException(); } + public static void CreateSamplers(Int32 n, [OutAttribute] out Int32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateSamplers")] [CLSCompliant(false)] - public static unsafe void CreateSamplers(Int32 n, [OutAttribute] Int32* samplers) { throw new NotImplementedException(); } + public static unsafe void CreateSamplers(Int32 n, [OutAttribute] Int32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateSamplers")] [CLSCompliant(false)] - public static void CreateSamplers(Int32 n, [OutAttribute] UInt32[] samplers) { throw new NotImplementedException(); } + public static void CreateSamplers(Int32 n, [OutAttribute] UInt32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateSamplers")] [CLSCompliant(false)] - public static void CreateSamplers(Int32 n, [OutAttribute] out UInt32 samplers) { throw new NotImplementedException(); } + public static void CreateSamplers(Int32 n, [OutAttribute] out UInt32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateSamplers")] [CLSCompliant(false)] - public static unsafe void CreateSamplers(Int32 n, [OutAttribute] UInt32* samplers) { throw new NotImplementedException(); } + public static unsafe void CreateSamplers(Int32 n, [OutAttribute] UInt32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Creates a shader object @@ -15044,7 +15044,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the type of shader to be created. Must be one of ComputeShader, VertexShader, TessControlShader, TessEvaluationShader, GeometryShader, or FragmentShader. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glCreateShader")] - public static Int32 CreateShader(OpenTK.Graphics.OpenGL4.ShaderType type) { throw new NotImplementedException(); } + public static Int32 CreateShader(OpenTK.Graphics.OpenGL4.ShaderType type) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Create a stand-alone program from an array of null-terminated source code strings @@ -15059,7 +15059,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array of pointers to source code strings from which to create the program object. /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glCreateShaderProgramv")] - public static Int32 CreateShaderProgram(OpenTK.Graphics.OpenGL4.ShaderType type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new NotImplementedException(); } + public static Int32 CreateShaderProgram(OpenTK.Graphics.OpenGL4.ShaderType type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -15067,7 +15067,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTextures")] [CLSCompliant(false)] - public static void CreateTextures(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 n, [OutAttribute] Int32[] textures) { throw new NotImplementedException(); } + public static void CreateTextures(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 n, [OutAttribute] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -15075,7 +15075,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTextures")] [CLSCompliant(false)] - public static void CreateTextures(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 n, [OutAttribute] out Int32 textures) { throw new NotImplementedException(); } + public static void CreateTextures(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 n, [OutAttribute] out Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -15083,7 +15083,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTextures")] [CLSCompliant(false)] - public static unsafe void CreateTextures(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 n, [OutAttribute] Int32* textures) { throw new NotImplementedException(); } + public static unsafe void CreateTextures(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 n, [OutAttribute] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -15091,7 +15091,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTextures")] [CLSCompliant(false)] - public static void CreateTextures(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 n, [OutAttribute] UInt32[] textures) { throw new NotImplementedException(); } + public static void CreateTextures(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 n, [OutAttribute] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -15099,7 +15099,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTextures")] [CLSCompliant(false)] - public static void CreateTextures(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 n, [OutAttribute] out UInt32 textures) { throw new NotImplementedException(); } + public static void CreateTextures(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 n, [OutAttribute] out UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -15107,91 +15107,91 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTextures")] [CLSCompliant(false)] - public static unsafe void CreateTextures(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 n, [OutAttribute] UInt32* textures) { throw new NotImplementedException(); } + public static unsafe void CreateTextures(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 n, [OutAttribute] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTransformFeedbacks")] [CLSCompliant(false)] - public static void CreateTransformFeedbacks(Int32 n, [OutAttribute] Int32[] ids) { throw new NotImplementedException(); } + public static void CreateTransformFeedbacks(Int32 n, [OutAttribute] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTransformFeedbacks")] [CLSCompliant(false)] - public static void CreateTransformFeedbacks(Int32 n, [OutAttribute] out Int32 ids) { throw new NotImplementedException(); } + public static void CreateTransformFeedbacks(Int32 n, [OutAttribute] out Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void CreateTransformFeedbacks(Int32 n, [OutAttribute] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void CreateTransformFeedbacks(Int32 n, [OutAttribute] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTransformFeedbacks")] [CLSCompliant(false)] - public static void CreateTransformFeedbacks(Int32 n, [OutAttribute] UInt32[] ids) { throw new NotImplementedException(); } + public static void CreateTransformFeedbacks(Int32 n, [OutAttribute] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTransformFeedbacks")] [CLSCompliant(false)] - public static void CreateTransformFeedbacks(Int32 n, [OutAttribute] out UInt32 ids) { throw new NotImplementedException(); } + public static void CreateTransformFeedbacks(Int32 n, [OutAttribute] out UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void CreateTransformFeedbacks(Int32 n, [OutAttribute] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void CreateTransformFeedbacks(Int32 n, [OutAttribute] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateVertexArrays")] [CLSCompliant(false)] - public static void CreateVertexArrays(Int32 n, [OutAttribute] Int32[] arrays) { throw new NotImplementedException(); } + public static void CreateVertexArrays(Int32 n, [OutAttribute] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateVertexArrays")] [CLSCompliant(false)] - public static void CreateVertexArrays(Int32 n, [OutAttribute] out Int32 arrays) { throw new NotImplementedException(); } + public static void CreateVertexArrays(Int32 n, [OutAttribute] out Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateVertexArrays")] [CLSCompliant(false)] - public static unsafe void CreateVertexArrays(Int32 n, [OutAttribute] Int32* arrays) { throw new NotImplementedException(); } + public static unsafe void CreateVertexArrays(Int32 n, [OutAttribute] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateVertexArrays")] [CLSCompliant(false)] - public static void CreateVertexArrays(Int32 n, [OutAttribute] UInt32[] arrays) { throw new NotImplementedException(); } + public static void CreateVertexArrays(Int32 n, [OutAttribute] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateVertexArrays")] [CLSCompliant(false)] - public static void CreateVertexArrays(Int32 n, [OutAttribute] out UInt32 arrays) { throw new NotImplementedException(); } + public static void CreateVertexArrays(Int32 n, [OutAttribute] out UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateVertexArrays")] [CLSCompliant(false)] - public static unsafe void CreateVertexArrays(Int32 n, [OutAttribute] UInt32* arrays) { throw new NotImplementedException(); } + public static unsafe void CreateVertexArrays(Int32 n, [OutAttribute] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify whether front- or back-facing facets can be culled @@ -15200,7 +15200,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies whether front- or back-facing facets are candidates for culling. Symbolic constants Front, Back, and FrontAndBack are accepted. The initial value is Back. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glCullFace")] - public static void CullFace(OpenTK.Graphics.OpenGL4.CullFaceMode mode) { throw new NotImplementedException(); } + public static void CullFace(OpenTK.Graphics.OpenGL4.CullFaceMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Specify a callback to receive debugging messages from the GL @@ -15212,7 +15212,7 @@ namespace OpenTK.Graphics.OpenGL4 /// A user supplied pointer that will be passed on each invocation of callback. /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageCallback")] - public static void DebugMessageCallback(DebugProc callback, IntPtr userParam) { throw new NotImplementedException(); } + public static void DebugMessageCallback(DebugProc callback, IntPtr userParam) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Specify a callback to receive debugging messages from the GL @@ -15227,7 +15227,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Specify a callback to receive debugging messages from the GL @@ -15242,7 +15242,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Specify a callback to receive debugging messages from the GL @@ -15257,7 +15257,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[,,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Specify a callback to receive debugging messages from the GL @@ -15271,7 +15271,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageCallback")] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] ref T1 userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Control the reporting of debug messages in a debug context @@ -15296,7 +15296,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.DebugSourceControl source, OpenTK.Graphics.OpenGL4.DebugTypeControl type, OpenTK.Graphics.OpenGL4.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.DebugSourceControl source, OpenTK.Graphics.OpenGL4.DebugTypeControl type, OpenTK.Graphics.OpenGL4.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Control the reporting of debug messages in a debug context @@ -15321,7 +15321,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.DebugSourceControl source, OpenTK.Graphics.OpenGL4.DebugTypeControl type, OpenTK.Graphics.OpenGL4.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.DebugSourceControl source, OpenTK.Graphics.OpenGL4.DebugTypeControl type, OpenTK.Graphics.OpenGL4.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Control the reporting of debug messages in a debug context @@ -15346,7 +15346,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL4.DebugSourceControl source, OpenTK.Graphics.OpenGL4.DebugTypeControl type, OpenTK.Graphics.OpenGL4.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL4.DebugSourceControl source, OpenTK.Graphics.OpenGL4.DebugTypeControl type, OpenTK.Graphics.OpenGL4.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Control the reporting of debug messages in a debug context @@ -15371,7 +15371,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.DebugSourceControl source, OpenTK.Graphics.OpenGL4.DebugTypeControl type, OpenTK.Graphics.OpenGL4.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.DebugSourceControl source, OpenTK.Graphics.OpenGL4.DebugTypeControl type, OpenTK.Graphics.OpenGL4.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Control the reporting of debug messages in a debug context @@ -15396,7 +15396,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.DebugSourceControl source, OpenTK.Graphics.OpenGL4.DebugTypeControl type, OpenTK.Graphics.OpenGL4.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.DebugSourceControl source, OpenTK.Graphics.OpenGL4.DebugTypeControl type, OpenTK.Graphics.OpenGL4.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Control the reporting of debug messages in a debug context @@ -15421,7 +15421,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL4.DebugSourceControl source, OpenTK.Graphics.OpenGL4.DebugTypeControl type, OpenTK.Graphics.OpenGL4.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL4.DebugSourceControl source, OpenTK.Graphics.OpenGL4.DebugTypeControl type, OpenTK.Graphics.OpenGL4.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Inject an application-supplied message into the debug message queue @@ -15446,7 +15446,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageInsert")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.OpenGL4.DebugSourceExternal source, OpenTK.Graphics.OpenGL4.DebugType type, Int32 id, OpenTK.Graphics.OpenGL4.DebugSeverity severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.OpenGL4.DebugSourceExternal source, OpenTK.Graphics.OpenGL4.DebugType type, Int32 id, OpenTK.Graphics.OpenGL4.DebugSeverity severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Inject an application-supplied message into the debug message queue @@ -15471,7 +15471,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageInsert")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.OpenGL4.DebugSourceExternal source, OpenTK.Graphics.OpenGL4.DebugType type, UInt32 id, OpenTK.Graphics.OpenGL4.DebugSeverity severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.OpenGL4.DebugSourceExternal source, OpenTK.Graphics.OpenGL4.DebugType type, UInt32 id, OpenTK.Graphics.OpenGL4.DebugSeverity severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named buffer objects @@ -15481,7 +15481,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffer([CountAttribute(Parameter = "n")] Int32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffer([CountAttribute(Parameter = "n")] Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named buffer objects @@ -15491,7 +15491,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffer([CountAttribute(Parameter = "n")] UInt32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffer([CountAttribute(Parameter = "n")] UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named buffer objects @@ -15504,7 +15504,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named buffer objects @@ -15517,7 +15517,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named buffer objects @@ -15530,7 +15530,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* buffers) { throw new NotImplementedException(); } + public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named buffer objects @@ -15543,7 +15543,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named buffer objects @@ -15556,7 +15556,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named buffer objects @@ -15569,7 +15569,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* buffers) { throw new NotImplementedException(); } + public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete framebuffer objects @@ -15579,7 +15579,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] Int32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete framebuffer objects @@ -15589,7 +15589,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] UInt32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete framebuffer objects @@ -15602,7 +15602,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete framebuffer objects @@ -15615,7 +15615,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete framebuffer objects @@ -15628,7 +15628,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete framebuffer objects @@ -15641,7 +15641,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete framebuffer objects @@ -15654,7 +15654,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete framebuffer objects @@ -15667,7 +15667,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Deletes a program object @@ -15677,7 +15677,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteProgram")] [CLSCompliant(false)] - public static void DeleteProgram(Int32 program) { throw new NotImplementedException(); } + public static void DeleteProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Deletes a program object @@ -15687,7 +15687,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteProgram")] [CLSCompliant(false)] - public static void DeleteProgram(UInt32 program) { throw new NotImplementedException(); } + public static void DeleteProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Delete program pipeline objects @@ -15697,7 +15697,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glDeleteProgramPipelines")] [CLSCompliant(false)] - public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] Int32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Delete program pipeline objects @@ -15707,7 +15707,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glDeleteProgramPipelines")] [CLSCompliant(false)] - public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] UInt32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Delete program pipeline objects @@ -15720,7 +15720,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glDeleteProgramPipelines")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Delete program pipeline objects @@ -15733,7 +15733,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glDeleteProgramPipelines")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Delete program pipeline objects @@ -15746,7 +15746,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glDeleteProgramPipelines")] [CLSCompliant(false)] - public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32* pipelines) { throw new NotImplementedException(); } + public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Delete program pipeline objects @@ -15759,7 +15759,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glDeleteProgramPipelines")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Delete program pipeline objects @@ -15772,7 +15772,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glDeleteProgramPipelines")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Delete program pipeline objects @@ -15785,7 +15785,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glDeleteProgramPipelines")] [CLSCompliant(false)] - public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new NotImplementedException(); } + public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named query objects @@ -15795,7 +15795,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQuery([CountAttribute(Parameter = "n")] Int32 ids) { throw new NotImplementedException(); } + public static void DeleteQuery([CountAttribute(Parameter = "n")] Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named query objects @@ -15805,7 +15805,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQuery([CountAttribute(Parameter = "n")] UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteQuery([CountAttribute(Parameter = "n")] UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named query objects @@ -15818,7 +15818,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named query objects @@ -15831,7 +15831,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named query objects @@ -15844,7 +15844,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named query objects @@ -15857,7 +15857,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named query objects @@ -15870,7 +15870,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named query objects @@ -15883,7 +15883,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete renderbuffer objects @@ -15893,7 +15893,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] Int32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete renderbuffer objects @@ -15903,7 +15903,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete renderbuffer objects @@ -15916,7 +15916,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete renderbuffer objects @@ -15929,7 +15929,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete renderbuffer objects @@ -15942,7 +15942,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete renderbuffer objects @@ -15955,7 +15955,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete renderbuffer objects @@ -15968,7 +15968,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete renderbuffer objects @@ -15981,7 +15981,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Delete named sampler objects @@ -15991,7 +15991,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static void DeleteSampler([CountAttribute(Parameter = "count")] Int32 samplers) { throw new NotImplementedException(); } + public static void DeleteSampler([CountAttribute(Parameter = "count")] Int32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Delete named sampler objects @@ -16001,7 +16001,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static void DeleteSampler([CountAttribute(Parameter = "count")] UInt32 samplers) { throw new NotImplementedException(); } + public static void DeleteSampler([CountAttribute(Parameter = "count")] UInt32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Delete named sampler objects @@ -16014,7 +16014,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] Int32[] samplers) { throw new NotImplementedException(); } + public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] Int32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Delete named sampler objects @@ -16027,7 +16027,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 samplers) { throw new NotImplementedException(); } + public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Delete named sampler objects @@ -16040,7 +16040,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static unsafe void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] Int32* samplers) { throw new NotImplementedException(); } + public static unsafe void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] Int32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Delete named sampler objects @@ -16053,7 +16053,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] samplers) { throw new NotImplementedException(); } + public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Delete named sampler objects @@ -16066,7 +16066,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 samplers) { throw new NotImplementedException(); } + public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Delete named sampler objects @@ -16079,7 +16079,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static unsafe void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] UInt32* samplers) { throw new NotImplementedException(); } + public static unsafe void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] UInt32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Deletes a shader object @@ -16089,7 +16089,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteShader")] [CLSCompliant(false)] - public static void DeleteShader(Int32 shader) { throw new NotImplementedException(); } + public static void DeleteShader(Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Deletes a shader object @@ -16099,7 +16099,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteShader")] [CLSCompliant(false)] - public static void DeleteShader(UInt32 shader) { throw new NotImplementedException(); } + public static void DeleteShader(UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Delete a sync object @@ -16108,7 +16108,7 @@ namespace OpenTK.Graphics.OpenGL4 /// The sync object to be deleted. /// [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glDeleteSync")] - public static void DeleteSync(IntPtr sync) { throw new NotImplementedException(); } + public static void DeleteSync(IntPtr sync) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Delete named textures @@ -16118,7 +16118,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTexture([CountAttribute(Parameter = "n")] Int32 textures) { throw new NotImplementedException(); } + public static void DeleteTexture([CountAttribute(Parameter = "n")] Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Delete named textures @@ -16128,7 +16128,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTexture([CountAttribute(Parameter = "n")] UInt32 textures) { throw new NotImplementedException(); } + public static void DeleteTexture([CountAttribute(Parameter = "n")] UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Delete named textures @@ -16141,7 +16141,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Delete named textures @@ -16154,7 +16154,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Delete named textures @@ -16167,7 +16167,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures) { throw new NotImplementedException(); } + public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Delete named textures @@ -16180,7 +16180,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Delete named textures @@ -16193,7 +16193,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Delete named textures @@ -16206,7 +16206,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures) { throw new NotImplementedException(); } + public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Delete transform feedback objects @@ -16216,7 +16216,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static void DeleteTransformFeedback([CountAttribute(Parameter = "n")] Int32 ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedback([CountAttribute(Parameter = "n")] Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Delete transform feedback objects @@ -16226,7 +16226,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static void DeleteTransformFeedback([CountAttribute(Parameter = "n")] UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedback([CountAttribute(Parameter = "n")] UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Delete transform feedback objects @@ -16239,7 +16239,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Delete transform feedback objects @@ -16252,7 +16252,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Delete transform feedback objects @@ -16265,7 +16265,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Delete transform feedback objects @@ -16278,7 +16278,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Delete transform feedback objects @@ -16291,7 +16291,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Delete transform feedback objects @@ -16304,7 +16304,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Delete vertex array objects @@ -16314,7 +16314,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static void DeleteVertexArray([CountAttribute(Parameter = "n")] Int32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArray([CountAttribute(Parameter = "n")] Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Delete vertex array objects @@ -16324,7 +16324,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static void DeleteVertexArray([CountAttribute(Parameter = "n")] UInt32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArray([CountAttribute(Parameter = "n")] UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Delete vertex array objects @@ -16337,7 +16337,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32[] arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Delete vertex array objects @@ -16350,7 +16350,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Delete vertex array objects @@ -16363,7 +16363,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32* arrays) { throw new NotImplementedException(); } + public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Delete vertex array objects @@ -16376,7 +16376,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Delete vertex array objects @@ -16389,7 +16389,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Delete vertex array objects @@ -16402,7 +16402,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays) { throw new NotImplementedException(); } + public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify the value used for depth buffer comparisons @@ -16411,7 +16411,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the depth comparison function. Symbolic constants Never, Less, Equal, Lequal, Greater, Notequal, Gequal, and Always are accepted. The initial value is Less. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glDepthFunc")] - public static void DepthFunc(OpenTK.Graphics.OpenGL4.DepthFunction func) { throw new NotImplementedException(); } + public static void DepthFunc(OpenTK.Graphics.OpenGL4.DepthFunction func) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Enable or disable writing into the depth buffer @@ -16420,7 +16420,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies whether the depth buffer is enabled for writing. If flag is False, depth buffer writing is disabled. Otherwise, it is enabled. Initially, depth buffer writing is enabled. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glDepthMask")] - public static void DepthMask(bool flag) { throw new NotImplementedException(); } + public static void DepthMask(bool flag) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify mapping of depth values from normalized device coordinates to window coordinates @@ -16432,7 +16432,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the mapping of the far clipping plane to window coordinates. The initial value is 1. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glDepthRange")] - public static void DepthRange(Double near, Double far) { throw new NotImplementedException(); } + public static void DepthRange(Double near, Double far) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -16448,7 +16448,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangeArrayv")] [CLSCompliant(false)] - public static void DepthRangeArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Double[] v) { throw new NotImplementedException(); } + public static void DepthRangeArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -16464,7 +16464,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangeArrayv")] [CLSCompliant(false)] - public static void DepthRangeArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Double v) { throw new NotImplementedException(); } + public static void DepthRangeArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -16480,7 +16480,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangeArrayv")] [CLSCompliant(false)] - public static unsafe void DepthRangeArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Double* v) { throw new NotImplementedException(); } + public static unsafe void DepthRangeArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -16496,7 +16496,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangeArrayv")] [CLSCompliant(false)] - public static void DepthRangeArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Double[] v) { throw new NotImplementedException(); } + public static void DepthRangeArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -16512,7 +16512,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangeArrayv")] [CLSCompliant(false)] - public static void DepthRangeArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Double v) { throw new NotImplementedException(); } + public static void DepthRangeArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -16528,7 +16528,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangeArrayv")] [CLSCompliant(false)] - public static unsafe void DepthRangeArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Double* v) { throw new NotImplementedException(); } + public static unsafe void DepthRangeArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Specify mapping of depth values from normalized device coordinates to window coordinates @@ -16540,7 +16540,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the mapping of the far clipping plane to window coordinates. The initial value is 1. /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangef")] - public static void DepthRange(Single n, Single f) { throw new NotImplementedException(); } + public static void DepthRange(Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified viewport @@ -16556,7 +16556,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangeIndexed")] [CLSCompliant(false)] - public static void DepthRangeIndexed(Int32 index, Double n, Double f) { throw new NotImplementedException(); } + public static void DepthRangeIndexed(Int32 index, Double n, Double f) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified viewport @@ -16572,7 +16572,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangeIndexed")] [CLSCompliant(false)] - public static void DepthRangeIndexed(UInt32 index, Double n, Double f) { throw new NotImplementedException(); } + public static void DepthRangeIndexed(UInt32 index, Double n, Double f) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Detaches a shader object from a program object to which it is attached @@ -16585,7 +16585,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDetachShader")] [CLSCompliant(false)] - public static void DetachShader(Int32 program, Int32 shader) { throw new NotImplementedException(); } + public static void DetachShader(Int32 program, Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Detaches a shader object from a program object to which it is attached @@ -16598,52 +16598,52 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDetachShader")] [CLSCompliant(false)] - public static void DetachShader(UInt32 program, UInt32 shader) { throw new NotImplementedException(); } + public static void DetachShader(UInt32 program, UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glDisable")] - public static void Disable(OpenTK.Graphics.OpenGL4.EnableCap cap) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.OpenGL4.EnableCap cap) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glDisablei")] [CLSCompliant(false)] - public static void Disable(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, Int32 index) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glDisablei")] [CLSCompliant(false)] - public static void Disable(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, UInt32 index) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glDisableVertexArrayAttrib")] [CLSCompliant(false)] - public static void DisableVertexArrayAttrib(Int32 vaobj, Int32 index) { throw new NotImplementedException(); } + public static void DisableVertexArrayAttrib(Int32 vaobj, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glDisableVertexArrayAttrib")] [CLSCompliant(false)] - public static void DisableVertexArrayAttrib(UInt32 vaobj, UInt32 index) { throw new NotImplementedException(); } + public static void DisableVertexArrayAttrib(UInt32 vaobj, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDisableVertexAttribArray")] [CLSCompliant(false)] - public static void DisableVertexAttribArray(Int32 index) { throw new NotImplementedException(); } + public static void DisableVertexAttribArray(Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDisableVertexAttribArray")] [CLSCompliant(false)] - public static void DisableVertexAttribArray(UInt32 index) { throw new NotImplementedException(); } + public static void DisableVertexAttribArray(UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_compute_shader|VERSION_4_3] /// Launch one or more compute work groups @@ -16659,7 +16659,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_compute_shader|VERSION_4_3", Version = "4.3", EntryPoint = "glDispatchCompute")] [CLSCompliant(false)] - public static void DispatchCompute(Int32 num_groups_x, Int32 num_groups_y, Int32 num_groups_z) { throw new NotImplementedException(); } + public static void DispatchCompute(Int32 num_groups_x, Int32 num_groups_y, Int32 num_groups_z) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_compute_shader|VERSION_4_3] /// Launch one or more compute work groups @@ -16675,7 +16675,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_compute_shader|VERSION_4_3", Version = "4.3", EntryPoint = "glDispatchCompute")] [CLSCompliant(false)] - public static void DispatchCompute(UInt32 num_groups_x, UInt32 num_groups_y, UInt32 num_groups_z) { throw new NotImplementedException(); } + public static void DispatchCompute(UInt32 num_groups_x, UInt32 num_groups_y, UInt32 num_groups_z) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_compute_shader|VERSION_4_3] /// Launch one or more compute work groups using parameters stored in a buffer @@ -16684,7 +16684,7 @@ namespace OpenTK.Graphics.OpenGL4 /// The offset into the buffer object currently bound to the DispatchIndirectBuffer buffer target at which the dispatch parameters are stored. /// [AutoGenerated(Category = "ARB_compute_shader|VERSION_4_3", Version = "4.3", EntryPoint = "glDispatchComputeIndirect")] - public static void DispatchComputeIndirect(IntPtr indirect) { throw new NotImplementedException(); } + public static void DispatchComputeIndirect(IntPtr indirect) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -16699,7 +16699,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the number of indices to be rendered. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDrawArrays")] - public static void DrawArrays(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 first, Int32 count) { throw new NotImplementedException(); } + public static void DrawArrays(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render primitives from array data, taking parameters from memory @@ -16711,7 +16711,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of a structure containing the draw parameters. /// [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawArraysIndirect")] - public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, IntPtr indirect) { throw new NotImplementedException(); } + public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, IntPtr indirect) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render primitives from array data, taking parameters from memory @@ -16726,7 +16726,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] T1[] indirect) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render primitives from array data, taking parameters from memory @@ -16741,7 +16741,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] T1[,] indirect) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render primitives from array data, taking parameters from memory @@ -16756,7 +16756,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] T1[,,] indirect) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render primitives from array data, taking parameters from memory @@ -16770,7 +16770,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawArraysIndirect")] public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] ref T1 indirect) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Draw multiple instances of a range of elements @@ -16788,7 +16788,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glDrawArraysInstanced")] - public static void DrawArraysInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a range of elements with offset applied to instanced attributes @@ -16810,7 +16810,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawArraysInstancedBaseInstance")] [CLSCompliant(false)] - public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a range of elements with offset applied to instanced attributes @@ -16832,7 +16832,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawArraysInstancedBaseInstance")] [CLSCompliant(false)] - public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify which color buffers are to be drawn into @@ -16841,7 +16841,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies up to four color buffers to be drawn into. Symbolic constants None, FrontLeft, FrontRight, BackLeft, BackRight, Front, Back, Left, Right, and FrontAndBack are accepted. The initial value is Front for single-buffered contexts, and Back for double-buffered contexts. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glDrawBuffer")] - public static void DrawBuffer(OpenTK.Graphics.OpenGL4.DrawBufferMode buf) { throw new NotImplementedException(); } + public static void DrawBuffer(OpenTK.Graphics.OpenGL4.DrawBufferMode buf) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies a list of color buffers to be drawn into @@ -16854,7 +16854,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDrawBuffers")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL4.DrawBuffersEnum[] bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL4.DrawBuffersEnum[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies a list of color buffers to be drawn into @@ -16867,7 +16867,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDrawBuffers")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.OpenGL4.DrawBuffersEnum bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.OpenGL4.DrawBuffersEnum bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies a list of color buffers to be drawn into @@ -16880,7 +16880,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDrawBuffers")] [CLSCompliant(false)] - public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL4.DrawBuffersEnum* bufs) { throw new NotImplementedException(); } + public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL4.DrawBuffersEnum* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -16898,7 +16898,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the location where the indices are stored. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDrawElements")] - public static void DrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] Int32 indices) { throw new NotImplementedException(); } + public static void DrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] Int32 indices) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -16916,7 +16916,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the location where the indices are stored. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDrawElements")] - public static void DrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -16937,7 +16937,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -16958,7 +16958,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -16979,7 +16979,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -16999,7 +16999,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDrawElements")] public static void DrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -17020,7 +17020,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawElementsBaseVertex")] - public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -17044,7 +17044,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -17068,7 +17068,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -17092,7 +17092,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -17115,7 +17115,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawElementsBaseVertex")] public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render indexed primitives from array data, taking parameters from memory @@ -17130,7 +17130,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of a structure containing the draw parameters. /// [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawElementsIndirect")] - public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, IntPtr indirect) { throw new NotImplementedException(); } + public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, IntPtr indirect) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render indexed primitives from array data, taking parameters from memory @@ -17148,7 +17148,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[] indirect) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render indexed primitives from array data, taking parameters from memory @@ -17166,7 +17166,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[,] indirect) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render indexed primitives from array data, taking parameters from memory @@ -17184,7 +17184,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[,,] indirect) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render indexed primitives from array data, taking parameters from memory @@ -17201,7 +17201,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawElementsIndirect")] public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] ref T2 indirect) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Draw multiple instances of a set of elements @@ -17222,7 +17222,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glDrawElementsInstanced")] - public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Draw multiple instances of a set of elements @@ -17246,7 +17246,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Draw multiple instances of a set of elements @@ -17270,7 +17270,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Draw multiple instances of a set of elements @@ -17294,7 +17294,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Draw multiple instances of a set of elements @@ -17317,7 +17317,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glDrawElementsInstanced")] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -17342,7 +17342,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseInstance")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -17367,7 +17367,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseInstance")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -17394,7 +17394,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -17421,7 +17421,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -17448,7 +17448,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -17475,7 +17475,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -17502,7 +17502,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -17529,7 +17529,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -17556,7 +17556,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -17583,7 +17583,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -17607,7 +17607,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawElementsInstancedBaseVertex")] - public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -17634,7 +17634,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -17661,7 +17661,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -17688,7 +17688,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -17714,7 +17714,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawElementsInstancedBaseVertex")] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -17742,7 +17742,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstance")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -17770,7 +17770,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_base_instance|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstance")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -17800,7 +17800,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -17830,7 +17830,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -17860,7 +17860,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -17890,7 +17890,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -17920,7 +17920,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -17950,7 +17950,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -17980,7 +17980,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -18010,7 +18010,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -18035,7 +18035,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glDrawRangeElements")] [CLSCompliant(false)] - public static void DrawRangeElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawRangeElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -18062,7 +18062,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -18089,7 +18089,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -18116,7 +18116,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -18143,7 +18143,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -18168,7 +18168,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glDrawRangeElements")] [CLSCompliant(false)] - public static void DrawRangeElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawRangeElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -18195,7 +18195,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -18222,7 +18222,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -18249,7 +18249,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -18276,7 +18276,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -18304,7 +18304,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawRangeElementsBaseVertex")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -18334,7 +18334,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -18364,7 +18364,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -18394,7 +18394,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -18424,7 +18424,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -18452,7 +18452,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawRangeElementsBaseVertex")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -18482,7 +18482,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -18512,7 +18512,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -18542,7 +18542,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -18572,7 +18572,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Render primitives using a count derived from a transform feedback object @@ -18585,7 +18585,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawTransformFeedback")] [CLSCompliant(false)] - public static void DrawTransformFeedback(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 id) { throw new NotImplementedException(); } + public static void DrawTransformFeedback(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Render primitives using a count derived from a transform feedback object @@ -18598,7 +18598,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawTransformFeedback")] [CLSCompliant(false)] - public static void DrawTransformFeedback(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 id) { throw new NotImplementedException(); } + public static void DrawTransformFeedback(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_transform_feedback_instanced|VERSION_4_2] /// Render multiple instances of primitives using a count derived from a transform feedback object @@ -18614,7 +18614,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_transform_feedback_instanced|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawTransformFeedbackInstanced")] [CLSCompliant(false)] - public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 id, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 id, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_transform_feedback_instanced|VERSION_4_2] /// Render multiple instances of primitives using a count derived from a transform feedback object @@ -18630,7 +18630,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_transform_feedback_instanced|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawTransformFeedbackInstanced")] [CLSCompliant(false)] - public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 id, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 id, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Render primitives using a count derived from a specifed stream of a transform feedback object @@ -18646,7 +18646,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawTransformFeedbackStream")] [CLSCompliant(false)] - public static void DrawTransformFeedbackStream(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 id, Int32 stream) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackStream(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 id, Int32 stream) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Render primitives using a count derived from a specifed stream of a transform feedback object @@ -18662,7 +18662,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawTransformFeedbackStream")] [CLSCompliant(false)] - public static void DrawTransformFeedbackStream(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 id, UInt32 stream) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackStream(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 id, UInt32 stream) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_transform_feedback_instanced|VERSION_4_2] /// Render multiple instances of primitives using a count derived from a specifed stream of a transform feedback object @@ -18681,7 +18681,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_transform_feedback_instanced|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawTransformFeedbackStreamInstanced")] [CLSCompliant(false)] - public static void DrawTransformFeedbackStreamInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 id, Int32 stream, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackStreamInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 id, Int32 stream, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_transform_feedback_instanced|VERSION_4_2] /// Render multiple instances of primitives using a count derived from a specifed stream of a transform feedback object @@ -18700,7 +18700,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_transform_feedback_instanced|VERSION_4_2", Version = "4.2", EntryPoint = "glDrawTransformFeedbackStreamInstanced")] [CLSCompliant(false)] - public static void DrawTransformFeedbackStreamInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 id, UInt32 stream, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackStreamInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 id, UInt32 stream, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Enable or disable server-side GL capabilities @@ -18709,7 +18709,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a symbolic constant indicating a GL capability. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEnable")] - public static void Enable(OpenTK.Graphics.OpenGL4.EnableCap cap) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.OpenGL4.EnableCap cap) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Enable or disable server-side GL capabilities @@ -18722,7 +18722,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glEnablei")] [CLSCompliant(false)] - public static void Enable(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, Int32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Enable or disable server-side GL capabilities @@ -18735,21 +18735,21 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glEnablei")] [CLSCompliant(false)] - public static void Enable(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, UInt32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glEnableVertexArrayAttrib")] [CLSCompliant(false)] - public static void EnableVertexArrayAttrib(Int32 vaobj, Int32 index) { throw new NotImplementedException(); } + public static void EnableVertexArrayAttrib(Int32 vaobj, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glEnableVertexArrayAttrib")] [CLSCompliant(false)] - public static void EnableVertexArrayAttrib(UInt32 vaobj, UInt32 index) { throw new NotImplementedException(); } + public static void EnableVertexArrayAttrib(UInt32 vaobj, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Enable or disable a generic vertex attribute array @@ -18759,7 +18759,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glEnableVertexAttribArray")] [CLSCompliant(false)] - public static void EnableVertexAttribArray(Int32 index) { throw new NotImplementedException(); } + public static void EnableVertexAttribArray(Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Enable or disable a generic vertex attribute array @@ -18769,34 +18769,34 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glEnableVertexAttribArray")] [CLSCompliant(false)] - public static void EnableVertexAttribArray(UInt32 index) { throw new NotImplementedException(); } + public static void EnableVertexAttribArray(UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glEndConditionalRender")] - public static void EndConditionalRender() { throw new NotImplementedException(); } + public static void EndConditionalRender() { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glEndQuery")] - public static void EndQuery(OpenTK.Graphics.OpenGL4.QueryTarget target) { throw new NotImplementedException(); } + public static void EndQuery(OpenTK.Graphics.OpenGL4.QueryTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// /// [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glEndQueryIndexed")] [CLSCompliant(false)] - public static void EndQueryIndexed(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 index) { throw new NotImplementedException(); } + public static void EndQueryIndexed(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// /// [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glEndQueryIndexed")] [CLSCompliant(false)] - public static void EndQueryIndexed(OpenTK.Graphics.OpenGL4.QueryTarget target, UInt32 index) { throw new NotImplementedException(); } + public static void EndQueryIndexed(OpenTK.Graphics.OpenGL4.QueryTarget target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glEndTransformFeedback")] - public static void EndTransformFeedback() { throw new NotImplementedException(); } + public static void EndTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Create a new sync object and insert it into the GL command stream @@ -18808,19 +18808,19 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a bitwise combination of flags controlling the behavior of the sync object. No flags are presently defined for this operation and flags must be zero.flags is a placeholder for anticipated future extensions of fence sync object capabilities. /// [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glFenceSync")] - public static IntPtr FenceSync(OpenTK.Graphics.OpenGL4.SyncCondition condition, OpenTK.Graphics.OpenGL4.WaitSyncFlags flags) { throw new NotImplementedException(); } + public static IntPtr FenceSync(OpenTK.Graphics.OpenGL4.SyncCondition condition, OpenTK.Graphics.OpenGL4.WaitSyncFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Block until all GL execution is complete /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glFinish")] - public static void Finish() { throw new NotImplementedException(); } + public static void Finish() { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Force execution of GL commands in finite time /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glFlush")] - public static void Flush() { throw new NotImplementedException(); } + public static void Flush() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_map_buffer_range|VERSION_3_0] /// Indicate modifications to a range of a mapped buffer @@ -18835,7 +18835,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the length of the buffer subrange, in basic machine units. /// [AutoGenerated(Category = "ARB_map_buffer_range|VERSION_3_0", Version = "3.0", EntryPoint = "glFlushMappedBufferRange")] - public static void FlushMappedBufferRange(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_map_buffer_range|VERSION_3_0] /// Indicate modifications to a range of a mapped buffer @@ -18850,7 +18850,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the length of the buffer subrange, in basic machine units. /// [AutoGenerated(Category = "ARB_map_buffer_range|VERSION_3_0", Version = "3.0", EntryPoint = "glFlushMappedBufferRange")] - public static void FlushMappedBufferRange(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -18858,7 +18858,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glFlushMappedNamedBufferRange")] [CLSCompliant(false)] - public static void FlushMappedNamedBufferRange(Int32 buffer, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void FlushMappedNamedBufferRange(Int32 buffer, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -18866,7 +18866,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glFlushMappedNamedBufferRange")] [CLSCompliant(false)] - public static void FlushMappedNamedBufferRange(Int32 buffer, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void FlushMappedNamedBufferRange(Int32 buffer, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -18874,7 +18874,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glFlushMappedNamedBufferRange")] [CLSCompliant(false)] - public static void FlushMappedNamedBufferRange(UInt32 buffer, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void FlushMappedNamedBufferRange(UInt32 buffer, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -18882,7 +18882,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glFlushMappedNamedBufferRange")] [CLSCompliant(false)] - public static void FlushMappedNamedBufferRange(UInt32 buffer, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void FlushMappedNamedBufferRange(UInt32 buffer, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_framebuffer_no_attachments|VERSION_4_3] /// Set a named parameter of a framebuffer @@ -18897,7 +18897,7 @@ namespace OpenTK.Graphics.OpenGL4 /// The new value for the parameter named pname. /// [AutoGenerated(Category = "ARB_framebuffer_no_attachments|VERSION_4_3", Version = "4.3", EntryPoint = "glFramebufferParameteri")] - public static void FramebufferParameter(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void FramebufferParameter(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Attach a renderbuffer as a logical buffer to the currently bound framebuffer object @@ -18916,7 +18916,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferRenderbuffer")] [CLSCompliant(false)] - public static void FramebufferRenderbuffer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new NotImplementedException(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Attach a renderbuffer as a logical buffer to the currently bound framebuffer object @@ -18935,7 +18935,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferRenderbuffer")] [CLSCompliant(false)] - public static void FramebufferRenderbuffer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -18954,7 +18954,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glFramebufferTexture")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -18973,7 +18973,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glFramebufferTexture")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// @@ -18983,7 +18983,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTexture1D")] [CLSCompliant(false)] - public static void FramebufferTexture1D(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture1D(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// @@ -18993,7 +18993,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTexture1D")] [CLSCompliant(false)] - public static void FramebufferTexture1D(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture1D(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// @@ -19003,7 +19003,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTexture2D")] [CLSCompliant(false)] - public static void FramebufferTexture2D(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture2D(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// @@ -19013,7 +19013,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTexture2D")] [CLSCompliant(false)] - public static void FramebufferTexture2D(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture2D(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// @@ -19024,7 +19024,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTexture3D")] [CLSCompliant(false)] - public static void FramebufferTexture3D(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, Int32 texture, Int32 level, Int32 zoffset) { throw new NotImplementedException(); } + public static void FramebufferTexture3D(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, Int32 texture, Int32 level, Int32 zoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// @@ -19035,7 +19035,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTexture3D")] [CLSCompliant(false)] - public static void FramebufferTexture3D(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, UInt32 texture, Int32 level, Int32 zoffset) { throw new NotImplementedException(); } + public static void FramebufferTexture3D(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, UInt32 texture, Int32 level, Int32 zoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Attach a single layer of a texture to a framebuffer @@ -19057,7 +19057,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTextureLayer")] [CLSCompliant(false)] - public static void FramebufferTextureLayer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } + public static void FramebufferTextureLayer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Attach a single layer of a texture to a framebuffer @@ -19079,7 +19079,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTextureLayer")] [CLSCompliant(false)] - public static void FramebufferTextureLayer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } + public static void FramebufferTextureLayer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define front- and back-facing polygons @@ -19088,14 +19088,14 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the orientation of front-facing polygons. Cw and Ccw are accepted. The initial value is Ccw. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glFrontFace")] - public static void FrontFace(OpenTK.Graphics.OpenGL4.FrontFaceDirection mode) { throw new NotImplementedException(); } + public static void FrontFace(OpenTK.Graphics.OpenGL4.FrontFaceDirection mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate buffer object names /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static Int32 GenBuffer() { throw new NotImplementedException(); } + public static Int32 GenBuffer() { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate buffer object names @@ -19108,7 +19108,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate buffer object names @@ -19121,7 +19121,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate buffer object names @@ -19134,7 +19134,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* buffers) { throw new NotImplementedException(); } + public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate buffer object names @@ -19147,7 +19147,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate buffer object names @@ -19160,7 +19160,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate buffer object names @@ -19173,7 +19173,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* buffers) { throw new NotImplementedException(); } + public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate mipmaps for a specified texture target @@ -19182,26 +19182,26 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the target to which the texture whose mimaps to generate is bound. target must be Texture1D, Texture2D, Texture3D, Texture1DArray, Texture2DArray or TextureCubeMap. /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenerateMipmap")] - public static void GenerateMipmap(OpenTK.Graphics.OpenGL4.GenerateMipmapTarget target) { throw new NotImplementedException(); } + public static void GenerateMipmap(OpenTK.Graphics.OpenGL4.GenerateMipmapTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGenerateTextureMipmap")] [CLSCompliant(false)] - public static void GenerateTextureMipmap(Int32 texture) { throw new NotImplementedException(); } + public static void GenerateTextureMipmap(Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGenerateTextureMipmap")] [CLSCompliant(false)] - public static void GenerateTextureMipmap(UInt32 texture) { throw new NotImplementedException(); } + public static void GenerateTextureMipmap(UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate framebuffer object names /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static Int32 GenFramebuffer() { throw new NotImplementedException(); } + public static Int32 GenFramebuffer() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate framebuffer object names @@ -19214,7 +19214,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate framebuffer object names @@ -19227,7 +19227,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate framebuffer object names @@ -19240,7 +19240,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate framebuffer object names @@ -19253,7 +19253,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate framebuffer object names @@ -19266,7 +19266,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate framebuffer object names @@ -19279,14 +19279,14 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Reserve program pipeline object names /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGenProgramPipelines")] [CLSCompliant(false)] - public static Int32 GenProgramPipeline() { throw new NotImplementedException(); } + public static Int32 GenProgramPipeline() { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Reserve program pipeline object names @@ -19299,7 +19299,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGenProgramPipelines")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Reserve program pipeline object names @@ -19312,7 +19312,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGenProgramPipelines")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Reserve program pipeline object names @@ -19325,7 +19325,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGenProgramPipelines")] [CLSCompliant(false)] - public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* pipelines) { throw new NotImplementedException(); } + public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Reserve program pipeline object names @@ -19338,7 +19338,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGenProgramPipelines")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Reserve program pipeline object names @@ -19351,7 +19351,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGenProgramPipelines")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Reserve program pipeline object names @@ -19364,14 +19364,14 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGenProgramPipelines")] [CLSCompliant(false)] - public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new NotImplementedException(); } + public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate query object names /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static Int32 GenQuery() { throw new NotImplementedException(); } + public static Int32 GenQuery() { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate query object names @@ -19384,7 +19384,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate query object names @@ -19397,7 +19397,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate query object names @@ -19410,7 +19410,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate query object names @@ -19423,7 +19423,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate query object names @@ -19436,7 +19436,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate query object names @@ -19449,14 +19449,14 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate renderbuffer object names /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static Int32 GenRenderbuffer() { throw new NotImplementedException(); } + public static Int32 GenRenderbuffer() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate renderbuffer object names @@ -19469,7 +19469,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate renderbuffer object names @@ -19482,7 +19482,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate renderbuffer object names @@ -19495,7 +19495,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate renderbuffer object names @@ -19508,7 +19508,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate renderbuffer object names @@ -19521,7 +19521,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate renderbuffer object names @@ -19534,14 +19534,14 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Generate sampler object names /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static Int32 GenSampler() { throw new NotImplementedException(); } + public static Int32 GenSampler() { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Generate sampler object names @@ -19554,7 +19554,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] samplers) { throw new NotImplementedException(); } + public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Generate sampler object names @@ -19567,7 +19567,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 samplers) { throw new NotImplementedException(); } + public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Generate sampler object names @@ -19580,7 +19580,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static unsafe void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] Int32* samplers) { throw new NotImplementedException(); } + public static unsafe void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] Int32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Generate sampler object names @@ -19593,7 +19593,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] samplers) { throw new NotImplementedException(); } + public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Generate sampler object names @@ -19606,7 +19606,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 samplers) { throw new NotImplementedException(); } + public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Generate sampler object names @@ -19619,14 +19619,14 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static unsafe void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* samplers) { throw new NotImplementedException(); } + public static unsafe void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Generate texture names /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static Int32 GenTexture() { throw new NotImplementedException(); } + public static Int32 GenTexture() { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Generate texture names @@ -19639,7 +19639,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Generate texture names @@ -19652,7 +19652,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Generate texture names @@ -19665,7 +19665,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* textures) { throw new NotImplementedException(); } + public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Generate texture names @@ -19678,7 +19678,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Generate texture names @@ -19691,7 +19691,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Generate texture names @@ -19704,14 +19704,14 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* textures) { throw new NotImplementedException(); } + public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Reserve transform feedback object names /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static Int32 GenTransformFeedback() { throw new NotImplementedException(); } + public static Int32 GenTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Reserve transform feedback object names @@ -19724,7 +19724,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Reserve transform feedback object names @@ -19737,7 +19737,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new NotImplementedException(); } + public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Reserve transform feedback object names @@ -19750,7 +19750,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Reserve transform feedback object names @@ -19763,7 +19763,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Reserve transform feedback object names @@ -19776,7 +19776,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new NotImplementedException(); } + public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Reserve transform feedback object names @@ -19789,14 +19789,14 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Generate vertex array object names /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static Int32 GenVertexArray() { throw new NotImplementedException(); } + public static Int32 GenVertexArray() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Generate vertex array object names @@ -19809,7 +19809,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Generate vertex array object names @@ -19822,7 +19822,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Generate vertex array object names @@ -19835,7 +19835,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* arrays) { throw new NotImplementedException(); } + public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Generate vertex array object names @@ -19848,7 +19848,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Generate vertex array object names @@ -19861,7 +19861,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Generate vertex array object names @@ -19874,7 +19874,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays) { throw new NotImplementedException(); } + public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_shader_atomic_counters|VERSION_4_2] /// Retrieve information about the set of active atomic counter buffers for a program @@ -19893,7 +19893,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_atomic_counters|VERSION_4_2", Version = "4.2", EntryPoint = "glGetActiveAtomicCounterBufferiv")] [CLSCompliant(false)] - public static void GetActiveAtomicCounterBuffer(Int32 program, Int32 bufferIndex, OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveAtomicCounterBuffer(Int32 program, Int32 bufferIndex, OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_shader_atomic_counters|VERSION_4_2] /// Retrieve information about the set of active atomic counter buffers for a program @@ -19912,7 +19912,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_atomic_counters|VERSION_4_2", Version = "4.2", EntryPoint = "glGetActiveAtomicCounterBufferiv")] [CLSCompliant(false)] - public static void GetActiveAtomicCounterBuffer(Int32 program, Int32 bufferIndex, OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveAtomicCounterBuffer(Int32 program, Int32 bufferIndex, OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_shader_atomic_counters|VERSION_4_2] /// Retrieve information about the set of active atomic counter buffers for a program @@ -19931,7 +19931,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_atomic_counters|VERSION_4_2", Version = "4.2", EntryPoint = "glGetActiveAtomicCounterBufferiv")] [CLSCompliant(false)] - public static unsafe void GetActiveAtomicCounterBuffer(Int32 program, Int32 bufferIndex, OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveAtomicCounterBuffer(Int32 program, Int32 bufferIndex, OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_shader_atomic_counters|VERSION_4_2] /// Retrieve information about the set of active atomic counter buffers for a program @@ -19950,7 +19950,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_atomic_counters|VERSION_4_2", Version = "4.2", EntryPoint = "glGetActiveAtomicCounterBufferiv")] [CLSCompliant(false)] - public static void GetActiveAtomicCounterBuffer(UInt32 program, UInt32 bufferIndex, OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveAtomicCounterBuffer(UInt32 program, UInt32 bufferIndex, OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_shader_atomic_counters|VERSION_4_2] /// Retrieve information about the set of active atomic counter buffers for a program @@ -19969,7 +19969,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_atomic_counters|VERSION_4_2", Version = "4.2", EntryPoint = "glGetActiveAtomicCounterBufferiv")] [CLSCompliant(false)] - public static void GetActiveAtomicCounterBuffer(UInt32 program, UInt32 bufferIndex, OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveAtomicCounterBuffer(UInt32 program, UInt32 bufferIndex, OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_shader_atomic_counters|VERSION_4_2] /// Retrieve information about the set of active atomic counter buffers for a program @@ -19988,7 +19988,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_atomic_counters|VERSION_4_2", Version = "4.2", EntryPoint = "glGetActiveAtomicCounterBufferiv")] [CLSCompliant(false)] - public static unsafe void GetActiveAtomicCounterBuffer(UInt32 program, UInt32 bufferIndex, OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveAtomicCounterBuffer(UInt32 program, UInt32 bufferIndex, OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns information about an active attribute variable for the specified program object @@ -20016,7 +20016,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] - public static void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns information about an active attribute variable for the specified program object @@ -20044,7 +20044,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] - public static unsafe void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns information about an active attribute variable for the specified program object @@ -20072,7 +20072,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] - public static void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns information about an active attribute variable for the specified program object @@ -20100,7 +20100,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] - public static unsafe void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query the name of an active shader subroutine @@ -20125,7 +20125,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineName")] [CLSCompliant(false)] - public static void GetActiveSubroutineName(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveSubroutineName(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query the name of an active shader subroutine @@ -20150,7 +20150,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineName")] [CLSCompliant(false)] - public static unsafe void GetActiveSubroutineName(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveSubroutineName(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query the name of an active shader subroutine @@ -20175,7 +20175,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineName")] [CLSCompliant(false)] - public static void GetActiveSubroutineName(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, UInt32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveSubroutineName(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, UInt32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query the name of an active shader subroutine @@ -20200,7 +20200,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineName")] [CLSCompliant(false)] - public static unsafe void GetActiveSubroutineName(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, UInt32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveSubroutineName(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, UInt32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query a property of an active shader subroutine uniform @@ -20222,7 +20222,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineUniformiv")] [CLSCompliant(false)] - public static void GetActiveSubroutineUniform(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 index, OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] values) { throw new NotImplementedException(); } + public static void GetActiveSubroutineUniform(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 index, OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query a property of an active shader subroutine uniform @@ -20244,7 +20244,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineUniformiv")] [CLSCompliant(false)] - public static void GetActiveSubroutineUniform(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 index, OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 values) { throw new NotImplementedException(); } + public static void GetActiveSubroutineUniform(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 index, OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query a property of an active shader subroutine uniform @@ -20266,7 +20266,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineUniformiv")] [CLSCompliant(false)] - public static unsafe void GetActiveSubroutineUniform(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 index, OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetActiveSubroutineUniform(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 index, OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query a property of an active shader subroutine uniform @@ -20288,7 +20288,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineUniformiv")] [CLSCompliant(false)] - public static void GetActiveSubroutineUniform(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, UInt32 index, OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] values) { throw new NotImplementedException(); } + public static void GetActiveSubroutineUniform(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, UInt32 index, OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query a property of an active shader subroutine uniform @@ -20310,7 +20310,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineUniformiv")] [CLSCompliant(false)] - public static void GetActiveSubroutineUniform(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, UInt32 index, OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 values) { throw new NotImplementedException(); } + public static void GetActiveSubroutineUniform(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, UInt32 index, OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query a property of an active shader subroutine uniform @@ -20332,7 +20332,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineUniformiv")] [CLSCompliant(false)] - public static unsafe void GetActiveSubroutineUniform(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, UInt32 index, OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetActiveSubroutineUniform(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, UInt32 index, OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query the name of an active shader subroutine uniform @@ -20357,7 +20357,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineUniformName")] [CLSCompliant(false)] - public static void GetActiveSubroutineUniformName(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveSubroutineUniformName(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query the name of an active shader subroutine uniform @@ -20382,7 +20382,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineUniformName")] [CLSCompliant(false)] - public static unsafe void GetActiveSubroutineUniformName(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveSubroutineUniformName(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query the name of an active shader subroutine uniform @@ -20407,7 +20407,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineUniformName")] [CLSCompliant(false)] - public static void GetActiveSubroutineUniformName(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, UInt32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveSubroutineUniformName(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, UInt32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query the name of an active shader subroutine uniform @@ -20432,7 +20432,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetActiveSubroutineUniformName")] [CLSCompliant(false)] - public static unsafe void GetActiveSubroutineUniformName(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, UInt32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveSubroutineUniformName(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, UInt32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns information about an active uniform variable for the specified program object @@ -20460,7 +20460,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] - public static void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.ActiveUniformType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.ActiveUniformType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns information about an active uniform variable for the specified program object @@ -20488,7 +20488,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] - public static unsafe void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.ActiveUniformType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.ActiveUniformType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns information about an active uniform variable for the specified program object @@ -20516,7 +20516,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] - public static void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.ActiveUniformType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.ActiveUniformType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns information about an active uniform variable for the specified program object @@ -20544,7 +20544,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] - public static unsafe void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.ActiveUniformType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.ActiveUniformType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Query information about an active uniform block @@ -20563,7 +20563,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] - public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Query information about an active uniform block @@ -20582,7 +20582,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] - public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Query information about an active uniform block @@ -20601,7 +20601,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] - public static unsafe void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Query information about an active uniform block @@ -20620,7 +20620,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] - public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Query information about an active uniform block @@ -20639,7 +20639,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] - public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Query information about an active uniform block @@ -20658,7 +20658,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] - public static unsafe void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the name of an active uniform block @@ -20680,7 +20680,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformBlockName")] [CLSCompliant(false)] - public static void GetActiveUniformBlockName(Int32 program, Int32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new NotImplementedException(); } + public static void GetActiveUniformBlockName(Int32 program, Int32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the name of an active uniform block @@ -20702,7 +20702,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformBlockName")] [CLSCompliant(false)] - public static unsafe void GetActiveUniformBlockName(Int32 program, Int32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformBlockName(Int32 program, Int32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the name of an active uniform block @@ -20724,7 +20724,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformBlockName")] [CLSCompliant(false)] - public static void GetActiveUniformBlockName(UInt32 program, UInt32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new NotImplementedException(); } + public static void GetActiveUniformBlockName(UInt32 program, UInt32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the name of an active uniform block @@ -20746,7 +20746,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformBlockName")] [CLSCompliant(false)] - public static unsafe void GetActiveUniformBlockName(UInt32 program, UInt32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformBlockName(UInt32 program, UInt32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Query the name of an active uniform @@ -20768,7 +20768,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformName")] [CLSCompliant(false)] - public static void GetActiveUniformName(Int32 program, Int32 uniformIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformName) { throw new NotImplementedException(); } + public static void GetActiveUniformName(Int32 program, Int32 uniformIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Query the name of an active uniform @@ -20790,7 +20790,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformName")] [CLSCompliant(false)] - public static unsafe void GetActiveUniformName(Int32 program, Int32 uniformIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformName) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformName(Int32 program, Int32 uniformIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Query the name of an active uniform @@ -20812,7 +20812,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformName")] [CLSCompliant(false)] - public static void GetActiveUniformName(UInt32 program, UInt32 uniformIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformName) { throw new NotImplementedException(); } + public static void GetActiveUniformName(UInt32 program, UInt32 uniformIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Query the name of an active uniform @@ -20834,7 +20834,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformName")] [CLSCompliant(false)] - public static unsafe void GetActiveUniformName(UInt32 program, UInt32 uniformIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformName) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformName(UInt32 program, UInt32 uniformIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Returns information about several active uniform variables for the specified program object @@ -20856,7 +20856,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] - public static void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] Int32[] uniformIndices, OpenTK.Graphics.OpenGL4.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] Int32[] uniformIndices, OpenTK.Graphics.OpenGL4.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Returns information about several active uniform variables for the specified program object @@ -20878,7 +20878,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] - public static void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] ref Int32 uniformIndices, OpenTK.Graphics.OpenGL4.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] ref Int32 uniformIndices, OpenTK.Graphics.OpenGL4.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Returns information about several active uniform variables for the specified program object @@ -20900,7 +20900,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] - public static unsafe void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] Int32* uniformIndices, OpenTK.Graphics.OpenGL4.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] Int32* uniformIndices, OpenTK.Graphics.OpenGL4.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Returns information about several active uniform variables for the specified program object @@ -20922,7 +20922,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] - public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32[] uniformIndices, OpenTK.Graphics.OpenGL4.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32[] uniformIndices, OpenTK.Graphics.OpenGL4.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Returns information about several active uniform variables for the specified program object @@ -20944,7 +20944,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] - public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] ref UInt32 uniformIndices, OpenTK.Graphics.OpenGL4.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] ref UInt32 uniformIndices, OpenTK.Graphics.OpenGL4.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Returns information about several active uniform variables for the specified program object @@ -20966,7 +20966,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] - public static unsafe void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32* uniformIndices, OpenTK.Graphics.OpenGL4.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32* uniformIndices, OpenTK.Graphics.OpenGL4.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the handles of the shader objects attached to a program object @@ -20985,7 +20985,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32[] shaders) { throw new NotImplementedException(); } + public static void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32[] shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the handles of the shader objects attached to a program object @@ -21004,7 +21004,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out Int32 shaders) { throw new NotImplementedException(); } + public static void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out Int32 shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the handles of the shader objects attached to a program object @@ -21023,7 +21023,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static unsafe void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32* shaders) { throw new NotImplementedException(); } + public static unsafe void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32* shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the handles of the shader objects attached to a program object @@ -21042,7 +21042,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32[] shaders) { throw new NotImplementedException(); } + public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32[] shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the handles of the shader objects attached to a program object @@ -21061,7 +21061,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out UInt32 shaders) { throw new NotImplementedException(); } + public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out UInt32 shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the handles of the shader objects attached to a program object @@ -21080,7 +21080,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static unsafe void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32* shaders) { throw new NotImplementedException(); } + public static unsafe void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32* shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the location of an attribute variable @@ -21093,7 +21093,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttribLocation")] [CLSCompliant(false)] - public static Int32 GetAttribLocation(Int32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetAttribLocation(Int32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the location of an attribute variable @@ -21106,7 +21106,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttribLocation")] [CLSCompliant(false)] - public static Int32 GetAttribLocation(UInt32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetAttribLocation(UInt32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -21114,7 +21114,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetBooleani_v")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -21122,7 +21122,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetBooleani_v")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -21130,7 +21130,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetBooleani_v")] [CLSCompliant(false)] - public static unsafe void GetBoolean(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBoolean(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -21138,7 +21138,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetBooleani_v")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -21146,7 +21146,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetBooleani_v")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -21154,34 +21154,34 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetBooleani_v")] [CLSCompliant(false)] - public static unsafe void GetBoolean(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBoolean(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static bool GetBoolean(OpenTK.Graphics.OpenGL4.GetPName pname) { throw new NotImplementedException(); } + public static bool GetBoolean(OpenTK.Graphics.OpenGL4.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool[] data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out bool data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static unsafe void GetBoolean(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBoolean(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// Return parameters of a buffer object @@ -21197,7 +21197,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetBufferParameteri64v")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// Return parameters of a buffer object @@ -21213,7 +21213,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetBufferParameteri64v")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// Return parameters of a buffer object @@ -21229,7 +21229,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetBufferParameteri64v")] [CLSCompliant(false)] - public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a buffer object @@ -21245,7 +21245,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferParameteriv")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a buffer object @@ -21261,7 +21261,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferParameteriv")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a buffer object @@ -21277,7 +21277,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return the pointer to a mapped buffer object's data store @@ -21292,7 +21292,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the pointer value specified by pname. /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferPointerv")] - public static void GetBufferPointer(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferPointer pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetBufferPointer(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferPointer pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return the pointer to a mapped buffer object's data store @@ -21310,7 +21310,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return the pointer to a mapped buffer object's data store @@ -21328,7 +21328,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return the pointer to a mapped buffer object's data store @@ -21346,7 +21346,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return the pointer to a mapped buffer object's data store @@ -21363,7 +21363,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferPointerv")] public static void GetBufferPointer(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Returns a subset of a buffer object's data store @@ -21381,7 +21381,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the location where buffer object data is returned. /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferSubData")] - public static void GetBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void GetBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Returns a subset of a buffer object's data store @@ -21402,7 +21402,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Returns a subset of a buffer object's data store @@ -21423,7 +21423,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Returns a subset of a buffer object's data store @@ -21444,7 +21444,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Returns a subset of a buffer object's data store @@ -21464,7 +21464,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferSubData")] public static void GetBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Returns a subset of a buffer object's data store @@ -21482,7 +21482,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the location where buffer object data is returned. /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferSubData")] - public static void GetBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, IntPtr size, [OutAttribute, CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void GetBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, IntPtr size, [OutAttribute, CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Returns a subset of a buffer object's data store @@ -21503,7 +21503,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Returns a subset of a buffer object's data store @@ -21524,7 +21524,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Returns a subset of a buffer object's data store @@ -21545,7 +21545,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Returns a subset of a buffer object's data store @@ -21565,7 +21565,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferSubData")] public static void GetBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve contents of a color lookup table @@ -21583,7 +21583,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Pointer to a one-dimensional array of pixel data containing the contents of the color table. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTable")] - public static void GetColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr table) { throw new NotImplementedException(); } + public static void GetColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr table) { throw new BindingsNotRewrittenException(); } /// /// Retrieve contents of a color lookup table @@ -21604,7 +21604,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[] table) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve contents of a color lookup table @@ -21625,7 +21625,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,] table) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve contents of a color lookup table @@ -21646,7 +21646,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,,] table) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve contents of a color lookup table @@ -21666,7 +21666,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTable")] public static void GetColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T3 table) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get color lookup table parameters @@ -21682,7 +21682,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTableParameterfv")] [CLSCompliant(false)] - public static void GetColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get color lookup table parameters @@ -21698,7 +21698,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTableParameterfv")] [CLSCompliant(false)] - public static void GetColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// /// Get color lookup table parameters @@ -21714,7 +21714,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTableParameterfv")] [CLSCompliant(false)] - public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// Get color lookup table parameters @@ -21730,7 +21730,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTableParameteriv")] [CLSCompliant(false)] - public static void GetColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get color lookup table parameters @@ -21746,7 +21746,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTableParameteriv")] [CLSCompliant(false)] - public static void GetColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// Get color lookup table parameters @@ -21762,7 +21762,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTableParameteriv")] [CLSCompliant(false)] - public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Return a compressed texture image @@ -21777,7 +21777,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the compressed texture image. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glGetCompressedTexImage")] - public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, [OutAttribute, CountAttribute(Computed = "target,level")] IntPtr img) { throw new NotImplementedException(); } + public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, [OutAttribute, CountAttribute(Computed = "target,level")] IntPtr img) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Return a compressed texture image @@ -21795,7 +21795,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level")] T2[] img) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Return a compressed texture image @@ -21813,7 +21813,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level")] T2[,] img) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Return a compressed texture image @@ -21831,7 +21831,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level")] T2[,,] img) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Return a compressed texture image @@ -21848,7 +21848,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glGetCompressedTexImage")] public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level")] ref T2 img) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -21857,7 +21857,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetCompressedTextureImage")] [CLSCompliant(false)] - public static void GetCompressedTextureImage(Int32 texture, Int32 level, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetCompressedTextureImage(Int32 texture, Int32 level, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -21868,7 +21868,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureImage(Int32 texture, Int32 level, Int32 bufSize, [InAttribute, OutAttribute] T3[] pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -21879,7 +21879,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureImage(Int32 texture, Int32 level, Int32 bufSize, [InAttribute, OutAttribute] T3[,] pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -21890,7 +21890,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureImage(Int32 texture, Int32 level, Int32 bufSize, [InAttribute, OutAttribute] T3[,,] pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -21901,7 +21901,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureImage(Int32 texture, Int32 level, Int32 bufSize, [InAttribute, OutAttribute] ref T3 pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -21910,7 +21910,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetCompressedTextureImage")] [CLSCompliant(false)] - public static void GetCompressedTextureImage(UInt32 texture, Int32 level, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetCompressedTextureImage(UInt32 texture, Int32 level, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -21921,7 +21921,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureImage(UInt32 texture, Int32 level, Int32 bufSize, [InAttribute, OutAttribute] T3[] pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -21932,7 +21932,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureImage(UInt32 texture, Int32 level, Int32 bufSize, [InAttribute, OutAttribute] T3[,] pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -21943,7 +21943,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureImage(UInt32 texture, Int32 level, Int32 bufSize, [InAttribute, OutAttribute] T3[,,] pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -21954,7 +21954,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureImage(UInt32 texture, Int32 level, Int32 bufSize, [InAttribute, OutAttribute] ref T3 pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -21969,7 +21969,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_get_texture_sub_image|VERSION_4_5", Version = "4.5", EntryPoint = "glGetCompressedTextureSubImage")] [CLSCompliant(false)] - public static void GetCompressedTextureSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetCompressedTextureSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -21986,7 +21986,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [InAttribute, OutAttribute] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -22003,7 +22003,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [InAttribute, OutAttribute] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -22020,7 +22020,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [InAttribute, OutAttribute] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -22037,7 +22037,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [InAttribute, OutAttribute] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -22052,7 +22052,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_get_texture_sub_image|VERSION_4_5", Version = "4.5", EntryPoint = "glGetCompressedTextureSubImage")] [CLSCompliant(false)] - public static void GetCompressedTextureSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetCompressedTextureSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -22069,7 +22069,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [InAttribute, OutAttribute] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -22086,7 +22086,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [InAttribute, OutAttribute] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -22103,7 +22103,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [InAttribute, OutAttribute] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -22120,7 +22120,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [InAttribute, OutAttribute] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get current 1D or 2D convolution filter kernel @@ -22138,7 +22138,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Pointer to storage for the output image. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionFilter")] - public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr image) { throw new NotImplementedException(); } + public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr image) { throw new BindingsNotRewrittenException(); } /// /// Get current 1D or 2D convolution filter kernel @@ -22159,7 +22159,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[] image) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get current 1D or 2D convolution filter kernel @@ -22180,7 +22180,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,] image) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get current 1D or 2D convolution filter kernel @@ -22201,7 +22201,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,,] image) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get current 1D or 2D convolution filter kernel @@ -22221,7 +22221,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionFilter")] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T3 image) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get convolution parameters @@ -22237,7 +22237,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionParameterfv")] [CLSCompliant(false)] - public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get convolution parameters @@ -22253,7 +22253,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionParameterfv")] [CLSCompliant(false)] - public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// /// Get convolution parameters @@ -22269,7 +22269,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionParameterfv")] [CLSCompliant(false)] - public static unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// Get convolution parameters @@ -22285,7 +22285,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionParameteriv")] [CLSCompliant(false)] - public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get convolution parameters @@ -22301,7 +22301,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionParameteriv")] [CLSCompliant(false)] - public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// Get convolution parameters @@ -22317,7 +22317,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionParameteriv")] [CLSCompliant(false)] - public static unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve messages from the debug message log @@ -22348,7 +22348,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSource[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSource[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve messages from the debug message log @@ -22379,7 +22379,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.DebugSource sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.DebugSource sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve messages from the debug message log @@ -22410,7 +22410,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSource* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSource* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve messages from the debug message log @@ -22441,7 +22441,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSource[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSource[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve messages from the debug message log @@ -22472,7 +22472,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.DebugSource sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.DebugSource sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve messages from the debug message log @@ -22503,7 +22503,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSource* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSource* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -22511,7 +22511,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetDoublei_v")] [CLSCompliant(false)] - public static void GetDouble(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Double[] data) { throw new NotImplementedException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Double[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -22519,7 +22519,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetDoublei_v")] [CLSCompliant(false)] - public static void GetDouble(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Double data) { throw new NotImplementedException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Double data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -22527,7 +22527,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetDoublei_v")] [CLSCompliant(false)] - public static unsafe void GetDouble(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Double* data) { throw new NotImplementedException(); } + public static unsafe void GetDouble(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Double* data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -22535,7 +22535,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetDoublei_v")] [CLSCompliant(false)] - public static void GetDouble(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Double[] data) { throw new NotImplementedException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Double[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -22543,7 +22543,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetDoublei_v")] [CLSCompliant(false)] - public static void GetDouble(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Double data) { throw new NotImplementedException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Double data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -22551,40 +22551,40 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetDoublei_v")] [CLSCompliant(false)] - public static unsafe void GetDouble(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Double* data) { throw new NotImplementedException(); } + public static unsafe void GetDouble(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Double* data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetDoublev")] [CLSCompliant(false)] - public static Double GetDouble(OpenTK.Graphics.OpenGL4.GetPName pname) { throw new NotImplementedException(); } + public static Double GetDouble(OpenTK.Graphics.OpenGL4.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetDoublev")] [CLSCompliant(false)] - public static void GetDouble(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] data) { throw new NotImplementedException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetDoublev")] [CLSCompliant(false)] - public static void GetDouble(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double data) { throw new NotImplementedException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetDoublev")] [CLSCompliant(false)] - public static unsafe void GetDouble(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* data) { throw new NotImplementedException(); } + public static unsafe void GetDouble(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return error information /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetError")] - public static OpenTK.Graphics.OpenGL4.ErrorCode GetError() { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL4.ErrorCode GetError() { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -22592,7 +22592,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetFloati_v")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -22600,7 +22600,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetFloati_v")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -22608,7 +22608,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetFloati_v")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -22616,7 +22616,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetFloati_v")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -22624,7 +22624,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetFloati_v")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -22632,34 +22632,34 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glGetFloati_v")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static Single GetFloat(OpenTK.Graphics.OpenGL4.GetPName pname) { throw new NotImplementedException(); } + public static Single GetFloat(OpenTK.Graphics.OpenGL4.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_blend_func_extended|VERSION_3_3] /// Query the bindings of color indices to user-defined varying out variables @@ -22672,7 +22672,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_blend_func_extended|VERSION_3_3", Version = "3.3", EntryPoint = "glGetFragDataIndex")] [CLSCompliant(false)] - public static Int32 GetFragDataIndex(Int32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetFragDataIndex(Int32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_blend_func_extended|VERSION_3_3] /// Query the bindings of color indices to user-defined varying out variables @@ -22685,7 +22685,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_blend_func_extended|VERSION_3_3", Version = "3.3", EntryPoint = "glGetFragDataIndex")] [CLSCompliant(false)] - public static Int32 GetFragDataIndex(UInt32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetFragDataIndex(UInt32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Query the bindings of color numbers to user-defined varying out variables @@ -22698,7 +22698,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetFragDataLocation")] [CLSCompliant(false)] - public static Int32 GetFragDataLocation(Int32 program, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetFragDataLocation(Int32 program, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Query the bindings of color numbers to user-defined varying out variables @@ -22711,7 +22711,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetFragDataLocation")] [CLSCompliant(false)] - public static Int32 GetFragDataLocation(UInt32 program, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetFragDataLocation(UInt32 program, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Retrieve information about attachments of a bound framebuffer object @@ -22730,7 +22730,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Retrieve information about attachments of a bound framebuffer object @@ -22749,7 +22749,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Retrieve information about attachments of a bound framebuffer object @@ -22768,7 +22768,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_framebuffer_no_attachments|VERSION_4_3] /// Retrieve a named parameter from a framebuffer @@ -22784,7 +22784,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_no_attachments|VERSION_4_3", Version = "4.3", EntryPoint = "glGetFramebufferParameteriv")] [CLSCompliant(false)] - public static void GetFramebufferParameter(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFramebufferParameter(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_framebuffer_no_attachments|VERSION_4_3] /// Retrieve a named parameter from a framebuffer @@ -22800,7 +22800,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_no_attachments|VERSION_4_3", Version = "4.3", EntryPoint = "glGetFramebufferParameteriv")] [CLSCompliant(false)] - public static void GetFramebufferParameter(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFramebufferParameter(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_framebuffer_no_attachments|VERSION_4_3] /// Retrieve a named parameter from a framebuffer @@ -22816,11 +22816,11 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_no_attachments|VERSION_4_3", Version = "4.3", EntryPoint = "glGetFramebufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetFramebufferParameter(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFramebufferParameter(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetGraphicsResetStatus")] - public static OpenTK.Graphics.OpenGL4.ResetStatus GetGraphicsResetStatus() { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL4.ResetStatus GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// /// Get histogram table @@ -22841,7 +22841,7 @@ namespace OpenTK.Graphics.OpenGL4 /// A pointer to storage for the returned histogram table. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogram")] - public static void GetHistogram(OpenTK.Graphics.OpenGL4.HistogramTarget target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values) { throw new NotImplementedException(); } + public static void GetHistogram(OpenTK.Graphics.OpenGL4.HistogramTarget target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values) { throw new BindingsNotRewrittenException(); } /// /// Get histogram table @@ -22865,7 +22865,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetHistogram(OpenTK.Graphics.OpenGL4.HistogramTarget target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get histogram table @@ -22889,7 +22889,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetHistogram(OpenTK.Graphics.OpenGL4.HistogramTarget target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[,] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get histogram table @@ -22913,7 +22913,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetHistogram(OpenTK.Graphics.OpenGL4.HistogramTarget target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[,,] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get histogram table @@ -22936,7 +22936,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogram")] public static void GetHistogram(OpenTK.Graphics.OpenGL4.HistogramTarget target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T4 values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get histogram parameters @@ -22952,7 +22952,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogramParameterfv")] [CLSCompliant(false)] - public static void GetHistogramParameter(OpenTK.Graphics.OpenGL4.HistogramTarget target, OpenTK.Graphics.OpenGL4.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetHistogramParameter(OpenTK.Graphics.OpenGL4.HistogramTarget target, OpenTK.Graphics.OpenGL4.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get histogram parameters @@ -22968,7 +22968,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogramParameterfv")] [CLSCompliant(false)] - public static void GetHistogramParameter(OpenTK.Graphics.OpenGL4.HistogramTarget target, OpenTK.Graphics.OpenGL4.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetHistogramParameter(OpenTK.Graphics.OpenGL4.HistogramTarget target, OpenTK.Graphics.OpenGL4.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// /// Get histogram parameters @@ -22984,7 +22984,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogramParameterfv")] [CLSCompliant(false)] - public static unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL4.HistogramTarget target, OpenTK.Graphics.OpenGL4.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL4.HistogramTarget target, OpenTK.Graphics.OpenGL4.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// Get histogram parameters @@ -23000,7 +23000,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogramParameteriv")] [CLSCompliant(false)] - public static void GetHistogramParameter(OpenTK.Graphics.OpenGL4.HistogramTarget target, OpenTK.Graphics.OpenGL4.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetHistogramParameter(OpenTK.Graphics.OpenGL4.HistogramTarget target, OpenTK.Graphics.OpenGL4.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get histogram parameters @@ -23016,7 +23016,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogramParameteriv")] [CLSCompliant(false)] - public static void GetHistogramParameter(OpenTK.Graphics.OpenGL4.HistogramTarget target, OpenTK.Graphics.OpenGL4.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetHistogramParameter(OpenTK.Graphics.OpenGL4.HistogramTarget target, OpenTK.Graphics.OpenGL4.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// Get histogram parameters @@ -23032,7 +23032,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogramParameteriv")] [CLSCompliant(false)] - public static unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL4.HistogramTarget target, OpenTK.Graphics.OpenGL4.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL4.HistogramTarget target, OpenTK.Graphics.OpenGL4.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// @@ -23040,7 +23040,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// @@ -23048,7 +23048,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// @@ -23056,7 +23056,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static unsafe void GetInteger64(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// @@ -23064,7 +23064,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// @@ -23072,7 +23072,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// @@ -23080,34 +23080,34 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static unsafe void GetInteger64(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64v")] [CLSCompliant(false)] - public static Int64 GetInteger64(OpenTK.Graphics.OpenGL4.GetPName pname) { throw new NotImplementedException(); } + public static Int64 GetInteger64(OpenTK.Graphics.OpenGL4.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64v")] [CLSCompliant(false)] - public static unsafe void GetInteger64(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// @@ -23115,7 +23115,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// @@ -23123,7 +23123,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// @@ -23131,7 +23131,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// @@ -23139,7 +23139,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// @@ -23147,7 +23147,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// @@ -23155,34 +23155,34 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static Int32 GetInteger(OpenTK.Graphics.OpenGL4.GetPName pname) { throw new NotImplementedException(); } + public static Int32 GetInteger(OpenTK.Graphics.OpenGL4.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_internalformat_query2|VERSION_4_3] /// Retrieve information about implementation-dependent support for internal formats @@ -23204,7 +23204,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_internalformat_query2|VERSION_4_3", Version = "4.3", EntryPoint = "glGetInternalformati64v")] [CLSCompliant(false)] - public static void GetInternalformat(OpenTK.Graphics.OpenGL4.ImageTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL4.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetInternalformat(OpenTK.Graphics.OpenGL4.ImageTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL4.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_internalformat_query2|VERSION_4_3] /// Retrieve information about implementation-dependent support for internal formats @@ -23226,7 +23226,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_internalformat_query2|VERSION_4_3", Version = "4.3", EntryPoint = "glGetInternalformati64v")] [CLSCompliant(false)] - public static void GetInternalformat(OpenTK.Graphics.OpenGL4.ImageTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL4.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetInternalformat(OpenTK.Graphics.OpenGL4.ImageTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL4.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_internalformat_query2|VERSION_4_3] /// Retrieve information about implementation-dependent support for internal formats @@ -23248,7 +23248,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_internalformat_query2|VERSION_4_3", Version = "4.3", EntryPoint = "glGetInternalformati64v")] [CLSCompliant(false)] - public static unsafe void GetInternalformat(OpenTK.Graphics.OpenGL4.ImageTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL4.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetInternalformat(OpenTK.Graphics.OpenGL4.ImageTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL4.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_internalformat_query|VERSION_4_2] /// Retrieve information about implementation-dependent support for internal formats @@ -23270,7 +23270,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_internalformat_query|VERSION_4_2", Version = "4.2", EntryPoint = "glGetInternalformativ")] [CLSCompliant(false)] - public static void GetInternalformat(OpenTK.Graphics.OpenGL4.ImageTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL4.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetInternalformat(OpenTK.Graphics.OpenGL4.ImageTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL4.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_internalformat_query|VERSION_4_2] /// Retrieve information about implementation-dependent support for internal formats @@ -23292,7 +23292,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_internalformat_query|VERSION_4_2", Version = "4.2", EntryPoint = "glGetInternalformativ")] [CLSCompliant(false)] - public static void GetInternalformat(OpenTK.Graphics.OpenGL4.ImageTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL4.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetInternalformat(OpenTK.Graphics.OpenGL4.ImageTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL4.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_internalformat_query|VERSION_4_2] /// Retrieve information about implementation-dependent support for internal formats @@ -23314,7 +23314,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_internalformat_query|VERSION_4_2", Version = "4.2", EntryPoint = "glGetInternalformativ")] [CLSCompliant(false)] - public static unsafe void GetInternalformat(OpenTK.Graphics.OpenGL4.ImageTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL4.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetInternalformat(OpenTK.Graphics.OpenGL4.ImageTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL4.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// /// Get minimum and maximum pixel values @@ -23335,7 +23335,7 @@ namespace OpenTK.Graphics.OpenGL4 /// A pointer to storage for the returned values. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmax")] - public static void GetMinmax(OpenTK.Graphics.OpenGL4.MinmaxTarget target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values) { throw new NotImplementedException(); } + public static void GetMinmax(OpenTK.Graphics.OpenGL4.MinmaxTarget target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values) { throw new BindingsNotRewrittenException(); } /// /// Get minimum and maximum pixel values @@ -23359,7 +23359,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetMinmax(OpenTK.Graphics.OpenGL4.MinmaxTarget target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get minimum and maximum pixel values @@ -23383,7 +23383,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetMinmax(OpenTK.Graphics.OpenGL4.MinmaxTarget target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[,] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get minimum and maximum pixel values @@ -23407,7 +23407,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetMinmax(OpenTK.Graphics.OpenGL4.MinmaxTarget target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[,,] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get minimum and maximum pixel values @@ -23430,7 +23430,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmax")] public static void GetMinmax(OpenTK.Graphics.OpenGL4.MinmaxTarget target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T4 values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get minmax parameters @@ -23446,7 +23446,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmaxParameterfv")] [CLSCompliant(false)] - public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL4.MinmaxTarget target, OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL4.MinmaxTarget target, OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get minmax parameters @@ -23462,7 +23462,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmaxParameterfv")] [CLSCompliant(false)] - public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL4.MinmaxTarget target, OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL4.MinmaxTarget target, OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// /// Get minmax parameters @@ -23478,7 +23478,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmaxParameterfv")] [CLSCompliant(false)] - public static unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL4.MinmaxTarget target, OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL4.MinmaxTarget target, OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// Get minmax parameters @@ -23494,7 +23494,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmaxParameteriv")] [CLSCompliant(false)] - public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL4.MinmaxTarget target, OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL4.MinmaxTarget target, OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get minmax parameters @@ -23510,7 +23510,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmaxParameteriv")] [CLSCompliant(false)] - public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL4.MinmaxTarget target, OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL4.MinmaxTarget target, OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// Get minmax parameters @@ -23526,7 +23526,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmaxParameteriv")] [CLSCompliant(false)] - public static unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL4.MinmaxTarget target, OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL4.MinmaxTarget target, OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Retrieve the location of a sample @@ -23542,7 +23542,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glGetMultisamplefv")] [CLSCompliant(false)] - public static void GetMultisample(OpenTK.Graphics.OpenGL4.GetMultisamplePName pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] val) { throw new NotImplementedException(); } + public static void GetMultisample(OpenTK.Graphics.OpenGL4.GetMultisamplePName pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] val) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Retrieve the location of a sample @@ -23558,7 +23558,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glGetMultisamplefv")] [CLSCompliant(false)] - public static void GetMultisample(OpenTK.Graphics.OpenGL4.GetMultisamplePName pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single val) { throw new NotImplementedException(); } + public static void GetMultisample(OpenTK.Graphics.OpenGL4.GetMultisamplePName pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single val) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Retrieve the location of a sample @@ -23574,7 +23574,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glGetMultisamplefv")] [CLSCompliant(false)] - public static unsafe void GetMultisample(OpenTK.Graphics.OpenGL4.GetMultisamplePName pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* val) { throw new NotImplementedException(); } + public static unsafe void GetMultisample(OpenTK.Graphics.OpenGL4.GetMultisamplePName pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* val) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Retrieve the location of a sample @@ -23590,7 +23590,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glGetMultisamplefv")] [CLSCompliant(false)] - public static void GetMultisample(OpenTK.Graphics.OpenGL4.GetMultisamplePName pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] val) { throw new NotImplementedException(); } + public static void GetMultisample(OpenTK.Graphics.OpenGL4.GetMultisamplePName pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] val) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Retrieve the location of a sample @@ -23606,7 +23606,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glGetMultisamplefv")] [CLSCompliant(false)] - public static void GetMultisample(OpenTK.Graphics.OpenGL4.GetMultisamplePName pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single val) { throw new NotImplementedException(); } + public static void GetMultisample(OpenTK.Graphics.OpenGL4.GetMultisamplePName pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single val) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Retrieve the location of a sample @@ -23622,7 +23622,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glGetMultisamplefv")] [CLSCompliant(false)] - public static unsafe void GetMultisample(OpenTK.Graphics.OpenGL4.GetMultisamplePName pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* val) { throw new NotImplementedException(); } + public static unsafe void GetMultisample(OpenTK.Graphics.OpenGL4.GetMultisamplePName pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* val) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23630,7 +23630,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteri64v")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23638,7 +23638,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteri64v")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23646,7 +23646,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteri64v")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23654,7 +23654,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteri64v")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23662,7 +23662,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteri64v")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23670,7 +23670,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteri64v")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23678,7 +23678,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23686,7 +23686,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23694,7 +23694,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23702,7 +23702,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23710,7 +23710,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23718,7 +23718,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23726,7 +23726,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferPointerv")] [CLSCompliant(false)] - public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } + public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23736,7 +23736,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23746,7 +23746,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23756,7 +23756,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23766,7 +23766,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23774,7 +23774,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferPointerv")] [CLSCompliant(false)] - public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } + public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23784,7 +23784,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23794,7 +23794,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23804,7 +23804,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23814,7 +23814,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23823,7 +23823,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferSubData")] [CLSCompliant(false)] - public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } + public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [OutAttribute] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23834,7 +23834,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23845,7 +23845,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23856,7 +23856,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23867,7 +23867,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23876,7 +23876,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferSubData")] [CLSCompliant(false)] - public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } + public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [OutAttribute] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23887,7 +23887,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23898,7 +23898,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23909,7 +23909,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23920,7 +23920,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23929,7 +23929,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferSubData")] [CLSCompliant(false)] - public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } + public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [OutAttribute] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23940,7 +23940,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23951,7 +23951,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23962,7 +23962,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23973,7 +23973,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23982,7 +23982,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferSubData")] [CLSCompliant(false)] - public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } + public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [OutAttribute] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23993,7 +23993,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24004,7 +24004,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24015,7 +24015,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24026,7 +24026,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24035,7 +24035,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24044,7 +24044,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24053,7 +24053,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24062,7 +24062,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24071,7 +24071,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24080,7 +24080,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24088,7 +24088,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24096,7 +24096,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24104,7 +24104,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24112,7 +24112,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24120,7 +24120,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24128,7 +24128,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24136,7 +24136,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedRenderbufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24144,7 +24144,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedRenderbufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24152,7 +24152,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedRenderbufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24160,7 +24160,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedRenderbufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24168,7 +24168,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedRenderbufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24176,7 +24176,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedRenderbufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24185,7 +24185,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnColorTable")] - public static void GetnColorTable(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute] IntPtr table) { throw new NotImplementedException(); } + public static void GetnColorTable(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute] IntPtr table) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24197,7 +24197,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnColorTable(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T4[] table) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24209,7 +24209,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnColorTable(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T4[,] table) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24221,7 +24221,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnColorTable(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T4[,,] table) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24232,7 +24232,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnColorTable")] public static void GetnColorTable(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] ref T4 table) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24240,7 +24240,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnCompressedTexImage")] - public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 lod, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 lod, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24251,7 +24251,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute] T3[] pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24262,7 +24262,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute] T3[,] pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24273,7 +24273,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute] T3[,,] pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24283,7 +24283,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnCompressedTexImage")] public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute] ref T3 pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24292,7 +24292,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnConvolutionFilter")] - public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute] IntPtr image) { throw new NotImplementedException(); } + public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute] IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24304,7 +24304,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T4[] image) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24316,7 +24316,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T4[,] image) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24328,7 +24328,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T4[,,] image) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24339,7 +24339,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnConvolutionFilter")] public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] ref T4 image) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24349,7 +24349,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnHistogram")] - public static void GetnHistogram(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute] IntPtr values) { throw new NotImplementedException(); } + public static void GetnHistogram(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute] IntPtr values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24362,7 +24362,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnHistogram(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T5[] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24375,7 +24375,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnHistogram(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T5[,] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24388,7 +24388,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnHistogram(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T5[,,] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24400,7 +24400,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnHistogram")] public static void GetnHistogram(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] ref T5 values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24409,7 +24409,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapdv")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] Double[] v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24418,7 +24418,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapdv")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] out Double v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] out Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24427,7 +24427,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapdv")] [CLSCompliant(false)] - public static unsafe void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] Double* v) { throw new NotImplementedException(); } + public static unsafe void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24436,7 +24436,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapfv")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] Single[] v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24445,7 +24445,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapfv")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] out Single v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] out Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24454,7 +24454,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapfv")] [CLSCompliant(false)] - public static unsafe void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] Single* v) { throw new NotImplementedException(); } + public static unsafe void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24463,7 +24463,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapiv")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] Int32[] v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24472,7 +24472,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapiv")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] out Int32 v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] out Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24481,7 +24481,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapiv")] [CLSCompliant(false)] - public static unsafe void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] Int32* v) { throw new NotImplementedException(); } + public static unsafe void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24491,7 +24491,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMinmax")] - public static void GetnMinmax(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute] IntPtr values) { throw new NotImplementedException(); } + public static void GetnMinmax(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute] IntPtr values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24504,7 +24504,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnMinmax(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T5[] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24517,7 +24517,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnMinmax(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T5[,] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24530,7 +24530,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnMinmax(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T5[,,] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24542,7 +24542,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMinmax")] public static void GetnMinmax(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] ref T5 values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24550,7 +24550,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapfv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] Single[] values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] Single[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24558,7 +24558,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapfv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] out Single values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] out Single values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24566,7 +24566,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapfv")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] Single* values) { throw new NotImplementedException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] Single* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24574,7 +24574,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapuiv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] Int32[] values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24582,7 +24582,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapuiv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] out Int32 values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24590,7 +24590,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapuiv")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24598,7 +24598,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapuiv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] UInt32[] values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] UInt32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24606,7 +24606,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapuiv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] out UInt32 values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] out UInt32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24614,7 +24614,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapuiv")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] UInt32* values) { throw new NotImplementedException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] UInt32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24622,7 +24622,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapusv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] Int16[] values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] Int16[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24630,7 +24630,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapusv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] out Int16 values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] out Int16 values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24638,7 +24638,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapusv")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] Int16* values) { throw new NotImplementedException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] Int16* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24646,7 +24646,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapusv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] UInt16[] values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] UInt16[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24654,7 +24654,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapusv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] out UInt16 values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] out UInt16 values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24662,33 +24662,33 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapusv")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] UInt16* values) { throw new NotImplementedException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] UInt16* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPolygonStipple")] [CLSCompliant(false)] - public static Byte GetnPolygonStipple() { throw new NotImplementedException(); } + public static Byte GetnPolygonStipple() { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPolygonStipple")] [CLSCompliant(false)] - public static void GetnPolygonStipple(Int32 bufSize, [OutAttribute] Byte[] pattern) { throw new NotImplementedException(); } + public static void GetnPolygonStipple(Int32 bufSize, [OutAttribute] Byte[] pattern) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPolygonStipple")] [CLSCompliant(false)] - public static void GetnPolygonStipple(Int32 bufSize, [OutAttribute] out Byte pattern) { throw new NotImplementedException(); } + public static void GetnPolygonStipple(Int32 bufSize, [OutAttribute] out Byte pattern) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPolygonStipple")] [CLSCompliant(false)] - public static unsafe void GetnPolygonStipple(Int32 bufSize, [OutAttribute] Byte* pattern) { throw new NotImplementedException(); } + public static unsafe void GetnPolygonStipple(Int32 bufSize, [OutAttribute] Byte* pattern) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24700,7 +24700,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnSeparableFilter")] - public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 rowBufSize, [OutAttribute] IntPtr row, Int32 columnBufSize, [OutAttribute] IntPtr column, [OutAttribute] IntPtr span) { throw new NotImplementedException(); } + public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 rowBufSize, [OutAttribute] IntPtr row, Int32 columnBufSize, [OutAttribute] IntPtr column, [OutAttribute] IntPtr span) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24717,7 +24717,7 @@ namespace OpenTK.Graphics.OpenGL4 where T4 : struct where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24734,7 +24734,7 @@ namespace OpenTK.Graphics.OpenGL4 where T4 : struct where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24751,7 +24751,7 @@ namespace OpenTK.Graphics.OpenGL4 where T4 : struct where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24767,7 +24767,7 @@ namespace OpenTK.Graphics.OpenGL4 where T4 : struct where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24777,7 +24777,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnTexImage")] - public static void GetnTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 level, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetnTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 level, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24790,7 +24790,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 level, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T5[] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24803,7 +24803,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 level, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T5[,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24816,7 +24816,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 level, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T5[,,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24828,7 +24828,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnTexImage")] public static void GetnTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 level, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] ref T5 pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24837,7 +24837,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformdv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24846,7 +24846,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformdv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Double @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24855,7 +24855,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformdv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24864,7 +24864,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformdv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24873,7 +24873,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformdv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Double @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24882,7 +24882,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformdv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -24891,7 +24891,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -24900,7 +24900,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -24909,7 +24909,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -24918,7 +24918,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -24927,7 +24927,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -24936,7 +24936,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -24945,7 +24945,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -24954,7 +24954,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -24963,7 +24963,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -24972,7 +24972,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -24981,7 +24981,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -24990,7 +24990,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -24999,7 +24999,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformuiv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -25008,7 +25008,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformuiv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -25017,7 +25017,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformuiv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a named object identified within a namespace @@ -25039,7 +25039,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a named object identified within a namespace @@ -25061,7 +25061,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a named object identified within a namespace @@ -25083,7 +25083,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a named object identified within a namespace @@ -25105,7 +25105,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a named object identified within a namespace @@ -25127,7 +25127,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a named object identified within a namespace @@ -25149,7 +25149,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -25169,7 +25169,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] - public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -25189,7 +25189,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] - public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -25209,7 +25209,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] - public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -25231,7 +25231,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -25253,7 +25253,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -25275,7 +25275,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -25297,7 +25297,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -25319,7 +25319,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -25341,7 +25341,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -25363,7 +25363,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -25385,7 +25385,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -25407,7 +25407,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -25429,7 +25429,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -25451,7 +25451,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -25473,7 +25473,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3|VERSION_4_3] /// Return the address of the specified pointer @@ -25485,7 +25485,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the pointer value specified by pname. /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3|VERSION_4_3", Version = "4.3", EntryPoint = "glGetPointerv")] - public static void GetPointer(OpenTK.Graphics.OpenGL4.GetPointervPName pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetPointer(OpenTK.Graphics.OpenGL4.GetPointervPName pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3|VERSION_4_3] /// Return the address of the specified pointer @@ -25500,7 +25500,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL4.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3|VERSION_4_3] /// Return the address of the specified pointer @@ -25515,7 +25515,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL4.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3|VERSION_4_3] /// Return the address of the specified pointer @@ -25530,7 +25530,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL4.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3|VERSION_4_3] /// Return the address of the specified pointer @@ -25544,7 +25544,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "KHR_debug|VERSION_4_3|VERSION_4_3", Version = "4.3", EntryPoint = "glGetPointerv")] public static void GetPointer(OpenTK.Graphics.OpenGL4.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -25566,7 +25566,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] [CLSCompliant(false)] - public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -25590,7 +25590,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -25614,7 +25614,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -25638,7 +25638,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -25662,7 +25662,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -25684,7 +25684,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] [CLSCompliant(false)] - public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.BinaryFormat* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.BinaryFormat* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -25708,7 +25708,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.BinaryFormat* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -25732,7 +25732,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.BinaryFormat* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -25756,7 +25756,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.BinaryFormat* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -25780,7 +25780,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.BinaryFormat* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -25802,7 +25802,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] [CLSCompliant(false)] - public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -25826,7 +25826,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -25850,7 +25850,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -25874,7 +25874,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -25898,7 +25898,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -25920,7 +25920,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramBinary")] [CLSCompliant(false)] - public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.BinaryFormat* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.BinaryFormat* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -25944,7 +25944,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.BinaryFormat* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -25968,7 +25968,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.BinaryFormat* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -25992,7 +25992,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.BinaryFormat* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -26016,7 +26016,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.BinaryFormat* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the information log for a program object @@ -26035,7 +26035,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] [CLSCompliant(false)] - public static void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the information log for a program object @@ -26054,7 +26054,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] [CLSCompliant(false)] - public static unsafe void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the information log for a program object @@ -26073,7 +26073,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] [CLSCompliant(false)] - public static void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the information log for a program object @@ -26092,7 +26092,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] [CLSCompliant(false)] - public static unsafe void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query a property of an interface in a program @@ -26111,7 +26111,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramInterfaceiv")] [CLSCompliant(false)] - public static void GetProgramInterface(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramInterface(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query a property of an interface in a program @@ -26130,7 +26130,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramInterfaceiv")] [CLSCompliant(false)] - public static void GetProgramInterface(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramInterface(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query a property of an interface in a program @@ -26149,7 +26149,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramInterfaceiv")] [CLSCompliant(false)] - public static unsafe void GetProgramInterface(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramInterface(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query a property of an interface in a program @@ -26168,7 +26168,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramInterfaceiv")] [CLSCompliant(false)] - public static void GetProgramInterface(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramInterface(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query a property of an interface in a program @@ -26187,7 +26187,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramInterfaceiv")] [CLSCompliant(false)] - public static void GetProgramInterface(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramInterface(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query a property of an interface in a program @@ -26206,7 +26206,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramInterfaceiv")] [CLSCompliant(false)] - public static unsafe void GetProgramInterface(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramInterface(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a program object @@ -26222,7 +26222,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(Int32 program, OpenTK.Graphics.OpenGL4.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgram(Int32 program, OpenTK.Graphics.OpenGL4.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a program object @@ -26238,7 +26238,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(Int32 program, OpenTK.Graphics.OpenGL4.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(Int32 program, OpenTK.Graphics.OpenGL4.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a program object @@ -26254,7 +26254,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static unsafe void GetProgram(Int32 program, OpenTK.Graphics.OpenGL4.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(Int32 program, OpenTK.Graphics.OpenGL4.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a program object @@ -26270,7 +26270,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL4.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL4.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a program object @@ -26286,7 +26286,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL4.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL4.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a program object @@ -26302,7 +26302,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static unsafe void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL4.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL4.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve the info log string from a program pipeline object @@ -26321,7 +26321,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineInfoLog")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve the info log string from a program pipeline object @@ -26340,7 +26340,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineInfoLog")] [CLSCompliant(false)] - public static unsafe void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve the info log string from a program pipeline object @@ -26359,7 +26359,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineInfoLog")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve the info log string from a program pipeline object @@ -26378,7 +26378,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineInfoLog")] [CLSCompliant(false)] - public static unsafe void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve properties of a program pipeline object @@ -26394,7 +26394,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineiv")] [CLSCompliant(false)] - public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL4.ProgramPipelineParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL4.ProgramPipelineParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve properties of a program pipeline object @@ -26410,7 +26410,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineiv")] [CLSCompliant(false)] - public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL4.ProgramPipelineParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL4.ProgramPipelineParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve properties of a program pipeline object @@ -26426,7 +26426,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineiv")] [CLSCompliant(false)] - public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL4.ProgramPipelineParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL4.ProgramPipelineParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve properties of a program pipeline object @@ -26442,7 +26442,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineiv")] [CLSCompliant(false)] - public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL4.ProgramPipelineParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL4.ProgramPipelineParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve properties of a program pipeline object @@ -26458,7 +26458,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineiv")] [CLSCompliant(false)] - public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL4.ProgramPipelineParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL4.ProgramPipelineParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve properties of a program pipeline object @@ -26474,7 +26474,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineiv")] [CLSCompliant(false)] - public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL4.ProgramPipelineParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL4.ProgramPipelineParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the index of a named resource within a program @@ -26490,7 +26490,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceIndex")] [CLSCompliant(false)] - public static Int32 GetProgramResourceIndex(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceIndex(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the index of a named resource within a program @@ -26506,7 +26506,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceIndex")] [CLSCompliant(false)] - public static Int32 GetProgramResourceIndex(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceIndex(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Retrieve values for multiple properties of a single active resource within a program object @@ -26526,7 +26526,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] - public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL4.ProgramProperty[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL4.ProgramProperty[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Retrieve values for multiple properties of a single active resource within a program object @@ -26545,7 +26545,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] - public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL4.ProgramProperty[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL4.ProgramProperty[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Retrieve values for multiple properties of a single active resource within a program object @@ -26565,7 +26565,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] - public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] ref OpenTK.Graphics.OpenGL4.ProgramProperty props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] ref OpenTK.Graphics.OpenGL4.ProgramProperty props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Retrieve values for multiple properties of a single active resource within a program object @@ -26585,7 +26585,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] - public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL4.ProgramProperty* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL4.ProgramProperty* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Retrieve values for multiple properties of a single active resource within a program object @@ -26605,7 +26605,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] - public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL4.ProgramProperty[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL4.ProgramProperty[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Retrieve values for multiple properties of a single active resource within a program object @@ -26624,7 +26624,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] - public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL4.ProgramProperty[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL4.ProgramProperty[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Retrieve values for multiple properties of a single active resource within a program object @@ -26644,7 +26644,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] - public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] ref OpenTK.Graphics.OpenGL4.ProgramProperty props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] ref OpenTK.Graphics.OpenGL4.ProgramProperty props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Retrieve values for multiple properties of a single active resource within a program object @@ -26664,7 +26664,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] - public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL4.ProgramProperty* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL4.ProgramProperty* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the location of a named resource within a program @@ -26680,7 +26680,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceLocation")] [CLSCompliant(false)] - public static Int32 GetProgramResourceLocation(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceLocation(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the location of a named resource within a program @@ -26696,7 +26696,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceLocation")] [CLSCompliant(false)] - public static Int32 GetProgramResourceLocation(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceLocation(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the fragment color index of a named variable within a program @@ -26712,7 +26712,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceLocationIndex")] [CLSCompliant(false)] - public static Int32 GetProgramResourceLocationIndex(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceLocationIndex(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the fragment color index of a named variable within a program @@ -26728,7 +26728,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceLocationIndex")] [CLSCompliant(false)] - public static Int32 GetProgramResourceLocationIndex(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceLocationIndex(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the name of an indexed resource within a program @@ -26754,7 +26754,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceName")] [CLSCompliant(false)] - public static void GetProgramResourceName(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetProgramResourceName(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the name of an indexed resource within a program @@ -26780,7 +26780,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceName")] [CLSCompliant(false)] - public static void GetProgramResourceName(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetProgramResourceName(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the name of an indexed resource within a program @@ -26806,7 +26806,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceName")] [CLSCompliant(false)] - public static unsafe void GetProgramResourceName(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetProgramResourceName(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the name of an indexed resource within a program @@ -26832,7 +26832,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceName")] [CLSCompliant(false)] - public static void GetProgramResourceName(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetProgramResourceName(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the name of an indexed resource within a program @@ -26858,7 +26858,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceName")] [CLSCompliant(false)] - public static void GetProgramResourceName(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetProgramResourceName(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the name of an indexed resource within a program @@ -26884,7 +26884,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceName")] [CLSCompliant(false)] - public static unsafe void GetProgramResourceName(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetProgramResourceName(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve properties of a program object corresponding to a specified shader stage @@ -26903,7 +26903,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetProgramStageiv")] [CLSCompliant(false)] - public static void GetProgramStage(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, OpenTK.Graphics.OpenGL4.ProgramStageParameter pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 values) { throw new NotImplementedException(); } + public static void GetProgramStage(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, OpenTK.Graphics.OpenGL4.ProgramStageParameter pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve properties of a program object corresponding to a specified shader stage @@ -26922,7 +26922,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetProgramStageiv")] [CLSCompliant(false)] - public static unsafe void GetProgramStage(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, OpenTK.Graphics.OpenGL4.ProgramStageParameter pname, [OutAttribute, CountAttribute(Count = 1)] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetProgramStage(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, OpenTK.Graphics.OpenGL4.ProgramStageParameter pname, [OutAttribute, CountAttribute(Count = 1)] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve properties of a program object corresponding to a specified shader stage @@ -26941,7 +26941,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetProgramStageiv")] [CLSCompliant(false)] - public static void GetProgramStage(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, OpenTK.Graphics.OpenGL4.ProgramStageParameter pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 values) { throw new NotImplementedException(); } + public static void GetProgramStage(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, OpenTK.Graphics.OpenGL4.ProgramStageParameter pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve properties of a program object corresponding to a specified shader stage @@ -26960,7 +26960,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetProgramStageiv")] [CLSCompliant(false)] - public static unsafe void GetProgramStage(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, OpenTK.Graphics.OpenGL4.ProgramStageParameter pname, [OutAttribute, CountAttribute(Count = 1)] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetProgramStage(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, OpenTK.Graphics.OpenGL4.ProgramStageParameter pname, [OutAttribute, CountAttribute(Count = 1)] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -26969,7 +26969,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetQueryBufferObjecti64v")] [CLSCompliant(false)] - public static void GetQueryBufferObject(Int32 id, Int32 buffer, OpenTK.Graphics.OpenGL4.All pname, IntPtr offset) { throw new NotImplementedException(); } + public static void GetQueryBufferObject(Int32 id, Int32 buffer, OpenTK.Graphics.OpenGL4.All pname, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -26978,7 +26978,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetQueryBufferObjecti64v")] [CLSCompliant(false)] - public static void GetQueryBufferObject(UInt32 id, UInt32 buffer, OpenTK.Graphics.OpenGL4.All pname, IntPtr offset) { throw new NotImplementedException(); } + public static void GetQueryBufferObject(UInt32 id, UInt32 buffer, OpenTK.Graphics.OpenGL4.All pname, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Return parameters of an indexed query object target @@ -26997,7 +26997,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glGetQueryIndexediv")] [CLSCompliant(false)] - public static void GetQueryIndexed(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 index, OpenTK.Graphics.OpenGL4.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQueryIndexed(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 index, OpenTK.Graphics.OpenGL4.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Return parameters of an indexed query object target @@ -27016,7 +27016,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glGetQueryIndexediv")] [CLSCompliant(false)] - public static void GetQueryIndexed(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 index, OpenTK.Graphics.OpenGL4.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQueryIndexed(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 index, OpenTK.Graphics.OpenGL4.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Return parameters of an indexed query object target @@ -27035,7 +27035,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glGetQueryIndexediv")] [CLSCompliant(false)] - public static unsafe void GetQueryIndexed(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 index, OpenTK.Graphics.OpenGL4.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryIndexed(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 index, OpenTK.Graphics.OpenGL4.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Return parameters of an indexed query object target @@ -27054,7 +27054,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glGetQueryIndexediv")] [CLSCompliant(false)] - public static void GetQueryIndexed(OpenTK.Graphics.OpenGL4.QueryTarget target, UInt32 index, OpenTK.Graphics.OpenGL4.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQueryIndexed(OpenTK.Graphics.OpenGL4.QueryTarget target, UInt32 index, OpenTK.Graphics.OpenGL4.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Return parameters of an indexed query object target @@ -27073,7 +27073,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glGetQueryIndexediv")] [CLSCompliant(false)] - public static void GetQueryIndexed(OpenTK.Graphics.OpenGL4.QueryTarget target, UInt32 index, OpenTK.Graphics.OpenGL4.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQueryIndexed(OpenTK.Graphics.OpenGL4.QueryTarget target, UInt32 index, OpenTK.Graphics.OpenGL4.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Return parameters of an indexed query object target @@ -27092,7 +27092,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glGetQueryIndexediv")] [CLSCompliant(false)] - public static unsafe void GetQueryIndexed(OpenTK.Graphics.OpenGL4.QueryTarget target, UInt32 index, OpenTK.Graphics.OpenGL4.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryIndexed(OpenTK.Graphics.OpenGL4.QueryTarget target, UInt32 index, OpenTK.Graphics.OpenGL4.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object target @@ -27108,7 +27108,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryiv")] [CLSCompliant(false)] - public static void GetQuery(OpenTK.Graphics.OpenGL4.QueryTarget target, OpenTK.Graphics.OpenGL4.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQuery(OpenTK.Graphics.OpenGL4.QueryTarget target, OpenTK.Graphics.OpenGL4.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object target @@ -27124,7 +27124,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryiv")] [CLSCompliant(false)] - public static void GetQuery(OpenTK.Graphics.OpenGL4.QueryTarget target, OpenTK.Graphics.OpenGL4.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQuery(OpenTK.Graphics.OpenGL4.QueryTarget target, OpenTK.Graphics.OpenGL4.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object target @@ -27140,7 +27140,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryiv")] [CLSCompliant(false)] - public static unsafe void GetQuery(OpenTK.Graphics.OpenGL4.QueryTarget target, OpenTK.Graphics.OpenGL4.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQuery(OpenTK.Graphics.OpenGL4.QueryTarget target, OpenTK.Graphics.OpenGL4.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Return parameters of a query object @@ -27156,7 +27156,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glGetQueryObjecti64v")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Return parameters of a query object @@ -27172,7 +27172,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glGetQueryObjecti64v")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Return parameters of a query object @@ -27188,7 +27188,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glGetQueryObjecti64v")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Return parameters of a query object @@ -27204,7 +27204,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glGetQueryObjecti64v")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Return parameters of a query object @@ -27220,7 +27220,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glGetQueryObjecti64v")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Return parameters of a query object @@ -27236,7 +27236,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glGetQueryObjecti64v")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object @@ -27252,7 +27252,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectiv")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object @@ -27268,7 +27268,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectiv")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object @@ -27284,7 +27284,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectiv")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object @@ -27300,7 +27300,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectiv")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object @@ -27316,7 +27316,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectiv")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object @@ -27332,7 +27332,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectiv")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Return parameters of a query object @@ -27348,7 +27348,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glGetQueryObjectui64v")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Return parameters of a query object @@ -27364,7 +27364,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glGetQueryObjectui64v")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Return parameters of a query object @@ -27380,7 +27380,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glGetQueryObjectui64v")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object @@ -27396,7 +27396,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectuiv")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object @@ -27412,7 +27412,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectuiv")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object @@ -27428,7 +27428,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectuiv")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Retrieve information about a bound renderbuffer object @@ -27444,7 +27444,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGetRenderbufferParameteriv")] [CLSCompliant(false)] - public static void GetRenderbufferParameter(OpenTK.Graphics.OpenGL4.RenderbufferTarget target, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.OpenGL4.RenderbufferTarget target, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Retrieve information about a bound renderbuffer object @@ -27460,7 +27460,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGetRenderbufferParameteriv")] [CLSCompliant(false)] - public static void GetRenderbufferParameter(OpenTK.Graphics.OpenGL4.RenderbufferTarget target, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.OpenGL4.RenderbufferTarget target, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Retrieve information about a bound renderbuffer object @@ -27476,7 +27476,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGetRenderbufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.OpenGL4.RenderbufferTarget target, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.OpenGL4.RenderbufferTarget target, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -27492,7 +27492,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -27508,7 +27508,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -27524,7 +27524,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -27540,7 +27540,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -27556,7 +27556,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -27572,7 +27572,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -27580,7 +27580,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] [CLSCompliant(false)] - public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -27588,7 +27588,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] [CLSCompliant(false)] - public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -27596,7 +27596,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -27604,7 +27604,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -27612,7 +27612,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -27620,7 +27620,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -27628,7 +27628,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIuiv")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -27636,7 +27636,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIuiv")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -27644,7 +27644,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIuiv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -27660,7 +27660,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -27676,7 +27676,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -27692,7 +27692,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -27708,7 +27708,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -27724,7 +27724,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -27740,7 +27740,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// /// Get separable convolution filter kernel images @@ -27764,7 +27764,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Pointer to storage for the span filter image (currently unused). /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetSeparableFilter")] - public static void GetSeparableFilter(OpenTK.Graphics.OpenGL4.SeparableTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr row, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr column, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr span) { throw new NotImplementedException(); } + public static void GetSeparableFilter(OpenTK.Graphics.OpenGL4.SeparableTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr row, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr column, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr span) { throw new BindingsNotRewrittenException(); } /// /// Get separable convolution filter kernel images @@ -27793,7 +27793,7 @@ namespace OpenTK.Graphics.OpenGL4 where T3 : struct where T4 : struct where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get separable convolution filter kernel images @@ -27822,7 +27822,7 @@ namespace OpenTK.Graphics.OpenGL4 where T3 : struct where T4 : struct where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get separable convolution filter kernel images @@ -27851,7 +27851,7 @@ namespace OpenTK.Graphics.OpenGL4 where T3 : struct where T4 : struct where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get separable convolution filter kernel images @@ -27879,7 +27879,7 @@ namespace OpenTK.Graphics.OpenGL4 where T3 : struct where T4 : struct where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the information log for a shader object @@ -27898,7 +27898,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] [CLSCompliant(false)] - public static void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the information log for a shader object @@ -27917,7 +27917,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] [CLSCompliant(false)] - public static unsafe void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the information log for a shader object @@ -27936,7 +27936,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] [CLSCompliant(false)] - public static void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the information log for a shader object @@ -27955,7 +27955,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] [CLSCompliant(false)] - public static unsafe void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a shader object @@ -27971,7 +27971,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static void GetShader(Int32 shader, OpenTK.Graphics.OpenGL4.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetShader(Int32 shader, OpenTK.Graphics.OpenGL4.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a shader object @@ -27987,7 +27987,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static void GetShader(Int32 shader, OpenTK.Graphics.OpenGL4.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetShader(Int32 shader, OpenTK.Graphics.OpenGL4.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a shader object @@ -28003,7 +28003,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static unsafe void GetShader(Int32 shader, OpenTK.Graphics.OpenGL4.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetShader(Int32 shader, OpenTK.Graphics.OpenGL4.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a shader object @@ -28019,7 +28019,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static void GetShader(UInt32 shader, OpenTK.Graphics.OpenGL4.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetShader(UInt32 shader, OpenTK.Graphics.OpenGL4.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a shader object @@ -28035,7 +28035,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static void GetShader(UInt32 shader, OpenTK.Graphics.OpenGL4.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetShader(UInt32 shader, OpenTK.Graphics.OpenGL4.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a shader object @@ -28051,7 +28051,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static unsafe void GetShader(UInt32 shader, OpenTK.Graphics.OpenGL4.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetShader(UInt32 shader, OpenTK.Graphics.OpenGL4.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Retrieve the range and precision for numeric formats supported by the shader compiler @@ -28070,7 +28070,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glGetShaderPrecisionFormat")] [CLSCompliant(false)] - public static void GetShaderPrecisionFormat(OpenTK.Graphics.OpenGL4.ShaderType shadertype, OpenTK.Graphics.OpenGL4.ShaderPrecision precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32[] range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new NotImplementedException(); } + public static void GetShaderPrecisionFormat(OpenTK.Graphics.OpenGL4.ShaderType shadertype, OpenTK.Graphics.OpenGL4.ShaderPrecision precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32[] range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Retrieve the range and precision for numeric formats supported by the shader compiler @@ -28089,7 +28089,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glGetShaderPrecisionFormat")] [CLSCompliant(false)] - public static void GetShaderPrecisionFormat(OpenTK.Graphics.OpenGL4.ShaderType shadertype, OpenTK.Graphics.OpenGL4.ShaderPrecision precisiontype, [OutAttribute, CountAttribute(Count = 2)] out Int32 range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new NotImplementedException(); } + public static void GetShaderPrecisionFormat(OpenTK.Graphics.OpenGL4.ShaderType shadertype, OpenTK.Graphics.OpenGL4.ShaderPrecision precisiontype, [OutAttribute, CountAttribute(Count = 2)] out Int32 range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Retrieve the range and precision for numeric formats supported by the shader compiler @@ -28108,7 +28108,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glGetShaderPrecisionFormat")] [CLSCompliant(false)] - public static unsafe void GetShaderPrecisionFormat(OpenTK.Graphics.OpenGL4.ShaderType shadertype, OpenTK.Graphics.OpenGL4.ShaderPrecision precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32* range, [OutAttribute, CountAttribute(Count = 1)] Int32* precision) { throw new NotImplementedException(); } + public static unsafe void GetShaderPrecisionFormat(OpenTK.Graphics.OpenGL4.ShaderType shadertype, OpenTK.Graphics.OpenGL4.ShaderPrecision precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32* range, [OutAttribute, CountAttribute(Count = 1)] Int32* precision) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the source code string from a shader object @@ -28127,7 +28127,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] [CLSCompliant(false)] - public static void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new NotImplementedException(); } + public static void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the source code string from a shader object @@ -28146,7 +28146,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] [CLSCompliant(false)] - public static unsafe void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new NotImplementedException(); } + public static unsafe void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the source code string from a shader object @@ -28165,7 +28165,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] [CLSCompliant(false)] - public static void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new NotImplementedException(); } + public static void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the source code string from a shader object @@ -28184,7 +28184,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] [CLSCompliant(false)] - public static unsafe void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new NotImplementedException(); } + public static unsafe void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return a string describing the current GL connection @@ -28193,7 +28193,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a symbolic constant, one of Vendor, Renderer, Version, or ShadingLanguageVersion. Additionally, glGetStringi accepts the Extensions token. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetString")] - public static String GetString(OpenTK.Graphics.OpenGL4.StringName name) { throw new NotImplementedException(); } + public static String GetString(OpenTK.Graphics.OpenGL4.StringName name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Return a string describing the current GL connection @@ -28206,7 +28206,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetStringi")] [CLSCompliant(false)] - public static String GetString(OpenTK.Graphics.OpenGL4.StringNameIndexed name, Int32 index) { throw new NotImplementedException(); } + public static String GetString(OpenTK.Graphics.OpenGL4.StringNameIndexed name, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Return a string describing the current GL connection @@ -28219,7 +28219,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetStringi")] [CLSCompliant(false)] - public static String GetString(OpenTK.Graphics.OpenGL4.StringNameIndexed name, UInt32 index) { throw new NotImplementedException(); } + public static String GetString(OpenTK.Graphics.OpenGL4.StringNameIndexed name, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve the index of a subroutine uniform of a given shader stage within a program @@ -28235,7 +28235,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetSubroutineIndex")] [CLSCompliant(false)] - public static Int32 GetSubroutineIndex(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, String name) { throw new NotImplementedException(); } + public static Int32 GetSubroutineIndex(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve the index of a subroutine uniform of a given shader stage within a program @@ -28251,7 +28251,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetSubroutineIndex")] [CLSCompliant(false)] - public static Int32 GetSubroutineIndex(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, String name) { throw new NotImplementedException(); } + public static Int32 GetSubroutineIndex(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve the location of a subroutine uniform of a given shader stage within a program @@ -28267,7 +28267,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetSubroutineUniformLocation")] [CLSCompliant(false)] - public static Int32 GetSubroutineUniformLocation(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, String name) { throw new NotImplementedException(); } + public static Int32 GetSubroutineUniformLocation(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve the location of a subroutine uniform of a given shader stage within a program @@ -28283,7 +28283,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetSubroutineUniformLocation")] [CLSCompliant(false)] - public static Int32 GetSubroutineUniformLocation(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, String name) { throw new NotImplementedException(); } + public static Int32 GetSubroutineUniformLocation(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Query the properties of a sync object @@ -28305,7 +28305,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetSynciv")] [CLSCompliant(false)] - public static void GetSync(IntPtr sync, OpenTK.Graphics.OpenGL4.SyncParameterName pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.OpenGL4.SyncParameterName pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Query the properties of a sync object @@ -28327,7 +28327,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetSynciv")] [CLSCompliant(false)] - public static void GetSync(IntPtr sync, OpenTK.Graphics.OpenGL4.SyncParameterName pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.OpenGL4.SyncParameterName pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Query the properties of a sync object @@ -28349,7 +28349,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetSynciv")] [CLSCompliant(false)] - public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.OpenGL4.SyncParameterName pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.OpenGL4.SyncParameterName pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return a texture image @@ -28370,7 +28370,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the texture image. Should be a pointer to an array of the type specified by type. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexImage")] - public static void GetTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,level,format,type")] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,level,format,type")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return a texture image @@ -28394,7 +28394,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] T4[] pixels) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return a texture image @@ -28418,7 +28418,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] T4[,] pixels) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return a texture image @@ -28442,7 +28442,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] T4[,,] pixels) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return a texture image @@ -28465,7 +28465,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexImage")] public static void GetTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] ref T4 pixels) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values for a specific level of detail @@ -28484,7 +28484,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexLevelParameterfv")] [CLSCompliant(false)] - public static void GetTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values for a specific level of detail @@ -28503,7 +28503,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexLevelParameterfv")] [CLSCompliant(false)] - public static void GetTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values for a specific level of detail @@ -28522,7 +28522,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexLevelParameterfv")] [CLSCompliant(false)] - public static unsafe void GetTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values for a specific level of detail @@ -28541,7 +28541,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexLevelParameteriv")] [CLSCompliant(false)] - public static void GetTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values for a specific level of detail @@ -28560,7 +28560,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexLevelParameteriv")] [CLSCompliant(false)] - public static void GetTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values for a specific level of detail @@ -28579,7 +28579,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexLevelParameteriv")] [CLSCompliant(false)] - public static unsafe void GetTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -28595,7 +28595,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexParameterfv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -28611,7 +28611,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexParameterfv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -28627,7 +28627,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexParameterfv")] [CLSCompliant(false)] - public static unsafe void GetTexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -28635,7 +28635,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTexParameterIiv")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -28643,7 +28643,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTexParameterIiv")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -28651,7 +28651,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTexParameterIiv")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -28659,7 +28659,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTexParameterIuiv")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -28667,7 +28667,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTexParameterIuiv")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -28675,7 +28675,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTexParameterIuiv")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -28691,7 +28691,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexParameteriv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -28707,7 +28707,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexParameteriv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -28723,7 +28723,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexParameteriv")] [CLSCompliant(false)] - public static unsafe void GetTexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28734,7 +28734,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureImage")] [CLSCompliant(false)] - public static void GetTextureImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetTextureImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28747,7 +28747,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28760,7 +28760,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28773,7 +28773,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[,,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28786,7 +28786,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] ref T5 pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28797,7 +28797,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureImage")] [CLSCompliant(false)] - public static void GetTextureImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetTextureImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28810,7 +28810,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28823,7 +28823,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28836,7 +28836,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[,,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28849,7 +28849,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] ref T5 pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28858,7 +28858,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameterfv")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28867,7 +28867,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameterfv")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28876,7 +28876,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameterfv")] [CLSCompliant(false)] - public static unsafe void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28885,7 +28885,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameterfv")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28894,7 +28894,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameterfv")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28903,7 +28903,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameterfv")] [CLSCompliant(false)] - public static unsafe void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28912,7 +28912,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameteriv")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28921,7 +28921,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameteriv")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28930,7 +28930,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameteriv")] [CLSCompliant(false)] - public static unsafe void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28939,7 +28939,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameteriv")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28948,7 +28948,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameteriv")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28957,7 +28957,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameteriv")] [CLSCompliant(false)] - public static unsafe void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28965,7 +28965,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterfv")] [CLSCompliant(false)] - public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28973,7 +28973,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterfv")] [CLSCompliant(false)] - public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28981,7 +28981,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterfv")] [CLSCompliant(false)] - public static unsafe void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28989,7 +28989,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterfv")] [CLSCompliant(false)] - public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28997,7 +28997,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterfv")] [CLSCompliant(false)] - public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29005,7 +29005,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterfv")] [CLSCompliant(false)] - public static unsafe void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29013,7 +29013,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIiv")] [CLSCompliant(false)] - public static void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29021,7 +29021,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIiv")] [CLSCompliant(false)] - public static void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29029,7 +29029,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIiv")] [CLSCompliant(false)] - public static unsafe void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29037,7 +29037,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIiv")] [CLSCompliant(false)] - public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29045,7 +29045,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIiv")] [CLSCompliant(false)] - public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29053,7 +29053,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIiv")] [CLSCompliant(false)] - public static unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29061,7 +29061,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIuiv")] [CLSCompliant(false)] - public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29069,7 +29069,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIuiv")] [CLSCompliant(false)] - public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29077,7 +29077,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIuiv")] [CLSCompliant(false)] - public static unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29085,7 +29085,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameteriv")] [CLSCompliant(false)] - public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29093,7 +29093,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameteriv")] [CLSCompliant(false)] - public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29101,7 +29101,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameteriv")] [CLSCompliant(false)] - public static unsafe void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29109,7 +29109,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameteriv")] [CLSCompliant(false)] - public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29117,7 +29117,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameteriv")] [CLSCompliant(false)] - public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29125,7 +29125,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameteriv")] [CLSCompliant(false)] - public static unsafe void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -29142,7 +29142,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_get_texture_sub_image|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureSubImage")] [CLSCompliant(false)] - public static void GetTextureSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetTextureSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -29161,7 +29161,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T11[] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -29180,7 +29180,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T11[,] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -29199,7 +29199,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T11[,,] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -29218,7 +29218,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] ref T11 pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -29235,7 +29235,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_get_texture_sub_image|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureSubImage")] [CLSCompliant(false)] - public static void GetTextureSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetTextureSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -29254,7 +29254,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T11[] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -29273,7 +29273,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T11[,] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -29292,7 +29292,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T11[,,] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -29311,7 +29311,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] ref T11 pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29320,7 +29320,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki_v")] [CLSCompliant(false)] - public static void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29329,7 +29329,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki_v")] [CLSCompliant(false)] - public static void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29338,7 +29338,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki_v")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29347,7 +29347,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki_v")] [CLSCompliant(false)] - public static void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29356,7 +29356,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki_v")] [CLSCompliant(false)] - public static void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29365,7 +29365,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki_v")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29374,7 +29374,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki64_v")] [CLSCompliant(false)] - public static void GetTransformFeedbacki64_(Int32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] Int64[] param) { throw new NotImplementedException(); } + public static void GetTransformFeedbacki64_(Int32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] Int64[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29383,7 +29383,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki64_v")] [CLSCompliant(false)] - public static void GetTransformFeedbacki64_(Int32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] out Int64 param) { throw new NotImplementedException(); } + public static void GetTransformFeedbacki64_(Int32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] out Int64 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29392,7 +29392,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki64_v")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedbacki64_(Int32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] Int64* param) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbacki64_(Int32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] Int64* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29401,7 +29401,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki64_v")] [CLSCompliant(false)] - public static void GetTransformFeedbacki64_(UInt32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] Int64[] param) { throw new NotImplementedException(); } + public static void GetTransformFeedbacki64_(UInt32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] Int64[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29410,7 +29410,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki64_v")] [CLSCompliant(false)] - public static void GetTransformFeedbacki64_(UInt32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] out Int64 param) { throw new NotImplementedException(); } + public static void GetTransformFeedbacki64_(UInt32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] out Int64 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29419,7 +29419,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki64_v")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedbacki64_(UInt32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] Int64* param) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbacki64_(UInt32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] Int64* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29427,7 +29427,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbackiv")] [CLSCompliant(false)] - public static void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackParameter pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackParameter pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29435,7 +29435,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbackiv")] [CLSCompliant(false)] - public static void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackParameter pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackParameter pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29443,7 +29443,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbackiv")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackParameter pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackParameter pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29451,7 +29451,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbackiv")] [CLSCompliant(false)] - public static void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackParameter pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackParameter pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29459,7 +29459,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbackiv")] [CLSCompliant(false)] - public static void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackParameter pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackParameter pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29467,7 +29467,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbackiv")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackParameter pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackParameter pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Retrieve information about varying variables selected for transform feedback @@ -29495,7 +29495,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] [CLSCompliant(false)] - public static void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.TransformFeedbackType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.TransformFeedbackType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Retrieve information about varying variables selected for transform feedback @@ -29523,7 +29523,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.TransformFeedbackType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.TransformFeedbackType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Retrieve information about varying variables selected for transform feedback @@ -29551,7 +29551,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] [CLSCompliant(false)] - public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.TransformFeedbackType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.TransformFeedbackType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Retrieve information about varying variables selected for transform feedback @@ -29579,7 +29579,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.TransformFeedbackType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.TransformFeedbackType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the index of a named uniform block @@ -29592,7 +29592,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetUniformBlockIndex")] [CLSCompliant(false)] - public static Int32 GetUniformBlockIndex(Int32 program, [CountAttribute(Computed = "")] String uniformBlockName) { throw new NotImplementedException(); } + public static Int32 GetUniformBlockIndex(Int32 program, [CountAttribute(Computed = "")] String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the index of a named uniform block @@ -29605,7 +29605,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetUniformBlockIndex")] [CLSCompliant(false)] - public static Int32 GetUniformBlockIndex(UInt32 program, [CountAttribute(Computed = "")] String uniformBlockName) { throw new NotImplementedException(); } + public static Int32 GetUniformBlockIndex(UInt32 program, [CountAttribute(Computed = "")] String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Returns the value of a uniform variable @@ -29621,7 +29621,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glGetUniformdv")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Double[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Returns the value of a uniform variable @@ -29637,7 +29637,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glGetUniformdv")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Double @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Returns the value of a uniform variable @@ -29653,7 +29653,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glGetUniformdv")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Returns the value of a uniform variable @@ -29669,7 +29669,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glGetUniformdv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Double[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Returns the value of a uniform variable @@ -29685,7 +29685,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glGetUniformdv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Double @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Returns the value of a uniform variable @@ -29701,7 +29701,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glGetUniformdv")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -29717,7 +29717,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -29733,7 +29733,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Single @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -29749,7 +29749,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -29765,7 +29765,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -29781,7 +29781,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Single @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -29797,7 +29797,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the index of a named uniform block @@ -29816,7 +29816,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetUniformIndices")] [CLSCompliant(false)] - public static void GetUniformIndices(Int32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] Int32[] uniformIndices) { throw new NotImplementedException(); } + public static void GetUniformIndices(Int32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] Int32[] uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the index of a named uniform block @@ -29835,7 +29835,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetUniformIndices")] [CLSCompliant(false)] - public static void GetUniformIndices(Int32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] out Int32 uniformIndices) { throw new NotImplementedException(); } + public static void GetUniformIndices(Int32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] out Int32 uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the index of a named uniform block @@ -29854,7 +29854,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetUniformIndices")] [CLSCompliant(false)] - public static unsafe void GetUniformIndices(Int32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] Int32* uniformIndices) { throw new NotImplementedException(); } + public static unsafe void GetUniformIndices(Int32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] Int32* uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the index of a named uniform block @@ -29873,7 +29873,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetUniformIndices")] [CLSCompliant(false)] - public static void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] UInt32[] uniformIndices) { throw new NotImplementedException(); } + public static void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] UInt32[] uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the index of a named uniform block @@ -29892,7 +29892,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetUniformIndices")] [CLSCompliant(false)] - public static void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] out UInt32 uniformIndices) { throw new NotImplementedException(); } + public static void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] out UInt32 uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the index of a named uniform block @@ -29911,7 +29911,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glGetUniformIndices")] [CLSCompliant(false)] - public static unsafe void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] UInt32* uniformIndices) { throw new NotImplementedException(); } + public static unsafe void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] UInt32* uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -29927,7 +29927,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -29943,7 +29943,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -29959,7 +29959,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -29975,7 +29975,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -29991,7 +29991,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -30007,7 +30007,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the location of a uniform variable @@ -30020,7 +30020,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformLocation")] [CLSCompliant(false)] - public static Int32 GetUniformLocation(Int32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetUniformLocation(Int32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the location of a uniform variable @@ -30033,7 +30033,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformLocation")] [CLSCompliant(false)] - public static Int32 GetUniformLocation(UInt32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetUniformLocation(UInt32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve the value of a subroutine uniform of a given shader stage of the current program @@ -30049,7 +30049,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetUniformSubroutineuiv")] [CLSCompliant(false)] - public static void GetUniformSubroutine(OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 location, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetUniformSubroutine(OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 location, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve the value of a subroutine uniform of a given shader stage of the current program @@ -30065,7 +30065,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetUniformSubroutineuiv")] [CLSCompliant(false)] - public static unsafe void GetUniformSubroutine(OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 location, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniformSubroutine(OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 location, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve the value of a subroutine uniform of a given shader stage of the current program @@ -30081,7 +30081,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetUniformSubroutineuiv")] [CLSCompliant(false)] - public static void GetUniformSubroutine(OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 location, [OutAttribute, CountAttribute(Count = 1)] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetUniformSubroutine(OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 location, [OutAttribute, CountAttribute(Count = 1)] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve the value of a subroutine uniform of a given shader stage of the current program @@ -30097,7 +30097,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glGetUniformSubroutineuiv")] [CLSCompliant(false)] - public static unsafe void GetUniformSubroutine(OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 location, [OutAttribute, CountAttribute(Count = 1)] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniformSubroutine(OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 location, [OutAttribute, CountAttribute(Count = 1)] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Returns the value of a uniform variable @@ -30113,7 +30113,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformuiv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Returns the value of a uniform variable @@ -30129,7 +30129,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformuiv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Returns the value of a uniform variable @@ -30145,7 +30145,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformuiv")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -30154,7 +30154,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexed64iv")] [CLSCompliant(false)] - public static void GetVertexArrayIndexed64(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexed64Parameter pname, [OutAttribute] Int64[] param) { throw new NotImplementedException(); } + public static void GetVertexArrayIndexed64(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexed64Parameter pname, [OutAttribute] Int64[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -30163,7 +30163,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexed64iv")] [CLSCompliant(false)] - public static void GetVertexArrayIndexed64(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexed64Parameter pname, [OutAttribute] out Int64 param) { throw new NotImplementedException(); } + public static void GetVertexArrayIndexed64(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexed64Parameter pname, [OutAttribute] out Int64 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -30172,7 +30172,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexed64iv")] [CLSCompliant(false)] - public static unsafe void GetVertexArrayIndexed64(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexed64Parameter pname, [OutAttribute] Int64* param) { throw new NotImplementedException(); } + public static unsafe void GetVertexArrayIndexed64(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexed64Parameter pname, [OutAttribute] Int64* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -30181,7 +30181,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexed64iv")] [CLSCompliant(false)] - public static void GetVertexArrayIndexed64(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexed64Parameter pname, [OutAttribute] Int64[] param) { throw new NotImplementedException(); } + public static void GetVertexArrayIndexed64(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexed64Parameter pname, [OutAttribute] Int64[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -30190,7 +30190,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexed64iv")] [CLSCompliant(false)] - public static void GetVertexArrayIndexed64(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexed64Parameter pname, [OutAttribute] out Int64 param) { throw new NotImplementedException(); } + public static void GetVertexArrayIndexed64(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexed64Parameter pname, [OutAttribute] out Int64 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -30199,7 +30199,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexed64iv")] [CLSCompliant(false)] - public static unsafe void GetVertexArrayIndexed64(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexed64Parameter pname, [OutAttribute] Int64* param) { throw new NotImplementedException(); } + public static unsafe void GetVertexArrayIndexed64(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexed64Parameter pname, [OutAttribute] Int64* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -30208,7 +30208,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexediv")] [CLSCompliant(false)] - public static void GetVertexArrayIndexed(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexedParameter pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetVertexArrayIndexed(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexedParameter pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -30217,7 +30217,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexediv")] [CLSCompliant(false)] - public static void GetVertexArrayIndexed(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexedParameter pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetVertexArrayIndexed(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexedParameter pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -30226,7 +30226,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexediv")] [CLSCompliant(false)] - public static unsafe void GetVertexArrayIndexed(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexedParameter pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetVertexArrayIndexed(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexedParameter pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -30235,7 +30235,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexediv")] [CLSCompliant(false)] - public static void GetVertexArrayIndexed(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexedParameter pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetVertexArrayIndexed(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexedParameter pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -30244,7 +30244,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexediv")] [CLSCompliant(false)] - public static void GetVertexArrayIndexed(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexedParameter pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetVertexArrayIndexed(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexedParameter pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -30253,7 +30253,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexediv")] [CLSCompliant(false)] - public static unsafe void GetVertexArrayIndexed(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexedParameter pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetVertexArrayIndexed(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexedParameter pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -30261,7 +30261,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayiv")] [CLSCompliant(false)] - public static void GetVertexArray(Int32 vaobj, OpenTK.Graphics.OpenGL4.VertexArrayParameter pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetVertexArray(Int32 vaobj, OpenTK.Graphics.OpenGL4.VertexArrayParameter pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -30269,7 +30269,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayiv")] [CLSCompliant(false)] - public static void GetVertexArray(Int32 vaobj, OpenTK.Graphics.OpenGL4.VertexArrayParameter pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetVertexArray(Int32 vaobj, OpenTK.Graphics.OpenGL4.VertexArrayParameter pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -30277,7 +30277,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayiv")] [CLSCompliant(false)] - public static unsafe void GetVertexArray(Int32 vaobj, OpenTK.Graphics.OpenGL4.VertexArrayParameter pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetVertexArray(Int32 vaobj, OpenTK.Graphics.OpenGL4.VertexArrayParameter pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -30285,7 +30285,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayiv")] [CLSCompliant(false)] - public static void GetVertexArray(UInt32 vaobj, OpenTK.Graphics.OpenGL4.VertexArrayParameter pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetVertexArray(UInt32 vaobj, OpenTK.Graphics.OpenGL4.VertexArrayParameter pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -30293,7 +30293,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayiv")] [CLSCompliant(false)] - public static void GetVertexArray(UInt32 vaobj, OpenTK.Graphics.OpenGL4.VertexArrayParameter pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetVertexArray(UInt32 vaobj, OpenTK.Graphics.OpenGL4.VertexArrayParameter pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -30301,7 +30301,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayiv")] [CLSCompliant(false)] - public static unsafe void GetVertexArray(UInt32 vaobj, OpenTK.Graphics.OpenGL4.VertexArrayParameter pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetVertexArray(UInt32 vaobj, OpenTK.Graphics.OpenGL4.VertexArrayParameter pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -30317,7 +30317,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribdv")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -30333,7 +30333,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribdv")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -30349,7 +30349,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribdv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -30365,7 +30365,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribdv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -30381,7 +30381,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribdv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -30397,7 +30397,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribdv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -30413,7 +30413,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -30429,7 +30429,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -30445,7 +30445,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -30461,7 +30461,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -30477,7 +30477,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -30493,7 +30493,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -30501,7 +30501,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] [CLSCompliant(false)] - public static void GetVertexAttribI(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribI(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -30509,7 +30509,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribI(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribI(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -30517,7 +30517,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] [CLSCompliant(false)] - public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -30525,7 +30525,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -30533,7 +30533,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIuiv")] [CLSCompliant(false)] - public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -30541,7 +30541,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIuiv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -30557,7 +30557,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -30573,7 +30573,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -30589,7 +30589,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -30605,7 +30605,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -30621,7 +30621,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -30637,7 +30637,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -30645,7 +30645,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glGetVertexAttribLdv")] [CLSCompliant(false)] - public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -30653,7 +30653,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glGetVertexAttribLdv")] [CLSCompliant(false)] - public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -30661,7 +30661,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glGetVertexAttribLdv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -30669,7 +30669,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glGetVertexAttribLdv")] [CLSCompliant(false)] - public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -30677,7 +30677,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glGetVertexAttribLdv")] [CLSCompliant(false)] - public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -30685,7 +30685,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glGetVertexAttribLdv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return the address of the specified generic vertex attribute pointer @@ -30701,7 +30701,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] [CLSCompliant(false)] - public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new NotImplementedException(); } + public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return the address of the specified generic vertex attribute pointer @@ -30719,7 +30719,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return the address of the specified generic vertex attribute pointer @@ -30737,7 +30737,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return the address of the specified generic vertex attribute pointer @@ -30755,7 +30755,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return the address of the specified generic vertex attribute pointer @@ -30773,7 +30773,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return the address of the specified generic vertex attribute pointer @@ -30789,7 +30789,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] [CLSCompliant(false)] - public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new NotImplementedException(); } + public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return the address of the specified generic vertex attribute pointer @@ -30807,7 +30807,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return the address of the specified generic vertex attribute pointer @@ -30825,7 +30825,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return the address of the specified generic vertex attribute pointer @@ -30843,7 +30843,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return the address of the specified generic vertex attribute pointer @@ -30861,7 +30861,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify implementation-specific hints @@ -30873,7 +30873,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a symbolic constant indicating the desired behavior. Fastest, Nicest, and DontCare are accepted. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glHint")] - public static void Hint(OpenTK.Graphics.OpenGL4.HintTarget target, OpenTK.Graphics.OpenGL4.HintMode mode) { throw new NotImplementedException(); } + public static void Hint(OpenTK.Graphics.OpenGL4.HintTarget target, OpenTK.Graphics.OpenGL4.HintMode mode) { throw new BindingsNotRewrittenException(); } /// /// Define histogram table @@ -30891,7 +30891,7 @@ namespace OpenTK.Graphics.OpenGL4 /// If True, pixels will be consumed by the histogramming process and no drawing or texture loading will take place. If False, pixels will proceed to the minmax process after histogramming. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glHistogram")] - public static void Histogram(OpenTK.Graphics.OpenGL4.HistogramTarget target, Int32 width, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, bool sink) { throw new NotImplementedException(); } + public static void Histogram(OpenTK.Graphics.OpenGL4.HistogramTarget target, Int32 width, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, bool sink) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate the content of a buffer object's data store @@ -30901,7 +30901,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateBufferData")] [CLSCompliant(false)] - public static void InvalidateBufferData(Int32 buffer) { throw new NotImplementedException(); } + public static void InvalidateBufferData(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate the content of a buffer object's data store @@ -30911,7 +30911,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateBufferData")] [CLSCompliant(false)] - public static void InvalidateBufferData(UInt32 buffer) { throw new NotImplementedException(); } + public static void InvalidateBufferData(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate a region of a buffer object's data store @@ -30927,7 +30927,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateBufferSubData")] [CLSCompliant(false)] - public static void InvalidateBufferSubData(Int32 buffer, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void InvalidateBufferSubData(Int32 buffer, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate a region of a buffer object's data store @@ -30943,7 +30943,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateBufferSubData")] [CLSCompliant(false)] - public static void InvalidateBufferSubData(Int32 buffer, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void InvalidateBufferSubData(Int32 buffer, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate a region of a buffer object's data store @@ -30959,7 +30959,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateBufferSubData")] [CLSCompliant(false)] - public static void InvalidateBufferSubData(UInt32 buffer, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void InvalidateBufferSubData(UInt32 buffer, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate a region of a buffer object's data store @@ -30975,7 +30975,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateBufferSubData")] [CLSCompliant(false)] - public static void InvalidateBufferSubData(UInt32 buffer, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void InvalidateBufferSubData(UInt32 buffer, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate the content some or all of a framebuffer object's attachments @@ -30991,7 +30991,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateFramebuffer")] [CLSCompliant(false)] - public static void InvalidateFramebuffer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.OpenGL4.FramebufferAttachment[] attachments) { throw new NotImplementedException(); } + public static void InvalidateFramebuffer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.OpenGL4.FramebufferAttachment[] attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate the content some or all of a framebuffer object's attachments @@ -31007,7 +31007,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateFramebuffer")] [CLSCompliant(false)] - public static void InvalidateFramebuffer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.OpenGL4.FramebufferAttachment attachments) { throw new NotImplementedException(); } + public static void InvalidateFramebuffer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.OpenGL4.FramebufferAttachment attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate the content some or all of a framebuffer object's attachments @@ -31023,7 +31023,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateFramebuffer")] [CLSCompliant(false)] - public static unsafe void InvalidateFramebuffer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.OpenGL4.FramebufferAttachment* attachments) { throw new NotImplementedException(); } + public static unsafe void InvalidateFramebuffer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.OpenGL4.FramebufferAttachment* attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -31031,7 +31031,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferData")] [CLSCompliant(false)] - public static void InvalidateNamedFramebufferData(Int32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL4.FramebufferAttachment[] attachments) { throw new NotImplementedException(); } + public static void InvalidateNamedFramebufferData(Int32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL4.FramebufferAttachment[] attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -31039,7 +31039,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferData")] [CLSCompliant(false)] - public static void InvalidateNamedFramebufferData(Int32 framebuffer, Int32 numAttachments, ref OpenTK.Graphics.OpenGL4.FramebufferAttachment attachments) { throw new NotImplementedException(); } + public static void InvalidateNamedFramebufferData(Int32 framebuffer, Int32 numAttachments, ref OpenTK.Graphics.OpenGL4.FramebufferAttachment attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -31047,7 +31047,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferData")] [CLSCompliant(false)] - public static unsafe void InvalidateNamedFramebufferData(Int32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL4.FramebufferAttachment* attachments) { throw new NotImplementedException(); } + public static unsafe void InvalidateNamedFramebufferData(Int32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL4.FramebufferAttachment* attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -31055,7 +31055,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferData")] [CLSCompliant(false)] - public static void InvalidateNamedFramebufferData(UInt32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL4.FramebufferAttachment[] attachments) { throw new NotImplementedException(); } + public static void InvalidateNamedFramebufferData(UInt32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL4.FramebufferAttachment[] attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -31063,7 +31063,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferData")] [CLSCompliant(false)] - public static void InvalidateNamedFramebufferData(UInt32 framebuffer, Int32 numAttachments, ref OpenTK.Graphics.OpenGL4.FramebufferAttachment attachments) { throw new NotImplementedException(); } + public static void InvalidateNamedFramebufferData(UInt32 framebuffer, Int32 numAttachments, ref OpenTK.Graphics.OpenGL4.FramebufferAttachment attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -31071,7 +31071,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferData")] [CLSCompliant(false)] - public static unsafe void InvalidateNamedFramebufferData(UInt32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL4.FramebufferAttachment* attachments) { throw new NotImplementedException(); } + public static unsafe void InvalidateNamedFramebufferData(UInt32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL4.FramebufferAttachment* attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -31083,7 +31083,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferSubData")] [CLSCompliant(false)] - public static void InvalidateNamedFramebufferSubData(Int32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL4.FramebufferAttachment[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void InvalidateNamedFramebufferSubData(Int32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL4.FramebufferAttachment[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -31095,7 +31095,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferSubData")] [CLSCompliant(false)] - public static void InvalidateNamedFramebufferSubData(Int32 framebuffer, Int32 numAttachments, ref OpenTK.Graphics.OpenGL4.FramebufferAttachment attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void InvalidateNamedFramebufferSubData(Int32 framebuffer, Int32 numAttachments, ref OpenTK.Graphics.OpenGL4.FramebufferAttachment attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -31107,7 +31107,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferSubData")] [CLSCompliant(false)] - public static unsafe void InvalidateNamedFramebufferSubData(Int32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL4.FramebufferAttachment* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static unsafe void InvalidateNamedFramebufferSubData(Int32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL4.FramebufferAttachment* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -31119,7 +31119,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferSubData")] [CLSCompliant(false)] - public static void InvalidateNamedFramebufferSubData(UInt32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL4.FramebufferAttachment[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void InvalidateNamedFramebufferSubData(UInt32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL4.FramebufferAttachment[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -31131,7 +31131,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferSubData")] [CLSCompliant(false)] - public static void InvalidateNamedFramebufferSubData(UInt32 framebuffer, Int32 numAttachments, ref OpenTK.Graphics.OpenGL4.FramebufferAttachment attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void InvalidateNamedFramebufferSubData(UInt32 framebuffer, Int32 numAttachments, ref OpenTK.Graphics.OpenGL4.FramebufferAttachment attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -31143,7 +31143,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferSubData")] [CLSCompliant(false)] - public static unsafe void InvalidateNamedFramebufferSubData(UInt32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL4.FramebufferAttachment* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static unsafe void InvalidateNamedFramebufferSubData(UInt32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL4.FramebufferAttachment* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate the content of a region of some or all of a framebuffer object's attachments @@ -31171,7 +31171,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateSubFramebuffer")] [CLSCompliant(false)] - public static void InvalidateSubFramebuffer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.OpenGL4.FramebufferAttachment[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void InvalidateSubFramebuffer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.OpenGL4.FramebufferAttachment[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate the content of a region of some or all of a framebuffer object's attachments @@ -31199,7 +31199,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateSubFramebuffer")] [CLSCompliant(false)] - public static void InvalidateSubFramebuffer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.OpenGL4.FramebufferAttachment attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void InvalidateSubFramebuffer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.OpenGL4.FramebufferAttachment attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate the content of a region of some or all of a framebuffer object's attachments @@ -31227,7 +31227,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateSubFramebuffer")] [CLSCompliant(false)] - public static unsafe void InvalidateSubFramebuffer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.OpenGL4.FramebufferAttachment* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static unsafe void InvalidateSubFramebuffer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.OpenGL4.FramebufferAttachment* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate the entirety a texture image @@ -31240,7 +31240,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateTexImage")] [CLSCompliant(false)] - public static void InvalidateTexImage(Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void InvalidateTexImage(Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate the entirety a texture image @@ -31253,7 +31253,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateTexImage")] [CLSCompliant(false)] - public static void InvalidateTexImage(UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void InvalidateTexImage(UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate a region of a texture image @@ -31284,7 +31284,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateTexSubImage")] [CLSCompliant(false)] - public static void InvalidateTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void InvalidateTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate a region of a texture image @@ -31315,7 +31315,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateTexSubImage")] [CLSCompliant(false)] - public static void InvalidateTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void InvalidateTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Determine if a name corresponds to a buffer object @@ -31325,7 +31325,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glIsBuffer")] [CLSCompliant(false)] - public static bool IsBuffer(Int32 buffer) { throw new NotImplementedException(); } + public static bool IsBuffer(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Determine if a name corresponds to a buffer object @@ -31335,7 +31335,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glIsBuffer")] [CLSCompliant(false)] - public static bool IsBuffer(UInt32 buffer) { throw new NotImplementedException(); } + public static bool IsBuffer(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Test whether a capability is enabled @@ -31344,7 +31344,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a symbolic constant indicating a GL capability. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glIsEnabled")] - public static bool IsEnabled(OpenTK.Graphics.OpenGL4.EnableCap cap) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.OpenGL4.EnableCap cap) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Test whether a capability is enabled @@ -31357,7 +31357,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glIsEnabledi")] [CLSCompliant(false)] - public static bool IsEnabled(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, Int32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Test whether a capability is enabled @@ -31370,7 +31370,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glIsEnabledi")] [CLSCompliant(false)] - public static bool IsEnabled(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, UInt32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Determine if a name corresponds to a framebuffer object @@ -31380,7 +31380,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glIsFramebuffer")] [CLSCompliant(false)] - public static bool IsFramebuffer(Int32 framebuffer) { throw new NotImplementedException(); } + public static bool IsFramebuffer(Int32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Determine if a name corresponds to a framebuffer object @@ -31390,7 +31390,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glIsFramebuffer")] [CLSCompliant(false)] - public static bool IsFramebuffer(UInt32 framebuffer) { throw new NotImplementedException(); } + public static bool IsFramebuffer(UInt32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Determines if a name corresponds to a program object @@ -31400,7 +31400,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glIsProgram")] [CLSCompliant(false)] - public static bool IsProgram(Int32 program) { throw new NotImplementedException(); } + public static bool IsProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Determines if a name corresponds to a program object @@ -31410,7 +31410,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glIsProgram")] [CLSCompliant(false)] - public static bool IsProgram(UInt32 program) { throw new NotImplementedException(); } + public static bool IsProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Determine if a name corresponds to a program pipeline object @@ -31420,7 +31420,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glIsProgramPipeline")] [CLSCompliant(false)] - public static bool IsProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } + public static bool IsProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Determine if a name corresponds to a program pipeline object @@ -31430,7 +31430,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glIsProgramPipeline")] [CLSCompliant(false)] - public static bool IsProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static bool IsProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Determine if a name corresponds to a query object @@ -31440,7 +31440,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glIsQuery")] [CLSCompliant(false)] - public static bool IsQuery(Int32 id) { throw new NotImplementedException(); } + public static bool IsQuery(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Determine if a name corresponds to a query object @@ -31450,7 +31450,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glIsQuery")] [CLSCompliant(false)] - public static bool IsQuery(UInt32 id) { throw new NotImplementedException(); } + public static bool IsQuery(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Determine if a name corresponds to a renderbuffer object @@ -31460,7 +31460,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glIsRenderbuffer")] [CLSCompliant(false)] - public static bool IsRenderbuffer(Int32 renderbuffer) { throw new NotImplementedException(); } + public static bool IsRenderbuffer(Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Determine if a name corresponds to a renderbuffer object @@ -31470,7 +31470,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glIsRenderbuffer")] [CLSCompliant(false)] - public static bool IsRenderbuffer(UInt32 renderbuffer) { throw new NotImplementedException(); } + public static bool IsRenderbuffer(UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Determine if a name corresponds to a sampler object @@ -31480,7 +31480,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glIsSampler")] [CLSCompliant(false)] - public static bool IsSampler(Int32 sampler) { throw new NotImplementedException(); } + public static bool IsSampler(Int32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Determine if a name corresponds to a sampler object @@ -31490,7 +31490,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glIsSampler")] [CLSCompliant(false)] - public static bool IsSampler(UInt32 sampler) { throw new NotImplementedException(); } + public static bool IsSampler(UInt32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Determines if a name corresponds to a shader object @@ -31500,7 +31500,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glIsShader")] [CLSCompliant(false)] - public static bool IsShader(Int32 shader) { throw new NotImplementedException(); } + public static bool IsShader(Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Determines if a name corresponds to a shader object @@ -31510,7 +31510,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glIsShader")] [CLSCompliant(false)] - public static bool IsShader(UInt32 shader) { throw new NotImplementedException(); } + public static bool IsShader(UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Determine if a name corresponds to a sync object @@ -31519,7 +31519,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a value that may be the name of a sync object. /// [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glIsSync")] - public static bool IsSync(IntPtr sync) { throw new NotImplementedException(); } + public static bool IsSync(IntPtr sync) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Determine if a name corresponds to a texture @@ -31529,7 +31529,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glIsTexture")] [CLSCompliant(false)] - public static bool IsTexture(Int32 texture) { throw new NotImplementedException(); } + public static bool IsTexture(Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Determine if a name corresponds to a texture @@ -31539,7 +31539,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glIsTexture")] [CLSCompliant(false)] - public static bool IsTexture(UInt32 texture) { throw new NotImplementedException(); } + public static bool IsTexture(UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Determine if a name corresponds to a transform feedback object @@ -31549,7 +31549,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glIsTransformFeedback")] [CLSCompliant(false)] - public static bool IsTransformFeedback(Int32 id) { throw new NotImplementedException(); } + public static bool IsTransformFeedback(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Determine if a name corresponds to a transform feedback object @@ -31559,7 +31559,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glIsTransformFeedback")] [CLSCompliant(false)] - public static bool IsTransformFeedback(UInt32 id) { throw new NotImplementedException(); } + public static bool IsTransformFeedback(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Determine if a name corresponds to a vertex array object @@ -31569,7 +31569,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glIsVertexArray")] [CLSCompliant(false)] - public static bool IsVertexArray(Int32 array) { throw new NotImplementedException(); } + public static bool IsVertexArray(Int32 array) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Determine if a name corresponds to a vertex array object @@ -31579,7 +31579,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glIsVertexArray")] [CLSCompliant(false)] - public static bool IsVertexArray(UInt32 array) { throw new NotImplementedException(); } + public static bool IsVertexArray(UInt32 array) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify the width of rasterized lines @@ -31588,7 +31588,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the width of rasterized lines. The initial value is 1. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLineWidth")] - public static void LineWidth(Single width) { throw new NotImplementedException(); } + public static void LineWidth(Single width) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Links a program object @@ -31598,7 +31598,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glLinkProgram")] [CLSCompliant(false)] - public static void LinkProgram(Int32 program) { throw new NotImplementedException(); } + public static void LinkProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Links a program object @@ -31608,7 +31608,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glLinkProgram")] [CLSCompliant(false)] - public static void LinkProgram(UInt32 program) { throw new NotImplementedException(); } + public static void LinkProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a logical pixel operation for rendering @@ -31617,7 +31617,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a symbolic constant that selects a logical operation. The following symbols are accepted: Clear, Set, Copy, CopyInverted, Noop, Invert, And, Nand, Or, Nor, Xor, Equiv, AndReverse, AndInverted, OrReverse, and OrInverted. The initial value is Copy. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLogicOp")] - public static void LogicOp(OpenTK.Graphics.OpenGL4.LogicOp opcode) { throw new NotImplementedException(); } + public static void LogicOp(OpenTK.Graphics.OpenGL4.LogicOp opcode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Map a buffer object's data store @@ -31629,7 +31629,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For glMapBuffer only, specifies the access policy, indicating whether it will be possible to read from, write to, or both read from and write to the buffer object's mapped data store. The symbolic constant must be ReadOnly, WriteOnly, or ReadWrite. /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glMapBuffer")] - public static IntPtr MapBuffer(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferAccess access) { throw new NotImplementedException(); } + public static IntPtr MapBuffer(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferAccess access) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_map_buffer_range|VERSION_3_0] /// Map a section of a buffer object's data store @@ -31647,7 +31647,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a combination of access flags indicating the desired access to the range. /// [AutoGenerated(Category = "ARB_map_buffer_range|VERSION_3_0", Version = "3.0", EntryPoint = "glMapBufferRange")] - public static IntPtr MapBufferRange(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, Int32 length, OpenTK.Graphics.OpenGL4.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, Int32 length, OpenTK.Graphics.OpenGL4.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_map_buffer_range|VERSION_3_0] /// Map a section of a buffer object's data store @@ -31665,21 +31665,21 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a combination of access flags indicating the desired access to the range. /// [AutoGenerated(Category = "ARB_map_buffer_range|VERSION_3_0", Version = "3.0", EntryPoint = "glMapBufferRange")] - public static IntPtr MapBufferRange(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL4.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL4.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glMapNamedBuffer")] [CLSCompliant(false)] - public static IntPtr MapNamedBuffer(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferAccess access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBuffer(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferAccess access) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glMapNamedBuffer")] [CLSCompliant(false)] - public static IntPtr MapNamedBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferAccess access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferAccess access) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -31688,7 +31688,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glMapNamedBufferRange")] [CLSCompliant(false)] - public static IntPtr MapNamedBufferRange(Int32 buffer, IntPtr offset, Int32 length, OpenTK.Graphics.OpenGL4.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBufferRange(Int32 buffer, IntPtr offset, Int32 length, OpenTK.Graphics.OpenGL4.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -31697,7 +31697,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glMapNamedBufferRange")] [CLSCompliant(false)] - public static IntPtr MapNamedBufferRange(Int32 buffer, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL4.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBufferRange(Int32 buffer, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL4.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -31706,7 +31706,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glMapNamedBufferRange")] [CLSCompliant(false)] - public static IntPtr MapNamedBufferRange(UInt32 buffer, IntPtr offset, Int32 length, OpenTK.Graphics.OpenGL4.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBufferRange(UInt32 buffer, IntPtr offset, Int32 length, OpenTK.Graphics.OpenGL4.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -31715,7 +31715,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glMapNamedBufferRange")] [CLSCompliant(false)] - public static IntPtr MapNamedBufferRange(UInt32 buffer, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL4.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBufferRange(UInt32 buffer, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL4.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_shader_image_load_store|VERSION_4_2] /// Defines a barrier ordering memory transactions @@ -31724,12 +31724,12 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the barriers to insert. Must be a bitwise combination of VertexAttribArrayBarrierBit, ElementArrayBarrierBit, UniformBarrierBit, TextureFetchBarrierBit, ShaderImageAccessBarrierBit, CommandBarrierBit, PixelBufferBarrierBit, TextureUpdateBarrierBit, BufferUpdateBarrierBit, FramebufferBarrierBit, TransformFeedbackBarrierBit, AtomicCounterBarrierBit, or ShaderStorageBarrierBit. If the special value AllBarrierBits is specified, all supported barriers will be inserted. /// [AutoGenerated(Category = "ARB_shader_image_load_store|VERSION_4_2", Version = "4.2", EntryPoint = "glMemoryBarrier")] - public static void MemoryBarrier(OpenTK.Graphics.OpenGL4.MemoryBarrierFlags barriers) { throw new NotImplementedException(); } + public static void MemoryBarrier(OpenTK.Graphics.OpenGL4.MemoryBarrierFlags barriers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_ES3_1_compatibility|VERSION_4_5] /// [AutoGenerated(Category = "ARB_ES3_1_compatibility|VERSION_4_5", Version = "4.5", EntryPoint = "glMemoryBarrierByRegion")] - public static void MemoryBarrierByRegion(OpenTK.Graphics.OpenGL4.MemoryBarrierRegionFlags barriers) { throw new NotImplementedException(); } + public static void MemoryBarrierByRegion(OpenTK.Graphics.OpenGL4.MemoryBarrierRegionFlags barriers) { throw new BindingsNotRewrittenException(); } /// /// Define minmax table @@ -31744,7 +31744,7 @@ namespace OpenTK.Graphics.OpenGL4 /// If True, pixels will be consumed by the minmax process and no drawing or texture loading will take place. If False, pixels will proceed to the final conversion process after minmax. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glMinmax")] - public static void Minmax(OpenTK.Graphics.OpenGL4.MinmaxTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, bool sink) { throw new NotImplementedException(); } + public static void Minmax(OpenTK.Graphics.OpenGL4.MinmaxTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, bool sink) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specifies minimum rate at which sample shaing takes place @@ -31753,7 +31753,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the rate at which samples are shaded within each covered pixel. /// [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glMinSampleShading")] - public static void MinSampleShading(Single value) { throw new NotImplementedException(); } + public static void MinSampleShading(Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives from array data @@ -31772,7 +31772,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawArrays")] [CLSCompliant(false)] - public static void MultiDrawArrays(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "count")] Int32[] first, [CountAttribute(Computed = "drawcount")] Int32[] count, Int32 drawcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "count")] Int32[] first, [CountAttribute(Computed = "drawcount")] Int32[] count, Int32 drawcount) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives from array data @@ -31791,7 +31791,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawArrays")] [CLSCompliant(false)] - public static void MultiDrawArrays(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "count")] ref Int32 first, [CountAttribute(Computed = "drawcount")] ref Int32 count, Int32 drawcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "count")] ref Int32 first, [CountAttribute(Computed = "drawcount")] ref Int32 count, Int32 drawcount) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives from array data @@ -31810,7 +31810,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawArrays")] [CLSCompliant(false)] - public static unsafe void MultiDrawArrays(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "count")] Int32* first, [CountAttribute(Computed = "drawcount")] Int32* count, Int32 drawcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawArrays(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "count")] Int32* first, [CountAttribute(Computed = "drawcount")] Int32* count, Int32 drawcount) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_multi_draw_indirect|VERSION_4_3] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -31828,7 +31828,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the distance in basic machine units between elements of the draw parameter array. /// [AutoGenerated(Category = "ARB_multi_draw_indirect|VERSION_4_3", Version = "4.3", EntryPoint = "glMultiDrawArraysIndirect")] - public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_multi_draw_indirect|VERSION_4_3] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -31849,7 +31849,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_multi_draw_indirect|VERSION_4_3] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -31870,7 +31870,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[,] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_multi_draw_indirect|VERSION_4_3] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -31891,7 +31891,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[,,] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_multi_draw_indirect|VERSION_4_3] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -31911,7 +31911,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_multi_draw_indirect|VERSION_4_3", Version = "4.3", EntryPoint = "glMultiDrawArraysIndirect")] public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] ref T1 indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -31920,7 +31920,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_4_6", Version = "4.6", EntryPoint = "glMultiDrawArraysIndirectCount")] - public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -31932,7 +31932,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] T1[] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -31944,7 +31944,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] T1[,] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -31956,7 +31956,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] T1[,,] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -31967,7 +31967,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_4_6", Version = "4.6", EntryPoint = "glMultiDrawArraysIndirectCount")] public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] ref T1 indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -31989,7 +31989,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] [CLSCompliant(false)] - public static void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -32013,7 +32013,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -32037,7 +32037,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -32061,7 +32061,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -32085,7 +32085,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -32107,7 +32107,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] [CLSCompliant(false)] - public static void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -32131,7 +32131,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -32155,7 +32155,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -32179,7 +32179,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -32203,7 +32203,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -32225,7 +32225,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] [CLSCompliant(false)] - public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -32249,7 +32249,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -32273,7 +32273,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -32297,7 +32297,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -32321,7 +32321,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -32346,7 +32346,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] [CLSCompliant(false)] - public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) { throw new NotImplementedException(); } + public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -32373,7 +32373,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -32400,7 +32400,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -32427,7 +32427,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -32454,7 +32454,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -32479,7 +32479,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] [CLSCompliant(false)] - public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) { throw new NotImplementedException(); } + public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -32506,7 +32506,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -32533,7 +32533,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -32560,7 +32560,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -32587,7 +32587,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -32612,7 +32612,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glMultiDrawElementsBaseVertex")] [CLSCompliant(false)] - public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -32639,7 +32639,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -32666,7 +32666,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -32693,7 +32693,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -32720,7 +32720,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_multi_draw_indirect|VERSION_4_3] /// Render indexed primitives from array data, taking parameters from memory @@ -32741,7 +32741,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the distance in basic machine units between elements of the draw parameter array. /// [AutoGenerated(Category = "ARB_multi_draw_indirect|VERSION_4_3", Version = "4.3", EntryPoint = "glMultiDrawElementsIndirect")] - public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_multi_draw_indirect|VERSION_4_3] /// Render indexed primitives from array data, taking parameters from memory @@ -32765,7 +32765,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_multi_draw_indirect|VERSION_4_3] /// Render indexed primitives from array data, taking parameters from memory @@ -32789,7 +32789,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_multi_draw_indirect|VERSION_4_3] /// Render indexed primitives from array data, taking parameters from memory @@ -32813,7 +32813,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,,] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_multi_draw_indirect|VERSION_4_3] /// Render indexed primitives from array data, taking parameters from memory @@ -32836,7 +32836,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_multi_draw_indirect|VERSION_4_3", Version = "4.3", EntryPoint = "glMultiDrawElementsIndirect")] public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] ref T2 indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -32846,7 +32846,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_4_6", Version = "4.6", EntryPoint = "glMultiDrawElementsIndirectCount")] - public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -32859,7 +32859,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -32872,7 +32872,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[,] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -32885,7 +32885,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[,,] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -32897,7 +32897,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_4_6", Version = "4.6", EntryPoint = "glMultiDrawElementsIndirectCount")] public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] ref T2 indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -32905,7 +32905,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP1ui")] [CLSCompliant(false)] - public static void MultiTexCoordP1(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 coords) { throw new NotImplementedException(); } + public static void MultiTexCoordP1(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -32913,7 +32913,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP1ui")] [CLSCompliant(false)] - public static void MultiTexCoordP1(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 coords) { throw new NotImplementedException(); } + public static void MultiTexCoordP1(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -32921,7 +32921,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP1uiv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoordP1(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoordP1(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -32929,7 +32929,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP1uiv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoordP1(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoordP1(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -32937,7 +32937,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP2ui")] [CLSCompliant(false)] - public static void MultiTexCoordP2(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 coords) { throw new NotImplementedException(); } + public static void MultiTexCoordP2(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -32945,7 +32945,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP2ui")] [CLSCompliant(false)] - public static void MultiTexCoordP2(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 coords) { throw new NotImplementedException(); } + public static void MultiTexCoordP2(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -32953,7 +32953,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP2uiv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoordP2(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoordP2(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -32961,7 +32961,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP2uiv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoordP2(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoordP2(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -32969,7 +32969,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP3ui")] [CLSCompliant(false)] - public static void MultiTexCoordP3(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 coords) { throw new NotImplementedException(); } + public static void MultiTexCoordP3(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -32977,7 +32977,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP3ui")] [CLSCompliant(false)] - public static void MultiTexCoordP3(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 coords) { throw new NotImplementedException(); } + public static void MultiTexCoordP3(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -32985,7 +32985,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP3uiv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoordP3(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoordP3(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -32993,7 +32993,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP3uiv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoordP3(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoordP3(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -33001,7 +33001,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP4ui")] [CLSCompliant(false)] - public static void MultiTexCoordP4(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 coords) { throw new NotImplementedException(); } + public static void MultiTexCoordP4(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -33009,7 +33009,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP4ui")] [CLSCompliant(false)] - public static void MultiTexCoordP4(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 coords) { throw new NotImplementedException(); } + public static void MultiTexCoordP4(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -33017,7 +33017,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP4uiv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoordP4(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoordP4(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -33025,7 +33025,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glMultiTexCoordP4uiv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoordP4(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoordP4(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33034,7 +33034,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferData")] [CLSCompliant(false)] - public static void NamedBufferData(Int32 buffer, Int32 size, IntPtr data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void NamedBufferData(Int32 buffer, Int32 size, IntPtr data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33045,7 +33045,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute] T2[] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33056,7 +33056,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute] T2[,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33067,7 +33067,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33078,7 +33078,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute] ref T2 data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33087,7 +33087,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferData")] [CLSCompliant(false)] - public static void NamedBufferData(Int32 buffer, IntPtr size, IntPtr data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void NamedBufferData(Int32 buffer, IntPtr size, IntPtr data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33098,7 +33098,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute] T2[] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33109,7 +33109,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute] T2[,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33120,7 +33120,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33131,7 +33131,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute] ref T2 data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33140,7 +33140,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferData")] [CLSCompliant(false)] - public static void NamedBufferData(UInt32 buffer, Int32 size, IntPtr data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void NamedBufferData(UInt32 buffer, Int32 size, IntPtr data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33151,7 +33151,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute] T2[] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33162,7 +33162,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute] T2[,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33173,7 +33173,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33184,7 +33184,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute] ref T2 data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33193,7 +33193,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferData")] [CLSCompliant(false)] - public static void NamedBufferData(UInt32 buffer, IntPtr size, IntPtr data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void NamedBufferData(UInt32 buffer, IntPtr size, IntPtr data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33204,7 +33204,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute] T2[] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33215,7 +33215,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute] T2[,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33226,7 +33226,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33237,7 +33237,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute] ref T2 data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33246,7 +33246,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferStorage")] [CLSCompliant(false)] - public static void NamedBufferStorage(Int32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(Int32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33257,7 +33257,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33268,7 +33268,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33279,7 +33279,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33290,7 +33290,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33299,7 +33299,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferStorage")] [CLSCompliant(false)] - public static void NamedBufferStorage(Int32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(Int32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33310,7 +33310,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33321,7 +33321,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33332,7 +33332,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33343,7 +33343,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33352,7 +33352,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferStorage")] [CLSCompliant(false)] - public static void NamedBufferStorage(UInt32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(UInt32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33363,7 +33363,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33374,7 +33374,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33385,7 +33385,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33396,7 +33396,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33405,7 +33405,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferStorage")] [CLSCompliant(false)] - public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33416,7 +33416,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33427,7 +33427,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33438,7 +33438,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33449,7 +33449,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33458,7 +33458,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(size)] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferSubData")] [CLSCompliant(false)] - public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33469,7 +33469,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33480,7 +33480,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33491,7 +33491,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33502,7 +33502,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33511,7 +33511,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(size)] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferSubData")] [CLSCompliant(false)] - public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33522,7 +33522,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33533,7 +33533,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33544,7 +33544,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33555,7 +33555,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33564,7 +33564,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(size)] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferSubData")] [CLSCompliant(false)] - public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33575,7 +33575,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33586,7 +33586,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33597,7 +33597,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33608,7 +33608,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33617,7 +33617,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(size)] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferSubData")] [CLSCompliant(false)] - public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33628,7 +33628,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33639,7 +33639,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33650,7 +33650,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33661,21 +33661,21 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferDrawBuffer")] [CLSCompliant(false)] - public static void NamedFramebufferDrawBuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.DrawBufferMode buf) { throw new NotImplementedException(); } + public static void NamedFramebufferDrawBuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.DrawBufferMode buf) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferDrawBuffer")] [CLSCompliant(false)] - public static void NamedFramebufferDrawBuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.DrawBufferMode buf) { throw new NotImplementedException(); } + public static void NamedFramebufferDrawBuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.DrawBufferMode buf) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33683,7 +33683,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferDrawBuffers")] [CLSCompliant(false)] - public static void NamedFramebufferDrawBuffers(Int32 framebuffer, Int32 n, OpenTK.Graphics.OpenGL4.DrawBuffersEnum[] bufs) { throw new NotImplementedException(); } + public static void NamedFramebufferDrawBuffers(Int32 framebuffer, Int32 n, OpenTK.Graphics.OpenGL4.DrawBuffersEnum[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33691,7 +33691,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferDrawBuffers")] [CLSCompliant(false)] - public static void NamedFramebufferDrawBuffers(Int32 framebuffer, Int32 n, ref OpenTK.Graphics.OpenGL4.DrawBuffersEnum bufs) { throw new NotImplementedException(); } + public static void NamedFramebufferDrawBuffers(Int32 framebuffer, Int32 n, ref OpenTK.Graphics.OpenGL4.DrawBuffersEnum bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33699,7 +33699,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferDrawBuffers")] [CLSCompliant(false)] - public static unsafe void NamedFramebufferDrawBuffers(Int32 framebuffer, Int32 n, OpenTK.Graphics.OpenGL4.DrawBuffersEnum* bufs) { throw new NotImplementedException(); } + public static unsafe void NamedFramebufferDrawBuffers(Int32 framebuffer, Int32 n, OpenTK.Graphics.OpenGL4.DrawBuffersEnum* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33707,7 +33707,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferDrawBuffers")] [CLSCompliant(false)] - public static void NamedFramebufferDrawBuffers(UInt32 framebuffer, Int32 n, OpenTK.Graphics.OpenGL4.DrawBuffersEnum[] bufs) { throw new NotImplementedException(); } + public static void NamedFramebufferDrawBuffers(UInt32 framebuffer, Int32 n, OpenTK.Graphics.OpenGL4.DrawBuffersEnum[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33715,7 +33715,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferDrawBuffers")] [CLSCompliant(false)] - public static void NamedFramebufferDrawBuffers(UInt32 framebuffer, Int32 n, ref OpenTK.Graphics.OpenGL4.DrawBuffersEnum bufs) { throw new NotImplementedException(); } + public static void NamedFramebufferDrawBuffers(UInt32 framebuffer, Int32 n, ref OpenTK.Graphics.OpenGL4.DrawBuffersEnum bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33723,7 +33723,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferDrawBuffers")] [CLSCompliant(false)] - public static unsafe void NamedFramebufferDrawBuffers(UInt32 framebuffer, Int32 n, OpenTK.Graphics.OpenGL4.DrawBuffersEnum* bufs) { throw new NotImplementedException(); } + public static unsafe void NamedFramebufferDrawBuffers(UInt32 framebuffer, Int32 n, OpenTK.Graphics.OpenGL4.DrawBuffersEnum* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33731,7 +33731,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferParameteri")] [CLSCompliant(false)] - public static void NamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void NamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33739,21 +33739,21 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferParameteri")] [CLSCompliant(false)] - public static void NamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void NamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferReadBuffer")] [CLSCompliant(false)] - public static void NamedFramebufferReadBuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.ReadBufferMode src) { throw new NotImplementedException(); } + public static void NamedFramebufferReadBuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.ReadBufferMode src) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferReadBuffer")] [CLSCompliant(false)] - public static void NamedFramebufferReadBuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ReadBufferMode src) { throw new NotImplementedException(); } + public static void NamedFramebufferReadBuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ReadBufferMode src) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33762,7 +33762,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferRenderbuffer")] [CLSCompliant(false)] - public static void NamedFramebufferRenderbuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new NotImplementedException(); } + public static void NamedFramebufferRenderbuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33771,7 +33771,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferRenderbuffer")] [CLSCompliant(false)] - public static void NamedFramebufferRenderbuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void NamedFramebufferRenderbuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33780,7 +33780,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferTexture")] [CLSCompliant(false)] - public static void NamedFramebufferTexture(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void NamedFramebufferTexture(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33789,7 +33789,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferTexture")] [CLSCompliant(false)] - public static void NamedFramebufferTexture(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void NamedFramebufferTexture(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33799,7 +33799,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferTextureLayer")] [CLSCompliant(false)] - public static void NamedFramebufferTextureLayer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } + public static void NamedFramebufferTextureLayer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33809,7 +33809,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferTextureLayer")] [CLSCompliant(false)] - public static void NamedFramebufferTextureLayer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } + public static void NamedFramebufferTextureLayer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33818,7 +33818,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedRenderbufferStorage")] [CLSCompliant(false)] - public static void NamedRenderbufferStorage(Int32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorage(Int32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33827,7 +33827,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedRenderbufferStorage")] [CLSCompliant(false)] - public static void NamedRenderbufferStorage(UInt32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorage(UInt32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33837,7 +33837,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedRenderbufferStorageMultisample")] [CLSCompliant(false)] - public static void NamedRenderbufferStorageMultisample(Int32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL4.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorageMultisample(Int32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL4.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33847,35 +33847,35 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedRenderbufferStorageMultisample")] [CLSCompliant(false)] - public static void NamedRenderbufferStorageMultisample(UInt32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL4.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorageMultisample(UInt32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL4.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glNormalP3ui")] [CLSCompliant(false)] - public static void NormalP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 coords) { throw new NotImplementedException(); } + public static void NormalP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glNormalP3ui")] [CLSCompliant(false)] - public static void NormalP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 coords) { throw new NotImplementedException(); } + public static void NormalP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glNormalP3uiv")] [CLSCompliant(false)] - public static unsafe void NormalP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void NormalP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glNormalP3uiv")] [CLSCompliant(false)] - public static unsafe void NormalP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new NotImplementedException(); } + public static unsafe void NormalP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Label a named object identified within a namespace @@ -33894,7 +33894,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glObjectLabel")] [CLSCompliant(false)] - public static void ObjectLabel(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier identifier, Int32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier identifier, Int32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Label a named object identified within a namespace @@ -33913,7 +33913,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glObjectLabel")] [CLSCompliant(false)] - public static void ObjectLabel(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier identifier, UInt32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier identifier, UInt32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Label a a sync object identified by a pointer @@ -33928,7 +33928,7 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a string containing the label to assign to the object. /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glObjectPtrLabel")] - public static void ObjectPtrLabel(IntPtr ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new NotImplementedException(); } + public static void ObjectPtrLabel(IntPtr ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Label a a sync object identified by a pointer @@ -33946,7 +33946,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Label a a sync object identified by a pointer @@ -33964,7 +33964,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Label a a sync object identified by a pointer @@ -33982,7 +33982,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Label a a sync object identified by a pointer @@ -33999,7 +33999,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glObjectPtrLabel")] public static void ObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_tessellation_shader|VERSION_4_0] /// Specifies the parameters for patch primitives @@ -34012,7 +34012,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_tessellation_shader|VERSION_4_0", Version = "4.0", EntryPoint = "glPatchParameterfv")] [CLSCompliant(false)] - public static void PatchParameter(OpenTK.Graphics.OpenGL4.PatchParameterFloat pname, [CountAttribute(Computed = "pname")] Single[] values) { throw new NotImplementedException(); } + public static void PatchParameter(OpenTK.Graphics.OpenGL4.PatchParameterFloat pname, [CountAttribute(Computed = "pname")] Single[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_tessellation_shader|VERSION_4_0] /// Specifies the parameters for patch primitives @@ -34025,7 +34025,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_tessellation_shader|VERSION_4_0", Version = "4.0", EntryPoint = "glPatchParameterfv")] [CLSCompliant(false)] - public static void PatchParameter(OpenTK.Graphics.OpenGL4.PatchParameterFloat pname, [CountAttribute(Computed = "pname")] ref Single values) { throw new NotImplementedException(); } + public static void PatchParameter(OpenTK.Graphics.OpenGL4.PatchParameterFloat pname, [CountAttribute(Computed = "pname")] ref Single values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_tessellation_shader|VERSION_4_0] /// Specifies the parameters for patch primitives @@ -34038,7 +34038,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_tessellation_shader|VERSION_4_0", Version = "4.0", EntryPoint = "glPatchParameterfv")] [CLSCompliant(false)] - public static unsafe void PatchParameter(OpenTK.Graphics.OpenGL4.PatchParameterFloat pname, [CountAttribute(Computed = "pname")] Single* values) { throw new NotImplementedException(); } + public static unsafe void PatchParameter(OpenTK.Graphics.OpenGL4.PatchParameterFloat pname, [CountAttribute(Computed = "pname")] Single* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_tessellation_shader|VERSION_4_0] /// Specifies the parameters for patch primitives @@ -34050,13 +34050,13 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the new value for the parameter given by pname. /// [AutoGenerated(Category = "ARB_tessellation_shader|VERSION_4_0", Version = "4.0", EntryPoint = "glPatchParameteri")] - public static void PatchParameter(OpenTK.Graphics.OpenGL4.PatchParameterInt pname, Int32 value) { throw new NotImplementedException(); } + public static void PatchParameter(OpenTK.Graphics.OpenGL4.PatchParameterInt pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Pause transform feedback operations /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glPauseTransformFeedback")] - public static void PauseTransformFeedback() { throw new NotImplementedException(); } + public static void PauseTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set pixel storage modes @@ -34068,7 +34068,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the value that pname is set to. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelStoref")] - public static void PixelStore(OpenTK.Graphics.OpenGL4.PixelStoreParameter pname, Single param) { throw new NotImplementedException(); } + public static void PixelStore(OpenTK.Graphics.OpenGL4.PixelStoreParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set pixel storage modes @@ -34080,7 +34080,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the value that pname is set to. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelStorei")] - public static void PixelStore(OpenTK.Graphics.OpenGL4.PixelStoreParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void PixelStore(OpenTK.Graphics.OpenGL4.PixelStoreParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Specify point parameters @@ -34092,7 +34092,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For glPointParameterf and glPointParameteri, specifies the value that pname will be set to. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glPointParameterf")] - public static void PointParameter(OpenTK.Graphics.OpenGL4.PointParameterName pname, Single param) { throw new NotImplementedException(); } + public static void PointParameter(OpenTK.Graphics.OpenGL4.PointParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Specify point parameters @@ -34105,7 +34105,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glPointParameterfv")] [CLSCompliant(false)] - public static void PointParameter(OpenTK.Graphics.OpenGL4.PointParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void PointParameter(OpenTK.Graphics.OpenGL4.PointParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Specify point parameters @@ -34118,7 +34118,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glPointParameterfv")] [CLSCompliant(false)] - public static unsafe void PointParameter(OpenTK.Graphics.OpenGL4.PointParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void PointParameter(OpenTK.Graphics.OpenGL4.PointParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Specify point parameters @@ -34130,7 +34130,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For glPointParameterf and glPointParameteri, specifies the value that pname will be set to. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glPointParameteri")] - public static void PointParameter(OpenTK.Graphics.OpenGL4.PointParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void PointParameter(OpenTK.Graphics.OpenGL4.PointParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Specify point parameters @@ -34143,7 +34143,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glPointParameteriv")] [CLSCompliant(false)] - public static void PointParameter(OpenTK.Graphics.OpenGL4.PointParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void PointParameter(OpenTK.Graphics.OpenGL4.PointParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Specify point parameters @@ -34156,7 +34156,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glPointParameteriv")] [CLSCompliant(false)] - public static unsafe void PointParameter(OpenTK.Graphics.OpenGL4.PointParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void PointParameter(OpenTK.Graphics.OpenGL4.PointParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify the diameter of rasterized points @@ -34165,7 +34165,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the diameter of rasterized points. The initial value is 1. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPointSize")] - public static void PointSize(Single size) { throw new NotImplementedException(); } + public static void PointSize(Single size) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Select a polygon rasterization mode @@ -34177,7 +34177,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies how polygons will be rasterized. Accepted values are Point, Line, and Fill. The initial value is Fill for both front- and back-facing polygons. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPolygonMode")] - public static void PolygonMode(OpenTK.Graphics.OpenGL4.MaterialFace face, OpenTK.Graphics.OpenGL4.PolygonMode mode) { throw new NotImplementedException(); } + public static void PolygonMode(OpenTK.Graphics.OpenGL4.MaterialFace face, OpenTK.Graphics.OpenGL4.PolygonMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Set the scale and units used to calculate depth values @@ -34189,20 +34189,20 @@ namespace OpenTK.Graphics.OpenGL4 /// Is multiplied by an implementation-specific value to create a constant depth offset. The initial value is 0. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glPolygonOffset")] - public static void PolygonOffset(Single factor, Single units) { throw new NotImplementedException(); } + public static void PolygonOffset(Single factor, Single units) { throw new BindingsNotRewrittenException(); } /// [requires: v4.6 or ARB_polygon_offset_clamp|VERSION_4_6] /// /// /// [AutoGenerated(Category = "ARB_polygon_offset_clamp|VERSION_4_6", Version = "4.6", EntryPoint = "glPolygonOffsetClamp")] - public static void PolygonOffsetClamp(Single factor, Single units, Single clamp) { throw new NotImplementedException(); } + public static void PolygonOffsetClamp(Single factor, Single units, Single clamp) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Pop the active debug group /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glPopDebugGroup")] - public static void PopDebugGroup() { throw new NotImplementedException(); } + public static void PopDebugGroup() { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Specify the primitive restart index @@ -34212,7 +34212,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glPrimitiveRestartIndex")] [CLSCompliant(false)] - public static void PrimitiveRestartIndex(Int32 index) { throw new NotImplementedException(); } + public static void PrimitiveRestartIndex(Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Specify the primitive restart index @@ -34222,7 +34222,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glPrimitiveRestartIndex")] [CLSCompliant(false)] - public static void PrimitiveRestartIndex(UInt32 index) { throw new NotImplementedException(); } + public static void PrimitiveRestartIndex(UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Load a program object with a program binary @@ -34241,7 +34241,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramBinary")] [CLSCompliant(false)] - public static void ProgramBinary(Int32 program, OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ProgramBinary(Int32 program, OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Load a program object with a program binary @@ -34262,7 +34262,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Load a program object with a program binary @@ -34283,7 +34283,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Load a program object with a program binary @@ -34304,7 +34304,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Load a program object with a program binary @@ -34325,7 +34325,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T2 binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Load a program object with a program binary @@ -34344,7 +34344,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_get_program_binary|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramBinary")] [CLSCompliant(false)] - public static void ProgramBinary(UInt32 program, OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ProgramBinary(UInt32 program, OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Load a program object with a program binary @@ -34365,7 +34365,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Load a program object with a program binary @@ -34386,7 +34386,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Load a program object with a program binary @@ -34407,7 +34407,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Load a program object with a program binary @@ -34428,7 +34428,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T2 binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|ARB_separate_shader_objects|VERSION_4_1|VERSION_4_1] /// Specify a parameter for a program object @@ -34444,7 +34444,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_get_program_binary|ARB_separate_shader_objects|VERSION_4_1|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramParameteri")] [CLSCompliant(false)] - public static void ProgramParameter(Int32 program, OpenTK.Graphics.OpenGL4.ProgramParameterName pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(Int32 program, OpenTK.Graphics.OpenGL4.ProgramParameterName pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|ARB_separate_shader_objects|VERSION_4_1|VERSION_4_1] /// Specify a parameter for a program object @@ -34460,7 +34460,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_get_program_binary|ARB_separate_shader_objects|VERSION_4_1|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramParameteri")] [CLSCompliant(false)] - public static void ProgramParameter(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramParameterName pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramParameterName pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34476,7 +34476,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1d")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Double v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Double v0) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34492,7 +34492,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1d")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Double v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Double v0) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34511,7 +34511,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1dv")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34530,7 +34530,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1dv")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34549,7 +34549,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34568,7 +34568,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1dv")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34587,7 +34587,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1dv")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34606,7 +34606,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34622,7 +34622,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1f")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Single v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34638,7 +34638,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1f")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Single v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34657,7 +34657,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1fv")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34676,7 +34676,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1fv")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34695,7 +34695,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34714,7 +34714,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1fv")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34733,7 +34733,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1fv")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34752,7 +34752,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34768,7 +34768,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1i")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34784,7 +34784,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1i")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34803,7 +34803,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1iv")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34822,7 +34822,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1iv")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34841,7 +34841,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1iv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34860,7 +34860,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1iv")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34879,7 +34879,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1iv")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34898,7 +34898,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1iv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34914,7 +34914,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1ui")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, UInt32 v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, UInt32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34933,7 +34933,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1uiv")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34952,7 +34952,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1uiv")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34971,7 +34971,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform1uiv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34990,7 +34990,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2d")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Double v0, Double v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Double v0, Double v1) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35009,7 +35009,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2d")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Double v0, Double v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Double v0, Double v1) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35028,7 +35028,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2dv")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35047,7 +35047,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2dv")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35066,7 +35066,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35085,7 +35085,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2dv")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35104,7 +35104,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2dv")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35123,7 +35123,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35142,7 +35142,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2f")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35161,7 +35161,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2f")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35180,7 +35180,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2fv")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35199,7 +35199,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2fv")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35218,7 +35218,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35237,7 +35237,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2fv")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35256,7 +35256,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2fv")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35275,7 +35275,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35294,7 +35294,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2i")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35313,7 +35313,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2i")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35332,7 +35332,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2iv")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35351,7 +35351,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2iv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35370,7 +35370,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2iv")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35389,7 +35389,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2iv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35408,7 +35408,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2ui")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, UInt32 v0, UInt32 v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, UInt32 v0, UInt32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35427,7 +35427,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2uiv")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35446,7 +35446,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2uiv")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35465,7 +35465,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform2uiv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35487,7 +35487,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3d")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Double v0, Double v1, Double v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Double v0, Double v1, Double v2) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35509,7 +35509,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3d")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Double v0, Double v1, Double v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Double v0, Double v1, Double v2) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35528,7 +35528,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3dv")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35547,7 +35547,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3dv")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35566,7 +35566,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35585,7 +35585,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3dv")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35604,7 +35604,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3dv")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35623,7 +35623,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35645,7 +35645,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3f")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35667,7 +35667,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3f")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35686,7 +35686,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3fv")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35705,7 +35705,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3fv")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35724,7 +35724,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35743,7 +35743,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3fv")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35762,7 +35762,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3fv")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35781,7 +35781,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35803,7 +35803,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3i")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35825,7 +35825,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3i")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35844,7 +35844,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3iv")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35863,7 +35863,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3iv")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35882,7 +35882,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3iv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35901,7 +35901,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3iv")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35920,7 +35920,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3iv")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35939,7 +35939,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3iv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35961,7 +35961,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3ui")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35980,7 +35980,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3uiv")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35999,7 +35999,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3uiv")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36018,7 +36018,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform3uiv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36043,7 +36043,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4d")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Double v0, Double v1, Double v2, Double v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Double v0, Double v1, Double v2, Double v3) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36068,7 +36068,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4d")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Double v0, Double v1, Double v2, Double v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Double v0, Double v1, Double v2, Double v3) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36087,7 +36087,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4dv")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36106,7 +36106,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4dv")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36125,7 +36125,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36144,7 +36144,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4dv")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36163,7 +36163,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4dv")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36182,7 +36182,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36207,7 +36207,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4f")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36232,7 +36232,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4f")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36251,7 +36251,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4fv")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36270,7 +36270,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4fv")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36289,7 +36289,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36308,7 +36308,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4fv")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36327,7 +36327,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4fv")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36346,7 +36346,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36371,7 +36371,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4i")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36396,7 +36396,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4i")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36415,7 +36415,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4iv")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36434,7 +36434,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4iv")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36453,7 +36453,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4iv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36472,7 +36472,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4iv")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36491,7 +36491,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4iv")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36510,7 +36510,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4iv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36535,7 +36535,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4ui")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36554,7 +36554,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4uiv")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36573,7 +36573,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4uiv")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36592,7 +36592,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniform4uiv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36602,7 +36602,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36612,7 +36612,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36622,7 +36622,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36632,7 +36632,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36642,7 +36642,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36652,7 +36652,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36662,7 +36662,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36672,7 +36672,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36682,7 +36682,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36692,7 +36692,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36702,7 +36702,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36712,7 +36712,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36722,7 +36722,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36732,7 +36732,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36742,7 +36742,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36752,7 +36752,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36762,7 +36762,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36772,7 +36772,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36782,7 +36782,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36792,7 +36792,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36802,7 +36802,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36812,7 +36812,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36822,7 +36822,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36832,7 +36832,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x3fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36842,7 +36842,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36852,7 +36852,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36862,7 +36862,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36872,7 +36872,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36882,7 +36882,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36892,7 +36892,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36902,7 +36902,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36912,7 +36912,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36922,7 +36922,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36932,7 +36932,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36942,7 +36942,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36952,7 +36952,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix2x4fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36962,7 +36962,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36972,7 +36972,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36982,7 +36982,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36992,7 +36992,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37002,7 +37002,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37012,7 +37012,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37022,7 +37022,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37032,7 +37032,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37042,7 +37042,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37052,7 +37052,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37062,7 +37062,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37072,7 +37072,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37082,7 +37082,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37092,7 +37092,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37102,7 +37102,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37112,7 +37112,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37122,7 +37122,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37132,7 +37132,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37142,7 +37142,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37152,7 +37152,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37162,7 +37162,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37172,7 +37172,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37182,7 +37182,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37192,7 +37192,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x2fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37202,7 +37202,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37212,7 +37212,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37222,7 +37222,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37232,7 +37232,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37242,7 +37242,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37252,7 +37252,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37262,7 +37262,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37272,7 +37272,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37282,7 +37282,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37292,7 +37292,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37302,7 +37302,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37312,7 +37312,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix3x4fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37322,7 +37322,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37332,7 +37332,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37342,7 +37342,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37352,7 +37352,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37362,7 +37362,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37372,7 +37372,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37382,7 +37382,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37392,7 +37392,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37402,7 +37402,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37412,7 +37412,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37422,7 +37422,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37432,7 +37432,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37442,7 +37442,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37452,7 +37452,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37462,7 +37462,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37472,7 +37472,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37482,7 +37482,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37492,7 +37492,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37502,7 +37502,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37512,7 +37512,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37522,7 +37522,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37532,7 +37532,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37542,7 +37542,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37552,7 +37552,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x2fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37562,7 +37562,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37572,7 +37572,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37582,7 +37582,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37592,7 +37592,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37602,7 +37602,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3dv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37612,7 +37612,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3dv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37622,7 +37622,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37632,7 +37632,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37642,7 +37642,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37652,7 +37652,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37662,7 +37662,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37672,7 +37672,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramUniformMatrix4x3fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_provoking_vertex|VERSION_3_2] /// Specifiy the vertex to be used as the source of data for flat shaded varyings @@ -37681,7 +37681,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the vertex to be used as the source of data for flat shaded varyings. /// [AutoGenerated(Category = "ARB_provoking_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glProvokingVertex")] - public static void ProvokingVertex(OpenTK.Graphics.OpenGL4.ProvokingVertexMode mode) { throw new NotImplementedException(); } + public static void ProvokingVertex(OpenTK.Graphics.OpenGL4.ProvokingVertexMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Push a named debug group into the command stream @@ -37700,7 +37700,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glPushDebugGroup")] [CLSCompliant(false)] - public static void PushDebugGroup(OpenTK.Graphics.OpenGL4.DebugSourceExternal source, Int32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new NotImplementedException(); } + public static void PushDebugGroup(OpenTK.Graphics.OpenGL4.DebugSourceExternal source, Int32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Push a named debug group into the command stream @@ -37719,7 +37719,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glPushDebugGroup")] [CLSCompliant(false)] - public static void PushDebugGroup(OpenTK.Graphics.OpenGL4.DebugSourceExternal source, UInt32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new NotImplementedException(); } + public static void PushDebugGroup(OpenTK.Graphics.OpenGL4.DebugSourceExternal source, UInt32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Record the GL time into a query object after all previous commands have reached the GL server but have not yet necessarily executed. @@ -37732,7 +37732,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glQueryCounter")] [CLSCompliant(false)] - public static void QueryCounter(Int32 id, OpenTK.Graphics.OpenGL4.QueryCounterTarget target) { throw new NotImplementedException(); } + public static void QueryCounter(Int32 id, OpenTK.Graphics.OpenGL4.QueryCounterTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Record the GL time into a query object after all previous commands have reached the GL server but have not yet necessarily executed. @@ -37745,7 +37745,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_timer_query|VERSION_3_3", Version = "3.3", EntryPoint = "glQueryCounter")] [CLSCompliant(false)] - public static void QueryCounter(UInt32 id, OpenTK.Graphics.OpenGL4.QueryCounterTarget target) { throw new NotImplementedException(); } + public static void QueryCounter(UInt32 id, OpenTK.Graphics.OpenGL4.QueryCounterTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Select a color buffer source for pixels @@ -37754,7 +37754,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a color buffer. Accepted values are FrontLeft, FrontRight, BackLeft, BackRight, Front, Back, Left, Right, and the constants ColorAttachmenti. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glReadBuffer")] - public static void ReadBuffer(OpenTK.Graphics.OpenGL4.ReadBufferMode src) { throw new NotImplementedException(); } + public static void ReadBuffer(OpenTK.Graphics.OpenGL4.ReadBufferMode src) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -37766,7 +37766,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glReadnPixels")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [OutAttribute] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -37781,7 +37781,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -37796,7 +37796,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -37811,7 +37811,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -37825,7 +37825,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glReadnPixels")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Read a block of pixels from the frame buffer @@ -37852,7 +37852,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the pixel data. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glReadPixels")] - public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Read a block of pixels from the frame buffer @@ -37882,7 +37882,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Read a block of pixels from the frame buffer @@ -37912,7 +37912,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Read a block of pixels from the frame buffer @@ -37942,7 +37942,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Read a block of pixels from the frame buffer @@ -37971,13 +37971,13 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glReadPixels")] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T6 pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Release resources consumed by the implementation's shader compiler /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glReleaseShaderCompiler")] - public static void ReleaseShaderCompiler() { throw new NotImplementedException(); } + public static void ReleaseShaderCompiler() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Establish data storage, format and dimensions of a renderbuffer object's image @@ -37995,7 +37995,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glRenderbufferStorage")] - public static void RenderbufferStorage(OpenTK.Graphics.OpenGL4.RenderbufferTarget target, OpenTK.Graphics.OpenGL4.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorage(OpenTK.Graphics.OpenGL4.RenderbufferTarget target, OpenTK.Graphics.OpenGL4.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -38016,7 +38016,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glRenderbufferStorageMultisample")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.OpenGL4.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.OpenGL4.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.OpenGL4.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.OpenGL4.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// /// Reset histogram table entries to zero @@ -38025,7 +38025,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Must be Histogram. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glResetHistogram")] - public static void ResetHistogram(OpenTK.Graphics.OpenGL4.HistogramTarget target) { throw new NotImplementedException(); } + public static void ResetHistogram(OpenTK.Graphics.OpenGL4.HistogramTarget target) { throw new BindingsNotRewrittenException(); } /// /// Reset minmax table entries to initial values @@ -38034,13 +38034,13 @@ namespace OpenTK.Graphics.OpenGL4 /// Must be Minmax. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glResetMinmax")] - public static void ResetMinmax(OpenTK.Graphics.OpenGL4.MinmaxTarget target) { throw new NotImplementedException(); } + public static void ResetMinmax(OpenTK.Graphics.OpenGL4.MinmaxTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Resume transform feedback operations /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glResumeTransformFeedback")] - public static void ResumeTransformFeedback() { throw new NotImplementedException(); } + public static void ResumeTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify multisample coverage parameters @@ -38052,7 +38052,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specify a single boolean value representing if the coverage masks should be inverted. True and False are accepted. The initial value is False. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glSampleCoverage")] - public static void SampleCoverage(Single value, bool invert) { throw new NotImplementedException(); } + public static void SampleCoverage(Single value, bool invert) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Set the value of a sub-word of the sample mask @@ -38065,7 +38065,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glSampleMaski")] [CLSCompliant(false)] - public static void SampleMask(Int32 maskNumber, Int32 mask) { throw new NotImplementedException(); } + public static void SampleMask(Int32 maskNumber, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Set the value of a sub-word of the sample mask @@ -38078,7 +38078,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glSampleMaski")] [CLSCompliant(false)] - public static void SampleMask(UInt32 maskNumber, UInt32 mask) { throw new NotImplementedException(); } + public static void SampleMask(UInt32 maskNumber, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -38094,7 +38094,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterf")] [CLSCompliant(false)] - public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, Single param) { throw new NotImplementedException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -38110,7 +38110,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterf")] [CLSCompliant(false)] - public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, Single param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -38126,7 +38126,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterfv")] [CLSCompliant(false)] - public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -38142,7 +38142,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterfv")] [CLSCompliant(false)] - public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Single* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Single* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -38158,7 +38158,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterfv")] [CLSCompliant(false)] - public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -38174,7 +38174,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterfv")] [CLSCompliant(false)] - public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Single* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Single* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -38190,7 +38190,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameteri")] [CLSCompliant(false)] - public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -38206,7 +38206,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameteri")] [CLSCompliant(false)] - public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -38214,7 +38214,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIiv")] [CLSCompliant(false)] - public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -38222,7 +38222,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIiv")] [CLSCompliant(false)] - public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -38230,7 +38230,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIiv")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -38238,7 +38238,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIiv")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -38246,7 +38246,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIiv")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -38254,7 +38254,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIiv")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -38262,7 +38262,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIuiv")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -38270,7 +38270,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIuiv")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -38278,7 +38278,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIuiv")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -38294,7 +38294,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameteriv")] [CLSCompliant(false)] - public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -38310,7 +38310,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameteriv")] [CLSCompliant(false)] - public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -38326,7 +38326,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameteriv")] [CLSCompliant(false)] - public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -38342,7 +38342,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameteriv")] [CLSCompliant(false)] - public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define the scissor box @@ -38360,7 +38360,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specify the width and height of the scissor box. When a GL context is first attached to a window, width and height are set to the dimensions of that window. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glScissor")] - public static void Scissor(Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void Scissor(Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for multiple viewports @@ -38376,7 +38376,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorArrayv")] [CLSCompliant(false)] - public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for multiple viewports @@ -38392,7 +38392,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorArrayv")] [CLSCompliant(false)] - public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for multiple viewports @@ -38408,7 +38408,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorArrayv")] [CLSCompliant(false)] - public static unsafe void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for multiple viewports @@ -38424,7 +38424,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorArrayv")] [CLSCompliant(false)] - public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for multiple viewports @@ -38440,7 +38440,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorArrayv")] [CLSCompliant(false)] - public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for multiple viewports @@ -38456,7 +38456,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorArrayv")] [CLSCompliant(false)] - public static unsafe void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for a specific viewport @@ -38478,7 +38478,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorIndexed")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for a specific viewport @@ -38500,7 +38500,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorIndexed")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for a specific viewport @@ -38513,7 +38513,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorIndexedv")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for a specific viewport @@ -38526,7 +38526,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorIndexedv")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for a specific viewport @@ -38539,7 +38539,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorIndexedv")] [CLSCompliant(false)] - public static unsafe void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for a specific viewport @@ -38552,7 +38552,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorIndexedv")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for a specific viewport @@ -38565,7 +38565,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorIndexedv")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for a specific viewport @@ -38578,35 +38578,35 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorIndexedv")] [CLSCompliant(false)] - public static unsafe void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glSecondaryColorP3ui")] [CLSCompliant(false)] - public static void SecondaryColorP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 color) { throw new NotImplementedException(); } + public static void SecondaryColorP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 color) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glSecondaryColorP3ui")] [CLSCompliant(false)] - public static void SecondaryColorP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 color) { throw new NotImplementedException(); } + public static void SecondaryColorP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 color) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glSecondaryColorP3uiv")] [CLSCompliant(false)] - public static unsafe void SecondaryColorP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* color) { throw new NotImplementedException(); } + public static unsafe void SecondaryColorP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* color) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glSecondaryColorP3uiv")] [CLSCompliant(false)] - public static unsafe void SecondaryColorP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* color) { throw new NotImplementedException(); } + public static unsafe void SecondaryColorP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* color) { throw new BindingsNotRewrittenException(); } /// /// Define a separable two-dimensional convolution filter @@ -38636,7 +38636,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Pointer to a one-dimensional array of pixel data that is processed to build the column filter kernel. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glSeparableFilter2D")] - public static void SeparableFilter2D(OpenTK.Graphics.OpenGL4.SeparableTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "target,format,type,width")] IntPtr row, [CountAttribute(Computed = "target,format,type,height")] IntPtr column) { throw new NotImplementedException(); } + public static void SeparableFilter2D(OpenTK.Graphics.OpenGL4.SeparableTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "target,format,type,width")] IntPtr row, [CountAttribute(Computed = "target,format,type,height")] IntPtr column) { throw new BindingsNotRewrittenException(); } /// /// Define a separable two-dimensional convolution filter @@ -38670,7 +38670,7 @@ namespace OpenTK.Graphics.OpenGL4 public static void SeparableFilter2D(OpenTK.Graphics.OpenGL4.SeparableTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,width")] T6[] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] T7[] column) where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a separable two-dimensional convolution filter @@ -38704,7 +38704,7 @@ namespace OpenTK.Graphics.OpenGL4 public static void SeparableFilter2D(OpenTK.Graphics.OpenGL4.SeparableTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,width")] T6[,] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] T7[,] column) where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a separable two-dimensional convolution filter @@ -38738,7 +38738,7 @@ namespace OpenTK.Graphics.OpenGL4 public static void SeparableFilter2D(OpenTK.Graphics.OpenGL4.SeparableTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,width")] T6[,,] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] T7[,,] column) where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a separable two-dimensional convolution filter @@ -38771,7 +38771,7 @@ namespace OpenTK.Graphics.OpenGL4 public static void SeparableFilter2D(OpenTK.Graphics.OpenGL4.SeparableTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,width")] ref T6 row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] ref T7 column) where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -38793,7 +38793,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -38817,7 +38817,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -38841,7 +38841,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -38865,7 +38865,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -38889,7 +38889,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -38911,7 +38911,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -38935,7 +38935,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -38959,7 +38959,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -38983,7 +38983,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39007,7 +39007,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39029,7 +39029,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39053,7 +39053,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39077,7 +39077,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39101,7 +39101,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39125,7 +39125,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39147,7 +39147,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39171,7 +39171,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39195,7 +39195,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39219,7 +39219,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39243,7 +39243,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39265,7 +39265,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39289,7 +39289,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39313,7 +39313,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39337,7 +39337,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39361,7 +39361,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39383,7 +39383,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39407,7 +39407,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39431,7 +39431,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39455,7 +39455,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39479,7 +39479,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Replaces the source code in a shader object @@ -39498,7 +39498,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new NotImplementedException(); } + public static void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Replaces the source code in a shader object @@ -39517,7 +39517,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new NotImplementedException(); } + public static void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Replaces the source code in a shader object @@ -39536,7 +39536,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static unsafe void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new NotImplementedException(); } + public static unsafe void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Replaces the source code in a shader object @@ -39555,7 +39555,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new NotImplementedException(); } + public static void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Replaces the source code in a shader object @@ -39574,7 +39574,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new NotImplementedException(); } + public static void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Replaces the source code in a shader object @@ -39593,7 +39593,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static unsafe void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new NotImplementedException(); } + public static unsafe void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_shader_storage_buffer_object|VERSION_4_3] /// Change an active shader storage block binding @@ -39609,7 +39609,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_storage_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glShaderStorageBlockBinding")] [CLSCompliant(false)] - public static void ShaderStorageBlockBinding(Int32 program, Int32 storageBlockIndex, Int32 storageBlockBinding) { throw new NotImplementedException(); } + public static void ShaderStorageBlockBinding(Int32 program, Int32 storageBlockIndex, Int32 storageBlockBinding) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_shader_storage_buffer_object|VERSION_4_3] /// Change an active shader storage block binding @@ -39625,7 +39625,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_storage_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glShaderStorageBlockBinding")] [CLSCompliant(false)] - public static void ShaderStorageBlockBinding(UInt32 program, UInt32 storageBlockIndex, UInt32 storageBlockBinding) { throw new NotImplementedException(); } + public static void ShaderStorageBlockBinding(UInt32 program, UInt32 storageBlockIndex, UInt32 storageBlockBinding) { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -39635,7 +39635,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_6", Version = "4.6", EntryPoint = "glSpecializeShader")] [CLSCompliant(false)] - public static void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, Int32[] pConstantIndex, Int32[] pConstantValue) { throw new NotImplementedException(); } + public static void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, Int32[] pConstantIndex, Int32[] pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -39645,7 +39645,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_6", Version = "4.6", EntryPoint = "glSpecializeShader")] [CLSCompliant(false)] - public static void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, ref Int32 pConstantIndex, ref Int32 pConstantValue) { throw new NotImplementedException(); } + public static void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, ref Int32 pConstantIndex, ref Int32 pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -39655,7 +39655,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_6", Version = "4.6", EntryPoint = "glSpecializeShader")] [CLSCompliant(false)] - public static unsafe void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, Int32* pConstantIndex, Int32* pConstantValue) { throw new NotImplementedException(); } + public static unsafe void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, Int32* pConstantIndex, Int32* pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -39665,7 +39665,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_6", Version = "4.6", EntryPoint = "glSpecializeShader")] [CLSCompliant(false)] - public static void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, UInt32[] pConstantIndex, UInt32[] pConstantValue) { throw new NotImplementedException(); } + public static void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, UInt32[] pConstantIndex, UInt32[] pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -39675,7 +39675,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_6", Version = "4.6", EntryPoint = "glSpecializeShader")] [CLSCompliant(false)] - public static void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, ref UInt32 pConstantIndex, ref UInt32 pConstantValue) { throw new NotImplementedException(); } + public static void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, ref UInt32 pConstantIndex, ref UInt32 pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -39685,7 +39685,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_6", Version = "4.6", EntryPoint = "glSpecializeShader")] [CLSCompliant(false)] - public static unsafe void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, UInt32* pConstantIndex, UInt32* pConstantValue) { throw new NotImplementedException(); } + public static unsafe void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, UInt32* pConstantIndex, UInt32* pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set front and back function and reference value for stencil testing @@ -39701,7 +39701,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glStencilFunc")] [CLSCompliant(false)] - public static void StencilFunc(OpenTK.Graphics.OpenGL4.StencilFunction func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } + public static void StencilFunc(OpenTK.Graphics.OpenGL4.StencilFunction func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set front and back function and reference value for stencil testing @@ -39717,7 +39717,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glStencilFunc")] [CLSCompliant(false)] - public static void StencilFunc(OpenTK.Graphics.OpenGL4.StencilFunction func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFunc(OpenTK.Graphics.OpenGL4.StencilFunction func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Set front and/or back function and reference value for stencil testing @@ -39736,7 +39736,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")] [CLSCompliant(false)] - public static void StencilFuncSeparate(OpenTK.Graphics.OpenGL4.StencilFace face, OpenTK.Graphics.OpenGL4.StencilFunction func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } + public static void StencilFuncSeparate(OpenTK.Graphics.OpenGL4.StencilFace face, OpenTK.Graphics.OpenGL4.StencilFunction func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Set front and/or back function and reference value for stencil testing @@ -39755,7 +39755,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")] [CLSCompliant(false)] - public static void StencilFuncSeparate(OpenTK.Graphics.OpenGL4.StencilFace face, OpenTK.Graphics.OpenGL4.StencilFunction func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFuncSeparate(OpenTK.Graphics.OpenGL4.StencilFace face, OpenTK.Graphics.OpenGL4.StencilFunction func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Control the front and back writing of individual bits in the stencil planes @@ -39765,7 +39765,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glStencilMask")] [CLSCompliant(false)] - public static void StencilMask(Int32 mask) { throw new NotImplementedException(); } + public static void StencilMask(Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Control the front and back writing of individual bits in the stencil planes @@ -39775,7 +39775,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glStencilMask")] [CLSCompliant(false)] - public static void StencilMask(UInt32 mask) { throw new NotImplementedException(); } + public static void StencilMask(UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Control the front and/or back writing of individual bits in the stencil planes @@ -39788,7 +39788,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMaskSeparate")] [CLSCompliant(false)] - public static void StencilMaskSeparate(OpenTK.Graphics.OpenGL4.StencilFace face, Int32 mask) { throw new NotImplementedException(); } + public static void StencilMaskSeparate(OpenTK.Graphics.OpenGL4.StencilFace face, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Control the front and/or back writing of individual bits in the stencil planes @@ -39801,7 +39801,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMaskSeparate")] [CLSCompliant(false)] - public static void StencilMaskSeparate(OpenTK.Graphics.OpenGL4.StencilFace face, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilMaskSeparate(OpenTK.Graphics.OpenGL4.StencilFace face, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set front and back stencil test actions @@ -39816,7 +39816,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the stencil action when both the stencil test and the depth test pass, or when the stencil test passes and either there is no depth buffer or depth testing is not enabled. dppass accepts the same symbolic constants as sfail. The initial value is Keep. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glStencilOp")] - public static void StencilOp(OpenTK.Graphics.OpenGL4.StencilOp fail, OpenTK.Graphics.OpenGL4.StencilOp zfail, OpenTK.Graphics.OpenGL4.StencilOp zpass) { throw new NotImplementedException(); } + public static void StencilOp(OpenTK.Graphics.OpenGL4.StencilOp fail, OpenTK.Graphics.OpenGL4.StencilOp zfail, OpenTK.Graphics.OpenGL4.StencilOp zpass) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Set front and/or back stencil test actions @@ -39834,7 +39834,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the stencil action when both the stencil test and the depth test pass, or when the stencil test passes and either there is no depth buffer or depth testing is not enabled. dppass accepts the same symbolic constants as sfail. The initial value is Keep. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glStencilOpSeparate")] - public static void StencilOpSeparate(OpenTK.Graphics.OpenGL4.StencilFace face, OpenTK.Graphics.OpenGL4.StencilOp sfail, OpenTK.Graphics.OpenGL4.StencilOp dpfail, OpenTK.Graphics.OpenGL4.StencilOp dppass) { throw new NotImplementedException(); } + public static void StencilOpSeparate(OpenTK.Graphics.OpenGL4.StencilFace face, OpenTK.Graphics.OpenGL4.StencilOp sfail, OpenTK.Graphics.OpenGL4.StencilOp dpfail, OpenTK.Graphics.OpenGL4.StencilOp dppass) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Attach the storage for a buffer object to the active buffer texture @@ -39850,7 +39850,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glTexBuffer")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.OpenGL4.TextureBufferTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.OpenGL4.TextureBufferTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Attach the storage for a buffer object to the active buffer texture @@ -39866,7 +39866,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glTexBuffer")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.OpenGL4.TextureBufferTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.OpenGL4.TextureBufferTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_texture_buffer_range|VERSION_4_3] /// Bind a range of a buffer's data store to a buffer texture @@ -39888,7 +39888,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_texture_buffer_range|VERSION_4_3", Version = "4.3", EntryPoint = "glTexBufferRange")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.OpenGL4.TextureBufferTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.OpenGL4.TextureBufferTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_texture_buffer_range|VERSION_4_3] /// Bind a range of a buffer's data store to a buffer texture @@ -39910,7 +39910,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_texture_buffer_range|VERSION_4_3", Version = "4.3", EntryPoint = "glTexBufferRange")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.OpenGL4.TextureBufferTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.OpenGL4.TextureBufferTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_texture_buffer_range|VERSION_4_3] /// Bind a range of a buffer's data store to a buffer texture @@ -39932,7 +39932,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_texture_buffer_range|VERSION_4_3", Version = "4.3", EntryPoint = "glTexBufferRange")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.OpenGL4.TextureBufferTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.OpenGL4.TextureBufferTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_texture_buffer_range|VERSION_4_3] /// Bind a range of a buffer's data store to a buffer texture @@ -39954,119 +39954,119 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_texture_buffer_range|VERSION_4_3", Version = "4.3", EntryPoint = "glTexBufferRange")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.OpenGL4.TextureBufferTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.OpenGL4.TextureBufferTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP1ui")] [CLSCompliant(false)] - public static void TexCoordP1(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 coords) { throw new NotImplementedException(); } + public static void TexCoordP1(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP1ui")] [CLSCompliant(false)] - public static void TexCoordP1(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 coords) { throw new NotImplementedException(); } + public static void TexCoordP1(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP1uiv")] [CLSCompliant(false)] - public static unsafe void TexCoordP1(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoordP1(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP1uiv")] [CLSCompliant(false)] - public static unsafe void TexCoordP1(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoordP1(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP2ui")] [CLSCompliant(false)] - public static void TexCoordP2(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 coords) { throw new NotImplementedException(); } + public static void TexCoordP2(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP2ui")] [CLSCompliant(false)] - public static void TexCoordP2(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 coords) { throw new NotImplementedException(); } + public static void TexCoordP2(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP2uiv")] [CLSCompliant(false)] - public static unsafe void TexCoordP2(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoordP2(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP2uiv")] [CLSCompliant(false)] - public static unsafe void TexCoordP2(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoordP2(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP3ui")] [CLSCompliant(false)] - public static void TexCoordP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 coords) { throw new NotImplementedException(); } + public static void TexCoordP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP3ui")] [CLSCompliant(false)] - public static void TexCoordP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 coords) { throw new NotImplementedException(); } + public static void TexCoordP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP3uiv")] [CLSCompliant(false)] - public static unsafe void TexCoordP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoordP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP3uiv")] [CLSCompliant(false)] - public static unsafe void TexCoordP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoordP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP4ui")] [CLSCompliant(false)] - public static void TexCoordP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 coords) { throw new NotImplementedException(); } + public static void TexCoordP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP4ui")] [CLSCompliant(false)] - public static void TexCoordP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 coords) { throw new NotImplementedException(); } + public static void TexCoordP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP4uiv")] [CLSCompliant(false)] - public static unsafe void TexCoordP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoordP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glTexCoordP4uiv")] [CLSCompliant(false)] - public static unsafe void TexCoordP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoordP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a one-dimensional texture image @@ -40096,7 +40096,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexImage1D")] - public static void TexImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a one-dimensional texture image @@ -40129,7 +40129,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TexImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T7[] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a one-dimensional texture image @@ -40162,7 +40162,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TexImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T7[,] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a one-dimensional texture image @@ -40195,7 +40195,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TexImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T7[,,] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a one-dimensional texture image @@ -40227,7 +40227,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexImage1D")] public static void TexImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T7 pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -40260,7 +40260,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexImage2D")] - public static void TexImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -40296,7 +40296,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -40332,7 +40332,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -40368,7 +40368,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -40403,7 +40403,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexImage2D")] public static void TexImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Establish the data storage, format, dimensions, and number of samples of a multisample texture's image @@ -40427,7 +40427,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies whether the image will use identical sample locations and the same number of samples for all texels in the image, and the sample locations will not depend on the internal format or size of the image. /// [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glTexImage2DMultisample")] - public static void TexImage2DMultisample(OpenTK.Graphics.OpenGL4.TextureTargetMultisample target, Int32 samples, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TexImage2DMultisample(OpenTK.Graphics.OpenGL4.TextureTargetMultisample target, Int32 samples, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Specify a three-dimensional texture image @@ -40463,7 +40463,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glTexImage3D")] - public static void TexImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Specify a three-dimensional texture image @@ -40502,7 +40502,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Specify a three-dimensional texture image @@ -40541,7 +40541,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Specify a three-dimensional texture image @@ -40580,7 +40580,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Specify a three-dimensional texture image @@ -40618,7 +40618,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glTexImage3D")] public static void TexImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Establish the data storage, format, dimensions, and number of samples of a multisample texture's image @@ -40645,7 +40645,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies whether the image will use identical sample locations and the same number of samples for all texels in the image, and the sample locations will not depend on the internal format or size of the image. /// [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glTexImage3DMultisample")] - public static void TexImage3DMultisample(OpenTK.Graphics.OpenGL4.TextureTargetMultisample target, Int32 samples, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TexImage3DMultisample(OpenTK.Graphics.OpenGL4.TextureTargetMultisample target, Int32 samples, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -40660,7 +40660,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the scalar commands, specifies the value of pname. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexParameterf")] - public static void TexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single param) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -40676,7 +40676,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexParameterfv")] [CLSCompliant(false)] - public static void TexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -40692,7 +40692,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexParameterfv")] [CLSCompliant(false)] - public static unsafe void TexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -40707,7 +40707,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the scalar commands, specifies the value of pname. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexParameteri")] - public static void TexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -40715,7 +40715,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glTexParameterIiv")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -40723,7 +40723,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glTexParameterIiv")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -40731,7 +40731,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glTexParameterIiv")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -40739,7 +40739,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glTexParameterIuiv")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -40747,7 +40747,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glTexParameterIuiv")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -40755,7 +40755,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glTexParameterIuiv")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -40771,7 +40771,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexParameteriv")] [CLSCompliant(false)] - public static void TexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -40787,7 +40787,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexParameteriv")] [CLSCompliant(false)] - public static unsafe void TexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_texture_storage|VERSION_4_2] /// Simultaneously specify storage for all levels of a one-dimensional texture @@ -40805,7 +40805,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the width of the texture, in texels. /// [AutoGenerated(Category = "ARB_texture_storage|VERSION_4_2", Version = "4.2", EntryPoint = "glTexStorage1D")] - public static void TexStorage1D(OpenTK.Graphics.OpenGL4.TextureTarget1d target, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TexStorage1D(OpenTK.Graphics.OpenGL4.TextureTarget1d target, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_texture_storage|VERSION_4_2] /// Simultaneously specify storage for all levels of a two-dimensional or one-dimensional array texture @@ -40826,7 +40826,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the height of the texture, in texels. /// [AutoGenerated(Category = "ARB_texture_storage|VERSION_4_2", Version = "4.2", EntryPoint = "glTexStorage2D")] - public static void TexStorage2D(OpenTK.Graphics.OpenGL4.TextureTarget2d target, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TexStorage2D(OpenTK.Graphics.OpenGL4.TextureTarget2d target, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_texture_storage_multisample|VERSION_4_3] /// Specify storage for a two-dimensional multisample texture @@ -40850,7 +40850,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies whether the image will use identical sample locations and the same number of samples for all texels in the image, and the sample locations will not depend on the internal format or size of the image. /// [AutoGenerated(Category = "ARB_texture_storage_multisample|VERSION_4_3", Version = "4.3", EntryPoint = "glTexStorage2DMultisample")] - public static void TexStorage2DMultisample(OpenTK.Graphics.OpenGL4.TextureTargetMultisample2d target, Int32 samples, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TexStorage2DMultisample(OpenTK.Graphics.OpenGL4.TextureTargetMultisample2d target, Int32 samples, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_texture_storage|VERSION_4_2] /// Simultaneously specify storage for all levels of a three-dimensional, two-dimensional array or cube-map array texture @@ -40874,7 +40874,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the depth of the texture, in texels. /// [AutoGenerated(Category = "ARB_texture_storage|VERSION_4_2", Version = "4.2", EntryPoint = "glTexStorage3D")] - public static void TexStorage3D(OpenTK.Graphics.OpenGL4.TextureTarget3d target, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TexStorage3D(OpenTK.Graphics.OpenGL4.TextureTarget3d target, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_texture_storage_multisample|VERSION_4_3] /// Specify storage for a two-dimensional multisample array texture @@ -40901,7 +40901,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies whether the image will use identical sample locations and the same number of samples for all texels in the image, and the sample locations will not depend on the internal format or size of the image. /// [AutoGenerated(Category = "ARB_texture_storage_multisample|VERSION_4_3", Version = "4.3", EntryPoint = "glTexStorage3DMultisample")] - public static void TexStorage3DMultisample(OpenTK.Graphics.OpenGL4.TextureTargetMultisample3d target, Int32 samples, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TexStorage3DMultisample(OpenTK.Graphics.OpenGL4.TextureTargetMultisample3d target, Int32 samples, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Specify a one-dimensional texture subimage @@ -40928,7 +40928,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glTexSubImage1D")] - public static void TexSubImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexSubImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Specify a one-dimensional texture subimage @@ -40958,7 +40958,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TexSubImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T6[] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Specify a one-dimensional texture subimage @@ -40988,7 +40988,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TexSubImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T6[,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Specify a one-dimensional texture subimage @@ -41018,7 +41018,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TexSubImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T6[,,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Specify a one-dimensional texture subimage @@ -41047,7 +41047,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glTexSubImage1D")] public static void TexSubImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T6 pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Specify a two-dimensional texture subimage @@ -41080,7 +41080,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glTexSubImage2D")] - public static void TexSubImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexSubImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Specify a two-dimensional texture subimage @@ -41116,7 +41116,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Specify a two-dimensional texture subimage @@ -41152,7 +41152,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Specify a two-dimensional texture subimage @@ -41188,7 +41188,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Specify a two-dimensional texture subimage @@ -41223,7 +41223,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glTexSubImage2D")] public static void TexSubImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Specify a three-dimensional texture subimage @@ -41262,7 +41262,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glTexSubImage3D")] - public static void TexSubImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexSubImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Specify a three-dimensional texture subimage @@ -41304,7 +41304,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Specify a three-dimensional texture subimage @@ -41346,7 +41346,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Specify a three-dimensional texture subimage @@ -41388,7 +41388,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Specify a three-dimensional texture subimage @@ -41429,11 +41429,11 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glTexSubImage3D")] public static void TexSubImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_texture_barrier|VERSION_4_5] [AutoGenerated(Category = "ARB_texture_barrier|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureBarrier")] - public static void TextureBarrier() { throw new NotImplementedException(); } + public static void TextureBarrier() { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41441,7 +41441,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureBuffer")] [CLSCompliant(false)] - public static void TextureBuffer(Int32 texture, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void TextureBuffer(Int32 texture, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41449,7 +41449,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureBuffer")] [CLSCompliant(false)] - public static void TextureBuffer(UInt32 texture, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void TextureBuffer(UInt32 texture, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41459,7 +41459,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureBufferRange")] [CLSCompliant(false)] - public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41469,7 +41469,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureBufferRange")] [CLSCompliant(false)] - public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41479,7 +41479,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureBufferRange")] [CLSCompliant(false)] - public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41489,7 +41489,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureBufferRange")] [CLSCompliant(false)] - public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41497,7 +41497,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterf")] [CLSCompliant(false)] - public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single param) { throw new NotImplementedException(); } + public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41505,7 +41505,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterf")] [CLSCompliant(false)] - public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single param) { throw new NotImplementedException(); } + public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41513,7 +41513,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterfv")] [CLSCompliant(false)] - public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single[] param) { throw new NotImplementedException(); } + public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41521,7 +41521,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterfv")] [CLSCompliant(false)] - public static unsafe void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single* param) { throw new NotImplementedException(); } + public static unsafe void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41529,7 +41529,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterfv")] [CLSCompliant(false)] - public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single[] param) { throw new NotImplementedException(); } + public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41537,7 +41537,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterfv")] [CLSCompliant(false)] - public static unsafe void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single* param) { throw new NotImplementedException(); } + public static unsafe void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41545,7 +41545,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameteri")] [CLSCompliant(false)] - public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41553,7 +41553,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameteri")] [CLSCompliant(false)] - public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41561,7 +41561,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIiv")] [CLSCompliant(false)] - public static void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.All pname, Int32[] @params) { throw new NotImplementedException(); } + public static void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.All pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41569,7 +41569,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIiv")] [CLSCompliant(false)] - public static void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.All pname, ref Int32 @params) { throw new NotImplementedException(); } + public static void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.All pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41577,7 +41577,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIiv")] [CLSCompliant(false)] - public static unsafe void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.All pname, Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.All pname, Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41585,7 +41585,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIiv")] [CLSCompliant(false)] - public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, Int32[] @params) { throw new NotImplementedException(); } + public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41593,7 +41593,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIiv")] [CLSCompliant(false)] - public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, ref Int32 @params) { throw new NotImplementedException(); } + public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41601,7 +41601,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIiv")] [CLSCompliant(false)] - public static unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41609,7 +41609,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIuiv")] [CLSCompliant(false)] - public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, UInt32[] @params) { throw new NotImplementedException(); } + public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41617,7 +41617,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIuiv")] [CLSCompliant(false)] - public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, ref UInt32 @params) { throw new NotImplementedException(); } + public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41625,7 +41625,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIuiv")] [CLSCompliant(false)] - public static unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41633,7 +41633,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameteriv")] [CLSCompliant(false)] - public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32[] param) { throw new NotImplementedException(); } + public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41641,7 +41641,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameteriv")] [CLSCompliant(false)] - public static unsafe void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32* param) { throw new NotImplementedException(); } + public static unsafe void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41649,7 +41649,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameteriv")] [CLSCompliant(false)] - public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32[] param) { throw new NotImplementedException(); } + public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41657,7 +41657,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameteriv")] [CLSCompliant(false)] - public static unsafe void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32* param) { throw new NotImplementedException(); } + public static unsafe void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41666,7 +41666,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureStorage1D")] [CLSCompliant(false)] - public static void TextureStorage1D(Int32 texture, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TextureStorage1D(Int32 texture, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41675,7 +41675,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureStorage1D")] [CLSCompliant(false)] - public static void TextureStorage1D(UInt32 texture, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TextureStorage1D(UInt32 texture, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41685,7 +41685,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureStorage2D")] [CLSCompliant(false)] - public static void TextureStorage2D(Int32 texture, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TextureStorage2D(Int32 texture, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41695,7 +41695,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureStorage2D")] [CLSCompliant(false)] - public static void TextureStorage2D(UInt32 texture, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TextureStorage2D(UInt32 texture, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41706,7 +41706,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureStorage2DMultisample")] [CLSCompliant(false)] - public static void TextureStorage2DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage2DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41717,7 +41717,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureStorage2DMultisample")] [CLSCompliant(false)] - public static void TextureStorage2DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage2DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41728,7 +41728,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureStorage3D")] [CLSCompliant(false)] - public static void TextureStorage3D(Int32 texture, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TextureStorage3D(Int32 texture, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41739,7 +41739,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureStorage3D")] [CLSCompliant(false)] - public static void TextureStorage3D(UInt32 texture, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TextureStorage3D(UInt32 texture, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41751,7 +41751,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureStorage3DMultisample")] [CLSCompliant(false)] - public static void TextureStorage3DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage3DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41763,7 +41763,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureStorage3DMultisample")] [CLSCompliant(false)] - public static void TextureStorage3DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage3DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41775,7 +41775,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureSubImage1D")] [CLSCompliant(false)] - public static void TextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41789,7 +41789,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T6[] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41803,7 +41803,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T6[,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41817,7 +41817,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T6[,,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41831,7 +41831,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] ref T6 pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41843,7 +41843,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureSubImage1D")] [CLSCompliant(false)] - public static void TextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41857,7 +41857,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T6[] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41871,7 +41871,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T6[,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41885,7 +41885,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T6[,,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41899,7 +41899,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] ref T6 pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41913,7 +41913,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureSubImage2D")] [CLSCompliant(false)] - public static void TextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41929,7 +41929,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41945,7 +41945,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41961,7 +41961,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41977,7 +41977,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41991,7 +41991,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureSubImage2D")] [CLSCompliant(false)] - public static void TextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42007,7 +42007,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42023,7 +42023,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42039,7 +42039,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42055,7 +42055,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42071,7 +42071,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureSubImage3D")] [CLSCompliant(false)] - public static void TextureSubImage3D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureSubImage3D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42089,7 +42089,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage3D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42107,7 +42107,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage3D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42125,7 +42125,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage3D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42143,7 +42143,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage3D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42159,7 +42159,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureSubImage3D")] [CLSCompliant(false)] - public static void TextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42177,7 +42177,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42195,7 +42195,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42213,7 +42213,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42231,7 +42231,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_texture_view|VERSION_4_3] /// Initialize a texture as a data alias of another texture's data store @@ -42262,7 +42262,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_texture_view|VERSION_4_3", Version = "4.3", EntryPoint = "glTextureView")] [CLSCompliant(false)] - public static void TextureView(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 origtexture, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new NotImplementedException(); } + public static void TextureView(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 origtexture, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_texture_view|VERSION_4_3] /// Initialize a texture as a data alias of another texture's data store @@ -42293,7 +42293,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_texture_view|VERSION_4_3", Version = "4.3", EntryPoint = "glTextureView")] [CLSCompliant(false)] - public static void TextureView(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, UInt32 origtexture, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new NotImplementedException(); } + public static void TextureView(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, UInt32 origtexture, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42301,7 +42301,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTransformFeedbackBufferBase")] [CLSCompliant(false)] - public static void TransformFeedbackBufferBase(Int32 xfb, Int32 index, Int32 buffer) { throw new NotImplementedException(); } + public static void TransformFeedbackBufferBase(Int32 xfb, Int32 index, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42309,7 +42309,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTransformFeedbackBufferBase")] [CLSCompliant(false)] - public static void TransformFeedbackBufferBase(UInt32 xfb, UInt32 index, UInt32 buffer) { throw new NotImplementedException(); } + public static void TransformFeedbackBufferBase(UInt32 xfb, UInt32 index, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42319,7 +42319,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTransformFeedbackBufferRange")] [CLSCompliant(false)] - public static void TransformFeedbackBufferRange(Int32 xfb, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TransformFeedbackBufferRange(Int32 xfb, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42329,7 +42329,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTransformFeedbackBufferRange")] [CLSCompliant(false)] - public static void TransformFeedbackBufferRange(Int32 xfb, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TransformFeedbackBufferRange(Int32 xfb, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42339,7 +42339,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTransformFeedbackBufferRange")] [CLSCompliant(false)] - public static void TransformFeedbackBufferRange(UInt32 xfb, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TransformFeedbackBufferRange(UInt32 xfb, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42349,7 +42349,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTransformFeedbackBufferRange")] [CLSCompliant(false)] - public static void TransformFeedbackBufferRange(UInt32 xfb, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TransformFeedbackBufferRange(UInt32 xfb, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify values to record in transform feedback buffers @@ -42368,7 +42368,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glTransformFeedbackVaryings")] [CLSCompliant(false)] - public static void TransformFeedbackVaryings(Int32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.OpenGL4.TransformFeedbackMode bufferMode) { throw new NotImplementedException(); } + public static void TransformFeedbackVaryings(Int32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.OpenGL4.TransformFeedbackMode bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify values to record in transform feedback buffers @@ -42387,7 +42387,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glTransformFeedbackVaryings")] [CLSCompliant(false)] - public static void TransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.OpenGL4.TransformFeedbackMode bufferMode) { throw new NotImplementedException(); } + public static void TransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.OpenGL4.TransformFeedbackMode bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -42399,7 +42399,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector (glUniform*v) commands, specifies the number of elements that are to be modified. This should be 1 if the targeted uniform variable is not an array, and 1 or more if it is an array. For the matrix (glUniformMatrix*) commands, specifies the number of matrices that are to be modified. This should be 1 if the targeted uniform variable is not an array of matrices, and 1 or more if it is an array of matrices. /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform1d")] - public static void Uniform1(Int32 location, Double x) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -42415,7 +42415,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform1dv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Double[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -42431,7 +42431,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform1dv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Double value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -42447,7 +42447,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform1dv")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Double* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -42459,7 +42459,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1f")] - public static void Uniform1(Int32 location, Single v0) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -42475,7 +42475,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1fv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -42491,7 +42491,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1fv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -42507,7 +42507,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1fv")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -42519,7 +42519,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1i")] - public static void Uniform1(Int32 location, Int32 v0) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -42535,7 +42535,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1iv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -42551,7 +42551,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1iv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -42567,7 +42567,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1iv")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -42580,7 +42580,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1ui")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, UInt32 v0) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, UInt32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -42596,7 +42596,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1uiv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -42612,7 +42612,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1uiv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt32 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -42628,7 +42628,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1uiv")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -42643,7 +42643,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the matrix commands, specifies whether to transpose the matrix as the values are loaded into the uniform variable. /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform2d")] - public static void Uniform2(Int32 location, Double x, Double y) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -42659,7 +42659,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform2dv")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -42675,7 +42675,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform2dv")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -42691,7 +42691,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform2dv")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -42706,7 +42706,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2f")] - public static void Uniform2(Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -42722,7 +42722,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2fv")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -42738,7 +42738,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2fv")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -42754,7 +42754,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2fv")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -42769,7 +42769,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2i")] - public static void Uniform2(Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -42785,7 +42785,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2iv")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -42801,7 +42801,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2iv")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -42817,7 +42817,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform2ui")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, UInt32 v0, UInt32 v1) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, UInt32 v0, UInt32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -42833,7 +42833,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform2uiv")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -42849,7 +42849,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform2uiv")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -42865,7 +42865,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform2uiv")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -42883,7 +42883,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform3d")] - public static void Uniform3(Int32 location, Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -42899,7 +42899,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform3dv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -42915,7 +42915,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform3dv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -42931,7 +42931,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform3dv")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -42949,7 +42949,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3f")] - public static void Uniform3(Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -42965,7 +42965,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3fv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -42981,7 +42981,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3fv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -42997,7 +42997,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3fv")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -43015,7 +43015,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3i")] - public static void Uniform3(Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -43031,7 +43031,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3iv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -43047,7 +43047,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3iv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -43063,7 +43063,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3iv")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -43082,7 +43082,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform3ui")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -43098,7 +43098,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform3uiv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -43114,7 +43114,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform3uiv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -43130,7 +43130,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform3uiv")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -43151,7 +43151,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform4d")] - public static void Uniform4(Int32 location, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -43167,7 +43167,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform4dv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -43183,7 +43183,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform4dv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -43199,7 +43199,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform4dv")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -43220,7 +43220,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4f")] - public static void Uniform4(Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -43236,7 +43236,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4fv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -43252,7 +43252,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4fv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -43268,7 +43268,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4fv")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -43289,7 +43289,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4i")] - public static void Uniform4(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -43305,7 +43305,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4iv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -43321,7 +43321,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4iv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -43337,7 +43337,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4iv")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -43359,7 +43359,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform4ui")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -43375,7 +43375,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform4uiv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -43391,7 +43391,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform4uiv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -43407,7 +43407,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform4uiv")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Assign a binding point to an active uniform block @@ -43423,7 +43423,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glUniformBlockBinding")] [CLSCompliant(false)] - public static void UniformBlockBinding(Int32 program, Int32 uniformBlockIndex, Int32 uniformBlockBinding) { throw new NotImplementedException(); } + public static void UniformBlockBinding(Int32 program, Int32 uniformBlockIndex, Int32 uniformBlockBinding) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Assign a binding point to an active uniform block @@ -43439,7 +43439,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_1", Version = "3.1", EntryPoint = "glUniformBlockBinding")] [CLSCompliant(false)] - public static void UniformBlockBinding(UInt32 program, UInt32 uniformBlockIndex, UInt32 uniformBlockBinding) { throw new NotImplementedException(); } + public static void UniformBlockBinding(UInt32 program, UInt32 uniformBlockIndex, UInt32 uniformBlockBinding) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43448,7 +43448,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix2dv")] [CLSCompliant(false)] - public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43457,7 +43457,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix2dv")] [CLSCompliant(false)] - public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new NotImplementedException(); } + public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43466,7 +43466,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix2dv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -43475,7 +43475,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] [CLSCompliant(false)] - public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -43484,7 +43484,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] [CLSCompliant(false)] - public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -43493,7 +43493,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43502,7 +43502,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix2x3dv")] [CLSCompliant(false)] - public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43511,7 +43511,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix2x3dv")] [CLSCompliant(false)] - public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new NotImplementedException(); } + public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43520,7 +43520,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix2x3dv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -43529,7 +43529,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix2x3fv")] [CLSCompliant(false)] - public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -43538,7 +43538,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix2x3fv")] [CLSCompliant(false)] - public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -43547,7 +43547,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix2x3fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43556,7 +43556,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix2x4dv")] [CLSCompliant(false)] - public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43565,7 +43565,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix2x4dv")] [CLSCompliant(false)] - public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new NotImplementedException(); } + public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43574,7 +43574,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix2x4dv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -43583,7 +43583,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix2x4fv")] [CLSCompliant(false)] - public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -43592,7 +43592,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix2x4fv")] [CLSCompliant(false)] - public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -43601,7 +43601,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix2x4fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43610,7 +43610,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix3dv")] [CLSCompliant(false)] - public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43619,7 +43619,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix3dv")] [CLSCompliant(false)] - public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Double value) { throw new NotImplementedException(); } + public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43628,7 +43628,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix3dv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -43637,7 +43637,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] [CLSCompliant(false)] - public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -43646,7 +43646,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] [CLSCompliant(false)] - public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -43655,7 +43655,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43664,7 +43664,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix3x2dv")] [CLSCompliant(false)] - public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43673,7 +43673,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix3x2dv")] [CLSCompliant(false)] - public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new NotImplementedException(); } + public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43682,7 +43682,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix3x2dv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -43691,7 +43691,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix3x2fv")] [CLSCompliant(false)] - public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -43700,7 +43700,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix3x2fv")] [CLSCompliant(false)] - public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -43709,7 +43709,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix3x2fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43718,7 +43718,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix3x4dv")] [CLSCompliant(false)] - public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43727,7 +43727,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix3x4dv")] [CLSCompliant(false)] - public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new NotImplementedException(); } + public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43736,7 +43736,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix3x4dv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -43745,7 +43745,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix3x4fv")] [CLSCompliant(false)] - public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -43754,7 +43754,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix3x4fv")] [CLSCompliant(false)] - public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -43763,7 +43763,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix3x4fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43772,7 +43772,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix4dv")] [CLSCompliant(false)] - public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43781,7 +43781,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix4dv")] [CLSCompliant(false)] - public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Double value) { throw new NotImplementedException(); } + public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43790,7 +43790,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix4dv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -43799,7 +43799,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] [CLSCompliant(false)] - public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -43808,7 +43808,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] [CLSCompliant(false)] - public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -43817,7 +43817,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43826,7 +43826,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix4x2dv")] [CLSCompliant(false)] - public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43835,7 +43835,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix4x2dv")] [CLSCompliant(false)] - public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new NotImplementedException(); } + public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43844,7 +43844,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix4x2dv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -43853,7 +43853,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix4x2fv")] [CLSCompliant(false)] - public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -43862,7 +43862,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix4x2fv")] [CLSCompliant(false)] - public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -43871,7 +43871,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix4x2fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43880,7 +43880,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix4x3dv")] [CLSCompliant(false)] - public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43889,7 +43889,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix4x3dv")] [CLSCompliant(false)] - public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new NotImplementedException(); } + public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43898,7 +43898,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformMatrix4x3dv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -43907,7 +43907,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix4x3fv")] [CLSCompliant(false)] - public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -43916,7 +43916,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix4x3fv")] [CLSCompliant(false)] - public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -43925,7 +43925,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix4x3fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Load active subroutine uniforms @@ -43941,7 +43941,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformSubroutinesuiv")] [CLSCompliant(false)] - public static void UniformSubroutines(OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 count, [CountAttribute(Parameter = "count")] Int32[] indices) { throw new NotImplementedException(); } + public static void UniformSubroutines(OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 count, [CountAttribute(Parameter = "count")] Int32[] indices) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Load active subroutine uniforms @@ -43957,7 +43957,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformSubroutinesuiv")] [CLSCompliant(false)] - public static void UniformSubroutines(OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 indices) { throw new NotImplementedException(); } + public static void UniformSubroutines(OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 indices) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Load active subroutine uniforms @@ -43973,7 +43973,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformSubroutinesuiv")] [CLSCompliant(false)] - public static unsafe void UniformSubroutines(OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 count, [CountAttribute(Parameter = "count")] Int32* indices) { throw new NotImplementedException(); } + public static unsafe void UniformSubroutines(OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 count, [CountAttribute(Parameter = "count")] Int32* indices) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Load active subroutine uniforms @@ -43989,7 +43989,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformSubroutinesuiv")] [CLSCompliant(false)] - public static void UniformSubroutines(OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] indices) { throw new NotImplementedException(); } + public static void UniformSubroutines(OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] indices) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Load active subroutine uniforms @@ -44005,7 +44005,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformSubroutinesuiv")] [CLSCompliant(false)] - public static void UniformSubroutines(OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 indices) { throw new NotImplementedException(); } + public static void UniformSubroutines(OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 indices) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Load active subroutine uniforms @@ -44021,24 +44021,24 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_shader_subroutine|VERSION_4_0", Version = "4.0", EntryPoint = "glUniformSubroutinesuiv")] [CLSCompliant(false)] - public static unsafe void UniformSubroutines(OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 count, [CountAttribute(Parameter = "count")] UInt32* indices) { throw new NotImplementedException(); } + public static unsafe void UniformSubroutines(OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 count, [CountAttribute(Parameter = "count")] UInt32* indices) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glUnmapBuffer")] - public static bool UnmapBuffer(OpenTK.Graphics.OpenGL4.BufferTarget target) { throw new NotImplementedException(); } + public static bool UnmapBuffer(OpenTK.Graphics.OpenGL4.BufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glUnmapNamedBuffer")] [CLSCompliant(false)] - public static bool UnmapNamedBuffer(Int32 buffer) { throw new NotImplementedException(); } + public static bool UnmapNamedBuffer(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glUnmapNamedBuffer")] [CLSCompliant(false)] - public static bool UnmapNamedBuffer(UInt32 buffer) { throw new NotImplementedException(); } + public static bool UnmapNamedBuffer(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Installs a program object as part of current rendering state @@ -44048,7 +44048,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUseProgram")] [CLSCompliant(false)] - public static void UseProgram(Int32 program) { throw new NotImplementedException(); } + public static void UseProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Installs a program object as part of current rendering state @@ -44058,7 +44058,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUseProgram")] [CLSCompliant(false)] - public static void UseProgram(UInt32 program) { throw new NotImplementedException(); } + public static void UseProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Bind stages of a program object to a program pipeline @@ -44074,7 +44074,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glUseProgramStages")] [CLSCompliant(false)] - public static void UseProgramStages(Int32 pipeline, OpenTK.Graphics.OpenGL4.ProgramStageMask stages, Int32 program) { throw new NotImplementedException(); } + public static void UseProgramStages(Int32 pipeline, OpenTK.Graphics.OpenGL4.ProgramStageMask stages, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Bind stages of a program object to a program pipeline @@ -44090,7 +44090,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glUseProgramStages")] [CLSCompliant(false)] - public static void UseProgramStages(UInt32 pipeline, OpenTK.Graphics.OpenGL4.ProgramStageMask stages, UInt32 program) { throw new NotImplementedException(); } + public static void UseProgramStages(UInt32 pipeline, OpenTK.Graphics.OpenGL4.ProgramStageMask stages, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Validates a program object @@ -44100,7 +44100,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glValidateProgram")] [CLSCompliant(false)] - public static void ValidateProgram(Int32 program) { throw new NotImplementedException(); } + public static void ValidateProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Validates a program object @@ -44110,7 +44110,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glValidateProgram")] [CLSCompliant(false)] - public static void ValidateProgram(UInt32 program) { throw new NotImplementedException(); } + public static void ValidateProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Validate a program pipeline object against current GL state @@ -44120,7 +44120,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glValidateProgramPipeline")] [CLSCompliant(false)] - public static void ValidateProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } + public static void ValidateProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Validate a program pipeline object against current GL state @@ -44130,7 +44130,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glValidateProgramPipeline")] [CLSCompliant(false)] - public static void ValidateProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static void ValidateProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44138,7 +44138,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayAttribBinding")] [CLSCompliant(false)] - public static void VertexArrayAttribBinding(Int32 vaobj, Int32 attribindex, Int32 bindingindex) { throw new NotImplementedException(); } + public static void VertexArrayAttribBinding(Int32 vaobj, Int32 attribindex, Int32 bindingindex) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44146,7 +44146,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayAttribBinding")] [CLSCompliant(false)] - public static void VertexArrayAttribBinding(UInt32 vaobj, UInt32 attribindex, UInt32 bindingindex) { throw new NotImplementedException(); } + public static void VertexArrayAttribBinding(UInt32 vaobj, UInt32 attribindex, UInt32 bindingindex) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44157,7 +44157,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayAttribFormat")] [CLSCompliant(false)] - public static void VertexArrayAttribFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribType type, bool normalized, Int32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayAttribFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribType type, bool normalized, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44168,7 +44168,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayAttribFormat")] [CLSCompliant(false)] - public static void VertexArrayAttribFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribType type, bool normalized, UInt32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayAttribFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribType type, bool normalized, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44178,7 +44178,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayAttribIFormat")] [CLSCompliant(false)] - public static void VertexArrayAttribIFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribType type, Int32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayAttribIFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribType type, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44188,7 +44188,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayAttribIFormat")] [CLSCompliant(false)] - public static void VertexArrayAttribIFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribType type, UInt32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayAttribIFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribType type, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44198,7 +44198,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayAttribLFormat")] [CLSCompliant(false)] - public static void VertexArrayAttribLFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayAttribLFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44208,7 +44208,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayAttribLFormat")] [CLSCompliant(false)] - public static void VertexArrayAttribLFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.All type, UInt32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayAttribLFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.All type, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44216,7 +44216,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayBindingDivisor")] [CLSCompliant(false)] - public static void VertexArrayBindingDivisor(Int32 vaobj, Int32 bindingindex, Int32 divisor) { throw new NotImplementedException(); } + public static void VertexArrayBindingDivisor(Int32 vaobj, Int32 bindingindex, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44224,21 +44224,21 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayBindingDivisor")] [CLSCompliant(false)] - public static void VertexArrayBindingDivisor(UInt32 vaobj, UInt32 bindingindex, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexArrayBindingDivisor(UInt32 vaobj, UInt32 bindingindex, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayElementBuffer")] [CLSCompliant(false)] - public static void VertexArrayElementBuffer(Int32 vaobj, Int32 buffer) { throw new NotImplementedException(); } + public static void VertexArrayElementBuffer(Int32 vaobj, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayElementBuffer")] [CLSCompliant(false)] - public static void VertexArrayElementBuffer(UInt32 vaobj, UInt32 buffer) { throw new NotImplementedException(); } + public static void VertexArrayElementBuffer(UInt32 vaobj, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44248,7 +44248,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayVertexBuffer")] [CLSCompliant(false)] - public static void VertexArrayVertexBuffer(Int32 vaobj, Int32 bindingindex, Int32 buffer, IntPtr offset, Int32 stride) { throw new NotImplementedException(); } + public static void VertexArrayVertexBuffer(Int32 vaobj, Int32 bindingindex, Int32 buffer, IntPtr offset, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44258,7 +44258,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayVertexBuffer")] [CLSCompliant(false)] - public static void VertexArrayVertexBuffer(UInt32 vaobj, UInt32 bindingindex, UInt32 buffer, IntPtr offset, Int32 stride) { throw new NotImplementedException(); } + public static void VertexArrayVertexBuffer(UInt32 vaobj, UInt32 bindingindex, UInt32 buffer, IntPtr offset, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44269,7 +44269,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayVertexBuffers")] [CLSCompliant(false)] - public static void VertexArrayVertexBuffers(Int32 vaobj, Int32 first, Int32 count, Int32[] buffers, IntPtr[] offsets, Int32[] strides) { throw new NotImplementedException(); } + public static void VertexArrayVertexBuffers(Int32 vaobj, Int32 first, Int32 count, Int32[] buffers, IntPtr[] offsets, Int32[] strides) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44280,7 +44280,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayVertexBuffers")] [CLSCompliant(false)] - public static void VertexArrayVertexBuffers(Int32 vaobj, Int32 first, Int32 count, ref Int32 buffers, ref IntPtr offsets, ref Int32 strides) { throw new NotImplementedException(); } + public static void VertexArrayVertexBuffers(Int32 vaobj, Int32 first, Int32 count, ref Int32 buffers, ref IntPtr offsets, ref Int32 strides) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44291,7 +44291,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayVertexBuffers")] [CLSCompliant(false)] - public static unsafe void VertexArrayVertexBuffers(Int32 vaobj, Int32 first, Int32 count, Int32* buffers, IntPtr* offsets, Int32* strides) { throw new NotImplementedException(); } + public static unsafe void VertexArrayVertexBuffers(Int32 vaobj, Int32 first, Int32 count, Int32* buffers, IntPtr* offsets, Int32* strides) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44302,7 +44302,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayVertexBuffers")] [CLSCompliant(false)] - public static void VertexArrayVertexBuffers(UInt32 vaobj, UInt32 first, Int32 count, UInt32[] buffers, IntPtr[] offsets, Int32[] strides) { throw new NotImplementedException(); } + public static void VertexArrayVertexBuffers(UInt32 vaobj, UInt32 first, Int32 count, UInt32[] buffers, IntPtr[] offsets, Int32[] strides) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44313,7 +44313,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayVertexBuffers")] [CLSCompliant(false)] - public static void VertexArrayVertexBuffers(UInt32 vaobj, UInt32 first, Int32 count, ref UInt32 buffers, ref IntPtr offsets, ref Int32 strides) { throw new NotImplementedException(); } + public static void VertexArrayVertexBuffers(UInt32 vaobj, UInt32 first, Int32 count, ref UInt32 buffers, ref IntPtr offsets, ref Int32 strides) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44324,7 +44324,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayVertexBuffers")] [CLSCompliant(false)] - public static unsafe void VertexArrayVertexBuffers(UInt32 vaobj, UInt32 first, Int32 count, UInt32* buffers, IntPtr* offsets, Int32* strides) { throw new NotImplementedException(); } + public static unsafe void VertexArrayVertexBuffers(UInt32 vaobj, UInt32 first, Int32 count, UInt32* buffers, IntPtr* offsets, Int32* strides) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44337,7 +44337,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1d")] [CLSCompliant(false)] - public static void VertexAttrib1(Int32 index, Double x) { throw new NotImplementedException(); } + public static void VertexAttrib1(Int32 index, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44350,7 +44350,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1d")] [CLSCompliant(false)] - public static void VertexAttrib1(UInt32 index, Double x) { throw new NotImplementedException(); } + public static void VertexAttrib1(UInt32 index, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44363,7 +44363,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1dv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44376,7 +44376,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1dv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44389,7 +44389,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1f")] [CLSCompliant(false)] - public static void VertexAttrib1(Int32 index, Single x) { throw new NotImplementedException(); } + public static void VertexAttrib1(Int32 index, Single x) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44402,7 +44402,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1f")] [CLSCompliant(false)] - public static void VertexAttrib1(UInt32 index, Single x) { throw new NotImplementedException(); } + public static void VertexAttrib1(UInt32 index, Single x) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44415,7 +44415,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44428,7 +44428,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44441,7 +44441,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1s")] [CLSCompliant(false)] - public static void VertexAttrib1(Int32 index, Int16 x) { throw new NotImplementedException(); } + public static void VertexAttrib1(Int32 index, Int16 x) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44454,7 +44454,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1s")] [CLSCompliant(false)] - public static void VertexAttrib1(UInt32 index, Int16 x) { throw new NotImplementedException(); } + public static void VertexAttrib1(UInt32 index, Int16 x) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44467,7 +44467,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1sv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44480,7 +44480,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1sv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44496,7 +44496,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2d")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, Double x, Double y) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44512,7 +44512,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2d")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, Double x, Double y) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44525,7 +44525,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2dv")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44538,7 +44538,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2dv")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44551,7 +44551,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2dv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44564,7 +44564,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2dv")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44577,7 +44577,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2dv")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44590,7 +44590,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2dv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44606,7 +44606,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2f")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, Single x, Single y) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44622,7 +44622,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2f")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, Single x, Single y) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44635,7 +44635,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44648,7 +44648,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44661,7 +44661,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44674,7 +44674,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44687,7 +44687,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44700,7 +44700,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44716,7 +44716,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2s")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, Int16 x, Int16 y) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, Int16 x, Int16 y) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44732,7 +44732,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2s")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, Int16 x, Int16 y) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, Int16 x, Int16 y) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44745,7 +44745,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2sv")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44758,7 +44758,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2sv")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44771,7 +44771,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2sv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44784,7 +44784,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2sv")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44797,7 +44797,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2sv")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44810,7 +44810,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2sv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44829,7 +44829,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3d")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44848,7 +44848,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3d")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44861,7 +44861,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3dv")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44874,7 +44874,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3dv")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44887,7 +44887,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3dv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44900,7 +44900,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3dv")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44913,7 +44913,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3dv")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44926,7 +44926,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3dv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44945,7 +44945,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3f")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44964,7 +44964,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3f")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44977,7 +44977,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44990,7 +44990,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45003,7 +45003,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45016,7 +45016,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45029,7 +45029,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45042,7 +45042,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45061,7 +45061,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3s")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, Int16 x, Int16 y, Int16 z) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, Int16 x, Int16 y, Int16 z) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45080,7 +45080,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3s")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, Int16 x, Int16 y, Int16 z) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, Int16 x, Int16 y, Int16 z) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45093,7 +45093,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3sv")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45106,7 +45106,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3sv")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45119,7 +45119,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3sv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45132,7 +45132,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3sv")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45145,7 +45145,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3sv")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45158,7 +45158,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3sv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45171,7 +45171,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4bv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] SByte[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] SByte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45184,7 +45184,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4bv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref SByte v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref SByte v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45197,7 +45197,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4bv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] SByte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] SByte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45219,7 +45219,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4d")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45241,7 +45241,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4d")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45254,7 +45254,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4dv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45267,7 +45267,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4dv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45280,7 +45280,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4dv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45293,7 +45293,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4dv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45306,7 +45306,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4dv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45319,7 +45319,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4dv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45341,7 +45341,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4f")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45363,7 +45363,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4f")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45376,7 +45376,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45389,7 +45389,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45402,7 +45402,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45415,7 +45415,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45428,7 +45428,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45441,7 +45441,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45454,7 +45454,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4iv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45467,7 +45467,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4iv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45480,7 +45480,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4iv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45493,7 +45493,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4iv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45506,7 +45506,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4iv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45519,112 +45519,112 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4iv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nbv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] SByte[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] SByte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nbv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref SByte v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref SByte v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nbv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] SByte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] SByte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Niv")] [CLSCompliant(false)] - public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Niv")] [CLSCompliant(false)] - public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Niv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Niv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Niv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Niv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nsv")] [CLSCompliant(false)] - public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nsv")] [CLSCompliant(false)] - public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nsv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nsv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nsv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nsv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -45634,7 +45634,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nub")] [CLSCompliant(false)] - public static void VertexAttrib4N(Int32 index, Byte x, Byte y, Byte z, Byte w) { throw new NotImplementedException(); } + public static void VertexAttrib4N(Int32 index, Byte x, Byte y, Byte z, Byte w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -45644,91 +45644,91 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nub")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, Byte x, Byte y, Byte z, Byte w) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, Byte x, Byte y, Byte z, Byte w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")] [CLSCompliant(false)] - public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")] [CLSCompliant(false)] - public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nuiv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nuiv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nuiv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nusv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nusv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref UInt16 v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref UInt16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nusv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45750,7 +45750,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4s")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, Int16 x, Int16 y, Int16 z, Int16 w) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, Int16 x, Int16 y, Int16 z, Int16 w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45772,7 +45772,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4s")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, Int16 x, Int16 y, Int16 z, Int16 w) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, Int16 x, Int16 y, Int16 z, Int16 w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45785,7 +45785,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4sv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45798,7 +45798,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4sv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45811,7 +45811,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4sv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45824,7 +45824,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4sv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45837,7 +45837,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4sv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45850,7 +45850,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4sv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45863,7 +45863,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45876,7 +45876,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45889,7 +45889,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45902,7 +45902,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45915,7 +45915,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45928,7 +45928,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45941,7 +45941,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4uiv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45954,7 +45954,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4uiv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45967,7 +45967,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4uiv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45980,7 +45980,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4usv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45993,7 +45993,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4usv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref UInt16 v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref UInt16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -46006,7 +46006,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4usv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// Associate a vertex attribute and a vertex buffer binding @@ -46019,7 +46019,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glVertexAttribBinding")] [CLSCompliant(false)] - public static void VertexAttribBinding(Int32 attribindex, Int32 bindingindex) { throw new NotImplementedException(); } + public static void VertexAttribBinding(Int32 attribindex, Int32 bindingindex) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// Associate a vertex attribute and a vertex buffer binding @@ -46032,7 +46032,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glVertexAttribBinding")] [CLSCompliant(false)] - public static void VertexAttribBinding(UInt32 attribindex, UInt32 bindingindex) { throw new NotImplementedException(); } + public static void VertexAttribBinding(UInt32 attribindex, UInt32 bindingindex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -46045,7 +46045,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribDivisor")] [CLSCompliant(false)] - public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -46058,7 +46058,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribDivisor")] [CLSCompliant(false)] - public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// Specify the organization of vertex arrays @@ -46080,7 +46080,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glVertexAttribFormat")] [CLSCompliant(false)] - public static void VertexAttribFormat(Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribType type, bool normalized, Int32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexAttribFormat(Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribType type, bool normalized, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// Specify the organization of vertex arrays @@ -46102,49 +46102,49 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glVertexAttribFormat")] [CLSCompliant(false)] - public static void VertexAttribFormat(UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribType type, bool normalized, UInt32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexAttribFormat(UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribType type, bool normalized, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI1i")] [CLSCompliant(false)] - public static void VertexAttribI1(Int32 index, Int32 x) { throw new NotImplementedException(); } + public static void VertexAttribI1(Int32 index, Int32 x) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI1i")] [CLSCompliant(false)] - public static void VertexAttribI1(UInt32 index, Int32 x) { throw new NotImplementedException(); } + public static void VertexAttribI1(UInt32 index, Int32 x) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 1] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI1iv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI1(Int32 index, [CountAttribute(Count = 1)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI1(Int32 index, [CountAttribute(Count = 1)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 1] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI1iv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI1(UInt32 index, [CountAttribute(Count = 1)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI1(UInt32 index, [CountAttribute(Count = 1)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI1ui")] [CLSCompliant(false)] - public static void VertexAttribI1(UInt32 index, UInt32 x) { throw new NotImplementedException(); } + public static void VertexAttribI1(UInt32 index, UInt32 x) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 1] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI1uiv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI1(UInt32 index, [CountAttribute(Count = 1)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI1(UInt32 index, [CountAttribute(Count = 1)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -46152,7 +46152,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2i")] [CLSCompliant(false)] - public static void VertexAttribI2(Int32 index, Int32 x, Int32 y) { throw new NotImplementedException(); } + public static void VertexAttribI2(Int32 index, Int32 x, Int32 y) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -46160,49 +46160,49 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2i")] [CLSCompliant(false)] - public static void VertexAttribI2(UInt32 index, Int32 x, Int32 y) { throw new NotImplementedException(); } + public static void VertexAttribI2(UInt32 index, Int32 x, Int32 y) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 2] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2iv")] [CLSCompliant(false)] - public static void VertexAttribI2(Int32 index, [CountAttribute(Count = 2)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI2(Int32 index, [CountAttribute(Count = 2)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 2] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2iv")] [CLSCompliant(false)] - public static void VertexAttribI2(Int32 index, [CountAttribute(Count = 2)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI2(Int32 index, [CountAttribute(Count = 2)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 2] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2iv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI2(Int32 index, [CountAttribute(Count = 2)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI2(Int32 index, [CountAttribute(Count = 2)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 2] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2iv")] [CLSCompliant(false)] - public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 2] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2iv")] [CLSCompliant(false)] - public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 2] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2iv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -46210,28 +46210,28 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2ui")] [CLSCompliant(false)] - public static void VertexAttribI2(UInt32 index, UInt32 x, UInt32 y) { throw new NotImplementedException(); } + public static void VertexAttribI2(UInt32 index, UInt32 x, UInt32 y) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 2] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2uiv")] [CLSCompliant(false)] - public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] UInt32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 2] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2uiv")] [CLSCompliant(false)] - public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] ref UInt32 v) { throw new NotImplementedException(); } + public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 2] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2uiv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -46240,7 +46240,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3i")] [CLSCompliant(false)] - public static void VertexAttribI3(Int32 index, Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void VertexAttribI3(Int32 index, Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -46249,49 +46249,49 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3i")] [CLSCompliant(false)] - public static void VertexAttribI3(UInt32 index, Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void VertexAttribI3(UInt32 index, Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 3] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3iv")] [CLSCompliant(false)] - public static void VertexAttribI3(Int32 index, [CountAttribute(Count = 3)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI3(Int32 index, [CountAttribute(Count = 3)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 3] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3iv")] [CLSCompliant(false)] - public static void VertexAttribI3(Int32 index, [CountAttribute(Count = 3)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI3(Int32 index, [CountAttribute(Count = 3)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 3] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3iv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI3(Int32 index, [CountAttribute(Count = 3)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI3(Int32 index, [CountAttribute(Count = 3)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 3] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3iv")] [CLSCompliant(false)] - public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 3] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3iv")] [CLSCompliant(false)] - public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 3] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3iv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -46300,49 +46300,49 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3ui")] [CLSCompliant(false)] - public static void VertexAttribI3(UInt32 index, UInt32 x, UInt32 y, UInt32 z) { throw new NotImplementedException(); } + public static void VertexAttribI3(UInt32 index, UInt32 x, UInt32 y, UInt32 z) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 3] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3uiv")] [CLSCompliant(false)] - public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] UInt32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 3] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3uiv")] [CLSCompliant(false)] - public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] ref UInt32 v) { throw new NotImplementedException(); } + public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 3] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3uiv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4bv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] SByte[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] SByte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4bv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref SByte v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref SByte v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4bv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] SByte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] SByte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -46352,7 +46352,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4i")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -46362,133 +46362,133 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4i")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4sv")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4sv")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4sv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4sv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4sv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4sv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -46498,49 +46498,49 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ui")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4uiv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4uiv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4uiv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4usv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt16[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4usv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref UInt16 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref UInt16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4usv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// @@ -46549,7 +46549,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glVertexAttribIFormat")] [CLSCompliant(false)] - public static void VertexAttribIFormat(Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribIntegerType type, Int32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexAttribIFormat(Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribIntegerType type, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// @@ -46558,7 +46558,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glVertexAttribIFormat")] [CLSCompliant(false)] - public static void VertexAttribIFormat(UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribIntegerType type, UInt32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexAttribIFormat(UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribIntegerType type, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -46568,7 +46568,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(size,type,stride)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] [CLSCompliant(false)] - public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribIntegerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribIntegerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -46580,7 +46580,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -46592,7 +46592,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -46604,7 +46604,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -46616,7 +46616,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -46626,7 +46626,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(size,type,stride)] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] [CLSCompliant(false)] - public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribIntegerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribIntegerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -46638,7 +46638,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -46650,7 +46650,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -46662,7 +46662,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -46674,35 +46674,35 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL1d")] [CLSCompliant(false)] - public static void VertexAttribL1(Int32 index, Double x) { throw new NotImplementedException(); } + public static void VertexAttribL1(Int32 index, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL1d")] [CLSCompliant(false)] - public static void VertexAttribL1(UInt32 index, Double x) { throw new NotImplementedException(); } + public static void VertexAttribL1(UInt32 index, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL1dv")] [CLSCompliant(false)] - public static unsafe void VertexAttribL1(Int32 index, [CountAttribute(Count = 1)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL1(Int32 index, [CountAttribute(Count = 1)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL1dv")] [CLSCompliant(false)] - public static unsafe void VertexAttribL1(UInt32 index, [CountAttribute(Count = 1)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL1(UInt32 index, [CountAttribute(Count = 1)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -46710,7 +46710,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2d")] [CLSCompliant(false)] - public static void VertexAttribL2(Int32 index, Double x, Double y) { throw new NotImplementedException(); } + public static void VertexAttribL2(Int32 index, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -46718,49 +46718,49 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2d")] [CLSCompliant(false)] - public static void VertexAttribL2(UInt32 index, Double x, Double y) { throw new NotImplementedException(); } + public static void VertexAttribL2(UInt32 index, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 2] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2dv")] [CLSCompliant(false)] - public static void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 2] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2dv")] [CLSCompliant(false)] - public static void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 2] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2dv")] [CLSCompliant(false)] - public static unsafe void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 2] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2dv")] [CLSCompliant(false)] - public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 2] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2dv")] [CLSCompliant(false)] - public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 2] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2dv")] [CLSCompliant(false)] - public static unsafe void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -46769,7 +46769,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3d")] [CLSCompliant(false)] - public static void VertexAttribL3(Int32 index, Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void VertexAttribL3(Int32 index, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -46778,49 +46778,49 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3d")] [CLSCompliant(false)] - public static void VertexAttribL3(UInt32 index, Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void VertexAttribL3(UInt32 index, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 3] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3dv")] [CLSCompliant(false)] - public static void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 3] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3dv")] [CLSCompliant(false)] - public static void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 3] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3dv")] [CLSCompliant(false)] - public static unsafe void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 3] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3dv")] [CLSCompliant(false)] - public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 3] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3dv")] [CLSCompliant(false)] - public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 3] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3dv")] [CLSCompliant(false)] - public static unsafe void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -46830,7 +46830,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4d")] [CLSCompliant(false)] - public static void VertexAttribL4(Int32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void VertexAttribL4(Int32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -46840,49 +46840,49 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4d")] [CLSCompliant(false)] - public static void VertexAttribL4(UInt32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void VertexAttribL4(UInt32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4dv")] [CLSCompliant(false)] - public static void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4dv")] [CLSCompliant(false)] - public static void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4dv")] [CLSCompliant(false)] - public static unsafe void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4dv")] [CLSCompliant(false)] - public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4dv")] [CLSCompliant(false)] - public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4dv")] [CLSCompliant(false)] - public static unsafe void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// @@ -46891,7 +46891,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glVertexAttribLFormat")] [CLSCompliant(false)] - public static void VertexAttribLFormat(Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribDoubleType type, Int32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexAttribLFormat(Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribDoubleType type, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// @@ -46900,7 +46900,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glVertexAttribLFormat")] [CLSCompliant(false)] - public static void VertexAttribLFormat(UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribDoubleType type, UInt32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexAttribLFormat(UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribDoubleType type, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -46910,7 +46910,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: size] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribLPointer")] [CLSCompliant(false)] - public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribDoubleType type, Int32 stride, [CountAttribute(Parameter = "size")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribDoubleType type, Int32 stride, [CountAttribute(Parameter = "size")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -46922,7 +46922,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -46934,7 +46934,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -46946,7 +46946,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -46958,7 +46958,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -46968,7 +46968,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: size] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribLPointer")] [CLSCompliant(false)] - public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribDoubleType type, Int32 stride, [CountAttribute(Parameter = "size")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribDoubleType type, Int32 stride, [CountAttribute(Parameter = "size")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -46980,7 +46980,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -46992,7 +46992,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -47004,7 +47004,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -47016,7 +47016,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -47025,7 +47025,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP1ui")] [CLSCompliant(false)] - public static void VertexAttribP1(Int32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, Int32 value) { throw new NotImplementedException(); } + public static void VertexAttribP1(Int32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -47034,7 +47034,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP1ui")] [CLSCompliant(false)] - public static void VertexAttribP1(UInt32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, UInt32 value) { throw new NotImplementedException(); } + public static void VertexAttribP1(UInt32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -47043,7 +47043,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP1uiv")] [CLSCompliant(false)] - public static unsafe void VertexAttribP1(Int32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void VertexAttribP1(Int32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -47052,7 +47052,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP1uiv")] [CLSCompliant(false)] - public static unsafe void VertexAttribP1(UInt32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void VertexAttribP1(UInt32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -47061,7 +47061,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP2ui")] [CLSCompliant(false)] - public static void VertexAttribP2(Int32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, Int32 value) { throw new NotImplementedException(); } + public static void VertexAttribP2(Int32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -47070,7 +47070,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP2ui")] [CLSCompliant(false)] - public static void VertexAttribP2(UInt32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, UInt32 value) { throw new NotImplementedException(); } + public static void VertexAttribP2(UInt32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -47079,7 +47079,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP2uiv")] [CLSCompliant(false)] - public static unsafe void VertexAttribP2(Int32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void VertexAttribP2(Int32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -47088,7 +47088,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP2uiv")] [CLSCompliant(false)] - public static unsafe void VertexAttribP2(UInt32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void VertexAttribP2(UInt32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -47097,7 +47097,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP3ui")] [CLSCompliant(false)] - public static void VertexAttribP3(Int32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, Int32 value) { throw new NotImplementedException(); } + public static void VertexAttribP3(Int32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -47106,7 +47106,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP3ui")] [CLSCompliant(false)] - public static void VertexAttribP3(UInt32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, UInt32 value) { throw new NotImplementedException(); } + public static void VertexAttribP3(UInt32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -47115,7 +47115,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP3uiv")] [CLSCompliant(false)] - public static unsafe void VertexAttribP3(Int32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void VertexAttribP3(Int32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -47124,7 +47124,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP3uiv")] [CLSCompliant(false)] - public static unsafe void VertexAttribP3(UInt32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void VertexAttribP3(UInt32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -47133,7 +47133,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP4ui")] [CLSCompliant(false)] - public static void VertexAttribP4(Int32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, Int32 value) { throw new NotImplementedException(); } + public static void VertexAttribP4(Int32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -47142,7 +47142,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP4ui")] [CLSCompliant(false)] - public static void VertexAttribP4(UInt32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, UInt32 value) { throw new NotImplementedException(); } + public static void VertexAttribP4(UInt32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -47151,7 +47151,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP4uiv")] [CLSCompliant(false)] - public static unsafe void VertexAttribP4(Int32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void VertexAttribP4(Int32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -47160,7 +47160,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribP4uiv")] [CLSCompliant(false)] - public static unsafe void VertexAttribP4(UInt32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void VertexAttribP4(UInt32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Define an array of generic vertex attribute data @@ -47185,7 +47185,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] [CLSCompliant(false)] - public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribPointerType type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribPointerType type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Define an array of generic vertex attribute data @@ -47212,7 +47212,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Define an array of generic vertex attribute data @@ -47239,7 +47239,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Define an array of generic vertex attribute data @@ -47266,7 +47266,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Define an array of generic vertex attribute data @@ -47293,7 +47293,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T5 pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Define an array of generic vertex attribute data @@ -47318,7 +47318,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] [CLSCompliant(false)] - public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribPointerType type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribPointerType type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Define an array of generic vertex attribute data @@ -47345,7 +47345,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Define an array of generic vertex attribute data @@ -47372,7 +47372,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Define an array of generic vertex attribute data @@ -47399,7 +47399,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Define an array of generic vertex attribute data @@ -47426,7 +47426,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T5 pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// Modify the rate at which generic vertex attributes advance @@ -47439,7 +47439,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glVertexBindingDivisor")] [CLSCompliant(false)] - public static void VertexBindingDivisor(Int32 bindingindex, Int32 divisor) { throw new NotImplementedException(); } + public static void VertexBindingDivisor(Int32 bindingindex, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// Modify the rate at which generic vertex attributes advance @@ -47452,91 +47452,91 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_attrib_binding|VERSION_4_3", Version = "4.3", EntryPoint = "glVertexBindingDivisor")] [CLSCompliant(false)] - public static void VertexBindingDivisor(UInt32 bindingindex, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexBindingDivisor(UInt32 bindingindex, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP2ui")] [CLSCompliant(false)] - public static void VertexP2(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 value) { throw new NotImplementedException(); } + public static void VertexP2(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP2ui")] [CLSCompliant(false)] - public static void VertexP2(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 value) { throw new NotImplementedException(); } + public static void VertexP2(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP2uiv")] [CLSCompliant(false)] - public static unsafe void VertexP2(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void VertexP2(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP2uiv")] [CLSCompliant(false)] - public static unsafe void VertexP2(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void VertexP2(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP3ui")] [CLSCompliant(false)] - public static void VertexP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 value) { throw new NotImplementedException(); } + public static void VertexP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP3ui")] [CLSCompliant(false)] - public static void VertexP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 value) { throw new NotImplementedException(); } + public static void VertexP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP3uiv")] [CLSCompliant(false)] - public static unsafe void VertexP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void VertexP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP3uiv")] [CLSCompliant(false)] - public static unsafe void VertexP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void VertexP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP4ui")] [CLSCompliant(false)] - public static void VertexP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 value) { throw new NotImplementedException(); } + public static void VertexP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP4ui")] [CLSCompliant(false)] - public static void VertexP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 value) { throw new NotImplementedException(); } + public static void VertexP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP4uiv")] [CLSCompliant(false)] - public static unsafe void VertexP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void VertexP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_type_2_10_10_10_rev|VERSION_3_3", Version = "3.3", EntryPoint = "glVertexP4uiv")] [CLSCompliant(false)] - public static unsafe void VertexP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void VertexP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set the viewport @@ -47554,7 +47554,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specify the width and height of the viewport. When a GL context is first attached to a window, width and height are set to the dimensions of that window. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glViewport")] - public static void Viewport(Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void Viewport(Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set multiple viewports @@ -47570,7 +47570,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportArrayv")] [CLSCompliant(false)] - public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new NotImplementedException(); } + public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set multiple viewports @@ -47586,7 +47586,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportArrayv")] [CLSCompliant(false)] - public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new NotImplementedException(); } + public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set multiple viewports @@ -47602,7 +47602,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportArrayv")] [CLSCompliant(false)] - public static unsafe void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set multiple viewports @@ -47618,7 +47618,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportArrayv")] [CLSCompliant(false)] - public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new NotImplementedException(); } + public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set multiple viewports @@ -47634,7 +47634,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportArrayv")] [CLSCompliant(false)] - public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new NotImplementedException(); } + public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set multiple viewports @@ -47650,7 +47650,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportArrayv")] [CLSCompliant(false)] - public static unsafe void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set a specified viewport @@ -47672,7 +47672,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportIndexedf")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, Single x, Single y, Single w, Single h) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, Single x, Single y, Single w, Single h) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set a specified viewport @@ -47694,7 +47694,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportIndexedf")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, Single x, Single y, Single w, Single h) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, Single x, Single y, Single w, Single h) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set a specified viewport @@ -47707,7 +47707,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportIndexedfv")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set a specified viewport @@ -47720,7 +47720,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportIndexedfv")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set a specified viewport @@ -47733,7 +47733,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportIndexedfv")] [CLSCompliant(false)] - public static unsafe void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set a specified viewport @@ -47746,7 +47746,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportIndexedfv")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set a specified viewport @@ -47759,7 +47759,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportIndexedfv")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set a specified viewport @@ -47772,7 +47772,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportIndexedfv")] [CLSCompliant(false)] - public static unsafe void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -47788,7 +47788,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glWaitSync")] [CLSCompliant(false)] - public static void WaitSync(IntPtr sync, OpenTK.Graphics.OpenGL4.WaitSyncFlags flags, Int64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, OpenTK.Graphics.OpenGL4.WaitSyncFlags flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -47804,7 +47804,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glWaitSync")] [CLSCompliant(false)] - public static void WaitSync(IntPtr sync, OpenTK.Graphics.OpenGL4.WaitSyncFlags flags, UInt64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, OpenTK.Graphics.OpenGL4.WaitSyncFlags flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } public static partial class Ext { @@ -47812,13 +47812,13 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveProgramEXT")] [CLSCompliant(false)] - public static void ActiveProgram(Int32 program) { throw new NotImplementedException(); } + public static void ActiveProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveProgramEXT")] [CLSCompliant(false)] - public static void ActiveProgram(UInt32 program) { throw new NotImplementedException(); } + public static void ActiveProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Set the active program object for a program pipeline object @@ -47831,7 +47831,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveShaderProgramEXT")] [CLSCompliant(false)] - public static void ActiveShaderProgram(Int32 pipeline, Int32 program) { throw new NotImplementedException(); } + public static void ActiveShaderProgram(Int32 pipeline, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Set the active program object for a program pipeline object @@ -47844,7 +47844,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveShaderProgramEXT")] [CLSCompliant(false)] - public static void ActiveShaderProgram(UInt32 pipeline, UInt32 program) { throw new NotImplementedException(); } + public static void ActiveShaderProgram(UInt32 pipeline, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -47852,7 +47852,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glBindMultiTextureEXT")] [CLSCompliant(false)] - public static void BindMultiTexture(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 texture) { throw new NotImplementedException(); } + public static void BindMultiTexture(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -47860,7 +47860,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glBindMultiTextureEXT")] [CLSCompliant(false)] - public static void BindMultiTexture(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, UInt32 texture) { throw new NotImplementedException(); } + public static void BindMultiTexture(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind a program pipeline to the current context @@ -47870,7 +47870,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glBindProgramPipelineEXT")] [CLSCompliant(false)] - public static void BindProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } + public static void BindProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind a program pipeline to the current context @@ -47880,21 +47880,21 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glBindProgramPipelineEXT")] [CLSCompliant(false)] - public static void BindProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static void BindProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCheckNamedFramebufferStatusEXT")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All CheckNamedFramebufferStatus(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferTarget target) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL4.All CheckNamedFramebufferStatus(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCheckNamedFramebufferStatusEXT")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All CheckNamedFramebufferStatus(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferTarget target) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL4.All CheckNamedFramebufferStatus(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -47905,7 +47905,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -47918,7 +47918,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -47931,7 +47931,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -47944,7 +47944,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -47957,7 +47957,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -47967,7 +47967,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -47979,7 +47979,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -47991,7 +47991,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48003,7 +48003,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48015,7 +48015,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48026,7 +48026,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48039,7 +48039,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48052,7 +48052,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48065,7 +48065,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48078,7 +48078,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48088,7 +48088,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48100,7 +48100,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48112,7 +48112,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48124,7 +48124,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48136,7 +48136,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48149,7 +48149,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48164,7 +48164,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48179,7 +48179,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48194,7 +48194,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48209,7 +48209,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48222,7 +48222,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48237,7 +48237,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48252,7 +48252,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48267,7 +48267,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48282,7 +48282,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48295,7 +48295,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48310,7 +48310,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48325,7 +48325,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48340,7 +48340,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48355,7 +48355,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48368,7 +48368,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48383,7 +48383,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48398,7 +48398,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48413,7 +48413,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48428,7 +48428,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48440,7 +48440,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48454,7 +48454,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48468,7 +48468,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48482,7 +48482,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48496,7 +48496,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48508,7 +48508,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48522,7 +48522,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48536,7 +48536,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48550,7 +48550,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48564,7 +48564,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48577,7 +48577,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48592,7 +48592,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48607,7 +48607,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48622,7 +48622,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48637,7 +48637,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48650,7 +48650,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48665,7 +48665,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48680,7 +48680,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48695,7 +48695,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48710,7 +48710,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48723,7 +48723,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48738,7 +48738,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48753,7 +48753,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48768,7 +48768,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48783,7 +48783,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48796,7 +48796,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48811,7 +48811,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48826,7 +48826,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48841,7 +48841,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48856,7 +48856,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48868,7 +48868,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48882,7 +48882,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48896,7 +48896,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48910,7 +48910,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48924,7 +48924,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48936,7 +48936,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48950,7 +48950,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48964,7 +48964,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48978,7 +48978,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48992,12 +48992,12 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClientAttribDefaultEXT")] - public static void ClientAttribDefault(OpenTK.Graphics.OpenGL4.ClientAttribMask mask) { throw new NotImplementedException(); } + public static void ClientAttribDefault(OpenTK.Graphics.OpenGL4.ClientAttribMask mask) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49009,7 +49009,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage1DEXT")] - public static void CompressedMultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedMultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49024,7 +49024,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedMultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49039,7 +49039,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedMultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49054,7 +49054,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedMultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49068,7 +49068,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage1DEXT")] public static void CompressedMultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49081,7 +49081,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage2DEXT")] - public static void CompressedMultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedMultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49097,7 +49097,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedMultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49113,7 +49113,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedMultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49129,7 +49129,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedMultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49144,7 +49144,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage2DEXT")] public static void CompressedMultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49158,7 +49158,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage3DEXT")] - public static void CompressedMultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedMultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49175,7 +49175,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedMultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49192,7 +49192,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedMultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49209,7 +49209,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedMultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49225,7 +49225,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage3DEXT")] public static void CompressedMultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T9 bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49237,7 +49237,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexSubImage1DEXT")] - public static void CompressedMultiTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedMultiTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49252,7 +49252,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedMultiTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49267,7 +49267,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedMultiTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49282,7 +49282,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedMultiTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49296,7 +49296,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexSubImage1DEXT")] public static void CompressedMultiTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49310,7 +49310,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexSubImage2DEXT")] - public static void CompressedMultiTexSubImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedMultiTexSubImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49327,7 +49327,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedMultiTexSubImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49344,7 +49344,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedMultiTexSubImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49361,7 +49361,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedMultiTexSubImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49377,7 +49377,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexSubImage2DEXT")] public static void CompressedMultiTexSubImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T9 bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49393,7 +49393,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexSubImage3DEXT")] - public static void CompressedMultiTexSubImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedMultiTexSubImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49412,7 +49412,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedMultiTexSubImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T11[] bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49431,7 +49431,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedMultiTexSubImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T11[,] bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49450,7 +49450,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedMultiTexSubImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T11[,,] bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49468,7 +49468,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexSubImage3DEXT")] public static void CompressedMultiTexSubImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T11 bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49481,7 +49481,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage1DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49496,7 +49496,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49511,7 +49511,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49526,7 +49526,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49541,7 +49541,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49554,7 +49554,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage1DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49569,7 +49569,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49584,7 +49584,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49599,7 +49599,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49614,7 +49614,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49628,7 +49628,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage2DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49644,7 +49644,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49660,7 +49660,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49676,7 +49676,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49692,7 +49692,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49706,7 +49706,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage2DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49722,7 +49722,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49738,7 +49738,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49754,7 +49754,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49770,7 +49770,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49785,7 +49785,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage3DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49802,7 +49802,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49819,7 +49819,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49836,7 +49836,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49853,7 +49853,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T9 bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49868,7 +49868,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage3DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49885,7 +49885,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49902,7 +49902,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49919,7 +49919,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49936,7 +49936,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T9 bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49949,7 +49949,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage1DEXT")] [CLSCompliant(false)] - public static void CompressedTextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49964,7 +49964,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49979,7 +49979,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49994,7 +49994,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50009,7 +50009,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50022,7 +50022,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage1DEXT")] [CLSCompliant(false)] - public static void CompressedTextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50037,7 +50037,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50052,7 +50052,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50067,7 +50067,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50082,7 +50082,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50097,7 +50097,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage2DEXT")] [CLSCompliant(false)] - public static void CompressedTextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50114,7 +50114,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50131,7 +50131,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50148,7 +50148,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50165,7 +50165,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T9 bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50180,7 +50180,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage2DEXT")] [CLSCompliant(false)] - public static void CompressedTextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50197,7 +50197,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50214,7 +50214,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50231,7 +50231,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50248,7 +50248,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T9 bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50265,7 +50265,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage3DEXT")] [CLSCompliant(false)] - public static void CompressedTextureSubImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50284,7 +50284,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T11[] bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50303,7 +50303,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T11[,] bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50322,7 +50322,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T11[,,] bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50341,7 +50341,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T11 bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50358,7 +50358,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage3DEXT")] [CLSCompliant(false)] - public static void CompressedTextureSubImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50377,7 +50377,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T11[] bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50396,7 +50396,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T11[,] bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50415,7 +50415,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T11[,,] bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50434,7 +50434,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T11 bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50446,7 +50446,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyMultiTexImage1DEXT")] - public static void CopyMultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new NotImplementedException(); } + public static void CopyMultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50459,7 +50459,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyMultiTexImage2DEXT")] - public static void CopyMultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new NotImplementedException(); } + public static void CopyMultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50470,7 +50470,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyMultiTexSubImage1DEXT")] - public static void CopyMultiTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyMultiTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50483,7 +50483,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyMultiTexSubImage2DEXT")] - public static void CopyMultiTexSubImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyMultiTexSubImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50497,7 +50497,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyMultiTexSubImage3DEXT")] - public static void CopyMultiTexSubImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyMultiTexSubImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50510,7 +50510,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureImage1DEXT")] [CLSCompliant(false)] - public static void CopyTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new NotImplementedException(); } + public static void CopyTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50523,7 +50523,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureImage1DEXT")] [CLSCompliant(false)] - public static void CopyTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new NotImplementedException(); } + public static void CopyTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50537,7 +50537,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureImage2DEXT")] [CLSCompliant(false)] - public static void CopyTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new NotImplementedException(); } + public static void CopyTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50551,7 +50551,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureImage2DEXT")] [CLSCompliant(false)] - public static void CopyTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new NotImplementedException(); } + public static void CopyTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50563,7 +50563,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureSubImage1DEXT")] [CLSCompliant(false)] - public static void CopyTextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyTextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50575,7 +50575,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureSubImage1DEXT")] [CLSCompliant(false)] - public static void CopyTextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyTextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50589,7 +50589,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureSubImage2DEXT")] [CLSCompliant(false)] - public static void CopyTextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50603,7 +50603,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureSubImage2DEXT")] [CLSCompliant(false)] - public static void CopyTextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50618,7 +50618,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureSubImage3DEXT")] [CLSCompliant(false)] - public static void CopyTextureSubImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTextureSubImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50633,7 +50633,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureSubImage3DEXT")] [CLSCompliant(false)] - public static void CopyTextureSubImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTextureSubImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Create a stand-alone program from an array of null-terminated source code strings @@ -50645,7 +50645,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the number of source code strings in the array strings. /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glCreateShaderProgramEXT")] - public static Int32 CreateShaderProgram(OpenTK.Graphics.OpenGL4.All type, String @string) { throw new NotImplementedException(); } + public static Int32 CreateShaderProgram(OpenTK.Graphics.OpenGL4.All type, String @string) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Create a stand-alone program from an array of null-terminated source code strings @@ -50660,7 +50660,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array of pointers to source code strings from which to create the program object. /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glCreateShaderProgramvEXT")] - public static Int32 CreateShaderProgram(OpenTK.Graphics.OpenGL4.All type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new NotImplementedException(); } + public static Int32 CreateShaderProgram(OpenTK.Graphics.OpenGL4.All type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -50670,7 +50670,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] Int32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -50680,7 +50680,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] UInt32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -50693,7 +50693,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -50706,7 +50706,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -50719,7 +50719,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32* pipelines) { throw new NotImplementedException(); } + public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -50732,7 +50732,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -50745,7 +50745,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -50758,77 +50758,77 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new NotImplementedException(); } + public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glDisableClientStateiEXT")] [CLSCompliant(false)] - public static void DisableClientState(OpenTK.Graphics.OpenGL4.ArrayCap array, Int32 index) { throw new NotImplementedException(); } + public static void DisableClientState(OpenTK.Graphics.OpenGL4.ArrayCap array, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glDisableClientStateiEXT")] [CLSCompliant(false)] - public static void DisableClientState(OpenTK.Graphics.OpenGL4.ArrayCap array, UInt32 index) { throw new NotImplementedException(); } + public static void DisableClientState(OpenTK.Graphics.OpenGL4.ArrayCap array, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glDisableClientStateIndexedEXT")] [CLSCompliant(false)] - public static void DisableClientStateIndexed(OpenTK.Graphics.OpenGL4.ArrayCap array, Int32 index) { throw new NotImplementedException(); } + public static void DisableClientStateIndexed(OpenTK.Graphics.OpenGL4.ArrayCap array, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glDisableClientStateIndexedEXT")] [CLSCompliant(false)] - public static void DisableClientStateIndexed(OpenTK.Graphics.OpenGL4.ArrayCap array, UInt32 index) { throw new NotImplementedException(); } + public static void DisableClientStateIndexed(OpenTK.Graphics.OpenGL4.ArrayCap array, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glDisableIndexedEXT")] [CLSCompliant(false)] - public static void DisableIndexed(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, Int32 index) { throw new NotImplementedException(); } + public static void DisableIndexed(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glDisableIndexedEXT")] [CLSCompliant(false)] - public static void DisableIndexed(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, UInt32 index) { throw new NotImplementedException(); } + public static void DisableIndexed(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glDisableVertexArrayAttribEXT")] [CLSCompliant(false)] - public static void DisableVertexArrayAttrib(Int32 vaobj, Int32 index) { throw new NotImplementedException(); } + public static void DisableVertexArrayAttrib(Int32 vaobj, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glDisableVertexArrayAttribEXT")] [CLSCompliant(false)] - public static void DisableVertexArrayAttrib(UInt32 vaobj, UInt32 index) { throw new NotImplementedException(); } + public static void DisableVertexArrayAttrib(UInt32 vaobj, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glDisableVertexArrayEXT")] [CLSCompliant(false)] - public static void DisableVertexArray(Int32 vaobj, OpenTK.Graphics.OpenGL4.EnableCap array) { throw new NotImplementedException(); } + public static void DisableVertexArray(Int32 vaobj, OpenTK.Graphics.OpenGL4.EnableCap array) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glDisableVertexArrayEXT")] [CLSCompliant(false)] - public static void DisableVertexArray(UInt32 vaobj, OpenTK.Graphics.OpenGL4.EnableCap array) { throw new NotImplementedException(); } + public static void DisableVertexArray(UInt32 vaobj, OpenTK.Graphics.OpenGL4.EnableCap array) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced] /// Draw multiple instances of a range of elements @@ -50846,7 +50846,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "EXT_draw_instanced", Version = "", EntryPoint = "glDrawArraysInstancedEXT")] - public static void DrawArraysInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 start, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 start, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced] /// Draw multiple instances of a set of elements @@ -50867,7 +50867,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "EXT_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] - public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced] /// Draw multiple instances of a set of elements @@ -50891,7 +50891,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced] /// Draw multiple instances of a set of elements @@ -50915,7 +50915,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced] /// Draw multiple instances of a set of elements @@ -50939,7 +50939,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced] /// Draw multiple instances of a set of elements @@ -50962,7 +50962,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "EXT_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Enable or disable client-side capability @@ -50973,7 +50973,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glEnableClientStateiEXT")] [CLSCompliant(false)] - public static void EnableClientState(OpenTK.Graphics.OpenGL4.ArrayCap array, Int32 index) { throw new NotImplementedException(); } + public static void EnableClientState(OpenTK.Graphics.OpenGL4.ArrayCap array, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Enable or disable client-side capability @@ -50984,63 +50984,63 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glEnableClientStateiEXT")] [CLSCompliant(false)] - public static void EnableClientState(OpenTK.Graphics.OpenGL4.ArrayCap array, UInt32 index) { throw new NotImplementedException(); } + public static void EnableClientState(OpenTK.Graphics.OpenGL4.ArrayCap array, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glEnableClientStateIndexedEXT")] [CLSCompliant(false)] - public static void EnableClientStateIndexed(OpenTK.Graphics.OpenGL4.ArrayCap array, Int32 index) { throw new NotImplementedException(); } + public static void EnableClientStateIndexed(OpenTK.Graphics.OpenGL4.ArrayCap array, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glEnableClientStateIndexedEXT")] [CLSCompliant(false)] - public static void EnableClientStateIndexed(OpenTK.Graphics.OpenGL4.ArrayCap array, UInt32 index) { throw new NotImplementedException(); } + public static void EnableClientStateIndexed(OpenTK.Graphics.OpenGL4.ArrayCap array, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glEnableIndexedEXT")] [CLSCompliant(false)] - public static void EnableIndexed(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, Int32 index) { throw new NotImplementedException(); } + public static void EnableIndexed(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glEnableIndexedEXT")] [CLSCompliant(false)] - public static void EnableIndexed(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, UInt32 index) { throw new NotImplementedException(); } + public static void EnableIndexed(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glEnableVertexArrayAttribEXT")] [CLSCompliant(false)] - public static void EnableVertexArrayAttrib(Int32 vaobj, Int32 index) { throw new NotImplementedException(); } + public static void EnableVertexArrayAttrib(Int32 vaobj, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glEnableVertexArrayAttribEXT")] [CLSCompliant(false)] - public static void EnableVertexArrayAttrib(UInt32 vaobj, UInt32 index) { throw new NotImplementedException(); } + public static void EnableVertexArrayAttrib(UInt32 vaobj, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glEnableVertexArrayEXT")] [CLSCompliant(false)] - public static void EnableVertexArray(Int32 vaobj, OpenTK.Graphics.OpenGL4.EnableCap array) { throw new NotImplementedException(); } + public static void EnableVertexArray(Int32 vaobj, OpenTK.Graphics.OpenGL4.EnableCap array) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glEnableVertexArrayEXT")] [CLSCompliant(false)] - public static void EnableVertexArray(UInt32 vaobj, OpenTK.Graphics.OpenGL4.EnableCap array) { throw new NotImplementedException(); } + public static void EnableVertexArray(UInt32 vaobj, OpenTK.Graphics.OpenGL4.EnableCap array) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51048,7 +51048,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFlushMappedNamedBufferRangeEXT")] [CLSCompliant(false)] - public static void FlushMappedNamedBufferRange(Int32 buffer, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void FlushMappedNamedBufferRange(Int32 buffer, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51056,7 +51056,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFlushMappedNamedBufferRangeEXT")] [CLSCompliant(false)] - public static void FlushMappedNamedBufferRange(Int32 buffer, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void FlushMappedNamedBufferRange(Int32 buffer, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51064,7 +51064,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFlushMappedNamedBufferRangeEXT")] [CLSCompliant(false)] - public static void FlushMappedNamedBufferRange(UInt32 buffer, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void FlushMappedNamedBufferRange(UInt32 buffer, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51072,21 +51072,21 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFlushMappedNamedBufferRangeEXT")] [CLSCompliant(false)] - public static void FlushMappedNamedBufferRange(UInt32 buffer, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void FlushMappedNamedBufferRange(UInt32 buffer, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferDrawBufferEXT")] [CLSCompliant(false)] - public static void FramebufferDrawBuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.DrawBufferMode mode) { throw new NotImplementedException(); } + public static void FramebufferDrawBuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.DrawBufferMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferDrawBufferEXT")] [CLSCompliant(false)] - public static void FramebufferDrawBuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.DrawBufferMode mode) { throw new NotImplementedException(); } + public static void FramebufferDrawBuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.DrawBufferMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51094,7 +51094,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: n] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferDrawBuffersEXT")] [CLSCompliant(false)] - public static void FramebufferDrawBuffers(Int32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL4.DrawBufferMode[] bufs) { throw new NotImplementedException(); } + public static void FramebufferDrawBuffers(Int32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL4.DrawBufferMode[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51102,7 +51102,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: n] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferDrawBuffersEXT")] [CLSCompliant(false)] - public static void FramebufferDrawBuffers(Int32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.OpenGL4.DrawBufferMode bufs) { throw new NotImplementedException(); } + public static void FramebufferDrawBuffers(Int32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.OpenGL4.DrawBufferMode bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51110,7 +51110,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: n] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferDrawBuffersEXT")] [CLSCompliant(false)] - public static unsafe void FramebufferDrawBuffers(Int32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL4.DrawBufferMode* bufs) { throw new NotImplementedException(); } + public static unsafe void FramebufferDrawBuffers(Int32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL4.DrawBufferMode* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51118,7 +51118,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: n] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferDrawBuffersEXT")] [CLSCompliant(false)] - public static void FramebufferDrawBuffers(UInt32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL4.DrawBufferMode[] bufs) { throw new NotImplementedException(); } + public static void FramebufferDrawBuffers(UInt32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL4.DrawBufferMode[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51126,7 +51126,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: n] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferDrawBuffersEXT")] [CLSCompliant(false)] - public static void FramebufferDrawBuffers(UInt32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.OpenGL4.DrawBufferMode bufs) { throw new NotImplementedException(); } + public static void FramebufferDrawBuffers(UInt32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.OpenGL4.DrawBufferMode bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51134,48 +51134,48 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: n] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferDrawBuffersEXT")] [CLSCompliant(false)] - public static unsafe void FramebufferDrawBuffers(UInt32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL4.DrawBufferMode* bufs) { throw new NotImplementedException(); } + public static unsafe void FramebufferDrawBuffers(UInt32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL4.DrawBufferMode* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferReadBufferEXT")] [CLSCompliant(false)] - public static void FramebufferReadBuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.ReadBufferMode mode) { throw new NotImplementedException(); } + public static void FramebufferReadBuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.ReadBufferMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferReadBufferEXT")] [CLSCompliant(false)] - public static void FramebufferReadBuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ReadBufferMode mode) { throw new NotImplementedException(); } + public static void FramebufferReadBuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ReadBufferMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGenerateMultiTexMipmapEXT")] - public static void GenerateMultiTexMipmap(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target) { throw new NotImplementedException(); } + public static void GenerateMultiTexMipmap(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGenerateTextureMipmapEXT")] [CLSCompliant(false)] - public static void GenerateTextureMipmap(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target) { throw new NotImplementedException(); } + public static void GenerateTextureMipmap(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGenerateTextureMipmapEXT")] [CLSCompliant(false)] - public static void GenerateTextureMipmap(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target) { throw new NotImplementedException(); } + public static void GenerateTextureMipmap(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static Int32 GenProgramPipeline() { throw new NotImplementedException(); } + public static Int32 GenProgramPipeline() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -51188,7 +51188,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -51201,7 +51201,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -51214,7 +51214,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* pipelines) { throw new NotImplementedException(); } + public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -51227,7 +51227,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -51240,7 +51240,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -51253,7 +51253,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new NotImplementedException(); } + public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51261,7 +51261,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] [CLSCompliant(false)] - public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new NotImplementedException(); } + public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51269,7 +51269,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] [CLSCompliant(false)] - public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new NotImplementedException(); } + public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51277,7 +51277,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetBooleanIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBooleanIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51285,7 +51285,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] [CLSCompliant(false)] - public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new NotImplementedException(); } + public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51293,7 +51293,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] [CLSCompliant(false)] - public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new NotImplementedException(); } + public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51301,7 +51301,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetBooleanIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBooleanIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51309,7 +51309,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: COMPSIZE(target,lod)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetCompressedMultiTexImageEXT")] - public static void GetCompressedMultiTexImage(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, [OutAttribute, CountAttribute(Computed = "target,lod")] IntPtr img) { throw new NotImplementedException(); } + public static void GetCompressedMultiTexImage(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, [OutAttribute, CountAttribute(Computed = "target,lod")] IntPtr img) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51320,7 +51320,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedMultiTexImage(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] T3[] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51331,7 +51331,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedMultiTexImage(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] T3[,] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51342,7 +51342,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedMultiTexImage(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] T3[,,] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51352,7 +51352,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetCompressedMultiTexImageEXT")] public static void GetCompressedMultiTexImage(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] ref T3 img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51361,7 +51361,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target,lod)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetCompressedTextureImageEXT")] [CLSCompliant(false)] - public static void GetCompressedTextureImage(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, [OutAttribute, CountAttribute(Computed = "target,lod")] IntPtr img) { throw new NotImplementedException(); } + public static void GetCompressedTextureImage(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, [OutAttribute, CountAttribute(Computed = "target,lod")] IntPtr img) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51372,7 +51372,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureImage(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] T3[] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51383,7 +51383,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureImage(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] T3[,] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51394,7 +51394,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureImage(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] T3[,,] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51405,7 +51405,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureImage(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] ref T3 img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51414,7 +51414,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target,lod)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetCompressedTextureImageEXT")] [CLSCompliant(false)] - public static void GetCompressedTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, [OutAttribute, CountAttribute(Computed = "target,lod")] IntPtr img) { throw new NotImplementedException(); } + public static void GetCompressedTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, [OutAttribute, CountAttribute(Computed = "target,lod")] IntPtr img) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51425,7 +51425,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] T3[] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51436,7 +51436,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] T3[,] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51447,7 +51447,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] T3[,,] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51458,7 +51458,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] ref T3 img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51466,7 +51466,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoublei_vEXT")] [CLSCompliant(false)] - public static void GetDouble(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new NotImplementedException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51474,7 +51474,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoublei_vEXT")] [CLSCompliant(false)] - public static void GetDouble(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new NotImplementedException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51482,7 +51482,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoublei_vEXT")] [CLSCompliant(false)] - public static unsafe void GetDouble(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetDouble(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51490,7 +51490,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoublei_vEXT")] [CLSCompliant(false)] - public static void GetDouble(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new NotImplementedException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51498,7 +51498,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoublei_vEXT")] [CLSCompliant(false)] - public static void GetDouble(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new NotImplementedException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51506,7 +51506,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoublei_vEXT")] [CLSCompliant(false)] - public static unsafe void GetDouble(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetDouble(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51514,7 +51514,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] [CLSCompliant(false)] - public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Double[] data) { throw new NotImplementedException(); } + public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Double[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51522,7 +51522,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] [CLSCompliant(false)] - public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Double data) { throw new NotImplementedException(); } + public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Double data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51530,7 +51530,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetDoubleIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Double* data) { throw new NotImplementedException(); } + public static unsafe void GetDoubleIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Double* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51538,7 +51538,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] [CLSCompliant(false)] - public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Double[] data) { throw new NotImplementedException(); } + public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Double[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51546,7 +51546,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] [CLSCompliant(false)] - public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Double data) { throw new NotImplementedException(); } + public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Double data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51554,7 +51554,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetDoubleIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Double* data) { throw new NotImplementedException(); } + public static unsafe void GetDoubleIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Double* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51562,7 +51562,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloati_vEXT")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51570,7 +51570,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloati_vEXT")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51578,7 +51578,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloati_vEXT")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51586,7 +51586,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloati_vEXT")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51594,7 +51594,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloati_vEXT")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51602,7 +51602,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloati_vEXT")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51610,7 +51610,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] [CLSCompliant(false)] - public static void GetFloatIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloatIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51618,7 +51618,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] [CLSCompliant(false)] - public static void GetFloatIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new NotImplementedException(); } + public static void GetFloatIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51626,7 +51626,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetFloatIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloatIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51634,7 +51634,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] [CLSCompliant(false)] - public static void GetFloatIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloatIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51642,7 +51642,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] [CLSCompliant(false)] - public static void GetFloatIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new NotImplementedException(); } + public static void GetFloatIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51650,7 +51650,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetFloatIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloatIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Retrieve a named parameter from a framebuffer @@ -51666,7 +51666,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Retrieve a named parameter from a framebuffer @@ -51682,7 +51682,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Retrieve a named parameter from a framebuffer @@ -51698,7 +51698,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Retrieve a named parameter from a framebuffer @@ -51714,7 +51714,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Retrieve a named parameter from a framebuffer @@ -51730,7 +51730,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Retrieve a named parameter from a framebuffer @@ -51746,7 +51746,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51754,7 +51754,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetIntegerIndexedvEXT")] [CLSCompliant(false)] - public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new NotImplementedException(); } + public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51762,7 +51762,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetIntegerIndexedvEXT")] [CLSCompliant(false)] - public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new NotImplementedException(); } + public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51770,7 +51770,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetIntegerIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetIntegerIndexed(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetIntegerIndexed(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51778,7 +51778,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetIntegerIndexedvEXT")] [CLSCompliant(false)] - public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new NotImplementedException(); } + public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51786,7 +51786,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetIntegerIndexedvEXT")] [CLSCompliant(false)] - public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new NotImplementedException(); } + public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51794,7 +51794,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetIntegerIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetIntegerIndexed(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetIntegerIndexed(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51803,7 +51803,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexEnvfvEXT")] [CLSCompliant(false)] - public static void GetMultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51812,7 +51812,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexEnvfvEXT")] [CLSCompliant(false)] - public static void GetMultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetMultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51821,7 +51821,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexEnvfvEXT")] [CLSCompliant(false)] - public static unsafe void GetMultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51830,7 +51830,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexEnvivEXT")] [CLSCompliant(false)] - public static void GetMultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51839,7 +51839,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexEnvivEXT")] [CLSCompliant(false)] - public static void GetMultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51848,7 +51848,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexEnvivEXT")] [CLSCompliant(false)] - public static unsafe void GetMultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51857,7 +51857,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexGendvEXT")] [CLSCompliant(false)] - public static void GetMultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51866,7 +51866,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexGendvEXT")] [CLSCompliant(false)] - public static void GetMultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new NotImplementedException(); } + public static void GetMultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51875,7 +51875,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexGendvEXT")] [CLSCompliant(false)] - public static unsafe void GetMultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51884,7 +51884,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexGenfvEXT")] [CLSCompliant(false)] - public static void GetMultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51893,7 +51893,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexGenfvEXT")] [CLSCompliant(false)] - public static void GetMultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetMultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51902,7 +51902,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexGenfvEXT")] [CLSCompliant(false)] - public static unsafe void GetMultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51911,7 +51911,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexGenivEXT")] [CLSCompliant(false)] - public static void GetMultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51920,7 +51920,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexGenivEXT")] [CLSCompliant(false)] - public static void GetMultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51929,7 +51929,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexGenivEXT")] [CLSCompliant(false)] - public static unsafe void GetMultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51939,7 +51939,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: COMPSIZE(target,level,format,type)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexImageEXT")] - public static void GetMultiTexImage(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,level,format,type")] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetMultiTexImage(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,level,format,type")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51952,7 +51952,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetMultiTexImage(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] T5[] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51965,7 +51965,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetMultiTexImage(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] T5[,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51978,7 +51978,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetMultiTexImage(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] T5[,,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51990,7 +51990,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexImageEXT")] public static void GetMultiTexImage(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] ref T5 pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52000,7 +52000,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexLevelParameterfvEXT")] [CLSCompliant(false)] - public static void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52010,7 +52010,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexLevelParameterfvEXT")] [CLSCompliant(false)] - public static void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52020,7 +52020,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexLevelParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52030,7 +52030,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexLevelParameterivEXT")] [CLSCompliant(false)] - public static void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52040,7 +52040,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexLevelParameterivEXT")] [CLSCompliant(false)] - public static void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52050,7 +52050,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexLevelParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52059,7 +52059,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterfvEXT")] [CLSCompliant(false)] - public static void GetMultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52068,7 +52068,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterfvEXT")] [CLSCompliant(false)] - public static void GetMultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetMultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52077,7 +52077,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void GetMultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52086,7 +52086,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterIivEXT")] [CLSCompliant(false)] - public static void GetMultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52095,7 +52095,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterIivEXT")] [CLSCompliant(false)] - public static void GetMultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52104,7 +52104,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void GetMultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52113,7 +52113,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterIuivEXT")] [CLSCompliant(false)] - public static void GetMultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52122,7 +52122,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterIuivEXT")] [CLSCompliant(false)] - public static void GetMultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetMultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52131,7 +52131,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void GetMultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52140,7 +52140,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterivEXT")] [CLSCompliant(false)] - public static void GetMultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52149,7 +52149,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterivEXT")] [CLSCompliant(false)] - public static void GetMultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52158,7 +52158,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetMultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52166,7 +52166,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52174,7 +52174,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52182,7 +52182,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52191,7 +52191,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52200,7 +52200,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52209,7 +52209,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52217,7 +52217,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52225,7 +52225,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52233,7 +52233,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52242,7 +52242,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52251,7 +52251,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52260,7 +52260,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52268,7 +52268,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferPointervEXT")] [CLSCompliant(false)] - public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52278,7 +52278,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52288,7 +52288,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52298,7 +52298,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52308,7 +52308,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52317,7 +52317,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferPointervEXT")] [CLSCompliant(false)] - public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52328,7 +52328,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52339,7 +52339,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52350,7 +52350,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52361,7 +52361,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52369,7 +52369,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferPointervEXT")] [CLSCompliant(false)] - public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52379,7 +52379,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52389,7 +52389,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52399,7 +52399,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52409,7 +52409,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52418,7 +52418,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferPointervEXT")] [CLSCompliant(false)] - public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52429,7 +52429,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52440,7 +52440,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52451,7 +52451,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52462,7 +52462,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52471,7 +52471,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(size)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [OutAttribute, CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [OutAttribute, CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52482,7 +52482,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52493,7 +52493,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52504,7 +52504,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52515,7 +52515,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52524,7 +52524,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(size)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [OutAttribute, CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [OutAttribute, CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52535,7 +52535,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52546,7 +52546,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52557,7 +52557,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52568,7 +52568,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52577,7 +52577,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(size)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [OutAttribute, CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [OutAttribute, CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52588,7 +52588,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52599,7 +52599,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52610,7 +52610,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52621,7 +52621,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52630,7 +52630,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(size)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [OutAttribute, CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [OutAttribute, CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52641,7 +52641,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52652,7 +52652,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52663,7 +52663,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52674,7 +52674,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52683,7 +52683,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52692,7 +52692,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52701,7 +52701,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52710,7 +52710,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52719,7 +52719,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52728,7 +52728,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52736,7 +52736,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52744,7 +52744,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52752,7 +52752,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52760,7 +52760,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52768,7 +52768,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52776,7 +52776,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52785,7 +52785,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramivEXT")] [CLSCompliant(false)] - public static void GetNamedProgram(Int32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.ProgramProperty pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedProgram(Int32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.ProgramProperty pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52794,7 +52794,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedProgram(Int32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.ProgramProperty pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedProgram(Int32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.ProgramProperty pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52803,7 +52803,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramivEXT")] [CLSCompliant(false)] - public static void GetNamedProgram(UInt32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.ProgramProperty pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedProgram(UInt32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.ProgramProperty pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52812,7 +52812,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedProgram(UInt32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.ProgramProperty pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedProgram(UInt32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.ProgramProperty pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52821,7 +52821,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterdvEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52830,7 +52830,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterdvEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52839,7 +52839,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterdvEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52848,7 +52848,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterdvEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52857,7 +52857,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterdvEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52866,7 +52866,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterdvEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52875,7 +52875,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterfvEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52884,7 +52884,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterfvEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52893,7 +52893,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52902,7 +52902,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterfvEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52911,7 +52911,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterfvEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52920,7 +52920,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52929,7 +52929,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIivEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameterI(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameterI(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52938,7 +52938,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIivEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameterI(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameterI(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52947,7 +52947,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedProgramLocalParameterI(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedProgramLocalParameterI(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52956,7 +52956,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIivEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52965,7 +52965,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIivEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52974,7 +52974,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52983,7 +52983,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIuivEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52992,7 +52992,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIuivEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53001,7 +53001,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53010,7 +53010,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(program,pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramStringEXT")] [CLSCompliant(false)] - public static void GetNamedProgramString(Int32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "program,pname")] IntPtr @string) { throw new NotImplementedException(); } + public static void GetNamedProgramString(Int32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "program,pname")] IntPtr @string) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53021,7 +53021,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedProgramString(Int32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "program,pname")] T3[] @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53032,7 +53032,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedProgramString(Int32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "program,pname")] T3[,] @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53043,7 +53043,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedProgramString(Int32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "program,pname")] T3[,,] @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53054,7 +53054,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedProgramString(Int32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "program,pname")] ref T3 @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53063,7 +53063,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(program,pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramStringEXT")] [CLSCompliant(false)] - public static void GetNamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "program,pname")] IntPtr @string) { throw new NotImplementedException(); } + public static void GetNamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "program,pname")] IntPtr @string) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53074,7 +53074,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "program,pname")] T3[] @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53085,7 +53085,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "program,pname")] T3[,] @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53096,7 +53096,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "program,pname")] T3[,,] @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53107,7 +53107,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "program,pname")] ref T3 @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53115,7 +53115,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedRenderbufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53123,7 +53123,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedRenderbufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53131,7 +53131,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedRenderbufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53139,7 +53139,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedRenderbufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53147,7 +53147,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedRenderbufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53155,7 +53155,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedRenderbufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -53177,7 +53177,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.All type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.All type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -53199,7 +53199,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL4.All type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL4.All type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -53221,7 +53221,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -53243,7 +53243,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL4.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL4.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53251,7 +53251,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointeri_vEXT")] [CLSCompliant(false)] - public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53261,7 +53261,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53271,7 +53271,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53281,7 +53281,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53291,7 +53291,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53299,7 +53299,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointeri_vEXT")] [CLSCompliant(false)] - public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53309,7 +53309,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53319,7 +53319,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53329,7 +53329,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53339,7 +53339,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53347,7 +53347,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointerIndexedvEXT")] [CLSCompliant(false)] - public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr data) { throw new NotImplementedException(); } + public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53357,7 +53357,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53367,7 +53367,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53377,7 +53377,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53387,7 +53387,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53395,7 +53395,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointerIndexedvEXT")] [CLSCompliant(false)] - public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr data) { throw new NotImplementedException(); } + public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53405,7 +53405,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53415,7 +53415,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53425,7 +53425,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53435,7 +53435,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -53454,7 +53454,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -53473,7 +53473,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static unsafe void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -53492,7 +53492,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -53511,7 +53511,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static unsafe void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -53527,7 +53527,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -53543,7 +53543,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -53559,7 +53559,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -53575,7 +53575,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -53591,7 +53591,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -53607,7 +53607,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53618,7 +53618,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target,level,format,type)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureImageEXT")] [CLSCompliant(false)] - public static void GetTextureImage(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,level,format,type")] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetTextureImage(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,level,format,type")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53631,7 +53631,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureImage(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] T5[] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53644,7 +53644,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureImage(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] T5[,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53657,7 +53657,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureImage(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] T5[,,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53670,7 +53670,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureImage(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] ref T5 pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53681,7 +53681,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target,level,format,type)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureImageEXT")] [CLSCompliant(false)] - public static void GetTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,level,format,type")] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,level,format,type")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53694,7 +53694,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] T5[] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53707,7 +53707,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] T5[,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53720,7 +53720,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] T5[,,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53733,7 +53733,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] ref T5 pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53743,7 +53743,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterfvEXT")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53753,7 +53753,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterfvEXT")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53763,7 +53763,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53773,7 +53773,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterfvEXT")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53783,7 +53783,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterfvEXT")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53793,7 +53793,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53803,7 +53803,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterivEXT")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53813,7 +53813,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterivEXT")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53823,7 +53823,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53833,7 +53833,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterivEXT")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53843,7 +53843,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterivEXT")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53853,7 +53853,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53862,7 +53862,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterfvEXT")] [CLSCompliant(false)] - public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53871,7 +53871,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterfvEXT")] [CLSCompliant(false)] - public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53880,7 +53880,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53889,7 +53889,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterfvEXT")] [CLSCompliant(false)] - public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53898,7 +53898,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterfvEXT")] [CLSCompliant(false)] - public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53907,7 +53907,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53916,7 +53916,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterIivEXT")] [CLSCompliant(false)] - public static void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53925,7 +53925,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterIivEXT")] [CLSCompliant(false)] - public static void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53934,7 +53934,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53943,7 +53943,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterIivEXT")] [CLSCompliant(false)] - public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53952,7 +53952,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterIivEXT")] [CLSCompliant(false)] - public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53961,7 +53961,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53970,7 +53970,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterIuivEXT")] [CLSCompliant(false)] - public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53979,7 +53979,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterIuivEXT")] [CLSCompliant(false)] - public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53988,7 +53988,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53997,7 +53997,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterivEXT")] [CLSCompliant(false)] - public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54006,7 +54006,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterivEXT")] [CLSCompliant(false)] - public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54015,7 +54015,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54024,7 +54024,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterivEXT")] [CLSCompliant(false)] - public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54033,7 +54033,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterivEXT")] [CLSCompliant(false)] - public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54042,7 +54042,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54051,7 +54051,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayInteger(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetVertexArrayInteger(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54060,7 +54060,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayInteger(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetVertexArrayInteger(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54069,7 +54069,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegeri_vEXT")] [CLSCompliant(false)] - public static unsafe void GetVertexArrayInteger(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetVertexArrayInteger(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54078,7 +54078,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayInteger(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetVertexArrayInteger(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54087,7 +54087,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayInteger(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetVertexArrayInteger(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54096,7 +54096,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegeri_vEXT")] [CLSCompliant(false)] - public static unsafe void GetVertexArrayInteger(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetVertexArrayInteger(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54104,7 +54104,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayInteger(Int32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetVertexArrayInteger(Int32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54112,7 +54112,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayInteger(Int32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetVertexArrayInteger(Int32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54120,7 +54120,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegervEXT")] [CLSCompliant(false)] - public static unsafe void GetVertexArrayInteger(Int32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetVertexArrayInteger(Int32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54128,7 +54128,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayInteger(UInt32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetVertexArrayInteger(UInt32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54136,7 +54136,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayInteger(UInt32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetVertexArrayInteger(UInt32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54144,7 +54144,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegervEXT")] [CLSCompliant(false)] - public static unsafe void GetVertexArrayInteger(UInt32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetVertexArrayInteger(UInt32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54153,7 +54153,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] IntPtr param) { throw new NotImplementedException(); } + public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] IntPtr param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54164,7 +54164,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute] T3[] param) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54175,7 +54175,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute] T3[,] param) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54186,7 +54186,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute] T3[,,] param) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54197,7 +54197,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute] ref T3 param) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54206,7 +54206,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] IntPtr param) { throw new NotImplementedException(); } + public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] IntPtr param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54217,7 +54217,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute] T3[] param) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54228,7 +54228,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute] T3[,] param) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54239,7 +54239,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute] T3[,,] param) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54250,7 +54250,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute] ref T3 param) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54258,7 +54258,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr param) { throw new NotImplementedException(); } + public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54268,7 +54268,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] param) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54278,7 +54278,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] param) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54288,7 +54288,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] param) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54298,7 +54298,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 param) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54306,7 +54306,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr param) { throw new NotImplementedException(); } + public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54316,7 +54316,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] param) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54326,7 +54326,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] param) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54336,7 +54336,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] param) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54346,27 +54346,27 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 param) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_marker] /// /// [AutoGenerated(Category = "EXT_debug_marker", Version = "", EntryPoint = "glInsertEventMarkerEXT")] - public static void InsertEventMarker(Int32 length, String marker) { throw new NotImplementedException(); } + public static void InsertEventMarker(Int32 length, String marker) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glIsEnabledIndexedEXT")] [CLSCompliant(false)] - public static bool IsEnabledIndexed(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, Int32 index) { throw new NotImplementedException(); } + public static bool IsEnabledIndexed(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glIsEnabledIndexedEXT")] [CLSCompliant(false)] - public static bool IsEnabledIndexed(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, UInt32 index) { throw new NotImplementedException(); } + public static bool IsEnabledIndexed(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Determine if a name corresponds to a program pipeline object @@ -54376,7 +54376,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glIsProgramPipelineEXT")] [CLSCompliant(false)] - public static bool IsProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } + public static bool IsProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Determine if a name corresponds to a program pipeline object @@ -54386,7 +54386,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glIsProgramPipelineEXT")] [CLSCompliant(false)] - public static bool IsProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static bool IsProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// @@ -54395,7 +54395,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glLabelObjectEXT")] [CLSCompliant(false)] - public static void LabelObject(OpenTK.Graphics.OpenGL4.All type, Int32 @object, Int32 length, String label) { throw new NotImplementedException(); } + public static void LabelObject(OpenTK.Graphics.OpenGL4.All type, Int32 @object, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// @@ -54404,14 +54404,14 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glLabelObjectEXT")] [CLSCompliant(false)] - public static void LabelObject(OpenTK.Graphics.OpenGL4.All type, UInt32 @object, Int32 length, String label) { throw new NotImplementedException(); } + public static void LabelObject(OpenTK.Graphics.OpenGL4.All type, UInt32 @object, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMapNamedBufferEXT")] [CLSCompliant(false)] - public static IntPtr MapNamedBuffer(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferAccess access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBuffer(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferAccess access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54419,14 +54419,14 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMapNamedBufferEXT")] [CLSCompliant(false)] - public static IntPtr MapNamedBuffer(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBuffer(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMapNamedBufferEXT")] [CLSCompliant(false)] - public static IntPtr MapNamedBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferAccess access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferAccess access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54434,7 +54434,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMapNamedBufferEXT")] [CLSCompliant(false)] - public static IntPtr MapNamedBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54443,7 +54443,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMapNamedBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapNamedBufferRange(Int32 buffer, IntPtr offset, Int32 length, OpenTK.Graphics.OpenGL4.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBufferRange(Int32 buffer, IntPtr offset, Int32 length, OpenTK.Graphics.OpenGL4.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54452,7 +54452,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMapNamedBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapNamedBufferRange(Int32 buffer, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL4.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBufferRange(Int32 buffer, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL4.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54461,7 +54461,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMapNamedBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapNamedBufferRange(UInt32 buffer, IntPtr offset, Int32 length, OpenTK.Graphics.OpenGL4.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBufferRange(UInt32 buffer, IntPtr offset, Int32 length, OpenTK.Graphics.OpenGL4.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54470,7 +54470,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMapNamedBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapNamedBufferRange(UInt32 buffer, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL4.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBufferRange(UInt32 buffer, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL4.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54481,180 +54481,180 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixFrustumEXT")] - public static void MatrixFrustum(OpenTK.Graphics.OpenGL4.MatrixMode mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar) { throw new NotImplementedException(); } + public static void MatrixFrustum(OpenTK.Graphics.OpenGL4.MatrixMode mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoaddEXT")] [CLSCompliant(false)] - public static void MatrixLoad(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new NotImplementedException(); } + public static void MatrixLoad(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoaddEXT")] [CLSCompliant(false)] - public static void MatrixLoad(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new NotImplementedException(); } + public static void MatrixLoad(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoaddEXT")] [CLSCompliant(false)] - public static unsafe void MatrixLoad(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoad(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadfEXT")] [CLSCompliant(false)] - public static void MatrixLoad(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new NotImplementedException(); } + public static void MatrixLoad(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadfEXT")] [CLSCompliant(false)] - public static void MatrixLoad(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new NotImplementedException(); } + public static void MatrixLoad(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadfEXT")] [CLSCompliant(false)] - public static unsafe void MatrixLoad(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoad(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadIdentityEXT")] - public static void MatrixLoadIdentity(OpenTK.Graphics.OpenGL4.MatrixMode mode) { throw new NotImplementedException(); } + public static void MatrixLoadIdentity(OpenTK.Graphics.OpenGL4.MatrixMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] [CLSCompliant(false)] - public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new NotImplementedException(); } + public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] [CLSCompliant(false)] - public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new NotImplementedException(); } + public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] [CLSCompliant(false)] - public static unsafe void MatrixLoadTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoadTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] [CLSCompliant(false)] - public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new NotImplementedException(); } + public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] [CLSCompliant(false)] - public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new NotImplementedException(); } + public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] [CLSCompliant(false)] - public static unsafe void MatrixLoadTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoadTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultdEXT")] [CLSCompliant(false)] - public static void MatrixMult(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new NotImplementedException(); } + public static void MatrixMult(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultdEXT")] [CLSCompliant(false)] - public static void MatrixMult(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new NotImplementedException(); } + public static void MatrixMult(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultdEXT")] [CLSCompliant(false)] - public static unsafe void MatrixMult(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMult(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultfEXT")] [CLSCompliant(false)] - public static void MatrixMult(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new NotImplementedException(); } + public static void MatrixMult(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultfEXT")] [CLSCompliant(false)] - public static void MatrixMult(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new NotImplementedException(); } + public static void MatrixMult(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultfEXT")] [CLSCompliant(false)] - public static unsafe void MatrixMult(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMult(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] [CLSCompliant(false)] - public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new NotImplementedException(); } + public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] [CLSCompliant(false)] - public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new NotImplementedException(); } + public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] [CLSCompliant(false)] - public static unsafe void MatrixMultTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMultTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] [CLSCompliant(false)] - public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new NotImplementedException(); } + public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] [CLSCompliant(false)] - public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new NotImplementedException(); } + public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] [CLSCompliant(false)] - public static unsafe void MatrixMultTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMultTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54665,17 +54665,17 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixOrthoEXT")] - public static void MatrixOrtho(OpenTK.Graphics.OpenGL4.MatrixMode mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar) { throw new NotImplementedException(); } + public static void MatrixOrtho(OpenTK.Graphics.OpenGL4.MatrixMode mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixPopEXT")] - public static void MatrixPop(OpenTK.Graphics.OpenGL4.MatrixMode mode) { throw new NotImplementedException(); } + public static void MatrixPop(OpenTK.Graphics.OpenGL4.MatrixMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixPushEXT")] - public static void MatrixPush(OpenTK.Graphics.OpenGL4.MatrixMode mode) { throw new NotImplementedException(); } + public static void MatrixPush(OpenTK.Graphics.OpenGL4.MatrixMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54684,7 +54684,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixRotatedEXT")] - public static void MatrixRotate(OpenTK.Graphics.OpenGL4.MatrixMode mode, Double angle, Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void MatrixRotate(OpenTK.Graphics.OpenGL4.MatrixMode mode, Double angle, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54693,7 +54693,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixRotatefEXT")] - public static void MatrixRotate(OpenTK.Graphics.OpenGL4.MatrixMode mode, Single angle, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void MatrixRotate(OpenTK.Graphics.OpenGL4.MatrixMode mode, Single angle, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54701,7 +54701,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixScaledEXT")] - public static void MatrixScale(OpenTK.Graphics.OpenGL4.MatrixMode mode, Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void MatrixScale(OpenTK.Graphics.OpenGL4.MatrixMode mode, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54709,7 +54709,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixScalefEXT")] - public static void MatrixScale(OpenTK.Graphics.OpenGL4.MatrixMode mode, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void MatrixScale(OpenTK.Graphics.OpenGL4.MatrixMode mode, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54717,7 +54717,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixTranslatedEXT")] - public static void MatrixTranslate(OpenTK.Graphics.OpenGL4.MatrixMode mode, Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void MatrixTranslate(OpenTK.Graphics.OpenGL4.MatrixMode mode, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54725,7 +54725,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixTranslatefEXT")] - public static void MatrixTranslate(OpenTK.Graphics.OpenGL4.MatrixMode mode, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void MatrixTranslate(OpenTK.Graphics.OpenGL4.MatrixMode mode, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54734,7 +54734,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexBufferEXT")] [CLSCompliant(false)] - public static void MultiTexBuffer(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.All internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void MultiTexBuffer(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.All internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54743,7 +54743,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexBufferEXT")] [CLSCompliant(false)] - public static void MultiTexBuffer(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.All internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void MultiTexBuffer(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.All internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54752,7 +54752,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: COMPSIZE(size,type,stride)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexCoordPointerEXT")] - public static void MultiTexCoordPointer(OpenTK.Graphics.OpenGL4.TextureUnit texunit, Int32 size, OpenTK.Graphics.OpenGL4.TexCoordPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void MultiTexCoordPointer(OpenTK.Graphics.OpenGL4.TextureUnit texunit, Int32 size, OpenTK.Graphics.OpenGL4.TexCoordPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54764,7 +54764,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexCoordPointer(OpenTK.Graphics.OpenGL4.TextureUnit texunit, Int32 size, OpenTK.Graphics.OpenGL4.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54776,7 +54776,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexCoordPointer(OpenTK.Graphics.OpenGL4.TextureUnit texunit, Int32 size, OpenTK.Graphics.OpenGL4.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54788,7 +54788,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexCoordPointer(OpenTK.Graphics.OpenGL4.TextureUnit texunit, Int32 size, OpenTK.Graphics.OpenGL4.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54799,7 +54799,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexCoordPointerEXT")] public static void MultiTexCoordPointer(OpenTK.Graphics.OpenGL4.TextureUnit texunit, Int32 size, OpenTK.Graphics.OpenGL4.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54807,7 +54807,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexEnvfEXT")] - public static void MultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, Single param) { throw new NotImplementedException(); } + public static void MultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54816,7 +54816,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexEnvfvEXT")] [CLSCompliant(false)] - public static void MultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void MultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54825,7 +54825,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexEnvfvEXT")] [CLSCompliant(false)] - public static unsafe void MultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void MultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54833,7 +54833,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexEnviEXT")] - public static void MultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void MultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54842,7 +54842,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexEnvivEXT")] [CLSCompliant(false)] - public static void MultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void MultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54851,7 +54851,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexEnvivEXT")] [CLSCompliant(false)] - public static unsafe void MultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54859,7 +54859,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexGendEXT")] - public static void MultiTexGend(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, Double param) { throw new NotImplementedException(); } + public static void MultiTexGend(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, Double param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54868,7 +54868,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexGendvEXT")] [CLSCompliant(false)] - public static void MultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Double[] @params) { throw new NotImplementedException(); } + public static void MultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54877,7 +54877,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexGendvEXT")] [CLSCompliant(false)] - public static void MultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [CountAttribute(Computed = "pname")] ref Double @params) { throw new NotImplementedException(); } + public static void MultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [CountAttribute(Computed = "pname")] ref Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54886,7 +54886,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexGendvEXT")] [CLSCompliant(false)] - public static unsafe void MultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void MultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54894,7 +54894,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexGenfEXT")] - public static void MultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, Single param) { throw new NotImplementedException(); } + public static void MultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54903,7 +54903,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexGenfvEXT")] [CLSCompliant(false)] - public static void MultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void MultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54912,7 +54912,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexGenfvEXT")] [CLSCompliant(false)] - public static unsafe void MultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void MultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54920,7 +54920,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexGeniEXT")] - public static void MultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void MultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54929,7 +54929,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexGenivEXT")] [CLSCompliant(false)] - public static void MultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void MultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54938,7 +54938,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexGenivEXT")] [CLSCompliant(false)] - public static unsafe void MultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54951,7 +54951,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage1DEXT")] - public static void MultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new NotImplementedException(); } + public static void MultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54967,7 +54967,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54983,7 +54983,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54999,7 +54999,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55014,7 +55014,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage1DEXT")] public static void MultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55028,7 +55028,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage2DEXT")] - public static void MultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void MultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55045,7 +55045,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55062,7 +55062,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55079,7 +55079,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55095,7 +55095,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage2DEXT")] public static void MultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55110,7 +55110,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage3DEXT")] - public static void MultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void MultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55128,7 +55128,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55146,7 +55146,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55164,7 +55164,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55181,7 +55181,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage3DEXT")] public static void MultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55189,7 +55189,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterfEXT")] - public static void MultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single param) { throw new NotImplementedException(); } + public static void MultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55198,7 +55198,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterfvEXT")] [CLSCompliant(false)] - public static void MultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void MultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55207,7 +55207,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void MultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void MultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55215,7 +55215,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameteriEXT")] - public static void MultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void MultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55224,7 +55224,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterIivEXT")] [CLSCompliant(false)] - public static void MultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void MultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55233,7 +55233,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterIivEXT")] [CLSCompliant(false)] - public static void MultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void MultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55242,7 +55242,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void MultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55251,7 +55251,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterIuivEXT")] [CLSCompliant(false)] - public static void MultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void MultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55260,7 +55260,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterIuivEXT")] [CLSCompliant(false)] - public static void MultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void MultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55269,7 +55269,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void MultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void MultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55278,7 +55278,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterivEXT")] [CLSCompliant(false)] - public static void MultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void MultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55287,7 +55287,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterivEXT")] [CLSCompliant(false)] - public static unsafe void MultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55295,7 +55295,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexRenderbufferEXT")] [CLSCompliant(false)] - public static void MultiTexRenderbuffer(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 renderbuffer) { throw new NotImplementedException(); } + public static void MultiTexRenderbuffer(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55303,7 +55303,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexRenderbufferEXT")] [CLSCompliant(false)] - public static void MultiTexRenderbuffer(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void MultiTexRenderbuffer(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55315,7 +55315,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexSubImage1DEXT")] - public static void MultiTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new NotImplementedException(); } + public static void MultiTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55330,7 +55330,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T7[] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55345,7 +55345,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T7[,] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55360,7 +55360,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T7[,,] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55374,7 +55374,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexSubImage1DEXT")] public static void MultiTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T7 pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55388,7 +55388,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexSubImage2DEXT")] - public static void MultiTexSubImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void MultiTexSubImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55405,7 +55405,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexSubImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55422,7 +55422,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexSubImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55439,7 +55439,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexSubImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55455,7 +55455,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexSubImage2DEXT")] public static void MultiTexSubImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55471,7 +55471,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexSubImage3DEXT")] - public static void MultiTexSubImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void MultiTexSubImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55490,7 +55490,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexSubImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T11[] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55509,7 +55509,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexSubImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T11[,] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55528,7 +55528,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexSubImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T11[,,] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55546,7 +55546,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexSubImage3DEXT")] public static void MultiTexSubImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T11 pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55555,7 +55555,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] [CLSCompliant(false)] - public static void NamedBufferData(Int32 buffer, Int32 size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void NamedBufferData(Int32 buffer, Int32 size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55565,7 +55565,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] [CLSCompliant(false)] - public static void NamedBufferData(Int32 buffer, Int32 size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) { throw new NotImplementedException(); } + public static void NamedBufferData(Int32 buffer, Int32 size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55576,7 +55576,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55588,7 +55588,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55599,7 +55599,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55611,7 +55611,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55622,7 +55622,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55634,7 +55634,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55645,7 +55645,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55657,7 +55657,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55666,7 +55666,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] [CLSCompliant(false)] - public static void NamedBufferData(Int32 buffer, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void NamedBufferData(Int32 buffer, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55676,7 +55676,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] [CLSCompliant(false)] - public static void NamedBufferData(Int32 buffer, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) { throw new NotImplementedException(); } + public static void NamedBufferData(Int32 buffer, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55687,7 +55687,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55699,7 +55699,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55710,7 +55710,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55722,7 +55722,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55733,7 +55733,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55745,7 +55745,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55756,7 +55756,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55768,7 +55768,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55777,7 +55777,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] [CLSCompliant(false)] - public static void NamedBufferData(UInt32 buffer, Int32 size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void NamedBufferData(UInt32 buffer, Int32 size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55787,7 +55787,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] [CLSCompliant(false)] - public static void NamedBufferData(UInt32 buffer, Int32 size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) { throw new NotImplementedException(); } + public static void NamedBufferData(UInt32 buffer, Int32 size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55798,7 +55798,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55810,7 +55810,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55821,7 +55821,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55833,7 +55833,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55844,7 +55844,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55856,7 +55856,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55867,7 +55867,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55879,7 +55879,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55888,7 +55888,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] [CLSCompliant(false)] - public static void NamedBufferData(UInt32 buffer, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void NamedBufferData(UInt32 buffer, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55898,7 +55898,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] [CLSCompliant(false)] - public static void NamedBufferData(UInt32 buffer, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) { throw new NotImplementedException(); } + public static void NamedBufferData(UInt32 buffer, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55909,7 +55909,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55921,7 +55921,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55932,7 +55932,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55944,7 +55944,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55955,7 +55955,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55967,7 +55967,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55978,7 +55978,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55990,7 +55990,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_buffer] /// @@ -55999,7 +55999,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sparse_buffer", Version = "", EntryPoint = "glNamedBufferPageCommitmentEXT")] [CLSCompliant(false)] - public static void NamedBufferPageCommitment(Int32 buffer, IntPtr offset, Int32 size, bool commit) { throw new NotImplementedException(); } + public static void NamedBufferPageCommitment(Int32 buffer, IntPtr offset, Int32 size, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_buffer] /// @@ -56008,7 +56008,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sparse_buffer", Version = "", EntryPoint = "glNamedBufferPageCommitmentEXT")] [CLSCompliant(false)] - public static void NamedBufferPageCommitment(Int32 buffer, IntPtr offset, IntPtr size, bool commit) { throw new NotImplementedException(); } + public static void NamedBufferPageCommitment(Int32 buffer, IntPtr offset, IntPtr size, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_buffer] /// @@ -56017,7 +56017,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sparse_buffer", Version = "", EntryPoint = "glNamedBufferPageCommitmentEXT")] [CLSCompliant(false)] - public static void NamedBufferPageCommitment(UInt32 buffer, IntPtr offset, Int32 size, bool commit) { throw new NotImplementedException(); } + public static void NamedBufferPageCommitment(UInt32 buffer, IntPtr offset, Int32 size, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_buffer] /// @@ -56026,7 +56026,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sparse_buffer", Version = "", EntryPoint = "glNamedBufferPageCommitmentEXT")] [CLSCompliant(false)] - public static void NamedBufferPageCommitment(UInt32 buffer, IntPtr offset, IntPtr size, bool commit) { throw new NotImplementedException(); } + public static void NamedBufferPageCommitment(UInt32 buffer, IntPtr offset, IntPtr size, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56035,7 +56035,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(Int32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(Int32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56045,7 +56045,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(Int32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(Int32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56055,7 +56055,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(Int32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(Int32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56066,7 +56066,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56078,7 +56078,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56090,7 +56090,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56101,7 +56101,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56113,7 +56113,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56125,7 +56125,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56136,7 +56136,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56148,7 +56148,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56160,7 +56160,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56171,7 +56171,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56183,7 +56183,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56195,7 +56195,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56204,7 +56204,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(Int32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(Int32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56214,7 +56214,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(Int32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(Int32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56224,7 +56224,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(Int32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(Int32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56235,7 +56235,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56247,7 +56247,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56259,7 +56259,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56270,7 +56270,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56282,7 +56282,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56294,7 +56294,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56305,7 +56305,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56317,7 +56317,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56329,7 +56329,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56340,7 +56340,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56352,7 +56352,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56364,7 +56364,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56373,7 +56373,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(UInt32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(UInt32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56383,7 +56383,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(UInt32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(UInt32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56393,7 +56393,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(UInt32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(UInt32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56404,7 +56404,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56416,7 +56416,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56428,7 +56428,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56439,7 +56439,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56451,7 +56451,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56463,7 +56463,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56474,7 +56474,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56486,7 +56486,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56498,7 +56498,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56509,7 +56509,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56521,7 +56521,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56533,7 +56533,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56542,7 +56542,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56552,7 +56552,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56562,7 +56562,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56573,7 +56573,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56585,7 +56585,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56597,7 +56597,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56608,7 +56608,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56620,7 +56620,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56632,7 +56632,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56643,7 +56643,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56655,7 +56655,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56667,7 +56667,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56678,7 +56678,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56690,7 +56690,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56702,7 +56702,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56711,7 +56711,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(size)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56722,7 +56722,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56733,7 +56733,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56744,7 +56744,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56755,7 +56755,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56764,7 +56764,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(size)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56775,7 +56775,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56786,7 +56786,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56797,7 +56797,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56808,7 +56808,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56817,7 +56817,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(size)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56828,7 +56828,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56839,7 +56839,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56850,7 +56850,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56861,7 +56861,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56870,7 +56870,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(size)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56881,7 +56881,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56892,7 +56892,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56903,7 +56903,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56914,7 +56914,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56924,7 +56924,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedCopyBufferSubDataEXT")] [CLSCompliant(false)] - public static void NamedCopyBufferSubData(Int32 readBuffer, Int32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new NotImplementedException(); } + public static void NamedCopyBufferSubData(Int32 readBuffer, Int32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56934,7 +56934,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedCopyBufferSubDataEXT")] [CLSCompliant(false)] - public static void NamedCopyBufferSubData(Int32 readBuffer, Int32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new NotImplementedException(); } + public static void NamedCopyBufferSubData(Int32 readBuffer, Int32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56944,7 +56944,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedCopyBufferSubDataEXT")] [CLSCompliant(false)] - public static void NamedCopyBufferSubData(UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new NotImplementedException(); } + public static void NamedCopyBufferSubData(UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56954,7 +56954,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedCopyBufferSubDataEXT")] [CLSCompliant(false)] - public static void NamedCopyBufferSubData(UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new NotImplementedException(); } + public static void NamedCopyBufferSubData(UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56963,7 +56963,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferParameteriEXT")] [CLSCompliant(false)] - public static void NamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, Int32 param) { throw new NotImplementedException(); } + public static void NamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56971,7 +56971,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferParameteriEXT")] [CLSCompliant(false)] - public static void NamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void NamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56980,7 +56980,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferParameteriEXT")] [CLSCompliant(false)] - public static void NamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void NamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56989,7 +56989,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferParameteriEXT")] [CLSCompliant(false)] - public static void NamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, Int32 param) { throw new NotImplementedException(); } + public static void NamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56997,7 +56997,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferParameteriEXT")] [CLSCompliant(false)] - public static void NamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void NamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57006,7 +57006,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferParameteriEXT")] [CLSCompliant(false)] - public static void NamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void NamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57015,7 +57015,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferRenderbufferEXT")] [CLSCompliant(false)] - public static void NamedFramebufferRenderbuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new NotImplementedException(); } + public static void NamedFramebufferRenderbuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57024,7 +57024,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferRenderbufferEXT")] [CLSCompliant(false)] - public static void NamedFramebufferRenderbuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void NamedFramebufferRenderbuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57034,7 +57034,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTexture1DEXT")] [CLSCompliant(false)] - public static void NamedFramebufferTexture1D(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void NamedFramebufferTexture1D(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57044,7 +57044,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTexture1DEXT")] [CLSCompliant(false)] - public static void NamedFramebufferTexture1D(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void NamedFramebufferTexture1D(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57054,7 +57054,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTexture2DEXT")] [CLSCompliant(false)] - public static void NamedFramebufferTexture2D(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void NamedFramebufferTexture2D(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57064,7 +57064,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTexture2DEXT")] [CLSCompliant(false)] - public static void NamedFramebufferTexture2D(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void NamedFramebufferTexture2D(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57075,7 +57075,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTexture3DEXT")] [CLSCompliant(false)] - public static void NamedFramebufferTexture3D(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, Int32 texture, Int32 level, Int32 zoffset) { throw new NotImplementedException(); } + public static void NamedFramebufferTexture3D(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, Int32 texture, Int32 level, Int32 zoffset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57086,7 +57086,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTexture3DEXT")] [CLSCompliant(false)] - public static void NamedFramebufferTexture3D(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, UInt32 texture, Int32 level, Int32 zoffset) { throw new NotImplementedException(); } + public static void NamedFramebufferTexture3D(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, UInt32 texture, Int32 level, Int32 zoffset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57095,7 +57095,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTextureEXT")] [CLSCompliant(false)] - public static void NamedFramebufferTexture(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void NamedFramebufferTexture(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57104,7 +57104,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTextureEXT")] [CLSCompliant(false)] - public static void NamedFramebufferTexture(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void NamedFramebufferTexture(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57114,7 +57114,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTextureFaceEXT")] [CLSCompliant(false)] - public static void NamedFramebufferTextureFace(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.TextureTarget face) { throw new NotImplementedException(); } + public static void NamedFramebufferTextureFace(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.TextureTarget face) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57124,7 +57124,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTextureFaceEXT")] [CLSCompliant(false)] - public static void NamedFramebufferTextureFace(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.TextureTarget face) { throw new NotImplementedException(); } + public static void NamedFramebufferTextureFace(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.TextureTarget face) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57134,7 +57134,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTextureLayerEXT")] [CLSCompliant(false)] - public static void NamedFramebufferTextureLayer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } + public static void NamedFramebufferTextureLayer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57144,7 +57144,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTextureLayerEXT")] [CLSCompliant(false)] - public static void NamedFramebufferTextureLayer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } + public static void NamedFramebufferTextureLayer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57156,7 +57156,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4dEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57168,7 +57168,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4dEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57177,7 +57177,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4dvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57186,7 +57186,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4dvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [CountAttribute(Count = 4)] ref Double @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [CountAttribute(Count = 4)] ref Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57195,7 +57195,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4dvEXT")] [CLSCompliant(false)] - public static unsafe void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57204,7 +57204,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4dvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57213,7 +57213,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4dvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] ref Double @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] ref Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57222,7 +57222,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4dvEXT")] [CLSCompliant(false)] - public static unsafe void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57234,7 +57234,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4fEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57246,7 +57246,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4fEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57255,7 +57255,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4fvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57264,7 +57264,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4fvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [CountAttribute(Count = 4)] ref Single @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [CountAttribute(Count = 4)] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57273,7 +57273,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4fvEXT")] [CLSCompliant(false)] - public static unsafe void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57282,7 +57282,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4fvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57291,7 +57291,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4fvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] ref Single @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57300,7 +57300,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4fvEXT")] [CLSCompliant(false)] - public static unsafe void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57312,7 +57312,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4iEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameterI4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameterI4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57324,7 +57324,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4iEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57333,7 +57333,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4ivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameterI4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameterI4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57342,7 +57342,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4ivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameterI4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [CountAttribute(Count = 4)] ref Int32 @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameterI4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [CountAttribute(Count = 4)] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57351,7 +57351,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4ivEXT")] [CLSCompliant(false)] - public static unsafe void NamedProgramLocalParameterI4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParameterI4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57360,7 +57360,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4ivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57369,7 +57369,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4ivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] ref Int32 @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57378,7 +57378,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4ivEXT")] [CLSCompliant(false)] - public static unsafe void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57390,7 +57390,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4uiEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57399,7 +57399,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4uivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] UInt32[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57408,7 +57408,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4uivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] ref UInt32 @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57417,7 +57417,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4uivEXT")] [CLSCompliant(false)] - public static unsafe void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57427,7 +57427,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameters4fvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameters4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameters4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57437,7 +57437,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameters4fvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameters4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameters4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57447,7 +57447,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameters4fvEXT")] [CLSCompliant(false)] - public static unsafe void NamedProgramLocalParameters4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParameters4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57457,7 +57457,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameters4fvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameters4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameters4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57467,7 +57467,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameters4fvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameters4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameters4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57477,7 +57477,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameters4fvEXT")] [CLSCompliant(false)] - public static unsafe void NamedProgramLocalParameters4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParameters4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57487,7 +57487,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParametersI4ivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParametersI4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParametersI4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57497,7 +57497,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParametersI4ivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParametersI4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParametersI4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57507,7 +57507,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParametersI4ivEXT")] [CLSCompliant(false)] - public static unsafe void NamedProgramLocalParametersI4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParametersI4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57517,7 +57517,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParametersI4ivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57527,7 +57527,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParametersI4ivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57537,7 +57537,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParametersI4ivEXT")] [CLSCompliant(false)] - public static unsafe void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57547,7 +57547,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParametersI4uivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57557,7 +57557,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParametersI4uivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57567,7 +57567,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParametersI4uivEXT")] [CLSCompliant(false)] - public static unsafe void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57577,7 +57577,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: len] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramStringEXT")] [CLSCompliant(false)] - public static void NamedProgramString(Int32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, Int32 len, [CountAttribute(Parameter = "len")] IntPtr @string) { throw new NotImplementedException(); } + public static void NamedProgramString(Int32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, Int32 len, [CountAttribute(Parameter = "len")] IntPtr @string) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57589,7 +57589,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedProgramString(Int32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T4[] @string) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57601,7 +57601,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedProgramString(Int32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T4[,] @string) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57613,7 +57613,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedProgramString(Int32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T4[,,] @string) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57625,7 +57625,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedProgramString(Int32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] ref T4 @string) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57635,7 +57635,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: len] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramStringEXT")] [CLSCompliant(false)] - public static void NamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, Int32 len, [CountAttribute(Parameter = "len")] IntPtr @string) { throw new NotImplementedException(); } + public static void NamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, Int32 len, [CountAttribute(Parameter = "len")] IntPtr @string) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57647,7 +57647,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T4[] @string) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57659,7 +57659,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T4[,] @string) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57671,7 +57671,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T4[,,] @string) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57683,7 +57683,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] ref T4 @string) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57693,7 +57693,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorage(Int32 renderbuffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorage(Int32 renderbuffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57703,7 +57703,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorage(Int32 renderbuffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorage(Int32 renderbuffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57712,7 +57712,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorage(Int32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorage(Int32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57722,7 +57722,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorage(UInt32 renderbuffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorage(UInt32 renderbuffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57732,7 +57732,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorage(UInt32 renderbuffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorage(UInt32 renderbuffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57741,7 +57741,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorage(UInt32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorage(UInt32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57752,7 +57752,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageMultisampleCoverageEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorageMultisampleCoverage(Int32 renderbuffer, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorageMultisampleCoverage(Int32 renderbuffer, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57763,7 +57763,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageMultisampleCoverageEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorageMultisampleCoverage(UInt32 renderbuffer, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorageMultisampleCoverage(UInt32 renderbuffer, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57774,7 +57774,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageMultisampleEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorageMultisample(Int32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorageMultisample(Int32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57785,7 +57785,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageMultisampleEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorageMultisample(Int32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorageMultisample(Int32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57795,7 +57795,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageMultisampleEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorageMultisample(Int32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL4.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorageMultisample(Int32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL4.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57806,7 +57806,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageMultisampleEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorageMultisample(UInt32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorageMultisample(UInt32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57817,7 +57817,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageMultisampleEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorageMultisample(UInt32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorageMultisample(UInt32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57827,18 +57827,18 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageMultisampleEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorageMultisample(UInt32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL4.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorageMultisample(UInt32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL4.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_polygon_offset_clamp] /// /// /// [AutoGenerated(Category = "EXT_polygon_offset_clamp", Version = "", EntryPoint = "glPolygonOffsetClampEXT")] - public static void PolygonOffsetClamp(Single factor, Single units, Single clamp) { throw new NotImplementedException(); } + public static void PolygonOffsetClamp(Single factor, Single units, Single clamp) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_marker] [AutoGenerated(Category = "EXT_debug_marker", Version = "", EntryPoint = "glPopGroupMarkerEXT")] - public static void PopGroupMarker() { throw new NotImplementedException(); } + public static void PopGroupMarker() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify a parameter for a program object @@ -57854,7 +57854,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramParameteriEXT")] [CLSCompliant(false)] - public static void ProgramParameter(Int32 program, OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(Int32 program, OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify a parameter for a program object @@ -57870,7 +57870,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramParameteriEXT")] [CLSCompliant(false)] - public static void ProgramParameter(UInt32 program, OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(UInt32 program, OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -57886,7 +57886,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform1dEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Double x) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -57902,7 +57902,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform1dEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Double x) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -57921,7 +57921,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform1dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -57940,7 +57940,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform1dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -57959,7 +57959,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform1dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -57978,7 +57978,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform1dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -57997,7 +57997,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform1dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -58016,7 +58016,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform1dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58032,7 +58032,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Single v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58048,7 +58048,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Single v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58067,7 +58067,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58086,7 +58086,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58105,7 +58105,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58124,7 +58124,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58143,7 +58143,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58162,7 +58162,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58178,7 +58178,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1iEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58194,7 +58194,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1iEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58213,7 +58213,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58232,7 +58232,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58251,7 +58251,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58270,7 +58270,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58289,7 +58289,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58308,7 +58308,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58324,7 +58324,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uiEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, UInt32 v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, UInt32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58343,7 +58343,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58362,7 +58362,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58381,7 +58381,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -58400,7 +58400,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform2dEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Double x, Double y) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -58419,7 +58419,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform2dEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Double x, Double y) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -58438,7 +58438,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -58457,7 +58457,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -58476,7 +58476,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform2dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -58495,7 +58495,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -58514,7 +58514,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -58533,7 +58533,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform2dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58552,7 +58552,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58571,7 +58571,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58590,7 +58590,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58609,7 +58609,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58628,7 +58628,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58647,7 +58647,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58666,7 +58666,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58685,7 +58685,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58704,7 +58704,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2iEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58723,7 +58723,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2iEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58742,7 +58742,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58761,7 +58761,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58780,7 +58780,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58799,7 +58799,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58818,7 +58818,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2uiEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, UInt32 v0, UInt32 v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, UInt32 v0, UInt32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58837,7 +58837,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58856,7 +58856,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58875,7 +58875,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2uivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -58897,7 +58897,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform3dEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -58919,7 +58919,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform3dEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -58938,7 +58938,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -58957,7 +58957,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -58976,7 +58976,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform3dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -58995,7 +58995,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -59014,7 +59014,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -59033,7 +59033,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform3dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59055,7 +59055,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59077,7 +59077,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59096,7 +59096,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59115,7 +59115,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59134,7 +59134,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59153,7 +59153,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59172,7 +59172,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59191,7 +59191,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59213,7 +59213,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3iEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59235,7 +59235,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3iEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59254,7 +59254,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59273,7 +59273,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59292,7 +59292,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59311,7 +59311,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59330,7 +59330,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59349,7 +59349,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59371,7 +59371,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3uiEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59390,7 +59390,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59409,7 +59409,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59428,7 +59428,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3uivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -59453,7 +59453,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform4dEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -59478,7 +59478,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform4dEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -59497,7 +59497,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -59516,7 +59516,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -59535,7 +59535,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform4dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -59554,7 +59554,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -59573,7 +59573,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -59592,7 +59592,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform4dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59617,7 +59617,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59642,7 +59642,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59661,7 +59661,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59680,7 +59680,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59699,7 +59699,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59718,7 +59718,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59737,7 +59737,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59756,7 +59756,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59781,7 +59781,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4iEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59806,7 +59806,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4iEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59825,7 +59825,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59844,7 +59844,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59863,7 +59863,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59882,7 +59882,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59901,7 +59901,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59920,7 +59920,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59945,7 +59945,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4uiEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59964,7 +59964,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59983,7 +59983,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -60002,7 +60002,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4uivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60012,7 +60012,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60022,7 +60022,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60032,7 +60032,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60042,7 +60042,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60052,7 +60052,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60062,7 +60062,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60072,7 +60072,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60082,7 +60082,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60092,7 +60092,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60102,7 +60102,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60112,7 +60112,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60122,7 +60122,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60132,7 +60132,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60142,7 +60142,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60152,7 +60152,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x3dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60162,7 +60162,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60172,7 +60172,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60182,7 +60182,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x3dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60192,7 +60192,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60202,7 +60202,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60212,7 +60212,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60222,7 +60222,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60232,7 +60232,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60242,7 +60242,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60252,7 +60252,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60262,7 +60262,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60272,7 +60272,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x4dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60282,7 +60282,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60292,7 +60292,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60302,7 +60302,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x4dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60312,7 +60312,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60322,7 +60322,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60332,7 +60332,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60342,7 +60342,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60352,7 +60352,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60362,7 +60362,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60372,7 +60372,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60382,7 +60382,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60392,7 +60392,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60402,7 +60402,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60412,7 +60412,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60422,7 +60422,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60432,7 +60432,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60442,7 +60442,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60452,7 +60452,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60462,7 +60462,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60472,7 +60472,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60482,7 +60482,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60492,7 +60492,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60502,7 +60502,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60512,7 +60512,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x2dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60522,7 +60522,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60532,7 +60532,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60542,7 +60542,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x2dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60552,7 +60552,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60562,7 +60562,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60572,7 +60572,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60582,7 +60582,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60592,7 +60592,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60602,7 +60602,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60612,7 +60612,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60622,7 +60622,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60632,7 +60632,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x4dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60642,7 +60642,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60652,7 +60652,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60662,7 +60662,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x4dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60672,7 +60672,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60682,7 +60682,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60692,7 +60692,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60702,7 +60702,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60712,7 +60712,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60722,7 +60722,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60732,7 +60732,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60742,7 +60742,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60752,7 +60752,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60762,7 +60762,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60772,7 +60772,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60782,7 +60782,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -60792,7 +60792,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -60802,7 +60802,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -60812,7 +60812,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -60822,7 +60822,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -60832,7 +60832,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -60842,7 +60842,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60852,7 +60852,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60862,7 +60862,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60872,7 +60872,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x2dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60882,7 +60882,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60892,7 +60892,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60902,7 +60902,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x2dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60912,7 +60912,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60922,7 +60922,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60932,7 +60932,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60942,7 +60942,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60952,7 +60952,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60962,7 +60962,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60972,7 +60972,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60982,7 +60982,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60992,7 +60992,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x3dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61002,7 +61002,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61012,7 +61012,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61022,7 +61022,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x3dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -61032,7 +61032,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -61042,7 +61042,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -61052,7 +61052,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -61062,7 +61062,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -61072,7 +61072,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -61082,32 +61082,32 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access|EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glPushClientAttribDefaultEXT")] - public static void PushClientAttribDefault(OpenTK.Graphics.OpenGL4.ClientAttribMask mask) { throw new NotImplementedException(); } + public static void PushClientAttribDefault(OpenTK.Graphics.OpenGL4.ClientAttribMask mask) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_marker] /// /// [AutoGenerated(Category = "EXT_debug_marker", Version = "", EntryPoint = "glPushGroupMarkerEXT")] - public static void PushGroupMarker(Int32 length, String marker) { throw new NotImplementedException(); } + public static void PushGroupMarker(Int32 length, String marker) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glRasterSamplesEXT")] [CLSCompliant(false)] - public static void RasterSamples(Int32 samples, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void RasterSamples(Int32 samples, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glRasterSamplesEXT")] [CLSCompliant(false)] - public static void RasterSamples(UInt32 samples, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void RasterSamples(UInt32 samples, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61117,7 +61117,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureBufferEXT")] [CLSCompliant(false)] - public static void TextureBuffer(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void TextureBuffer(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61126,7 +61126,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureBufferEXT")] [CLSCompliant(false)] - public static void TextureBuffer(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void TextureBuffer(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61136,7 +61136,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureBufferEXT")] [CLSCompliant(false)] - public static void TextureBuffer(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void TextureBuffer(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61145,7 +61145,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureBufferEXT")] [CLSCompliant(false)] - public static void TextureBuffer(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void TextureBuffer(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61157,7 +61157,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureBufferRangeEXT")] [CLSCompliant(false)] - public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61169,7 +61169,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureBufferRangeEXT")] [CLSCompliant(false)] - public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61180,7 +61180,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureBufferRangeEXT")] [CLSCompliant(false)] - public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61191,7 +61191,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureBufferRangeEXT")] [CLSCompliant(false)] - public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61203,7 +61203,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureBufferRangeEXT")] [CLSCompliant(false)] - public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61215,7 +61215,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureBufferRangeEXT")] [CLSCompliant(false)] - public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61226,7 +61226,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureBufferRangeEXT")] [CLSCompliant(false)] - public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61237,7 +61237,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureBufferRangeEXT")] [CLSCompliant(false)] - public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61251,7 +61251,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] [CLSCompliant(false)] - public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61267,7 +61267,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61283,7 +61283,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61299,7 +61299,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61315,7 +61315,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61329,7 +61329,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] [CLSCompliant(false)] - public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61345,7 +61345,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61361,7 +61361,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61377,7 +61377,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61393,7 +61393,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61408,7 +61408,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] [CLSCompliant(false)] - public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61425,7 +61425,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61442,7 +61442,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61459,7 +61459,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61476,7 +61476,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61491,7 +61491,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] [CLSCompliant(false)] - public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61508,7 +61508,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61525,7 +61525,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61542,7 +61542,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61559,7 +61559,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61575,7 +61575,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] [CLSCompliant(false)] - public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61593,7 +61593,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61611,7 +61611,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61629,7 +61629,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61647,7 +61647,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61663,7 +61663,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] [CLSCompliant(false)] - public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61681,7 +61681,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61699,7 +61699,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61717,7 +61717,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61735,7 +61735,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61749,7 +61749,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTexturePageCommitmentEXT")] [CLSCompliant(false)] - public static void TexturePageCommitment(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit) { throw new NotImplementedException(); } + public static void TexturePageCommitment(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61763,7 +61763,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTexturePageCommitmentEXT")] [CLSCompliant(false)] - public static void TexturePageCommitment(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit) { throw new NotImplementedException(); } + public static void TexturePageCommitment(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61772,7 +61772,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterfEXT")] [CLSCompliant(false)] - public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single param) { throw new NotImplementedException(); } + public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61781,7 +61781,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterfEXT")] [CLSCompliant(false)] - public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single param) { throw new NotImplementedException(); } + public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61790,7 +61790,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterfvEXT")] [CLSCompliant(false)] - public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61799,7 +61799,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61808,7 +61808,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterfvEXT")] [CLSCompliant(false)] - public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61817,7 +61817,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61826,7 +61826,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameteriEXT")] [CLSCompliant(false)] - public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61835,7 +61835,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameteriEXT")] [CLSCompliant(false)] - public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61844,7 +61844,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterIivEXT")] [CLSCompliant(false)] - public static void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61853,7 +61853,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterIivEXT")] [CLSCompliant(false)] - public static void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61862,7 +61862,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61871,7 +61871,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterIivEXT")] [CLSCompliant(false)] - public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61880,7 +61880,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterIivEXT")] [CLSCompliant(false)] - public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61889,7 +61889,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61898,7 +61898,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterIuivEXT")] [CLSCompliant(false)] - public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61907,7 +61907,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterIuivEXT")] [CLSCompliant(false)] - public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61916,7 +61916,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61925,7 +61925,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterivEXT")] [CLSCompliant(false)] - public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61934,7 +61934,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterivEXT")] [CLSCompliant(false)] - public static unsafe void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61943,7 +61943,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterivEXT")] [CLSCompliant(false)] - public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61952,7 +61952,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterivEXT")] [CLSCompliant(false)] - public static unsafe void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61960,7 +61960,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureRenderbufferEXT")] [CLSCompliant(false)] - public static void TextureRenderbuffer(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 renderbuffer) { throw new NotImplementedException(); } + public static void TextureRenderbuffer(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61968,7 +61968,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureRenderbufferEXT")] [CLSCompliant(false)] - public static void TextureRenderbuffer(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void TextureRenderbuffer(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61979,7 +61979,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage1DEXT")] [CLSCompliant(false)] - public static void TextureStorage1D(Int32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TextureStorage1D(Int32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61989,7 +61989,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage1DEXT")] [CLSCompliant(false)] - public static void TextureStorage1D(Int32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TextureStorage1D(Int32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62000,7 +62000,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage1DEXT")] [CLSCompliant(false)] - public static void TextureStorage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TextureStorage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62010,7 +62010,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage1DEXT")] [CLSCompliant(false)] - public static void TextureStorage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TextureStorage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62022,7 +62022,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage2DEXT")] [CLSCompliant(false)] - public static void TextureStorage2D(Int32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TextureStorage2D(Int32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62033,7 +62033,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage2DEXT")] [CLSCompliant(false)] - public static void TextureStorage2D(Int32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TextureStorage2D(Int32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62045,7 +62045,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage2DEXT")] [CLSCompliant(false)] - public static void TextureStorage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TextureStorage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62056,7 +62056,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage2DEXT")] [CLSCompliant(false)] - public static void TextureStorage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TextureStorage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62069,7 +62069,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage2DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorage2DMultisample(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage2DMultisample(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62081,7 +62081,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage2DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorage2DMultisample(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage2DMultisample(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62094,7 +62094,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage2DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorage2DMultisample(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage2DMultisample(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62106,7 +62106,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage2DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorage2DMultisample(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage2DMultisample(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62119,7 +62119,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage3DEXT")] [CLSCompliant(false)] - public static void TextureStorage3D(Int32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TextureStorage3D(Int32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62131,7 +62131,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage3DEXT")] [CLSCompliant(false)] - public static void TextureStorage3D(Int32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TextureStorage3D(Int32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62144,7 +62144,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage3DEXT")] [CLSCompliant(false)] - public static void TextureStorage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TextureStorage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62156,7 +62156,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage3DEXT")] [CLSCompliant(false)] - public static void TextureStorage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TextureStorage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62170,7 +62170,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage3DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorage3DMultisample(Int32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 samples, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage3DMultisample(Int32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 samples, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62183,7 +62183,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage3DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorage3DMultisample(Int32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 samples, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage3DMultisample(Int32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 samples, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62197,7 +62197,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage3DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorage3DMultisample(UInt32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 samples, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage3DMultisample(UInt32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 samples, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62210,7 +62210,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage3DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorage3DMultisample(UInt32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 samples, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage3DMultisample(UInt32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 samples, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62223,7 +62223,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage1DEXT")] [CLSCompliant(false)] - public static void TextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62238,7 +62238,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T7[] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62253,7 +62253,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T7[,] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62268,7 +62268,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T7[,,] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62283,7 +62283,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T7 pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62296,7 +62296,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage1DEXT")] [CLSCompliant(false)] - public static void TextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62311,7 +62311,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T7[] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62326,7 +62326,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T7[,] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62341,7 +62341,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T7[,,] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62356,7 +62356,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T7 pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62371,7 +62371,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage2DEXT")] [CLSCompliant(false)] - public static void TextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62388,7 +62388,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62405,7 +62405,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62422,7 +62422,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62439,7 +62439,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62454,7 +62454,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage2DEXT")] [CLSCompliant(false)] - public static void TextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62471,7 +62471,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62488,7 +62488,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62505,7 +62505,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62522,7 +62522,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62539,7 +62539,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage3DEXT")] [CLSCompliant(false)] - public static void TextureSubImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureSubImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62558,7 +62558,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T11[] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62577,7 +62577,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T11[,] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62596,7 +62596,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T11[,,] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62615,7 +62615,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T11 pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62632,7 +62632,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage3DEXT")] [CLSCompliant(false)] - public static void TextureSubImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureSubImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62651,7 +62651,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T11[] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62670,7 +62670,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T11[,] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62689,7 +62689,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T11[,,] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62708,19 +62708,19 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T11 pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glUnmapNamedBufferEXT")] [CLSCompliant(false)] - public static bool UnmapNamedBuffer(Int32 buffer) { throw new NotImplementedException(); } + public static bool UnmapNamedBuffer(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glUnmapNamedBufferEXT")] [CLSCompliant(false)] - public static bool UnmapNamedBuffer(UInt32 buffer) { throw new NotImplementedException(); } + public static bool UnmapNamedBuffer(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind stages of a program object to a program pipeline @@ -62736,7 +62736,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseProgramStagesEXT")] [CLSCompliant(false)] - public static void UseProgramStages(Int32 pipeline, Int32 stages, Int32 program) { throw new NotImplementedException(); } + public static void UseProgramStages(Int32 pipeline, Int32 stages, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind stages of a program object to a program pipeline @@ -62752,21 +62752,21 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseProgramStagesEXT")] [CLSCompliant(false)] - public static void UseProgramStages(UInt32 pipeline, UInt32 stages, UInt32 program) { throw new NotImplementedException(); } + public static void UseProgramStages(UInt32 pipeline, UInt32 stages, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseShaderProgramEXT")] [CLSCompliant(false)] - public static void UseShaderProgram(OpenTK.Graphics.OpenGL4.All type, Int32 program) { throw new NotImplementedException(); } + public static void UseShaderProgram(OpenTK.Graphics.OpenGL4.All type, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseShaderProgramEXT")] [CLSCompliant(false)] - public static void UseShaderProgram(OpenTK.Graphics.OpenGL4.All type, UInt32 program) { throw new NotImplementedException(); } + public static void UseShaderProgram(OpenTK.Graphics.OpenGL4.All type, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Validate a program pipeline object against current GL state @@ -62776,7 +62776,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glValidateProgramPipelineEXT")] [CLSCompliant(false)] - public static void ValidateProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } + public static void ValidateProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Validate a program pipeline object against current GL state @@ -62786,7 +62786,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glValidateProgramPipelineEXT")] [CLSCompliant(false)] - public static void ValidateProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static void ValidateProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62796,7 +62796,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayBindVertexBufferEXT")] [CLSCompliant(false)] - public static void VertexArrayBindVertexBuffer(Int32 vaobj, Int32 bindingindex, Int32 buffer, IntPtr offset, Int32 stride) { throw new NotImplementedException(); } + public static void VertexArrayBindVertexBuffer(Int32 vaobj, Int32 bindingindex, Int32 buffer, IntPtr offset, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62806,7 +62806,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayBindVertexBufferEXT")] [CLSCompliant(false)] - public static void VertexArrayBindVertexBuffer(UInt32 vaobj, UInt32 bindingindex, UInt32 buffer, IntPtr offset, Int32 stride) { throw new NotImplementedException(); } + public static void VertexArrayBindVertexBuffer(UInt32 vaobj, UInt32 bindingindex, UInt32 buffer, IntPtr offset, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62817,7 +62817,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayColorOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayColorOffset(Int32 vaobj, Int32 buffer, Int32 size, OpenTK.Graphics.OpenGL4.ColorPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayColorOffset(Int32 vaobj, Int32 buffer, Int32 size, OpenTK.Graphics.OpenGL4.ColorPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62828,7 +62828,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayColorOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayColorOffset(UInt32 vaobj, UInt32 buffer, Int32 size, OpenTK.Graphics.OpenGL4.ColorPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayColorOffset(UInt32 vaobj, UInt32 buffer, Int32 size, OpenTK.Graphics.OpenGL4.ColorPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62837,7 +62837,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayEdgeFlagOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayEdgeFlagOffset(Int32 vaobj, Int32 buffer, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayEdgeFlagOffset(Int32 vaobj, Int32 buffer, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62846,7 +62846,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayEdgeFlagOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayEdgeFlagOffset(UInt32 vaobj, UInt32 buffer, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayEdgeFlagOffset(UInt32 vaobj, UInt32 buffer, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62856,7 +62856,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayFogCoordOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayFogCoordOffset(Int32 vaobj, Int32 buffer, OpenTK.Graphics.OpenGL4.FogPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayFogCoordOffset(Int32 vaobj, Int32 buffer, OpenTK.Graphics.OpenGL4.FogPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62866,7 +62866,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayFogCoordOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayFogCoordOffset(UInt32 vaobj, UInt32 buffer, OpenTK.Graphics.OpenGL4.FogPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayFogCoordOffset(UInt32 vaobj, UInt32 buffer, OpenTK.Graphics.OpenGL4.FogPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62876,7 +62876,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayIndexOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayIndexOffset(Int32 vaobj, Int32 buffer, OpenTK.Graphics.OpenGL4.IndexPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayIndexOffset(Int32 vaobj, Int32 buffer, OpenTK.Graphics.OpenGL4.IndexPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62886,7 +62886,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayIndexOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayIndexOffset(UInt32 vaobj, UInt32 buffer, OpenTK.Graphics.OpenGL4.IndexPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayIndexOffset(UInt32 vaobj, UInt32 buffer, OpenTK.Graphics.OpenGL4.IndexPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62898,7 +62898,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayMultiTexCoordOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayMultiTexCoordOffset(Int32 vaobj, Int32 buffer, OpenTK.Graphics.OpenGL4.All texunit, Int32 size, OpenTK.Graphics.OpenGL4.TexCoordPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayMultiTexCoordOffset(Int32 vaobj, Int32 buffer, OpenTK.Graphics.OpenGL4.All texunit, Int32 size, OpenTK.Graphics.OpenGL4.TexCoordPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62910,7 +62910,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayMultiTexCoordOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayMultiTexCoordOffset(UInt32 vaobj, UInt32 buffer, OpenTK.Graphics.OpenGL4.All texunit, Int32 size, OpenTK.Graphics.OpenGL4.TexCoordPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayMultiTexCoordOffset(UInt32 vaobj, UInt32 buffer, OpenTK.Graphics.OpenGL4.All texunit, Int32 size, OpenTK.Graphics.OpenGL4.TexCoordPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62920,7 +62920,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayNormalOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayNormalOffset(Int32 vaobj, Int32 buffer, OpenTK.Graphics.OpenGL4.NormalPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayNormalOffset(Int32 vaobj, Int32 buffer, OpenTK.Graphics.OpenGL4.NormalPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62930,7 +62930,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayNormalOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayNormalOffset(UInt32 vaobj, UInt32 buffer, OpenTK.Graphics.OpenGL4.NormalPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayNormalOffset(UInt32 vaobj, UInt32 buffer, OpenTK.Graphics.OpenGL4.NormalPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62941,7 +62941,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArraySecondaryColorOffsetEXT")] [CLSCompliant(false)] - public static void VertexArraySecondaryColorOffset(Int32 vaobj, Int32 buffer, Int32 size, OpenTK.Graphics.OpenGL4.ColorPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArraySecondaryColorOffset(Int32 vaobj, Int32 buffer, Int32 size, OpenTK.Graphics.OpenGL4.ColorPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62952,7 +62952,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArraySecondaryColorOffsetEXT")] [CLSCompliant(false)] - public static void VertexArraySecondaryColorOffset(UInt32 vaobj, UInt32 buffer, Int32 size, OpenTK.Graphics.OpenGL4.ColorPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArraySecondaryColorOffset(UInt32 vaobj, UInt32 buffer, Int32 size, OpenTK.Graphics.OpenGL4.ColorPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62963,7 +62963,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayTexCoordOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayTexCoordOffset(Int32 vaobj, Int32 buffer, Int32 size, OpenTK.Graphics.OpenGL4.TexCoordPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayTexCoordOffset(Int32 vaobj, Int32 buffer, Int32 size, OpenTK.Graphics.OpenGL4.TexCoordPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62974,7 +62974,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayTexCoordOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayTexCoordOffset(UInt32 vaobj, UInt32 buffer, Int32 size, OpenTK.Graphics.OpenGL4.TexCoordPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayTexCoordOffset(UInt32 vaobj, UInt32 buffer, Int32 size, OpenTK.Graphics.OpenGL4.TexCoordPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62982,7 +62982,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribBindingEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribBinding(Int32 vaobj, Int32 attribindex, Int32 bindingindex) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribBinding(Int32 vaobj, Int32 attribindex, Int32 bindingindex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62990,7 +62990,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribBindingEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribBinding(UInt32 vaobj, UInt32 attribindex, UInt32 bindingindex) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribBinding(UInt32 vaobj, UInt32 attribindex, UInt32 bindingindex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62998,7 +62998,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribDivisorEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribDivisor(Int32 vaobj, Int32 index, Int32 divisor) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribDivisor(Int32 vaobj, Int32 index, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -63006,7 +63006,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribDivisorEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribDivisor(UInt32 vaobj, UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribDivisor(UInt32 vaobj, UInt32 index, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -63017,7 +63017,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribFormatEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.All type, bool normalized, Int32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.All type, bool normalized, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -63028,7 +63028,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribFormatEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.All type, bool normalized, UInt32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.All type, bool normalized, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -63038,7 +63038,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribIFormatEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribIFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribIFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -63048,7 +63048,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribIFormatEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribIFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.All type, UInt32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribIFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.All type, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -63060,7 +63060,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribIOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribIOffset(Int32 vaobj, Int32 buffer, Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribIOffset(Int32 vaobj, Int32 buffer, Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -63072,7 +63072,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribIOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribIOffset(UInt32 vaobj, UInt32 buffer, UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribIOffset(UInt32 vaobj, UInt32 buffer, UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -63082,7 +63082,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribLFormatEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribLFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribLFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -63092,7 +63092,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribLFormatEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribLFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.All type, UInt32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribLFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.All type, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -63104,7 +63104,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribLOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribLOffset(Int32 vaobj, Int32 buffer, Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribLOffset(Int32 vaobj, Int32 buffer, Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -63116,7 +63116,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribLOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribLOffset(UInt32 vaobj, UInt32 buffer, UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribLOffset(UInt32 vaobj, UInt32 buffer, UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -63129,7 +63129,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribOffset(Int32 vaobj, Int32 buffer, Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribPointerType type, bool normalized, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribOffset(Int32 vaobj, Int32 buffer, Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribPointerType type, bool normalized, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -63142,7 +63142,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribOffset(UInt32 vaobj, UInt32 buffer, UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribPointerType type, bool normalized, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribOffset(UInt32 vaobj, UInt32 buffer, UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribPointerType type, bool normalized, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -63150,7 +63150,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexBindingDivisorEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexBindingDivisor(Int32 vaobj, Int32 bindingindex, Int32 divisor) { throw new NotImplementedException(); } + public static void VertexArrayVertexBindingDivisor(Int32 vaobj, Int32 bindingindex, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -63158,7 +63158,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexBindingDivisorEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexBindingDivisor(UInt32 vaobj, UInt32 bindingindex, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexArrayVertexBindingDivisor(UInt32 vaobj, UInt32 bindingindex, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -63169,7 +63169,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexOffset(Int32 vaobj, Int32 buffer, Int32 size, OpenTK.Graphics.OpenGL4.VertexPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayVertexOffset(Int32 vaobj, Int32 buffer, Int32 size, OpenTK.Graphics.OpenGL4.VertexPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -63180,7 +63180,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexOffset(UInt32 vaobj, UInt32 buffer, Int32 size, OpenTK.Graphics.OpenGL4.VertexPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayVertexOffset(UInt32 vaobj, UInt32 buffer, Int32 size, OpenTK.Graphics.OpenGL4.VertexPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_window_rectangles] /// @@ -63188,7 +63188,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(count)] [AutoGenerated(Category = "EXT_window_rectangles", Version = "", EntryPoint = "glWindowRectanglesEXT")] [CLSCompliant(false)] - public static void WindowRectangles(OpenTK.Graphics.OpenGL4.All mode, Int32 count, [CountAttribute(Computed = "count")] Int32[] box) { throw new NotImplementedException(); } + public static void WindowRectangles(OpenTK.Graphics.OpenGL4.All mode, Int32 count, [CountAttribute(Computed = "count")] Int32[] box) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_window_rectangles] /// @@ -63196,7 +63196,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(count)] [AutoGenerated(Category = "EXT_window_rectangles", Version = "", EntryPoint = "glWindowRectanglesEXT")] [CLSCompliant(false)] - public static void WindowRectangles(OpenTK.Graphics.OpenGL4.All mode, Int32 count, [CountAttribute(Computed = "count")] ref Int32 box) { throw new NotImplementedException(); } + public static void WindowRectangles(OpenTK.Graphics.OpenGL4.All mode, Int32 count, [CountAttribute(Computed = "count")] ref Int32 box) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_window_rectangles] /// @@ -63204,7 +63204,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(count)] [AutoGenerated(Category = "EXT_window_rectangles", Version = "", EntryPoint = "glWindowRectanglesEXT")] [CLSCompliant(false)] - public static unsafe void WindowRectangles(OpenTK.Graphics.OpenGL4.All mode, Int32 count, [CountAttribute(Computed = "count")] Int32* box) { throw new NotImplementedException(); } + public static unsafe void WindowRectangles(OpenTK.Graphics.OpenGL4.All mode, Int32 count, [CountAttribute(Computed = "count")] Int32* box) { throw new BindingsNotRewrittenException(); } } @@ -63214,174 +63214,174 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glBeginPerfQueryINTEL")] [CLSCompliant(false)] - public static void BeginPerfQuery(Int32 queryHandle) { throw new NotImplementedException(); } + public static void BeginPerfQuery(Int32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glBeginPerfQueryINTEL")] [CLSCompliant(false)] - public static void BeginPerfQuery(UInt32 queryHandle) { throw new NotImplementedException(); } + public static void BeginPerfQuery(UInt32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static void CreatePerfQuery(Int32 queryId, [OutAttribute] Int32[] queryHandle) { throw new NotImplementedException(); } + public static void CreatePerfQuery(Int32 queryId, [OutAttribute] Int32[] queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static void CreatePerfQuery(Int32 queryId, [OutAttribute] out Int32 queryHandle) { throw new NotImplementedException(); } + public static void CreatePerfQuery(Int32 queryId, [OutAttribute] out Int32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static unsafe void CreatePerfQuery(Int32 queryId, [OutAttribute] Int32* queryHandle) { throw new NotImplementedException(); } + public static unsafe void CreatePerfQuery(Int32 queryId, [OutAttribute] Int32* queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static void CreatePerfQuery(UInt32 queryId, [OutAttribute] UInt32[] queryHandle) { throw new NotImplementedException(); } + public static void CreatePerfQuery(UInt32 queryId, [OutAttribute] UInt32[] queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static void CreatePerfQuery(UInt32 queryId, [OutAttribute] out UInt32 queryHandle) { throw new NotImplementedException(); } + public static void CreatePerfQuery(UInt32 queryId, [OutAttribute] out UInt32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static unsafe void CreatePerfQuery(UInt32 queryId, [OutAttribute] UInt32* queryHandle) { throw new NotImplementedException(); } + public static unsafe void CreatePerfQuery(UInt32 queryId, [OutAttribute] UInt32* queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glDeletePerfQueryINTEL")] [CLSCompliant(false)] - public static void DeletePerfQuery(Int32 queryHandle) { throw new NotImplementedException(); } + public static void DeletePerfQuery(Int32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glDeletePerfQueryINTEL")] [CLSCompliant(false)] - public static void DeletePerfQuery(UInt32 queryHandle) { throw new NotImplementedException(); } + public static void DeletePerfQuery(UInt32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glEndPerfQueryINTEL")] [CLSCompliant(false)] - public static void EndPerfQuery(Int32 queryHandle) { throw new NotImplementedException(); } + public static void EndPerfQuery(Int32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glEndPerfQueryINTEL")] [CLSCompliant(false)] - public static void EndPerfQuery(UInt32 queryHandle) { throw new NotImplementedException(); } + public static void EndPerfQuery(UInt32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static Int32 GetFirstPerfQueryI() { throw new NotImplementedException(); } + public static Int32 GetFirstPerfQueryI() { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetFirstPerfQueryI([OutAttribute] Int32[] queryId) { throw new NotImplementedException(); } + public static void GetFirstPerfQueryI([OutAttribute] Int32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetFirstPerfQueryI([OutAttribute] out Int32 queryId) { throw new NotImplementedException(); } + public static void GetFirstPerfQueryI([OutAttribute] out Int32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static unsafe void GetFirstPerfQueryI([OutAttribute] Int32* queryId) { throw new NotImplementedException(); } + public static unsafe void GetFirstPerfQueryI([OutAttribute] Int32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetFirstPerfQueryI([OutAttribute] UInt32[] queryId) { throw new NotImplementedException(); } + public static void GetFirstPerfQueryI([OutAttribute] UInt32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetFirstPerfQueryI([OutAttribute] out UInt32 queryId) { throw new NotImplementedException(); } + public static void GetFirstPerfQueryI([OutAttribute] out UInt32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static unsafe void GetFirstPerfQueryI([OutAttribute] UInt32* queryId) { throw new NotImplementedException(); } + public static unsafe void GetFirstPerfQueryI([OutAttribute] UInt32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static Int32 GetNextPerfQueryI(Int32 queryId) { throw new NotImplementedException(); } + public static Int32 GetNextPerfQueryI(Int32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static Int32 GetNextPerfQueryI(UInt32 queryId) { throw new NotImplementedException(); } + public static Int32 GetNextPerfQueryI(UInt32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetNextPerfQueryI(Int32 queryId, [OutAttribute] Int32[] nextQueryId) { throw new NotImplementedException(); } + public static void GetNextPerfQueryI(Int32 queryId, [OutAttribute] Int32[] nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetNextPerfQueryI(Int32 queryId, [OutAttribute] out Int32 nextQueryId) { throw new NotImplementedException(); } + public static void GetNextPerfQueryI(Int32 queryId, [OutAttribute] out Int32 nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static unsafe void GetNextPerfQueryI(Int32 queryId, [OutAttribute] Int32* nextQueryId) { throw new NotImplementedException(); } + public static unsafe void GetNextPerfQueryI(Int32 queryId, [OutAttribute] Int32* nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] UInt32[] nextQueryId) { throw new NotImplementedException(); } + public static void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] UInt32[] nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] out UInt32 nextQueryId) { throw new NotImplementedException(); } + public static void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] out UInt32 nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static unsafe void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] UInt32* nextQueryId) { throw new NotImplementedException(); } + public static unsafe void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] UInt32* nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63397,7 +63397,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32[] counterOffset, [OutAttribute] Int32[] counterDataSize, [OutAttribute] Int32[] counterTypeEnum, [OutAttribute] Int32[] counterDataTypeEnum, [OutAttribute] Int64[] rawCounterMaxValue) { throw new NotImplementedException(); } + public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32[] counterOffset, [OutAttribute] Int32[] counterDataSize, [OutAttribute] Int32[] counterTypeEnum, [OutAttribute] Int32[] counterDataTypeEnum, [OutAttribute] Int64[] rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63413,7 +63413,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out Int32 counterOffset, [OutAttribute] out Int32 counterDataSize, [OutAttribute] out Int32 counterTypeEnum, [OutAttribute] out Int32 counterDataTypeEnum, [OutAttribute] out Int64 rawCounterMaxValue) { throw new NotImplementedException(); } + public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out Int32 counterOffset, [OutAttribute] out Int32 counterDataSize, [OutAttribute] out Int32 counterTypeEnum, [OutAttribute] out Int32 counterDataTypeEnum, [OutAttribute] out Int64 rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63429,7 +63429,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32* counterOffset, [OutAttribute] Int32* counterDataSize, [OutAttribute] Int32* counterTypeEnum, [OutAttribute] Int32* counterDataTypeEnum, [OutAttribute] Int64* rawCounterMaxValue) { throw new NotImplementedException(); } + public static unsafe void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32* counterOffset, [OutAttribute] Int32* counterDataSize, [OutAttribute] Int32* counterTypeEnum, [OutAttribute] Int32* counterDataTypeEnum, [OutAttribute] Int64* rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63445,7 +63445,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32[] counterOffset, [OutAttribute] UInt32[] counterDataSize, [OutAttribute] UInt32[] counterTypeEnum, [OutAttribute] UInt32[] counterDataTypeEnum, [OutAttribute] UInt64[] rawCounterMaxValue) { throw new NotImplementedException(); } + public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32[] counterOffset, [OutAttribute] UInt32[] counterDataSize, [OutAttribute] UInt32[] counterTypeEnum, [OutAttribute] UInt32[] counterDataTypeEnum, [OutAttribute] UInt64[] rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63461,7 +63461,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out UInt32 counterOffset, [OutAttribute] out UInt32 counterDataSize, [OutAttribute] out UInt32 counterTypeEnum, [OutAttribute] out UInt32 counterDataTypeEnum, [OutAttribute] out UInt64 rawCounterMaxValue) { throw new NotImplementedException(); } + public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out UInt32 counterOffset, [OutAttribute] out UInt32 counterDataSize, [OutAttribute] out UInt32 counterTypeEnum, [OutAttribute] out UInt32 counterDataTypeEnum, [OutAttribute] out UInt64 rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63477,7 +63477,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue) { throw new NotImplementedException(); } + public static unsafe void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63487,7 +63487,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] Int32[] bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] Int32[] bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63497,7 +63497,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63507,7 +63507,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] Int32* bytesWritten) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] Int32* bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63519,7 +63519,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] Int32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63531,7 +63531,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] out Int32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63543,7 +63543,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] Int32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63555,7 +63555,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] Int32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63567,7 +63567,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] out Int32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63579,7 +63579,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] Int32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63591,7 +63591,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] Int32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63603,7 +63603,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] out Int32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63615,7 +63615,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] Int32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63627,7 +63627,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] Int32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63639,7 +63639,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] out Int32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63651,7 +63651,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] Int32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63661,7 +63661,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32[] bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32[] bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63671,7 +63671,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] out UInt32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] out UInt32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63681,7 +63681,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32* bytesWritten) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32* bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63693,7 +63693,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] UInt32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63705,7 +63705,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] out UInt32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63717,7 +63717,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] UInt32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63729,7 +63729,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] UInt32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63741,7 +63741,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] out UInt32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63753,7 +63753,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] UInt32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63765,7 +63765,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] UInt32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63777,7 +63777,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] out UInt32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63789,7 +63789,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] UInt32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63801,7 +63801,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] UInt32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63813,7 +63813,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] out UInt32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63825,55 +63825,55 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] UInt32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static Int32 GetPerfQueryIdByName([OutAttribute] out String queryName) { throw new NotImplementedException(); } + public static Int32 GetPerfQueryIdByName([OutAttribute] out String queryName) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32[] queryId) { throw new NotImplementedException(); } + public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out Int32 queryId) { throw new NotImplementedException(); } + public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out Int32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32* queryId) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32[] queryId) { throw new NotImplementedException(); } + public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out UInt32 queryId) { throw new NotImplementedException(); } + public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out UInt32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32* queryId) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63885,7 +63885,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32[] dataSize, [OutAttribute] Int32[] noCounters, [OutAttribute] Int32[] noInstances, [OutAttribute] Int32[] capsMask) { throw new NotImplementedException(); } + public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32[] dataSize, [OutAttribute] Int32[] noCounters, [OutAttribute] Int32[] noInstances, [OutAttribute] Int32[] capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63897,7 +63897,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out Int32 dataSize, [OutAttribute] out Int32 noCounters, [OutAttribute] out Int32 noInstances, [OutAttribute] out Int32 capsMask) { throw new NotImplementedException(); } + public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out Int32 dataSize, [OutAttribute] out Int32 noCounters, [OutAttribute] out Int32 noInstances, [OutAttribute] out Int32 capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63909,7 +63909,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32* dataSize, [OutAttribute] Int32* noCounters, [OutAttribute] Int32* noInstances, [OutAttribute] Int32* capsMask) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32* dataSize, [OutAttribute] Int32* noCounters, [OutAttribute] Int32* noInstances, [OutAttribute] Int32* capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63921,7 +63921,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32[] dataSize, [OutAttribute] UInt32[] noCounters, [OutAttribute] UInt32[] noInstances, [OutAttribute] UInt32[] capsMask) { throw new NotImplementedException(); } + public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32[] dataSize, [OutAttribute] UInt32[] noCounters, [OutAttribute] UInt32[] noInstances, [OutAttribute] UInt32[] capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63933,7 +63933,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out UInt32 dataSize, [OutAttribute] out UInt32 noCounters, [OutAttribute] out UInt32 noInstances, [OutAttribute] out UInt32 capsMask) { throw new NotImplementedException(); } + public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out UInt32 dataSize, [OutAttribute] out UInt32 noCounters, [OutAttribute] out UInt32 noInstances, [OutAttribute] out UInt32 capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63945,7 +63945,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask) { throw new BindingsNotRewrittenException(); } } @@ -63953,7 +63953,7 @@ namespace OpenTK.Graphics.OpenGL4 { /// [requires: KHR_blend_equation_advanced] [AutoGenerated(Category = "KHR_blend_equation_advanced", Version = "", EntryPoint = "glBlendBarrierKHR")] - public static void BlendBarrier() { throw new NotImplementedException(); } + public static void BlendBarrier() { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -63965,7 +63965,7 @@ namespace OpenTK.Graphics.OpenGL4 /// A user supplied pointer that will be passed on each invocation of callback. /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallbackKHR")] - public static void DebugMessageCallback(DebugProcKhr callback, IntPtr userParam) { throw new NotImplementedException(); } + public static void DebugMessageCallback(DebugProcKhr callback, IntPtr userParam) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -63980,7 +63980,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -63995,7 +63995,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -64010,7 +64010,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[,,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -64024,7 +64024,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallbackKHR")] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] ref T1 userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -64049,7 +64049,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, Int32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -64074,7 +64074,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, ref Int32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -64099,7 +64099,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, Int32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -64124,7 +64124,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, UInt32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -64149,7 +64149,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -64174,7 +64174,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, UInt32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Inject an application-supplied message into the debug message queue @@ -64199,7 +64199,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, Int32 id, OpenTK.Graphics.OpenGL4.All severity, Int32 length, String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, Int32 id, OpenTK.Graphics.OpenGL4.All severity, Int32 length, String buf) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Inject an application-supplied message into the debug message queue @@ -64224,7 +64224,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, UInt32 id, OpenTK.Graphics.OpenGL4.All severity, Int32 length, String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, UInt32 id, OpenTK.Graphics.OpenGL4.All severity, Int32 length, String buf) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -64255,7 +64255,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -64286,7 +64286,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -64317,7 +64317,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -64348,7 +64348,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -64379,7 +64379,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -64410,11 +64410,11 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetGraphicsResetStatusKHR")] - public static OpenTK.Graphics.OpenGL4.All GetGraphicsResetStatus() { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL4.All GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -64423,7 +64423,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -64432,7 +64432,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -64441,7 +64441,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -64450,7 +64450,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -64459,7 +64459,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -64468,7 +64468,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -64477,7 +64477,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -64486,7 +64486,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -64495,7 +64495,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -64504,7 +64504,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -64513,7 +64513,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -64522,7 +64522,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -64531,7 +64531,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuivKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -64540,7 +64540,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuivKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -64549,7 +64549,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuivKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -64571,7 +64571,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -64593,7 +64593,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.All identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.All identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -64615,7 +64615,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL4.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL4.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -64637,7 +64637,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -64659,7 +64659,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -64681,7 +64681,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL4.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL4.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -64701,7 +64701,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] - public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -64721,7 +64721,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] - public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -64741,7 +64741,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] - public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -64763,7 +64763,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -64785,7 +64785,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -64807,7 +64807,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -64829,7 +64829,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -64851,7 +64851,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -64873,7 +64873,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -64895,7 +64895,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -64917,7 +64917,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -64939,7 +64939,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -64961,7 +64961,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -64983,7 +64983,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -65005,13 +65005,13 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointervKHR")] - public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } + public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// @@ -65020,7 +65020,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// @@ -65029,7 +65029,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// @@ -65038,7 +65038,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// @@ -65046,7 +65046,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointervKHR")] public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a named object identified within a namespace @@ -65065,7 +65065,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] [CLSCompliant(false)] - public static void ObjectLabel(OpenTK.Graphics.OpenGL4.All identifier, Int32 name, Int32 length, String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.OpenGL4.All identifier, Int32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a named object identified within a namespace @@ -65084,7 +65084,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] [CLSCompliant(false)] - public static void ObjectLabel(OpenTK.Graphics.OpenGL4.All identifier, UInt32 name, Int32 length, String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.OpenGL4.All identifier, UInt32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -65099,7 +65099,7 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a string containing the label to assign to the object. /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabelKHR")] - public static void ObjectPtrLabel(IntPtr ptr, Int32 length, String label) { throw new NotImplementedException(); } + public static void ObjectPtrLabel(IntPtr ptr, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -65117,7 +65117,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 length, String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -65135,7 +65135,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 length, String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -65153,7 +65153,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 length, String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -65170,13 +65170,13 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabelKHR")] public static void ObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 length, String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Pop the active debug group /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPopDebugGroupKHR")] - public static void PopDebugGroup() { throw new NotImplementedException(); } + public static void PopDebugGroup() { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Push a named debug group into the command stream @@ -65195,7 +65195,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroupKHR")] [CLSCompliant(false)] - public static void PushDebugGroup(OpenTK.Graphics.OpenGL4.All source, Int32 id, Int32 length, String message) { throw new NotImplementedException(); } + public static void PushDebugGroup(OpenTK.Graphics.OpenGL4.All source, Int32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Push a named debug group into the command stream @@ -65214,7 +65214,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroupKHR")] [CLSCompliant(false)] - public static void PushDebugGroup(OpenTK.Graphics.OpenGL4.All source, UInt32 id, Int32 length, String message) { throw new NotImplementedException(); } + public static void PushDebugGroup(OpenTK.Graphics.OpenGL4.All source, UInt32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -65226,7 +65226,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: bufSize] [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixelsKHR")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -65241,7 +65241,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -65256,7 +65256,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -65271,7 +65271,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -65285,7 +65285,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixelsKHR")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } } @@ -65302,7 +65302,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNV")] [CLSCompliant(false)] - public static void BeginConditionalRender(Int32 id, OpenTK.Graphics.OpenGL4.All mode) { throw new NotImplementedException(); } + public static void BeginConditionalRender(Int32 id, OpenTK.Graphics.OpenGL4.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conditional_render] /// Start conditional rendering @@ -65315,17 +65315,17 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNV")] [CLSCompliant(false)] - public static void BeginConditionalRender(UInt32 id, OpenTK.Graphics.OpenGL4.All mode) { throw new NotImplementedException(); } + public static void BeginConditionalRender(UInt32 id, OpenTK.Graphics.OpenGL4.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_blend_equation_advanced] [AutoGenerated(Category = "NV_blend_equation_advanced", Version = "", EntryPoint = "glBlendBarrierNV")] - public static void BlendBarrier() { throw new NotImplementedException(); } + public static void BlendBarrier() { throw new BindingsNotRewrittenException(); } /// [requires: NV_blend_equation_advanced] /// /// [AutoGenerated(Category = "NV_blend_equation_advanced", Version = "", EntryPoint = "glBlendParameteriNV")] - public static void BlendParameter(OpenTK.Graphics.OpenGL4.All pname, Int32 value) { throw new NotImplementedException(); } + public static void BlendParameter(OpenTK.Graphics.OpenGL4.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -65334,7 +65334,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glBufferAddressRangeNV")] [CLSCompliant(false)] - public static void BufferAddressRange(OpenTK.Graphics.OpenGL4.All pname, Int32 index, Int64 address, Int32 length) { throw new NotImplementedException(); } + public static void BufferAddressRange(OpenTK.Graphics.OpenGL4.All pname, Int32 index, Int64 address, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -65343,7 +65343,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glBufferAddressRangeNV")] [CLSCompliant(false)] - public static void BufferAddressRange(OpenTK.Graphics.OpenGL4.All pname, Int32 index, Int64 address, IntPtr length) { throw new NotImplementedException(); } + public static void BufferAddressRange(OpenTK.Graphics.OpenGL4.All pname, Int32 index, Int64 address, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -65352,7 +65352,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glBufferAddressRangeNV")] [CLSCompliant(false)] - public static void BufferAddressRange(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, UInt64 address, Int32 length) { throw new NotImplementedException(); } + public static void BufferAddressRange(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, UInt64 address, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -65361,104 +65361,104 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glBufferAddressRangeNV")] [CLSCompliant(false)] - public static void BufferAddressRange(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, UInt64 address, IntPtr length) { throw new NotImplementedException(); } + public static void BufferAddressRange(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, UInt64 address, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCallCommandListNV")] [CLSCompliant(false)] - public static void CallCommandList(Int32 list) { throw new NotImplementedException(); } + public static void CallCommandList(Int32 list) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCallCommandListNV")] [CLSCompliant(false)] - public static void CallCommandList(UInt32 list) { throw new NotImplementedException(); } + public static void CallCommandList(UInt32 list) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// /// /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glColorFormatNV")] - public static void ColorFormat(Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new NotImplementedException(); } + public static void ColorFormat(Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCommandListSegmentsNV")] [CLSCompliant(false)] - public static void CommandListSegments(Int32 list, Int32 segments) { throw new NotImplementedException(); } + public static void CommandListSegments(Int32 list, Int32 segments) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCommandListSegmentsNV")] [CLSCompliant(false)] - public static void CommandListSegments(UInt32 list, UInt32 segments) { throw new NotImplementedException(); } + public static void CommandListSegments(UInt32 list, UInt32 segments) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCompileCommandListNV")] [CLSCompliant(false)] - public static void CompileCommandList(Int32 list) { throw new NotImplementedException(); } + public static void CompileCommandList(Int32 list) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCompileCommandListNV")] [CLSCompliant(false)] - public static void CompileCommandList(UInt32 list) { throw new NotImplementedException(); } + public static void CompileCommandList(UInt32 list) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conservative_raster_dilate] /// /// [AutoGenerated(Category = "NV_conservative_raster_dilate", Version = "", EntryPoint = "glConservativeRasterParameterfNV")] - public static void ConservativeRasterParameter(OpenTK.Graphics.OpenGL4.All pname, Single value) { throw new NotImplementedException(); } + public static void ConservativeRasterParameter(OpenTK.Graphics.OpenGL4.All pname, Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conservative_raster_pre_snap_triangles] /// /// [AutoGenerated(Category = "NV_conservative_raster_pre_snap_triangles", Version = "", EntryPoint = "glConservativeRasterParameteriNV")] - public static void ConservativeRasterParameter(OpenTK.Graphics.OpenGL4.All pname, Int32 param) { throw new NotImplementedException(); } + public static void ConservativeRasterParameter(OpenTK.Graphics.OpenGL4.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCopyPathNV")] [CLSCompliant(false)] - public static void CopyPath(Int32 resultPath, Int32 srcPath) { throw new NotImplementedException(); } + public static void CopyPath(Int32 resultPath, Int32 srcPath) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCopyPathNV")] [CLSCompliant(false)] - public static void CopyPath(UInt32 resultPath, UInt32 srcPath) { throw new NotImplementedException(); } + public static void CopyPath(UInt32 resultPath, UInt32 srcPath) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationNV")] - public static void CoverageModulation(OpenTK.Graphics.OpenGL4.All components) { throw new NotImplementedException(); } + public static void CoverageModulation(OpenTK.Graphics.OpenGL4.All components) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static void CoverageModulationTable(Int32 n, Single[] v) { throw new NotImplementedException(); } + public static void CoverageModulationTable(Int32 n, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static void CoverageModulationTable(Int32 n, ref Single v) { throw new NotImplementedException(); } + public static void CoverageModulationTable(Int32 n, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static unsafe void CoverageModulationTable(Int32 n, Single* v) { throw new NotImplementedException(); } + public static unsafe void CoverageModulationTable(Int32 n, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65470,7 +65470,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65482,7 +65482,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65494,7 +65494,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65506,7 +65506,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65518,7 +65518,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65530,7 +65530,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65544,7 +65544,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65558,7 +65558,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65572,7 +65572,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65586,7 +65586,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65600,7 +65600,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65614,7 +65614,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65628,7 +65628,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65642,7 +65642,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65656,7 +65656,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65670,7 +65670,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65684,7 +65684,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65698,7 +65698,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65712,7 +65712,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65726,7 +65726,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65740,7 +65740,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65754,7 +65754,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65768,7 +65768,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65782,7 +65782,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65796,7 +65796,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65810,7 +65810,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65824,7 +65824,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65838,7 +65838,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65852,7 +65852,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65866,21 +65866,21 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] [CLSCompliant(false)] - public static void CoverFillPath(Int32 path, OpenTK.Graphics.OpenGL4.All coverMode) { throw new NotImplementedException(); } + public static void CoverFillPath(Int32 path, OpenTK.Graphics.OpenGL4.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] [CLSCompliant(false)] - public static void CoverFillPath(UInt32 path, OpenTK.Graphics.OpenGL4.All coverMode) { throw new NotImplementedException(); } + public static void CoverFillPath(UInt32 path, OpenTK.Graphics.OpenGL4.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65892,7 +65892,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65904,7 +65904,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65916,7 +65916,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65928,7 +65928,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65940,7 +65940,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65952,7 +65952,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65966,7 +65966,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65980,7 +65980,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65994,7 +65994,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66008,7 +66008,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66022,7 +66022,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66036,7 +66036,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66050,7 +66050,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66064,7 +66064,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66078,7 +66078,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66092,7 +66092,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66106,7 +66106,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66120,7 +66120,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66134,7 +66134,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66148,7 +66148,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66162,7 +66162,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66176,7 +66176,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66190,7 +66190,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66204,7 +66204,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66218,7 +66218,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66232,7 +66232,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66246,7 +66246,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66260,7 +66260,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66274,7 +66274,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66288,227 +66288,227 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathNV")] [CLSCompliant(false)] - public static void CoverStrokePath(Int32 path, OpenTK.Graphics.OpenGL4.All coverMode) { throw new NotImplementedException(); } + public static void CoverStrokePath(Int32 path, OpenTK.Graphics.OpenGL4.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathNV")] [CLSCompliant(false)] - public static void CoverStrokePath(UInt32 path, OpenTK.Graphics.OpenGL4.All coverMode) { throw new NotImplementedException(); } + public static void CoverStrokePath(UInt32 path, OpenTK.Graphics.OpenGL4.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateCommandListsNV")] [CLSCompliant(false)] - public static void CreateCommandLists(Int32 n, [OutAttribute] Int32[] lists) { throw new NotImplementedException(); } + public static void CreateCommandLists(Int32 n, [OutAttribute] Int32[] lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateCommandListsNV")] [CLSCompliant(false)] - public static void CreateCommandLists(Int32 n, [OutAttribute] out Int32 lists) { throw new NotImplementedException(); } + public static void CreateCommandLists(Int32 n, [OutAttribute] out Int32 lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateCommandListsNV")] [CLSCompliant(false)] - public static unsafe void CreateCommandLists(Int32 n, [OutAttribute] Int32* lists) { throw new NotImplementedException(); } + public static unsafe void CreateCommandLists(Int32 n, [OutAttribute] Int32* lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateCommandListsNV")] [CLSCompliant(false)] - public static void CreateCommandLists(Int32 n, [OutAttribute] UInt32[] lists) { throw new NotImplementedException(); } + public static void CreateCommandLists(Int32 n, [OutAttribute] UInt32[] lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateCommandListsNV")] [CLSCompliant(false)] - public static void CreateCommandLists(Int32 n, [OutAttribute] out UInt32 lists) { throw new NotImplementedException(); } + public static void CreateCommandLists(Int32 n, [OutAttribute] out UInt32 lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateCommandListsNV")] [CLSCompliant(false)] - public static unsafe void CreateCommandLists(Int32 n, [OutAttribute] UInt32* lists) { throw new NotImplementedException(); } + public static unsafe void CreateCommandLists(Int32 n, [OutAttribute] UInt32* lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateStatesNV")] [CLSCompliant(false)] - public static void CreateStates(Int32 n, [OutAttribute] Int32[] states) { throw new NotImplementedException(); } + public static void CreateStates(Int32 n, [OutAttribute] Int32[] states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateStatesNV")] [CLSCompliant(false)] - public static void CreateStates(Int32 n, [OutAttribute] out Int32 states) { throw new NotImplementedException(); } + public static void CreateStates(Int32 n, [OutAttribute] out Int32 states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateStatesNV")] [CLSCompliant(false)] - public static unsafe void CreateStates(Int32 n, [OutAttribute] Int32* states) { throw new NotImplementedException(); } + public static unsafe void CreateStates(Int32 n, [OutAttribute] Int32* states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateStatesNV")] [CLSCompliant(false)] - public static void CreateStates(Int32 n, [OutAttribute] UInt32[] states) { throw new NotImplementedException(); } + public static void CreateStates(Int32 n, [OutAttribute] UInt32[] states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateStatesNV")] [CLSCompliant(false)] - public static void CreateStates(Int32 n, [OutAttribute] out UInt32 states) { throw new NotImplementedException(); } + public static void CreateStates(Int32 n, [OutAttribute] out UInt32 states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateStatesNV")] [CLSCompliant(false)] - public static unsafe void CreateStates(Int32 n, [OutAttribute] UInt32* states) { throw new NotImplementedException(); } + public static unsafe void CreateStates(Int32 n, [OutAttribute] UInt32* states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static void DeleteCommandList(Int32 lists) { throw new NotImplementedException(); } + public static void DeleteCommandList(Int32 lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static void DeleteCommandList(UInt32 lists) { throw new NotImplementedException(); } + public static void DeleteCommandList(UInt32 lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static void DeleteCommandLists(Int32 n, Int32[] lists) { throw new NotImplementedException(); } + public static void DeleteCommandLists(Int32 n, Int32[] lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static void DeleteCommandLists(Int32 n, ref Int32 lists) { throw new NotImplementedException(); } + public static void DeleteCommandLists(Int32 n, ref Int32 lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static unsafe void DeleteCommandLists(Int32 n, Int32* lists) { throw new NotImplementedException(); } + public static unsafe void DeleteCommandLists(Int32 n, Int32* lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static void DeleteCommandLists(Int32 n, UInt32[] lists) { throw new NotImplementedException(); } + public static void DeleteCommandLists(Int32 n, UInt32[] lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static void DeleteCommandLists(Int32 n, ref UInt32 lists) { throw new NotImplementedException(); } + public static void DeleteCommandLists(Int32 n, ref UInt32 lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static unsafe void DeleteCommandLists(Int32 n, UInt32* lists) { throw new NotImplementedException(); } + public static unsafe void DeleteCommandLists(Int32 n, UInt32* lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glDeletePathsNV")] [CLSCompliant(false)] - public static void DeletePath(Int32 path, Int32 range) { throw new NotImplementedException(); } + public static void DeletePath(Int32 path, Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glDeletePathsNV")] [CLSCompliant(false)] - public static void DeletePath(UInt32 path, Int32 range) { throw new NotImplementedException(); } + public static void DeletePath(UInt32 path, Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static void DeleteState(Int32 states) { throw new NotImplementedException(); } + public static void DeleteState(Int32 states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static void DeleteState(UInt32 states) { throw new NotImplementedException(); } + public static void DeleteState(UInt32 states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static void DeleteStates(Int32 n, Int32[] states) { throw new NotImplementedException(); } + public static void DeleteStates(Int32 n, Int32[] states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static void DeleteStates(Int32 n, ref Int32 states) { throw new NotImplementedException(); } + public static void DeleteStates(Int32 n, ref Int32 states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static unsafe void DeleteStates(Int32 n, Int32* states) { throw new NotImplementedException(); } + public static unsafe void DeleteStates(Int32 n, Int32* states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static void DeleteStates(Int32 n, UInt32[] states) { throw new NotImplementedException(); } + public static void DeleteStates(Int32 n, UInt32[] states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static void DeleteStates(Int32 n, ref UInt32 states) { throw new NotImplementedException(); } + public static void DeleteStates(Int32 n, ref UInt32 states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static unsafe void DeleteStates(Int32 n, UInt32* states) { throw new NotImplementedException(); } + public static unsafe void DeleteStates(Int32 n, UInt32* states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66517,7 +66517,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsAddressNV")] [CLSCompliant(false)] - public static void DrawCommandsAddres(OpenTK.Graphics.OpenGL4.All primitiveMode, Int64[] indirects, Int32[] sizes, Int32 count) { throw new NotImplementedException(); } + public static void DrawCommandsAddres(OpenTK.Graphics.OpenGL4.All primitiveMode, Int64[] indirects, Int32[] sizes, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66526,7 +66526,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsAddressNV")] [CLSCompliant(false)] - public static void DrawCommandsAddres(OpenTK.Graphics.OpenGL4.All primitiveMode, ref Int64 indirects, ref Int32 sizes, Int32 count) { throw new NotImplementedException(); } + public static void DrawCommandsAddres(OpenTK.Graphics.OpenGL4.All primitiveMode, ref Int64 indirects, ref Int32 sizes, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66535,7 +66535,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsAddressNV")] [CLSCompliant(false)] - public static unsafe void DrawCommandsAddres(OpenTK.Graphics.OpenGL4.All primitiveMode, Int64* indirects, Int32* sizes, Int32 count) { throw new NotImplementedException(); } + public static unsafe void DrawCommandsAddres(OpenTK.Graphics.OpenGL4.All primitiveMode, Int64* indirects, Int32* sizes, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66544,7 +66544,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsAddressNV")] [CLSCompliant(false)] - public static void DrawCommandsAddres(OpenTK.Graphics.OpenGL4.All primitiveMode, UInt64[] indirects, Int32[] sizes, UInt32 count) { throw new NotImplementedException(); } + public static void DrawCommandsAddres(OpenTK.Graphics.OpenGL4.All primitiveMode, UInt64[] indirects, Int32[] sizes, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66553,7 +66553,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsAddressNV")] [CLSCompliant(false)] - public static void DrawCommandsAddres(OpenTK.Graphics.OpenGL4.All primitiveMode, ref UInt64 indirects, ref Int32 sizes, UInt32 count) { throw new NotImplementedException(); } + public static void DrawCommandsAddres(OpenTK.Graphics.OpenGL4.All primitiveMode, ref UInt64 indirects, ref Int32 sizes, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66562,7 +66562,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsAddressNV")] [CLSCompliant(false)] - public static unsafe void DrawCommandsAddres(OpenTK.Graphics.OpenGL4.All primitiveMode, UInt64* indirects, Int32* sizes, UInt32 count) { throw new NotImplementedException(); } + public static unsafe void DrawCommandsAddres(OpenTK.Graphics.OpenGL4.All primitiveMode, UInt64* indirects, Int32* sizes, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66572,7 +66572,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsNV")] [CLSCompliant(false)] - public static void DrawCommands(OpenTK.Graphics.OpenGL4.All primitiveMode, Int32 buffer, IntPtr[] indirects, Int32[] sizes, Int32 count) { throw new NotImplementedException(); } + public static void DrawCommands(OpenTK.Graphics.OpenGL4.All primitiveMode, Int32 buffer, IntPtr[] indirects, Int32[] sizes, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66582,7 +66582,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsNV")] [CLSCompliant(false)] - public static void DrawCommands(OpenTK.Graphics.OpenGL4.All primitiveMode, Int32 buffer, ref IntPtr indirects, ref Int32 sizes, Int32 count) { throw new NotImplementedException(); } + public static void DrawCommands(OpenTK.Graphics.OpenGL4.All primitiveMode, Int32 buffer, ref IntPtr indirects, ref Int32 sizes, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66592,7 +66592,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsNV")] [CLSCompliant(false)] - public static unsafe void DrawCommands(OpenTK.Graphics.OpenGL4.All primitiveMode, Int32 buffer, IntPtr* indirects, Int32* sizes, Int32 count) { throw new NotImplementedException(); } + public static unsafe void DrawCommands(OpenTK.Graphics.OpenGL4.All primitiveMode, Int32 buffer, IntPtr* indirects, Int32* sizes, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66602,7 +66602,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsNV")] [CLSCompliant(false)] - public static void DrawCommands(OpenTK.Graphics.OpenGL4.All primitiveMode, UInt32 buffer, IntPtr[] indirects, Int32[] sizes, UInt32 count) { throw new NotImplementedException(); } + public static void DrawCommands(OpenTK.Graphics.OpenGL4.All primitiveMode, UInt32 buffer, IntPtr[] indirects, Int32[] sizes, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66612,7 +66612,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsNV")] [CLSCompliant(false)] - public static void DrawCommands(OpenTK.Graphics.OpenGL4.All primitiveMode, UInt32 buffer, ref IntPtr indirects, ref Int32 sizes, UInt32 count) { throw new NotImplementedException(); } + public static void DrawCommands(OpenTK.Graphics.OpenGL4.All primitiveMode, UInt32 buffer, ref IntPtr indirects, ref Int32 sizes, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66622,7 +66622,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsNV")] [CLSCompliant(false)] - public static unsafe void DrawCommands(OpenTK.Graphics.OpenGL4.All primitiveMode, UInt32 buffer, IntPtr* indirects, Int32* sizes, UInt32 count) { throw new NotImplementedException(); } + public static unsafe void DrawCommands(OpenTK.Graphics.OpenGL4.All primitiveMode, UInt32 buffer, IntPtr* indirects, Int32* sizes, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66632,7 +66632,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesAddressNV")] [CLSCompliant(false)] - public static void DrawCommandsStatesAddres(Int64[] indirects, Int32[] sizes, Int32[] states, Int32[] fbos, Int32 count) { throw new NotImplementedException(); } + public static void DrawCommandsStatesAddres(Int64[] indirects, Int32[] sizes, Int32[] states, Int32[] fbos, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66642,7 +66642,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesAddressNV")] [CLSCompliant(false)] - public static void DrawCommandsStatesAddres(ref Int64 indirects, ref Int32 sizes, ref Int32 states, ref Int32 fbos, Int32 count) { throw new NotImplementedException(); } + public static void DrawCommandsStatesAddres(ref Int64 indirects, ref Int32 sizes, ref Int32 states, ref Int32 fbos, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66652,7 +66652,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesAddressNV")] [CLSCompliant(false)] - public static unsafe void DrawCommandsStatesAddres(Int64* indirects, Int32* sizes, Int32* states, Int32* fbos, Int32 count) { throw new NotImplementedException(); } + public static unsafe void DrawCommandsStatesAddres(Int64* indirects, Int32* sizes, Int32* states, Int32* fbos, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66662,7 +66662,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesAddressNV")] [CLSCompliant(false)] - public static void DrawCommandsStatesAddres(UInt64[] indirects, Int32[] sizes, UInt32[] states, UInt32[] fbos, UInt32 count) { throw new NotImplementedException(); } + public static void DrawCommandsStatesAddres(UInt64[] indirects, Int32[] sizes, UInt32[] states, UInt32[] fbos, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66672,7 +66672,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesAddressNV")] [CLSCompliant(false)] - public static void DrawCommandsStatesAddres(ref UInt64 indirects, ref Int32 sizes, ref UInt32 states, ref UInt32 fbos, UInt32 count) { throw new NotImplementedException(); } + public static void DrawCommandsStatesAddres(ref UInt64 indirects, ref Int32 sizes, ref UInt32 states, ref UInt32 fbos, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66682,7 +66682,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesAddressNV")] [CLSCompliant(false)] - public static unsafe void DrawCommandsStatesAddres(UInt64* indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count) { throw new NotImplementedException(); } + public static unsafe void DrawCommandsStatesAddres(UInt64* indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66693,7 +66693,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesNV")] [CLSCompliant(false)] - public static void DrawCommandsStates(Int32 buffer, IntPtr[] indirects, Int32[] sizes, Int32[] states, Int32[] fbos, Int32 count) { throw new NotImplementedException(); } + public static void DrawCommandsStates(Int32 buffer, IntPtr[] indirects, Int32[] sizes, Int32[] states, Int32[] fbos, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66704,7 +66704,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesNV")] [CLSCompliant(false)] - public static void DrawCommandsStates(Int32 buffer, ref IntPtr indirects, ref Int32 sizes, ref Int32 states, ref Int32 fbos, Int32 count) { throw new NotImplementedException(); } + public static void DrawCommandsStates(Int32 buffer, ref IntPtr indirects, ref Int32 sizes, ref Int32 states, ref Int32 fbos, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66715,7 +66715,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesNV")] [CLSCompliant(false)] - public static unsafe void DrawCommandsStates(Int32 buffer, IntPtr* indirects, Int32* sizes, Int32* states, Int32* fbos, Int32 count) { throw new NotImplementedException(); } + public static unsafe void DrawCommandsStates(Int32 buffer, IntPtr* indirects, Int32* sizes, Int32* states, Int32* fbos, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66726,7 +66726,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesNV")] [CLSCompliant(false)] - public static void DrawCommandsStates(UInt32 buffer, IntPtr[] indirects, Int32[] sizes, UInt32[] states, UInt32[] fbos, UInt32 count) { throw new NotImplementedException(); } + public static void DrawCommandsStates(UInt32 buffer, IntPtr[] indirects, Int32[] sizes, UInt32[] states, UInt32[] fbos, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66737,7 +66737,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesNV")] [CLSCompliant(false)] - public static void DrawCommandsStates(UInt32 buffer, ref IntPtr indirects, ref Int32 sizes, ref UInt32 states, ref UInt32 fbos, UInt32 count) { throw new NotImplementedException(); } + public static void DrawCommandsStates(UInt32 buffer, ref IntPtr indirects, ref Int32 sizes, ref UInt32 states, ref UInt32 fbos, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66748,7 +66748,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesNV")] [CLSCompliant(false)] - public static unsafe void DrawCommandsStates(UInt32 buffer, IntPtr* indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count) { throw new NotImplementedException(); } + public static unsafe void DrawCommandsStates(UInt32 buffer, IntPtr* indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// @@ -66764,7 +66764,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glDrawVkImageNV")] [CLSCompliant(false)] - public static void DrawVkImage(Int64 vkImage, Int32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new NotImplementedException(); } + public static void DrawVkImage(Int64 vkImage, Int32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// @@ -66780,34 +66780,34 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glDrawVkImageNV")] [CLSCompliant(false)] - public static void DrawVkImage(UInt64 vkImage, UInt32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new NotImplementedException(); } + public static void DrawVkImage(UInt64 vkImage, UInt32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glEdgeFlagFormatNV")] - public static void EdgeFlagFormat(Int32 stride) { throw new NotImplementedException(); } + public static void EdgeFlagFormat(Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conditional_render] [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glEndConditionalRenderNV")] - public static void EndConditionalRender() { throw new NotImplementedException(); } + public static void EndConditionalRender() { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glFogCoordFormatNV")] - public static void FogCoordFormat(OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new NotImplementedException(); } + public static void FogCoordFormat(OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_coverage_to_color] /// [AutoGenerated(Category = "NV_fragment_coverage_to_color", Version = "", EntryPoint = "glFragmentCoverageColorNV")] [CLSCompliant(false)] - public static void FragmentCoverageColor(Int32 color) { throw new NotImplementedException(); } + public static void FragmentCoverageColor(Int32 color) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_coverage_to_color] /// [AutoGenerated(Category = "NV_fragment_coverage_to_color", Version = "", EntryPoint = "glFragmentCoverageColorNV")] [CLSCompliant(false)] - public static void FragmentCoverageColor(UInt32 color) { throw new NotImplementedException(); } + public static void FragmentCoverageColor(UInt32 color) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -66816,7 +66816,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, Int32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -66825,7 +66825,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, Int32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -66834,7 +66834,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, Int32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -66843,7 +66843,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, UInt32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -66852,7 +66852,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, UInt32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -66861,12 +66861,12 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, UInt32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGenPathsNV")] - public static Int32 GenPath(Int32 range) { throw new NotImplementedException(); } + public static Int32 GenPath(Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Return parameters of a buffer object @@ -66882,7 +66882,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Return parameters of a buffer object @@ -66898,7 +66898,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Return parameters of a buffer object @@ -66914,7 +66914,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetBufferParameterui64vNV")] [CLSCompliant(false)] - public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Return parameters of a buffer object @@ -66930,7 +66930,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Return parameters of a buffer object @@ -66946,7 +66946,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Return parameters of a buffer object @@ -66962,47 +66962,47 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetBufferParameterui64vNV")] [CLSCompliant(false)] - public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glGetCommandHeaderNV")] [CLSCompliant(false)] - public static Int32 GetCommandHeader(OpenTK.Graphics.OpenGL4.All tokenID, Int32 size) { throw new NotImplementedException(); } + public static Int32 GetCommandHeader(OpenTK.Graphics.OpenGL4.All tokenID, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glGetCommandHeaderNV")] [CLSCompliant(false)] - public static Int32 GetCommandHeader(OpenTK.Graphics.OpenGL4.All tokenID, UInt32 size) { throw new NotImplementedException(); } + public static Int32 GetCommandHeader(OpenTK.Graphics.OpenGL4.All tokenID, UInt32 size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glGetCoverageModulationTableNV")] [CLSCompliant(false)] - public static Single GetCoverageModulationTable() { throw new NotImplementedException(); } + public static Single GetCoverageModulationTable() { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glGetCoverageModulationTableNV")] [CLSCompliant(false)] - public static void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] Single[] v) { throw new NotImplementedException(); } + public static void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glGetCoverageModulationTableNV")] [CLSCompliant(false)] - public static void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] out Single v) { throw new NotImplementedException(); } + public static void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] out Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glGetCoverageModulationTableNV")] [CLSCompliant(false)] - public static unsafe void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] Single* v) { throw new NotImplementedException(); } + public static unsafe void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -67012,7 +67012,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetImageHandleNV")] [CLSCompliant(false)] - public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL4.All format) { throw new NotImplementedException(); } + public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL4.All format) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -67022,7 +67022,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetImageHandleNV")] [CLSCompliant(false)] - public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL4.All format) { throw new NotImplementedException(); } + public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL4.All format) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -67030,7 +67030,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glGetIntegerui64i_vNV")] [CLSCompliant(false)] - public static void GetIntegerui64(OpenTK.Graphics.OpenGL4.All value, Int32 index, [OutAttribute, CountAttribute(Computed = "value")] Int64[] result) { throw new NotImplementedException(); } + public static void GetIntegerui64(OpenTK.Graphics.OpenGL4.All value, Int32 index, [OutAttribute, CountAttribute(Computed = "value")] Int64[] result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -67038,7 +67038,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glGetIntegerui64i_vNV")] [CLSCompliant(false)] - public static void GetIntegerui64(OpenTK.Graphics.OpenGL4.All value, Int32 index, [OutAttribute, CountAttribute(Computed = "value")] out Int64 result) { throw new NotImplementedException(); } + public static void GetIntegerui64(OpenTK.Graphics.OpenGL4.All value, Int32 index, [OutAttribute, CountAttribute(Computed = "value")] out Int64 result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -67046,7 +67046,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glGetIntegerui64i_vNV")] [CLSCompliant(false)] - public static unsafe void GetIntegerui64(OpenTK.Graphics.OpenGL4.All value, Int32 index, [OutAttribute, CountAttribute(Computed = "value")] Int64* result) { throw new NotImplementedException(); } + public static unsafe void GetIntegerui64(OpenTK.Graphics.OpenGL4.All value, Int32 index, [OutAttribute, CountAttribute(Computed = "value")] Int64* result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -67054,7 +67054,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glGetIntegerui64i_vNV")] [CLSCompliant(false)] - public static void GetIntegerui64(OpenTK.Graphics.OpenGL4.All value, UInt32 index, [OutAttribute, CountAttribute(Computed = "value")] UInt64[] result) { throw new NotImplementedException(); } + public static void GetIntegerui64(OpenTK.Graphics.OpenGL4.All value, UInt32 index, [OutAttribute, CountAttribute(Computed = "value")] UInt64[] result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -67062,7 +67062,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glGetIntegerui64i_vNV")] [CLSCompliant(false)] - public static void GetIntegerui64(OpenTK.Graphics.OpenGL4.All value, UInt32 index, [OutAttribute, CountAttribute(Computed = "value")] out UInt64 result) { throw new NotImplementedException(); } + public static void GetIntegerui64(OpenTK.Graphics.OpenGL4.All value, UInt32 index, [OutAttribute, CountAttribute(Computed = "value")] out UInt64 result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -67070,55 +67070,55 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glGetIntegerui64i_vNV")] [CLSCompliant(false)] - public static unsafe void GetIntegerui64(OpenTK.Graphics.OpenGL4.All value, UInt32 index, [OutAttribute, CountAttribute(Computed = "value")] UInt64* result) { throw new NotImplementedException(); } + public static unsafe void GetIntegerui64(OpenTK.Graphics.OpenGL4.All value, UInt32 index, [OutAttribute, CountAttribute(Computed = "value")] UInt64* result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetIntegerui64vNV")] [CLSCompliant(false)] - public static Int64 GetInteger(OpenTK.Graphics.OpenGL4.All value) { throw new NotImplementedException(); } + public static Int64 GetInteger(OpenTK.Graphics.OpenGL4.All value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetIntegerui64vNV")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.OpenGL4.All value, [OutAttribute, CountAttribute(Computed = "value")] Int64[] result) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.OpenGL4.All value, [OutAttribute, CountAttribute(Computed = "value")] Int64[] result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetIntegerui64vNV")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.OpenGL4.All value, [OutAttribute, CountAttribute(Computed = "value")] out Int64 result) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.OpenGL4.All value, [OutAttribute, CountAttribute(Computed = "value")] out Int64 result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetIntegerui64vNV")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.OpenGL4.All value, [OutAttribute, CountAttribute(Computed = "value")] Int64* result) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.OpenGL4.All value, [OutAttribute, CountAttribute(Computed = "value")] Int64* result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetIntegerui64vNV")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.OpenGL4.All value, [OutAttribute, CountAttribute(Computed = "value")] UInt64[] result) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.OpenGL4.All value, [OutAttribute, CountAttribute(Computed = "value")] UInt64[] result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetIntegerui64vNV")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.OpenGL4.All value, [OutAttribute, CountAttribute(Computed = "value")] out UInt64 result) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.OpenGL4.All value, [OutAttribute, CountAttribute(Computed = "value")] out UInt64 result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetIntegerui64vNV")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.OpenGL4.All value, [OutAttribute, CountAttribute(Computed = "value")] UInt64* result) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.OpenGL4.All value, [OutAttribute, CountAttribute(Computed = "value")] UInt64* result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_internalformat_sample_query] /// @@ -67129,7 +67129,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] - public static void GetInternalformatSample(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All internalformat, Int32 samples, OpenTK.Graphics.OpenGL4.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetInternalformatSample(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All internalformat, Int32 samples, OpenTK.Graphics.OpenGL4.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_internalformat_sample_query] /// @@ -67140,7 +67140,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] - public static void GetInternalformatSample(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All internalformat, Int32 samples, OpenTK.Graphics.OpenGL4.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetInternalformatSample(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All internalformat, Int32 samples, OpenTK.Graphics.OpenGL4.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_internalformat_sample_query] /// @@ -67151,7 +67151,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] - public static unsafe void GetInternalformatSample(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All internalformat, Int32 samples, OpenTK.Graphics.OpenGL4.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetInternalformatSample(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All internalformat, Int32 samples, OpenTK.Graphics.OpenGL4.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -67159,7 +67159,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -67167,7 +67167,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -67175,7 +67175,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -67184,7 +67184,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -67193,7 +67193,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -67202,7 +67202,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -67210,7 +67210,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -67218,7 +67218,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -67226,7 +67226,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -67235,7 +67235,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -67244,7 +67244,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -67253,7 +67253,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67261,7 +67261,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void GetPathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67269,7 +67269,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new NotImplementedException(); } + public static void GetPathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67277,7 +67277,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67285,7 +67285,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67293,7 +67293,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67301,169 +67301,169 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] - public static unsafe void GetPathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static Byte GetPathCommand(Int32 path) { throw new NotImplementedException(); } + public static Byte GetPathCommand(Int32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static Byte GetPathCommand(UInt32 path) { throw new NotImplementedException(); } + public static Byte GetPathCommand(UInt32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte[] commands) { throw new NotImplementedException(); } + public static void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte[] commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Byte commands) { throw new NotImplementedException(); } + public static void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Byte commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static unsafe void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands) { throw new NotImplementedException(); } + public static unsafe void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte[] commands) { throw new NotImplementedException(); } + public static void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte[] commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Byte commands) { throw new NotImplementedException(); } + public static void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Byte commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static unsafe void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands) { throw new NotImplementedException(); } + public static unsafe void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static Single GetPathCoord(Int32 path) { throw new NotImplementedException(); } + public static Single GetPathCoord(Int32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static Single GetPathCoord(UInt32 path) { throw new NotImplementedException(); } + public static Single GetPathCoord(UInt32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] coords) { throw new NotImplementedException(); } + public static void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single coords) { throw new NotImplementedException(); } + public static void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static unsafe void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords) { throw new NotImplementedException(); } + public static unsafe void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] coords) { throw new NotImplementedException(); } + public static void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single coords) { throw new NotImplementedException(); } + public static void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static unsafe void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords) { throw new NotImplementedException(); } + public static unsafe void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static Single GetPathDashArray(Int32 path) { throw new NotImplementedException(); } + public static Single GetPathDashArray(Int32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static Single GetPathDashArray(UInt32 path) { throw new NotImplementedException(); } + public static Single GetPathDashArray(UInt32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] dashArray) { throw new NotImplementedException(); } + public static void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single dashArray) { throw new NotImplementedException(); } + public static void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static unsafe void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray) { throw new NotImplementedException(); } + public static unsafe void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] dashArray) { throw new NotImplementedException(); } + public static void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single dashArray) { throw new NotImplementedException(); } + public static void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static unsafe void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray) { throw new NotImplementedException(); } + public static unsafe void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67471,7 +67471,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathLengthNV")] [CLSCompliant(false)] - public static Single GetPathLength(Int32 path, Int32 startSegment, Int32 numSegments) { throw new NotImplementedException(); } + public static Single GetPathLength(Int32 path, Int32 startSegment, Int32 numSegments) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67479,7 +67479,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathLengthNV")] [CLSCompliant(false)] - public static Single GetPathLength(UInt32 path, Int32 startSegment, Int32 numSegments) { throw new NotImplementedException(); } + public static Single GetPathLength(UInt32 path, Int32 startSegment, Int32 numSegments) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67489,7 +67489,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new NotImplementedException(); } + public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67499,7 +67499,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new NotImplementedException(); } + public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67509,7 +67509,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new NotImplementedException(); } + public static unsafe void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67519,7 +67519,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new NotImplementedException(); } + public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67529,7 +67529,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new NotImplementedException(); } + public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67539,7 +67539,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new NotImplementedException(); } + public static unsafe void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67551,7 +67551,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new NotImplementedException(); } + public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67563,7 +67563,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new NotImplementedException(); } + public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67575,7 +67575,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new NotImplementedException(); } + public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67589,7 +67589,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67603,7 +67603,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67617,7 +67617,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67631,7 +67631,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67645,7 +67645,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67659,7 +67659,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67673,7 +67673,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67687,7 +67687,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67701,7 +67701,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67715,7 +67715,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67729,7 +67729,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67743,7 +67743,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67755,7 +67755,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new NotImplementedException(); } + public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67767,7 +67767,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new NotImplementedException(); } + public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67779,7 +67779,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new NotImplementedException(); } + public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67793,7 +67793,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67807,7 +67807,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67821,7 +67821,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67835,7 +67835,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67849,7 +67849,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67863,7 +67863,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67877,7 +67877,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67891,7 +67891,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67905,7 +67905,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67919,7 +67919,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67933,7 +67933,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67947,7 +67947,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67955,7 +67955,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new NotImplementedException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67963,7 +67963,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new NotImplementedException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67971,7 +67971,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67979,7 +67979,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new NotImplementedException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67987,7 +67987,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new NotImplementedException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67995,7 +67995,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68003,7 +68003,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68011,7 +68011,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68019,7 +68019,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68027,7 +68027,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68035,7 +68035,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68043,7 +68043,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68057,7 +68057,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new NotImplementedException(); } + public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68071,7 +68071,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new NotImplementedException(); } + public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68085,7 +68085,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new NotImplementedException(); } + public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68099,7 +68099,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new NotImplementedException(); } + public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68113,7 +68113,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new NotImplementedException(); } + public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68127,7 +68127,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new NotImplementedException(); } + public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68143,7 +68143,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68159,7 +68159,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68175,7 +68175,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68191,7 +68191,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68207,7 +68207,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68223,7 +68223,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68239,7 +68239,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68255,7 +68255,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68271,7 +68271,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68287,7 +68287,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68303,7 +68303,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68319,7 +68319,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68335,7 +68335,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68351,7 +68351,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68367,7 +68367,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68383,7 +68383,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68399,7 +68399,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68415,7 +68415,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68431,7 +68431,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68447,7 +68447,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68463,7 +68463,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68479,7 +68479,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68495,7 +68495,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68511,7 +68511,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68519,7 +68519,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68527,7 +68527,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68535,7 +68535,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68543,7 +68543,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68551,7 +68551,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68559,7 +68559,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static unsafe void GetPathTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -68578,7 +68578,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.All programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.OpenGL4.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.All programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.OpenGL4.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -68597,7 +68597,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.All programInterface, Int32 index, Int32 propCount, ref OpenTK.Graphics.OpenGL4.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.All programInterface, Int32 index, Int32 propCount, ref OpenTK.Graphics.OpenGL4.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -68616,7 +68616,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.All programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.OpenGL4.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.All programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.OpenGL4.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -68635,7 +68635,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL4.All programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.OpenGL4.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL4.All programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.OpenGL4.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -68654,7 +68654,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL4.All programInterface, UInt32 index, Int32 propCount, ref OpenTK.Graphics.OpenGL4.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL4.All programInterface, UInt32 index, Int32 propCount, ref OpenTK.Graphics.OpenGL4.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -68673,38 +68673,38 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL4.All programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.OpenGL4.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL4.All programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.OpenGL4.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glGetStageIndexNV")] - public static Int16 GetStageIndex(OpenTK.Graphics.OpenGL4.All shadertype) { throw new NotImplementedException(); } + public static Int16 GetStageIndex(OpenTK.Graphics.OpenGL4.All shadertype) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleNV")] [CLSCompliant(false)] - public static Int64 GetTextureHandle(Int32 texture) { throw new NotImplementedException(); } + public static Int64 GetTextureHandle(Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleNV")] [CLSCompliant(false)] - public static Int64 GetTextureHandle(UInt32 texture) { throw new NotImplementedException(); } + public static Int64 GetTextureHandle(UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureSamplerHandleNV")] [CLSCompliant(false)] - public static Int64 GetTextureSamplerHandle(Int32 texture, Int32 sampler) { throw new NotImplementedException(); } + public static Int64 GetTextureSamplerHandle(Int32 texture, Int32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureSamplerHandleNV")] [CLSCompliant(false)] - public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new NotImplementedException(); } + public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Returns the value of a uniform variable @@ -68720,7 +68720,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Returns the value of a uniform variable @@ -68736,7 +68736,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Returns the value of a uniform variable @@ -68752,7 +68752,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Returns the value of a uniform variable @@ -68768,7 +68768,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Returns the value of a uniform variable @@ -68784,7 +68784,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Returns the value of a uniform variable @@ -68800,7 +68800,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Returns the value of a uniform variable @@ -68816,7 +68816,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetUniformui64vNV")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Returns the value of a uniform variable @@ -68832,7 +68832,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetUniformui64vNV")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Returns the value of a uniform variable @@ -68848,7 +68848,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetUniformui64vNV")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -68856,7 +68856,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLi64vNV")] [CLSCompliant(false)] - public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -68864,7 +68864,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLi64vNV")] [CLSCompliant(false)] - public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -68872,7 +68872,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLi64vNV")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -68880,7 +68880,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLi64vNV")] [CLSCompliant(false)] - public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -68888,7 +68888,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLi64vNV")] [CLSCompliant(false)] - public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -68896,7 +68896,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLi64vNV")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -68904,7 +68904,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLui64vNV")] [CLSCompliant(false)] - public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -68912,7 +68912,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLui64vNV")] [CLSCompliant(false)] - public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -68920,18 +68920,18 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLui64vNV")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [length: COMPSIZE(name)] [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glGetVkProcAddrNV")] - public static IntPtr GetVkProcAddr([CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static IntPtr GetVkProcAddr([CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glIndexFormatNV")] - public static void IndexFormat(OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new NotImplementedException(); } + public static void IndexFormat(OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68940,7 +68940,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glInterpolatePathsNV")] [CLSCompliant(false)] - public static void InterpolatePath(Int32 resultPath, Int32 pathA, Int32 pathB, Single weight) { throw new NotImplementedException(); } + public static void InterpolatePath(Int32 resultPath, Int32 pathA, Int32 pathB, Single weight) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68949,60 +68949,60 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glInterpolatePathsNV")] [CLSCompliant(false)] - public static void InterpolatePath(UInt32 resultPath, UInt32 pathA, UInt32 pathB, Single weight) { throw new NotImplementedException(); } + public static void InterpolatePath(UInt32 resultPath, UInt32 pathA, UInt32 pathB, Single weight) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glIsBufferResidentNV")] - public static bool IsBufferResident(OpenTK.Graphics.OpenGL4.All target) { throw new NotImplementedException(); } + public static bool IsBufferResident(OpenTK.Graphics.OpenGL4.All target) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glIsCommandListNV")] [CLSCompliant(false)] - public static bool IsCommandList(Int32 list) { throw new NotImplementedException(); } + public static bool IsCommandList(Int32 list) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glIsCommandListNV")] [CLSCompliant(false)] - public static bool IsCommandList(UInt32 list) { throw new NotImplementedException(); } + public static bool IsCommandList(UInt32 list) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsImageHandleResidentNV")] [CLSCompliant(false)] - public static bool IsImageHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static bool IsImageHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsImageHandleResidentNV")] [CLSCompliant(false)] - public static bool IsImageHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static bool IsImageHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glIsNamedBufferResidentNV")] [CLSCompliant(false)] - public static bool IsNamedBufferResident(Int32 buffer) { throw new NotImplementedException(); } + public static bool IsNamedBufferResident(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glIsNamedBufferResidentNV")] [CLSCompliant(false)] - public static bool IsNamedBufferResident(UInt32 buffer) { throw new NotImplementedException(); } + public static bool IsNamedBufferResident(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPathNV")] [CLSCompliant(false)] - public static bool IsPath(Int32 path) { throw new NotImplementedException(); } + public static bool IsPath(Int32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPathNV")] [CLSCompliant(false)] - public static bool IsPath(UInt32 path) { throw new NotImplementedException(); } + public static bool IsPath(UInt32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -69011,7 +69011,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPointInFillPathNV")] [CLSCompliant(false)] - public static bool IsPointInFillPath(Int32 path, Int32 mask, Single x, Single y) { throw new NotImplementedException(); } + public static bool IsPointInFillPath(Int32 path, Int32 mask, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -69020,7 +69020,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPointInFillPathNV")] [CLSCompliant(false)] - public static bool IsPointInFillPath(UInt32 path, UInt32 mask, Single x, Single y) { throw new NotImplementedException(); } + public static bool IsPointInFillPath(UInt32 path, UInt32 mask, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -69028,7 +69028,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPointInStrokePathNV")] [CLSCompliant(false)] - public static bool IsPointInStrokePath(Int32 path, Single x, Single y) { throw new NotImplementedException(); } + public static bool IsPointInStrokePath(Int32 path, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -69036,31 +69036,31 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPointInStrokePathNV")] [CLSCompliant(false)] - public static bool IsPointInStrokePath(UInt32 path, Single x, Single y) { throw new NotImplementedException(); } + public static bool IsPointInStrokePath(UInt32 path, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glIsStateNV")] [CLSCompliant(false)] - public static bool IsState(Int32 state) { throw new NotImplementedException(); } + public static bool IsState(Int32 state) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glIsStateNV")] [CLSCompliant(false)] - public static bool IsState(UInt32 state) { throw new NotImplementedException(); } + public static bool IsState(UInt32 state) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsTextureHandleResidentNV")] [CLSCompliant(false)] - public static bool IsTextureHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static bool IsTextureHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsTextureHandleResidentNV")] [CLSCompliant(false)] - public static bool IsTextureHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static bool IsTextureHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69072,7 +69072,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glListDrawCommandsStatesClientNV")] [CLSCompliant(false)] - public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, IntPtr indirects, Int32[] sizes, Int32[] states, Int32[] fbos, Int32 count) { throw new NotImplementedException(); } + public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, IntPtr indirects, Int32[] sizes, Int32[] states, Int32[] fbos, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69084,7 +69084,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glListDrawCommandsStatesClientNV")] [CLSCompliant(false)] - public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, IntPtr indirects, ref Int32 sizes, ref Int32 states, ref Int32 fbos, Int32 count) { throw new NotImplementedException(); } + public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, IntPtr indirects, ref Int32 sizes, ref Int32 states, ref Int32 fbos, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69096,7 +69096,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glListDrawCommandsStatesClientNV")] [CLSCompliant(false)] - public static unsafe void ListDrawCommandsStatesClient(Int32 list, Int32 segment, IntPtr indirects, Int32* sizes, Int32* states, Int32* fbos, Int32 count) { throw new NotImplementedException(); } + public static unsafe void ListDrawCommandsStatesClient(Int32 list, Int32 segment, IntPtr indirects, Int32* sizes, Int32* states, Int32* fbos, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69110,7 +69110,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] T2[] indirects, Int32[] sizes, Int32[] states, Int32[] fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69124,7 +69124,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] T2[] indirects, ref Int32 sizes, ref Int32 states, ref Int32 fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69138,7 +69138,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] T2[] indirects, Int32* sizes, Int32* states, Int32* fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69152,7 +69152,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] T2[,] indirects, Int32[] sizes, Int32[] states, Int32[] fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69166,7 +69166,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] T2[,] indirects, ref Int32 sizes, ref Int32 states, ref Int32 fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69180,7 +69180,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] T2[,] indirects, Int32* sizes, Int32* states, Int32* fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69194,7 +69194,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] T2[,,] indirects, Int32[] sizes, Int32[] states, Int32[] fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69208,7 +69208,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] T2[,,] indirects, ref Int32 sizes, ref Int32 states, ref Int32 fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69222,7 +69222,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] T2[,,] indirects, Int32* sizes, Int32* states, Int32* fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69236,7 +69236,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] ref T2 indirects, Int32[] sizes, Int32[] states, Int32[] fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69250,7 +69250,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] ref T2 indirects, ref Int32 sizes, ref Int32 states, ref Int32 fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69264,7 +69264,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] ref T2 indirects, Int32* sizes, Int32* states, Int32* fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69276,7 +69276,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glListDrawCommandsStatesClientNV")] [CLSCompliant(false)] - public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, IntPtr indirects, Int32[] sizes, UInt32[] states, UInt32[] fbos, UInt32 count) { throw new NotImplementedException(); } + public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, IntPtr indirects, Int32[] sizes, UInt32[] states, UInt32[] fbos, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69288,7 +69288,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glListDrawCommandsStatesClientNV")] [CLSCompliant(false)] - public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, IntPtr indirects, ref Int32 sizes, ref UInt32 states, ref UInt32 fbos, UInt32 count) { throw new NotImplementedException(); } + public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, IntPtr indirects, ref Int32 sizes, ref UInt32 states, ref UInt32 fbos, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69300,7 +69300,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glListDrawCommandsStatesClientNV")] [CLSCompliant(false)] - public static unsafe void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, IntPtr indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count) { throw new NotImplementedException(); } + public static unsafe void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, IntPtr indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69314,7 +69314,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] T2[] indirects, Int32[] sizes, UInt32[] states, UInt32[] fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69328,7 +69328,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] T2[] indirects, ref Int32 sizes, ref UInt32 states, ref UInt32 fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69342,7 +69342,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] T2[] indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69356,7 +69356,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] T2[,] indirects, Int32[] sizes, UInt32[] states, UInt32[] fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69370,7 +69370,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] T2[,] indirects, ref Int32 sizes, ref UInt32 states, ref UInt32 fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69384,7 +69384,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] T2[,] indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69398,7 +69398,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] T2[,,] indirects, Int32[] sizes, UInt32[] states, UInt32[] fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69412,7 +69412,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] T2[,,] indirects, ref Int32 sizes, ref UInt32 states, ref UInt32 fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69426,7 +69426,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] T2[,,] indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69440,7 +69440,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] ref T2 indirects, Int32[] sizes, UInt32[] states, UInt32[] fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69454,7 +69454,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] ref T2 indirects, ref Int32 sizes, ref UInt32 states, ref UInt32 fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69468,220 +69468,220 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] ref T2 indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glMakeBufferNonResidentNV")] - public static void MakeBufferNonResident(OpenTK.Graphics.OpenGL4.All target) { throw new NotImplementedException(); } + public static void MakeBufferNonResident(OpenTK.Graphics.OpenGL4.All target) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glMakeBufferResidentNV")] - public static void MakeBufferResident(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All access) { throw new NotImplementedException(); } + public static void MakeBufferResident(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All access) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleNonResidentNV")] [CLSCompliant(false)] - public static void MakeImageHandleNonResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeImageHandleNonResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleNonResidentNV")] [CLSCompliant(false)] - public static void MakeImageHandleNonResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeImageHandleNonResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleResidentNV")] [CLSCompliant(false)] - public static void MakeImageHandleResident(Int64 handle, OpenTK.Graphics.OpenGL4.All access) { throw new NotImplementedException(); } + public static void MakeImageHandleResident(Int64 handle, OpenTK.Graphics.OpenGL4.All access) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleResidentNV")] [CLSCompliant(false)] - public static void MakeImageHandleResident(UInt64 handle, OpenTK.Graphics.OpenGL4.All access) { throw new NotImplementedException(); } + public static void MakeImageHandleResident(UInt64 handle, OpenTK.Graphics.OpenGL4.All access) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glMakeNamedBufferNonResidentNV")] [CLSCompliant(false)] - public static void MakeNamedBufferNonResident(Int32 buffer) { throw new NotImplementedException(); } + public static void MakeNamedBufferNonResident(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glMakeNamedBufferNonResidentNV")] [CLSCompliant(false)] - public static void MakeNamedBufferNonResident(UInt32 buffer) { throw new NotImplementedException(); } + public static void MakeNamedBufferNonResident(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glMakeNamedBufferResidentNV")] [CLSCompliant(false)] - public static void MakeNamedBufferResident(Int32 buffer, OpenTK.Graphics.OpenGL4.All access) { throw new NotImplementedException(); } + public static void MakeNamedBufferResident(Int32 buffer, OpenTK.Graphics.OpenGL4.All access) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glMakeNamedBufferResidentNV")] [CLSCompliant(false)] - public static void MakeNamedBufferResident(UInt32 buffer, OpenTK.Graphics.OpenGL4.All access) { throw new NotImplementedException(); } + public static void MakeNamedBufferResident(UInt32 buffer, OpenTK.Graphics.OpenGL4.All access) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleNonResidentNV")] [CLSCompliant(false)] - public static void MakeTextureHandleNonResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleNonResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleNonResidentNV")] [CLSCompliant(false)] - public static void MakeTextureHandleNonResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleNonResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleResidentNV")] [CLSCompliant(false)] - public static void MakeTextureHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleResidentNV")] [CLSCompliant(false)] - public static void MakeTextureHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x2fNV")] [CLSCompliant(false)] - public static void MatrixLoad3x2(OpenTK.Graphics.OpenGL4.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixLoad3x2(OpenTK.Graphics.OpenGL4.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x2fNV")] [CLSCompliant(false)] - public static void MatrixLoad3x2(OpenTK.Graphics.OpenGL4.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixLoad3x2(OpenTK.Graphics.OpenGL4.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x2fNV")] [CLSCompliant(false)] - public static unsafe void MatrixLoad3x2(OpenTK.Graphics.OpenGL4.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoad3x2(OpenTK.Graphics.OpenGL4.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x3fNV")] [CLSCompliant(false)] - public static void MatrixLoad3x3(OpenTK.Graphics.OpenGL4.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixLoad3x3(OpenTK.Graphics.OpenGL4.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x3fNV")] [CLSCompliant(false)] - public static void MatrixLoad3x3(OpenTK.Graphics.OpenGL4.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixLoad3x3(OpenTK.Graphics.OpenGL4.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x3fNV")] [CLSCompliant(false)] - public static unsafe void MatrixLoad3x3(OpenTK.Graphics.OpenGL4.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoad3x3(OpenTK.Graphics.OpenGL4.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTranspose3x3fNV")] [CLSCompliant(false)] - public static void MatrixLoadTranspose3x3(OpenTK.Graphics.OpenGL4.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixLoadTranspose3x3(OpenTK.Graphics.OpenGL4.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTranspose3x3fNV")] [CLSCompliant(false)] - public static void MatrixLoadTranspose3x3(OpenTK.Graphics.OpenGL4.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixLoadTranspose3x3(OpenTK.Graphics.OpenGL4.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTranspose3x3fNV")] [CLSCompliant(false)] - public static unsafe void MatrixLoadTranspose3x3(OpenTK.Graphics.OpenGL4.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoadTranspose3x3(OpenTK.Graphics.OpenGL4.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x2fNV")] [CLSCompliant(false)] - public static void MatrixMult3x2(OpenTK.Graphics.OpenGL4.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixMult3x2(OpenTK.Graphics.OpenGL4.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x2fNV")] [CLSCompliant(false)] - public static void MatrixMult3x2(OpenTK.Graphics.OpenGL4.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixMult3x2(OpenTK.Graphics.OpenGL4.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x2fNV")] [CLSCompliant(false)] - public static unsafe void MatrixMult3x2(OpenTK.Graphics.OpenGL4.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMult3x2(OpenTK.Graphics.OpenGL4.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x3fNV")] [CLSCompliant(false)] - public static void MatrixMult3x3(OpenTK.Graphics.OpenGL4.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixMult3x3(OpenTK.Graphics.OpenGL4.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x3fNV")] [CLSCompliant(false)] - public static void MatrixMult3x3(OpenTK.Graphics.OpenGL4.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixMult3x3(OpenTK.Graphics.OpenGL4.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x3fNV")] [CLSCompliant(false)] - public static unsafe void MatrixMult3x3(OpenTK.Graphics.OpenGL4.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMult3x3(OpenTK.Graphics.OpenGL4.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTranspose3x3fNV")] [CLSCompliant(false)] - public static void MatrixMultTranspose3x3(OpenTK.Graphics.OpenGL4.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixMultTranspose3x3(OpenTK.Graphics.OpenGL4.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTranspose3x3fNV")] [CLSCompliant(false)] - public static void MatrixMultTranspose3x3(OpenTK.Graphics.OpenGL4.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixMultTranspose3x3(OpenTK.Graphics.OpenGL4.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTranspose3x3fNV")] [CLSCompliant(false)] - public static unsafe void MatrixMultTranspose3x3(OpenTK.Graphics.OpenGL4.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMultTranspose3x3(OpenTK.Graphics.OpenGL4.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -69691,7 +69691,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "NV_bindless_multi_draw_indirect_count", Version = "", EntryPoint = "glMultiDrawArraysIndirectBindlessCountNV")] - public static void MultiDrawArraysIndirectBindlessCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, IntPtr indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) { throw new NotImplementedException(); } + public static void MultiDrawArraysIndirectBindlessCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, IntPtr indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -69704,7 +69704,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawArraysIndirectBindlessCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] T1[] indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -69717,7 +69717,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawArraysIndirectBindlessCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] T1[,] indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -69730,7 +69730,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawArraysIndirectBindlessCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] T1[,,] indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -69742,7 +69742,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "NV_bindless_multi_draw_indirect_count", Version = "", EntryPoint = "glMultiDrawArraysIndirectBindlessCountNV")] public static void MultiDrawArraysIndirectBindlessCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] ref T1 indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -69751,7 +69751,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "NV_bindless_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectBindlessNV")] - public static void MultiDrawArraysIndirectBindles(OpenTK.Graphics.OpenGL4.PrimitiveType mode, IntPtr indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) { throw new NotImplementedException(); } + public static void MultiDrawArraysIndirectBindles(OpenTK.Graphics.OpenGL4.PrimitiveType mode, IntPtr indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -69763,7 +69763,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawArraysIndirectBindles(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] T1[] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -69775,7 +69775,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawArraysIndirectBindles(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] T1[,] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -69787,7 +69787,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawArraysIndirectBindles(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] T1[,,] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -69798,7 +69798,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "NV_bindless_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectBindlessNV")] public static void MultiDrawArraysIndirectBindles(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] ref T1 indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -69809,7 +69809,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "NV_bindless_multi_draw_indirect_count", Version = "", EntryPoint = "glMultiDrawElementsIndirectBindlessCountNV")] - public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, IntPtr indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) { throw new NotImplementedException(); } + public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, IntPtr indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -69823,7 +69823,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[] indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -69837,7 +69837,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[,] indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -69851,7 +69851,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[,,] indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -69864,7 +69864,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "NV_bindless_multi_draw_indirect_count", Version = "", EntryPoint = "glMultiDrawElementsIndirectBindlessCountNV")] public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] ref T2 indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -69874,7 +69874,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "NV_bindless_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectBindlessNV")] - public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, IntPtr indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) { throw new NotImplementedException(); } + public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, IntPtr indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -69887,7 +69887,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -69900,7 +69900,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[,] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -69913,7 +69913,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[,,] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -69925,7 +69925,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "NV_bindless_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectBindlessNV")] public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] ref T2 indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -69934,7 +69934,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -69943,7 +69943,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -69952,7 +69952,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -69961,7 +69961,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -69970,7 +69970,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -69979,13 +69979,13 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glNormalFormatNV")] - public static void NormalFormat(OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new NotImplementedException(); } + public static void NormalFormat(OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -69994,7 +69994,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(genMode,colorFormat)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] - public static void PathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All genMode, OpenTK.Graphics.OpenGL4.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single[] coeffs) { throw new NotImplementedException(); } + public static void PathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All genMode, OpenTK.Graphics.OpenGL4.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70003,7 +70003,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(genMode,colorFormat)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] - public static void PathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All genMode, OpenTK.Graphics.OpenGL4.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] ref Single coeffs) { throw new NotImplementedException(); } + public static void PathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All genMode, OpenTK.Graphics.OpenGL4.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70012,7 +70012,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(genMode,colorFormat)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] - public static unsafe void PathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All genMode, OpenTK.Graphics.OpenGL4.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single* coeffs) { throw new NotImplementedException(); } + public static unsafe void PathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All genMode, OpenTK.Graphics.OpenGL4.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70023,7 +70023,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70036,7 +70036,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70049,7 +70049,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70062,7 +70062,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70075,7 +70075,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70086,7 +70086,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70099,7 +70099,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70112,7 +70112,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70125,7 +70125,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70138,7 +70138,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70149,7 +70149,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70162,7 +70162,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70175,7 +70175,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70188,7 +70188,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70201,7 +70201,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70212,7 +70212,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70225,7 +70225,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70238,7 +70238,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70251,7 +70251,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70264,7 +70264,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70275,7 +70275,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70288,7 +70288,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70301,7 +70301,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70314,7 +70314,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70327,7 +70327,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70338,7 +70338,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70351,7 +70351,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70364,7 +70364,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70377,7 +70377,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70390,7 +70390,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70399,7 +70399,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoordsNV")] [CLSCompliant(false)] - public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70410,7 +70410,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70421,7 +70421,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[,] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70432,7 +70432,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[,,] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70443,7 +70443,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T3 coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70452,7 +70452,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoordsNV")] [CLSCompliant(false)] - public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70463,7 +70463,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70474,7 +70474,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[,] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70485,7 +70485,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[,,] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70496,12 +70496,12 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T3 coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoverDepthFuncNV")] - public static void PathCoverDepthFunc(OpenTK.Graphics.OpenGL4.DepthFunction func) { throw new NotImplementedException(); } + public static void PathCoverDepthFunc(OpenTK.Graphics.OpenGL4.DepthFunction func) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70509,7 +70509,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single[] dashArray) { throw new NotImplementedException(); } + public static void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single[] dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70517,7 +70517,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] ref Single dashArray) { throw new NotImplementedException(); } + public static void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] ref Single dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70525,7 +70525,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static unsafe void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray) { throw new NotImplementedException(); } + public static unsafe void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70533,7 +70533,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single[] dashArray) { throw new NotImplementedException(); } + public static void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single[] dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70541,7 +70541,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] ref Single dashArray) { throw new NotImplementedException(); } + public static void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] ref Single dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70549,12 +70549,12 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static unsafe void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray) { throw new NotImplementedException(); } + public static unsafe void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathFogGenNV")] - public static void PathFogGen(OpenTK.Graphics.OpenGL4.All genMode) { throw new NotImplementedException(); } + public static void PathFogGen(OpenTK.Graphics.OpenGL4.All genMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70567,7 +70567,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70582,7 +70582,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T2[] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70597,7 +70597,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T2[,] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70612,7 +70612,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70627,7 +70627,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] ref T2 fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70640,7 +70640,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70655,7 +70655,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T2[] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70670,7 +70670,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T2[,] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70685,7 +70685,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70700,7 +70700,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] ref T2 fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70711,7 +70711,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70722,7 +70722,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70735,7 +70735,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T1[] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70748,7 +70748,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T1[] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70761,7 +70761,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T1[,] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70774,7 +70774,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T1[,] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70787,7 +70787,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70800,7 +70800,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70813,7 +70813,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] ref T1 fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70826,7 +70826,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] ref T1 fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70840,7 +70840,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70856,7 +70856,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70872,7 +70872,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70888,7 +70888,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70904,7 +70904,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70918,7 +70918,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70934,7 +70934,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70950,7 +70950,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70966,7 +70966,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70982,7 +70982,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70997,7 +70997,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71015,7 +71015,7 @@ namespace OpenTK.Graphics.OpenGL4 public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71033,7 +71033,7 @@ namespace OpenTK.Graphics.OpenGL4 public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71051,7 +71051,7 @@ namespace OpenTK.Graphics.OpenGL4 public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71069,7 +71069,7 @@ namespace OpenTK.Graphics.OpenGL4 public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71084,7 +71084,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71102,7 +71102,7 @@ namespace OpenTK.Graphics.OpenGL4 public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71120,7 +71120,7 @@ namespace OpenTK.Graphics.OpenGL4 public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71138,7 +71138,7 @@ namespace OpenTK.Graphics.OpenGL4 public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71156,7 +71156,7 @@ namespace OpenTK.Graphics.OpenGL4 public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71170,7 +71170,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathMemoryGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, Int32 fontSize, IntPtr fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, Int32 fontSize, IntPtr fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71186,7 +71186,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71202,7 +71202,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[,] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71218,7 +71218,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[,,] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71234,7 +71234,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] ref T3 fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71248,7 +71248,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathMemoryGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71264,7 +71264,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71280,7 +71280,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[,] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71296,7 +71296,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[,,] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71312,7 +71312,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] ref T3 fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71326,7 +71326,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathMemoryGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, Int32 fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, Int32 fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71342,7 +71342,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71358,7 +71358,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[,] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71374,7 +71374,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[,,] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71390,7 +71390,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] ref T3 fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71404,7 +71404,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathMemoryGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71420,7 +71420,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71436,7 +71436,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[,] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71452,7 +71452,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[,,] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71468,7 +71468,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] ref T3 fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71476,7 +71476,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, Single value) { throw new NotImplementedException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71484,7 +71484,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, Single value) { throw new NotImplementedException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71492,7 +71492,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71500,7 +71500,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71508,7 +71508,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71516,7 +71516,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71524,7 +71524,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameteriNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, Int32 value) { throw new NotImplementedException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71532,7 +71532,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameteriNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, Int32 value) { throw new NotImplementedException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71540,7 +71540,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71548,7 +71548,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71556,7 +71556,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71564,13 +71564,13 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilDepthOffsetNV")] - public static void PathStencilDepthOffset(Single factor, Single units) { throw new NotImplementedException(); } + public static void PathStencilDepthOffset(Single factor, Single units) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71578,7 +71578,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilFuncNV")] [CLSCompliant(false)] - public static void PathStencilFunc(OpenTK.Graphics.OpenGL4.StencilFunction func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } + public static void PathStencilFunc(OpenTK.Graphics.OpenGL4.StencilFunction func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71586,7 +71586,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilFuncNV")] [CLSCompliant(false)] - public static void PathStencilFunc(OpenTK.Graphics.OpenGL4.StencilFunction func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } + public static void PathStencilFunc(OpenTK.Graphics.OpenGL4.StencilFunction func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71595,7 +71595,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] - public static void PathString(Int32 path, OpenTK.Graphics.OpenGL4.All format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new NotImplementedException(); } + public static void PathString(Int32 path, OpenTK.Graphics.OpenGL4.All format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71606,7 +71606,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.OpenGL4.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71617,7 +71617,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.OpenGL4.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71628,7 +71628,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.OpenGL4.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71639,7 +71639,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.OpenGL4.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71648,7 +71648,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] - public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL4.All format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new NotImplementedException(); } + public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL4.All format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71659,7 +71659,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL4.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71670,7 +71670,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL4.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71681,7 +71681,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL4.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71692,7 +71692,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL4.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71705,7 +71705,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71720,7 +71720,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71735,7 +71735,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71750,7 +71750,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71765,7 +71765,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71778,7 +71778,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71793,7 +71793,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71808,7 +71808,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71823,7 +71823,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71838,7 +71838,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71851,7 +71851,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71866,7 +71866,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71881,7 +71881,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71896,7 +71896,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71911,7 +71911,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71924,7 +71924,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71939,7 +71939,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71954,7 +71954,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71969,7 +71969,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71984,7 +71984,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71997,7 +71997,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72012,7 +72012,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72027,7 +72027,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72042,7 +72042,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72057,7 +72057,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72070,7 +72070,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72085,7 +72085,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72100,7 +72100,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72115,7 +72115,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72130,7 +72130,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72140,7 +72140,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCoordsNV")] [CLSCompliant(false)] - public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72152,7 +72152,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72164,7 +72164,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[,] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72176,7 +72176,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[,,] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72188,7 +72188,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T4 coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72198,7 +72198,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCoordsNV")] [CLSCompliant(false)] - public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72210,7 +72210,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72222,7 +72222,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[,] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72234,7 +72234,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[,,] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72246,7 +72246,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T4 coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72255,7 +72255,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(genMode,components)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] - public static void PathTexGen(OpenTK.Graphics.OpenGL4.All texCoordSet, OpenTK.Graphics.OpenGL4.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single[] coeffs) { throw new NotImplementedException(); } + public static void PathTexGen(OpenTK.Graphics.OpenGL4.All texCoordSet, OpenTK.Graphics.OpenGL4.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72264,7 +72264,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(genMode,components)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] - public static void PathTexGen(OpenTK.Graphics.OpenGL4.All texCoordSet, OpenTK.Graphics.OpenGL4.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] ref Single coeffs) { throw new NotImplementedException(); } + public static void PathTexGen(OpenTK.Graphics.OpenGL4.All texCoordSet, OpenTK.Graphics.OpenGL4.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72273,7 +72273,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(genMode,components)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] - public static unsafe void PathTexGen(OpenTK.Graphics.OpenGL4.All texCoordSet, OpenTK.Graphics.OpenGL4.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single* coeffs) { throw new NotImplementedException(); } + public static unsafe void PathTexGen(OpenTK.Graphics.OpenGL4.All texCoordSet, OpenTK.Graphics.OpenGL4.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72286,7 +72286,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] [CLSCompliant(false)] - public static bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] out Single x, [OutAttribute, CountAttribute(Count = 1)] out Single y, [OutAttribute, CountAttribute(Count = 1)] out Single tangentX, [OutAttribute, CountAttribute(Count = 1)] out Single tangentY) { throw new NotImplementedException(); } + public static bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] out Single x, [OutAttribute, CountAttribute(Count = 1)] out Single y, [OutAttribute, CountAttribute(Count = 1)] out Single tangentX, [OutAttribute, CountAttribute(Count = 1)] out Single tangentY) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72299,7 +72299,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] [CLSCompliant(false)] - public static unsafe bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY) { throw new NotImplementedException(); } + public static unsafe bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72312,7 +72312,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] [CLSCompliant(false)] - public static bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] out Single x, [OutAttribute, CountAttribute(Count = 1)] out Single y, [OutAttribute, CountAttribute(Count = 1)] out Single tangentX, [OutAttribute, CountAttribute(Count = 1)] out Single tangentY) { throw new NotImplementedException(); } + public static bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] out Single x, [OutAttribute, CountAttribute(Count = 1)] out Single y, [OutAttribute, CountAttribute(Count = 1)] out Single tangentX, [OutAttribute, CountAttribute(Count = 1)] out Single tangentY) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72325,7 +72325,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] [CLSCompliant(false)] - public static unsafe bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY) { throw new NotImplementedException(); } + public static unsafe bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72335,7 +72335,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.OpenGL4.All genMode, Int32 components, Single[] coeffs) { throw new NotImplementedException(); } + public static void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.OpenGL4.All genMode, Int32 components, Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72345,7 +72345,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.OpenGL4.All genMode, Int32 components, ref Single coeffs) { throw new NotImplementedException(); } + public static void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.OpenGL4.All genMode, Int32 components, ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72355,7 +72355,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static unsafe void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.OpenGL4.All genMode, Int32 components, Single* coeffs) { throw new NotImplementedException(); } + public static unsafe void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.OpenGL4.All genMode, Int32 components, Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72365,7 +72365,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.OpenGL4.All genMode, Int32 components, Single[] coeffs) { throw new NotImplementedException(); } + public static void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.OpenGL4.All genMode, Int32 components, Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72375,7 +72375,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.OpenGL4.All genMode, Int32 components, ref Single coeffs) { throw new NotImplementedException(); } + public static void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.OpenGL4.All genMode, Int32 components, ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72385,7 +72385,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static unsafe void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.OpenGL4.All genMode, Int32 components, Single* coeffs) { throw new NotImplementedException(); } + public static unsafe void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.OpenGL4.All genMode, Int32 components, Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72401,7 +72401,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64NV")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72417,7 +72417,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64NV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72436,7 +72436,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72455,7 +72455,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72474,7 +72474,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72493,7 +72493,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72512,7 +72512,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72531,7 +72531,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72547,7 +72547,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64NV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, UInt64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, UInt64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72566,7 +72566,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72585,7 +72585,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72604,7 +72604,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72623,7 +72623,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64NV")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int64 x, Int64 y) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72642,7 +72642,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64NV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int64 x, Int64 y) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72661,7 +72661,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72680,7 +72680,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72699,7 +72699,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72718,7 +72718,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72737,7 +72737,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72756,7 +72756,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72775,7 +72775,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2ui64NV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, UInt64 x, UInt64 y) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, UInt64 x, UInt64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72794,7 +72794,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72813,7 +72813,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72832,7 +72832,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2ui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72854,7 +72854,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64NV")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72876,7 +72876,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64NV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72895,7 +72895,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72914,7 +72914,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72933,7 +72933,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72952,7 +72952,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72971,7 +72971,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72990,7 +72990,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -73012,7 +73012,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3ui64NV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -73031,7 +73031,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -73050,7 +73050,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -73069,7 +73069,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3ui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -73094,7 +73094,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64NV")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -73119,7 +73119,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64NV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -73138,7 +73138,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -73157,7 +73157,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -73176,7 +73176,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -73195,7 +73195,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -73214,7 +73214,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -73233,7 +73233,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -73258,7 +73258,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4ui64NV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -73277,7 +73277,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -73296,7 +73296,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -73315,7 +73315,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4ui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -73323,7 +73323,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64NV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -73331,7 +73331,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64NV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -73340,7 +73340,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -73349,7 +73349,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -73358,7 +73358,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* values) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -73367,7 +73367,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -73376,7 +73376,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -73385,7 +73385,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for a specified program object @@ -73401,7 +73401,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glProgramUniformui64NV")] [CLSCompliant(false)] - public static void ProgramUniform(Int32 program, Int32 location, Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform(Int32 program, Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for a specified program object @@ -73417,7 +73417,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glProgramUniformui64NV")] [CLSCompliant(false)] - public static void ProgramUniform(UInt32 program, Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform(UInt32 program, Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for a specified program object @@ -73436,7 +73436,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glProgramUniformui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for a specified program object @@ -73455,7 +73455,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glProgramUniformui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for a specified program object @@ -73474,7 +73474,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glProgramUniformui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for a specified program object @@ -73493,7 +73493,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glProgramUniformui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for a specified program object @@ -73512,7 +73512,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glProgramUniformui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for a specified program object @@ -73531,7 +73531,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glProgramUniformui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_multisample_coverage] /// @@ -73541,56 +73541,56 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "NV_framebuffer_multisample_coverage", Version = "", EntryPoint = "glRenderbufferStorageMultisampleCoverageNV")] - public static void RenderbufferStorageMultisampleCoverage(OpenTK.Graphics.OpenGL4.RenderbufferTarget target, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisampleCoverage(OpenTK.Graphics.OpenGL4.RenderbufferTarget target, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glResolveDepthValuesNV")] - public static void ResolveDepthValues() { throw new NotImplementedException(); } + public static void ResolveDepthValues() { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// /// /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glSecondaryColorFormatNV")] - public static void SecondaryColorFormat(Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new NotImplementedException(); } + public static void SecondaryColorFormat(Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glSignalVkFenceNV")] [CLSCompliant(false)] - public static void SignalVkFence(Int64 vkFence) { throw new NotImplementedException(); } + public static void SignalVkFence(Int64 vkFence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glSignalVkFenceNV")] [CLSCompliant(false)] - public static void SignalVkFence(UInt64 vkFence) { throw new NotImplementedException(); } + public static void SignalVkFence(UInt64 vkFence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glSignalVkSemaphoreNV")] [CLSCompliant(false)] - public static void SignalVkSemaphore(Int64 vkSemaphore) { throw new NotImplementedException(); } + public static void SignalVkSemaphore(Int64 vkSemaphore) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glSignalVkSemaphoreNV")] [CLSCompliant(false)] - public static void SignalVkSemaphore(UInt64 vkSemaphore) { throw new NotImplementedException(); } + public static void SignalVkSemaphore(UInt64 vkSemaphore) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glStateCaptureNV")] [CLSCompliant(false)] - public static void StateCapture(Int32 state, OpenTK.Graphics.OpenGL4.All mode) { throw new NotImplementedException(); } + public static void StateCapture(Int32 state, OpenTK.Graphics.OpenGL4.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glStateCaptureNV")] [CLSCompliant(false)] - public static void StateCapture(UInt32 state, OpenTK.Graphics.OpenGL4.All mode) { throw new NotImplementedException(); } + public static void StateCapture(UInt32 state, OpenTK.Graphics.OpenGL4.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73603,7 +73603,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73616,7 +73616,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73629,7 +73629,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73642,7 +73642,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73655,7 +73655,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73668,7 +73668,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73683,7 +73683,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73698,7 +73698,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73713,7 +73713,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73728,7 +73728,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73743,7 +73743,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73758,7 +73758,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73773,7 +73773,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73788,7 +73788,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73803,7 +73803,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73818,7 +73818,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73833,7 +73833,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73848,7 +73848,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73863,7 +73863,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73878,7 +73878,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73893,7 +73893,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73908,7 +73908,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73923,7 +73923,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73938,7 +73938,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73953,7 +73953,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73968,7 +73968,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73983,7 +73983,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73998,7 +73998,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74013,7 +74013,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74028,7 +74028,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74036,7 +74036,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathNV")] [CLSCompliant(false)] - public static void StencilFillPath(Int32 path, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask) { throw new NotImplementedException(); } + public static void StencilFillPath(Int32 path, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74044,7 +74044,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathNV")] [CLSCompliant(false)] - public static void StencilFillPath(UInt32 path, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFillPath(UInt32 path, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74057,7 +74057,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74070,7 +74070,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74083,7 +74083,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74096,7 +74096,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74109,7 +74109,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74122,7 +74122,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74137,7 +74137,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74152,7 +74152,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74167,7 +74167,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74182,7 +74182,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74197,7 +74197,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74212,7 +74212,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74227,7 +74227,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74242,7 +74242,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74257,7 +74257,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74272,7 +74272,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74287,7 +74287,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74302,7 +74302,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74317,7 +74317,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74332,7 +74332,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74347,7 +74347,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74362,7 +74362,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74377,7 +74377,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74392,7 +74392,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74407,7 +74407,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74422,7 +74422,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74437,7 +74437,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74452,7 +74452,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74467,7 +74467,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74482,7 +74482,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74490,7 +74490,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathNV")] [CLSCompliant(false)] - public static void StencilStrokePath(Int32 path, Int32 reference, Int32 mask) { throw new NotImplementedException(); } + public static void StencilStrokePath(Int32 path, Int32 reference, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74498,7 +74498,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathNV")] [CLSCompliant(false)] - public static void StencilStrokePath(UInt32 path, Int32 reference, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilStrokePath(UInt32 path, Int32 reference, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74512,7 +74512,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74526,7 +74526,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74540,7 +74540,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74554,7 +74554,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74568,7 +74568,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74582,7 +74582,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74598,7 +74598,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74614,7 +74614,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74630,7 +74630,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74646,7 +74646,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74662,7 +74662,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74678,7 +74678,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74694,7 +74694,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74710,7 +74710,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74726,7 +74726,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74742,7 +74742,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74758,7 +74758,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74774,7 +74774,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74790,7 +74790,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74806,7 +74806,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74822,7 +74822,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74838,7 +74838,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74854,7 +74854,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74870,7 +74870,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74886,7 +74886,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74902,7 +74902,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74918,7 +74918,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74934,7 +74934,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74950,7 +74950,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74966,7 +74966,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74975,7 +74975,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPath(Int32 path, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPath(Int32 path, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74984,7 +74984,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPath(UInt32 path, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPath(UInt32 path, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74998,7 +74998,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75012,7 +75012,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75026,7 +75026,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75040,7 +75040,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75054,7 +75054,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75068,7 +75068,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75084,7 +75084,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75100,7 +75100,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75116,7 +75116,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75132,7 +75132,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75148,7 +75148,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75164,7 +75164,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75180,7 +75180,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75196,7 +75196,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75212,7 +75212,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75228,7 +75228,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75244,7 +75244,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75260,7 +75260,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75276,7 +75276,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75292,7 +75292,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75308,7 +75308,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75324,7 +75324,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75340,7 +75340,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75356,7 +75356,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75372,7 +75372,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75388,7 +75388,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75404,7 +75404,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75420,7 +75420,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75436,7 +75436,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75452,7 +75452,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75461,7 +75461,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePath(Int32 path, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePath(Int32 path, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75470,32 +75470,32 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePath(UInt32 path, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePath(UInt32 path, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conservative_raster] /// /// [AutoGenerated(Category = "NV_conservative_raster", Version = "", EntryPoint = "glSubpixelPrecisionBiasNV")] [CLSCompliant(false)] - public static void SubpixelPrecisionBia(Int32 xbits, Int32 ybits) { throw new NotImplementedException(); } + public static void SubpixelPrecisionBia(Int32 xbits, Int32 ybits) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conservative_raster] /// /// [AutoGenerated(Category = "NV_conservative_raster", Version = "", EntryPoint = "glSubpixelPrecisionBiasNV")] [CLSCompliant(false)] - public static void SubpixelPrecisionBia(UInt32 xbits, UInt32 ybits) { throw new NotImplementedException(); } + public static void SubpixelPrecisionBia(UInt32 xbits, UInt32 ybits) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// /// /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glTexCoordFormatNV")] - public static void TexCoordFormat(Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new NotImplementedException(); } + public static void TexCoordFormat(Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_texture_barrier] [AutoGenerated(Category = "NV_texture_barrier", Version = "", EntryPoint = "glTextureBarrierNV")] - public static void TextureBarrier() { throw new NotImplementedException(); } + public static void TextureBarrier() { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75504,7 +75504,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75513,7 +75513,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75522,7 +75522,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static unsafe void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75531,7 +75531,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75540,7 +75540,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75549,7 +75549,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static unsafe void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75561,7 +75561,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector (glUniform*v) commands, specifies the number of elements that are to be modified. This should be 1 if the targeted uniform variable is not an array, and 1 or more if it is an array. For the matrix (glUniformMatrix*) commands, specifies the number of matrices that are to be modified. This should be 1 if the targeted uniform variable is not an array of matrices, and 1 or more if it is an array of matrices. /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64NV")] - public static void Uniform1(Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75577,7 +75577,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64vNV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75593,7 +75593,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64vNV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75609,7 +75609,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75622,7 +75622,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64NV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, UInt64 x) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, UInt64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75638,7 +75638,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64vNV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75654,7 +75654,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64vNV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75670,7 +75670,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75685,7 +75685,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the matrix commands, specifies whether to transpose the matrix as the values are loaded into the uniform variable. /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64NV")] - public static void Uniform2(Int32 location, Int64 x, Int64 y) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75701,7 +75701,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64vNV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75717,7 +75717,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64vNV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75733,7 +75733,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75749,7 +75749,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64NV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, UInt64 x, UInt64 y) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, UInt64 x, UInt64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75765,7 +75765,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64vNV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75781,7 +75781,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64vNV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75797,7 +75797,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75815,7 +75815,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64NV")] - public static void Uniform3(Int32 location, Int64 x, Int64 y, Int64 z) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75831,7 +75831,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64vNV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75847,7 +75847,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64vNV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75863,7 +75863,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75882,7 +75882,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3ui64NV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75898,7 +75898,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3ui64vNV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75914,7 +75914,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3ui64vNV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75930,7 +75930,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3ui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75951,7 +75951,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64NV")] - public static void Uniform4(Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75967,7 +75967,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64vNV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75983,7 +75983,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64vNV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75999,7 +75999,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -76021,7 +76021,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4ui64NV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -76037,7 +76037,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4ui64vNV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -76053,7 +76053,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4ui64vNV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -76069,21 +76069,21 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4ui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64NV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64NV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -76091,7 +76091,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -76099,7 +76099,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -76107,7 +76107,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -76115,7 +76115,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -76123,7 +76123,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -76131,7 +76131,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for the current program object @@ -76144,7 +76144,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glUniformui64NV")] [CLSCompliant(false)] - public static void Uniform(Int32 location, Int64 value) { throw new NotImplementedException(); } + public static void Uniform(Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for the current program object @@ -76157,7 +76157,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glUniformui64NV")] [CLSCompliant(false)] - public static void Uniform(Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void Uniform(Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for the current program object @@ -76173,7 +76173,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glUniformui64vNV")] [CLSCompliant(false)] - public static void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for the current program object @@ -76189,7 +76189,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glUniformui64vNV")] [CLSCompliant(false)] - public static void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for the current program object @@ -76205,7 +76205,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glUniformui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for the current program object @@ -76221,7 +76221,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glUniformui64vNV")] [CLSCompliant(false)] - public static void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for the current program object @@ -76237,7 +76237,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glUniformui64vNV")] [CLSCompliant(false)] - public static void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for the current program object @@ -76253,7 +76253,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glUniformui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// Specify the organization of vertex arrays @@ -76275,7 +76275,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glVertexAttribFormatNV")] [CLSCompliant(false)] - public static void VertexAttribFormat(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.All type, bool normalized, Int32 stride) { throw new NotImplementedException(); } + public static void VertexAttribFormat(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.All type, bool normalized, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// Specify the organization of vertex arrays @@ -76297,7 +76297,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glVertexAttribFormatNV")] [CLSCompliant(false)] - public static void VertexAttribFormat(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.All type, bool normalized, Int32 stride) { throw new NotImplementedException(); } + public static void VertexAttribFormat(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.All type, bool normalized, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -76306,7 +76306,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glVertexAttribIFormatNV")] [CLSCompliant(false)] - public static void VertexAttribIFormat(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new NotImplementedException(); } + public static void VertexAttribIFormat(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -76315,49 +76315,49 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glVertexAttribIFormatNV")] [CLSCompliant(false)] - public static void VertexAttribIFormat(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new NotImplementedException(); } + public static void VertexAttribIFormat(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL1i64NV")] [CLSCompliant(false)] - public static void VertexAttribL1(Int32 index, Int64 x) { throw new NotImplementedException(); } + public static void VertexAttribL1(Int32 index, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL1i64NV")] [CLSCompliant(false)] - public static void VertexAttribL1(UInt32 index, Int64 x) { throw new NotImplementedException(); } + public static void VertexAttribL1(UInt32 index, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 1] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL1i64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL1(Int32 index, [CountAttribute(Count = 1)] Int64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL1(Int32 index, [CountAttribute(Count = 1)] Int64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 1] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL1i64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL1(UInt32 index, [CountAttribute(Count = 1)] Int64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL1(UInt32 index, [CountAttribute(Count = 1)] Int64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL1ui64NV")] [CLSCompliant(false)] - public static void VertexAttribL1(UInt32 index, UInt64 x) { throw new NotImplementedException(); } + public static void VertexAttribL1(UInt32 index, UInt64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 1] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL1ui64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL1(UInt32 index, [CountAttribute(Count = 1)] UInt64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL1(UInt32 index, [CountAttribute(Count = 1)] UInt64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -76365,7 +76365,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2i64NV")] [CLSCompliant(false)] - public static void VertexAttribL2(Int32 index, Int64 x, Int64 y) { throw new NotImplementedException(); } + public static void VertexAttribL2(Int32 index, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -76373,49 +76373,49 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2i64NV")] [CLSCompliant(false)] - public static void VertexAttribL2(UInt32 index, Int64 x, Int64 y) { throw new NotImplementedException(); } + public static void VertexAttribL2(UInt32 index, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] Int64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] Int64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] ref Int64 v) { throw new NotImplementedException(); } + public static void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] ref Int64 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2i64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] Int64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] Int64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] Int64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] Int64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] ref Int64 v) { throw new NotImplementedException(); } + public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] ref Int64 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2i64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] Int64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] Int64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -76423,28 +76423,28 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2ui64NV")] [CLSCompliant(false)] - public static void VertexAttribL2(UInt32 index, UInt64 x, UInt64 y) { throw new NotImplementedException(); } + public static void VertexAttribL2(UInt32 index, UInt64 x, UInt64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2ui64vNV")] [CLSCompliant(false)] - public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] UInt64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] UInt64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2ui64vNV")] [CLSCompliant(false)] - public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] ref UInt64 v) { throw new NotImplementedException(); } + public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] ref UInt64 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2ui64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] UInt64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] UInt64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -76453,7 +76453,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3i64NV")] [CLSCompliant(false)] - public static void VertexAttribL3(Int32 index, Int64 x, Int64 y, Int64 z) { throw new NotImplementedException(); } + public static void VertexAttribL3(Int32 index, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -76462,49 +76462,49 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3i64NV")] [CLSCompliant(false)] - public static void VertexAttribL3(UInt32 index, Int64 x, Int64 y, Int64 z) { throw new NotImplementedException(); } + public static void VertexAttribL3(UInt32 index, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] Int64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] Int64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] ref Int64 v) { throw new NotImplementedException(); } + public static void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] ref Int64 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3i64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] Int64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] Int64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] Int64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] Int64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] ref Int64 v) { throw new NotImplementedException(); } + public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] ref Int64 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3i64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] Int64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] Int64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -76513,28 +76513,28 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3ui64NV")] [CLSCompliant(false)] - public static void VertexAttribL3(UInt32 index, UInt64 x, UInt64 y, UInt64 z) { throw new NotImplementedException(); } + public static void VertexAttribL3(UInt32 index, UInt64 x, UInt64 y, UInt64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3ui64vNV")] [CLSCompliant(false)] - public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] UInt64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] UInt64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3ui64vNV")] [CLSCompliant(false)] - public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] ref UInt64 v) { throw new NotImplementedException(); } + public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] ref UInt64 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3ui64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] UInt64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] UInt64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -76544,7 +76544,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4i64NV")] [CLSCompliant(false)] - public static void VertexAttribL4(Int32 index, Int64 x, Int64 y, Int64 z, Int64 w) { throw new NotImplementedException(); } + public static void VertexAttribL4(Int32 index, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -76554,49 +76554,49 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4i64NV")] [CLSCompliant(false)] - public static void VertexAttribL4(UInt32 index, Int64 x, Int64 y, Int64 z, Int64 w) { throw new NotImplementedException(); } + public static void VertexAttribL4(UInt32 index, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] Int64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] Int64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] ref Int64 v) { throw new NotImplementedException(); } + public static void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] ref Int64 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4i64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] Int64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] Int64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] Int64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] Int64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] ref Int64 v) { throw new NotImplementedException(); } + public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] ref Int64 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4i64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] Int64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] Int64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -76606,28 +76606,28 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4ui64NV")] [CLSCompliant(false)] - public static void VertexAttribL4(UInt32 index, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new NotImplementedException(); } + public static void VertexAttribL4(UInt32 index, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4ui64vNV")] [CLSCompliant(false)] - public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] UInt64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] UInt64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4ui64vNV")] [CLSCompliant(false)] - public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] ref UInt64 v) { throw new NotImplementedException(); } + public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] ref UInt64 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4ui64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] UInt64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] UInt64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -76636,7 +76636,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribLFormatNV")] [CLSCompliant(false)] - public static void VertexAttribLFormat(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new NotImplementedException(); } + public static void VertexAttribLFormat(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -76645,14 +76645,14 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribLFormatNV")] [CLSCompliant(false)] - public static void VertexAttribLFormat(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new NotImplementedException(); } + public static void VertexAttribLFormat(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// /// /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glVertexFormatNV")] - public static void VertexFormat(Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new NotImplementedException(); } + public static void VertexFormat(Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_clip_space_w_scaling] /// @@ -76660,7 +76660,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_clip_space_w_scaling", Version = "", EntryPoint = "glViewportPositionWScaleNV")] [CLSCompliant(false)] - public static void ViewportPositionWScale(Int32 index, Single xcoeff, Single ycoeff) { throw new NotImplementedException(); } + public static void ViewportPositionWScale(Int32 index, Single xcoeff, Single ycoeff) { throw new BindingsNotRewrittenException(); } /// [requires: NV_clip_space_w_scaling] /// @@ -76668,7 +76668,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_clip_space_w_scaling", Version = "", EntryPoint = "glViewportPositionWScaleNV")] [CLSCompliant(false)] - public static void ViewportPositionWScale(UInt32 index, Single xcoeff, Single ycoeff) { throw new NotImplementedException(); } + public static void ViewportPositionWScale(UInt32 index, Single xcoeff, Single ycoeff) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_swizzle] /// @@ -76678,7 +76678,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_viewport_swizzle", Version = "", EntryPoint = "glViewportSwizzleNV")] [CLSCompliant(false)] - public static void ViewportSwizzle(Int32 index, OpenTK.Graphics.OpenGL4.All swizzlex, OpenTK.Graphics.OpenGL4.All swizzley, OpenTK.Graphics.OpenGL4.All swizzlez, OpenTK.Graphics.OpenGL4.All swizzlew) { throw new NotImplementedException(); } + public static void ViewportSwizzle(Int32 index, OpenTK.Graphics.OpenGL4.All swizzlex, OpenTK.Graphics.OpenGL4.All swizzley, OpenTK.Graphics.OpenGL4.All swizzlez, OpenTK.Graphics.OpenGL4.All swizzlew) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_swizzle] /// @@ -76688,19 +76688,19 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_viewport_swizzle", Version = "", EntryPoint = "glViewportSwizzleNV")] [CLSCompliant(false)] - public static void ViewportSwizzle(UInt32 index, OpenTK.Graphics.OpenGL4.All swizzlex, OpenTK.Graphics.OpenGL4.All swizzley, OpenTK.Graphics.OpenGL4.All swizzlez, OpenTK.Graphics.OpenGL4.All swizzlew) { throw new NotImplementedException(); } + public static void ViewportSwizzle(UInt32 index, OpenTK.Graphics.OpenGL4.All swizzlex, OpenTK.Graphics.OpenGL4.All swizzley, OpenTK.Graphics.OpenGL4.All swizzlez, OpenTK.Graphics.OpenGL4.All swizzlew) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glWaitVkSemaphoreNV")] [CLSCompliant(false)] - public static void WaitVkSemaphore(Int64 vkSemaphore) { throw new NotImplementedException(); } + public static void WaitVkSemaphore(Int64 vkSemaphore) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glWaitVkSemaphoreNV")] [CLSCompliant(false)] - public static void WaitVkSemaphore(UInt64 vkSemaphore) { throw new NotImplementedException(); } + public static void WaitVkSemaphore(UInt64 vkSemaphore) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -76709,7 +76709,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] Int32[] paths, [CountAttribute(Parameter = "numPaths")] Single[] weights) { throw new NotImplementedException(); } + public static void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] Int32[] paths, [CountAttribute(Parameter = "numPaths")] Single[] weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -76718,7 +76718,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] ref Int32 paths, [CountAttribute(Parameter = "numPaths")] ref Single weights) { throw new NotImplementedException(); } + public static void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] ref Int32 paths, [CountAttribute(Parameter = "numPaths")] ref Single weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -76727,7 +76727,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static unsafe void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] Int32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights) { throw new NotImplementedException(); } + public static unsafe void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] Int32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -76736,7 +76736,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32[] paths, [CountAttribute(Parameter = "numPaths")] Single[] weights) { throw new NotImplementedException(); } + public static void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32[] paths, [CountAttribute(Parameter = "numPaths")] Single[] weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -76745,7 +76745,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] ref UInt32 paths, [CountAttribute(Parameter = "numPaths")] ref Single weights) { throw new NotImplementedException(); } + public static void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] ref UInt32 paths, [CountAttribute(Parameter = "numPaths")] ref Single weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -76754,7 +76754,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static unsafe void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights) { throw new NotImplementedException(); } + public static unsafe void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights) { throw new BindingsNotRewrittenException(); } } @@ -76769,7 +76769,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "OVR_multiview", Version = "", EntryPoint = "glFramebufferTextureMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultiview(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultiview(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview] /// @@ -76780,7 +76780,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "OVR_multiview", Version = "", EntryPoint = "glFramebufferTextureMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultiview(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultiview(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } } From 6cbaeee54acd6f3c7e5ca19b3ee48c28ed8e7614 Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Mon, 28 Aug 2017 17:14:19 +0100 Subject: [PATCH 21/91] Replace manually written code using NotImplementedException with BindingsNotRewrittenException --- src/OpenTK/Graphics/ES11/ES11Obsolete.cs | 4 +- src/OpenTK/Graphics/OpenGL/GLObsolete.cs | 284 ++++++++++---------- src/OpenTK/InteropHelper.cs | 60 ++--- src/OpenTK/Platform/Windows/Bindings/Wgl.cs | 48 ++-- src/OpenTK/Platform/X11/Bindings/Glx.cs | 12 +- 5 files changed, 204 insertions(+), 204 deletions(-) diff --git a/src/OpenTK/Graphics/ES11/ES11Obsolete.cs b/src/OpenTK/Graphics/ES11/ES11Obsolete.cs index 25d7377e..4249425c 100644 --- a/src/OpenTK/Graphics/ES11/ES11Obsolete.cs +++ b/src/OpenTK/Graphics/ES11/ES11Obsolete.cs @@ -42,7 +42,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanef")] [CLSCompliant(false)] [Obsolete("Use GetClipPlane(..., float[]) instead. This method will return incorrect results.")] - public static Single GetClipPlane(OpenTK.Graphics.ES11.All plane) { throw new NotImplementedException(); } + public static Single GetClipPlane(OpenTK.Graphics.ES11.All plane) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return the coefficients of the specified clipping plane @@ -55,7 +55,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanex")] [CLSCompliant(false)] [Obsolete("Use GetClipPlane(..., int[]) instead. This method will return incorrect results.")] - public static int GetClipPlanex(OpenTK.Graphics.ES11.All plane) { throw new NotImplementedException(); } + public static int GetClipPlanex(OpenTK.Graphics.ES11.All plane) { throw new BindingsNotRewrittenException(); } } } diff --git a/src/OpenTK/Graphics/OpenGL/GLObsolete.cs b/src/OpenTK/Graphics/OpenGL/GLObsolete.cs index 13ccbe95..1159240e 100644 --- a/src/OpenTK/Graphics/OpenGL/GLObsolete.cs +++ b/src/OpenTK/Graphics/OpenGL/GLObsolete.cs @@ -60,7 +60,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [Obsolete("Use GetAttachedShaders out/array overload instead")] public static - unsafe void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute] Int32* count, [OutAttribute] Int32[] obj) { throw new NotImplementedException(); } + unsafe void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute] Int32* count, [OutAttribute] Int32[] obj) { throw new BindingsNotRewrittenException(); } /// @@ -90,7 +90,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [Obsolete("Use GetAttachedShaders out/array overload instead")] public static - unsafe void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute] Int32* count, [OutAttribute] UInt32[] obj) { throw new NotImplementedException(); } + unsafe void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute] Int32* count, [OutAttribute] UInt32[] obj) { throw new BindingsNotRewrittenException(); } /// @@ -131,7 +131,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [OutAttribute] IntPtr column, [InAttribute, OutAttribute] T5[] span) - where T5 : struct { throw new NotImplementedException(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// /// Get separable convolution filter kernel images @@ -171,7 +171,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [OutAttribute] IntPtr column, [InAttribute, OutAttribute] T5[,] span) - where T5 : struct { throw new NotImplementedException(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// @@ -212,7 +212,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [OutAttribute] IntPtr column, [InAttribute, OutAttribute] T5[,,] span) - where T5 : struct { throw new NotImplementedException(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// @@ -252,7 +252,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use GetSeparableFilter overload instead")] public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [OutAttribute] IntPtr column, [InAttribute, OutAttribute] ref T5 span) - where T5 : struct { throw new NotImplementedException(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// @@ -294,7 +294,7 @@ namespace OpenTK.Graphics.OpenGL public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [InAttribute, OutAttribute] T4[] column, [InAttribute, OutAttribute] T5[,,] span) where T4 : struct - where T5 : struct { throw new NotImplementedException(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// @@ -336,7 +336,7 @@ namespace OpenTK.Graphics.OpenGL public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [InAttribute, OutAttribute] T4[,] column, [InAttribute, OutAttribute] T5[,,] span) where T4 : struct - where T5 : struct { throw new NotImplementedException(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// @@ -378,7 +378,7 @@ namespace OpenTK.Graphics.OpenGL public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [InAttribute, OutAttribute] T4[,,] column, [InAttribute, OutAttribute] T5[,,] span) where T4 : struct - where T5 : struct { throw new NotImplementedException(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// @@ -420,7 +420,7 @@ namespace OpenTK.Graphics.OpenGL public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [InAttribute, OutAttribute] ref T4 column, [InAttribute, OutAttribute] T5[,,] span) where T4 : struct - where T5 : struct { throw new NotImplementedException(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// @@ -463,7 +463,7 @@ namespace OpenTK.Graphics.OpenGL void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T3[] row, [InAttribute, OutAttribute] T4[,,] column, [InAttribute, OutAttribute] T5[,,] span) where T3 : struct where T4 : struct - where T5 : struct { throw new NotImplementedException(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// @@ -506,7 +506,7 @@ namespace OpenTK.Graphics.OpenGL void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T3[,] row, [InAttribute, OutAttribute] T4[,,] column, [InAttribute, OutAttribute] T5[,,] span) where T3 : struct where T4 : struct - where T5 : struct { throw new NotImplementedException(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// @@ -548,14 +548,14 @@ namespace OpenTK.Graphics.OpenGL void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T3 row, [InAttribute, OutAttribute] T4[,,] column, [InAttribute, OutAttribute] T5[,,] span) where T3 : struct where T4 : struct - where T5 : struct { throw new NotImplementedException(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "ArbSync", Version = "1.2", EntryPoint = "glGetSynciv")] [Obsolete("Use out/array overload instead")] public static - unsafe void GetSync(IntPtr sync, OpenTK.Graphics.OpenGL.ArbSync pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32[] values) { throw new NotImplementedException(); } + unsafe void GetSync(IntPtr sync, OpenTK.Graphics.OpenGL.ArbSync pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32[] values) { throw new BindingsNotRewrittenException(); } /// @@ -606,7 +606,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr row, [InAttribute, OutAttribute] T7[] column) - where T7 : struct { throw new NotImplementedException(); } + where T7 : struct { throw new BindingsNotRewrittenException(); } /// @@ -657,7 +657,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr row, [InAttribute, OutAttribute] T7[,] column) - where T7 : struct { throw new NotImplementedException(); } + where T7 : struct { throw new BindingsNotRewrittenException(); } /// @@ -708,7 +708,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr row, [InAttribute, OutAttribute] T7[,,] column) - where T7 : struct { throw new NotImplementedException(); } + where T7 : struct { throw new BindingsNotRewrittenException(); } /// @@ -758,7 +758,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use overload with equal array dimensions instead")] public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr row, [InAttribute, OutAttribute] ref T7 column) - where T7 : struct { throw new NotImplementedException(); } + where T7 : struct { throw new BindingsNotRewrittenException(); } /// @@ -810,7 +810,7 @@ namespace OpenTK.Graphics.OpenGL public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[] row, [InAttribute, OutAttribute] T7[,,] column) where T6 : struct - where T7 : struct { throw new NotImplementedException(); } + where T7 : struct { throw new BindingsNotRewrittenException(); } /// @@ -862,7 +862,7 @@ namespace OpenTK.Graphics.OpenGL public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[,] row, [InAttribute, OutAttribute] T7[,,] column) where T6 : struct - where T7 : struct { throw new NotImplementedException(); } + where T7 : struct { throw new BindingsNotRewrittenException(); } /// @@ -914,7 +914,7 @@ namespace OpenTK.Graphics.OpenGL public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T6 row, [InAttribute, OutAttribute] T7[,,] column) where T6 : struct - where T7 : struct { throw new NotImplementedException(); } + where T7 : struct { throw new BindingsNotRewrittenException(); } partial class Amd { @@ -922,76 +922,76 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "AmdPerformanceMonitor", Version = "1.2", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [Obsolete("Use ref/array overloads instead")] public static - unsafe void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, Int32 dataSize, [OutAttribute] Int32[] data, [OutAttribute] Int32* bytesWritten) { throw new NotImplementedException(); } + unsafe void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, Int32 dataSize, [OutAttribute] Int32[] data, [OutAttribute] Int32* bytesWritten) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "AmdPerformanceMonitor", Version = "1.2", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [Obsolete("Use ref/array overloads instead")] public static - unsafe void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, Int32 dataSize, [OutAttribute] UInt32[] data, [OutAttribute] Int32* bytesWritten) { throw new NotImplementedException(); } + unsafe void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, Int32 dataSize, [OutAttribute] UInt32[] data, [OutAttribute] Int32* bytesWritten) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "AmdPerformanceMonitor", Version = "1.2", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [Obsolete("Use ref/array overloads instead")] public static - unsafe void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, Int32 dataSize, [OutAttribute] UInt32[] data, [OutAttribute] Int32* bytesWritten) { throw new NotImplementedException(); } + unsafe void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, Int32 dataSize, [OutAttribute] UInt32[] data, [OutAttribute] Int32* bytesWritten) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "AmdPerformanceMonitor", Version = "1.2", EntryPoint = "glGetPerfMonitorCountersAMD")] [Obsolete("Use ref/array overloads instead")] public static - unsafe void GetPerfMonitorCounters(Int32 group, [OutAttribute] Int32* numCounters, [OutAttribute] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute] Int32[] counters) { throw new NotImplementedException(); } + unsafe void GetPerfMonitorCounters(Int32 group, [OutAttribute] Int32* numCounters, [OutAttribute] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute] Int32[] counters) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "AmdPerformanceMonitor", Version = "1.2", EntryPoint = "glGetPerfMonitorCountersAMD")] [Obsolete("Use ref/array overloads instead")] public static - unsafe void GetPerfMonitorCounters(UInt32 group, [OutAttribute] Int32* numCounters, [OutAttribute] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute] UInt32[] counters) { throw new NotImplementedException(); } + unsafe void GetPerfMonitorCounters(UInt32 group, [OutAttribute] Int32* numCounters, [OutAttribute] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute] UInt32[] counters) { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "AmdPerformanceMonitor", Version = "1.2", EntryPoint = "glGetPerfMonitorGroupsAMD")] [Obsolete("Use GetPerfMonitorGroups instead")] public static - void GetPerfMonitorGroup([OutAttribute] out Int32 numGroups, Int32 groupsSize, [OutAttribute] out Int32 groups) { throw new NotImplementedException(); } + void GetPerfMonitorGroup([OutAttribute] out Int32 numGroups, Int32 groupsSize, [OutAttribute] out Int32 groups) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "AmdPerformanceMonitor", Version = "1.2", EntryPoint = "glGetPerfMonitorGroupsAMD")] [Obsolete("Use GetPerfMonitorGroups instead")] public static - void GetPerfMonitorGroup([OutAttribute] out Int32 numGroups, Int32 groupsSize, [OutAttribute] out UInt32 groups) { throw new NotImplementedException(); } + void GetPerfMonitorGroup([OutAttribute] out Int32 numGroups, Int32 groupsSize, [OutAttribute] out UInt32 groups) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "AmdPerformanceMonitor", Version = "1.2", EntryPoint = "glGetPerfMonitorGroupsAMD")] [Obsolete("Use GetPerfMonitorGroups instead")] public static - unsafe void GetPerfMonitorGroup([OutAttribute] Int32* numGroups, Int32 groupsSize, [OutAttribute] Int32[] groups) { throw new NotImplementedException(); } + unsafe void GetPerfMonitorGroup([OutAttribute] Int32* numGroups, Int32 groupsSize, [OutAttribute] Int32[] groups) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "AmdPerformanceMonitor", Version = "1.2", EntryPoint = "glGetPerfMonitorGroupsAMD")] [Obsolete("Use GetPerfMonitorGroups instead")] public static - unsafe void GetPerfMonitorGroup([OutAttribute] Int32* numGroups, Int32 groupsSize, [OutAttribute] Int32* groups) { throw new NotImplementedException(); } + unsafe void GetPerfMonitorGroup([OutAttribute] Int32* numGroups, Int32 groupsSize, [OutAttribute] Int32* groups) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "AmdPerformanceMonitor", Version = "1.2", EntryPoint = "glGetPerfMonitorGroupsAMD")] [Obsolete("Use GetPerfMonitorGroups instead")] public static - unsafe void GetPerfMonitorGroup([OutAttribute] Int32* numGroups, Int32 groupsSize, [OutAttribute] UInt32[] groups) { throw new NotImplementedException(); } + unsafe void GetPerfMonitorGroup([OutAttribute] Int32* numGroups, Int32 groupsSize, [OutAttribute] UInt32[] groups) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "AmdPerformanceMonitor", Version = "1.2", EntryPoint = "glGetPerfMonitorGroupsAMD")] [Obsolete("Use GetPerfMonitorGroups instead")] public static - unsafe void GetPerfMonitorGroup([OutAttribute] Int32* numGroups, Int32 groupsSize, [OutAttribute] UInt32* groups) { throw new NotImplementedException(); } + unsafe void GetPerfMonitorGroup([OutAttribute] Int32* numGroups, Int32 groupsSize, [OutAttribute] UInt32* groups) { throw new BindingsNotRewrittenException(); } } partial class Arb @@ -1000,14 +1000,14 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetAttachedObjectsARB")] [Obsolete("Use ref/array overloads instead")] public static - unsafe void GetAttachedObjects(Int32 containerObj, Int32 maxCount, [OutAttribute] Int32* count, [OutAttribute] Int32[] obj) { throw new NotImplementedException(); } + unsafe void GetAttachedObjects(Int32 containerObj, Int32 maxCount, [OutAttribute] Int32* count, [OutAttribute] Int32[] obj) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetAttachedObjectsARB")] [Obsolete("Use ref/array overloads instead")] public static - unsafe void GetAttachedObjects(UInt32 containerObj, Int32 maxCount, [OutAttribute] Int32* count, [OutAttribute] UInt32[] obj) { throw new NotImplementedException(); } + unsafe void GetAttachedObjects(UInt32 containerObj, Int32 maxCount, [OutAttribute] Int32* count, [OutAttribute] UInt32[] obj) { throw new BindingsNotRewrittenException(); } } partial class Ati @@ -1015,14 +1015,14 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "AtiFragmentShader", Version = "1.2", EntryPoint = "glPassTexCoordATI")] [Obsolete("Use PassTexCoord instead")] public static - void PassTexCoor(Int32 dst, Int32 coord, OpenTK.Graphics.OpenGL.AtiFragmentShader swizzle) { throw new NotImplementedException(); } + void PassTexCoor(Int32 dst, Int32 coord, OpenTK.Graphics.OpenGL.AtiFragmentShader swizzle) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "AtiFragmentShader", Version = "1.2", EntryPoint = "glPassTexCoordATI")] [Obsolete("Use PassTexCoord instead")] public static - void PassTexCoor(UInt32 dst, UInt32 coord, OpenTK.Graphics.OpenGL.AtiFragmentShader swizzle) { throw new NotImplementedException(); } + void PassTexCoor(UInt32 dst, UInt32 coord, OpenTK.Graphics.OpenGL.AtiFragmentShader swizzle) { throw new BindingsNotRewrittenException(); } } partial class Ext @@ -1030,81 +1030,81 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ExtTimerQuery", Version = "1.5", EntryPoint = "glGetQueryObjecti64vEXT")] [Obsolete("Use GetQueryObject overload instead")] public static - void GetQueryObjecti64(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + void GetQueryObjecti64(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "ExtTimerQuery", Version = "1.5", EntryPoint = "glGetQueryObjecti64vEXT")] [Obsolete("Use GetQueryObject overload instead")] public static - void GetQueryObjecti64(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + void GetQueryObjecti64(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "ExtTimerQuery", Version = "1.5", EntryPoint = "glGetQueryObjecti64vEXT")] [Obsolete("Use GetQueryObject overload instead")] public static - unsafe void GetQueryObjecti64(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + unsafe void GetQueryObjecti64(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "ExtTimerQuery", Version = "1.5", EntryPoint = "glGetQueryObjecti64vEXT")] [Obsolete("Use GetQueryObject overload instead")] public static - void GetQueryObjecti64(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + void GetQueryObjecti64(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "ExtTimerQuery", Version = "1.5", EntryPoint = "glGetQueryObjecti64vEXT")] [Obsolete("Use GetQueryObject overload instead")] public static - void GetQueryObjecti64(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + void GetQueryObjecti64(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "ExtTimerQuery", Version = "1.5", EntryPoint = "glGetQueryObjecti64vEXT")] [Obsolete("Use GetQueryObject overload instead")] public static - unsafe void GetQueryObjecti64(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + unsafe void GetQueryObjecti64(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "ExtTimerQuery", Version = "1.5", EntryPoint = "glGetQueryObjectui64vEXT")] [Obsolete("Use GetQueryObject overload instead")] public static - void GetQueryObjectui64(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + void GetQueryObjectui64(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "ExtTimerQuery", Version = "1.5", EntryPoint = "glGetQueryObjectui64vEXT")] [Obsolete("Use GetQueryObject overload instead")] public static - void GetQueryObjectui64(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + void GetQueryObjectui64(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "ExtTimerQuery", Version = "1.5", EntryPoint = "glGetQueryObjectui64vEXT")] [Obsolete("Use GetQueryObject overload instead")] public static - unsafe void GetQueryObjectui64(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + unsafe void GetQueryObjectui64(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "ExtTimerQuery", Version = "1.5", EntryPoint = "glGetQueryObjectui64vEXT")] [Obsolete("Use GetQueryObject overload instead")] public static - void GetQueryObjectui64(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] UInt64[] @params) { throw new NotImplementedException(); } + void GetQueryObjectui64(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] UInt64[] @params) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "ExtTimerQuery", Version = "1.5", EntryPoint = "glGetQueryObjectui64vEXT")] [Obsolete("Use GetQueryObject overload instead")] public static - void GetQueryObjectui64(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] out UInt64 @params) { throw new NotImplementedException(); } + void GetQueryObjectui64(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] out UInt64 @params) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "ExtTimerQuery", Version = "1.5", EntryPoint = "glGetQueryObjectui64vEXT")] [Obsolete("Use GetQueryObject overload instead")] public static - unsafe void GetQueryObjectui64(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] UInt64* @params) { throw new NotImplementedException(); } + unsafe void GetQueryObjectui64(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// @@ -1143,7 +1143,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glGetSeparableFilterEXT")] [Obsolete("Use GetSeparableFilter overloads instead")] public static - void GetSeparableFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [OutAttribute] IntPtr column, [InAttribute, OutAttribute] IntPtr span) { throw new NotImplementedException(); } + void GetSeparableFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [OutAttribute] IntPtr column, [InAttribute, OutAttribute] IntPtr span) { throw new BindingsNotRewrittenException(); } /// @@ -1185,7 +1185,7 @@ namespace OpenTK.Graphics.OpenGL void GetSeparableFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, ref T4 row, ref T5 column, ref T6 span) where T4 : struct where T5 : struct - where T6 : struct { throw new NotImplementedException(); } + where T6 : struct { throw new BindingsNotRewrittenException(); } /// @@ -1228,7 +1228,7 @@ namespace OpenTK.Graphics.OpenGL void GetSeparableFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] T4[] row, [OutAttribute] T5[] column, [InAttribute, OutAttribute] T6[] span) where T4 : struct where T5 : struct - where T6 : struct { throw new NotImplementedException(); } + where T6 : struct { throw new BindingsNotRewrittenException(); } /// @@ -1271,7 +1271,7 @@ namespace OpenTK.Graphics.OpenGL void GetSeparableFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] T4[,] row, [OutAttribute] T5[,] column, [InAttribute, OutAttribute] T6[,] span) where T4 : struct where T5 : struct - where T6 : struct { throw new NotImplementedException(); } + where T6 : struct { throw new BindingsNotRewrittenException(); } /// @@ -1314,7 +1314,7 @@ namespace OpenTK.Graphics.OpenGL void GetSeparableFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] T4[,,] row, [OutAttribute] T5[,,] column, [InAttribute, OutAttribute] T6[,,] span) where T4 : struct where T5 : struct - where T6 : struct { throw new NotImplementedException(); } + where T6 : struct { throw new BindingsNotRewrittenException(); } /// @@ -1355,7 +1355,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [OutAttribute] IntPtr column, [InAttribute, OutAttribute] T5[] span) - where T5 : struct { throw new NotImplementedException(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// @@ -1396,7 +1396,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [OutAttribute] IntPtr column, [InAttribute, OutAttribute] T5[,] span) - where T5 : struct { throw new NotImplementedException(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// @@ -1437,7 +1437,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [OutAttribute] IntPtr column, [InAttribute, OutAttribute] T5[,,] span) - where T5 : struct { throw new NotImplementedException(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// @@ -1477,7 +1477,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use GetSeparableFilter overloads instead")] public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [OutAttribute] IntPtr column, [InAttribute, OutAttribute] ref T5 span) - where T5 : struct { throw new NotImplementedException(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// @@ -1519,7 +1519,7 @@ namespace OpenTK.Graphics.OpenGL public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [InAttribute, OutAttribute] T4[] column, [InAttribute, OutAttribute] T5[,,] span) where T4 : struct - where T5 : struct { throw new NotImplementedException(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// @@ -1561,7 +1561,7 @@ namespace OpenTK.Graphics.OpenGL public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [InAttribute, OutAttribute] T4[,] column, [InAttribute, OutAttribute] T5[,,] span) where T4 : struct - where T5 : struct { throw new NotImplementedException(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// @@ -1603,7 +1603,7 @@ namespace OpenTK.Graphics.OpenGL public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [InAttribute, OutAttribute] T4[,,] column, [InAttribute, OutAttribute] T5[,,] span) where T4 : struct - where T5 : struct { throw new NotImplementedException(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// @@ -1644,7 +1644,7 @@ namespace OpenTK.Graphics.OpenGL public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [InAttribute, OutAttribute] ref T4 column, [InAttribute, OutAttribute] T5[,,] span) where T4 : struct - where T5 : struct { throw new NotImplementedException(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// @@ -1687,7 +1687,7 @@ namespace OpenTK.Graphics.OpenGL void GetSeparableFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T3[] row, [InAttribute, OutAttribute] T4[,,] column, [InAttribute, OutAttribute] T5[,,] span) where T3 : struct where T4 : struct - where T5 : struct { throw new NotImplementedException(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// @@ -1730,7 +1730,7 @@ namespace OpenTK.Graphics.OpenGL void GetSeparableFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T3[,] row, [InAttribute, OutAttribute] T4[,,] column, [InAttribute, OutAttribute] T5[,,] span) where T3 : struct where T4 : struct - where T5 : struct { throw new NotImplementedException(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// @@ -1773,7 +1773,7 @@ namespace OpenTK.Graphics.OpenGL void GetSeparableFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T3 row, [InAttribute, OutAttribute] T4[,,] column, [InAttribute, OutAttribute] T5[,,] span) where T3 : struct where T4 : struct - where T5 : struct { throw new NotImplementedException(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// @@ -1822,7 +1822,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glSeparableFilter2DEXT")] [Obsolete("Use SeparableFilter2D overloads instead")] public static - void SeparableFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr row, [InAttribute, OutAttribute] IntPtr column) { throw new NotImplementedException(); } + void SeparableFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr row, [InAttribute, OutAttribute] IntPtr column) { throw new BindingsNotRewrittenException(); } /// @@ -1873,7 +1873,7 @@ namespace OpenTK.Graphics.OpenGL public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T6 row, [InAttribute, OutAttribute] ref T7 column) where T6 : struct - where T7 : struct { throw new NotImplementedException(); } + where T7 : struct { throw new BindingsNotRewrittenException(); } /// @@ -1925,7 +1925,7 @@ namespace OpenTK.Graphics.OpenGL public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[] row, [InAttribute, OutAttribute] T7[] column) where T6 : struct - where T7 : struct { throw new NotImplementedException(); } + where T7 : struct { throw new BindingsNotRewrittenException(); } /// @@ -1977,7 +1977,7 @@ namespace OpenTK.Graphics.OpenGL public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[,] row, [InAttribute, OutAttribute] T7[,] column) where T6 : struct - where T7 : struct { throw new NotImplementedException(); } + where T7 : struct { throw new BindingsNotRewrittenException(); } /// @@ -2029,7 +2029,7 @@ namespace OpenTK.Graphics.OpenGL public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[,,] row, [InAttribute, OutAttribute] T7[,,] column) where T6 : struct - where T7 : struct { throw new NotImplementedException(); } + where T7 : struct { throw new BindingsNotRewrittenException(); } /// @@ -2080,7 +2080,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr row, [InAttribute, OutAttribute] T7[] column) - where T7 : struct { throw new NotImplementedException(); } + where T7 : struct { throw new BindingsNotRewrittenException(); } /// @@ -2131,7 +2131,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr row, [InAttribute, OutAttribute] T7[,] column) - where T7 : struct { throw new NotImplementedException(); } + where T7 : struct { throw new BindingsNotRewrittenException(); } /// @@ -2182,7 +2182,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr row, [InAttribute, OutAttribute] T7[,,] column) - where T7 : struct { throw new NotImplementedException(); } + where T7 : struct { throw new BindingsNotRewrittenException(); } /// @@ -2232,7 +2232,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SeparableFilter2D overloads instead")] public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr row, [InAttribute, OutAttribute] ref T7 column) - where T7 : struct { throw new NotImplementedException(); } + where T7 : struct { throw new BindingsNotRewrittenException(); } /// @@ -2284,7 +2284,7 @@ namespace OpenTK.Graphics.OpenGL public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[] row, [InAttribute, OutAttribute] T7[,,] column) where T6 : struct - where T7 : struct { throw new NotImplementedException(); } + where T7 : struct { throw new BindingsNotRewrittenException(); } /// @@ -2335,7 +2335,7 @@ namespace OpenTK.Graphics.OpenGL public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[,] row, [InAttribute, OutAttribute] T7[,,] column) where T6 : struct - where T7 : struct { throw new NotImplementedException(); } + where T7 : struct { throw new BindingsNotRewrittenException(); } } /// @@ -2386,7 +2386,7 @@ namespace OpenTK.Graphics.OpenGL public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T6 row, [InAttribute, OutAttribute] T7[,,] column) where T6 : struct - where T7 : struct { throw new NotImplementedException(); } + where T7 : struct { throw new BindingsNotRewrittenException(); } partial class Ibm @@ -2394,26 +2394,26 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawArraysIBM")] [Obsolete("Use PrimitiveType overload instead")] public static - void MultiModeDrawArrays(OpenTK.Graphics.OpenGL.BeginMode[] mode, Int32[] first, Int32[] count, Int32 primcount, Int32 modestride) { throw new NotImplementedException(); } + void MultiModeDrawArrays(OpenTK.Graphics.OpenGL.BeginMode[] mode, Int32[] first, Int32[] count, Int32 primcount, Int32 modestride) { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawArraysIBM")] [Obsolete("Use PrimitiveType overload instead")] public static - void MultiModeDrawArrays(ref OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 first, ref Int32 count, Int32 primcount, Int32 modestride) { throw new NotImplementedException(); } + void MultiModeDrawArrays(ref OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 first, ref Int32 count, Int32 primcount, Int32 modestride) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawArraysIBM")] [Obsolete("Use PrimitiveType overload instead")] public static - unsafe void MultiModeDrawArrays(OpenTK.Graphics.OpenGL.BeginMode* mode, Int32* first, Int32* count, Int32 primcount, Int32 modestride) { throw new NotImplementedException(); } + unsafe void MultiModeDrawArrays(OpenTK.Graphics.OpenGL.BeginMode* mode, Int32* first, Int32* count, Int32 primcount, Int32 modestride) { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawElementsIBM")] [Obsolete("Use PrimitiveType overload instead")] public static - void MultiModeDrawElements(OpenTK.Graphics.OpenGL.BeginMode[] mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount, Int32 modestride) { throw new NotImplementedException(); } + void MultiModeDrawElements(OpenTK.Graphics.OpenGL.BeginMode[] mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount, Int32 modestride) { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawElementsIBM")] @@ -2421,7 +2421,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiModeDrawElements(OpenTK.Graphics.OpenGL.BeginMode[] mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount, Int32 modestride) - where T3 : struct { throw new NotImplementedException(); } + where T3 : struct { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawElementsIBM")] @@ -2429,7 +2429,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiModeDrawElements(OpenTK.Graphics.OpenGL.BeginMode[] mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount, Int32 modestride) - where T3 : struct { throw new NotImplementedException(); } + where T3 : struct { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawElementsIBM")] @@ -2437,20 +2437,20 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiModeDrawElements(OpenTK.Graphics.OpenGL.BeginMode[] mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount, Int32 modestride) - where T3 : struct { throw new NotImplementedException(); } + where T3 : struct { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawElementsIBM")] [Obsolete("Use PrimitiveType overload instead")] public static void MultiModeDrawElements(OpenTK.Graphics.OpenGL.BeginMode[] mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 primcount, Int32 modestride) - where T3 : struct { throw new NotImplementedException(); } + where T3 : struct { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawElementsIBM")] [Obsolete("Use PrimitiveType overload instead")] public static - void MultiModeDrawElements(ref OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount, Int32 modestride) { throw new NotImplementedException(); } + void MultiModeDrawElements(ref OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount, Int32 modestride) { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawElementsIBM")] @@ -2458,7 +2458,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiModeDrawElements(ref OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount, Int32 modestride) - where T3 : struct { throw new NotImplementedException(); } + where T3 : struct { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawElementsIBM")] @@ -2466,7 +2466,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiModeDrawElements(ref OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount, Int32 modestride) - where T3 : struct { throw new NotImplementedException(); } + where T3 : struct { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawElementsIBM")] @@ -2474,7 +2474,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiModeDrawElements(ref OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount, Int32 modestride) - where T3 : struct { throw new NotImplementedException(); } + where T3 : struct { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawElementsIBM")] @@ -2482,14 +2482,14 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiModeDrawElements(ref OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 primcount, Int32 modestride) - where T3 : struct { throw new NotImplementedException(); } + where T3 : struct { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawElementsIBM")] [Obsolete("Use PrimitiveType overload instead")] public static - unsafe void MultiModeDrawElements(OpenTK.Graphics.OpenGL.BeginMode* mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount, Int32 modestride) { throw new NotImplementedException(); } + unsafe void MultiModeDrawElements(OpenTK.Graphics.OpenGL.BeginMode* mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount, Int32 modestride) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] @@ -2497,7 +2497,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] public static unsafe void MultiModeDrawElements(OpenTK.Graphics.OpenGL.BeginMode* mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[] indices, Int32 primcount, Int32 modestride) - where T3 : struct { throw new NotImplementedException(); } + where T3 : struct { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] @@ -2505,7 +2505,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] public static unsafe void MultiModeDrawElements(OpenTK.Graphics.OpenGL.BeginMode* mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,] indices, Int32 primcount, Int32 modestride) - where T3 : struct { throw new NotImplementedException(); } + where T3 : struct { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] @@ -2513,7 +2513,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] public static unsafe void MultiModeDrawElements(OpenTK.Graphics.OpenGL.BeginMode* mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T3[,,] indices, Int32 primcount, Int32 modestride) - where T3 : struct { throw new NotImplementedException(); } + where T3 : struct { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] @@ -2521,7 +2521,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] public static unsafe void MultiModeDrawElements(OpenTK.Graphics.OpenGL.BeginMode* mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 primcount, Int32 modestride) - where T3 : struct { throw new NotImplementedException(); } + where T3 : struct { throw new BindingsNotRewrittenException(); } } partial class NV @@ -2529,217 +2529,217 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")] [Obsolete("Use DeleteTransformFeedbacks overload instead")] public static - void DeleteTransformFeedback(Int32 n, Int32[] ids) { throw new NotImplementedException(); } + void DeleteTransformFeedback(Int32 n, Int32[] ids) { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")] [Obsolete("Use DeleteTransformFeedbacks overload instead")] public static - void DeleteTransformFeedback(Int32 n, ref Int32 ids) { throw new NotImplementedException(); } + void DeleteTransformFeedback(Int32 n, ref Int32 ids) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")] [Obsolete("Use DeleteTransformFeedbacks overload instead")] public static - unsafe void DeleteTransformFeedback(Int32 n, Int32* ids) { throw new NotImplementedException(); } + unsafe void DeleteTransformFeedback(Int32 n, Int32* ids) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")] [Obsolete("Use DeleteTransformFeedbacks overload instead")] public static - void DeleteTransformFeedback(Int32 n, UInt32[] ids) { throw new NotImplementedException(); } + void DeleteTransformFeedback(Int32 n, UInt32[] ids) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")] [Obsolete("Use DeleteTransformFeedbacks overload instead")] public static - void DeleteTransformFeedback(Int32 n, ref UInt32 ids) { throw new NotImplementedException(); } + void DeleteTransformFeedback(Int32 n, ref UInt32 ids) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")] [Obsolete("Use DeleteTransformFeedbacks overload instead")] public static - unsafe void DeleteTransformFeedback(Int32 n, UInt32* ids) { throw new NotImplementedException(); } + unsafe void DeleteTransformFeedback(Int32 n, UInt32* ids) { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glGenTransformFeedbacksNV")] [Obsolete("Use GenTransformFeedbacks overload instead")] public static - void GenTransformFeedback(Int32 n, [OutAttribute] Int32[] ids) { throw new NotImplementedException(); } + void GenTransformFeedback(Int32 n, [OutAttribute] Int32[] ids) { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glGenTransformFeedbacksNV")] [Obsolete("Use GenTransformFeedbacks overload instead")] public static - void GenTransformFeedback(Int32 n, [OutAttribute] out Int32 ids) { throw new NotImplementedException(); } + void GenTransformFeedback(Int32 n, [OutAttribute] out Int32 ids) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glGenTransformFeedbacksNV")] [Obsolete("Use GenTransformFeedbacks overload instead")] public static - unsafe void GenTransformFeedback(Int32 n, [OutAttribute] Int32* ids) { throw new NotImplementedException(); } + unsafe void GenTransformFeedback(Int32 n, [OutAttribute] Int32* ids) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glGenTransformFeedbacksNV")] [Obsolete("Use GenTransformFeedbacks overload instead")] public static - void GenTransformFeedback(Int32 n, [OutAttribute] UInt32[] ids) { throw new NotImplementedException(); } + void GenTransformFeedback(Int32 n, [OutAttribute] UInt32[] ids) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glGenTransformFeedbacksNV")] [Obsolete("Use GenTransformFeedbacks overload instead")] public static - void GenTransformFeedback(Int32 n, [OutAttribute] out UInt32 ids) { throw new NotImplementedException(); } + void GenTransformFeedback(Int32 n, [OutAttribute] out UInt32 ids) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glGenTransformFeedbacksNV")] [Obsolete("Use GenTransformFeedbacks overload instead")] public static - unsafe void GenTransformFeedback(Int32 n, [OutAttribute] UInt32* ids) { throw new NotImplementedException(); } + unsafe void GenTransformFeedback(Int32 n, [OutAttribute] UInt32* ids) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glGetProgramNamedParameterdvNV")] [Obsolete("Use ref/array overload instead")] public static - unsafe void GetProgramNamedParameter(Int32 id, Int32 len, Byte* name, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } + unsafe void GetProgramNamedParameter(Int32 id, Int32 len, Byte* name, [OutAttribute] Double[] @params) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glGetProgramNamedParameterdvNV")] [Obsolete("Use ref/array overload instead")] public static - unsafe void GetProgramNamedParameter(UInt32 id, Int32 len, Byte* name, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } + unsafe void GetProgramNamedParameter(UInt32 id, Int32 len, Byte* name, [OutAttribute] Double[] @params) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glGetProgramNamedParameterfvNV")] [Obsolete("Use ref/array overload instead")] public static - unsafe void GetProgramNamedParameter(Int32 id, Int32 len, Byte* name, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + unsafe void GetProgramNamedParameter(Int32 id, Int32 len, Byte* name, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glGetProgramNamedParameterfvNV")] [Obsolete("Use ref/array overload instead")] public static - unsafe void GetProgramNamedParameter(UInt32 id, Int32 len, Byte* name, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + unsafe void GetProgramNamedParameter(UInt32 id, Int32 len, Byte* name, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "NvPresentVideo", Version = "1.2", EntryPoint = "glGetVideoi64vNV")] [Obsolete("Use GetVideo overload instead")] public static - void GetVideoi64(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + void GetVideoi64(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "NvPresentVideo", Version = "1.2", EntryPoint = "glGetVideoi64vNV")] [Obsolete("Use GetVideo overload instead")] public static - void GetVideoi64(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + void GetVideoi64(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvPresentVideo", Version = "1.2", EntryPoint = "glGetVideoi64vNV")] [Obsolete("Use GetVideo overload instead")] public static - unsafe void GetVideoi64(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + unsafe void GetVideoi64(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvPresentVideo", Version = "1.2", EntryPoint = "glGetVideoi64vNV")] [Obsolete("Use GetVideo overload instead")] public static - void GetVideoi64(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + void GetVideoi64(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvPresentVideo", Version = "1.2", EntryPoint = "glGetVideoi64vNV")] [Obsolete("Use GetVideo overload instead")] public static - void GetVideoi64(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + void GetVideoi64(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvPresentVideo", Version = "1.2", EntryPoint = "glGetVideoi64vNV")] [Obsolete("Use GetVideo overload instead")] public static - unsafe void GetVideoi64(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + unsafe void GetVideoi64(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "NvPresentVideo", Version = "1.2", EntryPoint = "glGetVideoui64vNV")] [Obsolete("Use GetVideo overload instead")] public static - void GetVideoui64(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + void GetVideoui64(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "NvPresentVideo", Version = "1.2", EntryPoint = "glGetVideoui64vNV")] [Obsolete("Use GetVideo overload instead")] public static - void GetVideoui64(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + void GetVideoui64(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvPresentVideo", Version = "1.2", EntryPoint = "glGetVideoui64vNV")] [Obsolete("Use GetVideo overload instead")] public static - unsafe void GetVideoui64(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + unsafe void GetVideoui64(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvPresentVideo", Version = "1.2", EntryPoint = "glGetVideoui64vNV")] [Obsolete("Use GetVideo overload instead")] public static - void GetVideoui64(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] UInt64[] @params) { throw new NotImplementedException(); } + void GetVideoui64(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] UInt64[] @params) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvPresentVideo", Version = "1.2", EntryPoint = "glGetVideoui64vNV")] [Obsolete("Use GetVideo overload instead")] public static - void GetVideoui64(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] out UInt64 @params) { throw new NotImplementedException(); } + void GetVideoui64(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] out UInt64 @params) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvPresentVideo", Version = "1.2", EntryPoint = "glGetVideoui64vNV")] [Obsolete("Use GetVideo overload instead")] public static - unsafe void GetVideoui64(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] UInt64* @params) { throw new NotImplementedException(); } + unsafe void GetVideoui64(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] UInt64* @params) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glProgramNamedParameter4dvNV")] [Obsolete("Use ref/array overload instead")] public static - unsafe void ProgramNamedParameter4(Int32 id, Int32 len, Byte* name, Double[] v) { throw new NotImplementedException(); } + unsafe void ProgramNamedParameter4(Int32 id, Int32 len, Byte* name, Double[] v) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glProgramNamedParameter4dvNV")] [Obsolete("Use ref/array overload instead")] public static - unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, Byte* name, Double[] v) { throw new NotImplementedException(); } + unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, Byte* name, Double[] v) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glProgramNamedParameter4fvNV")] [Obsolete("Use ref/array overload instead")] public static - unsafe void ProgramNamedParameter4(Int32 id, Int32 len, Byte* name, Single[] v) { throw new NotImplementedException(); } + unsafe void ProgramNamedParameter4(Int32 id, Int32 len, Byte* name, Single[] v) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glProgramNamedParameter4fvNV")] [Obsolete("Use ref/array overload instead")] public static - unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, Byte* name, Single[] v) { throw new NotImplementedException(); } + unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, Byte* name, Single[] v) { throw new BindingsNotRewrittenException(); } } partial class Sun @@ -2748,112 +2748,112 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiColor3fVertex3fvSUN")] [Obsolete("Use ref/array overload instead")] public static - unsafe void ReplacementCodeuiColor3fVertex3(Int32* rc, Single[] c, Single[] v) { throw new NotImplementedException(); } + unsafe void ReplacementCodeuiColor3fVertex3(Int32* rc, Single[] c, Single[] v) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiColor3fVertex3fvSUN")] [Obsolete("Use ref/array overload instead")] public static - unsafe void ReplacementCodeuiColor3fVertex3(UInt32* rc, Single[] c, Single[] v) { throw new NotImplementedException(); } + unsafe void ReplacementCodeuiColor3fVertex3(UInt32* rc, Single[] c, Single[] v) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiColor4fNormal3fVertex3fvSUN")] [Obsolete("Use ref/array overload instead")] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, Single[] c, Single[] n, Single[] v) { throw new NotImplementedException(); } + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, Single[] c, Single[] n, Single[] v) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiColor4fNormal3fVertex3fvSUN")] [Obsolete("Use ref/array overload instead")] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, Single[] c, Single[] n, Single[] v) { throw new NotImplementedException(); } + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, Single[] c, Single[] n, Single[] v) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiColor4ubVertex3fvSUN")] [Obsolete("Use ref/array overload instead")] public static - unsafe void ReplacementCodeuiColor4ubVertex3(Int32* rc, Byte[] c, Single[] v) { throw new NotImplementedException(); } + unsafe void ReplacementCodeuiColor4ubVertex3(Int32* rc, Byte[] c, Single[] v) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiColor4ubVertex3fvSUN")] [Obsolete("Use ref/array overload instead")] public static - unsafe void ReplacementCodeuiColor4ubVertex3(UInt32* rc, Byte[] c, Single[] v) { throw new NotImplementedException(); } + unsafe void ReplacementCodeuiColor4ubVertex3(UInt32* rc, Byte[] c, Single[] v) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiNormal3fVertex3fvSUN")] [Obsolete("Use ref/array overload instead")] public static - unsafe void ReplacementCodeuiNormal3fVertex3(Int32* rc, Single[] n, Single[] v) { throw new NotImplementedException(); } + unsafe void ReplacementCodeuiNormal3fVertex3(Int32* rc, Single[] n, Single[] v) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiNormal3fVertex3fvSUN")] [Obsolete("Use ref/array overload instead")] public static - unsafe void ReplacementCodeuiNormal3fVertex3(UInt32* rc, Single[] n, Single[] v) { throw new NotImplementedException(); } + unsafe void ReplacementCodeuiNormal3fVertex3(UInt32* rc, Single[] n, Single[] v) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN")] [Obsolete("Use ref/array overload instead")] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single[] tc, Single[] c, Single[] n, Single[] v) { throw new NotImplementedException(); } + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single[] tc, Single[] c, Single[] n, Single[] v) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN")] [Obsolete("Use ref/array overload instead")] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single[] tc, Single[] c, Single[] n, Single[] v) { throw new NotImplementedException(); } + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single[] tc, Single[] c, Single[] n, Single[] v) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN")] [Obsolete("Use ref/array overload instead")] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, Single[] tc, Single[] n, Single[] v) { throw new NotImplementedException(); } + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, Single[] tc, Single[] n, Single[] v) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN")] [Obsolete("Use ref/array overload instead")] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, Single[] tc, Single[] n, Single[] v) { throw new NotImplementedException(); } + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, Single[] tc, Single[] n, Single[] v) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiTexCoord2fVertex3fvSUN")] [Obsolete("Use ref/array overload instead")] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(Int32* rc, Single[] tc, Single[] v) { throw new NotImplementedException(); } + unsafe void ReplacementCodeuiTexCoord2fVertex3(Int32* rc, Single[] tc, Single[] v) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiTexCoord2fVertex3fvSUN")] [Obsolete("Use ref/array overload instead")] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(UInt32* rc, Single[] tc, Single[] v) { throw new NotImplementedException(); } + unsafe void ReplacementCodeuiTexCoord2fVertex3(UInt32* rc, Single[] tc, Single[] v) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiVertex3fvSUN")] [Obsolete("Use ref/array overload instead")] public static - unsafe void ReplacementCodeuiVertex3(Int32* rc, Single[] v) { throw new NotImplementedException(); } + unsafe void ReplacementCodeuiVertex3(Int32* rc, Single[] v) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiVertex3fvSUN")] [Obsolete("Use ref/array overload instead")] public static - unsafe void ReplacementCodeuiVertex3(UInt32* rc, Single[] v) { throw new NotImplementedException(); } + unsafe void ReplacementCodeuiVertex3(UInt32* rc, Single[] v) { throw new BindingsNotRewrittenException(); } } } } diff --git a/src/OpenTK/InteropHelper.cs b/src/OpenTK/InteropHelper.cs index b61bf0e1..97bdef14 100644 --- a/src/OpenTK/InteropHelper.cs +++ b/src/OpenTK/InteropHelper.cs @@ -31,152 +31,152 @@ namespace OpenTK { public static void Call(IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static void Call(T0 arg0, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static void Call(T0 arg0, T1 arg1, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static void Call(T0 arg0, T1 arg1, T2 arg2, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static void Call(T0 arg0, T1 arg1, T2 arg2, T3 arg3, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static void Call(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static void Call(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static void Call(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static void Call(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static void Call(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static void Call(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static void Call(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static void Call(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static void Call(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static void Call(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, T13 arg13, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static void Call(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, T13 arg13, T14 arg14, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static void Call(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, T13 arg13, T14 arg14, T15 arg15, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static TRet CallReturn(IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static TRet CallReturn(T0 arg0, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static TRet CallReturn(T0 arg0, T1 arg1, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static TRet CallReturn(T0 arg0, T1 arg1, T2 arg2, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static TRet CallReturn(T0 arg0, T1 arg1, T2 arg2, T3 arg3, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static TRet CallReturn(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static TRet CallReturn(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static TRet CallReturn(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static TRet CallReturn(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static IntPtr Pin(T[] arg) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static IntPtr Pin(T[,] arg) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static IntPtr Pin(T[,,] arg) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static IntPtr Pin(ref T arg) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } } } diff --git a/src/OpenTK/Platform/Windows/Bindings/Wgl.cs b/src/OpenTK/Platform/Windows/Bindings/Wgl.cs index 5cb9e10f..4d44fa8e 100644 --- a/src/OpenTK/Platform/Windows/Bindings/Wgl.cs +++ b/src/OpenTK/Platform/Windows/Bindings/Wgl.cs @@ -106,28 +106,28 @@ namespace OpenTK.Platform.Windows public static IntPtr CreateContextAttribs(IntPtr hDC, IntPtr hShareContext, int[] attribList) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglGetExtensionsStringARB")] public static string GetExtensionsString(IntPtr hdc) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglGetPixelFormatAttribivARB")] public static Boolean GetPixelFormatAttrib(IntPtr hdc, int iPixelFormat, int iLayerPlane, Int32 nAttributes, int[] piAttributes, [Out] int[] piValues) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglGetPixelFormatAttribivARB")] public static Boolean GetPixelFormatAttrib(IntPtr hdc, int iPixelFormat, int iLayerPlane, Int32 nAttributes, ref int piAttributes, [Out] out int piValues) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglGetPixelFormatAttribfvARB")] @@ -135,119 +135,119 @@ namespace OpenTK.Platform.Windows public static Boolean GetPixelFormatAttrib(IntPtr hdc, int iPixelFormat, int iLayerPlane, int nAttributes, int[] piAttributes, [Out] Single[] pfValues) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglGetPixelFormatAttribfvARB")] public static Boolean GetPixelFormatAttrib(IntPtr hdc, int iPixelFormat, int iLayerPlane, Int32 nAttributes, ref int piAttributes, [Out] out Single pfValues) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglChoosePixelFormatARB")] public static Boolean ChoosePixelFormat(IntPtr hdc, int[] piAttribIList, Single[] pfAttribFList, Int32 nMaxFormats, [Out] int[] piFormats, out int nNumFormats) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglChoosePixelFormatARB")] public static Boolean ChoosePixelFormat(IntPtr hdc, ref int piAttribIList, ref Single pfAttribFList, Int32 nMaxFormats, [Out] out int piFormats, [Out] out Int32 nNumFormats) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglMakeContextCurrentARB")] public static Boolean MakeContextCurrent(IntPtr hDrawDC, IntPtr hReadDC, IntPtr hglrc) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglGetCurrentReadDCARB")] public static IntPtr GetCurrentReadDC() { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglCreatePbufferARB")] public static IntPtr CreatePbuffer(IntPtr hDC, int iPixelFormat, int iWidth, int iHeight, int[] piAttribList) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglCreatePbufferARB")] public static IntPtr CreatePbuffer(IntPtr hDC, int iPixelFormat, int iWidth, int iHeight, ref int piAttribList) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglGetPbufferDCARB")] public static IntPtr GetPbufferDC(IntPtr hPbuffer) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglReleasePbufferDCARB")] public static int ReleasePbufferDC(IntPtr hPbuffer, IntPtr hDC) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglDestroyPbufferARB")] public static Boolean DestroyPbuffer(IntPtr hPbuffer) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglQueryPbufferARB")] public static Boolean QueryPbuffer(IntPtr hPbuffer, int iAttribute, [Out] int[] piValue) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglQueryPbufferARB")] public static Boolean QueryPbuffer(IntPtr hPbuffer, int iAttribute, [Out] out int piValue) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglBindTexImageARB")] public static Boolean BindTexImage(IntPtr hPbuffer, int iBuffer) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglReleaseTexImageARB")] public static Boolean ReleaseTexImage(IntPtr hPbuffer, int iBuffer) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglSetPbufferAttribARB")] public static Boolean SetPbufferAttrib(IntPtr hPbuffer, int[] piAttribList) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglSetPbufferAttribARB")] public static Boolean SetPbufferAttrib(IntPtr hPbuffer, ref int piAttribList) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } } @@ -257,21 +257,21 @@ namespace OpenTK.Platform.Windows public static string GetExtensionsString() { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglSwapIntervalEXT")] public static Boolean SwapInterval(int interval) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglGetSwapIntervalEXT")] public static int GetSwapInterval() { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } } diff --git a/src/OpenTK/Platform/X11/Bindings/Glx.cs b/src/OpenTK/Platform/X11/Bindings/Glx.cs index 9cb3e8b3..cc185b8d 100644 --- a/src/OpenTK/Platform/X11/Bindings/Glx.cs +++ b/src/OpenTK/Platform/X11/Bindings/Glx.cs @@ -416,13 +416,13 @@ namespace OpenTK.Platform.X11 [AutoGenerated(EntryPoint = "glXCreateContextAttribsARB")] unsafe public static IntPtr CreateContextAttribs(IntPtr display, IntPtr fbconfig, IntPtr share_context, bool direct, int* attribs) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "glXCreateContextAttribsARB")] public static IntPtr CreateContextAttribs(IntPtr display, IntPtr fbconfig, IntPtr share_context, bool direct, int[] attribs) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } // The linux OpenGL ABI 3.6 (1999) requires @@ -443,7 +443,7 @@ namespace OpenTK.Platform.X11 [AutoGenerated(EntryPoint = "glXSwapIntervalEXT")] public static ErrorCode SwapInterval(IntPtr display, IntPtr drawable, int interval) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } } @@ -452,13 +452,13 @@ namespace OpenTK.Platform.X11 [AutoGenerated(EntryPoint = "glXSwapIntervalMESA")] public static ErrorCode SwapInterval(int interval) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "glXGetSwapIntervalMESA")] public static int GetSwapInterval() { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } } @@ -467,7 +467,7 @@ namespace OpenTK.Platform.X11 [AutoGenerated(EntryPoint = "glXSwapIntervalSGI")] public static ErrorCode SwapInterval(int interval) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } } From 8e5faec07c4db0c418c485806f83b087a93d21d4 Mon Sep 17 00:00:00 2001 From: Rosen Iliev Date: Wed, 30 Aug 2017 18:10:56 +0300 Subject: [PATCH 22/91] Prevent crash when XInput is not present Now returns from the function instead of throwing an exception --- src/OpenTK/Platform/Windows/XInputJoystick.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/OpenTK/Platform/Windows/XInputJoystick.cs b/src/OpenTK/Platform/Windows/XInputJoystick.cs index bf17115c..23d29d2c 100644 --- a/src/OpenTK/Platform/Windows/XInputJoystick.cs +++ b/src/OpenTK/Platform/Windows/XInputJoystick.cs @@ -381,7 +381,8 @@ namespace OpenTK.Platform.Windows } if (dll == IntPtr.Zero) { - throw new NotSupportedException("XInput was not found on this platform"); + //XInput was not found on this platform + return; } // Load the entry points we are interested in from that dll From 33ed6727bf2e97174c7e87c7d7c5ebc646c4ee32 Mon Sep 17 00:00:00 2001 From: Rosen Iliev Date: Thu, 31 Aug 2017 10:47:56 +0300 Subject: [PATCH 23/91] Update XInputJoystick.cs Debug message for programmers --- src/OpenTK/Platform/Windows/XInputJoystick.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/OpenTK/Platform/Windows/XInputJoystick.cs b/src/OpenTK/Platform/Windows/XInputJoystick.cs index 23d29d2c..a51cc48f 100644 --- a/src/OpenTK/Platform/Windows/XInputJoystick.cs +++ b/src/OpenTK/Platform/Windows/XInputJoystick.cs @@ -381,7 +381,7 @@ namespace OpenTK.Platform.Windows } if (dll == IntPtr.Zero) { - //XInput was not found on this platform + Debug.Print("XInput was not found on this platform"); return; } From 05abff631a8fc40a92643280f6ef0b477007044e Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Sat, 9 Sep 2017 10:39:26 +0100 Subject: [PATCH 24/91] Add some tests for the Half type --- tests/OpenTK.Tests/HalfTests.fs | 40 ++++++++++++++++++++++++++ tests/OpenTK.Tests/OpenTK.Tests.fsproj | 1 + 2 files changed, 41 insertions(+) create mode 100644 tests/OpenTK.Tests/HalfTests.fs diff --git a/tests/OpenTK.Tests/HalfTests.fs b/tests/OpenTK.Tests/HalfTests.fs new file mode 100644 index 00000000..ac2ec4e6 --- /dev/null +++ b/tests/OpenTK.Tests/HalfTests.fs @@ -0,0 +1,40 @@ +namespace OpenTK.Tests + +open Xunit +open FsCheck +open FsCheck.Xunit +open System +open System.Runtime.InteropServices +open OpenTK + +module Half = + [] + let ``Casting Half to Single and back to Half is lossless`` () = + for bits = int System.Int16.MinValue to int System.Int16.MaxValue do + let bytes = System.BitConverter.GetBytes(int16 bits) + let half = Half.FromBytes(bytes, 0) + let single = float32 half + let roundtrip = Half single + + Assert.True((half.IsNaN && roundtrip.IsNaN) || half = roundtrip) + + [] + let ``Half.ToString and Single.ToString return same string for same value`` () = + for bits = int System.Int16.MinValue to int System.Int16.MaxValue do + let bytes = System.BitConverter.GetBytes(int16 bits) + let half = Half.FromBytes(bytes, 0) + let single = float32 half + Assert.Equal(half.ToString(), single.ToString()) + + [] + let ``Half can represent all integers from -2048 to 2048 exactly`` () = + for i = -2048 to 2048 do + let single = float32 i + let half = Half single + Assert.Equal(single, float32 half) + + [] + let ``Single NaN and inifnity can be cast to Half NaN and infinity`` () = + Assert.True((Half System.Single.NaN).IsNaN) + Assert.True((Half System.Single.PositiveInfinity).IsPositiveInfinity) + Assert.True((Half System.Single.NegativeInfinity).IsNegativeInfinity) diff --git a/tests/OpenTK.Tests/OpenTK.Tests.fsproj b/tests/OpenTK.Tests/OpenTK.Tests.fsproj index 968af043..ee3974a9 100644 --- a/tests/OpenTK.Tests/OpenTK.Tests.fsproj +++ b/tests/OpenTK.Tests/OpenTK.Tests.fsproj @@ -69,6 +69,7 @@ + From d4112a6e9544887b53cc822b39d84db5cb76d655 Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Fri, 15 Sep 2017 11:21:10 +0200 Subject: [PATCH 25/91] Add OpenTK.GLWidget as a friend assembly, allowing it to access internals. --- src/OpenTK/Properties/AssemblyInfo.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/OpenTK/Properties/AssemblyInfo.cs b/src/OpenTK/Properties/AssemblyInfo.cs index f0d6b897..5246aeff 100644 --- a/src/OpenTK/Properties/AssemblyInfo.cs +++ b/src/OpenTK/Properties/AssemblyInfo.cs @@ -1,6 +1,7 @@ // using System; using System.Reflection; +using System.Runtime.CompilerServices; [assembly: AssemblyTitleAttribute("OpenTK")] [assembly: AssemblyProductAttribute("OpenTK")] @@ -9,6 +10,9 @@ using System.Reflection; [assembly: AssemblyFileVersionAttribute("3.0.0")] [assembly: CLSCompliantAttribute(true)] [assembly: AssemblyCopyrightAttribute("Copyright (c) 2006 - 2016 Stefanos Apostolopoulos for the Open Toolkit library.")] + +[assembly: InternalsVisibleTo("OpenTK.GLWidget, PublicKey=0024000004800000940000000602000000240000525341310004000011000000a3e05aafb87f71fb8fd02b512707f289c12341de98c6ce2ec1494b71c20cb2032cbd65d091b447df3ec772257efb9fa3591201937890e067da1d29a339948a12b29c2847a787cc9fbef2a3bf78267026e85f36aab827228df4bb580e3ae0599ade036f0a97a0e6982f5406d98d114455f332350f6d8369db655e9c3e7976c2c8")] + namespace System { internal static class AssemblyVersionInformation { internal const System.String AssemblyTitle = "OpenTK"; From d677aef6c392ec05890de1de31da2228f350f49e Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Fri, 15 Sep 2017 11:21:22 +0200 Subject: [PATCH 26/91] Inherit from GLArea instead of DrawingArea. --- src/OpenTK.GLWidget/GLWidget.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/OpenTK.GLWidget/GLWidget.cs b/src/OpenTK.GLWidget/GLWidget.cs index 5abababc..53d31897 100644 --- a/src/OpenTK.GLWidget/GLWidget.cs +++ b/src/OpenTK.GLWidget/GLWidget.cs @@ -7,6 +7,7 @@ using OpenTK.Platform; using Gtk; using OpenTK.OSX; +using OpenTK.Platform.X11; using OpenTK.Win; using OpenTK.X11; @@ -17,7 +18,7 @@ namespace OpenTK /// [CLSCompliant(false)] [ToolboxItem(true)] - public class GLWidget: DrawingArea + public class GLWidget: GLArea { private static int _GraphicsContextCount; @@ -386,6 +387,7 @@ namespace OpenTK } // GraphicsContext + _GraphicsContext = new GraphicsContext(graphicsMode, _WindowInfo, GlVersionMajor, GlVersionMinor, GraphicsContextFlags); _GraphicsContext.MakeCurrent(_WindowInfo); From 456d7cde37b3a62b28dec1b526f5c765af691613 Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Fri, 15 Sep 2017 11:51:11 +0200 Subject: [PATCH 27/91] Initialize an OpenTK::GraphicsContext from the foreign GDK context. --- src/OpenTK.GLWidget/GLWidget.cs | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/OpenTK.GLWidget/GLWidget.cs b/src/OpenTK.GLWidget/GLWidget.cs index 53d31897..db1833e0 100644 --- a/src/OpenTK.GLWidget/GLWidget.cs +++ b/src/OpenTK.GLWidget/GLWidget.cs @@ -386,9 +386,14 @@ namespace OpenTK _WindowInfo = XWindowInfoInitializer.Initialize(graphicsMode, this.Display.Handle, this.Screen.Number, widgetWindowHandle, this.Screen.RootWindow.Handle); } - // GraphicsContext + // Make the GDK GL context current + Context.MakeCurrent(); - _GraphicsContext = new GraphicsContext(graphicsMode, _WindowInfo, GlVersionMajor, GlVersionMinor, GraphicsContextFlags); + // Create an OpenTK graphics context using the GdkGLContext as a foreign context + // Since the GDK context is already created and has been made current, we can retrieve its handle. + var gdkContextHandle = Factory.Default.CreateGetCurrentGraphicsContext()(); + + _GraphicsContext = new GraphicsContext(gdkContextHandle, _WindowInfo, null, GlVersionMajor, GlVersionMinor, GraphicsContextFlags); _GraphicsContext.MakeCurrent(_WindowInfo); if (GraphicsContext.ShareContexts) From c485327da55c177d89fa6c5c2fc7474829449544 Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Fri, 15 Sep 2017 11:52:50 +0200 Subject: [PATCH 28/91] Remove GLVersion properties, and use the underlying GLArea implementation. --- src/OpenTK.GLWidget/GLWidget.cs | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/src/OpenTK.GLWidget/GLWidget.cs b/src/OpenTK.GLWidget/GLWidget.cs index db1833e0..f5ae5920 100644 --- a/src/OpenTK.GLWidget/GLWidget.cs +++ b/src/OpenTK.GLWidget/GLWidget.cs @@ -64,16 +64,6 @@ namespace OpenTK /// public bool Stereo { get; set; } - /// - /// The major version of OpenGL to use. - /// - public int GlVersionMajor { get; set; } - - /// - /// The minor version of OpenGL to use. - /// - public int GlVersionMinor { get; set; } - /// /// The set for this widget. /// @@ -114,8 +104,7 @@ namespace OpenTK Samples = graphicsMode.Samples; Stereo = graphicsMode.Stereo; - GlVersionMajor = glVersionMajor; - GlVersionMinor = glVersionMinor; + SetRequiredVersion(glVersionMajor, glVersionMinor); GraphicsContextFlags = graphicsContextFlags; } @@ -393,7 +382,8 @@ namespace OpenTK // Since the GDK context is already created and has been made current, we can retrieve its handle. var gdkContextHandle = Factory.Default.CreateGetCurrentGraphicsContext()(); - _GraphicsContext = new GraphicsContext(gdkContextHandle, _WindowInfo, null, GlVersionMajor, GlVersionMinor, GraphicsContextFlags); + GetRequiredVersion(out int glVersionMajor, out int glVersionMinor); + _GraphicsContext = new GraphicsContext(gdkContextHandle, _WindowInfo, null, glVersionMajor, glVersionMinor, GraphicsContextFlags); _GraphicsContext.MakeCurrent(_WindowInfo); if (GraphicsContext.ShareContexts) From e879b731454de8f286069bf0313cc028e8e7be06 Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Fri, 15 Sep 2017 12:37:28 +0200 Subject: [PATCH 29/91] Add buffer flag selection. --- src/OpenTK.GLWidget/GLWidget.cs | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/src/OpenTK.GLWidget/GLWidget.cs b/src/OpenTK.GLWidget/GLWidget.cs index f5ae5920..62e74f8d 100644 --- a/src/OpenTK.GLWidget/GLWidget.cs +++ b/src/OpenTK.GLWidget/GLWidget.cs @@ -1,7 +1,7 @@ using System; using System.Threading; using System.ComponentModel; - +using Gdk; using OpenTK.Graphics; using OpenTK.Platform; @@ -104,8 +104,24 @@ namespace OpenTK Samples = graphicsMode.Samples; Stereo = graphicsMode.Stereo; - SetRequiredVersion(glVersionMajor, glVersionMinor); GraphicsContextFlags = graphicsContextFlags; + + SetRequiredVersion(glVersionMajor, glVersionMinor); + + if (graphicsMode.Depth > 0) + { + HasDepthBuffer = true; + } + + if (graphicsMode.Stencil > 0) + { + HasStencilBuffer = true; + } + + if (graphicsMode.ColorFormat.Alpha > 0) + { + HasAlpha = true; + } } /// From 649cce05f7fdf5c4147c4f66dc8730da80b6cf64 Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Fri, 15 Sep 2017 12:38:49 +0200 Subject: [PATCH 30/91] Remove manual visual selection from the X11 initialization. --- src/OpenTK.GLWidget/GLWidget.cs | 2 +- .../X11/XWindowInfoInitializer.cs | 110 +----------------- 2 files changed, 3 insertions(+), 109 deletions(-) diff --git a/src/OpenTK.GLWidget/GLWidget.cs b/src/OpenTK.GLWidget/GLWidget.cs index 62e74f8d..dbae8dae 100644 --- a/src/OpenTK.GLWidget/GLWidget.cs +++ b/src/OpenTK.GLWidget/GLWidget.cs @@ -388,7 +388,7 @@ namespace OpenTK } else { - _WindowInfo = XWindowInfoInitializer.Initialize(graphicsMode, this.Display.Handle, this.Screen.Number, widgetWindowHandle, this.Screen.RootWindow.Handle); + _WindowInfo = XWindowInfoInitializer.Initialize(this.Display.Handle, this.Screen.Number, widgetWindowHandle, this.Screen.RootWindow.Handle); } // Make the GDK GL context current diff --git a/src/OpenTK.GLWidget/X11/XWindowInfoInitializer.cs b/src/OpenTK.GLWidget/X11/XWindowInfoInitializer.cs index 74b86d54..2c047893 100644 --- a/src/OpenTK.GLWidget/X11/XWindowInfoInitializer.cs +++ b/src/OpenTK.GLWidget/X11/XWindowInfoInitializer.cs @@ -19,19 +19,15 @@ namespace OpenTK.X11 #else const string UnixLibGdkName = "libgdk-x11-2.0.so.0"; #endif - private const string UnixLibX11Name = "libX11.so.6"; - private const string UnixLibGLName = "libGL.so.1"; - /// /// Initializes an under the X11 platform. /// - /// /// /// /// /// /// - public static IWindowInfo Initialize(GraphicsMode mode, IntPtr displayHandle, int screenNumber, IntPtr gdkWindowHandle, IntPtr gdkRootWindowHandle) + public static IWindowInfo Initialize(IntPtr displayHandle, int screenNumber, IntPtr gdkWindowHandle, IntPtr gdkRootWindowHandle) { IntPtr display = gdk_x11_display_get_xdisplay(displayHandle); @@ -43,110 +39,11 @@ namespace OpenTK.X11 IntPtr rootWindowXid = gdk_x11_drawable_get_xid(gdkRootWindowHandle); #endif - IntPtr visualInfo; - if (mode.Index.HasValue) - { - XVisualInfo info = new XVisualInfo - { - VisualID = mode.Index.Value - }; - - int dummy; - visualInfo = XGetVisualInfo(display, XVisualInfoMask.ID, ref info, out dummy); - } - else - { - visualInfo = GetVisualInfo(mode, display, screenNumber); - } - - IWindowInfo retval = Utilities.CreateX11WindowInfo(display, screenNumber, windowXid, rootWindowXid, visualInfo); - XFree(visualInfo); + IWindowInfo retval = Utilities.CreateX11WindowInfo(display, screenNumber, windowXid, rootWindowXid, IntPtr.Zero); return retval; } - private static IntPtr XGetVisualInfo(IntPtr display, XVisualInfoMask infoMask, ref XVisualInfo template, out int nitems) - { - return XGetVisualInfoInternal(display, (IntPtr)(int)infoMask, ref template, out nitems); - } - - private static IntPtr GetVisualInfo(GraphicsMode mode, IntPtr display, int screenNumber) - { - try - { - int[] attributes = CreateAttributeList(mode).ToArray(); - return glXChooseVisual(display, screenNumber, attributes); - } - catch (DllNotFoundException e) - { - throw new DllNotFoundException("OpenGL dll not found!", e); - } - catch (EntryPointNotFoundException enf) - { - throw new EntryPointNotFoundException("Glx entry point not found!", enf); - } - } - - private static List CreateAttributeList(GraphicsMode mode) - { - List attributeList = new List(24); - - attributeList.Add((int)GLXAttribute.RGBA); - - if (mode.Buffers > 1) - { - attributeList.Add((int)GLXAttribute.DOUBLEBUFFER); - } - - if (mode.Stereo) - { - attributeList.Add((int)GLXAttribute.STEREO); - } - - attributeList.Add((int)GLXAttribute.RED_SIZE); - attributeList.Add(mode.ColorFormat.Red / 4); // TODO support 16-bit - - attributeList.Add((int)GLXAttribute.GREEN_SIZE); - attributeList.Add(mode.ColorFormat.Green / 4); // TODO support 16-bit - - attributeList.Add((int)GLXAttribute.BLUE_SIZE); - attributeList.Add(mode.ColorFormat.Blue / 4); // TODO support 16-bit - - attributeList.Add((int)GLXAttribute.ALPHA_SIZE); - attributeList.Add(mode.ColorFormat.Alpha / 4); // TODO support 16-bit - - attributeList.Add((int)GLXAttribute.DEPTH_SIZE); - attributeList.Add(mode.Depth); - - attributeList.Add((int)GLXAttribute.STENCIL_SIZE); - attributeList.Add(mode.Stencil); - - //attributeList.Add(GLX_AUX_BUFFERS); - //attributeList.Add(Buffers); - - attributeList.Add((int)GLXAttribute.ACCUM_RED_SIZE); - attributeList.Add(mode.AccumulatorFormat.Red / 4); // TODO support 16-bit - - attributeList.Add((int)GLXAttribute.ACCUM_GREEN_SIZE); - attributeList.Add(mode.AccumulatorFormat.Green / 4); // TODO support 16-bit - - attributeList.Add((int)GLXAttribute.ACCUM_BLUE_SIZE); - attributeList.Add(mode.AccumulatorFormat.Blue / 4); // TODO support 16-bit - - attributeList.Add((int)GLXAttribute.ACCUM_ALPHA_SIZE); - attributeList.Add(mode.AccumulatorFormat.Alpha / 4); // TODO support 16-bit - - attributeList.Add((int)GLXAttribute.NONE); - - return attributeList; - } - - [DllImport(UnixLibX11Name, EntryPoint = "XGetVisualInfo")] - private static extern IntPtr XGetVisualInfoInternal(IntPtr display, IntPtr infoMask, ref XVisualInfo template, out int nitems); - - [SuppressUnmanagedCodeSecurity, DllImport(UnixLibX11Name)] - private static extern void XFree(IntPtr handle); - #if GTK3 /// Returns the X resource (window or pixmap) belonging to a GdkWindow. /// XID gdk_x11_window_get_xid(GdkWindow *drawable); @@ -168,8 +65,5 @@ namespace OpenTK.X11 /// The X Display of the GdkDisplay. [SuppressUnmanagedCodeSecurity, DllImport(UnixLibGdkName)] private static extern IntPtr gdk_x11_display_get_xdisplay(IntPtr gdkDisplay); - - [SuppressUnmanagedCodeSecurity, DllImport(UnixLibGLName)] - private static extern IntPtr glXChooseVisual(IntPtr display, int screen, int[] attr); } } \ No newline at end of file From 6a40207b9fa230b0d212f81efb2e6e15e4aa4533 Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Fri, 15 Sep 2017 12:39:47 +0200 Subject: [PATCH 31/91] Remove properties that are no longer relevant or used. --- src/OpenTK.GLWidget/GLWidget.cs | 67 --------------------------------- 1 file changed, 67 deletions(-) diff --git a/src/OpenTK.GLWidget/GLWidget.cs b/src/OpenTK.GLWidget/GLWidget.cs index dbae8dae..2bc1dd9b 100644 --- a/src/OpenTK.GLWidget/GLWidget.cs +++ b/src/OpenTK.GLWidget/GLWidget.cs @@ -28,42 +28,6 @@ namespace OpenTK private IWindowInfo _WindowInfo; private bool _Initialized = false; - /// - /// Use a single buffer versus a double buffer. - /// - [Browsable(true)] - public bool SingleBuffer { get; set; } - - /// - /// Color Buffer Bits-Per-Pixel - /// - public int ColorBPP { get; set; } - - /// - /// Accumulation Buffer Bits-Per-Pixel - /// - public int AccumulatorBPP { get; set; } - - /// - /// Depth Buffer Bits-Per-Pixel - /// - public int DepthBPP { get; set; } - - /// - /// Stencil Buffer Bits-Per-Pixel - /// - public int StencilBPP { get; set; } - - /// - /// Number of samples - /// - public int Samples { get; set; } - - /// - /// Indicates if steropic renderering is enabled - /// - public bool Stereo { get; set; } - /// /// The set for this widget. /// @@ -96,14 +60,6 @@ namespace OpenTK { this.DoubleBuffered = false; - SingleBuffer = graphicsMode.Buffers == 1; - ColorBPP = graphicsMode.ColorFormat.BitsPerPixel; - AccumulatorBPP = graphicsMode.AccumulatorFormat.BitsPerPixel; - DepthBPP = graphicsMode.Depth; - StencilBPP = graphicsMode.Stencil; - Samples = graphicsMode.Samples; - Stereo = graphicsMode.Stereo; - GraphicsContextFlags = graphicsContextFlags; SetRequiredVersion(glVersionMajor, glVersionMinor); @@ -335,29 +291,6 @@ namespace OpenTK { _Initialized = true; - // If this looks uninitialized... initialize. - if (ColorBPP == 0) - { - ColorBPP = 32; - - if (DepthBPP == 0) - { - DepthBPP = 16; - } - } - - ColorFormat colorBufferColorFormat = new ColorFormat(ColorBPP); - - ColorFormat accumulationColorFormat = new ColorFormat(AccumulatorBPP); - - int buffers = 2; - if (SingleBuffer) - { - buffers--; - } - - GraphicsMode graphicsMode = new GraphicsMode(colorBufferColorFormat, DepthBPP, StencilBPP, Samples, accumulationColorFormat, buffers, Stereo); - if (Configuration.RunningOnWindows) { Console.WriteLine("OpenTK running on windows"); From e9f27ff6301e48a417598068c7fb5baa2cea21ed Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Fri, 15 Sep 2017 12:40:21 +0200 Subject: [PATCH 32/91] Remove duplicate RenderFrame event (GLArea has one already). --- src/OpenTK.GLWidget/GLWidget.cs | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/src/OpenTK.GLWidget/GLWidget.cs b/src/OpenTK.GLWidget/GLWidget.cs index 2bc1dd9b..079541f4 100644 --- a/src/OpenTK.GLWidget/GLWidget.cs +++ b/src/OpenTK.GLWidget/GLWidget.cs @@ -193,22 +193,6 @@ namespace OpenTK } } - /// - /// Called when this needs to render a frame. - /// - public event EventHandler RenderFrame; - - /// - /// Invokes the event. - /// - protected virtual void OnRenderFrame() - { - if (RenderFrame != null) - { - RenderFrame(this, EventArgs.Empty); - } - } - /// /// Called when this is being disposed. /// @@ -255,9 +239,6 @@ namespace OpenTK #else bool result = base.OnExposeEvent(evnt); #endif - - OnRenderFrame(); - #if !GTK3 evnt.Window.Display.Sync(); // Add Sync call to fix resize rendering problem (Jay L. T. Cornwall) - How does this affect VSync? #endif From 6d4bb3059686509a9106b9e9f5e6b030406050fd Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Fri, 15 Sep 2017 12:41:23 +0200 Subject: [PATCH 33/91] Remove redundant MakeCurrent call, the base OnDrawn already does this. --- src/OpenTK.GLWidget/GLWidget.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/OpenTK.GLWidget/GLWidget.cs b/src/OpenTK.GLWidget/GLWidget.cs index 079541f4..d389f322 100644 --- a/src/OpenTK.GLWidget/GLWidget.cs +++ b/src/OpenTK.GLWidget/GLWidget.cs @@ -229,11 +229,6 @@ namespace OpenTK { Initialize(); } - else - { - _GraphicsContext.MakeCurrent(_WindowInfo); - } - #if GTK3 var result = base.OnDrawn(cr); #else From 9dd03dd7696b2d9cee4045e6f97fb5559e98919f Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Fri, 15 Sep 2017 12:41:36 +0200 Subject: [PATCH 34/91] Remove redundant SwapBuffers call, the base OnDrawn already does this. --- src/OpenTK.GLWidget/GLWidget.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/OpenTK.GLWidget/GLWidget.cs b/src/OpenTK.GLWidget/GLWidget.cs index d389f322..41c6b44c 100644 --- a/src/OpenTK.GLWidget/GLWidget.cs +++ b/src/OpenTK.GLWidget/GLWidget.cs @@ -237,9 +237,6 @@ namespace OpenTK #if !GTK3 evnt.Window.Display.Sync(); // Add Sync call to fix resize rendering problem (Jay L. T. Cornwall) - How does this affect VSync? #endif - - _GraphicsContext.SwapBuffers(); - return result; } From ed126403b376eed298f5fbc7e64ea122cb041c9b Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Fri, 15 Sep 2017 12:42:28 +0200 Subject: [PATCH 35/91] Use GLArea MakeCurrent method. --- src/OpenTK.GLWidget/GLWidget.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/OpenTK.GLWidget/GLWidget.cs b/src/OpenTK.GLWidget/GLWidget.cs index 41c6b44c..be9772fe 100644 --- a/src/OpenTK.GLWidget/GLWidget.cs +++ b/src/OpenTK.GLWidget/GLWidget.cs @@ -298,7 +298,7 @@ namespace OpenTK } // Make the GDK GL context current - Context.MakeCurrent(); + MakeCurrent(); // Create an OpenTK graphics context using the GdkGLContext as a foreign context // Since the GDK context is already created and has been made current, we can retrieve its handle. @@ -306,7 +306,8 @@ namespace OpenTK GetRequiredVersion(out int glVersionMajor, out int glVersionMinor); _GraphicsContext = new GraphicsContext(gdkContextHandle, _WindowInfo, null, glVersionMajor, glVersionMinor, GraphicsContextFlags); - _GraphicsContext.MakeCurrent(_WindowInfo); + + MakeCurrent(); if (GraphicsContext.ShareContexts) { From eb317df44ca9fd3eec2871066c502dd688efdd85 Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Fri, 15 Sep 2017 12:42:57 +0200 Subject: [PATCH 36/91] Use GLArea MakeCurrent method in disposal as well. --- src/OpenTK.GLWidget/GLWidget.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/OpenTK.GLWidget/GLWidget.cs b/src/OpenTK.GLWidget/GLWidget.cs index be9772fe..c89f9e2f 100644 --- a/src/OpenTK.GLWidget/GLWidget.cs +++ b/src/OpenTK.GLWidget/GLWidget.cs @@ -131,7 +131,7 @@ namespace OpenTK #endif if (disposing) { - _GraphicsContext.MakeCurrent(_WindowInfo); + MakeCurrent(); OnShuttingDown(); if (GraphicsContext.ShareContexts && (Interlocked.Decrement(ref _GraphicsContextCount) == 0)) { From 4089de86a5d4b3ecb82d7c52bd14f10a528b59bf Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Fri, 15 Sep 2017 12:44:47 +0200 Subject: [PATCH 37/91] Remove redundant MakeCurrent call. --- src/OpenTK.GLWidget/GLWidget.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/OpenTK.GLWidget/GLWidget.cs b/src/OpenTK.GLWidget/GLWidget.cs index c89f9e2f..87903b79 100644 --- a/src/OpenTK.GLWidget/GLWidget.cs +++ b/src/OpenTK.GLWidget/GLWidget.cs @@ -307,8 +307,6 @@ namespace OpenTK GetRequiredVersion(out int glVersionMajor, out int glVersionMinor); _GraphicsContext = new GraphicsContext(gdkContextHandle, _WindowInfo, null, glVersionMajor, glVersionMinor, GraphicsContextFlags); - MakeCurrent(); - if (GraphicsContext.ShareContexts) { Interlocked.Increment(ref _GraphicsContextCount); From e6e2764c55c109f42b1a1cd11a095aac63ab2a36 Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Fri, 15 Sep 2017 12:57:28 +0200 Subject: [PATCH 38/91] Add explanatory comment. --- src/OpenTK.GLWidget/X11/XWindowInfoInitializer.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/OpenTK.GLWidget/X11/XWindowInfoInitializer.cs b/src/OpenTK.GLWidget/X11/XWindowInfoInitializer.cs index 2c047893..cc9ec9fe 100644 --- a/src/OpenTK.GLWidget/X11/XWindowInfoInitializer.cs +++ b/src/OpenTK.GLWidget/X11/XWindowInfoInitializer.cs @@ -39,6 +39,7 @@ namespace OpenTK.X11 IntPtr rootWindowXid = gdk_x11_drawable_get_xid(gdkRootWindowHandle); #endif + // No visual needs to be passed here, since we're piggybacking on the GdkGLContext from the base GLArea IWindowInfo retval = Utilities.CreateX11WindowInfo(display, screenNumber, windowXid, rootWindowXid, IntPtr.Zero); return retval; From 67a96699176d594d9e742ff56ca60d5e4b7ebca2 Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Fri, 15 Sep 2017 16:57:46 +0200 Subject: [PATCH 39/91] Bump language version to 7.0. --- src/OpenTK.GLWidget/OpenTK.GLWidget.csproj | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/OpenTK.GLWidget/OpenTK.GLWidget.csproj b/src/OpenTK.GLWidget/OpenTK.GLWidget.csproj index 6e771eba..aeda128c 100644 --- a/src/OpenTK.GLWidget/OpenTK.GLWidget.csproj +++ b/src/OpenTK.GLWidget/OpenTK.GLWidget.csproj @@ -42,7 +42,7 @@ v4.5 true - 6 + 7 true ..\..\stylecop.ruleset @@ -120,8 +120,7 @@ - + ..\..\packages\gtk-sharp3\lib\net40\cairo-sharp.dll From 82f0d4a5fd6f41c4c3087a8ca0a07e1ec0a885d2 Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Fri, 15 Sep 2017 18:14:32 +0200 Subject: [PATCH 40/91] Add InternalsVisibleTo override in build script. --- build.fsx | 20 +++++++++++++------- src/OpenTK/Properties/AssemblyInfo.cs | 5 ++--- 2 files changed, 15 insertions(+), 10 deletions(-) diff --git a/build.fsx b/build.fsx index b153c0fb..1dd12ce4 100644 --- a/build.fsx +++ b/build.fsx @@ -99,13 +99,19 @@ Target "AssemblyInfo" (fun _ -> projectName.Split('.').[0] else projectName - [ Attribute.Title (projectName) - Attribute.Product project - Attribute.Description summary - Attribute.Version release.AssemblyVersion - Attribute.FileVersion release.AssemblyVersion - Attribute.CLSCompliant true - Attribute.Copyright copyright ] + let baseAttributes = + [ Attribute.Title (projectName) + Attribute.Product project + Attribute.Description summary + Attribute.Version release.AssemblyVersion + Attribute.FileVersion release.AssemblyVersion + Attribute.CLSCompliant true + Attribute.Copyright copyright + ] + if projectName = "OpenTK" then + baseAttributes @ [Attribute.InternalsVisibleTo "OpenTK.GLWidget, PublicKey=0024000004800000940000000602000000240000525341310004000011000000a3e05aafb87f71fb8fd02b512707f289c12341de98c6ce2ec1494b71c20cb2032cbd65d091b447df3ec772257efb9fa3591201937890e067da1d29a339948a12b29c2847a787cc9fbef2a3bf78267026e85f36aab827228df4bb580e3ae0599ade036f0a97a0e6982f5406d98d114455f332350f6d8369db655e9c3e7976c2c8"] + else + baseAttributes let getProjectDetails projectPath = let projectName = System.IO.Path.GetFileNameWithoutExtension(projectPath) diff --git a/src/OpenTK/Properties/AssemblyInfo.cs b/src/OpenTK/Properties/AssemblyInfo.cs index 5246aeff..045ffa41 100644 --- a/src/OpenTK/Properties/AssemblyInfo.cs +++ b/src/OpenTK/Properties/AssemblyInfo.cs @@ -10,9 +10,7 @@ using System.Runtime.CompilerServices; [assembly: AssemblyFileVersionAttribute("3.0.0")] [assembly: CLSCompliantAttribute(true)] [assembly: AssemblyCopyrightAttribute("Copyright (c) 2006 - 2016 Stefanos Apostolopoulos for the Open Toolkit library.")] - -[assembly: InternalsVisibleTo("OpenTK.GLWidget, PublicKey=0024000004800000940000000602000000240000525341310004000011000000a3e05aafb87f71fb8fd02b512707f289c12341de98c6ce2ec1494b71c20cb2032cbd65d091b447df3ec772257efb9fa3591201937890e067da1d29a339948a12b29c2847a787cc9fbef2a3bf78267026e85f36aab827228df4bb580e3ae0599ade036f0a97a0e6982f5406d98d114455f332350f6d8369db655e9c3e7976c2c8")] - +[assembly: InternalsVisibleToAttribute("OpenTK.GLWidget, PublicKey=0024000004800000940000000602000000240000525341310004000011000000a3e05aafb87f71fb8fd02b512707f289c12341de98c6ce2ec1494b71c20cb2032cbd65d091b447df3ec772257efb9fa3591201937890e067da1d29a339948a12b29c2847a787cc9fbef2a3bf78267026e85f36aab827228df4bb580e3ae0599ade036f0a97a0e6982f5406d98d114455f332350f6d8369db655e9c3e7976c2c8")] namespace System { internal static class AssemblyVersionInformation { internal const System.String AssemblyTitle = "OpenTK"; @@ -22,5 +20,6 @@ namespace System { internal const System.String AssemblyFileVersion = "3.0.0"; internal const System.Boolean CLSCompliant = true; internal const System.String AssemblyCopyright = "Copyright (c) 2006 - 2016 Stefanos Apostolopoulos for the Open Toolkit library."; + internal const System.String InternalsVisibleTo = "OpenTK.GLWidget, PublicKey=0024000004800000940000000602000000240000525341310004000011000000a3e05aafb87f71fb8fd02b512707f289c12341de98c6ce2ec1494b71c20cb2032cbd65d091b447df3ec772257efb9fa3591201937890e067da1d29a339948a12b29c2847a787cc9fbef2a3bf78267026e85f36aab827228df4bb580e3ae0599ade036f0a97a0e6982f5406d98d114455f332350f6d8369db655e9c3e7976c2c8"; } } From 5df8f47d185c753a8fdad7aa6c9779b907c52b50 Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Fri, 15 Sep 2017 18:33:31 +0200 Subject: [PATCH 41/91] Bump AppVeyor image to 2017 to support C# 7.0 language features --- appveyor.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/appveyor.yml b/appveyor.yml index 92796ce4..28f1f89c 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,3 +1,4 @@ +image: Visual Studio 2017 init: - git config --global core.autocrlf input build_script: From 29863f13da3875de91204ec2a2b356ffd537a651 Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Sat, 16 Sep 2017 16:20:00 +0200 Subject: [PATCH 42/91] Removed redundant WindowInfo initializer. --- src/OpenTK.GLWidget/GLWidget.cs | 66 +---------------- .../OSX/OSXWindowInfoInitializer.cs | 38 ---------- src/OpenTK.GLWidget/OpenTK.GLWidget.csproj | 3 - .../Win/WinWindowsInfoInitializer.cs | 43 ------------ .../X11/XWindowInfoInitializer.cs | 70 ------------------- 5 files changed, 2 insertions(+), 218 deletions(-) delete mode 100644 src/OpenTK.GLWidget/OSX/OSXWindowInfoInitializer.cs delete mode 100644 src/OpenTK.GLWidget/Win/WinWindowsInfoInitializer.cs delete mode 100644 src/OpenTK.GLWidget/X11/XWindowInfoInitializer.cs diff --git a/src/OpenTK.GLWidget/GLWidget.cs b/src/OpenTK.GLWidget/GLWidget.cs index 87903b79..6b11da02 100644 --- a/src/OpenTK.GLWidget/GLWidget.cs +++ b/src/OpenTK.GLWidget/GLWidget.cs @@ -1,15 +1,8 @@ using System; using System.Threading; using System.ComponentModel; -using Gdk; using OpenTK.Graphics; -using OpenTK.Platform; - using Gtk; -using OpenTK.OSX; -using OpenTK.Platform.X11; -using OpenTK.Win; -using OpenTK.X11; namespace OpenTK { @@ -25,7 +18,6 @@ namespace OpenTK private static bool _SharedContextInitialized = false; private IGraphicsContext _GraphicsContext; - private IWindowInfo _WindowInfo; private bool _Initialized = false; /// @@ -240,23 +232,6 @@ namespace OpenTK return result; } - /// - /// Called whenever the widget is resized. - /// - /// - /// - protected override bool OnConfigureEvent(Gdk.EventConfigure evnt) - { - bool result = base.OnConfigureEvent(evnt); - - if (_GraphicsContext != null) - { - _GraphicsContext.Update(_WindowInfo); - } - - return result; - } - /// /// Initializes the with its given values and creates a . /// @@ -264,48 +239,11 @@ namespace OpenTK { _Initialized = true; - if (Configuration.RunningOnWindows) - { - Console.WriteLine("OpenTK running on windows"); - } - else if (Configuration.RunningOnMacOS) - { - Console.WriteLine("OpenTK running on OSX"); - } - else - { - Console.WriteLine("OpenTK running on X11"); - } - -#if GTK3 - IntPtr widgetWindowHandle = this.Window.Handle; -#else - IntPtr widgetWindowHandle = this.GdkWindow.Handle; -#endif - - // IWindowInfo - if (Configuration.RunningOnWindows) - { - _WindowInfo = WinWindowsInfoInitializer.Initialize(widgetWindowHandle); - } - else if (Configuration.RunningOnMacOS) - { - _WindowInfo = OSXWindowInfoInitializer.Initialize(widgetWindowHandle); - } - else - { - _WindowInfo = XWindowInfoInitializer.Initialize(this.Display.Handle, this.Screen.Number, widgetWindowHandle, this.Screen.RootWindow.Handle); - } - // Make the GDK GL context current MakeCurrent(); - // Create an OpenTK graphics context using the GdkGLContext as a foreign context - // Since the GDK context is already created and has been made current, we can retrieve its handle. - var gdkContextHandle = Factory.Default.CreateGetCurrentGraphicsContext()(); - - GetRequiredVersion(out int glVersionMajor, out int glVersionMinor); - _GraphicsContext = new GraphicsContext(gdkContextHandle, _WindowInfo, null, glVersionMajor, glVersionMinor, GraphicsContextFlags); + // Create a dummy context that will grab the GdkGLContext that is current on the thread + _GraphicsContext = new GraphicsContext(ContextHandle.Zero, null); if (GraphicsContext.ShareContexts) { diff --git a/src/OpenTK.GLWidget/OSX/OSXWindowInfoInitializer.cs b/src/OpenTK.GLWidget/OSX/OSXWindowInfoInitializer.cs deleted file mode 100644 index cfdba748..00000000 --- a/src/OpenTK.GLWidget/OSX/OSXWindowInfoInitializer.cs +++ /dev/null @@ -1,38 +0,0 @@ -using System; -using System.Runtime.InteropServices; -using System.Security; -using OpenTK.Platform; - -namespace OpenTK.OSX -{ - /// - /// Handler class for initializing objects under the OSX platform for both GTK2 and - /// GTK3. - /// - public static class OSXWindowInfoInitializer - { -#if GTK3 - private const string OSXLibGdkName = "libgdk-3.dylib"; -#else - const string OSXLibGdkName = "libgdk-quartz-2.0.0.dylib"; -#endif - - /// - /// Initializes an under the OSX platform. - /// - /// - public static IWindowInfo Initialize(IntPtr gdkWindowHandle) - { - IntPtr windowHandle = gdk_quartz_window_get_nswindow(gdkWindowHandle); - IntPtr viewHandle = gdk_quartz_window_get_nsview(gdkWindowHandle); - - return Utilities.CreateMacOSWindowInfo(windowHandle, viewHandle); - } - - [SuppressUnmanagedCodeSecurity, DllImport(OSXLibGdkName)] - private static extern IntPtr gdk_quartz_window_get_nswindow(IntPtr handle); - - [SuppressUnmanagedCodeSecurity, DllImport(OSXLibGdkName)] - private static extern IntPtr gdk_quartz_window_get_nsview(IntPtr handle); - } -} \ No newline at end of file diff --git a/src/OpenTK.GLWidget/OpenTK.GLWidget.csproj b/src/OpenTK.GLWidget/OpenTK.GLWidget.csproj index aeda128c..c82f52bd 100644 --- a/src/OpenTK.GLWidget/OpenTK.GLWidget.csproj +++ b/src/OpenTK.GLWidget/OpenTK.GLWidget.csproj @@ -98,13 +98,10 @@ - Code - - diff --git a/src/OpenTK.GLWidget/Win/WinWindowsInfoInitializer.cs b/src/OpenTK.GLWidget/Win/WinWindowsInfoInitializer.cs deleted file mode 100644 index 95303104..00000000 --- a/src/OpenTK.GLWidget/Win/WinWindowsInfoInitializer.cs +++ /dev/null @@ -1,43 +0,0 @@ -using System; -using System.Runtime.InteropServices; -using System.Security; -using OpenTK.Platform; - -namespace OpenTK.Win -{ - /// - /// Handler class for initializing objects under the Windows platform for both GTK2 and - /// GTK3. - /// - public static class WinWindowsInfoInitializer - { -#if GTK3 - private const string WinLibGDKName = "libgdk-3-0.dll"; -#else - private const string WinLibGDKName = "libgdk-win32-2.0-0.dll"; -#endif - - /// - /// Initializes an under the Windows platform. - /// - /// - public static IWindowInfo Initialize(IntPtr gdkWindowHandle) - { -#if GTK3 - IntPtr windowHandle = gdk_win32_window_get_handle(gdkWindowHandle); -#else - IntPtr windowHandle = gdk_win32_drawable_get_handle(gdkWindowHandle); -#endif - return Utilities.CreateWindowsWindowInfo(windowHandle); - } - -#if GTK3 - [SuppressUnmanagedCodeSecurity, DllImport(WinLibGDKName, CallingConvention = CallingConvention.Cdecl)] - private static extern IntPtr gdk_win32_window_get_handle(IntPtr w); -#else - [SuppressUnmanagedCodeSecurity, DllImport(WinLibGDKName, CallingConvention = CallingConvention.Cdecl)] - static extern IntPtr gdk_win32_drawable_get_handle(IntPtr d); -#endif - - } -} \ No newline at end of file diff --git a/src/OpenTK.GLWidget/X11/XWindowInfoInitializer.cs b/src/OpenTK.GLWidget/X11/XWindowInfoInitializer.cs deleted file mode 100644 index cc9ec9fe..00000000 --- a/src/OpenTK.GLWidget/X11/XWindowInfoInitializer.cs +++ /dev/null @@ -1,70 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.InteropServices; -using System.Security; -using OpenTK.Graphics; -using OpenTK.Platform; -using OpenTK.Platform.X11; - -namespace OpenTK.X11 -{ - /// - /// Handler class for initializing objects under the X11 platform for both GTK2 and GTK3. - /// - public static class XWindowInfoInitializer - { - -#if GTK3 - private const string UnixLibGdkName = "libgdk-3.so.0"; -#else - const string UnixLibGdkName = "libgdk-x11-2.0.so.0"; -#endif - /// - /// Initializes an under the X11 platform. - /// - /// - /// - /// - /// - /// - public static IWindowInfo Initialize(IntPtr displayHandle, int screenNumber, IntPtr gdkWindowHandle, IntPtr gdkRootWindowHandle) - { - IntPtr display = gdk_x11_display_get_xdisplay(displayHandle); - -#if GTK3 - IntPtr windowXid = gdk_x11_window_get_xid(gdkWindowHandle); - IntPtr rootWindowXid = gdk_x11_window_get_xid(gdkRootWindowHandle); -#else - IntPtr windowXid = gdk_x11_drawable_get_xid(gdkWindowHandle); - IntPtr rootWindowXid = gdk_x11_drawable_get_xid(gdkRootWindowHandle); -#endif - - // No visual needs to be passed here, since we're piggybacking on the GdkGLContext from the base GLArea - IWindowInfo retval = Utilities.CreateX11WindowInfo(display, screenNumber, windowXid, rootWindowXid, IntPtr.Zero); - - return retval; - } - -#if GTK3 - /// Returns the X resource (window or pixmap) belonging to a GdkWindow. - /// XID gdk_x11_window_get_xid(GdkWindow *drawable); - /// The GdkDrawable. - /// The ID of window's X resource. - [SuppressUnmanagedCodeSecurity, DllImport(UnixLibGdkName)] - private static extern IntPtr gdk_x11_window_get_xid(IntPtr gdkDisplay); -#else - /// Returns the X resource (window or pixmap) belonging to a GdkDrawable. - /// XID gdk_x11_drawable_get_xid(GdkDrawable *drawable); - /// The GdkDrawable. - /// The ID of drawable's X resource. - [SuppressUnmanagedCodeSecurity, DllImport(UnixLibGdkName)] - static extern IntPtr gdk_x11_drawable_get_xid(IntPtr gdkDisplay); -#endif - /// Returns the X display of a GdkDisplay. - /// Display* gdk_x11_display_get_xdisplay(GdkDisplay *display); - /// The GdkDrawable. - /// The X Display of the GdkDisplay. - [SuppressUnmanagedCodeSecurity, DllImport(UnixLibGdkName)] - private static extern IntPtr gdk_x11_display_get_xdisplay(IntPtr gdkDisplay); - } -} \ No newline at end of file From 211fceddf7d4acfd0e49e0513a291e4426ad5e3a Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Sat, 26 Aug 2017 13:09:38 +0100 Subject: [PATCH 43/91] Remove erroneous comment slashes --- src/OpenTK/Math/Vector3.cs | 2 +- src/OpenTK/Math/Vector3d.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/OpenTK/Math/Vector3.cs b/src/OpenTK/Math/Vector3.cs index b37a7184..6e2d1c11 100644 --- a/src/OpenTK/Math/Vector3.cs +++ b/src/OpenTK/Math/Vector3.cs @@ -237,7 +237,7 @@ namespace OpenTK public static readonly Vector3 UnitY = new Vector3(0, 1, 0); /// - /// /// Defines a unit-length Vector3 that points towards the Z-axis. + /// Defines a unit-length Vector3 that points towards the Z-axis. /// public static readonly Vector3 UnitZ = new Vector3(0, 0, 1); diff --git a/src/OpenTK/Math/Vector3d.cs b/src/OpenTK/Math/Vector3d.cs index a2d4109e..9100f9cd 100644 --- a/src/OpenTK/Math/Vector3d.cs +++ b/src/OpenTK/Math/Vector3d.cs @@ -235,7 +235,7 @@ namespace OpenTK public static readonly Vector3d UnitY = new Vector3d(0, 1, 0); /// - /// /// Defines a unit-length Vector3d that points towards the Z-axis. + /// Defines a unit-length Vector3d that points towards the Z-axis. /// public static readonly Vector3d UnitZ = new Vector3d(0, 0, 1); From 9d596f674b55b6821ec335e769cda2dae02700cb Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Sat, 26 Aug 2017 12:58:22 +0100 Subject: [PATCH 44/91] Add Distance[Squared] methods to Vector2[d] --- src/OpenTK/Math/Vector2.cs | 48 ++++++++++++++++++++++++++++++ src/OpenTK/Math/Vector2d.cs | 48 ++++++++++++++++++++++++++++++ tests/OpenTK.Tests/Assertions.fs | 5 +++- tests/OpenTK.Tests/Vector2Tests.fs | 10 +++++++ 4 files changed, 110 insertions(+), 1 deletion(-) diff --git a/src/OpenTK/Math/Vector2.cs b/src/OpenTK/Math/Vector2.cs index d01f2952..a3d4ea44 100644 --- a/src/OpenTK/Math/Vector2.cs +++ b/src/OpenTK/Math/Vector2.cs @@ -514,6 +514,54 @@ namespace OpenTK result.Y = vec.Y < min.Y ? min.Y : vec.Y > max.Y ? max.Y : vec.Y; } + /// + /// Compute the euclidean distance between two vectors. + /// + /// The first vector + /// The second vector + /// The distance + public static float Distance(Vector2 vec1, Vector2 vec2) + { + float result; + Distance(ref vec1, ref vec2, out result); + return result; + } + + /// + /// Compute the euclidean distance between two vectors. + /// + /// The first vector + /// The second vector + /// The distance + public static void Distance(ref Vector2 vec1, ref Vector2 vec2, out float result) + { + result = (float)Math.Sqrt((vec2.X - vec1.X) * (vec2.X - vec1.X) + (vec2.Y - vec1.Y) * (vec2.Y - vec1.Y)); + } + + /// + /// Compute the squared euclidean distance between two vectors. + /// + /// The first vector + /// The second vector + /// The squared distance + public static float DistanceSquared(Vector2 vec1, Vector2 vec2) + { + float result; + DistanceSquared(ref vec1, ref vec2, out result); + return result; + } + + /// + /// Compute the squared euclidean distance between two vectors. + /// + /// The first vector + /// The second vector + /// The squared distance + public static void DistanceSquared(ref Vector2 vec1, ref Vector2 vec2, out float result) + { + result = (vec2.X - vec1.X) * (vec2.X - vec1.X) + (vec2.Y - vec1.Y) * (vec2.Y - vec1.Y); + } + /// /// Scale a vector to unit length /// diff --git a/src/OpenTK/Math/Vector2d.cs b/src/OpenTK/Math/Vector2d.cs index cd887ba7..1bf9b0d6 100644 --- a/src/OpenTK/Math/Vector2d.cs +++ b/src/OpenTK/Math/Vector2d.cs @@ -507,6 +507,54 @@ namespace OpenTK result.Y = vec.Y < min.Y ? min.Y : vec.Y > max.Y ? max.Y : vec.Y; } + /// + /// Compute the euclidean distance between two vectors. + /// + /// The first vector + /// The second vector + /// The distance + public static double Distance(Vector2d vec1, Vector2d vec2) + { + double result; + Distance(ref vec1, ref vec2, out result); + return result; + } + + /// + /// Compute the euclidean distance between two vectors. + /// + /// The first vector + /// The second vector + /// The distance + public static void Distance(ref Vector2d vec1, ref Vector2d vec2, out double result) + { + result = Math.Sqrt((vec2.X - vec1.X) * (vec2.X - vec1.X) + (vec2.Y - vec1.Y) * (vec2.Y - vec1.Y)); + } + + /// + /// Compute the squared euclidean distance between two vectors. + /// + /// The first vector + /// The second vector + /// The squared distance + public static double DistanceSquared(Vector2d vec1, Vector2d vec2) + { + double result; + DistanceSquared(ref vec1, ref vec2, out result); + return result; + } + + /// + /// Compute the squared euclidean distance between two vectors. + /// + /// The first vector + /// The second vector + /// The squared distance + public static void DistanceSquared(ref Vector2d vec1, ref Vector2d vec2, out double result) + { + result = (vec2.X - vec1.X) * (vec2.X - vec1.X) + (vec2.Y - vec1.Y) * (vec2.Y - vec1.Y); + } + /// /// Scale a vector to unit length /// diff --git a/tests/OpenTK.Tests/Assertions.fs b/tests/OpenTK.Tests/Assertions.fs index 0d0df594..b3d8fe3f 100644 --- a/tests/OpenTK.Tests/Assertions.fs +++ b/tests/OpenTK.Tests/Assertions.fs @@ -16,7 +16,7 @@ module private AssertHelpers = let approxEq a b = MathHelper.ApproximatelyEquivalent(a, b, EquivalenceTolerance) - let approxEqDelta a b = MathHelper.ApproximatelyEqual(a,b,BitAccuracy) + let approxEqDelta a b = MathHelper.ApproximatelyEqual(a, b, BitAccuracy) let approxEqSingleEpsilon a b = MathHelper.ApproximatelyEqualEpsilon(a, b, 0.00001f) let approxEqDoubleEpsilon a b = MathHelper.ApproximatelyEqualEpsilon(a, b, 0.00001) @@ -74,3 +74,6 @@ type internal Assert = if approxEqDoubleEpsilonWithError(a, b, c) then raise <| new Xunit.Sdk.EqualException(a,b) static member ThrowsIndexExn(f:unit -> unit) = Assert.Throws(f) |> ignore + + static member ApproximatelyEqual(a : float32, b : float32) = + if not <| approxEqDelta a b then raise <| new Xunit.Sdk.EqualException(a, b) diff --git a/tests/OpenTK.Tests/Vector2Tests.fs b/tests/OpenTK.Tests/Vector2Tests.fs index e44d8de6..6e352259 100644 --- a/tests/OpenTK.Tests/Vector2Tests.fs +++ b/tests/OpenTK.Tests/Vector2Tests.fs @@ -75,6 +75,16 @@ module Vector2 = Assert.Equal(lsq, v.LengthSquared) + [ |])>] + module Distance = + [] + let ``Distance(a, b) = (b - a).Length`` (a : Vector2, b : Vector2) = + Assert.ApproximatelyEqual(Vector2.Distance(a, b), (b - a).Length) + + [] + let ``DistanceSquared(a, b) = (b - a).LengthSquared`` (a : Vector2, b : Vector2) = + Assert.ApproximatelyEqual(Vector2.DistanceSquared(a, b), (b - a).LengthSquared) + [ |])>] module ``Unit vectors and perpendicularity`` = // From 4f9e057358b1d3a6e0f15a4274fb68ba207e338a Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Sat, 26 Aug 2017 13:12:12 +0100 Subject: [PATCH 45/91] Add Distance[Squared] methods to Vector3[d] --- src/OpenTK/Math/Vector3.cs | 48 ++++++++++++++++++++++++++++++ src/OpenTK/Math/Vector3d.cs | 48 ++++++++++++++++++++++++++++++ tests/OpenTK.Tests/Vector3Tests.fs | 10 +++++++ 3 files changed, 106 insertions(+) diff --git a/src/OpenTK/Math/Vector3.cs b/src/OpenTK/Math/Vector3.cs index 6e2d1c11..24a0a342 100644 --- a/src/OpenTK/Math/Vector3.cs +++ b/src/OpenTK/Math/Vector3.cs @@ -563,6 +563,54 @@ namespace OpenTK result.Z = vec.Z < min.Z ? min.Z : vec.Z > max.Z ? max.Z : vec.Z; } + /// + /// Compute the euclidean distance between two vectors. + /// + /// The first vector + /// The second vector + /// The distance + public static float Distance(Vector3 vec1, Vector3 vec2) + { + float result; + Distance(ref vec1, ref vec2, out result); + return result; + } + + /// + /// Compute the euclidean distance between two vectors. + /// + /// The first vector + /// The second vector + /// The distance + public static void Distance(ref Vector3 vec1, ref Vector3 vec2, out float result) + { + result = (float)Math.Sqrt((vec2.X - vec1.X) * (vec2.X - vec1.X) + (vec2.Y - vec1.Y) * (vec2.Y - vec1.Y) + (vec2.Z - vec1.Z) * (vec2.Z - vec1.Z)); + } + + /// + /// Compute the squared euclidean distance between two vectors. + /// + /// The first vector + /// The second vector + /// The squared distance + public static float DistanceSquared(Vector3 vec1, Vector3 vec2) + { + float result; + DistanceSquared(ref vec1, ref vec2, out result); + return result; + } + + /// + /// Compute the squared euclidean distance between two vectors. + /// + /// The first vector + /// The second vector + /// The squared distance + public static void DistanceSquared(ref Vector3 vec1, ref Vector3 vec2, out float result) + { + result = (vec2.X - vec1.X) * (vec2.X - vec1.X) + (vec2.Y - vec1.Y) * (vec2.Y - vec1.Y) + (vec2.Z - vec1.Z) * (vec2.Z - vec1.Z); + } + /// /// Scale a vector to unit length /// diff --git a/src/OpenTK/Math/Vector3d.cs b/src/OpenTK/Math/Vector3d.cs index 9100f9cd..0216e460 100644 --- a/src/OpenTK/Math/Vector3d.cs +++ b/src/OpenTK/Math/Vector3d.cs @@ -557,6 +557,54 @@ namespace OpenTK result.Z = vec.Z < min.Z ? min.Z : vec.Z > max.Z ? max.Z : vec.Z; } + /// + /// Compute the euclidean distance between two vectors. + /// + /// The first vector + /// The second vector + /// The distance + public static double Distance(Vector3d vec1, Vector3d vec2) + { + double result; + Distance(ref vec1, ref vec2, out result); + return result; + } + + /// + /// Compute the euclidean distance between two vectors. + /// + /// The first vector + /// The second vector + /// The distance + public static void Distance(ref Vector3d vec1, ref Vector3d vec2, out double result) + { + result = Math.Sqrt((vec2.X - vec1.X) * (vec2.X - vec1.X) + (vec2.Y - vec1.Y) * (vec2.Y - vec1.Y) + (vec2.Z - vec1.Z) * (vec2.Z - vec1.Z)); + } + + /// + /// Compute the squared euclidean distance between two vectors. + /// + /// The first vector + /// The second vector + /// The squared distance + public static double DistanceSquared(Vector3d vec1, Vector3d vec2) + { + double result; + DistanceSquared(ref vec1, ref vec2, out result); + return result; + } + + /// + /// Compute the squared euclidean distance between two vectors. + /// + /// The first vector + /// The second vector + /// The squared distance + public static void DistanceSquared(ref Vector3d vec1, ref Vector3d vec2, out double result) + { + result = (vec2.X - vec1.X) * (vec2.X - vec1.X) + (vec2.Y - vec1.Y) * (vec2.Y - vec1.Y) + (vec2.Z - vec1.Z) * (vec2.Z - vec1.Z); + } + /// /// Scale a vector to unit length /// diff --git a/tests/OpenTK.Tests/Vector3Tests.fs b/tests/OpenTK.Tests/Vector3Tests.fs index c12c0f18..18cb89a9 100644 --- a/tests/OpenTK.Tests/Vector3Tests.fs +++ b/tests/OpenTK.Tests/Vector3Tests.fs @@ -124,6 +124,16 @@ module Vector3 = Assert.Equal(lsq, v.LengthSquared) + [ |])>] + module Distance = + [] + let ``Distance(a, b) = (b - a).Length`` (a : Vector3, b : Vector3) = + Assert.ApproximatelyEqual(Vector3.Distance(a, b), (b - a).Length) + + [] + let ``DistanceSquared(a, b) = (b - a).LengthSquared`` (a : Vector3, b : Vector3) = + Assert.ApproximatelyEqual(Vector3.DistanceSquared(a, b), (b - a).LengthSquared) + [ |])>] module Normalization = // From 1f33a6dd84d67a21360326b292d639a0a9359721 Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Wed, 20 Sep 2017 16:52:45 +0200 Subject: [PATCH 46/91] Use Wgl::GetAddress instead of Wgl::GetProcAddress in Utilities. --- src/OpenTK/Platform/Utilities.cs | 2 +- src/OpenTK/Platform/Windows/WglHelper.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/OpenTK/Platform/Utilities.cs b/src/OpenTK/Platform/Utilities.cs index a1065bd9..4a63c8a0 100644 --- a/src/OpenTK/Platform/Utilities.cs +++ b/src/OpenTK/Platform/Utilities.cs @@ -182,7 +182,7 @@ namespace OpenTK.Platform #if WIN32 if (Configuration.RunningOnWindows) { - return Platform.Windows.Wgl.GetProcAddress; + return Platform.Windows.Wgl.GetAddress; } #endif #if X11 diff --git a/src/OpenTK/Platform/Windows/WglHelper.cs b/src/OpenTK/Platform/Windows/WglHelper.cs index 226e8430..70d0c821 100644 --- a/src/OpenTK/Platform/Windows/WglHelper.cs +++ b/src/OpenTK/Platform/Windows/WglHelper.cs @@ -94,7 +94,7 @@ namespace OpenTK.Platform.Windows get { return sync; } } - private IntPtr GetAddress(string function_string) + internal static IntPtr GetAddress(string function_string) { IntPtr address = Wgl.GetProcAddress(function_string); if (!IsValid(address)) From b1f90c380e6b915b5a4bdf3614e9260bbc67cd38 Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Sun, 1 Oct 2017 20:06:50 +0200 Subject: [PATCH 47/91] Add builtin frame time measurement. GLArea automatically synchronizes to GDK's refresh rate, which may lead to incorrect frame time measurements if it's not correctly measured. This property is guaranteed to always contain the actual live frame delta of the previous frame in render functions. --- src/OpenTK.GLWidget/GLWidget.cs | 37 +++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/src/OpenTK.GLWidget/GLWidget.cs b/src/OpenTK.GLWidget/GLWidget.cs index 6b11da02..54b6bd78 100644 --- a/src/OpenTK.GLWidget/GLWidget.cs +++ b/src/OpenTK.GLWidget/GLWidget.cs @@ -1,6 +1,7 @@ using System; using System.Threading; using System.ComponentModel; +using Gdk; using OpenTK.Graphics; using Gtk; @@ -20,6 +21,16 @@ namespace OpenTK private IGraphicsContext _GraphicsContext; private bool _Initialized = false; + /// + /// The previous frame time reported by GTK. + /// + private double? PreviousFrameTime; + + /// + /// Gets the time taken to render the last frame (in seconds). + /// + public double DeltaTime { get; private set; } + /// /// The set for this widget. /// @@ -54,6 +65,7 @@ namespace OpenTK GraphicsContextFlags = graphicsContextFlags; + AddTickCallback(UpdateFrameTime); SetRequiredVersion(glVersionMajor, glVersionMinor); if (graphicsMode.Depth > 0) @@ -72,6 +84,31 @@ namespace OpenTK } } + /// + /// Updates the time delta with a new value from the last frame. + /// + /// The sending widget. + /// The relevant frame clock. + /// true if the callback should be called again; otherwise, false. + private bool UpdateFrameTime(Widget widget, FrameClock frameClock) + { + var frameTimeµSeconds = frameClock.FrameTime; + + if (!PreviousFrameTime.HasValue) + { + PreviousFrameTime = frameTimeµSeconds; + + return true; + } + + var frameTimeSeconds = (frameTimeµSeconds - PreviousFrameTime) / 10e6; + + DeltaTime = (float)frameTimeSeconds; + PreviousFrameTime = frameTimeµSeconds; + + return true; + } + /// /// Destructs this object. /// From d3f5a87809676c50e325193029ec7cd91a49d7bf Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Sun, 1 Oct 2017 20:11:58 +0200 Subject: [PATCH 48/91] Override context creation in GLArea. This allows forward compatible and debug contexts to be created, and provides more descriptive exceptions in the case where the context cannot be created with the requested settings. --- src/OpenTK.GLWidget/GLWidget.cs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/OpenTK.GLWidget/GLWidget.cs b/src/OpenTK.GLWidget/GLWidget.cs index 54b6bd78..afe0ffe7 100644 --- a/src/OpenTK.GLWidget/GLWidget.cs +++ b/src/OpenTK.GLWidget/GLWidget.cs @@ -109,6 +109,22 @@ namespace OpenTK return true; } + + /// + protected override GLContext OnCreateContext() + { + var gdkGLContext = Window.CreateGlContext(); + + GetRequiredVersion(out var major, out var minor); + gdkGLContext.SetRequiredVersion(major, minor); + + gdkGLContext.DebugEnabled = GraphicsContextFlags.HasFlag(GraphicsContextFlags.Debug); + gdkGLContext.ForwardCompatible = GraphicsContextFlags.HasFlag(GraphicsContextFlags.ForwardCompatible); + + gdkGLContext.Realize(); + return gdkGLContext; + } + /// /// Destructs this object. /// From 72dedf5018b04604eb8b4c72d3f0e39972bb58b3 Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Sun, 1 Oct 2017 20:13:00 +0200 Subject: [PATCH 49/91] Revert addition of InternalsVisibleTo attribute for the OpenTK assembly. --- build.fsx | 21 ++++++++------------- 1 file changed, 8 insertions(+), 13 deletions(-) diff --git a/build.fsx b/build.fsx index 1dd12ce4..530bb12a 100644 --- a/build.fsx +++ b/build.fsx @@ -99,19 +99,14 @@ Target "AssemblyInfo" (fun _ -> projectName.Split('.').[0] else projectName - let baseAttributes = - [ Attribute.Title (projectName) - Attribute.Product project - Attribute.Description summary - Attribute.Version release.AssemblyVersion - Attribute.FileVersion release.AssemblyVersion - Attribute.CLSCompliant true - Attribute.Copyright copyright - ] - if projectName = "OpenTK" then - baseAttributes @ [Attribute.InternalsVisibleTo "OpenTK.GLWidget, PublicKey=0024000004800000940000000602000000240000525341310004000011000000a3e05aafb87f71fb8fd02b512707f289c12341de98c6ce2ec1494b71c20cb2032cbd65d091b447df3ec772257efb9fa3591201937890e067da1d29a339948a12b29c2847a787cc9fbef2a3bf78267026e85f36aab827228df4bb580e3ae0599ade036f0a97a0e6982f5406d98d114455f332350f6d8369db655e9c3e7976c2c8"] - else - baseAttributes + [ Attribute.Title (projectName) + Attribute.Product project + Attribute.Description summary + Attribute.Version release.AssemblyVersion + Attribute.FileVersion release.AssemblyVersion + Attribute.CLSCompliant true + Attribute.Copyright copyright + ] let getProjectDetails projectPath = let projectName = System.IO.Path.GetFileNameWithoutExtension(projectPath) From 6e40aebeb3cfc0e8d52b11c2c8eee03b775d2fbc Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Sun, 1 Oct 2017 20:14:15 +0200 Subject: [PATCH 50/91] Remove GTK2 code. GLArea is only properly supported for GTK >= 3.16. --- src/OpenTK.GLWidget/GLWidget.cs | 41 +-------------------------------- 1 file changed, 1 insertion(+), 40 deletions(-) diff --git a/src/OpenTK.GLWidget/GLWidget.cs b/src/OpenTK.GLWidget/GLWidget.cs index afe0ffe7..dc59efa1 100644 --- a/src/OpenTK.GLWidget/GLWidget.cs +++ b/src/OpenTK.GLWidget/GLWidget.cs @@ -144,36 +144,12 @@ namespace OpenTK base.Destroy(); } -#if !GTK3 - /// - /// Disposes the current object, releasing any native resources it was using. - /// - /// - public override void Dispose() - { - GC.SuppressFinalize(this); - Dispose(true); - - base.Dispose(); - } -#endif - -#if GTK3 /// /// Disposes the current object, releasing any native resources it was using. /// /// protected override void Dispose(bool disposing) { - base.Dispose(disposing); -#else - /// - /// Disposes the current object, releasing any native resources it was using. - /// - /// - public virtual void Dispose(bool disposing) - { -#endif if (disposing) { MakeCurrent(); @@ -254,34 +230,19 @@ namespace OpenTK } } -#if GTK3 /// /// Called when the widget needs to be (fully or partially) redrawn. /// /// /// protected override bool OnDrawn(Cairo.Context cr) -#else - /// - /// Called when the widget is exposed. - /// - /// - /// - protected override bool OnExposeEvent(Gdk.EventExpose evnt) -#endif { if (!_Initialized) { Initialize(); } -#if GTK3 + var result = base.OnDrawn(cr); -#else - bool result = base.OnExposeEvent(evnt); -#endif -#if !GTK3 - evnt.Window.Display.Sync(); // Add Sync call to fix resize rendering problem (Jay L. T. Cornwall) - How does this affect VSync? -#endif return result; } From 2caeaf40e187fecca108911312a2c03521437111 Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Sun, 1 Oct 2017 20:14:39 +0200 Subject: [PATCH 51/91] Correct field naming. --- src/OpenTK.GLWidget/GLWidget.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/OpenTK.GLWidget/GLWidget.cs b/src/OpenTK.GLWidget/GLWidget.cs index dc59efa1..b72c512f 100644 --- a/src/OpenTK.GLWidget/GLWidget.cs +++ b/src/OpenTK.GLWidget/GLWidget.cs @@ -24,7 +24,7 @@ namespace OpenTK /// /// The previous frame time reported by GTK. /// - private double? PreviousFrameTime; + private double? _PreviousFrameTime; /// /// Gets the time taken to render the last frame (in seconds). @@ -94,17 +94,17 @@ namespace OpenTK { var frameTimeµSeconds = frameClock.FrameTime; - if (!PreviousFrameTime.HasValue) + if (!_PreviousFrameTime.HasValue) { - PreviousFrameTime = frameTimeµSeconds; + _PreviousFrameTime = frameTimeµSeconds; return true; } - var frameTimeSeconds = (frameTimeµSeconds - PreviousFrameTime) / 10e6; + var frameTimeSeconds = (frameTimeµSeconds - _PreviousFrameTime) / 10e6; DeltaTime = (float)frameTimeSeconds; - PreviousFrameTime = frameTimeµSeconds; + _PreviousFrameTime = frameTimeµSeconds; return true; } From cbae16b7a12fe97dae8aca2f6c0da2b8b5e0cabb Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Sun, 1 Oct 2017 20:14:53 +0200 Subject: [PATCH 52/91] Correct formatting. --- src/OpenTK.GLWidget/GLWidget.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/OpenTK.GLWidget/GLWidget.cs b/src/OpenTK.GLWidget/GLWidget.cs index b72c512f..1e292e10 100644 --- a/src/OpenTK.GLWidget/GLWidget.cs +++ b/src/OpenTK.GLWidget/GLWidget.cs @@ -12,9 +12,8 @@ namespace OpenTK /// [CLSCompliant(false)] [ToolboxItem(true)] - public class GLWidget: GLArea + public class GLWidget : GLArea { - private static int _GraphicsContextCount; private static bool _SharedContextInitialized = false; From c8ca1f33df27b53c172214f9a7a17f837c96e1b4 Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Sun, 1 Oct 2017 20:15:26 +0200 Subject: [PATCH 53/91] Remove obsolete and redundant double buffering assignment. --- src/OpenTK.GLWidget/GLWidget.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/OpenTK.GLWidget/GLWidget.cs b/src/OpenTK.GLWidget/GLWidget.cs index 1e292e10..da6e580e 100644 --- a/src/OpenTK.GLWidget/GLWidget.cs +++ b/src/OpenTK.GLWidget/GLWidget.cs @@ -60,8 +60,6 @@ namespace OpenTK /// public GLWidget(GraphicsMode graphicsMode, int glVersionMajor, int glVersionMinor, GraphicsContextFlags graphicsContextFlags) { - this.DoubleBuffered = false; - GraphicsContextFlags = graphicsContextFlags; AddTickCallback(UpdateFrameTime); From 881b7553d992da58c2963ed2b4b1b2a286d96291 Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Sun, 1 Oct 2017 20:16:45 +0200 Subject: [PATCH 54/91] Enable error checking for debug contexts. --- src/OpenTK.GLWidget/GLWidget.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/OpenTK.GLWidget/GLWidget.cs b/src/OpenTK.GLWidget/GLWidget.cs index da6e580e..a31b3dad 100644 --- a/src/OpenTK.GLWidget/GLWidget.cs +++ b/src/OpenTK.GLWidget/GLWidget.cs @@ -256,6 +256,11 @@ namespace OpenTK // Create a dummy context that will grab the GdkGLContext that is current on the thread _GraphicsContext = new GraphicsContext(ContextHandle.Zero, null); + if (GraphicsContextFlags.HasFlag(GraphicsContextFlags.Debug)) + { + _GraphicsContext.ErrorChecking = true; + } + if (GraphicsContext.ShareContexts) { Interlocked.Increment(ref _GraphicsContextCount); From 9768febfabd19b1348a975c0f06e316f7127b70e Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Sun, 1 Oct 2017 20:35:04 +0200 Subject: [PATCH 55/91] Rename GraphicsContextFlags to ContextFlags and remove the setter. --- src/OpenTK.GLWidget/GLWidget.cs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/OpenTK.GLWidget/GLWidget.cs b/src/OpenTK.GLWidget/GLWidget.cs index a31b3dad..49e45f90 100644 --- a/src/OpenTK.GLWidget/GLWidget.cs +++ b/src/OpenTK.GLWidget/GLWidget.cs @@ -31,9 +31,9 @@ namespace OpenTK public double DeltaTime { get; private set; } /// - /// The set for this widget. + /// The set for this widget. /// - public GraphicsContextFlags GraphicsContextFlags { get; set; } + public GraphicsContextFlags ContextFlags { get; } /// /// Initializes a new instance of the class. @@ -55,12 +55,12 @@ namespace OpenTK /// The which the widget should be constructed with. /// The major OpenGL version to attempt to initialize. /// The minor OpenGL version to attempt to initialize. - /// + /// /// Any flags which should be used during initialization of the . /// - public GLWidget(GraphicsMode graphicsMode, int glVersionMajor, int glVersionMinor, GraphicsContextFlags graphicsContextFlags) + public GLWidget(GraphicsMode graphicsMode, int glVersionMajor, int glVersionMinor, GraphicsContextFlags contextFlags) { - GraphicsContextFlags = graphicsContextFlags; + ContextFlags = contextFlags; AddTickCallback(UpdateFrameTime); SetRequiredVersion(glVersionMajor, glVersionMinor); @@ -115,8 +115,8 @@ namespace OpenTK GetRequiredVersion(out var major, out var minor); gdkGLContext.SetRequiredVersion(major, minor); - gdkGLContext.DebugEnabled = GraphicsContextFlags.HasFlag(GraphicsContextFlags.Debug); - gdkGLContext.ForwardCompatible = GraphicsContextFlags.HasFlag(GraphicsContextFlags.ForwardCompatible); + gdkGLContext.DebugEnabled = ContextFlags.HasFlag(GraphicsContextFlags.Debug); + gdkGLContext.ForwardCompatible = ContextFlags.HasFlag(GraphicsContextFlags.ForwardCompatible); gdkGLContext.Realize(); return gdkGLContext; @@ -256,7 +256,7 @@ namespace OpenTK // Create a dummy context that will grab the GdkGLContext that is current on the thread _GraphicsContext = new GraphicsContext(ContextHandle.Zero, null); - if (GraphicsContextFlags.HasFlag(GraphicsContextFlags.Debug)) + if (ContextFlags.HasFlag(GraphicsContextFlags.Debug)) { _GraphicsContext.ErrorChecking = true; } From 201849b8885f035272e87dc5a6f2591b61430d7a Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Wed, 4 Oct 2017 14:32:19 +0100 Subject: [PATCH 56/91] Remove trailing whitespace from overrides.xml --- .../Specifications/GL2/overrides.xml | 294 +++++++++--------- 1 file changed, 147 insertions(+), 147 deletions(-) diff --git a/src/Generator.Bind/Specifications/GL2/overrides.xml b/src/Generator.Bind/Specifications/GL2/overrides.xml index 0eadec05..f643204e 100644 --- a/src/Generator.Bind/Specifications/GL2/overrides.xml +++ b/src/Generator.Bind/Specifications/GL2/overrides.xml @@ -17,7 +17,7 @@ ArrayCap - + StringName @@ -160,9 +160,9 @@ BufferPointer - + - + PrimitiveType @@ -185,7 +185,7 @@ DrawBuffersEnum - + PrimitiveType @@ -227,7 +227,7 @@ ShaderParameter - + 0 @@ -456,7 +456,7 @@ ClearBuffer - + ClearBufferCombined @@ -470,7 +470,7 @@ - + PrimitiveType @@ -493,7 +493,7 @@ - + 3.2 @@ -513,7 +513,7 @@ DrawElementsType - + 3.2 @@ -530,7 +530,7 @@ GetIndexedPName - + 3.2 @@ -587,7 +587,7 @@ - + SamplerParameterName @@ -734,7 +734,7 @@ PackedPointerType - + @@ -760,7 +760,7 @@ GetQueryParam - + TransformFeedbackTarget @@ -924,7 +924,7 @@ BinaryFormat - + @@ -935,7 +935,7 @@ SizedInternalFormat - + PrimitiveType @@ -944,7 +944,7 @@ DrawElementsType - + PrimitiveType @@ -953,31 +953,31 @@ DrawElementsType - + PrimitiveType - + PrimitiveType - + AtomicCounterBufferParameter - + MemoryBarrierFlags - + TextureTarget1d @@ -986,7 +986,7 @@ SizedInternalFormat - + TextureTarget2d @@ -995,7 +995,7 @@ SizedInternalFormat - + TextureTarget3d @@ -1004,7 +1004,7 @@ SizedInternalFormat - + @@ -1018,7 +1018,7 @@ PixelFormat - + BufferTarget @@ -1030,7 +1030,7 @@ PixelFormat - + ImageTarget @@ -1039,7 +1039,7 @@ ImageTarget - + DebugSourceControl @@ -1051,7 +1051,7 @@ DebugSeverityControl - + DebugSourceExternal @@ -1063,7 +1063,7 @@ DebugSeverity - + FramebufferTarget @@ -1081,13 +1081,13 @@ FramebufferDefaultParameter - + ImageTarget SizedInternalFormat InternalFormatParameter - + DebugSource @@ -1099,13 +1099,13 @@ DebugSeverity - + ObjectLabelIdentifier - + ProgramInterface @@ -1114,7 +1114,7 @@ ProgramInterfaceParameter - + ProgramInterface @@ -1126,7 +1126,7 @@ ProgramInterface - + ProgramInterface @@ -1135,19 +1135,19 @@ ProgramProperty - + ProgramInterface - + ProgramInterface - + FramebufferTarget @@ -1156,7 +1156,7 @@ FramebufferAttachment - + FramebufferTarget @@ -1165,7 +1165,7 @@ FramebufferAttachment - + PrimitiveType @@ -1180,19 +1180,19 @@ DrawElementsType - + ObjectLabelIdentifier - + DebugSourceExternal - + TextureBufferTarget @@ -1201,7 +1201,7 @@ SizedInternalFormat - + TextureTargetMultisample2d @@ -1210,7 +1210,7 @@ SizedInternalFormat - + TextureTargetMultisample3d @@ -1219,7 +1219,7 @@ SizedInternalFormat - + TextureTarget @@ -1228,13 +1228,13 @@ PixelInternalFormat - + VertexAttribType - + VertexAttribIntegerType @@ -1246,9 +1246,9 @@ VertexAttribDoubleType - + - + PixelFormat @@ -1257,7 +1257,7 @@ PixelType - + PixelFormat @@ -1460,7 +1460,7 @@ AssemblyProgramParameterArb - + NormalPointerType @@ -1533,7 +1533,7 @@ RenderbufferStorage - + FogPointerType @@ -1651,9 +1651,9 @@ VertexAttribParameterArb - + - + @@ -1663,7 +1663,7 @@ WaitSyncFlags - + WaitSyncStatus @@ -1676,13 +1676,13 @@ WaitSyncFlags - + SyncParameterName - + BufferTarget @@ -4986,7 +4986,7 @@ - + @@ -5022,7 +5022,7 @@ in - + @@ -5114,11 +5114,11 @@ BufferTarget BufferAccessMask - + BufferTarget - + BufferTarget @@ -5128,7 +5128,7 @@ BufferTarget BufferPointer - + QueryTarget @@ -5143,7 +5143,7 @@ GetQueryObjectParam - + TransformFeedbackTarget @@ -5151,7 +5151,7 @@ TransformFeedbackPrimitiveType - + PixelFormat @@ -5164,7 +5164,7 @@ ClearBufferMask BlitFramebufferFilter - + FrontFaceDirection @@ -5172,12 +5172,12 @@ CullFaceMode - + VertexAttribIntegerType - + PrimitiveType @@ -5197,12 +5197,12 @@ PrimitiveType DrawElementsType - + ShaderType - + ShaderBinaryFormat @@ -5212,12 +5212,12 @@ ProgramParameterName - + ActiveAttribType - + ActiveUniformType @@ -5228,7 +5228,7 @@ ActiveUniformBlockParameter - + TransformFeedbackType @@ -5239,24 +5239,24 @@ - ShaderParameter + ShaderParameter ShaderType ShaderPrecision - VertexAttribParameter + VertexAttribParameter - VertexAttribPointerParameter + VertexAttribPointerParameter - + GetProgramParameterName - + TextureUnit @@ -5264,7 +5264,7 @@ TextureTarget - + SamplerParameterName @@ -5300,7 +5300,7 @@ PixelFormat PixelType - + TextureTarget2d @@ -5318,7 +5318,7 @@ TextureTarget3d - + TextureTarget2d @@ -5334,24 +5334,24 @@ TextureTarget3d - + TextureTarget TextureParameterName - - + + TextureTarget - + TextureTarget GetTextureParameterName - + StencilFunction @@ -5372,12 +5372,12 @@ StencilOp StencilOp - + DepthFunction - + BlendEquationMode @@ -5396,17 +5396,17 @@ BlendingFactorSrc BlendingFactorDest - + DrawBufferMode - + StencilFace - + ClearBufferMask @@ -5417,7 +5417,7 @@ ClearBufferCombined - + SyncCondition @@ -5430,22 +5430,22 @@ WaitSyncFlags - + SyncParameterName - + PixelStoreParameter - + FramebufferTarget - + RenderbufferTarget @@ -5458,14 +5458,14 @@ RenderbufferTarget RenderbufferInternalFormat - + FramebufferTarget FramebufferAttachment RenderbufferTarget - + FramebufferTarget @@ -5477,13 +5477,13 @@ FramebufferAttachment TextureTarget3d - + FramebufferErrorCode FramebufferTarget - + FramebufferTarget @@ -5493,13 +5493,13 @@ FramebufferTarget FramebufferAttachment - + RenderbufferTarget RenderbufferParameterName - + FramebufferTarget @@ -5542,7 +5542,7 @@ in - + QueryCounterTarget @@ -5613,7 +5613,7 @@ 0 - + @@ -5625,7 +5625,7 @@ BeginMode - + CullFaceMode @@ -5636,13 +5636,13 @@ CullFaceMode - + BufferTarget BufferUsage - + TextureTarget @@ -5725,7 +5725,7 @@ - + @@ -5761,12 +5761,12 @@ - + - + @@ -5791,7 +5791,7 @@ - + @@ -5815,12 +5815,12 @@ - + - + @@ -5829,48 +5829,48 @@ - + - + - + - + - + - + - + - + @@ -5885,7 +5885,7 @@ - + @@ -5894,7 +5894,7 @@ - + @@ -5977,7 +5977,7 @@ - + @@ -5997,7 +5997,7 @@ - + @@ -6010,7 +6010,7 @@ - + @@ -6019,13 +6019,13 @@ - + - + @@ -6039,13 +6039,13 @@ - + - + @@ -6089,7 +6089,7 @@ - + @@ -6151,7 +6151,7 @@ - + @@ -6164,11 +6164,11 @@ - + - + @@ -6176,13 +6176,13 @@ - + - + @@ -6200,21 +6200,21 @@ - + - + - + - + @@ -6225,7 +6225,7 @@ - + @@ -6236,7 +6236,7 @@ - + @@ -6279,12 +6279,12 @@ - + - + @@ -6513,7 +6513,7 @@ - + @@ -6523,7 +6523,7 @@ - + @@ -6683,7 +6683,7 @@ - + From 74822fb42f7b3b0ae9b23cdf94016f252ef805e1 Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Wed, 4 Oct 2017 20:00:53 +0100 Subject: [PATCH 57/91] Removing some dead code in Bind This change doesn't effect the output of Bind. --- src/Generator.Bind/XmlSpecReader.cs | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/src/Generator.Bind/XmlSpecReader.cs b/src/Generator.Bind/XmlSpecReader.cs index 67e72648..7907dfe3 100644 --- a/src/Generator.Bind/XmlSpecReader.cs +++ b/src/Generator.Bind/XmlSpecReader.cs @@ -304,21 +304,14 @@ namespace Bind p.CurrentType = param.GetAttribute("type", String.Empty).Trim(); p.Name = param.GetAttribute("name", String.Empty).Trim(); - string element_count = param.GetAttribute("elementcount", String.Empty).Trim(); - if (String.IsNullOrEmpty(element_count)) + p.ComputeSize = param.GetAttribute("count", String.Empty).Trim(); + + int elementCount; + if (Int32.TryParse(p.ComputeSize, out elementCount)) { - element_count = param.GetAttribute("count", String.Empty).Trim(); - if (!String.IsNullOrEmpty(element_count)) - { - int count; - if (Int32.TryParse(element_count, out count)) - { - p.ElementCount = count; - } - } + p.ElementCount = elementCount; } - p.ComputeSize = param.GetAttribute("count", String.Empty).Trim(); p.Flow = Parameter.GetFlowDirection(param.GetAttribute("flow", String.Empty).Trim()); d.Parameters.Add(p); From 6bd1f0e6034b894e18990c225890ba3cece1fc91 Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Wed, 4 Oct 2017 22:26:49 +0100 Subject: [PATCH 58/91] Remove ShaderSource override that had no effect --- src/Generator.Bind/Specifications/GL2/overrides.xml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/Generator.Bind/Specifications/GL2/overrides.xml b/src/Generator.Bind/Specifications/GL2/overrides.xml index f643204e..ae25fb0f 100644 --- a/src/Generator.Bind/Specifications/GL2/overrides.xml +++ b/src/Generator.Bind/Specifications/GL2/overrides.xml @@ -228,12 +228,6 @@ - - - 0 - - - ActiveAttribType From ffa26fb20447fc246b877f274e42b552cc8c02b1 Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Thu, 5 Oct 2017 12:33:19 +0100 Subject: [PATCH 59/91] Add feature to Bind to generate legacy array overloads --- src/Generator.Bind/FuncProcessor.cs | 27 +++++++++++++++++++++++++++ src/Generator.Bind/Utilities.cs | 4 ++++ 2 files changed, 31 insertions(+) diff --git a/src/Generator.Bind/FuncProcessor.cs b/src/Generator.Bind/FuncProcessor.cs index 213f8f65..7755f40e 100644 --- a/src/Generator.Bind/FuncProcessor.cs +++ b/src/Generator.Bind/FuncProcessor.cs @@ -648,6 +648,22 @@ namespace Bind { d.Parameters[i].WrapperType |= WrapperTypes.UncheckedParameter; } + + if (function_override != null) + { + XPathNavigator param_override = function_override.SelectSingleNode(String.Format( + "param[@name='{0}' or @index='{1}']", + d.Parameters[i].RawName, + i)); + if (param_override != null) + { + var legacyArrayParameter = param_override.GetAttribute("legacyArrayParameter", String.Empty); + if (!String.IsNullOrEmpty(legacyArrayParameter)) + { + d.Parameters[i].WrapperType |= WrapperTypes.LegacyArrayParameter; + } + } + } } } @@ -1097,6 +1113,17 @@ namespace Bind // Generics are handled in a second pass. if ((parameter.WrapperType & WrapperTypes.GenericParameter) == 0) { + if ((parameter.WrapperType & WrapperTypes.LegacyArrayParameter) != 0) + { + foreach (var wrapper in GetWrapper(wrappers, WrapperTypes.LegacyArrayParameter, func)) + { + wrapper.Obsolete = "Use out overload instead"; + var p = wrapper.Parameters[i]; + p.Array++; + p.Pointer--; + } + } + if ((parameter.WrapperType & WrapperTypes.ArrayParameter) != 0) { foreach (var wrapper in GetWrapper(wrappers, WrapperTypes.ArrayParameter, func)) diff --git a/src/Generator.Bind/Utilities.cs b/src/Generator.Bind/Utilities.cs index 188e2a75..2d55f4ff 100644 --- a/src/Generator.Bind/Utilities.cs +++ b/src/Generator.Bind/Utilities.cs @@ -94,6 +94,10 @@ namespace Bind /// Add an int32 overload for convenience. /// SizeParameter = 1 << 14, + /// + /// Function takes a ref but we emit a legacy array overload to maintain backwards compatability. + /// + LegacyArrayParameter = 1 << 15, } internal static class Utilities From bb456e47a876b4321a348ee1d764439da4f97608 Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Thu, 5 Oct 2017 12:37:02 +0100 Subject: [PATCH 60/91] Generate legacy overloads for EdgeFlagv --- src/Generator.Bind/Specifications/GL2/overrides.xml | 9 ++++----- src/OpenTK/Graphics/OpenGL/GL.cs | 3 +-- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/src/Generator.Bind/Specifications/GL2/overrides.xml b/src/Generator.Bind/Specifications/GL2/overrides.xml index ae25fb0f..391a95d1 100644 --- a/src/Generator.Bind/Specifications/GL2/overrides.xml +++ b/src/Generator.Bind/Specifications/GL2/overrides.xml @@ -1686,6 +1686,10 @@ + + + + @@ -1860,11 +1864,6 @@ BeginMode - - - 0 - - 0 diff --git a/src/OpenTK/Graphics/OpenGL/GL.cs b/src/OpenTK/Graphics/OpenGL/GL.cs index f7df5c78..493be532 100644 --- a/src/OpenTK/Graphics/OpenGL/GL.cs +++ b/src/OpenTK/Graphics/OpenGL/GL.cs @@ -39011,7 +39011,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] /// Specifies the current edge flag value, either True or False. The initial value is True. /// - [Obsolete("Use ref overload instead")] + [Obsolete("Use out overload instead")] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEdgeFlagv")] [CLSCompliant(false)] public static void EdgeFlag([CountAttribute(Count = 1)] bool[] flag) { throw new BindingsNotRewrittenException(); } @@ -39022,7 +39022,6 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] /// Specifies the current edge flag value, either True or False. The initial value is True. /// - [Obsolete("Use ref overload instead")] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEdgeFlagv")] [CLSCompliant(false)] public static unsafe void EdgeFlag([CountAttribute(Count = 1)] bool* flag) { throw new BindingsNotRewrittenException(); } From d9918639fbcadc462c7feb0362ca0e4e1deab101 Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Thu, 5 Oct 2017 12:33:07 +0100 Subject: [PATCH 61/91] Generate legacy overloads for GetObjectLabel --- .../Specifications/GL2/overrides.xml | 34 +++++++++---------- src/OpenTK/Graphics/ES20/ES20.cs | 6 ++++ src/OpenTK/Graphics/ES30/ES30.cs | 6 ++++ src/OpenTK/Graphics/ES31/ES31.cs | 6 ++++ src/OpenTK/Graphics/OpenGL/GL.cs | 4 +++ src/OpenTK/Graphics/OpenGL4/GL4.cs | 2 ++ 6 files changed, 40 insertions(+), 18 deletions(-) diff --git a/src/Generator.Bind/Specifications/GL2/overrides.xml b/src/Generator.Bind/Specifications/GL2/overrides.xml index 391a95d1..16be7ea6 100644 --- a/src/Generator.Bind/Specifications/GL2/overrides.xml +++ b/src/Generator.Bind/Specifications/GL2/overrides.xml @@ -1098,6 +1098,7 @@ ObjectLabelIdentifier + @@ -1700,11 +1701,6 @@ - - - 0 - - 0 @@ -1727,6 +1723,13 @@ + + + + + + + @@ -1864,11 +1867,6 @@ BeginMode - - - 0 - - 0 @@ -1999,11 +1997,6 @@ ExtDirectStateAccess - - - 0 - - 0 @@ -5568,17 +5561,22 @@ ObjectLabelIdentifier + ObjectLabelIdentifier - - + + - 0 + + + + + 0 diff --git a/src/OpenTK/Graphics/ES20/ES20.cs b/src/OpenTK/Graphics/ES20/ES20.cs index 42f19f9e..fdfdc0b1 100644 --- a/src/OpenTK/Graphics/ES20/ES20.cs +++ b/src/OpenTK/Graphics/ES20/ES20.cs @@ -9433,6 +9433,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// The address of a string that will receive the object label. /// + [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } @@ -9499,6 +9500,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// The address of a string that will receive the object label. /// + [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } @@ -23851,6 +23853,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// The address of a string that will receive the object label. /// + [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES20.All type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } @@ -23917,6 +23920,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// The address of a string that will receive the object label. /// + [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES20.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } @@ -34773,6 +34777,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// The address of a string that will receive the object label. /// + [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } @@ -34839,6 +34844,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// The address of a string that will receive the object label. /// + [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } diff --git a/src/OpenTK/Graphics/ES30/ES30.cs b/src/OpenTK/Graphics/ES30/ES30.cs index 38bffb7b..35f3d788 100644 --- a/src/OpenTK/Graphics/ES30/ES30.cs +++ b/src/OpenTK/Graphics/ES30/ES30.cs @@ -13646,6 +13646,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// The address of a string that will receive the object label. /// + [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } @@ -13712,6 +13713,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// The address of a string that will receive the object label. /// + [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } @@ -32246,6 +32248,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// The address of a string that will receive the object label. /// + [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES30.All type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } @@ -32312,6 +32315,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// The address of a string that will receive the object label. /// + [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES30.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } @@ -43172,6 +43176,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// The address of a string that will receive the object label. /// + [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } @@ -43238,6 +43243,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// The address of a string that will receive the object label. /// + [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } diff --git a/src/OpenTK/Graphics/ES31/ES31.cs b/src/OpenTK/Graphics/ES31/ES31.cs index 58ecd11d..b8ee751c 100644 --- a/src/OpenTK/Graphics/ES31/ES31.cs +++ b/src/OpenTK/Graphics/ES31/ES31.cs @@ -12711,6 +12711,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// The address of a string that will receive the object label. /// + [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } @@ -12777,6 +12778,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// The address of a string that will receive the object label. /// + [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } @@ -31482,6 +31484,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// The address of a string that will receive the object label. /// + [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES31.All type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } @@ -31548,6 +31551,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// The address of a string that will receive the object label. /// + [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES31.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } @@ -41256,6 +41260,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// The address of a string that will receive the object label. /// + [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } @@ -41322,6 +41327,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// The address of a string that will receive the object label. /// + [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } diff --git a/src/OpenTK/Graphics/OpenGL/GL.cs b/src/OpenTK/Graphics/OpenGL/GL.cs index 493be532..7a8ae9ca 100644 --- a/src/OpenTK/Graphics/OpenGL/GL.cs +++ b/src/OpenTK/Graphics/OpenGL/GL.cs @@ -46322,6 +46322,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] /// The address of a string that will receive the object label. /// + [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } @@ -46388,6 +46389,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] /// The address of a string that will receive the object label. /// + [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } @@ -90069,6 +90071,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] /// The address of a string that will receive the object label. /// + [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.OpenGL.ExtDebugLabel type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } @@ -90135,6 +90138,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] /// The address of a string that will receive the object label. /// + [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.OpenGL.ExtDebugLabel type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } diff --git a/src/OpenTK/Graphics/OpenGL4/GL4.cs b/src/OpenTK/Graphics/OpenGL4/GL4.cs index 1dfba67d..34a6f66f 100644 --- a/src/OpenTK/Graphics/OpenGL4/GL4.cs +++ b/src/OpenTK/Graphics/OpenGL4/GL4.cs @@ -25037,6 +25037,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] /// The address of a string that will receive the object label. /// + [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } @@ -25103,6 +25104,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] /// The address of a string that will receive the object label. /// + [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } From e222486004a53222cf88259a73f504d984f10006 Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Thu, 5 Oct 2017 13:31:04 +0100 Subject: [PATCH 62/91] Generate legacy overloads for GetObjectPtrLabel --- .../Specifications/GL2/overrides.xml | 39 ++++++++----------- src/OpenTK/Graphics/ES20/ES20.cs | 20 ---------- src/OpenTK/Graphics/ES30/ES30.cs | 20 ---------- src/OpenTK/Graphics/ES31/ES31.cs | 20 ---------- src/OpenTK/Graphics/OpenGL/GL.cs | 20 ---------- src/OpenTK/Graphics/OpenGL4/GL4.cs | 20 ---------- 6 files changed, 16 insertions(+), 123 deletions(-) diff --git a/src/Generator.Bind/Specifications/GL2/overrides.xml b/src/Generator.Bind/Specifications/GL2/overrides.xml index 16be7ea6..6ef1a428 100644 --- a/src/Generator.Bind/Specifications/GL2/overrides.xml +++ b/src/Generator.Bind/Specifications/GL2/overrides.xml @@ -1691,6 +1691,12 @@ + + + + + + @@ -1701,11 +1707,6 @@ - - - 0 - - 0 @@ -1716,11 +1717,6 @@ 0 - - - 0 - - @@ -1728,6 +1724,12 @@ + + + + + + @@ -1867,11 +1869,7 @@ BeginMode - - - 0 - - + 0 @@ -2057,11 +2055,6 @@ IbmVertexArrayLists - - - 0 - - 0 @@ -5573,13 +5566,13 @@ + + + - - 0 - 0 diff --git a/src/OpenTK/Graphics/ES20/ES20.cs b/src/OpenTK/Graphics/ES20/ES20.cs index fdfdc0b1..800fffe1 100644 --- a/src/OpenTK/Graphics/ES20/ES20.cs +++ b/src/OpenTK/Graphics/ES20/ES20.cs @@ -9584,7 +9584,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } @@ -9604,7 +9603,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } @@ -9646,7 +9644,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -9668,7 +9665,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -9712,7 +9708,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -9734,7 +9729,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -9778,7 +9772,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -9800,7 +9793,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -9844,7 +9836,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -9866,7 +9857,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -34928,7 +34918,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } @@ -34948,7 +34937,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } @@ -34990,7 +34978,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -35012,7 +34999,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -35056,7 +35042,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -35078,7 +35063,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -35122,7 +35106,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -35144,7 +35127,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -35188,7 +35170,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -35210,7 +35191,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) diff --git a/src/OpenTK/Graphics/ES30/ES30.cs b/src/OpenTK/Graphics/ES30/ES30.cs index 35f3d788..7c5ecb38 100644 --- a/src/OpenTK/Graphics/ES30/ES30.cs +++ b/src/OpenTK/Graphics/ES30/ES30.cs @@ -13797,7 +13797,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } @@ -13817,7 +13816,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } @@ -13859,7 +13857,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -13881,7 +13878,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -13925,7 +13921,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -13947,7 +13942,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -13991,7 +13985,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -14013,7 +14006,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -14057,7 +14049,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -14079,7 +14070,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -43327,7 +43317,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } @@ -43347,7 +43336,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } @@ -43389,7 +43377,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -43411,7 +43398,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -43455,7 +43441,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -43477,7 +43462,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -43521,7 +43505,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -43543,7 +43526,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -43587,7 +43569,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -43609,7 +43590,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) diff --git a/src/OpenTK/Graphics/ES31/ES31.cs b/src/OpenTK/Graphics/ES31/ES31.cs index b8ee751c..a7b5b913 100644 --- a/src/OpenTK/Graphics/ES31/ES31.cs +++ b/src/OpenTK/Graphics/ES31/ES31.cs @@ -12862,7 +12862,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } @@ -12882,7 +12881,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } @@ -12924,7 +12922,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -12946,7 +12943,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -12990,7 +12986,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -13012,7 +13007,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -13056,7 +13050,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -13078,7 +13071,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -13122,7 +13114,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -13144,7 +13135,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -41411,7 +41401,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } @@ -41431,7 +41420,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } @@ -41473,7 +41461,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -41495,7 +41482,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -41539,7 +41525,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -41561,7 +41546,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -41605,7 +41589,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -41627,7 +41610,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -41671,7 +41653,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -41693,7 +41674,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) diff --git a/src/OpenTK/Graphics/OpenGL/GL.cs b/src/OpenTK/Graphics/OpenGL/GL.cs index 7a8ae9ca..0e45f4f1 100644 --- a/src/OpenTK/Graphics/OpenGL/GL.cs +++ b/src/OpenTK/Graphics/OpenGL/GL.cs @@ -46473,7 +46473,6 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } @@ -46493,7 +46492,6 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } @@ -46535,7 +46533,6 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -46557,7 +46554,6 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -46601,7 +46597,6 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -46623,7 +46618,6 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -46667,7 +46661,6 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -46689,7 +46682,6 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -46733,7 +46725,6 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -46755,7 +46746,6 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -111827,7 +111817,6 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } @@ -111847,7 +111836,6 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } @@ -111889,7 +111877,6 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -111911,7 +111898,6 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -111955,7 +111941,6 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -111977,7 +111962,6 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -112021,7 +112005,6 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -112043,7 +112026,6 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -112087,7 +112069,6 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -112109,7 +112090,6 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) diff --git a/src/OpenTK/Graphics/OpenGL4/GL4.cs b/src/OpenTK/Graphics/OpenGL4/GL4.cs index 34a6f66f..f168cb73 100644 --- a/src/OpenTK/Graphics/OpenGL4/GL4.cs +++ b/src/OpenTK/Graphics/OpenGL4/GL4.cs @@ -25188,7 +25188,6 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } @@ -25208,7 +25207,6 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } @@ -25250,7 +25248,6 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -25272,7 +25269,6 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -25316,7 +25312,6 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -25338,7 +25333,6 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -25382,7 +25376,6 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -25404,7 +25397,6 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -25448,7 +25440,6 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -25470,7 +25461,6 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -64720,7 +64710,6 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } @@ -64740,7 +64729,6 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } @@ -64782,7 +64770,6 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -64804,7 +64791,6 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -64848,7 +64834,6 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -64870,7 +64855,6 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -64914,7 +64898,6 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -64936,7 +64919,6 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -64980,7 +64962,6 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) @@ -65002,7 +64983,6 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] /// The address of a string that will receive the object label. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) From 7c85f82074adf2f22982df61f8c6469dcd07bc62 Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Thu, 5 Oct 2017 13:41:25 +0100 Subject: [PATCH 63/91] Generate legacy overloads for VertexAttrib1fv --- .../Specifications/GL2/overrides.xml | 15 ++++++++------- src/OpenTK/Graphics/ES20/ES20.cs | 2 ++ 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/src/Generator.Bind/Specifications/GL2/overrides.xml b/src/Generator.Bind/Specifications/GL2/overrides.xml index 6ef1a428..87dbbc33 100644 --- a/src/Generator.Bind/Specifications/GL2/overrides.xml +++ b/src/Generator.Bind/Specifications/GL2/overrides.xml @@ -5600,6 +5600,14 @@ + + + + + + + + @@ -5658,13 +5666,6 @@ PixelFormat - - - - 0 - - - diff --git a/src/OpenTK/Graphics/ES20/ES20.cs b/src/OpenTK/Graphics/ES20/ES20.cs index 800fffe1..84d001d5 100644 --- a/src/OpenTK/Graphics/ES20/ES20.cs +++ b/src/OpenTK/Graphics/ES20/ES20.cs @@ -17061,6 +17061,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] /// Specifies the new values to be used for the specified vertex attribute. /// + [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1fv")] [CLSCompliant(false)] public static void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Single[] v) { throw new BindingsNotRewrittenException(); } @@ -17087,6 +17088,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] /// Specifies the new values to be used for the specified vertex attribute. /// + [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1fv")] [CLSCompliant(false)] public static void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Single[] v) { throw new BindingsNotRewrittenException(); } From 1485a6b32202796c477ff9ecdeed83829e8fcfd6 Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Thu, 5 Oct 2017 14:51:48 +0100 Subject: [PATCH 64/91] Remove unused GetPointerv overloads --- .../Specifications/GL2/overrides.xml | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/src/Generator.Bind/Specifications/GL2/overrides.xml b/src/Generator.Bind/Specifications/GL2/overrides.xml index 87dbbc33..48efbbc5 100644 --- a/src/Generator.Bind/Specifications/GL2/overrides.xml +++ b/src/Generator.Bind/Specifications/GL2/overrides.xml @@ -1870,11 +1870,6 @@ - - - 0 - - ProgramParameter @@ -1995,11 +1990,6 @@ ExtDirectStateAccess - - - 0 - - 0 @@ -2055,11 +2045,6 @@ IbmVertexArrayLists - - - 0 - - NvTransformFeedback2 From 7644d0c94aee8eea71bd24f53631cc8b8ee09700 Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Thu, 5 Oct 2017 14:58:19 +0100 Subject: [PATCH 65/91] Generate legacy overloads for GetProgramPipelineInfoLog --- .../Specifications/GL2/overrides.xml | 22 ++++++++----------- src/OpenTK/Graphics/ES20/ES20.cs | 4 ---- src/OpenTK/Graphics/ES30/ES30.cs | 4 ---- src/OpenTK/Graphics/ES31/ES31.cs | 4 ---- src/OpenTK/Graphics/OpenGL/GL.cs | 8 ------- 5 files changed, 9 insertions(+), 33 deletions(-) diff --git a/src/Generator.Bind/Specifications/GL2/overrides.xml b/src/Generator.Bind/Specifications/GL2/overrides.xml index 48efbbc5..913f69ff 100644 --- a/src/Generator.Bind/Specifications/GL2/overrides.xml +++ b/src/Generator.Bind/Specifications/GL2/overrides.xml @@ -1730,6 +1730,12 @@ + + + + + + @@ -1875,11 +1881,6 @@ ProgramParameter - - - 0 - - 0 @@ -1990,11 +1991,6 @@ ExtDirectStateAccess - - - 0 - - ExtDrawBuffers2 @@ -5554,6 +5550,9 @@ + + + @@ -5561,9 +5560,6 @@ 0 - - 0 - 0 0 diff --git a/src/OpenTK/Graphics/ES20/ES20.cs b/src/OpenTK/Graphics/ES20/ES20.cs index 84d001d5..2bfaeb04 100644 --- a/src/OpenTK/Graphics/ES20/ES20.cs +++ b/src/OpenTK/Graphics/ES20/ES20.cs @@ -23996,7 +23996,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// Specifies the address of an array of characters into which will be written the info log for pipeline. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } @@ -24016,7 +24015,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// Specifies the address of an array of characters into which will be written the info log for pipeline. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] public static unsafe void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } @@ -24056,7 +24054,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// Specifies the address of an array of characters into which will be written the info log for pipeline. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } @@ -24076,7 +24073,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// Specifies the address of an array of characters into which will be written the info log for pipeline. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] public static unsafe void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } diff --git a/src/OpenTK/Graphics/ES30/ES30.cs b/src/OpenTK/Graphics/ES30/ES30.cs index 7c5ecb38..aa9bccd9 100644 --- a/src/OpenTK/Graphics/ES30/ES30.cs +++ b/src/OpenTK/Graphics/ES30/ES30.cs @@ -32389,7 +32389,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// Specifies the address of an array of characters into which will be written the info log for pipeline. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } @@ -32409,7 +32408,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// Specifies the address of an array of characters into which will be written the info log for pipeline. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] public static unsafe void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } @@ -32449,7 +32447,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// Specifies the address of an array of characters into which will be written the info log for pipeline. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } @@ -32469,7 +32466,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// Specifies the address of an array of characters into which will be written the info log for pipeline. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] public static unsafe void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } diff --git a/src/OpenTK/Graphics/ES31/ES31.cs b/src/OpenTK/Graphics/ES31/ES31.cs index a7b5b913..2b82ea54 100644 --- a/src/OpenTK/Graphics/ES31/ES31.cs +++ b/src/OpenTK/Graphics/ES31/ES31.cs @@ -31625,7 +31625,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// Specifies the address of an array of characters into which will be written the info log for pipeline. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } @@ -31645,7 +31644,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// Specifies the address of an array of characters into which will be written the info log for pipeline. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] public static unsafe void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } @@ -31685,7 +31683,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// Specifies the address of an array of characters into which will be written the info log for pipeline. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } @@ -31705,7 +31702,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// Specifies the address of an array of characters into which will be written the info log for pipeline. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] public static unsafe void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } diff --git a/src/OpenTK/Graphics/OpenGL/GL.cs b/src/OpenTK/Graphics/OpenGL/GL.cs index 0e45f4f1..6d05a44e 100644 --- a/src/OpenTK/Graphics/OpenGL/GL.cs +++ b/src/OpenTK/Graphics/OpenGL/GL.cs @@ -47984,7 +47984,6 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] /// Specifies the address of an array of characters into which will be written the info log for pipeline. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineInfoLog")] [CLSCompliant(false)] public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } @@ -48004,7 +48003,6 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] /// Specifies the address of an array of characters into which will be written the info log for pipeline. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineInfoLog")] [CLSCompliant(false)] public static unsafe void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } @@ -48044,7 +48042,6 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] /// Specifies the address of an array of characters into which will be written the info log for pipeline. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineInfoLog")] [CLSCompliant(false)] public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } @@ -48064,7 +48061,6 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] /// Specifies the address of an array of characters into which will be written the info log for pipeline. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGetProgramPipelineInfoLog")] [CLSCompliant(false)] public static unsafe void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } @@ -90493,7 +90489,6 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] /// Specifies the address of an array of characters into which will be written the info log for pipeline. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } @@ -90513,7 +90508,6 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] /// Specifies the address of an array of characters into which will be written the info log for pipeline. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] public static unsafe void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } @@ -90553,7 +90547,6 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] /// Specifies the address of an array of characters into which will be written the info log for pipeline. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } @@ -90573,7 +90566,6 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] /// Specifies the address of an array of characters into which will be written the info log for pipeline. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] public static unsafe void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } From 168462b4ca0879a157c40382c68fa5159d9edf1c Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Thu, 5 Oct 2017 15:06:10 +0100 Subject: [PATCH 66/91] Generate legacy overloads for QCOM_extended_get --- .../Specifications/GL2/overrides.xml | 62 +++++----- src/OpenTK/Graphics/ES11/ES11.cs | 112 +++++++----------- src/OpenTK/Graphics/ES20/ES20.cs | 112 +++++++----------- src/OpenTK/Graphics/ES30/ES30.cs | 112 +++++++----------- src/OpenTK/Graphics/ES31/ES31.cs | 112 +++++++----------- 5 files changed, 216 insertions(+), 294 deletions(-) diff --git a/src/Generator.Bind/Specifications/GL2/overrides.xml b/src/Generator.Bind/Specifications/GL2/overrides.xml index 913f69ff..a8629e6f 100644 --- a/src/Generator.Bind/Specifications/GL2/overrides.xml +++ b/src/Generator.Bind/Specifications/GL2/overrides.xml @@ -4959,21 +4959,6 @@ BeginMode - - 0 - - - 0 - - - 0 - - - 0 - - - 0 - @@ -4981,6 +4966,23 @@ in + + + + + + + + + + + + + + + + + @@ -5553,6 +5555,21 @@ + + + + + + + + + + + + + + + @@ -5564,21 +5581,6 @@ 0 0 - - 0 - - - 0 - - - 0 - - - 0 - - - 0 - diff --git a/src/OpenTK/Graphics/ES11/ES11.cs b/src/OpenTK/Graphics/ES11/ES11.cs index e8b961b5..36c8e8f4 100644 --- a/src/OpenTK/Graphics/ES11/ES11.cs +++ b/src/OpenTK/Graphics/ES11/ES11.cs @@ -14407,15 +14407,6 @@ namespace OpenTK.Graphics.ES11 where T1 : struct { throw new BindingsNotRewrittenException(); } - /// [requires: QCOM_extended_get] - /// [length: maxBuffers] - /// - /// [length: 1] - [Obsolete("Use out overload instead")] - [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] - [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new BindingsNotRewrittenException(); } - /// [requires: QCOM_extended_get] /// [length: maxBuffers] /// @@ -14428,7 +14419,6 @@ namespace OpenTK.Graphics.ES11 /// [length: maxBuffers] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] out Int32 buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new BindingsNotRewrittenException(); } @@ -14440,16 +14430,15 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -14463,7 +14452,6 @@ namespace OpenTK.Graphics.ES11 /// [length: maxBuffers] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] out UInt32 buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new BindingsNotRewrittenException(); } @@ -14475,16 +14463,15 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] - /// [length: maxFramebuffers] - /// - /// [length: 1] - [Obsolete("Use out overload instead")] - [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] + /// [length: maxBuffers] + /// + /// [length: 1] + [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -14498,7 +14485,6 @@ namespace OpenTK.Graphics.ES11 /// [length: maxFramebuffers] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] out Int32 framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new BindingsNotRewrittenException(); } @@ -14510,16 +14496,15 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -14533,7 +14518,6 @@ namespace OpenTK.Graphics.ES11 /// [length: maxFramebuffers] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] out UInt32 framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new BindingsNotRewrittenException(); } @@ -14545,6 +14529,14 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] + public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get] + /// [length: maxFramebuffers] + /// + /// [length: 1] + [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] @@ -14601,15 +14593,6 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static unsafe void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } - /// [requires: QCOM_extended_get2] - /// [length: maxPrograms] - /// - /// [length: 1] - [Obsolete("Use out overload instead")] - [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] - [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new BindingsNotRewrittenException(); } - /// [requires: QCOM_extended_get2] /// [length: maxPrograms] /// @@ -14622,7 +14605,6 @@ namespace OpenTK.Graphics.ES11 /// [length: maxPrograms] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] out Int32 programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new BindingsNotRewrittenException(); } @@ -14634,16 +14616,15 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -14657,7 +14638,6 @@ namespace OpenTK.Graphics.ES11 /// [length: maxPrograms] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] out UInt32 programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new BindingsNotRewrittenException(); } @@ -14669,16 +14649,15 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new BindingsNotRewrittenException(); } - /// [requires: QCOM_extended_get] - /// [length: maxRenderbuffers] - /// - /// [length: 1] - [Obsolete("Use out overload instead")] - [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] + /// [requires: QCOM_extended_get2] + /// [length: maxPrograms] + /// + /// [length: 1] + [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -14692,7 +14671,6 @@ namespace OpenTK.Graphics.ES11 /// [length: maxRenderbuffers] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] out Int32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new BindingsNotRewrittenException(); } @@ -14704,16 +14682,15 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -14727,7 +14704,6 @@ namespace OpenTK.Graphics.ES11 /// [length: maxRenderbuffers] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] out UInt32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new BindingsNotRewrittenException(); } @@ -14739,16 +14715,15 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new BindingsNotRewrittenException(); } - /// [requires: QCOM_extended_get2] - /// [length: maxShaders] - /// - /// [length: 1] - [Obsolete("Use out overload instead")] - [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] + /// [requires: QCOM_extended_get] + /// [length: maxRenderbuffers] + /// + /// [length: 1] + [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -14762,7 +14737,6 @@ namespace OpenTK.Graphics.ES11 /// [length: maxShaders] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] out Int32 shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new BindingsNotRewrittenException(); } @@ -14774,16 +14748,15 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -14797,7 +14770,6 @@ namespace OpenTK.Graphics.ES11 /// [length: maxShaders] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] out UInt32 shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new BindingsNotRewrittenException(); } @@ -14809,6 +14781,14 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] + public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get2] + /// [length: maxShaders] + /// + /// [length: 1] + [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] diff --git a/src/OpenTK/Graphics/ES20/ES20.cs b/src/OpenTK/Graphics/ES20/ES20.cs index 2bfaeb04..b23fa81e 100644 --- a/src/OpenTK/Graphics/ES20/ES20.cs +++ b/src/OpenTK/Graphics/ES20/ES20.cs @@ -52735,15 +52735,6 @@ namespace OpenTK.Graphics.ES20 where T1 : struct { throw new BindingsNotRewrittenException(); } - /// [requires: QCOM_extended_get] - /// [length: maxBuffers] - /// - /// [length: 1] - [Obsolete("Use out overload instead")] - [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] - [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new BindingsNotRewrittenException(); } - /// [requires: QCOM_extended_get] /// [length: maxBuffers] /// @@ -52756,7 +52747,6 @@ namespace OpenTK.Graphics.ES20 /// [length: maxBuffers] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] out Int32 buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new BindingsNotRewrittenException(); } @@ -52768,16 +52758,15 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -52791,7 +52780,6 @@ namespace OpenTK.Graphics.ES20 /// [length: maxBuffers] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] out UInt32 buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new BindingsNotRewrittenException(); } @@ -52803,16 +52791,15 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] - /// [length: maxFramebuffers] - /// - /// [length: 1] - [Obsolete("Use out overload instead")] - [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] + /// [length: maxBuffers] + /// + /// [length: 1] + [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -52826,7 +52813,6 @@ namespace OpenTK.Graphics.ES20 /// [length: maxFramebuffers] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] out Int32 framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new BindingsNotRewrittenException(); } @@ -52838,16 +52824,15 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -52861,7 +52846,6 @@ namespace OpenTK.Graphics.ES20 /// [length: maxFramebuffers] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] out UInt32 framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new BindingsNotRewrittenException(); } @@ -52873,6 +52857,14 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] + public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get] + /// [length: maxFramebuffers] + /// + /// [length: 1] + [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] @@ -52929,15 +52921,6 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } - /// [requires: QCOM_extended_get2] - /// [length: maxPrograms] - /// - /// [length: 1] - [Obsolete("Use out overload instead")] - [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] - [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new BindingsNotRewrittenException(); } - /// [requires: QCOM_extended_get2] /// [length: maxPrograms] /// @@ -52950,7 +52933,6 @@ namespace OpenTK.Graphics.ES20 /// [length: maxPrograms] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] out Int32 programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new BindingsNotRewrittenException(); } @@ -52962,16 +52944,15 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -52985,7 +52966,6 @@ namespace OpenTK.Graphics.ES20 /// [length: maxPrograms] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] out UInt32 programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new BindingsNotRewrittenException(); } @@ -52997,16 +52977,15 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new BindingsNotRewrittenException(); } - /// [requires: QCOM_extended_get] - /// [length: maxRenderbuffers] - /// - /// [length: 1] - [Obsolete("Use out overload instead")] - [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] + /// [requires: QCOM_extended_get2] + /// [length: maxPrograms] + /// + /// [length: 1] + [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -53020,7 +52999,6 @@ namespace OpenTK.Graphics.ES20 /// [length: maxRenderbuffers] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] out Int32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new BindingsNotRewrittenException(); } @@ -53032,16 +53010,15 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -53055,7 +53032,6 @@ namespace OpenTK.Graphics.ES20 /// [length: maxRenderbuffers] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] out UInt32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new BindingsNotRewrittenException(); } @@ -53067,16 +53043,15 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new BindingsNotRewrittenException(); } - /// [requires: QCOM_extended_get2] - /// [length: maxShaders] - /// - /// [length: 1] - [Obsolete("Use out overload instead")] - [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] + /// [requires: QCOM_extended_get] + /// [length: maxRenderbuffers] + /// + /// [length: 1] + [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -53090,7 +53065,6 @@ namespace OpenTK.Graphics.ES20 /// [length: maxShaders] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] out Int32 shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new BindingsNotRewrittenException(); } @@ -53102,16 +53076,15 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -53125,7 +53098,6 @@ namespace OpenTK.Graphics.ES20 /// [length: maxShaders] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] out UInt32 shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new BindingsNotRewrittenException(); } @@ -53137,6 +53109,14 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] + public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get2] + /// [length: maxShaders] + /// + /// [length: 1] + [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] diff --git a/src/OpenTK/Graphics/ES30/ES30.cs b/src/OpenTK/Graphics/ES30/ES30.cs index aa9bccd9..483f513c 100644 --- a/src/OpenTK/Graphics/ES30/ES30.cs +++ b/src/OpenTK/Graphics/ES30/ES30.cs @@ -60748,15 +60748,6 @@ namespace OpenTK.Graphics.ES30 where T1 : struct { throw new BindingsNotRewrittenException(); } - /// [requires: QCOM_extended_get] - /// [length: maxBuffers] - /// - /// [length: 1] - [Obsolete("Use out overload instead")] - [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] - [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new BindingsNotRewrittenException(); } - /// [requires: QCOM_extended_get] /// [length: maxBuffers] /// @@ -60769,7 +60760,6 @@ namespace OpenTK.Graphics.ES30 /// [length: maxBuffers] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] out Int32 buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new BindingsNotRewrittenException(); } @@ -60781,16 +60771,15 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -60804,7 +60793,6 @@ namespace OpenTK.Graphics.ES30 /// [length: maxBuffers] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] out UInt32 buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new BindingsNotRewrittenException(); } @@ -60816,16 +60804,15 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] - /// [length: maxFramebuffers] - /// - /// [length: 1] - [Obsolete("Use out overload instead")] - [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] + /// [length: maxBuffers] + /// + /// [length: 1] + [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -60839,7 +60826,6 @@ namespace OpenTK.Graphics.ES30 /// [length: maxFramebuffers] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] out Int32 framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new BindingsNotRewrittenException(); } @@ -60851,16 +60837,15 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -60874,7 +60859,6 @@ namespace OpenTK.Graphics.ES30 /// [length: maxFramebuffers] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] out UInt32 framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new BindingsNotRewrittenException(); } @@ -60886,6 +60870,14 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] + public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get] + /// [length: maxFramebuffers] + /// + /// [length: 1] + [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] @@ -60942,15 +60934,6 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } - /// [requires: QCOM_extended_get2] - /// [length: maxPrograms] - /// - /// [length: 1] - [Obsolete("Use out overload instead")] - [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] - [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new BindingsNotRewrittenException(); } - /// [requires: QCOM_extended_get2] /// [length: maxPrograms] /// @@ -60963,7 +60946,6 @@ namespace OpenTK.Graphics.ES30 /// [length: maxPrograms] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] out Int32 programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new BindingsNotRewrittenException(); } @@ -60975,16 +60957,15 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -60998,7 +60979,6 @@ namespace OpenTK.Graphics.ES30 /// [length: maxPrograms] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] out UInt32 programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new BindingsNotRewrittenException(); } @@ -61010,16 +60990,15 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new BindingsNotRewrittenException(); } - /// [requires: QCOM_extended_get] - /// [length: maxRenderbuffers] - /// - /// [length: 1] - [Obsolete("Use out overload instead")] - [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] + /// [requires: QCOM_extended_get2] + /// [length: maxPrograms] + /// + /// [length: 1] + [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -61033,7 +61012,6 @@ namespace OpenTK.Graphics.ES30 /// [length: maxRenderbuffers] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] out Int32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new BindingsNotRewrittenException(); } @@ -61045,16 +61023,15 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -61068,7 +61045,6 @@ namespace OpenTK.Graphics.ES30 /// [length: maxRenderbuffers] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] out UInt32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new BindingsNotRewrittenException(); } @@ -61080,16 +61056,15 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new BindingsNotRewrittenException(); } - /// [requires: QCOM_extended_get2] - /// [length: maxShaders] - /// - /// [length: 1] - [Obsolete("Use out overload instead")] - [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] + /// [requires: QCOM_extended_get] + /// [length: maxRenderbuffers] + /// + /// [length: 1] + [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -61103,7 +61078,6 @@ namespace OpenTK.Graphics.ES30 /// [length: maxShaders] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] out Int32 shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new BindingsNotRewrittenException(); } @@ -61115,16 +61089,15 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -61138,7 +61111,6 @@ namespace OpenTK.Graphics.ES30 /// [length: maxShaders] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] out UInt32 shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new BindingsNotRewrittenException(); } @@ -61150,6 +61122,14 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] + public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get2] + /// [length: maxShaders] + /// + /// [length: 1] + [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] diff --git a/src/OpenTK/Graphics/ES31/ES31.cs b/src/OpenTK/Graphics/ES31/ES31.cs index 2b82ea54..f515ffd8 100644 --- a/src/OpenTK/Graphics/ES31/ES31.cs +++ b/src/OpenTK/Graphics/ES31/ES31.cs @@ -57733,15 +57733,6 @@ namespace OpenTK.Graphics.ES31 where T1 : struct { throw new BindingsNotRewrittenException(); } - /// [requires: QCOM_extended_get] - /// [length: maxBuffers] - /// - /// [length: 1] - [Obsolete("Use out overload instead")] - [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] - [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new BindingsNotRewrittenException(); } - /// [requires: QCOM_extended_get] /// [length: maxBuffers] /// @@ -57754,7 +57745,6 @@ namespace OpenTK.Graphics.ES31 /// [length: maxBuffers] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] out Int32 buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new BindingsNotRewrittenException(); } @@ -57766,16 +57756,15 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -57789,7 +57778,6 @@ namespace OpenTK.Graphics.ES31 /// [length: maxBuffers] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] out UInt32 buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new BindingsNotRewrittenException(); } @@ -57801,16 +57789,15 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] - /// [length: maxFramebuffers] - /// - /// [length: 1] - [Obsolete("Use out overload instead")] - [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] + /// [length: maxBuffers] + /// + /// [length: 1] + [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -57824,7 +57811,6 @@ namespace OpenTK.Graphics.ES31 /// [length: maxFramebuffers] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] out Int32 framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new BindingsNotRewrittenException(); } @@ -57836,16 +57822,15 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -57859,7 +57844,6 @@ namespace OpenTK.Graphics.ES31 /// [length: maxFramebuffers] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] out UInt32 framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new BindingsNotRewrittenException(); } @@ -57871,6 +57855,14 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] + public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get] + /// [length: maxFramebuffers] + /// + /// [length: 1] + [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] @@ -57927,15 +57919,6 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } - /// [requires: QCOM_extended_get2] - /// [length: maxPrograms] - /// - /// [length: 1] - [Obsolete("Use out overload instead")] - [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] - [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new BindingsNotRewrittenException(); } - /// [requires: QCOM_extended_get2] /// [length: maxPrograms] /// @@ -57948,7 +57931,6 @@ namespace OpenTK.Graphics.ES31 /// [length: maxPrograms] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] out Int32 programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new BindingsNotRewrittenException(); } @@ -57960,16 +57942,15 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -57983,7 +57964,6 @@ namespace OpenTK.Graphics.ES31 /// [length: maxPrograms] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] out UInt32 programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new BindingsNotRewrittenException(); } @@ -57995,16 +57975,15 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new BindingsNotRewrittenException(); } - /// [requires: QCOM_extended_get] - /// [length: maxRenderbuffers] - /// - /// [length: 1] - [Obsolete("Use out overload instead")] - [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] + /// [requires: QCOM_extended_get2] + /// [length: maxPrograms] + /// + /// [length: 1] + [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -58018,7 +57997,6 @@ namespace OpenTK.Graphics.ES31 /// [length: maxRenderbuffers] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] out Int32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new BindingsNotRewrittenException(); } @@ -58030,16 +58008,15 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -58053,7 +58030,6 @@ namespace OpenTK.Graphics.ES31 /// [length: maxRenderbuffers] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] out UInt32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new BindingsNotRewrittenException(); } @@ -58065,16 +58041,15 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new BindingsNotRewrittenException(); } - /// [requires: QCOM_extended_get2] - /// [length: maxShaders] - /// - /// [length: 1] - [Obsolete("Use out overload instead")] - [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] + /// [requires: QCOM_extended_get] + /// [length: maxRenderbuffers] + /// + /// [length: 1] + [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -58088,7 +58063,6 @@ namespace OpenTK.Graphics.ES31 /// [length: maxShaders] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] out Int32 shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new BindingsNotRewrittenException(); } @@ -58100,16 +58074,15 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -58123,7 +58096,6 @@ namespace OpenTK.Graphics.ES31 /// [length: maxShaders] /// /// [length: 1] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] out UInt32 shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new BindingsNotRewrittenException(); } @@ -58135,6 +58107,14 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] + public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get2] + /// [length: maxShaders] + /// + /// [length: 1] + [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] + [CLSCompliant(false)] public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] From c2bd45f6768caf6763d6cc401a285a4676988f6c Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Thu, 5 Oct 2017 15:17:59 +0100 Subject: [PATCH 67/91] Generate legacy overloads for GetTranslatedShaderSource --- src/Generator.Bind/Generator.Bind.csproj | 4 +++- src/Generator.Bind/Specifications/GL2/overrides.xml | 6 +++--- src/OpenTK/Graphics/ES20/ES20.cs | 4 ---- src/OpenTK/Graphics/ES30/ES30.cs | 4 ---- src/OpenTK/Graphics/ES31/ES31.cs | 4 ---- 5 files changed, 6 insertions(+), 16 deletions(-) diff --git a/src/Generator.Bind/Generator.Bind.csproj b/src/Generator.Bind/Generator.Bind.csproj index 96fd937c..8c937e98 100644 --- a/src/Generator.Bind/Generator.Bind.csproj +++ b/src/Generator.Bind/Generator.Bind.csproj @@ -214,7 +214,9 @@ - + + Designer + diff --git a/src/Generator.Bind/Specifications/GL2/overrides.xml b/src/Generator.Bind/Specifications/GL2/overrides.xml index a8629e6f..9222946e 100644 --- a/src/Generator.Bind/Specifications/GL2/overrides.xml +++ b/src/Generator.Bind/Specifications/GL2/overrides.xml @@ -5555,6 +5555,9 @@ + + + @@ -5574,9 +5577,6 @@ - - 0 - 0 0 diff --git a/src/OpenTK/Graphics/ES20/ES20.cs b/src/OpenTK/Graphics/ES20/ES20.cs index b23fa81e..669968b5 100644 --- a/src/OpenTK/Graphics/ES20/ES20.cs +++ b/src/OpenTK/Graphics/ES20/ES20.cs @@ -2230,7 +2230,6 @@ namespace OpenTK.Graphics.ES20 /// /// [length: 1] /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } @@ -2240,7 +2239,6 @@ namespace OpenTK.Graphics.ES20 /// /// [length: 1] /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] public static unsafe void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } @@ -2260,7 +2258,6 @@ namespace OpenTK.Graphics.ES20 /// /// [length: 1] /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } @@ -2270,7 +2267,6 @@ namespace OpenTK.Graphics.ES20 /// /// [length: 1] /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] public static unsafe void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } diff --git a/src/OpenTK/Graphics/ES30/ES30.cs b/src/OpenTK/Graphics/ES30/ES30.cs index 483f513c..e069a325 100644 --- a/src/OpenTK/Graphics/ES30/ES30.cs +++ b/src/OpenTK/Graphics/ES30/ES30.cs @@ -2438,7 +2438,6 @@ namespace OpenTK.Graphics.ES30 /// /// [length: 1] /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } @@ -2448,7 +2447,6 @@ namespace OpenTK.Graphics.ES30 /// /// [length: 1] /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] public static unsafe void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } @@ -2468,7 +2466,6 @@ namespace OpenTK.Graphics.ES30 /// /// [length: 1] /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } @@ -2478,7 +2475,6 @@ namespace OpenTK.Graphics.ES30 /// /// [length: 1] /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] public static unsafe void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } diff --git a/src/OpenTK/Graphics/ES31/ES31.cs b/src/OpenTK/Graphics/ES31/ES31.cs index f515ffd8..caaf94fe 100644 --- a/src/OpenTK/Graphics/ES31/ES31.cs +++ b/src/OpenTK/Graphics/ES31/ES31.cs @@ -2568,7 +2568,6 @@ namespace OpenTK.Graphics.ES31 /// /// [length: 1] /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } @@ -2578,7 +2577,6 @@ namespace OpenTK.Graphics.ES31 /// /// [length: 1] /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] public static unsafe void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } @@ -2598,7 +2596,6 @@ namespace OpenTK.Graphics.ES31 /// /// [length: 1] /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } @@ -2608,7 +2605,6 @@ namespace OpenTK.Graphics.ES31 /// /// [length: 1] /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] public static unsafe void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } From 368c984288cb468b6d4fbbf917ef2508d24dffbc Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Thu, 5 Oct 2017 15:20:24 +0100 Subject: [PATCH 68/91] Generate legacy overloads for GetProgramBinary --- .../Specifications/GL2/overrides.xml | 12 ++++------- src/OpenTK/Graphics/ES20/ES20.cs | 20 ------------------- src/OpenTK/Graphics/ES30/ES30.cs | 20 ------------------- src/OpenTK/Graphics/ES31/ES31.cs | 20 ------------------- 4 files changed, 4 insertions(+), 68 deletions(-) diff --git a/src/Generator.Bind/Specifications/GL2/overrides.xml b/src/Generator.Bind/Specifications/GL2/overrides.xml index 9222946e..3cbe0083 100644 --- a/src/Generator.Bind/Specifications/GL2/overrides.xml +++ b/src/Generator.Bind/Specifications/GL2/overrides.xml @@ -5558,6 +5558,10 @@ + + + + @@ -5575,14 +5579,6 @@ - - - - 0 - 0 - - - diff --git a/src/OpenTK/Graphics/ES20/ES20.cs b/src/OpenTK/Graphics/ES20/ES20.cs index 669968b5..815f14e4 100644 --- a/src/OpenTK/Graphics/ES20/ES20.cs +++ b/src/OpenTK/Graphics/ES20/ES20.cs @@ -49414,7 +49414,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } @@ -49437,7 +49436,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) @@ -49462,7 +49460,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) @@ -49487,7 +49484,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) @@ -49512,7 +49508,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) @@ -49537,7 +49532,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } @@ -49560,7 +49554,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) @@ -49585,7 +49578,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) @@ -49610,7 +49602,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) @@ -49635,7 +49626,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) @@ -49783,7 +49773,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } @@ -49806,7 +49795,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) @@ -49831,7 +49819,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) @@ -49856,7 +49843,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) @@ -49881,7 +49867,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) @@ -49906,7 +49891,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } @@ -49929,7 +49913,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) @@ -49954,7 +49937,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) @@ -49979,7 +49961,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) @@ -50004,7 +49985,6 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) diff --git a/src/OpenTK/Graphics/ES30/ES30.cs b/src/OpenTK/Graphics/ES30/ES30.cs index e069a325..2c0c275f 100644 --- a/src/OpenTK/Graphics/ES30/ES30.cs +++ b/src/OpenTK/Graphics/ES30/ES30.cs @@ -57815,7 +57815,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } @@ -57838,7 +57837,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) @@ -57863,7 +57861,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) @@ -57888,7 +57885,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) @@ -57913,7 +57909,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) @@ -57938,7 +57933,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } @@ -57961,7 +57955,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) @@ -57986,7 +57979,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) @@ -58011,7 +58003,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) @@ -58036,7 +58027,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) @@ -58184,7 +58174,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } @@ -58207,7 +58196,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) @@ -58232,7 +58220,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) @@ -58257,7 +58244,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) @@ -58282,7 +58268,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) @@ -58307,7 +58292,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } @@ -58330,7 +58314,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) @@ -58355,7 +58338,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) @@ -58380,7 +58362,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) @@ -58405,7 +58386,6 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) diff --git a/src/OpenTK/Graphics/ES31/ES31.cs b/src/OpenTK/Graphics/ES31/ES31.cs index caaf94fe..794ebdeb 100644 --- a/src/OpenTK/Graphics/ES31/ES31.cs +++ b/src/OpenTK/Graphics/ES31/ES31.cs @@ -55213,7 +55213,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } @@ -55236,7 +55235,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) @@ -55261,7 +55259,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) @@ -55286,7 +55283,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) @@ -55311,7 +55307,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) @@ -55336,7 +55331,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } @@ -55359,7 +55353,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) @@ -55384,7 +55377,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) @@ -55409,7 +55401,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) @@ -55434,7 +55425,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) @@ -55582,7 +55572,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } @@ -55605,7 +55594,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) @@ -55630,7 +55618,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) @@ -55655,7 +55642,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) @@ -55680,7 +55666,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) @@ -55705,7 +55690,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } @@ -55728,7 +55712,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) @@ -55753,7 +55736,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) @@ -55778,7 +55760,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) @@ -55803,7 +55784,6 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// Specifies the address an array into which the GL will return program's binary representation. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) From bf6d047b0cc78a5a2d7ec18abd7f9eb3473b9236 Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Thu, 5 Oct 2017 15:27:42 +0100 Subject: [PATCH 69/91] Generate legacy overloads for GetProgramResourceName --- src/Generator.Bind/Specifications/GL2/overrides.xml | 11 +---------- src/OpenTK/Graphics/OpenGL/GL.cs | 4 ---- src/OpenTK/Graphics/OpenGL4/GL4.cs | 4 ---- 3 files changed, 1 insertion(+), 18 deletions(-) diff --git a/src/Generator.Bind/Specifications/GL2/overrides.xml b/src/Generator.Bind/Specifications/GL2/overrides.xml index 3cbe0083..16c1c1eb 100644 --- a/src/Generator.Bind/Specifications/GL2/overrides.xml +++ b/src/Generator.Bind/Specifications/GL2/overrides.xml @@ -1120,6 +1120,7 @@ ProgramInterface + @@ -1712,11 +1713,6 @@ 0 - - - 0 - - @@ -1886,11 +1882,6 @@ 0 - - - 0 - - StringName diff --git a/src/OpenTK/Graphics/OpenGL/GL.cs b/src/OpenTK/Graphics/OpenGL/GL.cs index 6d05a44e..cb37c114 100644 --- a/src/OpenTK/Graphics/OpenGL/GL.cs +++ b/src/OpenTK/Graphics/OpenGL/GL.cs @@ -48462,7 +48462,6 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] /// The address of a character array into which will be written the name of the resource. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceName")] [CLSCompliant(false)] public static void GetProgramResourceName(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } @@ -48488,7 +48487,6 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] /// The address of a character array into which will be written the name of the resource. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceName")] [CLSCompliant(false)] public static unsafe void GetProgramResourceName(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } @@ -48540,7 +48538,6 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] /// The address of a character array into which will be written the name of the resource. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceName")] [CLSCompliant(false)] public static void GetProgramResourceName(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } @@ -48566,7 +48563,6 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] /// The address of a character array into which will be written the name of the resource. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceName")] [CLSCompliant(false)] public static unsafe void GetProgramResourceName(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } diff --git a/src/OpenTK/Graphics/OpenGL4/GL4.cs b/src/OpenTK/Graphics/OpenGL4/GL4.cs index f168cb73..e777729a 100644 --- a/src/OpenTK/Graphics/OpenGL4/GL4.cs +++ b/src/OpenTK/Graphics/OpenGL4/GL4.cs @@ -26769,7 +26769,6 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] /// The address of a character array into which will be written the name of the resource. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceName")] [CLSCompliant(false)] public static void GetProgramResourceName(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } @@ -26795,7 +26794,6 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] /// The address of a character array into which will be written the name of the resource. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceName")] [CLSCompliant(false)] public static unsafe void GetProgramResourceName(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } @@ -26847,7 +26845,6 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] /// The address of a character array into which will be written the name of the resource. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceName")] [CLSCompliant(false)] public static void GetProgramResourceName(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } @@ -26873,7 +26870,6 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] /// The address of a character array into which will be written the name of the resource. /// - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceName")] [CLSCompliant(false)] public static unsafe void GetProgramResourceName(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } From 8ed1e20a7a3b534d13c6f032126b4d3d08391f73 Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Thu, 5 Oct 2017 15:29:56 +0100 Subject: [PATCH 70/91] Generate legacy overloads for GetProgramResourceiv --- .../Specifications/GL2/overrides.xml | 12 +---- src/OpenTK/Graphics/OpenGL/GL.cs | 46 +++++++++---------- src/OpenTK/Graphics/OpenGL4/GL4.cs | 46 +++++++++---------- 3 files changed, 43 insertions(+), 61 deletions(-) diff --git a/src/Generator.Bind/Specifications/GL2/overrides.xml b/src/Generator.Bind/Specifications/GL2/overrides.xml index 16c1c1eb..fe4dd4bc 100644 --- a/src/Generator.Bind/Specifications/GL2/overrides.xml +++ b/src/Generator.Bind/Specifications/GL2/overrides.xml @@ -1130,6 +1130,7 @@ ProgramProperty + @@ -1707,12 +1708,6 @@ int - - - - 0 - - @@ -1877,11 +1872,6 @@ ProgramParameter - - - 0 - - StringName diff --git a/src/OpenTK/Graphics/OpenGL/GL.cs b/src/OpenTK/Graphics/OpenGL/GL.cs index cb37c114..1a518991 100644 --- a/src/OpenTK/Graphics/OpenGL/GL.cs +++ b/src/OpenTK/Graphics/OpenGL/GL.cs @@ -48193,26 +48193,6 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static Int32 GetProgramResourceIndex(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } - /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] - /// Retrieve values for multiple properties of a single active resource within a program object - /// - /// - /// The name of a program object whose resources to query. - /// - /// - /// A token identifying the interface within program containing the resource named name. - /// - /// - /// - /// [length: propCount] - /// - /// [length: 1] - /// [length: bufSize] - [Obsolete("Use out overload instead")] - [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] - [CLSCompliant(false)] - public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL.ProgramProperty[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } - /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Retrieve values for multiple properties of a single active resource within a program object /// @@ -48247,7 +48227,6 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: 1] /// [length: bufSize] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] ref OpenTK.Graphics.OpenGL.ProgramProperty props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -48270,7 +48249,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] - public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL.ProgramProperty* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL.ProgramProperty* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Retrieve values for multiple properties of a single active resource within a program object @@ -48287,10 +48266,9 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: 1] /// [length: bufSize] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] - public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL.ProgramProperty[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL.ProgramProperty* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Retrieve values for multiple properties of a single active resource within a program object @@ -48326,7 +48304,6 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: 1] /// [length: bufSize] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] ref OpenTK.Graphics.OpenGL.ProgramProperty props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -48349,6 +48326,25 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] + public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL.ProgramProperty* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] + /// Retrieve values for multiple properties of a single active resource within a program object + /// + /// + /// The name of a program object whose resources to query. + /// + /// + /// A token identifying the interface within program containing the resource named name. + /// + /// + /// + /// [length: propCount] + /// + /// [length: 1] + /// [length: bufSize] + [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] + [CLSCompliant(false)] public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL.ProgramProperty* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] diff --git a/src/OpenTK/Graphics/OpenGL4/GL4.cs b/src/OpenTK/Graphics/OpenGL4/GL4.cs index e777729a..5692a616 100644 --- a/src/OpenTK/Graphics/OpenGL4/GL4.cs +++ b/src/OpenTK/Graphics/OpenGL4/GL4.cs @@ -26500,26 +26500,6 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static Int32 GetProgramResourceIndex(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } - /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] - /// Retrieve values for multiple properties of a single active resource within a program object - /// - /// - /// The name of a program object whose resources to query. - /// - /// - /// A token identifying the interface within program containing the resource named name. - /// - /// - /// - /// [length: propCount] - /// - /// [length: 1] - /// [length: bufSize] - [Obsolete("Use out overload instead")] - [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] - [CLSCompliant(false)] - public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL4.ProgramProperty[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } - /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Retrieve values for multiple properties of a single active resource within a program object /// @@ -26554,7 +26534,6 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: 1] /// [length: bufSize] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] ref OpenTK.Graphics.OpenGL4.ProgramProperty props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -26577,7 +26556,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] - public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL4.ProgramProperty* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL4.ProgramProperty* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Retrieve values for multiple properties of a single active resource within a program object @@ -26594,10 +26573,9 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: 1] /// [length: bufSize] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] - public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL4.ProgramProperty[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL4.ProgramProperty* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Retrieve values for multiple properties of a single active resource within a program object @@ -26633,7 +26611,6 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: 1] /// [length: bufSize] - [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] ref OpenTK.Graphics.OpenGL4.ProgramProperty props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -26656,6 +26633,25 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] + public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL4.ProgramProperty* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] + /// Retrieve values for multiple properties of a single active resource within a program object + /// + /// + /// The name of a program object whose resources to query. + /// + /// + /// A token identifying the interface within program containing the resource named name. + /// + /// + /// + /// [length: propCount] + /// + /// [length: 1] + /// [length: bufSize] + [AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")] + [CLSCompliant(false)] public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL4.ProgramProperty* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] From 386d4e6a1930c1e76693bd7240aeeeeaf1db612c Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Thu, 5 Oct 2017 15:32:39 +0100 Subject: [PATCH 71/91] Fix bug where count overrides didn't effect ComputeSize ComputeSize and ElementCount should match each other (and they do when read direct from XML spec files). However when using the override file to change count only ElementCount was effected. This is now fixed so that ComputeSize is set and also so that ElementCount gets reset to 0 if the count value isn't an integer. --- src/Generator.Bind/FuncProcessor.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/Generator.Bind/FuncProcessor.cs b/src/Generator.Bind/FuncProcessor.cs index 7755f40e..c5ce9b52 100644 --- a/src/Generator.Bind/FuncProcessor.cs +++ b/src/Generator.Bind/FuncProcessor.cs @@ -536,11 +536,16 @@ namespace Bind d.Parameters[i].Flow = Parameter.GetFlowDirection((string)node.TypedValue); break; case "count": + d.Parameters[i].ComputeSize = node.Value.Trim(); int count; - if (Int32.TryParse(node.Value, out count)) + if (Int32.TryParse(d.Parameters[i].ComputeSize, out count)) { d.Parameters[i].ElementCount = count; } + else + { + d.Parameters[i].ElementCount = 0; + } break; } } From 8efe765529e57e974a9786c8d1a7741f3edc709d Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Thu, 5 Oct 2017 22:47:08 +0100 Subject: [PATCH 72/91] Skip null entries when enumerating DeviceCollection Fixes #656. DeviceCollection used the underlying List's enumerator. But we replace entries in the list with nulls to save memory movement. This commit adds a custom enumerator that skips nulls in the list. --- src/OpenTK/Platform/DeviceCollection.cs | 58 ++++++++++++++++++++++--- 1 file changed, 53 insertions(+), 5 deletions(-) diff --git a/src/OpenTK/Platform/DeviceCollection.cs b/src/OpenTK/Platform/DeviceCollection.cs index 76bada03..6a489948 100644 --- a/src/OpenTK/Platform/DeviceCollection.cs +++ b/src/OpenTK/Platform/DeviceCollection.cs @@ -25,6 +25,7 @@ // THE SOFTWARE. // +using System.Collections; using System.Collections.Generic; using System.Diagnostics; @@ -38,23 +39,70 @@ namespace OpenTK.Platform // that is added. internal class DeviceCollection : IEnumerable { + internal struct Enumerator : IEnumerator + { + private int Index; + private DeviceCollection Collection; + + internal Enumerator(DeviceCollection collection) + { + Collection = collection; + Index = -1; + Current = default(T); + } + + public T Current { get; private set; } + + object IEnumerator.Current + { + get + { + return Current; + } + } + + public void Dispose() + { + } + + public bool MoveNext() + { + do + { + ++Index; + if (Index < Collection.Devices.Count) + { + Current = Collection.Devices[Index]; + } + } while (Index < Collection.Devices.Count && Collection.Devices[Index] == null); + + return Index < Collection.Devices.Count; + } + + public void Reset() + { + Index = -1; + Current = default(T); + } + } + private readonly Dictionary Map = new Dictionary(); private readonly List Devices = new List(); IEnumerator IEnumerable.GetEnumerator() { - return Devices.GetEnumerator(); + return new Enumerator(this); } - System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() + IEnumerator IEnumerable.GetEnumerator() { - return GetEnumerator(); + return new Enumerator(this); } // This avoids boxing when using foreach loops - public List.Enumerator GetEnumerator() + public Enumerator GetEnumerator() { - return Devices.GetEnumerator(); + return new Enumerator(this); } public T this[int index] From 5b6851cc10050ad6e5d006080a34b17ff0b1a7f1 Mon Sep 17 00:00:00 2001 From: Tyron Madlener Date: Thu, 12 Oct 2017 11:55:41 +0200 Subject: [PATCH 73/91] Fix dead manual link using archive.org --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1d016fc4..8da355d2 100644 --- a/README.md +++ b/README.md @@ -181,7 +181,7 @@ Requirements Documentation ============= -Your favorite IDE will display inline documentation for all OpenTK APIs. Additional information can be found in the [OpenTK Manual](http://www.opentk.com/doc) and in the [opentk/Documentation/](https://github.com/opentk/opentk/tree/develop/Documentation) folder. +Your favorite IDE will display inline documentation for all OpenTK APIs. Additional information can be found in the [OpenTK Manual](http://web.archive.org/web/20150923092918/http://www.opentk.com/doc). Technical documentation about the implementation of OpenTK can be found in the [Technical Wiki](https://github.com/opentk/opentk/wiki). From 09f7691b6e1f2f7e29ddf018b0d8380ce2a59c3a Mon Sep 17 00:00:00 2001 From: Tyron Madlener Date: Thu, 12 Oct 2017 11:58:56 +0200 Subject: [PATCH 74/91] Use older version where more links work --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8da355d2..6337f131 100644 --- a/README.md +++ b/README.md @@ -181,7 +181,7 @@ Requirements Documentation ============= -Your favorite IDE will display inline documentation for all OpenTK APIs. Additional information can be found in the [OpenTK Manual](http://web.archive.org/web/20150923092918/http://www.opentk.com/doc). +Your favorite IDE will display inline documentation for all OpenTK APIs. Additional information can be found in the [OpenTK Manual](http://web.archive.org/web/20150325224427/http://www.opentk.com/doc). Technical documentation about the implementation of OpenTK can be found in the [Technical Wiki](https://github.com/opentk/opentk/wiki). From 4cdaea4747e3825215630e2490a974d80e2552be Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Wed, 4 Oct 2017 11:35:26 +0100 Subject: [PATCH 75/91] Fix bug in Rewrite that didn't detect missing CountAttributes --- src/Generator.Rewrite/Program.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Generator.Rewrite/Program.cs b/src/Generator.Rewrite/Program.cs index f3a809b8..40040029 100644 --- a/src/Generator.Rewrite/Program.cs +++ b/src/Generator.Rewrite/Program.cs @@ -863,9 +863,10 @@ namespace OpenTK.Rewrite var attribute = parameter.CustomAttributes .FirstOrDefault(a => a.AttributeType.Name == "CountAttribute"); - var count = new CountAttribute(); + CountAttribute count = null; if (attribute != null) { + count = new CountAttribute(); count.Count = (int)(GetAttributeField(attribute, "Count") ?? 0); count.Parameter = (string)(GetAttributeField(attribute, "Parameter")); count.Computed = (string)(GetAttributeField(attribute, "Computed")); From 62d1072f7102ac1c626d7ebf8124125d7bebdee9 Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Wed, 4 Oct 2017 13:49:33 +0100 Subject: [PATCH 76/91] Override flow direction for glGetPerfQueryIdByNameINTEL The function in the OpenGL specification is not const correct. --- .../Specifications/GL2/overrides.xml | 9 +++++++++ src/OpenTK/Graphics/OpenGL/GL.cs | 16 ++++++++-------- src/OpenTK/Graphics/OpenGL4/GL4.cs | 16 ++++++++-------- 3 files changed, 25 insertions(+), 16 deletions(-) diff --git a/src/Generator.Bind/Specifications/GL2/overrides.xml b/src/Generator.Bind/Specifications/GL2/overrides.xml index fe4dd4bc..9aa80dc1 100644 --- a/src/Generator.Bind/Specifications/GL2/overrides.xml +++ b/src/Generator.Bind/Specifications/GL2/overrides.xml @@ -7440,4 +7440,13 @@ + + + + + + in + + + diff --git a/src/OpenTK/Graphics/OpenGL/GL.cs b/src/OpenTK/Graphics/OpenGL/GL.cs index 1a518991..9fb94f01 100644 --- a/src/OpenTK/Graphics/OpenGL/GL.cs +++ b/src/OpenTK/Graphics/OpenGL/GL.cs @@ -110605,49 +110605,49 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static Int32 GetPerfQueryIdByName([OutAttribute] out String queryName) { throw new BindingsNotRewrittenException(); } + public static Int32 GetPerfQueryIdByName(String queryName) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32[] queryId) { throw new BindingsNotRewrittenException(); } + public static void GetPerfQueryIdByName(String queryName, [OutAttribute] Int32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out Int32 queryId) { throw new BindingsNotRewrittenException(); } + public static void GetPerfQueryIdByName(String queryName, [OutAttribute] out Int32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32* queryId) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPerfQueryIdByName(String queryName, [OutAttribute] Int32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32[] queryId) { throw new BindingsNotRewrittenException(); } + public static void GetPerfQueryIdByName(String queryName, [OutAttribute] UInt32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out UInt32 queryId) { throw new BindingsNotRewrittenException(); } + public static void GetPerfQueryIdByName(String queryName, [OutAttribute] out UInt32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32* queryId) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPerfQueryIdByName(String queryName, [OutAttribute] UInt32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -147804,7 +147804,7 @@ namespace OpenTK.Graphics.OpenGL private static extern unsafe void glGetPerfQueryDataINTEL(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32* bytesWritten); [Slot(958)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPerfQueryIdByNameINTEL([OutAttribute] IntPtr queryName, [OutAttribute] UInt32* queryId); + private static extern unsafe void glGetPerfQueryIdByNameINTEL(IntPtr queryName, [OutAttribute] UInt32* queryId); [Slot(959)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetPerfQueryInfoINTEL(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] IntPtr queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask); diff --git a/src/OpenTK/Graphics/OpenGL4/GL4.cs b/src/OpenTK/Graphics/OpenGL4/GL4.cs index 5692a616..c37bc7da 100644 --- a/src/OpenTK/Graphics/OpenGL4/GL4.cs +++ b/src/OpenTK/Graphics/OpenGL4/GL4.cs @@ -63815,49 +63815,49 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static Int32 GetPerfQueryIdByName([OutAttribute] out String queryName) { throw new BindingsNotRewrittenException(); } + public static Int32 GetPerfQueryIdByName(String queryName) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32[] queryId) { throw new BindingsNotRewrittenException(); } + public static void GetPerfQueryIdByName(String queryName, [OutAttribute] Int32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out Int32 queryId) { throw new BindingsNotRewrittenException(); } + public static void GetPerfQueryIdByName(String queryName, [OutAttribute] out Int32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32* queryId) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPerfQueryIdByName(String queryName, [OutAttribute] Int32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32[] queryId) { throw new BindingsNotRewrittenException(); } + public static void GetPerfQueryIdByName(String queryName, [OutAttribute] UInt32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out UInt32 queryId) { throw new BindingsNotRewrittenException(); } + public static void GetPerfQueryIdByName(String queryName, [OutAttribute] out UInt32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32* queryId) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPerfQueryIdByName(String queryName, [OutAttribute] UInt32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -80168,7 +80168,7 @@ namespace OpenTK.Graphics.OpenGL4 private static extern unsafe void glGetPerfQueryDataINTEL(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32* bytesWritten); [Slot(493)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPerfQueryIdByNameINTEL([OutAttribute] IntPtr queryName, [OutAttribute] UInt32* queryId); + private static extern unsafe void glGetPerfQueryIdByNameINTEL(IntPtr queryName, [OutAttribute] UInt32* queryId); [Slot(494)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetPerfQueryInfoINTEL(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] IntPtr queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask); From 602045f08557a7e114770ac17f9157937030be17 Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Thu, 5 Oct 2017 15:46:15 +0100 Subject: [PATCH 77/91] Add count attributes to GetPerfCounterInfoINTEL out string/array parameters --- .../Specifications/GL2/overrides.xml | 10 +++ src/OpenTK/Graphics/ES20/ES20.cs | 80 +++++++++---------- src/OpenTK/Graphics/ES30/ES30.cs | 80 +++++++++---------- src/OpenTK/Graphics/ES31/ES31.cs | 80 +++++++++---------- src/OpenTK/Graphics/OpenGL/GL.cs | 38 ++++----- src/OpenTK/Graphics/OpenGL4/GL4.cs | 38 ++++----- 6 files changed, 168 insertions(+), 158 deletions(-) diff --git a/src/Generator.Bind/Specifications/GL2/overrides.xml b/src/Generator.Bind/Specifications/GL2/overrides.xml index 9aa80dc1..d8221cbb 100644 --- a/src/Generator.Bind/Specifications/GL2/overrides.xml +++ b/src/Generator.Bind/Specifications/GL2/overrides.xml @@ -7448,5 +7448,15 @@ in + + + + + counterNameLength + + + counterDescLength + + diff --git a/src/OpenTK/Graphics/ES20/ES20.cs b/src/OpenTK/Graphics/ES20/ES20.cs index 815f14e4..5ea99a67 100644 --- a/src/OpenTK/Graphics/ES20/ES20.cs +++ b/src/OpenTK/Graphics/ES20/ES20.cs @@ -33041,9 +33041,9 @@ namespace OpenTK.Graphics.ES20 /// /// /// - /// + /// [length: counterNameLength] /// - /// + /// [length: counterDescLength] /// /// /// @@ -33051,15 +33051,15 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32[] counterOffset, [OutAttribute] Int32[] counterDataSize, [OutAttribute] Int32[] counterTypeEnum, [OutAttribute] Int32[] counterDataTypeEnum, [OutAttribute] Int64[] rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } + public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute, CountAttribute(Parameter = "counterNameLength")] out String counterName, Int32 counterDescLength, [OutAttribute, CountAttribute(Parameter = "counterDescLength")] out String counterDesc, [OutAttribute] Int32[] counterOffset, [OutAttribute] Int32[] counterDataSize, [OutAttribute] Int32[] counterTypeEnum, [OutAttribute] Int32[] counterDataTypeEnum, [OutAttribute] Int64[] rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// /// - /// + /// [length: counterNameLength] /// - /// + /// [length: counterDescLength] /// /// /// @@ -33067,15 +33067,15 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out Int32 counterOffset, [OutAttribute] out Int32 counterDataSize, [OutAttribute] out Int32 counterTypeEnum, [OutAttribute] out Int32 counterDataTypeEnum, [OutAttribute] out Int64 rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } + public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute, CountAttribute(Parameter = "counterNameLength")] out String counterName, Int32 counterDescLength, [OutAttribute, CountAttribute(Parameter = "counterDescLength")] out String counterDesc, [OutAttribute] out Int32 counterOffset, [OutAttribute] out Int32 counterDataSize, [OutAttribute] out Int32 counterTypeEnum, [OutAttribute] out Int32 counterDataTypeEnum, [OutAttribute] out Int64 rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// /// - /// + /// [length: counterNameLength] /// - /// + /// [length: counterDescLength] /// /// /// @@ -33083,15 +33083,15 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32* counterOffset, [OutAttribute] Int32* counterDataSize, [OutAttribute] Int32* counterTypeEnum, [OutAttribute] Int32* counterDataTypeEnum, [OutAttribute] Int64* rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute, CountAttribute(Parameter = "counterNameLength")] out String counterName, Int32 counterDescLength, [OutAttribute, CountAttribute(Parameter = "counterDescLength")] out String counterDesc, [OutAttribute] Int32* counterOffset, [OutAttribute] Int32* counterDataSize, [OutAttribute] Int32* counterTypeEnum, [OutAttribute] Int32* counterDataTypeEnum, [OutAttribute] Int64* rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// /// - /// + /// [length: counterNameLength] /// - /// + /// [length: counterDescLength] /// /// /// @@ -33099,15 +33099,15 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32[] counterOffset, [OutAttribute] UInt32[] counterDataSize, [OutAttribute] UInt32[] counterTypeEnum, [OutAttribute] UInt32[] counterDataTypeEnum, [OutAttribute] UInt64[] rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } + public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute, CountAttribute(Parameter = "counterNameLength")] out String counterName, UInt32 counterDescLength, [OutAttribute, CountAttribute(Parameter = "counterDescLength")] out String counterDesc, [OutAttribute] UInt32[] counterOffset, [OutAttribute] UInt32[] counterDataSize, [OutAttribute] UInt32[] counterTypeEnum, [OutAttribute] UInt32[] counterDataTypeEnum, [OutAttribute] UInt64[] rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// /// - /// + /// [length: counterNameLength] /// - /// + /// [length: counterDescLength] /// /// /// @@ -33115,15 +33115,15 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out UInt32 counterOffset, [OutAttribute] out UInt32 counterDataSize, [OutAttribute] out UInt32 counterTypeEnum, [OutAttribute] out UInt32 counterDataTypeEnum, [OutAttribute] out UInt64 rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } + public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute, CountAttribute(Parameter = "counterNameLength")] out String counterName, UInt32 counterDescLength, [OutAttribute, CountAttribute(Parameter = "counterDescLength")] out String counterDesc, [OutAttribute] out UInt32 counterOffset, [OutAttribute] out UInt32 counterDataSize, [OutAttribute] out UInt32 counterTypeEnum, [OutAttribute] out UInt32 counterDataTypeEnum, [OutAttribute] out UInt64 rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// /// - /// + /// [length: counterNameLength] /// - /// + /// [length: counterDescLength] /// /// /// @@ -33131,7 +33131,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute, CountAttribute(Parameter = "counterNameLength")] out String counterName, UInt32 counterDescLength, [OutAttribute, CountAttribute(Parameter = "counterDescLength")] out String counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33485,121 +33485,121 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static Int32 GetPerfQueryIdByName([OutAttribute] out String queryName) { throw new BindingsNotRewrittenException(); } + public static Int32 GetPerfQueryIdByName(String queryName) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32[] queryId) { throw new BindingsNotRewrittenException(); } + public static void GetPerfQueryIdByName(String queryName, [OutAttribute] Int32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out Int32 queryId) { throw new BindingsNotRewrittenException(); } + public static void GetPerfQueryIdByName(String queryName, [OutAttribute] out Int32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32* queryId) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPerfQueryIdByName(String queryName, [OutAttribute] Int32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32[] queryId) { throw new BindingsNotRewrittenException(); } + public static void GetPerfQueryIdByName(String queryName, [OutAttribute] UInt32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out UInt32 queryId) { throw new BindingsNotRewrittenException(); } + public static void GetPerfQueryIdByName(String queryName, [OutAttribute] out UInt32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32* queryId) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPerfQueryIdByName(String queryName, [OutAttribute] UInt32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// - /// + /// [length: queryNameLength] /// /// /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32[] dataSize, [OutAttribute] Int32[] noCounters, [OutAttribute] Int32[] noInstances, [OutAttribute] Int32[] capsMask) { throw new BindingsNotRewrittenException(); } + public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute, CountAttribute(Parameter = "queryNameLength")] out String queryName, [OutAttribute] Int32[] dataSize, [OutAttribute] Int32[] noCounters, [OutAttribute] Int32[] noInstances, [OutAttribute] Int32[] capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// - /// + /// [length: queryNameLength] /// /// /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out Int32 dataSize, [OutAttribute] out Int32 noCounters, [OutAttribute] out Int32 noInstances, [OutAttribute] out Int32 capsMask) { throw new BindingsNotRewrittenException(); } + public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute, CountAttribute(Parameter = "queryNameLength")] out String queryName, [OutAttribute] out Int32 dataSize, [OutAttribute] out Int32 noCounters, [OutAttribute] out Int32 noInstances, [OutAttribute] out Int32 capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// - /// + /// [length: queryNameLength] /// /// /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32* dataSize, [OutAttribute] Int32* noCounters, [OutAttribute] Int32* noInstances, [OutAttribute] Int32* capsMask) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute, CountAttribute(Parameter = "queryNameLength")] out String queryName, [OutAttribute] Int32* dataSize, [OutAttribute] Int32* noCounters, [OutAttribute] Int32* noInstances, [OutAttribute] Int32* capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// - /// + /// [length: queryNameLength] /// /// /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32[] dataSize, [OutAttribute] UInt32[] noCounters, [OutAttribute] UInt32[] noInstances, [OutAttribute] UInt32[] capsMask) { throw new BindingsNotRewrittenException(); } + public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute, CountAttribute(Parameter = "queryNameLength")] out String queryName, [OutAttribute] UInt32[] dataSize, [OutAttribute] UInt32[] noCounters, [OutAttribute] UInt32[] noInstances, [OutAttribute] UInt32[] capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// - /// + /// [length: queryNameLength] /// /// /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out UInt32 dataSize, [OutAttribute] out UInt32 noCounters, [OutAttribute] out UInt32 noInstances, [OutAttribute] out UInt32 capsMask) { throw new BindingsNotRewrittenException(); } + public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute, CountAttribute(Parameter = "queryNameLength")] out String queryName, [OutAttribute] out UInt32 dataSize, [OutAttribute] out UInt32 noCounters, [OutAttribute] out UInt32 noInstances, [OutAttribute] out UInt32 capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// - /// + /// [length: queryNameLength] /// /// /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute, CountAttribute(Parameter = "queryNameLength")] out String queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask) { throw new BindingsNotRewrittenException(); } } @@ -54626,16 +54626,16 @@ namespace OpenTK.Graphics.ES20 private static extern unsafe void glGetNextPerfQueryIdINTEL(UInt32 queryId, [OutAttribute] UInt32* nextQueryId); [Slot(262)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPerfCounterInfoINTEL(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] IntPtr counterName, UInt32 counterDescLength, [OutAttribute] IntPtr counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue); + private static extern unsafe void glGetPerfCounterInfoINTEL(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute, CountAttribute(Parameter = "counterNameLength")] IntPtr counterName, UInt32 counterDescLength, [OutAttribute, CountAttribute(Parameter = "counterDescLength")] IntPtr counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue); [Slot(269)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetPerfQueryDataINTEL(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32* bytesWritten); [Slot(270)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPerfQueryIdByNameINTEL([OutAttribute] IntPtr queryName, [OutAttribute] UInt32* queryId); + private static extern unsafe void glGetPerfQueryIdByNameINTEL(IntPtr queryName, [OutAttribute] UInt32* queryId); [Slot(271)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPerfQueryInfoINTEL(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] IntPtr queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask); + private static extern unsafe void glGetPerfQueryInfoINTEL(UInt32 queryId, UInt32 queryNameLength, [OutAttribute, CountAttribute(Parameter = "queryNameLength")] IntPtr queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask); [Slot(20)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glBlendBarrierKHR(); diff --git a/src/OpenTK/Graphics/ES30/ES30.cs b/src/OpenTK/Graphics/ES30/ES30.cs index 2c0c275f..a2ea1d3e 100644 --- a/src/OpenTK/Graphics/ES30/ES30.cs +++ b/src/OpenTK/Graphics/ES30/ES30.cs @@ -41438,9 +41438,9 @@ namespace OpenTK.Graphics.ES30 /// /// /// - /// + /// [length: counterNameLength] /// - /// + /// [length: counterDescLength] /// /// /// @@ -41448,15 +41448,15 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32[] counterOffset, [OutAttribute] Int32[] counterDataSize, [OutAttribute] Int32[] counterTypeEnum, [OutAttribute] Int32[] counterDataTypeEnum, [OutAttribute] Int64[] rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } + public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute, CountAttribute(Parameter = "counterNameLength")] out String counterName, Int32 counterDescLength, [OutAttribute, CountAttribute(Parameter = "counterDescLength")] out String counterDesc, [OutAttribute] Int32[] counterOffset, [OutAttribute] Int32[] counterDataSize, [OutAttribute] Int32[] counterTypeEnum, [OutAttribute] Int32[] counterDataTypeEnum, [OutAttribute] Int64[] rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// /// - /// + /// [length: counterNameLength] /// - /// + /// [length: counterDescLength] /// /// /// @@ -41464,15 +41464,15 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out Int32 counterOffset, [OutAttribute] out Int32 counterDataSize, [OutAttribute] out Int32 counterTypeEnum, [OutAttribute] out Int32 counterDataTypeEnum, [OutAttribute] out Int64 rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } + public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute, CountAttribute(Parameter = "counterNameLength")] out String counterName, Int32 counterDescLength, [OutAttribute, CountAttribute(Parameter = "counterDescLength")] out String counterDesc, [OutAttribute] out Int32 counterOffset, [OutAttribute] out Int32 counterDataSize, [OutAttribute] out Int32 counterTypeEnum, [OutAttribute] out Int32 counterDataTypeEnum, [OutAttribute] out Int64 rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// /// - /// + /// [length: counterNameLength] /// - /// + /// [length: counterDescLength] /// /// /// @@ -41480,15 +41480,15 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32* counterOffset, [OutAttribute] Int32* counterDataSize, [OutAttribute] Int32* counterTypeEnum, [OutAttribute] Int32* counterDataTypeEnum, [OutAttribute] Int64* rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute, CountAttribute(Parameter = "counterNameLength")] out String counterName, Int32 counterDescLength, [OutAttribute, CountAttribute(Parameter = "counterDescLength")] out String counterDesc, [OutAttribute] Int32* counterOffset, [OutAttribute] Int32* counterDataSize, [OutAttribute] Int32* counterTypeEnum, [OutAttribute] Int32* counterDataTypeEnum, [OutAttribute] Int64* rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// /// - /// + /// [length: counterNameLength] /// - /// + /// [length: counterDescLength] /// /// /// @@ -41496,15 +41496,15 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32[] counterOffset, [OutAttribute] UInt32[] counterDataSize, [OutAttribute] UInt32[] counterTypeEnum, [OutAttribute] UInt32[] counterDataTypeEnum, [OutAttribute] UInt64[] rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } + public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute, CountAttribute(Parameter = "counterNameLength")] out String counterName, UInt32 counterDescLength, [OutAttribute, CountAttribute(Parameter = "counterDescLength")] out String counterDesc, [OutAttribute] UInt32[] counterOffset, [OutAttribute] UInt32[] counterDataSize, [OutAttribute] UInt32[] counterTypeEnum, [OutAttribute] UInt32[] counterDataTypeEnum, [OutAttribute] UInt64[] rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// /// - /// + /// [length: counterNameLength] /// - /// + /// [length: counterDescLength] /// /// /// @@ -41512,15 +41512,15 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out UInt32 counterOffset, [OutAttribute] out UInt32 counterDataSize, [OutAttribute] out UInt32 counterTypeEnum, [OutAttribute] out UInt32 counterDataTypeEnum, [OutAttribute] out UInt64 rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } + public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute, CountAttribute(Parameter = "counterNameLength")] out String counterName, UInt32 counterDescLength, [OutAttribute, CountAttribute(Parameter = "counterDescLength")] out String counterDesc, [OutAttribute] out UInt32 counterOffset, [OutAttribute] out UInt32 counterDataSize, [OutAttribute] out UInt32 counterTypeEnum, [OutAttribute] out UInt32 counterDataTypeEnum, [OutAttribute] out UInt64 rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// /// - /// + /// [length: counterNameLength] /// - /// + /// [length: counterDescLength] /// /// /// @@ -41528,7 +41528,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute, CountAttribute(Parameter = "counterNameLength")] out String counterName, UInt32 counterDescLength, [OutAttribute, CountAttribute(Parameter = "counterDescLength")] out String counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41882,121 +41882,121 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static Int32 GetPerfQueryIdByName([OutAttribute] out String queryName) { throw new BindingsNotRewrittenException(); } + public static Int32 GetPerfQueryIdByName(String queryName) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32[] queryId) { throw new BindingsNotRewrittenException(); } + public static void GetPerfQueryIdByName(String queryName, [OutAttribute] Int32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out Int32 queryId) { throw new BindingsNotRewrittenException(); } + public static void GetPerfQueryIdByName(String queryName, [OutAttribute] out Int32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32* queryId) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPerfQueryIdByName(String queryName, [OutAttribute] Int32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32[] queryId) { throw new BindingsNotRewrittenException(); } + public static void GetPerfQueryIdByName(String queryName, [OutAttribute] UInt32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out UInt32 queryId) { throw new BindingsNotRewrittenException(); } + public static void GetPerfQueryIdByName(String queryName, [OutAttribute] out UInt32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32* queryId) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPerfQueryIdByName(String queryName, [OutAttribute] UInt32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// - /// + /// [length: queryNameLength] /// /// /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32[] dataSize, [OutAttribute] Int32[] noCounters, [OutAttribute] Int32[] noInstances, [OutAttribute] Int32[] capsMask) { throw new BindingsNotRewrittenException(); } + public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute, CountAttribute(Parameter = "queryNameLength")] out String queryName, [OutAttribute] Int32[] dataSize, [OutAttribute] Int32[] noCounters, [OutAttribute] Int32[] noInstances, [OutAttribute] Int32[] capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// - /// + /// [length: queryNameLength] /// /// /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out Int32 dataSize, [OutAttribute] out Int32 noCounters, [OutAttribute] out Int32 noInstances, [OutAttribute] out Int32 capsMask) { throw new BindingsNotRewrittenException(); } + public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute, CountAttribute(Parameter = "queryNameLength")] out String queryName, [OutAttribute] out Int32 dataSize, [OutAttribute] out Int32 noCounters, [OutAttribute] out Int32 noInstances, [OutAttribute] out Int32 capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// - /// + /// [length: queryNameLength] /// /// /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32* dataSize, [OutAttribute] Int32* noCounters, [OutAttribute] Int32* noInstances, [OutAttribute] Int32* capsMask) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute, CountAttribute(Parameter = "queryNameLength")] out String queryName, [OutAttribute] Int32* dataSize, [OutAttribute] Int32* noCounters, [OutAttribute] Int32* noInstances, [OutAttribute] Int32* capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// - /// + /// [length: queryNameLength] /// /// /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32[] dataSize, [OutAttribute] UInt32[] noCounters, [OutAttribute] UInt32[] noInstances, [OutAttribute] UInt32[] capsMask) { throw new BindingsNotRewrittenException(); } + public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute, CountAttribute(Parameter = "queryNameLength")] out String queryName, [OutAttribute] UInt32[] dataSize, [OutAttribute] UInt32[] noCounters, [OutAttribute] UInt32[] noInstances, [OutAttribute] UInt32[] capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// - /// + /// [length: queryNameLength] /// /// /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out UInt32 dataSize, [OutAttribute] out UInt32 noCounters, [OutAttribute] out UInt32 noInstances, [OutAttribute] out UInt32 capsMask) { throw new BindingsNotRewrittenException(); } + public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute, CountAttribute(Parameter = "queryNameLength")] out String queryName, [OutAttribute] out UInt32 dataSize, [OutAttribute] out UInt32 noCounters, [OutAttribute] out UInt32 noInstances, [OutAttribute] out UInt32 capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// - /// + /// [length: queryNameLength] /// /// /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute, CountAttribute(Parameter = "queryNameLength")] out String queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask) { throw new BindingsNotRewrittenException(); } } @@ -62951,16 +62951,16 @@ namespace OpenTK.Graphics.ES30 private static extern unsafe void glGetNextPerfQueryIdINTEL(UInt32 queryId, [OutAttribute] UInt32* nextQueryId); [Slot(307)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPerfCounterInfoINTEL(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] IntPtr counterName, UInt32 counterDescLength, [OutAttribute] IntPtr counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue); + private static extern unsafe void glGetPerfCounterInfoINTEL(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute, CountAttribute(Parameter = "counterNameLength")] IntPtr counterName, UInt32 counterDescLength, [OutAttribute, CountAttribute(Parameter = "counterDescLength")] IntPtr counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue); [Slot(314)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetPerfQueryDataINTEL(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32* bytesWritten); [Slot(315)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPerfQueryIdByNameINTEL([OutAttribute] IntPtr queryName, [OutAttribute] UInt32* queryId); + private static extern unsafe void glGetPerfQueryIdByNameINTEL(IntPtr queryName, [OutAttribute] UInt32* queryId); [Slot(316)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPerfQueryInfoINTEL(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] IntPtr queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask); + private static extern unsafe void glGetPerfQueryInfoINTEL(UInt32 queryId, UInt32 queryNameLength, [OutAttribute, CountAttribute(Parameter = "queryNameLength")] IntPtr queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask); [Slot(27)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glBlendBarrierKHR(); diff --git a/src/OpenTK/Graphics/ES31/ES31.cs b/src/OpenTK/Graphics/ES31/ES31.cs index 794ebdeb..42c4b5b1 100644 --- a/src/OpenTK/Graphics/ES31/ES31.cs +++ b/src/OpenTK/Graphics/ES31/ES31.cs @@ -40060,9 +40060,9 @@ namespace OpenTK.Graphics.ES31 /// /// /// - /// + /// [length: counterNameLength] /// - /// + /// [length: counterDescLength] /// /// /// @@ -40070,15 +40070,15 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32[] counterOffset, [OutAttribute] Int32[] counterDataSize, [OutAttribute] Int32[] counterTypeEnum, [OutAttribute] Int32[] counterDataTypeEnum, [OutAttribute] Int64[] rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } + public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute, CountAttribute(Parameter = "counterNameLength")] out String counterName, Int32 counterDescLength, [OutAttribute, CountAttribute(Parameter = "counterDescLength")] out String counterDesc, [OutAttribute] Int32[] counterOffset, [OutAttribute] Int32[] counterDataSize, [OutAttribute] Int32[] counterTypeEnum, [OutAttribute] Int32[] counterDataTypeEnum, [OutAttribute] Int64[] rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// /// - /// + /// [length: counterNameLength] /// - /// + /// [length: counterDescLength] /// /// /// @@ -40086,15 +40086,15 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out Int32 counterOffset, [OutAttribute] out Int32 counterDataSize, [OutAttribute] out Int32 counterTypeEnum, [OutAttribute] out Int32 counterDataTypeEnum, [OutAttribute] out Int64 rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } + public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute, CountAttribute(Parameter = "counterNameLength")] out String counterName, Int32 counterDescLength, [OutAttribute, CountAttribute(Parameter = "counterDescLength")] out String counterDesc, [OutAttribute] out Int32 counterOffset, [OutAttribute] out Int32 counterDataSize, [OutAttribute] out Int32 counterTypeEnum, [OutAttribute] out Int32 counterDataTypeEnum, [OutAttribute] out Int64 rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// /// - /// + /// [length: counterNameLength] /// - /// + /// [length: counterDescLength] /// /// /// @@ -40102,15 +40102,15 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32* counterOffset, [OutAttribute] Int32* counterDataSize, [OutAttribute] Int32* counterTypeEnum, [OutAttribute] Int32* counterDataTypeEnum, [OutAttribute] Int64* rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute, CountAttribute(Parameter = "counterNameLength")] out String counterName, Int32 counterDescLength, [OutAttribute, CountAttribute(Parameter = "counterDescLength")] out String counterDesc, [OutAttribute] Int32* counterOffset, [OutAttribute] Int32* counterDataSize, [OutAttribute] Int32* counterTypeEnum, [OutAttribute] Int32* counterDataTypeEnum, [OutAttribute] Int64* rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// /// - /// + /// [length: counterNameLength] /// - /// + /// [length: counterDescLength] /// /// /// @@ -40118,15 +40118,15 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32[] counterOffset, [OutAttribute] UInt32[] counterDataSize, [OutAttribute] UInt32[] counterTypeEnum, [OutAttribute] UInt32[] counterDataTypeEnum, [OutAttribute] UInt64[] rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } + public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute, CountAttribute(Parameter = "counterNameLength")] out String counterName, UInt32 counterDescLength, [OutAttribute, CountAttribute(Parameter = "counterDescLength")] out String counterDesc, [OutAttribute] UInt32[] counterOffset, [OutAttribute] UInt32[] counterDataSize, [OutAttribute] UInt32[] counterTypeEnum, [OutAttribute] UInt32[] counterDataTypeEnum, [OutAttribute] UInt64[] rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// /// - /// + /// [length: counterNameLength] /// - /// + /// [length: counterDescLength] /// /// /// @@ -40134,15 +40134,15 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out UInt32 counterOffset, [OutAttribute] out UInt32 counterDataSize, [OutAttribute] out UInt32 counterTypeEnum, [OutAttribute] out UInt32 counterDataTypeEnum, [OutAttribute] out UInt64 rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } + public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute, CountAttribute(Parameter = "counterNameLength")] out String counterName, UInt32 counterDescLength, [OutAttribute, CountAttribute(Parameter = "counterDescLength")] out String counterDesc, [OutAttribute] out UInt32 counterOffset, [OutAttribute] out UInt32 counterDataSize, [OutAttribute] out UInt32 counterTypeEnum, [OutAttribute] out UInt32 counterDataTypeEnum, [OutAttribute] out UInt64 rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// /// - /// + /// [length: counterNameLength] /// - /// + /// [length: counterDescLength] /// /// /// @@ -40150,7 +40150,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute, CountAttribute(Parameter = "counterNameLength")] out String counterName, UInt32 counterDescLength, [OutAttribute, CountAttribute(Parameter = "counterDescLength")] out String counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40504,121 +40504,121 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static Int32 GetPerfQueryIdByName([OutAttribute] out String queryName) { throw new BindingsNotRewrittenException(); } + public static Int32 GetPerfQueryIdByName(String queryName) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32[] queryId) { throw new BindingsNotRewrittenException(); } + public static void GetPerfQueryIdByName(String queryName, [OutAttribute] Int32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out Int32 queryId) { throw new BindingsNotRewrittenException(); } + public static void GetPerfQueryIdByName(String queryName, [OutAttribute] out Int32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32* queryId) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPerfQueryIdByName(String queryName, [OutAttribute] Int32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32[] queryId) { throw new BindingsNotRewrittenException(); } + public static void GetPerfQueryIdByName(String queryName, [OutAttribute] UInt32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out UInt32 queryId) { throw new BindingsNotRewrittenException(); } + public static void GetPerfQueryIdByName(String queryName, [OutAttribute] out UInt32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32* queryId) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPerfQueryIdByName(String queryName, [OutAttribute] UInt32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// - /// + /// [length: queryNameLength] /// /// /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32[] dataSize, [OutAttribute] Int32[] noCounters, [OutAttribute] Int32[] noInstances, [OutAttribute] Int32[] capsMask) { throw new BindingsNotRewrittenException(); } + public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute, CountAttribute(Parameter = "queryNameLength")] out String queryName, [OutAttribute] Int32[] dataSize, [OutAttribute] Int32[] noCounters, [OutAttribute] Int32[] noInstances, [OutAttribute] Int32[] capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// - /// + /// [length: queryNameLength] /// /// /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out Int32 dataSize, [OutAttribute] out Int32 noCounters, [OutAttribute] out Int32 noInstances, [OutAttribute] out Int32 capsMask) { throw new BindingsNotRewrittenException(); } + public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute, CountAttribute(Parameter = "queryNameLength")] out String queryName, [OutAttribute] out Int32 dataSize, [OutAttribute] out Int32 noCounters, [OutAttribute] out Int32 noInstances, [OutAttribute] out Int32 capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// - /// + /// [length: queryNameLength] /// /// /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32* dataSize, [OutAttribute] Int32* noCounters, [OutAttribute] Int32* noInstances, [OutAttribute] Int32* capsMask) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute, CountAttribute(Parameter = "queryNameLength")] out String queryName, [OutAttribute] Int32* dataSize, [OutAttribute] Int32* noCounters, [OutAttribute] Int32* noInstances, [OutAttribute] Int32* capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// - /// + /// [length: queryNameLength] /// /// /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32[] dataSize, [OutAttribute] UInt32[] noCounters, [OutAttribute] UInt32[] noInstances, [OutAttribute] UInt32[] capsMask) { throw new BindingsNotRewrittenException(); } + public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute, CountAttribute(Parameter = "queryNameLength")] out String queryName, [OutAttribute] UInt32[] dataSize, [OutAttribute] UInt32[] noCounters, [OutAttribute] UInt32[] noInstances, [OutAttribute] UInt32[] capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// - /// + /// [length: queryNameLength] /// /// /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out UInt32 dataSize, [OutAttribute] out UInt32 noCounters, [OutAttribute] out UInt32 noInstances, [OutAttribute] out UInt32 capsMask) { throw new BindingsNotRewrittenException(); } + public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute, CountAttribute(Parameter = "queryNameLength")] out String queryName, [OutAttribute] out UInt32 dataSize, [OutAttribute] out UInt32 noCounters, [OutAttribute] out UInt32 noInstances, [OutAttribute] out UInt32 capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// - /// + /// [length: queryNameLength] /// /// /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute, CountAttribute(Parameter = "queryNameLength")] out String queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask) { throw new BindingsNotRewrittenException(); } } @@ -60140,16 +60140,16 @@ namespace OpenTK.Graphics.ES31 private static extern unsafe void glGetNextPerfQueryIdINTEL(UInt32 queryId, [OutAttribute] UInt32* nextQueryId); [Slot(322)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPerfCounterInfoINTEL(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] IntPtr counterName, UInt32 counterDescLength, [OutAttribute] IntPtr counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue); + private static extern unsafe void glGetPerfCounterInfoINTEL(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute, CountAttribute(Parameter = "counterNameLength")] IntPtr counterName, UInt32 counterDescLength, [OutAttribute, CountAttribute(Parameter = "counterDescLength")] IntPtr counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue); [Slot(329)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetPerfQueryDataINTEL(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32* bytesWritten); [Slot(330)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPerfQueryIdByNameINTEL([OutAttribute] IntPtr queryName, [OutAttribute] UInt32* queryId); + private static extern unsafe void glGetPerfQueryIdByNameINTEL(IntPtr queryName, [OutAttribute] UInt32* queryId); [Slot(331)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPerfQueryInfoINTEL(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] IntPtr queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask); + private static extern unsafe void glGetPerfQueryInfoINTEL(UInt32 queryId, UInt32 queryNameLength, [OutAttribute, CountAttribute(Parameter = "queryNameLength")] IntPtr queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask); [Slot(31)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glBlendBarrierKHR(); diff --git a/src/OpenTK/Graphics/OpenGL/GL.cs b/src/OpenTK/Graphics/OpenGL/GL.cs index 9fb94f01..daba3996 100644 --- a/src/OpenTK/Graphics/OpenGL/GL.cs +++ b/src/OpenTK/Graphics/OpenGL/GL.cs @@ -110161,9 +110161,9 @@ namespace OpenTK.Graphics.OpenGL /// /// /// - /// + /// [length: counterNameLength] /// - /// + /// [length: counterDescLength] /// /// /// @@ -110171,15 +110171,15 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32[] counterOffset, [OutAttribute] Int32[] counterDataSize, [OutAttribute] Int32[] counterTypeEnum, [OutAttribute] Int32[] counterDataTypeEnum, [OutAttribute] Int64[] rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } + public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute, CountAttribute(Parameter = "counterNameLength")] out String counterName, Int32 counterDescLength, [OutAttribute, CountAttribute(Parameter = "counterDescLength")] out String counterDesc, [OutAttribute] Int32[] counterOffset, [OutAttribute] Int32[] counterDataSize, [OutAttribute] Int32[] counterTypeEnum, [OutAttribute] Int32[] counterDataTypeEnum, [OutAttribute] Int64[] rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// /// - /// + /// [length: counterNameLength] /// - /// + /// [length: counterDescLength] /// /// /// @@ -110187,15 +110187,15 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out Int32 counterOffset, [OutAttribute] out Int32 counterDataSize, [OutAttribute] out Int32 counterTypeEnum, [OutAttribute] out Int32 counterDataTypeEnum, [OutAttribute] out Int64 rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } + public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute, CountAttribute(Parameter = "counterNameLength")] out String counterName, Int32 counterDescLength, [OutAttribute, CountAttribute(Parameter = "counterDescLength")] out String counterDesc, [OutAttribute] out Int32 counterOffset, [OutAttribute] out Int32 counterDataSize, [OutAttribute] out Int32 counterTypeEnum, [OutAttribute] out Int32 counterDataTypeEnum, [OutAttribute] out Int64 rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// /// - /// + /// [length: counterNameLength] /// - /// + /// [length: counterDescLength] /// /// /// @@ -110203,15 +110203,15 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32* counterOffset, [OutAttribute] Int32* counterDataSize, [OutAttribute] Int32* counterTypeEnum, [OutAttribute] Int32* counterDataTypeEnum, [OutAttribute] Int64* rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute, CountAttribute(Parameter = "counterNameLength")] out String counterName, Int32 counterDescLength, [OutAttribute, CountAttribute(Parameter = "counterDescLength")] out String counterDesc, [OutAttribute] Int32* counterOffset, [OutAttribute] Int32* counterDataSize, [OutAttribute] Int32* counterTypeEnum, [OutAttribute] Int32* counterDataTypeEnum, [OutAttribute] Int64* rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// /// - /// + /// [length: counterNameLength] /// - /// + /// [length: counterDescLength] /// /// /// @@ -110219,15 +110219,15 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32[] counterOffset, [OutAttribute] UInt32[] counterDataSize, [OutAttribute] UInt32[] counterTypeEnum, [OutAttribute] UInt32[] counterDataTypeEnum, [OutAttribute] UInt64[] rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } + public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute, CountAttribute(Parameter = "counterNameLength")] out String counterName, UInt32 counterDescLength, [OutAttribute, CountAttribute(Parameter = "counterDescLength")] out String counterDesc, [OutAttribute] UInt32[] counterOffset, [OutAttribute] UInt32[] counterDataSize, [OutAttribute] UInt32[] counterTypeEnum, [OutAttribute] UInt32[] counterDataTypeEnum, [OutAttribute] UInt64[] rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// /// - /// + /// [length: counterNameLength] /// - /// + /// [length: counterDescLength] /// /// /// @@ -110235,15 +110235,15 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out UInt32 counterOffset, [OutAttribute] out UInt32 counterDataSize, [OutAttribute] out UInt32 counterTypeEnum, [OutAttribute] out UInt32 counterDataTypeEnum, [OutAttribute] out UInt64 rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } + public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute, CountAttribute(Parameter = "counterNameLength")] out String counterName, UInt32 counterDescLength, [OutAttribute, CountAttribute(Parameter = "counterDescLength")] out String counterDesc, [OutAttribute] out UInt32 counterOffset, [OutAttribute] out UInt32 counterDataSize, [OutAttribute] out UInt32 counterTypeEnum, [OutAttribute] out UInt32 counterDataTypeEnum, [OutAttribute] out UInt64 rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// /// - /// + /// [length: counterNameLength] /// - /// + /// [length: counterDescLength] /// /// /// @@ -110251,7 +110251,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute, CountAttribute(Parameter = "counterNameLength")] out String counterName, UInt32 counterDescLength, [OutAttribute, CountAttribute(Parameter = "counterDescLength")] out String counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -147798,7 +147798,7 @@ namespace OpenTK.Graphics.OpenGL private static extern unsafe void glGetNextPerfQueryIdINTEL(UInt32 queryId, [OutAttribute] UInt32* nextQueryId); [Slot(950)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPerfCounterInfoINTEL(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] IntPtr counterName, UInt32 counterDescLength, [OutAttribute] IntPtr counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue); + private static extern unsafe void glGetPerfCounterInfoINTEL(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute, CountAttribute(Parameter = "counterNameLength")] IntPtr counterName, UInt32 counterDescLength, [OutAttribute, CountAttribute(Parameter = "counterDescLength")] IntPtr counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue); [Slot(957)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetPerfQueryDataINTEL(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32* bytesWritten); diff --git a/src/OpenTK/Graphics/OpenGL4/GL4.cs b/src/OpenTK/Graphics/OpenGL4/GL4.cs index c37bc7da..d5a98554 100644 --- a/src/OpenTK/Graphics/OpenGL4/GL4.cs +++ b/src/OpenTK/Graphics/OpenGL4/GL4.cs @@ -63371,9 +63371,9 @@ namespace OpenTK.Graphics.OpenGL4 /// /// /// - /// + /// [length: counterNameLength] /// - /// + /// [length: counterDescLength] /// /// /// @@ -63381,15 +63381,15 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32[] counterOffset, [OutAttribute] Int32[] counterDataSize, [OutAttribute] Int32[] counterTypeEnum, [OutAttribute] Int32[] counterDataTypeEnum, [OutAttribute] Int64[] rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } + public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute, CountAttribute(Parameter = "counterNameLength")] out String counterName, Int32 counterDescLength, [OutAttribute, CountAttribute(Parameter = "counterDescLength")] out String counterDesc, [OutAttribute] Int32[] counterOffset, [OutAttribute] Int32[] counterDataSize, [OutAttribute] Int32[] counterTypeEnum, [OutAttribute] Int32[] counterDataTypeEnum, [OutAttribute] Int64[] rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// /// - /// + /// [length: counterNameLength] /// - /// + /// [length: counterDescLength] /// /// /// @@ -63397,15 +63397,15 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out Int32 counterOffset, [OutAttribute] out Int32 counterDataSize, [OutAttribute] out Int32 counterTypeEnum, [OutAttribute] out Int32 counterDataTypeEnum, [OutAttribute] out Int64 rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } + public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute, CountAttribute(Parameter = "counterNameLength")] out String counterName, Int32 counterDescLength, [OutAttribute, CountAttribute(Parameter = "counterDescLength")] out String counterDesc, [OutAttribute] out Int32 counterOffset, [OutAttribute] out Int32 counterDataSize, [OutAttribute] out Int32 counterTypeEnum, [OutAttribute] out Int32 counterDataTypeEnum, [OutAttribute] out Int64 rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// /// - /// + /// [length: counterNameLength] /// - /// + /// [length: counterDescLength] /// /// /// @@ -63413,15 +63413,15 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32* counterOffset, [OutAttribute] Int32* counterDataSize, [OutAttribute] Int32* counterTypeEnum, [OutAttribute] Int32* counterDataTypeEnum, [OutAttribute] Int64* rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute, CountAttribute(Parameter = "counterNameLength")] out String counterName, Int32 counterDescLength, [OutAttribute, CountAttribute(Parameter = "counterDescLength")] out String counterDesc, [OutAttribute] Int32* counterOffset, [OutAttribute] Int32* counterDataSize, [OutAttribute] Int32* counterTypeEnum, [OutAttribute] Int32* counterDataTypeEnum, [OutAttribute] Int64* rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// /// - /// + /// [length: counterNameLength] /// - /// + /// [length: counterDescLength] /// /// /// @@ -63429,15 +63429,15 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32[] counterOffset, [OutAttribute] UInt32[] counterDataSize, [OutAttribute] UInt32[] counterTypeEnum, [OutAttribute] UInt32[] counterDataTypeEnum, [OutAttribute] UInt64[] rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } + public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute, CountAttribute(Parameter = "counterNameLength")] out String counterName, UInt32 counterDescLength, [OutAttribute, CountAttribute(Parameter = "counterDescLength")] out String counterDesc, [OutAttribute] UInt32[] counterOffset, [OutAttribute] UInt32[] counterDataSize, [OutAttribute] UInt32[] counterTypeEnum, [OutAttribute] UInt32[] counterDataTypeEnum, [OutAttribute] UInt64[] rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// /// - /// + /// [length: counterNameLength] /// - /// + /// [length: counterDescLength] /// /// /// @@ -63445,15 +63445,15 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out UInt32 counterOffset, [OutAttribute] out UInt32 counterDataSize, [OutAttribute] out UInt32 counterTypeEnum, [OutAttribute] out UInt32 counterDataTypeEnum, [OutAttribute] out UInt64 rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } + public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute, CountAttribute(Parameter = "counterNameLength")] out String counterName, UInt32 counterDescLength, [OutAttribute, CountAttribute(Parameter = "counterDescLength")] out String counterDesc, [OutAttribute] out UInt32 counterOffset, [OutAttribute] out UInt32 counterDataSize, [OutAttribute] out UInt32 counterTypeEnum, [OutAttribute] out UInt32 counterDataTypeEnum, [OutAttribute] out UInt64 rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// /// - /// + /// [length: counterNameLength] /// - /// + /// [length: counterDescLength] /// /// /// @@ -63461,7 +63461,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute, CountAttribute(Parameter = "counterNameLength")] out String counterName, UInt32 counterDescLength, [OutAttribute, CountAttribute(Parameter = "counterDescLength")] out String counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -80162,7 +80162,7 @@ namespace OpenTK.Graphics.OpenGL4 private static extern unsafe void glGetNextPerfQueryIdINTEL(UInt32 queryId, [OutAttribute] UInt32* nextQueryId); [Slot(485)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPerfCounterInfoINTEL(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] IntPtr counterName, UInt32 counterDescLength, [OutAttribute] IntPtr counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue); + private static extern unsafe void glGetPerfCounterInfoINTEL(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute, CountAttribute(Parameter = "counterNameLength")] IntPtr counterName, UInt32 counterDescLength, [OutAttribute, CountAttribute(Parameter = "counterDescLength")] IntPtr counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue); [Slot(492)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetPerfQueryDataINTEL(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32* bytesWritten); From 0ff0fbf1f7008ef0e2c773fdcf73d312b4d1c065 Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Thu, 5 Oct 2017 16:07:04 +0100 Subject: [PATCH 78/91] Add count attribute to GetPerfQueryInfoINTEL out string parameter --- .../Specifications/GL2/overrides.xml | 7 +++++ src/OpenTK/Graphics/OpenGL/GL.cs | 26 +++++++++---------- src/OpenTK/Graphics/OpenGL4/GL4.cs | 26 +++++++++---------- 3 files changed, 33 insertions(+), 26 deletions(-) diff --git a/src/Generator.Bind/Specifications/GL2/overrides.xml b/src/Generator.Bind/Specifications/GL2/overrides.xml index d8221cbb..01d9e4e3 100644 --- a/src/Generator.Bind/Specifications/GL2/overrides.xml +++ b/src/Generator.Bind/Specifications/GL2/overrides.xml @@ -7458,5 +7458,12 @@ counterDescLength + + + + + queryNameLength + + diff --git a/src/OpenTK/Graphics/OpenGL/GL.cs b/src/OpenTK/Graphics/OpenGL/GL.cs index daba3996..80f88bef 100644 --- a/src/OpenTK/Graphics/OpenGL/GL.cs +++ b/src/OpenTK/Graphics/OpenGL/GL.cs @@ -110652,74 +110652,74 @@ namespace OpenTK.Graphics.OpenGL /// [requires: INTEL_performance_query] /// /// - /// + /// [length: queryNameLength] /// /// /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32[] dataSize, [OutAttribute] Int32[] noCounters, [OutAttribute] Int32[] noInstances, [OutAttribute] Int32[] capsMask) { throw new BindingsNotRewrittenException(); } + public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute, CountAttribute(Parameter = "queryNameLength")] out String queryName, [OutAttribute] Int32[] dataSize, [OutAttribute] Int32[] noCounters, [OutAttribute] Int32[] noInstances, [OutAttribute] Int32[] capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// - /// + /// [length: queryNameLength] /// /// /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out Int32 dataSize, [OutAttribute] out Int32 noCounters, [OutAttribute] out Int32 noInstances, [OutAttribute] out Int32 capsMask) { throw new BindingsNotRewrittenException(); } + public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute, CountAttribute(Parameter = "queryNameLength")] out String queryName, [OutAttribute] out Int32 dataSize, [OutAttribute] out Int32 noCounters, [OutAttribute] out Int32 noInstances, [OutAttribute] out Int32 capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// - /// + /// [length: queryNameLength] /// /// /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32* dataSize, [OutAttribute] Int32* noCounters, [OutAttribute] Int32* noInstances, [OutAttribute] Int32* capsMask) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute, CountAttribute(Parameter = "queryNameLength")] out String queryName, [OutAttribute] Int32* dataSize, [OutAttribute] Int32* noCounters, [OutAttribute] Int32* noInstances, [OutAttribute] Int32* capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// - /// + /// [length: queryNameLength] /// /// /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32[] dataSize, [OutAttribute] UInt32[] noCounters, [OutAttribute] UInt32[] noInstances, [OutAttribute] UInt32[] capsMask) { throw new BindingsNotRewrittenException(); } + public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute, CountAttribute(Parameter = "queryNameLength")] out String queryName, [OutAttribute] UInt32[] dataSize, [OutAttribute] UInt32[] noCounters, [OutAttribute] UInt32[] noInstances, [OutAttribute] UInt32[] capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// - /// + /// [length: queryNameLength] /// /// /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out UInt32 dataSize, [OutAttribute] out UInt32 noCounters, [OutAttribute] out UInt32 noInstances, [OutAttribute] out UInt32 capsMask) { throw new BindingsNotRewrittenException(); } + public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute, CountAttribute(Parameter = "queryNameLength")] out String queryName, [OutAttribute] out UInt32 dataSize, [OutAttribute] out UInt32 noCounters, [OutAttribute] out UInt32 noInstances, [OutAttribute] out UInt32 capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// - /// + /// [length: queryNameLength] /// /// /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute, CountAttribute(Parameter = "queryNameLength")] out String queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_map_texture] /// @@ -147807,7 +147807,7 @@ namespace OpenTK.Graphics.OpenGL private static extern unsafe void glGetPerfQueryIdByNameINTEL(IntPtr queryName, [OutAttribute] UInt32* queryId); [Slot(959)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPerfQueryInfoINTEL(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] IntPtr queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask); + private static extern unsafe void glGetPerfQueryInfoINTEL(UInt32 queryId, UInt32 queryNameLength, [OutAttribute, CountAttribute(Parameter = "queryNameLength")] IntPtr queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask); [Slot(1338)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe IntPtr glMapTexture2DINTEL(UInt32 texture, Int32 level, UInt32 access, [OutAttribute, CountAttribute(Count = 1)] Int32* stride, [OutAttribute, CountAttribute(Count = 1)] System.Int32* layout); diff --git a/src/OpenTK/Graphics/OpenGL4/GL4.cs b/src/OpenTK/Graphics/OpenGL4/GL4.cs index d5a98554..7cf95e0a 100644 --- a/src/OpenTK/Graphics/OpenGL4/GL4.cs +++ b/src/OpenTK/Graphics/OpenGL4/GL4.cs @@ -63862,74 +63862,74 @@ namespace OpenTK.Graphics.OpenGL4 /// [requires: INTEL_performance_query] /// /// - /// + /// [length: queryNameLength] /// /// /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32[] dataSize, [OutAttribute] Int32[] noCounters, [OutAttribute] Int32[] noInstances, [OutAttribute] Int32[] capsMask) { throw new BindingsNotRewrittenException(); } + public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute, CountAttribute(Parameter = "queryNameLength")] out String queryName, [OutAttribute] Int32[] dataSize, [OutAttribute] Int32[] noCounters, [OutAttribute] Int32[] noInstances, [OutAttribute] Int32[] capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// - /// + /// [length: queryNameLength] /// /// /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out Int32 dataSize, [OutAttribute] out Int32 noCounters, [OutAttribute] out Int32 noInstances, [OutAttribute] out Int32 capsMask) { throw new BindingsNotRewrittenException(); } + public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute, CountAttribute(Parameter = "queryNameLength")] out String queryName, [OutAttribute] out Int32 dataSize, [OutAttribute] out Int32 noCounters, [OutAttribute] out Int32 noInstances, [OutAttribute] out Int32 capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// - /// + /// [length: queryNameLength] /// /// /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32* dataSize, [OutAttribute] Int32* noCounters, [OutAttribute] Int32* noInstances, [OutAttribute] Int32* capsMask) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute, CountAttribute(Parameter = "queryNameLength")] out String queryName, [OutAttribute] Int32* dataSize, [OutAttribute] Int32* noCounters, [OutAttribute] Int32* noInstances, [OutAttribute] Int32* capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// - /// + /// [length: queryNameLength] /// /// /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32[] dataSize, [OutAttribute] UInt32[] noCounters, [OutAttribute] UInt32[] noInstances, [OutAttribute] UInt32[] capsMask) { throw new BindingsNotRewrittenException(); } + public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute, CountAttribute(Parameter = "queryNameLength")] out String queryName, [OutAttribute] UInt32[] dataSize, [OutAttribute] UInt32[] noCounters, [OutAttribute] UInt32[] noInstances, [OutAttribute] UInt32[] capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// - /// + /// [length: queryNameLength] /// /// /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out UInt32 dataSize, [OutAttribute] out UInt32 noCounters, [OutAttribute] out UInt32 noInstances, [OutAttribute] out UInt32 capsMask) { throw new BindingsNotRewrittenException(); } + public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute, CountAttribute(Parameter = "queryNameLength")] out String queryName, [OutAttribute] out UInt32 dataSize, [OutAttribute] out UInt32 noCounters, [OutAttribute] out UInt32 noInstances, [OutAttribute] out UInt32 capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// - /// + /// [length: queryNameLength] /// /// /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute, CountAttribute(Parameter = "queryNameLength")] out String queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask) { throw new BindingsNotRewrittenException(); } } @@ -80171,7 +80171,7 @@ namespace OpenTK.Graphics.OpenGL4 private static extern unsafe void glGetPerfQueryIdByNameINTEL(IntPtr queryName, [OutAttribute] UInt32* queryId); [Slot(494)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPerfQueryInfoINTEL(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] IntPtr queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask); + private static extern unsafe void glGetPerfQueryInfoINTEL(UInt32 queryId, UInt32 queryNameLength, [OutAttribute, CountAttribute(Parameter = "queryNameLength")] IntPtr queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask); [Slot(37)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glBlendBarrierKHR(); From e55d7017e08bdcf9df07e5be0b0e1b5c13fafa1a Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Thu, 5 Oct 2017 16:26:22 +0100 Subject: [PATCH 79/91] Add count attribute to GetTranslatedShaderSource out string parameter --- .../Specifications/GL2/overrides.xml | 4 +++ src/OpenTK/Graphics/ES20/ES20.cs | 26 +++++++++---------- src/OpenTK/Graphics/ES30/ES30.cs | 26 +++++++++---------- src/OpenTK/Graphics/ES31/ES31.cs | 26 +++++++++---------- 4 files changed, 43 insertions(+), 39 deletions(-) diff --git a/src/Generator.Bind/Specifications/GL2/overrides.xml b/src/Generator.Bind/Specifications/GL2/overrides.xml index 01d9e4e3..e3fefd9c 100644 --- a/src/Generator.Bind/Specifications/GL2/overrides.xml +++ b/src/Generator.Bind/Specifications/GL2/overrides.xml @@ -5536,8 +5536,12 @@ + + + bufsize + diff --git a/src/OpenTK/Graphics/ES20/ES20.cs b/src/OpenTK/Graphics/ES20/ES20.cs index 5ea99a67..2cbceeeb 100644 --- a/src/OpenTK/Graphics/ES20/ES20.cs +++ b/src/OpenTK/Graphics/ES20/ES20.cs @@ -2219,57 +2219,57 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: 1] - /// + /// [length: bufsize] [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } + public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// /// /// [length: 1] - /// + /// [length: bufsize] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } + public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// /// /// [length: 1] - /// + /// [length: bufsize] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static unsafe void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// /// /// [length: 1] - /// + /// [length: bufsize] [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } + public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// /// /// [length: 1] - /// + /// [length: bufsize] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } + public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// /// /// [length: 1] - /// + /// [length: bufsize] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static unsafe void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_framebuffer_multisample] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -53546,7 +53546,7 @@ namespace OpenTK.Graphics.ES20 private static extern void glDrawElementsInstancedANGLE(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount); [Slot(308)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTranslatedShaderSourceANGLE(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute] IntPtr source); + private static extern unsafe void glGetTranslatedShaderSourceANGLE(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] IntPtr source); [Slot(482)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glRenderbufferStorageMultisampleANGLE(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height); diff --git a/src/OpenTK/Graphics/ES30/ES30.cs b/src/OpenTK/Graphics/ES30/ES30.cs index a2ea1d3e..f28d51bd 100644 --- a/src/OpenTK/Graphics/ES30/ES30.cs +++ b/src/OpenTK/Graphics/ES30/ES30.cs @@ -2427,57 +2427,57 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: 1] - /// + /// [length: bufsize] [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } + public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// /// /// [length: 1] - /// + /// [length: bufsize] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } + public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// /// /// [length: 1] - /// + /// [length: bufsize] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static unsafe void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// /// /// [length: 1] - /// + /// [length: bufsize] [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } + public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// /// /// [length: 1] - /// + /// [length: bufsize] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } + public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// /// /// [length: 1] - /// + /// [length: bufsize] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static unsafe void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_framebuffer_multisample] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -61559,7 +61559,7 @@ namespace OpenTK.Graphics.ES30 private static extern void glDrawElementsInstancedANGLE(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount); [Slot(361)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTranslatedShaderSourceANGLE(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute] IntPtr source); + private static extern unsafe void glGetTranslatedShaderSourceANGLE(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] IntPtr source); [Slot(553)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glRenderbufferStorageMultisampleANGLE(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height); diff --git a/src/OpenTK/Graphics/ES31/ES31.cs b/src/OpenTK/Graphics/ES31/ES31.cs index 42c4b5b1..ec69e03a 100644 --- a/src/OpenTK/Graphics/ES31/ES31.cs +++ b/src/OpenTK/Graphics/ES31/ES31.cs @@ -2557,57 +2557,57 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: 1] - /// + /// [length: bufsize] [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } + public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// /// /// [length: 1] - /// + /// [length: bufsize] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } + public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// /// /// [length: 1] - /// + /// [length: bufsize] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static unsafe void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// /// /// [length: 1] - /// + /// [length: bufsize] [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } + public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// /// /// [length: 1] - /// + /// [length: bufsize] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } + public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// /// /// [length: 1] - /// + /// [length: bufsize] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static unsafe void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_framebuffer_multisample] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -58544,7 +58544,7 @@ namespace OpenTK.Graphics.ES31 private static extern void glDrawElementsInstancedANGLE(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount); [Slot(385)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTranslatedShaderSourceANGLE(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute] IntPtr source); + private static extern unsafe void glGetTranslatedShaderSourceANGLE(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] IntPtr source); [Slot(613)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glRenderbufferStorageMultisampleANGLE(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height); From ea09f567407e6a32ce01df65a61ecc91f355d7cf Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Thu, 5 Oct 2017 18:28:36 +0100 Subject: [PATCH 80/91] Add missing count attribute to ExtGetProgramBinarySourceQCOM Also extends Rewrite to understand the new syntax of "*name". --- .../Specifications/GL2/overrides.xml | 12 ++++++++- src/Generator.Rewrite/Program.cs | 12 +++++++-- src/OpenTK/Graphics/ES11/ES11.cs | 26 +++++++++---------- src/OpenTK/Graphics/ES20/ES20.cs | 26 +++++++++---------- src/OpenTK/Graphics/ES30/ES30.cs | 26 +++++++++---------- src/OpenTK/Graphics/ES31/ES31.cs | 26 +++++++++---------- 6 files changed, 73 insertions(+), 55 deletions(-) diff --git a/src/Generator.Bind/Specifications/GL2/overrides.xml b/src/Generator.Bind/Specifications/GL2/overrides.xml index e3fefd9c..b57df4a7 100644 --- a/src/Generator.Bind/Specifications/GL2/overrides.xml +++ b/src/Generator.Bind/Specifications/GL2/overrides.xml @@ -7470,4 +7470,14 @@ - + + + + + + + *length + + + + \ No newline at end of file diff --git a/src/Generator.Rewrite/Program.cs b/src/Generator.Rewrite/Program.cs index 40040029..c6620889 100644 --- a/src/Generator.Rewrite/Program.cs +++ b/src/Generator.Rewrite/Program.cs @@ -880,8 +880,8 @@ namespace OpenTK.Rewrite var countVariable = new VariableDefinition(TypeInt32); body.Variables.Add(countVariable); - // Parameter will either by a simple name or an - // expression like "name*5" + // Parameter will either by a simple name, a dereference of a name + // like "*name" or an expression like "name*5" var parameter = method.Parameters.FirstOrDefault( param => param.Name == countParameter); if (parameter != null) @@ -889,6 +889,14 @@ namespace OpenTK.Rewrite il.Emit(OpCodes.Ldarg, parameter.Index); il.Emit(OpCodes.Stloc, countVariable.Index); } + else if (countParameter[0] == '*') + { + var pointerParam = method.Parameters.FirstOrDefault( + param => param.Name == countParameter.Substring(1)); + + il.Emit(OpCodes.Ldarg, pointerParam.Index); + il.Emit(OpCodes.Ldind_I4); + } else { var operands = countParameter.Split('*'); diff --git a/src/OpenTK/Graphics/ES11/ES11.cs b/src/OpenTK/Graphics/ES11/ES11.cs index 36c8e8f4..53dc2a56 100644 --- a/src/OpenTK/Graphics/ES11/ES11.cs +++ b/src/OpenTK/Graphics/ES11/ES11.cs @@ -14542,56 +14542,56 @@ namespace OpenTK.Graphics.ES11 /// [requires: QCOM_extended_get2] /// /// - /// + /// [length: *length] /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } + public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// /// - /// + /// [length: *length] /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } + public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// /// - /// + /// [length: *length] /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// /// - /// + /// [length: *length] /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } + public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// /// - /// + /// [length: *length] /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } + public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// /// - /// + /// [length: *length] /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -16240,7 +16240,7 @@ namespace OpenTK.Graphics.ES11 private static extern unsafe void glExtGetFramebuffersQCOM([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers); [Slot(96)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glExtGetProgramBinarySourceQCOM(UInt32 program, System.Int32 shadertype, [OutAttribute] IntPtr source, [OutAttribute] Int32* length); + private static extern unsafe void glExtGetProgramBinarySourceQCOM(UInt32 program, System.Int32 shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] IntPtr source, [OutAttribute] Int32* length); [Slot(97)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glExtGetProgramsQCOM([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms); diff --git a/src/OpenTK/Graphics/ES20/ES20.cs b/src/OpenTK/Graphics/ES20/ES20.cs index 2cbceeeb..84a94388 100644 --- a/src/OpenTK/Graphics/ES20/ES20.cs +++ b/src/OpenTK/Graphics/ES20/ES20.cs @@ -52846,56 +52846,56 @@ namespace OpenTK.Graphics.ES20 /// [requires: QCOM_extended_get2] /// /// - /// + /// [length: *length] /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } + public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// /// - /// + /// [length: *length] /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } + public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// /// - /// + /// [length: *length] /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// /// - /// + /// [length: *length] /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } + public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// /// - /// + /// [length: *length] /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } + public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// /// - /// + /// [length: *length] /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -55376,7 +55376,7 @@ namespace OpenTK.Graphics.ES20 private static extern unsafe void glExtGetFramebuffersQCOM([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers); [Slot(161)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glExtGetProgramBinarySourceQCOM(UInt32 program, System.Int32 shadertype, [OutAttribute] IntPtr source, [OutAttribute] Int32* length); + private static extern unsafe void glExtGetProgramBinarySourceQCOM(UInt32 program, System.Int32 shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] IntPtr source, [OutAttribute] Int32* length); [Slot(162)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glExtGetProgramsQCOM([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms); diff --git a/src/OpenTK/Graphics/ES30/ES30.cs b/src/OpenTK/Graphics/ES30/ES30.cs index f28d51bd..74f05458 100644 --- a/src/OpenTK/Graphics/ES30/ES30.cs +++ b/src/OpenTK/Graphics/ES30/ES30.cs @@ -60859,56 +60859,56 @@ namespace OpenTK.Graphics.ES30 /// [requires: QCOM_extended_get2] /// /// - /// + /// [length: *length] /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } + public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// /// - /// + /// [length: *length] /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } + public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// /// - /// + /// [length: *length] /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// /// - /// + /// [length: *length] /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } + public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// /// - /// + /// [length: *length] /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } + public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// /// - /// + /// [length: *length] /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -63701,7 +63701,7 @@ namespace OpenTK.Graphics.ES30 private static extern unsafe void glExtGetFramebuffersQCOM([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers); [Slot(189)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glExtGetProgramBinarySourceQCOM(UInt32 program, System.Int32 shadertype, [OutAttribute] IntPtr source, [OutAttribute] Int32* length); + private static extern unsafe void glExtGetProgramBinarySourceQCOM(UInt32 program, System.Int32 shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] IntPtr source, [OutAttribute] Int32* length); [Slot(190)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glExtGetProgramsQCOM([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms); diff --git a/src/OpenTK/Graphics/ES31/ES31.cs b/src/OpenTK/Graphics/ES31/ES31.cs index ec69e03a..c0eb400e 100644 --- a/src/OpenTK/Graphics/ES31/ES31.cs +++ b/src/OpenTK/Graphics/ES31/ES31.cs @@ -57844,56 +57844,56 @@ namespace OpenTK.Graphics.ES31 /// [requires: QCOM_extended_get2] /// /// - /// + /// [length: *length] /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } + public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// /// - /// + /// [length: *length] /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } + public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// /// - /// + /// [length: *length] /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// /// - /// + /// [length: *length] /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } + public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// /// - /// + /// [length: *length] /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } + public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// /// - /// + /// [length: *length] /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } + public static unsafe void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -60890,7 +60890,7 @@ namespace OpenTK.Graphics.ES31 private static extern unsafe void glExtGetFramebuffersQCOM([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers); [Slot(199)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glExtGetProgramBinarySourceQCOM(UInt32 program, System.Int32 shadertype, [OutAttribute] IntPtr source, [OutAttribute] Int32* length); + private static extern unsafe void glExtGetProgramBinarySourceQCOM(UInt32 program, System.Int32 shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] IntPtr source, [OutAttribute] Int32* length); [Slot(200)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glExtGetProgramsQCOM([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms); From 376f3edfd71bc140db20f55bc5562797bf540474 Mon Sep 17 00:00:00 2001 From: VperuS Date: Sat, 18 Nov 2017 18:24:46 +0200 Subject: [PATCH 81/91] Add xml docs based on HelpText --- src/Generator.Rewrite/Options.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/Generator.Rewrite/Options.cs b/src/Generator.Rewrite/Options.cs index eca85326..e325d61a 100644 --- a/src/Generator.Rewrite/Options.cs +++ b/src/Generator.Rewrite/Options.cs @@ -3,20 +3,35 @@ using CommandLine.Text; namespace OpenTK.Rewrite { + /// + /// A container class used by to parse command line arguments. + /// public class Options { + /// + /// Set the path to the target assembly that should be rewritten. + /// [Option('a', "assembly", Required = true, HelpText = "The path to the target assembly that should be rewritten.")] public string TargetAssembly { get; set; } + /// + /// Set the path to the strong name key which should be used to sign or resign the assembly. + /// [Option('k', "signing-key", HelpText = "The path to the strong name key which should be used to sign or resign the assembly.")] public string StrongNameKey { get; set; } + /// + /// Enable calls to GL.GetError(), wrapped around each native call. + /// [Option('d', "debug", Default = false, HelpText = "Enable calls to GL.GetError(), wrapped around each native call.")] public bool EnableDebugCalls { get; set; } + /// + /// Force native calls to use DllImport instead of GetProcAddress. + /// [Option("dllimport", Default = false, HelpText = "Force native calls to use DllImport instead of GetProcAddress.")] public bool UseDLLImport { get; set; } From 24b09303814591dc5dacbba3547c76610b4e4cdb Mon Sep 17 00:00:00 2001 From: VperuS Date: Mon, 20 Nov 2017 06:14:44 +0200 Subject: [PATCH 82/91] Apply required changes --- src/Generator.Rewrite/Options.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Generator.Rewrite/Options.cs b/src/Generator.Rewrite/Options.cs index e325d61a..4aeca6c1 100644 --- a/src/Generator.Rewrite/Options.cs +++ b/src/Generator.Rewrite/Options.cs @@ -9,31 +9,31 @@ namespace OpenTK.Rewrite public class Options { /// - /// Set the path to the target assembly that should be rewritten. + /// Gets or sets the path to the target assembly that should be rewritten. /// [Option('a', "assembly", Required = true, HelpText = "The path to the target assembly that should be rewritten.")] public string TargetAssembly { get; set; } /// - /// Set the path to the strong name key which should be used to sign or resign the assembly. + /// Get or sets the path to the strong name key which should be used to sign or resign the assembly. /// [Option('k', "signing-key", HelpText = "The path to the strong name key which should be used to sign or resign the assembly.")] public string StrongNameKey { get; set; } /// - /// Enable calls to GL.GetError(), wrapped around each native call. + /// Gets or sets a value indicating whether enable calls to GL.GetError(), wrapped around each native call. /// [Option('d', "debug", Default = false, HelpText = "Enable calls to GL.GetError(), wrapped around each native call.")] public bool EnableDebugCalls { get; set; } /// - /// Force native calls to use DllImport instead of GetProcAddress. + /// Gets or sets a value indicating whether force native calls to use DllImport instead of GetProcAddress. /// [Option("dllimport", Default = false, HelpText = "Force native calls to use DllImport instead of GetProcAddress.")] public bool UseDLLImport { get; set; } } -} \ No newline at end of file +} From ce86006c8e973df6162f07fc69fcae0936d90dbe Mon Sep 17 00:00:00 2001 From: VperuS Date: Tue, 21 Nov 2017 01:40:51 +0200 Subject: [PATCH 83/91] English grammar in comments --- src/Generator.Rewrite/Options.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Generator.Rewrite/Options.cs b/src/Generator.Rewrite/Options.cs index 4aeca6c1..155a3abd 100644 --- a/src/Generator.Rewrite/Options.cs +++ b/src/Generator.Rewrite/Options.cs @@ -23,14 +23,14 @@ namespace OpenTK.Rewrite public string StrongNameKey { get; set; } /// - /// Gets or sets a value indicating whether enable calls to GL.GetError(), wrapped around each native call. + /// Gets or sets a value indicating whether calls to GL.GetError() are wrapped around each native call. /// [Option('d', "debug", Default = false, HelpText = "Enable calls to GL.GetError(), wrapped around each native call.")] public bool EnableDebugCalls { get; set; } /// - /// Gets or sets a value indicating whether force native calls to use DllImport instead of GetProcAddress. + /// Gets or sets a value indicating whether native calls are forced to use DllImport instead of GetProcAddress. /// [Option("dllimport", Default = false, HelpText = "Force native calls to use DllImport instead of GetProcAddress.")] From 67563520fff5a23956d091770eb6ad41da8a212a Mon Sep 17 00:00:00 2001 From: Shane Kelly Date: Sat, 9 Dec 2017 09:39:44 +0200 Subject: [PATCH 84/91] Stop using DisplayLocks for every MakeCurrent context call. --- src/OpenTK/Platform/X11/X11GLContext.cs | 28 +++++++++++-------------- 1 file changed, 12 insertions(+), 16 deletions(-) diff --git a/src/OpenTK/Platform/X11/X11GLContext.cs b/src/OpenTK/Platform/X11/X11GLContext.cs index f661ee4d..e0763fa1 100644 --- a/src/OpenTK/Platform/X11/X11GLContext.cs +++ b/src/OpenTK/Platform/X11/X11GLContext.cs @@ -319,14 +319,12 @@ namespace OpenTK.Platform.X11 Handle, System.Threading.Thread.CurrentThread.ManagedThreadId, Display)); bool result; - using (new XLock(Display)) + result = Glx.MakeCurrent(Display, IntPtr.Zero, IntPtr.Zero); + if (result) { - result = Glx.MakeCurrent(Display, IntPtr.Zero, IntPtr.Zero); - if (result) - { - currentWindow = null; - } + currentWindow = null; } + Debug.Print("{0}", result ? "done!" : "failed."); } else @@ -342,15 +340,16 @@ namespace OpenTK.Platform.X11 throw new InvalidOperationException("Invalid display, window or context."); } - using (new XLock(Display)) + result = Glx.MakeCurrent(Display, w.Handle, Handle); + if (result) { - result = Glx.MakeCurrent(Display, w.Handle, Handle); - if (result) - { - currentWindow = w; - } + currentWindow = w; } + + + + if (!result) { throw new GraphicsContextException("Failed to make context current."); @@ -488,10 +487,7 @@ namespace OpenTK.Platform.X11 if (IsCurrent) { - using (new XLock(display)) - { - Glx.MakeCurrent(display, IntPtr.Zero, IntPtr.Zero); - } + Glx.MakeCurrent(display, IntPtr.Zero, IntPtr.Zero); } using (new XLock(display)) { From e335698c07d96ea13d4d4998e6320476d26041fd Mon Sep 17 00:00:00 2001 From: Shane Kelly Date: Sat, 9 Dec 2017 12:19:41 +0200 Subject: [PATCH 85/91] Remove a lock on a read-only operation, in IsCurrent() --- src/OpenTK/Platform/X11/X11GLContext.cs | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/OpenTK/Platform/X11/X11GLContext.cs b/src/OpenTK/Platform/X11/X11GLContext.cs index e0763fa1..24c3b91d 100644 --- a/src/OpenTK/Platform/X11/X11GLContext.cs +++ b/src/OpenTK/Platform/X11/X11GLContext.cs @@ -346,10 +346,6 @@ namespace OpenTK.Platform.X11 currentWindow = w; } - - - - if (!result) { throw new GraphicsContextException("Failed to make context current."); @@ -367,10 +363,7 @@ namespace OpenTK.Platform.X11 { get { - using (new XLock(Display)) - { - return Glx.GetCurrentContext() == Handle.Handle; - } + return Glx.GetCurrentContext() == Handle.Handle; } } From 0f9552e39a677959d198fcc2ab1c2a806d2f150b Mon Sep 17 00:00:00 2001 From: Tzach Shabtay Date: Sat, 23 Dec 2017 01:58:07 -0500 Subject: [PATCH 86/91] Game Window- allow configuring separate update thread --- src/OpenTK/GameWindow.cs | 74 +++++++++++++++++++++++++++++++++------- 1 file changed, 61 insertions(+), 13 deletions(-) diff --git a/src/OpenTK/GameWindow.cs b/src/OpenTK/GameWindow.cs index 4a0a5818..c49fc82a 100644 --- a/src/OpenTK/GameWindow.cs +++ b/src/OpenTK/GameWindow.cs @@ -25,6 +25,7 @@ using System; using System.Diagnostics; +using System.Threading; using OpenTK.Graphics; using OpenTK.Platform; @@ -66,7 +67,11 @@ namespace OpenTK { private const double MaxFrequency = 500.0; // Frequency cap for Update/RenderFrame events - private readonly Stopwatch watch = new Stopwatch(); + private readonly Stopwatch watchRender = new Stopwatch(); + private readonly Stopwatch watchUpdate = new Stopwatch(); + private Thread updateThread; + + private readonly bool isSingleThreaded; private IGraphicsContext glContext; @@ -161,12 +166,30 @@ namespace OpenTK /// An IGraphicsContext to share resources with. public GameWindow(int width, int height, GraphicsMode mode, string title, GameWindowFlags options, DisplayDevice device, int major, int minor, GraphicsContextFlags flags, IGraphicsContext sharedContext) + : this(width, height, mode, title, options, device, major, minor, flags, sharedContext, true) + {} + + /// Constructs a new GameWindow with the specified attributes. + /// The width of the GameWindow in pixels. + /// The height of the GameWindow in pixels. + /// The OpenTK.Graphics.GraphicsMode of the GameWindow. + /// The title of the GameWindow. + /// GameWindow options regarding window appearance and behavior. + /// The OpenTK.Graphics.DisplayDevice to construct the GameWindow in. + /// The major version for the OpenGL GraphicsContext. + /// The minor version for the OpenGL GraphicsContext. + /// The GraphicsContextFlags version for the OpenGL GraphicsContext. + /// An IGraphicsContext to share resources with. + /// Should the update and render frames be fired on the same thread? If false, render and update events will be fired from separate threads. + public GameWindow(int width, int height, GraphicsMode mode, string title, GameWindowFlags options, DisplayDevice device, + int major, int minor, GraphicsContextFlags flags, IGraphicsContext sharedContext, bool isSingleThreaded) : base(width, height, title, options, mode == null ? GraphicsMode.Default : mode, device == null ? DisplayDevice.Default : device) { try { + this.isSingleThreaded = isSingleThreaded; glContext = new GraphicsContext(mode == null ? GraphicsMode.Default : mode, WindowInfo, major, minor, flags); glContext.MakeCurrent(WindowInfo); (glContext as IGraphicsContextInternal).LoadAll(); @@ -334,13 +357,22 @@ namespace OpenTK //Resize += DispatchUpdateAndRenderFrame; Debug.Print("Entering main loop."); - watch.Start(); + if (!isSingleThreaded) + { + updateThread = new Thread(UpdateThread); + updateThread.Start(); + } + watchRender.Start(); while (true) { ProcessEvents(); if (Exists && !IsExiting) { - DispatchUpdateAndRenderFrame(this, EventArgs.Empty); + if (isSingleThreaded) + { + DispatchUpdateFrame(watchRender); + } + DispatchRenderFrame(); } else { @@ -350,9 +382,6 @@ namespace OpenTK } finally { - Move -= DispatchUpdateAndRenderFrame; - Resize -= DispatchUpdateAndRenderFrame; - if (Exists) { // TODO: Should similar behaviour be retained, possibly on native window level? @@ -362,21 +391,30 @@ namespace OpenTK } } + private void UpdateThread() + { + OnUpdateThreadStarted(this, new EventArgs()); + watchUpdate.Start(); + while (Exists && !IsExiting) + { + DispatchUpdateFrame(watchUpdate); + } + } + private double ClampElapsed(double elapsed) { return MathHelper.Clamp(elapsed, 0.0, 1.0); } - private void DispatchUpdateAndRenderFrame(object sender, EventArgs e) + private void DispatchUpdateFrame(Stopwatch watch) { int is_running_slowly_retries = 4; double timestamp = watch.Elapsed.TotalSeconds; - double elapsed = 0; + double elapsed = ClampElapsed(timestamp - update_timestamp); - elapsed = ClampElapsed(timestamp - update_timestamp); while (elapsed > 0 && elapsed + update_epsilon >= TargetUpdatePeriod) { - RaiseUpdateFrame(elapsed, ref timestamp); + RaiseUpdateFrame(watch, elapsed, ref timestamp); // Calculate difference (positive or negative) between // actual elapsed time and target elapsed time. We must @@ -403,15 +441,19 @@ namespace OpenTK break; } } + } - elapsed = ClampElapsed(timestamp - render_timestamp); + private void DispatchRenderFrame() + { + double timestamp = watchRender.Elapsed.TotalSeconds; + double elapsed = ClampElapsed(timestamp - render_timestamp); if (elapsed > 0 && elapsed >= TargetRenderPeriod) { RaiseRenderFrame(elapsed, ref timestamp); } } - private void RaiseUpdateFrame(double elapsed, ref double timestamp) + private void RaiseUpdateFrame(Stopwatch watch, double elapsed, ref double timestamp) { // Raise UpdateFrame event update_args.Time = elapsed; @@ -438,7 +480,7 @@ namespace OpenTK // Update RenderTime property render_timestamp = timestamp; - timestamp = watch.Elapsed.TotalSeconds; + timestamp = watchRender.Elapsed.TotalSeconds; render_time = timestamp - render_timestamp; } @@ -790,6 +832,12 @@ namespace OpenTK /// public event EventHandler UpdateFrame = delegate { }; + /// + /// If game window is configured to run with a dedicated update thread (by passing isSingleThreaded = false in the constructor), + /// occurs when the update thread has started. This would be a good place to initialize thread specific stuff (like setting a synchronization context). + /// + public event EventHandler OnUpdateThreadStarted = delegate { }; + /// /// Override to add custom cleanup logic. /// From 0ab78f73a451d5b64a31f5ca3bfe3cb748a294d9 Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Tue, 26 Dec 2017 18:33:30 +0000 Subject: [PATCH 87/91] Update Converter README to refer to new github xml specs --- src/Generator.Converter/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Generator.Converter/README.md b/src/Generator.Converter/README.md index 447ac58e..c15261c2 100644 --- a/src/Generator.Converter/README.md +++ b/src/Generator.Converter/README.md @@ -7,7 +7,7 @@ This is a simple tool to convert Khronos XML to OpenTK XML files. Converting local files: Convert.exe --input-files gl.xml --output-file signatures.xml --prefix gl Converting latest remote specification: - Convert.exe --input-files https://cvs.khronos.org/svn/repos/ogl/trunk/doc/registry/public/api/gl.xml --output-file signatures.xml --prefix gl + Convert.exe --input-files https://raw.githubusercontent.com/KhronosGroup/OpenGL-Registry/master/xml/gl.xml --output-file signatures.xml --prefix gl -p, --prefix Required. (Default: gl) The prefix to remove from parsed functions and constants. From e5db83e3e592660c961eae78a8f0ed93bd1c1463 Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Tue, 26 Dec 2017 18:37:26 +0000 Subject: [PATCH 88/91] Regenerate signatures.xml from OpenGL-Registry Generated from commit 681c365c012ac9d3bcadd67de10af4730eb460e0 https://raw.githubusercontent.com/KhronosGroup/OpenGL-Registry/681c365c012ac9d3bcadd67de10af4730eb460e0/xml/gl.xml --- .../Specifications/GL2/signatures.xml | 10264 ++++++++++++---- 1 file changed, 7721 insertions(+), 2543 deletions(-) diff --git a/src/Generator.Bind/Specifications/GL2/signatures.xml b/src/Generator.Bind/Specifications/GL2/signatures.xml index 10f55dea..40eb575b 100644 --- a/src/Generator.Bind/Specifications/GL2/signatures.xml +++ b/src/Generator.Bind/Specifications/GL2/signatures.xml @@ -1,5 +1,10 @@ + + + + + @@ -161,6 +166,7 @@ + @@ -775,17 +781,17 @@ + + - + + - - - @@ -2222,6 +2228,18 @@ + + + + + + + + + + + + @@ -2249,6 +2267,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -2258,45 +2337,117 @@ + + + - - - - + + - - - - - - - - - - - - + - - - - - + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -2324,6 +2475,11 @@ + + + + + @@ -2336,6 +2492,14 @@ + + + + + + + + @@ -2352,6 +2516,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -2380,6 +2589,11 @@ + + + + + @@ -2400,8 +2614,11 @@ + + + @@ -2419,18 +2636,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -3050,6 +3314,8 @@ + + @@ -3694,6 +3960,14 @@ + + + + + + + + @@ -3708,9 +3982,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -3726,6 +4126,16 @@ + + + + + + + + + + @@ -3736,6 +4146,28 @@ + + + + + + + + + + + + + + + + + + + + + + @@ -3746,6 +4178,22 @@ + + + + + + + + + + + + + + + + @@ -3757,6 +4205,8 @@ + + @@ -4179,6 +4629,8 @@ + + @@ -4236,6 +4688,12 @@ + + + + + + @@ -4301,6 +4759,8 @@ + + @@ -4447,9 +4907,6 @@ - - - @@ -4485,21 +4942,247 @@ - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -4615,6 +5298,10 @@ + + + + @@ -4787,8 +5474,11 @@ + + + @@ -4796,12 +5486,21 @@ + + + + + + + + + @@ -4858,6 +5557,7 @@ + @@ -4889,8 +5589,16 @@ + + + + + + + + @@ -5042,12 +5750,16 @@ + + + + @@ -5495,6 +6207,15 @@ + + + + + + + + + @@ -5976,6 +6697,19 @@ + + + + + + + + + + + + + @@ -6030,6 +6764,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -6076,6 +6928,15 @@ + + + + + + + + + @@ -6274,6 +7135,14 @@ + + + + + + + + @@ -6301,6 +7170,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -6319,6 +7267,21 @@ + + + + + + + + + + + + + + + @@ -6348,6 +7311,18 @@ + + + + + + + + + + + + @@ -6698,6 +7673,23 @@ + + + + + + + + + + + + + + + + + @@ -6732,6 +7724,12 @@ + + + + + + @@ -6770,6 +7768,25 @@ + + + + + + + + + + + + + + + + + + + @@ -6803,10 +7820,10 @@ - + - + @@ -6826,6 +7843,8 @@ + + @@ -6861,7 +7880,7 @@ - + @@ -6905,6 +7924,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -6952,6 +7999,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -6962,6 +8043,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -6969,20 +8087,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -7065,7 +8264,7 @@ - + @@ -7144,17 +8343,17 @@ - + - + - + @@ -7176,39 +8375,39 @@ - + - + - + - + - + - + @@ -7216,7 +8415,7 @@ - + @@ -7224,7 +8423,7 @@ - + @@ -7232,14 +8431,14 @@ - + - + @@ -7280,8 +8479,8 @@ - - + + @@ -7290,7 +8489,7 @@ - + @@ -7387,7 +8586,7 @@ - + @@ -7532,7 +8731,7 @@ - + @@ -7541,12 +8740,12 @@ - + - + @@ -7556,20 +8755,20 @@ - - + + - - + + - - + + @@ -7579,33 +8778,33 @@ - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + @@ -7623,7 +8822,7 @@ - + @@ -7636,7 +8835,7 @@ - + @@ -7650,8 +8849,8 @@ - - + + @@ -7682,10 +8881,10 @@ - + - + @@ -7693,7 +8892,7 @@ - + @@ -7716,16 +8915,16 @@ - + - + - - + + @@ -7745,20 +8944,20 @@ - - - - + + + + - + - - + + @@ -7801,15 +9000,15 @@ - - - + + + - + @@ -7817,11 +9016,11 @@ - + - - + + @@ -7837,7 +9036,7 @@ - + @@ -7845,21 +9044,21 @@ - + - + - + @@ -7867,8 +9066,8 @@ - - + + @@ -7881,8 +9080,8 @@ - - + + @@ -7900,22 +9099,22 @@ - + - + - - + + - + - + @@ -8077,22 +9276,22 @@ - + - + - + - + @@ -8138,7 +9337,7 @@ - + @@ -8147,7 +9346,7 @@ - + @@ -8156,7 +9355,7 @@ - + @@ -8168,7 +9367,7 @@ - + @@ -8180,7 +9379,7 @@ - + @@ -8259,7 +9458,7 @@ - + @@ -8270,7 +9469,7 @@ - + @@ -8282,7 +9481,7 @@ - + @@ -8333,7 +9532,7 @@ - + @@ -8343,7 +9542,7 @@ - + @@ -8354,7 +9553,7 @@ - + @@ -8403,7 +9602,7 @@ - + @@ -8414,7 +9613,7 @@ - + @@ -8426,7 +9625,7 @@ - + @@ -8440,7 +9639,7 @@ - + @@ -8463,7 +9662,7 @@ - + @@ -8490,7 +9689,7 @@ - + @@ -8522,7 +9721,7 @@ - + @@ -8531,7 +9730,7 @@ - + @@ -8540,7 +9739,7 @@ - + @@ -8550,7 +9749,7 @@ - + @@ -8560,7 +9759,7 @@ - + @@ -8572,7 +9771,7 @@ - + @@ -8584,7 +9783,7 @@ - + @@ -8596,7 +9795,7 @@ - + @@ -8607,20 +9806,20 @@ - - + + - - + + - - + + @@ -8644,7 +9843,7 @@ - + @@ -8652,7 +9851,7 @@ - + @@ -8660,7 +9859,7 @@ - + @@ -8668,7 +9867,7 @@ - + @@ -8676,7 +9875,7 @@ - + @@ -8685,7 +9884,7 @@ - + @@ -8694,13 +9893,13 @@ - + - + @@ -8712,13 +9911,13 @@ - + - + @@ -8732,7 +9931,7 @@ - + @@ -8743,7 +9942,7 @@ - + @@ -8802,7 +10001,7 @@ - + @@ -8812,7 +10011,7 @@ - + @@ -8856,7 +10055,7 @@ - + @@ -8867,7 +10066,7 @@ - + @@ -8948,7 +10147,7 @@ - + @@ -8983,17 +10182,17 @@ - + - + - + @@ -9011,49 +10210,49 @@ - + - + - + - + - + - + - + - + - + - + @@ -9063,19 +10262,19 @@ - + - + - + - + @@ -9113,27 +10312,27 @@ - - - + + + - - - + + + - - - + + + @@ -9141,43 +10340,43 @@ - + - - + + - + - + - - + + - + - - + + - + @@ -9232,7 +10431,7 @@ - + @@ -9323,6 +10522,11 @@ + + + + + @@ -9340,12 +10544,12 @@ - + - + @@ -9445,7 +10649,7 @@ - + @@ -9592,7 +10796,7 @@ - + @@ -9607,7 +10811,7 @@ - + @@ -9625,7 +10829,7 @@ - + @@ -9775,7 +10979,7 @@ - + @@ -9828,11 +11032,11 @@ - + - + @@ -9893,7 +11097,7 @@ - + @@ -9931,7 +11135,7 @@ - + @@ -10015,12 +11219,12 @@ - + - + @@ -10113,8 +11317,8 @@ - - + + @@ -10138,21 +11342,21 @@ - + - + - + @@ -10161,7 +11365,7 @@ - + @@ -10169,7 +11373,7 @@ - + @@ -10177,7 +11381,7 @@ - + @@ -10185,7 +11389,7 @@ - + @@ -10193,7 +11397,7 @@ - + @@ -10202,7 +11406,7 @@ - + @@ -10310,11 +11514,11 @@ - + - + @@ -10400,6 +11604,11 @@ + + + + + @@ -10417,7 +11626,7 @@ - + @@ -10459,7 +11668,7 @@ - + @@ -10469,13 +11678,13 @@ - + - + @@ -10484,15 +11693,15 @@ - + - + - + @@ -10505,14 +11714,14 @@ - + - + @@ -10536,7 +11745,7 @@ - + @@ -10575,7 +11784,7 @@ - + @@ -10587,7 +11796,7 @@ - + @@ -10606,12 +11815,12 @@ - + - + @@ -10631,13 +11840,13 @@ - + - + @@ -10649,13 +11858,13 @@ - + - + @@ -10769,7 +11978,7 @@ - + @@ -10781,7 +11990,7 @@ - + @@ -10805,10 +12014,10 @@ - - + + - + @@ -10817,7 +12026,7 @@ - + @@ -10826,10 +12035,10 @@ - - + + - + @@ -10837,10 +12046,10 @@ - - + + - + @@ -10851,7 +12060,7 @@ - + @@ -10891,7 +12100,7 @@ - + @@ -10954,20 +12163,20 @@ - + - + - - + + @@ -10975,8 +12184,8 @@ - - + + @@ -10987,20 +12196,20 @@ - + - + - + - + @@ -11016,8 +12225,8 @@ - - + + @@ -11028,8 +12237,8 @@ - - + + @@ -11040,8 +12249,8 @@ - - + + @@ -11050,7 +12259,7 @@ - + @@ -11058,7 +12267,7 @@ - + @@ -11084,12 +12293,12 @@ - + - + @@ -11112,26 +12321,26 @@ - - - + + + - - - + + + - - + + - + @@ -11155,14 +12364,14 @@ - - + + - - + + @@ -11233,20 +12442,20 @@ - - + + - - + + - - + + @@ -11257,7 +12466,7 @@ - + @@ -11273,8 +12482,8 @@ - - + + @@ -11285,8 +12494,8 @@ - - + + @@ -11297,7 +12506,7 @@ - + @@ -11398,13 +12607,13 @@ - + - + @@ -11422,7 +12631,7 @@ - + @@ -11448,8 +12657,8 @@ - - + + @@ -11471,7 +12680,7 @@ - + @@ -11484,7 +12693,7 @@ - + @@ -11525,7 +12734,7 @@ - + @@ -11551,24 +12760,24 @@ - - - + + + - + - - - + + + @@ -11579,58 +12788,58 @@ - + - - + + - - + + - - + + - - + + - + - - + + - + - + - + @@ -11641,9 +12850,9 @@ - - - + + + @@ -11652,10 +12861,10 @@ - + - - + + @@ -11974,7 +13183,7 @@ - + @@ -11994,7 +13203,7 @@ - + @@ -12010,13 +13219,13 @@ - + - + @@ -12082,8 +13291,8 @@ - - + + @@ -12167,19 +13376,19 @@ - + - + - + @@ -12190,13 +13399,13 @@ - + - + @@ -12207,19 +13416,19 @@ - + - + - + @@ -12228,8 +13437,8 @@ - - + + @@ -12254,113 +13463,113 @@ - + - + - + - + - + - - + + - + - + - + - + - + - + - + - + - + - + - + - + @@ -12371,7 +13580,7 @@ - + @@ -12389,8 +13598,8 @@ - - + + @@ -12408,24 +13617,24 @@ - + - + - + - + @@ -12442,8 +13651,8 @@ - - + + @@ -12454,15 +13663,15 @@ - - + + - + - + @@ -12485,8 +13694,8 @@ - - + + @@ -12501,8 +13710,8 @@ - - + + @@ -12519,7 +13728,7 @@ - + @@ -12534,7 +13743,7 @@ - + @@ -12548,7 +13757,7 @@ - + @@ -12561,7 +13770,7 @@ - + @@ -12574,7 +13783,7 @@ - + @@ -12587,7 +13796,7 @@ - + @@ -12617,8 +13826,8 @@ - - + + @@ -12632,21 +13841,21 @@ - + - + - + @@ -12724,7 +13933,7 @@ - + @@ -12802,46 +14011,46 @@ - + - + - + - + - + - + - + @@ -12907,31 +14116,31 @@ - + - + - + - + - + @@ -13040,16 +14249,16 @@ - + - + - + @@ -13198,7 +14407,7 @@ - + @@ -13206,13 +14415,13 @@ - + - + @@ -13222,7 +14431,7 @@ - + @@ -13262,7 +14471,7 @@ - + @@ -13459,24 +14668,24 @@ - + - + - - + + - - + + @@ -13607,7 +14816,7 @@ - + @@ -13616,7 +14825,7 @@ - + @@ -13668,19 +14877,19 @@ - + - + - + @@ -13763,18 +14972,18 @@ - - + + - - + + - + @@ -13816,17 +15025,17 @@ - + - + - + @@ -13835,12 +15044,12 @@ - + - + @@ -13855,12 +15064,12 @@ - + - + @@ -13870,17 +15079,17 @@ - + - + - + @@ -13890,15 +15099,15 @@ - + - + - + @@ -13906,7 +15115,7 @@ - + @@ -13914,28 +15123,28 @@ - + - + - + - + @@ -13946,16 +15155,20 @@ + + + + - + - + - + @@ -13965,14 +15178,14 @@ - - + + - + @@ -13994,7 +15207,7 @@ - + @@ -14003,7 +15216,7 @@ - + @@ -14149,7 +15362,7 @@ - + @@ -14157,7 +15370,7 @@ - + @@ -14165,7 +15378,7 @@ - + @@ -14175,7 +15388,7 @@ - + @@ -14184,7 +15397,7 @@ - + @@ -14225,12 +15438,12 @@ - + - + @@ -14285,23 +15498,23 @@ - + - + - + - + @@ -14361,25 +15574,25 @@ - + - + - + - + @@ -14444,19 +15657,19 @@ - + - + - + @@ -14464,7 +15677,7 @@ - + @@ -14534,7 +15747,7 @@ - + @@ -14542,55 +15755,55 @@ - + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + @@ -14676,7 +15889,7 @@ - + @@ -14688,7 +15901,7 @@ - + @@ -14701,7 +15914,7 @@ - + @@ -14818,7 +16031,7 @@ - + @@ -14846,14 +16059,14 @@ - + - + @@ -14861,7 +16074,7 @@ - + @@ -14895,18 +16108,18 @@ - + - + - + @@ -14918,13 +16131,13 @@ - + - - + + @@ -14958,7 +16171,7 @@ - + @@ -15005,7 +16218,7 @@ - + @@ -15121,14 +16334,14 @@ - + - + @@ -15136,7 +16349,7 @@ - + @@ -15145,7 +16358,7 @@ - + @@ -15153,7 +16366,7 @@ - + @@ -15212,12 +16425,12 @@ - + - + @@ -15301,14 +16514,14 @@ - + - + @@ -15367,12 +16580,12 @@ - + - + @@ -15417,7 +16630,7 @@ - + @@ -15427,7 +16640,7 @@ - + @@ -15551,13 +16764,13 @@ - + - + @@ -15586,7 +16799,7 @@ - + @@ -15681,12 +16894,12 @@ - + - + @@ -17132,11 +18345,11 @@ - + - + @@ -17144,14 +18357,14 @@ - + - + @@ -17164,7 +18377,7 @@ - + @@ -17173,12 +18386,24 @@ - + + + + + + + + + + + + + @@ -17223,8 +18448,8 @@ - - + + @@ -17234,8 +18459,8 @@ - - + + @@ -17277,22 +18502,22 @@ - + - + - + - + @@ -17301,15 +18526,15 @@ - + - + - + @@ -17494,7 +18719,7 @@ - + @@ -17502,7 +18727,7 @@ - + @@ -17574,37 +18799,37 @@ - + - + - + - + - + - + @@ -17725,17 +18950,17 @@ - + - + - + @@ -17769,8 +18994,8 @@ - - + + @@ -17781,7 +19006,7 @@ - + @@ -18132,19 +19357,19 @@ - + - + - - + + @@ -18409,42 +19634,42 @@ - + - + - + - + - + - + - + - + @@ -18471,14 +19696,14 @@ - - + + - - + + @@ -18490,28 +19715,28 @@ - - + + - - + + - + - + - + @@ -18523,7 +19748,7 @@ - + @@ -18534,9 +19759,9 @@ - + - + @@ -18544,7 +19769,7 @@ - + @@ -18557,7 +19782,7 @@ - + @@ -18593,14 +19818,14 @@ - - + + - - + + @@ -18610,42 +19835,42 @@ - + - + - + - + - + - + - + - + - + - + @@ -18706,13 +19931,13 @@ - - + + - + @@ -18775,20 +20000,20 @@ - + - + - + @@ -18797,7 +20022,7 @@ - + @@ -18814,7 +20039,7 @@ - + @@ -18826,7 +20051,7 @@ - + @@ -18837,7 +20062,7 @@ - + @@ -18848,7 +20073,7 @@ - + @@ -18860,7 +20085,7 @@ - + @@ -18872,7 +20097,7 @@ - + @@ -18884,7 +20109,7 @@ - + @@ -18920,7 +20145,7 @@ - + @@ -18933,7 +20158,7 @@ - + @@ -18946,7 +20171,7 @@ - + @@ -18959,7 +20184,7 @@ - + @@ -18972,7 +20197,7 @@ - + @@ -18985,7 +20210,7 @@ - + @@ -19011,7 +20236,7 @@ - + @@ -19019,14 +20244,14 @@ - + - + @@ -19035,7 +20260,7 @@ - + @@ -19043,7 +20268,7 @@ - + @@ -19053,7 +20278,7 @@ - + @@ -19062,7 +20287,7 @@ - + @@ -19072,7 +20297,7 @@ - + @@ -19081,7 +20306,7 @@ - + @@ -19092,7 +20317,7 @@ - + @@ -19155,12 +20380,12 @@ - + - + @@ -19168,8 +20393,8 @@ - - + + @@ -19191,8 +20416,8 @@ - - + + @@ -19218,8 +20443,8 @@ - - + + @@ -19240,9 +20465,9 @@ - + - + @@ -19830,7 +21055,7 @@ - + @@ -19884,13 +21109,13 @@ - + - + @@ -20116,7 +21341,7 @@ - + @@ -20125,7 +21350,7 @@ - + @@ -20133,7 +21358,7 @@ - + @@ -20902,7 +22127,7 @@ - + @@ -21104,21 +22329,21 @@ - + - + - + @@ -21126,63 +22351,63 @@ - + - + - + - + - + - + - + - + - + @@ -21333,37 +22558,37 @@ - + - + - + - + - + - + - + @@ -22393,8 +23618,8 @@ - - + + @@ -23790,7 +25015,7 @@ - + @@ -23801,7 +25026,7 @@ - + @@ -24106,7 +25331,7 @@ - + @@ -24116,7 +25341,7 @@ - + @@ -24338,7 +25563,7 @@ - + @@ -24473,7 +25698,7 @@ - + @@ -24483,7 +25708,7 @@ - + @@ -24494,7 +25719,7 @@ - + @@ -24792,15 +26017,17 @@ - - - - - + + + + + + + @@ -24810,14 +26037,14 @@ - + - - - - + + + + @@ -25095,7 +26322,7 @@ - + @@ -25129,7 +26356,7 @@ - + @@ -25162,20 +26389,20 @@ - - + + - + - + @@ -25308,7 +26535,7 @@ - + @@ -25343,7 +26570,7 @@ - + @@ -25353,7 +26580,7 @@ - + @@ -25378,7 +26605,7 @@ - + @@ -25391,7 +26618,7 @@ - + @@ -26136,17 +27363,17 @@ - + - + - + @@ -26183,12 +27410,12 @@ - + - + @@ -26196,26 +27423,26 @@ - + - + - + - + @@ -26244,12 +27471,12 @@ - + - + @@ -26275,7 +27502,7 @@ - + @@ -26283,7 +27510,7 @@ - + @@ -26291,7 +27518,7 @@ - + @@ -26306,7 +27533,7 @@ - + @@ -26325,7 +27552,7 @@ - + @@ -26338,24 +27565,24 @@ - + - + - + - + @@ -26400,7 +27627,7 @@ - + @@ -26425,15 +27652,15 @@ - + - + - + @@ -26622,7 +27849,7 @@ - + @@ -26693,13 +27920,13 @@ - + - + @@ -26707,8 +27934,8 @@ - - + + @@ -26732,7 +27959,7 @@ - + @@ -26756,12 +27983,12 @@ - + - + @@ -26784,7 +28011,7 @@ - + @@ -26864,9 +28091,9 @@ - + - + @@ -26900,13 +28127,13 @@ - + - - + + @@ -26918,25 +28145,25 @@ - + - + - + - + @@ -26956,7 +28183,7 @@ - + @@ -26965,18 +28192,18 @@ - + - + - + - + @@ -27022,22 +28249,22 @@ - + - + - + - + @@ -27058,37 +28285,37 @@ - + - + - + - + - + - + @@ -27097,151 +28324,151 @@ - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -27252,87 +28479,87 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -27420,39 +28647,39 @@ - + - + - + - - + + - - + + - - - - + + + + @@ -27467,7 +28694,7 @@ - + @@ -27483,7 +28710,7 @@ - + @@ -27494,7 +28721,7 @@ - + @@ -27503,15 +28730,15 @@ - + - + - + @@ -27520,27 +28747,27 @@ - - + + - + - + - + @@ -27551,7 +28778,7 @@ - + @@ -27565,12 +28792,12 @@ - + - + @@ -27694,7 +28921,7 @@ - + @@ -27752,7 +28979,7 @@ - + @@ -27785,7 +29012,7 @@ - + @@ -27813,20 +29040,20 @@ - + - - + + - + @@ -28255,7 +29482,7 @@ - + @@ -28312,7 +29539,7 @@ - + @@ -28458,8 +29685,8 @@ - - + + @@ -28473,7 +29700,7 @@ - + @@ -28482,7 +29709,7 @@ - + @@ -28505,41 +29732,41 @@ - + - - - + + + - + - + - + - + - + - + - + @@ -28819,32 +30046,32 @@ - - - - + + + + - + - - + + - + - + @@ -28860,19 +30087,19 @@ - - - + + + - - + + - + @@ -28888,32 +30115,32 @@ - - + + - - + + - + - - + + - - - + + + @@ -28940,20 +30167,20 @@ - - + + - + - + @@ -28964,19 +30191,19 @@ - + - + - + @@ -28994,7 +30221,7 @@ - + @@ -29002,7 +30229,7 @@ - + @@ -29034,14 +30261,14 @@ - + - + @@ -29057,7 +30284,7 @@ - + @@ -29070,26 +30297,26 @@ - - + + - + - + - + - + @@ -29098,9 +30325,9 @@ - + - + @@ -29130,7 +30357,7 @@ - + @@ -29169,14 +30396,14 @@ - + - + @@ -29211,17 +30438,17 @@ - + - + - - + + @@ -29234,8 +30461,8 @@ - - + + @@ -29298,36 +30525,36 @@ - - + + - - + + - - - + + + - + - - + + - + @@ -29335,28 +30562,28 @@ - + - + - + - - + + @@ -29364,7 +30591,7 @@ - + @@ -29376,7 +30603,7 @@ - + @@ -29390,7 +30617,7 @@ - + @@ -29437,49 +30664,49 @@ - + - + - + - + - + - + - + - + - + - + - + @@ -29523,23 +30750,23 @@ - + - + - + - + @@ -29552,99 +30779,99 @@ - - + + - + - + - - - + + + - + - - - + + + - + - - + + - - + + - - + + - - + + - + - - + + - + - + - + @@ -29655,9 +30882,9 @@ - - - + + + @@ -29666,10 +30893,10 @@ - + - - + + @@ -29705,36 +30932,36 @@ - + - + - + - + - - + + @@ -29742,38 +30969,38 @@ - + - + - + - + - + - + @@ -29786,62 +31013,62 @@ - - + + - + - + - + - + - + - + - + - + @@ -29850,32 +31077,32 @@ - + - + - + - + - + @@ -29887,43 +31114,43 @@ - + - + - + - + - - + + - + - + @@ -29931,7 +31158,7 @@ - + @@ -29939,7 +31166,7 @@ - + @@ -29949,8 +31176,8 @@ - - + + @@ -29960,13 +31187,13 @@ - + - + @@ -29974,51 +31201,51 @@ - + - + - + - + - + - + - + - + @@ -30026,7 +31253,7 @@ - + @@ -30035,7 +31262,7 @@ - + @@ -30044,7 +31271,7 @@ - + @@ -30056,8 +31283,8 @@ - - + + @@ -30068,8 +31295,8 @@ - - + + @@ -30082,8 +31309,8 @@ - - + + @@ -30115,7 +31342,7 @@ - + @@ -30124,7 +31351,7 @@ - + @@ -30132,7 +31359,7 @@ - + @@ -30612,17 +31839,17 @@ + + - + + - - - @@ -31439,6 +32666,18 @@ + + + + + + + + + + + + @@ -31447,6 +32686,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -31455,45 +32755,117 @@ + + + - - - - + + - - - - - - - - - - - - + - - - - - + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -31521,6 +32893,11 @@ + + + + + @@ -31529,6 +32906,14 @@ + + + + + + + + @@ -31539,6 +32924,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -31561,6 +32991,11 @@ + + + + + @@ -31581,8 +33016,11 @@ + + + @@ -31600,18 +33038,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -31807,6 +33292,13 @@ + + + + + + + @@ -31821,9 +33313,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -31839,6 +33457,16 @@ + + + + + + + + + + @@ -31849,6 +33477,28 @@ + + + + + + + + + + + + + + + + + + + + + + @@ -31859,6 +33509,22 @@ + + + + + + + + + + + + + + + + @@ -31866,6 +33532,8 @@ + + @@ -32154,6 +33822,8 @@ + + @@ -32205,6 +33875,12 @@ + + + + + + @@ -32267,6 +33943,8 @@ + + @@ -32302,9 +33980,6 @@ - - - @@ -32325,21 +34000,246 @@ - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -32455,6 +34355,10 @@ + + + + @@ -32611,8 +34515,11 @@ + + + @@ -32620,12 +34527,21 @@ + + + + + + + + + @@ -32678,6 +34594,7 @@ + @@ -32832,12 +34749,16 @@ + + + + @@ -33164,6 +35085,19 @@ + + + + + + + + + + + + + @@ -33178,6 +35112,130 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -33369,6 +35427,14 @@ + + + + + + + + @@ -33394,6 +35460,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -33408,6 +35553,21 @@ + + + + + + + + + + + + + + + @@ -33425,6 +35585,18 @@ + + + + + + + + + + + + @@ -33432,6 +35604,23 @@ + + + + + + + + + + + + + + + + + @@ -33463,6 +35652,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + @@ -33485,8 +35699,10 @@ + + @@ -33502,6 +35718,8 @@ + + @@ -33537,6 +35755,7 @@ + @@ -33580,6 +35799,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -33627,6 +35874,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -33636,6 +35917,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -33643,20 +35961,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -33688,19 +36087,19 @@ - + - + - + @@ -33708,14 +36107,14 @@ - + - + @@ -33741,8 +36140,8 @@ - - + + @@ -33793,7 +36192,7 @@ - + @@ -33830,32 +36229,32 @@ - + - + - - + + - - + + - - - - + + + + @@ -33873,7 +36272,7 @@ - + @@ -33887,8 +36286,8 @@ - - + + @@ -33906,10 +36305,10 @@ - + - + @@ -33918,12 +36317,12 @@ - + - - + + @@ -33931,20 +36330,20 @@ - - - - + + + + - + - - + + @@ -33954,15 +36353,15 @@ - - - + + + - + @@ -33970,11 +36369,11 @@ - + - - + + @@ -33990,7 +36389,7 @@ - + @@ -33998,21 +36397,21 @@ - + - + - + @@ -34020,8 +36419,8 @@ - - + + @@ -34034,8 +36433,8 @@ - - + + @@ -34045,13 +36444,13 @@ - + - + - - + + @@ -34061,22 +36460,22 @@ - + - + - + - + @@ -34091,7 +36490,7 @@ - + @@ -34100,13 +36499,13 @@ - + - + @@ -34130,7 +36529,7 @@ - + @@ -34141,7 +36540,7 @@ - + @@ -34153,7 +36552,7 @@ - + @@ -34205,7 +36604,7 @@ - + @@ -34216,7 +36615,7 @@ - + @@ -34228,7 +36627,7 @@ - + @@ -34242,7 +36641,7 @@ - + @@ -34265,7 +36664,7 @@ - + @@ -34292,7 +36691,7 @@ - + @@ -34324,7 +36723,7 @@ - + @@ -34333,7 +36732,7 @@ - + @@ -34343,31 +36742,31 @@ - + - + - + - + - - + + @@ -34383,7 +36782,7 @@ - + @@ -34391,7 +36790,7 @@ - + @@ -34399,7 +36798,7 @@ - + @@ -34408,13 +36807,13 @@ - + - + @@ -34428,7 +36827,7 @@ - + @@ -34439,7 +36838,7 @@ - + @@ -34499,7 +36898,7 @@ - + @@ -34510,7 +36909,7 @@ - + @@ -34591,7 +36990,7 @@ - + @@ -34626,17 +37025,17 @@ - + - + - + @@ -34646,45 +37045,45 @@ - + - + - + - + - + - + - + - + - + @@ -34694,19 +37093,19 @@ - + - + - + - + @@ -34725,62 +37124,62 @@ - - - + + + - - - + + + - - - + + + - - + + - + - - + + - + - - + + - + - + @@ -34829,7 +37228,7 @@ - + @@ -34874,7 +37273,7 @@ - + @@ -34981,7 +37380,7 @@ - + @@ -34996,7 +37395,7 @@ - + @@ -35014,7 +37413,7 @@ - + @@ -35092,7 +37491,7 @@ - + @@ -35123,7 +37522,7 @@ - + @@ -35131,7 +37530,7 @@ - + @@ -35174,8 +37573,8 @@ - - + + @@ -35192,14 +37591,14 @@ - + - + @@ -35208,7 +37607,7 @@ - + @@ -35216,7 +37615,7 @@ - + @@ -35224,7 +37623,7 @@ - + @@ -35271,7 +37670,7 @@ - + @@ -35335,13 +37734,13 @@ - + - + @@ -35350,15 +37749,15 @@ - + - + - + @@ -35368,7 +37767,7 @@ - + @@ -35392,18 +37791,18 @@ - + - + - + @@ -35417,13 +37816,13 @@ - + - + @@ -35475,13 +37874,13 @@ - + - + @@ -35493,10 +37892,10 @@ - - + + - + @@ -35504,10 +37903,10 @@ - - + + - + @@ -35515,16 +37914,16 @@ - - + + - + - + @@ -35571,13 +37970,13 @@ - + - - + + @@ -35588,16 +37987,16 @@ - + - + - + - + @@ -35605,14 +38004,14 @@ - - + + - - + + @@ -35621,7 +38020,7 @@ - + @@ -35629,16 +38028,16 @@ - + - + - + @@ -35661,32 +38060,32 @@ - - - + + + - - - + + + - - + + - + - + @@ -35694,19 +38093,19 @@ - - + + - - + + - + @@ -35801,13 +38200,13 @@ - + - + @@ -35825,7 +38224,7 @@ - + @@ -35851,8 +38250,8 @@ - - + + @@ -35865,7 +38264,7 @@ - + @@ -35878,7 +38277,7 @@ - + @@ -35919,7 +38318,7 @@ - + @@ -35945,24 +38344,24 @@ - - - + + + - + - - - + + + @@ -35973,58 +38372,58 @@ - + - - + + - - + + - - + + - - + + - + - - + + - + - + - + @@ -36035,9 +38434,9 @@ - - - + + + @@ -36046,10 +38445,10 @@ - + - - + + @@ -36325,7 +38724,7 @@ - + @@ -36376,8 +38775,8 @@ - - + + @@ -36397,19 +38796,19 @@ - + - + - + @@ -36420,13 +38819,13 @@ - + - + @@ -36437,19 +38836,19 @@ - + - + - + @@ -36458,90 +38857,90 @@ - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -36550,31 +38949,31 @@ - - + + - + - + - + - + @@ -36591,8 +38990,8 @@ - - + + @@ -36609,7 +39008,7 @@ - + @@ -36624,7 +39023,7 @@ - + @@ -36638,7 +39037,7 @@ - + @@ -36651,7 +39050,7 @@ - + @@ -36664,7 +39063,7 @@ - + @@ -36677,7 +39076,7 @@ - + @@ -36707,29 +39106,29 @@ - - + + - + - + - + @@ -36764,7 +39163,7 @@ - + @@ -36784,70 +39183,70 @@ - + - + - + - + - + - + - + - + - + - + - + @@ -36856,9 +39255,9 @@ - + - + @@ -36890,7 +39289,7 @@ - + @@ -36898,13 +39297,13 @@ - + - + @@ -36914,7 +39313,7 @@ - + @@ -36946,7 +39345,7 @@ - + @@ -37106,19 +39505,19 @@ - + - + - + @@ -37128,7 +39527,7 @@ - + @@ -37148,17 +39547,17 @@ - + - + - + @@ -37167,12 +39566,12 @@ - + - + @@ -37187,12 +39586,12 @@ - + - + @@ -37202,17 +39601,17 @@ - + - + - + @@ -37222,15 +39621,15 @@ - + - + - + @@ -37238,7 +39637,7 @@ - + @@ -37246,28 +39645,28 @@ - + - + - + - + @@ -37278,17 +39677,21 @@ + + + + - + - + - - + + @@ -37339,7 +39742,7 @@ - + @@ -37347,7 +39750,7 @@ - + @@ -37357,7 +39760,7 @@ - + @@ -37366,7 +39769,7 @@ - + @@ -37381,50 +39784,50 @@ - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + @@ -37510,7 +39913,7 @@ - + @@ -37522,7 +39925,7 @@ - + @@ -37535,7 +39938,7 @@ - + @@ -37636,7 +40039,7 @@ - + @@ -37664,14 +40067,14 @@ - + - + @@ -37698,18 +40101,18 @@ - + - + - + @@ -37721,13 +40124,13 @@ - + - - + + @@ -37754,7 +40157,7 @@ - + @@ -37801,7 +40204,7 @@ - + @@ -37917,14 +40320,14 @@ - + - + @@ -37932,7 +40335,7 @@ - + @@ -37941,7 +40344,7 @@ - + @@ -37949,7 +40352,7 @@ - + @@ -37968,24 +40371,24 @@ - + - + - + - + @@ -38004,12 +40407,12 @@ - + - + @@ -38054,7 +40457,7 @@ - + @@ -38064,7 +40467,7 @@ - + @@ -39278,7 +41681,7 @@ - + @@ -39286,14 +41689,14 @@ - + - + @@ -39306,7 +41709,7 @@ - + @@ -39319,8 +41722,8 @@ - - + + @@ -39330,8 +41733,8 @@ - - + + @@ -39352,15 +41755,15 @@ - + - + - + @@ -39369,17 +41772,17 @@ - + - + - + @@ -39395,37 +41798,37 @@ - + - + - + - + - + - + @@ -39450,17 +41853,17 @@ - + - + - + @@ -39473,8 +41876,8 @@ - - + + @@ -39597,13 +42000,13 @@ - + - - + + @@ -39616,58 +42019,58 @@ - + - + - + - + - + - + - + - + - + - + - + - + @@ -39687,42 +42090,42 @@ - + - + - + - + - + - + - + - + - + - + @@ -39737,20 +42140,20 @@ - + - + - + @@ -39759,7 +42162,7 @@ - + @@ -39769,7 +42172,7 @@ - + @@ -39781,7 +42184,7 @@ - + @@ -39794,7 +42197,7 @@ - + @@ -39818,7 +42221,7 @@ - + @@ -39831,7 +42234,7 @@ - + @@ -39844,7 +42247,7 @@ - + @@ -39857,7 +42260,7 @@ - + @@ -39870,7 +42273,7 @@ - + @@ -39883,7 +42286,7 @@ - + @@ -39903,7 +42306,7 @@ - + @@ -39911,14 +42314,14 @@ - + - + @@ -39927,7 +42330,7 @@ - + @@ -39935,7 +42338,7 @@ - + @@ -39945,7 +42348,7 @@ - + @@ -39954,7 +42357,7 @@ - + @@ -39964,7 +42367,7 @@ - + @@ -39973,7 +42376,7 @@ - + @@ -39984,7 +42387,7 @@ - + @@ -39996,8 +42399,8 @@ - - + + @@ -40019,8 +42422,8 @@ - - + + @@ -40046,8 +42449,8 @@ - - + + @@ -40068,9 +42471,9 @@ - + - + @@ -40440,7 +42843,7 @@ - + @@ -40466,13 +42869,13 @@ - + - + @@ -40499,7 +42902,7 @@ - + @@ -40508,7 +42911,7 @@ - + @@ -40516,7 +42919,7 @@ - + @@ -40898,77 +43301,77 @@ - + - + - + - + - + - + - + - + - + - + - + @@ -40980,37 +43383,37 @@ - + - + - + - + - + - + - + @@ -41245,8 +43648,8 @@ - - + + @@ -41451,7 +43854,7 @@ - + @@ -41462,7 +43865,7 @@ - + @@ -41544,7 +43947,7 @@ - + @@ -41554,7 +43957,7 @@ - + @@ -41700,7 +44103,7 @@ - + @@ -41794,7 +44197,7 @@ - + @@ -41804,7 +44207,7 @@ - + @@ -41815,7 +44218,7 @@ - + @@ -41890,15 +44293,17 @@ - - - - - + + + + + + + @@ -41908,14 +44313,14 @@ - + - - - - + + + + @@ -41986,7 +44391,7 @@ - + @@ -42020,7 +44425,7 @@ - + @@ -42053,20 +44458,20 @@ - - + + - + - + @@ -42195,7 +44600,7 @@ - + @@ -42230,7 +44635,7 @@ - + @@ -42240,7 +44645,7 @@ - + @@ -42265,7 +44670,7 @@ - + @@ -42278,7 +44683,7 @@ - + @@ -43011,17 +45416,17 @@ - + - + - + @@ -43058,12 +45463,12 @@ - + - + @@ -43071,26 +45476,26 @@ - + - + - + - + @@ -43119,12 +45524,12 @@ - + - + @@ -43150,7 +45555,7 @@ - + @@ -43158,7 +45563,7 @@ - + @@ -43166,7 +45571,7 @@ - + @@ -43181,7 +45586,7 @@ - + @@ -43200,7 +45605,7 @@ - + @@ -43213,24 +45618,24 @@ - + - + - + - + @@ -43275,7 +45680,7 @@ - + @@ -43300,15 +45705,15 @@ - + - + - + @@ -43497,7 +45902,7 @@ - + @@ -43568,13 +45973,13 @@ - + - + @@ -43582,8 +45987,8 @@ - - + + @@ -43607,7 +46012,7 @@ - + @@ -43631,12 +46036,12 @@ - + - + @@ -43659,7 +46064,7 @@ - + @@ -43739,9 +46144,9 @@ - + - + @@ -43775,13 +46180,13 @@ - + - - + + @@ -43793,25 +46198,25 @@ - + - + - + - + @@ -43831,7 +46236,7 @@ - + @@ -43840,18 +46245,18 @@ - + - + - + - + @@ -43897,22 +46302,22 @@ - + - + - + - + @@ -43933,37 +46338,37 @@ - + - + - + - + - + - + @@ -43972,151 +46377,151 @@ - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -44127,87 +46532,87 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -44295,39 +46700,39 @@ - + - + - + - - + + - - + + - - - - + + + + @@ -44342,7 +46747,7 @@ - + @@ -44358,7 +46763,7 @@ - + @@ -44369,7 +46774,7 @@ - + @@ -44378,15 +46783,15 @@ - + - + - + @@ -44395,27 +46800,27 @@ - - + + - + - + - + @@ -44426,7 +46831,7 @@ - + @@ -44440,12 +46845,12 @@ - + - + @@ -44569,7 +46974,7 @@ - + @@ -44627,7 +47032,7 @@ - + @@ -44660,7 +47065,7 @@ - + @@ -44688,20 +47093,20 @@ - + - - + + - + @@ -45130,7 +47535,7 @@ - + @@ -45187,7 +47592,7 @@ - + @@ -45333,8 +47738,8 @@ - - + + @@ -45348,7 +47753,7 @@ - + @@ -45357,7 +47762,7 @@ - + @@ -45380,41 +47785,41 @@ - + - - - + + + - + - + - + - + - + - + - + @@ -45694,32 +48099,32 @@ - - - - + + + + - + - - + + - + - + @@ -45735,19 +48140,19 @@ - - - + + + - - + + - + @@ -45763,32 +48168,32 @@ - - + + - - + + - + - - + + - - - + + + @@ -45815,20 +48220,20 @@ - - + + - + - + @@ -45839,19 +48244,19 @@ - + - + - + @@ -45869,7 +48274,7 @@ - + @@ -45877,7 +48282,7 @@ - + @@ -45909,14 +48314,14 @@ - + - + @@ -45932,7 +48337,7 @@ - + @@ -45945,26 +48350,26 @@ - - + + - + - + - + - + @@ -45973,9 +48378,9 @@ - + - + @@ -46005,7 +48410,7 @@ - + @@ -46044,14 +48449,14 @@ - + - + @@ -46086,17 +48491,17 @@ - + - + - - + + @@ -46109,8 +48514,8 @@ - - + + @@ -46173,36 +48578,36 @@ - - + + - - + + - - - + + + - + - - + + - + @@ -46210,28 +48615,28 @@ - + - + - + - - + + @@ -46239,7 +48644,7 @@ - + @@ -46251,7 +48656,7 @@ - + @@ -46265,7 +48670,7 @@ - + @@ -46312,49 +48717,49 @@ - + - + - + - + - + - + - + - + - + - + - + @@ -46398,23 +48803,23 @@ - + - + - + - + @@ -46427,99 +48832,99 @@ - - + + - + - + - - - + + + - + - - - + + + - + - - + + - - + + - - + + - - + + - + - - + + - + - + - + @@ -46530,9 +48935,9 @@ - - - + + + @@ -46541,10 +48946,10 @@ - + - - + + @@ -46580,36 +48985,36 @@ - + - + - + - + - - + + @@ -46617,38 +49022,38 @@ - + - + - + - + - + - + @@ -46661,62 +49066,62 @@ - - + + - + - + - + - + - + - + - + - + @@ -46725,32 +49130,32 @@ - + - + - + - + - + @@ -46762,43 +49167,43 @@ - + - + - + - + - - + + - + - + @@ -46806,7 +49211,7 @@ - + @@ -46814,7 +49219,7 @@ - + @@ -46824,8 +49229,8 @@ - - + + @@ -46835,13 +49240,13 @@ - + - + @@ -46849,51 +49254,51 @@ - + - + - + - + - + - + - + - + @@ -46901,7 +49306,7 @@ - + @@ -46910,7 +49315,7 @@ - + @@ -46919,7 +49324,7 @@ - + @@ -46931,8 +49336,8 @@ - - + + @@ -46943,8 +49348,8 @@ - - + + @@ -46957,8 +49362,8 @@ - - + + @@ -46990,7 +49395,7 @@ - + @@ -46999,7 +49404,7 @@ - + @@ -47007,7 +49412,7 @@ - + @@ -47165,6 +49570,18 @@ + + + + + + + + + + + + @@ -47192,6 +49609,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -47201,45 +49679,117 @@ + + + - - - - + + - - - - - - - - - - - - + - - - - - + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -47267,6 +49817,11 @@ + + + + + @@ -47279,6 +49834,14 @@ + + + + + + + + @@ -47295,6 +49858,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -47323,6 +49931,11 @@ + + + + + @@ -47343,8 +49956,11 @@ + + + @@ -47362,18 +49978,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -47535,6 +50198,7 @@ + @@ -47668,6 +50332,14 @@ + + + + + + + + @@ -47682,9 +50354,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -47700,6 +50498,16 @@ + + + + + + + + + + @@ -47710,6 +50518,28 @@ + + + + + + + + + + + + + + + + + + + + + + @@ -47720,6 +50550,22 @@ + + + + + + + + + + + + + + + + @@ -47731,6 +50577,8 @@ + + @@ -48153,6 +51001,8 @@ + + @@ -48210,6 +51060,12 @@ + + + + + + @@ -48273,6 +51129,8 @@ + + @@ -48335,9 +51193,6 @@ - - - @@ -48373,21 +51228,330 @@ - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -48479,8 +51643,11 @@ + + + @@ -48488,12 +51655,21 @@ + + + + + + + + + @@ -48550,6 +51726,7 @@ + @@ -48603,6 +51780,19 @@ + + + + + + + + + + + + + @@ -48789,6 +51979,9 @@ + + + @@ -48808,9 +52001,137 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -49009,6 +52330,14 @@ + + + + + + + + @@ -49036,6 +52365,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -49091,6 +52481,24 @@ + + + + + + + + + + + + + + + + + + @@ -49105,6 +52513,21 @@ + + + + + + + + + + + + + + + @@ -49126,6 +52549,18 @@ + + + + + + + + + + + + @@ -49133,6 +52568,23 @@ + + + + + + + + + + + + + + + + + @@ -49167,6 +52619,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + @@ -49200,10 +52677,10 @@ - + - + @@ -49223,6 +52700,8 @@ + + @@ -49258,7 +52737,7 @@ - + @@ -49302,6 +52781,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -49349,6 +52856,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -49359,6 +52900,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -49366,37 +52944,118 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + @@ -49426,24 +53085,24 @@ - + - - + + - - - - + + + + - - + + @@ -49469,27 +53128,27 @@ - + - + - + - + - + - + @@ -49515,14 +53174,14 @@ - - + + - - + + @@ -49537,6 +53196,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -49644,7 +53349,7 @@ - + @@ -49683,7 +53388,7 @@ - + @@ -49723,8 +53428,8 @@ - - + + @@ -49751,7 +53456,7 @@ - + @@ -49760,50 +53465,50 @@ - + - + - + - - - + + + - - - + + + - - - + + + - - - + + + @@ -49827,7 +53532,7 @@ - + @@ -49851,18 +53556,18 @@ - - + + - + - + @@ -49872,6 +53577,28 @@ + + + + + + + + + + + + + + + + + + + + + + @@ -49892,58 +53619,58 @@ - + - - - + + + - + - - + + - + - - + + - - + + - - + + - - + + - - + + @@ -49961,60 +53688,100 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + + + + + + + + + + + + - + - - + + - - + + - - + + - - + + - + - + - - + + @@ -50026,6 +53793,11 @@ + + + + + @@ -50047,24 +53819,24 @@ - + - + - - + + - - + + @@ -50084,7 +53856,7 @@ - + @@ -50093,7 +53865,7 @@ - + @@ -50106,15 +53878,15 @@ - - + + - + - + @@ -50132,20 +53904,20 @@ - - + + - - + + - + @@ -50166,73 +53938,73 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -50240,12 +54012,12 @@ - + - + @@ -50253,7 +54025,7 @@ - + @@ -50275,6 +54047,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -50298,18 +54096,18 @@ - + - + - + @@ -50319,12 +54117,12 @@ - + - + @@ -50343,12 +54141,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -50389,8 +54215,8 @@ - - + + @@ -50408,32 +54234,32 @@ - + - + - + - + - + - + - - + + @@ -50469,7 +54295,7 @@ - + @@ -50553,84 +54379,84 @@ - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - + - + - + - + - + - + @@ -50640,7 +54466,7 @@ - + @@ -50648,7 +54474,7 @@ - + @@ -50657,7 +54483,7 @@ - + @@ -51090,7 +54916,7 @@ - + @@ -51105,8 +54931,8 @@ - - + + @@ -51158,12 +54984,12 @@ - + - + @@ -51205,7 +55031,7 @@ - + @@ -51228,7 +55054,7 @@ - + @@ -51325,12 +55151,12 @@ - + - + @@ -51378,12 +55204,12 @@ - + - + @@ -51391,7 +55217,7 @@ - + @@ -51412,8 +55238,8 @@ - - + + @@ -51424,8 +55250,8 @@ - - + + @@ -51451,8 +55277,8 @@ - - + + @@ -51469,8 +55295,8 @@ - - + + @@ -51514,24 +55340,24 @@ - + - + - - + + - - + + @@ -51571,14 +55397,14 @@ - - + + - - + + @@ -51595,7 +55421,7 @@ - + @@ -51662,12 +55488,12 @@ - + - + @@ -51800,21 +55626,21 @@ - - + + - - + + - + @@ -51848,14 +55674,14 @@ - - + + - - + + @@ -52052,6 +55878,18 @@ + + + + + + + + + + + + @@ -52079,6 +55917,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -52088,45 +55987,117 @@ + + + - - - - + + - - - - - - - - - - - - + - - - - - + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -52154,6 +56125,11 @@ + + + + + @@ -52166,6 +56142,14 @@ + + + + + + + + @@ -52182,6 +56166,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -52210,6 +56239,11 @@ + + + + + @@ -52230,8 +56264,11 @@ + + + @@ -52249,18 +56286,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -52452,6 +56536,14 @@ + + + + + + + + @@ -52738,6 +56830,8 @@ + + @@ -52908,6 +57002,12 @@ + + + + + + @@ -52934,6 +57034,9 @@ + + + @@ -53070,6 +57173,14 @@ + + + + + + + + @@ -53084,9 +57195,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -53102,6 +57339,16 @@ + + + + + + + + + + @@ -53112,6 +57359,28 @@ + + + + + + + + + + + + + + + + + + + + + + @@ -53122,6 +57391,22 @@ + + + + + + + + + + + + + + + + @@ -53133,6 +57418,8 @@ + + @@ -53555,6 +57842,8 @@ + + @@ -53612,6 +57901,12 @@ + + + + + + @@ -53675,6 +57970,8 @@ + + @@ -53767,9 +58064,6 @@ - - - @@ -53805,21 +58099,247 @@ - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -53935,6 +58455,10 @@ + + + + @@ -54107,8 +58631,11 @@ + + + @@ -54116,12 +58643,21 @@ + + + + + + + + + @@ -54178,6 +58714,7 @@ + @@ -54206,6 +58743,9 @@ + + + @@ -54288,6 +58828,11 @@ + + + + + @@ -54300,6 +58845,9 @@ + + + @@ -54696,6 +59244,7 @@ + @@ -54728,6 +59277,19 @@ + + + + + + + + + + + + + @@ -55102,6 +59664,133 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -55300,6 +59989,14 @@ + + + + + + + + @@ -55327,6 +60024,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -55363,6 +60121,15 @@ + + + + + + + + + @@ -55400,6 +60167,24 @@ + + + + + + + + + + + + + + + + + + @@ -55414,6 +60199,21 @@ + + + + + + + + + + + + + + + @@ -55435,6 +60235,18 @@ + + + + + + + + + + + + @@ -55442,6 +60254,23 @@ + + + + + + + + + + + + + + + + + @@ -55476,6 +60305,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + @@ -55509,10 +60363,10 @@ - + - + @@ -55532,6 +60386,8 @@ + + @@ -55567,7 +60423,7 @@ - + @@ -55611,6 +60467,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -55658,6 +60542,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -55668,6 +60586,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -55675,20 +60630,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -55729,7 +60765,7 @@ - + @@ -55766,52 +60802,52 @@ - + - + - - + + - - + + - - + + - - + + - - - - + + + + - - - - + + + + @@ -55828,8 +60864,8 @@ - - + + @@ -55841,15 +60877,15 @@ - - + + - + - + @@ -55857,7 +60893,7 @@ - + @@ -55870,14 +60906,14 @@ - + - - + + @@ -55890,16 +60926,21 @@ - - + + - + - + + + + + + @@ -55918,9 +60959,9 @@ - + - + @@ -55930,7 +60971,7 @@ - + @@ -55938,7 +60979,7 @@ - + @@ -55949,8 +60990,8 @@ - - + + @@ -55958,13 +60999,13 @@ - + - + @@ -55976,13 +61017,13 @@ - + - + @@ -56026,7 +61067,7 @@ - + @@ -56074,12 +61115,12 @@ - + - + @@ -56095,37 +61136,37 @@ - - - + + + - - - + + + - - + + - + - - + + - + @@ -56166,7 +61207,7 @@ - + @@ -56207,17 +61248,17 @@ - + - + - + @@ -56258,7 +61299,7 @@ - + @@ -56291,7 +61332,7 @@ - + @@ -56299,7 +61340,7 @@ - + @@ -56308,7 +61349,7 @@ - + @@ -56344,7 +61385,7 @@ - + @@ -56409,17 +61450,17 @@ - + - + - + @@ -56435,11 +61476,11 @@ - + - + @@ -56461,7 +61502,7 @@ - + @@ -56501,8 +61542,8 @@ - - + + @@ -56523,7 +61564,7 @@ - + @@ -56532,7 +61573,7 @@ - + @@ -56569,16 +61610,16 @@ - + - - - + + + @@ -56586,27 +61627,27 @@ - - - + + + - - - + + + - - - + + + @@ -56681,7 +61722,7 @@ - + @@ -56690,8 +61731,8 @@ - - + + @@ -56703,10 +61744,10 @@ - - + + - + @@ -56714,10 +61755,10 @@ - - + + - + @@ -56763,42 +61804,42 @@ - + - + - + - + - + - + - + - - + + - + @@ -57057,7 +62098,7 @@ - + @@ -57103,13 +62144,13 @@ - + - + @@ -57120,61 +62161,61 @@ - + - - + + - + - + - + - + - + - + - + - + @@ -57186,7 +62227,7 @@ - + @@ -57314,17 +62355,17 @@ - + - + - + @@ -57406,17 +62447,27 @@ - - + + - + - + + + + + + + + + + + @@ -57427,11 +62478,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + @@ -57442,11 +62517,97 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -57490,7 +62651,7 @@ - + @@ -57501,7 +62662,7 @@ - + @@ -57519,14 +62680,14 @@ - + - + @@ -57545,12 +62706,12 @@ - + - + @@ -57595,7 +62756,7 @@ - + @@ -57605,7 +62766,7 @@ - + @@ -58179,14 +63340,14 @@ - + - + @@ -58199,7 +63360,7 @@ - + @@ -58208,7 +63369,7 @@ - + @@ -58221,8 +63382,8 @@ - - + + @@ -58232,8 +63393,8 @@ - - + + @@ -58255,41 +63416,41 @@ - + - + - + - + - + - + - + - + - + - + @@ -58302,25 +63463,25 @@ - + - + - + - + @@ -58403,7 +63564,7 @@ - + @@ -58489,42 +63650,42 @@ - + - + - - + + - - + + - + - + - - + + @@ -58565,33 +63726,33 @@ - + - + - + - + - + - + - + - + @@ -58652,7 +63813,7 @@ - + @@ -58660,16 +63821,27 @@ - - + + + + + + + + + + + + + - + @@ -58677,7 +63849,7 @@ - + @@ -58686,7 +63858,7 @@ - + @@ -58747,9 +63919,9 @@ - + - + @@ -58758,9 +63930,9 @@ - + - + @@ -58944,7 +64116,7 @@ - + @@ -59010,6 +64182,12 @@ + + + + + + @@ -59398,7 +64576,7 @@ - + @@ -59407,15 +64585,15 @@ - - + + - - - - + + + + @@ -59434,7 +64612,7 @@ - + @@ -59469,7 +64647,7 @@ - + @@ -59492,7 +64670,7 @@ - + @@ -59515,7 +64693,7 @@ - + @@ -59613,7 +64791,7 @@ - + @@ -59628,7 +64806,7 @@ - + @@ -59652,7 +64830,7 @@ - + @@ -59662,7 +64840,7 @@ - + @@ -59700,7 +64878,7 @@ - + @@ -59718,13 +64896,13 @@ - + - + @@ -59737,13 +64915,13 @@ - + - - + + @@ -59872,7 +65050,7 @@ - + @@ -59942,7 +65120,7 @@ - + @@ -60504,22 +65682,22 @@ - + - + - + - + @@ -60532,7 +65710,7 @@ - + @@ -60550,44 +65728,44 @@ - + - + - + - + - + - + - + - + @@ -60611,8 +65789,8 @@ - - + + @@ -60684,14 +65862,14 @@ - + - + @@ -60732,7 +65910,7 @@ - + @@ -60748,7 +65926,7 @@ - + @@ -60770,26 +65948,26 @@ - + - + - + - - - + + + @@ -60803,37 +65981,37 @@ - - + + - + - + - + - + - + @@ -60880,7 +66058,7 @@ - + @@ -60888,7 +66066,7 @@ - + @@ -60943,9 +66121,9 @@ - + - + @@ -60955,32 +66133,32 @@ - + - + - + - + - + @@ -60991,17 +66169,17 @@ - + - + - + - + @@ -61164,7 +66342,7 @@ - + @@ -61367,8 +66545,8 @@ - - + + @@ -61383,7 +66561,7 @@ - + @@ -61410,13 +66588,13 @@ - + - - + + @@ -61426,27 +66604,27 @@ - + - - + + - + - - + + @@ -61459,19 +66637,19 @@ - + - + - + @@ -61482,13 +66660,13 @@ - + - + @@ -61514,11 +66692,11 @@ - + - + @@ -61773,9 +66951,9 @@ - + - + @@ -61783,7 +66961,7 @@ - + @@ -62038,27 +67216,27 @@ - + - - + + - - + + - - - - + + + + @@ -62071,13 +67249,13 @@ - + - + @@ -62093,25 +67271,25 @@ - - - + + + - - + + - + - + @@ -62143,13 +67321,13 @@ - + - - + + @@ -62157,16 +67335,16 @@ - - + + - + - + @@ -62211,13 +67389,13 @@ - + - + @@ -62234,7 +67412,7 @@ - + @@ -62243,7 +67421,7 @@ - + @@ -62256,7 +67434,7 @@ - + @@ -62275,7 +67453,7 @@ - + @@ -62286,33 +67464,33 @@ - - + + - + - + - + - - + + @@ -62331,9 +67509,9 @@ - + - + @@ -62671,7 +67849,7 @@ - + @@ -62680,15 +67858,15 @@ - - + + - - - - + + + + @@ -62707,7 +67885,7 @@ - + @@ -62814,7 +67992,7 @@ - + @@ -62829,7 +68007,7 @@ - + @@ -62874,12 +68052,12 @@ - + - + @@ -62902,13 +68080,13 @@ - + - + @@ -62986,15 +68164,15 @@ - - + + - + @@ -63071,9 +68249,9 @@ - + - + From cea60cf03483b528c6bbe3b3ca47384e6a5381d4 Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Tue, 26 Dec 2017 18:38:18 +0000 Subject: [PATCH 89/91] Rerun Generator.Bind --- src/OpenTK/Graphics/ES11/ES11.cs | 8273 ++++++++-- src/OpenTK/Graphics/ES11/ES11Enums.cs | 7847 ++++++++- src/OpenTK/Graphics/ES20/ES20.cs | 12201 +++++++++++--- src/OpenTK/Graphics/ES20/ES20Enums.cs | 6537 +++++++- src/OpenTK/Graphics/ES30/ES30.cs | 12629 +++++++++++--- src/OpenTK/Graphics/ES30/ES30Enums.cs | 5501 ++++++- src/OpenTK/Graphics/ES31/ES31.Enums.cs | 5385 +++++- src/OpenTK/Graphics/ES31/ES31.cs | 19199 +++++++++++++++++++--- src/OpenTK/Graphics/OpenGL/GL.cs | 16022 +++++++++--------- src/OpenTK/Graphics/OpenGL/GLEnums.cs | 4577 +++++- src/OpenTK/Graphics/OpenGL4/GL4.cs | 5217 +++--- src/OpenTK/Graphics/OpenGL4/GL4Enums.cs | 4634 +++++- 12 files changed, 88321 insertions(+), 19701 deletions(-) diff --git a/src/OpenTK/Graphics/ES11/ES11.cs b/src/OpenTK/Graphics/ES11/ES11.cs index 53dc2a56..d584f767 100644 --- a/src/OpenTK/Graphics/ES11/ES11.cs +++ b/src/OpenTK/Graphics/ES11/ES11.cs @@ -98,6 +98,12 @@ namespace OpenTK.Graphics.ES11 103, 108, 67, 111, 112, 121, 84, 101, 120, 116, 117, 114, 101, 76, 101, 118, 101, 108, 115, 65, 80, 80, 76, 69, 0, 103, 108, 67, 117, 108, 108, 70, 97, 99, 101, 0, 103, 108, 67, 117, 114, 114, 101, 110, 116, 80, 97, 108, 101, 116, 116, 101, 77, 97, 116, 114, 105, 120, 79, 69, 83, 0, + 103, 108, 68, 101, 98, 117, 103, 77, 101, 115, 115, 97, 103, 101, 67, 97, 108, 108, 98, 97, 99, 107, 0, + 103, 108, 68, 101, 98, 117, 103, 77, 101, 115, 115, 97, 103, 101, 67, 97, 108, 108, 98, 97, 99, 107, 75, 72, 82, 0, + 103, 108, 68, 101, 98, 117, 103, 77, 101, 115, 115, 97, 103, 101, 67, 111, 110, 116, 114, 111, 108, 0, + 103, 108, 68, 101, 98, 117, 103, 77, 101, 115, 115, 97, 103, 101, 67, 111, 110, 116, 114, 111, 108, 75, 72, 82, 0, + 103, 108, 68, 101, 98, 117, 103, 77, 101, 115, 115, 97, 103, 101, 73, 110, 115, 101, 114, 116, 0, + 103, 108, 68, 101, 98, 117, 103, 77, 101, 115, 115, 97, 103, 101, 73, 110, 115, 101, 114, 116, 75, 72, 82, 0, 103, 108, 68, 101, 108, 101, 116, 101, 66, 117, 102, 102, 101, 114, 115, 0, 103, 108, 68, 101, 108, 101, 116, 101, 70, 101, 110, 99, 101, 115, 78, 86, 0, 103, 108, 68, 101, 108, 101, 116, 101, 70, 114, 97, 109, 101, 98, 117, 102, 102, 101, 114, 115, 79, 69, 83, 0, @@ -183,6 +189,8 @@ namespace OpenTK.Graphics.ES11 103, 108, 71, 101, 116, 67, 108, 105, 112, 80, 108, 97, 110, 101, 120, 0, 103, 108, 71, 101, 116, 67, 108, 105, 112, 80, 108, 97, 110, 101, 120, 79, 69, 83, 0, 103, 108, 71, 101, 116, 67, 111, 110, 118, 111, 108, 117, 116, 105, 111, 110, 80, 97, 114, 97, 109, 101, 116, 101, 114, 120, 118, 79, 69, 83, 0, + 103, 108, 71, 101, 116, 68, 101, 98, 117, 103, 77, 101, 115, 115, 97, 103, 101, 76, 111, 103, 0, + 103, 108, 71, 101, 116, 68, 101, 98, 117, 103, 77, 101, 115, 115, 97, 103, 101, 76, 111, 103, 75, 72, 82, 0, 103, 108, 71, 101, 116, 68, 114, 105, 118, 101, 114, 67, 111, 110, 116, 114, 111, 108, 115, 81, 67, 79, 77, 0, 103, 108, 71, 101, 116, 68, 114, 105, 118, 101, 114, 67, 111, 110, 116, 114, 111, 108, 83, 116, 114, 105, 110, 103, 81, 67, 79, 77, 0, 103, 108, 71, 101, 116, 69, 114, 114, 111, 114, 0, @@ -206,8 +214,13 @@ namespace OpenTK.Graphics.ES11 103, 108, 71, 101, 116, 77, 97, 116, 101, 114, 105, 97, 108, 120, 118, 79, 69, 83, 0, 103, 108, 71, 101, 116, 110, 85, 110, 105, 102, 111, 114, 109, 102, 118, 69, 88, 84, 0, 103, 108, 71, 101, 116, 110, 85, 110, 105, 102, 111, 114, 109, 105, 118, 69, 88, 84, 0, + 103, 108, 71, 101, 116, 79, 98, 106, 101, 99, 116, 76, 97, 98, 101, 108, 0, + 103, 108, 71, 101, 116, 79, 98, 106, 101, 99, 116, 76, 97, 98, 101, 108, 75, 72, 82, 0, + 103, 108, 71, 101, 116, 79, 98, 106, 101, 99, 116, 80, 116, 114, 76, 97, 98, 101, 108, 0, + 103, 108, 71, 101, 116, 79, 98, 106, 101, 99, 116, 80, 116, 114, 76, 97, 98, 101, 108, 75, 72, 82, 0, 103, 108, 71, 101, 116, 80, 105, 120, 101, 108, 77, 97, 112, 120, 118, 0, 103, 108, 71, 101, 116, 80, 111, 105, 110, 116, 101, 114, 118, 0, + 103, 108, 71, 101, 116, 80, 111, 105, 110, 116, 101, 114, 118, 75, 72, 82, 0, 103, 108, 71, 101, 116, 82, 101, 110, 100, 101, 114, 98, 117, 102, 102, 101, 114, 80, 97, 114, 97, 109, 101, 116, 101, 114, 105, 118, 79, 69, 83, 0, 103, 108, 71, 101, 116, 83, 116, 114, 105, 110, 103, 0, 103, 108, 71, 101, 116, 83, 121, 110, 99, 105, 118, 65, 80, 80, 76, 69, 0, @@ -226,6 +239,7 @@ namespace OpenTK.Graphics.ES11 103, 108, 72, 105, 110, 116, 0, 103, 108, 73, 110, 100, 101, 120, 120, 79, 69, 83, 0, 103, 108, 73, 110, 100, 101, 120, 120, 118, 79, 69, 83, 0, + 103, 108, 73, 110, 115, 101, 114, 116, 69, 118, 101, 110, 116, 77, 97, 114, 107, 101, 114, 69, 88, 84, 0, 103, 108, 73, 115, 66, 117, 102, 102, 101, 114, 0, 103, 108, 73, 115, 69, 110, 97, 98, 108, 101, 100, 0, 103, 108, 73, 115, 70, 101, 110, 99, 101, 78, 86, 0, @@ -299,6 +313,10 @@ namespace OpenTK.Graphics.ES11 103, 108, 78, 111, 114, 109, 97, 108, 51, 120, 79, 69, 83, 0, 103, 108, 78, 111, 114, 109, 97, 108, 51, 120, 118, 79, 69, 83, 0, 103, 108, 78, 111, 114, 109, 97, 108, 80, 111, 105, 110, 116, 101, 114, 0, + 103, 108, 79, 98, 106, 101, 99, 116, 76, 97, 98, 101, 108, 0, + 103, 108, 79, 98, 106, 101, 99, 116, 76, 97, 98, 101, 108, 75, 72, 82, 0, + 103, 108, 79, 98, 106, 101, 99, 116, 80, 116, 114, 76, 97, 98, 101, 108, 0, + 103, 108, 79, 98, 106, 101, 99, 116, 80, 116, 114, 76, 97, 98, 101, 108, 75, 72, 82, 0, 103, 108, 79, 114, 116, 104, 111, 102, 0, 103, 108, 79, 114, 116, 104, 111, 102, 79, 69, 83, 0, 103, 108, 79, 114, 116, 104, 111, 120, 0, @@ -322,8 +340,14 @@ namespace OpenTK.Graphics.ES11 103, 108, 80, 111, 108, 121, 103, 111, 110, 79, 102, 102, 115, 101, 116, 0, 103, 108, 80, 111, 108, 121, 103, 111, 110, 79, 102, 102, 115, 101, 116, 120, 0, 103, 108, 80, 111, 108, 121, 103, 111, 110, 79, 102, 102, 115, 101, 116, 120, 79, 69, 83, 0, + 103, 108, 80, 111, 112, 68, 101, 98, 117, 103, 71, 114, 111, 117, 112, 0, + 103, 108, 80, 111, 112, 68, 101, 98, 117, 103, 71, 114, 111, 117, 112, 75, 72, 82, 0, + 103, 108, 80, 111, 112, 71, 114, 111, 117, 112, 77, 97, 114, 107, 101, 114, 69, 88, 84, 0, 103, 108, 80, 111, 112, 77, 97, 116, 114, 105, 120, 0, 103, 108, 80, 114, 105, 111, 114, 105, 116, 105, 122, 101, 84, 101, 120, 116, 117, 114, 101, 115, 120, 79, 69, 83, 0, + 103, 108, 80, 117, 115, 104, 68, 101, 98, 117, 103, 71, 114, 111, 117, 112, 0, + 103, 108, 80, 117, 115, 104, 68, 101, 98, 117, 103, 71, 114, 111, 117, 112, 75, 72, 82, 0, + 103, 108, 80, 117, 115, 104, 71, 114, 111, 117, 112, 77, 97, 114, 107, 101, 114, 69, 88, 84, 0, 103, 108, 80, 117, 115, 104, 77, 97, 116, 114, 105, 120, 0, 103, 108, 81, 117, 101, 114, 121, 77, 97, 116, 114, 105, 120, 120, 79, 69, 83, 0, 103, 108, 82, 97, 115, 116, 101, 114, 80, 111, 115, 50, 120, 79, 69, 83, 0, @@ -485,332 +509,356 @@ namespace OpenTK.Graphics.ES11 905, 916, 942, - 958, - 975, - 999, - 1024, - 1042, + 965, + 991, + 1013, + 1038, 1059, 1083, - 1095, - 1107, - 1121, - 1138, - 1152, - 1169, - 1179, + 1099, + 1116, + 1140, + 1165, + 1183, 1200, - 1227, - 1251, - 1264, + 1224, + 1236, + 1248, + 1262, 1279, 1293, - 1308, - 1322, - 1337, - 1351, - 1366, - 1380, - 1395, + 1310, + 1320, + 1341, + 1368, + 1392, + 1405, + 1420, 1434, + 1449, 1463, - 1472, + 1478, 1492, - 1518, - 1534, - 1551, - 1569, - 1586, + 1507, + 1521, + 1536, + 1575, 1604, - 1631, - 1651, - 1676, - 1708, - 1729, - 1755, - 1775, - 1807, - 1831, - 1852, - 1877, - 1910, - 1931, + 1613, + 1633, + 1659, + 1675, + 1692, + 1710, + 1727, + 1745, + 1772, + 1792, + 1817, + 1849, + 1870, + 1896, + 1916, 1948, - 1957, - 1973, - 1981, - 2009, - 2016, - 2024, - 2031, - 2041, - 2049, - 2060, + 1972, + 1993, + 2018, + 2051, + 2072, 2089, - 2126, - 2163, - 2189, + 2098, + 2114, + 2122, + 2150, + 2157, + 2165, + 2172, + 2182, + 2190, 2201, - 2212, - 2226, - 2237, - 2251, - 2264, - 2284, - 2298, - 2319, - 2341, - 2355, - 2376, - 2390, - 2413, - 2436, - 2452, - 2471, - 2487, - 2506, - 2537, - 2561, - 2590, - 2601, - 2616, + 2230, + 2267, + 2304, + 2330, + 2342, + 2353, + 2367, + 2378, + 2392, + 2405, + 2425, + 2439, + 2460, + 2482, + 2496, + 2517, + 2531, + 2554, + 2577, + 2593, + 2612, 2628, - 2643, - 2655, - 2696, - 2724, - 2753, - 2774, - 2788, - 2801, - 2816, + 2647, + 2678, + 2699, + 2723, + 2747, + 2776, + 2787, + 2802, + 2814, 2829, - 2845, - 2859, - 2875, - 2893, - 2909, - 2928, - 2947, - 2966, - 2982, - 2996, - 3028, - 3040, - 3057, - 3071, - 3085, - 3099, - 3116, + 2841, + 2882, + 2910, + 2939, + 2960, + 2974, + 2987, + 3002, + 3015, + 3031, + 3045, + 3061, + 3079, + 3095, + 3114, 3133, - 3150, - 3167, - 3195, - 3215, - 3235, - 3255, - 3278, - 3285, - 3297, - 3310, - 3321, - 3333, - 3345, - 3364, - 3384, - 3398, - 3410, - 3429, - 3438, - 3448, - 3462, - 3477, - 3491, - 3508, - 3523, - 3541, - 3550, - 3562, - 3572, - 3585, - 3597, - 3610, - 3626, - 3641, - 3655, - 3669, - 3686, - 3722, - 3748, - 3758, - 3769, - 3780, - 3795, - 3815, - 3830, - 3845, - 3857, - 3870, - 3882, - 3897, - 3910, - 3926, - 3950, - 3963, - 3984, - 4007, + 3152, + 3169, + 3189, + 3209, + 3232, + 3248, + 3262, + 3279, + 3311, + 3323, + 3340, + 3354, + 3368, + 3382, + 3399, + 3416, + 3433, + 3450, + 3478, + 3498, + 3518, + 3538, + 3561, + 3568, + 3580, + 3593, + 3616, + 3627, + 3639, + 3651, + 3670, + 3690, + 3704, + 3716, + 3735, + 3744, + 3754, + 3768, + 3783, + 3797, + 3814, + 3829, + 3847, + 3856, + 3868, + 3878, + 3891, + 3903, + 3916, + 3932, + 3947, + 3961, + 3975, + 3992, 4028, - 4050, - 4071, - 4093, - 4114, + 4054, + 4064, + 4075, + 4086, + 4101, + 4121, 4136, - 4157, - 4179, - 4200, - 4222, - 4243, - 4265, - 4286, - 4308, - 4326, - 4344, - 4365, - 4387, - 4401, - 4415, - 4432, - 4458, - 4469, - 4480, - 4494, - 4509, - 4525, - 4534, - 4546, - 4555, - 4567, - 4585, - 4597, - 4611, - 4625, - 4645, - 4661, - 4679, - 4698, - 4716, - 4737, - 4756, - 4778, - 4790, - 4812, - 4825, - 4841, - 4857, - 4874, - 4894, - 4906, - 4931, - 4944, - 4962, - 4979, - 4997, - 5014, - 5032, - 5049, - 5067, - 5084, - 5097, - 5108, - 5120, - 5158, - 5194, - 5230, - 5255, - 5292, - 5302, - 5312, - 5325, - 5342, + 4151, + 4163, + 4176, + 4188, + 4203, + 4216, + 4232, + 4256, + 4269, + 4290, + 4313, + 4334, + 4356, + 4377, + 4399, + 4420, + 4442, + 4463, + 4485, + 4506, + 4528, + 4549, + 4571, + 4592, + 4614, + 4632, + 4650, + 4671, + 4693, + 4707, + 4721, + 4738, + 4764, + 4775, + 4786, + 4800, + 4815, + 4831, + 4845, + 4862, + 4879, + 4899, + 4908, + 4920, + 4929, + 4941, + 4959, + 4971, + 4985, + 4999, + 5019, + 5035, + 5053, + 5072, + 5090, + 5111, + 5130, + 5152, + 5164, + 5186, + 5199, + 5215, + 5231, + 5248, + 5268, + 5284, + 5303, + 5323, + 5335, 5360, - 5381, - 5390, - 5399, - 5411, - 5421, - 5434, - 5447, - 5465, - 5479, - 5493, - 5505, + 5377, + 5397, + 5418, + 5431, + 5449, + 5466, + 5484, + 5501, 5519, - 5535, - 5552, - 5568, - 5585, - 5601, - 5618, - 5634, - 5651, - 5667, - 5684, - 5700, + 5536, + 5554, + 5571, + 5584, + 5595, + 5607, + 5645, + 5681, 5717, - 5733, - 5750, - 5766, - 5783, - 5801, - 5811, - 5822, - 5832, - 5843, - 5853, - 5866, + 5742, + 5779, + 5789, + 5799, + 5812, + 5829, + 5847, + 5868, 5877, - 5891, - 5904, - 5918, - 5931, - 5945, - 5958, - 5972, - 5985, - 6001, - 6018, - 6034, - 6051, - 6067, - 6086, - 6103, - 6123, - 6141, - 6159, - 6177, - 6193, - 6215, + 5886, + 5898, + 5908, + 5921, + 5934, + 5952, + 5966, + 5980, + 5992, + 6006, + 6022, + 6039, + 6055, + 6072, + 6088, + 6105, + 6121, + 6138, + 6154, + 6171, + 6187, + 6204, + 6220, 6237, - 6259, - 6272, - 6285, - 6301, - 6318, - 6332, - 6347, - 6361, - 6376, - 6390, + 6253, + 6270, + 6288, + 6298, + 6309, + 6319, + 6330, + 6340, + 6353, + 6364, + 6378, + 6391, 6405, - 6419, - 6434, - 6448, - 6463, - 6477, - 6492, - 6508, - 6519, - 6535, + 6418, + 6432, + 6445, + 6459, + 6472, + 6488, + 6505, + 6521, + 6538, + 6554, + 6573, + 6590, + 6610, + 6628, + 6646, + 6664, + 6680, + 6702, + 6724, + 6746, + 6759, + 6772, + 6788, + 6805, + 6819, + 6834, + 6848, + 6863, + 6877, + 6892, + 6906, + 6921, + 6935, + 6950, + 6964, + 6979, + 6995, + 7006, + 7022, }; EntryPoints = new IntPtr[EntryPointNameOffsets.Length]; } @@ -829,9 +877,27 @@ namespace OpenTK.Graphics.ES11 /// /// The timeout, specified in nanoseconds, for which the implementation should wait for sync to become signaled. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glClientWaitSyncAPPLE")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES11.All ClientWaitSync(IntPtr sync, Int32 flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.ES11.SyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES11.All flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } + + /// [requires: APPLE_sync] + /// Block and wait for a sync object to become signaled + /// + /// + /// The sync object whose status to wait on. + /// + /// + /// A bitfield controlling the command flushing behavior. flags may be SyncFlushCommandsBit. + /// + /// + /// The timeout, specified in nanoseconds, for which the implementation should wait for sync to become signaled. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glClientWaitSyncAPPLE")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES11.SyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES11.All flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Block and wait for a sync object to become signaled @@ -847,7 +913,23 @@ 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 BindingsNotRewrittenException(); } + public static OpenTK.Graphics.ES11.SyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES11.SyncObjectMask flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } + + /// [requires: APPLE_sync] + /// Block and wait for a sync object to become signaled + /// + /// + /// The sync object whose status to wait on. + /// + /// + /// A bitfield controlling the command flushing behavior. flags may be SyncFlushCommandsBit. + /// + /// + /// The timeout, specified in nanoseconds, for which the implementation should wait for sync to become signaled. + /// + [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glClientWaitSyncAPPLE")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES11.SyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES11.SyncObjectMask flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_copy_texture_levels] /// @@ -885,6 +967,7 @@ namespace OpenTK.Graphics.ES11 /// /// Specifies a bitwise combination of flags controlling the behavior of the sync object. No flags are presently defined for this operation and flags must be zero.flags is a placeholder for anticipated future extensions of fence sync object capabilities. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glFenceSyncAPPLE")] [CLSCompliant(false)] public static IntPtr FenceSync(OpenTK.Graphics.ES11.All condition, Int32 flags) { throw new BindingsNotRewrittenException(); } @@ -898,19 +981,54 @@ namespace OpenTK.Graphics.ES11 /// /// Specifies a bitwise combination of flags controlling the behavior of the sync object. No flags are presently defined for this operation and flags must be zero.flags is a placeholder for anticipated future extensions of fence sync object capabilities. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glFenceSyncAPPLE")] [CLSCompliant(false)] public static IntPtr FenceSync(OpenTK.Graphics.ES11.All condition, UInt32 flags) { throw new BindingsNotRewrittenException(); } + /// [requires: APPLE_sync] + /// Create a new sync object and insert it into the GL command stream + /// + /// + /// Specifies the condition that must be met to set the sync object's state to signaled. condition must be SyncGpuCommandsComplete. + /// + /// + /// Specifies a bitwise combination of flags controlling the behavior of the sync object. No flags are presently defined for this operation and flags must be zero.flags is a placeholder for anticipated future extensions of fence sync object capabilities. + /// + [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glFenceSyncAPPLE")] + [CLSCompliant(false)] + public static IntPtr FenceSync(OpenTK.Graphics.ES11.SyncCondition condition, Int32 flags) { throw new BindingsNotRewrittenException(); } + + /// [requires: APPLE_sync] + /// Create a new sync object and insert it into the GL command stream + /// + /// + /// Specifies the condition that must be met to set the sync object's state to signaled. condition must be SyncGpuCommandsComplete. + /// + /// + /// Specifies a bitwise combination of flags controlling the behavior of the sync object. No flags are presently defined for this operation and flags must be zero.flags is a placeholder for anticipated future extensions of fence sync object capabilities. + /// + [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glFenceSyncAPPLE")] + [CLSCompliant(false)] + public static IntPtr FenceSync(OpenTK.Graphics.ES11.SyncCondition condition, UInt32 flags) { throw new BindingsNotRewrittenException(); } + /// [requires: APPLE_sync] /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] [CLSCompliant(false)] public static Int64 GetInteger64(OpenTK.Graphics.ES11.All pname) { throw new BindingsNotRewrittenException(); } + /// [requires: APPLE_sync] + /// + [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] + [CLSCompliant(false)] + public static Int64 GetInteger64(OpenTK.Graphics.ES11.GetPName pname) { throw new BindingsNotRewrittenException(); } + /// [requires: APPLE_sync] /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.ES11.All pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } @@ -918,6 +1036,7 @@ namespace OpenTK.Graphics.ES11 /// [requires: APPLE_sync] /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.ES11.All pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } @@ -925,10 +1044,32 @@ namespace OpenTK.Graphics.ES11 /// [requires: APPLE_sync] /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] [CLSCompliant(false)] public static unsafe 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.GetPName pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: APPLE_sync] + /// + /// + [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] + [CLSCompliant(false)] + public static void GetInteger64(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: APPLE_sync] + /// + /// + [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] + [CLSCompliant(false)] + public static unsafe void GetInteger64(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: APPLE_sync] /// Query the properties of a sync object /// @@ -947,6 +1088,7 @@ namespace OpenTK.Graphics.ES11 /// [length: bufSize] /// Specifies the address of an array to receive the values of the queried parameter. /// + [Obsolete("Use strongly-typed overload instead")] [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 BindingsNotRewrittenException(); } @@ -969,6 +1111,7 @@ namespace OpenTK.Graphics.ES11 /// [length: bufSize] /// Specifies the address of an array to receive the values of the queried parameter. /// + [Obsolete("Use strongly-typed overload instead")] [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 BindingsNotRewrittenException(); } @@ -991,10 +1134,77 @@ namespace OpenTK.Graphics.ES11 /// [length: bufSize] /// Specifies the address of an array to receive the values of the queried parameter. /// + [Obsolete("Use strongly-typed overload instead")] [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 BindingsNotRewrittenException(); } + /// [requires: APPLE_sync] + /// Query the properties of a sync object + /// + /// + /// Specifies the sync object whose properties to query. + /// + /// + /// Specifies the parameter whose value to retrieve from the sync object specified in sync. + /// + /// + /// Specifies the size of the buffer whose address is given in values. + /// + /// + /// Specifies the address of an variable to receive the number of integers placed in values. + /// + /// [length: bufSize] + /// Specifies the address of an array to receive the values of the queried parameter. + /// + [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] + [CLSCompliant(false)] + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES11.SyncParameterName pname, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new BindingsNotRewrittenException(); } + + /// [requires: APPLE_sync] + /// Query the properties of a sync object + /// + /// + /// Specifies the sync object whose properties to query. + /// + /// + /// Specifies the parameter whose value to retrieve from the sync object specified in sync. + /// + /// + /// Specifies the size of the buffer whose address is given in values. + /// + /// + /// Specifies the address of an variable to receive the number of integers placed in values. + /// + /// [length: bufSize] + /// Specifies the address of an array to receive the values of the queried parameter. + /// + [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] + [CLSCompliant(false)] + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES11.SyncParameterName pname, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new BindingsNotRewrittenException(); } + + /// [requires: APPLE_sync] + /// Query the properties of a sync object + /// + /// + /// Specifies the sync object whose properties to query. + /// + /// + /// Specifies the parameter whose value to retrieve from the sync object specified in sync. + /// + /// + /// Specifies the size of the buffer whose address is given in values. + /// + /// + /// Specifies the address of an variable to receive the number of integers placed in values. + /// + /// [length: bufSize] + /// Specifies the address of an array to receive the values of the queried parameter. + /// + [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] + [CLSCompliant(false)] + public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES11.SyncParameterName pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new BindingsNotRewrittenException(); } + /// [requires: APPLE_sync] /// Determine if a name corresponds to a sync object /// @@ -1022,9 +1232,31 @@ namespace OpenTK.Graphics.ES11 /// /// Specifies the height of the renderbuffer, in pixels. /// + [Obsolete("Use strongly-typed overload instead")] [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 BindingsNotRewrittenException(); } + /// [requires: APPLE_framebuffer_multisample] + /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image + /// + /// + /// Specifies a binding to which the target of the allocation and must be Renderbuffer. + /// + /// + /// Specifies the number of samples to be used for the renderbuffer object's storage. + /// + /// + /// Specifies the internal format to use for the renderbuffer object's image. + /// + /// + /// Specifies the width of the renderbuffer, in pixels. + /// + /// + /// Specifies the height of the renderbuffer, in pixels. + /// + [AutoGenerated(Category = "APPLE_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleAPPLE")] + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES11.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES11.InternalFormat 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 BindingsNotRewrittenException(); } @@ -1110,9 +1342,16 @@ namespace OpenTK.Graphics.ES11 /// [requires: v1.0] /// /// + [Obsolete("Use strongly-typed overload instead")] [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 BindingsNotRewrittenException(); } + /// [requires: v1.0] + /// + /// + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glAlphaFuncx")] + public static void AlphaFuncx(OpenTK.Graphics.ES11.AlphaFunction func, Int32 @ref) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] /// Bind a named buffer object /// @@ -1244,7 +1483,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 BindingsNotRewrittenException(); } + public static void BlendFunc(OpenTK.Graphics.ES11.BlendingFactor sfactor, OpenTK.Graphics.ES11.BlendingFactor dfactor) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Create and initialize a buffer object's data store @@ -2192,6 +2431,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 4] /// Specifies the address of an array of four double-precision floating-point values. These values are interpreted as a plane equation. /// + [Obsolete("Use strongly-typed overload instead")] [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 BindingsNotRewrittenException(); } @@ -2205,6 +2445,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 4] /// Specifies the address of an array of four double-precision floating-point values. These values are interpreted as a plane equation. /// + [Obsolete("Use strongly-typed overload instead")] [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 BindingsNotRewrittenException(); } @@ -2218,13 +2459,54 @@ namespace OpenTK.Graphics.ES11 /// [length: 4] /// Specifies the address of an array of four double-precision floating-point values. These values are interpreted as a plane equation. /// + [Obsolete("Use strongly-typed overload instead")] [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 BindingsNotRewrittenException(); } + /// [requires: v1.0] + /// Specify a plane against which all geometry is clipped + /// + /// + /// Specifies which clipping plane is being positioned. Symbolic names of the form ClipPlanei, where i is an integer between 0 and MaxClipPlanes - 1, are accepted. + /// + /// [length: 4] + /// Specifies the address of an array of four double-precision floating-point values. These values are interpreted as a plane equation. + /// + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClipPlanef")] + [CLSCompliant(false)] + public static void ClipPlane(OpenTK.Graphics.ES11.ClipPlaneName p, [CountAttribute(Count = 4)] Single[] eqn) { throw new BindingsNotRewrittenException(); } + + /// [requires: v1.0] + /// Specify a plane against which all geometry is clipped + /// + /// + /// Specifies which clipping plane is being positioned. Symbolic names of the form ClipPlanei, where i is an integer between 0 and MaxClipPlanes - 1, are accepted. + /// + /// [length: 4] + /// Specifies the address of an array of four double-precision floating-point values. These values are interpreted as a plane equation. + /// + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClipPlanef")] + [CLSCompliant(false)] + public static void ClipPlane(OpenTK.Graphics.ES11.ClipPlaneName p, [CountAttribute(Count = 4)] ref Single eqn) { throw new BindingsNotRewrittenException(); } + + /// [requires: v1.0] + /// Specify a plane against which all geometry is clipped + /// + /// + /// Specifies which clipping plane is being positioned. Symbolic names of the form ClipPlanei, where i is an integer between 0 and MaxClipPlanes - 1, are accepted. + /// + /// [length: 4] + /// Specifies the address of an array of four double-precision floating-point values. These values are interpreted as a plane equation. + /// + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClipPlanef")] + [CLSCompliant(false)] + public static unsafe void ClipPlane(OpenTK.Graphics.ES11.ClipPlaneName p, [CountAttribute(Count = 4)] Single* eqn) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [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 BindingsNotRewrittenException(); } @@ -2232,6 +2514,7 @@ namespace OpenTK.Graphics.ES11 /// [requires: v1.0] /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [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 BindingsNotRewrittenException(); } @@ -2239,10 +2522,32 @@ namespace OpenTK.Graphics.ES11 /// [requires: v1.0] /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [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 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.ClipPlaneName 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.ClipPlaneName 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.ClipPlaneName plane, [CountAttribute(Count = 4)] Int32* equation) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] /// Set the current color /// @@ -2706,7 +3011,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 BindingsNotRewrittenException(); } + public static void CompressedTexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, OpenTK.Graphics.ES11.InternalFormat 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 @@ -2737,7 +3042,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexImage2D")] [CLSCompliant(false)] - public static void CompressedTexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] data) + public static void CompressedTexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, OpenTK.Graphics.ES11.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] data) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -2770,7 +3075,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexImage2D")] [CLSCompliant(false)] - public static void CompressedTexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] data) + public static void CompressedTexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, OpenTK.Graphics.ES11.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] data) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -2803,7 +3108,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexImage2D")] [CLSCompliant(false)] - public static void CompressedTexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] data) + public static void CompressedTexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, OpenTK.Graphics.ES11.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] data) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -2835,7 +3140,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, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 data) + public static void CompressedTexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, OpenTK.Graphics.ES11.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 data) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -3255,7 +3560,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 BindingsNotRewrittenException(); } + public static void CopyTexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, OpenTK.Graphics.ES11.InternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Copy a two-dimensional texture subimage @@ -3337,6 +3642,485 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCullFace")] public static void CullFace(OpenTK.Graphics.ES11.CullFaceMode mode) { throw new BindingsNotRewrittenException(); } + /// + /// Specify a callback to receive debugging messages from the GL + /// + /// + /// The address of a callback function that will be called when a debug message is generated. + /// + /// + /// A user supplied pointer that will be passed on each invocation of callback. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallback")] + public static void DebugMessageCallback(DebugProc callback, IntPtr userParam) { throw new BindingsNotRewrittenException(); } + + /// + /// Specify a callback to receive debugging messages from the GL + /// + /// + /// The address of a callback function that will be called when a debug message is generated. + /// + /// + /// A user supplied pointer that will be passed on each invocation of callback. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallback")] + [CLSCompliant(false)] + public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[] userParam) + where T1 : struct + { throw new BindingsNotRewrittenException(); } + + /// + /// Specify a callback to receive debugging messages from the GL + /// + /// + /// The address of a callback function that will be called when a debug message is generated. + /// + /// + /// A user supplied pointer that will be passed on each invocation of callback. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallback")] + [CLSCompliant(false)] + public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[,] userParam) + where T1 : struct + { throw new BindingsNotRewrittenException(); } + + /// + /// Specify a callback to receive debugging messages from the GL + /// + /// + /// The address of a callback function that will be called when a debug message is generated. + /// + /// + /// A user supplied pointer that will be passed on each invocation of callback. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallback")] + [CLSCompliant(false)] + public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[,,] userParam) + where T1 : struct + { throw new BindingsNotRewrittenException(); } + + /// + /// Specify a callback to receive debugging messages from the GL + /// + /// + /// The address of a callback function that will be called when a debug message is generated. + /// + /// + /// A user supplied pointer that will be passed on each invocation of callback. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallback")] + public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] ref T1 userParam) + where T1 : struct + { throw new BindingsNotRewrittenException(); } + + /// + /// Control the reporting of debug messages in a debug context + /// + /// + /// The source of debug messages to enable or disable. + /// + /// + /// The type of debug messages to enable or disable. + /// + /// + /// The severity of debug messages to enable or disable. + /// + /// + /// The length of the array ids. + /// + /// [length: count] + /// The address of an array of unsigned integers contianing the ids of the messages to enable or disable. + /// + /// + /// A Boolean flag determining whether the selected messages should be enabled or disabled. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] + public static void DebugMessageControl(OpenTK.Graphics.ES11.All source, OpenTK.Graphics.ES11.All type, OpenTK.Graphics.ES11.All severity, Int32 count, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } + + /// + /// Control the reporting of debug messages in a debug context + /// + /// + /// The source of debug messages to enable or disable. + /// + /// + /// The type of debug messages to enable or disable. + /// + /// + /// The severity of debug messages to enable or disable. + /// + /// + /// The length of the array ids. + /// + /// [length: count] + /// The address of an array of unsigned integers contianing the ids of the messages to enable or disable. + /// + /// + /// A Boolean flag determining whether the selected messages should be enabled or disabled. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] + public static void DebugMessageControl(OpenTK.Graphics.ES11.All source, OpenTK.Graphics.ES11.All type, OpenTK.Graphics.ES11.All severity, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } + + /// + /// Control the reporting of debug messages in a debug context + /// + /// + /// The source of debug messages to enable or disable. + /// + /// + /// The type of debug messages to enable or disable. + /// + /// + /// The severity of debug messages to enable or disable. + /// + /// + /// The length of the array ids. + /// + /// [length: count] + /// The address of an array of unsigned integers contianing the ids of the messages to enable or disable. + /// + /// + /// A Boolean flag determining whether the selected messages should be enabled or disabled. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES11.All source, OpenTK.Graphics.ES11.All type, OpenTK.Graphics.ES11.All severity, Int32 count, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } + + /// + /// Control the reporting of debug messages in a debug context + /// + /// + /// The source of debug messages to enable or disable. + /// + /// + /// The type of debug messages to enable or disable. + /// + /// + /// The severity of debug messages to enable or disable. + /// + /// + /// The length of the array ids. + /// + /// [length: count] + /// The address of an array of unsigned integers contianing the ids of the messages to enable or disable. + /// + /// + /// A Boolean flag determining whether the selected messages should be enabled or disabled. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] + public static void DebugMessageControl(OpenTK.Graphics.ES11.All source, OpenTK.Graphics.ES11.All type, OpenTK.Graphics.ES11.All severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } + + /// + /// Control the reporting of debug messages in a debug context + /// + /// + /// The source of debug messages to enable or disable. + /// + /// + /// The type of debug messages to enable or disable. + /// + /// + /// The severity of debug messages to enable or disable. + /// + /// + /// The length of the array ids. + /// + /// [length: count] + /// The address of an array of unsigned integers contianing the ids of the messages to enable or disable. + /// + /// + /// A Boolean flag determining whether the selected messages should be enabled or disabled. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] + public static void DebugMessageControl(OpenTK.Graphics.ES11.All source, OpenTK.Graphics.ES11.All type, OpenTK.Graphics.ES11.All severity, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } + + /// + /// Control the reporting of debug messages in a debug context + /// + /// + /// The source of debug messages to enable or disable. + /// + /// + /// The type of debug messages to enable or disable. + /// + /// + /// The severity of debug messages to enable or disable. + /// + /// + /// The length of the array ids. + /// + /// [length: count] + /// The address of an array of unsigned integers contianing the ids of the messages to enable or disable. + /// + /// + /// A Boolean flag determining whether the selected messages should be enabled or disabled. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES11.All source, OpenTK.Graphics.ES11.All type, OpenTK.Graphics.ES11.All severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } + + /// + /// Control the reporting of debug messages in a debug context + /// + /// + /// The source of debug messages to enable or disable. + /// + /// + /// The type of debug messages to enable or disable. + /// + /// + /// The severity of debug messages to enable or disable. + /// + /// + /// The length of the array ids. + /// + /// [length: count] + /// The address of an array of unsigned integers contianing the ids of the messages to enable or disable. + /// + /// + /// A Boolean flag determining whether the selected messages should be enabled or disabled. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] + public static void DebugMessageControl(OpenTK.Graphics.ES11.DebugSource source, OpenTK.Graphics.ES11.DebugType type, OpenTK.Graphics.ES11.DebugSeverity severity, Int32 count, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } + + /// + /// Control the reporting of debug messages in a debug context + /// + /// + /// The source of debug messages to enable or disable. + /// + /// + /// The type of debug messages to enable or disable. + /// + /// + /// The severity of debug messages to enable or disable. + /// + /// + /// The length of the array ids. + /// + /// [length: count] + /// The address of an array of unsigned integers contianing the ids of the messages to enable or disable. + /// + /// + /// A Boolean flag determining whether the selected messages should be enabled or disabled. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] + public static void DebugMessageControl(OpenTK.Graphics.ES11.DebugSource source, OpenTK.Graphics.ES11.DebugType type, OpenTK.Graphics.ES11.DebugSeverity severity, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } + + /// + /// Control the reporting of debug messages in a debug context + /// + /// + /// The source of debug messages to enable or disable. + /// + /// + /// The type of debug messages to enable or disable. + /// + /// + /// The severity of debug messages to enable or disable. + /// + /// + /// The length of the array ids. + /// + /// [length: count] + /// The address of an array of unsigned integers contianing the ids of the messages to enable or disable. + /// + /// + /// A Boolean flag determining whether the selected messages should be enabled or disabled. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES11.DebugSource source, OpenTK.Graphics.ES11.DebugType type, OpenTK.Graphics.ES11.DebugSeverity severity, Int32 count, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } + + /// + /// Control the reporting of debug messages in a debug context + /// + /// + /// The source of debug messages to enable or disable. + /// + /// + /// The type of debug messages to enable or disable. + /// + /// + /// The severity of debug messages to enable or disable. + /// + /// + /// The length of the array ids. + /// + /// [length: count] + /// The address of an array of unsigned integers contianing the ids of the messages to enable or disable. + /// + /// + /// A Boolean flag determining whether the selected messages should be enabled or disabled. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] + public static void DebugMessageControl(OpenTK.Graphics.ES11.DebugSource source, OpenTK.Graphics.ES11.DebugType type, OpenTK.Graphics.ES11.DebugSeverity severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } + + /// + /// Control the reporting of debug messages in a debug context + /// + /// + /// The source of debug messages to enable or disable. + /// + /// + /// The type of debug messages to enable or disable. + /// + /// + /// The severity of debug messages to enable or disable. + /// + /// + /// The length of the array ids. + /// + /// [length: count] + /// The address of an array of unsigned integers contianing the ids of the messages to enable or disable. + /// + /// + /// A Boolean flag determining whether the selected messages should be enabled or disabled. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] + public static void DebugMessageControl(OpenTK.Graphics.ES11.DebugSource source, OpenTK.Graphics.ES11.DebugType type, OpenTK.Graphics.ES11.DebugSeverity severity, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } + + /// + /// Control the reporting of debug messages in a debug context + /// + /// + /// The source of debug messages to enable or disable. + /// + /// + /// The type of debug messages to enable or disable. + /// + /// + /// The severity of debug messages to enable or disable. + /// + /// + /// The length of the array ids. + /// + /// [length: count] + /// The address of an array of unsigned integers contianing the ids of the messages to enable or disable. + /// + /// + /// A Boolean flag determining whether the selected messages should be enabled or disabled. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES11.DebugSource source, OpenTK.Graphics.ES11.DebugType type, OpenTK.Graphics.ES11.DebugSeverity severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } + + /// + /// Inject an application-supplied message into the debug message queue + /// + /// + /// The source of the debug message to insert. + /// + /// + /// The type of the debug message insert. + /// + /// + /// The user-supplied identifier of the message to insert. + /// + /// + /// The severity of the debug messages to insert. + /// + /// + /// The length string contained in the character array whose address is given by message. + /// + /// [length: COMPSIZE(buf,length)] + /// The address of a character array containing the message to insert. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsert")] + [CLSCompliant(false)] + public static void DebugMessageInsert(OpenTK.Graphics.ES11.All source, OpenTK.Graphics.ES11.All type, Int32 id, OpenTK.Graphics.ES11.All severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new BindingsNotRewrittenException(); } + + /// + /// Inject an application-supplied message into the debug message queue + /// + /// + /// The source of the debug message to insert. + /// + /// + /// The type of the debug message insert. + /// + /// + /// The user-supplied identifier of the message to insert. + /// + /// + /// The severity of the debug messages to insert. + /// + /// + /// The length string contained in the character array whose address is given by message. + /// + /// [length: COMPSIZE(buf,length)] + /// The address of a character array containing the message to insert. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsert")] + [CLSCompliant(false)] + public static void DebugMessageInsert(OpenTK.Graphics.ES11.All source, OpenTK.Graphics.ES11.All type, UInt32 id, OpenTK.Graphics.ES11.All severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new BindingsNotRewrittenException(); } + + /// + /// Inject an application-supplied message into the debug message queue + /// + /// + /// The source of the debug message to insert. + /// + /// + /// The type of the debug message insert. + /// + /// + /// The user-supplied identifier of the message to insert. + /// + /// + /// The severity of the debug messages to insert. + /// + /// + /// The length string contained in the character array whose address is given by message. + /// + /// [length: COMPSIZE(buf,length)] + /// The address of a character array containing the message to insert. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsert")] + [CLSCompliant(false)] + public static void DebugMessageInsert(OpenTK.Graphics.ES11.DebugSource source, OpenTK.Graphics.ES11.DebugType type, Int32 id, OpenTK.Graphics.ES11.DebugSeverity severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new BindingsNotRewrittenException(); } + + /// + /// Inject an application-supplied message into the debug message queue + /// + /// + /// The source of the debug message to insert. + /// + /// + /// The type of the debug message insert. + /// + /// + /// The user-supplied identifier of the message to insert. + /// + /// + /// The severity of the debug messages to insert. + /// + /// + /// The length string contained in the character array whose address is given by message. + /// + /// [length: COMPSIZE(buf,length)] + /// The address of a character array containing the message to insert. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsert")] + [CLSCompliant(false)] + public static void DebugMessageInsert(OpenTK.Graphics.ES11.DebugSource source, OpenTK.Graphics.ES11.DebugType type, UInt32 id, OpenTK.Graphics.ES11.DebugSeverity severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] /// Delete named buffer objects /// @@ -4093,12 +4877,20 @@ namespace OpenTK.Graphics.ES11 /// [requires: v1.0] /// /// + [Obsolete("Use strongly-typed overload instead")] [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 BindingsNotRewrittenException(); } + /// [requires: v1.0] + /// + /// + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFogx")] + public static void Fogx(OpenTK.Graphics.ES11.FogPName pname, Int32 param) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [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 BindingsNotRewrittenException(); } @@ -4106,10 +4898,25 @@ namespace OpenTK.Graphics.ES11 /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [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 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.FogPName 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.FogPName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] /// Define front- and back-facing polygons /// @@ -4499,6 +5306,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 4] /// Returns four double-precision values that are the coefficients of the plane equation of plane in eye coordinates. The initial value is (0, 0, 0, 0). /// + [Obsolete("Use strongly-typed overload instead")] [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 BindingsNotRewrittenException(); } @@ -4512,6 +5320,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 4] /// Returns four double-precision values that are the coefficients of the plane equation of plane in eye coordinates. The initial value is (0, 0, 0, 0). /// + [Obsolete("Use strongly-typed overload instead")] [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 BindingsNotRewrittenException(); } @@ -4525,13 +5334,54 @@ namespace OpenTK.Graphics.ES11 /// [length: 4] /// Returns four double-precision values that are the coefficients of the plane equation of plane in eye coordinates. The initial value is (0, 0, 0, 0). /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanef")] [CLSCompliant(false)] public static unsafe void GetClipPlane(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] Single* equation) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] + /// Return the coefficients of the specified clipping plane + /// + /// + /// Specifies a clipping plane. The number of clipping planes depends on the implementation, but at least six clipping planes are supported. They are identified by symbolic names of the form ClipPlane where i ranges from 0 to the value of MaxClipPlanes - 1. + /// + /// [length: 4] + /// Returns four double-precision values that are the coefficients of the plane equation of plane in eye coordinates. The initial value is (0, 0, 0, 0). + /// + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanef")] + [CLSCompliant(false)] + public static void GetClipPlane(OpenTK.Graphics.ES11.ClipPlaneName plane, [OutAttribute, CountAttribute(Count = 4)] Single[] equation) { throw new BindingsNotRewrittenException(); } + + /// [requires: v1.0] + /// Return the coefficients of the specified clipping plane + /// + /// + /// Specifies a clipping plane. The number of clipping planes depends on the implementation, but at least six clipping planes are supported. They are identified by symbolic names of the form ClipPlane where i ranges from 0 to the value of MaxClipPlanes - 1. + /// + /// [length: 4] + /// Returns four double-precision values that are the coefficients of the plane equation of plane in eye coordinates. The initial value is (0, 0, 0, 0). + /// + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanef")] + [CLSCompliant(false)] + public static void GetClipPlane(OpenTK.Graphics.ES11.ClipPlaneName plane, [OutAttribute, CountAttribute(Count = 4)] out Single equation) { throw new BindingsNotRewrittenException(); } + + /// [requires: v1.0] + /// Return the coefficients of the specified clipping plane + /// + /// + /// Specifies a clipping plane. The number of clipping planes depends on the implementation, but at least six clipping planes are supported. They are identified by symbolic names of the form ClipPlane where i ranges from 0 to the value of MaxClipPlanes - 1. + /// + /// [length: 4] + /// Returns four double-precision values that are the coefficients of the plane equation of plane in eye coordinates. The initial value is (0, 0, 0, 0). + /// + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanef")] + [CLSCompliant(false)] + public static unsafe void GetClipPlane(OpenTK.Graphics.ES11.ClipPlaneName plane, [OutAttribute, CountAttribute(Count = 4)] Single* equation) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanex")] [CLSCompliant(false)] public static void GetClipPlanex(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] Int32[] equation) { throw new BindingsNotRewrittenException(); } @@ -4539,6 +5389,7 @@ namespace OpenTK.Graphics.ES11 /// [requires: v1.0] /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanex")] [CLSCompliant(false)] public static void GetClipPlanex(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] out Int32 equation) { throw new BindingsNotRewrittenException(); } @@ -4546,10 +5397,410 @@ namespace OpenTK.Graphics.ES11 /// [requires: v1.0] /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanex")] [CLSCompliant(false)] public static unsafe void GetClipPlanex(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] Int32* equation) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] + /// + /// [length: 4] + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanex")] + [CLSCompliant(false)] + public static void GetClipPlanex(OpenTK.Graphics.ES11.ClipPlaneName plane, [OutAttribute, CountAttribute(Count = 4)] Int32[] equation) { throw new BindingsNotRewrittenException(); } + + /// [requires: v1.0] + /// + /// [length: 4] + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanex")] + [CLSCompliant(false)] + public static void GetClipPlanex(OpenTK.Graphics.ES11.ClipPlaneName plane, [OutAttribute, CountAttribute(Count = 4)] out Int32 equation) { throw new BindingsNotRewrittenException(); } + + /// [requires: v1.0] + /// + /// [length: 4] + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanex")] + [CLSCompliant(false)] + public static unsafe void GetClipPlanex(OpenTK.Graphics.ES11.ClipPlaneName plane, [OutAttribute, CountAttribute(Count = 4)] Int32* equation) { throw new BindingsNotRewrittenException(); } + + /// + /// Retrieve messages from the debug message log + /// + /// + /// The number of debug messages to retrieve from the log. + /// + /// + /// The size of the buffer whose address is given by messageLog. + /// + /// [length: count] + /// The address of an array of variables to receive the sources of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the types of the retrieved messages. + /// + /// [length: count] + /// The address of an array of unsigned integers to receive the ids of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the severites of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the lengths of the received messages. + /// + /// [length: bufSize] + /// The address of an array of characters that will receive the messages. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + + /// + /// Retrieve messages from the debug message log + /// + /// + /// The number of debug messages to retrieve from the log. + /// + /// + /// The size of the buffer whose address is given by messageLog. + /// + /// [length: count] + /// The address of an array of variables to receive the sources of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the types of the retrieved messages. + /// + /// [length: count] + /// The address of an array of unsigned integers to receive the ids of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the severites of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the lengths of the received messages. + /// + /// [length: bufSize] + /// The address of an array of characters that will receive the messages. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES11.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES11.All types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES11.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + + /// + /// Retrieve messages from the debug message log + /// + /// + /// The number of debug messages to retrieve from the log. + /// + /// + /// The size of the buffer whose address is given by messageLog. + /// + /// [length: count] + /// The address of an array of variables to receive the sources of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the types of the retrieved messages. + /// + /// [length: count] + /// The address of an array of unsigned integers to receive the ids of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the severites of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the lengths of the received messages. + /// + /// [length: bufSize] + /// The address of an array of characters that will receive the messages. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.All* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + + /// + /// Retrieve messages from the debug message log + /// + /// + /// The number of debug messages to retrieve from the log. + /// + /// + /// The size of the buffer whose address is given by messageLog. + /// + /// [length: count] + /// The address of an array of variables to receive the sources of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the types of the retrieved messages. + /// + /// [length: count] + /// The address of an array of unsigned integers to receive the ids of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the severites of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the lengths of the received messages. + /// + /// [length: bufSize] + /// The address of an array of characters that will receive the messages. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.DebugSource[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + + /// + /// Retrieve messages from the debug message log + /// + /// + /// The number of debug messages to retrieve from the log. + /// + /// + /// The size of the buffer whose address is given by messageLog. + /// + /// [length: count] + /// The address of an array of variables to receive the sources of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the types of the retrieved messages. + /// + /// [length: count] + /// The address of an array of unsigned integers to receive the ids of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the severites of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the lengths of the received messages. + /// + /// [length: bufSize] + /// The address of an array of characters that will receive the messages. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES11.DebugSource sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES11.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES11.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + + /// + /// Retrieve messages from the debug message log + /// + /// + /// The number of debug messages to retrieve from the log. + /// + /// + /// The size of the buffer whose address is given by messageLog. + /// + /// [length: count] + /// The address of an array of variables to receive the sources of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the types of the retrieved messages. + /// + /// [length: count] + /// The address of an array of unsigned integers to receive the ids of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the severites of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the lengths of the received messages. + /// + /// [length: bufSize] + /// The address of an array of characters that will receive the messages. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.DebugSource* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + + /// + /// Retrieve messages from the debug message log + /// + /// + /// The number of debug messages to retrieve from the log. + /// + /// + /// The size of the buffer whose address is given by messageLog. + /// + /// [length: count] + /// The address of an array of variables to receive the sources of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the types of the retrieved messages. + /// + /// [length: count] + /// The address of an array of unsigned integers to receive the ids of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the severites of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the lengths of the received messages. + /// + /// [length: bufSize] + /// The address of an array of characters that will receive the messages. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + + /// + /// Retrieve messages from the debug message log + /// + /// + /// The number of debug messages to retrieve from the log. + /// + /// + /// The size of the buffer whose address is given by messageLog. + /// + /// [length: count] + /// The address of an array of variables to receive the sources of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the types of the retrieved messages. + /// + /// [length: count] + /// The address of an array of unsigned integers to receive the ids of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the severites of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the lengths of the received messages. + /// + /// [length: bufSize] + /// The address of an array of characters that will receive the messages. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES11.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES11.All types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES11.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + + /// + /// Retrieve messages from the debug message log + /// + /// + /// The number of debug messages to retrieve from the log. + /// + /// + /// The size of the buffer whose address is given by messageLog. + /// + /// [length: count] + /// The address of an array of variables to receive the sources of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the types of the retrieved messages. + /// + /// [length: count] + /// The address of an array of unsigned integers to receive the ids of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the severites of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the lengths of the received messages. + /// + /// [length: bufSize] + /// The address of an array of characters that will receive the messages. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.All* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + + /// + /// Retrieve messages from the debug message log + /// + /// + /// The number of debug messages to retrieve from the log. + /// + /// + /// The size of the buffer whose address is given by messageLog. + /// + /// [length: count] + /// The address of an array of variables to receive the sources of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the types of the retrieved messages. + /// + /// [length: count] + /// The address of an array of unsigned integers to receive the ids of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the severites of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the lengths of the received messages. + /// + /// [length: bufSize] + /// The address of an array of characters that will receive the messages. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.DebugSource[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + + /// + /// Retrieve messages from the debug message log + /// + /// + /// The number of debug messages to retrieve from the log. + /// + /// + /// The size of the buffer whose address is given by messageLog. + /// + /// [length: count] + /// The address of an array of variables to receive the sources of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the types of the retrieved messages. + /// + /// [length: count] + /// The address of an array of unsigned integers to receive the ids of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the severites of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the lengths of the received messages. + /// + /// [length: bufSize] + /// The address of an array of characters that will receive the messages. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES11.DebugSource sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES11.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES11.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + + /// + /// Retrieve messages from the debug message log + /// + /// + /// The number of debug messages to retrieve from the log. + /// + /// + /// The size of the buffer whose address is given by messageLog. + /// + /// [length: count] + /// The address of an array of variables to receive the sources of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the types of the retrieved messages. + /// + /// [length: count] + /// The address of an array of unsigned integers to receive the ids of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the severites of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the lengths of the received messages. + /// + /// [length: bufSize] + /// The address of an array of characters that will receive the messages. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.DebugSource* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] /// Return error information /// @@ -4558,13 +5809,21 @@ namespace OpenTK.Graphics.ES11 /// [requires: v1.0] /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFixedv")] [CLSCompliant(false)] public static Int32 GetFixed(OpenTK.Graphics.ES11.All pname) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] + /// + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFixedv")] + [CLSCompliant(false)] + public static Int32 GetFixed(OpenTK.Graphics.ES11.GetPName pname) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFixedv")] [CLSCompliant(false)] public static void GetFixed(OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -4572,6 +5831,7 @@ namespace OpenTK.Graphics.ES11 /// [requires: v1.0] /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFixedv")] [CLSCompliant(false)] public static void GetFixed(OpenTK.Graphics.ES11.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -4579,10 +5839,32 @@ namespace OpenTK.Graphics.ES11 /// [requires: v1.0] /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFixedv")] [CLSCompliant(false)] public static unsafe void GetFixed(OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] + /// + /// + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFixedv")] + [CLSCompliant(false)] + public static void GetFixed(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v1.0] + /// + /// + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFixedv")] + [CLSCompliant(false)] + public static void GetFixed(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v1.0] + /// + /// + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFixedv")] + [CLSCompliant(false)] + public static unsafe void GetFixed(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] /// [Obsolete("Use strongly-typed overload instead")] @@ -4802,6 +6084,7 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetLightxv")] [CLSCompliant(false)] public static void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -4810,6 +6093,7 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetLightxv")] [CLSCompliant(false)] public static void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -4818,10 +6102,35 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetLightxv")] [CLSCompliant(false)] public static unsafe void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetLightxv")] + [CLSCompliant(false)] + public static void GetLightx(OpenTK.Graphics.ES11.LightName light, OpenTK.Graphics.ES11.LightParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v1.0] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetLightxv")] + [CLSCompliant(false)] + public static void GetLightx(OpenTK.Graphics.ES11.LightName light, OpenTK.Graphics.ES11.LightParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v1.0] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetLightxv")] + [CLSCompliant(false)] + public static unsafe void GetLightx(OpenTK.Graphics.ES11.LightName light, OpenTK.Graphics.ES11.LightParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] /// Return material parameters /// @@ -4925,6 +6234,7 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetMaterialxv")] [CLSCompliant(false)] public static void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -4933,6 +6243,7 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetMaterialxv")] [CLSCompliant(false)] public static void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -4941,14 +6252,334 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetMaterialxv")] [CLSCompliant(false)] public static unsafe void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetMaterialxv")] + [CLSCompliant(false)] + public static void GetMaterialx(OpenTK.Graphics.ES11.MaterialFace face, OpenTK.Graphics.ES11.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v1.0] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetMaterialxv")] + [CLSCompliant(false)] + public static void GetMaterialx(OpenTK.Graphics.ES11.MaterialFace face, OpenTK.Graphics.ES11.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v1.0] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetMaterialxv")] + [CLSCompliant(false)] + public static unsafe void GetMaterialx(OpenTK.Graphics.ES11.MaterialFace face, OpenTK.Graphics.ES11.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + + /// + /// Retrieve the label of a named object identified within a namespace + /// + /// + /// The namespace from which the name of the object is allocated. + /// + /// + /// The name of the object whose label to retrieve. + /// + /// + /// The length of the buffer whose address is in label. + /// + /// [length: 1] + /// The address of a variable to receive the length of the object label. + /// + /// [length: bufSize] + /// The address of a string that will receive the object label. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] + [CLSCompliant(false)] + public static void GetObjectLabel(OpenTK.Graphics.ES11.All identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } + + /// + /// Retrieve the label of a named object identified within a namespace + /// + /// + /// The namespace from which the name of the object is allocated. + /// + /// + /// The name of the object whose label to retrieve. + /// + /// + /// The length of the buffer whose address is in label. + /// + /// [length: 1] + /// The address of a variable to receive the length of the object label. + /// + /// [length: bufSize] + /// The address of a string that will receive the object label. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] + [CLSCompliant(false)] + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES11.All identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } + + /// + /// Retrieve the label of a named object identified within a namespace + /// + /// + /// The namespace from which the name of the object is allocated. + /// + /// + /// The name of the object whose label to retrieve. + /// + /// + /// The length of the buffer whose address is in label. + /// + /// [length: 1] + /// The address of a variable to receive the length of the object label. + /// + /// [length: bufSize] + /// The address of a string that will receive the object label. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] + [CLSCompliant(false)] + public static void GetObjectLabel(OpenTK.Graphics.ES11.All identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } + + /// + /// Retrieve the label of a named object identified within a namespace + /// + /// + /// The namespace from which the name of the object is allocated. + /// + /// + /// The name of the object whose label to retrieve. + /// + /// + /// The length of the buffer whose address is in label. + /// + /// [length: 1] + /// The address of a variable to receive the length of the object label. + /// + /// [length: bufSize] + /// The address of a string that will receive the object label. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] + [CLSCompliant(false)] + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES11.All identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } + + /// + /// Retrieve the label of a sync object identified by a pointer + /// + /// + /// The name of the sync object whose label to retrieve. + /// + /// + /// The length of the buffer whose address is in label. + /// + /// [length: 1] + /// The address of a variable to receive the length of the object label. + /// + /// [length: bufSize] + /// The address of a string that will receive the object label. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } + + /// + /// Retrieve the label of a sync object identified by a pointer + /// + /// + /// The name of the sync object whose label to retrieve. + /// + /// + /// The length of the buffer whose address is in label. + /// + /// [length: 1] + /// The address of a variable to receive the length of the object label. + /// + /// [length: bufSize] + /// The address of a string that will receive the object label. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] + public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } + + /// + /// Retrieve the label of a sync object identified by a pointer + /// + /// + /// The name of the sync object whose label to retrieve. + /// + /// + /// The length of the buffer whose address is in label. + /// + /// [length: 1] + /// The address of a variable to receive the length of the object label. + /// + /// [length: bufSize] + /// The address of a string that will receive the object label. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] + public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) + where T0 : struct + { throw new BindingsNotRewrittenException(); } + + /// + /// Retrieve the label of a sync object identified by a pointer + /// + /// + /// The name of the sync object whose label to retrieve. + /// + /// + /// The length of the buffer whose address is in label. + /// + /// [length: 1] + /// The address of a variable to receive the length of the object label. + /// + /// [length: bufSize] + /// The address of a string that will receive the object label. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] + public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) + where T0 : struct + { throw new BindingsNotRewrittenException(); } + + /// + /// Retrieve the label of a sync object identified by a pointer + /// + /// + /// The name of the sync object whose label to retrieve. + /// + /// + /// The length of the buffer whose address is in label. + /// + /// [length: 1] + /// The address of a variable to receive the length of the object label. + /// + /// [length: bufSize] + /// The address of a string that will receive the object label. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] + public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) + where T0 : struct + { throw new BindingsNotRewrittenException(); } + + /// + /// Retrieve the label of a sync object identified by a pointer + /// + /// + /// The name of the sync object whose label to retrieve. + /// + /// + /// The length of the buffer whose address is in label. + /// + /// [length: 1] + /// The address of a variable to receive the length of the object label. + /// + /// [length: bufSize] + /// The address of a string that will receive the object label. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] + public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) + where T0 : struct + { throw new BindingsNotRewrittenException(); } + + /// + /// Retrieve the label of a sync object identified by a pointer + /// + /// + /// The name of the sync object whose label to retrieve. + /// + /// + /// The length of the buffer whose address is in label. + /// + /// [length: 1] + /// The address of a variable to receive the length of the object label. + /// + /// [length: bufSize] + /// The address of a string that will receive the object label. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] + public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) + where T0 : struct + { throw new BindingsNotRewrittenException(); } + + /// + /// Retrieve the label of a sync object identified by a pointer + /// + /// + /// The name of the sync object whose label to retrieve. + /// + /// + /// The length of the buffer whose address is in label. + /// + /// [length: 1] + /// The address of a variable to receive the length of the object label. + /// + /// [length: bufSize] + /// The address of a string that will receive the object label. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] + public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) + where T0 : struct + { throw new BindingsNotRewrittenException(); } + + /// + /// Retrieve the label of a sync object identified by a pointer + /// + /// + /// The name of the sync object whose label to retrieve. + /// + /// + /// The length of the buffer whose address is in label. + /// + /// [length: 1] + /// The address of a variable to receive the length of the object label. + /// + /// [length: bufSize] + /// The address of a string that will receive the object label. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] + public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) + where T0 : struct + { throw new BindingsNotRewrittenException(); } + + /// + /// Retrieve the label of a sync object identified by a pointer + /// + /// + /// The name of the sync object whose label to retrieve. + /// + /// + /// The length of the buffer whose address is in label. + /// + /// [length: 1] + /// The address of a variable to receive the length of the object label. + /// + /// [length: bufSize] + /// The address of a string that will receive the object label. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] + [CLSCompliant(false)] + public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) + where T0 : struct + { throw new BindingsNotRewrittenException(); } + /// /// /// /// [length: size] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetPixelMapxv")] [CLSCompliant(false)] public static void GetPixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32[] values) { throw new BindingsNotRewrittenException(); } @@ -4957,6 +6588,7 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: size] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetPixelMapxv")] [CLSCompliant(false)] public static void GetPixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out Int32 values) { throw new BindingsNotRewrittenException(); } @@ -4965,11 +6597,36 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: size] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetPixelMapxv")] [CLSCompliant(false)] public static unsafe void GetPixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32* values) { throw new BindingsNotRewrittenException(); } - /// [requires: v1.0] + /// + /// + /// + /// [length: size] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetPixelMapxv")] + [CLSCompliant(false)] + public static void GetPixelMapx(OpenTK.Graphics.ES11.PixelMap map, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32[] values) { throw new BindingsNotRewrittenException(); } + + /// + /// + /// + /// [length: size] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetPixelMapxv")] + [CLSCompliant(false)] + public static void GetPixelMapx(OpenTK.Graphics.ES11.PixelMap map, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out Int32 values) { throw new BindingsNotRewrittenException(); } + + /// + /// + /// + /// [length: size] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetPixelMapxv")] + [CLSCompliant(false)] + public static unsafe void GetPixelMapx(OpenTK.Graphics.ES11.PixelMap map, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32* values) { throw new BindingsNotRewrittenException(); } + + /// [requires: v1.0 or KHR_debug|VERSION_ES_CM_1_0] /// Return the address of the specified pointer /// /// @@ -4979,10 +6636,10 @@ namespace OpenTK.Graphics.ES11 /// Returns the pointer value specified by pname. /// [Obsolete("Use strongly-typed overload instead")] - [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")] + [AutoGenerated(Category = "KHR_debug|VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")] public static void GetPointer(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } - /// [requires: v1.0] + /// [requires: v1.0 or KHR_debug|VERSION_ES_CM_1_0] /// Return the address of the specified pointer /// /// @@ -4992,13 +6649,13 @@ namespace OpenTK.Graphics.ES11 /// Returns the pointer value specified by pname. /// [Obsolete("Use strongly-typed overload instead")] - [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")] + [AutoGenerated(Category = "KHR_debug|VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")] [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[] @params) where T1 : struct { throw new BindingsNotRewrittenException(); } - /// [requires: v1.0] + /// [requires: v1.0 or KHR_debug|VERSION_ES_CM_1_0] /// Return the address of the specified pointer /// /// @@ -5008,13 +6665,13 @@ namespace OpenTK.Graphics.ES11 /// Returns the pointer value specified by pname. /// [Obsolete("Use strongly-typed overload instead")] - [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")] + [AutoGenerated(Category = "KHR_debug|VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")] [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,] @params) where T1 : struct { throw new BindingsNotRewrittenException(); } - /// [requires: v1.0] + /// [requires: v1.0 or KHR_debug|VERSION_ES_CM_1_0] /// Return the address of the specified pointer /// /// @@ -5024,13 +6681,13 @@ namespace OpenTK.Graphics.ES11 /// Returns the pointer value specified by pname. /// [Obsolete("Use strongly-typed overload instead")] - [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")] + [AutoGenerated(Category = "KHR_debug|VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")] [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,,] @params) where T1 : struct { throw new BindingsNotRewrittenException(); } - /// [requires: v1.0] + /// [requires: v1.0 or KHR_debug|VERSION_ES_CM_1_0] /// Return the address of the specified pointer /// /// @@ -5040,12 +6697,12 @@ namespace OpenTK.Graphics.ES11 /// Returns the pointer value specified by pname. /// [Obsolete("Use strongly-typed overload instead")] - [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")] + [AutoGenerated(Category = "KHR_debug|VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")] public static void GetPointer(OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T1 @params) where T1 : struct { throw new BindingsNotRewrittenException(); } - /// [requires: v1.0] + /// [requires: v1.0 or KHR_debug|VERSION_ES_CM_1_0] /// Return the address of the specified pointer /// /// @@ -5054,10 +6711,10 @@ namespace OpenTK.Graphics.ES11 /// [length: 1] /// Returns the pointer value specified by pname. /// - [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")] + [AutoGenerated(Category = "KHR_debug|VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")] public static void GetPointer(OpenTK.Graphics.ES11.GetPointervPName pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } - /// [requires: v1.0] + /// [requires: v1.0 or KHR_debug|VERSION_ES_CM_1_0] /// Return the address of the specified pointer /// /// @@ -5066,13 +6723,13 @@ namespace OpenTK.Graphics.ES11 /// [length: 1] /// Returns the pointer value specified by pname. /// - [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")] + [AutoGenerated(Category = "KHR_debug|VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")] [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES11.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[] @params) where T1 : struct { throw new BindingsNotRewrittenException(); } - /// [requires: v1.0] + /// [requires: v1.0 or KHR_debug|VERSION_ES_CM_1_0] /// Return the address of the specified pointer /// /// @@ -5081,13 +6738,13 @@ namespace OpenTK.Graphics.ES11 /// [length: 1] /// Returns the pointer value specified by pname. /// - [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")] + [AutoGenerated(Category = "KHR_debug|VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")] [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES11.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,] @params) where T1 : struct { throw new BindingsNotRewrittenException(); } - /// [requires: v1.0] + /// [requires: v1.0 or KHR_debug|VERSION_ES_CM_1_0] /// Return the address of the specified pointer /// /// @@ -5096,13 +6753,13 @@ namespace OpenTK.Graphics.ES11 /// [length: 1] /// Returns the pointer value specified by pname. /// - [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")] + [AutoGenerated(Category = "KHR_debug|VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")] [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES11.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,,] @params) where T1 : struct { throw new BindingsNotRewrittenException(); } - /// [requires: v1.0] + /// [requires: v1.0 or KHR_debug|VERSION_ES_CM_1_0] /// Return the address of the specified pointer /// /// @@ -5111,7 +6768,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 1] /// Returns the pointer value specified by pname. /// - [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")] + [AutoGenerated(Category = "KHR_debug|VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")] public static void GetPointer(OpenTK.Graphics.ES11.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T1 @params) where T1 : struct { throw new BindingsNotRewrittenException(); } @@ -5337,6 +6994,7 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnvxv")] [CLSCompliant(false)] public static void GetTexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -5345,6 +7003,7 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnvxv")] [CLSCompliant(false)] public static void GetTexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -5353,10 +7012,35 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnvxv")] [CLSCompliant(false)] public static unsafe void GetTexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnvxv")] + [CLSCompliant(false)] + public static void GetTexEnvx(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v1.0] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnvxv")] + [CLSCompliant(false)] + public static void GetTexEnvx(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v1.0] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnvxv")] + [CLSCompliant(false)] + public static unsafe void GetTexEnvx(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] /// Return texture parameter values /// @@ -5559,6 +7243,7 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameterxv")] [CLSCompliant(false)] public static void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -5567,6 +7252,7 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameterxv")] [CLSCompliant(false)] public static void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -5575,10 +7261,35 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameterxv")] [CLSCompliant(false)] public static unsafe void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameterxv")] + [CLSCompliant(false)] + public static void GetTexParameterx(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v1.0] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameterxv")] + [CLSCompliant(false)] + public static void GetTexParameterx(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v1.0] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameterxv")] + [CLSCompliant(false)] + public static unsafe void GetTexParameterx(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] /// Specify implementation-specific hints /// @@ -5842,12 +7553,20 @@ namespace OpenTK.Graphics.ES11 /// [requires: v1.0] /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightModelx")] public static void LightModelx(OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] + /// + /// + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightModelx")] + public static void LightModelx(OpenTK.Graphics.ES11.LightModelParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightModelxv")] [CLSCompliant(false)] public static void LightModelx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } @@ -5855,21 +7574,45 @@ namespace OpenTK.Graphics.ES11 /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightModelxv")] [CLSCompliant(false)] public static unsafe void LightModelx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightModelxv")] + [CLSCompliant(false)] + public static void LightModelx(OpenTK.Graphics.ES11.LightModelParameter pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } + + /// [requires: v1.0] + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightModelxv")] + [CLSCompliant(false)] + public static unsafe void LightModelx(OpenTK.Graphics.ES11.LightModelParameter pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightx")] public static void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] + /// + /// + /// + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightx")] + public static void Lightx(OpenTK.Graphics.ES11.LightName light, OpenTK.Graphics.ES11.LightParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightxv")] [CLSCompliant(false)] public static void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -5878,10 +7621,27 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightxv")] [CLSCompliant(false)] public static unsafe void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightxv")] + [CLSCompliant(false)] + public static void Lightx(OpenTK.Graphics.ES11.LightName light, OpenTK.Graphics.ES11.LightParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v1.0] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightxv")] + [CLSCompliant(false)] + public static unsafe void Lightx(OpenTK.Graphics.ES11.LightName light, OpenTK.Graphics.ES11.LightParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] /// Specify the width of rasterized lines /// @@ -6070,13 +7830,22 @@ namespace OpenTK.Graphics.ES11 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMaterialx")] public static void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] + /// + /// + /// + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMaterialx")] + public static void Materialx(OpenTK.Graphics.ES11.MaterialFace face, OpenTK.Graphics.ES11.MaterialParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMaterialxv")] [CLSCompliant(false)] public static void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } @@ -6085,10 +7854,27 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMaterialxv")] [CLSCompliant(false)] public static unsafe void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMaterialxv")] + [CLSCompliant(false)] + public static void Materialx(OpenTK.Graphics.ES11.MaterialFace face, OpenTK.Graphics.ES11.MaterialParameter 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 = "glMaterialxv")] + [CLSCompliant(false)] + public static unsafe void Materialx(OpenTK.Graphics.ES11.MaterialFace face, OpenTK.Graphics.ES11.MaterialParameter pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] /// Specify which matrix is the current matrix /// @@ -6157,9 +7943,19 @@ namespace OpenTK.Graphics.ES11 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMultiTexCoord4x")] public static void MultiTexCoord4x(OpenTK.Graphics.ES11.All texture, Int32 s, Int32 t, Int32 r, Int32 q) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] + /// + /// + /// + /// + /// + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMultiTexCoord4x")] + public static void MultiTexCoord4x(OpenTK.Graphics.ES11.TextureUnit texture, Int32 s, Int32 t, Int32 r, Int32 q) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] /// Multiply the current matrix with the specified matrix /// @@ -6407,6 +8203,170 @@ namespace OpenTK.Graphics.ES11 where T2 : struct { throw new BindingsNotRewrittenException(); } + /// + /// Label a named object identified within a namespace + /// + /// + /// The namespace from which the name of the object is allocated. + /// + /// + /// The name of the object to label. + /// + /// + /// The length of the label to be used for the object. + /// + /// [length: COMPSIZE(label,length)] + /// The address of a string containing the label to assign to the object. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabel")] + [CLSCompliant(false)] + public static void ObjectLabel(OpenTK.Graphics.ES11.All identifier, Int32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } + + /// + /// Label a named object identified within a namespace + /// + /// + /// The namespace from which the name of the object is allocated. + /// + /// + /// The name of the object to label. + /// + /// + /// The length of the label to be used for the object. + /// + /// [length: COMPSIZE(label,length)] + /// The address of a string containing the label to assign to the object. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabel")] + [CLSCompliant(false)] + public static void ObjectLabel(OpenTK.Graphics.ES11.All identifier, UInt32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } + + /// + /// Label a named object identified within a namespace + /// + /// + /// The namespace from which the name of the object is allocated. + /// + /// + /// The name of the object to label. + /// + /// + /// The length of the label to be used for the object. + /// + /// [length: COMPSIZE(label,length)] + /// The address of a string containing the label to assign to the object. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabel")] + [CLSCompliant(false)] + public static void ObjectLabel(OpenTK.Graphics.ES11.ObjectIdentifier identifier, Int32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } + + /// + /// Label a named object identified within a namespace + /// + /// + /// The namespace from which the name of the object is allocated. + /// + /// + /// The name of the object to label. + /// + /// + /// The length of the label to be used for the object. + /// + /// [length: COMPSIZE(label,length)] + /// The address of a string containing the label to assign to the object. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabel")] + [CLSCompliant(false)] + public static void ObjectLabel(OpenTK.Graphics.ES11.ObjectIdentifier identifier, UInt32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } + + /// + /// Label a a sync object identified by a pointer + /// + /// + /// A pointer identifying a sync object. + /// + /// + /// The length of the label to be used for the object. + /// + /// [length: COMPSIZE(label,length)] + /// The address of a string containing the label to assign to the object. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabel")] + public static void ObjectPtrLabel(IntPtr ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } + + /// + /// Label a a sync object identified by a pointer + /// + /// + /// A pointer identifying a sync object. + /// + /// + /// The length of the label to be used for the object. + /// + /// [length: COMPSIZE(label,length)] + /// The address of a string containing the label to assign to the object. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabel")] + [CLSCompliant(false)] + public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) + where T0 : struct + { throw new BindingsNotRewrittenException(); } + + /// + /// Label a a sync object identified by a pointer + /// + /// + /// A pointer identifying a sync object. + /// + /// + /// The length of the label to be used for the object. + /// + /// [length: COMPSIZE(label,length)] + /// The address of a string containing the label to assign to the object. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabel")] + [CLSCompliant(false)] + public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) + where T0 : struct + { throw new BindingsNotRewrittenException(); } + + /// + /// Label a a sync object identified by a pointer + /// + /// + /// A pointer identifying a sync object. + /// + /// + /// The length of the label to be used for the object. + /// + /// [length: COMPSIZE(label,length)] + /// The address of a string containing the label to assign to the object. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabel")] + [CLSCompliant(false)] + public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) + where T0 : struct + { throw new BindingsNotRewrittenException(); } + + /// + /// Label a a sync object identified by a pointer + /// + /// + /// A pointer identifying a sync object. + /// + /// + /// The length of the label to be used for the object. + /// + /// [length: COMPSIZE(label,length)] + /// The address of a string containing the label to assign to the object. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabel")] + public static void ObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) + where T0 : struct + { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] /// Multiply the current matrix with an orthographic matrix /// @@ -6445,6 +8405,7 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: size] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelMapx")] [CLSCompliant(false)] public static void PixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, [CountAttribute(Parameter = "size")] Int32[] values) { throw new BindingsNotRewrittenException(); } @@ -6453,6 +8414,7 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: size] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelMapx")] [CLSCompliant(false)] public static void PixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, [CountAttribute(Parameter = "size")] ref Int32 values) { throw new BindingsNotRewrittenException(); } @@ -6461,10 +8423,35 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: size] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelMapx")] [CLSCompliant(false)] public static unsafe void PixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, [CountAttribute(Parameter = "size")] Int32* values) { throw new BindingsNotRewrittenException(); } + /// + /// + /// + /// [length: size] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelMapx")] + [CLSCompliant(false)] + public static void PixelMapx(OpenTK.Graphics.ES11.PixelMap map, Int32 size, [CountAttribute(Parameter = "size")] Int32[] values) { throw new BindingsNotRewrittenException(); } + + /// + /// + /// + /// [length: size] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelMapx")] + [CLSCompliant(false)] + public static void PixelMapx(OpenTK.Graphics.ES11.PixelMap map, Int32 size, [CountAttribute(Parameter = "size")] ref Int32 values) { throw new BindingsNotRewrittenException(); } + + /// + /// + /// + /// [length: size] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelMapx")] + [CLSCompliant(false)] + public static unsafe void PixelMapx(OpenTK.Graphics.ES11.PixelMap map, Int32 size, [CountAttribute(Parameter = "size")] Int32* values) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] /// Set pixel storage modes /// @@ -6493,9 +8480,16 @@ namespace OpenTK.Graphics.ES11 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelStorex")] public static void PixelStorex(OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } + /// + /// + /// + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelStorex")] + public static void PixelStorex(OpenTK.Graphics.ES11.PixelStoreParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] /// Specify point parameters /// @@ -6586,10 +8580,94 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPolygonOffsetx")] public static void PolygonOffsetx(Int32 factor, Int32 units) { throw new BindingsNotRewrittenException(); } + /// + /// Pop the active debug group + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPopDebugGroup")] + public static void PopDebugGroup() { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPopMatrix")] public static void PopMatrix() { throw new BindingsNotRewrittenException(); } + /// + /// Push a named debug group into the command stream + /// + /// + /// The source of the debug message. + /// + /// + /// The identifier of the message. + /// + /// + /// The length of the message to be sent to the debug output stream. + /// + /// [length: COMPSIZE(message,length)] + /// The a string containing the message to be sent to the debug output stream. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroup")] + [CLSCompliant(false)] + public static void PushDebugGroup(OpenTK.Graphics.ES11.All source, Int32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new BindingsNotRewrittenException(); } + + /// + /// Push a named debug group into the command stream + /// + /// + /// The source of the debug message. + /// + /// + /// The identifier of the message. + /// + /// + /// The length of the message to be sent to the debug output stream. + /// + /// [length: COMPSIZE(message,length)] + /// The a string containing the message to be sent to the debug output stream. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroup")] + [CLSCompliant(false)] + public static void PushDebugGroup(OpenTK.Graphics.ES11.All source, UInt32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new BindingsNotRewrittenException(); } + + /// + /// Push a named debug group into the command stream + /// + /// + /// The source of the debug message. + /// + /// + /// The identifier of the message. + /// + /// + /// The length of the message to be sent to the debug output stream. + /// + /// [length: COMPSIZE(message,length)] + /// The a string containing the message to be sent to the debug output stream. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroup")] + [CLSCompliant(false)] + public static void PushDebugGroup(OpenTK.Graphics.ES11.DebugSource source, Int32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new BindingsNotRewrittenException(); } + + /// + /// Push a named debug group into the command stream + /// + /// + /// The source of the debug message. + /// + /// + /// The identifier of the message. + /// + /// + /// The length of the message to be sent to the debug output stream. + /// + /// [length: COMPSIZE(message,length)] + /// The a string containing the message to be sent to the debug output stream. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroup")] + [CLSCompliant(false)] + public static void PushDebugGroup(OpenTK.Graphics.ES11.DebugSource source, UInt32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] /// Push and pop the current matrix stack /// @@ -7518,13 +9596,22 @@ namespace OpenTK.Graphics.ES11 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnvx")] public static void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] + /// + /// + /// + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnvx")] + public static void TexEnvx(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnvxv")] [CLSCompliant(false)] public static void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -7533,10 +9620,27 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnvxv")] [CLSCompliant(false)] public static unsafe void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnvxv")] + [CLSCompliant(false)] + public static void TexEnvx(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v1.0] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnvxv")] + [CLSCompliant(false)] + public static unsafe void TexEnvx(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] /// Specify a two-dimensional texture image /// @@ -7569,7 +9673,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexImage2D")] - public static void TexImage2D(OpenTK.Graphics.ES11.All target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } + public static void TexImage2D(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -7604,7 +9708,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexImage2D")] [CLSCompliant(false)] - public static void TexImage2D(OpenTK.Graphics.ES11.All target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) + public static void TexImage2D(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -7641,7 +9745,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexImage2D")] [CLSCompliant(false)] - public static void TexImage2D(OpenTK.Graphics.ES11.All target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) + public static void TexImage2D(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -7678,7 +9782,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexImage2D")] [CLSCompliant(false)] - public static void TexImage2D(OpenTK.Graphics.ES11.All target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) + public static void TexImage2D(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -7714,7 +9818,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexImage2D")] - public static void TexImage2D(OpenTK.Graphics.ES11.All target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) + public static void TexImage2D(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -7749,7 +9853,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexImage2D")] - public static void TexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } + public static void TexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, OpenTK.Graphics.ES11.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -7783,7 +9887,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexImage2D")] [CLSCompliant(false)] - public static void TexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) + public static void TexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, OpenTK.Graphics.ES11.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -7819,7 +9923,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexImage2D")] [CLSCompliant(false)] - public static void TexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) + public static void TexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, OpenTK.Graphics.ES11.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -7855,7 +9959,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexImage2D")] [CLSCompliant(false)] - public static void TexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) + public static void TexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, OpenTK.Graphics.ES11.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -7890,7 +9994,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexImage2D")] - public static void TexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) + public static void TexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, OpenTK.Graphics.ES11.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -8092,13 +10196,22 @@ namespace OpenTK.Graphics.ES11 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameterx")] public static void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] + /// + /// + /// + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameterx")] + public static void TexParameterx(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.GetTextureParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameterxv")] [CLSCompliant(false)] public static void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -8107,10 +10220,27 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameterxv")] [CLSCompliant(false)] public static unsafe void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameterxv")] + [CLSCompliant(false)] + public static void TexParameterx(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.GetTextureParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v1.0] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameterxv")] + [CLSCompliant(false)] + public static unsafe void TexParameterx(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.GetTextureParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v1.0] /// Specify a two-dimensional texture subimage /// @@ -8772,6 +10902,7 @@ namespace OpenTK.Graphics.ES11 /// /// Specifies the length of the buffer subrange, in basic machine units. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glFlushMappedBufferRangeEXT")] public static void FlushMappedBufferRange(OpenTK.Graphics.ES11.All target, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } @@ -8787,9 +10918,40 @@ namespace OpenTK.Graphics.ES11 /// /// Specifies the length of the buffer subrange, in basic machine units. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glFlushMappedBufferRangeEXT")] public static void FlushMappedBufferRange(OpenTK.Graphics.ES11.All target, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_map_buffer_range] + /// Indicate modifications to a range of a mapped buffer + /// + /// + /// Specifies the target of the flush operation. target must be ArrayBuffer, CopyReadBuffer, CopyWriteBuffer, DispatchIndirectBuffer, DrawIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the start of the buffer subrange, in basic machine units. + /// + /// + /// Specifies the length of the buffer subrange, in basic machine units. + /// + [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glFlushMappedBufferRangeEXT")] + public static void FlushMappedBufferRange(OpenTK.Graphics.ES11.BufferTargetArb target, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_map_buffer_range] + /// Indicate modifications to a range of a mapped buffer + /// + /// + /// Specifies the target of the flush operation. target must be ArrayBuffer, CopyReadBuffer, CopyWriteBuffer, DispatchIndirectBuffer, DrawIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the start of the buffer subrange, in basic machine units. + /// + /// + /// Specifies the length of the buffer subrange, in basic machine units. + /// + [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glFlushMappedBufferRangeEXT")] + public static void FlushMappedBufferRange(OpenTK.Graphics.ES11.BufferTargetArb target, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_multisampled_render_to_texture] /// /// @@ -8797,6 +10959,7 @@ namespace OpenTK.Graphics.ES11 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleEXT")] [CLSCompliant(false)] public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All textarget, Int32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } @@ -8808,13 +10971,36 @@ namespace OpenTK.Graphics.ES11 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleEXT")] [CLSCompliant(false)] public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All textarget, UInt32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_multisampled_render_to_texture] + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleEXT")] + [CLSCompliant(false)] + public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES11.FramebufferTarget target, OpenTK.Graphics.ES11.FramebufferAttachment attachment, OpenTK.Graphics.ES11.TextureTarget textarget, Int32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_multisampled_render_to_texture] + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleEXT")] + [CLSCompliant(false)] + public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES11.FramebufferTarget target, OpenTK.Graphics.ES11.FramebufferAttachment attachment, OpenTK.Graphics.ES11.TextureTarget textarget, UInt32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_robustness] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetGraphicsResetStatusEXT")] - public static OpenTK.Graphics.ES11.All GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.ES11.GraphicsResetStatus GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -8924,6 +11110,12 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_debug_marker] + /// + /// + [AutoGenerated(Category = "EXT_debug_marker", Version = "", EntryPoint = "glInsertEventMarkerEXT")] + public static void InsertEventMarker(Int32 length, String marker) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store /// @@ -8939,9 +11131,28 @@ namespace OpenTK.Graphics.ES11 /// /// Specifies a combination of access flags indicating the desired access to the range. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] - [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES11.All target, IntPtr offset, Int32 length, Int32 access) { throw new BindingsNotRewrittenException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES11.All target, IntPtr offset, Int32 length, OpenTK.Graphics.ES11.All access) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_map_buffer_range] + /// Map a section of a buffer object's data store + /// + /// + /// Specifies a binding to which the target buffer is bound. + /// + /// + /// Specifies a the starting offset within the buffer of the range to be mapped. + /// + /// + /// Specifies a length of the range to be mapped. + /// + /// + /// Specifies a combination of access flags indicating the desired access to the range. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] + public static IntPtr MapBufferRange(OpenTK.Graphics.ES11.All target, IntPtr offset, IntPtr length, OpenTK.Graphics.ES11.All access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -8959,8 +11170,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a combination of access flags indicating the desired access to the range. /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] - [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES11.All target, IntPtr offset, Int32 length, UInt32 access) { throw new BindingsNotRewrittenException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES11.BufferTargetArb target, IntPtr offset, Int32 length, OpenTK.Graphics.ES11.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -8978,27 +11188,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a combination of access flags indicating the desired access to the range. /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] - [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES11.All target, IntPtr offset, IntPtr length, Int32 access) { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_map_buffer_range] - /// Map a section of a buffer object's data store - /// - /// - /// Specifies a binding to which the target buffer is bound. - /// - /// - /// Specifies a the starting offset within the buffer of the range to be mapped. - /// - /// - /// Specifies a length of the range to be mapped. - /// - /// - /// Specifies a combination of access flags indicating the desired access to the range. - /// - [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] - [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES11.All target, IntPtr offset, IntPtr length, UInt32 access) { throw new BindingsNotRewrittenException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES11.BufferTargetArb target, IntPtr offset, IntPtr length, OpenTK.Graphics.ES11.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -9840,6 +12030,16 @@ namespace OpenTK.Graphics.ES11 where T3 : struct { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_debug_marker] + [AutoGenerated(Category = "EXT_debug_marker", Version = "", EntryPoint = "glPopGroupMarkerEXT")] + public static void PopGroupMarker() { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_debug_marker] + /// + /// + [AutoGenerated(Category = "EXT_debug_marker", Version = "", EntryPoint = "glPushGroupMarkerEXT")] + public static void PushGroupMarker(Int32 length, String marker) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_robustness] /// /// @@ -9849,6 +12049,7 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: bufSize] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } @@ -9861,6 +12062,7 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: bufSize] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[] data) @@ -9876,6 +12078,7 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: bufSize] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,] data) @@ -9891,6 +12094,7 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: bufSize] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,,] data) @@ -9906,11 +12110,83 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: bufSize] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T7 data) where T7 : struct { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_robustness] + /// + /// + /// + /// + /// + /// + /// + /// [length: bufSize] + [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_robustness] + /// + /// + /// + /// + /// + /// + /// + /// [length: bufSize] + [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] + [CLSCompliant(false)] + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[] data) + where T7 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_robustness] + /// + /// + /// + /// + /// + /// + /// + /// [length: bufSize] + [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] + [CLSCompliant(false)] + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,] data) + where T7 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_robustness] + /// + /// + /// + /// + /// + /// + /// + /// [length: bufSize] + [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] + [CLSCompliant(false)] + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,,] data) + where T7 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_robustness] + /// + /// + /// + /// + /// + /// + /// + /// [length: bufSize] + [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T7 data) + where T7 : struct + { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_multisampled_render_to_texture] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image /// @@ -9929,9 +12205,50 @@ namespace OpenTK.Graphics.ES11 /// /// Specifies the height of the renderbuffer, in pixels. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glRenderbufferStorageMultisampleEXT")] public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES11.All target, Int32 samples, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_multisampled_render_to_texture] + /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image + /// + /// + /// Specifies a binding to which the target of the allocation and must be Renderbuffer. + /// + /// + /// Specifies the number of samples to be used for the renderbuffer object's storage. + /// + /// + /// Specifies the internal format to use for the renderbuffer object's image. + /// + /// + /// Specifies the width of the renderbuffer, in pixels. + /// + /// + /// Specifies the height of the renderbuffer, in pixels. + /// + [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glRenderbufferStorageMultisampleEXT")] + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES11.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES11.InternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_storage] + /// Simultaneously specify storage for all levels of a one-dimensional texture + /// + /// + /// Specify the target of the operation. target must be either Texture1D or ProxyTexture1D. + /// + /// + /// Specify the number of texture levels. + /// + /// + /// Specifies the sized internal format to be used to store texture image data. + /// + /// + /// Specifies the width of the texture, in texels. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage1DEXT")] + public static void TexStorage1D(OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_texture_storage] /// Simultaneously specify storage for all levels of a one-dimensional texture /// @@ -9948,7 +12265,29 @@ namespace OpenTK.Graphics.ES11 /// Specifies the width of the texture, in texels. /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage1DEXT")] - public static void TexStorage1D(OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } + public static void TexStorage1D(OpenTK.Graphics.ES11.TextureTarget target, Int32 levels, OpenTK.Graphics.ES11.InternalFormat internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_storage] + /// Simultaneously specify storage for all levels of a two-dimensional or one-dimensional array texture + /// + /// + /// Specify the target of the operation. target must be one of Texture2D, ProxyTexture2D, Texture1DArray, ProxyTexture1DArray, TextureRectangle, ProxyTextureRectangle, or ProxyTextureCubeMap. + /// + /// + /// Specify the number of texture levels. + /// + /// + /// Specifies the sized internal format to be used to store texture image data. + /// + /// + /// Specifies the width of the texture, in texels. + /// + /// + /// Specifies the height of the texture, in texels. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage2DEXT")] + public static void TexStorage2D(OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// Simultaneously specify storage for all levels of a two-dimensional or one-dimensional array texture @@ -9969,7 +12308,32 @@ namespace OpenTK.Graphics.ES11 /// Specifies the height of the texture, in texels. /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage2DEXT")] - public static void TexStorage2D(OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + public static void TexStorage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 levels, OpenTK.Graphics.ES11.InternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_storage] + /// Simultaneously specify storage for all levels of a three-dimensional, two-dimensional array or cube-map array texture + /// + /// + /// Specify the target of the operation. target must be one of Texture3D, ProxyTexture3D, Texture2DArray, ProxyTexture2DArray, TextureCubeArray, or ProxyTextureCubeArray. + /// + /// + /// Specify the number of texture levels. + /// + /// + /// Specifies the sized internal format to be used to store texture image data. + /// + /// + /// Specifies the width of the texture, in texels. + /// + /// + /// Specifies the height of the texture, in texels. + /// + /// + /// Specifies the depth of the texture, in texels. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage3DEXT")] + public static void TexStorage3D(OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// Simultaneously specify storage for all levels of a three-dimensional, two-dimensional array or cube-map array texture @@ -9993,7 +12357,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the depth of the texture, in texels. /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage3DEXT")] - public static void TexStorage3D(OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } + public static void TexStorage3D(OpenTK.Graphics.ES11.TextureTarget target, Int32 levels, OpenTK.Graphics.ES11.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -10001,6 +12365,7 @@ namespace OpenTK.Graphics.ES11 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage1DEXT")] [CLSCompliant(false)] public static void TextureStorage1D(Int32 texture, OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } @@ -10013,8 +12378,29 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage1DEXT")] [CLSCompliant(false)] + public static void TextureStorage1D(Int32 texture, OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.InternalFormat internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_storage] + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage1DEXT")] + [CLSCompliant(false)] public static void TextureStorage1D(UInt32 texture, OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_texture_storage] + /// + /// + /// + /// + /// + [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage1DEXT")] + [CLSCompliant(false)] + public static void TextureStorage1D(UInt32 texture, OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.InternalFormat internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_texture_storage] /// /// @@ -10022,6 +12408,7 @@ namespace OpenTK.Graphics.ES11 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage2DEXT")] [CLSCompliant(false)] public static void TextureStorage2D(Int32 texture, OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } @@ -10035,8 +12422,31 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage2DEXT")] [CLSCompliant(false)] + public static void TextureStorage2D(Int32 texture, OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.InternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_storage] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage2DEXT")] + [CLSCompliant(false)] public static void TextureStorage2D(UInt32 texture, OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_texture_storage] + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage2DEXT")] + [CLSCompliant(false)] + public static void TextureStorage2D(UInt32 texture, OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.InternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_texture_storage] /// /// @@ -10045,6 +12455,7 @@ namespace OpenTK.Graphics.ES11 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage3DEXT")] [CLSCompliant(false)] public static void TextureStorage3D(Int32 texture, OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } @@ -10059,8 +12470,33 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage3DEXT")] [CLSCompliant(false)] + public static void TextureStorage3D(Int32 texture, OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_storage] + /// + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage3DEXT")] + [CLSCompliant(false)] public static void TextureStorage3D(UInt32 texture, OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_texture_storage] + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage3DEXT")] + [CLSCompliant(false)] + public static void TextureStorage3D(UInt32 texture, OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } + } public static partial class Img @@ -10074,6 +12510,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 4] /// Specifies the address of an array of four double-precision floating-point values. These values are interpreted as a plane equation. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "IMG_user_clip_plane", Version = "", EntryPoint = "glClipPlanefIMG")] [CLSCompliant(false)] public static void ClipPlane(OpenTK.Graphics.ES11.All p, [CountAttribute(Count = 4)] Single[] eqn) { throw new BindingsNotRewrittenException(); } @@ -10087,6 +12524,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 4] /// Specifies the address of an array of four double-precision floating-point values. These values are interpreted as a plane equation. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "IMG_user_clip_plane", Version = "", EntryPoint = "glClipPlanefIMG")] [CLSCompliant(false)] public static void ClipPlane(OpenTK.Graphics.ES11.All p, [CountAttribute(Count = 4)] ref Single eqn) { throw new BindingsNotRewrittenException(); } @@ -10100,13 +12538,54 @@ namespace OpenTK.Graphics.ES11 /// [length: 4] /// Specifies the address of an array of four double-precision floating-point values. These values are interpreted as a plane equation. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "IMG_user_clip_plane", Version = "", EntryPoint = "glClipPlanefIMG")] [CLSCompliant(false)] public static unsafe void ClipPlane(OpenTK.Graphics.ES11.All p, [CountAttribute(Count = 4)] Single* eqn) { throw new BindingsNotRewrittenException(); } + /// [requires: IMG_user_clip_plane] + /// Specify a plane against which all geometry is clipped + /// + /// + /// Specifies which clipping plane is being positioned. Symbolic names of the form ClipPlanei, where i is an integer between 0 and MaxClipPlanes - 1, are accepted. + /// + /// [length: 4] + /// Specifies the address of an array of four double-precision floating-point values. These values are interpreted as a plane equation. + /// + [AutoGenerated(Category = "IMG_user_clip_plane", Version = "", EntryPoint = "glClipPlanefIMG")] + [CLSCompliant(false)] + public static void ClipPlane(OpenTK.Graphics.ES11.ClipPlaneName p, [CountAttribute(Count = 4)] Single[] eqn) { throw new BindingsNotRewrittenException(); } + + /// [requires: IMG_user_clip_plane] + /// Specify a plane against which all geometry is clipped + /// + /// + /// Specifies which clipping plane is being positioned. Symbolic names of the form ClipPlanei, where i is an integer between 0 and MaxClipPlanes - 1, are accepted. + /// + /// [length: 4] + /// Specifies the address of an array of four double-precision floating-point values. These values are interpreted as a plane equation. + /// + [AutoGenerated(Category = "IMG_user_clip_plane", Version = "", EntryPoint = "glClipPlanefIMG")] + [CLSCompliant(false)] + public static void ClipPlane(OpenTK.Graphics.ES11.ClipPlaneName p, [CountAttribute(Count = 4)] ref Single eqn) { throw new BindingsNotRewrittenException(); } + + /// [requires: IMG_user_clip_plane] + /// Specify a plane against which all geometry is clipped + /// + /// + /// Specifies which clipping plane is being positioned. Symbolic names of the form ClipPlanei, where i is an integer between 0 and MaxClipPlanes - 1, are accepted. + /// + /// [length: 4] + /// Specifies the address of an array of four double-precision floating-point values. These values are interpreted as a plane equation. + /// + [AutoGenerated(Category = "IMG_user_clip_plane", Version = "", EntryPoint = "glClipPlanefIMG")] + [CLSCompliant(false)] + public static unsafe void ClipPlane(OpenTK.Graphics.ES11.ClipPlaneName p, [CountAttribute(Count = 4)] Single* eqn) { throw new BindingsNotRewrittenException(); } + /// [requires: IMG_user_clip_plane] /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "IMG_user_clip_plane", Version = "", EntryPoint = "glClipPlanexIMG")] [CLSCompliant(false)] public static void ClipPlanex(OpenTK.Graphics.ES11.All p, [CountAttribute(Count = 4)] Int32[] eqn) { throw new BindingsNotRewrittenException(); } @@ -10114,6 +12593,7 @@ namespace OpenTK.Graphics.ES11 /// [requires: IMG_user_clip_plane] /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "IMG_user_clip_plane", Version = "", EntryPoint = "glClipPlanexIMG")] [CLSCompliant(false)] public static void ClipPlanex(OpenTK.Graphics.ES11.All p, [CountAttribute(Count = 4)] ref Int32 eqn) { throw new BindingsNotRewrittenException(); } @@ -10121,10 +12601,32 @@ namespace OpenTK.Graphics.ES11 /// [requires: IMG_user_clip_plane] /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "IMG_user_clip_plane", Version = "", EntryPoint = "glClipPlanexIMG")] [CLSCompliant(false)] public static unsafe void ClipPlanex(OpenTK.Graphics.ES11.All p, [CountAttribute(Count = 4)] Int32* eqn) { throw new BindingsNotRewrittenException(); } + /// [requires: IMG_user_clip_plane] + /// + /// [length: 4] + [AutoGenerated(Category = "IMG_user_clip_plane", Version = "", EntryPoint = "glClipPlanexIMG")] + [CLSCompliant(false)] + public static void ClipPlanex(OpenTK.Graphics.ES11.ClipPlaneName p, [CountAttribute(Count = 4)] Int32[] eqn) { throw new BindingsNotRewrittenException(); } + + /// [requires: IMG_user_clip_plane] + /// + /// [length: 4] + [AutoGenerated(Category = "IMG_user_clip_plane", Version = "", EntryPoint = "glClipPlanexIMG")] + [CLSCompliant(false)] + public static void ClipPlanex(OpenTK.Graphics.ES11.ClipPlaneName p, [CountAttribute(Count = 4)] ref Int32 eqn) { throw new BindingsNotRewrittenException(); } + + /// [requires: IMG_user_clip_plane] + /// + /// [length: 4] + [AutoGenerated(Category = "IMG_user_clip_plane", Version = "", EntryPoint = "glClipPlanexIMG")] + [CLSCompliant(false)] + public static unsafe void ClipPlanex(OpenTK.Graphics.ES11.ClipPlaneName p, [CountAttribute(Count = 4)] Int32* eqn) { throw new BindingsNotRewrittenException(); } + /// [requires: IMG_multisampled_render_to_texture] /// /// @@ -10132,6 +12634,7 @@ namespace OpenTK.Graphics.ES11 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleIMG")] [CLSCompliant(false)] public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All textarget, Int32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } @@ -10143,10 +12646,55 @@ namespace OpenTK.Graphics.ES11 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleIMG")] [CLSCompliant(false)] public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All textarget, UInt32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } + /// [requires: IMG_multisampled_render_to_texture] + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleIMG")] + [CLSCompliant(false)] + public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES11.FramebufferTarget target, OpenTK.Graphics.ES11.FramebufferAttachment attachment, OpenTK.Graphics.ES11.TextureTarget textarget, Int32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } + + /// [requires: IMG_multisampled_render_to_texture] + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleIMG")] + [CLSCompliant(false)] + public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES11.FramebufferTarget target, OpenTK.Graphics.ES11.FramebufferAttachment attachment, OpenTK.Graphics.ES11.TextureTarget textarget, UInt32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } + + /// [requires: IMG_multisampled_render_to_texture] + /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image + /// + /// + /// Specifies a binding to which the target of the allocation and must be Renderbuffer. + /// + /// + /// Specifies the number of samples to be used for the renderbuffer object's storage. + /// + /// + /// Specifies the internal format to use for the renderbuffer object's image. + /// + /// + /// Specifies the width of the renderbuffer, in pixels. + /// + /// + /// Specifies the height of the renderbuffer, in pixels. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glRenderbufferStorageMultisampleIMG")] + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES11.All target, Int32 samples, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + /// [requires: IMG_multisampled_render_to_texture] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image /// @@ -10166,7 +12714,1495 @@ namespace OpenTK.Graphics.ES11 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glRenderbufferStorageMultisampleIMG")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES11.All target, Int32 samples, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES11.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES11.InternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + + } + + public static partial class Khr + { + /// [requires: KHR_debug] + /// Specify a callback to receive debugging messages from the GL + /// + /// + /// The address of a callback function that will be called when a debug message is generated. + /// + /// + /// A user supplied pointer that will be passed on each invocation of callback. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallbackKHR")] + public static void DebugMessageCallback(DebugProcKhr callback, IntPtr userParam) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Specify a callback to receive debugging messages from the GL + /// + /// + /// The address of a callback function that will be called when a debug message is generated. + /// + /// + /// A user supplied pointer that will be passed on each invocation of callback. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallbackKHR")] + [CLSCompliant(false)] + public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[] userParam) + where T1 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Specify a callback to receive debugging messages from the GL + /// + /// + /// The address of a callback function that will be called when a debug message is generated. + /// + /// + /// A user supplied pointer that will be passed on each invocation of callback. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallbackKHR")] + [CLSCompliant(false)] + public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[,] userParam) + where T1 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Specify a callback to receive debugging messages from the GL + /// + /// + /// The address of a callback function that will be called when a debug message is generated. + /// + /// + /// A user supplied pointer that will be passed on each invocation of callback. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallbackKHR")] + [CLSCompliant(false)] + public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[,,] userParam) + where T1 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Specify a callback to receive debugging messages from the GL + /// + /// + /// The address of a callback function that will be called when a debug message is generated. + /// + /// + /// A user supplied pointer that will be passed on each invocation of callback. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallbackKHR")] + public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] ref T1 userParam) + where T1 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Control the reporting of debug messages in a debug context + /// + /// + /// The source of debug messages to enable or disable. + /// + /// + /// The type of debug messages to enable or disable. + /// + /// + /// The severity of debug messages to enable or disable. + /// + /// + /// The length of the array ids. + /// + /// + /// The address of an array of unsigned integers contianing the ids of the messages to enable or disable. + /// + /// + /// A Boolean flag determining whether the selected messages should be enabled or disabled. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] + public static void DebugMessageControl(OpenTK.Graphics.ES11.All source, OpenTK.Graphics.ES11.All type, OpenTK.Graphics.ES11.All severity, Int32 count, Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Control the reporting of debug messages in a debug context + /// + /// + /// The source of debug messages to enable or disable. + /// + /// + /// The type of debug messages to enable or disable. + /// + /// + /// The severity of debug messages to enable or disable. + /// + /// + /// The length of the array ids. + /// + /// + /// The address of an array of unsigned integers contianing the ids of the messages to enable or disable. + /// + /// + /// A Boolean flag determining whether the selected messages should be enabled or disabled. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] + public static void DebugMessageControl(OpenTK.Graphics.ES11.All source, OpenTK.Graphics.ES11.All type, OpenTK.Graphics.ES11.All severity, Int32 count, ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Control the reporting of debug messages in a debug context + /// + /// + /// The source of debug messages to enable or disable. + /// + /// + /// The type of debug messages to enable or disable. + /// + /// + /// The severity of debug messages to enable or disable. + /// + /// + /// The length of the array ids. + /// + /// + /// The address of an array of unsigned integers contianing the ids of the messages to enable or disable. + /// + /// + /// A Boolean flag determining whether the selected messages should be enabled or disabled. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES11.All source, OpenTK.Graphics.ES11.All type, OpenTK.Graphics.ES11.All severity, Int32 count, Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Control the reporting of debug messages in a debug context + /// + /// + /// The source of debug messages to enable or disable. + /// + /// + /// The type of debug messages to enable or disable. + /// + /// + /// The severity of debug messages to enable or disable. + /// + /// + /// The length of the array ids. + /// + /// + /// The address of an array of unsigned integers contianing the ids of the messages to enable or disable. + /// + /// + /// A Boolean flag determining whether the selected messages should be enabled or disabled. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] + public static void DebugMessageControl(OpenTK.Graphics.ES11.All source, OpenTK.Graphics.ES11.All type, OpenTK.Graphics.ES11.All severity, Int32 count, UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Control the reporting of debug messages in a debug context + /// + /// + /// The source of debug messages to enable or disable. + /// + /// + /// The type of debug messages to enable or disable. + /// + /// + /// The severity of debug messages to enable or disable. + /// + /// + /// The length of the array ids. + /// + /// + /// The address of an array of unsigned integers contianing the ids of the messages to enable or disable. + /// + /// + /// A Boolean flag determining whether the selected messages should be enabled or disabled. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] + public static void DebugMessageControl(OpenTK.Graphics.ES11.All source, OpenTK.Graphics.ES11.All type, OpenTK.Graphics.ES11.All severity, Int32 count, ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Control the reporting of debug messages in a debug context + /// + /// + /// The source of debug messages to enable or disable. + /// + /// + /// The type of debug messages to enable or disable. + /// + /// + /// The severity of debug messages to enable or disable. + /// + /// + /// The length of the array ids. + /// + /// + /// The address of an array of unsigned integers contianing the ids of the messages to enable or disable. + /// + /// + /// A Boolean flag determining whether the selected messages should be enabled or disabled. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES11.All source, OpenTK.Graphics.ES11.All type, OpenTK.Graphics.ES11.All severity, Int32 count, UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Control the reporting of debug messages in a debug context + /// + /// + /// The source of debug messages to enable or disable. + /// + /// + /// The type of debug messages to enable or disable. + /// + /// + /// The severity of debug messages to enable or disable. + /// + /// + /// The length of the array ids. + /// + /// + /// The address of an array of unsigned integers contianing the ids of the messages to enable or disable. + /// + /// + /// A Boolean flag determining whether the selected messages should be enabled or disabled. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] + public static void DebugMessageControl(OpenTK.Graphics.ES11.DebugSource source, OpenTK.Graphics.ES11.DebugType type, OpenTK.Graphics.ES11.DebugSeverity severity, Int32 count, Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Control the reporting of debug messages in a debug context + /// + /// + /// The source of debug messages to enable or disable. + /// + /// + /// The type of debug messages to enable or disable. + /// + /// + /// The severity of debug messages to enable or disable. + /// + /// + /// The length of the array ids. + /// + /// + /// The address of an array of unsigned integers contianing the ids of the messages to enable or disable. + /// + /// + /// A Boolean flag determining whether the selected messages should be enabled or disabled. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] + public static void DebugMessageControl(OpenTK.Graphics.ES11.DebugSource source, OpenTK.Graphics.ES11.DebugType type, OpenTK.Graphics.ES11.DebugSeverity severity, Int32 count, ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Control the reporting of debug messages in a debug context + /// + /// + /// The source of debug messages to enable or disable. + /// + /// + /// The type of debug messages to enable or disable. + /// + /// + /// The severity of debug messages to enable or disable. + /// + /// + /// The length of the array ids. + /// + /// + /// The address of an array of unsigned integers contianing the ids of the messages to enable or disable. + /// + /// + /// A Boolean flag determining whether the selected messages should be enabled or disabled. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES11.DebugSource source, OpenTK.Graphics.ES11.DebugType type, OpenTK.Graphics.ES11.DebugSeverity severity, Int32 count, Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Control the reporting of debug messages in a debug context + /// + /// + /// The source of debug messages to enable or disable. + /// + /// + /// The type of debug messages to enable or disable. + /// + /// + /// The severity of debug messages to enable or disable. + /// + /// + /// The length of the array ids. + /// + /// + /// The address of an array of unsigned integers contianing the ids of the messages to enable or disable. + /// + /// + /// A Boolean flag determining whether the selected messages should be enabled or disabled. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] + public static void DebugMessageControl(OpenTK.Graphics.ES11.DebugSource source, OpenTK.Graphics.ES11.DebugType type, OpenTK.Graphics.ES11.DebugSeverity severity, Int32 count, UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Control the reporting of debug messages in a debug context + /// + /// + /// The source of debug messages to enable or disable. + /// + /// + /// The type of debug messages to enable or disable. + /// + /// + /// The severity of debug messages to enable or disable. + /// + /// + /// The length of the array ids. + /// + /// + /// The address of an array of unsigned integers contianing the ids of the messages to enable or disable. + /// + /// + /// A Boolean flag determining whether the selected messages should be enabled or disabled. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] + public static void DebugMessageControl(OpenTK.Graphics.ES11.DebugSource source, OpenTK.Graphics.ES11.DebugType type, OpenTK.Graphics.ES11.DebugSeverity severity, Int32 count, ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Control the reporting of debug messages in a debug context + /// + /// + /// The source of debug messages to enable or disable. + /// + /// + /// The type of debug messages to enable or disable. + /// + /// + /// The severity of debug messages to enable or disable. + /// + /// + /// The length of the array ids. + /// + /// + /// The address of an array of unsigned integers contianing the ids of the messages to enable or disable. + /// + /// + /// A Boolean flag determining whether the selected messages should be enabled or disabled. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES11.DebugSource source, OpenTK.Graphics.ES11.DebugType type, OpenTK.Graphics.ES11.DebugSeverity severity, Int32 count, UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Inject an application-supplied message into the debug message queue + /// + /// + /// The source of the debug message to insert. + /// + /// + /// The type of the debug message insert. + /// + /// + /// The user-supplied identifier of the message to insert. + /// + /// + /// The severity of the debug messages to insert. + /// + /// + /// The length string contained in the character array whose address is given by message. + /// + /// + /// The address of a character array containing the message to insert. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")] + [CLSCompliant(false)] + public static void DebugMessageInsert(OpenTK.Graphics.ES11.All source, OpenTK.Graphics.ES11.All type, Int32 id, OpenTK.Graphics.ES11.All severity, Int32 length, String buf) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Inject an application-supplied message into the debug message queue + /// + /// + /// The source of the debug message to insert. + /// + /// + /// The type of the debug message insert. + /// + /// + /// The user-supplied identifier of the message to insert. + /// + /// + /// The severity of the debug messages to insert. + /// + /// + /// The length string contained in the character array whose address is given by message. + /// + /// + /// The address of a character array containing the message to insert. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")] + [CLSCompliant(false)] + public static void DebugMessageInsert(OpenTK.Graphics.ES11.All source, OpenTK.Graphics.ES11.All type, UInt32 id, OpenTK.Graphics.ES11.All severity, Int32 length, String buf) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Inject an application-supplied message into the debug message queue + /// + /// + /// The source of the debug message to insert. + /// + /// + /// The type of the debug message insert. + /// + /// + /// The user-supplied identifier of the message to insert. + /// + /// + /// The severity of the debug messages to insert. + /// + /// + /// The length string contained in the character array whose address is given by message. + /// + /// + /// The address of a character array containing the message to insert. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")] + [CLSCompliant(false)] + public static void DebugMessageInsert(OpenTK.Graphics.ES11.DebugSource source, OpenTK.Graphics.ES11.DebugType type, Int32 id, OpenTK.Graphics.ES11.DebugSeverity severity, Int32 length, String buf) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Inject an application-supplied message into the debug message queue + /// + /// + /// The source of the debug message to insert. + /// + /// + /// The type of the debug message insert. + /// + /// + /// The user-supplied identifier of the message to insert. + /// + /// + /// The severity of the debug messages to insert. + /// + /// + /// The length string contained in the character array whose address is given by message. + /// + /// + /// The address of a character array containing the message to insert. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")] + [CLSCompliant(false)] + public static void DebugMessageInsert(OpenTK.Graphics.ES11.DebugSource source, OpenTK.Graphics.ES11.DebugType type, UInt32 id, OpenTK.Graphics.ES11.DebugSeverity severity, Int32 length, String buf) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Retrieve messages from the debug message log + /// + /// + /// The number of debug messages to retrieve from the log. + /// + /// + /// The size of the buffer whose address is given by messageLog. + /// + /// [length: count] + /// The address of an array of variables to receive the sources of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the types of the retrieved messages. + /// + /// [length: count] + /// The address of an array of unsigned integers to receive the ids of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the severites of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the lengths of the received messages. + /// + /// [length: bufSize] + /// The address of an array of characters that will receive the messages. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Retrieve messages from the debug message log + /// + /// + /// The number of debug messages to retrieve from the log. + /// + /// + /// The size of the buffer whose address is given by messageLog. + /// + /// [length: count] + /// The address of an array of variables to receive the sources of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the types of the retrieved messages. + /// + /// [length: count] + /// The address of an array of unsigned integers to receive the ids of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the severites of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the lengths of the received messages. + /// + /// [length: bufSize] + /// The address of an array of characters that will receive the messages. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES11.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES11.All types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES11.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Retrieve messages from the debug message log + /// + /// + /// The number of debug messages to retrieve from the log. + /// + /// + /// The size of the buffer whose address is given by messageLog. + /// + /// [length: count] + /// The address of an array of variables to receive the sources of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the types of the retrieved messages. + /// + /// [length: count] + /// The address of an array of unsigned integers to receive the ids of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the severites of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the lengths of the received messages. + /// + /// [length: bufSize] + /// The address of an array of characters that will receive the messages. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.All* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Retrieve messages from the debug message log + /// + /// + /// The number of debug messages to retrieve from the log. + /// + /// + /// The size of the buffer whose address is given by messageLog. + /// + /// [length: count] + /// The address of an array of variables to receive the sources of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the types of the retrieved messages. + /// + /// [length: count] + /// The address of an array of unsigned integers to receive the ids of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the severites of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the lengths of the received messages. + /// + /// [length: bufSize] + /// The address of an array of characters that will receive the messages. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.DebugSource[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Retrieve messages from the debug message log + /// + /// + /// The number of debug messages to retrieve from the log. + /// + /// + /// The size of the buffer whose address is given by messageLog. + /// + /// [length: count] + /// The address of an array of variables to receive the sources of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the types of the retrieved messages. + /// + /// [length: count] + /// The address of an array of unsigned integers to receive the ids of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the severites of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the lengths of the received messages. + /// + /// [length: bufSize] + /// The address of an array of characters that will receive the messages. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES11.DebugSource sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES11.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES11.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Retrieve messages from the debug message log + /// + /// + /// The number of debug messages to retrieve from the log. + /// + /// + /// The size of the buffer whose address is given by messageLog. + /// + /// [length: count] + /// The address of an array of variables to receive the sources of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the types of the retrieved messages. + /// + /// [length: count] + /// The address of an array of unsigned integers to receive the ids of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the severites of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the lengths of the received messages. + /// + /// [length: bufSize] + /// The address of an array of characters that will receive the messages. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.DebugSource* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Retrieve messages from the debug message log + /// + /// + /// The number of debug messages to retrieve from the log. + /// + /// + /// The size of the buffer whose address is given by messageLog. + /// + /// [length: count] + /// The address of an array of variables to receive the sources of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the types of the retrieved messages. + /// + /// [length: count] + /// The address of an array of unsigned integers to receive the ids of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the severites of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the lengths of the received messages. + /// + /// [length: bufSize] + /// The address of an array of characters that will receive the messages. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Retrieve messages from the debug message log + /// + /// + /// The number of debug messages to retrieve from the log. + /// + /// + /// The size of the buffer whose address is given by messageLog. + /// + /// [length: count] + /// The address of an array of variables to receive the sources of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the types of the retrieved messages. + /// + /// [length: count] + /// The address of an array of unsigned integers to receive the ids of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the severites of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the lengths of the received messages. + /// + /// [length: bufSize] + /// The address of an array of characters that will receive the messages. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES11.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES11.All types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES11.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Retrieve messages from the debug message log + /// + /// + /// The number of debug messages to retrieve from the log. + /// + /// + /// The size of the buffer whose address is given by messageLog. + /// + /// [length: count] + /// The address of an array of variables to receive the sources of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the types of the retrieved messages. + /// + /// [length: count] + /// The address of an array of unsigned integers to receive the ids of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the severites of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the lengths of the received messages. + /// + /// [length: bufSize] + /// The address of an array of characters that will receive the messages. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.All* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Retrieve messages from the debug message log + /// + /// + /// The number of debug messages to retrieve from the log. + /// + /// + /// The size of the buffer whose address is given by messageLog. + /// + /// [length: count] + /// The address of an array of variables to receive the sources of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the types of the retrieved messages. + /// + /// [length: count] + /// The address of an array of unsigned integers to receive the ids of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the severites of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the lengths of the received messages. + /// + /// [length: bufSize] + /// The address of an array of characters that will receive the messages. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.DebugSource[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Retrieve messages from the debug message log + /// + /// + /// The number of debug messages to retrieve from the log. + /// + /// + /// The size of the buffer whose address is given by messageLog. + /// + /// [length: count] + /// The address of an array of variables to receive the sources of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the types of the retrieved messages. + /// + /// [length: count] + /// The address of an array of unsigned integers to receive the ids of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the severites of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the lengths of the received messages. + /// + /// [length: bufSize] + /// The address of an array of characters that will receive the messages. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES11.DebugSource sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES11.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES11.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Retrieve messages from the debug message log + /// + /// + /// The number of debug messages to retrieve from the log. + /// + /// + /// The size of the buffer whose address is given by messageLog. + /// + /// [length: count] + /// The address of an array of variables to receive the sources of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the types of the retrieved messages. + /// + /// [length: count] + /// The address of an array of unsigned integers to receive the ids of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the severites of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the lengths of the received messages. + /// + /// [length: bufSize] + /// The address of an array of characters that will receive the messages. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.DebugSource* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES11.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Retrieve the label of a named object identified within a namespace + /// + /// + /// The namespace from which the name of the object is allocated. + /// + /// + /// The name of the object whose label to retrieve. + /// + /// + /// The length of the buffer whose address is in label. + /// + /// + /// The address of a variable to receive the length of the object label. + /// + /// [length: bufSize] + /// The address of a string that will receive the object label. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] + public static void GetObjectLabel(OpenTK.Graphics.ES11.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Retrieve the label of a named object identified within a namespace + /// + /// + /// The namespace from which the name of the object is allocated. + /// + /// + /// The name of the object whose label to retrieve. + /// + /// + /// The length of the buffer whose address is in label. + /// + /// + /// The address of a variable to receive the length of the object label. + /// + /// [length: bufSize] + /// The address of a string that will receive the object label. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] + public static void GetObjectLabel(OpenTK.Graphics.ES11.All identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Retrieve the label of a named object identified within a namespace + /// + /// + /// The namespace from which the name of the object is allocated. + /// + /// + /// The name of the object whose label to retrieve. + /// + /// + /// The length of the buffer whose address is in label. + /// + /// + /// The address of a variable to receive the length of the object label. + /// + /// [length: bufSize] + /// The address of a string that will receive the object label. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES11.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Retrieve the label of a named object identified within a namespace + /// + /// + /// The namespace from which the name of the object is allocated. + /// + /// + /// The name of the object whose label to retrieve. + /// + /// + /// The length of the buffer whose address is in label. + /// + /// + /// The address of a variable to receive the length of the object label. + /// + /// [length: bufSize] + /// The address of a string that will receive the object label. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] + public static void GetObjectLabel(OpenTK.Graphics.ES11.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Retrieve the label of a named object identified within a namespace + /// + /// + /// The namespace from which the name of the object is allocated. + /// + /// + /// The name of the object whose label to retrieve. + /// + /// + /// The length of the buffer whose address is in label. + /// + /// + /// The address of a variable to receive the length of the object label. + /// + /// [length: bufSize] + /// The address of a string that will receive the object label. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] + public static void GetObjectLabel(OpenTK.Graphics.ES11.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Retrieve the label of a named object identified within a namespace + /// + /// + /// The namespace from which the name of the object is allocated. + /// + /// + /// The name of the object whose label to retrieve. + /// + /// + /// The length of the buffer whose address is in label. + /// + /// + /// The address of a variable to receive the length of the object label. + /// + /// [length: bufSize] + /// The address of a string that will receive the object label. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] + [CLSCompliant(false)] + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES11.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Retrieve the label of a sync object identified by a pointer + /// + /// + /// The name of the sync object whose label to retrieve. + /// + /// + /// The length of the buffer whose address is in label. + /// + /// [length: 1] + /// The address of a variable to receive the length of the object label. + /// + /// [length: bufSize] + /// The address of a string that will receive the object label. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Retrieve the label of a sync object identified by a pointer + /// + /// + /// The name of the sync object whose label to retrieve. + /// + /// + /// The length of the buffer whose address is in label. + /// + /// [length: 1] + /// The address of a variable to receive the length of the object label. + /// + /// [length: bufSize] + /// The address of a string that will receive the object label. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] + public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Retrieve the label of a sync object identified by a pointer + /// + /// + /// The name of the sync object whose label to retrieve. + /// + /// + /// The length of the buffer whose address is in label. + /// + /// [length: 1] + /// The address of a variable to receive the length of the object label. + /// + /// [length: bufSize] + /// The address of a string that will receive the object label. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] + public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) + where T0 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Retrieve the label of a sync object identified by a pointer + /// + /// + /// The name of the sync object whose label to retrieve. + /// + /// + /// The length of the buffer whose address is in label. + /// + /// [length: 1] + /// The address of a variable to receive the length of the object label. + /// + /// [length: bufSize] + /// The address of a string that will receive the object label. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] + public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) + where T0 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Retrieve the label of a sync object identified by a pointer + /// + /// + /// The name of the sync object whose label to retrieve. + /// + /// + /// The length of the buffer whose address is in label. + /// + /// [length: 1] + /// The address of a variable to receive the length of the object label. + /// + /// [length: bufSize] + /// The address of a string that will receive the object label. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] + public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) + where T0 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Retrieve the label of a sync object identified by a pointer + /// + /// + /// The name of the sync object whose label to retrieve. + /// + /// + /// The length of the buffer whose address is in label. + /// + /// [length: 1] + /// The address of a variable to receive the length of the object label. + /// + /// [length: bufSize] + /// The address of a string that will receive the object label. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] + public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) + where T0 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Retrieve the label of a sync object identified by a pointer + /// + /// + /// The name of the sync object whose label to retrieve. + /// + /// + /// The length of the buffer whose address is in label. + /// + /// [length: 1] + /// The address of a variable to receive the length of the object label. + /// + /// [length: bufSize] + /// The address of a string that will receive the object label. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] + public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) + where T0 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Retrieve the label of a sync object identified by a pointer + /// + /// + /// The name of the sync object whose label to retrieve. + /// + /// + /// The length of the buffer whose address is in label. + /// + /// [length: 1] + /// The address of a variable to receive the length of the object label. + /// + /// [length: bufSize] + /// The address of a string that will receive the object label. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] + public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) + where T0 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Retrieve the label of a sync object identified by a pointer + /// + /// + /// The name of the sync object whose label to retrieve. + /// + /// + /// The length of the buffer whose address is in label. + /// + /// [length: 1] + /// The address of a variable to receive the length of the object label. + /// + /// [length: bufSize] + /// The address of a string that will receive the object label. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] + public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) + where T0 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Retrieve the label of a sync object identified by a pointer + /// + /// + /// The name of the sync object whose label to retrieve. + /// + /// + /// The length of the buffer whose address is in label. + /// + /// [length: 1] + /// The address of a variable to receive the length of the object label. + /// + /// [length: bufSize] + /// The address of a string that will receive the object label. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] + [CLSCompliant(false)] + public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) + where T0 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointervKHR")] + public static void GetPointer(OpenTK.Graphics.ES11.All pname, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointervKHR")] + [CLSCompliant(false)] + public static void GetPointer(OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute] T1[] @params) + where T1 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointervKHR")] + [CLSCompliant(false)] + public static void GetPointer(OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute] T1[,] @params) + where T1 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointervKHR")] + [CLSCompliant(false)] + public static void GetPointer(OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute] T1[,,] @params) + where T1 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointervKHR")] + public static void GetPointer(OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute] ref T1 @params) + where T1 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Label a named object identified within a namespace + /// + /// + /// The namespace from which the name of the object is allocated. + /// + /// + /// The name of the object to label. + /// + /// + /// The length of the label to be used for the object. + /// + /// + /// The address of a string containing the label to assign to the object. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] + [CLSCompliant(false)] + public static void ObjectLabel(OpenTK.Graphics.ES11.All identifier, Int32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Label a named object identified within a namespace + /// + /// + /// The namespace from which the name of the object is allocated. + /// + /// + /// The name of the object to label. + /// + /// + /// The length of the label to be used for the object. + /// + /// + /// The address of a string containing the label to assign to the object. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] + [CLSCompliant(false)] + public static void ObjectLabel(OpenTK.Graphics.ES11.All identifier, UInt32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Label a named object identified within a namespace + /// + /// + /// The namespace from which the name of the object is allocated. + /// + /// + /// The name of the object to label. + /// + /// + /// The length of the label to be used for the object. + /// + /// + /// The address of a string containing the label to assign to the object. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] + [CLSCompliant(false)] + public static void ObjectLabel(OpenTK.Graphics.ES11.ObjectIdentifier identifier, Int32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Label a named object identified within a namespace + /// + /// + /// The namespace from which the name of the object is allocated. + /// + /// + /// The name of the object to label. + /// + /// + /// The length of the label to be used for the object. + /// + /// + /// The address of a string containing the label to assign to the object. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] + [CLSCompliant(false)] + public static void ObjectLabel(OpenTK.Graphics.ES11.ObjectIdentifier identifier, UInt32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Label a a sync object identified by a pointer + /// + /// + /// A pointer identifying a sync object. + /// + /// + /// The length of the label to be used for the object. + /// + /// + /// The address of a string containing the label to assign to the object. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabelKHR")] + public static void ObjectPtrLabel(IntPtr ptr, Int32 length, String label) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Label a a sync object identified by a pointer + /// + /// + /// A pointer identifying a sync object. + /// + /// + /// The length of the label to be used for the object. + /// + /// + /// The address of a string containing the label to assign to the object. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabelKHR")] + [CLSCompliant(false)] + public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 length, String label) + where T0 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Label a a sync object identified by a pointer + /// + /// + /// A pointer identifying a sync object. + /// + /// + /// The length of the label to be used for the object. + /// + /// + /// The address of a string containing the label to assign to the object. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabelKHR")] + [CLSCompliant(false)] + public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 length, String label) + where T0 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Label a a sync object identified by a pointer + /// + /// + /// A pointer identifying a sync object. + /// + /// + /// The length of the label to be used for the object. + /// + /// + /// The address of a string containing the label to assign to the object. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabelKHR")] + [CLSCompliant(false)] + public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 length, String label) + where T0 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Label a a sync object identified by a pointer + /// + /// + /// A pointer identifying a sync object. + /// + /// + /// The length of the label to be used for the object. + /// + /// + /// The address of a string containing the label to assign to the object. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabelKHR")] + public static void ObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 length, String label) + where T0 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Pop the active debug group + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPopDebugGroupKHR")] + public static void PopDebugGroup() { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Push a named debug group into the command stream + /// + /// + /// The source of the debug message. + /// + /// + /// The identifier of the message. + /// + /// + /// The length of the message to be sent to the debug output stream. + /// + /// + /// The a string containing the message to be sent to the debug output stream. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroupKHR")] + [CLSCompliant(false)] + public static void PushDebugGroup(OpenTK.Graphics.ES11.All source, Int32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Push a named debug group into the command stream + /// + /// + /// The source of the debug message. + /// + /// + /// The identifier of the message. + /// + /// + /// The length of the message to be sent to the debug output stream. + /// + /// + /// The a string containing the message to be sent to the debug output stream. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroupKHR")] + [CLSCompliant(false)] + public static void PushDebugGroup(OpenTK.Graphics.ES11.All source, UInt32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Push a named debug group into the command stream + /// + /// + /// The source of the debug message. + /// + /// + /// The identifier of the message. + /// + /// + /// The length of the message to be sent to the debug output stream. + /// + /// + /// The a string containing the message to be sent to the debug output stream. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroupKHR")] + [CLSCompliant(false)] + public static void PushDebugGroup(OpenTK.Graphics.ES11.DebugSource source, Int32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Push a named debug group into the command stream + /// + /// + /// The source of the debug message. + /// + /// + /// The identifier of the message. + /// + /// + /// The length of the message to be sent to the debug output stream. + /// + /// + /// The a string containing the message to be sent to the debug output stream. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroupKHR")] + [CLSCompliant(false)] + public static void PushDebugGroup(OpenTK.Graphics.ES11.DebugSource source, UInt32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } } @@ -10384,9 +14420,16 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glAlphaFuncxOES")] public static void AlphaFuncx(OpenTK.Graphics.ES11.All func, Int32 @ref) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] + /// + /// + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glAlphaFuncxOES")] + public static void AlphaFuncx(OpenTK.Graphics.ES11.AlphaFunction func, Int32 @ref) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_framebuffer_object] /// Bind a named framebuffer object /// @@ -10396,6 +14439,7 @@ namespace OpenTK.Graphics.ES11 /// /// Specifies the name of a framebuffer object. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glBindFramebufferOES")] [CLSCompliant(false)] public static void BindFramebuffer(OpenTK.Graphics.ES11.All target, Int32 framebuffer) { throw new BindingsNotRewrittenException(); } @@ -10409,10 +14453,37 @@ namespace OpenTK.Graphics.ES11 /// /// Specifies the name of a framebuffer object. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glBindFramebufferOES")] [CLSCompliant(false)] public static void BindFramebuffer(OpenTK.Graphics.ES11.All target, UInt32 framebuffer) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_framebuffer_object] + /// Bind a named framebuffer object + /// + /// + /// Specifies the target to which the framebuffer object is bound. The symbolic constant must be Framebuffer. + /// + /// + /// Specifies the name of a framebuffer object. + /// + [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glBindFramebufferOES")] + [CLSCompliant(false)] + public static void BindFramebuffer(OpenTK.Graphics.ES11.FramebufferTarget target, Int32 framebuffer) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_framebuffer_object] + /// Bind a named framebuffer object + /// + /// + /// Specifies the target to which the framebuffer object is bound. The symbolic constant must be Framebuffer. + /// + /// + /// Specifies the name of a framebuffer object. + /// + [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glBindFramebufferOES")] + [CLSCompliant(false)] + public static void BindFramebuffer(OpenTK.Graphics.ES11.FramebufferTarget target, UInt32 framebuffer) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_framebuffer_object] /// Bind a named renderbuffer object /// @@ -10422,6 +14493,7 @@ namespace OpenTK.Graphics.ES11 /// /// Specifies the name of a renderbuffer object. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glBindRenderbufferOES")] [CLSCompliant(false)] public static void BindRenderbuffer(OpenTK.Graphics.ES11.All target, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } @@ -10435,10 +14507,37 @@ namespace OpenTK.Graphics.ES11 /// /// Specifies the name of a renderbuffer object. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glBindRenderbufferOES")] [CLSCompliant(false)] public static void BindRenderbuffer(OpenTK.Graphics.ES11.All target, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_framebuffer_object] + /// Bind a named renderbuffer object + /// + /// + /// Specifies the target to which the renderbuffer object is bound. The symbolic constant must be Renderbuffer. + /// + /// + /// Specifies the name of a renderbuffer object. + /// + [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glBindRenderbufferOES")] + [CLSCompliant(false)] + public static void BindRenderbuffer(OpenTK.Graphics.ES11.RenderbufferTarget target, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_framebuffer_object] + /// Bind a named renderbuffer object + /// + /// + /// Specifies the target to which the renderbuffer object is bound. The symbolic constant must be Renderbuffer. + /// + /// + /// Specifies the name of a renderbuffer object. + /// + [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glBindRenderbufferOES")] + [CLSCompliant(false)] + public static void BindRenderbuffer(OpenTK.Graphics.ES11.RenderbufferTarget target, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_vertex_array_object] /// Bind a vertex array object /// @@ -10509,9 +14608,32 @@ namespace OpenTK.Graphics.ES11 /// /// specifies how source and destination colors are combined. It must be FuncAdd, FuncSubtract, or FuncReverseSubtract. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_blend_subtract", Version = "", EntryPoint = "glBlendEquationOES")] public static void BlendEquation(OpenTK.Graphics.ES11.All mode) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_blend_subtract] + /// Specify the equation used for both the RGB blend equation and the Alpha blend equation + /// + /// + /// specifies how source and destination colors are combined. It must be FuncAdd, FuncSubtract, or FuncReverseSubtract. + /// + [AutoGenerated(Category = "OES_blend_subtract", Version = "", EntryPoint = "glBlendEquationOES")] + public static void BlendEquation(OpenTK.Graphics.ES11.BlendEquationModeExt mode) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_blend_equation_separate] + /// Set the RGB blend equation and the alpha blend equation separately + /// + /// + /// specifies the RGB blend equation, how the red, green, and blue components of the source and destination colors are combined. It must be FuncAdd, FuncSubtract, or FuncReverseSubtract. + /// + /// + /// specifies the alpha blend equation, how the alpha component of the source and destination colors are combined. It must be FuncAdd, FuncSubtract, or FuncReverseSubtract. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "OES_blend_equation_separate", Version = "", EntryPoint = "glBlendEquationSeparateOES")] + public static void BlendEquationSeparate(OpenTK.Graphics.ES11.All modeRGB, OpenTK.Graphics.ES11.All modeAlpha) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_blend_equation_separate] /// Set the RGB blend equation and the alpha blend equation separately /// @@ -10522,7 +14644,26 @@ namespace OpenTK.Graphics.ES11 /// specifies the alpha blend equation, how the alpha component of the source and destination colors are combined. It must be FuncAdd, FuncSubtract, or FuncReverseSubtract. /// [AutoGenerated(Category = "OES_blend_equation_separate", Version = "", EntryPoint = "glBlendEquationSeparateOES")] - public static void BlendEquationSeparate(OpenTK.Graphics.ES11.All modeRGB, OpenTK.Graphics.ES11.All modeAlpha) { throw new BindingsNotRewrittenException(); } + public static void BlendEquationSeparate(OpenTK.Graphics.ES11.BlendEquationModeExt modeRGB, OpenTK.Graphics.ES11.BlendEquationModeExt modeAlpha) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_blend_func_separate] + /// Specify pixel arithmetic for RGB and alpha components separately + /// + /// + /// Specifies how the red, green, and blue blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha, ConstantColor, OneMinusConstantColor, ConstantAlpha, OneMinusConstantAlpha, and SrcAlphaSaturate. The initial value is One. + /// + /// + /// Specifies how the red, green, and blue 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. + /// + /// + /// Specified how the alpha source blending factor is computed. The same symbolic constants are accepted as for srcRGB. The initial value is One. + /// + /// + /// Specified how the alpha destination blending factor is computed. The same symbolic constants are accepted as for dstRGB. The initial value is Zero. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "OES_blend_func_separate", Version = "", EntryPoint = "glBlendFuncSeparateOES")] + public static void BlendFuncSeparate(OpenTK.Graphics.ES11.All srcRGB, OpenTK.Graphics.ES11.All dstRGB, OpenTK.Graphics.ES11.All srcAlpha, OpenTK.Graphics.ES11.All dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_blend_func_separate] /// Specify pixel arithmetic for RGB and alpha components separately @@ -10540,7 +14681,17 @@ namespace OpenTK.Graphics.ES11 /// Specified how the alpha destination blending factor is computed. The same symbolic constants are accepted as for dstRGB. The initial value is Zero. /// [AutoGenerated(Category = "OES_blend_func_separate", Version = "", EntryPoint = "glBlendFuncSeparateOES")] - public static void BlendFuncSeparate(OpenTK.Graphics.ES11.All srcRGB, OpenTK.Graphics.ES11.All dstRGB, OpenTK.Graphics.ES11.All srcAlpha, OpenTK.Graphics.ES11.All dstAlpha) { throw new BindingsNotRewrittenException(); } + public static void BlendFuncSeparate(OpenTK.Graphics.ES11.BlendingFactor srcRGB, OpenTK.Graphics.ES11.BlendingFactor dstRGB, OpenTK.Graphics.ES11.BlendingFactor srcAlpha, OpenTK.Graphics.ES11.BlendingFactor dstAlpha) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_framebuffer_object] + /// Return the framebuffer completeness status of a framebuffer object + /// + /// + /// Specifies the target framebuffer object. The symbolic constant must be Framebuffer. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glCheckFramebufferStatusOES")] + public static OpenTK.Graphics.ES11.FramebufferStatus CheckFramebufferStatus(OpenTK.Graphics.ES11.All target) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Return the framebuffer completeness status of a framebuffer object @@ -10549,7 +14700,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the target framebuffer object. The symbolic constant must be Framebuffer. /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glCheckFramebufferStatusOES")] - public static OpenTK.Graphics.ES11.All CheckFramebufferStatus(OpenTK.Graphics.ES11.All target) { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.ES11.FramebufferStatus CheckFramebufferStatus(OpenTK.Graphics.ES11.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -10590,6 +14741,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 4] /// Specifies the address of an array of four double-precision floating-point values. These values are interpreted as a plane equation. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glClipPlanefOES")] [CLSCompliant(false)] public static void ClipPlane(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] Single[] equation) { throw new BindingsNotRewrittenException(); } @@ -10603,6 +14755,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 4] /// Specifies the address of an array of four double-precision floating-point values. These values are interpreted as a plane equation. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glClipPlanefOES")] [CLSCompliant(false)] public static void ClipPlane(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] ref Single equation) { throw new BindingsNotRewrittenException(); } @@ -10616,13 +14769,54 @@ namespace OpenTK.Graphics.ES11 /// [length: 4] /// Specifies the address of an array of four double-precision floating-point values. These values are interpreted as a plane equation. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glClipPlanefOES")] [CLSCompliant(false)] public static unsafe void ClipPlane(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] Single* equation) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_single_precision] + /// Specify a plane against which all geometry is clipped + /// + /// + /// Specifies which clipping plane is being positioned. Symbolic names of the form ClipPlanei, where i is an integer between 0 and MaxClipPlanes - 1, are accepted. + /// + /// [length: 4] + /// Specifies the address of an array of four double-precision floating-point values. These values are interpreted as a plane equation. + /// + [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glClipPlanefOES")] + [CLSCompliant(false)] + public static void ClipPlane(OpenTK.Graphics.ES11.ClipPlaneName plane, [CountAttribute(Count = 4)] Single[] equation) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_single_precision] + /// Specify a plane against which all geometry is clipped + /// + /// + /// Specifies which clipping plane is being positioned. Symbolic names of the form ClipPlanei, where i is an integer between 0 and MaxClipPlanes - 1, are accepted. + /// + /// [length: 4] + /// Specifies the address of an array of four double-precision floating-point values. These values are interpreted as a plane equation. + /// + [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glClipPlanefOES")] + [CLSCompliant(false)] + public static void ClipPlane(OpenTK.Graphics.ES11.ClipPlaneName plane, [CountAttribute(Count = 4)] ref Single equation) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_single_precision] + /// Specify a plane against which all geometry is clipped + /// + /// + /// Specifies which clipping plane is being positioned. Symbolic names of the form ClipPlanei, where i is an integer between 0 and MaxClipPlanes - 1, are accepted. + /// + /// [length: 4] + /// Specifies the address of an array of four double-precision floating-point values. These values are interpreted as a plane equation. + /// + [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glClipPlanefOES")] + [CLSCompliant(false)] + public static unsafe void ClipPlane(OpenTK.Graphics.ES11.ClipPlaneName plane, [CountAttribute(Count = 4)] Single* equation) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClipPlanexOES")] [CLSCompliant(false)] public static void ClipPlanex(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] Int32[] equation) { throw new BindingsNotRewrittenException(); } @@ -10630,6 +14824,7 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClipPlanexOES")] [CLSCompliant(false)] public static void ClipPlanex(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] ref Int32 equation) { throw new BindingsNotRewrittenException(); } @@ -10637,10 +14832,32 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClipPlanexOES")] [CLSCompliant(false)] public static unsafe void ClipPlanex(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] Int32* equation) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] + /// + /// [length: 4] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClipPlanexOES")] + [CLSCompliant(false)] + public static void ClipPlanex(OpenTK.Graphics.ES11.ClipPlaneName plane, [CountAttribute(Count = 4)] Int32[] equation) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point] + /// + /// [length: 4] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClipPlanexOES")] + [CLSCompliant(false)] + public static void ClipPlanex(OpenTK.Graphics.ES11.ClipPlaneName plane, [CountAttribute(Count = 4)] ref Int32 equation) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point] + /// + /// [length: 4] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClipPlanexOES")] + [CLSCompliant(false)] + public static unsafe void ClipPlanex(OpenTK.Graphics.ES11.ClipPlaneName plane, [CountAttribute(Count = 4)] Int32* equation) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] /// /// @@ -10696,13 +14913,22 @@ namespace OpenTK.Graphics.ES11 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glConvolutionParameterxOES")] public static void ConvolutionParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] + /// + /// + /// + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glConvolutionParameterxOES")] + public static void ConvolutionParameterx(OpenTK.Graphics.ES11.ConvolutionTargetExt target, OpenTK.Graphics.ES11.ConvolutionParameterExt pname, Int32 param) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glConvolutionParameterxvOES")] [CLSCompliant(false)] public static void ConvolutionParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -10711,10 +14937,27 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glConvolutionParameterxvOES")] [CLSCompliant(false)] public static unsafe void ConvolutionParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glConvolutionParameterxvOES")] + [CLSCompliant(false)] + public static void ConvolutionParameterx(OpenTK.Graphics.ES11.ConvolutionTargetExt target, OpenTK.Graphics.ES11.ConvolutionParameterExt pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glConvolutionParameterxvOES")] + [CLSCompliant(false)] + public static unsafe void ConvolutionParameterx(OpenTK.Graphics.ES11.ConvolutionTargetExt target, OpenTK.Graphics.ES11.ConvolutionParameterExt pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_matrix_palette] /// [AutoGenerated(Category = "OES_matrix_palette", Version = "", EntryPoint = "glCurrentPaletteMatrixOES")] @@ -11221,12 +15464,20 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFogxOES")] public static void Fogx(OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] + /// + /// + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFogxOES")] + public static void Fogx(OpenTK.Graphics.ES11.FogPName pname, Int32 param) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFogxvOES")] [CLSCompliant(false)] public static void Fogx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } @@ -11234,10 +15485,25 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFogxvOES")] [CLSCompliant(false)] public static unsafe void Fogx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFogxvOES")] + [CLSCompliant(false)] + public static void Fogx(OpenTK.Graphics.ES11.FogPName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point] + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFogxvOES")] + [CLSCompliant(false)] + public static unsafe void Fogx(OpenTK.Graphics.ES11.FogPName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_framebuffer_object] /// Attach a renderbuffer object to a framebuffer object /// @@ -11253,6 +15519,7 @@ namespace OpenTK.Graphics.ES11 /// /// Specifies the renderbuffer object that is to be attached. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glFramebufferRenderbufferOES")] [CLSCompliant(false)] public static void FramebufferRenderbuffer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All renderbuffertarget, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } @@ -11272,10 +15539,49 @@ namespace OpenTK.Graphics.ES11 /// /// Specifies the renderbuffer object that is to be attached. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glFramebufferRenderbufferOES")] [CLSCompliant(false)] public static void FramebufferRenderbuffer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All renderbuffertarget, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_framebuffer_object] + /// Attach a renderbuffer object to a framebuffer object + /// + /// + /// Specifies the framebuffer target. The symbolic constant must be Framebuffer. + /// + /// + /// Specifies the attachment point to which renderbuffer should be attached. Must be one of the following symbolic constants: ColorAttachment0, DepthAttachment, or StencilAttachment. + /// + /// + /// Specifies the renderbuffer target. The symbolic constant must be Renderbuffer. + /// + /// + /// Specifies the renderbuffer object that is to be attached. + /// + [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glFramebufferRenderbufferOES")] + [CLSCompliant(false)] + public static void FramebufferRenderbuffer(OpenTK.Graphics.ES11.FramebufferTarget target, OpenTK.Graphics.ES11.FramebufferAttachment attachment, OpenTK.Graphics.ES11.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_framebuffer_object] + /// Attach a renderbuffer object to a framebuffer object + /// + /// + /// Specifies the framebuffer target. The symbolic constant must be Framebuffer. + /// + /// + /// Specifies the attachment point to which renderbuffer should be attached. Must be one of the following symbolic constants: ColorAttachment0, DepthAttachment, or StencilAttachment. + /// + /// + /// Specifies the renderbuffer target. The symbolic constant must be Renderbuffer. + /// + /// + /// Specifies the renderbuffer object that is to be attached. + /// + [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glFramebufferRenderbufferOES")] + [CLSCompliant(false)] + public static void FramebufferRenderbuffer(OpenTK.Graphics.ES11.FramebufferTarget target, OpenTK.Graphics.ES11.FramebufferAttachment attachment, OpenTK.Graphics.ES11.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_framebuffer_object] /// Attach a texture image to a framebuffer object /// @@ -11294,6 +15600,7 @@ namespace OpenTK.Graphics.ES11 /// /// Specifies the mipmap level of the texture image to be attached, which must be 0. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glFramebufferTexture2DOES")] [CLSCompliant(false)] public static void FramebufferTexture2D(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All textarget, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } @@ -11316,10 +15623,55 @@ namespace OpenTK.Graphics.ES11 /// /// Specifies the mipmap level of the texture image to be attached, which must be 0. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glFramebufferTexture2DOES")] [CLSCompliant(false)] public static void FramebufferTexture2D(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All textarget, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_framebuffer_object] + /// Attach a texture image to a framebuffer object + /// + /// + /// Specifies the framebuffer target. The symbolic constant must be Framebuffer. + /// + /// + /// Specifies the attachment point to which an image from texture should be attached. Must be one of the following symbolic constants: ColorAttachment0, DepthAttachment, or StencilAttachment. + /// + /// + /// Specifies the texture target. Must be one of the following symbolic constants: Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ. + /// + /// + /// Specifies the texture object whose image is to be attached. + /// + /// + /// Specifies the mipmap level of the texture image to be attached, which must be 0. + /// + [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glFramebufferTexture2DOES")] + [CLSCompliant(false)] + public static void FramebufferTexture2D(OpenTK.Graphics.ES11.FramebufferTarget target, OpenTK.Graphics.ES11.FramebufferAttachment attachment, OpenTK.Graphics.ES11.TextureTarget textarget, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_framebuffer_object] + /// Attach a texture image to a framebuffer object + /// + /// + /// Specifies the framebuffer target. The symbolic constant must be Framebuffer. + /// + /// + /// Specifies the attachment point to which an image from texture should be attached. Must be one of the following symbolic constants: ColorAttachment0, DepthAttachment, or StencilAttachment. + /// + /// + /// Specifies the texture target. Must be one of the following symbolic constants: Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ. + /// + /// + /// Specifies the texture object whose image is to be attached. + /// + /// + /// Specifies the mipmap level of the texture image to be attached, which must be 0. + /// + [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glFramebufferTexture2DOES")] + [CLSCompliant(false)] + public static void FramebufferTexture2D(OpenTK.Graphics.ES11.FramebufferTarget target, OpenTK.Graphics.ES11.FramebufferAttachment attachment, OpenTK.Graphics.ES11.TextureTarget textarget, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_single_precision] /// Multiply the current matrix by a perspective matrix /// @@ -11360,9 +15712,19 @@ namespace OpenTK.Graphics.ES11 /// /// Specifies the texture target of the active texture unit to which the texture object is bound whose mipmaps will be generated. Must be one of the following symbolic constants: Texture2D or TextureCubeMap. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenerateMipmapOES")] public static void GenerateMipmap(OpenTK.Graphics.ES11.All target) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_framebuffer_object] + /// Generate a complete set of mipmaps for a texture object + /// + /// + /// Specifies the texture target of the active texture unit to which the texture object is bound whose mipmaps will be generated. Must be one of the following symbolic constants: Texture2D or TextureCubeMap. + /// + [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenerateMipmapOES")] + public static void GenerateMipmap(OpenTK.Graphics.ES11.TextureTarget target) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_framebuffer_object] /// Generate framebuffer object names /// @@ -11622,6 +15984,7 @@ namespace OpenTK.Graphics.ES11 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] public static void GetBufferPointer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } @@ -11629,6 +15992,7 @@ namespace OpenTK.Graphics.ES11 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute] T2[] @params) @@ -11639,6 +16003,7 @@ namespace OpenTK.Graphics.ES11 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute] T2[,] @params) @@ -11649,6 +16014,7 @@ namespace OpenTK.Graphics.ES11 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute] T2[,,] @params) @@ -11659,11 +16025,58 @@ namespace OpenTK.Graphics.ES11 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] public static void GetBufferPointer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute] ref T2 @params) where T2 : struct { throw new BindingsNotRewrittenException(); } + /// [requires: OES_mapbuffer] + /// + /// + /// + [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] + public static void GetBufferPointer(OpenTK.Graphics.ES11.BufferTargetArb target, OpenTK.Graphics.ES11.All pname, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_mapbuffer] + /// + /// + /// + [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] + [CLSCompliant(false)] + public static void GetBufferPointer(OpenTK.Graphics.ES11.BufferTargetArb target, OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute] T2[] @params) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_mapbuffer] + /// + /// + /// + [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] + [CLSCompliant(false)] + public static void GetBufferPointer(OpenTK.Graphics.ES11.BufferTargetArb target, OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute] T2[,] @params) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_mapbuffer] + /// + /// + /// + [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] + [CLSCompliant(false)] + public static void GetBufferPointer(OpenTK.Graphics.ES11.BufferTargetArb target, OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute] T2[,,] @params) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_mapbuffer] + /// + /// + /// + [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] + public static void GetBufferPointer(OpenTK.Graphics.ES11.BufferTargetArb target, OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute] ref T2 @params) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + /// [requires: OES_single_precision] /// Return the coefficients of the specified clipping plane /// @@ -11673,6 +16086,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 4] /// Returns four double-precision values that are the coefficients of the plane equation of plane in eye coordinates. The initial value is (0, 0, 0, 0). /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glGetClipPlanefOES")] [CLSCompliant(false)] public static void GetClipPlane(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] Single[] equation) { throw new BindingsNotRewrittenException(); } @@ -11686,6 +16100,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 4] /// Returns four double-precision values that are the coefficients of the plane equation of plane in eye coordinates. The initial value is (0, 0, 0, 0). /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glGetClipPlanefOES")] [CLSCompliant(false)] public static void GetClipPlane(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] out Single equation) { throw new BindingsNotRewrittenException(); } @@ -11699,13 +16114,54 @@ namespace OpenTK.Graphics.ES11 /// [length: 4] /// Returns four double-precision values that are the coefficients of the plane equation of plane in eye coordinates. The initial value is (0, 0, 0, 0). /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glGetClipPlanefOES")] [CLSCompliant(false)] public static unsafe void GetClipPlane(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] Single* equation) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_single_precision] + /// Return the coefficients of the specified clipping plane + /// + /// + /// Specifies a clipping plane. The number of clipping planes depends on the implementation, but at least six clipping planes are supported. They are identified by symbolic names of the form ClipPlane where i ranges from 0 to the value of MaxClipPlanes - 1. + /// + /// [length: 4] + /// Returns four double-precision values that are the coefficients of the plane equation of plane in eye coordinates. The initial value is (0, 0, 0, 0). + /// + [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glGetClipPlanefOES")] + [CLSCompliant(false)] + public static void GetClipPlane(OpenTK.Graphics.ES11.ClipPlaneName plane, [OutAttribute, CountAttribute(Count = 4)] Single[] equation) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_single_precision] + /// Return the coefficients of the specified clipping plane + /// + /// + /// Specifies a clipping plane. The number of clipping planes depends on the implementation, but at least six clipping planes are supported. They are identified by symbolic names of the form ClipPlane where i ranges from 0 to the value of MaxClipPlanes - 1. + /// + /// [length: 4] + /// Returns four double-precision values that are the coefficients of the plane equation of plane in eye coordinates. The initial value is (0, 0, 0, 0). + /// + [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glGetClipPlanefOES")] + [CLSCompliant(false)] + public static void GetClipPlane(OpenTK.Graphics.ES11.ClipPlaneName plane, [OutAttribute, CountAttribute(Count = 4)] out Single equation) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_single_precision] + /// Return the coefficients of the specified clipping plane + /// + /// + /// Specifies a clipping plane. The number of clipping planes depends on the implementation, but at least six clipping planes are supported. They are identified by symbolic names of the form ClipPlane where i ranges from 0 to the value of MaxClipPlanes - 1. + /// + /// [length: 4] + /// Returns four double-precision values that are the coefficients of the plane equation of plane in eye coordinates. The initial value is (0, 0, 0, 0). + /// + [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glGetClipPlanefOES")] + [CLSCompliant(false)] + public static unsafe void GetClipPlane(OpenTK.Graphics.ES11.ClipPlaneName plane, [OutAttribute, CountAttribute(Count = 4)] Single* equation) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetClipPlanexOES")] [CLSCompliant(false)] public static void GetClipPlanex(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] Int32[] equation) { throw new BindingsNotRewrittenException(); } @@ -11713,6 +16169,7 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetClipPlanexOES")] [CLSCompliant(false)] public static void GetClipPlanex(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] out Int32 equation) { throw new BindingsNotRewrittenException(); } @@ -11720,10 +16177,32 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetClipPlanexOES")] [CLSCompliant(false)] public static unsafe void GetClipPlanex(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] Int32* equation) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] + /// + /// [length: 4] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetClipPlanexOES")] + [CLSCompliant(false)] + public static void GetClipPlanex(OpenTK.Graphics.ES11.ClipPlaneName plane, [OutAttribute, CountAttribute(Count = 4)] Int32[] equation) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point] + /// + /// [length: 4] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetClipPlanexOES")] + [CLSCompliant(false)] + public static void GetClipPlanex(OpenTK.Graphics.ES11.ClipPlaneName plane, [OutAttribute, CountAttribute(Count = 4)] out Int32 equation) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point] + /// + /// [length: 4] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetClipPlanexOES")] + [CLSCompliant(false)] + public static unsafe void GetClipPlanex(OpenTK.Graphics.ES11.ClipPlaneName plane, [OutAttribute, CountAttribute(Count = 4)] Int32* equation) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] /// /// @@ -11750,13 +16229,21 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetFixedvOES")] [CLSCompliant(false)] public static Int32 GetFixed(OpenTK.Graphics.ES11.All pname) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] + /// + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetFixedvOES")] + [CLSCompliant(false)] + public static Int32 GetFixed(OpenTK.Graphics.ES11.GetPName pname) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetFixedvOES")] [CLSCompliant(false)] public static void GetFixed(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -11764,6 +16251,7 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetFixedvOES")] [CLSCompliant(false)] public static void GetFixed(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -11771,10 +16259,32 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetFixedvOES")] [CLSCompliant(false)] public static unsafe void GetFixed(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetFixedvOES")] + [CLSCompliant(false)] + public static void GetFixed(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point] + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetFixedvOES")] + [CLSCompliant(false)] + public static void GetFixed(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point] + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetFixedvOES")] + [CLSCompliant(false)] + public static unsafe void GetFixed(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_framebuffer_object] /// Retrieve information about attachments of a bound framebuffer object /// @@ -11790,6 +16300,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] /// Specifies the address of a variable receive the value of pname for attachment. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGetFramebufferAttachmentParameterivOES")] [CLSCompliant(false)] public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -11809,6 +16320,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] /// Specifies the address of a variable receive the value of pname for attachment. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGetFramebufferAttachmentParameterivOES")] [CLSCompliant(false)] public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -11828,14 +16340,73 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] /// Specifies the address of a variable receive the value of pname for attachment. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGetFramebufferAttachmentParameterivOES")] [CLSCompliant(false)] public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_framebuffer_object] + /// Retrieve information about attachments of a bound framebuffer object + /// + /// + /// Specifies the target of the query operation. + /// + /// + /// Specifies the attachment within target + /// + /// + /// Specifies the parameter of attachment to query. + /// + /// [length: COMPSIZE(pname)] + /// Specifies the address of a variable receive the value of pname for attachment. + /// + [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGetFramebufferAttachmentParameterivOES")] + [CLSCompliant(false)] + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES11.FramebufferTarget target, OpenTK.Graphics.ES11.FramebufferAttachment attachment, OpenTK.Graphics.ES11.FramebufferAttachmentParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_framebuffer_object] + /// Retrieve information about attachments of a bound framebuffer object + /// + /// + /// Specifies the target of the query operation. + /// + /// + /// Specifies the attachment within target + /// + /// + /// Specifies the parameter of attachment to query. + /// + /// [length: COMPSIZE(pname)] + /// Specifies the address of a variable receive the value of pname for attachment. + /// + [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGetFramebufferAttachmentParameterivOES")] + [CLSCompliant(false)] + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES11.FramebufferTarget target, OpenTK.Graphics.ES11.FramebufferAttachment attachment, OpenTK.Graphics.ES11.FramebufferAttachmentParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_framebuffer_object] + /// Retrieve information about attachments of a bound framebuffer object + /// + /// + /// Specifies the target of the query operation. + /// + /// + /// Specifies the attachment within target + /// + /// + /// Specifies the parameter of attachment to query. + /// + /// [length: COMPSIZE(pname)] + /// Specifies the address of a variable receive the value of pname for attachment. + /// + [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGetFramebufferAttachmentParameterivOES")] + [CLSCompliant(false)] + public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES11.FramebufferTarget target, OpenTK.Graphics.ES11.FramebufferAttachment attachment, OpenTK.Graphics.ES11.FramebufferAttachmentParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetHistogramParameterxvOES")] [CLSCompliant(false)] public static void GetHistogramParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -11844,6 +16415,7 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetHistogramParameterxvOES")] [CLSCompliant(false)] public static void GetHistogramParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -11852,14 +16424,40 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetHistogramParameterxvOES")] [CLSCompliant(false)] public static unsafe void GetHistogramParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetHistogramParameterxvOES")] + [CLSCompliant(false)] + public static void GetHistogramParameterx(OpenTK.Graphics.ES11.HistogramTargetExt target, OpenTK.Graphics.ES11.GetHistogramParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetHistogramParameterxvOES")] + [CLSCompliant(false)] + public static void GetHistogramParameterx(OpenTK.Graphics.ES11.HistogramTargetExt target, OpenTK.Graphics.ES11.GetHistogramParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetHistogramParameterxvOES")] + [CLSCompliant(false)] + public static unsafe void GetHistogramParameterx(OpenTK.Graphics.ES11.HistogramTargetExt target, OpenTK.Graphics.ES11.GetHistogramParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetLightxOES")] [CLSCompliant(false)] public static void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -11868,6 +16466,7 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetLightxOES")] [CLSCompliant(false)] public static void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -11876,14 +16475,40 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetLightxOES")] [CLSCompliant(false)] public static unsafe void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetLightxOES")] + [CLSCompliant(false)] + public static void GetLightx(OpenTK.Graphics.ES11.LightName light, OpenTK.Graphics.ES11.LightParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetLightxOES")] + [CLSCompliant(false)] + public static void GetLightx(OpenTK.Graphics.ES11.LightName light, OpenTK.Graphics.ES11.LightParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetLightxOES")] + [CLSCompliant(false)] + public static unsafe void GetLightx(OpenTK.Graphics.ES11.LightName light, OpenTK.Graphics.ES11.LightParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] /// /// /// [length: COMPSIZE(query)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMapxvOES")] [CLSCompliant(false)] public static void GetMapx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All query, [OutAttribute, CountAttribute(Computed = "query")] Int32[] v) { throw new BindingsNotRewrittenException(); } @@ -11892,6 +16517,7 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: COMPSIZE(query)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMapxvOES")] [CLSCompliant(false)] public static void GetMapx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All query, [OutAttribute, CountAttribute(Computed = "query")] out Int32 v) { throw new BindingsNotRewrittenException(); } @@ -11900,21 +16526,55 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: COMPSIZE(query)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMapxvOES")] [CLSCompliant(false)] public static unsafe void GetMapx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All query, [OutAttribute, CountAttribute(Computed = "query")] Int32* v) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] + /// + /// + /// [length: COMPSIZE(query)] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMapxvOES")] + [CLSCompliant(false)] + public static void GetMapx(OpenTK.Graphics.ES11.MapTarget target, OpenTK.Graphics.ES11.GetMapQuery query, [OutAttribute, CountAttribute(Computed = "query")] Int32[] v) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point] + /// + /// + /// [length: COMPSIZE(query)] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMapxvOES")] + [CLSCompliant(false)] + public static void GetMapx(OpenTK.Graphics.ES11.MapTarget target, OpenTK.Graphics.ES11.GetMapQuery query, [OutAttribute, CountAttribute(Computed = "query")] out Int32 v) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point] + /// + /// + /// [length: COMPSIZE(query)] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMapxvOES")] + [CLSCompliant(false)] + public static unsafe void GetMapx(OpenTK.Graphics.ES11.MapTarget target, OpenTK.Graphics.ES11.GetMapQuery query, [OutAttribute, CountAttribute(Computed = "query")] Int32* v) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMaterialxOES")] public static void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] + /// + /// + /// + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMaterialxOES")] + public static void GetMaterialx(OpenTK.Graphics.ES11.MaterialFace face, OpenTK.Graphics.ES11.MaterialParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMaterialxvOES")] [CLSCompliant(false)] public static void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -11923,10 +16583,27 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMaterialxvOES")] [CLSCompliant(false)] public static unsafe void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMaterialxvOES")] + [CLSCompliant(false)] + public static void GetMaterialx(OpenTK.Graphics.ES11.MaterialFace face, OpenTK.Graphics.ES11.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMaterialxvOES")] + [CLSCompliant(false)] + public static unsafe void GetMaterialx(OpenTK.Graphics.ES11.MaterialFace face, OpenTK.Graphics.ES11.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_framebuffer_object] /// Retrieve information about a bound renderbuffer object /// @@ -11939,6 +16616,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] /// Specifies the address of an array to receive the value of the queried parameter. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGetRenderbufferParameterivOES")] [CLSCompliant(false)] public static void GetRenderbufferParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -11955,6 +16633,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] /// Specifies the address of an array to receive the value of the queried parameter. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGetRenderbufferParameterivOES")] [CLSCompliant(false)] public static void GetRenderbufferParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -11971,14 +16650,64 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] /// Specifies the address of an array to receive the value of the queried parameter. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGetRenderbufferParameterivOES")] [CLSCompliant(false)] public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_framebuffer_object] + /// Retrieve information about a bound renderbuffer object + /// + /// + /// Specifies the target of the query operation. target must be Renderbuffer. + /// + /// + /// Specifies the parameter whose value to retrieve from the renderbuffer bound to target. + /// + /// [length: COMPSIZE(pname)] + /// Specifies the address of an array to receive the value of the queried parameter. + /// + [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGetRenderbufferParameterivOES")] + [CLSCompliant(false)] + public static void GetRenderbufferParameter(OpenTK.Graphics.ES11.RenderbufferTarget target, OpenTK.Graphics.ES11.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_framebuffer_object] + /// Retrieve information about a bound renderbuffer object + /// + /// + /// Specifies the target of the query operation. target must be Renderbuffer. + /// + /// + /// Specifies the parameter whose value to retrieve from the renderbuffer bound to target. + /// + /// [length: COMPSIZE(pname)] + /// Specifies the address of an array to receive the value of the queried parameter. + /// + [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGetRenderbufferParameterivOES")] + [CLSCompliant(false)] + public static void GetRenderbufferParameter(OpenTK.Graphics.ES11.RenderbufferTarget target, OpenTK.Graphics.ES11.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_framebuffer_object] + /// Retrieve information about a bound renderbuffer object + /// + /// + /// Specifies the target of the query operation. target must be Renderbuffer. + /// + /// + /// Specifies the parameter whose value to retrieve from the renderbuffer bound to target. + /// + /// [length: COMPSIZE(pname)] + /// Specifies the address of an array to receive the value of the queried parameter. + /// + [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGetRenderbufferParameterivOES")] + [CLSCompliant(false)] + public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.ES11.RenderbufferTarget target, OpenTK.Graphics.ES11.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexEnvxvOES")] [CLSCompliant(false)] public static void GetTexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -11987,6 +16716,7 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexEnvxvOES")] [CLSCompliant(false)] public static void GetTexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -11995,10 +16725,35 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexEnvxvOES")] [CLSCompliant(false)] public static unsafe void GetTexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexEnvxvOES")] + [CLSCompliant(false)] + public static void GetTexEnvx(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexEnvxvOES")] + [CLSCompliant(false)] + public static void GetTexEnvx(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexEnvxvOES")] + [CLSCompliant(false)] + public static unsafe void GetTexEnvx(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_cube_map] /// Return texture coordinate generation parameters /// @@ -12011,6 +16766,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] /// Returns the requested data. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenfvOES")] [CLSCompliant(false)] public static void GetTexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } @@ -12027,6 +16783,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] /// Returns the requested data. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenfvOES")] [CLSCompliant(false)] public static void GetTexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } @@ -12043,6 +16800,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] /// Returns the requested data. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenfvOES")] [CLSCompliant(false)] public static unsafe void GetTexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } @@ -12059,6 +16817,55 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] /// Returns the requested data. /// + [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenfvOES")] + [CLSCompliant(false)] + public static void GetTexGen(OpenTK.Graphics.ES11.TextureCoordName coord, OpenTK.Graphics.ES11.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_cube_map] + /// Return texture coordinate generation parameters + /// + /// + /// Specifies a texture coordinate. Must be S, T, R, or Q. + /// + /// + /// Specifies the symbolic name of the value(s) to be returned. Must be either TextureGenMode or the name of one of the texture generation plane equations: ObjectPlane or EyePlane. + /// + /// [length: COMPSIZE(pname)] + /// Returns the requested data. + /// + [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenfvOES")] + [CLSCompliant(false)] + public static void GetTexGen(OpenTK.Graphics.ES11.TextureCoordName coord, OpenTK.Graphics.ES11.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_cube_map] + /// Return texture coordinate generation parameters + /// + /// + /// Specifies a texture coordinate. Must be S, T, R, or Q. + /// + /// + /// Specifies the symbolic name of the value(s) to be returned. Must be either TextureGenMode or the name of one of the texture generation plane equations: ObjectPlane or EyePlane. + /// + /// [length: COMPSIZE(pname)] + /// Returns the requested data. + /// + [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenfvOES")] + [CLSCompliant(false)] + public static unsafe void GetTexGen(OpenTK.Graphics.ES11.TextureCoordName coord, OpenTK.Graphics.ES11.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_cube_map] + /// Return texture coordinate generation parameters + /// + /// + /// Specifies a texture coordinate. Must be S, T, R, or Q. + /// + /// + /// Specifies the symbolic name of the value(s) to be returned. Must be either TextureGenMode or the name of one of the texture generation plane equations: ObjectPlane or EyePlane. + /// + /// [length: COMPSIZE(pname)] + /// Returns the requested data. + /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenivOES")] [CLSCompliant(false)] public static void GetTexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -12075,6 +16882,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] /// Returns the requested data. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenivOES")] [CLSCompliant(false)] public static void GetTexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -12091,14 +16899,64 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] /// Returns the requested data. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenivOES")] [CLSCompliant(false)] public static unsafe void GetTexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_cube_map] + /// Return texture coordinate generation parameters + /// + /// + /// Specifies a texture coordinate. Must be S, T, R, or Q. + /// + /// + /// Specifies the symbolic name of the value(s) to be returned. Must be either TextureGenMode or the name of one of the texture generation plane equations: ObjectPlane or EyePlane. + /// + /// [length: COMPSIZE(pname)] + /// Returns the requested data. + /// + [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenivOES")] + [CLSCompliant(false)] + public static void GetTexGen(OpenTK.Graphics.ES11.TextureCoordName coord, OpenTK.Graphics.ES11.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_cube_map] + /// Return texture coordinate generation parameters + /// + /// + /// Specifies a texture coordinate. Must be S, T, R, or Q. + /// + /// + /// Specifies the symbolic name of the value(s) to be returned. Must be either TextureGenMode or the name of one of the texture generation plane equations: ObjectPlane or EyePlane. + /// + /// [length: COMPSIZE(pname)] + /// Returns the requested data. + /// + [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenivOES")] + [CLSCompliant(false)] + public static void GetTexGen(OpenTK.Graphics.ES11.TextureCoordName coord, OpenTK.Graphics.ES11.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_cube_map] + /// Return texture coordinate generation parameters + /// + /// + /// Specifies a texture coordinate. Must be S, T, R, or Q. + /// + /// + /// Specifies the symbolic name of the value(s) to be returned. Must be either TextureGenMode or the name of one of the texture generation plane equations: ObjectPlane or EyePlane. + /// + /// [length: COMPSIZE(pname)] + /// Returns the requested data. + /// + [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenivOES")] + [CLSCompliant(false)] + public static unsafe void GetTexGen(OpenTK.Graphics.ES11.TextureCoordName coord, OpenTK.Graphics.ES11.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point|OES_texture_cube_map] /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point|OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenxvOES")] [CLSCompliant(false)] public static void GetTexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -12107,6 +16965,7 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point|OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenxvOES")] [CLSCompliant(false)] public static void GetTexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -12115,15 +16974,41 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point|OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenxvOES")] [CLSCompliant(false)] public static unsafe void GetTexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point|OES_texture_cube_map] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_fixed_point|OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenxvOES")] + [CLSCompliant(false)] + public static void GetTexGenx(OpenTK.Graphics.ES11.TextureCoordName coord, OpenTK.Graphics.ES11.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point|OES_texture_cube_map] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_fixed_point|OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenxvOES")] + [CLSCompliant(false)] + public static void GetTexGenx(OpenTK.Graphics.ES11.TextureCoordName coord, OpenTK.Graphics.ES11.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point|OES_texture_cube_map] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_fixed_point|OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenxvOES")] + [CLSCompliant(false)] + public static unsafe void GetTexGenx(OpenTK.Graphics.ES11.TextureCoordName coord, OpenTK.Graphics.ES11.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] /// /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexLevelParameterxvOES")] [CLSCompliant(false)] public static void GetTexLevelParameterx(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -12133,6 +17018,7 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexLevelParameterxvOES")] [CLSCompliant(false)] public static void GetTexLevelParameterx(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -12142,14 +17028,43 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexLevelParameterxvOES")] [CLSCompliant(false)] public static unsafe void GetTexLevelParameterx(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// + /// /// /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexLevelParameterxvOES")] + [CLSCompliant(false)] + public static void GetTexLevelParameterx(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, OpenTK.Graphics.ES11.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point] + /// + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexLevelParameterxvOES")] + [CLSCompliant(false)] + public static void GetTexLevelParameterx(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, OpenTK.Graphics.ES11.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point] + /// + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexLevelParameterxvOES")] + [CLSCompliant(false)] + public static unsafe void GetTexLevelParameterx(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, OpenTK.Graphics.ES11.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point] + /// + /// + /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexParameterxvOES")] [CLSCompliant(false)] public static void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -12158,6 +17073,7 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexParameterxvOES")] [CLSCompliant(false)] public static void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -12166,10 +17082,35 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexParameterxvOES")] [CLSCompliant(false)] public static unsafe void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexParameterxvOES")] + [CLSCompliant(false)] + public static void GetTexParameterx(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexParameterxvOES")] + [CLSCompliant(false)] + public static void GetTexParameterx(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexParameterxvOES")] + [CLSCompliant(false)] + public static unsafe void GetTexParameterx(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glIndexxOES")] @@ -12244,12 +17185,20 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightModelxOES")] public static void LightModelx(OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] + /// + /// + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightModelxOES")] + public static void LightModelx(OpenTK.Graphics.ES11.LightModelParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightModelxvOES")] [CLSCompliant(false)] public static void LightModelx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } @@ -12257,21 +17206,45 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightModelxvOES")] [CLSCompliant(false)] public static unsafe void LightModelx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightModelxvOES")] + [CLSCompliant(false)] + public static void LightModelx(OpenTK.Graphics.ES11.LightModelParameter pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point] + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightModelxvOES")] + [CLSCompliant(false)] + public static unsafe void LightModelx(OpenTK.Graphics.ES11.LightModelParameter pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightxOES")] public static void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] + /// + /// + /// + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightxOES")] + public static void Lightx(OpenTK.Graphics.ES11.LightName light, OpenTK.Graphics.ES11.LightParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightxvOES")] [CLSCompliant(false)] public static void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -12280,10 +17253,27 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightxvOES")] [CLSCompliant(false)] public static unsafe void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightxvOES")] + [CLSCompliant(false)] + public static void Lightx(OpenTK.Graphics.ES11.LightName light, OpenTK.Graphics.ES11.LightParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightxvOES")] + [CLSCompliant(false)] + public static unsafe void Lightx(OpenTK.Graphics.ES11.LightName light, OpenTK.Graphics.ES11.LightParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLineWidthxOES")] @@ -12336,9 +17326,35 @@ namespace OpenTK.Graphics.ES11 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMap1xOES")] public static void Map1x(OpenTK.Graphics.ES11.All target, Int32 u1, Int32 u2, Int32 stride, Int32 order, Int32 points) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMap1xOES")] + public static void Map1x(OpenTK.Graphics.ES11.MapTarget target, Int32 u1, Int32 u2, Int32 stride, Int32 order, Int32 points) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point] + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMap2xOES")] + public static void Map2x(OpenTK.Graphics.ES11.All target, Int32 u1, Int32 u2, Int32 ustride, Int32 uorder, Int32 v1, Int32 v2, Int32 vstride, Int32 vorder, Int32 points) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] /// /// @@ -12351,7 +17367,20 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMap2xOES")] - public static void Map2x(OpenTK.Graphics.ES11.All target, Int32 u1, Int32 u2, Int32 ustride, Int32 uorder, Int32 v1, Int32 v2, Int32 vstride, Int32 vorder, Int32 points) { throw new BindingsNotRewrittenException(); } + public static void Map2x(OpenTK.Graphics.ES11.MapTarget target, Int32 u1, Int32 u2, Int32 ustride, Int32 uorder, Int32 v1, Int32 v2, Int32 vstride, Int32 vorder, Int32 points) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_mapbuffer] + /// Map a buffer object's data store + /// + /// + /// Specifies the target buffer object being mapped. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer or UniformBuffer. + /// + /// + /// For glMapBuffer only, specifies the access policy, indicating whether it will be possible to read from, write to, or both read from and write to the buffer object's mapped data store. The symbolic constant must be ReadOnly, WriteOnly, or ReadWrite. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glMapBufferOES")] + public static IntPtr MapBuffer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All access) { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// Map a buffer object's data store @@ -12363,7 +17392,7 @@ namespace OpenTK.Graphics.ES11 /// For glMapBuffer only, specifies the access policy, indicating whether it will be possible to read from, write to, or both read from and write to the buffer object's mapped data store. The symbolic constant must be ReadOnly, WriteOnly, or ReadWrite. /// [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glMapBufferOES")] - public static IntPtr MapBuffer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All access) { throw new BindingsNotRewrittenException(); } + public static IntPtr MapBuffer(OpenTK.Graphics.ES11.BufferTargetArb target, OpenTK.Graphics.ES11.BufferAccessArb access) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -12385,13 +17414,22 @@ namespace OpenTK.Graphics.ES11 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMaterialxOES")] public static void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] + /// + /// + /// + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMaterialxOES")] + public static void Materialx(OpenTK.Graphics.ES11.MaterialFace face, OpenTK.Graphics.ES11.MaterialParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMaterialxvOES")] [CLSCompliant(false)] public static void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } @@ -12400,10 +17438,27 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMaterialxvOES")] [CLSCompliant(false)] public static unsafe void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMaterialxvOES")] + [CLSCompliant(false)] + public static void Materialx(OpenTK.Graphics.ES11.MaterialFace face, OpenTK.Graphics.ES11.MaterialParameter pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMaterialxvOES")] + [CLSCompliant(false)] + public static unsafe void Materialx(OpenTK.Graphics.ES11.MaterialFace face, OpenTK.Graphics.ES11.MaterialParameter pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_matrix_palette] /// /// @@ -12464,6 +17519,7 @@ namespace OpenTK.Graphics.ES11 /// /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord1bOES")] [CLSCompliant(false)] public static void MultiTexCoord1(OpenTK.Graphics.ES11.All texture, Byte s) { throw new BindingsNotRewrittenException(); } @@ -12477,10 +17533,37 @@ namespace OpenTK.Graphics.ES11 /// /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord1bOES")] [CLSCompliant(false)] public static void MultiTexCoord1(OpenTK.Graphics.ES11.All texture, SByte s) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_byte_coordinates] + /// Set the current texture coordinates + /// + /// + /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value. + /// + /// + /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. + /// + [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord1bOES")] + [CLSCompliant(false)] + public static void MultiTexCoord1(OpenTK.Graphics.ES11.TextureUnit texture, Byte s) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_byte_coordinates] + /// Set the current texture coordinates + /// + /// + /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value. + /// + /// + /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. + /// + [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord1bOES")] + [CLSCompliant(false)] + public static void MultiTexCoord1(OpenTK.Graphics.ES11.TextureUnit texture, SByte s) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_byte_coordinates] /// Set the current texture coordinates /// @@ -12490,6 +17573,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 1] /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord1bvOES")] [CLSCompliant(false)] public static unsafe void MultiTexCoord1(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 1)] Byte* coords) { throw new BindingsNotRewrittenException(); } @@ -12503,22 +17587,64 @@ namespace OpenTK.Graphics.ES11 /// [length: 1] /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord1bvOES")] [CLSCompliant(false)] public static unsafe void MultiTexCoord1(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 1)] SByte* coords) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_byte_coordinates] + /// Set the current texture coordinates + /// + /// + /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value. + /// + /// [length: 1] + /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. + /// + [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord1bvOES")] + [CLSCompliant(false)] + public static unsafe void MultiTexCoord1(OpenTK.Graphics.ES11.TextureUnit texture, [CountAttribute(Count = 1)] Byte* coords) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_byte_coordinates] + /// Set the current texture coordinates + /// + /// + /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value. + /// + /// [length: 1] + /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. + /// + [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord1bvOES")] + [CLSCompliant(false)] + public static unsafe void MultiTexCoord1(OpenTK.Graphics.ES11.TextureUnit texture, [CountAttribute(Count = 1)] SByte* coords) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point] + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord1xOES")] + public static void MultiTexCoord1x(OpenTK.Graphics.ES11.All texture, Int32 s) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord1xOES")] - public static void MultiTexCoord1x(OpenTK.Graphics.ES11.All texture, Int32 s) { throw new BindingsNotRewrittenException(); } + public static void MultiTexCoord1x(OpenTK.Graphics.ES11.TextureUnit texture, Int32 s) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point] + /// + /// [length: 1] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord1xvOES")] + [CLSCompliant(false)] + public static unsafe void MultiTexCoord1x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 1] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord1xvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord1x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } + public static unsafe void MultiTexCoord1x(OpenTK.Graphics.ES11.TextureUnit texture, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12532,6 +17658,7 @@ namespace OpenTK.Graphics.ES11 /// /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bOES")] [CLSCompliant(false)] public static void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, Byte s, Byte t) { throw new BindingsNotRewrittenException(); } @@ -12548,10 +17675,43 @@ namespace OpenTK.Graphics.ES11 /// /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bOES")] [CLSCompliant(false)] public static void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, SByte s, SByte t) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_byte_coordinates] + /// Set the current texture coordinates + /// + /// + /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value. + /// + /// + /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. + /// + /// + /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. + /// + [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bOES")] + [CLSCompliant(false)] + public static void MultiTexCoord2(OpenTK.Graphics.ES11.TextureUnit texture, Byte s, Byte t) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_byte_coordinates] + /// Set the current texture coordinates + /// + /// + /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value. + /// + /// + /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. + /// + /// + /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. + /// + [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bOES")] + [CLSCompliant(false)] + public static void MultiTexCoord2(OpenTK.Graphics.ES11.TextureUnit texture, SByte s, SByte t) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_byte_coordinates] /// Set the current texture coordinates /// @@ -12561,6 +17721,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 2] /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] [CLSCompliant(false)] public static void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] Byte[] coords) { throw new BindingsNotRewrittenException(); } @@ -12574,6 +17735,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 2] /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] [CLSCompliant(false)] public static void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] ref Byte coords) { throw new BindingsNotRewrittenException(); } @@ -12587,6 +17749,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 2] /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] [CLSCompliant(false)] public static unsafe void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] Byte* coords) { throw new BindingsNotRewrittenException(); } @@ -12600,6 +17763,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 2] /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] [CLSCompliant(false)] public static void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] SByte[] coords) { throw new BindingsNotRewrittenException(); } @@ -12613,6 +17777,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 2] /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] [CLSCompliant(false)] public static void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] ref SByte coords) { throw new BindingsNotRewrittenException(); } @@ -12626,20 +17791,108 @@ namespace OpenTK.Graphics.ES11 /// [length: 2] /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] [CLSCompliant(false)] public static unsafe void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] SByte* coords) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_byte_coordinates] + /// Set the current texture coordinates + /// + /// + /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value. + /// + /// [length: 2] + /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. + /// + [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] + [CLSCompliant(false)] + public static void MultiTexCoord2(OpenTK.Graphics.ES11.TextureUnit texture, [CountAttribute(Count = 2)] Byte[] coords) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_byte_coordinates] + /// Set the current texture coordinates + /// + /// + /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value. + /// + /// [length: 2] + /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. + /// + [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] + [CLSCompliant(false)] + public static void MultiTexCoord2(OpenTK.Graphics.ES11.TextureUnit texture, [CountAttribute(Count = 2)] ref Byte coords) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_byte_coordinates] + /// Set the current texture coordinates + /// + /// + /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value. + /// + /// [length: 2] + /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. + /// + [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] + [CLSCompliant(false)] + public static unsafe void MultiTexCoord2(OpenTK.Graphics.ES11.TextureUnit texture, [CountAttribute(Count = 2)] Byte* coords) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_byte_coordinates] + /// Set the current texture coordinates + /// + /// + /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value. + /// + /// [length: 2] + /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. + /// + [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] + [CLSCompliant(false)] + public static void MultiTexCoord2(OpenTK.Graphics.ES11.TextureUnit texture, [CountAttribute(Count = 2)] SByte[] coords) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_byte_coordinates] + /// Set the current texture coordinates + /// + /// + /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value. + /// + /// [length: 2] + /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. + /// + [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] + [CLSCompliant(false)] + public static void MultiTexCoord2(OpenTK.Graphics.ES11.TextureUnit texture, [CountAttribute(Count = 2)] ref SByte coords) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_byte_coordinates] + /// Set the current texture coordinates + /// + /// + /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value. + /// + /// [length: 2] + /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. + /// + [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] + [CLSCompliant(false)] + public static unsafe void MultiTexCoord2(OpenTK.Graphics.ES11.TextureUnit texture, [CountAttribute(Count = 2)] SByte* coords) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point] + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord2xOES")] + public static void MultiTexCoord2x(OpenTK.Graphics.ES11.All texture, Int32 s, Int32 t) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord2xOES")] - public static void MultiTexCoord2x(OpenTK.Graphics.ES11.All texture, Int32 s, Int32 t) { throw new BindingsNotRewrittenException(); } + public static void MultiTexCoord2x(OpenTK.Graphics.ES11.TextureUnit texture, Int32 s, Int32 t) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 2] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord2xvOES")] [CLSCompliant(false)] public static void MultiTexCoord2x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] Int32[] coords) { throw new BindingsNotRewrittenException(); } @@ -12647,6 +17900,7 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] /// /// [length: 2] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord2xvOES")] [CLSCompliant(false)] public static void MultiTexCoord2x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } @@ -12654,10 +17908,32 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] /// /// [length: 2] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord2xvOES")] [CLSCompliant(false)] public static unsafe void MultiTexCoord2x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] Int32* coords) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] + /// + /// [length: 2] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord2xvOES")] + [CLSCompliant(false)] + public static void MultiTexCoord2x(OpenTK.Graphics.ES11.TextureUnit texture, [CountAttribute(Count = 2)] Int32[] coords) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point] + /// + /// [length: 2] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord2xvOES")] + [CLSCompliant(false)] + public static void MultiTexCoord2x(OpenTK.Graphics.ES11.TextureUnit texture, [CountAttribute(Count = 2)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point] + /// + /// [length: 2] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord2xvOES")] + [CLSCompliant(false)] + public static unsafe void MultiTexCoord2x(OpenTK.Graphics.ES11.TextureUnit texture, [CountAttribute(Count = 2)] Int32* coords) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_byte_coordinates] /// Set the current texture coordinates /// @@ -12673,6 +17949,7 @@ namespace OpenTK.Graphics.ES11 /// /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bOES")] [CLSCompliant(false)] public static void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, Byte s, Byte t, Byte r) { throw new BindingsNotRewrittenException(); } @@ -12692,10 +17969,49 @@ namespace OpenTK.Graphics.ES11 /// /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bOES")] [CLSCompliant(false)] public static void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, SByte s, SByte t, SByte r) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_byte_coordinates] + /// Set the current texture coordinates + /// + /// + /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value. + /// + /// + /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. + /// + /// + /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. + /// + /// + /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. + /// + [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bOES")] + [CLSCompliant(false)] + public static void MultiTexCoord3(OpenTK.Graphics.ES11.TextureUnit texture, Byte s, Byte t, Byte r) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_byte_coordinates] + /// Set the current texture coordinates + /// + /// + /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value. + /// + /// + /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. + /// + /// + /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. + /// + /// + /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. + /// + [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bOES")] + [CLSCompliant(false)] + public static void MultiTexCoord3(OpenTK.Graphics.ES11.TextureUnit texture, SByte s, SByte t, SByte r) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_byte_coordinates] /// Set the current texture coordinates /// @@ -12705,6 +18021,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 3] /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] [CLSCompliant(false)] public static void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] Byte[] coords) { throw new BindingsNotRewrittenException(); } @@ -12718,6 +18035,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 3] /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] [CLSCompliant(false)] public static void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] ref Byte coords) { throw new BindingsNotRewrittenException(); } @@ -12731,6 +18049,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 3] /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] [CLSCompliant(false)] public static unsafe void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] Byte* coords) { throw new BindingsNotRewrittenException(); } @@ -12744,6 +18063,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 3] /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] [CLSCompliant(false)] public static void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] SByte[] coords) { throw new BindingsNotRewrittenException(); } @@ -12757,6 +18077,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 3] /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] [CLSCompliant(false)] public static void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] ref SByte coords) { throw new BindingsNotRewrittenException(); } @@ -12770,21 +18091,110 @@ namespace OpenTK.Graphics.ES11 /// [length: 3] /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] [CLSCompliant(false)] public static unsafe void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] SByte* coords) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_byte_coordinates] + /// Set the current texture coordinates + /// + /// + /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value. + /// + /// [length: 3] + /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. + /// + [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] + [CLSCompliant(false)] + public static void MultiTexCoord3(OpenTK.Graphics.ES11.TextureUnit texture, [CountAttribute(Count = 3)] Byte[] coords) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_byte_coordinates] + /// Set the current texture coordinates + /// + /// + /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value. + /// + /// [length: 3] + /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. + /// + [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] + [CLSCompliant(false)] + public static void MultiTexCoord3(OpenTK.Graphics.ES11.TextureUnit texture, [CountAttribute(Count = 3)] ref Byte coords) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_byte_coordinates] + /// Set the current texture coordinates + /// + /// + /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value. + /// + /// [length: 3] + /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. + /// + [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] + [CLSCompliant(false)] + public static unsafe void MultiTexCoord3(OpenTK.Graphics.ES11.TextureUnit texture, [CountAttribute(Count = 3)] Byte* coords) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_byte_coordinates] + /// Set the current texture coordinates + /// + /// + /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value. + /// + /// [length: 3] + /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. + /// + [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] + [CLSCompliant(false)] + public static void MultiTexCoord3(OpenTK.Graphics.ES11.TextureUnit texture, [CountAttribute(Count = 3)] SByte[] coords) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_byte_coordinates] + /// Set the current texture coordinates + /// + /// + /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value. + /// + /// [length: 3] + /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. + /// + [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] + [CLSCompliant(false)] + public static void MultiTexCoord3(OpenTK.Graphics.ES11.TextureUnit texture, [CountAttribute(Count = 3)] ref SByte coords) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_byte_coordinates] + /// Set the current texture coordinates + /// + /// + /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value. + /// + /// [length: 3] + /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. + /// + [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] + [CLSCompliant(false)] + public static unsafe void MultiTexCoord3(OpenTK.Graphics.ES11.TextureUnit texture, [CountAttribute(Count = 3)] SByte* coords) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point] + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord3xOES")] + public static void MultiTexCoord3x(OpenTK.Graphics.ES11.All texture, Int32 s, Int32 t, Int32 r) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] /// /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord3xOES")] - public static void MultiTexCoord3x(OpenTK.Graphics.ES11.All texture, Int32 s, Int32 t, Int32 r) { throw new BindingsNotRewrittenException(); } + public static void MultiTexCoord3x(OpenTK.Graphics.ES11.TextureUnit texture, Int32 s, Int32 t, Int32 r) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 3] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord3xvOES")] [CLSCompliant(false)] public static void MultiTexCoord3x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] Int32[] coords) { throw new BindingsNotRewrittenException(); } @@ -12792,6 +18202,7 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] /// /// [length: 3] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord3xvOES")] [CLSCompliant(false)] public static void MultiTexCoord3x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } @@ -12799,10 +18210,32 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] /// /// [length: 3] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord3xvOES")] [CLSCompliant(false)] public static unsafe void MultiTexCoord3x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] Int32* coords) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] + /// + /// [length: 3] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord3xvOES")] + [CLSCompliant(false)] + public static void MultiTexCoord3x(OpenTK.Graphics.ES11.TextureUnit texture, [CountAttribute(Count = 3)] Int32[] coords) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point] + /// + /// [length: 3] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord3xvOES")] + [CLSCompliant(false)] + public static void MultiTexCoord3x(OpenTK.Graphics.ES11.TextureUnit texture, [CountAttribute(Count = 3)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point] + /// + /// [length: 3] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord3xvOES")] + [CLSCompliant(false)] + public static unsafe void MultiTexCoord3x(OpenTK.Graphics.ES11.TextureUnit texture, [CountAttribute(Count = 3)] Int32* coords) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_byte_coordinates] /// Set the current texture coordinates /// @@ -12821,6 +18254,7 @@ namespace OpenTK.Graphics.ES11 /// /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bOES")] [CLSCompliant(false)] public static void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, Byte s, Byte t, Byte r, Byte q) { throw new BindingsNotRewrittenException(); } @@ -12843,10 +18277,55 @@ namespace OpenTK.Graphics.ES11 /// /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bOES")] [CLSCompliant(false)] public static void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, SByte s, SByte t, SByte r, SByte q) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_byte_coordinates] + /// Set the current texture coordinates + /// + /// + /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value. + /// + /// + /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. + /// + /// + /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. + /// + /// + /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. + /// + /// + /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. + /// + [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bOES")] + [CLSCompliant(false)] + public static void MultiTexCoord4(OpenTK.Graphics.ES11.TextureUnit texture, Byte s, Byte t, Byte r, Byte q) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_byte_coordinates] + /// Set the current texture coordinates + /// + /// + /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value. + /// + /// + /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. + /// + /// + /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. + /// + /// + /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. + /// + /// + /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. + /// + [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bOES")] + [CLSCompliant(false)] + public static void MultiTexCoord4(OpenTK.Graphics.ES11.TextureUnit texture, SByte s, SByte t, SByte r, SByte q) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_byte_coordinates] /// Set the current texture coordinates /// @@ -12856,6 +18335,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 4] /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] [CLSCompliant(false)] public static void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] Byte[] coords) { throw new BindingsNotRewrittenException(); } @@ -12869,6 +18349,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 4] /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] [CLSCompliant(false)] public static void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] ref Byte coords) { throw new BindingsNotRewrittenException(); } @@ -12882,6 +18363,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 4] /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] [CLSCompliant(false)] public static unsafe void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] Byte* coords) { throw new BindingsNotRewrittenException(); } @@ -12895,6 +18377,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 4] /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] [CLSCompliant(false)] public static void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] SByte[] coords) { throw new BindingsNotRewrittenException(); } @@ -12908,6 +18391,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 4] /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] [CLSCompliant(false)] public static void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] ref SByte coords) { throw new BindingsNotRewrittenException(); } @@ -12921,10 +18405,99 @@ namespace OpenTK.Graphics.ES11 /// [length: 4] /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] [CLSCompliant(false)] public static unsafe void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] SByte* coords) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_byte_coordinates] + /// Set the current texture coordinates + /// + /// + /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value. + /// + /// [length: 4] + /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. + /// + [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] + [CLSCompliant(false)] + public static void MultiTexCoord4(OpenTK.Graphics.ES11.TextureUnit texture, [CountAttribute(Count = 4)] Byte[] coords) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_byte_coordinates] + /// Set the current texture coordinates + /// + /// + /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value. + /// + /// [length: 4] + /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. + /// + [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] + [CLSCompliant(false)] + public static void MultiTexCoord4(OpenTK.Graphics.ES11.TextureUnit texture, [CountAttribute(Count = 4)] ref Byte coords) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_byte_coordinates] + /// Set the current texture coordinates + /// + /// + /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value. + /// + /// [length: 4] + /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. + /// + [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] + [CLSCompliant(false)] + public static unsafe void MultiTexCoord4(OpenTK.Graphics.ES11.TextureUnit texture, [CountAttribute(Count = 4)] Byte* coords) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_byte_coordinates] + /// Set the current texture coordinates + /// + /// + /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value. + /// + /// [length: 4] + /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. + /// + [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] + [CLSCompliant(false)] + public static void MultiTexCoord4(OpenTK.Graphics.ES11.TextureUnit texture, [CountAttribute(Count = 4)] SByte[] coords) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_byte_coordinates] + /// Set the current texture coordinates + /// + /// + /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value. + /// + /// [length: 4] + /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. + /// + [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] + [CLSCompliant(false)] + public static void MultiTexCoord4(OpenTK.Graphics.ES11.TextureUnit texture, [CountAttribute(Count = 4)] ref SByte coords) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_byte_coordinates] + /// Set the current texture coordinates + /// + /// + /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value. + /// + /// [length: 4] + /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command. + /// + [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] + [CLSCompliant(false)] + public static unsafe void MultiTexCoord4(OpenTK.Graphics.ES11.TextureUnit texture, [CountAttribute(Count = 4)] SByte* coords) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point] + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord4xOES")] + public static void MultiTexCoord4x(OpenTK.Graphics.ES11.All texture, Int32 s, Int32 t, Int32 r, Int32 q) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] /// /// @@ -12932,11 +18505,12 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord4xOES")] - public static void MultiTexCoord4x(OpenTK.Graphics.ES11.All texture, Int32 s, Int32 t, Int32 r, Int32 q) { throw new BindingsNotRewrittenException(); } + public static void MultiTexCoord4x(OpenTK.Graphics.ES11.TextureUnit texture, Int32 s, Int32 t, Int32 r, Int32 q) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord4xvOES")] [CLSCompliant(false)] public static void MultiTexCoord4x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] Int32[] coords) { throw new BindingsNotRewrittenException(); } @@ -12944,6 +18518,7 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord4xvOES")] [CLSCompliant(false)] public static void MultiTexCoord4x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } @@ -12951,10 +18526,32 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord4xvOES")] [CLSCompliant(false)] public static unsafe void MultiTexCoord4x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] Int32* coords) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] + /// + /// [length: 4] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord4xvOES")] + [CLSCompliant(false)] + public static void MultiTexCoord4x(OpenTK.Graphics.ES11.TextureUnit texture, [CountAttribute(Count = 4)] Int32[] coords) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point] + /// + /// [length: 4] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord4xvOES")] + [CLSCompliant(false)] + public static void MultiTexCoord4x(OpenTK.Graphics.ES11.TextureUnit texture, [CountAttribute(Count = 4)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point] + /// + /// [length: 4] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord4xvOES")] + [CLSCompliant(false)] + public static unsafe void MultiTexCoord4x(OpenTK.Graphics.ES11.TextureUnit texture, [CountAttribute(Count = 4)] Int32* coords) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultMatrixxOES")] @@ -13058,9 +18655,16 @@ namespace OpenTK.Graphics.ES11 /// [requires: OES_fixed_point] /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelTransferxOES")] public static void PixelTransferx(OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] + /// + /// + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelTransferxOES")] + public static void PixelTransferx(OpenTK.Graphics.ES11.PixelTransferParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] /// /// @@ -13332,9 +18936,28 @@ namespace OpenTK.Graphics.ES11 /// /// Specifies the height of the renderbuffer in pixels. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glRenderbufferStorageOES")] public static void RenderbufferStorage(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_framebuffer_object] + /// Create and initialize a renderbuffer object's data store + /// + /// + /// Specifies the renderbuffer target. The symbolic constant must be Renderbuffer. + /// + /// + /// Specifies the color-renderable, depth-renderable, or stencil-renderable format of the renderbuffer. Must be one of the following symbolic constants: Rgba4, Rgb565, Rgb5A1, DepthComponent16, or StencilIndex8. + /// + /// + /// Specifies the width of the renderbuffer in pixels. + /// + /// + /// Specifies the height of the renderbuffer in pixels. + /// + [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glRenderbufferStorageOES")] + public static void RenderbufferStorage(OpenTK.Graphics.ES11.RenderbufferTarget target, OpenTK.Graphics.ES11.InternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] /// /// @@ -13762,13 +19385,22 @@ namespace OpenTK.Graphics.ES11 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexEnvxOES")] public static void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] + /// + /// + /// + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexEnvxOES")] + public static void TexEnvx(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexEnvxvOES")] [CLSCompliant(false)] public static void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -13777,10 +19409,43 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexEnvxvOES")] [CLSCompliant(false)] public static unsafe void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexEnvxvOES")] + [CLSCompliant(false)] + public static void TexEnvx(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexEnvxvOES")] + [CLSCompliant(false)] + public static unsafe void TexEnvx(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_cube_map] + /// Control the generation of texture coordinates + /// + /// + /// Specifies a texture coordinate. Must be one of S, T, R, or Q. + /// + /// + /// Specifies the symbolic name of the texture-coordinate generation function. Must be TextureGenMode. + /// + /// + /// Specifies a single-valued texture generation parameter, one of ObjectLinear, EyeLinear, SphereMap, NormalMap, or ReflectionMap. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glTexGenfOES")] + public static void TexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, Single param) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_cube_map] /// Control the generation of texture coordinates /// @@ -13794,7 +19459,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a single-valued texture generation parameter, one of ObjectLinear, EyeLinear, SphereMap, NormalMap, or ReflectionMap. /// [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glTexGenfOES")] - public static void TexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, Single param) { throw new BindingsNotRewrittenException(); } + public static void TexGen(OpenTK.Graphics.ES11.TextureCoordName coord, OpenTK.Graphics.ES11.TextureGenParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_cube_map] /// Control the generation of texture coordinates @@ -13808,6 +19473,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] /// Specifies a single-valued texture generation parameter, one of ObjectLinear, EyeLinear, SphereMap, NormalMap, or ReflectionMap. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glTexGenfvOES")] [CLSCompliant(false)] public static void TexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } @@ -13824,10 +19490,59 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] /// Specifies a single-valued texture generation parameter, one of ObjectLinear, EyeLinear, SphereMap, NormalMap, or ReflectionMap. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glTexGenfvOES")] [CLSCompliant(false)] public static unsafe void TexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_cube_map] + /// Control the generation of texture coordinates + /// + /// + /// Specifies a texture coordinate. Must be one of S, T, R, or Q. + /// + /// + /// Specifies the symbolic name of the texture-coordinate generation function. Must be TextureGenMode. + /// + /// [length: COMPSIZE(pname)] + /// Specifies a single-valued texture generation parameter, one of ObjectLinear, EyeLinear, SphereMap, NormalMap, or ReflectionMap. + /// + [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glTexGenfvOES")] + [CLSCompliant(false)] + public static void TexGen(OpenTK.Graphics.ES11.TextureCoordName coord, OpenTK.Graphics.ES11.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_cube_map] + /// Control the generation of texture coordinates + /// + /// + /// Specifies a texture coordinate. Must be one of S, T, R, or Q. + /// + /// + /// Specifies the symbolic name of the texture-coordinate generation function. Must be TextureGenMode. + /// + /// [length: COMPSIZE(pname)] + /// Specifies a single-valued texture generation parameter, one of ObjectLinear, EyeLinear, SphereMap, NormalMap, or ReflectionMap. + /// + [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glTexGenfvOES")] + [CLSCompliant(false)] + public static unsafe void TexGen(OpenTK.Graphics.ES11.TextureCoordName coord, OpenTK.Graphics.ES11.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_cube_map] + /// Control the generation of texture coordinates + /// + /// + /// Specifies a texture coordinate. Must be one of S, T, R, or Q. + /// + /// + /// Specifies the symbolic name of the texture-coordinate generation function. Must be TextureGenMode. + /// + /// + /// Specifies a single-valued texture generation parameter, one of ObjectLinear, EyeLinear, SphereMap, NormalMap, or ReflectionMap. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glTexGeniOES")] + public static void TexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_cube_map] /// Control the generation of texture coordinates /// @@ -13841,7 +19556,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a single-valued texture generation parameter, one of ObjectLinear, EyeLinear, SphereMap, NormalMap, or ReflectionMap. /// [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glTexGeniOES")] - public static void TexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } + public static void TexGen(OpenTK.Graphics.ES11.TextureCoordName coord, OpenTK.Graphics.ES11.TextureGenParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_cube_map] /// Control the generation of texture coordinates @@ -13855,6 +19570,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] /// Specifies a single-valued texture generation parameter, one of ObjectLinear, EyeLinear, SphereMap, NormalMap, or ReflectionMap. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glTexGenivOES")] [CLSCompliant(false)] public static void TexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -13871,21 +19587,63 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] /// Specifies a single-valued texture generation parameter, one of ObjectLinear, EyeLinear, SphereMap, NormalMap, or ReflectionMap. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glTexGenivOES")] [CLSCompliant(false)] public static unsafe void TexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_cube_map] + /// Control the generation of texture coordinates + /// + /// + /// Specifies a texture coordinate. Must be one of S, T, R, or Q. + /// + /// + /// Specifies the symbolic name of the texture-coordinate generation function. Must be TextureGenMode. + /// + /// [length: COMPSIZE(pname)] + /// Specifies a single-valued texture generation parameter, one of ObjectLinear, EyeLinear, SphereMap, NormalMap, or ReflectionMap. + /// + [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glTexGenivOES")] + [CLSCompliant(false)] + public static void TexGen(OpenTK.Graphics.ES11.TextureCoordName coord, OpenTK.Graphics.ES11.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_cube_map] + /// Control the generation of texture coordinates + /// + /// + /// Specifies a texture coordinate. Must be one of S, T, R, or Q. + /// + /// + /// Specifies the symbolic name of the texture-coordinate generation function. Must be TextureGenMode. + /// + /// [length: COMPSIZE(pname)] + /// Specifies a single-valued texture generation parameter, one of ObjectLinear, EyeLinear, SphereMap, NormalMap, or ReflectionMap. + /// + [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glTexGenivOES")] + [CLSCompliant(false)] + public static unsafe void TexGen(OpenTK.Graphics.ES11.TextureCoordName coord, OpenTK.Graphics.ES11.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point|OES_texture_cube_map] /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point|OES_texture_cube_map", Version = "", EntryPoint = "glTexGenxOES")] public static void TexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point|OES_texture_cube_map] + /// + /// + /// + [AutoGenerated(Category = "OES_fixed_point|OES_texture_cube_map", Version = "", EntryPoint = "glTexGenxOES")] + public static void TexGenx(OpenTK.Graphics.ES11.TextureCoordName coord, OpenTK.Graphics.ES11.TextureGenParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point|OES_texture_cube_map] /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point|OES_texture_cube_map", Version = "", EntryPoint = "glTexGenxvOES")] [CLSCompliant(false)] public static void TexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -13894,21 +19652,47 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point|OES_texture_cube_map", Version = "", EntryPoint = "glTexGenxvOES")] [CLSCompliant(false)] public static unsafe void TexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point|OES_texture_cube_map] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_fixed_point|OES_texture_cube_map", Version = "", EntryPoint = "glTexGenxvOES")] + [CLSCompliant(false)] + public static void TexGenx(OpenTK.Graphics.ES11.TextureCoordName coord, OpenTK.Graphics.ES11.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point|OES_texture_cube_map] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_fixed_point|OES_texture_cube_map", Version = "", EntryPoint = "glTexGenxvOES")] + [CLSCompliant(false)] + public static unsafe void TexGenx(OpenTK.Graphics.ES11.TextureCoordName coord, OpenTK.Graphics.ES11.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexParameterxOES")] public static void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] + /// + /// + /// + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexParameterxOES")] + public static void TexParameterx(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.GetTextureParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexParameterxvOES")] [CLSCompliant(false)] public static void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -13917,10 +19701,27 @@ namespace OpenTK.Graphics.ES11 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexParameterxvOES")] [CLSCompliant(false)] public static unsafe void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexParameterxvOES")] + [CLSCompliant(false)] + public static void TexParameterx(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.GetTextureParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_fixed_point] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexParameterxvOES")] + [CLSCompliant(false)] + public static unsafe void TexParameterx(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.GetTextureParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_fixed_point] /// /// @@ -14356,15 +20157,14 @@ namespace OpenTK.Graphics.ES11 /// [requires: QCOM_tiled_rendering] /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glEndTilingQCOM")] - [CLSCompliant(false)] - public static void EndTiling(Int32 preserveMask) { throw new BindingsNotRewrittenException(); } + public static void EndTiling(OpenTK.Graphics.ES11.All preserveMask) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_tiled_rendering] /// [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glEndTilingQCOM")] - [CLSCompliant(false)] - public static void EndTiling(UInt32 preserveMask) { throw new BindingsNotRewrittenException(); } + public static void EndTiling(OpenTK.Graphics.ES11.BufferBitQcom preserveMask) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -14544,6 +20344,7 @@ namespace OpenTK.Graphics.ES11 /// /// [length: *length] /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } @@ -14553,6 +20354,7 @@ namespace OpenTK.Graphics.ES11 /// /// [length: *length] /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } @@ -14562,6 +20364,7 @@ namespace OpenTK.Graphics.ES11 /// /// [length: *length] /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] public static unsafe void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } @@ -14573,6 +20376,34 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] + public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES11.ShaderType shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get2] + /// + /// + /// [length: *length] + /// + [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] + public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES11.ShaderType shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get2] + /// + /// + /// [length: *length] + /// + [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] + public static unsafe void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES11.ShaderType shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get2] + /// + /// + /// [length: *length] + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] @@ -14580,6 +20411,7 @@ namespace OpenTK.Graphics.ES11 /// /// [length: *length] /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } @@ -14589,10 +20421,38 @@ namespace OpenTK.Graphics.ES11 /// /// [length: *length] /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] public static unsafe void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } + /// [requires: QCOM_extended_get2] + /// + /// + /// [length: *length] + /// + [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] + public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES11.ShaderType shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get2] + /// + /// + /// [length: *length] + /// + [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] + public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES11.ShaderType shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get2] + /// + /// + /// [length: *length] + /// + [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] + public static unsafe void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES11.ShaderType shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } + /// [requires: QCOM_extended_get2] /// [length: maxPrograms] /// @@ -14863,6 +20723,7 @@ namespace OpenTK.Graphics.ES11 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] public static void ExtGetTexSubImage(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [OutAttribute] IntPtr texels) { throw new BindingsNotRewrittenException(); } @@ -14878,6 +20739,7 @@ namespace OpenTK.Graphics.ES11 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] [CLSCompliant(false)] public static void ExtGetTexSubImage(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T10[] texels) @@ -14896,6 +20758,7 @@ namespace OpenTK.Graphics.ES11 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] [CLSCompliant(false)] public static void ExtGetTexSubImage(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T10[,] texels) @@ -14914,6 +20777,7 @@ namespace OpenTK.Graphics.ES11 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] [CLSCompliant(false)] public static void ExtGetTexSubImage(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T10[,,] texels) @@ -14932,11 +20796,98 @@ namespace OpenTK.Graphics.ES11 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] public static void ExtGetTexSubImage(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] ref T10 texels) where T10 : struct { throw new BindingsNotRewrittenException(); } + /// [requires: QCOM_extended_get] + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] + public static void ExtGetTexSubImage(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [OutAttribute] IntPtr texels) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get] + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] + [CLSCompliant(false)] + public static void ExtGetTexSubImage(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [InAttribute, OutAttribute] T10[] texels) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get] + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] + [CLSCompliant(false)] + public static void ExtGetTexSubImage(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [InAttribute, OutAttribute] T10[,] texels) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get] + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] + [CLSCompliant(false)] + public static void ExtGetTexSubImage(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [InAttribute, OutAttribute] T10[,,] texels) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get] + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] + public static void ExtGetTexSubImage(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [InAttribute, OutAttribute] ref T10 texels) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + /// [requires: QCOM_extended_get] /// /// @@ -15112,9 +21063,10 @@ namespace OpenTK.Graphics.ES11 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glStartTilingQCOM")] [CLSCompliant(false)] - public static void StartTiling(Int32 x, Int32 y, Int32 width, Int32 height, Int32 preserveMask) { throw new BindingsNotRewrittenException(); } + public static void StartTiling(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.All preserveMask) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_tiled_rendering] /// @@ -15124,38 +21076,59 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glStartTilingQCOM")] [CLSCompliant(false)] - public static void StartTiling(UInt32 x, UInt32 y, UInt32 width, UInt32 height, UInt32 preserveMask) { throw new BindingsNotRewrittenException(); } + public static void StartTiling(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.BufferBitQcom preserveMask) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_tiled_rendering] + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glStartTilingQCOM")] + [CLSCompliant(false)] + public static void StartTiling(UInt32 x, UInt32 y, UInt32 width, UInt32 height, OpenTK.Graphics.ES11.All preserveMask) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_tiled_rendering] + /// + /// + /// + /// + /// + [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glStartTilingQCOM")] + [CLSCompliant(false)] + public static void StartTiling(UInt32 x, UInt32 y, UInt32 width, UInt32 height, OpenTK.Graphics.ES11.BufferBitQcom preserveMask) { throw new BindingsNotRewrittenException(); } } [Slot(31)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern System.Int32 glClientWaitSyncAPPLE(IntPtr sync, UInt32 flags, UInt64 timeout); + private static extern System.Int32 glClientWaitSyncAPPLE(IntPtr sync, System.Int32 flags, UInt64 timeout); [Slot(53)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glCopyTextureLevelsAPPLE(UInt32 destinationTexture, UInt32 sourceTexture, Int32 sourceBaseLevel, Int32 sourceLevelCount); - [Slot(60)] + [Slot(66)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDeleteSyncAPPLE(IntPtr sync); - [Slot(106)] + [Slot(112)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern IntPtr glFenceSyncAPPLE(System.Int32 condition, UInt32 flags); - [Slot(151)] + [Slot(159)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetInteger64vAPPLE(System.Int32 pname, [OutAttribute] Int64* @params); - [Slot(168)] + [Slot(181)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetSyncivAPPLE(IntPtr sync, System.Int32 pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values); - [Slot(189)] + [Slot(203)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsSyncAPPLE(IntPtr sync); - [Slot(294)] + [Slot(318)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glRenderbufferStorageMultisampleAPPLE(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(298)] + [Slot(322)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glResolveMultisampleFramebufferAPPLE(); - [Slot(381)] + [Slot(405)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glWaitSyncAPPLE(IntPtr sync, UInt32 flags, UInt64 timeout); [Slot(1)] @@ -15241,416 +21214,455 @@ namespace OpenTK.Graphics.ES11 private static extern void glCullFace(System.Int32 mode); [Slot(56)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glDebugMessageCallback(DebugProc callback, IntPtr userParam); + [Slot(58)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glDebugMessageControl(System.Int32 source, System.Int32 type, System.Int32 severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled); + [Slot(60)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glDebugMessageInsert(System.Int32 source, System.Int32 type, UInt32 id, System.Int32 severity, Int32 length, [CountAttribute(Computed = "buf,length")] IntPtr buf); + [Slot(62)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* buffers); - [Slot(61)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glDeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures); - [Slot(63)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDepthFunc(System.Int32 func); - [Slot(64)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDepthMask(bool flag); - [Slot(65)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDepthRangef(Single n, Single f); [Slot(67)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDepthRangex(Int32 n, Int32 f); + private static extern unsafe void glDeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures); [Slot(69)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDisable(System.Int32 cap); + private static extern void glDepthFunc(System.Int32 func); [Slot(70)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDisableClientState(System.Int32 array); + private static extern void glDepthMask(bool flag); + [Slot(71)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glDepthRangef(Single n, Single f); [Slot(73)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glDepthRangex(Int32 n, Int32 f); + [Slot(75)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glDisable(System.Int32 cap); + [Slot(76)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glDisableClientState(System.Int32 array); + [Slot(79)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawArrays(System.Int32 mode, Int32 first, Int32 count); - [Slot(74)] + [Slot(80)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawElements(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices); - [Slot(85)] + [Slot(91)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEnable(System.Int32 cap); - [Slot(86)] + [Slot(92)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEnableClientState(System.Int32 array); - [Slot(107)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFinish(); - [Slot(109)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFlush(); - [Slot(111)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFogf(System.Int32 pname, Single param); - [Slot(112)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glFogfv(System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); [Slot(113)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFogx(System.Int32 pname, Int32 param); + private static extern void glFinish(); [Slot(115)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glFogxv(System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* param); + private static extern void glFlush(); + [Slot(117)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glFogf(System.Int32 pname, Single param); + [Slot(118)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glFogfv(System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); + [Slot(119)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glFogx(System.Int32 pname, Int32 param); [Slot(121)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glFogxv(System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* param); + [Slot(127)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFrontFace(System.Int32 mode); - [Slot(122)] + [Slot(128)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFrustumf(Single l, Single r, Single b, Single t, Single n, Single f); - [Slot(124)] + [Slot(130)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFrustumx(Int32 l, Int32 r, Int32 b, Int32 t, Int32 n, Int32 f); - [Slot(126)] + [Slot(132)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* buffers); - [Slot(131)] + [Slot(137)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* textures); - [Slot(133)] + [Slot(139)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetBooleanv(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data); - [Slot(134)] + [Slot(140)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetBufferParameteriv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(136)] + [Slot(142)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetClipPlanef(System.Int32 plane, [OutAttribute, CountAttribute(Count = 4)] Single* equation); - [Slot(138)] + [Slot(144)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetClipPlanex(System.Int32 plane, [OutAttribute, CountAttribute(Count = 4)] Int32* equation); - [Slot(143)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern System.Int32 glGetError(); - [Slot(145)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetFixedv(System.Int32 pname, [OutAttribute] Int32* @params); [Slot(147)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetFloatv(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data); - [Slot(152)] + private static extern unsafe Int32 glGetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] System.Int32* sources, [OutAttribute, CountAttribute(Parameter = "count")] System.Int32* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] System.Int32* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr messageLog); + [Slot(151)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetIntegerv(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data); + private static extern System.Int32 glGetError(); [Slot(153)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetLightfv(System.Int32 light, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); + private static extern unsafe void glGetFixedv(System.Int32 pname, [OutAttribute] Int32* @params); [Slot(155)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetLightxv(System.Int32 light, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(158)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetMaterialfv(System.Int32 face, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); + private static extern unsafe void glGetFloatv(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data); [Slot(160)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetIntegerv(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data); + [Slot(161)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetLightfv(System.Int32 light, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); + [Slot(163)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetLightxv(System.Int32 light, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + [Slot(166)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetMaterialfv(System.Int32 face, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); + [Slot(168)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetMaterialxv(System.Int32 face, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(164)] + [Slot(172)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetObjectLabel(System.Int32 identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr label); + [Slot(174)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr label); + [Slot(176)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetPixelMapxv(System.Int32 map, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32* values); - [Slot(165)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetPointerv(System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params); - [Slot(167)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern IntPtr glGetString(System.Int32 name); - [Slot(169)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTexEnvfv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); - [Slot(170)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTexEnviv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(171)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTexEnvxv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(177)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTexParameterfv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); - [Slot(178)] + private static extern void glGetPointerv(System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params); + [Slot(180)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTexParameteriv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(179)] + private static extern IntPtr glGetString(System.Int32 name); + [Slot(182)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTexParameterxv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(181)] + private static extern unsafe void glGetTexEnvfv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); + [Slot(183)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glHint(System.Int32 target, System.Int32 mode); + private static extern unsafe void glGetTexEnviv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(184)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsBuffer(UInt32 buffer); - [Slot(185)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsEnabled(System.Int32 cap); + private static extern unsafe void glGetTexEnvxv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(190)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsTexture(UInt32 texture); + private static extern unsafe void glGetTexParameterfv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); + [Slot(191)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetTexParameteriv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(192)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glLightf(System.Int32 light, System.Int32 pname, Single param); - [Slot(193)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glLightfv(System.Int32 light, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); + private static extern unsafe void glGetTexParameterxv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(194)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glLightModelf(System.Int32 pname, Single param); - [Slot(195)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glLightModelfv(System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); - [Slot(196)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glLightModelx(System.Int32 pname, Int32 param); + private static extern void glHint(System.Int32 target, System.Int32 mode); [Slot(198)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glLightModelxv(System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* param); - [Slot(200)] + private static extern byte glIsBuffer(UInt32 buffer); + [Slot(199)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glLightx(System.Int32 light, System.Int32 pname, Int32 param); - [Slot(202)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glLightxv(System.Int32 light, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + private static extern byte glIsEnabled(System.Int32 cap); [Slot(204)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glLineWidth(Single width); - [Slot(205)] + private static extern byte glIsTexture(UInt32 texture); + [Slot(206)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glLineWidthx(Int32 width); + private static extern void glLightf(System.Int32 light, System.Int32 pname, Single param); [Slot(207)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glLoadIdentity(); + private static extern unsafe void glLightfv(System.Int32 light, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); [Slot(208)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glLoadMatrixf([CountAttribute(Count = 16)] Single* m); + private static extern void glLightModelf(System.Int32 pname, Single param); [Slot(209)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glLoadMatrixx([CountAttribute(Count = 16)] Int32* m); - [Slot(213)] + private static extern unsafe void glLightModelfv(System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); + [Slot(210)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glLogicOp(System.Int32 opcode); - [Slot(220)] + private static extern void glLightModelx(System.Int32 pname, Int32 param); + [Slot(212)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMaterialf(System.Int32 face, System.Int32 pname, Single param); + private static extern unsafe void glLightModelxv(System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* param); + [Slot(214)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glLightx(System.Int32 light, System.Int32 pname, Int32 param); + [Slot(216)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glLightxv(System.Int32 light, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + [Slot(218)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glLineWidth(Single width); + [Slot(219)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glLineWidthx(Int32 width); [Slot(221)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMaterialfv(System.Int32 face, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); + private static extern void glLoadIdentity(); [Slot(222)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMaterialx(System.Int32 face, System.Int32 pname, Int32 param); - [Slot(224)] + private static extern unsafe void glLoadMatrixf([CountAttribute(Count = 16)] Single* m); + [Slot(223)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMaterialxv(System.Int32 face, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* param); + private static extern unsafe void glLoadMatrixx([CountAttribute(Count = 16)] Int32* m); [Slot(227)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glLogicOp(System.Int32 opcode); + [Slot(234)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMaterialf(System.Int32 face, System.Int32 pname, Single param); + [Slot(235)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMaterialfv(System.Int32 face, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); + [Slot(236)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMaterialx(System.Int32 face, System.Int32 pname, Int32 param); + [Slot(238)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMaterialxv(System.Int32 face, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* param); + [Slot(241)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMatrixMode(System.Int32 mode); - [Slot(244)] + [Slot(258)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiTexCoord4f(System.Int32 target, Single s, Single t, Single r, Single q); - [Slot(245)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexCoord4x(System.Int32 texture, Int32 s, Int32 t, Int32 r, Int32 q); - [Slot(248)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultMatrixf([CountAttribute(Count = 16)] Single* m); - [Slot(249)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultMatrixx([CountAttribute(Count = 16)] Int32* m); - [Slot(252)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNormal3f(Single nx, Single ny, Single nz); - [Slot(253)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNormal3x(Int32 nx, Int32 ny, Int32 nz); - [Slot(256)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNormalPointer(System.Int32 type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer); - [Slot(257)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glOrthof(Single l, Single r, Single b, Single t, Single n, Single f); [Slot(259)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glOrthox(Int32 l, Int32 r, Int32 b, Int32 t, Int32 n, Int32 f); + private static extern void glMultiTexCoord4x(System.Int32 texture, Int32 s, Int32 t, Int32 r, Int32 q); [Slot(262)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPixelMapx(System.Int32 map, Int32 size, [CountAttribute(Parameter = "size")] Int32* values); + private static extern unsafe void glMultMatrixf([CountAttribute(Count = 16)] Single* m); [Slot(263)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPixelStorei(System.Int32 pname, Int32 param); - [Slot(264)] + private static extern unsafe void glMultMatrixx([CountAttribute(Count = 16)] Int32* m); + [Slot(266)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPixelStorex(System.Int32 pname, Int32 param); + private static extern void glNormal3f(Single nx, Single ny, Single nz); [Slot(267)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPointParameterf(System.Int32 pname, Single param); - [Slot(268)] + private static extern void glNormal3x(Int32 nx, Int32 ny, Int32 nz); + [Slot(270)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPointParameterfv(System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); - [Slot(269)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPointParameterx(System.Int32 pname, Int32 param); + private static extern void glNormalPointer(System.Int32 type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer); [Slot(271)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPointParameterxv(System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + private static extern void glObjectLabel(System.Int32 identifier, UInt32 name, Int32 length, [CountAttribute(Computed = "label,length")] IntPtr label); [Slot(273)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPointSize(Single size); + private static extern void glObjectPtrLabel(IntPtr ptr, Int32 length, [CountAttribute(Computed = "label,length")] IntPtr label); [Slot(275)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPointSizex(Int32 size); + private static extern void glOrthof(Single l, Single r, Single b, Single t, Single n, Single f); [Slot(277)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPolygonOffset(Single factor, Single units); - [Slot(278)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPolygonOffsetx(Int32 factor, Int32 units); + private static extern void glOrthox(Int32 l, Int32 r, Int32 b, Int32 t, Int32 n, Int32 f); [Slot(280)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPopMatrix(); + private static extern unsafe void glPixelMapx(System.Int32 map, Int32 size, [CountAttribute(Parameter = "size")] Int32* values); + [Slot(281)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPixelStorei(System.Int32 pname, Int32 param); [Slot(282)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPushMatrix(); + private static extern void glPixelStorex(System.Int32 pname, Int32 param); + [Slot(285)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPointParameterf(System.Int32 pname, Single param); + [Slot(286)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glPointParameterfv(System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); + [Slot(287)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPointParameterx(System.Int32 pname, Int32 param); + [Slot(289)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glPointParameterxv(System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); [Slot(291)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, System.Int32 format, System.Int32 type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); - [Slot(299)] + private static extern void glPointSize(Single size); + [Slot(293)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRotatef(Single angle, Single x, Single y, Single z); - [Slot(300)] + private static extern void glPointSizex(Int32 size); + [Slot(295)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRotatex(Int32 angle, Int32 x, Int32 y, Int32 z); - [Slot(302)] + private static extern void glPolygonOffset(Single factor, Single units); + [Slot(296)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSampleCoverage(Single value, bool invert); + private static extern void glPolygonOffsetx(Int32 factor, Int32 units); + [Slot(298)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPopDebugGroup(); + [Slot(301)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPopMatrix(); [Slot(303)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSampleCoveragex(Int32 value, bool invert); - [Slot(305)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glScalef(Single x, Single y, Single z); + private static extern void glPushDebugGroup(System.Int32 source, UInt32 id, Int32 length, [CountAttribute(Computed = "message,length")] IntPtr message); [Slot(306)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPushMatrix(); + [Slot(315)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, System.Int32 format, System.Int32 type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); + [Slot(323)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glRotatef(Single angle, Single x, Single y, Single z); + [Slot(324)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glRotatex(Int32 angle, Int32 x, Int32 y, Int32 z); + [Slot(326)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glSampleCoverage(Single value, bool invert); + [Slot(327)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glSampleCoveragex(Int32 value, bool invert); + [Slot(329)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glScalef(Single x, Single y, Single z); + [Slot(330)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glScalex(Int32 x, Int32 y, Int32 z); - [Slot(308)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glScissor(Int32 x, Int32 y, Int32 width, Int32 height); - [Slot(310)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glShadeModel(System.Int32 mode); - [Slot(312)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilFunc(System.Int32 func, Int32 @ref, UInt32 mask); - [Slot(313)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilMask(UInt32 mask); - [Slot(314)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilOp(System.Int32 fail, System.Int32 zfail, System.Int32 zpass); [Slot(332)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexCoordPointer(Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer); - [Slot(333)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexEnvf(System.Int32 target, System.Int32 pname, Single param); + private static extern void glScissor(Int32 x, Int32 y, Int32 width, Int32 height); [Slot(334)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexEnvfv(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); - [Slot(335)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexEnvi(System.Int32 target, System.Int32 pname, Int32 param); + private static extern void glShadeModel(System.Int32 mode); [Slot(336)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexEnviv(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + private static extern void glStencilFunc(System.Int32 func, Int32 @ref, UInt32 mask); [Slot(337)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexEnvx(System.Int32 target, System.Int32 pname, Int32 param); - [Slot(339)] + private static extern void glStencilMask(UInt32 mask); + [Slot(338)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexEnvxv(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); - [Slot(347)] + private static extern void glStencilOp(System.Int32 fail, System.Int32 zfail, System.Int32 zpass); + [Slot(356)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexImage2D(System.Int32 target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); - [Slot(348)] + private static extern void glTexCoordPointer(Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer); + [Slot(357)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexParameterf(System.Int32 target, System.Int32 pname, Single param); - [Slot(349)] + private static extern void glTexEnvf(System.Int32 target, System.Int32 pname, Single param); + [Slot(358)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexParameterfv(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); - [Slot(350)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexParameteri(System.Int32 target, System.Int32 pname, Int32 param); - [Slot(351)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexParameteriv(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); - [Slot(352)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexParameterx(System.Int32 target, System.Int32 pname, Int32 param); - [Slot(354)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexParameterxv(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + private static extern unsafe void glTexEnvfv(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); [Slot(359)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexSubImage2D(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); + private static extern void glTexEnvi(System.Int32 target, System.Int32 pname, Int32 param); + [Slot(360)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexEnviv(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + [Slot(361)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexEnvx(System.Int32 target, System.Int32 pname, Int32 param); [Slot(363)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexEnvxv(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + [Slot(371)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexImage2D(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); + [Slot(372)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexParameterf(System.Int32 target, System.Int32 pname, Single param); + [Slot(373)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexParameterfv(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); + [Slot(374)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexParameteri(System.Int32 target, System.Int32 pname, Int32 param); + [Slot(375)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexParameteriv(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + [Slot(376)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexParameterx(System.Int32 target, System.Int32 pname, Int32 param); + [Slot(378)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexParameterxv(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + [Slot(383)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexSubImage2D(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); + [Slot(387)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTranslatef(Single x, Single y, Single z); - [Slot(364)] + [Slot(388)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTranslatex(Int32 x, Int32 y, Int32 z); - [Slot(379)] + [Slot(403)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexPointer(Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer); - [Slot(380)] + [Slot(404)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glViewport(Int32 x, Int32 y, Int32 width, Int32 height); [Slot(12)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glBlendEquationEXT(System.Int32 mode); - [Slot(72)] + [Slot(78)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDiscardFramebufferEXT(System.Int32 target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] System.Int32* attachments); - [Slot(110)] + [Slot(116)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFlushMappedBufferRangeEXT(System.Int32 target, IntPtr offset, IntPtr length); - [Slot(118)] + [Slot(124)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferTexture2DMultisampleEXT(System.Int32 target, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level, Int32 samples); - [Slot(149)] + [Slot(157)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern System.Int32 glGetGraphicsResetStatusEXT(); - [Slot(162)] + [Slot(170)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetnUniformfvEXT(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params); - [Slot(163)] + [Slot(171)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetnUniformivEXT(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params); - [Slot(217)] + [Slot(197)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern IntPtr glMapBufferRangeEXT(System.Int32 target, IntPtr offset, IntPtr length, UInt32 access); - [Slot(228)] + private static extern void glInsertEventMarkerEXT(Int32 length, IntPtr marker); + [Slot(231)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern IntPtr glMapBufferRangeEXT(System.Int32 target, IntPtr offset, IntPtr length, System.Int32 access); + [Slot(242)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiDrawArraysEXT(System.Int32 mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount); - [Slot(229)] + [Slot(243)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiDrawElementsEXT(System.Int32 mode, [CountAttribute(Computed = "primcount")] Int32* count, System.Int32 type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount); - [Slot(290)] + [Slot(300)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPopGroupMarkerEXT(); + [Slot(305)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPushGroupMarkerEXT(Int32 length, IntPtr marker); + [Slot(314)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glReadnPixelsEXT(Int32 x, Int32 y, Int32 width, Int32 height, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data); - [Slot(295)] + [Slot(319)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glRenderbufferStorageMultisampleEXT(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(356)] + [Slot(380)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexStorage1DEXT(System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width); - [Slot(357)] + [Slot(381)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexStorage2DEXT(System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(358)] + [Slot(382)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexStorage3DEXT(System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth); - [Slot(360)] + [Slot(384)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureStorage1DEXT(UInt32 texture, System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width); - [Slot(361)] + [Slot(385)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureStorage2DEXT(UInt32 texture, System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(362)] + [Slot(386)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureStorage3DEXT(UInt32 texture, System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth); [Slot(33)] @@ -15659,31 +21671,64 @@ namespace OpenTK.Graphics.ES11 [Slot(36)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glClipPlanexIMG(System.Int32 p, [CountAttribute(Count = 4)] Int32* eqn); - [Slot(119)] + [Slot(125)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferTexture2DMultisampleIMG(System.Int32 target, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level, Int32 samples); - [Slot(296)] + [Slot(320)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glRenderbufferStorageMultisampleIMG(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height); [Slot(57)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glDebugMessageCallbackKHR(DebugProcKhr callback, IntPtr userParam); + [Slot(59)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glDebugMessageControlKHR(System.Int32 source, System.Int32 type, System.Int32 severity, Int32 count, UInt32* ids, bool enabled); + [Slot(61)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glDebugMessageInsertKHR(System.Int32 source, System.Int32 type, UInt32 id, System.Int32 severity, Int32 length, IntPtr buf); + [Slot(148)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe Int32 glGetDebugMessageLogKHR(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] System.Int32* sources, [OutAttribute, CountAttribute(Parameter = "count")] System.Int32* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] System.Int32* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr messageLog); + [Slot(173)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetObjectLabelKHR(System.Int32 identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr label); + [Slot(175)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetObjectPtrLabelKHR(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr label); + [Slot(178)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glGetPointervKHR(System.Int32 pname, [OutAttribute] IntPtr @params); + [Slot(272)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glObjectLabelKHR(System.Int32 identifier, UInt32 name, Int32 length, IntPtr label); + [Slot(274)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glObjectPtrLabelKHR(IntPtr ptr, Int32 length, IntPtr label); + [Slot(299)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPopDebugGroupKHR(); + [Slot(304)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPushDebugGroupKHR(System.Int32 source, UInt32 id, Int32 length, IntPtr message); + [Slot(63)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteFencesNV(Int32 n, [CountAttribute(Parameter = "n")] UInt32* fences); - [Slot(108)] + [Slot(114)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFinishFenceNV(UInt32 fence); - [Slot(128)] + [Slot(134)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGenFencesNV(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* fences); - [Slot(144)] + [Slot(152)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetFenceivNV(UInt32 fence, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(186)] + [Slot(200)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsFenceNV(UInt32 fence); - [Slot(309)] + [Slot(333)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glSetFenceNV(UInt32 fence, System.Int32 condition); - [Slot(315)] + [Slot(339)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glTestFenceNV(UInt32 fence); [Slot(0)] @@ -15758,521 +21803,521 @@ namespace OpenTK.Graphics.ES11 [Slot(55)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glCurrentPaletteMatrixOES(UInt32 matrixpaletteindex); - [Slot(58)] + [Slot(64)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteFramebuffersOES(Int32 n, [CountAttribute(Parameter = "n")] UInt32* framebuffers); - [Slot(59)] + [Slot(65)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteRenderbuffersOES(Int32 n, [CountAttribute(Parameter = "n")] UInt32* renderbuffers); - [Slot(62)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glDeleteVertexArraysOES(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays); - [Slot(66)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDepthRangefOES(Single n, Single f); [Slot(68)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glDeleteVertexArraysOES(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays); + [Slot(72)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glDepthRangefOES(Single n, Single f); + [Slot(74)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDepthRangexOES(Int32 n, Int32 f); - [Slot(75)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDrawTexfOES(Single x, Single y, Single z, Single width, Single height); - [Slot(76)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glDrawTexfvOES(Single* coords); - [Slot(77)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDrawTexiOES(Int32 x, Int32 y, Int32 z, Int32 width, Int32 height); - [Slot(78)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glDrawTexivOES(Int32* coords); - [Slot(79)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDrawTexsOES(Int16 x, Int16 y, Int16 z, Int16 width, Int16 height); - [Slot(80)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glDrawTexsvOES(Int16* coords); [Slot(81)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDrawTexxOES(Int32 x, Int32 y, Int32 z, Int32 width, Int32 height); + private static extern void glDrawTexfOES(Single x, Single y, Single z, Single width, Single height); [Slot(82)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glDrawTexxvOES(Int32* coords); + private static extern unsafe void glDrawTexfvOES(Single* coords); [Slot(83)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glEGLImageTargetRenderbufferStorageOES(System.Int32 target, IntPtr image); + private static extern void glDrawTexiOES(Int32 x, Int32 y, Int32 z, Int32 width, Int32 height); [Slot(84)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glEGLImageTargetTexture2DOES(System.Int32 target, IntPtr image); - [Slot(89)] + private static extern unsafe void glDrawTexivOES(Int32* coords); + [Slot(85)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glEvalCoord1xOES(Int32 u); - [Slot(90)] + private static extern void glDrawTexsOES(Int16 x, Int16 y, Int16 z, Int16 width, Int16 height); + [Slot(86)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glEvalCoord1xvOES([CountAttribute(Count = 1)] Int32* coords); - [Slot(91)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glEvalCoord2xOES(Int32 u, Int32 v); - [Slot(92)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glEvalCoord2xvOES([CountAttribute(Count = 2)] Int32* coords); - [Slot(105)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glFeedbackBufferxOES(Int32 n, System.Int32 type, [CountAttribute(Parameter = "n")] Int32* buffer); - [Slot(114)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFogxOES(System.Int32 pname, Int32 param); - [Slot(116)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glFogxvOES(System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* param); - [Slot(117)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFramebufferRenderbufferOES(System.Int32 target, System.Int32 attachment, System.Int32 renderbuffertarget, UInt32 renderbuffer); - [Slot(120)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFramebufferTexture2DOES(System.Int32 target, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level); - [Slot(123)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFrustumfOES(Single l, Single r, Single b, Single t, Single n, Single f); - [Slot(125)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFrustumxOES(Int32 l, Int32 r, Int32 b, Int32 t, Int32 n, Int32 f); - [Slot(127)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGenerateMipmapOES(System.Int32 target); - [Slot(129)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGenFramebuffersOES(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* framebuffers); - [Slot(130)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGenRenderbuffersOES(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers); - [Slot(132)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGenVertexArraysOES(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays); - [Slot(135)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetBufferPointervOES(System.Int32 target, System.Int32 pname, [OutAttribute] IntPtr @params); - [Slot(137)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetClipPlanefOES(System.Int32 plane, [OutAttribute, CountAttribute(Count = 4)] Single* equation); - [Slot(139)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetClipPlanexOES(System.Int32 plane, [OutAttribute, CountAttribute(Count = 4)] Int32* equation); - [Slot(140)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetConvolutionParameterxvOES(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(146)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetFixedvOES(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(148)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetFramebufferAttachmentParameterivOES(System.Int32 target, System.Int32 attachment, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(150)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetHistogramParameterxvOES(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(154)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetLightxOES(System.Int32 light, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(157)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetMapxvOES(System.Int32 target, System.Int32 query, [OutAttribute, CountAttribute(Computed = "query")] Int32* v); - [Slot(159)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetMaterialxOES(System.Int32 face, System.Int32 pname, Int32 param); - [Slot(161)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetMaterialxvOES(System.Int32 face, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(166)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetRenderbufferParameterivOES(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(172)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTexEnvxvOES(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(173)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTexGenfvOES(System.Int32 coord, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); - [Slot(174)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTexGenivOES(System.Int32 coord, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(175)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTexGenxvOES(System.Int32 coord, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(176)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTexLevelParameterxvOES(System.Int32 target, Int32 level, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(180)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTexParameterxvOES(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(182)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glIndexxOES(Int32 component); - [Slot(183)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glIndexxvOES([CountAttribute(Count = 1)] Int32* component); - [Slot(187)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsFramebufferOES(UInt32 framebuffer); - [Slot(188)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsRenderbufferOES(UInt32 renderbuffer); - [Slot(191)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsVertexArrayOES(UInt32 array); - [Slot(197)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glLightModelxOES(System.Int32 pname, Int32 param); - [Slot(199)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glLightModelxvOES(System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* param); - [Slot(201)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glLightxOES(System.Int32 light, System.Int32 pname, Int32 param); - [Slot(203)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glLightxvOES(System.Int32 light, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); - [Slot(206)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glLineWidthxOES(Int32 width); - [Slot(210)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glLoadMatrixxOES([CountAttribute(Count = 16)] Int32* m); - [Slot(211)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glLoadPaletteFromModelViewMatrixOES(); - [Slot(212)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glLoadTransposeMatrixxOES([CountAttribute(Count = 16)] Int32* m); - [Slot(214)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMap1xOES(System.Int32 target, Int32 u1, Int32 u2, Int32 stride, Int32 order, Int32 points); - [Slot(215)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMap2xOES(System.Int32 target, Int32 u1, Int32 u2, Int32 ustride, Int32 uorder, Int32 v1, Int32 v2, Int32 vstride, Int32 vorder, Int32 points); - [Slot(216)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern IntPtr glMapBufferOES(System.Int32 target, System.Int32 access); - [Slot(218)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMapGrid1xOES(Int32 n, Int32 u1, Int32 u2); - [Slot(219)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMapGrid2xOES(Int32 n, Int32 u1, Int32 u2, Int32 v1, Int32 v2); - [Slot(223)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMaterialxOES(System.Int32 face, System.Int32 pname, Int32 param); - [Slot(225)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMaterialxvOES(System.Int32 face, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* param); - [Slot(226)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMatrixIndexPointerOES(Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer); - [Slot(230)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexCoord1bOES(System.Int32 texture, SByte s); - [Slot(231)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiTexCoord1bvOES(System.Int32 texture, [CountAttribute(Count = 1)] SByte* coords); - [Slot(232)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexCoord1xOES(System.Int32 texture, Int32 s); - [Slot(233)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiTexCoord1xvOES(System.Int32 texture, [CountAttribute(Count = 1)] Int32* coords); - [Slot(234)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexCoord2bOES(System.Int32 texture, SByte s, SByte t); - [Slot(235)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiTexCoord2bvOES(System.Int32 texture, [CountAttribute(Count = 2)] SByte* coords); - [Slot(236)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexCoord2xOES(System.Int32 texture, Int32 s, Int32 t); - [Slot(237)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiTexCoord2xvOES(System.Int32 texture, [CountAttribute(Count = 2)] Int32* coords); - [Slot(238)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexCoord3bOES(System.Int32 texture, SByte s, SByte t, SByte r); - [Slot(239)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiTexCoord3bvOES(System.Int32 texture, [CountAttribute(Count = 3)] SByte* coords); - [Slot(240)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexCoord3xOES(System.Int32 texture, Int32 s, Int32 t, Int32 r); - [Slot(241)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiTexCoord3xvOES(System.Int32 texture, [CountAttribute(Count = 3)] Int32* coords); - [Slot(242)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexCoord4bOES(System.Int32 texture, SByte s, SByte t, SByte r, SByte q); - [Slot(243)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiTexCoord4bvOES(System.Int32 texture, [CountAttribute(Count = 4)] SByte* coords); - [Slot(246)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexCoord4xOES(System.Int32 texture, Int32 s, Int32 t, Int32 r, Int32 q); - [Slot(247)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiTexCoord4xvOES(System.Int32 texture, [CountAttribute(Count = 4)] Int32* coords); - [Slot(250)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultMatrixxOES([CountAttribute(Count = 16)] Int32* m); - [Slot(251)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultTransposeMatrixxOES([CountAttribute(Count = 16)] Int32* m); - [Slot(254)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNormal3xOES(Int32 nx, Int32 ny, Int32 nz); - [Slot(255)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glNormal3xvOES([CountAttribute(Count = 3)] Int32* coords); - [Slot(258)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glOrthofOES(Single l, Single r, Single b, Single t, Single n, Single f); - [Slot(260)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glOrthoxOES(Int32 l, Int32 r, Int32 b, Int32 t, Int32 n, Int32 f); - [Slot(261)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPassThroughxOES(Int32 token); - [Slot(265)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPixelTransferxOES(System.Int32 pname, Int32 param); - [Slot(266)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPixelZoomxOES(Int32 xfactor, Int32 yfactor); - [Slot(270)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPointParameterxOES(System.Int32 pname, Int32 param); - [Slot(272)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPointParameterxvOES(System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); - [Slot(274)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPointSizePointerOES(System.Int32 type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer); - [Slot(276)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPointSizexOES(Int32 size); - [Slot(279)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPolygonOffsetxOES(Int32 factor, Int32 units); - [Slot(281)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPrioritizeTexturesxOES(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures, [CountAttribute(Parameter = "n")] Int32* priorities); - [Slot(283)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe Int32 glQueryMatrixxOES([OutAttribute, CountAttribute(Count = 16)] Int32* mantissa, [OutAttribute, CountAttribute(Count = 16)] Int32* exponent); - [Slot(284)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRasterPos2xOES(Int32 x, Int32 y); - [Slot(285)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glRasterPos2xvOES([CountAttribute(Count = 2)] Int32* coords); - [Slot(286)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRasterPos3xOES(Int32 x, Int32 y, Int32 z); - [Slot(287)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glRasterPos3xvOES([CountAttribute(Count = 3)] Int32* coords); - [Slot(288)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRasterPos4xOES(Int32 x, Int32 y, Int32 z, Int32 w); - [Slot(289)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glRasterPos4xvOES([CountAttribute(Count = 4)] Int32* coords); - [Slot(292)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRectxOES(Int32 x1, Int32 y1, Int32 x2, Int32 y2); - [Slot(293)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glRectxvOES([CountAttribute(Count = 2)] Int32* v1, [CountAttribute(Count = 2)] Int32* v2); - [Slot(297)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRenderbufferStorageOES(System.Int32 target, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(301)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRotatexOES(Int32 angle, Int32 x, Int32 y, Int32 z); - [Slot(304)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSampleCoveragexOES(Int32 value, bool invert); - [Slot(307)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glScalexOES(Int32 x, Int32 y, Int32 z); - [Slot(316)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexCoord1bOES(SByte s); - [Slot(317)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexCoord1bvOES([CountAttribute(Count = 1)] SByte* coords); - [Slot(318)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexCoord1xOES(Int32 s); - [Slot(319)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexCoord1xvOES([CountAttribute(Count = 1)] Int32* coords); - [Slot(320)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexCoord2bOES(SByte s, SByte t); - [Slot(321)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexCoord2bvOES([CountAttribute(Count = 2)] SByte* coords); - [Slot(322)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexCoord2xOES(Int32 s, Int32 t); - [Slot(323)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexCoord2xvOES([CountAttribute(Count = 2)] Int32* coords); - [Slot(324)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexCoord3bOES(SByte s, SByte t, SByte r); - [Slot(325)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexCoord3bvOES([CountAttribute(Count = 3)] SByte* coords); - [Slot(326)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexCoord3xOES(Int32 s, Int32 t, Int32 r); - [Slot(327)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexCoord3xvOES([CountAttribute(Count = 3)] Int32* coords); - [Slot(328)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexCoord4bOES(SByte s, SByte t, SByte r, SByte q); - [Slot(329)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexCoord4bvOES([CountAttribute(Count = 4)] SByte* coords); - [Slot(330)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexCoord4xOES(Int32 s, Int32 t, Int32 r, Int32 q); - [Slot(331)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexCoord4xvOES([CountAttribute(Count = 4)] Int32* coords); - [Slot(338)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexEnvxOES(System.Int32 target, System.Int32 pname, Int32 param); - [Slot(340)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexEnvxvOES(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); - [Slot(341)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexGenfOES(System.Int32 coord, System.Int32 pname, Single param); - [Slot(342)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexGenfvOES(System.Int32 coord, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); - [Slot(343)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexGeniOES(System.Int32 coord, System.Int32 pname, Int32 param); - [Slot(344)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexGenivOES(System.Int32 coord, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); - [Slot(345)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexGenxOES(System.Int32 coord, System.Int32 pname, Int32 param); - [Slot(346)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexGenxvOES(System.Int32 coord, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); - [Slot(353)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexParameterxOES(System.Int32 target, System.Int32 pname, Int32 param); - [Slot(355)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexParameterxvOES(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); - [Slot(365)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTranslatexOES(Int32 x, Int32 y, Int32 z); - [Slot(366)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glUnmapBufferOES(System.Int32 target); - [Slot(367)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertex2bOES(SByte x, SByte y); - [Slot(368)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertex2bvOES([CountAttribute(Count = 2)] SByte* coords); - [Slot(369)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertex2xOES(Int32 x); - [Slot(370)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertex2xvOES([CountAttribute(Count = 2)] Int32* coords); - [Slot(371)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertex3bOES(SByte x, SByte y, SByte z); - [Slot(372)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertex3bvOES([CountAttribute(Count = 3)] SByte* coords); - [Slot(373)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertex3xOES(Int32 x, Int32 y); - [Slot(374)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertex3xvOES([CountAttribute(Count = 3)] Int32* coords); - [Slot(375)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertex4bOES(SByte x, SByte y, SByte z, SByte w); - [Slot(376)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertex4bvOES([CountAttribute(Count = 4)] SByte* coords); - [Slot(377)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertex4xOES(Int32 x, Int32 y, Int32 z); - [Slot(378)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertex4xvOES([CountAttribute(Count = 4)] Int32* coords); - [Slot(382)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glWeightPointerOES(Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer); - [Slot(71)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDisableDriverControlQCOM(UInt32 driverControl); + private static extern unsafe void glDrawTexsvOES(Int16* coords); [Slot(87)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glEnableDriverControlQCOM(UInt32 driverControl); + private static extern void glDrawTexxOES(Int32 x, Int32 y, Int32 z, Int32 width, Int32 height); [Slot(88)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glEndTilingQCOM(UInt32 preserveMask); - [Slot(93)] + private static extern unsafe void glDrawTexxvOES(Int32* coords); + [Slot(89)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glExtGetBufferPointervQCOM(System.Int32 target, [OutAttribute] IntPtr @params); - [Slot(94)] + private static extern void glEGLImageTargetRenderbufferStorageOES(System.Int32 target, IntPtr image); + [Slot(90)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glExtGetBuffersQCOM([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers); + private static extern void glEGLImageTargetTexture2DOES(System.Int32 target, IntPtr image); [Slot(95)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glExtGetFramebuffersQCOM([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers); + private static extern void glEvalCoord1xOES(Int32 u); [Slot(96)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glExtGetProgramBinarySourceQCOM(UInt32 program, System.Int32 shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] IntPtr source, [OutAttribute] Int32* length); + private static extern unsafe void glEvalCoord1xvOES([CountAttribute(Count = 1)] Int32* coords); [Slot(97)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glExtGetProgramsQCOM([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms); + private static extern void glEvalCoord2xOES(Int32 u, Int32 v); [Slot(98)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glExtGetRenderbuffersQCOM([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers); - [Slot(99)] + private static extern unsafe void glEvalCoord2xvOES([CountAttribute(Count = 2)] Int32* coords); + [Slot(111)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glExtGetShadersQCOM([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders); - [Slot(100)] + private static extern unsafe void glFeedbackBufferxOES(Int32 n, System.Int32 type, [CountAttribute(Parameter = "n")] Int32* buffer); + [Slot(120)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glExtGetTexLevelParameterivQCOM(UInt32 texture, System.Int32 face, Int32 level, System.Int32 pname, [OutAttribute] Int32* @params); - [Slot(101)] + private static extern void glFogxOES(System.Int32 pname, Int32 param); + [Slot(122)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glExtGetTexSubImageQCOM(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, System.Int32 format, System.Int32 type, [OutAttribute] IntPtr texels); - [Slot(102)] + private static extern unsafe void glFogxvOES(System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* param); + [Slot(123)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glExtGetTexturesQCOM([OutAttribute] UInt32* textures, Int32 maxTextures, [OutAttribute] Int32* numTextures); - [Slot(103)] + private static extern void glFramebufferRenderbufferOES(System.Int32 target, System.Int32 attachment, System.Int32 renderbuffertarget, UInt32 renderbuffer); + [Slot(126)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glExtIsProgramBinaryQCOM(UInt32 program); - [Slot(104)] + private static extern void glFramebufferTexture2DOES(System.Int32 target, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level); + [Slot(129)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glExtTexObjectStateOverrideiQCOM(System.Int32 target, System.Int32 pname, Int32 param); + private static extern void glFrustumfOES(Single l, Single r, Single b, Single t, Single n, Single f); + [Slot(131)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glFrustumxOES(Int32 l, Int32 r, Int32 b, Int32 t, Int32 n, Int32 f); + [Slot(133)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glGenerateMipmapOES(System.Int32 target); + [Slot(135)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGenFramebuffersOES(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* framebuffers); + [Slot(136)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGenRenderbuffersOES(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers); + [Slot(138)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGenVertexArraysOES(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays); [Slot(141)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetDriverControlsQCOM([OutAttribute] Int32* num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32* driverControls); - [Slot(142)] + private static extern void glGetBufferPointervOES(System.Int32 target, System.Int32 pname, [OutAttribute] IntPtr @params); + [Slot(143)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetDriverControlStringQCOM(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr driverControlString); + private static extern unsafe void glGetClipPlanefOES(System.Int32 plane, [OutAttribute, CountAttribute(Count = 4)] Single* equation); + [Slot(145)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetClipPlanexOES(System.Int32 plane, [OutAttribute, CountAttribute(Count = 4)] Int32* equation); + [Slot(146)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetConvolutionParameterxvOES(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + [Slot(154)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetFixedvOES(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + [Slot(156)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetFramebufferAttachmentParameterivOES(System.Int32 target, System.Int32 attachment, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + [Slot(158)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetHistogramParameterxvOES(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + [Slot(162)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetLightxOES(System.Int32 light, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + [Slot(165)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetMapxvOES(System.Int32 target, System.Int32 query, [OutAttribute, CountAttribute(Computed = "query")] Int32* v); + [Slot(167)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glGetMaterialxOES(System.Int32 face, System.Int32 pname, Int32 param); + [Slot(169)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetMaterialxvOES(System.Int32 face, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + [Slot(179)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetRenderbufferParameterivOES(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + [Slot(185)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetTexEnvxvOES(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + [Slot(186)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetTexGenfvOES(System.Int32 coord, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); + [Slot(187)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetTexGenivOES(System.Int32 coord, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + [Slot(188)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetTexGenxvOES(System.Int32 coord, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + [Slot(189)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetTexLevelParameterxvOES(System.Int32 target, Int32 level, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + [Slot(193)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetTexParameterxvOES(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + [Slot(195)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glIndexxOES(Int32 component); + [Slot(196)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glIndexxvOES([CountAttribute(Count = 1)] Int32* component); + [Slot(201)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glIsFramebufferOES(UInt32 framebuffer); + [Slot(202)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glIsRenderbufferOES(UInt32 renderbuffer); + [Slot(205)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glIsVertexArrayOES(UInt32 array); + [Slot(211)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glLightModelxOES(System.Int32 pname, Int32 param); + [Slot(213)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glLightModelxvOES(System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* param); + [Slot(215)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glLightxOES(System.Int32 light, System.Int32 pname, Int32 param); + [Slot(217)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glLightxvOES(System.Int32 light, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + [Slot(220)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glLineWidthxOES(Int32 width); + [Slot(224)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glLoadMatrixxOES([CountAttribute(Count = 16)] Int32* m); + [Slot(225)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glLoadPaletteFromModelViewMatrixOES(); + [Slot(226)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glLoadTransposeMatrixxOES([CountAttribute(Count = 16)] Int32* m); + [Slot(228)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMap1xOES(System.Int32 target, Int32 u1, Int32 u2, Int32 stride, Int32 order, Int32 points); + [Slot(229)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMap2xOES(System.Int32 target, Int32 u1, Int32 u2, Int32 ustride, Int32 uorder, Int32 v1, Int32 v2, Int32 vstride, Int32 vorder, Int32 points); + [Slot(230)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern IntPtr glMapBufferOES(System.Int32 target, System.Int32 access); + [Slot(232)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMapGrid1xOES(Int32 n, Int32 u1, Int32 u2); + [Slot(233)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMapGrid2xOES(Int32 n, Int32 u1, Int32 u2, Int32 v1, Int32 v2); + [Slot(237)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMaterialxOES(System.Int32 face, System.Int32 pname, Int32 param); + [Slot(239)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMaterialxvOES(System.Int32 face, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* param); + [Slot(240)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixIndexPointerOES(Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer); + [Slot(244)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMultiTexCoord1bOES(System.Int32 texture, SByte s); + [Slot(245)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMultiTexCoord1bvOES(System.Int32 texture, [CountAttribute(Count = 1)] SByte* coords); + [Slot(246)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMultiTexCoord1xOES(System.Int32 texture, Int32 s); + [Slot(247)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMultiTexCoord1xvOES(System.Int32 texture, [CountAttribute(Count = 1)] Int32* coords); + [Slot(248)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMultiTexCoord2bOES(System.Int32 texture, SByte s, SByte t); + [Slot(249)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMultiTexCoord2bvOES(System.Int32 texture, [CountAttribute(Count = 2)] SByte* coords); + [Slot(250)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMultiTexCoord2xOES(System.Int32 texture, Int32 s, Int32 t); + [Slot(251)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMultiTexCoord2xvOES(System.Int32 texture, [CountAttribute(Count = 2)] Int32* coords); + [Slot(252)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMultiTexCoord3bOES(System.Int32 texture, SByte s, SByte t, SByte r); + [Slot(253)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMultiTexCoord3bvOES(System.Int32 texture, [CountAttribute(Count = 3)] SByte* coords); + [Slot(254)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMultiTexCoord3xOES(System.Int32 texture, Int32 s, Int32 t, Int32 r); + [Slot(255)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMultiTexCoord3xvOES(System.Int32 texture, [CountAttribute(Count = 3)] Int32* coords); + [Slot(256)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMultiTexCoord4bOES(System.Int32 texture, SByte s, SByte t, SByte r, SByte q); + [Slot(257)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMultiTexCoord4bvOES(System.Int32 texture, [CountAttribute(Count = 4)] SByte* coords); + [Slot(260)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMultiTexCoord4xOES(System.Int32 texture, Int32 s, Int32 t, Int32 r, Int32 q); + [Slot(261)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMultiTexCoord4xvOES(System.Int32 texture, [CountAttribute(Count = 4)] Int32* coords); + [Slot(264)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMultMatrixxOES([CountAttribute(Count = 16)] Int32* m); + [Slot(265)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMultTransposeMatrixxOES([CountAttribute(Count = 16)] Int32* m); + [Slot(268)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNormal3xOES(Int32 nx, Int32 ny, Int32 nz); + [Slot(269)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glNormal3xvOES([CountAttribute(Count = 3)] Int32* coords); + [Slot(276)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glOrthofOES(Single l, Single r, Single b, Single t, Single n, Single f); + [Slot(278)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glOrthoxOES(Int32 l, Int32 r, Int32 b, Int32 t, Int32 n, Int32 f); + [Slot(279)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPassThroughxOES(Int32 token); + [Slot(283)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPixelTransferxOES(System.Int32 pname, Int32 param); + [Slot(284)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPixelZoomxOES(Int32 xfactor, Int32 yfactor); + [Slot(288)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPointParameterxOES(System.Int32 pname, Int32 param); + [Slot(290)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glPointParameterxvOES(System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + [Slot(292)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPointSizePointerOES(System.Int32 type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer); + [Slot(294)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPointSizexOES(Int32 size); + [Slot(297)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPolygonOffsetxOES(Int32 factor, Int32 units); + [Slot(302)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glPrioritizeTexturesxOES(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures, [CountAttribute(Parameter = "n")] Int32* priorities); + [Slot(307)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe Int32 glQueryMatrixxOES([OutAttribute, CountAttribute(Count = 16)] Int32* mantissa, [OutAttribute, CountAttribute(Count = 16)] Int32* exponent); + [Slot(308)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glRasterPos2xOES(Int32 x, Int32 y); + [Slot(309)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glRasterPos2xvOES([CountAttribute(Count = 2)] Int32* coords); + [Slot(310)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glRasterPos3xOES(Int32 x, Int32 y, Int32 z); [Slot(311)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStartTilingQCOM(UInt32 x, UInt32 y, UInt32 width, UInt32 height, UInt32 preserveMask); + private static extern unsafe void glRasterPos3xvOES([CountAttribute(Count = 3)] Int32* coords); + [Slot(312)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glRasterPos4xOES(Int32 x, Int32 y, Int32 z, Int32 w); + [Slot(313)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glRasterPos4xvOES([CountAttribute(Count = 4)] Int32* coords); + [Slot(316)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glRectxOES(Int32 x1, Int32 y1, Int32 x2, Int32 y2); + [Slot(317)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glRectxvOES([CountAttribute(Count = 2)] Int32* v1, [CountAttribute(Count = 2)] Int32* v2); + [Slot(321)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glRenderbufferStorageOES(System.Int32 target, System.Int32 internalformat, Int32 width, Int32 height); + [Slot(325)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glRotatexOES(Int32 angle, Int32 x, Int32 y, Int32 z); + [Slot(328)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glSampleCoveragexOES(Int32 value, bool invert); + [Slot(331)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glScalexOES(Int32 x, Int32 y, Int32 z); + [Slot(340)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexCoord1bOES(SByte s); + [Slot(341)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexCoord1bvOES([CountAttribute(Count = 1)] SByte* coords); + [Slot(342)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexCoord1xOES(Int32 s); + [Slot(343)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexCoord1xvOES([CountAttribute(Count = 1)] Int32* coords); + [Slot(344)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexCoord2bOES(SByte s, SByte t); + [Slot(345)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexCoord2bvOES([CountAttribute(Count = 2)] SByte* coords); + [Slot(346)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexCoord2xOES(Int32 s, Int32 t); + [Slot(347)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexCoord2xvOES([CountAttribute(Count = 2)] Int32* coords); + [Slot(348)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexCoord3bOES(SByte s, SByte t, SByte r); + [Slot(349)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexCoord3bvOES([CountAttribute(Count = 3)] SByte* coords); + [Slot(350)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexCoord3xOES(Int32 s, Int32 t, Int32 r); + [Slot(351)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexCoord3xvOES([CountAttribute(Count = 3)] Int32* coords); + [Slot(352)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexCoord4bOES(SByte s, SByte t, SByte r, SByte q); + [Slot(353)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexCoord4bvOES([CountAttribute(Count = 4)] SByte* coords); + [Slot(354)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexCoord4xOES(Int32 s, Int32 t, Int32 r, Int32 q); + [Slot(355)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexCoord4xvOES([CountAttribute(Count = 4)] Int32* coords); + [Slot(362)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexEnvxOES(System.Int32 target, System.Int32 pname, Int32 param); + [Slot(364)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexEnvxvOES(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + [Slot(365)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexGenfOES(System.Int32 coord, System.Int32 pname, Single param); + [Slot(366)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexGenfvOES(System.Int32 coord, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); + [Slot(367)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexGeniOES(System.Int32 coord, System.Int32 pname, Int32 param); + [Slot(368)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexGenivOES(System.Int32 coord, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + [Slot(369)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexGenxOES(System.Int32 coord, System.Int32 pname, Int32 param); + [Slot(370)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexGenxvOES(System.Int32 coord, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + [Slot(377)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexParameterxOES(System.Int32 target, System.Int32 pname, Int32 param); + [Slot(379)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexParameterxvOES(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + [Slot(389)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTranslatexOES(Int32 x, Int32 y, Int32 z); + [Slot(390)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glUnmapBufferOES(System.Int32 target); + [Slot(391)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertex2bOES(SByte x, SByte y); + [Slot(392)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertex2bvOES([CountAttribute(Count = 2)] SByte* coords); + [Slot(393)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertex2xOES(Int32 x); + [Slot(394)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertex2xvOES([CountAttribute(Count = 2)] Int32* coords); + [Slot(395)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertex3bOES(SByte x, SByte y, SByte z); + [Slot(396)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertex3bvOES([CountAttribute(Count = 3)] SByte* coords); + [Slot(397)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertex3xOES(Int32 x, Int32 y); + [Slot(398)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertex3xvOES([CountAttribute(Count = 3)] Int32* coords); + [Slot(399)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertex4bOES(SByte x, SByte y, SByte z, SByte w); + [Slot(400)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertex4bvOES([CountAttribute(Count = 4)] SByte* coords); + [Slot(401)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertex4xOES(Int32 x, Int32 y, Int32 z); + [Slot(402)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertex4xvOES([CountAttribute(Count = 4)] Int32* coords); + [Slot(406)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glWeightPointerOES(Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer); + [Slot(77)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glDisableDriverControlQCOM(UInt32 driverControl); + [Slot(93)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glEnableDriverControlQCOM(UInt32 driverControl); + [Slot(94)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glEndTilingQCOM(System.Int32 preserveMask); + [Slot(99)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glExtGetBufferPointervQCOM(System.Int32 target, [OutAttribute] IntPtr @params); + [Slot(100)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glExtGetBuffersQCOM([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers); + [Slot(101)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glExtGetFramebuffersQCOM([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers); + [Slot(102)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glExtGetProgramBinarySourceQCOM(UInt32 program, System.Int32 shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] IntPtr source, [OutAttribute] Int32* length); + [Slot(103)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glExtGetProgramsQCOM([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms); + [Slot(104)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glExtGetRenderbuffersQCOM([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers); + [Slot(105)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glExtGetShadersQCOM([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders); + [Slot(106)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glExtGetTexLevelParameterivQCOM(UInt32 texture, System.Int32 face, Int32 level, System.Int32 pname, [OutAttribute] Int32* @params); + [Slot(107)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glExtGetTexSubImageQCOM(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, System.Int32 format, System.Int32 type, [OutAttribute] IntPtr texels); + [Slot(108)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glExtGetTexturesQCOM([OutAttribute] UInt32* textures, Int32 maxTextures, [OutAttribute] Int32* numTextures); + [Slot(109)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glExtIsProgramBinaryQCOM(UInt32 program); + [Slot(110)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glExtTexObjectStateOverrideiQCOM(System.Int32 target, System.Int32 pname, Int32 param); + [Slot(149)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetDriverControlsQCOM([OutAttribute] Int32* num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32* driverControls); + [Slot(150)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetDriverControlStringQCOM(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr driverControlString); + [Slot(335)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glStartTilingQCOM(UInt32 x, UInt32 y, UInt32 width, UInt32 height, System.Int32 preserveMask); } } diff --git a/src/OpenTK/Graphics/ES11/ES11Enums.cs b/src/OpenTK/Graphics/ES11/ES11Enums.cs index aa053dd1..b4aa20f8 100644 --- a/src/OpenTK/Graphics/ES11/ES11Enums.cs +++ b/src/OpenTK/Graphics/ES11/ES11Enums.cs @@ -57,7 +57,7 @@ namespace OpenTK.Graphics.ES11 } /// - /// Used in GL.Apple.FenceSync, GL.Apple.GetInteger64 and 163 other functions + /// Used in GL.Apple.ClientWaitSync, GL.Apple.FenceSync and 179 other functions /// public enum All : int { @@ -114,10 +114,18 @@ namespace OpenTK.Graphics.ES11 /// QueryDepthPassEventBitAmd = ((int)0x00000001), /// + /// Original was GL_SYNC_FLUSH_COMMANDS_BIT = 0x00000001 + /// + SyncFlushCommandsBit = ((int)0x00000001), + /// /// Original was GL_SYNC_FLUSH_COMMANDS_BIT_APPLE = 0x00000001 /// SyncFlushCommandsBitApple = ((int)0x00000001), /// + /// Original was GL_TEXTURE_STORAGE_SPARSE_BIT_AMD = 0x00000001 + /// + TextureStorageSparseBitAmd = ((int)0x00000001), + /// /// Original was GL_VERTEX_ATTRIB_ARRAY_BARRIER_BIT = 0x00000001 /// VertexAttribArrayBarrierBit = ((int)0x00000001), @@ -182,6 +190,10 @@ namespace OpenTK.Graphics.ES11 /// ColorBufferBit2Qcom = ((int)0x00000004), /// + /// Original was GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT = 0x00000004 + /// + ContextFlagRobustAccessBit = ((int)0x00000004), + /// /// Original was GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT_ARB = 0x00000004 /// ContextFlagRobustAccessBitArb = ((int)0x00000004), @@ -194,6 +206,10 @@ namespace OpenTK.Graphics.ES11 /// GeometryShaderBitExt = ((int)0x00000004), /// + /// Original was GL_GEOMETRY_SHADER_BIT_OES = 0x00000004 + /// + GeometryShaderBitOes = ((int)0x00000004), + /// /// Original was GL_LINE_BIT = 0x00000004 /// LineBit = ((int)0x00000004), @@ -214,6 +230,14 @@ namespace OpenTK.Graphics.ES11 /// ColorBufferBit3Qcom = ((int)0x00000008), /// + /// Original was GL_CONTEXT_FLAG_NO_ERROR_BIT = 0x00000008 + /// + ContextFlagNoErrorBit = ((int)0x00000008), + /// + /// Original was GL_CONTEXT_FLAG_NO_ERROR_BIT_KHR = 0x00000008 + /// + ContextFlagNoErrorBitKhr = ((int)0x00000008), + /// /// Original was GL_POLYGON_BIT = 0x00000008 /// PolygonBit = ((int)0x00000008), @@ -230,6 +254,10 @@ namespace OpenTK.Graphics.ES11 /// TessControlShaderBitExt = ((int)0x00000008), /// + /// Original was GL_TESS_CONTROL_SHADER_BIT_OES = 0x00000008 + /// + TessControlShaderBitOes = ((int)0x00000008), + /// /// Original was GL_TEXTURE_FETCH_BARRIER_BIT = 0x00000008 /// TextureFetchBarrierBit = ((int)0x00000008), @@ -262,6 +290,10 @@ namespace OpenTK.Graphics.ES11 /// TessEvaluationShaderBitExt = ((int)0x00000010), /// + /// Original was GL_TESS_EVALUATION_SHADER_BIT_OES = 0x00000010 + /// + TessEvaluationShaderBitOes = ((int)0x00000010), + /// /// Original was GL_COLOR_BUFFER_BIT5_QCOM = 0x00000020 /// ColorBufferBit5Qcom = ((int)0x00000020), @@ -410,6 +442,10 @@ namespace OpenTK.Graphics.ES11 /// ClientMappedBufferBarrierBit = ((int)0x00004000), /// + /// Original was GL_CLIENT_MAPPED_BUFFER_BARRIER_BIT_EXT = 0x00004000 + /// + ClientMappedBufferBarrierBitExt = ((int)0x00004000), + /// /// Original was GL_COLOR_BUFFER_BIT = 0x00004000 /// ColorBufferBit = ((int)0x00004000), @@ -450,6 +486,10 @@ namespace OpenTK.Graphics.ES11 /// EvalBit = ((int)0x00010000), /// + /// Original was GL_FONT_X_MIN_BOUNDS_BIT_NV = 0x00010000 + /// + FontXMinBoundsBitNv = ((int)0x00010000), + /// /// Original was GL_STENCIL_BUFFER_BIT0_QCOM = 0x00010000 /// StencilBufferBit0Qcom = ((int)0x00010000), @@ -466,6 +506,10 @@ namespace OpenTK.Graphics.ES11 /// MapWriteBitExt = ((int)0x0002), /// + /// Original was GL_FONT_Y_MIN_BOUNDS_BIT_NV = 0x00020000 + /// + FontYMinBoundsBitNv = ((int)0x00020000), + /// /// Original was GL_LIST_BIT = 0x00020000 /// ListBit = ((int)0x00020000), @@ -490,6 +534,10 @@ namespace OpenTK.Graphics.ES11 /// Triangles = ((int)0X0004), /// + /// Original was GL_FONT_X_MAX_BOUNDS_BIT_NV = 0x00040000 + /// + FontXMaxBoundsBitNv = ((int)0x00040000), + /// /// Original was GL_STENCIL_BUFFER_BIT2_QCOM = 0x00040000 /// StencilBufferBit2Qcom = ((int)0x00040000), @@ -526,6 +574,10 @@ namespace OpenTK.Graphics.ES11 /// QuadStrip = ((int)0x0008), /// + /// Original was GL_FONT_Y_MAX_BOUNDS_BIT_NV = 0x00080000 + /// + FontYMaxBoundsBitNv = ((int)0x00080000), + /// /// Original was GL_SCISSOR_BIT = 0x00080000 /// ScissorBit = ((int)0x00080000), @@ -602,6 +654,10 @@ namespace OpenTK.Graphics.ES11 /// MapFlushExplicitBitExt = ((int)0x0010), /// + /// Original was GL_FONT_UNITS_PER_EM_BIT_NV = 0x00100000 + /// + FontUnitsPerEmBitNv = ((int)0x00100000), + /// /// Original was GL_STENCIL_BUFFER_BIT4_QCOM = 0x00100000 /// StencilBufferBit4Qcom = ((int)0x00100000), @@ -614,6 +670,10 @@ namespace OpenTK.Graphics.ES11 /// MapUnsynchronizedBitExt = ((int)0x0020), /// + /// Original was GL_FONT_ASCENDER_BIT_NV = 0x00200000 + /// + FontAscenderBitNv = ((int)0x00200000), + /// /// Original was GL_STENCIL_BUFFER_BIT5_QCOM = 0x00200000 /// StencilBufferBit5Qcom = ((int)0x00200000), @@ -622,6 +682,14 @@ namespace OpenTK.Graphics.ES11 /// MapPersistentBit = ((int)0x0040), /// + /// Original was GL_MAP_PERSISTENT_BIT_EXT = 0x0040 + /// + MapPersistentBitExt = ((int)0x0040), + /// + /// Original was GL_FONT_DESCENDER_BIT_NV = 0x00400000 + /// + FontDescenderBitNv = ((int)0x00400000), + /// /// Original was GL_STENCIL_BUFFER_BIT6_QCOM = 0x00400000 /// StencilBufferBit6Qcom = ((int)0x00400000), @@ -630,10 +698,26 @@ namespace OpenTK.Graphics.ES11 /// MapCoherentBit = ((int)0x0080), /// + /// Original was GL_MAP_COHERENT_BIT_EXT = 0x0080 + /// + MapCoherentBitExt = ((int)0x0080), + /// + /// Original was GL_FONT_HEIGHT_BIT_NV = 0x00800000 + /// + FontHeightBitNv = ((int)0x00800000), + /// /// Original was GL_STENCIL_BUFFER_BIT7_QCOM = 0x00800000 /// StencilBufferBit7Qcom = ((int)0x00800000), /// + /// Original was GL_BOLD_BIT_NV = 0x01 + /// + BoldBitNv = ((int)0x01), + /// + /// Original was GL_GLYPH_WIDTH_BIT_NV = 0x01 + /// + GlyphWidthBitNv = ((int)0x01), + /// /// Original was GL_ACCUM = 0x0100 /// Accum = ((int)0x0100), @@ -642,6 +726,14 @@ namespace OpenTK.Graphics.ES11 /// DynamicStorageBit = ((int)0x0100), /// + /// Original was GL_DYNAMIC_STORAGE_BIT_EXT = 0x0100 + /// + DynamicStorageBitExt = ((int)0x0100), + /// + /// Original was GL_FONT_MAX_ADVANCE_WIDTH_BIT_NV = 0x01000000 + /// + FontMaxAdvanceWidthBitNv = ((int)0x01000000), + /// /// Original was GL_MULTISAMPLE_BUFFER_BIT0_QCOM = 0x01000000 /// MultisampleBufferBit0Qcom = ((int)0x01000000), @@ -662,14 +754,30 @@ namespace OpenTK.Graphics.ES11 /// Add = ((int)0x0104), /// + /// Original was GL_GLYPH_HEIGHT_BIT_NV = 0x02 + /// + GlyphHeightBitNv = ((int)0x02), + /// + /// Original was GL_ITALIC_BIT_NV = 0x02 + /// + ItalicBitNv = ((int)0x02), + /// /// Original was GL_CLIENT_STORAGE_BIT = 0x0200 /// ClientStorageBit = ((int)0x0200), /// + /// Original was GL_CLIENT_STORAGE_BIT_EXT = 0x0200 + /// + ClientStorageBitExt = ((int)0x0200), + /// /// Original was GL_NEVER = 0x0200 /// Never = ((int)0x0200), /// + /// Original was GL_FONT_MAX_ADVANCE_HEIGHT_BIT_NV = 0x02000000 + /// + FontMaxAdvanceHeightBitNv = ((int)0x02000000), + /// /// Original was GL_MULTISAMPLE_BUFFER_BIT1_QCOM = 0x02000000 /// MultisampleBufferBit1Qcom = ((int)0x02000000), @@ -738,10 +846,22 @@ namespace OpenTK.Graphics.ES11 /// SrcAlphaSaturate = ((int)0x0308), /// + /// Original was GL_GLYPH_HORIZONTAL_BEARING_X_BIT_NV = 0x04 + /// + GlyphHorizontalBearingXBitNv = ((int)0x04), + /// /// Original was GL_FRONT_LEFT = 0x0400 /// FrontLeft = ((int)0x0400), /// + /// Original was GL_SPARSE_STORAGE_BIT_ARB = 0x0400 + /// + SparseStorageBitArb = ((int)0x0400), + /// + /// Original was GL_FONT_UNDERLINE_POSITION_BIT_NV = 0x04000000 + /// + FontUnderlinePositionBitNv = ((int)0x04000000), + /// /// Original was GL_MULTISAMPLE_BUFFER_BIT2_QCOM = 0x04000000 /// MultisampleBufferBit2Qcom = ((int)0x04000000), @@ -810,10 +930,18 @@ namespace OpenTK.Graphics.ES11 /// StackOverflow = ((int)0x0503), /// + /// Original was GL_STACK_OVERFLOW_KHR = 0x0503 + /// + StackOverflowKhr = ((int)0x0503), + /// /// Original was GL_STACK_UNDERFLOW = 0x0504 /// StackUnderflow = ((int)0x0504), /// + /// Original was GL_STACK_UNDERFLOW_KHR = 0x0504 + /// + StackUnderflowKhr = ((int)0x0504), + /// /// Original was GL_OUT_OF_MEMORY = 0x0505 /// OutOfMemory = ((int)0x0505), @@ -882,10 +1010,26 @@ namespace OpenTK.Graphics.ES11 /// LineResetToken = ((int)0x0707), /// + /// Original was GL_GLYPH_HORIZONTAL_BEARING_Y_BIT_NV = 0x08 + /// + GlyphHorizontalBearingYBitNv = ((int)0x08), + /// /// Original was GL_EXP = 0x0800 /// Exp = ((int)0x0800), /// + /// Original was GL_LGPU_SEPARATE_STORAGE_BIT_NVX = 0x0800 + /// + LgpuSeparateStorageBitNvx = ((int)0x0800), + /// + /// Original was GL_PER_GPU_STORAGE_BIT_NV = 0x0800 + /// + PerGpuStorageBitNv = ((int)0x0800), + /// + /// Original was GL_FONT_UNDERLINE_THICKNESS_BIT_NV = 0x08000000 + /// + FontUnderlineThicknessBitNv = ((int)0x08000000), + /// /// Original was GL_MULTISAMPLE_BUFFER_BIT3_QCOM = 0x08000000 /// MultisampleBufferBit3Qcom = ((int)0x08000000), @@ -1822,10 +1966,22 @@ namespace OpenTK.Graphics.ES11 /// SelectionBufferSize = ((int)0x0DF4), /// + /// Original was GL_GLYPH_HORIZONTAL_BEARING_ADVANCE_BIT_NV = 0x10 + /// + GlyphHorizontalBearingAdvanceBitNv = ((int)0x10), + /// + /// Original was GL_GLYPH_HAS_KERNING_BIT_NV = 0x100 + /// + GlyphHasKerningBitNv = ((int)0x100), + /// /// Original was GL_TEXTURE_WIDTH = 0x1000 /// TextureWidth = ((int)0x1000), /// + /// Original was GL_FONT_HAS_KERNING_BIT_NV = 0x10000000 + /// + FontHasKerningBitNv = ((int)0x10000000), + /// /// Original was GL_MULTISAMPLE_BUFFER_BIT4_QCOM = 0x10000000 /// MultisampleBufferBit4Qcom = ((int)0x10000000), @@ -1958,6 +2114,10 @@ namespace OpenTK.Graphics.ES11 /// Double = ((int)0x140A), /// + /// Original was GL_HALF_FLOAT = 0x140B + /// + HalfFloat = ((int)0x140B), + /// /// Original was GL_FIXED = 0x140C /// Fixed = ((int)0x140C), @@ -2294,10 +2454,18 @@ namespace OpenTK.Graphics.ES11 /// Extensions = ((int)0x1F03), /// + /// Original was GL_GLYPH_VERTICAL_BEARING_X_BIT_NV = 0x20 + /// + GlyphVerticalBearingXBitNv = ((int)0x20), + /// /// Original was GL_S = 0x2000 /// S = ((int)0x2000), /// + /// Original was GL_FONT_NUM_GLYPH_INDICES_BIT_NV = 0x20000000 + /// + FontNumGlyphIndicesBitNv = ((int)0x20000000), + /// /// Original was GL_MULTISAMPLE_BIT = 0x20000000 /// MultisampleBit = ((int)0x20000000), @@ -2578,6 +2746,10 @@ namespace OpenTK.Graphics.ES11 /// ClipDistance7 = ((int)0x3007), /// + /// Original was GL_GLYPH_VERTICAL_BEARING_Y_BIT_NV = 0x40 + /// + GlyphVerticalBearingYBitNv = ((int)0x40), + /// /// Original was GL_LIGHT0 = 0x4000 /// Light0 = ((int)0x4000), @@ -2614,6 +2786,10 @@ namespace OpenTK.Graphics.ES11 /// Light7 = ((int)0x4007), /// + /// Original was GL_GLYPH_VERTICAL_BEARING_ADVANCE_BIT_NV = 0x80 + /// + GlyphVerticalBearingAdvanceBitNv = ((int)0x80), + /// /// Original was GL_ABGR_EXT = 0x8000 /// AbgrExt = ((int)0x8000), @@ -2622,26 +2798,30 @@ namespace OpenTK.Graphics.ES11 /// MultisampleBufferBit7Qcom = unchecked((int)0x80000000), /// - /// Original was GL_CONSTANT_COLOR_EXT = 0x8001 + /// Original was GL_CONSTANT_COLOR = 0x8001 /// - ConstantColorExt = ((int)0x8001), + ConstantColor = ((int)0x8001), /// - /// Original was GL_ONE_MINUS_CONSTANT_COLOR_EXT = 0x8002 + /// Original was GL_ONE_MINUS_CONSTANT_COLOR = 0x8002 /// - OneMinusConstantColorExt = ((int)0x8002), + OneMinusConstantColor = ((int)0x8002), /// - /// Original was GL_CONSTANT_ALPHA_EXT = 0x8003 + /// Original was GL_CONSTANT_ALPHA = 0x8003 /// - ConstantAlphaExt = ((int)0x8003), + ConstantAlpha = ((int)0x8003), /// - /// Original was GL_ONE_MINUS_CONSTANT_ALPHA_EXT = 0x8004 + /// Original was GL_ONE_MINUS_CONSTANT_ALPHA = 0x8004 /// - OneMinusConstantAlphaExt = ((int)0x8004), + OneMinusConstantAlpha = ((int)0x8004), /// /// Original was GL_BLEND_COLOR_EXT = 0x8005 /// BlendColorExt = ((int)0x8005), /// + /// Original was GL_FUNC_ADD = 0x8006 + /// + FuncAdd = ((int)0x8006), + /// /// Original was GL_FUNC_ADD_EXT = 0x8006 /// FuncAddExt = ((int)0x8006), @@ -2670,6 +2850,10 @@ namespace OpenTK.Graphics.ES11 /// BlendEquationRgbOes = ((int)0x8009), /// + /// Original was GL_FUNC_SUBTRACT = 0x800A + /// + FuncSubtract = ((int)0x800A), + /// /// Original was GL_FUNC_SUBTRACT_EXT = 0x800A /// FuncSubtractExt = ((int)0x800A), @@ -2678,6 +2862,10 @@ namespace OpenTK.Graphics.ES11 /// FuncSubtractOes = ((int)0x800A), /// + /// Original was GL_FUNC_REVERSE_SUBTRACT = 0x800B + /// + FuncReverseSubtract = ((int)0x800B), + /// /// Original was GL_FUNC_REVERSE_SUBTRACT_EXT = 0x800B /// FuncReverseSubtractExt = ((int)0x800B), @@ -2758,22 +2946,42 @@ namespace OpenTK.Graphics.ES11 /// ReduceExt = ((int)0x8016), /// + /// Original was GL_CONVOLUTION_FORMAT = 0x8017 + /// + ConvolutionFormat = ((int)0x8017), + /// /// Original was GL_CONVOLUTION_FORMAT_EXT = 0x8017 /// ConvolutionFormatExt = ((int)0x8017), /// + /// Original was GL_CONVOLUTION_WIDTH = 0x8018 + /// + ConvolutionWidth = ((int)0x8018), + /// /// Original was GL_CONVOLUTION_WIDTH_EXT = 0x8018 /// ConvolutionWidthExt = ((int)0x8018), /// + /// Original was GL_CONVOLUTION_HEIGHT = 0x8019 + /// + ConvolutionHeight = ((int)0x8019), + /// /// Original was GL_CONVOLUTION_HEIGHT_EXT = 0x8019 /// ConvolutionHeightExt = ((int)0x8019), /// + /// Original was GL_MAX_CONVOLUTION_WIDTH = 0x801A + /// + MaxConvolutionWidth = ((int)0x801A), + /// /// Original was GL_MAX_CONVOLUTION_WIDTH_EXT = 0x801A /// MaxConvolutionWidthExt = ((int)0x801A), /// + /// Original was GL_MAX_CONVOLUTION_HEIGHT = 0x801B + /// + MaxConvolutionHeight = ((int)0x801B), + /// /// Original was GL_MAX_CONVOLUTION_HEIGHT_EXT = 0x801B /// MaxConvolutionHeightExt = ((int)0x801B), @@ -2858,34 +3066,66 @@ namespace OpenTK.Graphics.ES11 /// ProxyHistogramExt = ((int)0x8025), /// + /// Original was GL_HISTOGRAM_WIDTH = 0x8026 + /// + HistogramWidth = ((int)0x8026), + /// /// Original was GL_HISTOGRAM_WIDTH_EXT = 0x8026 /// HistogramWidthExt = ((int)0x8026), /// + /// Original was GL_HISTOGRAM_FORMAT = 0x8027 + /// + HistogramFormat = ((int)0x8027), + /// /// Original was GL_HISTOGRAM_FORMAT_EXT = 0x8027 /// HistogramFormatExt = ((int)0x8027), /// + /// Original was GL_HISTOGRAM_RED_SIZE = 0x8028 + /// + HistogramRedSize = ((int)0x8028), + /// /// Original was GL_HISTOGRAM_RED_SIZE_EXT = 0x8028 /// HistogramRedSizeExt = ((int)0x8028), /// + /// Original was GL_HISTOGRAM_GREEN_SIZE = 0x8029 + /// + HistogramGreenSize = ((int)0x8029), + /// /// Original was GL_HISTOGRAM_GREEN_SIZE_EXT = 0x8029 /// HistogramGreenSizeExt = ((int)0x8029), /// + /// Original was GL_HISTOGRAM_BLUE_SIZE = 0x802A + /// + HistogramBlueSize = ((int)0x802A), + /// /// Original was GL_HISTOGRAM_BLUE_SIZE_EXT = 0x802A /// HistogramBlueSizeExt = ((int)0x802A), /// + /// Original was GL_HISTOGRAM_ALPHA_SIZE = 0x802B + /// + HistogramAlphaSize = ((int)0x802B), + /// /// Original was GL_HISTOGRAM_ALPHA_SIZE_EXT = 0x802B /// HistogramAlphaSizeExt = ((int)0x802B), /// + /// Original was GL_HISTOGRAM_LUMINANCE_SIZE = 0x802C + /// + HistogramLuminanceSize = ((int)0x802C), + /// /// Original was GL_HISTOGRAM_LUMINANCE_SIZE_EXT = 0x802C /// HistogramLuminanceSizeExt = ((int)0x802C), /// + /// Original was GL_HISTOGRAM_SINK = 0x802D + /// + HistogramSink = ((int)0x802D), + /// /// Original was GL_HISTOGRAM_SINK_EXT = 0x802D /// HistogramSinkExt = ((int)0x802D), @@ -3094,14 +3334,26 @@ namespace OpenTK.Graphics.ES11 /// Rgb4 = ((int)0x804F), /// + /// Original was GL_RGB4_EXT = 0x804F + /// + Rgb4Ext = ((int)0x804F), + /// /// Original was GL_RGB5 = 0x8050 /// Rgb5 = ((int)0x8050), /// + /// Original was GL_RGB5_EXT = 0x8050 + /// + Rgb5Ext = ((int)0x8050), + /// /// Original was GL_RGB8 = 0x8051 /// Rgb8 = ((int)0x8051), /// + /// Original was GL_RGB8_EXT = 0x8051 + /// + Rgb8Ext = ((int)0x8051), + /// /// Original was GL_RGB8_OES = 0x8051 /// Rgb8Oes = ((int)0x8051), @@ -3118,18 +3370,26 @@ namespace OpenTK.Graphics.ES11 /// Rgb12 = ((int)0x8053), /// + /// Original was GL_RGB12_EXT = 0x8053 + /// + Rgb12Ext = ((int)0x8053), + /// /// Original was GL_RGB16 = 0x8054 /// Rgb16 = ((int)0x8054), /// - /// Original was GL_RGBA2 = 0x8055 + /// Original was GL_RGB16_EXT = 0x8054 /// - Rgba2 = ((int)0x8055), + Rgb16Ext = ((int)0x8054), /// /// Original was GL_RGBA4 = 0x8056 /// Rgba4 = ((int)0x8056), /// + /// Original was GL_RGBA4_EXT = 0x8056 + /// + Rgba4Ext = ((int)0x8056), + /// /// Original was GL_RGBA4_OES = 0x8056 /// Rgba4Oes = ((int)0x8056), @@ -3138,6 +3398,10 @@ namespace OpenTK.Graphics.ES11 /// Rgb5A1 = ((int)0x8057), /// + /// Original was GL_RGB5_A1_EXT = 0x8057 + /// + Rgb5A1Ext = ((int)0x8057), + /// /// Original was GL_RGB5_A1_OES = 0x8057 /// Rgb5A1Oes = ((int)0x8057), @@ -3146,6 +3410,10 @@ namespace OpenTK.Graphics.ES11 /// Rgba8 = ((int)0x8058), /// + /// Original was GL_RGBA8_EXT = 0x8058 + /// + Rgba8Ext = ((int)0x8058), + /// /// Original was GL_RGBA8_OES = 0x8058 /// Rgba8Oes = ((int)0x8058), @@ -3162,10 +3430,18 @@ namespace OpenTK.Graphics.ES11 /// Rgba12 = ((int)0x805A), /// + /// Original was GL_RGBA12_EXT = 0x805A + /// + Rgba12Ext = ((int)0x805A), + /// /// Original was GL_RGBA16 = 0x805B /// Rgba16 = ((int)0x805B), /// + /// Original was GL_RGBA16_EXT = 0x805B + /// + Rgba16Ext = ((int)0x805B), + /// /// Original was GL_TEXTURE_RED_SIZE = 0x805C /// TextureRedSize = ((int)0x805C), @@ -3318,6 +3594,10 @@ namespace OpenTK.Graphics.ES11 /// VertexArray = ((int)0x8074), /// + /// Original was GL_VERTEX_ARRAY_KHR = 0x8074 + /// + VertexArrayKhr = ((int)0x8074), + /// /// Original was GL_NORMAL_ARRAY = 0x8075 /// NormalArray = ((int)0x8075), @@ -3814,34 +4094,66 @@ namespace OpenTK.Graphics.ES11 /// ColorTableBiasSgi = ((int)0x80D7), /// + /// Original was GL_COLOR_TABLE_FORMAT = 0x80D8 + /// + ColorTableFormat = ((int)0x80D8), + /// /// Original was GL_COLOR_TABLE_FORMAT_SGI = 0x80D8 /// ColorTableFormatSgi = ((int)0x80D8), /// + /// Original was GL_COLOR_TABLE_WIDTH = 0x80D9 + /// + ColorTableWidth = ((int)0x80D9), + /// /// Original was GL_COLOR_TABLE_WIDTH_SGI = 0x80D9 /// ColorTableWidthSgi = ((int)0x80D9), /// + /// Original was GL_COLOR_TABLE_RED_SIZE = 0x80DA + /// + ColorTableRedSize = ((int)0x80DA), + /// /// Original was GL_COLOR_TABLE_RED_SIZE_SGI = 0x80DA /// ColorTableRedSizeSgi = ((int)0x80DA), /// + /// Original was GL_COLOR_TABLE_GREEN_SIZE = 0x80DB + /// + ColorTableGreenSize = ((int)0x80DB), + /// /// Original was GL_COLOR_TABLE_GREEN_SIZE_SGI = 0x80DB /// ColorTableGreenSizeSgi = ((int)0x80DB), /// + /// Original was GL_COLOR_TABLE_BLUE_SIZE = 0x80DC + /// + ColorTableBlueSize = ((int)0x80DC), + /// /// Original was GL_COLOR_TABLE_BLUE_SIZE_SGI = 0x80DC /// ColorTableBlueSizeSgi = ((int)0x80DC), /// + /// Original was GL_COLOR_TABLE_ALPHA_SIZE = 0x80DD + /// + ColorTableAlphaSize = ((int)0x80DD), + /// /// Original was GL_COLOR_TABLE_ALPHA_SIZE_SGI = 0x80DD /// ColorTableAlphaSizeSgi = ((int)0x80DD), /// + /// Original was GL_COLOR_TABLE_LUMINANCE_SIZE = 0x80DE + /// + ColorTableLuminanceSize = ((int)0x80DE), + /// /// Original was GL_COLOR_TABLE_LUMINANCE_SIZE_SGI = 0x80DE /// ColorTableLuminanceSizeSgi = ((int)0x80DE), /// + /// Original was GL_COLOR_TABLE_INTENSITY_SIZE = 0x80DF + /// + ColorTableIntensitySize = ((int)0x80DF), + /// /// Original was GL_COLOR_TABLE_INTENSITY_SIZE_SGI = 0x80DF /// ColorTableIntensitySizeSgi = ((int)0x80DF), @@ -4194,6 +4506,10 @@ namespace OpenTK.Graphics.ES11 /// Texture4DBindingSgis = ((int)0x814F), /// + /// Original was GL_CONVOLUTION_BORDER_COLOR = 0x8154 + /// + ConvolutionBorderColor = ((int)0x8154), + /// /// Original was GL_LINEAR_CLIPMAP_LINEAR_SGIX = 0x8170 /// LinearClipmapLinearSgix = ((int)0x8170), @@ -4378,6 +4694,14 @@ namespace OpenTK.Graphics.ES11 /// TextureGequalRSgix = ((int)0x819D), /// + /// Original was GL_DEPTH_COMPONENT16 = 0x81A5 + /// + DepthComponent16 = ((int)0x81A5), + /// + /// Original was GL_DEPTH_COMPONENT16_ARB = 0x81A5 + /// + DepthComponent16Arb = ((int)0x81A5), + /// /// Original was GL_DEPTH_COMPONENT16_OES = 0x81A5 /// DepthComponent16Oes = ((int)0x81A5), @@ -4386,6 +4710,10 @@ namespace OpenTK.Graphics.ES11 /// DepthComponent16Sgix = ((int)0x81A5), /// + /// Original was GL_DEPTH_COMPONENT24_ARB = 0x81A6 + /// + DepthComponent24Arb = ((int)0x81A6), + /// /// Original was GL_DEPTH_COMPONENT24_OES = 0x81A6 /// DepthComponent24Oes = ((int)0x81A6), @@ -4394,6 +4722,10 @@ namespace OpenTK.Graphics.ES11 /// DepthComponent24Sgix = ((int)0x81A6), /// + /// Original was GL_DEPTH_COMPONENT32_ARB = 0x81A7 + /// + DepthComponent32Arb = ((int)0x81A7), + /// /// Original was GL_DEPTH_COMPONENT32_OES = 0x81A7 /// DepthComponent32Oes = ((int)0x81A7), @@ -4470,46 +4802,334 @@ namespace OpenTK.Graphics.ES11 /// SharedTexturePaletteExt = ((int)0x81FB), /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING = 0x8210 + /// + FramebufferAttachmentColorEncoding = ((int)0x8210), + /// /// Original was GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXT = 0x8210 /// FramebufferAttachmentColorEncodingExt = ((int)0x8210), /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE = 0x8211 + /// + FramebufferAttachmentComponentType = ((int)0x8211), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_RED_SIZE = 0x8212 + /// + FramebufferAttachmentRedSize = ((int)0x8212), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_GREEN_SIZE = 0x8213 + /// + FramebufferAttachmentGreenSize = ((int)0x8213), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_BLUE_SIZE = 0x8214 + /// + FramebufferAttachmentBlueSize = ((int)0x8214), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE = 0x8215 + /// + FramebufferAttachmentAlphaSize = ((int)0x8215), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE = 0x8216 + /// + FramebufferAttachmentDepthSize = ((int)0x8216), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE = 0x8217 + /// + FramebufferAttachmentStencilSize = ((int)0x8217), + /// + /// Original was GL_FRAMEBUFFER_UNDEFINED = 0x8219 + /// + FramebufferUndefined = ((int)0x8219), + /// + /// Original was GL_FRAMEBUFFER_UNDEFINED_OES = 0x8219 + /// + FramebufferUndefinedOes = ((int)0x8219), + /// + /// Original was GL_BUFFER_IMMUTABLE_STORAGE = 0x821F + /// + BufferImmutableStorage = ((int)0x821F), + /// + /// Original was GL_BUFFER_STORAGE_FLAGS = 0x8220 + /// + BufferStorageFlags = ((int)0x8220), + /// + /// Original was GL_COMPRESSED_RED = 0x8225 + /// + CompressedRed = ((int)0x8225), + /// + /// Original was GL_COMPRESSED_RG = 0x8226 + /// + CompressedRg = ((int)0x8226), + /// + /// Original was GL_RG = 0x8227 + /// + Rg = ((int)0x8227), + /// + /// Original was GL_R8 = 0x8229 + /// + R8 = ((int)0x8229), + /// /// Original was GL_R8_EXT = 0x8229 /// R8Ext = ((int)0x8229), /// + /// Original was GL_R16 = 0x822A + /// + R16 = ((int)0x822A), + /// + /// Original was GL_R16_EXT = 0x822A + /// + R16Ext = ((int)0x822A), + /// + /// Original was GL_RG8 = 0x822B + /// + Rg8 = ((int)0x822B), + /// /// Original was GL_RG8_EXT = 0x822B /// Rg8Ext = ((int)0x822B), /// + /// Original was GL_RG16 = 0x822C + /// + Rg16 = ((int)0x822C), + /// + /// Original was GL_RG16_EXT = 0x822C + /// + Rg16Ext = ((int)0x822C), + /// + /// Original was GL_R16F = 0x822D + /// + R16f = ((int)0x822D), + /// /// Original was GL_R16F_EXT = 0x822D /// R16fExt = ((int)0x822D), /// + /// Original was GL_R32F = 0x822E + /// + R32f = ((int)0x822E), + /// /// Original was GL_R32F_EXT = 0x822E /// R32fExt = ((int)0x822E), /// + /// Original was GL_RG16F = 0x822F + /// + Rg16f = ((int)0x822F), + /// /// Original was GL_RG16F_EXT = 0x822F /// Rg16fExt = ((int)0x822F), /// + /// Original was GL_RG32F = 0x8230 + /// + Rg32f = ((int)0x8230), + /// /// Original was GL_RG32F_EXT = 0x8230 /// Rg32fExt = ((int)0x8230), /// + /// Original was GL_R8I = 0x8231 + /// + R8i = ((int)0x8231), + /// + /// Original was GL_R8UI = 0x8232 + /// + R8ui = ((int)0x8232), + /// + /// Original was GL_R16I = 0x8233 + /// + R16i = ((int)0x8233), + /// + /// Original was GL_R16UI = 0x8234 + /// + R16ui = ((int)0x8234), + /// + /// Original was GL_R32I = 0x8235 + /// + R32i = ((int)0x8235), + /// + /// Original was GL_R32UI = 0x8236 + /// + R32ui = ((int)0x8236), + /// + /// Original was GL_RG8I = 0x8237 + /// + Rg8i = ((int)0x8237), + /// + /// Original was GL_RG8UI = 0x8238 + /// + Rg8ui = ((int)0x8238), + /// + /// Original was GL_RG16I = 0x8239 + /// + Rg16i = ((int)0x8239), + /// + /// Original was GL_RG16UI = 0x823A + /// + Rg16ui = ((int)0x823A), + /// + /// Original was GL_RG32I = 0x823B + /// + Rg32i = ((int)0x823B), + /// + /// Original was GL_RG32UI = 0x823C + /// + Rg32ui = ((int)0x823C), + /// + /// Original was GL_DEBUG_OUTPUT_SYNCHRONOUS = 0x8242 + /// + DebugOutputSynchronous = ((int)0x8242), + /// + /// Original was GL_DEBUG_OUTPUT_SYNCHRONOUS_KHR = 0x8242 + /// + DebugOutputSynchronousKhr = ((int)0x8242), + /// + /// Original was GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH = 0x8243 + /// + DebugNextLoggedMessageLength = ((int)0x8243), + /// + /// Original was GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH_KHR = 0x8243 + /// + DebugNextLoggedMessageLengthKhr = ((int)0x8243), + /// + /// Original was GL_DEBUG_CALLBACK_FUNCTION = 0x8244 + /// + DebugCallbackFunction = ((int)0x8244), + /// + /// Original was GL_DEBUG_CALLBACK_FUNCTION_KHR = 0x8244 + /// + DebugCallbackFunctionKhr = ((int)0x8244), + /// + /// Original was GL_DEBUG_CALLBACK_USER_PARAM = 0x8245 + /// + DebugCallbackUserParam = ((int)0x8245), + /// + /// Original was GL_DEBUG_CALLBACK_USER_PARAM_KHR = 0x8245 + /// + DebugCallbackUserParamKhr = ((int)0x8245), + /// + /// Original was GL_DEBUG_SOURCE_API = 0x8246 + /// + DebugSourceApi = ((int)0x8246), + /// + /// Original was GL_DEBUG_SOURCE_API_KHR = 0x8246 + /// + DebugSourceApiKhr = ((int)0x8246), + /// + /// Original was GL_DEBUG_SOURCE_WINDOW_SYSTEM = 0x8247 + /// + DebugSourceWindowSystem = ((int)0x8247), + /// + /// Original was GL_DEBUG_SOURCE_WINDOW_SYSTEM_KHR = 0x8247 + /// + DebugSourceWindowSystemKhr = ((int)0x8247), + /// + /// Original was GL_DEBUG_SOURCE_SHADER_COMPILER = 0x8248 + /// + DebugSourceShaderCompiler = ((int)0x8248), + /// + /// Original was GL_DEBUG_SOURCE_SHADER_COMPILER_KHR = 0x8248 + /// + DebugSourceShaderCompilerKhr = ((int)0x8248), + /// + /// Original was GL_DEBUG_SOURCE_THIRD_PARTY = 0x8249 + /// + DebugSourceThirdParty = ((int)0x8249), + /// + /// Original was GL_DEBUG_SOURCE_THIRD_PARTY_KHR = 0x8249 + /// + DebugSourceThirdPartyKhr = ((int)0x8249), + /// + /// Original was GL_DEBUG_SOURCE_APPLICATION = 0x824A + /// + DebugSourceApplication = ((int)0x824A), + /// + /// Original was GL_DEBUG_SOURCE_APPLICATION_KHR = 0x824A + /// + DebugSourceApplicationKhr = ((int)0x824A), + /// + /// Original was GL_DEBUG_SOURCE_OTHER = 0x824B + /// + DebugSourceOther = ((int)0x824B), + /// + /// Original was GL_DEBUG_SOURCE_OTHER_KHR = 0x824B + /// + DebugSourceOtherKhr = ((int)0x824B), + /// + /// Original was GL_DEBUG_TYPE_ERROR = 0x824C + /// + DebugTypeError = ((int)0x824C), + /// + /// Original was GL_DEBUG_TYPE_ERROR_KHR = 0x824C + /// + DebugTypeErrorKhr = ((int)0x824C), + /// + /// Original was GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR = 0x824D + /// + DebugTypeDeprecatedBehavior = ((int)0x824D), + /// + /// Original was GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR_KHR = 0x824D + /// + DebugTypeDeprecatedBehaviorKhr = ((int)0x824D), + /// + /// Original was GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR = 0x824E + /// + DebugTypeUndefinedBehavior = ((int)0x824E), + /// + /// Original was GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR_KHR = 0x824E + /// + DebugTypeUndefinedBehaviorKhr = ((int)0x824E), + /// + /// Original was GL_DEBUG_TYPE_PORTABILITY = 0x824F + /// + DebugTypePortability = ((int)0x824F), + /// + /// Original was GL_DEBUG_TYPE_PORTABILITY_KHR = 0x824F + /// + DebugTypePortabilityKhr = ((int)0x824F), + /// + /// Original was GL_DEBUG_TYPE_PERFORMANCE = 0x8250 + /// + DebugTypePerformance = ((int)0x8250), + /// + /// Original was GL_DEBUG_TYPE_PERFORMANCE_KHR = 0x8250 + /// + DebugTypePerformanceKhr = ((int)0x8250), + /// + /// Original was GL_DEBUG_TYPE_OTHER = 0x8251 + /// + DebugTypeOther = ((int)0x8251), + /// + /// Original was GL_DEBUG_TYPE_OTHER_KHR = 0x8251 + /// + DebugTypeOtherKhr = ((int)0x8251), + /// /// Original was GL_LOSE_CONTEXT_ON_RESET_EXT = 0x8252 /// LoseContextOnResetExt = ((int)0x8252), /// + /// Original was GL_GUILTY_CONTEXT_RESET = 0x8253 + /// + GuiltyContextReset = ((int)0x8253), + /// /// Original was GL_GUILTY_CONTEXT_RESET_EXT = 0x8253 /// GuiltyContextResetExt = ((int)0x8253), /// + /// Original was GL_INNOCENT_CONTEXT_RESET = 0x8254 + /// + InnocentContextReset = ((int)0x8254), + /// /// Original was GL_INNOCENT_CONTEXT_RESET_EXT = 0x8254 /// InnocentContextResetExt = ((int)0x8254), /// + /// Original was GL_UNKNOWN_CONTEXT_RESET = 0x8255 + /// + UnknownContextReset = ((int)0x8255), + /// /// Original was GL_UNKNOWN_CONTEXT_RESET_EXT = 0x8255 /// UnknownContextResetExt = ((int)0x8255), @@ -4522,10 +5142,398 @@ namespace OpenTK.Graphics.ES11 /// ProgramBinaryRetrievableHint = ((int)0x8257), /// + /// Original was GL_PROGRAM_SEPARABLE = 0x8258 + /// + ProgramSeparable = ((int)0x8258), + /// + /// Original was GL_ACTIVE_PROGRAM = 0x8259 + /// + ActiveProgram = ((int)0x8259), + /// /// Original was GL_NO_RESET_NOTIFICATION_EXT = 0x8261 /// NoResetNotificationExt = ((int)0x8261), /// + /// Original was GL_COMPUTE_WORK_GROUP_SIZE = 0x8267 + /// + ComputeWorkGroupSize = ((int)0x8267), + /// + /// Original was GL_DEBUG_TYPE_MARKER = 0x8268 + /// + DebugTypeMarker = ((int)0x8268), + /// + /// Original was GL_DEBUG_TYPE_MARKER_KHR = 0x8268 + /// + DebugTypeMarkerKhr = ((int)0x8268), + /// + /// Original was GL_DEBUG_TYPE_PUSH_GROUP = 0x8269 + /// + DebugTypePushGroup = ((int)0x8269), + /// + /// Original was GL_DEBUG_TYPE_PUSH_GROUP_KHR = 0x8269 + /// + DebugTypePushGroupKhr = ((int)0x8269), + /// + /// Original was GL_DEBUG_TYPE_POP_GROUP = 0x826A + /// + DebugTypePopGroup = ((int)0x826A), + /// + /// Original was GL_DEBUG_TYPE_POP_GROUP_KHR = 0x826A + /// + DebugTypePopGroupKhr = ((int)0x826A), + /// + /// Original was GL_DEBUG_SEVERITY_NOTIFICATION = 0x826B + /// + DebugSeverityNotification = ((int)0x826B), + /// + /// Original was GL_DEBUG_SEVERITY_NOTIFICATION_KHR = 0x826B + /// + DebugSeverityNotificationKhr = ((int)0x826B), + /// + /// Original was GL_MAX_DEBUG_GROUP_STACK_DEPTH = 0x826C + /// + MaxDebugGroupStackDepth = ((int)0x826C), + /// + /// Original was GL_MAX_DEBUG_GROUP_STACK_DEPTH_KHR = 0x826C + /// + MaxDebugGroupStackDepthKhr = ((int)0x826C), + /// + /// Original was GL_DEBUG_GROUP_STACK_DEPTH = 0x826D + /// + DebugGroupStackDepth = ((int)0x826D), + /// + /// Original was GL_DEBUG_GROUP_STACK_DEPTH_KHR = 0x826D + /// + DebugGroupStackDepthKhr = ((int)0x826D), + /// + /// Original was GL_INTERNALFORMAT_SUPPORTED = 0x826F + /// + InternalformatSupported = ((int)0x826F), + /// + /// Original was GL_INTERNALFORMAT_PREFERRED = 0x8270 + /// + InternalformatPreferred = ((int)0x8270), + /// + /// Original was GL_INTERNALFORMAT_RED_SIZE = 0x8271 + /// + InternalformatRedSize = ((int)0x8271), + /// + /// Original was GL_INTERNALFORMAT_GREEN_SIZE = 0x8272 + /// + InternalformatGreenSize = ((int)0x8272), + /// + /// Original was GL_INTERNALFORMAT_BLUE_SIZE = 0x8273 + /// + InternalformatBlueSize = ((int)0x8273), + /// + /// Original was GL_INTERNALFORMAT_ALPHA_SIZE = 0x8274 + /// + InternalformatAlphaSize = ((int)0x8274), + /// + /// Original was GL_INTERNALFORMAT_DEPTH_SIZE = 0x8275 + /// + InternalformatDepthSize = ((int)0x8275), + /// + /// Original was GL_INTERNALFORMAT_STENCIL_SIZE = 0x8276 + /// + InternalformatStencilSize = ((int)0x8276), + /// + /// Original was GL_INTERNALFORMAT_SHARED_SIZE = 0x8277 + /// + InternalformatSharedSize = ((int)0x8277), + /// + /// Original was GL_INTERNALFORMAT_RED_TYPE = 0x8278 + /// + InternalformatRedType = ((int)0x8278), + /// + /// Original was GL_INTERNALFORMAT_GREEN_TYPE = 0x8279 + /// + InternalformatGreenType = ((int)0x8279), + /// + /// Original was GL_INTERNALFORMAT_BLUE_TYPE = 0x827A + /// + InternalformatBlueType = ((int)0x827A), + /// + /// Original was GL_INTERNALFORMAT_ALPHA_TYPE = 0x827B + /// + InternalformatAlphaType = ((int)0x827B), + /// + /// Original was GL_INTERNALFORMAT_DEPTH_TYPE = 0x827C + /// + InternalformatDepthType = ((int)0x827C), + /// + /// Original was GL_INTERNALFORMAT_STENCIL_TYPE = 0x827D + /// + InternalformatStencilType = ((int)0x827D), + /// + /// Original was GL_MAX_WIDTH = 0x827E + /// + MaxWidth = ((int)0x827E), + /// + /// Original was GL_MAX_HEIGHT = 0x827F + /// + MaxHeight = ((int)0x827F), + /// + /// Original was GL_MAX_DEPTH = 0x8280 + /// + MaxDepth = ((int)0x8280), + /// + /// Original was GL_MAX_LAYERS = 0x8281 + /// + MaxLayers = ((int)0x8281), + /// + /// Original was GL_COLOR_COMPONENTS = 0x8283 + /// + ColorComponents = ((int)0x8283), + /// + /// Original was GL_COLOR_RENDERABLE = 0x8286 + /// + ColorRenderable = ((int)0x8286), + /// + /// Original was GL_DEPTH_RENDERABLE = 0x8287 + /// + DepthRenderable = ((int)0x8287), + /// + /// Original was GL_STENCIL_RENDERABLE = 0x8288 + /// + StencilRenderable = ((int)0x8288), + /// + /// Original was GL_FRAMEBUFFER_RENDERABLE = 0x8289 + /// + FramebufferRenderable = ((int)0x8289), + /// + /// Original was GL_FRAMEBUFFER_RENDERABLE_LAYERED = 0x828A + /// + FramebufferRenderableLayered = ((int)0x828A), + /// + /// Original was GL_FRAMEBUFFER_BLEND = 0x828B + /// + FramebufferBlend = ((int)0x828B), + /// + /// Original was GL_READ_PIXELS = 0x828C + /// + ReadPixels = ((int)0x828C), + /// + /// Original was GL_READ_PIXELS_FORMAT = 0x828D + /// + ReadPixelsFormat = ((int)0x828D), + /// + /// Original was GL_READ_PIXELS_TYPE = 0x828E + /// + ReadPixelsType = ((int)0x828E), + /// + /// Original was GL_TEXTURE_IMAGE_FORMAT = 0x828F + /// + TextureImageFormat = ((int)0x828F), + /// + /// Original was GL_TEXTURE_IMAGE_TYPE = 0x8290 + /// + TextureImageType = ((int)0x8290), + /// + /// Original was GL_GET_TEXTURE_IMAGE_FORMAT = 0x8291 + /// + GetTextureImageFormat = ((int)0x8291), + /// + /// Original was GL_GET_TEXTURE_IMAGE_TYPE = 0x8292 + /// + GetTextureImageType = ((int)0x8292), + /// + /// Original was GL_MIPMAP = 0x8293 + /// + Mipmap = ((int)0x8293), + /// + /// Original was GL_AUTO_GENERATE_MIPMAP = 0x8295 + /// + AutoGenerateMipmap = ((int)0x8295), + /// + /// Original was GL_COLOR_ENCODING = 0x8296 + /// + ColorEncoding = ((int)0x8296), + /// + /// Original was GL_SRGB_READ = 0x8297 + /// + SrgbRead = ((int)0x8297), + /// + /// Original was GL_SRGB_WRITE = 0x8298 + /// + SrgbWrite = ((int)0x8298), + /// + /// Original was GL_FILTER = 0x829A + /// + Filter = ((int)0x829A), + /// + /// Original was GL_VERTEX_TEXTURE = 0x829B + /// + VertexTexture = ((int)0x829B), + /// + /// Original was GL_TESS_CONTROL_TEXTURE = 0x829C + /// + TessControlTexture = ((int)0x829C), + /// + /// Original was GL_TESS_EVALUATION_TEXTURE = 0x829D + /// + TessEvaluationTexture = ((int)0x829D), + /// + /// Original was GL_GEOMETRY_TEXTURE = 0x829E + /// + GeometryTexture = ((int)0x829E), + /// + /// Original was GL_FRAGMENT_TEXTURE = 0x829F + /// + FragmentTexture = ((int)0x829F), + /// + /// Original was GL_COMPUTE_TEXTURE = 0x82A0 + /// + ComputeTexture = ((int)0x82A0), + /// + /// Original was GL_TEXTURE_SHADOW = 0x82A1 + /// + TextureShadow = ((int)0x82A1), + /// + /// Original was GL_TEXTURE_GATHER = 0x82A2 + /// + TextureGather = ((int)0x82A2), + /// + /// Original was GL_TEXTURE_GATHER_SHADOW = 0x82A3 + /// + TextureGatherShadow = ((int)0x82A3), + /// + /// Original was GL_SHADER_IMAGE_LOAD = 0x82A4 + /// + ShaderImageLoad = ((int)0x82A4), + /// + /// Original was GL_SHADER_IMAGE_STORE = 0x82A5 + /// + ShaderImageStore = ((int)0x82A5), + /// + /// Original was GL_SHADER_IMAGE_ATOMIC = 0x82A6 + /// + ShaderImageAtomic = ((int)0x82A6), + /// + /// Original was GL_IMAGE_TEXEL_SIZE = 0x82A7 + /// + ImageTexelSize = ((int)0x82A7), + /// + /// Original was GL_IMAGE_COMPATIBILITY_CLASS = 0x82A8 + /// + ImageCompatibilityClass = ((int)0x82A8), + /// + /// Original was GL_IMAGE_PIXEL_FORMAT = 0x82A9 + /// + ImagePixelFormat = ((int)0x82A9), + /// + /// Original was GL_IMAGE_PIXEL_TYPE = 0x82AA + /// + ImagePixelType = ((int)0x82AA), + /// + /// Original was GL_SIMULTANEOUS_TEXTURE_AND_DEPTH_TEST = 0x82AC + /// + SimultaneousTextureAndDepthTest = ((int)0x82AC), + /// + /// Original was GL_SIMULTANEOUS_TEXTURE_AND_STENCIL_TEST = 0x82AD + /// + SimultaneousTextureAndStencilTest = ((int)0x82AD), + /// + /// Original was GL_SIMULTANEOUS_TEXTURE_AND_DEPTH_WRITE = 0x82AE + /// + SimultaneousTextureAndDepthWrite = ((int)0x82AE), + /// + /// Original was GL_SIMULTANEOUS_TEXTURE_AND_STENCIL_WRITE = 0x82AF + /// + SimultaneousTextureAndStencilWrite = ((int)0x82AF), + /// + /// Original was GL_TEXTURE_COMPRESSED_BLOCK_WIDTH = 0x82B1 + /// + TextureCompressedBlockWidth = ((int)0x82B1), + /// + /// Original was GL_TEXTURE_COMPRESSED_BLOCK_HEIGHT = 0x82B2 + /// + TextureCompressedBlockHeight = ((int)0x82B2), + /// + /// Original was GL_TEXTURE_COMPRESSED_BLOCK_SIZE = 0x82B3 + /// + TextureCompressedBlockSize = ((int)0x82B3), + /// + /// Original was GL_CLEAR_BUFFER = 0x82B4 + /// + ClearBuffer = ((int)0x82B4), + /// + /// Original was GL_TEXTURE_VIEW = 0x82B5 + /// + TextureView = ((int)0x82B5), + /// + /// Original was GL_VIEW_COMPATIBILITY_CLASS = 0x82B6 + /// + ViewCompatibilityClass = ((int)0x82B6), + /// + /// Original was GL_VERTEX_ATTRIB_RELATIVE_OFFSET = 0x82D5 + /// + VertexAttribRelativeOffset = ((int)0x82D5), + /// + /// Original was GL_BUFFER = 0x82E0 + /// + Buffer = ((int)0x82E0), + /// + /// Original was GL_BUFFER_KHR = 0x82E0 + /// + BufferKhr = ((int)0x82E0), + /// + /// Original was GL_SHADER = 0x82E1 + /// + Shader = ((int)0x82E1), + /// + /// Original was GL_SHADER_KHR = 0x82E1 + /// + ShaderKhr = ((int)0x82E1), + /// + /// Original was GL_PROGRAM = 0x82E2 + /// + Program = ((int)0x82E2), + /// + /// Original was GL_PROGRAM_KHR = 0x82E2 + /// + ProgramKhr = ((int)0x82E2), + /// + /// Original was GL_QUERY = 0x82E3 + /// + Query = ((int)0x82E3), + /// + /// Original was GL_QUERY_KHR = 0x82E3 + /// + QueryKhr = ((int)0x82E3), + /// + /// Original was GL_PROGRAM_PIPELINE = 0x82E4 + /// + ProgramPipeline = ((int)0x82E4), + /// + /// Original was GL_PROGRAM_PIPELINE_KHR = 0x82E4 + /// + ProgramPipelineKhr = ((int)0x82E4), + /// + /// Original was GL_SAMPLER = 0x82E6 + /// + Sampler = ((int)0x82E6), + /// + /// Original was GL_SAMPLER_KHR = 0x82E6 + /// + SamplerKhr = ((int)0x82E6), + /// + /// Original was GL_DISPLAY_LIST = 0x82E7 + /// + DisplayList = ((int)0x82E7), + /// + /// Original was GL_MAX_LABEL_LENGTH = 0x82E8 + /// + MaxLabelLength = ((int)0x82E8), + /// + /// Original was GL_MAX_LABEL_LENGTH_KHR = 0x82E8 + /// + MaxLabelLengthKhr = ((int)0x82E8), + /// + /// Original was GL_QUERY_TARGET = 0x82EA + /// + QueryTarget = ((int)0x82EA), + /// /// Original was GL_CONVOLUTION_HINT_SGIX = 0x8316 /// ConvolutionHintSgix = ((int)0x8316), @@ -4622,6 +5630,10 @@ namespace OpenTK.Graphics.ES11 /// UnsignedShort1555RevExt = ((int)0x8366), /// + /// Original was GL_UNSIGNED_INT_2_10_10_10_REV = 0x8368 + /// + UnsignedInt2101010Rev = ((int)0x8368), + /// /// Original was GL_TEXTURE_MAX_CLAMP_S_SGIX = 0x8369 /// TextureMaxClampSSgix = ((int)0x8369), @@ -4654,6 +5666,14 @@ namespace OpenTK.Graphics.ES11 /// CompressedRgbaS3tcDxt1Ext = ((int)0x83F1), /// + /// Original was GL_COMPRESSED_RGBA_S3TC_DXT3_EXT = 0x83F2 + /// + CompressedRgbaS3tcDxt3Ext = ((int)0x83F2), + /// + /// Original was GL_COMPRESSED_RGBA_S3TC_DXT5_EXT = 0x83F3 + /// + CompressedRgbaS3tcDxt5Ext = ((int)0x83F3), + /// /// Original was GL_FRAGMENT_LIGHTING_SGIX = 0x8400 /// FragmentLightingSgix = ((int)0x8400), @@ -4762,6 +5782,10 @@ namespace OpenTK.Graphics.ES11 /// LinearClipmapNearestSgix = ((int)0x844F), /// + /// Original was GL_FOG_COORD_SRC = 0x8450 + /// + FogCoordSrc = ((int)0x8450), + /// /// Original was GL_ALIASED_POINT_SIZE_RANGE = 0x846D /// AliasedPointSizeRange = ((int)0x846D), @@ -4918,6 +5942,14 @@ namespace OpenTK.Graphics.ES11 /// MaxRenderbufferSizeOes = ((int)0x84E8), /// + /// Original was GL_COMPRESSED_RGB = 0x84ED + /// + CompressedRgb = ((int)0x84ED), + /// + /// Original was GL_COMPRESSED_RGBA = 0x84EE + /// + CompressedRgba = ((int)0x84EE), + /// /// Original was GL_TEXTURE_COMPRESSION_HINT = 0x84EF /// TextureCompressionHint = ((int)0x84EF), @@ -4926,6 +5958,14 @@ namespace OpenTK.Graphics.ES11 /// TextureCompressionHintArb = ((int)0x84EF), /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_CONTROL_SHADER = 0x84F0 + /// + UniformBlockReferencedByTessControlShader = ((int)0x84F0), + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_EVALUATION_SHADER = 0x84F1 + /// + UniformBlockReferencedByTessEvaluationShader = ((int)0x84F1), + /// /// Original was GL_ALL_COMPLETED_NV = 0x84F2 /// AllCompletedNv = ((int)0x84F2), @@ -4954,6 +5994,18 @@ namespace OpenTK.Graphics.ES11 /// ProxyTextureRectangleNv = ((int)0x84F7), /// + /// Original was GL_DEPTH_STENCIL = 0x84F9 + /// + DepthStencil = ((int)0x84F9), + /// + /// Original was GL_DEPTH_STENCIL_EXT = 0x84F9 + /// + DepthStencilExt = ((int)0x84F9), + /// + /// Original was GL_DEPTH_STENCIL_NV = 0x84F9 + /// + DepthStencilNv = ((int)0x84F9), + /// /// Original was GL_DEPTH_STENCIL_OES = 0x84F9 /// DepthStencilOes = ((int)0x84F9), @@ -5082,6 +6134,14 @@ namespace OpenTK.Graphics.ES11 /// VertexArrayStorageHintApple = ((int)0x851F), /// + /// Original was GL_PRIMARY_COLOR_NV = 0x852C + /// + PrimaryColorNv = ((int)0x852C), + /// + /// Original was GL_SECONDARY_COLOR_NV = 0x852D + /// + SecondaryColorNv = ((int)0x852D), + /// /// Original was GL_MULTISAMPLE_FILTER_HINT_NV = 0x8534 /// MultisampleFilterHintNv = ((int)0x8534), @@ -5202,6 +6262,30 @@ namespace OpenTK.Graphics.ES11 /// TextureStorageHintApple = ((int)0x85BC), /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_ENABLED = 0x8622 + /// + VertexAttribArrayEnabled = ((int)0x8622), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_SIZE = 0x8623 + /// + VertexAttribArraySize = ((int)0x8623), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_STRIDE = 0x8624 + /// + VertexAttribArrayStride = ((int)0x8624), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_TYPE = 0x8625 + /// + VertexAttribArrayType = ((int)0x8625), + /// + /// Original was GL_CURRENT_VERTEX_ATTRIB = 0x8626 + /// + CurrentVertexAttrib = ((int)0x8626), + /// + /// Original was GL_TEXTURE_COMPRESSED = 0x86A1 + /// + TextureCompressed = ((int)0x86A1), + /// /// Original was GL_NUM_COMPRESSED_TEXTURE_FORMATS = 0x86A2 /// NumCompressedTextureFormats = ((int)0x86A2), @@ -5246,6 +6330,18 @@ namespace OpenTK.Graphics.ES11 /// Dot3RgbaImg = ((int)0x86AF), /// + /// Original was GL_PROGRAM_BINARY_LENGTH = 0x8741 + /// + ProgramBinaryLength = ((int)0x8741), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_LONG = 0x874E + /// + VertexAttribArrayLong = ((int)0x874E), + /// + /// Original was GL_DEPTH_STENCIL_MESA = 0x8750 + /// + DepthStencilMesa = ((int)0x8750), + /// /// Original was GL_BUFFER_SIZE = 0x8764 /// BufferSize = ((int)0x8764), @@ -5266,6 +6362,14 @@ namespace OpenTK.Graphics.ES11 /// Gl3DcXyAmd = ((int)0x87FA), /// + /// Original was GL_RGBA32F = 0x8814 + /// + Rgba32f = ((int)0x8814), + /// + /// Original was GL_RGBA32F_ARB = 0x8814 + /// + Rgba32fArb = ((int)0x8814), + /// /// Original was GL_RGBA32F_EXT = 0x8814 /// Rgba32fExt = ((int)0x8814), @@ -5286,10 +6390,26 @@ namespace OpenTK.Graphics.ES11 /// LuminanceAlpha32fExt = ((int)0x8819), /// + /// Original was GL_RGBA16F = 0x881A + /// + Rgba16f = ((int)0x881A), + /// + /// Original was GL_RGBA16F_ARB = 0x881A + /// + Rgba16fArb = ((int)0x881A), + /// /// Original was GL_RGBA16F_EXT = 0x881A /// Rgba16fExt = ((int)0x881A), /// + /// Original was GL_RGB16F = 0x881B + /// + Rgb16f = ((int)0x881B), + /// + /// Original was GL_RGB16F_ARB = 0x881B + /// + Rgb16fArb = ((int)0x881B), + /// /// Original was GL_RGB16F_EXT = 0x881B /// Rgb16fExt = ((int)0x881B), @@ -5362,6 +6482,26 @@ namespace OpenTK.Graphics.ES11 /// CoordReplaceOes = ((int)0x8862), /// + /// Original was GL_QUERY_COUNTER_BITS = 0x8864 + /// + QueryCounterBits = ((int)0x8864), + /// + /// Original was GL_CURRENT_QUERY = 0x8865 + /// + CurrentQuery = ((int)0x8865), + /// + /// Original was GL_QUERY_RESULT = 0x8866 + /// + QueryResult = ((int)0x8866), + /// + /// Original was GL_QUERY_RESULT_AVAILABLE = 0x8867 + /// + QueryResultAvailable = ((int)0x8867), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_NORMALIZED = 0x886A + /// + VertexAttribArrayNormalized = ((int)0x886A), + /// /// Original was GL_ARRAY_BUFFER = 0x8892 /// ArrayBuffer = ((int)0x8892), @@ -5398,6 +6538,10 @@ namespace OpenTK.Graphics.ES11 /// WeightArrayBufferBindingOes = ((int)0x889E), /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING = 0x889F + /// + VertexAttribArrayBufferBinding = ((int)0x889F), + /// /// Original was GL_READ_ONLY = 0x88B8 /// ReadOnly = ((int)0x88B8), @@ -5414,10 +6558,18 @@ namespace OpenTK.Graphics.ES11 /// ReadWrite = ((int)0x88BA), /// + /// Original was GL_BUFFER_ACCESS = 0x88BB + /// + BufferAccess = ((int)0x88BB), + /// /// Original was GL_BUFFER_ACCESS_OES = 0x88BB /// BufferAccessOes = ((int)0x88BB), /// + /// Original was GL_BUFFER_MAPPED = 0x88BC + /// + BufferMapped = ((int)0x88BC), + /// /// Original was GL_BUFFER_MAPPED_OES = 0x88BC /// BufferMappedOes = ((int)0x88BC), @@ -5426,6 +6578,10 @@ namespace OpenTK.Graphics.ES11 /// BufferMapPointerOes = ((int)0x88BD), /// + /// Original was GL_TIME_ELAPSED = 0x88BF + /// + TimeElapsed = ((int)0x88BF), + /// /// Original was GL_STREAM_DRAW = 0x88E0 /// StreamDraw = ((int)0x88E0), @@ -5470,10 +6626,90 @@ namespace OpenTK.Graphics.ES11 /// PixelUnpackBuffer = ((int)0x88EC), /// + /// Original was GL_DEPTH24_STENCIL8 = 0x88F0 + /// + Depth24Stencil8 = ((int)0x88F0), + /// + /// Original was GL_DEPTH24_STENCIL8_EXT = 0x88F0 + /// + Depth24Stencil8Ext = ((int)0x88F0), + /// /// Original was GL_DEPTH24_STENCIL8_OES = 0x88F0 /// Depth24Stencil8Oes = ((int)0x88F0), /// + /// Original was GL_SRC1_COLOR = 0x88F9 + /// + Src1Color = ((int)0x88F9), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_INTEGER = 0x88FD + /// + VertexAttribArrayInteger = ((int)0x88FD), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_DIVISOR = 0x88FE + /// + VertexAttribArrayDivisor = ((int)0x88FE), + /// + /// Original was GL_SAMPLES_PASSED = 0x8914 + /// + SamplesPassed = ((int)0x8914), + /// + /// Original was GL_GEOMETRY_VERTICES_OUT = 0x8916 + /// + GeometryVerticesOut = ((int)0x8916), + /// + /// Original was GL_GEOMETRY_INPUT_TYPE = 0x8917 + /// + GeometryInputType = ((int)0x8917), + /// + /// Original was GL_GEOMETRY_OUTPUT_TYPE = 0x8918 + /// + GeometryOutputType = ((int)0x8918), + /// + /// Original was GL_MOV_ATI = 0x8961 + /// + MovAti = ((int)0x8961), + /// + /// Original was GL_ADD_ATI = 0x8963 + /// + AddAti = ((int)0x8963), + /// + /// Original was GL_MUL_ATI = 0x8964 + /// + MulAti = ((int)0x8964), + /// + /// Original was GL_SUB_ATI = 0x8965 + /// + SubAti = ((int)0x8965), + /// + /// Original was GL_DOT3_ATI = 0x8966 + /// + Dot3Ati = ((int)0x8966), + /// + /// Original was GL_DOT4_ATI = 0x8967 + /// + Dot4Ati = ((int)0x8967), + /// + /// Original was GL_MAD_ATI = 0x8968 + /// + MadAti = ((int)0x8968), + /// + /// Original was GL_LERP_ATI = 0x8969 + /// + LerpAti = ((int)0x8969), + /// + /// Original was GL_CND_ATI = 0x896A + /// + CndAti = ((int)0x896A), + /// + /// Original was GL_CND0_ATI = 0x896B + /// + Cnd0Ati = ((int)0x896B), + /// + /// Original was GL_DOT2_ADD_ATI = 0x896C + /// + Dot2AddAti = ((int)0x896C), + /// /// Original was GL_PACK_RESAMPLE_OML = 0x8984 /// PackResampleOml = ((int)0x8984), @@ -5510,10 +6746,370 @@ namespace OpenTK.Graphics.ES11 /// UniformBuffer = ((int)0x8A11), /// + /// Original was GL_ACTIVE_UNIFORM_BLOCK_MAX_NAME_LENGTH = 0x8A35 + /// + ActiveUniformBlockMaxNameLength = ((int)0x8A35), + /// + /// Original was GL_ACTIVE_UNIFORM_BLOCKS = 0x8A36 + /// + ActiveUniformBlocks = ((int)0x8A36), + /// + /// Original was GL_UNIFORM_TYPE = 0x8A37 + /// + UniformType = ((int)0x8A37), + /// + /// Original was GL_UNIFORM_SIZE = 0x8A38 + /// + UniformSize = ((int)0x8A38), + /// + /// Original was GL_UNIFORM_NAME_LENGTH = 0x8A39 + /// + UniformNameLength = ((int)0x8A39), + /// + /// Original was GL_UNIFORM_BLOCK_INDEX = 0x8A3A + /// + UniformBlockIndex = ((int)0x8A3A), + /// + /// Original was GL_UNIFORM_OFFSET = 0x8A3B + /// + UniformOffset = ((int)0x8A3B), + /// + /// Original was GL_UNIFORM_ARRAY_STRIDE = 0x8A3C + /// + UniformArrayStride = ((int)0x8A3C), + /// + /// Original was GL_UNIFORM_MATRIX_STRIDE = 0x8A3D + /// + UniformMatrixStride = ((int)0x8A3D), + /// + /// Original was GL_UNIFORM_IS_ROW_MAJOR = 0x8A3E + /// + UniformIsRowMajor = ((int)0x8A3E), + /// + /// Original was GL_UNIFORM_BLOCK_BINDING = 0x8A3F + /// + UniformBlockBinding = ((int)0x8A3F), + /// + /// Original was GL_UNIFORM_BLOCK_DATA_SIZE = 0x8A40 + /// + UniformBlockDataSize = ((int)0x8A40), + /// + /// Original was GL_UNIFORM_BLOCK_NAME_LENGTH = 0x8A41 + /// + UniformBlockNameLength = ((int)0x8A41), + /// + /// Original was GL_UNIFORM_BLOCK_ACTIVE_UNIFORMS = 0x8A42 + /// + UniformBlockActiveUniforms = ((int)0x8A42), + /// + /// Original was GL_UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES = 0x8A43 + /// + UniformBlockActiveUniformIndices = ((int)0x8A43), + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER = 0x8A44 + /// + UniformBlockReferencedByVertexShader = ((int)0x8A44), + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_GEOMETRY_SHADER = 0x8A45 + /// + UniformBlockReferencedByGeometryShader = ((int)0x8A45), + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER = 0x8A46 + /// + UniformBlockReferencedByFragmentShader = ((int)0x8A46), + /// /// Original was GL_SYNC_OBJECT_APPLE = 0x8A53 /// SyncObjectApple = ((int)0x8A53), /// + /// Original was GL_FRAGMENT_SHADER = 0x8B30 + /// + FragmentShader = ((int)0x8B30), + /// + /// Original was GL_FRAGMENT_SHADER_ARB = 0x8B30 + /// + FragmentShaderArb = ((int)0x8B30), + /// + /// Original was GL_VERTEX_SHADER = 0x8B31 + /// + VertexShader = ((int)0x8B31), + /// + /// Original was GL_VERTEX_SHADER_ARB = 0x8B31 + /// + VertexShaderArb = ((int)0x8B31), + /// + /// Original was GL_SHADER_TYPE = 0x8B4F + /// + ShaderType = ((int)0x8B4F), + /// + /// Original was GL_FLOAT_VEC2 = 0x8B50 + /// + FloatVec2 = ((int)0x8B50), + /// + /// Original was GL_FLOAT_VEC2_ARB = 0x8B50 + /// + FloatVec2Arb = ((int)0x8B50), + /// + /// Original was GL_FLOAT_VEC3 = 0x8B51 + /// + FloatVec3 = ((int)0x8B51), + /// + /// Original was GL_FLOAT_VEC3_ARB = 0x8B51 + /// + FloatVec3Arb = ((int)0x8B51), + /// + /// Original was GL_FLOAT_VEC4 = 0x8B52 + /// + FloatVec4 = ((int)0x8B52), + /// + /// Original was GL_FLOAT_VEC4_ARB = 0x8B52 + /// + FloatVec4Arb = ((int)0x8B52), + /// + /// Original was GL_INT_VEC2 = 0x8B53 + /// + IntVec2 = ((int)0x8B53), + /// + /// Original was GL_INT_VEC2_ARB = 0x8B53 + /// + IntVec2Arb = ((int)0x8B53), + /// + /// Original was GL_INT_VEC3 = 0x8B54 + /// + IntVec3 = ((int)0x8B54), + /// + /// Original was GL_INT_VEC3_ARB = 0x8B54 + /// + IntVec3Arb = ((int)0x8B54), + /// + /// Original was GL_INT_VEC4 = 0x8B55 + /// + IntVec4 = ((int)0x8B55), + /// + /// Original was GL_INT_VEC4_ARB = 0x8B55 + /// + IntVec4Arb = ((int)0x8B55), + /// + /// Original was GL_BOOL = 0x8B56 + /// + Bool = ((int)0x8B56), + /// + /// Original was GL_BOOL_ARB = 0x8B56 + /// + BoolArb = ((int)0x8B56), + /// + /// Original was GL_BOOL_VEC2 = 0x8B57 + /// + BoolVec2 = ((int)0x8B57), + /// + /// Original was GL_BOOL_VEC2_ARB = 0x8B57 + /// + BoolVec2Arb = ((int)0x8B57), + /// + /// Original was GL_BOOL_VEC3 = 0x8B58 + /// + BoolVec3 = ((int)0x8B58), + /// + /// Original was GL_BOOL_VEC3_ARB = 0x8B58 + /// + BoolVec3Arb = ((int)0x8B58), + /// + /// Original was GL_BOOL_VEC4 = 0x8B59 + /// + BoolVec4 = ((int)0x8B59), + /// + /// Original was GL_BOOL_VEC4_ARB = 0x8B59 + /// + BoolVec4Arb = ((int)0x8B59), + /// + /// Original was GL_FLOAT_MAT2 = 0x8B5A + /// + FloatMat2 = ((int)0x8B5A), + /// + /// Original was GL_FLOAT_MAT2_ARB = 0x8B5A + /// + FloatMat2Arb = ((int)0x8B5A), + /// + /// Original was GL_FLOAT_MAT3 = 0x8B5B + /// + FloatMat3 = ((int)0x8B5B), + /// + /// Original was GL_FLOAT_MAT3_ARB = 0x8B5B + /// + FloatMat3Arb = ((int)0x8B5B), + /// + /// Original was GL_FLOAT_MAT4 = 0x8B5C + /// + FloatMat4 = ((int)0x8B5C), + /// + /// Original was GL_FLOAT_MAT4_ARB = 0x8B5C + /// + FloatMat4Arb = ((int)0x8B5C), + /// + /// Original was GL_SAMPLER_1D = 0x8B5D + /// + Sampler1D = ((int)0x8B5D), + /// + /// Original was GL_SAMPLER_1D_ARB = 0x8B5D + /// + Sampler1DArb = ((int)0x8B5D), + /// + /// Original was GL_SAMPLER_2D = 0x8B5E + /// + Sampler2D = ((int)0x8B5E), + /// + /// Original was GL_SAMPLER_2D_ARB = 0x8B5E + /// + Sampler2DArb = ((int)0x8B5E), + /// + /// Original was GL_SAMPLER_3D = 0x8B5F + /// + Sampler3D = ((int)0x8B5F), + /// + /// Original was GL_SAMPLER_3D_ARB = 0x8B5F + /// + Sampler3DArb = ((int)0x8B5F), + /// + /// Original was GL_SAMPLER_3D_OES = 0x8B5F + /// + Sampler3DOes = ((int)0x8B5F), + /// + /// Original was GL_SAMPLER_CUBE = 0x8B60 + /// + SamplerCube = ((int)0x8B60), + /// + /// Original was GL_SAMPLER_CUBE_ARB = 0x8B60 + /// + SamplerCubeArb = ((int)0x8B60), + /// + /// Original was GL_SAMPLER_1D_SHADOW = 0x8B61 + /// + Sampler1DShadow = ((int)0x8B61), + /// + /// Original was GL_SAMPLER_1D_SHADOW_ARB = 0x8B61 + /// + Sampler1DShadowArb = ((int)0x8B61), + /// + /// Original was GL_SAMPLER_2D_SHADOW = 0x8B62 + /// + Sampler2DShadow = ((int)0x8B62), + /// + /// Original was GL_SAMPLER_2D_SHADOW_ARB = 0x8B62 + /// + Sampler2DShadowArb = ((int)0x8B62), + /// + /// Original was GL_SAMPLER_2D_SHADOW_EXT = 0x8B62 + /// + Sampler2DShadowExt = ((int)0x8B62), + /// + /// Original was GL_SAMPLER_2D_RECT = 0x8B63 + /// + Sampler2DRect = ((int)0x8B63), + /// + /// Original was GL_SAMPLER_2D_RECT_ARB = 0x8B63 + /// + Sampler2DRectArb = ((int)0x8B63), + /// + /// Original was GL_SAMPLER_2D_RECT_SHADOW = 0x8B64 + /// + Sampler2DRectShadow = ((int)0x8B64), + /// + /// Original was GL_SAMPLER_2D_RECT_SHADOW_ARB = 0x8B64 + /// + Sampler2DRectShadowArb = ((int)0x8B64), + /// + /// Original was GL_FLOAT_MAT2x3 = 0x8B65 + /// + FloatMat2x3 = ((int)0x8B65), + /// + /// Original was GL_FLOAT_MAT2x3_NV = 0x8B65 + /// + FloatMat2x3Nv = ((int)0x8B65), + /// + /// Original was GL_FLOAT_MAT2x4 = 0x8B66 + /// + FloatMat2x4 = ((int)0x8B66), + /// + /// Original was GL_FLOAT_MAT2x4_NV = 0x8B66 + /// + FloatMat2x4Nv = ((int)0x8B66), + /// + /// Original was GL_FLOAT_MAT3x2 = 0x8B67 + /// + FloatMat3x2 = ((int)0x8B67), + /// + /// Original was GL_FLOAT_MAT3x2_NV = 0x8B67 + /// + FloatMat3x2Nv = ((int)0x8B67), + /// + /// Original was GL_FLOAT_MAT3x4 = 0x8B68 + /// + FloatMat3x4 = ((int)0x8B68), + /// + /// Original was GL_FLOAT_MAT3x4_NV = 0x8B68 + /// + FloatMat3x4Nv = ((int)0x8B68), + /// + /// Original was GL_FLOAT_MAT4x2 = 0x8B69 + /// + FloatMat4x2 = ((int)0x8B69), + /// + /// Original was GL_FLOAT_MAT4x2_NV = 0x8B69 + /// + FloatMat4x2Nv = ((int)0x8B69), + /// + /// Original was GL_FLOAT_MAT4x3 = 0x8B6A + /// + FloatMat4x3 = ((int)0x8B6A), + /// + /// Original was GL_FLOAT_MAT4x3_NV = 0x8B6A + /// + FloatMat4x3Nv = ((int)0x8B6A), + /// + /// Original was GL_DELETE_STATUS = 0x8B80 + /// + DeleteStatus = ((int)0x8B80), + /// + /// Original was GL_COMPILE_STATUS = 0x8B81 + /// + CompileStatus = ((int)0x8B81), + /// + /// Original was GL_LINK_STATUS = 0x8B82 + /// + LinkStatus = ((int)0x8B82), + /// + /// Original was GL_VALIDATE_STATUS = 0x8B83 + /// + ValidateStatus = ((int)0x8B83), + /// + /// Original was GL_INFO_LOG_LENGTH = 0x8B84 + /// + InfoLogLength = ((int)0x8B84), + /// + /// Original was GL_ATTACHED_SHADERS = 0x8B85 + /// + AttachedShaders = ((int)0x8B85), + /// + /// Original was GL_ACTIVE_UNIFORMS = 0x8B86 + /// + ActiveUniforms = ((int)0x8B86), + /// + /// Original was GL_ACTIVE_UNIFORM_MAX_LENGTH = 0x8B87 + /// + ActiveUniformMaxLength = ((int)0x8B87), + /// + /// Original was GL_SHADER_SOURCE_LENGTH = 0x8B88 + /// + ShaderSourceLength = ((int)0x8B88), + /// + /// Original was GL_ACTIVE_ATTRIBUTES = 0x8B89 + /// + ActiveAttributes = ((int)0x8B89), + /// + /// Original was GL_ACTIVE_ATTRIBUTE_MAX_LENGTH = 0x8B8A + /// + ActiveAttributeMaxLength = ((int)0x8B8A), + /// /// Original was GL_FRAGMENT_SHADER_DERIVATIVE_HINT = 0x8B8B /// FragmentShaderDerivativeHint = ((int)0x8B8B), @@ -5570,10 +7166,18 @@ namespace OpenTK.Graphics.ES11 /// Palette8Rgb5A1Oes = ((int)0x8B99), /// + /// Original was GL_IMPLEMENTATION_COLOR_READ_TYPE = 0x8B9A + /// + ImplementationColorReadType = ((int)0x8B9A), + /// /// Original was GL_IMPLEMENTATION_COLOR_READ_TYPE_OES = 0x8B9A /// ImplementationColorReadTypeOes = ((int)0x8B9A), /// + /// Original was GL_IMPLEMENTATION_COLOR_READ_FORMAT = 0x8B9B + /// + ImplementationColorReadFormat = ((int)0x8B9B), + /// /// Original was GL_IMPLEMENTATION_COLOR_READ_FORMAT_OES = 0x8B9B /// ImplementationColorReadFormatOes = ((int)0x8B9B), @@ -5706,22 +7310,134 @@ namespace OpenTK.Graphics.ES11 /// TextureBuffer = ((int)0x8C2A), /// + /// Original was GL_ANY_SAMPLES_PASSED = 0x8C2F + /// + AnySamplesPassed = ((int)0x8C2F), + /// + /// Original was GL_R11F_G11F_B10F = 0x8C3A + /// + R11fG11fB10f = ((int)0x8C3A), + /// + /// Original was GL_R11F_G11F_B10F_APPLE = 0x8C3A + /// + R11fG11fB10fApple = ((int)0x8C3A), + /// + /// Original was GL_R11F_G11F_B10F_EXT = 0x8C3A + /// + R11fG11fB10fExt = ((int)0x8C3A), + /// + /// Original was GL_UNSIGNED_INT_10F_11F_11F_REV = 0x8C3B + /// + UnsignedInt10F11F11FRev = ((int)0x8C3B), + /// + /// Original was GL_RGB9_E5 = 0x8C3D + /// + Rgb9E5 = ((int)0x8C3D), + /// + /// Original was GL_RGB9_E5_APPLE = 0x8C3D + /// + Rgb9E5Apple = ((int)0x8C3D), + /// + /// Original was GL_RGB9_E5_EXT = 0x8C3D + /// + Rgb9E5Ext = ((int)0x8C3D), + /// + /// Original was GL_SRGB = 0x8C40 + /// + Srgb = ((int)0x8C40), + /// /// Original was GL_SRGB_EXT = 0x8C40 /// SrgbExt = ((int)0x8C40), /// + /// Original was GL_SRGB8 = 0x8C41 + /// + Srgb8 = ((int)0x8C41), + /// + /// Original was GL_SRGB8_EXT = 0x8C41 + /// + Srgb8Ext = ((int)0x8C41), + /// + /// Original was GL_SRGB8_NV = 0x8C41 + /// + Srgb8Nv = ((int)0x8C41), + /// + /// Original was GL_SRGB_ALPHA = 0x8C42 + /// + SrgbAlpha = ((int)0x8C42), + /// /// Original was GL_SRGB_ALPHA_EXT = 0x8C42 /// SrgbAlphaExt = ((int)0x8C42), /// + /// Original was GL_SRGB8_ALPHA8 = 0x8C43 + /// + Srgb8Alpha8 = ((int)0x8C43), + /// /// Original was GL_SRGB8_ALPHA8_EXT = 0x8C43 /// Srgb8Alpha8Ext = ((int)0x8C43), /// + /// Original was GL_COMPRESSED_SRGB = 0x8C48 + /// + CompressedSrgb = ((int)0x8C48), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA = 0x8C49 + /// + CompressedSrgbAlpha = ((int)0x8C49), + /// + /// Original was GL_COMPRESSED_SRGB_S3TC_DXT1_EXT = 0x8C4C + /// + CompressedSrgbS3tcDxt1Ext = ((int)0x8C4C), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT = 0x8C4D + /// + CompressedSrgbAlphaS3tcDxt1Ext = ((int)0x8C4D), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT = 0x8C4E + /// + CompressedSrgbAlphaS3tcDxt3Ext = ((int)0x8C4E), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT = 0x8C4F + /// + CompressedSrgbAlphaS3tcDxt5Ext = ((int)0x8C4F), + /// + /// Original was GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH = 0x8C76 + /// + TransformFeedbackVaryingMaxLength = ((int)0x8C76), + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER_MODE = 0x8C7F + /// + TransformFeedbackBufferMode = ((int)0x8C7F), + /// + /// Original was GL_TRANSFORM_FEEDBACK_VARYINGS = 0x8C83 + /// + TransformFeedbackVaryings = ((int)0x8C83), + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER_START = 0x8C84 + /// + TransformFeedbackBufferStart = ((int)0x8C84), + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER_SIZE = 0x8C85 + /// + TransformFeedbackBufferSize = ((int)0x8C85), + /// + /// Original was GL_PRIMITIVES_GENERATED = 0x8C87 + /// + PrimitivesGenerated = ((int)0x8C87), + /// + /// Original was GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN = 0x8C88 + /// + TransformFeedbackPrimitivesWritten = ((int)0x8C88), + /// /// Original was GL_TRANSFORM_FEEDBACK_BUFFER = 0x8C8E /// TransformFeedbackBuffer = ((int)0x8C8E), /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER_BINDING = 0x8C8F + /// + TransformFeedbackBufferBinding = ((int)0x8C8F), + /// /// Original was GL_ATC_RGB_AMD = 0x8C92 /// AtcRgbAmd = ((int)0x8C92), @@ -5730,6 +7446,14 @@ namespace OpenTK.Graphics.ES11 /// AtcRgbaExplicitAlphaAmd = ((int)0x8C93), /// + /// Original was GL_LOWER_LEFT = 0x8CA1 + /// + LowerLeft = ((int)0x8CA1), + /// + /// Original was GL_UPPER_LEFT = 0x8CA2 + /// + UpperLeft = ((int)0x8CA2), + /// /// Original was GL_DRAW_FRAMEBUFFER_BINDING_APPLE = 0x8CA6 /// DrawFramebufferBindingApple = ((int)0x8CA6), @@ -5742,10 +7466,18 @@ namespace OpenTK.Graphics.ES11 /// RenderbufferBindingOes = ((int)0x8CA7), /// + /// Original was GL_READ_FRAMEBUFFER = 0x8CA8 + /// + ReadFramebuffer = ((int)0x8CA8), + /// /// Original was GL_READ_FRAMEBUFFER_APPLE = 0x8CA8 /// ReadFramebufferApple = ((int)0x8CA8), /// + /// Original was GL_DRAW_FRAMEBUFFER = 0x8CA9 + /// + DrawFramebuffer = ((int)0x8CA9), + /// /// Original was GL_DRAW_FRAMEBUFFER_APPLE = 0x8CA9 /// DrawFramebufferApple = ((int)0x8CA9), @@ -5754,6 +7486,10 @@ namespace OpenTK.Graphics.ES11 /// ReadFramebufferBindingApple = ((int)0x8CAA), /// + /// Original was GL_RENDERBUFFER_SAMPLES = 0x8CAB + /// + RenderbufferSamples = ((int)0x8CAB), + /// /// Original was GL_RENDERBUFFER_SAMPLES_APPLE = 0x8CAB /// RenderbufferSamplesApple = ((int)0x8CAB), @@ -5762,30 +7498,66 @@ namespace OpenTK.Graphics.ES11 /// RenderbufferSamplesExt = ((int)0x8CAB), /// + /// Original was GL_DEPTH_COMPONENT32F = 0x8CAC + /// + DepthComponent32f = ((int)0x8CAC), + /// + /// Original was GL_DEPTH32F_STENCIL8 = 0x8CAD + /// + Depth32fStencil8 = ((int)0x8CAD), + /// /// Original was GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE_OES = 0x8CD0 /// FramebufferAttachmentObjectTypeOes = ((int)0x8CD0), /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME = 0x8CD1 + /// + FramebufferAttachmentObjectName = ((int)0x8CD1), + /// /// Original was GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME_OES = 0x8CD1 /// FramebufferAttachmentObjectNameOes = ((int)0x8CD1), /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL = 0x8CD2 + /// + FramebufferAttachmentTextureLevel = ((int)0x8CD2), + /// /// Original was GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL_OES = 0x8CD2 /// FramebufferAttachmentTextureLevelOes = ((int)0x8CD2), /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE = 0x8CD3 + /// + FramebufferAttachmentTextureCubeMapFace = ((int)0x8CD3), + /// /// Original was GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE_OES = 0x8CD3 /// FramebufferAttachmentTextureCubeMapFaceOes = ((int)0x8CD3), /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER = 0x8CD4 + /// + FramebufferAttachmentTextureLayer = ((int)0x8CD4), + /// + /// Original was GL_FRAMEBUFFER_COMPLETE = 0x8CD5 + /// + FramebufferComplete = ((int)0x8CD5), + /// /// Original was GL_FRAMEBUFFER_COMPLETE_OES = 0x8CD5 /// FramebufferCompleteOes = ((int)0x8CD5), /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT = 0x8CD6 + /// + FramebufferIncompleteAttachment = ((int)0x8CD6), + /// /// Original was GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT_OES = 0x8CD6 /// FramebufferIncompleteAttachmentOes = ((int)0x8CD6), /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT = 0x8CD7 + /// + FramebufferIncompleteMissingAttachment = ((int)0x8CD7), + /// /// Original was GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT_OES = 0x8CD7 /// FramebufferIncompleteMissingAttachmentOes = ((int)0x8CD7), @@ -5798,14 +7570,302 @@ namespace OpenTK.Graphics.ES11 /// FramebufferIncompleteFormatsOes = ((int)0x8CDA), /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER = 0x8CDB + /// + FramebufferIncompleteDrawBuffer = ((int)0x8CDB), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER = 0x8CDC + /// + FramebufferIncompleteReadBuffer = ((int)0x8CDC), + /// + /// Original was GL_FRAMEBUFFER_UNSUPPORTED = 0x8CDD + /// + FramebufferUnsupported = ((int)0x8CDD), + /// /// Original was GL_FRAMEBUFFER_UNSUPPORTED_OES = 0x8CDD /// FramebufferUnsupportedOes = ((int)0x8CDD), /// + /// Original was GL_MAX_COLOR_ATTACHMENTS = 0x8CDF + /// + MaxColorAttachments = ((int)0x8CDF), + /// + /// Original was GL_MAX_COLOR_ATTACHMENTS_EXT = 0x8CDF + /// + MaxColorAttachmentsExt = ((int)0x8CDF), + /// + /// Original was GL_MAX_COLOR_ATTACHMENTS_NV = 0x8CDF + /// + MaxColorAttachmentsNv = ((int)0x8CDF), + /// + /// Original was GL_COLOR_ATTACHMENT0 = 0x8CE0 + /// + ColorAttachment0 = ((int)0x8CE0), + /// + /// Original was GL_COLOR_ATTACHMENT0_EXT = 0x8CE0 + /// + ColorAttachment0Ext = ((int)0x8CE0), + /// + /// Original was GL_COLOR_ATTACHMENT0_NV = 0x8CE0 + /// + ColorAttachment0Nv = ((int)0x8CE0), + /// /// Original was GL_COLOR_ATTACHMENT0_OES = 0x8CE0 /// ColorAttachment0Oes = ((int)0x8CE0), /// + /// Original was GL_COLOR_ATTACHMENT1 = 0x8CE1 + /// + ColorAttachment1 = ((int)0x8CE1), + /// + /// Original was GL_COLOR_ATTACHMENT1_EXT = 0x8CE1 + /// + ColorAttachment1Ext = ((int)0x8CE1), + /// + /// Original was GL_COLOR_ATTACHMENT1_NV = 0x8CE1 + /// + ColorAttachment1Nv = ((int)0x8CE1), + /// + /// Original was GL_COLOR_ATTACHMENT2 = 0x8CE2 + /// + ColorAttachment2 = ((int)0x8CE2), + /// + /// Original was GL_COLOR_ATTACHMENT2_EXT = 0x8CE2 + /// + ColorAttachment2Ext = ((int)0x8CE2), + /// + /// Original was GL_COLOR_ATTACHMENT2_NV = 0x8CE2 + /// + ColorAttachment2Nv = ((int)0x8CE2), + /// + /// Original was GL_COLOR_ATTACHMENT3 = 0x8CE3 + /// + ColorAttachment3 = ((int)0x8CE3), + /// + /// Original was GL_COLOR_ATTACHMENT3_EXT = 0x8CE3 + /// + ColorAttachment3Ext = ((int)0x8CE3), + /// + /// Original was GL_COLOR_ATTACHMENT3_NV = 0x8CE3 + /// + ColorAttachment3Nv = ((int)0x8CE3), + /// + /// Original was GL_COLOR_ATTACHMENT4 = 0x8CE4 + /// + ColorAttachment4 = ((int)0x8CE4), + /// + /// Original was GL_COLOR_ATTACHMENT4_EXT = 0x8CE4 + /// + ColorAttachment4Ext = ((int)0x8CE4), + /// + /// Original was GL_COLOR_ATTACHMENT4_NV = 0x8CE4 + /// + ColorAttachment4Nv = ((int)0x8CE4), + /// + /// Original was GL_COLOR_ATTACHMENT5 = 0x8CE5 + /// + ColorAttachment5 = ((int)0x8CE5), + /// + /// Original was GL_COLOR_ATTACHMENT5_EXT = 0x8CE5 + /// + ColorAttachment5Ext = ((int)0x8CE5), + /// + /// Original was GL_COLOR_ATTACHMENT5_NV = 0x8CE5 + /// + ColorAttachment5Nv = ((int)0x8CE5), + /// + /// Original was GL_COLOR_ATTACHMENT6 = 0x8CE6 + /// + ColorAttachment6 = ((int)0x8CE6), + /// + /// Original was GL_COLOR_ATTACHMENT6_EXT = 0x8CE6 + /// + ColorAttachment6Ext = ((int)0x8CE6), + /// + /// Original was GL_COLOR_ATTACHMENT6_NV = 0x8CE6 + /// + ColorAttachment6Nv = ((int)0x8CE6), + /// + /// Original was GL_COLOR_ATTACHMENT7 = 0x8CE7 + /// + ColorAttachment7 = ((int)0x8CE7), + /// + /// Original was GL_COLOR_ATTACHMENT7_EXT = 0x8CE7 + /// + ColorAttachment7Ext = ((int)0x8CE7), + /// + /// Original was GL_COLOR_ATTACHMENT7_NV = 0x8CE7 + /// + ColorAttachment7Nv = ((int)0x8CE7), + /// + /// Original was GL_COLOR_ATTACHMENT8 = 0x8CE8 + /// + ColorAttachment8 = ((int)0x8CE8), + /// + /// Original was GL_COLOR_ATTACHMENT8_EXT = 0x8CE8 + /// + ColorAttachment8Ext = ((int)0x8CE8), + /// + /// Original was GL_COLOR_ATTACHMENT8_NV = 0x8CE8 + /// + ColorAttachment8Nv = ((int)0x8CE8), + /// + /// Original was GL_COLOR_ATTACHMENT9 = 0x8CE9 + /// + ColorAttachment9 = ((int)0x8CE9), + /// + /// Original was GL_COLOR_ATTACHMENT9_EXT = 0x8CE9 + /// + ColorAttachment9Ext = ((int)0x8CE9), + /// + /// Original was GL_COLOR_ATTACHMENT9_NV = 0x8CE9 + /// + ColorAttachment9Nv = ((int)0x8CE9), + /// + /// Original was GL_COLOR_ATTACHMENT10 = 0x8CEA + /// + ColorAttachment10 = ((int)0x8CEA), + /// + /// Original was GL_COLOR_ATTACHMENT10_EXT = 0x8CEA + /// + ColorAttachment10Ext = ((int)0x8CEA), + /// + /// Original was GL_COLOR_ATTACHMENT10_NV = 0x8CEA + /// + ColorAttachment10Nv = ((int)0x8CEA), + /// + /// Original was GL_COLOR_ATTACHMENT11 = 0x8CEB + /// + ColorAttachment11 = ((int)0x8CEB), + /// + /// Original was GL_COLOR_ATTACHMENT11_EXT = 0x8CEB + /// + ColorAttachment11Ext = ((int)0x8CEB), + /// + /// Original was GL_COLOR_ATTACHMENT11_NV = 0x8CEB + /// + ColorAttachment11Nv = ((int)0x8CEB), + /// + /// Original was GL_COLOR_ATTACHMENT12 = 0x8CEC + /// + ColorAttachment12 = ((int)0x8CEC), + /// + /// Original was GL_COLOR_ATTACHMENT12_EXT = 0x8CEC + /// + ColorAttachment12Ext = ((int)0x8CEC), + /// + /// Original was GL_COLOR_ATTACHMENT12_NV = 0x8CEC + /// + ColorAttachment12Nv = ((int)0x8CEC), + /// + /// Original was GL_COLOR_ATTACHMENT13 = 0x8CED + /// + ColorAttachment13 = ((int)0x8CED), + /// + /// Original was GL_COLOR_ATTACHMENT13_EXT = 0x8CED + /// + ColorAttachment13Ext = ((int)0x8CED), + /// + /// Original was GL_COLOR_ATTACHMENT13_NV = 0x8CED + /// + ColorAttachment13Nv = ((int)0x8CED), + /// + /// Original was GL_COLOR_ATTACHMENT14 = 0x8CEE + /// + ColorAttachment14 = ((int)0x8CEE), + /// + /// Original was GL_COLOR_ATTACHMENT14_EXT = 0x8CEE + /// + ColorAttachment14Ext = ((int)0x8CEE), + /// + /// Original was GL_COLOR_ATTACHMENT14_NV = 0x8CEE + /// + ColorAttachment14Nv = ((int)0x8CEE), + /// + /// Original was GL_COLOR_ATTACHMENT15 = 0x8CEF + /// + ColorAttachment15 = ((int)0x8CEF), + /// + /// Original was GL_COLOR_ATTACHMENT15_EXT = 0x8CEF + /// + ColorAttachment15Ext = ((int)0x8CEF), + /// + /// Original was GL_COLOR_ATTACHMENT15_NV = 0x8CEF + /// + ColorAttachment15Nv = ((int)0x8CEF), + /// + /// Original was GL_COLOR_ATTACHMENT16 = 0x8CF0 + /// + ColorAttachment16 = ((int)0x8CF0), + /// + /// Original was GL_COLOR_ATTACHMENT17 = 0x8CF1 + /// + ColorAttachment17 = ((int)0x8CF1), + /// + /// Original was GL_COLOR_ATTACHMENT18 = 0x8CF2 + /// + ColorAttachment18 = ((int)0x8CF2), + /// + /// Original was GL_COLOR_ATTACHMENT19 = 0x8CF3 + /// + ColorAttachment19 = ((int)0x8CF3), + /// + /// Original was GL_COLOR_ATTACHMENT20 = 0x8CF4 + /// + ColorAttachment20 = ((int)0x8CF4), + /// + /// Original was GL_COLOR_ATTACHMENT21 = 0x8CF5 + /// + ColorAttachment21 = ((int)0x8CF5), + /// + /// Original was GL_COLOR_ATTACHMENT22 = 0x8CF6 + /// + ColorAttachment22 = ((int)0x8CF6), + /// + /// Original was GL_COLOR_ATTACHMENT23 = 0x8CF7 + /// + ColorAttachment23 = ((int)0x8CF7), + /// + /// Original was GL_COLOR_ATTACHMENT24 = 0x8CF8 + /// + ColorAttachment24 = ((int)0x8CF8), + /// + /// Original was GL_COLOR_ATTACHMENT25 = 0x8CF9 + /// + ColorAttachment25 = ((int)0x8CF9), + /// + /// Original was GL_COLOR_ATTACHMENT26 = 0x8CFA + /// + ColorAttachment26 = ((int)0x8CFA), + /// + /// Original was GL_COLOR_ATTACHMENT27 = 0x8CFB + /// + ColorAttachment27 = ((int)0x8CFB), + /// + /// Original was GL_COLOR_ATTACHMENT28 = 0x8CFC + /// + ColorAttachment28 = ((int)0x8CFC), + /// + /// Original was GL_COLOR_ATTACHMENT29 = 0x8CFD + /// + ColorAttachment29 = ((int)0x8CFD), + /// + /// Original was GL_COLOR_ATTACHMENT30 = 0x8CFE + /// + ColorAttachment30 = ((int)0x8CFE), + /// + /// Original was GL_COLOR_ATTACHMENT31 = 0x8CFF + /// + ColorAttachment31 = ((int)0x8CFF), + /// + /// Original was GL_DEPTH_ATTACHMENT = 0x8D00 + /// + DepthAttachment = ((int)0x8D00), + /// + /// Original was GL_DEPTH_ATTACHMENT_EXT = 0x8D00 + /// + DepthAttachmentExt = ((int)0x8D00), + /// /// Original was GL_DEPTH_ATTACHMENT_OES = 0x8D00 /// DepthAttachmentOes = ((int)0x8D00), @@ -5814,22 +7874,42 @@ namespace OpenTK.Graphics.ES11 /// StencilAttachmentOes = ((int)0x8D20), /// + /// Original was GL_FRAMEBUFFER = 0x8D40 + /// + Framebuffer = ((int)0x8D40), + /// /// Original was GL_FRAMEBUFFER_OES = 0x8D40 /// FramebufferOes = ((int)0x8D40), /// + /// Original was GL_RENDERBUFFER = 0x8D41 + /// + Renderbuffer = ((int)0x8D41), + /// /// Original was GL_RENDERBUFFER_OES = 0x8D41 /// RenderbufferOes = ((int)0x8D41), /// + /// Original was GL_RENDERBUFFER_WIDTH = 0x8D42 + /// + RenderbufferWidth = ((int)0x8D42), + /// /// Original was GL_RENDERBUFFER_WIDTH_OES = 0x8D42 /// RenderbufferWidthOes = ((int)0x8D42), /// + /// Original was GL_RENDERBUFFER_HEIGHT = 0x8D43 + /// + RenderbufferHeight = ((int)0x8D43), + /// /// Original was GL_RENDERBUFFER_HEIGHT_OES = 0x8D43 /// RenderbufferHeightOes = ((int)0x8D43), /// + /// Original was GL_RENDERBUFFER_INTERNAL_FORMAT = 0x8D44 + /// + RenderbufferInternalFormat = ((int)0x8D44), + /// /// Original was GL_RENDERBUFFER_INTERNAL_FORMAT_OES = 0x8D44 /// RenderbufferInternalFormatOes = ((int)0x8D44), @@ -5846,30 +7926,58 @@ namespace OpenTK.Graphics.ES11 /// StencilIndex8Oes = ((int)0x8D48), /// + /// Original was GL_RENDERBUFFER_RED_SIZE = 0x8D50 + /// + RenderbufferRedSize = ((int)0x8D50), + /// /// Original was GL_RENDERBUFFER_RED_SIZE_OES = 0x8D50 /// RenderbufferRedSizeOes = ((int)0x8D50), /// + /// Original was GL_RENDERBUFFER_GREEN_SIZE = 0x8D51 + /// + RenderbufferGreenSize = ((int)0x8D51), + /// /// Original was GL_RENDERBUFFER_GREEN_SIZE_OES = 0x8D51 /// RenderbufferGreenSizeOes = ((int)0x8D51), /// + /// Original was GL_RENDERBUFFER_BLUE_SIZE = 0x8D52 + /// + RenderbufferBlueSize = ((int)0x8D52), + /// /// Original was GL_RENDERBUFFER_BLUE_SIZE_OES = 0x8D52 /// RenderbufferBlueSizeOes = ((int)0x8D52), /// + /// Original was GL_RENDERBUFFER_ALPHA_SIZE = 0x8D53 + /// + RenderbufferAlphaSize = ((int)0x8D53), + /// /// Original was GL_RENDERBUFFER_ALPHA_SIZE_OES = 0x8D53 /// RenderbufferAlphaSizeOes = ((int)0x8D53), /// + /// Original was GL_RENDERBUFFER_DEPTH_SIZE = 0x8D54 + /// + RenderbufferDepthSize = ((int)0x8D54), + /// /// Original was GL_RENDERBUFFER_DEPTH_SIZE_OES = 0x8D54 /// RenderbufferDepthSizeOes = ((int)0x8D54), /// + /// Original was GL_RENDERBUFFER_STENCIL_SIZE = 0x8D55 + /// + RenderbufferStencilSize = ((int)0x8D55), + /// /// Original was GL_RENDERBUFFER_STENCIL_SIZE_OES = 0x8D55 /// RenderbufferStencilSizeOes = ((int)0x8D55), /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE = 0x8D56 + /// + FramebufferIncompleteMultisample = ((int)0x8D56), + /// /// Original was GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_APPLE = 0x8D56 /// FramebufferIncompleteMultisampleApple = ((int)0x8D56), @@ -5914,10 +8022,170 @@ namespace OpenTK.Graphics.ES11 /// RequiredTextureImageUnitsOes = ((int)0x8D68), /// + /// Original was GL_ANY_SAMPLES_PASSED_CONSERVATIVE = 0x8D6A + /// + AnySamplesPassedConservative = ((int)0x8D6A), + /// /// Original was GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_SAMPLES_EXT = 0x8D6C /// FramebufferAttachmentTextureSamplesExt = ((int)0x8D6C), /// + /// Original was GL_RGBA32UI = 0x8D70 + /// + Rgba32ui = ((int)0x8D70), + /// + /// Original was GL_RGB32UI = 0x8D71 + /// + Rgb32ui = ((int)0x8D71), + /// + /// Original was GL_RGBA16UI = 0x8D76 + /// + Rgba16ui = ((int)0x8D76), + /// + /// Original was GL_RGB16UI = 0x8D77 + /// + Rgb16ui = ((int)0x8D77), + /// + /// Original was GL_RGBA8UI = 0x8D7C + /// + Rgba8ui = ((int)0x8D7C), + /// + /// Original was GL_RGB8UI = 0x8D7D + /// + Rgb8ui = ((int)0x8D7D), + /// + /// Original was GL_RGBA32I = 0x8D82 + /// + Rgba32i = ((int)0x8D82), + /// + /// Original was GL_RGB32I = 0x8D83 + /// + Rgb32i = ((int)0x8D83), + /// + /// Original was GL_RGBA16I = 0x8D88 + /// + Rgba16i = ((int)0x8D88), + /// + /// Original was GL_RGB16I = 0x8D89 + /// + Rgb16i = ((int)0x8D89), + /// + /// Original was GL_RGBA8I = 0x8D8E + /// + Rgba8i = ((int)0x8D8E), + /// + /// Original was GL_RGB8I = 0x8D8F + /// + Rgb8i = ((int)0x8D8F), + /// + /// Original was GL_INT_2_10_10_10_REV = 0x8D9F + /// + Int2101010Rev = ((int)0x8D9F), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_LAYERED = 0x8DA7 + /// + FramebufferAttachmentLayered = ((int)0x8DA7), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS = 0x8DA8 + /// + FramebufferIncompleteLayerTargets = ((int)0x8DA8), + /// + /// Original was GL_DEPTH_COMPONENT32F_NV = 0x8DAB + /// + DepthComponent32fNv = ((int)0x8DAB), + /// + /// Original was GL_DEPTH32F_STENCIL8_NV = 0x8DAC + /// + Depth32fStencil8Nv = ((int)0x8DAC), + /// + /// Original was GL_COMPRESSED_RED_RGTC1 = 0x8DBB + /// + CompressedRedRgtc1 = ((int)0x8DBB), + /// + /// Original was GL_COMPRESSED_RED_RGTC1_EXT = 0x8DBB + /// + CompressedRedRgtc1Ext = ((int)0x8DBB), + /// + /// Original was GL_COMPRESSED_SIGNED_RED_RGTC1 = 0x8DBC + /// + CompressedSignedRedRgtc1 = ((int)0x8DBC), + /// + /// Original was GL_COMPRESSED_SIGNED_RED_RGTC1_EXT = 0x8DBC + /// + CompressedSignedRedRgtc1Ext = ((int)0x8DBC), + /// + /// Original was GL_COMPRESSED_RG_RGTC2 = 0x8DBD + /// + CompressedRgRgtc2 = ((int)0x8DBD), + /// + /// Original was GL_COMPRESSED_SIGNED_RG_RGTC2 = 0x8DBE + /// + CompressedSignedRgRgtc2 = ((int)0x8DBE), + /// + /// Original was GL_GEOMETRY_SHADER = 0x8DD9 + /// + GeometryShader = ((int)0x8DD9), + /// + /// Original was GL_ACTIVE_SUBROUTINES = 0x8DE5 + /// + ActiveSubroutines = ((int)0x8DE5), + /// + /// Original was GL_ACTIVE_SUBROUTINE_UNIFORMS = 0x8DE6 + /// + ActiveSubroutineUniforms = ((int)0x8DE6), + /// + /// Original was GL_LOW_FLOAT = 0x8DF0 + /// + LowFloat = ((int)0x8DF0), + /// + /// Original was GL_MEDIUM_FLOAT = 0x8DF1 + /// + MediumFloat = ((int)0x8DF1), + /// + /// Original was GL_HIGH_FLOAT = 0x8DF2 + /// + HighFloat = ((int)0x8DF2), + /// + /// Original was GL_LOW_INT = 0x8DF3 + /// + LowInt = ((int)0x8DF3), + /// + /// Original was GL_MEDIUM_INT = 0x8DF4 + /// + MediumInt = ((int)0x8DF4), + /// + /// Original was GL_HIGH_INT = 0x8DF5 + /// + HighInt = ((int)0x8DF5), + /// + /// Original was GL_QUERY_WAIT = 0x8E13 + /// + QueryWait = ((int)0x8E13), + /// + /// Original was GL_QUERY_NO_WAIT = 0x8E14 + /// + QueryNoWait = ((int)0x8E14), + /// + /// Original was GL_QUERY_BY_REGION_WAIT = 0x8E15 + /// + QueryByRegionWait = ((int)0x8E15), + /// + /// Original was GL_QUERY_BY_REGION_NO_WAIT = 0x8E16 + /// + QueryByRegionNoWait = ((int)0x8E16), + /// + /// Original was GL_TRANSFORM_FEEDBACK = 0x8E22 + /// + TransformFeedback = ((int)0x8E22), + /// + /// Original was GL_TRANSFORM_FEEDBACK_PAUSED = 0x8E23 + /// + TransformFeedbackPaused = ((int)0x8E23), + /// + /// Original was GL_TRANSFORM_FEEDBACK_ACTIVE = 0x8E24 + /// + TransformFeedbackActive = ((int)0x8E24), + /// /// Original was GL_TEXTURE_SWIZZLE_R = 0x8E42 /// TextureSwizzleR = ((int)0x8E42), @@ -5938,6 +8206,70 @@ namespace OpenTK.Graphics.ES11 /// TextureSwizzleRgba = ((int)0x8E46), /// + /// Original was GL_ACTIVE_SUBROUTINE_UNIFORM_LOCATIONS = 0x8E47 + /// + ActiveSubroutineUniformLocations = ((int)0x8E47), + /// + /// Original was GL_ACTIVE_SUBROUTINE_MAX_LENGTH = 0x8E48 + /// + ActiveSubroutineMaxLength = ((int)0x8E48), + /// + /// Original was GL_ACTIVE_SUBROUTINE_UNIFORM_MAX_LENGTH = 0x8E49 + /// + ActiveSubroutineUniformMaxLength = ((int)0x8E49), + /// + /// Original was GL_NUM_COMPATIBLE_SUBROUTINES = 0x8E4A + /// + NumCompatibleSubroutines = ((int)0x8E4A), + /// + /// Original was GL_COMPATIBLE_SUBROUTINES = 0x8E4B + /// + CompatibleSubroutines = ((int)0x8E4B), + /// + /// Original was GL_FIRST_VERTEX_CONVENTION = 0x8E4D + /// + FirstVertexConvention = ((int)0x8E4D), + /// + /// Original was GL_LAST_VERTEX_CONVENTION = 0x8E4E + /// + LastVertexConvention = ((int)0x8E4E), + /// + /// Original was GL_PATCH_VERTICES = 0x8E72 + /// + PatchVertices = ((int)0x8E72), + /// + /// Original was GL_PATCH_DEFAULT_INNER_LEVEL = 0x8E73 + /// + PatchDefaultInnerLevel = ((int)0x8E73), + /// + /// Original was GL_PATCH_DEFAULT_OUTER_LEVEL = 0x8E74 + /// + PatchDefaultOuterLevel = ((int)0x8E74), + /// + /// Original was GL_TESS_EVALUATION_SHADER = 0x8E87 + /// + TessEvaluationShader = ((int)0x8E87), + /// + /// Original was GL_TESS_CONTROL_SHADER = 0x8E88 + /// + TessControlShader = ((int)0x8E88), + /// + /// Original was GL_COMPRESSED_RGBA_BPTC_UNORM = 0x8E8C + /// + CompressedRgbaBptcUnorm = ((int)0x8E8C), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM = 0x8E8D + /// + CompressedSrgbAlphaBptcUnorm = ((int)0x8E8D), + /// + /// Original was GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT = 0x8E8E + /// + CompressedRgbBptcSignedFloat = ((int)0x8E8E), + /// + /// Original was GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT = 0x8E8F + /// + CompressedRgbBptcUnsignedFloat = ((int)0x8E8F), + /// /// Original was GL_COPY_READ_BUFFER = 0x8F36 /// CopyReadBuffer = ((int)0x8F36), @@ -5950,6 +8282,46 @@ namespace OpenTK.Graphics.ES11 /// DrawIndirectBuffer = ((int)0x8F3F), /// + /// Original was GL_R8_SNORM = 0x8F94 + /// + R8Snorm = ((int)0x8F94), + /// + /// Original was GL_RG8_SNORM = 0x8F95 + /// + Rg8Snorm = ((int)0x8F95), + /// + /// Original was GL_RGB8_SNORM = 0x8F96 + /// + Rgb8Snorm = ((int)0x8F96), + /// + /// Original was GL_RGBA8_SNORM = 0x8F97 + /// + Rgba8Snorm = ((int)0x8F97), + /// + /// Original was GL_R16_SNORM = 0x8F98 + /// + R16Snorm = ((int)0x8F98), + /// + /// Original was GL_R16_SNORM_EXT = 0x8F98 + /// + R16SnormExt = ((int)0x8F98), + /// + /// Original was GL_RG16_SNORM = 0x8F99 + /// + Rg16Snorm = ((int)0x8F99), + /// + /// Original was GL_RG16_SNORM_EXT = 0x8F99 + /// + Rg16SnormExt = ((int)0x8F99), + /// + /// Original was GL_RGB16_SNORM = 0x8F9A + /// + Rgb16Snorm = ((int)0x8F9A), + /// + /// Original was GL_RGB16_SNORM_EXT = 0x8F9A + /// + Rgb16SnormExt = ((int)0x8F9A), + /// /// Original was GL_PERFMON_GLOBAL_MODE_QCOM = 0x8FA0 /// PerfmonGlobalModeQcom = ((int)0x8FA0), @@ -5982,6 +8354,210 @@ namespace OpenTK.Graphics.ES11 /// ProxyTextureCubeMapArrayArb = ((int)0x900B), /// + /// Original was GL_RGB10_A2UI = 0x906F + /// + Rgb10A2ui = ((int)0x906F), + /// + /// Original was GL_PATH_FORMAT_SVG_NV = 0x9070 + /// + PathFormatSvgNv = ((int)0x9070), + /// + /// Original was GL_PATH_FORMAT_PS_NV = 0x9071 + /// + PathFormatPsNv = ((int)0x9071), + /// + /// Original was GL_STANDARD_FONT_NAME_NV = 0x9072 + /// + StandardFontNameNv = ((int)0x9072), + /// + /// Original was GL_SYSTEM_FONT_NAME_NV = 0x9073 + /// + SystemFontNameNv = ((int)0x9073), + /// + /// Original was GL_FILE_NAME_NV = 0x9074 + /// + FileNameNv = ((int)0x9074), + /// + /// Original was GL_PATH_STROKE_WIDTH_NV = 0x9075 + /// + PathStrokeWidthNv = ((int)0x9075), + /// + /// Original was GL_PATH_END_CAPS_NV = 0x9076 + /// + PathEndCapsNv = ((int)0x9076), + /// + /// Original was GL_PATH_INITIAL_END_CAP_NV = 0x9077 + /// + PathInitialEndCapNv = ((int)0x9077), + /// + /// Original was GL_PATH_TERMINAL_END_CAP_NV = 0x9078 + /// + PathTerminalEndCapNv = ((int)0x9078), + /// + /// Original was GL_PATH_JOIN_STYLE_NV = 0x9079 + /// + PathJoinStyleNv = ((int)0x9079), + /// + /// Original was GL_PATH_MITER_LIMIT_NV = 0x907A + /// + PathMiterLimitNv = ((int)0x907A), + /// + /// Original was GL_PATH_DASH_CAPS_NV = 0x907B + /// + PathDashCapsNv = ((int)0x907B), + /// + /// Original was GL_PATH_INITIAL_DASH_CAP_NV = 0x907C + /// + PathInitialDashCapNv = ((int)0x907C), + /// + /// Original was GL_PATH_TERMINAL_DASH_CAP_NV = 0x907D + /// + PathTerminalDashCapNv = ((int)0x907D), + /// + /// Original was GL_PATH_DASH_OFFSET_NV = 0x907E + /// + PathDashOffsetNv = ((int)0x907E), + /// + /// Original was GL_PATH_CLIENT_LENGTH_NV = 0x907F + /// + PathClientLengthNv = ((int)0x907F), + /// + /// Original was GL_PATH_FILL_MODE_NV = 0x9080 + /// + PathFillModeNv = ((int)0x9080), + /// + /// Original was GL_PATH_FILL_MASK_NV = 0x9081 + /// + PathFillMaskNv = ((int)0x9081), + /// + /// Original was GL_PATH_FILL_COVER_MODE_NV = 0x9082 + /// + PathFillCoverModeNv = ((int)0x9082), + /// + /// Original was GL_PATH_STROKE_COVER_MODE_NV = 0x9083 + /// + PathStrokeCoverModeNv = ((int)0x9083), + /// + /// Original was GL_PATH_STROKE_MASK_NV = 0x9084 + /// + PathStrokeMaskNv = ((int)0x9084), + /// + /// Original was GL_COUNT_UP_NV = 0x9088 + /// + CountUpNv = ((int)0x9088), + /// + /// Original was GL_COUNT_DOWN_NV = 0x9089 + /// + CountDownNv = ((int)0x9089), + /// + /// Original was GL_PATH_OBJECT_BOUNDING_BOX_NV = 0x908A + /// + PathObjectBoundingBoxNv = ((int)0x908A), + /// + /// Original was GL_CONVEX_HULL_NV = 0x908B + /// + ConvexHullNv = ((int)0x908B), + /// + /// Original was GL_BOUNDING_BOX_NV = 0x908D + /// + BoundingBoxNv = ((int)0x908D), + /// + /// Original was GL_TRANSLATE_X_NV = 0x908E + /// + TranslateXNv = ((int)0x908E), + /// + /// Original was GL_TRANSLATE_Y_NV = 0x908F + /// + TranslateYNv = ((int)0x908F), + /// + /// Original was GL_TRANSLATE_2D_NV = 0x9090 + /// + Translate2DNv = ((int)0x9090), + /// + /// Original was GL_TRANSLATE_3D_NV = 0x9091 + /// + Translate3DNv = ((int)0x9091), + /// + /// Original was GL_AFFINE_2D_NV = 0x9092 + /// + Affine2DNv = ((int)0x9092), + /// + /// Original was GL_AFFINE_3D_NV = 0x9094 + /// + Affine3DNv = ((int)0x9094), + /// + /// Original was GL_TRANSPOSE_AFFINE_2D_NV = 0x9096 + /// + TransposeAffine2DNv = ((int)0x9096), + /// + /// Original was GL_TRANSPOSE_AFFINE_3D_NV = 0x9098 + /// + TransposeAffine3DNv = ((int)0x9098), + /// + /// Original was GL_UTF8_NV = 0x909A + /// + Utf8Nv = ((int)0x909A), + /// + /// Original was GL_UTF16_NV = 0x909B + /// + Utf16Nv = ((int)0x909B), + /// + /// Original was GL_BOUNDING_BOX_OF_BOUNDING_BOXES_NV = 0x909C + /// + BoundingBoxOfBoundingBoxesNv = ((int)0x909C), + /// + /// Original was GL_PATH_COMMAND_COUNT_NV = 0x909D + /// + PathCommandCountNv = ((int)0x909D), + /// + /// Original was GL_PATH_COORD_COUNT_NV = 0x909E + /// + PathCoordCountNv = ((int)0x909E), + /// + /// Original was GL_PATH_DASH_ARRAY_COUNT_NV = 0x909F + /// + PathDashArrayCountNv = ((int)0x909F), + /// + /// Original was GL_PATH_COMPUTED_LENGTH_NV = 0x90A0 + /// + PathComputedLengthNv = ((int)0x90A0), + /// + /// Original was GL_PATH_FILL_BOUNDING_BOX_NV = 0x90A1 + /// + PathFillBoundingBoxNv = ((int)0x90A1), + /// + /// Original was GL_PATH_STROKE_BOUNDING_BOX_NV = 0x90A2 + /// + PathStrokeBoundingBoxNv = ((int)0x90A2), + /// + /// Original was GL_SKIP_MISSING_GLYPH_NV = 0x90A9 + /// + SkipMissingGlyphNv = ((int)0x90A9), + /// + /// Original was GL_USE_MISSING_GLYPH_NV = 0x90AA + /// + UseMissingGlyphNv = ((int)0x90AA), + /// + /// Original was GL_ACCUM_ADJACENT_PAIRS_NV = 0x90AD + /// + AccumAdjacentPairsNv = ((int)0x90AD), + /// + /// Original was GL_ADJACENT_PAIRS_NV = 0x90AE + /// + AdjacentPairsNv = ((int)0x90AE), + /// + /// Original was GL_FIRST_TO_REST_NV = 0x90AF + /// + FirstToRestNv = ((int)0x90AF), + /// + /// Original was GL_PATH_DASH_OFFSET_RESET_NV = 0x90B4 + /// + PathDashOffsetResetNv = ((int)0x90B4), + /// + /// Original was GL_IMAGE_FORMAT_COMPATIBILITY_TYPE = 0x90C7 + /// + ImageFormatCompatibilityType = ((int)0x90C7), + /// /// Original was GL_SHADER_STORAGE_BUFFER = 0x90D2 /// ShaderStorageBuffer = ((int)0x90D2), @@ -5990,6 +8566,14 @@ namespace OpenTK.Graphics.ES11 /// DepthStencilTextureMode = ((int)0x90EA), /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_COMPUTE_SHADER = 0x90EC + /// + UniformBlockReferencedByComputeShader = ((int)0x90EC), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_COMPUTE_SHADER = 0x90ED + /// + AtomicCounterBufferReferencedByComputeShader = ((int)0x90ED), + /// /// Original was GL_DISPATCH_INDIRECT_BUFFER = 0x90EE /// DispatchIndirectBuffer = ((int)0x90EE), @@ -6018,18 +8602,34 @@ namespace OpenTK.Graphics.ES11 /// MaxServerWaitTimeoutApple = ((int)0x9111), /// + /// Original was GL_OBJECT_TYPE = 0x9112 + /// + ObjectType = ((int)0x9112), + /// /// Original was GL_OBJECT_TYPE_APPLE = 0x9112 /// ObjectTypeApple = ((int)0x9112), /// + /// Original was GL_SYNC_CONDITION = 0x9113 + /// + SyncCondition = ((int)0x9113), + /// /// Original was GL_SYNC_CONDITION_APPLE = 0x9113 /// SyncConditionApple = ((int)0x9113), /// + /// Original was GL_SYNC_STATUS = 0x9114 + /// + SyncStatus = ((int)0x9114), + /// /// Original was GL_SYNC_STATUS_APPLE = 0x9114 /// SyncStatusApple = ((int)0x9114), /// + /// Original was GL_SYNC_FLAGS = 0x9115 + /// + SyncFlags = ((int)0x9115), + /// /// Original was GL_SYNC_FLAGS_APPLE = 0x9115 /// SyncFlagsApple = ((int)0x9115), @@ -6038,6 +8638,10 @@ namespace OpenTK.Graphics.ES11 /// SyncFenceApple = ((int)0x9116), /// + /// Original was GL_SYNC_GPU_COMMANDS_COMPLETE = 0x9117 + /// + SyncGpuCommandsComplete = ((int)0x9117), + /// /// Original was GL_SYNC_GPU_COMMANDS_COMPLETE_APPLE = 0x9117 /// SyncGpuCommandsCompleteApple = ((int)0x9117), @@ -6050,22 +8654,50 @@ namespace OpenTK.Graphics.ES11 /// SignaledApple = ((int)0x9119), /// + /// Original was GL_ALREADY_SIGNALED = 0x911A + /// + AlreadySignaled = ((int)0x911A), + /// /// Original was GL_ALREADY_SIGNALED_APPLE = 0x911A /// AlreadySignaledApple = ((int)0x911A), /// + /// Original was GL_TIMEOUT_EXPIRED = 0x911B + /// + TimeoutExpired = ((int)0x911B), + /// /// Original was GL_TIMEOUT_EXPIRED_APPLE = 0x911B /// TimeoutExpiredApple = ((int)0x911B), /// + /// Original was GL_CONDITION_SATISFIED = 0x911C + /// + ConditionSatisfied = ((int)0x911C), + /// /// Original was GL_CONDITION_SATISFIED_APPLE = 0x911C /// ConditionSatisfiedApple = ((int)0x911C), /// + /// Original was GL_WAIT_FAILED = 0x911D + /// + WaitFailed = ((int)0x911D), + /// /// Original was GL_WAIT_FAILED_APPLE = 0x911D /// WaitFailedApple = ((int)0x911D), /// + /// Original was GL_BUFFER_ACCESS_FLAGS = 0x911F + /// + BufferAccessFlags = ((int)0x911F), + /// + /// Original was GL_BUFFER_MAP_LENGTH = 0x9120 + /// + BufferMapLength = ((int)0x9120), + /// + /// Original was GL_BUFFER_MAP_OFFSET = 0x9121 + /// + BufferMapOffset = ((int)0x9121), + /// /// Original was GL_TEXTURE_IMMUTABLE_FORMAT_EXT = 0x912F /// TextureImmutableFormatExt = ((int)0x912F), @@ -6086,18 +8718,302 @@ namespace OpenTK.Graphics.ES11 /// TextureSamplesImg = ((int)0x9136), /// + /// Original was GL_MAX_DEBUG_MESSAGE_LENGTH = 0x9143 + /// + MaxDebugMessageLength = ((int)0x9143), + /// + /// Original was GL_MAX_DEBUG_MESSAGE_LENGTH_KHR = 0x9143 + /// + MaxDebugMessageLengthKhr = ((int)0x9143), + /// + /// Original was GL_MAX_DEBUG_LOGGED_MESSAGES = 0x9144 + /// + MaxDebugLoggedMessages = ((int)0x9144), + /// + /// Original was GL_MAX_DEBUG_LOGGED_MESSAGES_KHR = 0x9144 + /// + MaxDebugLoggedMessagesKhr = ((int)0x9144), + /// + /// Original was GL_DEBUG_LOGGED_MESSAGES = 0x9145 + /// + DebugLoggedMessages = ((int)0x9145), + /// + /// Original was GL_DEBUG_LOGGED_MESSAGES_KHR = 0x9145 + /// + DebugLoggedMessagesKhr = ((int)0x9145), + /// + /// Original was GL_DEBUG_SEVERITY_HIGH = 0x9146 + /// + DebugSeverityHigh = ((int)0x9146), + /// + /// Original was GL_DEBUG_SEVERITY_HIGH_KHR = 0x9146 + /// + DebugSeverityHighKhr = ((int)0x9146), + /// + /// Original was GL_DEBUG_SEVERITY_MEDIUM = 0x9147 + /// + DebugSeverityMedium = ((int)0x9147), + /// + /// Original was GL_DEBUG_SEVERITY_MEDIUM_KHR = 0x9147 + /// + DebugSeverityMediumKhr = ((int)0x9147), + /// + /// Original was GL_DEBUG_SEVERITY_LOW = 0x9148 + /// + DebugSeverityLow = ((int)0x9148), + /// + /// Original was GL_DEBUG_SEVERITY_LOW_KHR = 0x9148 + /// + DebugSeverityLowKhr = ((int)0x9148), + /// /// Original was GL_QUERY_BUFFER = 0x9192 /// QueryBuffer = ((int)0x9192), /// + /// Original was GL_QUERY_RESULT_NO_WAIT = 0x9194 + /// + QueryResultNoWait = ((int)0x9194), + /// + /// Original was GL_COMPUTE_SHADER = 0x91B9 + /// + ComputeShader = ((int)0x91B9), + /// + /// Original was GL_COMPRESSED_R11_EAC = 0x9270 + /// + CompressedR11Eac = ((int)0x9270), + /// + /// Original was GL_COMPRESSED_SIGNED_R11_EAC = 0x9271 + /// + CompressedSignedR11Eac = ((int)0x9271), + /// + /// Original was GL_COMPRESSED_RG11_EAC = 0x9272 + /// + CompressedRg11Eac = ((int)0x9272), + /// + /// Original was GL_COMPRESSED_SIGNED_RG11_EAC = 0x9273 + /// + CompressedSignedRg11Eac = ((int)0x9273), + /// + /// Original was GL_COMPRESSED_RGB8_ETC2 = 0x9274 + /// + CompressedRgb8Etc2 = ((int)0x9274), + /// + /// Original was GL_COMPRESSED_SRGB8_ETC2 = 0x9275 + /// + CompressedSrgb8Etc2 = ((int)0x9275), + /// + /// Original was GL_COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2 = 0x9276 + /// + CompressedRgb8PunchthroughAlpha1Etc2 = ((int)0x9276), + /// + /// Original was GL_COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2 = 0x9277 + /// + CompressedSrgb8PunchthroughAlpha1Etc2 = ((int)0x9277), + /// + /// Original was GL_COMPRESSED_RGBA8_ETC2_EAC = 0x9278 + /// + CompressedRgba8Etc2Eac = ((int)0x9278), + /// + /// Original was GL_COMPRESSED_SRGB8_ALPHA8_ETC2_EAC = 0x9279 + /// + CompressedSrgb8Alpha8Etc2Eac = ((int)0x9279), + /// /// Original was GL_ATOMIC_COUNTER_BUFFER = 0x92C0 /// AtomicCounterBuffer = ((int)0x92C0), /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_BINDING = 0x92C1 + /// + AtomicCounterBufferBinding = ((int)0x92C1), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_DATA_SIZE = 0x92C4 + /// + AtomicCounterBufferDataSize = ((int)0x92C4), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTERS = 0x92C5 + /// + AtomicCounterBufferActiveAtomicCounters = ((int)0x92C5), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTER_INDICES = 0x92C6 + /// + AtomicCounterBufferActiveAtomicCounterIndices = ((int)0x92C6), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_VERTEX_SHADER = 0x92C7 + /// + AtomicCounterBufferReferencedByVertexShader = ((int)0x92C7), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_CONTROL_SHADER = 0x92C8 + /// + AtomicCounterBufferReferencedByTessControlShader = ((int)0x92C8), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_EVALUATION_SHADER = 0x92C9 + /// + AtomicCounterBufferReferencedByTessEvaluationShader = ((int)0x92C9), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_GEOMETRY_SHADER = 0x92CA + /// + AtomicCounterBufferReferencedByGeometryShader = ((int)0x92CA), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_FRAGMENT_SHADER = 0x92CB + /// + AtomicCounterBufferReferencedByFragmentShader = ((int)0x92CB), + /// + /// Original was GL_ACTIVE_ATOMIC_COUNTER_BUFFERS = 0x92D9 + /// + ActiveAtomicCounterBuffers = ((int)0x92D9), + /// + /// Original was GL_UNIFORM_ATOMIC_COUNTER_BUFFER_INDEX = 0x92DA + /// + UniformAtomicCounterBufferIndex = ((int)0x92DA), + /// + /// Original was GL_DEBUG_OUTPUT = 0x92E0 + /// + DebugOutput = ((int)0x92E0), + /// + /// Original was GL_DEBUG_OUTPUT_KHR = 0x92E0 + /// + DebugOutputKhr = ((int)0x92E0), + /// + /// Original was GL_UNIFORM = 0x92E1 + /// + Uniform = ((int)0x92E1), + /// + /// Original was GL_UNIFORM_BLOCK = 0x92E2 + /// + UniformBlock = ((int)0x92E2), + /// + /// Original was GL_PROGRAM_INPUT = 0x92E3 + /// + ProgramInput = ((int)0x92E3), + /// + /// Original was GL_PROGRAM_OUTPUT = 0x92E4 + /// + ProgramOutput = ((int)0x92E4), + /// + /// Original was GL_BUFFER_VARIABLE = 0x92E5 + /// + BufferVariable = ((int)0x92E5), + /// + /// Original was GL_SHADER_STORAGE_BLOCK = 0x92E6 + /// + ShaderStorageBlock = ((int)0x92E6), + /// + /// Original was GL_VERTEX_SUBROUTINE = 0x92E8 + /// + VertexSubroutine = ((int)0x92E8), + /// + /// Original was GL_TESS_CONTROL_SUBROUTINE = 0x92E9 + /// + TessControlSubroutine = ((int)0x92E9), + /// + /// Original was GL_TESS_EVALUATION_SUBROUTINE = 0x92EA + /// + TessEvaluationSubroutine = ((int)0x92EA), + /// + /// Original was GL_GEOMETRY_SUBROUTINE = 0x92EB + /// + GeometrySubroutine = ((int)0x92EB), + /// + /// Original was GL_FRAGMENT_SUBROUTINE = 0x92EC + /// + FragmentSubroutine = ((int)0x92EC), + /// + /// Original was GL_COMPUTE_SUBROUTINE = 0x92ED + /// + ComputeSubroutine = ((int)0x92ED), + /// + /// Original was GL_VERTEX_SUBROUTINE_UNIFORM = 0x92EE + /// + VertexSubroutineUniform = ((int)0x92EE), + /// + /// Original was GL_TESS_CONTROL_SUBROUTINE_UNIFORM = 0x92EF + /// + TessControlSubroutineUniform = ((int)0x92EF), + /// + /// Original was GL_TESS_EVALUATION_SUBROUTINE_UNIFORM = 0x92F0 + /// + TessEvaluationSubroutineUniform = ((int)0x92F0), + /// + /// Original was GL_GEOMETRY_SUBROUTINE_UNIFORM = 0x92F1 + /// + GeometrySubroutineUniform = ((int)0x92F1), + /// + /// Original was GL_FRAGMENT_SUBROUTINE_UNIFORM = 0x92F2 + /// + FragmentSubroutineUniform = ((int)0x92F2), + /// + /// Original was GL_COMPUTE_SUBROUTINE_UNIFORM = 0x92F3 + /// + ComputeSubroutineUniform = ((int)0x92F3), + /// + /// Original was GL_TRANSFORM_FEEDBACK_VARYING = 0x92F4 + /// + TransformFeedbackVarying = ((int)0x92F4), + /// + /// Original was GL_ACTIVE_RESOURCES = 0x92F5 + /// + ActiveResources = ((int)0x92F5), + /// + /// Original was GL_MAX_NAME_LENGTH = 0x92F6 + /// + MaxNameLength = ((int)0x92F6), + /// + /// Original was GL_MAX_NUM_ACTIVE_VARIABLES = 0x92F7 + /// + MaxNumActiveVariables = ((int)0x92F7), + /// + /// Original was GL_MAX_NUM_COMPATIBLE_SUBROUTINES = 0x92F8 + /// + MaxNumCompatibleSubroutines = ((int)0x92F8), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_WIDTH = 0x9310 + /// + FramebufferDefaultWidth = ((int)0x9310), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_HEIGHT = 0x9311 + /// + FramebufferDefaultHeight = ((int)0x9311), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_LAYERS = 0x9312 + /// + FramebufferDefaultLayers = ((int)0x9312), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_SAMPLES = 0x9313 + /// + FramebufferDefaultSamples = ((int)0x9313), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_FIXED_SAMPLE_LOCATIONS = 0x9314 + /// + FramebufferDefaultFixedSampleLocations = ((int)0x9314), + /// + /// Original was GL_NEGATIVE_ONE_TO_ONE = 0x935E + /// + NegativeOneToOne = ((int)0x935E), + /// + /// Original was GL_ZERO_TO_ONE = 0x935F + /// + ZeroToOne = ((int)0x935F), + /// + /// Original was GL_CLEAR_TEXTURE = 0x9365 + /// + ClearTexture = ((int)0x9365), + /// + /// Original was GL_NUM_SAMPLE_COUNTS = 0x9380 + /// + NumSampleCounts = ((int)0x9380), + /// /// Original was GL_BGRA8_EXT = 0x93A1 /// Bgra8Ext = ((int)0x93A1), /// + /// Original was GL_LAYOUT_DEPTH_READ_ONLY_STENCIL_ATTACHMENT_EXT = 0x9530 + /// + LayoutDepthReadOnlyStencilAttachmentExt = ((int)0x9530), + /// + /// Original was GL_LAYOUT_DEPTH_ATTACHMENT_STENCIL_READ_ONLY_EXT = 0x9531 + /// + LayoutDepthAttachmentStencilReadOnlyExt = ((int)0x9531), + /// /// Original was GL_TEXTURE_TILING_EXT = 0x9580 /// TextureTilingExt = ((int)0x9580), @@ -6432,7 +9348,7 @@ namespace OpenTK.Graphics.ES11 } /// - /// Used in GL.AlphaFunc + /// Used in GL.AlphaFunc, GL.AlphaFuncx and 1 other function /// public enum AlphaFunction : int { @@ -6705,6 +9621,53 @@ namespace OpenTK.Graphics.ES11 { } + /// + /// Not used directly. + /// + public enum AtomicCounterBufferPName : int + { + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_COMPUTE_SHADER = 0x90ED + /// + AtomicCounterBufferReferencedByComputeShader = ((int)0x90ED), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_BINDING = 0x92C1 + /// + AtomicCounterBufferBinding = ((int)0x92C1), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_DATA_SIZE = 0x92C4 + /// + AtomicCounterBufferDataSize = ((int)0x92C4), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTERS = 0x92C5 + /// + AtomicCounterBufferActiveAtomicCounters = ((int)0x92C5), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTER_INDICES = 0x92C6 + /// + AtomicCounterBufferActiveAtomicCounterIndices = ((int)0x92C6), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_VERTEX_SHADER = 0x92C7 + /// + AtomicCounterBufferReferencedByVertexShader = ((int)0x92C7), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_CONTROL_SHADER = 0x92C8 + /// + AtomicCounterBufferReferencedByTessControlShader = ((int)0x92C8), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_EVALUATION_SHADER = 0x92C9 + /// + AtomicCounterBufferReferencedByTessEvaluationShader = ((int)0x92C9), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_GEOMETRY_SHADER = 0x92CA + /// + AtomicCounterBufferReferencedByGeometryShader = ((int)0x92CA), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_FRAGMENT_SHADER = 0x92CB + /// + AtomicCounterBufferReferencedByFragmentShader = ((int)0x92CB), + } + /// /// Not used directly. /// @@ -6813,6 +9776,237 @@ namespace OpenTK.Graphics.ES11 AllAttribBits = unchecked((int)0xFFFFFFFF), } + /// + /// Not used directly. + /// + public enum AttributeType : int + { + /// + /// Original was GL_FLOAT_VEC2 = 0x8B50 + /// + FloatVec2 = ((int)0x8B50), + /// + /// Original was GL_FLOAT_VEC2_ARB = 0x8B50 + /// + FloatVec2Arb = ((int)0x8B50), + /// + /// Original was GL_FLOAT_VEC3 = 0x8B51 + /// + FloatVec3 = ((int)0x8B51), + /// + /// Original was GL_FLOAT_VEC3_ARB = 0x8B51 + /// + FloatVec3Arb = ((int)0x8B51), + /// + /// Original was GL_FLOAT_VEC4 = 0x8B52 + /// + FloatVec4 = ((int)0x8B52), + /// + /// Original was GL_FLOAT_VEC4_ARB = 0x8B52 + /// + FloatVec4Arb = ((int)0x8B52), + /// + /// Original was GL_INT_VEC2 = 0x8B53 + /// + IntVec2 = ((int)0x8B53), + /// + /// Original was GL_INT_VEC2_ARB = 0x8B53 + /// + IntVec2Arb = ((int)0x8B53), + /// + /// Original was GL_INT_VEC3 = 0x8B54 + /// + IntVec3 = ((int)0x8B54), + /// + /// Original was GL_INT_VEC3_ARB = 0x8B54 + /// + IntVec3Arb = ((int)0x8B54), + /// + /// Original was GL_INT_VEC4 = 0x8B55 + /// + IntVec4 = ((int)0x8B55), + /// + /// Original was GL_INT_VEC4_ARB = 0x8B55 + /// + IntVec4Arb = ((int)0x8B55), + /// + /// Original was GL_BOOL = 0x8B56 + /// + Bool = ((int)0x8B56), + /// + /// Original was GL_BOOL_ARB = 0x8B56 + /// + BoolArb = ((int)0x8B56), + /// + /// Original was GL_BOOL_VEC2 = 0x8B57 + /// + BoolVec2 = ((int)0x8B57), + /// + /// Original was GL_BOOL_VEC2_ARB = 0x8B57 + /// + BoolVec2Arb = ((int)0x8B57), + /// + /// Original was GL_BOOL_VEC3 = 0x8B58 + /// + BoolVec3 = ((int)0x8B58), + /// + /// Original was GL_BOOL_VEC3_ARB = 0x8B58 + /// + BoolVec3Arb = ((int)0x8B58), + /// + /// Original was GL_BOOL_VEC4 = 0x8B59 + /// + BoolVec4 = ((int)0x8B59), + /// + /// Original was GL_BOOL_VEC4_ARB = 0x8B59 + /// + BoolVec4Arb = ((int)0x8B59), + /// + /// Original was GL_FLOAT_MAT2 = 0x8B5A + /// + FloatMat2 = ((int)0x8B5A), + /// + /// Original was GL_FLOAT_MAT2_ARB = 0x8B5A + /// + FloatMat2Arb = ((int)0x8B5A), + /// + /// Original was GL_FLOAT_MAT3 = 0x8B5B + /// + FloatMat3 = ((int)0x8B5B), + /// + /// Original was GL_FLOAT_MAT3_ARB = 0x8B5B + /// + FloatMat3Arb = ((int)0x8B5B), + /// + /// Original was GL_FLOAT_MAT4 = 0x8B5C + /// + FloatMat4 = ((int)0x8B5C), + /// + /// Original was GL_FLOAT_MAT4_ARB = 0x8B5C + /// + FloatMat4Arb = ((int)0x8B5C), + /// + /// Original was GL_SAMPLER_1D = 0x8B5D + /// + Sampler1D = ((int)0x8B5D), + /// + /// Original was GL_SAMPLER_1D_ARB = 0x8B5D + /// + Sampler1DArb = ((int)0x8B5D), + /// + /// Original was GL_SAMPLER_2D = 0x8B5E + /// + Sampler2D = ((int)0x8B5E), + /// + /// Original was GL_SAMPLER_2D_ARB = 0x8B5E + /// + Sampler2DArb = ((int)0x8B5E), + /// + /// Original was GL_SAMPLER_3D = 0x8B5F + /// + Sampler3D = ((int)0x8B5F), + /// + /// Original was GL_SAMPLER_3D_ARB = 0x8B5F + /// + Sampler3DArb = ((int)0x8B5F), + /// + /// Original was GL_SAMPLER_3D_OES = 0x8B5F + /// + Sampler3DOes = ((int)0x8B5F), + /// + /// Original was GL_SAMPLER_CUBE = 0x8B60 + /// + SamplerCube = ((int)0x8B60), + /// + /// Original was GL_SAMPLER_CUBE_ARB = 0x8B60 + /// + SamplerCubeArb = ((int)0x8B60), + /// + /// Original was GL_SAMPLER_1D_SHADOW = 0x8B61 + /// + Sampler1DShadow = ((int)0x8B61), + /// + /// Original was GL_SAMPLER_1D_SHADOW_ARB = 0x8B61 + /// + Sampler1DShadowArb = ((int)0x8B61), + /// + /// Original was GL_SAMPLER_2D_SHADOW = 0x8B62 + /// + Sampler2DShadow = ((int)0x8B62), + /// + /// Original was GL_SAMPLER_2D_SHADOW_ARB = 0x8B62 + /// + Sampler2DShadowArb = ((int)0x8B62), + /// + /// Original was GL_SAMPLER_2D_SHADOW_EXT = 0x8B62 + /// + Sampler2DShadowExt = ((int)0x8B62), + /// + /// Original was GL_SAMPLER_2D_RECT = 0x8B63 + /// + Sampler2DRect = ((int)0x8B63), + /// + /// Original was GL_SAMPLER_2D_RECT_ARB = 0x8B63 + /// + Sampler2DRectArb = ((int)0x8B63), + /// + /// Original was GL_SAMPLER_2D_RECT_SHADOW = 0x8B64 + /// + Sampler2DRectShadow = ((int)0x8B64), + /// + /// Original was GL_SAMPLER_2D_RECT_SHADOW_ARB = 0x8B64 + /// + Sampler2DRectShadowArb = ((int)0x8B64), + /// + /// Original was GL_FLOAT_MAT2x3 = 0x8B65 + /// + FloatMat2x3 = ((int)0x8B65), + /// + /// Original was GL_FLOAT_MAT2x3_NV = 0x8B65 + /// + FloatMat2x3Nv = ((int)0x8B65), + /// + /// Original was GL_FLOAT_MAT2x4 = 0x8B66 + /// + FloatMat2x4 = ((int)0x8B66), + /// + /// Original was GL_FLOAT_MAT2x4_NV = 0x8B66 + /// + FloatMat2x4Nv = ((int)0x8B66), + /// + /// Original was GL_FLOAT_MAT3x2 = 0x8B67 + /// + FloatMat3x2 = ((int)0x8B67), + /// + /// Original was GL_FLOAT_MAT3x2_NV = 0x8B67 + /// + FloatMat3x2Nv = ((int)0x8B67), + /// + /// Original was GL_FLOAT_MAT3x4 = 0x8B68 + /// + FloatMat3x4 = ((int)0x8B68), + /// + /// Original was GL_FLOAT_MAT3x4_NV = 0x8B68 + /// + FloatMat3x4Nv = ((int)0x8B68), + /// + /// Original was GL_FLOAT_MAT4x2 = 0x8B69 + /// + FloatMat4x2 = ((int)0x8B69), + /// + /// Original was GL_FLOAT_MAT4x2_NV = 0x8B69 + /// + FloatMat4x2Nv = ((int)0x8B69), + /// + /// Original was GL_FLOAT_MAT4x3 = 0x8B6A + /// + FloatMat4x3 = ((int)0x8B6A), + /// + /// Original was GL_FLOAT_MAT4x3_NV = 0x8B6A + /// + FloatMat4x3Nv = ((int)0x8B6A), + } + /// /// Used in GL.DrawArrays, GL.DrawElements /// @@ -6849,7 +10043,18 @@ namespace OpenTK.Graphics.ES11 } /// - /// Used in GL.Ext.BlendEquation + /// Not used directly. + /// + public enum BindTransformFeedbackTarget : int + { + /// + /// Original was GL_TRANSFORM_FEEDBACK = 0x8E22 + /// + TransformFeedback = ((int)0x8E22), + } + + /// + /// Used in GL.Ext.BlendEquation, GL.Oes.BlendEquation and 1 other function /// public enum BlendEquationModeExt : int { @@ -6858,6 +10063,10 @@ namespace OpenTK.Graphics.ES11 /// LogicOp = ((int)0x0BF1), /// + /// Original was GL_FUNC_ADD = 0x8006 + /// + FuncAdd = ((int)0x8006), + /// /// Original was GL_FUNC_ADD_EXT = 0x8006 /// FuncAddExt = ((int)0x8006), @@ -6870,10 +10079,18 @@ namespace OpenTK.Graphics.ES11 /// MaxExt = ((int)0x8008), /// + /// Original was GL_FUNC_SUBTRACT = 0x800A + /// + FuncSubtract = ((int)0x800A), + /// /// Original was GL_FUNC_SUBTRACT_EXT = 0x800A /// FuncSubtractExt = ((int)0x800A), /// + /// Original was GL_FUNC_REVERSE_SUBTRACT = 0x800B + /// + FuncReverseSubtract = ((int)0x800B), + /// /// Original was GL_FUNC_REVERSE_SUBTRACT_EXT = 0x800B /// FuncReverseSubtractExt = ((int)0x800B), @@ -6888,9 +10105,9 @@ namespace OpenTK.Graphics.ES11 } /// - /// Used in GL.BlendFunc + /// Used in GL.BlendFunc, GL.Oes.BlendFuncSeparate /// - public enum BlendingFactorDest : int + public enum BlendingFactor : int { /// /// Original was GL_ZERO = 0 @@ -6921,53 +10138,6 @@ namespace OpenTK.Graphics.ES11 /// OneMinusDstAlpha = ((int)0x0305), /// - /// Original was GL_CONSTANT_COLOR_EXT = 0x8001 - /// - ConstantColorExt = ((int)0x8001), - /// - /// Original was GL_ONE_MINUS_CONSTANT_COLOR_EXT = 0x8002 - /// - OneMinusConstantColorExt = ((int)0x8002), - /// - /// Original was GL_CONSTANT_ALPHA_EXT = 0x8003 - /// - ConstantAlphaExt = ((int)0x8003), - /// - /// Original was GL_ONE_MINUS_CONSTANT_ALPHA_EXT = 0x8004 - /// - OneMinusConstantAlphaExt = ((int)0x8004), - /// - /// Original was GL_ONE = 1 - /// - One = ((int)1), - } - - /// - /// Used in GL.BlendFunc - /// - public enum BlendingFactorSrc : int - { - /// - /// Original was GL_ZERO = 0 - /// - Zero = ((int)0), - /// - /// Original was GL_SRC_ALPHA = 0x0302 - /// - SrcAlpha = ((int)0x0302), - /// - /// Original was GL_ONE_MINUS_SRC_ALPHA = 0x0303 - /// - OneMinusSrcAlpha = ((int)0x0303), - /// - /// Original was GL_DST_ALPHA = 0x0304 - /// - DstAlpha = ((int)0x0304), - /// - /// Original was GL_ONE_MINUS_DST_ALPHA = 0x0305 - /// - OneMinusDstAlpha = ((int)0x0305), - /// /// Original was GL_DST_COLOR = 0x0306 /// DstColor = ((int)0x0306), @@ -6980,27 +10150,50 @@ namespace OpenTK.Graphics.ES11 /// SrcAlphaSaturate = ((int)0x0308), /// - /// Original was GL_CONSTANT_COLOR_EXT = 0x8001 + /// Original was GL_CONSTANT_COLOR = 0x8001 /// - ConstantColorExt = ((int)0x8001), + ConstantColor = ((int)0x8001), /// - /// Original was GL_ONE_MINUS_CONSTANT_COLOR_EXT = 0x8002 + /// Original was GL_ONE_MINUS_CONSTANT_COLOR = 0x8002 /// - OneMinusConstantColorExt = ((int)0x8002), + OneMinusConstantColor = ((int)0x8002), /// - /// Original was GL_CONSTANT_ALPHA_EXT = 0x8003 + /// Original was GL_CONSTANT_ALPHA = 0x8003 /// - ConstantAlphaExt = ((int)0x8003), + ConstantAlpha = ((int)0x8003), /// - /// Original was GL_ONE_MINUS_CONSTANT_ALPHA_EXT = 0x8004 + /// Original was GL_ONE_MINUS_CONSTANT_ALPHA = 0x8004 /// - OneMinusConstantAlphaExt = ((int)0x8004), + OneMinusConstantAlpha = ((int)0x8004), + /// + /// Original was GL_SRC1_ALPHA = 0x8589 + /// + Src1Alpha = ((int)0x8589), + /// + /// Original was GL_SRC1_COLOR = 0x88F9 + /// + Src1Color = ((int)0x88F9), /// /// Original was GL_ONE = 1 /// One = ((int)1), } + /// + /// Not used directly. + /// + public enum BlitFramebufferFilter : int + { + /// + /// Original was GL_NEAREST = 0x2600 + /// + Nearest = ((int)0x2600), + /// + /// Original was GL_LINEAR = 0x2601 + /// + Linear = ((int)0x2601), + } + /// /// Not used directly. /// @@ -7019,6 +10212,25 @@ namespace OpenTK.Graphics.ES11 /// /// Not used directly. /// + public enum Buffer : int + { + /// + /// Original was GL_COLOR = 0x1800 + /// + Color = ((int)0x1800), + /// + /// Original was GL_DEPTH = 0x1801 + /// + Depth = ((int)0x1801), + /// + /// Original was GL_STENCIL = 0x1802 + /// + Stencil = ((int)0x1802), + } + + /// + /// Used in GL.Oes.MapBuffer + /// public enum BufferAccessArb : int { /// @@ -7035,6 +10247,213 @@ namespace OpenTK.Graphics.ES11 ReadWrite = ((int)0x88BA), } + /// + /// Used in GL.Ext.MapBufferRange + /// + [Flags] + public enum BufferAccessMask : int + { + /// + /// Original was GL_MAP_READ_BIT = 0x0001 + /// + MapReadBit = ((int)0x0001), + /// + /// Original was GL_MAP_READ_BIT_EXT = 0x0001 + /// + MapReadBitExt = ((int)0x0001), + /// + /// Original was GL_MAP_WRITE_BIT = 0x0002 + /// + MapWriteBit = ((int)0x0002), + /// + /// Original was GL_MAP_WRITE_BIT_EXT = 0x0002 + /// + MapWriteBitExt = ((int)0x0002), + /// + /// Original was GL_MAP_INVALIDATE_RANGE_BIT = 0x0004 + /// + MapInvalidateRangeBit = ((int)0x0004), + /// + /// Original was GL_MAP_INVALIDATE_RANGE_BIT_EXT = 0x0004 + /// + MapInvalidateRangeBitExt = ((int)0x0004), + /// + /// Original was GL_MAP_INVALIDATE_BUFFER_BIT = 0x0008 + /// + MapInvalidateBufferBit = ((int)0x0008), + /// + /// Original was GL_MAP_INVALIDATE_BUFFER_BIT_EXT = 0x0008 + /// + MapInvalidateBufferBitExt = ((int)0x0008), + /// + /// Original was GL_MAP_FLUSH_EXPLICIT_BIT = 0x0010 + /// + MapFlushExplicitBit = ((int)0x0010), + /// + /// Original was GL_MAP_FLUSH_EXPLICIT_BIT_EXT = 0x0010 + /// + MapFlushExplicitBitExt = ((int)0x0010), + /// + /// Original was GL_MAP_UNSYNCHRONIZED_BIT = 0x0020 + /// + MapUnsynchronizedBit = ((int)0x0020), + /// + /// Original was GL_MAP_UNSYNCHRONIZED_BIT_EXT = 0x0020 + /// + MapUnsynchronizedBitExt = ((int)0x0020), + /// + /// Original was GL_MAP_PERSISTENT_BIT = 0x0040 + /// + MapPersistentBit = ((int)0x0040), + /// + /// Original was GL_MAP_PERSISTENT_BIT_EXT = 0x0040 + /// + MapPersistentBitExt = ((int)0x0040), + /// + /// Original was GL_MAP_COHERENT_BIT = 0x0080 + /// + MapCoherentBit = ((int)0x0080), + /// + /// Original was GL_MAP_COHERENT_BIT_EXT = 0x0080 + /// + MapCoherentBitExt = ((int)0x0080), + } + + /// + /// Used in GL.Qcom.EndTiling, GL.Qcom.StartTiling + /// + public enum BufferBitQcom : int + { + /// + /// Original was GL_COLOR_BUFFER_BIT0_QCOM = 0x00000001 + /// + ColorBufferBit0Qcom = ((int)0x00000001), + /// + /// Original was GL_COLOR_BUFFER_BIT1_QCOM = 0x00000002 + /// + ColorBufferBit1Qcom = ((int)0x00000002), + /// + /// Original was GL_COLOR_BUFFER_BIT2_QCOM = 0x00000004 + /// + ColorBufferBit2Qcom = ((int)0x00000004), + /// + /// Original was GL_COLOR_BUFFER_BIT3_QCOM = 0x00000008 + /// + ColorBufferBit3Qcom = ((int)0x00000008), + /// + /// Original was GL_COLOR_BUFFER_BIT4_QCOM = 0x00000010 + /// + ColorBufferBit4Qcom = ((int)0x00000010), + /// + /// Original was GL_COLOR_BUFFER_BIT5_QCOM = 0x00000020 + /// + ColorBufferBit5Qcom = ((int)0x00000020), + /// + /// Original was GL_COLOR_BUFFER_BIT6_QCOM = 0x00000040 + /// + ColorBufferBit6Qcom = ((int)0x00000040), + /// + /// Original was GL_COLOR_BUFFER_BIT7_QCOM = 0x00000080 + /// + ColorBufferBit7Qcom = ((int)0x00000080), + /// + /// Original was GL_DEPTH_BUFFER_BIT0_QCOM = 0x00000100 + /// + DepthBufferBit0Qcom = ((int)0x00000100), + /// + /// Original was GL_DEPTH_BUFFER_BIT1_QCOM = 0x00000200 + /// + DepthBufferBit1Qcom = ((int)0x00000200), + /// + /// Original was GL_DEPTH_BUFFER_BIT2_QCOM = 0x00000400 + /// + DepthBufferBit2Qcom = ((int)0x00000400), + /// + /// Original was GL_DEPTH_BUFFER_BIT3_QCOM = 0x00000800 + /// + DepthBufferBit3Qcom = ((int)0x00000800), + /// + /// Original was GL_DEPTH_BUFFER_BIT4_QCOM = 0x00001000 + /// + DepthBufferBit4Qcom = ((int)0x00001000), + /// + /// Original was GL_DEPTH_BUFFER_BIT5_QCOM = 0x00002000 + /// + DepthBufferBit5Qcom = ((int)0x00002000), + /// + /// Original was GL_DEPTH_BUFFER_BIT6_QCOM = 0x00004000 + /// + DepthBufferBit6Qcom = ((int)0x00004000), + /// + /// Original was GL_DEPTH_BUFFER_BIT7_QCOM = 0x00008000 + /// + DepthBufferBit7Qcom = ((int)0x00008000), + /// + /// Original was GL_STENCIL_BUFFER_BIT0_QCOM = 0x00010000 + /// + StencilBufferBit0Qcom = ((int)0x00010000), + /// + /// Original was GL_STENCIL_BUFFER_BIT1_QCOM = 0x00020000 + /// + StencilBufferBit1Qcom = ((int)0x00020000), + /// + /// Original was GL_STENCIL_BUFFER_BIT2_QCOM = 0x00040000 + /// + StencilBufferBit2Qcom = ((int)0x00040000), + /// + /// Original was GL_STENCIL_BUFFER_BIT3_QCOM = 0x00080000 + /// + StencilBufferBit3Qcom = ((int)0x00080000), + /// + /// Original was GL_STENCIL_BUFFER_BIT4_QCOM = 0x00100000 + /// + StencilBufferBit4Qcom = ((int)0x00100000), + /// + /// Original was GL_STENCIL_BUFFER_BIT5_QCOM = 0x00200000 + /// + StencilBufferBit5Qcom = ((int)0x00200000), + /// + /// Original was GL_STENCIL_BUFFER_BIT6_QCOM = 0x00400000 + /// + StencilBufferBit6Qcom = ((int)0x00400000), + /// + /// Original was GL_STENCIL_BUFFER_BIT7_QCOM = 0x00800000 + /// + StencilBufferBit7Qcom = ((int)0x00800000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT0_QCOM = 0x01000000 + /// + MultisampleBufferBit0Qcom = ((int)0x01000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT1_QCOM = 0x02000000 + /// + MultisampleBufferBit1Qcom = ((int)0x02000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT2_QCOM = 0x04000000 + /// + MultisampleBufferBit2Qcom = ((int)0x04000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT3_QCOM = 0x08000000 + /// + MultisampleBufferBit3Qcom = ((int)0x08000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT4_QCOM = 0x10000000 + /// + MultisampleBufferBit4Qcom = ((int)0x10000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT5_QCOM = 0x20000000 + /// + MultisampleBufferBit5Qcom = ((int)0x20000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT6_QCOM = 0x40000000 + /// + MultisampleBufferBit6Qcom = ((int)0x40000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT7_QCOM = 0x80000000 + /// + MultisampleBufferBit7Qcom = unchecked((int)0x80000000), + } + /// /// Not used directly. /// @@ -7091,7 +10510,70 @@ namespace OpenTK.Graphics.ES11 } /// - /// Used in GL.BindBuffer, GL.BufferData and 2 other functions + /// Not used directly. + /// + public enum BufferStorageTarget : int + { + /// + /// Original was GL_ARRAY_BUFFER = 0x8892 + /// + ArrayBuffer = ((int)0x8892), + /// + /// Original was GL_ELEMENT_ARRAY_BUFFER = 0x8893 + /// + ElementArrayBuffer = ((int)0x8893), + /// + /// Original was GL_PIXEL_PACK_BUFFER = 0x88EB + /// + PixelPackBuffer = ((int)0x88EB), + /// + /// Original was GL_PIXEL_UNPACK_BUFFER = 0x88EC + /// + PixelUnpackBuffer = ((int)0x88EC), + /// + /// Original was GL_UNIFORM_BUFFER = 0x8A11 + /// + UniformBuffer = ((int)0x8A11), + /// + /// Original was GL_TEXTURE_BUFFER = 0x8C2A + /// + TextureBuffer = ((int)0x8C2A), + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER = 0x8C8E + /// + TransformFeedbackBuffer = ((int)0x8C8E), + /// + /// Original was GL_COPY_READ_BUFFER = 0x8F36 + /// + CopyReadBuffer = ((int)0x8F36), + /// + /// Original was GL_COPY_WRITE_BUFFER = 0x8F37 + /// + CopyWriteBuffer = ((int)0x8F37), + /// + /// Original was GL_DRAW_INDIRECT_BUFFER = 0x8F3F + /// + DrawIndirectBuffer = ((int)0x8F3F), + /// + /// Original was GL_SHADER_STORAGE_BUFFER = 0x90D2 + /// + ShaderStorageBuffer = ((int)0x90D2), + /// + /// Original was GL_DISPATCH_INDIRECT_BUFFER = 0x90EE + /// + DispatchIndirectBuffer = ((int)0x90EE), + /// + /// Original was GL_QUERY_BUFFER = 0x9192 + /// + QueryBuffer = ((int)0x9192), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER = 0x92C0 + /// + AtomicCounterBuffer = ((int)0x92C0), + } + + /// + /// Used in GL.BindBuffer, GL.BufferData and 6 other functions /// public enum BufferTargetArb : int { @@ -7196,6 +10678,25 @@ namespace OpenTK.Graphics.ES11 DynamicCopy = ((int)0x88EA), } + /// + /// Not used directly. + /// + public enum CheckFramebufferStatusTarget : int + { + /// + /// Original was GL_READ_FRAMEBUFFER = 0x8CA8 + /// + ReadFramebuffer = ((int)0x8CA8), + /// + /// Original was GL_DRAW_FRAMEBUFFER = 0x8CA9 + /// + DrawFramebuffer = ((int)0x8CA9), + /// + /// Original was GL_FRAMEBUFFER = 0x8D40 + /// + Framebuffer = ((int)0x8D40), + } + /// /// Used in GL.Clear /// @@ -7247,6 +10748,36 @@ namespace OpenTK.Graphics.ES11 /// /// Not used directly. /// + public enum ClipControlDepth : int + { + /// + /// Original was GL_NEGATIVE_ONE_TO_ONE = 0x935E + /// + NegativeOneToOne = ((int)0x935E), + /// + /// Original was GL_ZERO_TO_ONE = 0x935F + /// + ZeroToOne = ((int)0x935F), + } + + /// + /// Not used directly. + /// + public enum ClipControlOrigin : int + { + /// + /// Original was GL_LOWER_LEFT = 0x8CA1 + /// + LowerLeft = ((int)0x8CA1), + /// + /// Original was GL_UPPER_LEFT = 0x8CA2 + /// + UpperLeft = ((int)0x8CA2), + } + + /// + /// Used in GL.ClipPlane, GL.ClipPlanex and 8 other functions + /// public enum ClipPlaneName : int { /// @@ -7307,6 +10838,181 @@ namespace OpenTK.Graphics.ES11 ClipDistance7 = ((int)0x3007), } + /// + /// Not used directly. + /// + public enum ColorBuffer : int + { + /// + /// Original was GL_NONE = 0 + /// + None = ((int)0), + /// + /// Original was GL_FRONT_LEFT = 0x0400 + /// + FrontLeft = ((int)0x0400), + /// + /// Original was GL_FRONT_RIGHT = 0x0401 + /// + FrontRight = ((int)0x0401), + /// + /// Original was GL_BACK_LEFT = 0x0402 + /// + BackLeft = ((int)0x0402), + /// + /// Original was GL_BACK_RIGHT = 0x0403 + /// + BackRight = ((int)0x0403), + /// + /// Original was GL_FRONT = 0x0404 + /// + Front = ((int)0x0404), + /// + /// Original was GL_BACK = 0x0405 + /// + Back = ((int)0x0405), + /// + /// Original was GL_LEFT = 0x0406 + /// + Left = ((int)0x0406), + /// + /// Original was GL_RIGHT = 0x0407 + /// + Right = ((int)0x0407), + /// + /// Original was GL_FRONT_AND_BACK = 0x0408 + /// + FrontAndBack = ((int)0x0408), + /// + /// Original was GL_COLOR_ATTACHMENT0 = 0x8CE0 + /// + ColorAttachment0 = ((int)0x8CE0), + /// + /// Original was GL_COLOR_ATTACHMENT1 = 0x8CE1 + /// + ColorAttachment1 = ((int)0x8CE1), + /// + /// Original was GL_COLOR_ATTACHMENT2 = 0x8CE2 + /// + ColorAttachment2 = ((int)0x8CE2), + /// + /// Original was GL_COLOR_ATTACHMENT3 = 0x8CE3 + /// + ColorAttachment3 = ((int)0x8CE3), + /// + /// Original was GL_COLOR_ATTACHMENT4 = 0x8CE4 + /// + ColorAttachment4 = ((int)0x8CE4), + /// + /// Original was GL_COLOR_ATTACHMENT5 = 0x8CE5 + /// + ColorAttachment5 = ((int)0x8CE5), + /// + /// Original was GL_COLOR_ATTACHMENT6 = 0x8CE6 + /// + ColorAttachment6 = ((int)0x8CE6), + /// + /// Original was GL_COLOR_ATTACHMENT7 = 0x8CE7 + /// + ColorAttachment7 = ((int)0x8CE7), + /// + /// Original was GL_COLOR_ATTACHMENT8 = 0x8CE8 + /// + ColorAttachment8 = ((int)0x8CE8), + /// + /// Original was GL_COLOR_ATTACHMENT9 = 0x8CE9 + /// + ColorAttachment9 = ((int)0x8CE9), + /// + /// Original was GL_COLOR_ATTACHMENT10 = 0x8CEA + /// + ColorAttachment10 = ((int)0x8CEA), + /// + /// Original was GL_COLOR_ATTACHMENT11 = 0x8CEB + /// + ColorAttachment11 = ((int)0x8CEB), + /// + /// Original was GL_COLOR_ATTACHMENT12 = 0x8CEC + /// + ColorAttachment12 = ((int)0x8CEC), + /// + /// Original was GL_COLOR_ATTACHMENT13 = 0x8CED + /// + ColorAttachment13 = ((int)0x8CED), + /// + /// Original was GL_COLOR_ATTACHMENT14 = 0x8CEE + /// + ColorAttachment14 = ((int)0x8CEE), + /// + /// Original was GL_COLOR_ATTACHMENT15 = 0x8CEF + /// + ColorAttachment15 = ((int)0x8CEF), + /// + /// Original was GL_COLOR_ATTACHMENT16 = 0x8CF0 + /// + ColorAttachment16 = ((int)0x8CF0), + /// + /// Original was GL_COLOR_ATTACHMENT17 = 0x8CF1 + /// + ColorAttachment17 = ((int)0x8CF1), + /// + /// Original was GL_COLOR_ATTACHMENT18 = 0x8CF2 + /// + ColorAttachment18 = ((int)0x8CF2), + /// + /// Original was GL_COLOR_ATTACHMENT19 = 0x8CF3 + /// + ColorAttachment19 = ((int)0x8CF3), + /// + /// Original was GL_COLOR_ATTACHMENT20 = 0x8CF4 + /// + ColorAttachment20 = ((int)0x8CF4), + /// + /// Original was GL_COLOR_ATTACHMENT21 = 0x8CF5 + /// + ColorAttachment21 = ((int)0x8CF5), + /// + /// Original was GL_COLOR_ATTACHMENT22 = 0x8CF6 + /// + ColorAttachment22 = ((int)0x8CF6), + /// + /// Original was GL_COLOR_ATTACHMENT23 = 0x8CF7 + /// + ColorAttachment23 = ((int)0x8CF7), + /// + /// Original was GL_COLOR_ATTACHMENT24 = 0x8CF8 + /// + ColorAttachment24 = ((int)0x8CF8), + /// + /// Original was GL_COLOR_ATTACHMENT25 = 0x8CF9 + /// + ColorAttachment25 = ((int)0x8CF9), + /// + /// Original was GL_COLOR_ATTACHMENT26 = 0x8CFA + /// + ColorAttachment26 = ((int)0x8CFA), + /// + /// Original was GL_COLOR_ATTACHMENT27 = 0x8CFB + /// + ColorAttachment27 = ((int)0x8CFB), + /// + /// Original was GL_COLOR_ATTACHMENT28 = 0x8CFC + /// + ColorAttachment28 = ((int)0x8CFC), + /// + /// Original was GL_COLOR_ATTACHMENT29 = 0x8CFD + /// + ColorAttachment29 = ((int)0x8CFD), + /// + /// Original was GL_COLOR_ATTACHMENT30 = 0x8CFE + /// + ColorAttachment30 = ((int)0x8CFE), + /// + /// Original was GL_COLOR_ATTACHMENT31 = 0x8CFF + /// + ColorAttachment31 = ((int)0x8CFF), + } + /// /// Not used directly. /// @@ -7415,6 +11121,25 @@ namespace OpenTK.Graphics.ES11 ColorTableBiasSgi = ((int)0x80D7), } + /// + /// Not used directly. + /// + public enum ColorTableTarget : int + { + /// + /// Original was GL_COLOR_TABLE = 0x80D0 + /// + ColorTable = ((int)0x80D0), + /// + /// Original was GL_POST_CONVOLUTION_COLOR_TABLE = 0x80D1 + /// + PostConvolutionColorTable = ((int)0x80D1), + /// + /// Original was GL_POST_COLOR_MATRIX_COLOR_TABLE = 0x80D2 + /// + PostColorMatrixColorTable = ((int)0x80D2), + } + /// /// Not used directly. /// @@ -7497,10 +11222,22 @@ namespace OpenTK.Graphics.ES11 /// ContextFlagDebugBitKhr = ((int)0x00000002), /// + /// Original was GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT = 0x00000004 + /// + ContextFlagRobustAccessBit = ((int)0x00000004), + /// /// Original was GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT_ARB = 0x00000004 /// ContextFlagRobustAccessBitArb = ((int)0x00000004), /// + /// Original was GL_CONTEXT_FLAG_NO_ERROR_BIT = 0x00000008 + /// + ContextFlagNoErrorBit = ((int)0x00000008), + /// + /// Original was GL_CONTEXT_FLAG_NO_ERROR_BIT_KHR = 0x00000008 + /// + ContextFlagNoErrorBitKhr = ((int)0x00000008), + /// /// Original was GL_CONTEXT_FLAG_PROTECTED_CONTENT_BIT_EXT = 0x00000010 /// ContextFlagProtectedContentBitExt = ((int)0x00000010), @@ -7538,7 +11275,7 @@ namespace OpenTK.Graphics.ES11 } /// - /// Not used directly. + /// Used in GL.Oes.ConvolutionParameterx /// public enum ConvolutionParameterExt : int { @@ -7571,6 +11308,21 @@ namespace OpenTK.Graphics.ES11 /// /// Not used directly. /// + public enum ConvolutionTarget : int + { + /// + /// Original was GL_CONVOLUTION_1D = 0x8010 + /// + Convolution1D = ((int)0x8010), + /// + /// Original was GL_CONVOLUTION_2D = 0x8011 + /// + Convolution2D = ((int)0x8011), + } + + /// + /// Used in GL.Oes.ConvolutionParameterx + /// public enum ConvolutionTargetExt : int { /// @@ -7591,6 +11343,69 @@ namespace OpenTK.Graphics.ES11 Convolution2DExt = ((int)0x8011), } + /// + /// Not used directly. + /// + public enum CopyBufferSubDataTarget : int + { + /// + /// Original was GL_ARRAY_BUFFER = 0x8892 + /// + ArrayBuffer = ((int)0x8892), + /// + /// Original was GL_ELEMENT_ARRAY_BUFFER = 0x8893 + /// + ElementArrayBuffer = ((int)0x8893), + /// + /// Original was GL_PIXEL_PACK_BUFFER = 0x88EB + /// + PixelPackBuffer = ((int)0x88EB), + /// + /// Original was GL_PIXEL_UNPACK_BUFFER = 0x88EC + /// + PixelUnpackBuffer = ((int)0x88EC), + /// + /// Original was GL_UNIFORM_BUFFER = 0x8A11 + /// + UniformBuffer = ((int)0x8A11), + /// + /// Original was GL_TEXTURE_BUFFER = 0x8C2A + /// + TextureBuffer = ((int)0x8C2A), + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER = 0x8C8E + /// + TransformFeedbackBuffer = ((int)0x8C8E), + /// + /// Original was GL_COPY_READ_BUFFER = 0x8F36 + /// + CopyReadBuffer = ((int)0x8F36), + /// + /// Original was GL_COPY_WRITE_BUFFER = 0x8F37 + /// + CopyWriteBuffer = ((int)0x8F37), + /// + /// Original was GL_DRAW_INDIRECT_BUFFER = 0x8F3F + /// + DrawIndirectBuffer = ((int)0x8F3F), + /// + /// Original was GL_SHADER_STORAGE_BUFFER = 0x90D2 + /// + ShaderStorageBuffer = ((int)0x90D2), + /// + /// Original was GL_DISPATCH_INDIRECT_BUFFER = 0x90EE + /// + DispatchIndirectBuffer = ((int)0x90EE), + /// + /// Original was GL_QUERY_BUFFER = 0x9192 + /// + QueryBuffer = ((int)0x9192), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER = 0x92C0 + /// + AtomicCounterBuffer = ((int)0x92C0), + } + /// /// Used in GL.CullFace /// @@ -7617,6 +11432,111 @@ namespace OpenTK.Graphics.ES11 { } + /// + /// Used in GL.DebugMessageControl, GL.DebugMessageInsert and 4 other functions + /// + public enum DebugSeverity : int + { + /// + /// Original was GL_DONT_CARE = 0x1100 + /// + DontCare = ((int)0x1100), + /// + /// Original was GL_DEBUG_SEVERITY_HIGH = 0x9146 + /// + DebugSeverityHigh = ((int)0x9146), + /// + /// Original was GL_DEBUG_SEVERITY_MEDIUM = 0x9147 + /// + DebugSeverityMedium = ((int)0x9147), + /// + /// Original was GL_DEBUG_SEVERITY_LOW = 0x9148 + /// + DebugSeverityLow = ((int)0x9148), + } + + /// + /// Used in GL.DebugMessageControl, GL.DebugMessageInsert and 6 other functions + /// + public enum DebugSource : int + { + /// + /// Original was GL_DONT_CARE = 0x1100 + /// + DontCare = ((int)0x1100), + /// + /// Original was GL_DEBUG_SOURCE_API = 0x8246 + /// + DebugSourceApi = ((int)0x8246), + /// + /// Original was GL_DEBUG_SOURCE_WINDOW_SYSTEM = 0x8247 + /// + DebugSourceWindowSystem = ((int)0x8247), + /// + /// Original was GL_DEBUG_SOURCE_SHADER_COMPILER = 0x8248 + /// + DebugSourceShaderCompiler = ((int)0x8248), + /// + /// Original was GL_DEBUG_SOURCE_THIRD_PARTY = 0x8249 + /// + DebugSourceThirdParty = ((int)0x8249), + /// + /// Original was GL_DEBUG_SOURCE_APPLICATION = 0x824A + /// + DebugSourceApplication = ((int)0x824A), + /// + /// Original was GL_DEBUG_SOURCE_OTHER = 0x824B + /// + DebugSourceOther = ((int)0x824B), + } + + /// + /// Used in GL.DebugMessageControl, GL.DebugMessageInsert and 4 other functions + /// + public enum DebugType : int + { + /// + /// Original was GL_DONT_CARE = 0x1100 + /// + DontCare = ((int)0x1100), + /// + /// Original was GL_DEBUG_TYPE_ERROR = 0x824C + /// + DebugTypeError = ((int)0x824C), + /// + /// Original was GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR = 0x824D + /// + DebugTypeDeprecatedBehavior = ((int)0x824D), + /// + /// Original was GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR = 0x824E + /// + DebugTypeUndefinedBehavior = ((int)0x824E), + /// + /// Original was GL_DEBUG_TYPE_PORTABILITY = 0x824F + /// + DebugTypePortability = ((int)0x824F), + /// + /// Original was GL_DEBUG_TYPE_PERFORMANCE = 0x8250 + /// + DebugTypePerformance = ((int)0x8250), + /// + /// Original was GL_DEBUG_TYPE_OTHER = 0x8251 + /// + DebugTypeOther = ((int)0x8251), + /// + /// Original was GL_DEBUG_TYPE_MARKER = 0x8268 + /// + DebugTypeMarker = ((int)0x8268), + /// + /// Original was GL_DEBUG_TYPE_PUSH_GROUP = 0x8269 + /// + DebugTypePushGroup = ((int)0x8269), + /// + /// Original was GL_DEBUG_TYPE_POP_GROUP = 0x826A + /// + DebugTypePopGroup = ((int)0x826A), + } + /// /// Used in GL.DepthFunc /// @@ -8255,6 +12175,13 @@ namespace OpenTK.Graphics.ES11 BlendEquationExt = ((int)0x8009), } + /// + /// Not used directly. + /// + public enum ExtDebugMarker : int + { + } + /// /// Not used directly. /// @@ -8816,6 +12743,37 @@ namespace OpenTK.Graphics.ES11 FogOffsetValueSgix = ((int)0x8199), } + /// + /// Used in GL.Fogx, GL.Oes.Fogx + /// + public enum FogPName : int + { + /// + /// Original was GL_FOG_INDEX = 0x0B61 + /// + FogIndex = ((int)0x0B61), + /// + /// Original was GL_FOG_DENSITY = 0x0B62 + /// + FogDensity = ((int)0x0B62), + /// + /// Original was GL_FOG_START = 0x0B63 + /// + FogStart = ((int)0x0B63), + /// + /// Original was GL_FOG_END = 0x0B64 + /// + FogEnd = ((int)0x0B64), + /// + /// Original was GL_FOG_MODE = 0x0B65 + /// + FogMode = ((int)0x0B65), + /// + /// Original was GL_FOG_COORD_SRC = 0x8450 + /// + FogCoordSrc = ((int)0x8450), + } + /// /// Not used directly. /// @@ -8869,6 +12827,407 @@ namespace OpenTK.Graphics.ES11 FragmentLightModelNormalInterpolationSgix = ((int)0x840B), } + /// + /// Not used directly. + /// + public enum FragmentOpAti : int + { + /// + /// Original was GL_MOV_ATI = 0x8961 + /// + MovAti = ((int)0x8961), + /// + /// Original was GL_ADD_ATI = 0x8963 + /// + AddAti = ((int)0x8963), + /// + /// Original was GL_MUL_ATI = 0x8964 + /// + MulAti = ((int)0x8964), + /// + /// Original was GL_SUB_ATI = 0x8965 + /// + SubAti = ((int)0x8965), + /// + /// Original was GL_DOT3_ATI = 0x8966 + /// + Dot3Ati = ((int)0x8966), + /// + /// Original was GL_DOT4_ATI = 0x8967 + /// + Dot4Ati = ((int)0x8967), + /// + /// Original was GL_MAD_ATI = 0x8968 + /// + MadAti = ((int)0x8968), + /// + /// Original was GL_LERP_ATI = 0x8969 + /// + LerpAti = ((int)0x8969), + /// + /// Original was GL_CND_ATI = 0x896A + /// + CndAti = ((int)0x896A), + /// + /// Original was GL_CND0_ATI = 0x896B + /// + Cnd0Ati = ((int)0x896B), + /// + /// Original was GL_DOT2_ADD_ATI = 0x896C + /// + Dot2AddAti = ((int)0x896C), + } + + /// + /// Used in GL.Ext.FramebufferTexture2DMultisample, GL.Img.FramebufferTexture2DMultisample and 3 other functions + /// + public enum FramebufferAttachment : int + { + /// + /// Original was GL_MAX_COLOR_ATTACHMENTS = 0x8CDF + /// + MaxColorAttachments = ((int)0x8CDF), + /// + /// Original was GL_MAX_COLOR_ATTACHMENTS_EXT = 0x8CDF + /// + MaxColorAttachmentsExt = ((int)0x8CDF), + /// + /// Original was GL_MAX_COLOR_ATTACHMENTS_NV = 0x8CDF + /// + MaxColorAttachmentsNv = ((int)0x8CDF), + /// + /// Original was GL_COLOR_ATTACHMENT0 = 0x8CE0 + /// + ColorAttachment0 = ((int)0x8CE0), + /// + /// Original was GL_COLOR_ATTACHMENT0_EXT = 0x8CE0 + /// + ColorAttachment0Ext = ((int)0x8CE0), + /// + /// Original was GL_COLOR_ATTACHMENT0_NV = 0x8CE0 + /// + ColorAttachment0Nv = ((int)0x8CE0), + /// + /// Original was GL_COLOR_ATTACHMENT0_OES = 0x8CE0 + /// + ColorAttachment0Oes = ((int)0x8CE0), + /// + /// Original was GL_COLOR_ATTACHMENT1 = 0x8CE1 + /// + ColorAttachment1 = ((int)0x8CE1), + /// + /// Original was GL_COLOR_ATTACHMENT1_EXT = 0x8CE1 + /// + ColorAttachment1Ext = ((int)0x8CE1), + /// + /// Original was GL_COLOR_ATTACHMENT1_NV = 0x8CE1 + /// + ColorAttachment1Nv = ((int)0x8CE1), + /// + /// Original was GL_COLOR_ATTACHMENT2 = 0x8CE2 + /// + ColorAttachment2 = ((int)0x8CE2), + /// + /// Original was GL_COLOR_ATTACHMENT2_EXT = 0x8CE2 + /// + ColorAttachment2Ext = ((int)0x8CE2), + /// + /// Original was GL_COLOR_ATTACHMENT2_NV = 0x8CE2 + /// + ColorAttachment2Nv = ((int)0x8CE2), + /// + /// Original was GL_COLOR_ATTACHMENT3 = 0x8CE3 + /// + ColorAttachment3 = ((int)0x8CE3), + /// + /// Original was GL_COLOR_ATTACHMENT3_EXT = 0x8CE3 + /// + ColorAttachment3Ext = ((int)0x8CE3), + /// + /// Original was GL_COLOR_ATTACHMENT3_NV = 0x8CE3 + /// + ColorAttachment3Nv = ((int)0x8CE3), + /// + /// Original was GL_COLOR_ATTACHMENT4 = 0x8CE4 + /// + ColorAttachment4 = ((int)0x8CE4), + /// + /// Original was GL_COLOR_ATTACHMENT4_EXT = 0x8CE4 + /// + ColorAttachment4Ext = ((int)0x8CE4), + /// + /// Original was GL_COLOR_ATTACHMENT4_NV = 0x8CE4 + /// + ColorAttachment4Nv = ((int)0x8CE4), + /// + /// Original was GL_COLOR_ATTACHMENT5 = 0x8CE5 + /// + ColorAttachment5 = ((int)0x8CE5), + /// + /// Original was GL_COLOR_ATTACHMENT5_EXT = 0x8CE5 + /// + ColorAttachment5Ext = ((int)0x8CE5), + /// + /// Original was GL_COLOR_ATTACHMENT5_NV = 0x8CE5 + /// + ColorAttachment5Nv = ((int)0x8CE5), + /// + /// Original was GL_COLOR_ATTACHMENT6 = 0x8CE6 + /// + ColorAttachment6 = ((int)0x8CE6), + /// + /// Original was GL_COLOR_ATTACHMENT6_EXT = 0x8CE6 + /// + ColorAttachment6Ext = ((int)0x8CE6), + /// + /// Original was GL_COLOR_ATTACHMENT6_NV = 0x8CE6 + /// + ColorAttachment6Nv = ((int)0x8CE6), + /// + /// Original was GL_COLOR_ATTACHMENT7 = 0x8CE7 + /// + ColorAttachment7 = ((int)0x8CE7), + /// + /// Original was GL_COLOR_ATTACHMENT7_EXT = 0x8CE7 + /// + ColorAttachment7Ext = ((int)0x8CE7), + /// + /// Original was GL_COLOR_ATTACHMENT7_NV = 0x8CE7 + /// + ColorAttachment7Nv = ((int)0x8CE7), + /// + /// Original was GL_COLOR_ATTACHMENT8 = 0x8CE8 + /// + ColorAttachment8 = ((int)0x8CE8), + /// + /// Original was GL_COLOR_ATTACHMENT8_EXT = 0x8CE8 + /// + ColorAttachment8Ext = ((int)0x8CE8), + /// + /// Original was GL_COLOR_ATTACHMENT8_NV = 0x8CE8 + /// + ColorAttachment8Nv = ((int)0x8CE8), + /// + /// Original was GL_COLOR_ATTACHMENT9 = 0x8CE9 + /// + ColorAttachment9 = ((int)0x8CE9), + /// + /// Original was GL_COLOR_ATTACHMENT9_EXT = 0x8CE9 + /// + ColorAttachment9Ext = ((int)0x8CE9), + /// + /// Original was GL_COLOR_ATTACHMENT9_NV = 0x8CE9 + /// + ColorAttachment9Nv = ((int)0x8CE9), + /// + /// Original was GL_COLOR_ATTACHMENT10 = 0x8CEA + /// + ColorAttachment10 = ((int)0x8CEA), + /// + /// Original was GL_COLOR_ATTACHMENT10_EXT = 0x8CEA + /// + ColorAttachment10Ext = ((int)0x8CEA), + /// + /// Original was GL_COLOR_ATTACHMENT10_NV = 0x8CEA + /// + ColorAttachment10Nv = ((int)0x8CEA), + /// + /// Original was GL_COLOR_ATTACHMENT11 = 0x8CEB + /// + ColorAttachment11 = ((int)0x8CEB), + /// + /// Original was GL_COLOR_ATTACHMENT11_EXT = 0x8CEB + /// + ColorAttachment11Ext = ((int)0x8CEB), + /// + /// Original was GL_COLOR_ATTACHMENT11_NV = 0x8CEB + /// + ColorAttachment11Nv = ((int)0x8CEB), + /// + /// Original was GL_COLOR_ATTACHMENT12 = 0x8CEC + /// + ColorAttachment12 = ((int)0x8CEC), + /// + /// Original was GL_COLOR_ATTACHMENT12_EXT = 0x8CEC + /// + ColorAttachment12Ext = ((int)0x8CEC), + /// + /// Original was GL_COLOR_ATTACHMENT12_NV = 0x8CEC + /// + ColorAttachment12Nv = ((int)0x8CEC), + /// + /// Original was GL_COLOR_ATTACHMENT13 = 0x8CED + /// + ColorAttachment13 = ((int)0x8CED), + /// + /// Original was GL_COLOR_ATTACHMENT13_EXT = 0x8CED + /// + ColorAttachment13Ext = ((int)0x8CED), + /// + /// Original was GL_COLOR_ATTACHMENT13_NV = 0x8CED + /// + ColorAttachment13Nv = ((int)0x8CED), + /// + /// Original was GL_COLOR_ATTACHMENT14 = 0x8CEE + /// + ColorAttachment14 = ((int)0x8CEE), + /// + /// Original was GL_COLOR_ATTACHMENT14_EXT = 0x8CEE + /// + ColorAttachment14Ext = ((int)0x8CEE), + /// + /// Original was GL_COLOR_ATTACHMENT14_NV = 0x8CEE + /// + ColorAttachment14Nv = ((int)0x8CEE), + /// + /// Original was GL_COLOR_ATTACHMENT15 = 0x8CEF + /// + ColorAttachment15 = ((int)0x8CEF), + /// + /// Original was GL_COLOR_ATTACHMENT15_EXT = 0x8CEF + /// + ColorAttachment15Ext = ((int)0x8CEF), + /// + /// Original was GL_COLOR_ATTACHMENT15_NV = 0x8CEF + /// + ColorAttachment15Nv = ((int)0x8CEF), + /// + /// Original was GL_COLOR_ATTACHMENT16 = 0x8CF0 + /// + ColorAttachment16 = ((int)0x8CF0), + /// + /// Original was GL_COLOR_ATTACHMENT17 = 0x8CF1 + /// + ColorAttachment17 = ((int)0x8CF1), + /// + /// Original was GL_COLOR_ATTACHMENT18 = 0x8CF2 + /// + ColorAttachment18 = ((int)0x8CF2), + /// + /// Original was GL_COLOR_ATTACHMENT19 = 0x8CF3 + /// + ColorAttachment19 = ((int)0x8CF3), + /// + /// Original was GL_COLOR_ATTACHMENT20 = 0x8CF4 + /// + ColorAttachment20 = ((int)0x8CF4), + /// + /// Original was GL_COLOR_ATTACHMENT21 = 0x8CF5 + /// + ColorAttachment21 = ((int)0x8CF5), + /// + /// Original was GL_COLOR_ATTACHMENT22 = 0x8CF6 + /// + ColorAttachment22 = ((int)0x8CF6), + /// + /// Original was GL_COLOR_ATTACHMENT23 = 0x8CF7 + /// + ColorAttachment23 = ((int)0x8CF7), + /// + /// Original was GL_COLOR_ATTACHMENT24 = 0x8CF8 + /// + ColorAttachment24 = ((int)0x8CF8), + /// + /// Original was GL_COLOR_ATTACHMENT25 = 0x8CF9 + /// + ColorAttachment25 = ((int)0x8CF9), + /// + /// Original was GL_COLOR_ATTACHMENT26 = 0x8CFA + /// + ColorAttachment26 = ((int)0x8CFA), + /// + /// Original was GL_COLOR_ATTACHMENT27 = 0x8CFB + /// + ColorAttachment27 = ((int)0x8CFB), + /// + /// Original was GL_COLOR_ATTACHMENT28 = 0x8CFC + /// + ColorAttachment28 = ((int)0x8CFC), + /// + /// Original was GL_COLOR_ATTACHMENT29 = 0x8CFD + /// + ColorAttachment29 = ((int)0x8CFD), + /// + /// Original was GL_COLOR_ATTACHMENT30 = 0x8CFE + /// + ColorAttachment30 = ((int)0x8CFE), + /// + /// Original was GL_COLOR_ATTACHMENT31 = 0x8CFF + /// + ColorAttachment31 = ((int)0x8CFF), + /// + /// Original was GL_DEPTH_ATTACHMENT = 0x8D00 + /// + DepthAttachment = ((int)0x8D00), + /// + /// Original was GL_DEPTH_ATTACHMENT_EXT = 0x8D00 + /// + DepthAttachmentExt = ((int)0x8D00), + /// + /// Original was GL_DEPTH_ATTACHMENT_OES = 0x8D00 + /// + DepthAttachmentOes = ((int)0x8D00), + } + + /// + /// Used in GL.Oes.GetFramebufferAttachmentParameter + /// + public enum FramebufferAttachmentParameterName : int + { + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING = 0x8210 + /// + FramebufferAttachmentColorEncoding = ((int)0x8210), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE = 0x8211 + /// + FramebufferAttachmentComponentType = ((int)0x8211), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_RED_SIZE = 0x8212 + /// + FramebufferAttachmentRedSize = ((int)0x8212), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_GREEN_SIZE = 0x8213 + /// + FramebufferAttachmentGreenSize = ((int)0x8213), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_BLUE_SIZE = 0x8214 + /// + FramebufferAttachmentBlueSize = ((int)0x8214), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE = 0x8215 + /// + FramebufferAttachmentAlphaSize = ((int)0x8215), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE = 0x8216 + /// + FramebufferAttachmentDepthSize = ((int)0x8216), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE = 0x8217 + /// + FramebufferAttachmentStencilSize = ((int)0x8217), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME = 0x8CD1 + /// + FramebufferAttachmentObjectName = ((int)0x8CD1), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL = 0x8CD2 + /// + FramebufferAttachmentTextureLevel = ((int)0x8CD2), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE = 0x8CD3 + /// + FramebufferAttachmentTextureCubeMapFace = ((int)0x8CD3), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER = 0x8CD4 + /// + FramebufferAttachmentTextureLayer = ((int)0x8CD4), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_LAYERED = 0x8DA7 + /// + FramebufferAttachmentLayered = ((int)0x8DA7), + } + /// /// Not used directly. /// @@ -8880,6 +13239,95 @@ namespace OpenTK.Graphics.ES11 FramebufferFetchNoncoherentQcom = ((int)0x96A2), } + /// + /// Not used directly. + /// + public enum FramebufferParameterName : int + { + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_WIDTH = 0x9310 + /// + FramebufferDefaultWidth = ((int)0x9310), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_HEIGHT = 0x9311 + /// + FramebufferDefaultHeight = ((int)0x9311), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_LAYERS = 0x9312 + /// + FramebufferDefaultLayers = ((int)0x9312), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_SAMPLES = 0x9313 + /// + FramebufferDefaultSamples = ((int)0x9313), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_FIXED_SAMPLE_LOCATIONS = 0x9314 + /// + FramebufferDefaultFixedSampleLocations = ((int)0x9314), + } + + /// + /// Not used directly. + /// + public enum FramebufferStatus : int + { + /// + /// Original was GL_FRAMEBUFFER_UNDEFINED = 0x8219 + /// + FramebufferUndefined = ((int)0x8219), + /// + /// Original was GL_FRAMEBUFFER_COMPLETE = 0x8CD5 + /// + FramebufferComplete = ((int)0x8CD5), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT = 0x8CD6 + /// + FramebufferIncompleteAttachment = ((int)0x8CD6), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT = 0x8CD7 + /// + FramebufferIncompleteMissingAttachment = ((int)0x8CD7), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER = 0x8CDB + /// + FramebufferIncompleteDrawBuffer = ((int)0x8CDB), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER = 0x8CDC + /// + FramebufferIncompleteReadBuffer = ((int)0x8CDC), + /// + /// Original was GL_FRAMEBUFFER_UNSUPPORTED = 0x8CDD + /// + FramebufferUnsupported = ((int)0x8CDD), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE = 0x8D56 + /// + FramebufferIncompleteMultisample = ((int)0x8D56), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS = 0x8DA8 + /// + FramebufferIncompleteLayerTargets = ((int)0x8DA8), + } + + /// + /// Used in GL.Ext.FramebufferTexture2DMultisample, GL.Img.FramebufferTexture2DMultisample and 5 other functions + /// + public enum FramebufferTarget : int + { + /// + /// Original was GL_READ_FRAMEBUFFER = 0x8CA8 + /// + ReadFramebuffer = ((int)0x8CA8), + /// + /// Original was GL_DRAW_FRAMEBUFFER = 0x8CA9 + /// + DrawFramebuffer = ((int)0x8CA9), + /// + /// Original was GL_FRAMEBUFFER = 0x8D40 + /// + Framebuffer = ((int)0x8D40), + } + /// /// Used in GL.FrontFace /// @@ -8900,43 +13348,83 @@ namespace OpenTK.Graphics.ES11 /// public enum GetColorTableParameterPNameSgi : int { + /// + /// Original was GL_COLOR_TABLE_SCALE = 0x80D6 + /// + ColorTableScale = ((int)0x80D6), /// /// Original was GL_COLOR_TABLE_SCALE_SGI = 0x80D6 /// ColorTableScaleSgi = ((int)0x80D6), /// + /// Original was GL_COLOR_TABLE_BIAS = 0x80D7 + /// + ColorTableBias = ((int)0x80D7), + /// /// Original was GL_COLOR_TABLE_BIAS_SGI = 0x80D7 /// ColorTableBiasSgi = ((int)0x80D7), /// + /// Original was GL_COLOR_TABLE_FORMAT = 0x80D8 + /// + ColorTableFormat = ((int)0x80D8), + /// /// Original was GL_COLOR_TABLE_FORMAT_SGI = 0x80D8 /// ColorTableFormatSgi = ((int)0x80D8), /// + /// Original was GL_COLOR_TABLE_WIDTH = 0x80D9 + /// + ColorTableWidth = ((int)0x80D9), + /// /// Original was GL_COLOR_TABLE_WIDTH_SGI = 0x80D9 /// ColorTableWidthSgi = ((int)0x80D9), /// + /// Original was GL_COLOR_TABLE_RED_SIZE = 0x80DA + /// + ColorTableRedSize = ((int)0x80DA), + /// /// Original was GL_COLOR_TABLE_RED_SIZE_SGI = 0x80DA /// ColorTableRedSizeSgi = ((int)0x80DA), /// + /// Original was GL_COLOR_TABLE_GREEN_SIZE = 0x80DB + /// + ColorTableGreenSize = ((int)0x80DB), + /// /// Original was GL_COLOR_TABLE_GREEN_SIZE_SGI = 0x80DB /// ColorTableGreenSizeSgi = ((int)0x80DB), /// + /// Original was GL_COLOR_TABLE_BLUE_SIZE = 0x80DC + /// + ColorTableBlueSize = ((int)0x80DC), + /// /// Original was GL_COLOR_TABLE_BLUE_SIZE_SGI = 0x80DC /// ColorTableBlueSizeSgi = ((int)0x80DC), /// + /// Original was GL_COLOR_TABLE_ALPHA_SIZE = 0x80DD + /// + ColorTableAlphaSize = ((int)0x80DD), + /// /// Original was GL_COLOR_TABLE_ALPHA_SIZE_SGI = 0x80DD /// ColorTableAlphaSizeSgi = ((int)0x80DD), /// + /// Original was GL_COLOR_TABLE_LUMINANCE_SIZE = 0x80DE + /// + ColorTableLuminanceSize = ((int)0x80DE), + /// /// Original was GL_COLOR_TABLE_LUMINANCE_SIZE_SGI = 0x80DE /// ColorTableLuminanceSizeSgi = ((int)0x80DE), /// + /// Original was GL_COLOR_TABLE_INTENSITY_SIZE = 0x80DF + /// + ColorTableIntensitySize = ((int)0x80DF), + /// /// Original was GL_COLOR_TABLE_INTENSITY_SIZE_SGI = 0x80DF /// ColorTableIntensitySizeSgi = ((int)0x80DF), @@ -8947,81 +13435,200 @@ namespace OpenTK.Graphics.ES11 /// public enum GetConvolutionParameter : int { + /// + /// Original was GL_CONVOLUTION_BORDER_MODE = 0x8013 + /// + ConvolutionBorderMode = ((int)0x8013), /// /// Original was GL_CONVOLUTION_BORDER_MODE_EXT = 0x8013 /// ConvolutionBorderModeExt = ((int)0x8013), /// + /// Original was GL_CONVOLUTION_FILTER_SCALE = 0x8014 + /// + ConvolutionFilterScale = ((int)0x8014), + /// /// Original was GL_CONVOLUTION_FILTER_SCALE_EXT = 0x8014 /// ConvolutionFilterScaleExt = ((int)0x8014), /// + /// Original was GL_CONVOLUTION_FILTER_BIAS = 0x8015 + /// + ConvolutionFilterBias = ((int)0x8015), + /// /// Original was GL_CONVOLUTION_FILTER_BIAS_EXT = 0x8015 /// ConvolutionFilterBiasExt = ((int)0x8015), /// + /// Original was GL_CONVOLUTION_FORMAT = 0x8017 + /// + ConvolutionFormat = ((int)0x8017), + /// /// Original was GL_CONVOLUTION_FORMAT_EXT = 0x8017 /// ConvolutionFormatExt = ((int)0x8017), /// + /// Original was GL_CONVOLUTION_WIDTH = 0x8018 + /// + ConvolutionWidth = ((int)0x8018), + /// /// Original was GL_CONVOLUTION_WIDTH_EXT = 0x8018 /// ConvolutionWidthExt = ((int)0x8018), /// + /// Original was GL_CONVOLUTION_HEIGHT = 0x8019 + /// + ConvolutionHeight = ((int)0x8019), + /// /// Original was GL_CONVOLUTION_HEIGHT_EXT = 0x8019 /// ConvolutionHeightExt = ((int)0x8019), /// + /// Original was GL_MAX_CONVOLUTION_WIDTH = 0x801A + /// + MaxConvolutionWidth = ((int)0x801A), + /// /// Original was GL_MAX_CONVOLUTION_WIDTH_EXT = 0x801A /// MaxConvolutionWidthExt = ((int)0x801A), /// + /// Original was GL_MAX_CONVOLUTION_HEIGHT = 0x801B + /// + MaxConvolutionHeight = ((int)0x801B), + /// /// Original was GL_MAX_CONVOLUTION_HEIGHT_EXT = 0x801B /// MaxConvolutionHeightExt = ((int)0x801B), + /// + /// Original was GL_CONVOLUTION_BORDER_COLOR = 0x8154 + /// + ConvolutionBorderColor = ((int)0x8154), } /// /// Not used directly. /// + public enum GetFramebufferParameter : int + { + /// + /// Original was GL_DOUBLEBUFFER = 0x0C32 + /// + Doublebuffer = ((int)0x0C32), + /// + /// Original was GL_STEREO = 0x0C33 + /// + Stereo = ((int)0x0C33), + /// + /// Original was GL_SAMPLE_BUFFERS = 0x80A8 + /// + SampleBuffers = ((int)0x80A8), + /// + /// Original was GL_SAMPLES = 0x80A9 + /// + Samples = ((int)0x80A9), + /// + /// Original was GL_IMPLEMENTATION_COLOR_READ_TYPE = 0x8B9A + /// + ImplementationColorReadType = ((int)0x8B9A), + /// + /// Original was GL_IMPLEMENTATION_COLOR_READ_FORMAT = 0x8B9B + /// + ImplementationColorReadFormat = ((int)0x8B9B), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_WIDTH = 0x9310 + /// + FramebufferDefaultWidth = ((int)0x9310), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_HEIGHT = 0x9311 + /// + FramebufferDefaultHeight = ((int)0x9311), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_LAYERS = 0x9312 + /// + FramebufferDefaultLayers = ((int)0x9312), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_SAMPLES = 0x9313 + /// + FramebufferDefaultSamples = ((int)0x9313), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_FIXED_SAMPLE_LOCATIONS = 0x9314 + /// + FramebufferDefaultFixedSampleLocations = ((int)0x9314), + } + + /// + /// Used in GL.Oes.GetHistogramParameterx + /// public enum GetHistogramParameterPNameExt : int { + /// + /// Original was GL_HISTOGRAM_WIDTH = 0x8026 + /// + HistogramWidth = ((int)0x8026), /// /// Original was GL_HISTOGRAM_WIDTH_EXT = 0x8026 /// HistogramWidthExt = ((int)0x8026), /// + /// Original was GL_HISTOGRAM_FORMAT = 0x8027 + /// + HistogramFormat = ((int)0x8027), + /// /// Original was GL_HISTOGRAM_FORMAT_EXT = 0x8027 /// HistogramFormatExt = ((int)0x8027), /// + /// Original was GL_HISTOGRAM_RED_SIZE = 0x8028 + /// + HistogramRedSize = ((int)0x8028), + /// /// Original was GL_HISTOGRAM_RED_SIZE_EXT = 0x8028 /// HistogramRedSizeExt = ((int)0x8028), /// + /// Original was GL_HISTOGRAM_GREEN_SIZE = 0x8029 + /// + HistogramGreenSize = ((int)0x8029), + /// /// Original was GL_HISTOGRAM_GREEN_SIZE_EXT = 0x8029 /// HistogramGreenSizeExt = ((int)0x8029), /// + /// Original was GL_HISTOGRAM_BLUE_SIZE = 0x802A + /// + HistogramBlueSize = ((int)0x802A), + /// /// Original was GL_HISTOGRAM_BLUE_SIZE_EXT = 0x802A /// HistogramBlueSizeExt = ((int)0x802A), /// + /// Original was GL_HISTOGRAM_ALPHA_SIZE = 0x802B + /// + HistogramAlphaSize = ((int)0x802B), + /// /// Original was GL_HISTOGRAM_ALPHA_SIZE_EXT = 0x802B /// HistogramAlphaSizeExt = ((int)0x802B), /// + /// Original was GL_HISTOGRAM_LUMINANCE_SIZE = 0x802C + /// + HistogramLuminanceSize = ((int)0x802C), + /// /// Original was GL_HISTOGRAM_LUMINANCE_SIZE_EXT = 0x802C /// HistogramLuminanceSizeExt = ((int)0x802C), /// + /// Original was GL_HISTOGRAM_SINK = 0x802D + /// + HistogramSink = ((int)0x802D), + /// /// Original was GL_HISTOGRAM_SINK_EXT = 0x802D /// HistogramSinkExt = ((int)0x802D), } /// - /// Not used directly. + /// Used in GL.Oes.GetMapx /// public enum GetMapQuery : int { @@ -9110,7 +13717,7 @@ namespace OpenTK.Graphics.ES11 } /// - /// Used in GL.GetBoolean, GL.GetFloat and 1 other function + /// Used in GL.Apple.GetInteger64, GL.GetBoolean and 4 other functions /// public enum GetPName : int { @@ -10745,10 +15352,18 @@ namespace OpenTK.Graphics.ES11 /// Original was GL_INSTRUMENT_BUFFER_POINTER_SGIX = 0x8180 /// InstrumentBufferPointerSgix = ((int)0x8180), + /// + /// Original was GL_DEBUG_CALLBACK_FUNCTION = 0x8244 + /// + DebugCallbackFunction = ((int)0x8244), + /// + /// Original was GL_DEBUG_CALLBACK_USER_PARAM = 0x8245 + /// + DebugCallbackUserParam = ((int)0x8245), } /// - /// Used in GL.GetTexParameter + /// Used in GL.GetTexParameter, GL.GetTexParameterx and 4 other functions /// public enum GetTextureParameter : int { @@ -10970,6 +15585,29 @@ namespace OpenTK.Graphics.ES11 TextureMaxClampRSgix = ((int)0x836B), } + /// + /// Not used directly. + /// + public enum GraphicsResetStatus : int + { + /// + /// Original was GL_NO_ERROR = 0 + /// + NoError = ((int)0), + /// + /// Original was GL_GUILTY_CONTEXT_RESET = 0x8253 + /// + GuiltyContextReset = ((int)0x8253), + /// + /// Original was GL_INNOCENT_CONTEXT_RESET = 0x8254 + /// + InnocentContextReset = ((int)0x8254), + /// + /// Original was GL_UNKNOWN_CONTEXT_RESET = 0x8255 + /// + UnknownContextReset = ((int)0x8255), + } + /// /// Used in GL.Hint /// @@ -11201,7 +15839,7 @@ namespace OpenTK.Graphics.ES11 } /// - /// Not used directly. + /// Used in GL.Oes.GetHistogramParameterx /// public enum HistogramTargetExt : int { @@ -11581,10 +16219,30 @@ namespace OpenTK.Graphics.ES11 } /// - /// Not used directly. + /// Used in GL.Apple.RenderbufferStorageMultisample, GL.CompressedTexImage2D and 11 other functions /// public enum InternalFormat : int { + /// + /// Original was GL_DEPTH_COMPONENT = 0x1902 + /// + DepthComponent = ((int)0x1902), + /// + /// Original was GL_RED = 0x1903 + /// + Red = ((int)0x1903), + /// + /// Original was GL_RED_EXT = 0x1903 + /// + RedExt = ((int)0x1903), + /// + /// Original was GL_RGB = 0x1907 + /// + Rgb = ((int)0x1907), + /// + /// Original was GL_RGBA = 0x1908 + /// + Rgba = ((int)0x1908), /// /// Original was GL_R3_G3_B2 = 0x2A10 /// @@ -11674,54 +16332,114 @@ namespace OpenTK.Graphics.ES11 /// Rgb4 = ((int)0x804F), /// + /// Original was GL_RGB4_EXT = 0x804F + /// + Rgb4Ext = ((int)0x804F), + /// /// Original was GL_RGB5 = 0x8050 /// Rgb5 = ((int)0x8050), /// + /// Original was GL_RGB5_EXT = 0x8050 + /// + Rgb5Ext = ((int)0x8050), + /// /// Original was GL_RGB8 = 0x8051 /// Rgb8 = ((int)0x8051), /// + /// Original was GL_RGB8_EXT = 0x8051 + /// + Rgb8Ext = ((int)0x8051), + /// + /// Original was GL_RGB8_OES = 0x8051 + /// + Rgb8Oes = ((int)0x8051), + /// /// Original was GL_RGB10 = 0x8052 /// Rgb10 = ((int)0x8052), /// + /// Original was GL_RGB10_EXT = 0x8052 + /// + Rgb10Ext = ((int)0x8052), + /// /// Original was GL_RGB12 = 0x8053 /// Rgb12 = ((int)0x8053), /// + /// Original was GL_RGB12_EXT = 0x8053 + /// + Rgb12Ext = ((int)0x8053), + /// /// Original was GL_RGB16 = 0x8054 /// Rgb16 = ((int)0x8054), /// - /// Original was GL_RGBA2 = 0x8055 + /// Original was GL_RGB16_EXT = 0x8054 /// - Rgba2 = ((int)0x8055), + Rgb16Ext = ((int)0x8054), /// /// Original was GL_RGBA4 = 0x8056 /// Rgba4 = ((int)0x8056), /// + /// Original was GL_RGBA4_EXT = 0x8056 + /// + Rgba4Ext = ((int)0x8056), + /// + /// Original was GL_RGBA4_OES = 0x8056 + /// + Rgba4Oes = ((int)0x8056), + /// /// Original was GL_RGB5_A1 = 0x8057 /// Rgb5A1 = ((int)0x8057), /// + /// Original was GL_RGB5_A1_EXT = 0x8057 + /// + Rgb5A1Ext = ((int)0x8057), + /// + /// Original was GL_RGB5_A1_OES = 0x8057 + /// + Rgb5A1Oes = ((int)0x8057), + /// /// Original was GL_RGBA8 = 0x8058 /// Rgba8 = ((int)0x8058), /// + /// Original was GL_RGBA8_EXT = 0x8058 + /// + Rgba8Ext = ((int)0x8058), + /// + /// Original was GL_RGBA8_OES = 0x8058 + /// + Rgba8Oes = ((int)0x8058), + /// /// Original was GL_RGB10_A2 = 0x8059 /// Rgb10A2 = ((int)0x8059), /// + /// Original was GL_RGB10_A2_EXT = 0x8059 + /// + Rgb10A2Ext = ((int)0x8059), + /// /// Original was GL_RGBA12 = 0x805A /// Rgba12 = ((int)0x805A), /// + /// Original was GL_RGBA12_EXT = 0x805A + /// + Rgba12Ext = ((int)0x805A), + /// /// Original was GL_RGBA16 = 0x805B /// Rgba16 = ((int)0x805B), /// + /// Original was GL_RGBA16_EXT = 0x805B + /// + Rgba16Ext = ((int)0x805B), + /// /// Original was GL_DUAL_ALPHA4_SGIS = 0x8110 /// DualAlpha4Sgis = ((int)0x8110), @@ -11802,17 +16520,1155 @@ namespace OpenTK.Graphics.ES11 /// QuadIntensity8Sgis = ((int)0x8123), /// + /// Original was GL_DEPTH_COMPONENT16 = 0x81A5 + /// + DepthComponent16 = ((int)0x81A5), + /// + /// Original was GL_DEPTH_COMPONENT16_ARB = 0x81A5 + /// + DepthComponent16Arb = ((int)0x81A5), + /// + /// Original was GL_DEPTH_COMPONENT16_OES = 0x81A5 + /// + DepthComponent16Oes = ((int)0x81A5), + /// /// Original was GL_DEPTH_COMPONENT16_SGIX = 0x81A5 /// DepthComponent16Sgix = ((int)0x81A5), /// + /// Original was GL_DEPTH_COMPONENT24_ARB = 0x81A6 + /// + DepthComponent24Arb = ((int)0x81A6), + /// + /// Original was GL_DEPTH_COMPONENT24_OES = 0x81A6 + /// + DepthComponent24Oes = ((int)0x81A6), + /// /// Original was GL_DEPTH_COMPONENT24_SGIX = 0x81A6 /// DepthComponent24Sgix = ((int)0x81A6), /// + /// Original was GL_DEPTH_COMPONENT32_ARB = 0x81A7 + /// + DepthComponent32Arb = ((int)0x81A7), + /// + /// Original was GL_DEPTH_COMPONENT32_OES = 0x81A7 + /// + DepthComponent32Oes = ((int)0x81A7), + /// /// Original was GL_DEPTH_COMPONENT32_SGIX = 0x81A7 /// DepthComponent32Sgix = ((int)0x81A7), + /// + /// Original was GL_COMPRESSED_RED = 0x8225 + /// + CompressedRed = ((int)0x8225), + /// + /// Original was GL_COMPRESSED_RG = 0x8226 + /// + CompressedRg = ((int)0x8226), + /// + /// Original was GL_RG = 0x8227 + /// + Rg = ((int)0x8227), + /// + /// Original was GL_R8 = 0x8229 + /// + R8 = ((int)0x8229), + /// + /// Original was GL_R8_EXT = 0x8229 + /// + R8Ext = ((int)0x8229), + /// + /// Original was GL_R16 = 0x822A + /// + R16 = ((int)0x822A), + /// + /// Original was GL_R16_EXT = 0x822A + /// + R16Ext = ((int)0x822A), + /// + /// Original was GL_RG8 = 0x822B + /// + Rg8 = ((int)0x822B), + /// + /// Original was GL_RG8_EXT = 0x822B + /// + Rg8Ext = ((int)0x822B), + /// + /// Original was GL_RG16 = 0x822C + /// + Rg16 = ((int)0x822C), + /// + /// Original was GL_RG16_EXT = 0x822C + /// + Rg16Ext = ((int)0x822C), + /// + /// Original was GL_R16F = 0x822D + /// + R16f = ((int)0x822D), + /// + /// Original was GL_R16F_EXT = 0x822D + /// + R16fExt = ((int)0x822D), + /// + /// Original was GL_R32F = 0x822E + /// + R32f = ((int)0x822E), + /// + /// Original was GL_R32F_EXT = 0x822E + /// + R32fExt = ((int)0x822E), + /// + /// Original was GL_RG16F = 0x822F + /// + Rg16f = ((int)0x822F), + /// + /// Original was GL_RG16F_EXT = 0x822F + /// + Rg16fExt = ((int)0x822F), + /// + /// Original was GL_RG32F = 0x8230 + /// + Rg32f = ((int)0x8230), + /// + /// Original was GL_RG32F_EXT = 0x8230 + /// + Rg32fExt = ((int)0x8230), + /// + /// Original was GL_R8I = 0x8231 + /// + R8i = ((int)0x8231), + /// + /// Original was GL_R8UI = 0x8232 + /// + R8ui = ((int)0x8232), + /// + /// Original was GL_R16I = 0x8233 + /// + R16i = ((int)0x8233), + /// + /// Original was GL_R16UI = 0x8234 + /// + R16ui = ((int)0x8234), + /// + /// Original was GL_R32I = 0x8235 + /// + R32i = ((int)0x8235), + /// + /// Original was GL_R32UI = 0x8236 + /// + R32ui = ((int)0x8236), + /// + /// Original was GL_RG8I = 0x8237 + /// + Rg8i = ((int)0x8237), + /// + /// Original was GL_RG8UI = 0x8238 + /// + Rg8ui = ((int)0x8238), + /// + /// Original was GL_RG16I = 0x8239 + /// + Rg16i = ((int)0x8239), + /// + /// Original was GL_RG16UI = 0x823A + /// + Rg16ui = ((int)0x823A), + /// + /// Original was GL_RG32I = 0x823B + /// + Rg32i = ((int)0x823B), + /// + /// Original was GL_RG32UI = 0x823C + /// + Rg32ui = ((int)0x823C), + /// + /// Original was GL_COMPRESSED_RGB_S3TC_DXT1_EXT = 0x83F0 + /// + CompressedRgbS3tcDxt1Ext = ((int)0x83F0), + /// + /// Original was GL_COMPRESSED_RGBA_S3TC_DXT1_EXT = 0x83F1 + /// + CompressedRgbaS3tcDxt1Ext = ((int)0x83F1), + /// + /// Original was GL_COMPRESSED_RGBA_S3TC_DXT3_EXT = 0x83F2 + /// + CompressedRgbaS3tcDxt3Ext = ((int)0x83F2), + /// + /// Original was GL_COMPRESSED_RGBA_S3TC_DXT5_EXT = 0x83F3 + /// + CompressedRgbaS3tcDxt5Ext = ((int)0x83F3), + /// + /// Original was GL_COMPRESSED_RGB = 0x84ED + /// + CompressedRgb = ((int)0x84ED), + /// + /// Original was GL_COMPRESSED_RGBA = 0x84EE + /// + CompressedRgba = ((int)0x84EE), + /// + /// Original was GL_DEPTH_STENCIL = 0x84F9 + /// + DepthStencil = ((int)0x84F9), + /// + /// Original was GL_DEPTH_STENCIL_EXT = 0x84F9 + /// + DepthStencilExt = ((int)0x84F9), + /// + /// Original was GL_DEPTH_STENCIL_NV = 0x84F9 + /// + DepthStencilNv = ((int)0x84F9), + /// + /// Original was GL_DEPTH_STENCIL_OES = 0x84F9 + /// + DepthStencilOes = ((int)0x84F9), + /// + /// Original was GL_DEPTH_STENCIL_MESA = 0x8750 + /// + DepthStencilMesa = ((int)0x8750), + /// + /// Original was GL_RGBA32F = 0x8814 + /// + Rgba32f = ((int)0x8814), + /// + /// Original was GL_RGBA32F_ARB = 0x8814 + /// + Rgba32fArb = ((int)0x8814), + /// + /// Original was GL_RGBA32F_EXT = 0x8814 + /// + Rgba32fExt = ((int)0x8814), + /// + /// Original was GL_RGBA16F = 0x881A + /// + Rgba16f = ((int)0x881A), + /// + /// Original was GL_RGBA16F_ARB = 0x881A + /// + Rgba16fArb = ((int)0x881A), + /// + /// Original was GL_RGBA16F_EXT = 0x881A + /// + Rgba16fExt = ((int)0x881A), + /// + /// Original was GL_RGB16F = 0x881B + /// + Rgb16f = ((int)0x881B), + /// + /// Original was GL_RGB16F_ARB = 0x881B + /// + Rgb16fArb = ((int)0x881B), + /// + /// Original was GL_RGB16F_EXT = 0x881B + /// + Rgb16fExt = ((int)0x881B), + /// + /// Original was GL_DEPTH24_STENCIL8 = 0x88F0 + /// + Depth24Stencil8 = ((int)0x88F0), + /// + /// Original was GL_DEPTH24_STENCIL8_EXT = 0x88F0 + /// + Depth24Stencil8Ext = ((int)0x88F0), + /// + /// Original was GL_DEPTH24_STENCIL8_OES = 0x88F0 + /// + Depth24Stencil8Oes = ((int)0x88F0), + /// + /// Original was GL_R11F_G11F_B10F = 0x8C3A + /// + R11fG11fB10f = ((int)0x8C3A), + /// + /// Original was GL_R11F_G11F_B10F_APPLE = 0x8C3A + /// + R11fG11fB10fApple = ((int)0x8C3A), + /// + /// Original was GL_R11F_G11F_B10F_EXT = 0x8C3A + /// + R11fG11fB10fExt = ((int)0x8C3A), + /// + /// Original was GL_RGB9_E5 = 0x8C3D + /// + Rgb9E5 = ((int)0x8C3D), + /// + /// Original was GL_RGB9_E5_APPLE = 0x8C3D + /// + Rgb9E5Apple = ((int)0x8C3D), + /// + /// Original was GL_RGB9_E5_EXT = 0x8C3D + /// + Rgb9E5Ext = ((int)0x8C3D), + /// + /// Original was GL_SRGB = 0x8C40 + /// + Srgb = ((int)0x8C40), + /// + /// Original was GL_SRGB_EXT = 0x8C40 + /// + SrgbExt = ((int)0x8C40), + /// + /// Original was GL_SRGB8 = 0x8C41 + /// + Srgb8 = ((int)0x8C41), + /// + /// Original was GL_SRGB8_EXT = 0x8C41 + /// + Srgb8Ext = ((int)0x8C41), + /// + /// Original was GL_SRGB8_NV = 0x8C41 + /// + Srgb8Nv = ((int)0x8C41), + /// + /// Original was GL_SRGB_ALPHA = 0x8C42 + /// + SrgbAlpha = ((int)0x8C42), + /// + /// Original was GL_SRGB_ALPHA_EXT = 0x8C42 + /// + SrgbAlphaExt = ((int)0x8C42), + /// + /// Original was GL_SRGB8_ALPHA8 = 0x8C43 + /// + Srgb8Alpha8 = ((int)0x8C43), + /// + /// Original was GL_SRGB8_ALPHA8_EXT = 0x8C43 + /// + Srgb8Alpha8Ext = ((int)0x8C43), + /// + /// Original was GL_COMPRESSED_SRGB = 0x8C48 + /// + CompressedSrgb = ((int)0x8C48), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA = 0x8C49 + /// + CompressedSrgbAlpha = ((int)0x8C49), + /// + /// Original was GL_COMPRESSED_SRGB_S3TC_DXT1_EXT = 0x8C4C + /// + CompressedSrgbS3tcDxt1Ext = ((int)0x8C4C), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT = 0x8C4D + /// + CompressedSrgbAlphaS3tcDxt1Ext = ((int)0x8C4D), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT = 0x8C4E + /// + CompressedSrgbAlphaS3tcDxt3Ext = ((int)0x8C4E), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT = 0x8C4F + /// + CompressedSrgbAlphaS3tcDxt5Ext = ((int)0x8C4F), + /// + /// Original was GL_DEPTH_COMPONENT32F = 0x8CAC + /// + DepthComponent32f = ((int)0x8CAC), + /// + /// Original was GL_DEPTH32F_STENCIL8 = 0x8CAD + /// + Depth32fStencil8 = ((int)0x8CAD), + /// + /// Original was GL_RGBA32UI = 0x8D70 + /// + Rgba32ui = ((int)0x8D70), + /// + /// Original was GL_RGB32UI = 0x8D71 + /// + Rgb32ui = ((int)0x8D71), + /// + /// Original was GL_RGBA16UI = 0x8D76 + /// + Rgba16ui = ((int)0x8D76), + /// + /// Original was GL_RGB16UI = 0x8D77 + /// + Rgb16ui = ((int)0x8D77), + /// + /// Original was GL_RGBA8UI = 0x8D7C + /// + Rgba8ui = ((int)0x8D7C), + /// + /// Original was GL_RGB8UI = 0x8D7D + /// + Rgb8ui = ((int)0x8D7D), + /// + /// Original was GL_RGBA32I = 0x8D82 + /// + Rgba32i = ((int)0x8D82), + /// + /// Original was GL_RGB32I = 0x8D83 + /// + Rgb32i = ((int)0x8D83), + /// + /// Original was GL_RGBA16I = 0x8D88 + /// + Rgba16i = ((int)0x8D88), + /// + /// Original was GL_RGB16I = 0x8D89 + /// + Rgb16i = ((int)0x8D89), + /// + /// Original was GL_RGBA8I = 0x8D8E + /// + Rgba8i = ((int)0x8D8E), + /// + /// Original was GL_RGB8I = 0x8D8F + /// + Rgb8i = ((int)0x8D8F), + /// + /// Original was GL_DEPTH_COMPONENT32F_NV = 0x8DAB + /// + DepthComponent32fNv = ((int)0x8DAB), + /// + /// Original was GL_DEPTH32F_STENCIL8_NV = 0x8DAC + /// + Depth32fStencil8Nv = ((int)0x8DAC), + /// + /// Original was GL_COMPRESSED_RED_RGTC1 = 0x8DBB + /// + CompressedRedRgtc1 = ((int)0x8DBB), + /// + /// Original was GL_COMPRESSED_RED_RGTC1_EXT = 0x8DBB + /// + CompressedRedRgtc1Ext = ((int)0x8DBB), + /// + /// Original was GL_COMPRESSED_SIGNED_RED_RGTC1 = 0x8DBC + /// + CompressedSignedRedRgtc1 = ((int)0x8DBC), + /// + /// Original was GL_COMPRESSED_SIGNED_RED_RGTC1_EXT = 0x8DBC + /// + CompressedSignedRedRgtc1Ext = ((int)0x8DBC), + /// + /// Original was GL_COMPRESSED_RG_RGTC2 = 0x8DBD + /// + CompressedRgRgtc2 = ((int)0x8DBD), + /// + /// Original was GL_COMPRESSED_SIGNED_RG_RGTC2 = 0x8DBE + /// + CompressedSignedRgRgtc2 = ((int)0x8DBE), + /// + /// Original was GL_COMPRESSED_RGBA_BPTC_UNORM = 0x8E8C + /// + CompressedRgbaBptcUnorm = ((int)0x8E8C), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM = 0x8E8D + /// + CompressedSrgbAlphaBptcUnorm = ((int)0x8E8D), + /// + /// Original was GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT = 0x8E8E + /// + CompressedRgbBptcSignedFloat = ((int)0x8E8E), + /// + /// Original was GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT = 0x8E8F + /// + CompressedRgbBptcUnsignedFloat = ((int)0x8E8F), + /// + /// Original was GL_R8_SNORM = 0x8F94 + /// + R8Snorm = ((int)0x8F94), + /// + /// Original was GL_RG8_SNORM = 0x8F95 + /// + Rg8Snorm = ((int)0x8F95), + /// + /// Original was GL_RGB8_SNORM = 0x8F96 + /// + Rgb8Snorm = ((int)0x8F96), + /// + /// Original was GL_RGBA8_SNORM = 0x8F97 + /// + Rgba8Snorm = ((int)0x8F97), + /// + /// Original was GL_R16_SNORM = 0x8F98 + /// + R16Snorm = ((int)0x8F98), + /// + /// Original was GL_R16_SNORM_EXT = 0x8F98 + /// + R16SnormExt = ((int)0x8F98), + /// + /// Original was GL_RG16_SNORM = 0x8F99 + /// + Rg16Snorm = ((int)0x8F99), + /// + /// Original was GL_RG16_SNORM_EXT = 0x8F99 + /// + Rg16SnormExt = ((int)0x8F99), + /// + /// Original was GL_RGB16_SNORM = 0x8F9A + /// + Rgb16Snorm = ((int)0x8F9A), + /// + /// Original was GL_RGB16_SNORM_EXT = 0x8F9A + /// + Rgb16SnormExt = ((int)0x8F9A), + /// + /// Original was GL_RGB10_A2UI = 0x906F + /// + Rgb10A2ui = ((int)0x906F), + /// + /// Original was GL_COMPRESSED_R11_EAC = 0x9270 + /// + CompressedR11Eac = ((int)0x9270), + /// + /// Original was GL_COMPRESSED_SIGNED_R11_EAC = 0x9271 + /// + CompressedSignedR11Eac = ((int)0x9271), + /// + /// Original was GL_COMPRESSED_RG11_EAC = 0x9272 + /// + CompressedRg11Eac = ((int)0x9272), + /// + /// Original was GL_COMPRESSED_SIGNED_RG11_EAC = 0x9273 + /// + CompressedSignedRg11Eac = ((int)0x9273), + /// + /// Original was GL_COMPRESSED_RGB8_ETC2 = 0x9274 + /// + CompressedRgb8Etc2 = ((int)0x9274), + /// + /// Original was GL_COMPRESSED_SRGB8_ETC2 = 0x9275 + /// + CompressedSrgb8Etc2 = ((int)0x9275), + /// + /// Original was GL_COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2 = 0x9276 + /// + CompressedRgb8PunchthroughAlpha1Etc2 = ((int)0x9276), + /// + /// Original was GL_COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2 = 0x9277 + /// + CompressedSrgb8PunchthroughAlpha1Etc2 = ((int)0x9277), + /// + /// Original was GL_COMPRESSED_RGBA8_ETC2_EAC = 0x9278 + /// + CompressedRgba8Etc2Eac = ((int)0x9278), + /// + /// Original was GL_COMPRESSED_SRGB8_ALPHA8_ETC2_EAC = 0x9279 + /// + CompressedSrgb8Alpha8Etc2Eac = ((int)0x9279), + } + + /// + /// Not used directly. + /// + public enum InternalFormatPName : int + { + /// + /// Original was GL_SAMPLES = 0x80A9 + /// + Samples = ((int)0x80A9), + /// + /// Original was GL_GENERATE_MIPMAP = 0x8191 + /// + GenerateMipmap = ((int)0x8191), + /// + /// Original was GL_INTERNALFORMAT_SUPPORTED = 0x826F + /// + InternalformatSupported = ((int)0x826F), + /// + /// Original was GL_INTERNALFORMAT_PREFERRED = 0x8270 + /// + InternalformatPreferred = ((int)0x8270), + /// + /// Original was GL_INTERNALFORMAT_RED_SIZE = 0x8271 + /// + InternalformatRedSize = ((int)0x8271), + /// + /// Original was GL_INTERNALFORMAT_GREEN_SIZE = 0x8272 + /// + InternalformatGreenSize = ((int)0x8272), + /// + /// Original was GL_INTERNALFORMAT_BLUE_SIZE = 0x8273 + /// + InternalformatBlueSize = ((int)0x8273), + /// + /// Original was GL_INTERNALFORMAT_ALPHA_SIZE = 0x8274 + /// + InternalformatAlphaSize = ((int)0x8274), + /// + /// Original was GL_INTERNALFORMAT_DEPTH_SIZE = 0x8275 + /// + InternalformatDepthSize = ((int)0x8275), + /// + /// Original was GL_INTERNALFORMAT_STENCIL_SIZE = 0x8276 + /// + InternalformatStencilSize = ((int)0x8276), + /// + /// Original was GL_INTERNALFORMAT_SHARED_SIZE = 0x8277 + /// + InternalformatSharedSize = ((int)0x8277), + /// + /// Original was GL_INTERNALFORMAT_RED_TYPE = 0x8278 + /// + InternalformatRedType = ((int)0x8278), + /// + /// Original was GL_INTERNALFORMAT_GREEN_TYPE = 0x8279 + /// + InternalformatGreenType = ((int)0x8279), + /// + /// Original was GL_INTERNALFORMAT_BLUE_TYPE = 0x827A + /// + InternalformatBlueType = ((int)0x827A), + /// + /// Original was GL_INTERNALFORMAT_ALPHA_TYPE = 0x827B + /// + InternalformatAlphaType = ((int)0x827B), + /// + /// Original was GL_INTERNALFORMAT_DEPTH_TYPE = 0x827C + /// + InternalformatDepthType = ((int)0x827C), + /// + /// Original was GL_INTERNALFORMAT_STENCIL_TYPE = 0x827D + /// + InternalformatStencilType = ((int)0x827D), + /// + /// Original was GL_MAX_WIDTH = 0x827E + /// + MaxWidth = ((int)0x827E), + /// + /// Original was GL_MAX_HEIGHT = 0x827F + /// + MaxHeight = ((int)0x827F), + /// + /// Original was GL_MAX_DEPTH = 0x8280 + /// + MaxDepth = ((int)0x8280), + /// + /// Original was GL_MAX_LAYERS = 0x8281 + /// + MaxLayers = ((int)0x8281), + /// + /// Original was GL_COLOR_COMPONENTS = 0x8283 + /// + ColorComponents = ((int)0x8283), + /// + /// Original was GL_COLOR_RENDERABLE = 0x8286 + /// + ColorRenderable = ((int)0x8286), + /// + /// Original was GL_DEPTH_RENDERABLE = 0x8287 + /// + DepthRenderable = ((int)0x8287), + /// + /// Original was GL_STENCIL_RENDERABLE = 0x8288 + /// + StencilRenderable = ((int)0x8288), + /// + /// Original was GL_FRAMEBUFFER_RENDERABLE = 0x8289 + /// + FramebufferRenderable = ((int)0x8289), + /// + /// Original was GL_FRAMEBUFFER_RENDERABLE_LAYERED = 0x828A + /// + FramebufferRenderableLayered = ((int)0x828A), + /// + /// Original was GL_FRAMEBUFFER_BLEND = 0x828B + /// + FramebufferBlend = ((int)0x828B), + /// + /// Original was GL_READ_PIXELS = 0x828C + /// + ReadPixels = ((int)0x828C), + /// + /// Original was GL_READ_PIXELS_FORMAT = 0x828D + /// + ReadPixelsFormat = ((int)0x828D), + /// + /// Original was GL_READ_PIXELS_TYPE = 0x828E + /// + ReadPixelsType = ((int)0x828E), + /// + /// Original was GL_TEXTURE_IMAGE_FORMAT = 0x828F + /// + TextureImageFormat = ((int)0x828F), + /// + /// Original was GL_TEXTURE_IMAGE_TYPE = 0x8290 + /// + TextureImageType = ((int)0x8290), + /// + /// Original was GL_GET_TEXTURE_IMAGE_FORMAT = 0x8291 + /// + GetTextureImageFormat = ((int)0x8291), + /// + /// Original was GL_GET_TEXTURE_IMAGE_TYPE = 0x8292 + /// + GetTextureImageType = ((int)0x8292), + /// + /// Original was GL_MIPMAP = 0x8293 + /// + Mipmap = ((int)0x8293), + /// + /// Original was GL_AUTO_GENERATE_MIPMAP = 0x8295 + /// + AutoGenerateMipmap = ((int)0x8295), + /// + /// Original was GL_COLOR_ENCODING = 0x8296 + /// + ColorEncoding = ((int)0x8296), + /// + /// Original was GL_SRGB_READ = 0x8297 + /// + SrgbRead = ((int)0x8297), + /// + /// Original was GL_SRGB_WRITE = 0x8298 + /// + SrgbWrite = ((int)0x8298), + /// + /// Original was GL_FILTER = 0x829A + /// + Filter = ((int)0x829A), + /// + /// Original was GL_VERTEX_TEXTURE = 0x829B + /// + VertexTexture = ((int)0x829B), + /// + /// Original was GL_TESS_CONTROL_TEXTURE = 0x829C + /// + TessControlTexture = ((int)0x829C), + /// + /// Original was GL_TESS_EVALUATION_TEXTURE = 0x829D + /// + TessEvaluationTexture = ((int)0x829D), + /// + /// Original was GL_GEOMETRY_TEXTURE = 0x829E + /// + GeometryTexture = ((int)0x829E), + /// + /// Original was GL_FRAGMENT_TEXTURE = 0x829F + /// + FragmentTexture = ((int)0x829F), + /// + /// Original was GL_COMPUTE_TEXTURE = 0x82A0 + /// + ComputeTexture = ((int)0x82A0), + /// + /// Original was GL_TEXTURE_SHADOW = 0x82A1 + /// + TextureShadow = ((int)0x82A1), + /// + /// Original was GL_TEXTURE_GATHER = 0x82A2 + /// + TextureGather = ((int)0x82A2), + /// + /// Original was GL_TEXTURE_GATHER_SHADOW = 0x82A3 + /// + TextureGatherShadow = ((int)0x82A3), + /// + /// Original was GL_SHADER_IMAGE_LOAD = 0x82A4 + /// + ShaderImageLoad = ((int)0x82A4), + /// + /// Original was GL_SHADER_IMAGE_STORE = 0x82A5 + /// + ShaderImageStore = ((int)0x82A5), + /// + /// Original was GL_SHADER_IMAGE_ATOMIC = 0x82A6 + /// + ShaderImageAtomic = ((int)0x82A6), + /// + /// Original was GL_IMAGE_TEXEL_SIZE = 0x82A7 + /// + ImageTexelSize = ((int)0x82A7), + /// + /// Original was GL_IMAGE_COMPATIBILITY_CLASS = 0x82A8 + /// + ImageCompatibilityClass = ((int)0x82A8), + /// + /// Original was GL_IMAGE_PIXEL_FORMAT = 0x82A9 + /// + ImagePixelFormat = ((int)0x82A9), + /// + /// Original was GL_IMAGE_PIXEL_TYPE = 0x82AA + /// + ImagePixelType = ((int)0x82AA), + /// + /// Original was GL_SIMULTANEOUS_TEXTURE_AND_DEPTH_TEST = 0x82AC + /// + SimultaneousTextureAndDepthTest = ((int)0x82AC), + /// + /// Original was GL_SIMULTANEOUS_TEXTURE_AND_STENCIL_TEST = 0x82AD + /// + SimultaneousTextureAndStencilTest = ((int)0x82AD), + /// + /// Original was GL_SIMULTANEOUS_TEXTURE_AND_DEPTH_WRITE = 0x82AE + /// + SimultaneousTextureAndDepthWrite = ((int)0x82AE), + /// + /// Original was GL_SIMULTANEOUS_TEXTURE_AND_STENCIL_WRITE = 0x82AF + /// + SimultaneousTextureAndStencilWrite = ((int)0x82AF), + /// + /// Original was GL_TEXTURE_COMPRESSED_BLOCK_WIDTH = 0x82B1 + /// + TextureCompressedBlockWidth = ((int)0x82B1), + /// + /// Original was GL_TEXTURE_COMPRESSED_BLOCK_HEIGHT = 0x82B2 + /// + TextureCompressedBlockHeight = ((int)0x82B2), + /// + /// Original was GL_TEXTURE_COMPRESSED_BLOCK_SIZE = 0x82B3 + /// + TextureCompressedBlockSize = ((int)0x82B3), + /// + /// Original was GL_CLEAR_BUFFER = 0x82B4 + /// + ClearBuffer = ((int)0x82B4), + /// + /// Original was GL_TEXTURE_VIEW = 0x82B5 + /// + TextureView = ((int)0x82B5), + /// + /// Original was GL_VIEW_COMPATIBILITY_CLASS = 0x82B6 + /// + ViewCompatibilityClass = ((int)0x82B6), + /// + /// Original was GL_TEXTURE_COMPRESSED = 0x86A1 + /// + TextureCompressed = ((int)0x86A1), + /// + /// Original was GL_IMAGE_FORMAT_COMPATIBILITY_TYPE = 0x90C7 + /// + ImageFormatCompatibilityType = ((int)0x90C7), + /// + /// Original was GL_CLEAR_TEXTURE = 0x9365 + /// + ClearTexture = ((int)0x9365), + /// + /// Original was GL_NUM_SAMPLE_COUNTS = 0x9380 + /// + NumSampleCounts = ((int)0x9380), + } + + /// + /// Not used directly. + /// + public enum KhrDebug : int + { + /// + /// Original was GL_CONTEXT_FLAG_DEBUG_BIT = 0x00000002 + /// + ContextFlagDebugBit = ((int)0x00000002), + /// + /// Original was GL_CONTEXT_FLAG_DEBUG_BIT_KHR = 0x00000002 + /// + ContextFlagDebugBitKhr = ((int)0x00000002), + /// + /// Original was GL_STACK_OVERFLOW = 0x0503 + /// + StackOverflow = ((int)0x0503), + /// + /// Original was GL_STACK_OVERFLOW_KHR = 0x0503 + /// + StackOverflowKhr = ((int)0x0503), + /// + /// Original was GL_STACK_UNDERFLOW = 0x0504 + /// + StackUnderflow = ((int)0x0504), + /// + /// Original was GL_STACK_UNDERFLOW_KHR = 0x0504 + /// + StackUnderflowKhr = ((int)0x0504), + /// + /// Original was GL_VERTEX_ARRAY = 0x8074 + /// + VertexArray = ((int)0x8074), + /// + /// Original was GL_VERTEX_ARRAY_KHR = 0x8074 + /// + VertexArrayKhr = ((int)0x8074), + /// + /// Original was GL_DEBUG_OUTPUT_SYNCHRONOUS = 0x8242 + /// + DebugOutputSynchronous = ((int)0x8242), + /// + /// Original was GL_DEBUG_OUTPUT_SYNCHRONOUS_KHR = 0x8242 + /// + DebugOutputSynchronousKhr = ((int)0x8242), + /// + /// Original was GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH = 0x8243 + /// + DebugNextLoggedMessageLength = ((int)0x8243), + /// + /// Original was GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH_KHR = 0x8243 + /// + DebugNextLoggedMessageLengthKhr = ((int)0x8243), + /// + /// Original was GL_DEBUG_CALLBACK_FUNCTION = 0x8244 + /// + DebugCallbackFunction = ((int)0x8244), + /// + /// Original was GL_DEBUG_CALLBACK_FUNCTION_KHR = 0x8244 + /// + DebugCallbackFunctionKhr = ((int)0x8244), + /// + /// Original was GL_DEBUG_CALLBACK_USER_PARAM = 0x8245 + /// + DebugCallbackUserParam = ((int)0x8245), + /// + /// Original was GL_DEBUG_CALLBACK_USER_PARAM_KHR = 0x8245 + /// + DebugCallbackUserParamKhr = ((int)0x8245), + /// + /// Original was GL_DEBUG_SOURCE_API = 0x8246 + /// + DebugSourceApi = ((int)0x8246), + /// + /// Original was GL_DEBUG_SOURCE_API_KHR = 0x8246 + /// + DebugSourceApiKhr = ((int)0x8246), + /// + /// Original was GL_DEBUG_SOURCE_WINDOW_SYSTEM = 0x8247 + /// + DebugSourceWindowSystem = ((int)0x8247), + /// + /// Original was GL_DEBUG_SOURCE_WINDOW_SYSTEM_KHR = 0x8247 + /// + DebugSourceWindowSystemKhr = ((int)0x8247), + /// + /// Original was GL_DEBUG_SOURCE_SHADER_COMPILER = 0x8248 + /// + DebugSourceShaderCompiler = ((int)0x8248), + /// + /// Original was GL_DEBUG_SOURCE_SHADER_COMPILER_KHR = 0x8248 + /// + DebugSourceShaderCompilerKhr = ((int)0x8248), + /// + /// Original was GL_DEBUG_SOURCE_THIRD_PARTY = 0x8249 + /// + DebugSourceThirdParty = ((int)0x8249), + /// + /// Original was GL_DEBUG_SOURCE_THIRD_PARTY_KHR = 0x8249 + /// + DebugSourceThirdPartyKhr = ((int)0x8249), + /// + /// Original was GL_DEBUG_SOURCE_APPLICATION = 0x824A + /// + DebugSourceApplication = ((int)0x824A), + /// + /// Original was GL_DEBUG_SOURCE_APPLICATION_KHR = 0x824A + /// + DebugSourceApplicationKhr = ((int)0x824A), + /// + /// Original was GL_DEBUG_SOURCE_OTHER = 0x824B + /// + DebugSourceOther = ((int)0x824B), + /// + /// Original was GL_DEBUG_SOURCE_OTHER_KHR = 0x824B + /// + DebugSourceOtherKhr = ((int)0x824B), + /// + /// Original was GL_DEBUG_TYPE_ERROR = 0x824C + /// + DebugTypeError = ((int)0x824C), + /// + /// Original was GL_DEBUG_TYPE_ERROR_KHR = 0x824C + /// + DebugTypeErrorKhr = ((int)0x824C), + /// + /// Original was GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR = 0x824D + /// + DebugTypeDeprecatedBehavior = ((int)0x824D), + /// + /// Original was GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR_KHR = 0x824D + /// + DebugTypeDeprecatedBehaviorKhr = ((int)0x824D), + /// + /// Original was GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR = 0x824E + /// + DebugTypeUndefinedBehavior = ((int)0x824E), + /// + /// Original was GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR_KHR = 0x824E + /// + DebugTypeUndefinedBehaviorKhr = ((int)0x824E), + /// + /// Original was GL_DEBUG_TYPE_PORTABILITY = 0x824F + /// + DebugTypePortability = ((int)0x824F), + /// + /// Original was GL_DEBUG_TYPE_PORTABILITY_KHR = 0x824F + /// + DebugTypePortabilityKhr = ((int)0x824F), + /// + /// Original was GL_DEBUG_TYPE_PERFORMANCE = 0x8250 + /// + DebugTypePerformance = ((int)0x8250), + /// + /// Original was GL_DEBUG_TYPE_PERFORMANCE_KHR = 0x8250 + /// + DebugTypePerformanceKhr = ((int)0x8250), + /// + /// Original was GL_DEBUG_TYPE_OTHER = 0x8251 + /// + DebugTypeOther = ((int)0x8251), + /// + /// Original was GL_DEBUG_TYPE_OTHER_KHR = 0x8251 + /// + DebugTypeOtherKhr = ((int)0x8251), + /// + /// Original was GL_DEBUG_TYPE_MARKER = 0x8268 + /// + DebugTypeMarker = ((int)0x8268), + /// + /// Original was GL_DEBUG_TYPE_MARKER_KHR = 0x8268 + /// + DebugTypeMarkerKhr = ((int)0x8268), + /// + /// Original was GL_DEBUG_TYPE_PUSH_GROUP = 0x8269 + /// + DebugTypePushGroup = ((int)0x8269), + /// + /// Original was GL_DEBUG_TYPE_PUSH_GROUP_KHR = 0x8269 + /// + DebugTypePushGroupKhr = ((int)0x8269), + /// + /// Original was GL_DEBUG_TYPE_POP_GROUP = 0x826A + /// + DebugTypePopGroup = ((int)0x826A), + /// + /// Original was GL_DEBUG_TYPE_POP_GROUP_KHR = 0x826A + /// + DebugTypePopGroupKhr = ((int)0x826A), + /// + /// Original was GL_DEBUG_SEVERITY_NOTIFICATION = 0x826B + /// + DebugSeverityNotification = ((int)0x826B), + /// + /// Original was GL_DEBUG_SEVERITY_NOTIFICATION_KHR = 0x826B + /// + DebugSeverityNotificationKhr = ((int)0x826B), + /// + /// Original was GL_MAX_DEBUG_GROUP_STACK_DEPTH = 0x826C + /// + MaxDebugGroupStackDepth = ((int)0x826C), + /// + /// Original was GL_MAX_DEBUG_GROUP_STACK_DEPTH_KHR = 0x826C + /// + MaxDebugGroupStackDepthKhr = ((int)0x826C), + /// + /// Original was GL_DEBUG_GROUP_STACK_DEPTH = 0x826D + /// + DebugGroupStackDepth = ((int)0x826D), + /// + /// Original was GL_DEBUG_GROUP_STACK_DEPTH_KHR = 0x826D + /// + DebugGroupStackDepthKhr = ((int)0x826D), + /// + /// Original was GL_BUFFER = 0x82E0 + /// + Buffer = ((int)0x82E0), + /// + /// Original was GL_BUFFER_KHR = 0x82E0 + /// + BufferKhr = ((int)0x82E0), + /// + /// Original was GL_SHADER = 0x82E1 + /// + Shader = ((int)0x82E1), + /// + /// Original was GL_SHADER_KHR = 0x82E1 + /// + ShaderKhr = ((int)0x82E1), + /// + /// Original was GL_PROGRAM = 0x82E2 + /// + Program = ((int)0x82E2), + /// + /// Original was GL_PROGRAM_KHR = 0x82E2 + /// + ProgramKhr = ((int)0x82E2), + /// + /// Original was GL_QUERY = 0x82E3 + /// + Query = ((int)0x82E3), + /// + /// Original was GL_QUERY_KHR = 0x82E3 + /// + QueryKhr = ((int)0x82E3), + /// + /// Original was GL_PROGRAM_PIPELINE = 0x82E4 + /// + ProgramPipeline = ((int)0x82E4), + /// + /// Original was GL_PROGRAM_PIPELINE_KHR = 0x82E4 + /// + ProgramPipelineKhr = ((int)0x82E4), + /// + /// Original was GL_SAMPLER = 0x82E6 + /// + Sampler = ((int)0x82E6), + /// + /// Original was GL_SAMPLER_KHR = 0x82E6 + /// + SamplerKhr = ((int)0x82E6), + /// + /// Original was GL_DISPLAY_LIST = 0x82E7 + /// + DisplayList = ((int)0x82E7), + /// + /// Original was GL_MAX_LABEL_LENGTH = 0x82E8 + /// + MaxLabelLength = ((int)0x82E8), + /// + /// Original was GL_MAX_LABEL_LENGTH_KHR = 0x82E8 + /// + MaxLabelLengthKhr = ((int)0x82E8), + /// + /// Original was GL_MAX_DEBUG_MESSAGE_LENGTH = 0x9143 + /// + MaxDebugMessageLength = ((int)0x9143), + /// + /// Original was GL_MAX_DEBUG_MESSAGE_LENGTH_KHR = 0x9143 + /// + MaxDebugMessageLengthKhr = ((int)0x9143), + /// + /// Original was GL_MAX_DEBUG_LOGGED_MESSAGES = 0x9144 + /// + MaxDebugLoggedMessages = ((int)0x9144), + /// + /// Original was GL_MAX_DEBUG_LOGGED_MESSAGES_KHR = 0x9144 + /// + MaxDebugLoggedMessagesKhr = ((int)0x9144), + /// + /// Original was GL_DEBUG_LOGGED_MESSAGES = 0x9145 + /// + DebugLoggedMessages = ((int)0x9145), + /// + /// Original was GL_DEBUG_LOGGED_MESSAGES_KHR = 0x9145 + /// + DebugLoggedMessagesKhr = ((int)0x9145), + /// + /// Original was GL_DEBUG_SEVERITY_HIGH = 0x9146 + /// + DebugSeverityHigh = ((int)0x9146), + /// + /// Original was GL_DEBUG_SEVERITY_HIGH_KHR = 0x9146 + /// + DebugSeverityHighKhr = ((int)0x9146), + /// + /// Original was GL_DEBUG_SEVERITY_MEDIUM = 0x9147 + /// + DebugSeverityMedium = ((int)0x9147), + /// + /// Original was GL_DEBUG_SEVERITY_MEDIUM_KHR = 0x9147 + /// + DebugSeverityMediumKhr = ((int)0x9147), + /// + /// Original was GL_DEBUG_SEVERITY_LOW = 0x9148 + /// + DebugSeverityLow = ((int)0x9148), + /// + /// Original was GL_DEBUG_SEVERITY_LOW_KHR = 0x9148 + /// + DebugSeverityLowKhr = ((int)0x9148), + /// + /// Original was GL_DEBUG_OUTPUT = 0x92E0 + /// + DebugOutput = ((int)0x92E0), + /// + /// Original was GL_DEBUG_OUTPUT_KHR = 0x92E0 + /// + DebugOutputKhr = ((int)0x92E0), } /// @@ -11869,7 +17725,7 @@ namespace OpenTK.Graphics.ES11 } /// - /// Used in GL.LightModel + /// Used in GL.LightModel, GL.LightModelx and 1 other function /// public enum LightModelParameter : int { @@ -11896,7 +17752,7 @@ namespace OpenTK.Graphics.ES11 } /// - /// Used in GL.GetLight, GL.Light + /// Used in GL.GetLight, GL.GetLightx and 4 other functions /// public enum LightName : int { @@ -11967,7 +17823,7 @@ namespace OpenTK.Graphics.ES11 } /// - /// Used in GL.GetLight, GL.Light + /// Used in GL.GetLight, GL.GetLightx and 4 other functions /// public enum LightParameter : int { @@ -12216,22 +18072,69 @@ namespace OpenTK.Graphics.ES11 /// MapPersistentBit = ((int)0x0040), /// + /// Original was GL_MAP_PERSISTENT_BIT_EXT = 0x0040 + /// + MapPersistentBitExt = ((int)0x0040), + /// /// Original was GL_MAP_COHERENT_BIT = 0x0080 /// MapCoherentBit = ((int)0x0080), /// + /// Original was GL_MAP_COHERENT_BIT_EXT = 0x0080 + /// + MapCoherentBitExt = ((int)0x0080), + /// /// Original was GL_DYNAMIC_STORAGE_BIT = 0x0100 /// DynamicStorageBit = ((int)0x0100), /// + /// Original was GL_DYNAMIC_STORAGE_BIT_EXT = 0x0100 + /// + DynamicStorageBitExt = ((int)0x0100), + /// /// Original was GL_CLIENT_STORAGE_BIT = 0x0200 /// ClientStorageBit = ((int)0x0200), + /// + /// Original was GL_CLIENT_STORAGE_BIT_EXT = 0x0200 + /// + ClientStorageBitExt = ((int)0x0200), + /// + /// Original was GL_SPARSE_STORAGE_BIT_ARB = 0x0400 + /// + SparseStorageBitArb = ((int)0x0400), + /// + /// Original was GL_LGPU_SEPARATE_STORAGE_BIT_NVX = 0x0800 + /// + LgpuSeparateStorageBitNvx = ((int)0x0800), + /// + /// Original was GL_PER_GPU_STORAGE_BIT_NV = 0x0800 + /// + PerGpuStorageBitNv = ((int)0x0800), } /// /// Not used directly. /// + public enum MapQuery : int + { + /// + /// Original was GL_COEFF = 0x0A00 + /// + Coeff = ((int)0x0A00), + /// + /// Original was GL_ORDER = 0x0A01 + /// + Order = ((int)0x0A01), + /// + /// Original was GL_DOMAIN = 0x0A02 + /// + Domain = ((int)0x0A02), + } + + /// + /// Used in GL.Oes.GetMapx, GL.Oes.Map1x and 1 other function + /// public enum MapTarget : int { /// @@ -12336,7 +18239,7 @@ namespace OpenTK.Graphics.ES11 } /// - /// Used in GL.GetMaterial, GL.Material + /// Used in GL.GetMaterial, GL.GetMaterialx and 4 other functions /// public enum MaterialFace : int { @@ -12355,7 +18258,7 @@ namespace OpenTK.Graphics.ES11 } /// - /// Used in GL.GetMaterial, GL.Material + /// Used in GL.GetMaterial, GL.GetMaterialx and 4 other functions /// public enum MaterialParameter : int { @@ -12527,6 +18430,10 @@ namespace OpenTK.Graphics.ES11 /// ClientMappedBufferBarrierBit = ((int)0x00004000), /// + /// Original was GL_CLIENT_MAPPED_BUFFER_BARRIER_BIT_EXT = 0x00004000 + /// + ClientMappedBufferBarrierBitExt = ((int)0x00004000), + /// /// Original was GL_QUERY_BUFFER_BARRIER_BIT = 0x00008000 /// QueryBufferBarrierBit = ((int)0x00008000), @@ -12676,6 +18583,57 @@ namespace OpenTK.Graphics.ES11 FenceConditionNv = ((int)0x84F4), } + /// + /// Used in GL.ObjectLabel, GL.Khr.ObjectLabel + /// + public enum ObjectIdentifier : int + { + /// + /// Original was GL_TEXTURE = 0x1702 + /// + Texture = ((int)0x1702), + /// + /// Original was GL_VERTEX_ARRAY = 0x8074 + /// + VertexArray = ((int)0x8074), + /// + /// Original was GL_BUFFER = 0x82E0 + /// + Buffer = ((int)0x82E0), + /// + /// Original was GL_SHADER = 0x82E1 + /// + Shader = ((int)0x82E1), + /// + /// Original was GL_PROGRAM = 0x82E2 + /// + Program = ((int)0x82E2), + /// + /// Original was GL_QUERY = 0x82E3 + /// + Query = ((int)0x82E3), + /// + /// Original was GL_PROGRAM_PIPELINE = 0x82E4 + /// + ProgramPipeline = ((int)0x82E4), + /// + /// Original was GL_SAMPLER = 0x82E6 + /// + Sampler = ((int)0x82E6), + /// + /// Original was GL_FRAMEBUFFER = 0x8D40 + /// + Framebuffer = ((int)0x8D40), + /// + /// Original was GL_RENDERBUFFER = 0x8D41 + /// + Renderbuffer = ((int)0x8D41), + /// + /// Original was GL_TRANSFORM_FEEDBACK = 0x8E22 + /// + TransformFeedback = ((int)0x8E22), + } + /// /// Not used directly. /// @@ -14218,6 +20176,17 @@ namespace OpenTK.Graphics.ES11 DecrWrapOes = ((int)0x8508), } + /// + /// Not used directly. + /// + public enum OesSurfacelessContext : int + { + /// + /// Original was GL_FRAMEBUFFER_UNDEFINED_OES = 0x8219 + /// + FramebufferUndefinedOes = ((int)0x8219), + } + /// /// Not used directly. /// @@ -14393,6 +20362,13 @@ namespace OpenTK.Graphics.ES11 MirroredRepeatOes = ((int)0x8370), } + /// + /// Not used directly. + /// + public enum OesTextureNpot : int + { + } + /// /// Not used directly. /// @@ -14428,6 +20404,500 @@ namespace OpenTK.Graphics.ES11 VersionEsCm11 = ((int)1), } + /// + /// Not used directly. + /// + public enum PatchParameterName : int + { + /// + /// Original was GL_PATCH_VERTICES = 0x8E72 + /// + PatchVertices = ((int)0x8E72), + /// + /// Original was GL_PATCH_DEFAULT_INNER_LEVEL = 0x8E73 + /// + PatchDefaultInnerLevel = ((int)0x8E73), + /// + /// Original was GL_PATCH_DEFAULT_OUTER_LEVEL = 0x8E74 + /// + PatchDefaultOuterLevel = ((int)0x8E74), + } + + /// + /// Not used directly. + /// + public enum PathColor : int + { + /// + /// Original was GL_PRIMARY_COLOR_NV = 0x852C + /// + PrimaryColorNv = ((int)0x852C), + /// + /// Original was GL_SECONDARY_COLOR_NV = 0x852D + /// + SecondaryColorNv = ((int)0x852D), + /// + /// Original was GL_PRIMARY_COLOR = 0x8577 + /// + PrimaryColor = ((int)0x8577), + } + + /// + /// Not used directly. + /// + public enum PathCoverMode : int + { + /// + /// Original was GL_PATH_FILL_COVER_MODE_NV = 0x9082 + /// + PathFillCoverModeNv = ((int)0x9082), + /// + /// Original was GL_CONVEX_HULL_NV = 0x908B + /// + ConvexHullNv = ((int)0x908B), + /// + /// Original was GL_BOUNDING_BOX_NV = 0x908D + /// + BoundingBoxNv = ((int)0x908D), + /// + /// Original was GL_BOUNDING_BOX_OF_BOUNDING_BOXES_NV = 0x909C + /// + BoundingBoxOfBoundingBoxesNv = ((int)0x909C), + } + + /// + /// Not used directly. + /// + public enum PathElementType : int + { + /// + /// Original was GL_UTF8_NV = 0x909A + /// + Utf8Nv = ((int)0x909A), + /// + /// Original was GL_UTF16_NV = 0x909B + /// + Utf16Nv = ((int)0x909B), + } + + /// + /// Not used directly. + /// + public enum PathFillMode : int + { + /// + /// Original was GL_INVERT = 0x150A + /// + Invert = ((int)0x150A), + /// + /// Original was GL_PATH_FILL_MODE_NV = 0x9080 + /// + PathFillModeNv = ((int)0x9080), + /// + /// Original was GL_COUNT_UP_NV = 0x9088 + /// + CountUpNv = ((int)0x9088), + /// + /// Original was GL_COUNT_DOWN_NV = 0x9089 + /// + CountDownNv = ((int)0x9089), + } + + /// + /// Not used directly. + /// + public enum PathFontStyle : int + { + /// + /// Original was GL_NONE = 0 + /// + None = ((int)0), + /// + /// Original was GL_BOLD_BIT_NV = 0x01 + /// + BoldBitNv = ((int)0x01), + /// + /// Original was GL_ITALIC_BIT_NV = 0x02 + /// + ItalicBitNv = ((int)0x02), + } + + /// + /// Not used directly. + /// + public enum PathFontTarget : int + { + /// + /// Original was GL_STANDARD_FONT_NAME_NV = 0x9072 + /// + StandardFontNameNv = ((int)0x9072), + /// + /// Original was GL_SYSTEM_FONT_NAME_NV = 0x9073 + /// + SystemFontNameNv = ((int)0x9073), + /// + /// Original was GL_FILE_NAME_NV = 0x9074 + /// + FileNameNv = ((int)0x9074), + } + + /// + /// Not used directly. + /// + public enum PathGenMode : int + { + /// + /// Original was GL_NONE = 0 + /// + None = ((int)0), + /// + /// Original was GL_EYE_LINEAR = 0x2400 + /// + EyeLinear = ((int)0x2400), + /// + /// Original was GL_OBJECT_LINEAR = 0x2401 + /// + ObjectLinear = ((int)0x2401), + /// + /// Original was GL_CONSTANT = 0x8576 + /// + Constant = ((int)0x8576), + /// + /// Original was GL_PATH_OBJECT_BOUNDING_BOX_NV = 0x908A + /// + PathObjectBoundingBoxNv = ((int)0x908A), + } + + /// + /// Not used directly. + /// + public enum PathHandleMissingGlyphs : int + { + /// + /// Original was GL_SKIP_MISSING_GLYPH_NV = 0x90A9 + /// + SkipMissingGlyphNv = ((int)0x90A9), + /// + /// Original was GL_USE_MISSING_GLYPH_NV = 0x90AA + /// + UseMissingGlyphNv = ((int)0x90AA), + } + + /// + /// Not used directly. + /// + public enum PathListMode : int + { + /// + /// Original was GL_ACCUM_ADJACENT_PAIRS_NV = 0x90AD + /// + AccumAdjacentPairsNv = ((int)0x90AD), + /// + /// Original was GL_ADJACENT_PAIRS_NV = 0x90AE + /// + AdjacentPairsNv = ((int)0x90AE), + /// + /// Original was GL_FIRST_TO_REST_NV = 0x90AF + /// + FirstToRestNv = ((int)0x90AF), + } + + /// + /// Not used directly. + /// + [Flags] + public enum PathMetricMask : int + { + /// + /// Original was GL_FONT_X_MIN_BOUNDS_BIT_NV = 0x00010000 + /// + FontXMinBoundsBitNv = ((int)0x00010000), + /// + /// Original was GL_FONT_Y_MIN_BOUNDS_BIT_NV = 0x00020000 + /// + FontYMinBoundsBitNv = ((int)0x00020000), + /// + /// Original was GL_FONT_X_MAX_BOUNDS_BIT_NV = 0x00040000 + /// + FontXMaxBoundsBitNv = ((int)0x00040000), + /// + /// Original was GL_FONT_Y_MAX_BOUNDS_BIT_NV = 0x00080000 + /// + FontYMaxBoundsBitNv = ((int)0x00080000), + /// + /// Original was GL_FONT_UNITS_PER_EM_BIT_NV = 0x00100000 + /// + FontUnitsPerEmBitNv = ((int)0x00100000), + /// + /// Original was GL_FONT_ASCENDER_BIT_NV = 0x00200000 + /// + FontAscenderBitNv = ((int)0x00200000), + /// + /// Original was GL_FONT_DESCENDER_BIT_NV = 0x00400000 + /// + FontDescenderBitNv = ((int)0x00400000), + /// + /// Original was GL_FONT_HEIGHT_BIT_NV = 0x00800000 + /// + FontHeightBitNv = ((int)0x00800000), + /// + /// Original was GL_GLYPH_WIDTH_BIT_NV = 0x01 + /// + GlyphWidthBitNv = ((int)0x01), + /// + /// Original was GL_FONT_MAX_ADVANCE_WIDTH_BIT_NV = 0x01000000 + /// + FontMaxAdvanceWidthBitNv = ((int)0x01000000), + /// + /// Original was GL_GLYPH_HEIGHT_BIT_NV = 0x02 + /// + GlyphHeightBitNv = ((int)0x02), + /// + /// Original was GL_FONT_MAX_ADVANCE_HEIGHT_BIT_NV = 0x02000000 + /// + FontMaxAdvanceHeightBitNv = ((int)0x02000000), + /// + /// Original was GL_GLYPH_HORIZONTAL_BEARING_X_BIT_NV = 0x04 + /// + GlyphHorizontalBearingXBitNv = ((int)0x04), + /// + /// Original was GL_FONT_UNDERLINE_POSITION_BIT_NV = 0x04000000 + /// + FontUnderlinePositionBitNv = ((int)0x04000000), + /// + /// Original was GL_GLYPH_HORIZONTAL_BEARING_Y_BIT_NV = 0x08 + /// + GlyphHorizontalBearingYBitNv = ((int)0x08), + /// + /// Original was GL_FONT_UNDERLINE_THICKNESS_BIT_NV = 0x08000000 + /// + FontUnderlineThicknessBitNv = ((int)0x08000000), + /// + /// Original was GL_GLYPH_HORIZONTAL_BEARING_ADVANCE_BIT_NV = 0x10 + /// + GlyphHorizontalBearingAdvanceBitNv = ((int)0x10), + /// + /// Original was GL_GLYPH_HAS_KERNING_BIT_NV = 0x100 + /// + GlyphHasKerningBitNv = ((int)0x100), + /// + /// Original was GL_FONT_HAS_KERNING_BIT_NV = 0x10000000 + /// + FontHasKerningBitNv = ((int)0x10000000), + /// + /// Original was GL_GLYPH_VERTICAL_BEARING_X_BIT_NV = 0x20 + /// + GlyphVerticalBearingXBitNv = ((int)0x20), + /// + /// Original was GL_FONT_NUM_GLYPH_INDICES_BIT_NV = 0x20000000 + /// + FontNumGlyphIndicesBitNv = ((int)0x20000000), + /// + /// Original was GL_GLYPH_VERTICAL_BEARING_Y_BIT_NV = 0x40 + /// + GlyphVerticalBearingYBitNv = ((int)0x40), + /// + /// Original was GL_GLYPH_VERTICAL_BEARING_ADVANCE_BIT_NV = 0x80 + /// + GlyphVerticalBearingAdvanceBitNv = ((int)0x80), + } + + /// + /// Not used directly. + /// + public enum PathParameter : int + { + /// + /// Original was GL_PATH_STROKE_WIDTH_NV = 0x9075 + /// + PathStrokeWidthNv = ((int)0x9075), + /// + /// Original was GL_PATH_END_CAPS_NV = 0x9076 + /// + PathEndCapsNv = ((int)0x9076), + /// + /// Original was GL_PATH_INITIAL_END_CAP_NV = 0x9077 + /// + PathInitialEndCapNv = ((int)0x9077), + /// + /// Original was GL_PATH_TERMINAL_END_CAP_NV = 0x9078 + /// + PathTerminalEndCapNv = ((int)0x9078), + /// + /// Original was GL_PATH_JOIN_STYLE_NV = 0x9079 + /// + PathJoinStyleNv = ((int)0x9079), + /// + /// Original was GL_PATH_MITER_LIMIT_NV = 0x907A + /// + PathMiterLimitNv = ((int)0x907A), + /// + /// Original was GL_PATH_DASH_CAPS_NV = 0x907B + /// + PathDashCapsNv = ((int)0x907B), + /// + /// Original was GL_PATH_INITIAL_DASH_CAP_NV = 0x907C + /// + PathInitialDashCapNv = ((int)0x907C), + /// + /// Original was GL_PATH_TERMINAL_DASH_CAP_NV = 0x907D + /// + PathTerminalDashCapNv = ((int)0x907D), + /// + /// Original was GL_PATH_DASH_OFFSET_NV = 0x907E + /// + PathDashOffsetNv = ((int)0x907E), + /// + /// Original was GL_PATH_CLIENT_LENGTH_NV = 0x907F + /// + PathClientLengthNv = ((int)0x907F), + /// + /// Original was GL_PATH_FILL_MODE_NV = 0x9080 + /// + PathFillModeNv = ((int)0x9080), + /// + /// Original was GL_PATH_FILL_MASK_NV = 0x9081 + /// + PathFillMaskNv = ((int)0x9081), + /// + /// Original was GL_PATH_FILL_COVER_MODE_NV = 0x9082 + /// + PathFillCoverModeNv = ((int)0x9082), + /// + /// Original was GL_PATH_STROKE_COVER_MODE_NV = 0x9083 + /// + PathStrokeCoverModeNv = ((int)0x9083), + /// + /// Original was GL_PATH_STROKE_MASK_NV = 0x9084 + /// + PathStrokeMaskNv = ((int)0x9084), + /// + /// Original was GL_PATH_OBJECT_BOUNDING_BOX_NV = 0x908A + /// + PathObjectBoundingBoxNv = ((int)0x908A), + /// + /// Original was GL_PATH_COMMAND_COUNT_NV = 0x909D + /// + PathCommandCountNv = ((int)0x909D), + /// + /// Original was GL_PATH_COORD_COUNT_NV = 0x909E + /// + PathCoordCountNv = ((int)0x909E), + /// + /// Original was GL_PATH_DASH_ARRAY_COUNT_NV = 0x909F + /// + PathDashArrayCountNv = ((int)0x909F), + /// + /// Original was GL_PATH_COMPUTED_LENGTH_NV = 0x90A0 + /// + PathComputedLengthNv = ((int)0x90A0), + /// + /// Original was GL_PATH_FILL_BOUNDING_BOX_NV = 0x90A1 + /// + PathFillBoundingBoxNv = ((int)0x90A1), + /// + /// Original was GL_PATH_STROKE_BOUNDING_BOX_NV = 0x90A2 + /// + PathStrokeBoundingBoxNv = ((int)0x90A2), + /// + /// Original was GL_PATH_DASH_OFFSET_RESET_NV = 0x90B4 + /// + PathDashOffsetResetNv = ((int)0x90B4), + } + + /// + /// Not used directly. + /// + public enum PathStringFormat : int + { + /// + /// Original was GL_PATH_FORMAT_SVG_NV = 0x9070 + /// + PathFormatSvgNv = ((int)0x9070), + /// + /// Original was GL_PATH_FORMAT_PS_NV = 0x9071 + /// + PathFormatPsNv = ((int)0x9071), + } + + /// + /// Not used directly. + /// + public enum PathTransformType : int + { + /// + /// Original was GL_NONE = 0 + /// + None = ((int)0), + /// + /// Original was GL_TRANSLATE_X_NV = 0x908E + /// + TranslateXNv = ((int)0x908E), + /// + /// Original was GL_TRANSLATE_Y_NV = 0x908F + /// + TranslateYNv = ((int)0x908F), + /// + /// Original was GL_TRANSLATE_2D_NV = 0x9090 + /// + Translate2DNv = ((int)0x9090), + /// + /// Original was GL_TRANSLATE_3D_NV = 0x9091 + /// + Translate3DNv = ((int)0x9091), + /// + /// Original was GL_AFFINE_2D_NV = 0x9092 + /// + Affine2DNv = ((int)0x9092), + /// + /// Original was GL_AFFINE_3D_NV = 0x9094 + /// + Affine3DNv = ((int)0x9094), + /// + /// Original was GL_TRANSPOSE_AFFINE_2D_NV = 0x9096 + /// + TransposeAffine2DNv = ((int)0x9096), + /// + /// Original was GL_TRANSPOSE_AFFINE_3D_NV = 0x9098 + /// + TransposeAffine3DNv = ((int)0x9098), + } + + /// + /// Not used directly. + /// + public enum PipelineParameterName : int + { + /// + /// Original was GL_ACTIVE_PROGRAM = 0x8259 + /// + ActiveProgram = ((int)0x8259), + /// + /// Original was GL_FRAGMENT_SHADER = 0x8B30 + /// + FragmentShader = ((int)0x8B30), + /// + /// Original was GL_VERTEX_SHADER = 0x8B31 + /// + VertexShader = ((int)0x8B31), + /// + /// Original was GL_INFO_LOG_LENGTH = 0x8B84 + /// + InfoLogLength = ((int)0x8B84), + /// + /// Original was GL_GEOMETRY_SHADER = 0x8DD9 + /// + GeometryShader = ((int)0x8DD9), + /// + /// Original was GL_TESS_EVALUATION_SHADER = 0x8E87 + /// + TessEvaluationShader = ((int)0x8E87), + /// + /// Original was GL_TESS_CONTROL_SHADER = 0x8E88 + /// + TessControlShader = ((int)0x8E88), + } + /// /// Not used directly. /// @@ -14460,7 +20930,7 @@ namespace OpenTK.Graphics.ES11 } /// - /// Used in GL.CompressedTexSubImage2D, GL.ReadPixels and 2 other functions + /// Used in GL.CompressedTexSubImage2D, GL.ReadPixels and 4 other functions /// public enum PixelFormat : int { @@ -14543,7 +21013,7 @@ namespace OpenTK.Graphics.ES11 } /// - /// Not used directly. + /// Used in GL.GetPixelMapx, GL.PixelMapx /// public enum PixelMap : int { @@ -14590,7 +21060,7 @@ namespace OpenTK.Graphics.ES11 } /// - /// Used in GL.PixelStore + /// Used in GL.PixelStore, GL.PixelStorex /// public enum PixelStoreParameter : int { @@ -14849,7 +21319,7 @@ namespace OpenTK.Graphics.ES11 } /// - /// Not used directly. + /// Used in GL.Oes.PixelTransferx /// public enum PixelTransferParameter : int { @@ -15040,7 +21510,7 @@ namespace OpenTK.Graphics.ES11 } /// - /// Used in GL.ReadPixels, GL.TexImage2D and 1 other function + /// Used in GL.ReadPixels, GL.TexImage2D and 3 other functions /// public enum PixelType : int { @@ -15208,6 +21678,37 @@ namespace OpenTK.Graphics.ES11 Fill = ((int)0x1B02), } + /// + /// Not used directly. + /// + public enum PrecisionType : int + { + /// + /// Original was GL_LOW_FLOAT = 0x8DF0 + /// + LowFloat = ((int)0x8DF0), + /// + /// Original was GL_MEDIUM_FLOAT = 0x8DF1 + /// + MediumFloat = ((int)0x8DF1), + /// + /// Original was GL_HIGH_FLOAT = 0x8DF2 + /// + HighFloat = ((int)0x8DF2), + /// + /// Original was GL_LOW_INT = 0x8DF3 + /// + LowInt = ((int)0x8DF3), + /// + /// Original was GL_MEDIUM_INT = 0x8DF4 + /// + MediumInt = ((int)0x8DF4), + /// + /// Original was GL_HIGH_INT = 0x8DF5 + /// + HighInt = ((int)0x8DF5), + } + /// /// Used in GL.DrawArrays, GL.DrawElements and 2 other functions /// @@ -15315,6 +21816,245 @@ namespace OpenTK.Graphics.ES11 PatchesExt = ((int)0x000E), } + /// + /// Not used directly. + /// + public enum ProgramInterface : int + { + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER = 0x8C8E + /// + TransformFeedbackBuffer = ((int)0x8C8E), + /// + /// Original was GL_UNIFORM = 0x92E1 + /// + Uniform = ((int)0x92E1), + /// + /// Original was GL_UNIFORM_BLOCK = 0x92E2 + /// + UniformBlock = ((int)0x92E2), + /// + /// Original was GL_PROGRAM_INPUT = 0x92E3 + /// + ProgramInput = ((int)0x92E3), + /// + /// Original was GL_PROGRAM_OUTPUT = 0x92E4 + /// + ProgramOutput = ((int)0x92E4), + /// + /// Original was GL_BUFFER_VARIABLE = 0x92E5 + /// + BufferVariable = ((int)0x92E5), + /// + /// Original was GL_SHADER_STORAGE_BLOCK = 0x92E6 + /// + ShaderStorageBlock = ((int)0x92E6), + /// + /// Original was GL_VERTEX_SUBROUTINE = 0x92E8 + /// + VertexSubroutine = ((int)0x92E8), + /// + /// Original was GL_TESS_CONTROL_SUBROUTINE = 0x92E9 + /// + TessControlSubroutine = ((int)0x92E9), + /// + /// Original was GL_TESS_EVALUATION_SUBROUTINE = 0x92EA + /// + TessEvaluationSubroutine = ((int)0x92EA), + /// + /// Original was GL_GEOMETRY_SUBROUTINE = 0x92EB + /// + GeometrySubroutine = ((int)0x92EB), + /// + /// Original was GL_FRAGMENT_SUBROUTINE = 0x92EC + /// + FragmentSubroutine = ((int)0x92EC), + /// + /// Original was GL_COMPUTE_SUBROUTINE = 0x92ED + /// + ComputeSubroutine = ((int)0x92ED), + /// + /// Original was GL_VERTEX_SUBROUTINE_UNIFORM = 0x92EE + /// + VertexSubroutineUniform = ((int)0x92EE), + /// + /// Original was GL_TESS_CONTROL_SUBROUTINE_UNIFORM = 0x92EF + /// + TessControlSubroutineUniform = ((int)0x92EF), + /// + /// Original was GL_TESS_EVALUATION_SUBROUTINE_UNIFORM = 0x92F0 + /// + TessEvaluationSubroutineUniform = ((int)0x92F0), + /// + /// Original was GL_GEOMETRY_SUBROUTINE_UNIFORM = 0x92F1 + /// + GeometrySubroutineUniform = ((int)0x92F1), + /// + /// Original was GL_FRAGMENT_SUBROUTINE_UNIFORM = 0x92F2 + /// + FragmentSubroutineUniform = ((int)0x92F2), + /// + /// Original was GL_COMPUTE_SUBROUTINE_UNIFORM = 0x92F3 + /// + ComputeSubroutineUniform = ((int)0x92F3), + /// + /// Original was GL_TRANSFORM_FEEDBACK_VARYING = 0x92F4 + /// + TransformFeedbackVarying = ((int)0x92F4), + } + + /// + /// Not used directly. + /// + public enum ProgramInterfacePName : int + { + /// + /// Original was GL_ACTIVE_RESOURCES = 0x92F5 + /// + ActiveResources = ((int)0x92F5), + /// + /// Original was GL_MAX_NAME_LENGTH = 0x92F6 + /// + MaxNameLength = ((int)0x92F6), + /// + /// Original was GL_MAX_NUM_ACTIVE_VARIABLES = 0x92F7 + /// + MaxNumActiveVariables = ((int)0x92F7), + /// + /// Original was GL_MAX_NUM_COMPATIBLE_SUBROUTINES = 0x92F8 + /// + MaxNumCompatibleSubroutines = ((int)0x92F8), + } + + /// + /// Not used directly. + /// + public enum ProgramParameterPName : int + { + /// + /// Original was GL_PROGRAM_BINARY_RETRIEVABLE_HINT = 0x8257 + /// + ProgramBinaryRetrievableHint = ((int)0x8257), + /// + /// Original was GL_PROGRAM_SEPARABLE = 0x8258 + /// + ProgramSeparable = ((int)0x8258), + } + + /// + /// Not used directly. + /// + public enum ProgramPropertyArb : int + { + /// + /// Original was GL_COMPUTE_WORK_GROUP_SIZE = 0x8267 + /// + ComputeWorkGroupSize = ((int)0x8267), + /// + /// Original was GL_PROGRAM_BINARY_LENGTH = 0x8741 + /// + ProgramBinaryLength = ((int)0x8741), + /// + /// Original was GL_GEOMETRY_VERTICES_OUT = 0x8916 + /// + GeometryVerticesOut = ((int)0x8916), + /// + /// Original was GL_GEOMETRY_INPUT_TYPE = 0x8917 + /// + GeometryInputType = ((int)0x8917), + /// + /// Original was GL_GEOMETRY_OUTPUT_TYPE = 0x8918 + /// + GeometryOutputType = ((int)0x8918), + /// + /// Original was GL_ACTIVE_UNIFORM_BLOCK_MAX_NAME_LENGTH = 0x8A35 + /// + ActiveUniformBlockMaxNameLength = ((int)0x8A35), + /// + /// Original was GL_ACTIVE_UNIFORM_BLOCKS = 0x8A36 + /// + ActiveUniformBlocks = ((int)0x8A36), + /// + /// Original was GL_DELETE_STATUS = 0x8B80 + /// + DeleteStatus = ((int)0x8B80), + /// + /// Original was GL_LINK_STATUS = 0x8B82 + /// + LinkStatus = ((int)0x8B82), + /// + /// Original was GL_VALIDATE_STATUS = 0x8B83 + /// + ValidateStatus = ((int)0x8B83), + /// + /// Original was GL_INFO_LOG_LENGTH = 0x8B84 + /// + InfoLogLength = ((int)0x8B84), + /// + /// Original was GL_ATTACHED_SHADERS = 0x8B85 + /// + AttachedShaders = ((int)0x8B85), + /// + /// Original was GL_ACTIVE_UNIFORMS = 0x8B86 + /// + ActiveUniforms = ((int)0x8B86), + /// + /// Original was GL_ACTIVE_UNIFORM_MAX_LENGTH = 0x8B87 + /// + ActiveUniformMaxLength = ((int)0x8B87), + /// + /// Original was GL_ACTIVE_ATTRIBUTES = 0x8B89 + /// + ActiveAttributes = ((int)0x8B89), + /// + /// Original was GL_ACTIVE_ATTRIBUTE_MAX_LENGTH = 0x8B8A + /// + ActiveAttributeMaxLength = ((int)0x8B8A), + /// + /// Original was GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH = 0x8C76 + /// + TransformFeedbackVaryingMaxLength = ((int)0x8C76), + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER_MODE = 0x8C7F + /// + TransformFeedbackBufferMode = ((int)0x8C7F), + /// + /// Original was GL_TRANSFORM_FEEDBACK_VARYINGS = 0x8C83 + /// + TransformFeedbackVaryings = ((int)0x8C83), + /// + /// Original was GL_ACTIVE_ATOMIC_COUNTER_BUFFERS = 0x92D9 + /// + ActiveAtomicCounterBuffers = ((int)0x92D9), + } + + /// + /// Not used directly. + /// + public enum ProgramStagePName : int + { + /// + /// Original was GL_ACTIVE_SUBROUTINES = 0x8DE5 + /// + ActiveSubroutines = ((int)0x8DE5), + /// + /// Original was GL_ACTIVE_SUBROUTINE_UNIFORMS = 0x8DE6 + /// + ActiveSubroutineUniforms = ((int)0x8DE6), + /// + /// Original was GL_ACTIVE_SUBROUTINE_UNIFORM_LOCATIONS = 0x8E47 + /// + ActiveSubroutineUniformLocations = ((int)0x8E47), + /// + /// Original was GL_ACTIVE_SUBROUTINE_MAX_LENGTH = 0x8E48 + /// + ActiveSubroutineMaxLength = ((int)0x8E48), + /// + /// Original was GL_ACTIVE_SUBROUTINE_UNIFORM_MAX_LENGTH = 0x8E49 + /// + ActiveSubroutineUniformMaxLength = ((int)0x8E49), + } + /// /// Not used directly. /// @@ -15569,6 +22309,75 @@ namespace OpenTK.Graphics.ES11 WriteonlyRenderingQcom = ((int)0x8823), } + /// + /// Not used directly. + /// + public enum QueryObjectParameterName : int + { + /// + /// Original was GL_QUERY_TARGET = 0x82EA + /// + QueryTarget = ((int)0x82EA), + /// + /// Original was GL_QUERY_RESULT = 0x8866 + /// + QueryResult = ((int)0x8866), + /// + /// Original was GL_QUERY_RESULT_AVAILABLE = 0x8867 + /// + QueryResultAvailable = ((int)0x8867), + /// + /// Original was GL_QUERY_RESULT_NO_WAIT = 0x9194 + /// + QueryResultNoWait = ((int)0x9194), + } + + /// + /// Not used directly. + /// + public enum QueryParameterName : int + { + /// + /// Original was GL_QUERY_COUNTER_BITS = 0x8864 + /// + QueryCounterBits = ((int)0x8864), + /// + /// Original was GL_CURRENT_QUERY = 0x8865 + /// + CurrentQuery = ((int)0x8865), + } + + /// + /// Not used directly. + /// + public enum QueryTarget : int + { + /// + /// Original was GL_TIME_ELAPSED = 0x88BF + /// + TimeElapsed = ((int)0x88BF), + /// + /// Original was GL_SAMPLES_PASSED = 0x8914 + /// + SamplesPassed = ((int)0x8914), + /// + /// Original was GL_ANY_SAMPLES_PASSED = 0x8C2F + /// + AnySamplesPassed = ((int)0x8C2F), + /// + /// Original was GL_PRIMITIVES_GENERATED = 0x8C87 + /// + PrimitivesGenerated = ((int)0x8C87), + /// + /// Original was GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN = 0x8C88 + /// + TransformFeedbackPrimitivesWritten = ((int)0x8C88), + /// + /// Original was GL_ANY_SAMPLES_PASSED_CONSERVATIVE = 0x8D6A + /// + AnySamplesPassedConservative = ((int)0x8D6A), + } + /// /// Not used directly. /// @@ -15624,6 +22433,64 @@ namespace OpenTK.Graphics.ES11 Aux3 = ((int)0x040C), } + /// + /// Used in GL.Oes.GetRenderbufferParameter + /// + public enum RenderbufferParameterName : int + { + /// + /// Original was GL_RENDERBUFFER_SAMPLES = 0x8CAB + /// + RenderbufferSamples = ((int)0x8CAB), + /// + /// Original was GL_RENDERBUFFER_WIDTH = 0x8D42 + /// + RenderbufferWidth = ((int)0x8D42), + /// + /// Original was GL_RENDERBUFFER_HEIGHT = 0x8D43 + /// + RenderbufferHeight = ((int)0x8D43), + /// + /// Original was GL_RENDERBUFFER_INTERNAL_FORMAT = 0x8D44 + /// + RenderbufferInternalFormat = ((int)0x8D44), + /// + /// Original was GL_RENDERBUFFER_RED_SIZE = 0x8D50 + /// + RenderbufferRedSize = ((int)0x8D50), + /// + /// Original was GL_RENDERBUFFER_GREEN_SIZE = 0x8D51 + /// + RenderbufferGreenSize = ((int)0x8D51), + /// + /// Original was GL_RENDERBUFFER_BLUE_SIZE = 0x8D52 + /// + RenderbufferBlueSize = ((int)0x8D52), + /// + /// Original was GL_RENDERBUFFER_ALPHA_SIZE = 0x8D53 + /// + RenderbufferAlphaSize = ((int)0x8D53), + /// + /// Original was GL_RENDERBUFFER_DEPTH_SIZE = 0x8D54 + /// + RenderbufferDepthSize = ((int)0x8D54), + /// + /// Original was GL_RENDERBUFFER_STENCIL_SIZE = 0x8D55 + /// + RenderbufferStencilSize = ((int)0x8D55), + } + + /// + /// Used in GL.Apple.RenderbufferStorageMultisample, GL.Ext.RenderbufferStorageMultisample and 5 other functions + /// + public enum RenderbufferTarget : int + { + /// + /// Original was GL_RENDERBUFFER = 0x8D41 + /// + Renderbuffer = ((int)0x8D41), + } + /// /// Not used directly. /// @@ -15706,6 +22573,53 @@ namespace OpenTK.Graphics.ES11 Gl4Pass3Sgis = ((int)0x80A7), } + /// + /// Not used directly. + /// + public enum SamplerParameterName : int + { + /// + /// Original was GL_TEXTURE_BORDER_COLOR = 0x1004 + /// + TextureBorderColor = ((int)0x1004), + /// + /// Original was GL_TEXTURE_MAG_FILTER = 0x2800 + /// + TextureMagFilter = ((int)0x2800), + /// + /// Original was GL_TEXTURE_MIN_FILTER = 0x2801 + /// + TextureMinFilter = ((int)0x2801), + /// + /// Original was GL_TEXTURE_WRAP_S = 0x2802 + /// + TextureWrapS = ((int)0x2802), + /// + /// Original was GL_TEXTURE_WRAP_T = 0x2803 + /// + TextureWrapT = ((int)0x2803), + /// + /// Original was GL_TEXTURE_WRAP_R = 0x8072 + /// + TextureWrapR = ((int)0x8072), + /// + /// Original was GL_TEXTURE_MIN_LOD = 0x813A + /// + TextureMinLod = ((int)0x813A), + /// + /// Original was GL_TEXTURE_MAX_LOD = 0x813B + /// + TextureMaxLod = ((int)0x813B), + /// + /// Original was GL_TEXTURE_COMPARE_MODE = 0x884C + /// + TextureCompareMode = ((int)0x884C), + /// + /// Original was GL_TEXTURE_COMPARE_FUNC = 0x884D + /// + TextureCompareFunc = ((int)0x884D), + } + /// /// Not used directly. /// @@ -15732,6 +22646,72 @@ namespace OpenTK.Graphics.ES11 Separable2DExt = ((int)0x8012), } + /// + /// Not used directly. + /// + public enum ShaderParameterName : int + { + /// + /// Original was GL_SHADER_TYPE = 0x8B4F + /// + ShaderType = ((int)0x8B4F), + /// + /// Original was GL_DELETE_STATUS = 0x8B80 + /// + DeleteStatus = ((int)0x8B80), + /// + /// Original was GL_COMPILE_STATUS = 0x8B81 + /// + CompileStatus = ((int)0x8B81), + /// + /// Original was GL_INFO_LOG_LENGTH = 0x8B84 + /// + InfoLogLength = ((int)0x8B84), + /// + /// Original was GL_SHADER_SOURCE_LENGTH = 0x8B88 + /// + ShaderSourceLength = ((int)0x8B88), + } + + /// + /// Used in GL.Qcom.ExtGetProgramBinarySource + /// + public enum ShaderType : int + { + /// + /// Original was GL_FRAGMENT_SHADER = 0x8B30 + /// + FragmentShader = ((int)0x8B30), + /// + /// Original was GL_FRAGMENT_SHADER_ARB = 0x8B30 + /// + FragmentShaderArb = ((int)0x8B30), + /// + /// Original was GL_VERTEX_SHADER = 0x8B31 + /// + VertexShader = ((int)0x8B31), + /// + /// Original was GL_VERTEX_SHADER_ARB = 0x8B31 + /// + VertexShaderArb = ((int)0x8B31), + /// + /// Original was GL_GEOMETRY_SHADER = 0x8DD9 + /// + GeometryShader = ((int)0x8DD9), + /// + /// Original was GL_TESS_EVALUATION_SHADER = 0x8E87 + /// + TessEvaluationShader = ((int)0x8E87), + /// + /// Original was GL_TESS_CONTROL_SHADER = 0x8E88 + /// + TessControlShader = ((int)0x8E88), + /// + /// Original was GL_COMPUTE_SHADER = 0x91B9 + /// + ComputeShader = ((int)0x91B9), + } + /// /// Used in GL.ShadeModel /// @@ -15863,6 +22843,102 @@ namespace OpenTK.Graphics.ES11 ShadingLanguageVersion = ((int)0x8B8C), } + /// + /// Not used directly. + /// + public enum SubroutineParameterName : int + { + /// + /// Original was GL_UNIFORM_SIZE = 0x8A38 + /// + UniformSize = ((int)0x8A38), + /// + /// Original was GL_UNIFORM_NAME_LENGTH = 0x8A39 + /// + UniformNameLength = ((int)0x8A39), + /// + /// Original was GL_NUM_COMPATIBLE_SUBROUTINES = 0x8E4A + /// + NumCompatibleSubroutines = ((int)0x8E4A), + /// + /// Original was GL_COMPATIBLE_SUBROUTINES = 0x8E4B + /// + CompatibleSubroutines = ((int)0x8E4B), + } + + /// + /// Used in GL.Apple.FenceSync + /// + public enum SyncCondition : int + { + /// + /// Original was GL_SYNC_GPU_COMMANDS_COMPLETE = 0x9117 + /// + SyncGpuCommandsComplete = ((int)0x9117), + } + + /// + /// Used in GL.Apple.ClientWaitSync + /// + [Flags] + public enum SyncObjectMask : int + { + /// + /// Original was GL_SYNC_FLUSH_COMMANDS_BIT = 0x00000001 + /// + SyncFlushCommandsBit = ((int)0x00000001), + /// + /// Original was GL_SYNC_FLUSH_COMMANDS_BIT_APPLE = 0x00000001 + /// + SyncFlushCommandsBitApple = ((int)0x00000001), + } + + /// + /// Used in GL.Apple.GetSync + /// + public enum SyncParameterName : int + { + /// + /// Original was GL_OBJECT_TYPE = 0x9112 + /// + ObjectType = ((int)0x9112), + /// + /// Original was GL_SYNC_CONDITION = 0x9113 + /// + SyncCondition = ((int)0x9113), + /// + /// Original was GL_SYNC_STATUS = 0x9114 + /// + SyncStatus = ((int)0x9114), + /// + /// Original was GL_SYNC_FLAGS = 0x9115 + /// + SyncFlags = ((int)0x9115), + } + + /// + /// Not used directly. + /// + public enum SyncStatus : int + { + /// + /// Original was GL_ALREADY_SIGNALED = 0x911A + /// + AlreadySignaled = ((int)0x911A), + /// + /// Original was GL_TIMEOUT_EXPIRED = 0x911B + /// + TimeoutExpired = ((int)0x911B), + /// + /// Original was GL_CONDITION_SATISFIED = 0x911C + /// + ConditionSatisfied = ((int)0x911C), + /// + /// Original was GL_WAIT_FAILED = 0x911D + /// + WaitFailed = ((int)0x911D), + } + /// /// Used in GL.TexCoordPointer /// @@ -15995,7 +23071,7 @@ namespace OpenTK.Graphics.ES11 } /// - /// Not used directly. + /// Used in GL.Oes.GetTexGen, GL.Oes.GetTexGenx and 2 other functions /// public enum TextureCoordName : int { @@ -16049,7 +23125,7 @@ namespace OpenTK.Graphics.ES11 } /// - /// Used in GL.GetTexEnv, GL.TexEnv + /// Used in GL.GetTexEnv, GL.GetTexEnvx and 4 other functions /// public enum TextureEnvParameter : int { @@ -16064,7 +23140,7 @@ namespace OpenTK.Graphics.ES11 } /// - /// Used in GL.GetTexEnv, GL.TexEnv + /// Used in GL.GetTexEnv, GL.GetTexEnvx and 4 other functions /// public enum TextureEnvTarget : int { @@ -16121,7 +23197,7 @@ namespace OpenTK.Graphics.ES11 } /// - /// Not used directly. + /// Used in GL.Oes.GetTexGen, GL.Oes.GetTexGenx and 2 other functions /// public enum TextureGenParameter : int { @@ -16160,6 +23236,14 @@ namespace OpenTK.Graphics.ES11 /// public enum TextureLayout : int { + /// + /// Original was GL_LAYOUT_DEPTH_READ_ONLY_STENCIL_ATTACHMENT_EXT = 0x9530 + /// + LayoutDepthReadOnlyStencilAttachmentExt = ((int)0x9530), + /// + /// Original was GL_LAYOUT_DEPTH_ATTACHMENT_STENCIL_READ_ONLY_EXT = 0x9531 + /// + LayoutDepthAttachmentStencilReadOnlyExt = ((int)0x9531), /// /// Original was GL_LAYOUT_GENERAL_EXT = 0x958D /// @@ -16313,11 +23397,35 @@ namespace OpenTK.Graphics.ES11 /// public enum TextureParameterName : int { + /// + /// Original was GL_TEXTURE_WIDTH = 0x1000 + /// + TextureWidth = ((int)0x1000), + /// + /// Original was GL_TEXTURE_HEIGHT = 0x1001 + /// + TextureHeight = ((int)0x1001), + /// + /// Original was GL_TEXTURE_COMPONENTS = 0x1003 + /// + TextureComponents = ((int)0x1003), + /// + /// Original was GL_TEXTURE_INTERNAL_FORMAT = 0x1003 + /// + TextureInternalFormat = ((int)0x1003), /// /// Original was GL_TEXTURE_BORDER_COLOR = 0x1004 /// TextureBorderColor = ((int)0x1004), /// + /// Original was GL_TEXTURE_BORDER_COLOR_NV = 0x1004 + /// + TextureBorderColorNv = ((int)0x1004), + /// + /// Original was GL_TEXTURE_BORDER = 0x1005 + /// + TextureBorder = ((int)0x1005), + /// /// Original was GL_TEXTURE_MAG_FILTER = 0x2800 /// TextureMagFilter = ((int)0x2800), @@ -16334,6 +23442,30 @@ namespace OpenTK.Graphics.ES11 /// TextureWrapT = ((int)0x2803), /// + /// Original was GL_TEXTURE_RED_SIZE = 0x805C + /// + TextureRedSize = ((int)0x805C), + /// + /// Original was GL_TEXTURE_GREEN_SIZE = 0x805D + /// + TextureGreenSize = ((int)0x805D), + /// + /// Original was GL_TEXTURE_BLUE_SIZE = 0x805E + /// + TextureBlueSize = ((int)0x805E), + /// + /// Original was GL_TEXTURE_ALPHA_SIZE = 0x805F + /// + TextureAlphaSize = ((int)0x805F), + /// + /// Original was GL_TEXTURE_LUMINANCE_SIZE = 0x8060 + /// + TextureLuminanceSize = ((int)0x8060), + /// + /// Original was GL_TEXTURE_INTENSITY_SIZE = 0x8061 + /// + TextureIntensitySize = ((int)0x8061), + /// /// Original was GL_TEXTURE_PRIORITY = 0x8066 /// TexturePriority = ((int)0x8066), @@ -16342,6 +23474,14 @@ namespace OpenTK.Graphics.ES11 /// TexturePriorityExt = ((int)0x8066), /// + /// Original was GL_TEXTURE_RESIDENT = 0x8067 + /// + TextureResident = ((int)0x8067), + /// + /// Original was GL_TEXTURE_DEPTH_EXT = 0x8071 + /// + TextureDepthExt = ((int)0x8071), + /// /// Original was GL_TEXTURE_WRAP_R = 0x8072 /// TextureWrapR = ((int)0x8072), @@ -16362,6 +23502,14 @@ namespace OpenTK.Graphics.ES11 /// DetailTextureModeSgis = ((int)0x809B), /// + /// Original was GL_DETAIL_TEXTURE_FUNC_POINTS_SGIS = 0x809C + /// + DetailTextureFuncPointsSgis = ((int)0x809C), + /// + /// Original was GL_SHARPEN_TEXTURE_FUNC_POINTS_SGIS = 0x80B0 + /// + SharpenTextureFuncPointsSgis = ((int)0x80B0), + /// /// Original was GL_SHADOW_AMBIENT_SGIX = 0x80BF /// ShadowAmbientSgix = ((int)0x80BF), @@ -16374,6 +23522,10 @@ namespace OpenTK.Graphics.ES11 /// QuadTextureSelectSgis = ((int)0x8125), /// + /// Original was GL_TEXTURE_4DSIZE_SGIS = 0x8136 + /// + Texture4DsizeSgis = ((int)0x8136), + /// /// Original was GL_TEXTURE_WRAP_Q_SGIS = 0x8137 /// TextureWrapQSgis = ((int)0x8137), @@ -16382,18 +23534,38 @@ namespace OpenTK.Graphics.ES11 /// TextureMinLod = ((int)0x813A), /// + /// Original was GL_TEXTURE_MIN_LOD_SGIS = 0x813A + /// + TextureMinLodSgis = ((int)0x813A), + /// /// Original was GL_TEXTURE_MAX_LOD = 0x813B /// TextureMaxLod = ((int)0x813B), /// + /// Original was GL_TEXTURE_MAX_LOD_SGIS = 0x813B + /// + TextureMaxLodSgis = ((int)0x813B), + /// /// Original was GL_TEXTURE_BASE_LEVEL = 0x813C /// TextureBaseLevel = ((int)0x813C), /// + /// Original was GL_TEXTURE_BASE_LEVEL_SGIS = 0x813C + /// + TextureBaseLevelSgis = ((int)0x813C), + /// /// Original was GL_TEXTURE_MAX_LEVEL = 0x813D /// TextureMaxLevel = ((int)0x813D), /// + /// Original was GL_TEXTURE_MAX_LEVEL_SGIS = 0x813D + /// + TextureMaxLevelSgis = ((int)0x813D), + /// + /// Original was GL_TEXTURE_FILTER4_SIZE_SGIS = 0x8147 + /// + TextureFilter4SizeSgis = ((int)0x8147), + /// /// Original was GL_TEXTURE_CLIPMAP_CENTER_SGIX = 0x8171 /// TextureClipmapCenterSgix = ((int)0x8171), @@ -16450,6 +23622,18 @@ namespace OpenTK.Graphics.ES11 /// TextureCompareSgix = ((int)0x819A), /// + /// Original was GL_TEXTURE_COMPARE_OPERATOR_SGIX = 0x819B + /// + TextureCompareOperatorSgix = ((int)0x819B), + /// + /// Original was GL_TEXTURE_LEQUAL_R_SGIX = 0x819C + /// + TextureLequalRSgix = ((int)0x819C), + /// + /// Original was GL_TEXTURE_GEQUAL_R_SGIX = 0x819D + /// + TextureGequalRSgix = ((int)0x819D), + /// /// Original was GL_TEXTURE_MAX_CLAMP_S_SGIX = 0x8369 /// TextureMaxClampSSgix = ((int)0x8369), @@ -16504,7 +23688,19 @@ namespace OpenTK.Graphics.ES11 } /// - /// Used in GL.BindTexture, GL.CompressedTexImage2D and 7 other functions + /// Not used directly. + /// + [Flags] + public enum TextureStorageMaskAmd : int + { + /// + /// Original was GL_TEXTURE_STORAGE_SPARSE_BIT_AMD = 0x00000001 + /// + TextureStorageSparseBitAmd = ((int)0x00000001), + } + + /// + /// Used in GL.BindTexture, GL.CompressedTexImage2D and 19 other functions /// public enum TextureTarget : int { @@ -16687,7 +23883,7 @@ namespace OpenTK.Graphics.ES11 } /// - /// Used in GL.ActiveTexture, GL.ClientActiveTexture and 1 other function + /// Used in GL.ActiveTexture, GL.ClientActiveTexture and 10 other functions /// public enum TextureUnit : int { @@ -16868,6 +24064,150 @@ namespace OpenTK.Graphics.ES11 ClampToEdgeSgis = ((int)0x812F), } + /// + /// Not used directly. + /// + public enum TransformFeedbackPName : int + { + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER_START = 0x8C84 + /// + TransformFeedbackBufferStart = ((int)0x8C84), + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER_SIZE = 0x8C85 + /// + TransformFeedbackBufferSize = ((int)0x8C85), + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER_BINDING = 0x8C8F + /// + TransformFeedbackBufferBinding = ((int)0x8C8F), + /// + /// Original was GL_TRANSFORM_FEEDBACK_PAUSED = 0x8E23 + /// + TransformFeedbackPaused = ((int)0x8E23), + /// + /// Original was GL_TRANSFORM_FEEDBACK_ACTIVE = 0x8E24 + /// + TransformFeedbackActive = ((int)0x8E24), + } + + /// + /// Not used directly. + /// + public enum TypeEnum : int + { + /// + /// Original was GL_QUERY_WAIT = 0x8E13 + /// + QueryWait = ((int)0x8E13), + /// + /// Original was GL_QUERY_NO_WAIT = 0x8E14 + /// + QueryNoWait = ((int)0x8E14), + /// + /// Original was GL_QUERY_BY_REGION_WAIT = 0x8E15 + /// + QueryByRegionWait = ((int)0x8E15), + /// + /// Original was GL_QUERY_BY_REGION_NO_WAIT = 0x8E16 + /// + QueryByRegionNoWait = ((int)0x8E16), + } + + /// + /// Not used directly. + /// + public enum UniformBlockPName : int + { + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_CONTROL_SHADER = 0x84F0 + /// + UniformBlockReferencedByTessControlShader = ((int)0x84F0), + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_EVALUATION_SHADER = 0x84F1 + /// + UniformBlockReferencedByTessEvaluationShader = ((int)0x84F1), + /// + /// Original was GL_UNIFORM_BLOCK_BINDING = 0x8A3F + /// + UniformBlockBinding = ((int)0x8A3F), + /// + /// Original was GL_UNIFORM_BLOCK_DATA_SIZE = 0x8A40 + /// + UniformBlockDataSize = ((int)0x8A40), + /// + /// Original was GL_UNIFORM_BLOCK_NAME_LENGTH = 0x8A41 + /// + UniformBlockNameLength = ((int)0x8A41), + /// + /// Original was GL_UNIFORM_BLOCK_ACTIVE_UNIFORMS = 0x8A42 + /// + UniformBlockActiveUniforms = ((int)0x8A42), + /// + /// Original was GL_UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES = 0x8A43 + /// + UniformBlockActiveUniformIndices = ((int)0x8A43), + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER = 0x8A44 + /// + UniformBlockReferencedByVertexShader = ((int)0x8A44), + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_GEOMETRY_SHADER = 0x8A45 + /// + UniformBlockReferencedByGeometryShader = ((int)0x8A45), + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER = 0x8A46 + /// + UniformBlockReferencedByFragmentShader = ((int)0x8A46), + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_COMPUTE_SHADER = 0x90EC + /// + UniformBlockReferencedByComputeShader = ((int)0x90EC), + } + + /// + /// Not used directly. + /// + public enum UniformPName : int + { + /// + /// Original was GL_UNIFORM_TYPE = 0x8A37 + /// + UniformType = ((int)0x8A37), + /// + /// Original was GL_UNIFORM_SIZE = 0x8A38 + /// + UniformSize = ((int)0x8A38), + /// + /// Original was GL_UNIFORM_NAME_LENGTH = 0x8A39 + /// + UniformNameLength = ((int)0x8A39), + /// + /// Original was GL_UNIFORM_BLOCK_INDEX = 0x8A3A + /// + UniformBlockIndex = ((int)0x8A3A), + /// + /// Original was GL_UNIFORM_OFFSET = 0x8A3B + /// + UniformOffset = ((int)0x8A3B), + /// + /// Original was GL_UNIFORM_ARRAY_STRIDE = 0x8A3C + /// + UniformArrayStride = ((int)0x8A3C), + /// + /// Original was GL_UNIFORM_MATRIX_STRIDE = 0x8A3D + /// + UniformMatrixStride = ((int)0x8A3D), + /// + /// Original was GL_UNIFORM_IS_ROW_MAJOR = 0x8A3E + /// + UniformIsRowMajor = ((int)0x8A3E), + /// + /// Original was GL_UNIFORM_ATOMIC_COUNTER_BUFFER_INDEX = 0x92DA + /// + UniformAtomicCounterBufferIndex = ((int)0x92DA), + } + /// /// Not used directly. /// @@ -16899,6 +24239,10 @@ namespace OpenTK.Graphics.ES11 /// GeometryShaderBitExt = ((int)0x00000004), /// + /// Original was GL_GEOMETRY_SHADER_BIT_OES = 0x00000004 + /// + GeometryShaderBitOes = ((int)0x00000004), + /// /// Original was GL_TESS_CONTROL_SHADER_BIT = 0x00000008 /// TessControlShaderBit = ((int)0x00000008), @@ -16907,6 +24251,10 @@ namespace OpenTK.Graphics.ES11 /// TessControlShaderBitExt = ((int)0x00000008), /// + /// Original was GL_TESS_CONTROL_SHADER_BIT_OES = 0x00000008 + /// + TessControlShaderBitOes = ((int)0x00000008), + /// /// Original was GL_TESS_EVALUATION_SHADER_BIT = 0x00000010 /// TessEvaluationShaderBit = ((int)0x00000010), @@ -16915,6 +24263,10 @@ namespace OpenTK.Graphics.ES11 /// TessEvaluationShaderBitExt = ((int)0x00000010), /// + /// Original was GL_TESS_EVALUATION_SHADER_BIT_OES = 0x00000010 + /// + TessEvaluationShaderBitOes = ((int)0x00000010), + /// /// Original was GL_COMPUTE_SHADER_BIT = 0x00000020 /// ComputeShaderBit = ((int)0x00000020), @@ -18267,6 +25619,296 @@ namespace OpenTK.Graphics.ES11 VersionEsCm11 = ((int)1), } + /// + /// Not used directly. + /// + public enum VertexArrayPName : int + { + /// + /// Original was GL_VERTEX_ATTRIB_RELATIVE_OFFSET = 0x82D5 + /// + VertexAttribRelativeOffset = ((int)0x82D5), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_ENABLED = 0x8622 + /// + VertexAttribArrayEnabled = ((int)0x8622), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_SIZE = 0x8623 + /// + VertexAttribArraySize = ((int)0x8623), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_STRIDE = 0x8624 + /// + VertexAttribArrayStride = ((int)0x8624), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_TYPE = 0x8625 + /// + VertexAttribArrayType = ((int)0x8625), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_LONG = 0x874E + /// + VertexAttribArrayLong = ((int)0x874E), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_NORMALIZED = 0x886A + /// + VertexAttribArrayNormalized = ((int)0x886A), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_INTEGER = 0x88FD + /// + VertexAttribArrayInteger = ((int)0x88FD), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_DIVISOR = 0x88FE + /// + VertexAttribArrayDivisor = ((int)0x88FE), + } + + /// + /// Not used directly. + /// + public enum VertexAttribEnum : int + { + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_ENABLED = 0x8622 + /// + VertexAttribArrayEnabled = ((int)0x8622), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_SIZE = 0x8623 + /// + VertexAttribArraySize = ((int)0x8623), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_STRIDE = 0x8624 + /// + VertexAttribArrayStride = ((int)0x8624), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_TYPE = 0x8625 + /// + VertexAttribArrayType = ((int)0x8625), + /// + /// Original was GL_CURRENT_VERTEX_ATTRIB = 0x8626 + /// + CurrentVertexAttrib = ((int)0x8626), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_NORMALIZED = 0x886A + /// + VertexAttribArrayNormalized = ((int)0x886A), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING = 0x889F + /// + VertexAttribArrayBufferBinding = ((int)0x889F), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_INTEGER = 0x88FD + /// + VertexAttribArrayInteger = ((int)0x88FD), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_DIVISOR = 0x88FE + /// + VertexAttribArrayDivisor = ((int)0x88FE), + } + + /// + /// Not used directly. + /// + public enum VertexAttribPointerType : int + { + /// + /// Original was GL_BYTE = 0x1400 + /// + Byte = ((int)0x1400), + /// + /// Original was GL_UNSIGNED_BYTE = 0x1401 + /// + UnsignedByte = ((int)0x1401), + /// + /// Original was GL_SHORT = 0x1402 + /// + Short = ((int)0x1402), + /// + /// Original was GL_UNSIGNED_SHORT = 0x1403 + /// + UnsignedShort = ((int)0x1403), + /// + /// Original was GL_INT = 0x1404 + /// + Int = ((int)0x1404), + /// + /// Original was GL_UNSIGNED_INT = 0x1405 + /// + UnsignedInt = ((int)0x1405), + /// + /// Original was GL_FLOAT = 0x1406 + /// + Float = ((int)0x1406), + /// + /// Original was GL_DOUBLE = 0x140A + /// + Double = ((int)0x140A), + /// + /// Original was GL_HALF_FLOAT = 0x140B + /// + HalfFloat = ((int)0x140B), + /// + /// Original was GL_FIXED = 0x140C + /// + Fixed = ((int)0x140C), + /// + /// Original was GL_UNSIGNED_INT_2_10_10_10_REV = 0x8368 + /// + UnsignedInt2101010Rev = ((int)0x8368), + /// + /// Original was GL_UNSIGNED_INT_10F_11F_11F_REV = 0x8C3B + /// + UnsignedInt10F11F11FRev = ((int)0x8C3B), + /// + /// Original was GL_INT_2_10_10_10_REV = 0x8D9F + /// + Int2101010Rev = ((int)0x8D9F), + } + + /// + /// Not used directly. + /// + public enum VertexAttribType : int + { + /// + /// Original was GL_BYTE = 0x1400 + /// + Byte = ((int)0x1400), + /// + /// Original was GL_UNSIGNED_BYTE = 0x1401 + /// + UnsignedByte = ((int)0x1401), + /// + /// Original was GL_SHORT = 0x1402 + /// + Short = ((int)0x1402), + /// + /// Original was GL_UNSIGNED_SHORT = 0x1403 + /// + UnsignedShort = ((int)0x1403), + /// + /// Original was GL_INT = 0x1404 + /// + Int = ((int)0x1404), + /// + /// Original was GL_UNSIGNED_INT = 0x1405 + /// + UnsignedInt = ((int)0x1405), + /// + /// Original was GL_FLOAT = 0x1406 + /// + Float = ((int)0x1406), + /// + /// Original was GL_DOUBLE = 0x140A + /// + Double = ((int)0x140A), + /// + /// Original was GL_HALF_FLOAT = 0x140B + /// + HalfFloat = ((int)0x140B), + /// + /// Original was GL_FIXED = 0x140C + /// + Fixed = ((int)0x140C), + /// + /// Original was GL_UNSIGNED_INT_2_10_10_10_REV = 0x8368 + /// + UnsignedInt2101010Rev = ((int)0x8368), + /// + /// Original was GL_UNSIGNED_INT_10F_11F_11F_REV = 0x8C3B + /// + UnsignedInt10F11F11FRev = ((int)0x8C3B), + /// + /// Original was GL_INT_2_10_10_10_REV = 0x8D9F + /// + Int2101010Rev = ((int)0x8D9F), + } + + /// + /// Not used directly. + /// + public enum VertexBufferObjectParameter : int + { + /// + /// Original was GL_BUFFER_IMMUTABLE_STORAGE = 0x821F + /// + BufferImmutableStorage = ((int)0x821F), + /// + /// Original was GL_BUFFER_STORAGE_FLAGS = 0x8220 + /// + BufferStorageFlags = ((int)0x8220), + /// + /// Original was GL_BUFFER_SIZE = 0x8764 + /// + BufferSize = ((int)0x8764), + /// + /// Original was GL_BUFFER_USAGE = 0x8765 + /// + BufferUsage = ((int)0x8765), + /// + /// Original was GL_BUFFER_ACCESS = 0x88BB + /// + BufferAccess = ((int)0x88BB), + /// + /// Original was GL_BUFFER_MAPPED = 0x88BC + /// + BufferMapped = ((int)0x88BC), + /// + /// Original was GL_BUFFER_ACCESS_FLAGS = 0x911F + /// + BufferAccessFlags = ((int)0x911F), + /// + /// Original was GL_BUFFER_MAP_LENGTH = 0x9120 + /// + BufferMapLength = ((int)0x9120), + /// + /// Original was GL_BUFFER_MAP_OFFSET = 0x9121 + /// + BufferMapOffset = ((int)0x9121), + } + + /// + /// Not used directly. + /// + public enum VertexBufferObjectUsage : int + { + /// + /// Original was GL_STREAM_DRAW = 0x88E0 + /// + StreamDraw = ((int)0x88E0), + /// + /// Original was GL_STREAM_READ = 0x88E1 + /// + StreamRead = ((int)0x88E1), + /// + /// Original was GL_STREAM_COPY = 0x88E2 + /// + StreamCopy = ((int)0x88E2), + /// + /// Original was GL_STATIC_DRAW = 0x88E4 + /// + StaticDraw = ((int)0x88E4), + /// + /// Original was GL_STATIC_READ = 0x88E5 + /// + StaticRead = ((int)0x88E5), + /// + /// Original was GL_STATIC_COPY = 0x88E6 + /// + StaticCopy = ((int)0x88E6), + /// + /// Original was GL_DYNAMIC_DRAW = 0x88E8 + /// + DynamicDraw = ((int)0x88E8), + /// + /// Original was GL_DYNAMIC_READ = 0x88E9 + /// + DynamicRead = ((int)0x88E9), + /// + /// Original was GL_DYNAMIC_COPY = 0x88EA + /// + DynamicCopy = ((int)0x88EA), + } + /// /// Used in GL.VertexPointer /// @@ -18290,4 +25932,19 @@ namespace OpenTK.Graphics.ES11 Double = ((int)0x140A), } + /// + /// Not used directly. + /// + public enum VertexProvokingMode : int + { + /// + /// Original was GL_FIRST_VERTEX_CONVENTION = 0x8E4D + /// + FirstVertexConvention = ((int)0x8E4D), + /// + /// Original was GL_LAST_VERTEX_CONVENTION = 0x8E4E + /// + LastVertexConvention = ((int)0x8E4E), + } + } diff --git a/src/OpenTK/Graphics/ES20/ES20.cs b/src/OpenTK/Graphics/ES20/ES20.cs index 84a94388..ee40b54d 100644 --- a/src/OpenTK/Graphics/ES20/ES20.cs +++ b/src/OpenTK/Graphics/ES20/ES20.cs @@ -95,6 +95,7 @@ namespace OpenTK.Graphics.ES20 103, 108, 67, 108, 101, 97, 114, 84, 101, 120, 73, 109, 97, 103, 101, 69, 88, 84, 0, 103, 108, 67, 108, 101, 97, 114, 84, 101, 120, 83, 117, 98, 73, 109, 97, 103, 101, 69, 88, 84, 0, 103, 108, 67, 108, 105, 101, 110, 116, 87, 97, 105, 116, 83, 121, 110, 99, 65, 80, 80, 76, 69, 0, + 103, 108, 67, 108, 105, 112, 67, 111, 110, 116, 114, 111, 108, 69, 88, 84, 0, 103, 108, 67, 111, 108, 111, 114, 77, 97, 115, 107, 0, 103, 108, 67, 111, 108, 111, 114, 77, 97, 115, 107, 105, 69, 88, 84, 0, 103, 108, 67, 111, 108, 111, 114, 77, 97, 115, 107, 105, 79, 69, 83, 0, @@ -401,12 +402,32 @@ namespace OpenTK.Graphics.ES20 103, 108, 77, 97, 107, 101, 84, 101, 120, 116, 117, 114, 101, 72, 97, 110, 100, 108, 101, 82, 101, 115, 105, 100, 101, 110, 116, 78, 86, 0, 103, 108, 77, 97, 112, 66, 117, 102, 102, 101, 114, 79, 69, 83, 0, 103, 108, 77, 97, 112, 66, 117, 102, 102, 101, 114, 82, 97, 110, 103, 101, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 70, 114, 117, 115, 116, 117, 109, 69, 88, 84, 0, 103, 108, 77, 97, 116, 114, 105, 120, 76, 111, 97, 100, 51, 120, 50, 102, 78, 86, 0, 103, 108, 77, 97, 116, 114, 105, 120, 76, 111, 97, 100, 51, 120, 51, 102, 78, 86, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 76, 111, 97, 100, 100, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 76, 111, 97, 100, 102, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 76, 111, 97, 100, 73, 100, 101, 110, 116, 105, 116, 121, 69, 88, 84, 0, 103, 108, 77, 97, 116, 114, 105, 120, 76, 111, 97, 100, 84, 114, 97, 110, 115, 112, 111, 115, 101, 51, 120, 51, 102, 78, 86, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 76, 111, 97, 100, 84, 114, 97, 110, 115, 112, 111, 115, 101, 100, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 76, 111, 97, 100, 84, 114, 97, 110, 115, 112, 111, 115, 101, 102, 69, 88, 84, 0, 103, 108, 77, 97, 116, 114, 105, 120, 77, 117, 108, 116, 51, 120, 50, 102, 78, 86, 0, 103, 108, 77, 97, 116, 114, 105, 120, 77, 117, 108, 116, 51, 120, 51, 102, 78, 86, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 77, 117, 108, 116, 100, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 77, 117, 108, 116, 102, 69, 88, 84, 0, 103, 108, 77, 97, 116, 114, 105, 120, 77, 117, 108, 116, 84, 114, 97, 110, 115, 112, 111, 115, 101, 51, 120, 51, 102, 78, 86, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 77, 117, 108, 116, 84, 114, 97, 110, 115, 112, 111, 115, 101, 100, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 77, 117, 108, 116, 84, 114, 97, 110, 115, 112, 111, 115, 101, 102, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 79, 114, 116, 104, 111, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 80, 111, 112, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 80, 117, 115, 104, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 82, 111, 116, 97, 116, 101, 100, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 82, 111, 116, 97, 116, 101, 102, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 83, 99, 97, 108, 101, 100, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 83, 99, 97, 108, 101, 102, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 84, 114, 97, 110, 115, 108, 97, 116, 101, 100, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 84, 114, 97, 110, 115, 108, 97, 116, 101, 102, 69, 88, 84, 0, + 103, 108, 77, 97, 120, 83, 104, 97, 100, 101, 114, 67, 111, 109, 112, 105, 108, 101, 114, 84, 104, 114, 101, 97, 100, 115, 75, 72, 82, 0, 103, 108, 77, 101, 109, 111, 114, 121, 79, 98, 106, 101, 99, 116, 80, 97, 114, 97, 109, 101, 116, 101, 114, 105, 118, 69, 88, 84, 0, 103, 108, 77, 105, 110, 83, 97, 109, 112, 108, 101, 83, 104, 97, 100, 105, 110, 103, 79, 69, 83, 0, 103, 108, 77, 117, 108, 116, 105, 68, 114, 97, 119, 65, 114, 114, 97, 121, 115, 69, 88, 84, 0, @@ -594,6 +615,7 @@ namespace OpenTK.Graphics.ES20 103, 108, 84, 101, 120, 83, 116, 111, 114, 97, 103, 101, 77, 101, 109, 51, 68, 77, 117, 108, 116, 105, 115, 97, 109, 112, 108, 101, 69, 88, 84, 0, 103, 108, 84, 101, 120, 83, 117, 98, 73, 109, 97, 103, 101, 50, 68, 0, 103, 108, 84, 101, 120, 83, 117, 98, 73, 109, 97, 103, 101, 51, 68, 79, 69, 83, 0, + 103, 108, 84, 101, 120, 116, 117, 114, 101, 70, 111, 118, 101, 97, 116, 105, 111, 110, 80, 97, 114, 97, 109, 101, 116, 101, 114, 115, 81, 67, 79, 77, 0, 103, 108, 84, 101, 120, 116, 117, 114, 101, 83, 116, 111, 114, 97, 103, 101, 49, 68, 69, 88, 84, 0, 103, 108, 84, 101, 120, 116, 117, 114, 101, 83, 116, 111, 114, 97, 103, 101, 50, 68, 69, 88, 84, 0, 103, 108, 84, 101, 120, 116, 117, 114, 101, 83, 116, 111, 114, 97, 103, 101, 51, 68, 69, 88, 84, 0, @@ -675,6 +697,7 @@ namespace OpenTK.Graphics.ES20 103, 108, 86, 105, 101, 119, 112, 111, 114, 116, 73, 110, 100, 101, 120, 101, 100, 102, 79, 69, 83, 0, 103, 108, 86, 105, 101, 119, 112, 111, 114, 116, 73, 110, 100, 101, 120, 101, 100, 102, 118, 78, 86, 0, 103, 108, 86, 105, 101, 119, 112, 111, 114, 116, 73, 110, 100, 101, 120, 101, 100, 102, 118, 79, 69, 83, 0, + 103, 108, 86, 105, 101, 119, 112, 111, 114, 116, 80, 111, 115, 105, 116, 105, 111, 110, 87, 83, 99, 97, 108, 101, 78, 86, 0, 103, 108, 86, 105, 101, 119, 112, 111, 114, 116, 83, 119, 105, 122, 122, 108, 101, 78, 86, 0, 103, 108, 87, 97, 105, 116, 83, 101, 109, 97, 112, 104, 111, 114, 101, 69, 88, 84, 0, 103, 108, 87, 97, 105, 116, 83, 121, 110, 99, 65, 80, 80, 76, 69, 0, @@ -738,591 +761,614 @@ namespace OpenTK.Graphics.ES20 1033, 1055, 1077, - 1089, - 1105, - 1121, - 1137, - 1160, - 1186, - 1212, - 1241, - 1274, - 1296, - 1318, - 1340, - 1353, + 1094, + 1106, + 1122, + 1138, + 1154, + 1177, + 1203, + 1229, + 1258, + 1291, + 1313, + 1335, + 1357, 1370, - 1390, - 1413, - 1438, + 1387, + 1407, + 1430, 1455, - 1478, - 1506, - 1528, - 1555, - 1573, - 1602, - 1622, - 1647, - 1670, - 1686, - 1701, - 1726, - 1752, - 1763, - 1786, - 1812, - 1834, - 1859, - 1880, - 1904, - 1920, + 1472, + 1495, + 1523, + 1545, + 1572, + 1590, + 1619, + 1639, + 1664, + 1687, + 1703, + 1718, + 1743, + 1769, + 1780, + 1803, + 1829, + 1851, + 1876, + 1897, + 1921, 1937, - 1958, - 1983, - 1999, - 2023, - 2046, - 2062, - 2090, - 2109, - 2131, - 2153, - 2168, - 2186, + 1954, + 1975, + 2000, + 2016, + 2040, + 2063, + 2079, + 2107, + 2126, + 2148, + 2170, + 2185, 2203, - 2227, - 2239, - 2251, - 2273, - 2296, - 2310, - 2333, - 2357, - 2372, - 2382, - 2409, - 2423, - 2436, - 2450, - 2477, - 2501, - 2514, - 2541, - 2578, - 2603, - 2627, + 2220, + 2244, + 2256, + 2268, + 2290, + 2313, + 2327, + 2350, + 2374, + 2389, + 2399, + 2426, + 2440, + 2453, + 2467, + 2494, + 2518, + 2531, + 2558, + 2595, + 2620, 2644, - 2668, - 2684, - 2699, - 2727, - 2755, - 2784, - 2823, - 2872, - 2909, - 2946, - 2973, - 2999, - 3032, - 3065, - 3092, - 3128, - 3144, - 3183, - 3212, - 3221, - 3247, - 3260, - 3272, - 3285, - 3311, - 3336, - 3356, - 3376, - 3390, - 3406, - 3433, - 3453, - 3478, - 3510, - 3531, - 3557, - 3577, - 3609, - 3633, - 3654, - 3679, - 3712, + 2661, + 2685, + 2701, + 2716, + 2744, + 2772, + 2801, + 2840, + 2889, + 2926, + 2963, + 2990, + 3016, + 3049, + 3082, + 3109, + 3145, + 3161, + 3200, + 3229, + 3238, + 3264, + 3277, + 3289, + 3302, + 3328, + 3353, + 3373, + 3393, + 3407, + 3423, + 3450, + 3470, + 3495, + 3527, + 3548, + 3574, + 3594, + 3626, + 3650, + 3671, + 3696, 3729, - 3738, - 3754, - 3762, - 3790, - 3816, - 3846, - 3879, - 3916, - 3954, - 3980, - 4013, - 4036, - 4072, - 4109, - 4146, - 4172, - 4196, - 4235, - 4279, - 4312, - 4336, - 4348, - 4361, + 3746, + 3755, + 3771, + 3779, + 3807, + 3833, + 3863, + 3896, + 3933, + 3971, + 3997, + 4030, + 4053, + 4089, + 4126, + 4163, + 4189, + 4213, + 4252, + 4296, + 4329, + 4353, + 4365, 4378, - 4392, - 4410, - 4423, - 4444, - 4469, - 4485, - 4504, - 4523, - 4537, - 4558, - 4576, - 4595, - 4616, - 4636, - 4650, - 4673, - 4696, - 4727, - 4748, - 4772, - 4796, - 4825, - 4836, - 4851, - 4878, - 4894, + 4395, + 4409, + 4427, + 4440, + 4461, + 4486, + 4502, + 4521, + 4540, + 4554, + 4575, + 4593, + 4612, + 4633, + 4653, + 4667, + 4690, + 4713, + 4744, + 4765, + 4789, + 4813, + 4842, + 4853, + 4868, + 4895, 4911, - 4923, - 4945, - 4983, - 5024, - 5049, - 5077, - 5105, - 5124, - 5145, - 5164, - 5178, - 5208, - 5240, - 5266, - 5282, - 5301, - 5320, - 5336, - 5355, - 5374, + 4928, + 4940, + 4962, + 5000, + 5041, + 5066, + 5094, + 5122, + 5141, + 5162, + 5181, + 5195, + 5225, + 5257, + 5283, + 5299, + 5318, + 5337, + 5353, + 5372, 5391, - 5411, + 5408, 5428, - 5448, - 5468, - 5488, - 5511, - 5533, - 5555, - 5575, - 5593, - 5614, - 5632, - 5655, - 5674, - 5697, - 5720, - 5739, - 5759, - 5779, - 5805, - 5836, - 5867, - 5895, - 5928, - 5954, - 5985, - 6009, - 6037, - 6061, - 6075, + 5445, + 5465, + 5485, + 5505, + 5528, + 5550, + 5572, + 5592, + 5610, + 5631, + 5649, + 5672, + 5691, + 5714, + 5737, + 5756, + 5776, + 5796, + 5822, + 5853, + 5884, + 5912, + 5945, + 5971, + 6002, + 6026, + 6054, + 6078, 6092, - 6114, - 6134, - 6149, - 6180, - 6206, - 6231, - 6268, - 6284, - 6308, - 6330, - 6355, - 6378, - 6407, - 6435, - 6463, - 6492, - 6521, - 6553, - 6572, - 6586, - 6613, - 6631, - 6643, + 6109, + 6131, + 6151, + 6166, + 6197, + 6223, + 6248, + 6285, + 6301, + 6325, + 6347, + 6372, + 6395, + 6424, + 6452, + 6480, + 6509, + 6538, + 6570, + 6589, + 6603, + 6630, + 6648, 6660, - 6680, - 6704, - 6728, - 6753, - 6778, - 6798, - 6820, - 6841, - 6870, - 6898, - 6931, - 6946, - 6965, - 6980, - 7001, - 7025, - 7047, - 7067, - 7087, - 7113, - 7131, - 7138, - 7158, - 7187, - 7214, - 7237, - 7269, - 7299, - 7322, - 7343, - 7354, - 7366, - 7382, - 7397, - 7413, - 7425, - 7441, - 7467, - 7487, - 7498, - 7520, - 7544, - 7556, - 7579, - 7592, + 6677, + 6697, + 6721, + 6745, + 6770, + 6795, + 6815, + 6837, + 6858, + 6887, + 6915, + 6948, + 6963, + 6982, + 6997, + 7018, + 7042, + 7064, + 7084, + 7104, + 7130, + 7148, + 7155, + 7175, + 7204, + 7231, + 7254, + 7286, + 7316, + 7339, + 7360, + 7371, + 7383, + 7399, + 7414, + 7430, + 7442, + 7458, + 7484, + 7504, + 7515, + 7537, + 7561, + 7573, + 7596, 7609, 7626, - 7637, - 7651, - 7663, - 7691, - 7710, + 7643, + 7654, + 7668, + 7680, + 7708, 7727, - 7739, - 7753, - 7784, - 7812, - 7845, - 7875, - 7890, - 7910, - 7929, - 7948, - 7976, - 7995, - 8014, + 7744, + 7756, + 7770, + 7801, + 7829, + 7862, + 7892, + 7907, + 7927, + 7946, + 7965, + 7984, + 8001, + 8018, 8042, - 8071, - 8093, - 8114, - 8143, - 8176, - 8199, - 8230, - 8262, - 8289, - 8327, + 8070, + 8096, + 8122, + 8141, + 8160, + 8177, + 8194, + 8222, + 8248, + 8274, + 8291, + 8306, + 8322, 8341, - 8358, - 8375, - 8395, - 8416, - 8437, - 8454, - 8471, - 8486, - 8509, - 8527, + 8360, + 8378, + 8396, + 8418, + 8440, + 8470, + 8499, + 8521, 8542, - 8566, - 8590, - 8609, - 8624, - 8654, - 8673, - 8693, - 8712, - 8732, - 8759, - 8779, - 8794, - 8814, - 8832, - 8847, - 8861, - 8880, - 8896, - 8912, - 8936, - 8952, - 8971, - 8991, - 9017, - 9043, - 9062, - 9085, - 9117, - 9139, - 9162, - 9185, - 9209, - 9231, - 9254, - 9278, - 9303, - 9326, - 9350, - 9372, - 9395, - 9418, - 9442, - 9464, - 9487, - 9511, - 9536, - 9559, - 9583, - 9605, - 9628, - 9651, - 9675, - 9697, - 9720, - 9744, - 9769, - 9792, - 9816, - 9838, - 9861, - 9884, - 9908, - 9930, - 9953, - 9977, - 10002, - 10025, - 10049, + 8571, + 8604, + 8627, + 8658, + 8690, + 8717, + 8755, + 8769, + 8786, + 8803, + 8823, + 8844, + 8865, + 8882, + 8899, + 8914, + 8937, + 8955, + 8970, + 8994, + 9018, + 9037, + 9052, + 9082, + 9101, + 9121, + 9140, + 9160, + 9187, + 9207, + 9222, + 9242, + 9260, + 9275, + 9289, + 9308, + 9324, + 9340, + 9364, + 9380, + 9399, + 9419, + 9445, + 9471, + 9490, + 9513, + 9545, + 9567, + 9590, + 9613, + 9637, + 9659, + 9682, + 9706, + 9731, + 9754, + 9778, + 9800, + 9823, + 9846, + 9870, + 9892, + 9915, + 9939, + 9964, + 9987, + 10011, + 10033, + 10056, 10079, - 10108, - 10139, - 10169, - 10198, - 10229, - 10260, + 10103, + 10125, + 10148, + 10172, + 10197, + 10220, + 10244, + 10266, 10289, - 10320, - 10351, - 10380, - 10411, - 10442, - 10459, - 10479, - 10500, - 10518, - 10537, - 10560, - 10575, - 10589, - 10606, - 10623, - 10636, - 10664, + 10312, + 10336, + 10358, + 10381, + 10405, + 10430, + 10453, + 10477, + 10507, + 10536, + 10567, + 10597, + 10626, + 10657, 10688, - 10710, + 10717, 10748, - 10786, - 10822, - 10858, - 10893, - 10916, - 10953, - 10970, - 10995, - 11020, - 11046, - 11072, - 11082, - 11100, - 11119, + 10779, + 10808, + 10839, + 10870, + 10887, + 10907, + 10928, + 10946, + 10965, + 10988, + 11003, + 11017, + 11034, + 11051, + 11064, + 11092, + 11116, 11138, - 11158, - 11178, - 11199, - 11230, - 11259, - 11272, - 11287, - 11302, - 11323, - 11341, - 11363, + 11176, + 11214, + 11250, + 11286, + 11321, + 11344, 11381, - 11410, - 11430, - 11444, - 11466, - 11480, - 11502, - 11514, - 11534, - 11565, - 11587, - 11625, - 11654, - 11694, - 11725, + 11398, + 11423, + 11448, + 11474, + 11500, + 11510, + 11528, + 11547, + 11566, + 11586, + 11606, + 11627, + 11658, + 11687, + 11700, + 11715, + 11730, 11751, - 11765, - 11780, - 11795, - 11815, - 11835, - 11848, - 11864, - 11887, - 11903, - 11920, - 11936, - 11957, - 11978, - 12000, - 12022, - 12039, - 12057, - 12075, - 12093, + 11769, + 11791, + 11809, + 11838, + 11858, + 11872, + 11894, + 11908, + 11930, + 11942, + 11962, + 11993, + 12015, + 12053, + 12082, 12122, - 12143, - 12164, - 12196, - 12217, - 12249, - 12265, - 12284, - 12306, - 12328, - 12350, - 12375, - 12400, - 12436, - 12461, - 12497, - 12514, - 12531, - 12549, - 12561, - 12574, - 12586, - 12602, - 12619, - 12632, - 12649, - 12667, - 12679, - 12692, - 12704, - 12720, - 12737, - 12750, + 12153, + 12179, + 12193, + 12208, + 12223, + 12243, + 12263, + 12276, + 12292, + 12315, + 12331, + 12348, + 12364, + 12385, + 12406, + 12428, + 12450, + 12467, + 12485, + 12503, + 12521, + 12550, + 12571, + 12592, + 12624, + 12645, + 12677, + 12693, + 12712, + 12745, 12767, - 12785, - 12797, - 12810, - 12822, - 12838, - 12855, - 12868, - 12885, - 12903, - 12915, - 12928, - 12940, - 12956, - 12973, - 12986, - 13003, - 13021, - 13044, - 13066, - 13090, - 13113, - 13132, - 13155, - 13178, - 13197, - 13220, - 13243, - 13262, - 13285, - 13308, - 13325, - 13338, - 13360, - 13382, - 13400, - 13429, - 13446, + 12789, + 12811, + 12836, + 12861, + 12897, + 12922, + 12958, + 12975, + 12992, + 13010, + 13022, + 13035, + 13047, + 13063, + 13080, + 13093, + 13110, + 13128, + 13140, + 13153, + 13165, + 13181, + 13198, + 13211, + 13228, + 13246, + 13258, + 13271, + 13283, + 13299, + 13316, + 13329, + 13346, + 13364, + 13376, + 13389, + 13401, + 13417, + 13434, + 13447, 13464, - 13481, - 13499, - 13516, - 13534, + 13482, + 13505, + 13527, 13551, - 13569, - 13596, - 13621, - 13645, - 13667, - 13678, - 13697, - 13717, - 13738, - 13760, - 13782, - 13805, - 13825, - 13844, - 13860, - 13880, - 13896, + 13574, + 13593, + 13616, + 13639, + 13658, + 13681, + 13704, + 13723, + 13746, + 13769, + 13786, + 13799, + 13821, + 13843, + 13861, + 13890, + 13907, + 13925, + 13942, + 13960, + 13977, + 13995, + 14012, + 14030, + 14057, + 14082, + 14106, + 14128, + 14139, + 14158, + 14178, + 14199, + 14221, + 14243, + 14266, + 14293, + 14313, + 14332, + 14348, + 14368, + 14384, }; EntryPoints = new IntPtr[EntryPointNameOffsets.Length]; } @@ -7083,7 +7129,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferRenderbuffer")] [CLSCompliant(false)] - public static void FramebufferRenderbuffer(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferAttachment attachment, OpenTK.Graphics.ES20.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a renderbuffer object to a framebuffer object @@ -7102,7 +7148,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferRenderbuffer")] [CLSCompliant(false)] - public static void FramebufferRenderbuffer(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferAttachment attachment, OpenTK.Graphics.ES20.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a renderbuffer object to a framebuffer object @@ -7211,7 +7257,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use TextureTarget2d overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")] [CLSCompliant(false)] - public static void FramebufferTexture2D(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.TextureTarget textarget, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } + public static void FramebufferTexture2D(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferAttachment attachment, OpenTK.Graphics.ES20.TextureTarget textarget, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a texture image to a framebuffer object @@ -7234,7 +7280,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use TextureTarget2d overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")] [CLSCompliant(false)] - public static void FramebufferTexture2D(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.TextureTarget textarget, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } + public static void FramebufferTexture2D(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferAttachment attachment, OpenTK.Graphics.ES20.TextureTarget textarget, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a texture image to a framebuffer object @@ -7256,7 +7302,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")] [CLSCompliant(false)] - public static void FramebufferTexture2D(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.TextureTarget2d textarget, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } + public static void FramebufferTexture2D(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferAttachment attachment, OpenTK.Graphics.ES20.TextureTarget2d textarget, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a texture image to a framebuffer object @@ -7278,7 +7324,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")] [CLSCompliant(false)] - public static void FramebufferTexture2D(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.TextureTarget2d textarget, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } + public static void FramebufferTexture2D(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferAttachment attachment, OpenTK.Graphics.ES20.TextureTarget2d textarget, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a texture image to a framebuffer object @@ -8976,7 +9022,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferAttachment attachment, OpenTK.Graphics.ES20.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return attachment parameters of a framebuffer object @@ -8995,7 +9041,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferAttachment attachment, OpenTK.Graphics.ES20.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return attachment parameters of a framebuffer object @@ -9014,7 +9060,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferAttachment attachment, OpenTK.Graphics.ES20.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return attachment parameters of a framebuffer object @@ -12658,6 +12704,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(message,length)] /// The a string containing the message to be sent to the debug output stream. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroup")] [CLSCompliant(false)] public static void PushDebugGroup(OpenTK.Graphics.ES20.All source, Int32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new BindingsNotRewrittenException(); } @@ -12677,10 +12724,49 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(message,length)] /// The a string containing the message to be sent to the debug output stream. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroup")] [CLSCompliant(false)] public static void PushDebugGroup(OpenTK.Graphics.ES20.All source, UInt32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new BindingsNotRewrittenException(); } + /// + /// Push a named debug group into the command stream + /// + /// + /// The source of the debug message. + /// + /// + /// The identifier of the message. + /// + /// + /// The length of the message to be sent to the debug output stream. + /// + /// [length: COMPSIZE(message,length)] + /// The a string containing the message to be sent to the debug output stream. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroup")] + [CLSCompliant(false)] + public static void PushDebugGroup(OpenTK.Graphics.ES20.DebugSource source, Int32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new BindingsNotRewrittenException(); } + + /// + /// Push a named debug group into the command stream + /// + /// + /// The source of the debug message. + /// + /// + /// The identifier of the message. + /// + /// + /// The length of the message to be sent to the debug output stream. + /// + /// [length: COMPSIZE(message,length)] + /// The a string containing the message to be sent to the debug output stream. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroup")] + [CLSCompliant(false)] + public static void PushDebugGroup(OpenTK.Graphics.ES20.DebugSource source, UInt32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new BindingsNotRewrittenException(); } + /// /// /// @@ -18359,6 +18445,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies how the red, green, blue, and alpha destination blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha. ConstantColor, OneMinusConstantColor, ConstantAlpha, and OneMinusConstantAlpha. The initial value is Zero. /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciEXT")] [CLSCompliant(false)] public static void BlendFunc(Int32 buf, OpenTK.Graphics.ES20.All src, OpenTK.Graphics.ES20.All dst) { throw new BindingsNotRewrittenException(); } @@ -18375,8 +18462,37 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciEXT")] [CLSCompliant(false)] + public static void BlendFunc(Int32 buf, OpenTK.Graphics.ES20.BlendingFactor src, OpenTK.Graphics.ES20.BlendingFactor dst) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_draw_buffers_indexed] + /// Specify pixel arithmetic + /// + /// + /// Specifies how the red, green, blue, and alpha source blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha, ConstantColor, OneMinusConstantColor, ConstantAlpha, OneMinusConstantAlpha, and SrcAlphaSaturate. The initial value is One. + /// + /// + /// 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. + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciEXT")] + [CLSCompliant(false)] public static void BlendFunc(UInt32 buf, OpenTK.Graphics.ES20.All src, OpenTK.Graphics.ES20.All dst) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_draw_buffers_indexed] + /// Specify pixel arithmetic + /// + /// + /// Specifies how the red, green, blue, and alpha source blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha, ConstantColor, OneMinusConstantColor, ConstantAlpha, OneMinusConstantAlpha, and SrcAlphaSaturate. The initial value is One. + /// + /// + /// 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 = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciEXT")] + [CLSCompliant(false)] + public static void BlendFunc(UInt32 buf, OpenTK.Graphics.ES20.BlendingFactor src, OpenTK.Graphics.ES20.BlendingFactor dst) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_draw_buffers_indexed] /// Specify pixel arithmetic for RGB and alpha components separately /// @@ -18395,6 +18511,7 @@ namespace OpenTK.Graphics.ES20 /// /// Specified how the alpha destination blending factor is computed. The same symbolic constants are accepted as for dstRGB. The initial value is Zero. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiEXT")] [CLSCompliant(false)] public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.ES20.All srcRGB, OpenTK.Graphics.ES20.All dstRGB, OpenTK.Graphics.ES20.All srcAlpha, OpenTK.Graphics.ES20.All dstAlpha) { throw new BindingsNotRewrittenException(); } @@ -18419,8 +18536,265 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiEXT")] [CLSCompliant(false)] + public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.ES20.BlendingFactor srcRGB, OpenTK.Graphics.ES20.BlendingFactor dstRGB, OpenTK.Graphics.ES20.BlendingFactor srcAlpha, OpenTK.Graphics.ES20.BlendingFactor dstAlpha) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_draw_buffers_indexed] + /// Specify pixel arithmetic for RGB and alpha components separately + /// + /// + /// Specifies how the red, green, and blue blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha, ConstantColor, OneMinusConstantColor, ConstantAlpha, OneMinusConstantAlpha, and SrcAlphaSaturate. The initial value is One. + /// + /// + /// Specifies how the red, green, and blue blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha, ConstantColor, OneMinusConstantColor, ConstantAlpha, OneMinusConstantAlpha, and SrcAlphaSaturate. The initial value is One. + /// + /// + /// Specifies how the red, green, and blue 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. + /// + /// + /// Specified how the alpha source blending factor is computed. The same symbolic constants are accepted as for srcRGB. The initial value is One. + /// + /// + /// Specified how the alpha destination blending factor is computed. The same symbolic constants are accepted as for dstRGB. The initial value is Zero. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiEXT")] + [CLSCompliant(false)] public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.ES20.All srcRGB, OpenTK.Graphics.ES20.All dstRGB, OpenTK.Graphics.ES20.All srcAlpha, OpenTK.Graphics.ES20.All dstAlpha) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_draw_buffers_indexed] + /// Specify pixel arithmetic for RGB and alpha components separately + /// + /// + /// Specifies how the red, green, and blue blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha, ConstantColor, OneMinusConstantColor, ConstantAlpha, OneMinusConstantAlpha, and SrcAlphaSaturate. The initial value is One. + /// + /// + /// Specifies how the red, green, and blue blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha, ConstantColor, OneMinusConstantColor, ConstantAlpha, OneMinusConstantAlpha, and SrcAlphaSaturate. The initial value is One. + /// + /// + /// Specifies how the red, green, and blue 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. + /// + /// + /// Specified how the alpha source blending factor is computed. The same symbolic constants are accepted as for srcRGB. The initial value is One. + /// + /// + /// Specified how the alpha destination blending factor is computed. The same symbolic constants are accepted as for dstRGB. The initial value is Zero. + /// + [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiEXT")] + [CLSCompliant(false)] + public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.ES20.BlendingFactor srcRGB, OpenTK.Graphics.ES20.BlendingFactor dstRGB, OpenTK.Graphics.ES20.BlendingFactor srcAlpha, OpenTK.Graphics.ES20.BlendingFactor dstAlpha) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_buffer_storage] + /// Creates and initializes a buffer object's immutable data store + /// + /// + /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the size in bytes of the buffer object's new data store. + /// + /// [length: size] + /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. + /// + /// + /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] + public static void BufferStorage(OpenTK.Graphics.ES20.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES20.All flags) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_buffer_storage] + /// Creates and initializes a buffer object's immutable data store + /// + /// + /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the size in bytes of the buffer object's new data store. + /// + /// [length: size] + /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. + /// + /// + /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] + [CLSCompliant(false)] + public static void BufferStorage(OpenTK.Graphics.ES20.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES20.All flags) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_buffer_storage] + /// Creates and initializes a buffer object's immutable data store + /// + /// + /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the size in bytes of the buffer object's new data store. + /// + /// [length: size] + /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. + /// + /// + /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] + [CLSCompliant(false)] + public static void BufferStorage(OpenTK.Graphics.ES20.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES20.All flags) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_buffer_storage] + /// Creates and initializes a buffer object's immutable data store + /// + /// + /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the size in bytes of the buffer object's new data store. + /// + /// [length: size] + /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. + /// + /// + /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] + [CLSCompliant(false)] + public static void BufferStorage(OpenTK.Graphics.ES20.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES20.All flags) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_buffer_storage] + /// Creates and initializes a buffer object's immutable data store + /// + /// + /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the size in bytes of the buffer object's new data store. + /// + /// [length: size] + /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. + /// + /// + /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] + public static void BufferStorage(OpenTK.Graphics.ES20.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES20.All flags) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_buffer_storage] + /// Creates and initializes a buffer object's immutable data store + /// + /// + /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the size in bytes of the buffer object's new data store. + /// + /// [length: size] + /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. + /// + /// + /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] + public static void BufferStorage(OpenTK.Graphics.ES20.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES20.All flags) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_buffer_storage] + /// Creates and initializes a buffer object's immutable data store + /// + /// + /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the size in bytes of the buffer object's new data store. + /// + /// [length: size] + /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. + /// + /// + /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] + [CLSCompliant(false)] + public static void BufferStorage(OpenTK.Graphics.ES20.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES20.All flags) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_buffer_storage] + /// Creates and initializes a buffer object's immutable data store + /// + /// + /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the size in bytes of the buffer object's new data store. + /// + /// [length: size] + /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. + /// + /// + /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] + [CLSCompliant(false)] + public static void BufferStorage(OpenTK.Graphics.ES20.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES20.All flags) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_buffer_storage] + /// Creates and initializes a buffer object's immutable data store + /// + /// + /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the size in bytes of the buffer object's new data store. + /// + /// [length: size] + /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. + /// + /// + /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] + [CLSCompliant(false)] + public static void BufferStorage(OpenTK.Graphics.ES20.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES20.All flags) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_buffer_storage] + /// Creates and initializes a buffer object's immutable data store + /// + /// + /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the size in bytes of the buffer object's new data store. + /// + /// [length: size] + /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. + /// + /// + /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] + public static void BufferStorage(OpenTK.Graphics.ES20.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES20.All flags) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store /// @@ -18437,8 +18811,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES20.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new BindingsNotRewrittenException(); } + public static void BufferStorage(OpenTK.Graphics.ES20.BufferStorageTarget target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES20.MapBufferUsageMask flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -18457,26 +18830,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES20.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_buffer_storage] - /// Creates and initializes a buffer object's immutable data store - /// - /// - /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. - /// - /// - /// Specifies the size in bytes of the buffer object's new data store. - /// - /// [length: size] - /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. - /// - /// - /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. - /// - [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES20.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, Int32 flags) + public static void BufferStorage(OpenTK.Graphics.ES20.BufferStorageTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES20.MapBufferUsageMask flags) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -18497,7 +18851,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES20.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, UInt32 flags) + public static void BufferStorage(OpenTK.Graphics.ES20.BufferStorageTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES20.MapBufferUsageMask flags) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -18518,7 +18872,66 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES20.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, Int32 flags) + public static void BufferStorage(OpenTK.Graphics.ES20.BufferStorageTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES20.MapBufferUsageMask flags) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_buffer_storage] + /// Creates and initializes a buffer object's immutable data store + /// + /// + /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the size in bytes of the buffer object's new data store. + /// + /// [length: size] + /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. + /// + /// + /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. + /// + [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] + public static void BufferStorage(OpenTK.Graphics.ES20.BufferStorageTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES20.MapBufferUsageMask flags) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_buffer_storage] + /// Creates and initializes a buffer object's immutable data store + /// + /// + /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the size in bytes of the buffer object's new data store. + /// + /// [length: size] + /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. + /// + /// + /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. + /// + [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] + public static void BufferStorage(OpenTK.Graphics.ES20.BufferStorageTarget target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES20.MapBufferUsageMask flags) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_buffer_storage] + /// Creates and initializes a buffer object's immutable data store + /// + /// + /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the size in bytes of the buffer object's new data store. + /// + /// [length: size] + /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. + /// + /// + /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. + /// + [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] + [CLSCompliant(false)] + public static void BufferStorage(OpenTK.Graphics.ES20.BufferStorageTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES20.MapBufferUsageMask flags) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -18539,7 +18952,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES20.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, UInt32 flags) + public static void BufferStorage(OpenTK.Graphics.ES20.BufferStorageTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES20.MapBufferUsageMask flags) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -18560,7 +18973,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES20.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, Int32 flags) + public static void BufferStorage(OpenTK.Graphics.ES20.BufferStorageTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES20.MapBufferUsageMask flags) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -18580,256 +18993,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES20.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, UInt32 flags) - where T2 : struct - { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_buffer_storage] - /// Creates and initializes a buffer object's immutable data store - /// - /// - /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. - /// - /// - /// Specifies the size in bytes of the buffer object's new data store. - /// - /// [length: size] - /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. - /// - /// - /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. - /// - [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES20.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, Int32 flags) - where T2 : struct - { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_buffer_storage] - /// Creates and initializes a buffer object's immutable data store - /// - /// - /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. - /// - /// - /// Specifies the size in bytes of the buffer object's new data store. - /// - /// [length: size] - /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. - /// - /// - /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. - /// - [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES20.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, UInt32 flags) - where T2 : struct - { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_buffer_storage] - /// Creates and initializes a buffer object's immutable data store - /// - /// - /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. - /// - /// - /// Specifies the size in bytes of the buffer object's new data store. - /// - /// [length: size] - /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. - /// - /// - /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. - /// - [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES20.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_buffer_storage] - /// Creates and initializes a buffer object's immutable data store - /// - /// - /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. - /// - /// - /// Specifies the size in bytes of the buffer object's new data store. - /// - /// [length: size] - /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. - /// - /// - /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. - /// - [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES20.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_buffer_storage] - /// Creates and initializes a buffer object's immutable data store - /// - /// - /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. - /// - /// - /// Specifies the size in bytes of the buffer object's new data store. - /// - /// [length: size] - /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. - /// - /// - /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. - /// - [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES20.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, Int32 flags) - where T2 : struct - { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_buffer_storage] - /// Creates and initializes a buffer object's immutable data store - /// - /// - /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. - /// - /// - /// Specifies the size in bytes of the buffer object's new data store. - /// - /// [length: size] - /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. - /// - /// - /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. - /// - [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES20.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, UInt32 flags) - where T2 : struct - { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_buffer_storage] - /// Creates and initializes a buffer object's immutable data store - /// - /// - /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. - /// - /// - /// Specifies the size in bytes of the buffer object's new data store. - /// - /// [length: size] - /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. - /// - /// - /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. - /// - [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES20.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, Int32 flags) - where T2 : struct - { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_buffer_storage] - /// Creates and initializes a buffer object's immutable data store - /// - /// - /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. - /// - /// - /// Specifies the size in bytes of the buffer object's new data store. - /// - /// [length: size] - /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. - /// - /// - /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. - /// - [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES20.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, UInt32 flags) - where T2 : struct - { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_buffer_storage] - /// Creates and initializes a buffer object's immutable data store - /// - /// - /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. - /// - /// - /// Specifies the size in bytes of the buffer object's new data store. - /// - /// [length: size] - /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. - /// - /// - /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. - /// - [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES20.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, Int32 flags) - where T2 : struct - { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_buffer_storage] - /// Creates and initializes a buffer object's immutable data store - /// - /// - /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. - /// - /// - /// Specifies the size in bytes of the buffer object's new data store. - /// - /// [length: size] - /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. - /// - /// - /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. - /// - [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES20.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, UInt32 flags) - where T2 : struct - { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_buffer_storage] - /// Creates and initializes a buffer object's immutable data store - /// - /// - /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. - /// - /// - /// Specifies the size in bytes of the buffer object's new data store. - /// - /// [length: size] - /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. - /// - /// - /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. - /// - [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES20.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, Int32 flags) - where T2 : struct - { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_buffer_storage] - /// Creates and initializes a buffer object's immutable data store - /// - /// - /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. - /// - /// - /// Specifies the size in bytes of the buffer object's new data store. - /// - /// [length: size] - /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. - /// - /// - /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. - /// - [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES20.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, UInt32 flags) + public static void BufferStorage(OpenTK.Graphics.ES20.BufferStorageTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES20.MapBufferUsageMask flags) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -18839,9 +19003,9 @@ namespace OpenTK.Graphics.ES20 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] - [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.ES20.All target, IntPtr offset, Int32 size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } + public static void BufferStorageExternal(OpenTK.Graphics.ES20.All target, IntPtr offset, Int32 size, IntPtr clientBuffer, OpenTK.Graphics.ES20.All flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -18850,8 +19014,17 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] - [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.ES20.All target, IntPtr offset, Int32 size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } + public static void BufferStorageExternal(OpenTK.Graphics.ES20.All target, IntPtr offset, Int32 size, IntPtr clientBuffer, OpenTK.Graphics.ES20.MapBufferUsageMask flags) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_external_buffer] + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] + public static void BufferStorageExternal(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr size, IntPtr clientBuffer, OpenTK.Graphics.ES20.All flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -18860,18 +19033,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] - [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_external_buffer] - /// - /// - /// - /// - /// - [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] - [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } + public static void BufferStorageExternal(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr size, IntPtr clientBuffer, OpenTK.Graphics.ES20.MapBufferUsageMask flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -18952,50 +19114,50 @@ namespace OpenTK.Graphics.ES20 /// [requires: EXT_shader_pixel_local_storage2] /// /// - /// + /// [length: n] [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static void ClearPixelLocalStorage(Int32 offset, Int32 n, Int32[] values) { throw new BindingsNotRewrittenException(); } + public static void ClearPixelLocalStorage(Int32 offset, Int32 n, [CountAttribute(Parameter = "n")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// /// - /// + /// [length: n] [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static void ClearPixelLocalStorage(Int32 offset, Int32 n, ref Int32 values) { throw new BindingsNotRewrittenException(); } + public static void ClearPixelLocalStorage(Int32 offset, Int32 n, [CountAttribute(Parameter = "n")] ref Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// /// - /// + /// [length: n] [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static unsafe void ClearPixelLocalStorage(Int32 offset, Int32 n, Int32* values) { throw new BindingsNotRewrittenException(); } + public static unsafe void ClearPixelLocalStorage(Int32 offset, Int32 n, [CountAttribute(Parameter = "n")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// /// - /// + /// [length: n] [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static void ClearPixelLocalStorage(Int32 offset, Int32 n, UInt32[] values) { throw new BindingsNotRewrittenException(); } + public static void ClearPixelLocalStorage(Int32 offset, Int32 n, [CountAttribute(Parameter = "n")] UInt32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// /// - /// + /// [length: n] [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static void ClearPixelLocalStorage(Int32 offset, Int32 n, ref UInt32 values) { throw new BindingsNotRewrittenException(); } + public static void ClearPixelLocalStorage(Int32 offset, Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// /// - /// + /// [length: n] [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static unsafe void ClearPixelLocalStorage(Int32 offset, Int32 n, UInt32* values) { throw new BindingsNotRewrittenException(); } + public static unsafe void ClearPixelLocalStorage(Int32 offset, Int32 n, [CountAttribute(Parameter = "n")] UInt32* values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -19015,6 +19177,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } @@ -19037,6 +19200,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) @@ -19061,6 +19225,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) @@ -19085,6 +19250,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) @@ -19109,6 +19275,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) @@ -19135,6 +19302,125 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] + public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] + [CLSCompliant(false)] + public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) + where T4 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] + [CLSCompliant(false)] + public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) + where T4 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] + [CLSCompliant(false)] + public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) + where T4 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] + [CLSCompliant(false)] + public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) + where T4 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] + [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] @@ -19155,6 +19441,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) @@ -19179,6 +19466,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) @@ -19203,6 +19491,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) @@ -19227,12 +19516,131 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_clear_texture] + /// Fills all a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] + [CLSCompliant(false)] + public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] + [CLSCompliant(false)] + public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) + where T4 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] + [CLSCompliant(false)] + public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) + where T4 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] + [CLSCompliant(false)] + public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) + where T4 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] + [CLSCompliant(false)] + public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) + where T4 : struct + { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value /// @@ -19269,6 +19677,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } @@ -19309,6 +19718,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[] data) @@ -19351,6 +19761,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,] data) @@ -19393,6 +19804,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,,] data) @@ -19435,6 +19847,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T10 data) @@ -19479,6 +19892,215 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] + public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all or part of a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The coordinate of the left edge of the region to be cleared. + /// + /// + /// The coordinate of the lower edge of the region to be cleared. + /// + /// + /// The coordinate of the front of the region to be cleared. + /// + /// + /// The width of the region to be cleared. + /// + /// + /// The height of the region to be cleared. + /// + /// + /// The depth of the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] + [CLSCompliant(false)] + public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[] data) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all or part of a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The coordinate of the left edge of the region to be cleared. + /// + /// + /// The coordinate of the lower edge of the region to be cleared. + /// + /// + /// The coordinate of the front of the region to be cleared. + /// + /// + /// The width of the region to be cleared. + /// + /// + /// The height of the region to be cleared. + /// + /// + /// The depth of the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] + [CLSCompliant(false)] + public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,] data) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all or part of a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The coordinate of the left edge of the region to be cleared. + /// + /// + /// The coordinate of the lower edge of the region to be cleared. + /// + /// + /// The coordinate of the front of the region to be cleared. + /// + /// + /// The width of the region to be cleared. + /// + /// + /// The height of the region to be cleared. + /// + /// + /// The depth of the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] + [CLSCompliant(false)] + public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,,] data) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all or part of a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The coordinate of the left edge of the region to be cleared. + /// + /// + /// The coordinate of the lower edge of the region to be cleared. + /// + /// + /// The coordinate of the front of the region to be cleared. + /// + /// + /// The width of the region to be cleared. + /// + /// + /// The height of the region to be cleared. + /// + /// + /// The depth of the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] + [CLSCompliant(false)] + public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T10 data) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all or part of a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The coordinate of the left edge of the region to be cleared. + /// + /// + /// The coordinate of the lower edge of the region to be cleared. + /// + /// + /// The coordinate of the front of the region to be cleared. + /// + /// + /// The width of the region to be cleared. + /// + /// + /// The height of the region to be cleared. + /// + /// + /// The depth of the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] + [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] @@ -19517,6 +20139,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[] data) @@ -19559,6 +20182,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,] data) @@ -19601,6 +20225,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,,] data) @@ -19643,12 +20268,227 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T10 data) where T10 : struct { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_clear_texture] + /// Fills all or part of a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The coordinate of the left edge of the region to be cleared. + /// + /// + /// The coordinate of the lower edge of the region to be cleared. + /// + /// + /// The coordinate of the front of the region to be cleared. + /// + /// + /// The width of the region to be cleared. + /// + /// + /// The height of the region to be cleared. + /// + /// + /// The depth of the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] + [CLSCompliant(false)] + public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all or part of a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The coordinate of the left edge of the region to be cleared. + /// + /// + /// The coordinate of the lower edge of the region to be cleared. + /// + /// + /// The coordinate of the front of the region to be cleared. + /// + /// + /// The width of the region to be cleared. + /// + /// + /// The height of the region to be cleared. + /// + /// + /// The depth of the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] + [CLSCompliant(false)] + public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[] data) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all or part of a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The coordinate of the left edge of the region to be cleared. + /// + /// + /// The coordinate of the lower edge of the region to be cleared. + /// + /// + /// The coordinate of the front of the region to be cleared. + /// + /// + /// The width of the region to be cleared. + /// + /// + /// The height of the region to be cleared. + /// + /// + /// The depth of the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] + [CLSCompliant(false)] + public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,] data) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all or part of a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The coordinate of the left edge of the region to be cleared. + /// + /// + /// The coordinate of the lower edge of the region to be cleared. + /// + /// + /// The coordinate of the front of the region to be cleared. + /// + /// + /// The width of the region to be cleared. + /// + /// + /// The height of the region to be cleared. + /// + /// + /// The depth of the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] + [CLSCompliant(false)] + public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,,] data) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all or part of a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The coordinate of the left edge of the region to be cleared. + /// + /// + /// The coordinate of the lower edge of the region to be cleared. + /// + /// + /// The coordinate of the front of the region to be cleared. + /// + /// + /// The width of the region to be cleared. + /// + /// + /// The height of the region to be cleared. + /// + /// + /// The depth of the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] + [CLSCompliant(false)] + public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T10 data) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clip_control] + /// + /// + [AutoGenerated(Category = "EXT_clip_control", Version = "", EntryPoint = "glClipControlEXT")] + public static void ClipControl(OpenTK.Graphics.ES20.All origin, OpenTK.Graphics.ES20.All depth) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_draw_buffers_indexed] /// Enable and disable writing of frame buffer color components /// @@ -19737,6 +20577,7 @@ namespace OpenTK.Graphics.ES20 /// /// The depth of the region to be copied. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_copy_image", Version = "", EntryPoint = "glCopyImageSubDataEXT")] [CLSCompliant(false)] public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.ES20.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.ES20.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } @@ -19791,8 +20632,113 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_copy_image", Version = "", EntryPoint = "glCopyImageSubDataEXT")] [CLSCompliant(false)] + public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.ES20.CopyBufferSubDataTarget srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.ES20.CopyBufferSubDataTarget dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_copy_image] + /// Perform a raw data copy between two images + /// + /// + /// The name of a texture or renderbuffer object from which to copy. + /// + /// + /// The target representing the namespace of the source name srcName. + /// + /// + /// The mipmap level to read from the source. + /// + /// + /// The X coordinate of the left edge of the souce region to copy. + /// + /// + /// The Y coordinate of the top edge of the souce region to copy. + /// + /// + /// The Z coordinate of the near edge of the souce region to copy. + /// + /// + /// The name of a texture or renderbuffer object to which to copy. + /// + /// + /// The target representing the namespace of the destination name dstName. + /// + /// + /// The X coordinate of the left edge of the destination region. + /// + /// + /// The X coordinate of the left edge of the destination region. + /// + /// + /// The Y coordinate of the top edge of the destination region. + /// + /// + /// The Z coordinate of the near edge of the destination region. + /// + /// + /// The width of the region to be copied. + /// + /// + /// The height of the region to be copied. + /// + /// + /// The depth of the region to be copied. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_copy_image", Version = "", EntryPoint = "glCopyImageSubDataEXT")] + [CLSCompliant(false)] public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.ES20.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.ES20.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_copy_image] + /// Perform a raw data copy between two images + /// + /// + /// The name of a texture or renderbuffer object from which to copy. + /// + /// + /// The target representing the namespace of the source name srcName. + /// + /// + /// The mipmap level to read from the source. + /// + /// + /// The X coordinate of the left edge of the souce region to copy. + /// + /// + /// The Y coordinate of the top edge of the souce region to copy. + /// + /// + /// The Z coordinate of the near edge of the souce region to copy. + /// + /// + /// The name of a texture or renderbuffer object to which to copy. + /// + /// + /// The target representing the namespace of the destination name dstName. + /// + /// + /// The X coordinate of the left edge of the destination region. + /// + /// + /// The X coordinate of the left edge of the destination region. + /// + /// + /// The Y coordinate of the top edge of the destination region. + /// + /// + /// The Z coordinate of the near edge of the destination region. + /// + /// + /// The width of the region to be copied. + /// + /// + /// The height of the region to be copied. + /// + /// + /// The depth of the region to be copied. + /// + [AutoGenerated(Category = "EXT_copy_image", Version = "", EntryPoint = "glCopyImageSubDataEXT")] + [CLSCompliant(false)] + public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.ES20.CopyBufferSubDataTarget srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.ES20.CopyBufferSubDataTarget dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_memory_object] /// /// @@ -19844,9 +20790,38 @@ namespace OpenTK.Graphics.ES20 /// /// Specifies the number of source code strings in the array strings. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glCreateShaderProgramEXT")] public static Int32 CreateShaderProgram(OpenTK.Graphics.ES20.All type, String @string) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_separate_shader_objects] + /// Create a stand-alone program from an array of null-terminated source code strings + /// + /// + /// Specifies the type of shader to create. + /// + /// + /// Specifies the number of source code strings in the array strings. + /// + [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glCreateShaderProgramEXT")] + public static Int32 CreateShaderProgram(OpenTK.Graphics.ES20.ShaderType type, String @string) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_separate_shader_objects] + /// Create a stand-alone program from an array of null-terminated source code strings + /// + /// + /// Specifies the type of shader to create. + /// + /// + /// Specifies the number of source code strings in the array strings. + /// + /// [length: count] + /// Specifies the address of an array of pointers to source code strings from which to create the program object. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glCreateShaderProgramvEXT")] + public static Int32 CreateShaderProgram(OpenTK.Graphics.ES20.All type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_separate_shader_objects] /// Create a stand-alone program from an array of null-terminated source code strings /// @@ -19860,7 +20835,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the address of an array of pointers to source code strings from which to create the program object. /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glCreateShaderProgramvEXT")] - public static Int32 CreateShaderProgram(OpenTK.Graphics.ES20.All type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new BindingsNotRewrittenException(); } + public static Int32 CreateShaderProgram(OpenTK.Graphics.ES20.ShaderType type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// [length: n] @@ -20113,62 +21088,63 @@ namespace OpenTK.Graphics.ES20 public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphore([CountAttribute(Parameter = "count")] Int32 semaphores) { throw new BindingsNotRewrittenException(); } + public static void DeleteSemaphore([CountAttribute(Parameter = "n")] Int32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphore([CountAttribute(Parameter = "count")] UInt32 semaphores) { throw new BindingsNotRewrittenException(); } + public static void DeleteSemaphore([CountAttribute(Parameter = "n")] UInt32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] Int32[] semaphores) { throw new BindingsNotRewrittenException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "n")] Int32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] ref Int32 semaphores) { throw new BindingsNotRewrittenException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] Int32* semaphores) { throw new BindingsNotRewrittenException(); } + public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "n")] Int32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] UInt32[] semaphores) { throw new BindingsNotRewrittenException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] ref UInt32 semaphores) { throw new BindingsNotRewrittenException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] UInt32* semaphores) { throw new BindingsNotRewrittenException(); } + public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "n")] UInt32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glDisableiEXT")] [CLSCompliant(false)] public static void Disable(OpenTK.Graphics.ES20.All target, Int32 index) { throw new BindingsNotRewrittenException(); } @@ -20176,10 +21152,25 @@ namespace OpenTK.Graphics.ES20 /// [requires: EXT_draw_buffers_indexed] /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glDisableiEXT")] [CLSCompliant(false)] public static void Disable(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_draw_buffers_indexed] + /// + /// + [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glDisableiEXT")] + [CLSCompliant(false)] + public static void Disable(OpenTK.Graphics.ES20.EnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_draw_buffers_indexed] + /// + /// + [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glDisableiEXT")] + [CLSCompliant(false)] + public static void Disable(OpenTK.Graphics.ES20.EnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_discard_framebuffer] /// /// @@ -20337,13 +21328,13 @@ namespace OpenTK.Graphics.ES20 /// /// Specifies the number of buffers in bufs. /// - /// + /// [length: n] /// Points to an array of symbolic constants specifying the buffers into which fragment colors or data values will be written. /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, OpenTK.Graphics.ES20.All[] bufs) { throw new BindingsNotRewrittenException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES20.All[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -20351,13 +21342,13 @@ namespace OpenTK.Graphics.ES20 /// /// Specifies the number of buffers in bufs. /// - /// + /// [length: n] /// Points to an array of symbolic constants specifying the buffers into which fragment colors or data values will be written. /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, ref OpenTK.Graphics.ES20.All bufs) { throw new BindingsNotRewrittenException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES20.All bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -20365,13 +21356,13 @@ namespace OpenTK.Graphics.ES20 /// /// Specifies the number of buffers in bufs. /// - /// + /// [length: n] /// Points to an array of symbolic constants specifying the buffers into which fragment colors or data values will be written. /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] [CLSCompliant(false)] - public static unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.ES20.All* bufs) { throw new BindingsNotRewrittenException(); } + public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES20.All* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -20379,12 +21370,12 @@ namespace OpenTK.Graphics.ES20 /// /// Specifies the number of buffers in bufs. /// - /// + /// [length: n] /// Points to an array of symbolic constants specifying the buffers into which fragment colors or data values will be written. /// [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, OpenTK.Graphics.ES20.DrawBufferMode[] bufs) { throw new BindingsNotRewrittenException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES20.DrawBufferMode[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -20392,12 +21383,12 @@ namespace OpenTK.Graphics.ES20 /// /// Specifies the number of buffers in bufs. /// - /// + /// [length: n] /// Points to an array of symbolic constants specifying the buffers into which fragment colors or data values will be written. /// [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, ref OpenTK.Graphics.ES20.DrawBufferMode bufs) { throw new BindingsNotRewrittenException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES20.DrawBufferMode bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -20405,12 +21396,12 @@ namespace OpenTK.Graphics.ES20 /// /// Specifies the number of buffers in bufs. /// - /// + /// [length: n] /// Points to an array of symbolic constants specifying the buffers into which fragment colors or data values will be written. /// [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] [CLSCompliant(false)] - public static unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.ES20.DrawBufferMode* bufs) { throw new BindingsNotRewrittenException(); } + public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES20.DrawBufferMode* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -20972,7 +21963,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.PrimitiveType type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -20997,7 +21988,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.PrimitiveType type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -21022,7 +22013,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 baseinstance) + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -21049,7 +22040,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, UInt32 baseinstance) + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -21076,7 +22067,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 baseinstance) + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -21103,7 +22094,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, UInt32 baseinstance) + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -21130,7 +22121,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 baseinstance) + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -21157,7 +22148,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, UInt32 baseinstance) + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -21184,7 +22175,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 baseinstance) + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -21211,7 +22202,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, UInt32 baseinstance) + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -21547,7 +22538,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.PrimitiveType type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21575,7 +22566,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.PrimitiveType type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21603,7 +22594,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -21633,7 +22624,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -21663,7 +22654,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -21693,7 +22684,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -21723,7 +22714,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -21753,7 +22744,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -21783,7 +22774,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -21813,7 +22804,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -23050,6 +24041,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a symbolic constant indicating a GL capability. /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glEnableiEXT")] [CLSCompliant(false)] public static void Enable(OpenTK.Graphics.ES20.All target, Int32 index) { throw new BindingsNotRewrittenException(); } @@ -23061,10 +24053,33 @@ namespace OpenTK.Graphics.ES20 /// Specifies a symbolic constant indicating a GL capability. /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glEnableiEXT")] [CLSCompliant(false)] public static void Enable(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_draw_buffers_indexed] + /// Enable or disable server-side GL capabilities + /// + /// + /// Specifies a symbolic constant indicating a GL capability. + /// + /// + [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glEnableiEXT")] + [CLSCompliant(false)] + public static void Enable(OpenTK.Graphics.ES20.EnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_draw_buffers_indexed] + /// Enable or disable server-side GL capabilities + /// + /// + /// Specifies a symbolic constant indicating a GL capability. + /// + /// + [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glEnableiEXT")] + [CLSCompliant(false)] + public static void Enable(OpenTK.Graphics.ES20.EnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// [Obsolete("Use strongly-typed overload instead")] @@ -23159,6 +24174,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleEXT")] [CLSCompliant(false)] public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, Int32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } @@ -23170,10 +24186,33 @@ namespace OpenTK.Graphics.ES20 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleEXT")] [CLSCompliant(false)] public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, UInt32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_multisampled_render_to_texture] + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleEXT")] + [CLSCompliant(false)] + public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferAttachment attachment, OpenTK.Graphics.ES20.TextureTarget textarget, Int32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_multisampled_render_to_texture] + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleEXT")] + [CLSCompliant(false)] + public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferAttachment attachment, OpenTK.Graphics.ES20.TextureTarget textarget, UInt32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object /// @@ -23231,7 +24270,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureEXT")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -23250,7 +24289,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureEXT")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -23429,45 +24468,45 @@ namespace OpenTK.Graphics.ES20 /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] semaphores) { throw new BindingsNotRewrittenException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 semaphores) { throw new BindingsNotRewrittenException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] Int32* semaphores) { throw new BindingsNotRewrittenException(); } + public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] semaphores) { throw new BindingsNotRewrittenException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 semaphores) { throw new BindingsNotRewrittenException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* semaphores) { throw new BindingsNotRewrittenException(); } + public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Query the bindings of color indices to user-defined varying out variables @@ -23497,19 +24536,18 @@ namespace OpenTK.Graphics.ES20 /// [requires: EXT_shader_pixel_local_storage2] /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glGetFramebufferPixelLocalStorageSizeEXT")] - [CLSCompliant(false)] - public static Int32 GetFramebufferPixelLocalStorageSize(Int32 target) { throw new BindingsNotRewrittenException(); } + public static Int32 GetFramebufferPixelLocalStorageSize(OpenTK.Graphics.ES20.All target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glGetFramebufferPixelLocalStorageSizeEXT")] - [CLSCompliant(false)] - public static Int32 GetFramebufferPixelLocalStorageSize(UInt32 target) { throw new BindingsNotRewrittenException(); } + public static Int32 GetFramebufferPixelLocalStorageSize(OpenTK.Graphics.ES20.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetGraphicsResetStatusEXT")] - public static OpenTK.Graphics.ES20.All GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.ES20.GraphicsResetStatus GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -24085,6 +25123,7 @@ namespace OpenTK.Graphics.ES20 /// /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -24101,6 +25140,7 @@ namespace OpenTK.Graphics.ES20 /// /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -24117,6 +25157,7 @@ namespace OpenTK.Graphics.ES20 /// /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } @@ -24135,6 +25176,55 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES20.PipelineParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_separate_shader_objects] + /// Retrieve properties of a program pipeline object + /// + /// + /// Specifies the name of a program pipeline object whose parameter retrieve. + /// + /// + /// Specifies the name of the parameter to retrieve. + /// + /// + /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. + /// + [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] + [CLSCompliant(false)] + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES20.PipelineParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_separate_shader_objects] + /// Retrieve properties of a program pipeline object + /// + /// + /// Specifies the name of a program pipeline object whose parameter retrieve. + /// + /// + /// Specifies the name of the parameter to retrieve. + /// + /// + /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. + /// + [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] + [CLSCompliant(false)] + public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES20.PipelineParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_separate_shader_objects] + /// Retrieve properties of a program pipeline object + /// + /// + /// Specifies the name of a program pipeline object whose parameter retrieve. + /// + /// + /// Specifies the name of the parameter to retrieve. + /// + /// + /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] + [CLSCompliant(false)] public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] @@ -24149,6 +25239,7 @@ namespace OpenTK.Graphics.ES20 /// /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -24165,10 +25256,59 @@ namespace OpenTK.Graphics.ES20 /// /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_separate_shader_objects] + /// Retrieve properties of a program pipeline object + /// + /// + /// Specifies the name of a program pipeline object whose parameter retrieve. + /// + /// + /// Specifies the name of the parameter to retrieve. + /// + /// + /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. + /// + [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] + [CLSCompliant(false)] + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES20.PipelineParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_separate_shader_objects] + /// Retrieve properties of a program pipeline object + /// + /// + /// Specifies the name of a program pipeline object whose parameter retrieve. + /// + /// + /// Specifies the name of the parameter to retrieve. + /// + /// + /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. + /// + [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] + [CLSCompliant(false)] + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES20.PipelineParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_separate_shader_objects] + /// Retrieve properties of a program pipeline object + /// + /// + /// Specifies the name of a program pipeline object whose parameter retrieve. + /// + /// + /// Specifies the name of the parameter to retrieve. + /// + /// + /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. + /// + [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] + [CLSCompliant(false)] + public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES20.PipelineParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_blend_func_extended] /// Query the fragment color index of a named variable within a program /// @@ -24181,6 +25321,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(name)] /// The name of the resource to query the location of. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glGetProgramResourceLocationIndexEXT")] [CLSCompliant(false)] public static Int32 GetProgramResourceLocationIndex(Int32 program, OpenTK.Graphics.ES20.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } @@ -24199,8 +25340,41 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glGetProgramResourceLocationIndexEXT")] [CLSCompliant(false)] + public static Int32 GetProgramResourceLocationIndex(Int32 program, OpenTK.Graphics.ES20.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_blend_func_extended] + /// Query the fragment color index of a named variable within a program + /// + /// + /// The name of a program object whose resources to query. + /// + /// + /// A token identifying the interface within program containing the resource named name. + /// + /// [length: COMPSIZE(name)] + /// The name of the resource to query the location of. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glGetProgramResourceLocationIndexEXT")] + [CLSCompliant(false)] public static Int32 GetProgramResourceLocationIndex(UInt32 program, OpenTK.Graphics.ES20.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_blend_func_extended] + /// Query the fragment color index of a named variable within a program + /// + /// + /// The name of a program object whose resources to query. + /// + /// + /// A token identifying the interface within program containing the resource named name. + /// + /// [length: COMPSIZE(name)] + /// The name of the resource to query the location of. + /// + [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glGetProgramResourceLocationIndexEXT")] + [CLSCompliant(false)] + public static Int32 GetProgramResourceLocationIndex(UInt32 program, OpenTK.Graphics.ES20.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// /// @@ -24850,6 +26024,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -24858,6 +26033,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -24866,6 +26042,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } @@ -24876,12 +26053,38 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] + [CLSCompliant(false)] + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] + [CLSCompliant(false)] + public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] + [CLSCompliant(false)] public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -24890,6 +26093,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } @@ -24898,6 +26102,31 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] + [CLSCompliant(false)] + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] + [CLSCompliant(false)] + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] + [CLSCompliant(false)] + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivEXT")] [CLSCompliant(false)] public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } @@ -24906,6 +26135,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivEXT")] [CLSCompliant(false)] public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } @@ -24914,10 +26144,35 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivEXT")] [CLSCompliant(false)] public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivEXT")] + [CLSCompliant(false)] + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivEXT")] + [CLSCompliant(false)] + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivEXT")] + [CLSCompliant(false)] + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_semaphore] /// /// @@ -26161,6 +27416,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a symbolic constant indicating a GL capability. /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glIsEnablediEXT")] [CLSCompliant(false)] public static bool IsEnabled(OpenTK.Graphics.ES20.All target, Int32 index) { throw new BindingsNotRewrittenException(); } @@ -26172,10 +27428,33 @@ namespace OpenTK.Graphics.ES20 /// Specifies a symbolic constant indicating a GL capability. /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glIsEnablediEXT")] [CLSCompliant(false)] public static bool IsEnabled(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_draw_buffers_indexed] + /// Test whether a capability is enabled + /// + /// + /// Specifies a symbolic constant indicating a GL capability. + /// + /// + [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glIsEnablediEXT")] + [CLSCompliant(false)] + public static bool IsEnabled(OpenTK.Graphics.ES20.EnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_draw_buffers_indexed] + /// Test whether a capability is enabled + /// + /// + /// Specifies a symbolic constant indicating a GL capability. + /// + /// + [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glIsEnablediEXT")] + [CLSCompliant(false)] + public static bool IsEnabled(OpenTK.Graphics.ES20.EnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_memory_object] /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glIsMemoryObjectEXT")] @@ -26275,8 +27554,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] - [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES20.All target, IntPtr offset, Int32 length, Int32 access) { throw new BindingsNotRewrittenException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES20.All target, IntPtr offset, Int32 length, OpenTK.Graphics.ES20.All access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -26295,8 +27573,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] - [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES20.All target, IntPtr offset, Int32 length, UInt32 access) { throw new BindingsNotRewrittenException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr length, OpenTK.Graphics.ES20.All access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -26313,106 +27590,571 @@ namespace OpenTK.Graphics.ES20 /// /// Specifies a combination of access flags indicating the desired access to the range. /// + [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] + public static IntPtr MapBufferRange(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, Int32 length, OpenTK.Graphics.ES20.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_map_buffer_range] + /// Map a section of a buffer object's data store + /// + /// + /// Specifies a binding to which the target buffer is bound. + /// + /// + /// Specifies a the starting offset within the buffer of the range to be mapped. + /// + /// + /// Specifies a length of the range to be mapped. + /// + /// + /// Specifies a combination of access flags indicating the desired access to the range. + /// + [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] + public static IntPtr MapBufferRange(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, IntPtr length, OpenTK.Graphics.ES20.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// [Obsolete("Use strongly-typed overload instead")] - [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] - [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr length, Int32 access) { throw new BindingsNotRewrittenException(); } + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixFrustumEXT")] + public static void MatrixFrustum(OpenTK.Graphics.ES20.All mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_map_buffer_range] - /// Map a section of a buffer object's data store - /// - /// - /// Specifies a binding to which the target buffer is bound. - /// - /// - /// Specifies a the starting offset within the buffer of the range to be mapped. - /// - /// - /// Specifies a length of the range to be mapped. - /// - /// - /// Specifies a combination of access flags indicating the desired access to the range. - /// + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixFrustumEXT")] + public static void MatrixFrustum(OpenTK.Graphics.ES20.MatrixMode mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] [Obsolete("Use strongly-typed overload instead")] - [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoaddEXT")] [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr length, UInt32 access) { throw new BindingsNotRewrittenException(); } + public static void MatrixLoad(OpenTK.Graphics.ES20.All mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_map_buffer_range] - /// Map a section of a buffer object's data store - /// - /// - /// Specifies a binding to which the target buffer is bound. - /// - /// - /// Specifies a the starting offset within the buffer of the range to be mapped. - /// - /// - /// Specifies a length of the range to be mapped. - /// - /// - /// Specifies a combination of access flags indicating the desired access to the range. - /// - [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoaddEXT")] [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, Int32 length, Int32 access) { throw new BindingsNotRewrittenException(); } + public static void MatrixLoad(OpenTK.Graphics.ES20.All mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_map_buffer_range] - /// Map a section of a buffer object's data store - /// - /// - /// Specifies a binding to which the target buffer is bound. - /// - /// - /// Specifies a the starting offset within the buffer of the range to be mapped. - /// - /// - /// Specifies a length of the range to be mapped. - /// - /// - /// Specifies a combination of access flags indicating the desired access to the range. - /// - [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoaddEXT")] [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, Int32 length, UInt32 access) { throw new BindingsNotRewrittenException(); } + public static unsafe void MatrixLoad(OpenTK.Graphics.ES20.All mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_map_buffer_range] - /// Map a section of a buffer object's data store - /// - /// - /// Specifies a binding to which the target buffer is bound. - /// - /// - /// Specifies a the starting offset within the buffer of the range to be mapped. - /// - /// - /// Specifies a length of the range to be mapped. - /// - /// - /// Specifies a combination of access flags indicating the desired access to the range. - /// - [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoaddEXT")] [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, IntPtr length, Int32 access) { throw new BindingsNotRewrittenException(); } + public static void MatrixLoad(OpenTK.Graphics.ES20.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_map_buffer_range] - /// Map a section of a buffer object's data store - /// - /// - /// Specifies a binding to which the target buffer is bound. - /// - /// - /// Specifies a the starting offset within the buffer of the range to be mapped. - /// - /// - /// Specifies a length of the range to be mapped. - /// - /// - /// Specifies a combination of access flags indicating the desired access to the range. - /// - [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoaddEXT")] [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, IntPtr length, UInt32 access) { throw new BindingsNotRewrittenException(); } + public static void MatrixLoad(OpenTK.Graphics.ES20.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoaddEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixLoad(OpenTK.Graphics.ES20.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadfEXT")] + [CLSCompliant(false)] + public static void MatrixLoad(OpenTK.Graphics.ES20.All mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadfEXT")] + [CLSCompliant(false)] + public static void MatrixLoad(OpenTK.Graphics.ES20.All mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadfEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixLoad(OpenTK.Graphics.ES20.All mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadfEXT")] + [CLSCompliant(false)] + public static void MatrixLoad(OpenTK.Graphics.ES20.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadfEXT")] + [CLSCompliant(false)] + public static void MatrixLoad(OpenTK.Graphics.ES20.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadfEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixLoad(OpenTK.Graphics.ES20.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadIdentityEXT")] + public static void MatrixLoadIdentity(OpenTK.Graphics.ES20.All mode) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadIdentityEXT")] + public static void MatrixLoadIdentity(OpenTK.Graphics.ES20.MatrixMode mode) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] + [CLSCompliant(false)] + public static void MatrixLoadTranspose(OpenTK.Graphics.ES20.All mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] + [CLSCompliant(false)] + public static void MatrixLoadTranspose(OpenTK.Graphics.ES20.All mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixLoadTranspose(OpenTK.Graphics.ES20.All mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] + [CLSCompliant(false)] + public static void MatrixLoadTranspose(OpenTK.Graphics.ES20.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] + [CLSCompliant(false)] + public static void MatrixLoadTranspose(OpenTK.Graphics.ES20.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixLoadTranspose(OpenTK.Graphics.ES20.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] + [CLSCompliant(false)] + public static void MatrixLoadTranspose(OpenTK.Graphics.ES20.All mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] + [CLSCompliant(false)] + public static void MatrixLoadTranspose(OpenTK.Graphics.ES20.All mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixLoadTranspose(OpenTK.Graphics.ES20.All mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] + [CLSCompliant(false)] + public static void MatrixLoadTranspose(OpenTK.Graphics.ES20.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] + [CLSCompliant(false)] + public static void MatrixLoadTranspose(OpenTK.Graphics.ES20.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixLoadTranspose(OpenTK.Graphics.ES20.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultdEXT")] + [CLSCompliant(false)] + public static void MatrixMult(OpenTK.Graphics.ES20.All mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultdEXT")] + [CLSCompliant(false)] + public static void MatrixMult(OpenTK.Graphics.ES20.All mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultdEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixMult(OpenTK.Graphics.ES20.All mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultdEXT")] + [CLSCompliant(false)] + public static void MatrixMult(OpenTK.Graphics.ES20.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultdEXT")] + [CLSCompliant(false)] + public static void MatrixMult(OpenTK.Graphics.ES20.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultdEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixMult(OpenTK.Graphics.ES20.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultfEXT")] + [CLSCompliant(false)] + public static void MatrixMult(OpenTK.Graphics.ES20.All mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultfEXT")] + [CLSCompliant(false)] + public static void MatrixMult(OpenTK.Graphics.ES20.All mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultfEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixMult(OpenTK.Graphics.ES20.All mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultfEXT")] + [CLSCompliant(false)] + public static void MatrixMult(OpenTK.Graphics.ES20.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultfEXT")] + [CLSCompliant(false)] + public static void MatrixMult(OpenTK.Graphics.ES20.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultfEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixMult(OpenTK.Graphics.ES20.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] + [CLSCompliant(false)] + public static void MatrixMultTranspose(OpenTK.Graphics.ES20.All mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] + [CLSCompliant(false)] + public static void MatrixMultTranspose(OpenTK.Graphics.ES20.All mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixMultTranspose(OpenTK.Graphics.ES20.All mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] + [CLSCompliant(false)] + public static void MatrixMultTranspose(OpenTK.Graphics.ES20.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] + [CLSCompliant(false)] + public static void MatrixMultTranspose(OpenTK.Graphics.ES20.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixMultTranspose(OpenTK.Graphics.ES20.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] + [CLSCompliant(false)] + public static void MatrixMultTranspose(OpenTK.Graphics.ES20.All mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] + [CLSCompliant(false)] + public static void MatrixMultTranspose(OpenTK.Graphics.ES20.All mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixMultTranspose(OpenTK.Graphics.ES20.All mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] + [CLSCompliant(false)] + public static void MatrixMultTranspose(OpenTK.Graphics.ES20.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] + [CLSCompliant(false)] + public static void MatrixMultTranspose(OpenTK.Graphics.ES20.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixMultTranspose(OpenTK.Graphics.ES20.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixOrthoEXT")] + public static void MatrixOrtho(OpenTK.Graphics.ES20.All mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixOrthoEXT")] + public static void MatrixOrtho(OpenTK.Graphics.ES20.MatrixMode mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixPopEXT")] + public static void MatrixPop(OpenTK.Graphics.ES20.All mode) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixPopEXT")] + public static void MatrixPop(OpenTK.Graphics.ES20.MatrixMode mode) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixPushEXT")] + public static void MatrixPush(OpenTK.Graphics.ES20.All mode) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixPushEXT")] + public static void MatrixPush(OpenTK.Graphics.ES20.MatrixMode mode) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixRotatedEXT")] + public static void MatrixRotate(OpenTK.Graphics.ES20.All mode, Double angle, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixRotatedEXT")] + public static void MatrixRotate(OpenTK.Graphics.ES20.MatrixMode mode, Double angle, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixRotatefEXT")] + public static void MatrixRotate(OpenTK.Graphics.ES20.All mode, Single angle, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixRotatefEXT")] + public static void MatrixRotate(OpenTK.Graphics.ES20.MatrixMode mode, Single angle, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixScaledEXT")] + public static void MatrixScale(OpenTK.Graphics.ES20.All mode, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixScaledEXT")] + public static void MatrixScale(OpenTK.Graphics.ES20.MatrixMode mode, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixScalefEXT")] + public static void MatrixScale(OpenTK.Graphics.ES20.All mode, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixScalefEXT")] + public static void MatrixScale(OpenTK.Graphics.ES20.MatrixMode mode, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixTranslatedEXT")] + public static void MatrixTranslate(OpenTK.Graphics.ES20.All mode, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixTranslatedEXT")] + public static void MatrixTranslate(OpenTK.Graphics.ES20.MatrixMode mode, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixTranslatefEXT")] + public static void MatrixTranslate(OpenTK.Graphics.ES20.All mode, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixTranslatefEXT")] + public static void MatrixTranslate(OpenTK.Graphics.ES20.MatrixMode mode, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -28516,7 +30258,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the distance in basic machine units between elements of the draw parameter array. /// [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectEXT")] - public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES20.PrimitiveType mode, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } + public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES20.PrimitiveType mode, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -28538,7 +30280,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectEXT")] [CLSCompliant(false)] - public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES20.PrimitiveType mode, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[] indirect, Int32 drawcount, Int32 stride) + public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES20.PrimitiveType mode, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[] indirect, Int32 drawcount, Int32 stride) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -28562,7 +30304,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectEXT")] [CLSCompliant(false)] - public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES20.PrimitiveType mode, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,] indirect, Int32 drawcount, Int32 stride) + public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES20.PrimitiveType mode, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,] indirect, Int32 drawcount, Int32 stride) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -28586,7 +30328,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectEXT")] [CLSCompliant(false)] - public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES20.PrimitiveType mode, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,,] indirect, Int32 drawcount, Int32 stride) + public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES20.PrimitiveType mode, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,,] indirect, Int32 drawcount, Int32 stride) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -28609,7 +30351,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the distance in basic machine units between elements of the draw parameter array. /// [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectEXT")] - public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES20.PrimitiveType mode, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] ref T2 indirect, Int32 drawcount, Int32 stride) + public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES20.PrimitiveType mode, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] ref T2 indirect, Int32 drawcount, Int32 stride) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -28619,9 +30361,10 @@ namespace OpenTK.Graphics.ES20 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } + public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, OpenTK.Graphics.ES20.All flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -28631,7 +30374,18 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } + public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, OpenTK.Graphics.ES20.MapBufferUsageMask flags) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_external_buffer] + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] + [CLSCompliant(false)] + public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, OpenTK.Graphics.ES20.All flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -28641,7 +30395,18 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } + public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, OpenTK.Graphics.ES20.MapBufferUsageMask flags) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_external_buffer] + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] + [CLSCompliant(false)] + public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, OpenTK.Graphics.ES20.All flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -28651,7 +30416,28 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } + public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, OpenTK.Graphics.ES20.MapBufferUsageMask flags) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_external_buffer] + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] + [CLSCompliant(false)] + public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, OpenTK.Graphics.ES20.All flags) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_external_buffer] + /// + /// + /// + /// + /// + [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] + [CLSCompliant(false)] + public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, OpenTK.Graphics.ES20.MapBufferUsageMask flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -28698,9 +30484,22 @@ namespace OpenTK.Graphics.ES20 /// /// Specifies the new value for the parameter given by pname. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_tessellation_shader", Version = "", EntryPoint = "glPatchParameteriEXT")] public static void PatchParameter(OpenTK.Graphics.ES20.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_tessellation_shader] + /// Specifies the parameters for patch primitives + /// + /// + /// Specifies the name of the parameter to set. The symbolc constants PatchVertices, PatchDefaultOuterLevel, and PatchDefaultInnerLevel are accepted. + /// + /// + /// Specifies the new value for the parameter given by pname. + /// + [AutoGenerated(Category = "EXT_tessellation_shader", Version = "", EntryPoint = "glPatchParameteriEXT")] + public static void PatchParameter(OpenTK.Graphics.ES20.PatchParameterName pname, Int32 value) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_polygon_offset_clamp] /// /// @@ -30857,6 +32656,7 @@ namespace OpenTK.Graphics.ES20 /// /// Specify the counter to query. target must be Timestamp. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glQueryCounterEXT")] [CLSCompliant(false)] public static void QueryCounter(Int32 id, OpenTK.Graphics.ES20.All target) { throw new BindingsNotRewrittenException(); } @@ -30872,8 +32672,35 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glQueryCounterEXT")] [CLSCompliant(false)] + public static void QueryCounter(Int32 id, OpenTK.Graphics.ES20.QueryTarget target) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_disjoint_timer_query] + /// Record the GL time into a query object after all previous commands have reached the GL server but have not yet necessarily executed. + /// + /// + /// Specify the name of a query object into which to record the GL time. + /// + /// + /// Specify the counter to query. target must be Timestamp. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glQueryCounterEXT")] + [CLSCompliant(false)] public static void QueryCounter(UInt32 id, OpenTK.Graphics.ES20.All target) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_disjoint_timer_query] + /// Record the GL time into a query object after all previous commands have reached the GL server but have not yet necessarily executed. + /// + /// + /// Specify the name of a query object into which to record the GL time. + /// + /// + /// Specify the counter to query. target must be Timestamp. + /// + [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glQueryCounterEXT")] + [CLSCompliant(false)] + public static void QueryCounter(UInt32 id, OpenTK.Graphics.ES20.QueryTarget target) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples] /// /// @@ -30891,9 +32718,16 @@ namespace OpenTK.Graphics.ES20 /// [requires: EXT_multiview_draw_buffers] /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glReadBufferIndexedEXT")] public static void ReadBufferIndexed(OpenTK.Graphics.ES20.All src, Int32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_multiview_draw_buffers] + /// + /// + [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glReadBufferIndexedEXT")] + public static void ReadBufferIndexed(OpenTK.Graphics.ES20.ReadBufferMode src, Int32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_robustness] /// /// @@ -31102,6 +32936,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } @@ -31110,6 +32945,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } @@ -31118,6 +32954,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } @@ -31128,12 +32965,38 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] + [CLSCompliant(false)] + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.SamplerParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] + [CLSCompliant(false)] + public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] + [CLSCompliant(false)] public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } @@ -31142,6 +33005,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } @@ -31150,6 +33014,31 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] + [CLSCompliant(false)] + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] + [CLSCompliant(false)] + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.SamplerParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] + [CLSCompliant(false)] + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivEXT")] [CLSCompliant(false)] public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new BindingsNotRewrittenException(); } @@ -31158,6 +33047,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivEXT")] [CLSCompliant(false)] public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new BindingsNotRewrittenException(); } @@ -31166,10 +33056,35 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivEXT")] [CLSCompliant(false)] public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivEXT")] + [CLSCompliant(false)] + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.SamplerParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivEXT")] + [CLSCompliant(false)] + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.SamplerParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivEXT")] + [CLSCompliant(false)] + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.SamplerParameterName pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_semaphore] /// /// @@ -31458,7 +33373,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferEXT")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.All internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } + public static void TexBuffer(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.InternalFormat internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -31474,7 +33389,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferEXT")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.All internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } + public static void TexBuffer(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.InternalFormat internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -31494,6 +33409,7 @@ namespace OpenTK.Graphics.ES20 /// /// Specifies the size of the range of the buffer's data store to attach. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] [CLSCompliant(false)] public static void TexBufferRange(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } @@ -31516,6 +33432,7 @@ namespace OpenTK.Graphics.ES20 /// /// Specifies the size of the range of the buffer's data store to attach. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] [CLSCompliant(false)] public static void TexBufferRange(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } @@ -31538,6 +33455,7 @@ namespace OpenTK.Graphics.ES20 /// /// Specifies the size of the range of the buffer's data store to attach. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] [CLSCompliant(false)] public static void TexBufferRange(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } @@ -31560,10 +33478,99 @@ namespace OpenTK.Graphics.ES20 /// /// Specifies the size of the range of the buffer's data store to attach. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] [CLSCompliant(false)] public static void TexBufferRange(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_texture_buffer] + /// Bind a range of a buffer's data store to a buffer texture + /// + /// + /// Specifies the target of the operation and must be TextureBuffer. + /// + /// + /// Specifies the internal format of the data in the store belonging to buffer. + /// + /// + /// Specifies the name of the buffer object whose storage to attach to the active buffer texture. + /// + /// + /// Specifies the offset of the start of the range of the buffer's data store to attach. + /// + /// + /// Specifies the size of the range of the buffer's data store to attach. + /// + [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] + [CLSCompliant(false)] + public static void TexBufferRange(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.InternalFormat internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_buffer] + /// Bind a range of a buffer's data store to a buffer texture + /// + /// + /// Specifies the target of the operation and must be TextureBuffer. + /// + /// + /// Specifies the internal format of the data in the store belonging to buffer. + /// + /// + /// Specifies the name of the buffer object whose storage to attach to the active buffer texture. + /// + /// + /// Specifies the offset of the start of the range of the buffer's data store to attach. + /// + /// + /// Specifies the size of the range of the buffer's data store to attach. + /// + [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] + [CLSCompliant(false)] + public static void TexBufferRange(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.InternalFormat internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_buffer] + /// Bind a range of a buffer's data store to a buffer texture + /// + /// + /// Specifies the target of the operation and must be TextureBuffer. + /// + /// + /// Specifies the internal format of the data in the store belonging to buffer. + /// + /// + /// Specifies the name of the buffer object whose storage to attach to the active buffer texture. + /// + /// + /// Specifies the offset of the start of the range of the buffer's data store to attach. + /// + /// + /// Specifies the size of the range of the buffer's data store to attach. + /// + [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] + [CLSCompliant(false)] + public static void TexBufferRange(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.InternalFormat internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_buffer] + /// Bind a range of a buffer's data store to a buffer texture + /// + /// + /// Specifies the target of the operation and must be TextureBuffer. + /// + /// + /// Specifies the internal format of the data in the store belonging to buffer. + /// + /// + /// Specifies the name of the buffer object whose storage to attach to the active buffer texture. + /// + /// + /// Specifies the offset of the start of the range of the buffer's data store to attach. + /// + /// + /// Specifies the size of the range of the buffer's data store to attach. + /// + [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] + [CLSCompliant(false)] + public static void TexBufferRange(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.InternalFormat internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_sparse_texture] /// /// @@ -31694,9 +33701,28 @@ namespace OpenTK.Graphics.ES20 /// /// Specifies the width of the texture, in texels. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage1DEXT")] public static void TexStorage1D(OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_texture_storage] + /// Simultaneously specify storage for all levels of a one-dimensional texture + /// + /// + /// Specify the target of the operation. target must be either Texture1D or ProxyTexture1D. + /// + /// + /// Specify the number of texture levels. + /// + /// + /// Specifies the sized internal format to be used to store texture image data. + /// + /// + /// Specifies the width of the texture, in texels. + /// + [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage1DEXT")] + public static void TexStorage1D(OpenTK.Graphics.ES20.TextureTarget target, Int32 levels, OpenTK.Graphics.ES20.InternalFormat internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_texture_storage] /// Simultaneously specify storage for all levels of a two-dimensional or one-dimensional array texture /// @@ -32057,6 +34083,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage1DEXT")] [CLSCompliant(false)] public static void TextureStorage1D(Int32 texture, OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } @@ -32069,8 +34096,29 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage1DEXT")] [CLSCompliant(false)] + public static void TextureStorage1D(Int32 texture, OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.InternalFormat internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_storage] + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage1DEXT")] + [CLSCompliant(false)] public static void TextureStorage1D(UInt32 texture, OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_texture_storage] + /// + /// + /// + /// + /// + [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage1DEXT")] + [CLSCompliant(false)] + public static void TextureStorage1D(UInt32 texture, OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.InternalFormat internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_texture_storage] /// /// @@ -32078,6 +34126,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage2DEXT")] [CLSCompliant(false)] public static void TextureStorage2D(Int32 texture, OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } @@ -32091,8 +34140,31 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage2DEXT")] [CLSCompliant(false)] + public static void TextureStorage2D(Int32 texture, OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.InternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_storage] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage2DEXT")] + [CLSCompliant(false)] public static void TextureStorage2D(UInt32 texture, OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_texture_storage] + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage2DEXT")] + [CLSCompliant(false)] + public static void TextureStorage2D(UInt32 texture, OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.InternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_texture_storage] /// /// @@ -32101,6 +34173,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage3DEXT")] [CLSCompliant(false)] public static void TextureStorage3D(Int32 texture, OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } @@ -32115,8 +34188,33 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage3DEXT")] [CLSCompliant(false)] + public static void TextureStorage3D(Int32 texture, OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_storage] + /// + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage3DEXT")] + [CLSCompliant(false)] public static void TextureStorage3D(UInt32 texture, OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_texture_storage] + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage3DEXT")] + [CLSCompliant(false)] + public static void TextureStorage3D(UInt32 texture, OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_memory_object] /// /// @@ -32270,6 +34368,7 @@ namespace OpenTK.Graphics.ES20 /// /// Specifies the number of layers to include in the view. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_view", Version = "", EntryPoint = "glTextureViewEXT")] [CLSCompliant(false)] public static void TextureView(Int32 texture, OpenTK.Graphics.ES20.All target, Int32 origtexture, OpenTK.Graphics.ES20.All internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new BindingsNotRewrittenException(); } @@ -32303,8 +34402,71 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_texture_view", Version = "", EntryPoint = "glTextureViewEXT")] [CLSCompliant(false)] + public static void TextureView(Int32 texture, OpenTK.Graphics.ES20.TextureTarget target, Int32 origtexture, OpenTK.Graphics.ES20.InternalFormat internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_view] + /// Initialize a texture as a data alias of another texture's data store + /// + /// + /// Specifies the texture object to be initialized as a view. + /// + /// + /// Specifies the target to be used for the newly initialized texture. + /// + /// + /// Specifies the name of a texture object of which to make a view. + /// + /// + /// Specifies the internal format for the newly created view. + /// + /// + /// Specifies lowest level of detail of the view. + /// + /// + /// Specifies the number of levels of detail to include in the view. + /// + /// + /// Specifies the index of the first layer to include in the view. + /// + /// + /// Specifies the number of layers to include in the view. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_texture_view", Version = "", EntryPoint = "glTextureViewEXT")] + [CLSCompliant(false)] public static void TextureView(UInt32 texture, OpenTK.Graphics.ES20.All target, UInt32 origtexture, OpenTK.Graphics.ES20.All internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_texture_view] + /// Initialize a texture as a data alias of another texture's data store + /// + /// + /// Specifies the texture object to be initialized as a view. + /// + /// + /// Specifies the target to be used for the newly initialized texture. + /// + /// + /// Specifies the name of a texture object of which to make a view. + /// + /// + /// Specifies the internal format for the newly created view. + /// + /// + /// Specifies lowest level of detail of the view. + /// + /// + /// Specifies the number of levels of detail to include in the view. + /// + /// + /// Specifies the index of the first layer to include in the view. + /// + /// + /// Specifies the number of layers to include in the view. + /// + [AutoGenerated(Category = "EXT_texture_view", Version = "", EntryPoint = "glTextureViewEXT")] + [CLSCompliant(false)] + public static void TextureView(UInt32 texture, OpenTK.Graphics.ES20.TextureTarget target, UInt32 origtexture, OpenTK.Graphics.ES20.InternalFormat internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_separate_shader_objects] /// Bind stages of a program object to a program pipeline /// @@ -32317,9 +34479,10 @@ namespace OpenTK.Graphics.ES20 /// /// Specifies the program object containing the shader executables to use in pipeline. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseProgramStagesEXT")] [CLSCompliant(false)] - public static void UseProgramStages(Int32 pipeline, Int32 stages, Int32 program) { throw new BindingsNotRewrittenException(); } + public static void UseProgramStages(Int32 pipeline, OpenTK.Graphics.ES20.All stages, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind stages of a program object to a program pipeline @@ -32335,7 +34498,40 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseProgramStagesEXT")] [CLSCompliant(false)] - public static void UseProgramStages(UInt32 pipeline, UInt32 stages, UInt32 program) { throw new BindingsNotRewrittenException(); } + public static void UseProgramStages(Int32 pipeline, OpenTK.Graphics.ES20.UseProgramStageMask stages, Int32 program) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_separate_shader_objects] + /// Bind stages of a program object to a program pipeline + /// + /// + /// Specifies the program pipeline object to which to bind stages from program. + /// + /// + /// Specifies a set of program stages to bind to the program pipeline object. + /// + /// + /// Specifies the program object containing the shader executables to use in pipeline. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseProgramStagesEXT")] + [CLSCompliant(false)] + public static void UseProgramStages(UInt32 pipeline, OpenTK.Graphics.ES20.All stages, UInt32 program) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_separate_shader_objects] + /// Bind stages of a program object to a program pipeline + /// + /// + /// Specifies the program pipeline object to which to bind stages from program. + /// + /// + /// Specifies a set of program stages to bind to the program pipeline object. + /// + /// + /// Specifies the program object containing the shader executables to use in pipeline. + /// + [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseProgramStagesEXT")] + [CLSCompliant(false)] + public static void UseProgramStages(UInt32 pipeline, OpenTK.Graphics.ES20.UseProgramStageMask stages, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -32571,6 +34767,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTexture2DDownsampleIMG")] [CLSCompliant(false)] public static void FramebufferTexture2DDownsample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, Int32 texture, Int32 level, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } @@ -32583,10 +34780,35 @@ namespace OpenTK.Graphics.ES20 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTexture2DDownsampleIMG")] [CLSCompliant(false)] public static void FramebufferTexture2DDownsample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, UInt32 texture, Int32 level, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } + /// [requires: IMG_framebuffer_downsample] + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTexture2DDownsampleIMG")] + [CLSCompliant(false)] + public static void FramebufferTexture2DDownsample(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferAttachment attachment, OpenTK.Graphics.ES20.TextureTarget textarget, Int32 texture, Int32 level, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } + + /// [requires: IMG_framebuffer_downsample] + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTexture2DDownsampleIMG")] + [CLSCompliant(false)] + public static void FramebufferTexture2DDownsample(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferAttachment attachment, OpenTK.Graphics.ES20.TextureTarget textarget, UInt32 texture, Int32 level, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } + /// [requires: IMG_multisampled_render_to_texture] /// /// @@ -32594,6 +34816,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleIMG")] [CLSCompliant(false)] public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, Int32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } @@ -32605,10 +34828,33 @@ namespace OpenTK.Graphics.ES20 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleIMG")] [CLSCompliant(false)] public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, UInt32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } + /// [requires: IMG_multisampled_render_to_texture] + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleIMG")] + [CLSCompliant(false)] + public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferAttachment attachment, OpenTK.Graphics.ES20.TextureTarget textarget, Int32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } + + /// [requires: IMG_multisampled_render_to_texture] + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleIMG")] + [CLSCompliant(false)] + public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferAttachment attachment, OpenTK.Graphics.ES20.TextureTarget textarget, UInt32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } + /// [requires: IMG_framebuffer_downsample] /// /// @@ -32645,7 +34891,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTextureLayerDownsampleIMG")] [CLSCompliant(false)] - public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } + public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_framebuffer_downsample] /// @@ -32657,7 +34903,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTextureLayerDownsampleIMG")] [CLSCompliant(false)] - public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } + public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -34468,7 +36714,7 @@ namespace OpenTK.Graphics.ES20 /// [requires: KHR_robustness] [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetGraphicsResetStatusKHR")] - public static OpenTK.Graphics.ES20.All GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.ES20.GraphicsResetStatus GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -35232,6 +37478,18 @@ namespace OpenTK.Graphics.ES20 where T1 : struct { throw new BindingsNotRewrittenException(); } + /// [requires: KHR_parallel_shader_compile] + /// + [AutoGenerated(Category = "KHR_parallel_shader_compile", Version = "", EntryPoint = "glMaxShaderCompilerThreadsKHR")] + [CLSCompliant(false)] + public static void MaxShaderCompilerThreads(Int32 count) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_parallel_shader_compile] + /// + [AutoGenerated(Category = "KHR_parallel_shader_compile", Version = "", EntryPoint = "glMaxShaderCompilerThreadsKHR")] + [CLSCompliant(false)] + public static void MaxShaderCompilerThreads(UInt32 count) { throw new BindingsNotRewrittenException(); } + /// [requires: KHR_debug] /// Label a named object identified within a namespace /// @@ -35417,6 +37675,7 @@ namespace OpenTK.Graphics.ES20 /// /// The a string containing the message to be sent to the debug output stream. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroupKHR")] [CLSCompliant(false)] public static void PushDebugGroup(OpenTK.Graphics.ES20.All source, Int32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } @@ -35436,10 +37695,49 @@ namespace OpenTK.Graphics.ES20 /// /// The a string containing the message to be sent to the debug output stream. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroupKHR")] [CLSCompliant(false)] public static void PushDebugGroup(OpenTK.Graphics.ES20.All source, UInt32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } + /// [requires: KHR_debug] + /// Push a named debug group into the command stream + /// + /// + /// The source of the debug message. + /// + /// + /// The identifier of the message. + /// + /// + /// The length of the message to be sent to the debug output stream. + /// + /// + /// The a string containing the message to be sent to the debug output stream. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroupKHR")] + [CLSCompliant(false)] + public static void PushDebugGroup(OpenTK.Graphics.ES20.DebugSource source, Int32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Push a named debug group into the command stream + /// + /// + /// The source of the debug message. + /// + /// + /// The identifier of the message. + /// + /// + /// The length of the message to be sent to the debug output stream. + /// + /// + /// The a string containing the message to be sent to the debug output stream. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroupKHR")] + [CLSCompliant(false)] + public static void PushDebugGroup(OpenTK.Graphics.ES20.DebugSource source, UInt32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } + /// [requires: KHR_robustness] /// /// @@ -35600,6 +37898,7 @@ namespace OpenTK.Graphics.ES20 /// /// Specifies how glBeginConditionalRender interprets the results of the occlusion query. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNV")] [CLSCompliant(false)] public static void BeginConditionalRender(Int32 id, OpenTK.Graphics.ES20.All mode) { throw new BindingsNotRewrittenException(); } @@ -35615,8 +37914,35 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNV")] [CLSCompliant(false)] + public static void BeginConditionalRender(Int32 id, OpenTK.Graphics.ES20.TypeEnum mode) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_conditional_render] + /// Start conditional rendering + /// + /// + /// Specifies the name of an occlusion query object whose results are used to determine if the rendering commands are discarded. + /// + /// + /// Specifies how glBeginConditionalRender interprets the results of the occlusion query. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNV")] + [CLSCompliant(false)] public static void BeginConditionalRender(UInt32 id, OpenTK.Graphics.ES20.All mode) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_conditional_render] + /// Start conditional rendering + /// + /// + /// Specifies the name of an occlusion query object whose results are used to determine if the rendering commands are discarded. + /// + /// + /// Specifies how glBeginConditionalRender interprets the results of the occlusion query. + /// + [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNV")] + [CLSCompliant(false)] + public static void BeginConditionalRender(UInt32 id, OpenTK.Graphics.ES20.TypeEnum mode) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_blend_equation_advanced] [AutoGenerated(Category = "NV_blend_equation_advanced", Version = "", EntryPoint = "glBlendBarrierNV")] public static void BlendBarrier() { throw new BindingsNotRewrittenException(); } @@ -35818,24 +38144,24 @@ namespace OpenTK.Graphics.ES20 /// [requires: NV_framebuffer_mixed_samples] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static void CoverageModulationTable(Int32 n, Single[] v) { throw new BindingsNotRewrittenException(); } + public static void CoverageModulationTable(Int32 n, [CountAttribute(Parameter = "n")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static void CoverageModulationTable(Int32 n, ref Single v) { throw new BindingsNotRewrittenException(); } + public static void CoverageModulationTable(Int32 n, [CountAttribute(Parameter = "n")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static unsafe void CoverageModulationTable(Int32 n, Single* v) { throw new BindingsNotRewrittenException(); } + public static unsafe void CoverageModulationTable(Int32 n, [CountAttribute(Parameter = "n")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_coverage_sample] /// @@ -35850,6 +38176,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } @@ -35862,6 +38189,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } @@ -35874,6 +38202,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } @@ -35886,6 +38215,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } @@ -35898,6 +38228,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } @@ -35910,6 +38241,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } @@ -35922,6 +38254,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -35936,6 +38269,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -35950,6 +38284,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -35964,6 +38299,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -35978,6 +38314,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -35992,6 +38329,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -36006,6 +38344,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -36020,6 +38359,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -36034,6 +38374,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -36048,6 +38389,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -36062,6 +38404,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -36076,6 +38419,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -36090,6 +38434,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -36104,6 +38449,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -36118,6 +38464,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -36132,6 +38479,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -36146,6 +38494,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -36160,6 +38509,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -36174,6 +38524,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -36188,6 +38539,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -36202,6 +38554,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -36216,6 +38569,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -36230,6 +38584,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -36244,26 +38599,13 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } - /// [requires: NV_path_rendering] - /// - /// - [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] - [CLSCompliant(false)] - public static void CoverFillPath(Int32 path, OpenTK.Graphics.ES20.All coverMode) { throw new BindingsNotRewrittenException(); } - - /// [requires: NV_path_rendering] - /// - /// - [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] - [CLSCompliant(false)] - public static void CoverFillPath(UInt32 path, OpenTK.Graphics.ES20.All coverMode) { throw new BindingsNotRewrittenException(); } - /// [requires: NV_path_rendering] /// /// @@ -36272,6 +38614,445 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] + [CLSCompliant(false)] + public static void CoverFillPath(Int32 path, OpenTK.Graphics.ES20.All coverMode) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] + [CLSCompliant(false)] + public static void CoverFillPath(Int32 path, OpenTK.Graphics.ES20.PathCoverMode coverMode) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] + [CLSCompliant(false)] + public static void CoverFillPath(UInt32 path, OpenTK.Graphics.ES20.All coverMode) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] + [CLSCompliant(false)] + public static void CoverFillPath(UInt32 path, OpenTK.Graphics.ES20.PathCoverMode coverMode) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } @@ -36284,6 +39065,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } @@ -36296,6 +39078,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } @@ -36308,6 +39091,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } @@ -36320,6 +39104,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } @@ -36332,6 +39117,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } @@ -36344,6 +39130,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -36358,6 +39145,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -36372,6 +39160,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -36386,6 +39175,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -36400,6 +39190,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -36414,6 +39205,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -36428,6 +39220,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -36442,6 +39235,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -36456,6 +39250,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -36470,6 +39265,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -36484,6 +39280,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -36498,6 +39295,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -36512,6 +39310,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -36526,6 +39325,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -36540,6 +39340,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -36554,6 +39355,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -36568,6 +39370,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -36582,6 +39385,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -36596,6 +39400,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -36610,6 +39415,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -36624,6 +39430,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -36638,6 +39445,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -36652,6 +39460,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -36666,15 +39475,425 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathCoverMode coverMode, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathNV")] [CLSCompliant(false)] public static void CoverStrokePath(Int32 path, OpenTK.Graphics.ES20.All coverMode) { throw new BindingsNotRewrittenException(); } @@ -36684,8 +39903,23 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathNV")] [CLSCompliant(false)] + public static void CoverStrokePath(Int32 path, OpenTK.Graphics.ES20.PathCoverMode coverMode) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathNV")] + [CLSCompliant(false)] public static void CoverStrokePath(UInt32 path, OpenTK.Graphics.ES20.All coverMode) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathNV")] + [CLSCompliant(false)] + public static void CoverStrokePath(UInt32 path, OpenTK.Graphics.ES20.PathCoverMode coverMode) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_fence] /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] @@ -36885,6 +40119,7 @@ namespace OpenTK.Graphics.ES20 /// [requires: NV_viewport_array] /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDisableiNV")] [CLSCompliant(false)] public static void Disable(OpenTK.Graphics.ES20.All target, Int32 index) { throw new BindingsNotRewrittenException(); } @@ -36892,10 +40127,25 @@ namespace OpenTK.Graphics.ES20 /// [requires: NV_viewport_array] /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDisableiNV")] [CLSCompliant(false)] public static void Disable(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_viewport_array] + /// + /// + [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDisableiNV")] + [CLSCompliant(false)] + public static void Disable(OpenTK.Graphics.ES20.EnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_viewport_array] + /// + /// + [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDisableiNV")] + [CLSCompliant(false)] + public static void Disable(OpenTK.Graphics.ES20.EnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_draw_instanced] /// Draw multiple instances of a range of elements /// @@ -37290,6 +40540,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a symbolic constant indicating a GL capability. /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glEnableiNV")] [CLSCompliant(false)] public static void Enable(OpenTK.Graphics.ES20.All target, Int32 index) { throw new BindingsNotRewrittenException(); } @@ -37301,10 +40552,33 @@ namespace OpenTK.Graphics.ES20 /// Specifies a symbolic constant indicating a GL capability. /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glEnableiNV")] [CLSCompliant(false)] public static void Enable(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_viewport_array] + /// Enable or disable server-side GL capabilities + /// + /// + /// Specifies a symbolic constant indicating a GL capability. + /// + /// + [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glEnableiNV")] + [CLSCompliant(false)] + public static void Enable(OpenTK.Graphics.ES20.EnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_viewport_array] + /// Enable or disable server-side GL capabilities + /// + /// + /// Specifies a symbolic constant indicating a GL capability. + /// + /// + [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glEnableiNV")] + [CLSCompliant(false)] + public static void Enable(OpenTK.Graphics.ES20.EnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_conditional_render] [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glEndConditionalRenderNV")] public static void EndConditionalRender() { throw new BindingsNotRewrittenException(); } @@ -37338,6 +40612,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] public static void FramebufferSampleLocations(OpenTK.Graphics.ES20.All target, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } @@ -37347,6 +40622,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] public static void FramebufferSampleLocations(OpenTK.Graphics.ES20.All target, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } @@ -37356,6 +40632,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.ES20.All target, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } @@ -37365,6 +40642,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] public static void FramebufferSampleLocations(OpenTK.Graphics.ES20.All target, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } @@ -37374,6 +40652,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] public static void FramebufferSampleLocations(OpenTK.Graphics.ES20.All target, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } @@ -37383,10 +40662,65 @@ namespace OpenTK.Graphics.ES20 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.ES20.All target, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_sample_locations] + /// + /// + /// + /// + [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] + [CLSCompliant(false)] + public static void FramebufferSampleLocations(OpenTK.Graphics.ES20.FramebufferTarget target, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_sample_locations] + /// + /// + /// + /// + [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] + [CLSCompliant(false)] + public static void FramebufferSampleLocations(OpenTK.Graphics.ES20.FramebufferTarget target, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_sample_locations] + /// + /// + /// + /// + [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] + [CLSCompliant(false)] + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.ES20.FramebufferTarget target, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_sample_locations] + /// + /// + /// + /// + [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] + [CLSCompliant(false)] + public static void FramebufferSampleLocations(OpenTK.Graphics.ES20.FramebufferTarget target, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_sample_locations] + /// + /// + /// + /// + [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] + [CLSCompliant(false)] + public static void FramebufferSampleLocations(OpenTK.Graphics.ES20.FramebufferTarget target, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_sample_locations] + /// + /// + /// + /// + [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] + [CLSCompliant(false)] + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.ES20.FramebufferTarget target, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] @@ -37517,6 +40851,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } @@ -37525,6 +40860,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } @@ -37533,6 +40869,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] public static unsafe void GetFloat(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } @@ -37541,6 +40878,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } @@ -37549,6 +40887,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } @@ -37557,16 +40896,66 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] public static unsafe void GetFloat(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_viewport_array] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] + [CLSCompliant(false)] + public static void GetFloat(OpenTK.Graphics.ES20.TypeEnum target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_viewport_array] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] + [CLSCompliant(false)] + public static void GetFloat(OpenTK.Graphics.ES20.TypeEnum target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_viewport_array] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] + [CLSCompliant(false)] + public static unsafe void GetFloat(OpenTK.Graphics.ES20.TypeEnum target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_viewport_array] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] + [CLSCompliant(false)] + public static void GetFloat(OpenTK.Graphics.ES20.TypeEnum target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_viewport_array] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] + [CLSCompliant(false)] + public static void GetFloat(OpenTK.Graphics.ES20.TypeEnum target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_viewport_array] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] + [CLSCompliant(false)] + public static unsafe void GetFloat(OpenTK.Graphics.ES20.TypeEnum target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_bindless_texture] /// /// /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetImageHandleNV")] [CLSCompliant(false)] public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES20.All format) { throw new BindingsNotRewrittenException(); } @@ -37579,8 +40968,29 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetImageHandleNV")] [CLSCompliant(false)] + public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES20.PixelFormat format) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_bindless_texture] + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetImageHandleNV")] + [CLSCompliant(false)] public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES20.All format) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_bindless_texture] + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetImageHandleNV")] + [CLSCompliant(false)] + public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES20.PixelFormat format) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_internalformat_sample_query] /// /// @@ -37588,6 +40998,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: bufSize] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] public static void GetInternalformatSample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 samples, OpenTK.Graphics.ES20.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -37599,6 +41010,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: bufSize] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] public static void GetInternalformatSample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 samples, OpenTK.Graphics.ES20.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -37610,14 +41022,49 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: bufSize] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] public static unsafe void GetInternalformatSample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 samples, OpenTK.Graphics.ES20.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_internalformat_sample_query] + /// + /// + /// + /// + /// + /// [length: bufSize] + [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] + [CLSCompliant(false)] + public static void GetInternalformatSample(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.InternalFormat internalformat, Int32 samples, OpenTK.Graphics.ES20.InternalFormatPName pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_internalformat_sample_query] + /// + /// + /// + /// + /// + /// [length: bufSize] + [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] + [CLSCompliant(false)] + public static void GetInternalformatSample(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.InternalFormat internalformat, Int32 samples, OpenTK.Graphics.ES20.InternalFormatPName pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_internalformat_sample_query] + /// + /// + /// + /// + /// + /// [length: bufSize] + [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] + [CLSCompliant(false)] + public static unsafe void GetInternalformatSample(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.InternalFormat internalformat, Int32 samples, OpenTK.Graphics.ES20.InternalFormatPName pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] public static void GetPathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } @@ -37626,6 +41073,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] public static void GetPathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } @@ -37634,6 +41082,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] public static unsafe void GetPathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } @@ -37642,6 +41091,31 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] + [CLSCompliant(false)] + public static void GetPathColorGen(OpenTK.Graphics.ES20.PathColor color, OpenTK.Graphics.ES20.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] + [CLSCompliant(false)] + public static void GetPathColorGen(OpenTK.Graphics.ES20.PathColor color, OpenTK.Graphics.ES20.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] + [CLSCompliant(false)] + public static unsafe void GetPathColorGen(OpenTK.Graphics.ES20.PathColor color, OpenTK.Graphics.ES20.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] public static void GetPathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } @@ -37650,6 +41124,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] public static void GetPathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } @@ -37658,10 +41133,35 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] public static unsafe void GetPathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] + [CLSCompliant(false)] + public static void GetPathColorGen(OpenTK.Graphics.ES20.PathColor color, OpenTK.Graphics.ES20.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] + [CLSCompliant(false)] + public static void GetPathColorGen(OpenTK.Graphics.ES20.PathColor color, OpenTK.Graphics.ES20.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] + [CLSCompliant(false)] + public static unsafe void GetPathColorGen(OpenTK.Graphics.ES20.PathColor color, OpenTK.Graphics.ES20.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] @@ -37846,9 +41346,65 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } + public static void GetPathMetricRange(OpenTK.Graphics.ES20.All metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] + [CLSCompliant(false)] + public static void GetPathMetricRange(OpenTK.Graphics.ES20.All metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetricRange(OpenTK.Graphics.ES20.All metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] + [CLSCompliant(false)] + public static void GetPathMetricRange(OpenTK.Graphics.ES20.All metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] + [CLSCompliant(false)] + public static void GetPathMetricRange(OpenTK.Graphics.ES20.All metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetricRange(OpenTK.Graphics.ES20.All metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37858,7 +41414,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } + public static void GetPathMetricRange(OpenTK.Graphics.ES20.PathMetricMask metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37868,7 +41424,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } + public static void GetPathMetricRange(OpenTK.Graphics.ES20.PathMetricMask metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37878,7 +41434,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPathMetricRange(OpenTK.Graphics.ES20.PathMetricMask metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37888,7 +41444,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } + public static void GetPathMetricRange(OpenTK.Graphics.ES20.PathMetricMask metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37898,7 +41454,17 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } + public static void GetPathMetricRange(OpenTK.Graphics.ES20.PathMetricMask metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetricRange(OpenTK.Graphics.ES20.PathMetricMask metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37908,9 +41474,10 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } + public static void GetPathMetric(OpenTK.Graphics.ES20.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37920,9 +41487,10 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } + public static void GetPathMetric(OpenTK.Graphics.ES20.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37932,9 +41500,10 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPathMetric(OpenTK.Graphics.ES20.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37944,9 +41513,394 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + public static void GetPathMetric(OpenTK.Graphics.ES20.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES20.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetric(OpenTK.Graphics.ES20.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES20.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES20.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetric(OpenTK.Graphics.ES20.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES20.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES20.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetric(OpenTK.Graphics.ES20.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES20.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES20.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetric(OpenTK.Graphics.ES20.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES20.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES20.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetric(OpenTK.Graphics.ES20.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES20.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES20.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetric(OpenTK.Graphics.ES20.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES20.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES20.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetric(OpenTK.Graphics.ES20.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES20.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES20.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetric(OpenTK.Graphics.ES20.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES20.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES20.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetric(OpenTK.Graphics.ES20.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -37960,7 +41914,79 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + public static void GetPathMetric(OpenTK.Graphics.ES20.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES20.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetric(OpenTK.Graphics.ES20.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES20.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES20.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetric(OpenTK.Graphics.ES20.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES20.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -37974,7 +42000,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + public static void GetPathMetric(OpenTK.Graphics.ES20.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -37988,7 +42014,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + public static unsafe void GetPathMetric(OpenTK.Graphics.ES20.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -38002,7 +42028,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + public static void GetPathMetric(OpenTK.Graphics.ES20.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -38016,7 +42042,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + public static void GetPathMetric(OpenTK.Graphics.ES20.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -38030,7 +42056,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + public static unsafe void GetPathMetric(OpenTK.Graphics.ES20.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -38044,7 +42070,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + public static void GetPathMetric(OpenTK.Graphics.ES20.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -38058,7 +42084,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + public static void GetPathMetric(OpenTK.Graphics.ES20.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -38072,7 +42098,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + public static unsafe void GetPathMetric(OpenTK.Graphics.ES20.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -38086,7 +42112,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + public static void GetPathMetric(OpenTK.Graphics.ES20.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -38100,7 +42126,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + public static void GetPathMetric(OpenTK.Graphics.ES20.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -38114,43 +42140,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } - - /// [requires: NV_path_rendering] - /// - /// - /// - /// [length: COMPSIZE(numPaths,pathNameType,paths)] - /// - /// - /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] - [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] - [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } - - /// [requires: NV_path_rendering] - /// - /// - /// - /// [length: COMPSIZE(numPaths,pathNameType,paths)] - /// - /// - /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] - [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] - [CLSCompliant(false)] - public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } - - /// [requires: NV_path_rendering] - /// - /// - /// - /// [length: COMPSIZE(numPaths,pathNameType,paths)] - /// - /// - /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] - [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] - [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + public static unsafe void GetPathMetric(OpenTK.Graphics.ES20.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -38164,7 +42154,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + public static void GetPathMetric(OpenTK.Graphics.ES20.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -38178,7 +42168,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + public static void GetPathMetric(OpenTK.Graphics.ES20.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -38192,7 +42182,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + public static unsafe void GetPathMetric(OpenTK.Graphics.ES20.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -38206,7 +42196,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + public static void GetPathMetric(OpenTK.Graphics.ES20.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -38220,7 +42210,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + public static void GetPathMetric(OpenTK.Graphics.ES20.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -38234,7 +42224,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + public static unsafe void GetPathMetric(OpenTK.Graphics.ES20.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -38248,7 +42238,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + public static void GetPathMetric(OpenTK.Graphics.ES20.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -38262,7 +42252,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + public static void GetPathMetric(OpenTK.Graphics.ES20.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -38276,7 +42266,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + public static unsafe void GetPathMetric(OpenTK.Graphics.ES20.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -38290,7 +42280,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + public static void GetPathMetric(OpenTK.Graphics.ES20.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -38304,7 +42294,21 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + public static void GetPathMetric(OpenTK.Graphics.ES20.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetric(OpenTK.Graphics.ES20.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -38312,6 +42316,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } @@ -38320,6 +42325,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new BindingsNotRewrittenException(); } @@ -38328,6 +42334,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } @@ -38338,12 +42345,38 @@ namespace OpenTK.Graphics.ES20 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] + public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES20.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: 4] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] + [CLSCompliant(false)] + public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES20.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: 4] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] + [CLSCompliant(false)] + public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.ES20.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] + [CLSCompliant(false)] public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new BindingsNotRewrittenException(); } @@ -38352,6 +42385,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } @@ -38360,6 +42394,31 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: 4] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] + [CLSCompliant(false)] + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES20.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: 4] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] + [CLSCompliant(false)] + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES20.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: 4] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] + [CLSCompliant(false)] + public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.ES20.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new BindingsNotRewrittenException(); } @@ -38368,6 +42427,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new BindingsNotRewrittenException(); } @@ -38376,6 +42436,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new BindingsNotRewrittenException(); } @@ -38386,12 +42447,38 @@ namespace OpenTK.Graphics.ES20 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] + public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES20.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: 4] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] + [CLSCompliant(false)] + public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES20.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: 4] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] + [CLSCompliant(false)] + public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.ES20.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] + [CLSCompliant(false)] public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new BindingsNotRewrittenException(); } @@ -38400,10 +42487,35 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// [length: 4] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] + [CLSCompliant(false)] + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES20.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: 4] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] + [CLSCompliant(false)] + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES20.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: 4] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] + [CLSCompliant(false)] + public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.ES20.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// @@ -38414,6 +42526,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new BindingsNotRewrittenException(); } @@ -38428,6 +42541,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new BindingsNotRewrittenException(); } @@ -38442,6 +42556,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new BindingsNotRewrittenException(); } @@ -38456,6 +42571,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new BindingsNotRewrittenException(); } @@ -38470,6 +42586,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new BindingsNotRewrittenException(); } @@ -38484,6 +42601,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new BindingsNotRewrittenException(); } @@ -38498,6 +42616,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) @@ -38514,6 +42633,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) @@ -38530,6 +42650,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) @@ -38546,6 +42667,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) @@ -38562,6 +42684,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) @@ -38578,6 +42701,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) @@ -38594,6 +42718,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) @@ -38610,6 +42735,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) @@ -38626,6 +42752,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) @@ -38642,6 +42769,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) @@ -38658,6 +42786,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) @@ -38674,6 +42803,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) @@ -38690,6 +42820,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) @@ -38706,6 +42837,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) @@ -38722,6 +42854,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) @@ -38738,6 +42871,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) @@ -38754,6 +42888,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) @@ -38770,6 +42905,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) @@ -38786,6 +42922,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) @@ -38802,6 +42939,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) @@ -38818,6 +42956,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) @@ -38834,6 +42973,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) @@ -38850,6 +42990,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) @@ -38866,12 +43007,481 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES20.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES20.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES20.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES20.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES20.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES20.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES20.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES20.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES20.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES20.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES20.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES20.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES20.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES20.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES20.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES20.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES20.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES20.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES20.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES20.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// @@ -38905,7 +43515,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES20.TextureUnit texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES20.TextureUnit texCoordSet, OpenTK.Graphics.ES20.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38913,7 +43523,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES20.TextureUnit texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES20.TextureUnit texCoordSet, OpenTK.Graphics.ES20.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38921,7 +43531,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathTexGen(OpenTK.Graphics.ES20.TextureUnit texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.ES20.TextureUnit texCoordSet, OpenTK.Graphics.ES20.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38956,7 +43566,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES20.TextureUnit texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES20.TextureUnit texCoordSet, OpenTK.Graphics.ES20.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38964,7 +43574,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES20.TextureUnit texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES20.TextureUnit texCoordSet, OpenTK.Graphics.ES20.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38972,7 +43582,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static unsafe void GetPathTexGen(OpenTK.Graphics.ES20.TextureUnit texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.ES20.TextureUnit texCoordSet, OpenTK.Graphics.ES20.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -38989,6 +43599,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES20.All programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.ES20.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } @@ -39008,6 +43619,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES20.All programInterface, Int32 index, Int32 propCount, ref OpenTK.Graphics.ES20.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } @@ -39027,6 +43639,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.ES20.All programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.ES20.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } @@ -39048,6 +43661,64 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] + public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES20.ProgramInterface programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.ES20.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// Retrieve values for multiple properties of a single active resource within a program object + /// + /// + /// The name of a program object whose resources to query. + /// + /// + /// A token identifying the interface within program containing the resource named name. + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] + [CLSCompliant(false)] + public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES20.ProgramInterface programInterface, Int32 index, Int32 propCount, ref OpenTK.Graphics.ES20.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// Retrieve values for multiple properties of a single active resource within a program object + /// + /// + /// The name of a program object whose resources to query. + /// + /// + /// A token identifying the interface within program containing the resource named name. + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] + [CLSCompliant(false)] + public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.ES20.ProgramInterface programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.ES20.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// Retrieve values for multiple properties of a single active resource within a program object + /// + /// + /// The name of a program object whose resources to query. + /// + /// + /// A token identifying the interface within program containing the resource named name. + /// + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] + [CLSCompliant(false)] public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES20.All programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.ES20.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] @@ -39065,6 +43736,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES20.All programInterface, UInt32 index, Int32 propCount, ref OpenTK.Graphics.ES20.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } @@ -39084,10 +43756,68 @@ namespace OpenTK.Graphics.ES20 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.ES20.All programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.ES20.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// Retrieve values for multiple properties of a single active resource within a program object + /// + /// + /// The name of a program object whose resources to query. + /// + /// + /// A token identifying the interface within program containing the resource named name. + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] + [CLSCompliant(false)] + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES20.ProgramInterface programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.ES20.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// Retrieve values for multiple properties of a single active resource within a program object + /// + /// + /// The name of a program object whose resources to query. + /// + /// + /// A token identifying the interface within program containing the resource named name. + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] + [CLSCompliant(false)] + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES20.ProgramInterface programInterface, UInt32 index, Int32 propCount, ref OpenTK.Graphics.ES20.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// Retrieve values for multiple properties of a single active resource within a program object + /// + /// + /// The name of a program object whose resources to query. + /// + /// + /// A token identifying the interface within program containing the resource named name. + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] + [CLSCompliant(false)] + public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.ES20.ProgramInterface programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.ES20.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleNV")] @@ -39240,6 +43970,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a symbolic constant indicating a GL capability. /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glIsEnablediNV")] [CLSCompliant(false)] public static bool IsEnabled(OpenTK.Graphics.ES20.All target, Int32 index) { throw new BindingsNotRewrittenException(); } @@ -39251,10 +43982,33 @@ namespace OpenTK.Graphics.ES20 /// Specifies a symbolic constant indicating a GL capability. /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glIsEnablediNV")] [CLSCompliant(false)] public static bool IsEnabled(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_viewport_array] + /// Test whether a capability is enabled + /// + /// + /// Specifies a symbolic constant indicating a GL capability. + /// + /// + [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glIsEnablediNV")] + [CLSCompliant(false)] + public static bool IsEnabled(OpenTK.Graphics.ES20.EnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_viewport_array] + /// Test whether a capability is enabled + /// + /// + /// Specifies a symbolic constant indicating a GL capability. + /// + /// + [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glIsEnablediNV")] + [CLSCompliant(false)] + public static bool IsEnabled(OpenTK.Graphics.ES20.EnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glIsFenceNV")] @@ -39572,6 +44326,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(genMode,colorFormat)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] public static void PathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All genMode, OpenTK.Graphics.ES20.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single[] coeffs) { throw new BindingsNotRewrittenException(); } @@ -39581,6 +44336,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(genMode,colorFormat)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] public static void PathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All genMode, OpenTK.Graphics.ES20.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] ref Single coeffs) { throw new BindingsNotRewrittenException(); } @@ -39590,10 +44346,38 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(genMode,colorFormat)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] public static unsafe void PathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All genMode, OpenTK.Graphics.ES20.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single* coeffs) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(genMode,colorFormat)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] + [CLSCompliant(false)] + public static void PathColorGen(OpenTK.Graphics.ES20.PathColor color, OpenTK.Graphics.ES20.PathGenMode genMode, OpenTK.Graphics.ES20.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single[] coeffs) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(genMode,colorFormat)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] + [CLSCompliant(false)] + public static void PathColorGen(OpenTK.Graphics.ES20.PathColor color, OpenTK.Graphics.ES20.PathGenMode genMode, OpenTK.Graphics.ES20.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] ref Single coeffs) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(genMode,colorFormat)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] + [CLSCompliant(false)] + public static unsafe void PathColorGen(OpenTK.Graphics.ES20.PathColor color, OpenTK.Graphics.ES20.PathGenMode genMode, OpenTK.Graphics.ES20.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single* coeffs) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// @@ -40139,9 +44923,15 @@ namespace OpenTK.Graphics.ES20 /// [requires: NV_path_rendering] /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathFogGenNV")] public static void PathFogGen(OpenTK.Graphics.ES20.All genMode) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathFogGenNV")] + public static void PathFogGen(OpenTK.Graphics.ES20.PathGenMode genMode) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// @@ -40151,9 +44941,10 @@ namespace OpenTK.Graphics.ES20 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, IntPtr fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, IntPtr fontName, OpenTK.Graphics.ES20.All fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40166,7 +44957,21 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T2[] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) + public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, IntPtr fontName, OpenTK.Graphics.ES20.PathFontStyle fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T2[] fontName, OpenTK.Graphics.ES20.All fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -40181,7 +44986,23 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T2[,] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) + public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T2[] fontName, OpenTK.Graphics.ES20.PathFontStyle fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T2[,] fontName, OpenTK.Graphics.ES20.All fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -40196,7 +45017,23 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) + public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T2[,] fontName, OpenTK.Graphics.ES20.PathFontStyle fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, OpenTK.Graphics.ES20.All fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -40211,7 +45048,23 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] ref T2 fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) + public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, OpenTK.Graphics.ES20.PathFontStyle fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] ref T2 fontName, OpenTK.Graphics.ES20.All fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -40226,7 +45079,23 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] ref T2 fontName, OpenTK.Graphics.ES20.PathFontStyle fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, IntPtr fontName, OpenTK.Graphics.ES20.All fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40239,7 +45108,21 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T2[] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, IntPtr fontName, OpenTK.Graphics.ES20.PathFontStyle fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T2[] fontName, OpenTK.Graphics.ES20.All fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -40254,7 +45137,23 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T2[,] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T2[] fontName, OpenTK.Graphics.ES20.PathFontStyle fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T2[,] fontName, OpenTK.Graphics.ES20.All fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -40269,7 +45168,23 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T2[,] fontName, OpenTK.Graphics.ES20.PathFontStyle fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, OpenTK.Graphics.ES20.All fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -40284,7 +45199,38 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] ref T2 fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, OpenTK.Graphics.ES20.PathFontStyle fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] ref T2 fontName, OpenTK.Graphics.ES20.All fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] ref T2 fontName, OpenTK.Graphics.ES20.PathFontStyle fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -40295,9 +45241,22 @@ namespace OpenTK.Graphics.ES20 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, IntPtr fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, IntPtr fontName, OpenTK.Graphics.ES20.All fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, IntPtr fontName, OpenTK.Graphics.ES20.All fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40308,7 +45267,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, IntPtr fontName, OpenTK.Graphics.ES20.PathFontStyle fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40319,7 +45278,33 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T1[] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) + public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, IntPtr fontName, OpenTK.Graphics.ES20.PathFontStyle fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T1[] fontName, OpenTK.Graphics.ES20.All fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) + where T1 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T1[] fontName, OpenTK.Graphics.ES20.All fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct { throw new BindingsNotRewrittenException(); } @@ -40332,7 +45317,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T1[] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) + public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T1[] fontName, OpenTK.Graphics.ES20.PathFontStyle fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct { throw new BindingsNotRewrittenException(); } @@ -40345,7 +45330,35 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T1[,] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) + public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T1[] fontName, OpenTK.Graphics.ES20.PathFontStyle fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) + where T1 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T1[,] fontName, OpenTK.Graphics.ES20.All fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) + where T1 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T1[,] fontName, OpenTK.Graphics.ES20.All fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct { throw new BindingsNotRewrittenException(); } @@ -40358,7 +45371,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T1[,] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) + public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T1[,] fontName, OpenTK.Graphics.ES20.PathFontStyle fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct { throw new BindingsNotRewrittenException(); } @@ -40371,7 +45384,35 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) + public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T1[,] fontName, OpenTK.Graphics.ES20.PathFontStyle fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) + where T1 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, OpenTK.Graphics.ES20.All fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) + where T1 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, OpenTK.Graphics.ES20.All fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct { throw new BindingsNotRewrittenException(); } @@ -40384,7 +45425,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) + public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, OpenTK.Graphics.ES20.PathFontStyle fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct { throw new BindingsNotRewrittenException(); } @@ -40397,7 +45438,35 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] ref T1 fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) + public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, OpenTK.Graphics.ES20.PathFontStyle fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) + where T1 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] ref T1 fontName, OpenTK.Graphics.ES20.All fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) + where T1 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] ref T1 fontName, OpenTK.Graphics.ES20.All fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct { throw new BindingsNotRewrittenException(); } @@ -40410,7 +45479,20 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] ref T1 fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) + public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] ref T1 fontName, OpenTK.Graphics.ES20.PathFontStyle fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) + where T1 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] ref T1 fontName, OpenTK.Graphics.ES20.PathFontStyle fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct { throw new BindingsNotRewrittenException(); } @@ -40424,9 +45506,10 @@ namespace OpenTK.Graphics.ES20 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, OpenTK.Graphics.ES20.All fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40438,9 +45521,61 @@ namespace OpenTK.Graphics.ES20 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, OpenTK.Graphics.ES20.All fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] + [CLSCompliant(false)] + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, OpenTK.Graphics.ES20.All fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] + [CLSCompliant(false)] + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, OpenTK.Graphics.ES20.All fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] + [CLSCompliant(false)] + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, OpenTK.Graphics.ES20.All fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -40456,7 +45591,21 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES20.PathFontTarget fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, OpenTK.Graphics.ES20.PathFontStyle fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] + [CLSCompliant(false)] + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES20.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, OpenTK.Graphics.ES20.PathFontStyle fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -40472,7 +45621,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES20.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, OpenTK.Graphics.ES20.PathFontStyle fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -40488,7 +45637,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES20.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, OpenTK.Graphics.ES20.PathFontStyle fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -40504,7 +45653,9 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES20.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, OpenTK.Graphics.ES20.PathFontStyle fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40516,9 +45667,76 @@ namespace OpenTK.Graphics.ES20 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, OpenTK.Graphics.ES20.All fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] + [CLSCompliant(false)] + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, OpenTK.Graphics.ES20.All fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] + [CLSCompliant(false)] + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, OpenTK.Graphics.ES20.All fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] + [CLSCompliant(false)] + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, OpenTK.Graphics.ES20.All fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] + [CLSCompliant(false)] + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, OpenTK.Graphics.ES20.All fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -40534,7 +45752,21 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES20.PathFontTarget fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, OpenTK.Graphics.ES20.PathFontStyle fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] + [CLSCompliant(false)] + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES20.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, OpenTK.Graphics.ES20.PathFontStyle fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -40550,7 +45782,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES20.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, OpenTK.Graphics.ES20.PathFontStyle fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -40566,7 +45798,23 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES20.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, OpenTK.Graphics.ES20.PathFontStyle fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] + [CLSCompliant(false)] + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES20.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, OpenTK.Graphics.ES20.PathFontStyle fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -40581,9 +45829,10 @@ namespace OpenTK.Graphics.ES20 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, OpenTK.Graphics.ES20.All fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40596,9 +45845,67 @@ namespace OpenTK.Graphics.ES20 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, OpenTK.Graphics.ES20.All fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + where T2 : struct + where T6 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// [length: COMPSIZE(numGlyphs,type,charcodes)] + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] + [CLSCompliant(false)] + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, OpenTK.Graphics.ES20.All fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + where T2 : struct + where T6 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// [length: COMPSIZE(numGlyphs,type,charcodes)] + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] + [CLSCompliant(false)] + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, OpenTK.Graphics.ES20.All fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + where T2 : struct + where T6 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// [length: COMPSIZE(numGlyphs,type,charcodes)] + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] + [CLSCompliant(false)] + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, OpenTK.Graphics.ES20.All fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -40616,7 +45923,22 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES20.PathFontTarget fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, OpenTK.Graphics.ES20.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.PathElementType type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES20.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// [length: COMPSIZE(numGlyphs,type,charcodes)] + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] + [CLSCompliant(false)] + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES20.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, OpenTK.Graphics.ES20.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.PathElementType type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.ES20.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -40634,7 +45956,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES20.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, OpenTK.Graphics.ES20.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.PathElementType type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.ES20.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -40652,7 +45974,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES20.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, OpenTK.Graphics.ES20.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.PathElementType type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.ES20.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -40670,7 +45992,10 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES20.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, OpenTK.Graphics.ES20.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.PathElementType type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.ES20.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + where T2 : struct + where T6 : struct + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40683,9 +46008,83 @@ namespace OpenTK.Graphics.ES20 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, OpenTK.Graphics.ES20.All fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// [length: COMPSIZE(numGlyphs,type,charcodes)] + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] + [CLSCompliant(false)] + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, OpenTK.Graphics.ES20.All fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + where T2 : struct + where T6 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// [length: COMPSIZE(numGlyphs,type,charcodes)] + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] + [CLSCompliant(false)] + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, OpenTK.Graphics.ES20.All fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + where T2 : struct + where T6 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// [length: COMPSIZE(numGlyphs,type,charcodes)] + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] + [CLSCompliant(false)] + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, OpenTK.Graphics.ES20.All fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + where T2 : struct + where T6 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// [length: COMPSIZE(numGlyphs,type,charcodes)] + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] + [CLSCompliant(false)] + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, OpenTK.Graphics.ES20.All fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -40703,7 +46102,22 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES20.PathFontTarget fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, OpenTK.Graphics.ES20.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.PathElementType type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES20.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// [length: COMPSIZE(numGlyphs,type,charcodes)] + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] + [CLSCompliant(false)] + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES20.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, OpenTK.Graphics.ES20.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.PathElementType type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.ES20.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -40721,7 +46135,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES20.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, OpenTK.Graphics.ES20.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.PathElementType type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.ES20.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -40739,7 +46153,25 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES20.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, OpenTK.Graphics.ES20.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.PathElementType type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.ES20.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + where T2 : struct + where T6 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// [length: COMPSIZE(numGlyphs,type,charcodes)] + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] + [CLSCompliant(false)] + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES20.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, OpenTK.Graphics.ES20.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.PathElementType type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.ES20.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -41060,6 +46492,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfNV")] [CLSCompliant(false)] public static void PathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, Single value) { throw new BindingsNotRewrittenException(); } @@ -41070,12 +46503,30 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfNV")] [CLSCompliant(false)] + public static void PathParameter(Int32 path, OpenTK.Graphics.ES20.PathParameter pname, Single value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfNV")] + [CLSCompliant(false)] public static void PathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, Single value) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfNV")] + [CLSCompliant(false)] + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES20.PathParameter pname, Single value) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] public static void PathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } @@ -41084,6 +46535,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } @@ -41094,7 +46546,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.ES20.PathParameter pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41102,12 +46554,47 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] + public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.ES20.PathParameter pname, [CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] + [CLSCompliant(false)] + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] + [CLSCompliant(false)] public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] + [CLSCompliant(false)] + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES20.PathParameter pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] + [CLSCompliant(false)] + public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.ES20.PathParameter pname, [CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameteriNV")] [CLSCompliant(false)] public static void PathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } @@ -41118,12 +46605,30 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameteriNV")] [CLSCompliant(false)] + public static void PathParameter(Int32 path, OpenTK.Graphics.ES20.PathParameter pname, Int32 value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameteriNV")] + [CLSCompliant(false)] public static void PathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameteriNV")] + [CLSCompliant(false)] + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES20.PathParameter pname, Int32 value) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] public static void PathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } @@ -41132,6 +46637,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } @@ -41142,7 +46648,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.ES20.PathParameter pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41150,8 +46656,42 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] + public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.ES20.PathParameter pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] + [CLSCompliant(false)] + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] + [CLSCompliant(false)] public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] + [CLSCompliant(false)] + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES20.PathParameter pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] + [CLSCompliant(false)] + public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.ES20.PathParameter pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// @@ -41197,6 +46737,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: length] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.ES20.All format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new BindingsNotRewrittenException(); } @@ -41206,6 +46747,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: length] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.ES20.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] pathString) @@ -41217,6 +46759,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: length] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.ES20.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] pathString) @@ -41228,6 +46771,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: length] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.ES20.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] pathString) @@ -41239,6 +46783,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: length] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.ES20.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 pathString) @@ -41252,6 +46797,60 @@ namespace OpenTK.Graphics.ES20 /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] + public static void PathString(Int32 path, OpenTK.Graphics.ES20.PathStringFormat format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: length] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] + [CLSCompliant(false)] + public static void PathString(Int32 path, OpenTK.Graphics.ES20.PathStringFormat format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] pathString) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: length] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] + [CLSCompliant(false)] + public static void PathString(Int32 path, OpenTK.Graphics.ES20.PathStringFormat format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] pathString) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: length] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] + [CLSCompliant(false)] + public static void PathString(Int32 path, OpenTK.Graphics.ES20.PathStringFormat format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] pathString) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: length] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] + [CLSCompliant(false)] + public static void PathString(Int32 path, OpenTK.Graphics.ES20.PathStringFormat format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 pathString) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: length] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] + [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.ES20.All format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] @@ -41259,6 +46858,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: length] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.ES20.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] pathString) @@ -41270,6 +46870,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: length] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.ES20.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] pathString) @@ -41281,6 +46882,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: length] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.ES20.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] pathString) @@ -41292,12 +46894,66 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: length] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.ES20.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 pathString) where T3 : struct { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: length] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] + [CLSCompliant(false)] + public static void PathString(UInt32 path, OpenTK.Graphics.ES20.PathStringFormat format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: length] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] + [CLSCompliant(false)] + public static void PathString(UInt32 path, OpenTK.Graphics.ES20.PathStringFormat format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] pathString) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: length] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] + [CLSCompliant(false)] + public static void PathString(UInt32 path, OpenTK.Graphics.ES20.PathStringFormat format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] pathString) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: length] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] + [CLSCompliant(false)] + public static void PathString(UInt32 path, OpenTK.Graphics.ES20.PathStringFormat format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] pathString) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: length] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] + [CLSCompliant(false)] + public static void PathString(UInt32 path, OpenTK.Graphics.ES20.PathStringFormat format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 pathString) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// @@ -41857,6 +47513,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(genMode,components)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] public static void PathTexGen(OpenTK.Graphics.ES20.All texCoordSet, OpenTK.Graphics.ES20.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single[] coeffs) { throw new BindingsNotRewrittenException(); } @@ -41866,6 +47523,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(genMode,components)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] public static void PathTexGen(OpenTK.Graphics.ES20.All texCoordSet, OpenTK.Graphics.ES20.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] ref Single coeffs) { throw new BindingsNotRewrittenException(); } @@ -41875,10 +47533,38 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(genMode,components)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] public static unsafe void PathTexGen(OpenTK.Graphics.ES20.All texCoordSet, OpenTK.Graphics.ES20.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single* coeffs) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(genMode,components)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] + [CLSCompliant(false)] + public static void PathTexGen(OpenTK.Graphics.ES20.PathColor texCoordSet, OpenTK.Graphics.ES20.PathGenMode genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single[] coeffs) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(genMode,components)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] + [CLSCompliant(false)] + public static void PathTexGen(OpenTK.Graphics.ES20.PathColor texCoordSet, OpenTK.Graphics.ES20.PathGenMode genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] ref Single coeffs) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(genMode,components)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] + [CLSCompliant(false)] + public static unsafe void PathTexGen(OpenTK.Graphics.ES20.PathColor texCoordSet, OpenTK.Graphics.ES20.PathGenMode genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single* coeffs) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// @@ -43337,6 +49023,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } @@ -43350,6 +49037,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } @@ -43363,6 +49051,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } @@ -43376,6 +49065,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } @@ -43389,6 +49079,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } @@ -43402,6 +49093,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } @@ -43415,6 +49107,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -43430,6 +49123,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -43445,6 +49139,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -43460,6 +49155,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -43475,6 +49171,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -43490,6 +49187,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -43505,6 +49203,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -43520,6 +49219,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -43535,6 +49235,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -43550,6 +49251,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -43565,6 +49267,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -43580,6 +49283,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -43595,6 +49299,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -43610,6 +49315,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -43625,6 +49331,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -43640,6 +49347,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -43655,6 +49363,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -43670,6 +49379,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -43685,6 +49395,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -43700,6 +49411,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -43715,6 +49427,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -43730,6 +49443,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -43745,6 +49459,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -43760,16 +49475,456 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathNV")] [CLSCompliant(false)] public static void StencilFillPath(Int32 path, OpenTK.Graphics.ES20.All fillMode, Int32 mask) { throw new BindingsNotRewrittenException(); } @@ -43780,8 +49935,25 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathNV")] [CLSCompliant(false)] + public static void StencilFillPath(Int32 path, OpenTK.Graphics.ES20.PathFillMode fillMode, Int32 mask) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathNV")] + [CLSCompliant(false)] public static void StencilFillPath(UInt32 path, OpenTK.Graphics.ES20.All fillMode, UInt32 mask) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathNV")] + [CLSCompliant(false)] + public static void StencilFillPath(UInt32 path, OpenTK.Graphics.ES20.PathFillMode fillMode, UInt32 mask) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// @@ -43791,6 +49963,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } @@ -43804,6 +49977,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } @@ -43817,6 +49991,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } @@ -43830,6 +50005,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } @@ -43843,6 +50019,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } @@ -43856,6 +50033,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } @@ -43869,6 +50047,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -43884,6 +50063,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -43899,6 +50079,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -43914,6 +50095,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -43929,6 +50111,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -43944,6 +50127,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -43959,6 +50143,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -43974,6 +50159,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -43989,6 +50175,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -44004,6 +50191,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -44019,6 +50207,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -44034,6 +50223,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -44049,6 +50239,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -44064,6 +50255,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -44079,6 +50271,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -44094,6 +50287,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -44109,6 +50303,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -44124,6 +50319,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -44139,6 +50335,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -44154,6 +50351,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -44169,6 +50367,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -44184,6 +50383,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -44199,6 +50399,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -44214,12 +50415,451 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// @@ -45239,6 +51879,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } @@ -45248,6 +51889,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } @@ -45257,6 +51899,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] public static unsafe void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } @@ -45268,6 +51911,34 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] + public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] + [CLSCompliant(false)] + public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] + [CLSCompliant(false)] + public static unsafe void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(transformType)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] + [CLSCompliant(false)] public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] @@ -45275,6 +51946,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } @@ -45284,10 +51956,38 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] public static unsafe void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] + [CLSCompliant(false)] + public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] + [CLSCompliant(false)] + public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] + [CLSCompliant(false)] + public static unsafe void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES20.PathTransformType transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object /// @@ -46276,6 +52976,22 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_clip_space_w_scaling] + /// + /// + /// + [AutoGenerated(Category = "NV_clip_space_w_scaling", Version = "", EntryPoint = "glViewportPositionWScaleNV")] + [CLSCompliant(false)] + public static void ViewportPositionWScale(Int32 index, Single xcoeff, Single ycoeff) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_clip_space_w_scaling] + /// + /// + /// + [AutoGenerated(Category = "NV_clip_space_w_scaling", Version = "", EntryPoint = "glViewportPositionWScaleNV")] + [CLSCompliant(false)] + public static void ViewportPositionWScale(UInt32 index, Single xcoeff, Single ycoeff) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_viewport_swizzle] /// /// @@ -46516,6 +53232,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies how the red, green, blue, and alpha destination blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha. ConstantColor, OneMinusConstantColor, ConstantAlpha, and OneMinusConstantAlpha. The initial value is Zero. /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciOES")] [CLSCompliant(false)] public static void BlendFunc(Int32 buf, OpenTK.Graphics.ES20.All src, OpenTK.Graphics.ES20.All dst) { throw new BindingsNotRewrittenException(); } @@ -46532,8 +53249,37 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciOES")] [CLSCompliant(false)] + public static void BlendFunc(Int32 buf, OpenTK.Graphics.ES20.BlendingFactor src, OpenTK.Graphics.ES20.BlendingFactor dst) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_draw_buffers_indexed] + /// Specify pixel arithmetic + /// + /// + /// Specifies how the red, green, blue, and alpha source blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha, ConstantColor, OneMinusConstantColor, ConstantAlpha, OneMinusConstantAlpha, and SrcAlphaSaturate. The initial value is One. + /// + /// + /// 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. + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciOES")] + [CLSCompliant(false)] public static void BlendFunc(UInt32 buf, OpenTK.Graphics.ES20.All src, OpenTK.Graphics.ES20.All dst) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_draw_buffers_indexed] + /// Specify pixel arithmetic + /// + /// + /// Specifies how the red, green, blue, and alpha source blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha, ConstantColor, OneMinusConstantColor, ConstantAlpha, OneMinusConstantAlpha, and SrcAlphaSaturate. The initial value is One. + /// + /// + /// 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 = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciOES")] + [CLSCompliant(false)] + public static void BlendFunc(UInt32 buf, OpenTK.Graphics.ES20.BlendingFactor src, OpenTK.Graphics.ES20.BlendingFactor dst) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_draw_buffers_indexed] /// Specify pixel arithmetic for RGB and alpha components separately /// @@ -46552,6 +53298,7 @@ namespace OpenTK.Graphics.ES20 /// /// Specified how the alpha destination blending factor is computed. The same symbolic constants are accepted as for dstRGB. The initial value is Zero. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiOES")] [CLSCompliant(false)] public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.ES20.All srcRGB, OpenTK.Graphics.ES20.All dstRGB, OpenTK.Graphics.ES20.All srcAlpha, OpenTK.Graphics.ES20.All dstAlpha) { throw new BindingsNotRewrittenException(); } @@ -46576,8 +53323,53 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiOES")] [CLSCompliant(false)] + public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.ES20.BlendingFactor srcRGB, OpenTK.Graphics.ES20.BlendingFactor dstRGB, OpenTK.Graphics.ES20.BlendingFactor srcAlpha, OpenTK.Graphics.ES20.BlendingFactor dstAlpha) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_draw_buffers_indexed] + /// Specify pixel arithmetic for RGB and alpha components separately + /// + /// + /// Specifies how the red, green, and blue blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha, ConstantColor, OneMinusConstantColor, ConstantAlpha, OneMinusConstantAlpha, and SrcAlphaSaturate. The initial value is One. + /// + /// + /// Specifies how the red, green, and blue blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha, ConstantColor, OneMinusConstantColor, ConstantAlpha, OneMinusConstantAlpha, and SrcAlphaSaturate. The initial value is One. + /// + /// + /// Specifies how the red, green, and blue 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. + /// + /// + /// Specified how the alpha source blending factor is computed. The same symbolic constants are accepted as for srcRGB. The initial value is One. + /// + /// + /// Specified how the alpha destination blending factor is computed. The same symbolic constants are accepted as for dstRGB. The initial value is Zero. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiOES")] + [CLSCompliant(false)] public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.ES20.All srcRGB, OpenTK.Graphics.ES20.All dstRGB, OpenTK.Graphics.ES20.All srcAlpha, OpenTK.Graphics.ES20.All dstAlpha) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_draw_buffers_indexed] + /// Specify pixel arithmetic for RGB and alpha components separately + /// + /// + /// Specifies how the red, green, and blue blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha, ConstantColor, OneMinusConstantColor, ConstantAlpha, OneMinusConstantAlpha, and SrcAlphaSaturate. The initial value is One. + /// + /// + /// Specifies how the red, green, and blue blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha, ConstantColor, OneMinusConstantColor, ConstantAlpha, OneMinusConstantAlpha, and SrcAlphaSaturate. The initial value is One. + /// + /// + /// Specifies how the red, green, and blue 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. + /// + /// + /// Specified how the alpha source blending factor is computed. The same symbolic constants are accepted as for srcRGB. The initial value is One. + /// + /// + /// Specified how the alpha destination blending factor is computed. The same symbolic constants are accepted as for dstRGB. The initial value is Zero. + /// + [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiOES")] + [CLSCompliant(false)] + public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.ES20.BlendingFactor srcRGB, OpenTK.Graphics.ES20.BlendingFactor dstRGB, OpenTK.Graphics.ES20.BlendingFactor srcAlpha, OpenTK.Graphics.ES20.BlendingFactor dstAlpha) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_draw_buffers_indexed] /// Enable and disable writing of frame buffer color components /// @@ -47223,7 +54015,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] - public static void CompressedTexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } + public static void CompressedTexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -47263,7 +54055,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] [CLSCompliant(false)] - public static void CompressedTexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[] data) + public static void CompressedTexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[] data) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -47305,7 +54097,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] [CLSCompliant(false)] - public static void CompressedTexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,] data) + public static void CompressedTexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,] data) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -47347,7 +54139,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] [CLSCompliant(false)] - public static void CompressedTexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,,] data) + public static void CompressedTexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,,] data) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -47388,7 +54180,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] - public static void CompressedTexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T10 data) + public static void CompressedTexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T10 data) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -47440,6 +54232,7 @@ namespace OpenTK.Graphics.ES20 /// /// The depth of the region to be copied. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_copy_image", Version = "", EntryPoint = "glCopyImageSubDataOES")] [CLSCompliant(false)] public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.ES20.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.ES20.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } @@ -47494,8 +54287,113 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_copy_image", Version = "", EntryPoint = "glCopyImageSubDataOES")] [CLSCompliant(false)] + public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.ES20.CopyBufferSubDataTarget srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.ES20.CopyBufferSubDataTarget dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_copy_image] + /// Perform a raw data copy between two images + /// + /// + /// The name of a texture or renderbuffer object from which to copy. + /// + /// + /// The target representing the namespace of the source name srcName. + /// + /// + /// The mipmap level to read from the source. + /// + /// + /// The X coordinate of the left edge of the souce region to copy. + /// + /// + /// The Y coordinate of the top edge of the souce region to copy. + /// + /// + /// The Z coordinate of the near edge of the souce region to copy. + /// + /// + /// The name of a texture or renderbuffer object to which to copy. + /// + /// + /// The target representing the namespace of the destination name dstName. + /// + /// + /// The X coordinate of the left edge of the destination region. + /// + /// + /// The X coordinate of the left edge of the destination region. + /// + /// + /// The Y coordinate of the top edge of the destination region. + /// + /// + /// The Z coordinate of the near edge of the destination region. + /// + /// + /// The width of the region to be copied. + /// + /// + /// The height of the region to be copied. + /// + /// + /// The depth of the region to be copied. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "OES_copy_image", Version = "", EntryPoint = "glCopyImageSubDataOES")] + [CLSCompliant(false)] public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.ES20.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.ES20.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_copy_image] + /// Perform a raw data copy between two images + /// + /// + /// The name of a texture or renderbuffer object from which to copy. + /// + /// + /// The target representing the namespace of the source name srcName. + /// + /// + /// The mipmap level to read from the source. + /// + /// + /// The X coordinate of the left edge of the souce region to copy. + /// + /// + /// The Y coordinate of the top edge of the souce region to copy. + /// + /// + /// The Z coordinate of the near edge of the souce region to copy. + /// + /// + /// The name of a texture or renderbuffer object to which to copy. + /// + /// + /// The target representing the namespace of the destination name dstName. + /// + /// + /// The X coordinate of the left edge of the destination region. + /// + /// + /// The X coordinate of the left edge of the destination region. + /// + /// + /// The Y coordinate of the top edge of the destination region. + /// + /// + /// The Z coordinate of the near edge of the destination region. + /// + /// + /// The width of the region to be copied. + /// + /// + /// The height of the region to be copied. + /// + /// + /// The depth of the region to be copied. + /// + [AutoGenerated(Category = "OES_copy_image", Version = "", EntryPoint = "glCopyImageSubDataOES")] + [CLSCompliant(false)] + public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.ES20.CopyBufferSubDataTarget srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.ES20.CopyBufferSubDataTarget dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_3D] /// Copy a three-dimensional texture subimage /// @@ -47792,6 +54690,7 @@ namespace OpenTK.Graphics.ES20 /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glDisableiOES")] [CLSCompliant(false)] public static void Disable(OpenTK.Graphics.ES20.All target, Int32 index) { throw new BindingsNotRewrittenException(); } @@ -47799,10 +54698,25 @@ namespace OpenTK.Graphics.ES20 /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glDisableiOES")] [CLSCompliant(false)] public static void Disable(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_draw_buffers_indexed|OES_viewport_array] + /// + /// + [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glDisableiOES")] + [CLSCompliant(false)] + public static void Disable(OpenTK.Graphics.ES20.EnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_draw_buffers_indexed|OES_viewport_array] + /// + /// + [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glDisableiOES")] + [CLSCompliant(false)] + public static void Disable(OpenTK.Graphics.ES20.EnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset /// @@ -48928,6 +55842,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a symbolic constant indicating a GL capability. /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glEnableiOES")] [CLSCompliant(false)] public static void Enable(OpenTK.Graphics.ES20.All target, Int32 index) { throw new BindingsNotRewrittenException(); } @@ -48939,10 +55854,33 @@ namespace OpenTK.Graphics.ES20 /// Specifies a symbolic constant indicating a GL capability. /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glEnableiOES")] [CLSCompliant(false)] public static void Enable(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_draw_buffers_indexed|OES_viewport_array] + /// Enable or disable server-side GL capabilities + /// + /// + /// Specifies a symbolic constant indicating a GL capability. + /// + /// + [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glEnableiOES")] + [CLSCompliant(false)] + public static void Enable(OpenTK.Graphics.ES20.EnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_draw_buffers_indexed|OES_viewport_array] + /// Enable or disable server-side GL capabilities + /// + /// + /// Specifies a symbolic constant indicating a GL capability. + /// + /// + [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glEnableiOES")] + [CLSCompliant(false)] + public static void Enable(OpenTK.Graphics.ES20.EnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_3D] /// /// @@ -48950,6 +55888,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glFramebufferTexture3DOES")] [CLSCompliant(false)] public static void FramebufferTexture3D(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, Int32 texture, Int32 level, Int32 zoffset) { throw new BindingsNotRewrittenException(); } @@ -48961,10 +55900,33 @@ namespace OpenTK.Graphics.ES20 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glFramebufferTexture3DOES")] [CLSCompliant(false)] public static void FramebufferTexture3D(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, UInt32 texture, Int32 level, Int32 zoffset) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_3D] + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glFramebufferTexture3DOES")] + [CLSCompliant(false)] + public static void FramebufferTexture3D(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferAttachment attachment, OpenTK.Graphics.ES20.TextureTarget textarget, Int32 texture, Int32 level, Int32 zoffset) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_3D] + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glFramebufferTexture3DOES")] + [CLSCompliant(false)] + public static void FramebufferTexture3D(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferAttachment attachment, OpenTK.Graphics.ES20.TextureTarget textarget, UInt32 texture, Int32 level, Int32 zoffset) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object /// @@ -49022,7 +55984,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureOES")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: OES_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -49041,7 +56003,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureOES")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -49229,6 +56191,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } @@ -49237,6 +56200,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } @@ -49245,6 +56209,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] public static unsafe void GetFloat(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } @@ -49253,6 +56218,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } @@ -49261,6 +56227,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } @@ -49269,10 +56236,59 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] public static unsafe void GetFloat(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_viewport_array] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] + [CLSCompliant(false)] + public static void GetFloat(OpenTK.Graphics.ES20.TypeEnum target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_viewport_array] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] + [CLSCompliant(false)] + public static void GetFloat(OpenTK.Graphics.ES20.TypeEnum target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_viewport_array] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] + [CLSCompliant(false)] + public static unsafe void GetFloat(OpenTK.Graphics.ES20.TypeEnum target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_viewport_array] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] + [CLSCompliant(false)] + public static void GetFloat(OpenTK.Graphics.ES20.TypeEnum target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_viewport_array] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] + [CLSCompliant(false)] + public static void GetFloat(OpenTK.Graphics.ES20.TypeEnum target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_viewport_array] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] + [CLSCompliant(false)] + public static unsafe void GetFloat(OpenTK.Graphics.ES20.TypeEnum target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source /// @@ -49995,6 +57011,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -50003,6 +57020,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -50011,6 +57029,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } @@ -50021,12 +57040,38 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] + [CLSCompliant(false)] + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] + [CLSCompliant(false)] + public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] + [CLSCompliant(false)] public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -50035,6 +57080,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } @@ -50043,6 +57089,31 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] + [CLSCompliant(false)] + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] + [CLSCompliant(false)] + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] + [CLSCompliant(false)] + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivOES")] [CLSCompliant(false)] public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } @@ -50051,6 +57122,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivOES")] [CLSCompliant(false)] public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } @@ -50059,10 +57131,35 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivOES")] [CLSCompliant(false)] public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivOES")] + [CLSCompliant(false)] + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivOES")] + [CLSCompliant(false)] + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivOES")] + [CLSCompliant(false)] + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_border_clamp] /// /// @@ -50172,6 +57269,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a symbolic constant indicating a GL capability. /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glIsEnablediOES")] [CLSCompliant(false)] public static bool IsEnabled(OpenTK.Graphics.ES20.All target, Int32 index) { throw new BindingsNotRewrittenException(); } @@ -50183,10 +57281,33 @@ namespace OpenTK.Graphics.ES20 /// Specifies a symbolic constant indicating a GL capability. /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glIsEnablediOES")] [CLSCompliant(false)] public static bool IsEnabled(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_draw_buffers_indexed|OES_viewport_array] + /// Test whether a capability is enabled + /// + /// + /// Specifies a symbolic constant indicating a GL capability. + /// + /// + [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glIsEnablediOES")] + [CLSCompliant(false)] + public static bool IsEnabled(OpenTK.Graphics.ES20.EnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_draw_buffers_indexed|OES_viewport_array] + /// Test whether a capability is enabled + /// + /// + /// Specifies a symbolic constant indicating a GL capability. + /// + /// + [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glIsEnablediOES")] + [CLSCompliant(false)] + public static bool IsEnabled(OpenTK.Graphics.ES20.EnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_vertex_array_object] /// Determine if a name corresponds to a vertex array object /// @@ -50216,9 +57337,22 @@ namespace OpenTK.Graphics.ES20 /// /// For glMapBuffer only, specifies the access policy, indicating whether it will be possible to read from, write to, or both read from and write to the buffer object's mapped data store. The symbolic constant must be ReadOnly, WriteOnly, or ReadWrite. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glMapBufferOES")] public static IntPtr MapBuffer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All access) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_mapbuffer] + /// Map a buffer object's data store + /// + /// + /// Specifies the target buffer object being mapped. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer or UniformBuffer. + /// + /// + /// For glMapBuffer only, specifies the access policy, indicating whether it will be possible to read from, write to, or both read from and write to the buffer object's mapped data store. The symbolic constant must be ReadOnly, WriteOnly, or ReadWrite. + /// + [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glMapBufferOES")] + public static IntPtr MapBuffer(OpenTK.Graphics.ES20.BufferTargetArb target, OpenTK.Graphics.ES20.BufferAccessArb access) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_sample_shading] /// Specifies minimum rate at which sample shaing takes place /// @@ -50237,9 +57371,22 @@ namespace OpenTK.Graphics.ES20 /// /// Specifies the new value for the parameter given by pname. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_tessellation_shader", Version = "", EntryPoint = "glPatchParameteriOES")] public static void PatchParameter(OpenTK.Graphics.ES20.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_tessellation_shader] + /// Specifies the parameters for patch primitives + /// + /// + /// Specifies the name of the parameter to set. The symbolc constants PatchVertices, PatchDefaultOuterLevel, and PatchDefaultInnerLevel are accepted. + /// + /// + /// Specifies the new value for the parameter given by pname. + /// + [AutoGenerated(Category = "OES_tessellation_shader", Version = "", EntryPoint = "glPatchParameteriOES")] + public static void PatchParameter(OpenTK.Graphics.ES20.PatchParameterName pname, Int32 value) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_primitive_bounding_box] /// /// @@ -50462,6 +57609,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } @@ -50470,6 +57618,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } @@ -50478,6 +57627,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } @@ -50488,12 +57638,38 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] + [CLSCompliant(false)] + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.SamplerParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] + [CLSCompliant(false)] + public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] + [CLSCompliant(false)] public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } @@ -50502,6 +57678,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } @@ -50510,6 +57687,31 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] + [CLSCompliant(false)] + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] + [CLSCompliant(false)] + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.SamplerParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] + [CLSCompliant(false)] + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivOES")] [CLSCompliant(false)] public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new BindingsNotRewrittenException(); } @@ -50518,6 +57720,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivOES")] [CLSCompliant(false)] public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new BindingsNotRewrittenException(); } @@ -50526,10 +57729,35 @@ namespace OpenTK.Graphics.ES20 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivOES")] [CLSCompliant(false)] public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivOES")] + [CLSCompliant(false)] + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.SamplerParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivOES")] + [CLSCompliant(false)] + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.SamplerParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivOES")] + [CLSCompliant(false)] + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.SamplerParameterName pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_viewport_array] /// Define the scissor box for multiple viewports /// @@ -50796,7 +58024,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferOES")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.All internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } + public static void TexBuffer(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.InternalFormat internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -50812,7 +58040,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferOES")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.All internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } + public static void TexBuffer(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.InternalFormat internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -50832,6 +58060,7 @@ namespace OpenTK.Graphics.ES20 /// /// Specifies the size of the range of the buffer's data store to attach. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] [CLSCompliant(false)] public static void TexBufferRange(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } @@ -50854,6 +58083,7 @@ namespace OpenTK.Graphics.ES20 /// /// Specifies the size of the range of the buffer's data store to attach. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] [CLSCompliant(false)] public static void TexBufferRange(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } @@ -50876,6 +58106,7 @@ namespace OpenTK.Graphics.ES20 /// /// Specifies the size of the range of the buffer's data store to attach. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] [CLSCompliant(false)] public static void TexBufferRange(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } @@ -50898,10 +58129,99 @@ namespace OpenTK.Graphics.ES20 /// /// Specifies the size of the range of the buffer's data store to attach. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] [CLSCompliant(false)] public static void TexBufferRange(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_buffer] + /// Bind a range of a buffer's data store to a buffer texture + /// + /// + /// Specifies the target of the operation and must be TextureBuffer. + /// + /// + /// Specifies the internal format of the data in the store belonging to buffer. + /// + /// + /// Specifies the name of the buffer object whose storage to attach to the active buffer texture. + /// + /// + /// Specifies the offset of the start of the range of the buffer's data store to attach. + /// + /// + /// Specifies the size of the range of the buffer's data store to attach. + /// + [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] + [CLSCompliant(false)] + public static void TexBufferRange(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.InternalFormat internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_buffer] + /// Bind a range of a buffer's data store to a buffer texture + /// + /// + /// Specifies the target of the operation and must be TextureBuffer. + /// + /// + /// Specifies the internal format of the data in the store belonging to buffer. + /// + /// + /// Specifies the name of the buffer object whose storage to attach to the active buffer texture. + /// + /// + /// Specifies the offset of the start of the range of the buffer's data store to attach. + /// + /// + /// Specifies the size of the range of the buffer's data store to attach. + /// + [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] + [CLSCompliant(false)] + public static void TexBufferRange(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.InternalFormat internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_buffer] + /// Bind a range of a buffer's data store to a buffer texture + /// + /// + /// Specifies the target of the operation and must be TextureBuffer. + /// + /// + /// Specifies the internal format of the data in the store belonging to buffer. + /// + /// + /// Specifies the name of the buffer object whose storage to attach to the active buffer texture. + /// + /// + /// Specifies the offset of the start of the range of the buffer's data store to attach. + /// + /// + /// Specifies the size of the range of the buffer's data store to attach. + /// + [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] + [CLSCompliant(false)] + public static void TexBufferRange(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.InternalFormat internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_buffer] + /// Bind a range of a buffer's data store to a buffer texture + /// + /// + /// Specifies the target of the operation and must be TextureBuffer. + /// + /// + /// Specifies the internal format of the data in the store belonging to buffer. + /// + /// + /// Specifies the name of the buffer object whose storage to attach to the active buffer texture. + /// + /// + /// Specifies the offset of the start of the range of the buffer's data store to attach. + /// + /// + /// Specifies the size of the range of the buffer's data store to attach. + /// + [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] + [CLSCompliant(false)] + public static void TexBufferRange(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.InternalFormat internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image /// @@ -51807,9 +59127,37 @@ namespace OpenTK.Graphics.ES20 /// /// Specifies whether the image will use identical sample locations and the same number of samples for all texels in the image, and the sample locations will not depend on the internal format or size of the image. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_storage_multisample_2d_array", Version = "", EntryPoint = "glTexStorage3DMultisampleOES")] public static void TexStorage3DMultisample(OpenTK.Graphics.ES20.All target, Int32 samples, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_storage_multisample_2d_array] + /// Specify storage for a two-dimensional multisample array texture + /// + /// + /// Specify the target of the operation. target must be Texture2DMultisampleArray or ProxyTexture2DMultisampleMultisample. + /// + /// + /// Specify the number of samples in the texture. + /// + /// + /// Specifies the sized internal format to be used to store texture image data. + /// + /// + /// Specifies the width of the texture, in texels. + /// + /// + /// Specifies the height of the texture, in texels. + /// + /// + /// Specifies the depth of the texture, in layers. + /// + /// + /// Specifies whether the image will use identical sample locations and the same number of samples for all texels in the image, and the sample locations will not depend on the internal format or size of the image. + /// + [AutoGenerated(Category = "OES_texture_storage_multisample_2d_array", Version = "", EntryPoint = "glTexStorage3DMultisampleOES")] + public static void TexStorage3DMultisample(OpenTK.Graphics.ES20.TextureTarget target, Int32 samples, OpenTK.Graphics.ES20.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage /// @@ -52058,7 +59406,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] - public static void TexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } + public static void TexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -52098,7 +59446,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] [CLSCompliant(false)] - public static void TexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) + public static void TexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -52140,7 +59488,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] [CLSCompliant(false)] - public static void TexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) + public static void TexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -52182,7 +59530,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] [CLSCompliant(false)] - public static void TexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) + public static void TexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -52223,7 +59571,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] - public static void TexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) + public static void TexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -52254,6 +59602,7 @@ namespace OpenTK.Graphics.ES20 /// /// Specifies the number of layers to include in the view. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_view", Version = "", EntryPoint = "glTextureViewOES")] [CLSCompliant(false)] public static void TextureView(Int32 texture, OpenTK.Graphics.ES20.All target, Int32 origtexture, OpenTK.Graphics.ES20.All internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new BindingsNotRewrittenException(); } @@ -52287,8 +59636,71 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_texture_view", Version = "", EntryPoint = "glTextureViewOES")] [CLSCompliant(false)] + public static void TextureView(Int32 texture, OpenTK.Graphics.ES20.TextureTarget target, Int32 origtexture, OpenTK.Graphics.ES20.InternalFormat internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_view] + /// Initialize a texture as a data alias of another texture's data store + /// + /// + /// Specifies the texture object to be initialized as a view. + /// + /// + /// Specifies the target to be used for the newly initialized texture. + /// + /// + /// Specifies the name of a texture object of which to make a view. + /// + /// + /// Specifies the internal format for the newly created view. + /// + /// + /// Specifies lowest level of detail of the view. + /// + /// + /// Specifies the number of levels of detail to include in the view. + /// + /// + /// Specifies the index of the first layer to include in the view. + /// + /// + /// Specifies the number of layers to include in the view. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "OES_texture_view", Version = "", EntryPoint = "glTextureViewOES")] + [CLSCompliant(false)] public static void TextureView(UInt32 texture, OpenTK.Graphics.ES20.All target, UInt32 origtexture, OpenTK.Graphics.ES20.All internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_view] + /// Initialize a texture as a data alias of another texture's data store + /// + /// + /// Specifies the texture object to be initialized as a view. + /// + /// + /// Specifies the target to be used for the newly initialized texture. + /// + /// + /// Specifies the name of a texture object of which to make a view. + /// + /// + /// Specifies the internal format for the newly created view. + /// + /// + /// Specifies lowest level of detail of the view. + /// + /// + /// Specifies the number of levels of detail to include in the view. + /// + /// + /// Specifies the index of the first layer to include in the view. + /// + /// + /// Specifies the number of layers to include in the view. + /// + [AutoGenerated(Category = "OES_texture_view", Version = "", EntryPoint = "glTextureViewOES")] + [CLSCompliant(false)] + public static void TextureView(UInt32 texture, OpenTK.Graphics.ES20.TextureTarget target, UInt32 origtexture, OpenTK.Graphics.ES20.InternalFormat internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_mapbuffer] /// [Obsolete("Use strongly-typed overload instead")] @@ -52558,7 +59970,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OVR_multiview_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTextureMultisampleMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } + public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview_multisampled_render_to_texture] /// @@ -52570,7 +59982,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OVR_multiview_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTextureMultisampleMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } + public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview] /// @@ -52605,7 +60017,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OVR_multiview", Version = "", EntryPoint = "glFramebufferTextureMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultiview(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } + public static void FramebufferTextureMultiview(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview] /// @@ -52616,7 +60028,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OVR_multiview", Version = "", EntryPoint = "glFramebufferTextureMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultiview(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } + public static void FramebufferTextureMultiview(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } } @@ -52660,15 +60072,14 @@ namespace OpenTK.Graphics.ES20 /// [requires: QCOM_tiled_rendering] /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glEndTilingQCOM")] - [CLSCompliant(false)] - public static void EndTiling(Int32 preserveMask) { throw new BindingsNotRewrittenException(); } + public static void EndTiling(OpenTK.Graphics.ES20.All preserveMask) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_tiled_rendering] /// [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glEndTilingQCOM")] - [CLSCompliant(false)] - public static void EndTiling(UInt32 preserveMask) { throw new BindingsNotRewrittenException(); } + public static void EndTiling(OpenTK.Graphics.ES20.BufferBitQcom preserveMask) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -52848,6 +60259,7 @@ namespace OpenTK.Graphics.ES20 /// /// [length: *length] /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } @@ -52857,6 +60269,7 @@ namespace OpenTK.Graphics.ES20 /// /// [length: *length] /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } @@ -52866,6 +60279,7 @@ namespace OpenTK.Graphics.ES20 /// /// [length: *length] /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] public static unsafe void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } @@ -52877,6 +60291,34 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] + public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES20.ShaderType shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get2] + /// + /// + /// [length: *length] + /// + [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] + public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES20.ShaderType shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get2] + /// + /// + /// [length: *length] + /// + [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] + public static unsafe void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES20.ShaderType shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get2] + /// + /// + /// [length: *length] + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] @@ -52884,6 +60326,7 @@ namespace OpenTK.Graphics.ES20 /// /// [length: *length] /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } @@ -52893,10 +60336,38 @@ namespace OpenTK.Graphics.ES20 /// /// [length: *length] /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] public static unsafe void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } + /// [requires: QCOM_extended_get2] + /// + /// + /// [length: *length] + /// + [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] + public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES20.ShaderType shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get2] + /// + /// + /// [length: *length] + /// + [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] + public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES20.ShaderType shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get2] + /// + /// + /// [length: *length] + /// + [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] + public static unsafe void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES20.ShaderType shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } + /// [requires: QCOM_extended_get2] /// [length: maxPrograms] /// @@ -53167,6 +60638,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] public static void ExtGetTexSubImage(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [OutAttribute] IntPtr texels) { throw new BindingsNotRewrittenException(); } @@ -53182,6 +60654,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] [CLSCompliant(false)] public static void ExtGetTexSubImage(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T10[] texels) @@ -53200,6 +60673,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] [CLSCompliant(false)] public static void ExtGetTexSubImage(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T10[,] texels) @@ -53218,6 +60692,7 @@ namespace OpenTK.Graphics.ES20 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] [CLSCompliant(false)] public static void ExtGetTexSubImage(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] T10[,,] texels) @@ -53236,11 +60711,98 @@ namespace OpenTK.Graphics.ES20 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] public static void ExtGetTexSubImage(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute] ref T10 texels) where T10 : struct { throw new BindingsNotRewrittenException(); } + /// [requires: QCOM_extended_get] + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] + public static void ExtGetTexSubImage(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [OutAttribute] IntPtr texels) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get] + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] + [CLSCompliant(false)] + public static void ExtGetTexSubImage(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute] T10[] texels) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get] + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] + [CLSCompliant(false)] + public static void ExtGetTexSubImage(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute] T10[,] texels) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get] + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] + [CLSCompliant(false)] + public static void ExtGetTexSubImage(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute] T10[,,] texels) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get] + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] + public static void ExtGetTexSubImage(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute] ref T10 texels) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + /// [requires: QCOM_extended_get] /// /// @@ -53486,9 +61048,10 @@ namespace OpenTK.Graphics.ES20 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glStartTilingQCOM")] [CLSCompliant(false)] - public static void StartTiling(Int32 x, Int32 y, Int32 width, Int32 height, Int32 preserveMask) { throw new BindingsNotRewrittenException(); } + public static void StartTiling(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.All preserveMask) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_tiled_rendering] /// @@ -53498,89 +61061,136 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glStartTilingQCOM")] [CLSCompliant(false)] - public static void StartTiling(UInt32 x, UInt32 y, UInt32 width, UInt32 height, UInt32 preserveMask) { throw new BindingsNotRewrittenException(); } + public static void StartTiling(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.BufferBitQcom preserveMask) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_tiled_rendering] + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glStartTilingQCOM")] + [CLSCompliant(false)] + public static void StartTiling(UInt32 x, UInt32 y, UInt32 width, UInt32 height, OpenTK.Graphics.ES20.All preserveMask) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_tiled_rendering] + /// + /// + /// + /// + /// + [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glStartTilingQCOM")] + [CLSCompliant(false)] + public static void StartTiling(UInt32 x, UInt32 y, UInt32 width, UInt32 height, OpenTK.Graphics.ES20.BufferBitQcom preserveMask) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_texture_foveated] + /// + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "QCOM_texture_foveated", Version = "", EntryPoint = "glTextureFoveationParametersQCOM")] + [CLSCompliant(false)] + public static void TextureFoveationParameters(Int32 texture, Int32 layer, Int32 focalPoint, Single focalX, Single focalY, Single gainX, Single gainY, Single foveaArea) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_texture_foveated] + /// + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "QCOM_texture_foveated", Version = "", EntryPoint = "glTextureFoveationParametersQCOM")] + [CLSCompliant(false)] + public static void TextureFoveationParameters(UInt32 texture, UInt32 layer, UInt32 focalPoint, Single focalX, Single focalY, Single gainX, Single gainY, Single foveaArea) { throw new BindingsNotRewrittenException(); } } [Slot(8)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glBeginPerfMonitorAMD(UInt32 monitor); - [Slot(96)] + [Slot(97)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeletePerfMonitorsAMD(Int32 n, [CountAttribute(Parameter = "n")] UInt32* monitors); - [Slot(154)] + [Slot(155)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEndPerfMonitorAMD(UInt32 monitor); - [Slot(198)] + [Slot(199)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGenPerfMonitorsAMD(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* monitors); - [Slot(263)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPerfMonitorCounterDataAMD(UInt32 monitor, System.Int32 pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten); [Slot(264)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetPerfMonitorCounterInfoAMD(UInt32 group, UInt32 counter, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data); + private static extern unsafe void glGetPerfMonitorCounterDataAMD(UInt32 monitor, System.Int32 pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten); [Slot(265)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPerfMonitorCountersAMD(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32* counters); + private static extern void glGetPerfMonitorCounterInfoAMD(UInt32 group, UInt32 counter, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data); [Slot(266)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPerfMonitorCounterStringAMD(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr counterString); + private static extern unsafe void glGetPerfMonitorCountersAMD(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32* counters); [Slot(267)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPerfMonitorGroupsAMD([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32* groups); + private static extern unsafe void glGetPerfMonitorCounterStringAMD(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr counterString); [Slot(268)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetPerfMonitorGroupsAMD([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32* groups); + [Slot(269)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetPerfMonitorGroupStringAMD(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr groupString); - [Slot(501)] + [Slot(522)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glSelectPerfMonitorCountersAMD(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32* counterList); [Slot(37)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glBlitFramebufferANGLE(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, System.Int32 mask, System.Int32 filter); - [Slot(123)] + [Slot(124)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawArraysInstancedANGLE(System.Int32 mode, Int32 first, Int32 count, Int32 primcount); - [Slot(133)] + [Slot(134)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawElementsInstancedANGLE(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount); - [Slot(308)] + [Slot(309)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetTranslatedShaderSourceANGLE(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] IntPtr source); - [Slot(482)] + [Slot(503)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glRenderbufferStorageMultisampleANGLE(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(622)] + [Slot(644)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribDivisorANGLE(UInt32 index, UInt32 divisor); [Slot(52)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern System.Int32 glClientWaitSyncAPPLE(IntPtr sync, System.Int32 flags, UInt64 timeout); - [Slot(69)] + [Slot(70)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glCopyTextureLevelsAPPLE(UInt32 destinationTexture, UInt32 sourceTexture, Int32 sourceBaseLevel, Int32 sourceLevelCount); - [Slot(104)] + [Slot(105)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDeleteSyncAPPLE(IntPtr sync); - [Slot(170)] + [Slot(171)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern IntPtr glFenceSyncAPPLE(System.Int32 condition, System.Int32 flags); - [Slot(230)] + [Slot(231)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetInteger64vAPPLE(System.Int32 pname, [OutAttribute] Int64* @params); - [Slot(297)] + [Slot(298)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetSyncivAPPLE(IntPtr sync, System.Int32 pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values); - [Slot(346)] + [Slot(347)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsSyncAPPLE(IntPtr sync); - [Slot(483)] + [Slot(504)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glRenderbufferStorageMultisampleAPPLE(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(488)] + [Slot(509)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glResolveMultisampleFramebufferAPPLE(); - [Slot(635)] + [Slot(658)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glWaitSyncAPPLE(IntPtr sync, System.Int32 flags, UInt64 timeout); [Slot(5)] @@ -53643,421 +61253,421 @@ namespace OpenTK.Graphics.ES20 [Slot(49)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glClearStencil(Int32 s); - [Slot(53)] + [Slot(54)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glColorMask(bool red, bool green, bool blue, bool alpha); - [Slot(56)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glCompileShader(UInt32 shader); [Slot(57)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glCompileShader(UInt32 shader); + [Slot(58)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glCompressedTexImage2D(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data); - [Slot(59)] + [Slot(60)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glCompressedTexSubImage2D(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, System.Int32 format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data); - [Slot(66)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glCopyTexImage2D(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border); [Slot(67)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glCopyTexSubImage2D(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height); - [Slot(80)] + private static extern void glCopyTexImage2D(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border); + [Slot(68)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int32 glCreateProgram(); + private static extern void glCopyTexSubImage2D(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height); [Slot(81)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int32 glCreateShader(System.Int32 type); - [Slot(84)] + private static extern Int32 glCreateProgram(); + [Slot(82)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glCullFace(System.Int32 mode); + private static extern Int32 glCreateShader(System.Int32 type); [Slot(85)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glCullFace(System.Int32 mode); + [Slot(86)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDebugMessageCallback(DebugProc callback, IntPtr userParam); - [Slot(87)] + [Slot(88)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDebugMessageControl(System.Int32 source, System.Int32 type, System.Int32 severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled); - [Slot(89)] + [Slot(90)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDebugMessageInsert(System.Int32 source, System.Int32 type, UInt32 id, System.Int32 severity, Int32 length, [CountAttribute(Computed = "buf,length")] IntPtr buf); - [Slot(91)] + [Slot(92)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* buffers); - [Slot(93)] + [Slot(94)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* framebuffers); - [Slot(98)] + [Slot(99)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDeleteProgram(UInt32 program); - [Slot(101)] + [Slot(102)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* renderbuffers); - [Slot(103)] + [Slot(104)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDeleteShader(UInt32 shader); - [Slot(105)] + [Slot(106)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures); - [Slot(107)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDepthFunc(System.Int32 func); [Slot(108)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glDepthFunc(System.Int32 func); + [Slot(109)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDepthMask(bool flag); - [Slot(111)] + [Slot(112)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDepthRangef(Single n, Single f); - [Slot(114)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDetachShader(UInt32 program, UInt32 shader); [Slot(115)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glDetachShader(UInt32 program, UInt32 shader); + [Slot(116)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDisable(System.Int32 cap); - [Slot(120)] + [Slot(121)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDisableVertexAttribArray(UInt32 index); - [Slot(122)] + [Slot(123)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawArrays(System.Int32 mode, Int32 first, Int32 count); - [Slot(130)] + [Slot(131)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawElements(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices); - [Slot(147)] + [Slot(148)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEnable(System.Int32 cap); - [Slot(152)] + [Slot(153)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEnableVertexAttribArray(UInt32 index); - [Slot(171)] + [Slot(172)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFinish(); - [Slot(173)] + [Slot(174)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFlush(); - [Slot(180)] + [Slot(181)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferRenderbuffer(System.Int32 target, System.Int32 attachment, System.Int32 renderbuffertarget, UInt32 renderbuffer); - [Slot(182)] + [Slot(183)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferTexture2D(System.Int32 target, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level); - [Slot(192)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFrontFace(System.Int32 mode); [Slot(193)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* buffers); + private static extern void glFrontFace(System.Int32 mode); [Slot(194)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* buffers); + [Slot(195)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glGenerateMipmap(System.Int32 target); - [Slot(196)] + [Slot(197)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* framebuffers); - [Slot(201)] + [Slot(202)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers); - [Slot(203)] + [Slot(204)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* textures); - [Slot(205)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] System.Int32* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr name); [Slot(206)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] System.Int32* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr name); + private static extern unsafe void glGetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] System.Int32* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr name); [Slot(207)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32* shaders); + private static extern unsafe void glGetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] System.Int32* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr name); [Slot(208)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int32 glGetAttribLocation(UInt32 program, IntPtr name); + private static extern unsafe void glGetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32* shaders); [Slot(209)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetBooleanv(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data); + private static extern Int32 glGetAttribLocation(UInt32 program, IntPtr name); [Slot(210)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetBooleanv(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data); + [Slot(211)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetBufferParameteriv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(213)] + [Slot(214)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe Int32 glGetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] System.Int32* sources, [OutAttribute, CountAttribute(Parameter = "count")] System.Int32* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] System.Int32* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr messageLog); - [Slot(217)] + [Slot(218)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern System.Int32 glGetError(); - [Slot(222)] + [Slot(223)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetFloatv(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data); - [Slot(224)] + [Slot(225)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetFramebufferAttachmentParameteriv(System.Int32 target, System.Int32 attachment, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(226)] + [Slot(227)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern System.Int32 glGetGraphicsResetStatus(); - [Slot(232)] + [Slot(233)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetIntegerv(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data); - [Slot(236)] + [Slot(237)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetnUniformfv(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params); - [Slot(239)] + [Slot(240)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetnUniformiv(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params); - [Slot(242)] + [Slot(243)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetnUniformuiv(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params); - [Slot(244)] + [Slot(245)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetObjectLabel(System.Int32 identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr label); - [Slot(247)] + [Slot(248)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr label); - [Slot(272)] + [Slot(273)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glGetPointerv(System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params); - [Slot(275)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr infoLog); [Slot(276)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr infoLog); + [Slot(277)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetProgramiv(UInt32 program, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(286)] + [Slot(287)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetRenderbufferParameteriv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(292)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr infoLog); [Slot(293)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetShaderiv(UInt32 shader, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + private static extern unsafe void glGetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr infoLog); [Slot(294)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetShaderPrecisionFormat(System.Int32 shadertype, System.Int32 precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32* range, [OutAttribute, CountAttribute(Count = 1)] Int32* precision); + private static extern unsafe void glGetShaderiv(UInt32 shader, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(295)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr source); + private static extern unsafe void glGetShaderPrecisionFormat(System.Int32 shadertype, System.Int32 precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32* range, [OutAttribute, CountAttribute(Count = 1)] Int32* precision); [Slot(296)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr source); + [Slot(297)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern IntPtr glGetString(System.Int32 name); - [Slot(298)] + [Slot(299)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetTexParameterfv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); - [Slot(303)] + [Slot(304)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetTexParameteriv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(309)] + [Slot(310)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetUniformfv(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params); - [Slot(311)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetUniformiv(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params); [Slot(312)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int32 glGetUniformLocation(UInt32 program, IntPtr name); - [Slot(315)] + private static extern unsafe void glGetUniformiv(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params); + [Slot(313)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetVertexAttribfv(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params); + private static extern Int32 glGetUniformLocation(UInt32 program, IntPtr name); [Slot(316)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetVertexAttribiv(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params); + private static extern unsafe void glGetVertexAttribfv(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params); [Slot(317)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetVertexAttribiv(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params); + [Slot(318)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glGetVertexAttribPointerv(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer); - [Slot(319)] + [Slot(320)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glHint(System.Int32 target, System.Int32 mode); - [Slot(328)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsBuffer(UInt32 buffer); [Slot(329)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glIsBuffer(UInt32 buffer); + [Slot(330)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsEnabled(System.Int32 cap); - [Slot(334)] + [Slot(335)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsFramebuffer(UInt32 framebuffer); - [Slot(340)] + [Slot(341)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsProgram(UInt32 program); - [Slot(343)] + [Slot(344)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsRenderbuffer(UInt32 renderbuffer); - [Slot(345)] + [Slot(346)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsShader(UInt32 shader); - [Slot(347)] + [Slot(348)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsTexture(UInt32 texture); - [Slot(351)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glLineWidth(Single width); [Slot(352)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glLineWidth(Single width); + [Slot(353)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glLinkProgram(UInt32 program); - [Slot(375)] + [Slot(396)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glObjectLabel(System.Int32 identifier, UInt32 name, Int32 length, [CountAttribute(Computed = "label,length")] IntPtr label); - [Slot(377)] + [Slot(398)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glObjectPtrLabel(IntPtr ptr, Int32 length, [CountAttribute(Computed = "label,length")] IntPtr label); - [Slot(402)] + [Slot(423)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPixelStorei(System.Int32 pname, Int32 param); - [Slot(405)] + [Slot(426)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPolygonOffset(Single factor, Single units); - [Slot(407)] + [Slot(428)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPopDebugGroup(); - [Slot(468)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPushDebugGroup(System.Int32 source, UInt32 id, Int32 length, [CountAttribute(Computed = "message,length")] IntPtr message); - [Slot(475)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute] IntPtr data); - [Slot(478)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, System.Int32 format, System.Int32 type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); - [Slot(480)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glReleaseShaderCompiler(); - [Slot(481)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRenderbufferStorage(System.Int32 target, System.Int32 internalformat, Int32 width, Int32 height); [Slot(489)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPushDebugGroup(System.Int32 source, UInt32 id, Int32 length, [CountAttribute(Computed = "message,length")] IntPtr message); + [Slot(496)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute] IntPtr data); + [Slot(499)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, System.Int32 format, System.Int32 type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); + [Slot(501)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glReleaseShaderCompiler(); + [Slot(502)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glRenderbufferStorage(System.Int32 target, System.Int32 internalformat, Int32 width, Int32 height); + [Slot(510)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glSampleCoverage(Single value, bool invert); - [Slot(494)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glScissor(Int32 x, Int32 y, Int32 width, Int32 height); - [Slot(504)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, System.Int32 binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length); - [Slot(505)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] IntPtr @string, [CountAttribute(Parameter = "count")] Int32* length); - [Slot(512)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilFunc(System.Int32 func, Int32 @ref, UInt32 mask); - [Slot(513)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilFuncSeparate(System.Int32 face, System.Int32 func, Int32 @ref, UInt32 mask); - [Slot(514)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilMask(UInt32 mask); [Slot(515)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilMaskSeparate(System.Int32 face, UInt32 mask); - [Slot(516)] + private static extern void glScissor(Int32 x, Int32 y, Int32 width, Int32 height); + [Slot(525)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilOp(System.Int32 fail, System.Int32 zfail, System.Int32 zpass); - [Slot(517)] + private static extern unsafe void glShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, System.Int32 binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length); + [Slot(526)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilOpSeparate(System.Int32 face, System.Int32 sfail, System.Int32 dpfail, System.Int32 dppass); - [Slot(530)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexImage2D(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); + private static extern unsafe void glShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] IntPtr @string, [CountAttribute(Parameter = "count")] Int32* length); [Slot(533)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexParameterf(System.Int32 target, System.Int32 pname, Single param); + private static extern void glStencilFunc(System.Int32 func, Int32 @ref, UInt32 mask); [Slot(534)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexParameterfv(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); + private static extern void glStencilFuncSeparate(System.Int32 face, System.Int32 func, Int32 @ref, UInt32 mask); [Slot(535)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glStencilMask(UInt32 mask); + [Slot(536)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glStencilMaskSeparate(System.Int32 face, UInt32 mask); + [Slot(537)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glStencilOp(System.Int32 fail, System.Int32 zfail, System.Int32 zpass); + [Slot(538)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glStencilOpSeparate(System.Int32 face, System.Int32 sfail, System.Int32 dpfail, System.Int32 dppass); + [Slot(551)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexImage2D(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); + [Slot(554)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexParameterf(System.Int32 target, System.Int32 pname, Single param); + [Slot(555)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexParameterfv(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); + [Slot(556)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexParameteri(System.Int32 target, System.Int32 pname, Int32 param); - [Slot(540)] + [Slot(561)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTexParameteriv(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); - [Slot(550)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexSubImage2D(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); - [Slot(563)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform1f(Int32 location, Single v0); - [Slot(564)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform1fv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single* value); - [Slot(565)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform1i(Int32 location, Int32 v0); - [Slot(568)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform1iv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32* value); [Slot(571)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform2f(Int32 location, Single v0, Single v1); - [Slot(572)] + private static extern void glTexSubImage2D(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); + [Slot(585)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform2fv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value); - [Slot(573)] + private static extern void glUniform1f(Int32 location, Single v0); + [Slot(586)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform2i(Int32 location, Int32 v0, Int32 v1); - [Slot(576)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform2iv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value); - [Slot(579)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform3f(Int32 location, Single v0, Single v1, Single v2); - [Slot(580)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform3fv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value); - [Slot(581)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform3i(Int32 location, Int32 v0, Int32 v1, Int32 v2); - [Slot(584)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform3iv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value); + private static extern unsafe void glUniform1fv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single* value); [Slot(587)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform4f(Int32 location, Single v0, Single v1, Single v2, Single v3); - [Slot(588)] + private static extern void glUniform1i(Int32 location, Int32 v0); + [Slot(590)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform4fv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value); - [Slot(589)] + private static extern unsafe void glUniform1iv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32* value); + [Slot(593)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform4i(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3); - [Slot(592)] + private static extern void glUniform2f(Int32 location, Single v0, Single v1); + [Slot(594)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform4iv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value); - [Slot(599)] + private static extern unsafe void glUniform2fv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value); + [Slot(595)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix2fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value); + private static extern void glUniform2i(Int32 location, Int32 v0, Int32 v1); + [Slot(598)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniform2iv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value); + [Slot(601)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glUniform3f(Int32 location, Single v0, Single v1, Single v2); [Slot(602)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix3fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value); - [Slot(605)] + private static extern unsafe void glUniform3fv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value); + [Slot(603)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix4fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value); + private static extern void glUniform3i(Int32 location, Int32 v0, Int32 v1, Int32 v2); + [Slot(606)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniform3iv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value); [Slot(609)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUseProgram(UInt32 program); - [Slot(612)] + private static extern void glUniform4f(Int32 location, Single v0, Single v1, Single v2, Single v3); + [Slot(610)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glValidateProgram(UInt32 program); + private static extern unsafe void glUniform4fv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value); + [Slot(611)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glUniform4i(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3); [Slot(614)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttrib1f(UInt32 index, Single x); - [Slot(615)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib1fv(UInt32 index, [CountAttribute(Count = 1)] Single* v); - [Slot(616)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttrib2f(UInt32 index, Single x, Single y); - [Slot(617)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib2fv(UInt32 index, [CountAttribute(Count = 2)] Single* v); - [Slot(618)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttrib3f(UInt32 index, Single x, Single y, Single z); - [Slot(619)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib3fv(UInt32 index, [CountAttribute(Count = 3)] Single* v); - [Slot(620)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttrib4f(UInt32 index, Single x, Single y, Single z, Single w); + private static extern unsafe void glUniform4iv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value); [Slot(621)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniformMatrix2fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value); + [Slot(624)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniformMatrix3fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value); + [Slot(627)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniformMatrix4fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value); + [Slot(631)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glUseProgram(UInt32 program); + [Slot(634)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glValidateProgram(UInt32 program); + [Slot(636)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttrib1f(UInt32 index, Single x); + [Slot(637)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttrib1fv(UInt32 index, [CountAttribute(Count = 1)] Single* v); + [Slot(638)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttrib2f(UInt32 index, Single x, Single y); + [Slot(639)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttrib2fv(UInt32 index, [CountAttribute(Count = 2)] Single* v); + [Slot(640)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttrib3f(UInt32 index, Single x, Single y, Single z); + [Slot(641)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttrib3fv(UInt32 index, [CountAttribute(Count = 3)] Single* v); + [Slot(642)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttrib4f(UInt32 index, Single x, Single y, Single z, Single w); + [Slot(643)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttrib4fv(UInt32 index, [CountAttribute(Count = 4)] Single* v); - [Slot(625)] + [Slot(647)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribPointer(UInt32 index, Int32 size, System.Int32 type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer); - [Slot(626)] + [Slot(648)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glViewport(Int32 x, Int32 y, Int32 width, Int32 height); [Slot(0)] @@ -54098,593 +61708,656 @@ namespace OpenTK.Graphics.ES20 private static extern void glBlendFuncSeparateiEXT(UInt32 buf, System.Int32 srcRGB, System.Int32 dstRGB, System.Int32 srcAlpha, System.Int32 dstAlpha); [Slot(40)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glBufferStorageEXT(System.Int32 target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags); + private static extern void glBufferStorageEXT(System.Int32 target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, System.Int32 flags); [Slot(41)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glBufferStorageExternalEXT(System.Int32 target, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags); + private static extern void glBufferStorageExternalEXT(System.Int32 target, IntPtr offset, IntPtr size, IntPtr clientBuffer, System.Int32 flags); [Slot(42)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glBufferStorageMemEXT(System.Int32 target, IntPtr size, UInt32 memory, UInt64 offset); [Slot(48)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glClearPixelLocalStorageuiEXT(Int32 offset, Int32 n, UInt32* values); + private static extern unsafe void glClearPixelLocalStorageuiEXT(Int32 offset, Int32 n, [CountAttribute(Parameter = "n")] UInt32* values); [Slot(50)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glClearTexImageEXT(UInt32 texture, Int32 level, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type")] IntPtr data); [Slot(51)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glClearTexSubImageEXT(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type")] IntPtr data); - [Slot(54)] + [Slot(53)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glClipControlEXT(System.Int32 origin, System.Int32 depth); + [Slot(55)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glColorMaskiEXT(UInt32 index, bool r, bool g, bool b, bool a); - [Slot(63)] + [Slot(64)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glCopyImageSubDataEXT(UInt32 srcName, System.Int32 srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, System.Int32 dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth); - [Slot(78)] + [Slot(79)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glCreateMemoryObjectsEXT(Int32 n, [OutAttribute] UInt32* memoryObjects); - [Slot(82)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int32 glCreateShaderProgramEXT(System.Int32 type, IntPtr @string); [Slot(83)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern Int32 glCreateShaderProgramEXT(System.Int32 type, IntPtr @string); + [Slot(84)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int32 glCreateShaderProgramvEXT(System.Int32 type, Int32 count, [CountAttribute(Parameter = "count")] IntPtr strings); - [Slot(94)] + [Slot(95)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteMemoryObjectsEXT(Int32 n, [CountAttribute(Parameter = "n")] UInt32* memoryObjects); - [Slot(99)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glDeleteProgramPipelinesEXT(Int32 n, [CountAttribute(Parameter = "n")] UInt32* pipelines); [Slot(100)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glDeleteQueriesEXT(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids); - [Slot(102)] + private static extern unsafe void glDeleteProgramPipelinesEXT(Int32 n, [CountAttribute(Parameter = "n")] UInt32* pipelines); + [Slot(101)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glDeleteSemaphoresEXT(Int32 n, [CountAttribute(Parameter = "count")] UInt32* semaphores); - [Slot(117)] + private static extern unsafe void glDeleteQueriesEXT(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids); + [Slot(103)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glDeleteSemaphoresEXT(Int32 n, [CountAttribute(Parameter = "n")] UInt32* semaphores); + [Slot(118)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDisableiEXT(System.Int32 target, UInt32 index); - [Slot(121)] + [Slot(122)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDiscardFramebufferEXT(System.Int32 target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] System.Int32* attachments); - [Slot(124)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDrawArraysInstancedBaseInstanceEXT(System.Int32 mode, Int32 first, Int32 count, Int32 instancecount, UInt32 baseinstance); [Slot(125)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDrawArraysInstancedEXT(System.Int32 mode, Int32 start, Int32 count, Int32 primcount); - [Slot(127)] + private static extern void glDrawArraysInstancedBaseInstanceEXT(System.Int32 mode, Int32 first, Int32 count, Int32 instancecount, UInt32 baseinstance); + [Slot(126)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glDrawBuffersEXT(Int32 n, System.Int32* bufs); + private static extern void glDrawArraysInstancedEXT(System.Int32 mode, Int32 start, Int32 count, Int32 primcount); [Slot(128)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glDrawBuffersEXT(Int32 n, [CountAttribute(Parameter = "n")] System.Int32* bufs); + [Slot(129)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDrawBuffersIndexedEXT(Int32 n, [CountAttribute(Parameter = "n")] System.Int32* location, [CountAttribute(Parameter = "n")] Int32* indices); - [Slot(131)] + [Slot(132)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawElementsBaseVertexEXT(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex); - [Slot(134)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDrawElementsInstancedBaseInstanceEXT(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance); [Slot(135)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDrawElementsInstancedBaseVertexBaseInstanceEXT(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance); + private static extern void glDrawElementsInstancedBaseInstanceEXT(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance); [Slot(136)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glDrawElementsInstancedBaseVertexBaseInstanceEXT(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance); + [Slot(137)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawElementsInstancedBaseVertexEXT(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex); - [Slot(138)] + [Slot(139)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawElementsInstancedEXT(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount); - [Slot(140)] + [Slot(141)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawRangeElementsBaseVertexEXT(System.Int32 mode, UInt32 start, UInt32 end, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex); - [Slot(142)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDrawTransformFeedbackEXT(System.Int32 mode, UInt32 id); [Slot(143)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glDrawTransformFeedbackEXT(System.Int32 mode, UInt32 id); + [Slot(144)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawTransformFeedbackInstancedEXT(System.Int32 mode, UInt32 id, Int32 instancecount); - [Slot(149)] + [Slot(150)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEnableiEXT(System.Int32 target, UInt32 index); - [Slot(156)] + [Slot(157)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEndQueryEXT(System.Int32 target); - [Slot(174)] + [Slot(175)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFlushMappedBufferRangeEXT(System.Int32 target, IntPtr offset, IntPtr length); - [Slot(179)] + [Slot(180)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferPixelLocalStorageSizeEXT(UInt32 target, Int32 size); - [Slot(184)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFramebufferTexture2DMultisampleEXT(System.Int32 target, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level, Int32 samples); - [Slot(187)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFramebufferTextureEXT(System.Int32 target, System.Int32 attachment, UInt32 texture, Int32 level); - [Slot(199)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGenProgramPipelinesEXT(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines); - [Slot(200)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGenQueriesEXT(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids); - [Slot(202)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGenSemaphoresEXT(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* semaphores); - [Slot(223)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int32 glGetFragDataIndexEXT(UInt32 program, IntPtr name); - [Slot(225)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int32 glGetFramebufferPixelLocalStorageSizeEXT(UInt32 target); - [Slot(227)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern System.Int32 glGetGraphicsResetStatusEXT(); - [Slot(231)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetIntegeri_vEXT(System.Int32 target, UInt32 index, [OutAttribute] Int32* data); - [Slot(234)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetMemoryObjectParameterivEXT(UInt32 memoryObject, System.Int32 pname, [OutAttribute] Int32* @params); - [Slot(237)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetnUniformfvEXT(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params); - [Slot(240)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetnUniformivEXT(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params); - [Slot(245)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetObjectLabelEXT(System.Int32 type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr label); - [Slot(277)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetProgramPipelineInfoLogEXT(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr infoLog); - [Slot(278)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetProgramPipelineivEXT(UInt32 pipeline, System.Int32 pname, [OutAttribute] Int32* @params); - [Slot(280)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int32 glGetProgramResourceLocationIndexEXT(UInt32 program, System.Int32 programInterface, [CountAttribute(Computed = "name")] IntPtr name); - [Slot(281)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetQueryivEXT(System.Int32 target, System.Int32 pname, [OutAttribute] Int32* @params); - [Slot(282)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetQueryObjecti64vEXT(UInt32 id, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params); - [Slot(283)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetQueryObjectivEXT(UInt32 id, System.Int32 pname, [OutAttribute] Int32* @params); - [Slot(284)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetQueryObjectui64vEXT(UInt32 id, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params); - [Slot(285)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetQueryObjectuivEXT(UInt32 id, System.Int32 pname, [OutAttribute] UInt32* @params); - [Slot(287)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetSamplerParameterIivEXT(UInt32 sampler, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(289)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetSamplerParameterIuivEXT(UInt32 sampler, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params); - [Slot(291)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetSemaphoreParameterui64vEXT(UInt32 semaphore, System.Int32 pname, [OutAttribute] UInt64* @params); - [Slot(299)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTexParameterIivEXT(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(301)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTexParameterIuivEXT(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params); - [Slot(313)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetUnsignedBytei_vEXT(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte* data); - [Slot(314)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetUnsignedBytevEXT(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte* data); - [Slot(320)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glImportMemoryFdEXT(UInt32 memory, UInt64 size, System.Int32 handleType, Int32 fd); - [Slot(321)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glImportMemoryWin32HandleEXT(UInt32 memory, UInt64 size, System.Int32 handleType, [OutAttribute] IntPtr handle); - [Slot(322)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glImportMemoryWin32NameEXT(UInt32 memory, UInt64 size, System.Int32 handleType, IntPtr name); - [Slot(323)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glImportSemaphoreFdEXT(UInt32 semaphore, System.Int32 handleType, Int32 fd); - [Slot(324)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glImportSemaphoreWin32HandleEXT(UInt32 semaphore, System.Int32 handleType, [OutAttribute] IntPtr handle); - [Slot(325)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glImportSemaphoreWin32NameEXT(UInt32 semaphore, System.Int32 handleType, IntPtr name); - [Slot(326)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glInsertEventMarkerEXT(Int32 length, IntPtr marker); - [Slot(330)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsEnablediEXT(System.Int32 target, UInt32 index); - [Slot(336)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsMemoryObjectEXT(UInt32 memoryObject); - [Slot(341)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsProgramPipelineEXT(UInt32 pipeline); - [Slot(342)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsQueryEXT(UInt32 id); - [Slot(344)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsSemaphoreEXT(UInt32 semaphore); - [Slot(350)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glLabelObjectEXT(System.Int32 type, UInt32 @object, Int32 length, IntPtr label); - [Slot(358)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern IntPtr glMapBufferRangeEXT(System.Int32 target, IntPtr offset, IntPtr length, UInt32 access); - [Slot(365)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMemoryObjectParameterivEXT(UInt32 memoryObject, System.Int32 pname, Int32* @params); - [Slot(367)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiDrawArraysEXT(System.Int32 mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount); - [Slot(368)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiDrawArraysIndirectEXT(System.Int32 mode, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride); - [Slot(369)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiDrawElementsBaseVertexEXT(System.Int32 mode, [CountAttribute(Computed = "drawcount")] Int32* count, System.Int32 type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex); - [Slot(370)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiDrawElementsEXT(System.Int32 mode, [CountAttribute(Computed = "primcount")] Int32* count, System.Int32 type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount); - [Slot(371)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiDrawElementsIndirectEXT(System.Int32 mode, System.Int32 type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride); - [Slot(372)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedBufferStorageExternalEXT(UInt32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags); - [Slot(373)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedBufferStorageMemEXT(UInt32 buffer, IntPtr size, UInt32 memory, UInt64 offset); - [Slot(379)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPatchParameteriEXT(System.Int32 pname, Int32 value); - [Slot(406)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPolygonOffsetClampEXT(Single factor, Single units, Single clamp); - [Slot(409)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPopGroupMarkerEXT(); - [Slot(410)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPrimitiveBoundingBoxEXT(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW); - [Slot(413)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramParameteriEXT(UInt32 program, System.Int32 pname, Int32 value); - [Slot(415)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform1fEXT(UInt32 program, Int32 location, Single v0); - [Slot(416)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform1fvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value); - [Slot(419)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform1iEXT(UInt32 program, Int32 location, Int32 v0); - [Slot(420)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform1ivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value); - [Slot(423)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform1uiEXT(UInt32 program, Int32 location, UInt32 v0); - [Slot(424)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform1uivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32* value); - [Slot(425)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform2fEXT(UInt32 program, Int32 location, Single v0, Single v1); - [Slot(426)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform2fvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value); - [Slot(429)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform2iEXT(UInt32 program, Int32 location, Int32 v0, Int32 v1); - [Slot(430)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform2ivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value); - [Slot(433)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform2uiEXT(UInt32 program, Int32 location, UInt32 v0, UInt32 v1); - [Slot(434)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform2uivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value); - [Slot(435)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform3fEXT(UInt32 program, Int32 location, Single v0, Single v1, Single v2); - [Slot(436)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform3fvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value); - [Slot(439)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform3iEXT(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2); - [Slot(440)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform3ivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value); - [Slot(443)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform3uiEXT(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2); - [Slot(444)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform3uivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value); - [Slot(445)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform4fEXT(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3); - [Slot(446)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform4fvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value); - [Slot(449)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform4iEXT(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3); - [Slot(450)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform4ivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value); - [Slot(453)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform4uiEXT(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3); - [Slot(454)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform4uivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value); - [Slot(459)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix2fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value); - [Slot(460)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix2x3fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); - [Slot(461)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix2x4fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); - [Slot(462)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix3fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value); - [Slot(463)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix3x2fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); - [Slot(464)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix3x4fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); - [Slot(465)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix4fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value); - [Slot(466)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix4x2fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); - [Slot(467)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix4x3fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); - [Slot(470)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPushGroupMarkerEXT(Int32 length, IntPtr marker); - [Slot(471)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glQueryCounterEXT(UInt32 id, System.Int32 target); - [Slot(472)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRasterSamplesEXT(UInt32 samples, bool fixedsamplelocations); - [Slot(473)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glReadBufferIndexedEXT(System.Int32 src, Int32 index); - [Slot(476)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glReadnPixelsEXT(Int32 x, Int32 y, Int32 width, Int32 height, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data); - [Slot(479)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glReleaseKeyedMutexWin32EXT(UInt32 memory, UInt64 key); - [Slot(484)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRenderbufferStorageMultisampleEXT(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(490)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glSamplerParameterIivEXT(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* param); - [Slot(492)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glSamplerParameterIuivEXT(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] UInt32* param); - [Slot(502)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glSemaphoreParameterui64vEXT(UInt32 semaphore, System.Int32 pname, UInt64* @params); - [Slot(506)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glSignalSemaphoreEXT(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] System.Int32* dstLayouts); - [Slot(526)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexBufferEXT(System.Int32 target, System.Int32 internalformat, UInt32 buffer); - [Slot(528)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexBufferRangeEXT(System.Int32 target, System.Int32 internalformat, UInt32 buffer, IntPtr offset, IntPtr size); - [Slot(532)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexPageCommitmentEXT(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit); - [Slot(536)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexParameterIivEXT(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); - [Slot(538)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexParameterIuivEXT(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] UInt32* @params); - [Slot(541)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexStorage1DEXT(System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width); - [Slot(542)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexStorage2DEXT(System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(543)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexStorage3DEXT(System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth); - [Slot(545)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexStorageMem1DEXT(System.Int32 target, Int32 levels, System.Int32 internalFormat, Int32 width, UInt32 memory, UInt64 offset); - [Slot(546)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexStorageMem2DEXT(System.Int32 target, Int32 levels, System.Int32 internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset); - [Slot(547)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexStorageMem2DMultisampleEXT(System.Int32 target, Int32 samples, System.Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset); - [Slot(548)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexStorageMem3DEXT(System.Int32 target, Int32 levels, System.Int32 internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset); - [Slot(549)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexStorageMem3DMultisampleEXT(System.Int32 target, Int32 samples, System.Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset); - [Slot(552)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureStorage1DEXT(UInt32 texture, System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width); - [Slot(553)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureStorage2DEXT(UInt32 texture, System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(554)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureStorage3DEXT(UInt32 texture, System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth); - [Slot(555)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureStorageMem1DEXT(UInt32 texture, Int32 levels, System.Int32 internalFormat, Int32 width, UInt32 memory, UInt64 offset); - [Slot(556)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureStorageMem2DEXT(UInt32 texture, Int32 levels, System.Int32 internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset); - [Slot(557)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureStorageMem2DMultisampleEXT(UInt32 texture, Int32 samples, System.Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset); - [Slot(558)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureStorageMem3DEXT(UInt32 texture, Int32 levels, System.Int32 internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset); - [Slot(559)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureStorageMem3DMultisampleEXT(UInt32 texture, Int32 samples, System.Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset); - [Slot(560)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureViewEXT(UInt32 texture, System.Int32 target, UInt32 origtexture, System.Int32 internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers); - [Slot(610)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUseProgramStagesEXT(UInt32 pipeline, UInt32 stages, UInt32 program); - [Slot(611)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUseShaderProgramEXT(System.Int32 type, UInt32 program); - [Slot(613)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glValidateProgramPipelineEXT(UInt32 pipeline); - [Slot(623)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribDivisorEXT(UInt32 index, UInt32 divisor); - [Slot(634)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glWaitSemaphoreEXT(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] System.Int32* srcLayouts); - [Slot(638)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glWindowRectanglesEXT(System.Int32 mode, Int32 count, [CountAttribute(Computed = "count")] Int32* box); - [Slot(183)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFramebufferTexture2DDownsampleIMG(System.Int32 target, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level, Int32 xscale, Int32 yscale); [Slot(185)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFramebufferTexture2DMultisampleIMG(System.Int32 target, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level, Int32 samples); + private static extern void glFramebufferTexture2DMultisampleEXT(System.Int32 target, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level, Int32 samples); [Slot(188)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFramebufferTextureLayerDownsampleIMG(System.Int32 target, System.Int32 attachment, UInt32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale); - [Slot(304)] + private static extern void glFramebufferTextureEXT(System.Int32 target, System.Int32 attachment, UInt32 texture, Int32 level); + [Slot(200)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int64 glGetTextureHandleIMG(UInt32 texture); - [Slot(306)] + private static extern unsafe void glGenProgramPipelinesEXT(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines); + [Slot(201)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int64 glGetTextureSamplerHandleIMG(UInt32 texture, UInt32 sampler); + private static extern unsafe void glGenQueriesEXT(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids); + [Slot(203)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGenSemaphoresEXT(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* semaphores); + [Slot(224)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern Int32 glGetFragDataIndexEXT(UInt32 program, IntPtr name); + [Slot(226)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern Int32 glGetFramebufferPixelLocalStorageSizeEXT(System.Int32 target); + [Slot(228)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern System.Int32 glGetGraphicsResetStatusEXT(); + [Slot(232)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetIntegeri_vEXT(System.Int32 target, UInt32 index, [OutAttribute] Int32* data); + [Slot(235)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetMemoryObjectParameterivEXT(UInt32 memoryObject, System.Int32 pname, [OutAttribute] Int32* @params); + [Slot(238)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetnUniformfvEXT(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params); + [Slot(241)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetnUniformivEXT(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params); + [Slot(246)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetObjectLabelEXT(System.Int32 type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr label); + [Slot(278)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetProgramPipelineInfoLogEXT(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr infoLog); + [Slot(279)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetProgramPipelineivEXT(UInt32 pipeline, System.Int32 pname, [OutAttribute] Int32* @params); + [Slot(281)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern Int32 glGetProgramResourceLocationIndexEXT(UInt32 program, System.Int32 programInterface, [CountAttribute(Computed = "name")] IntPtr name); + [Slot(282)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetQueryivEXT(System.Int32 target, System.Int32 pname, [OutAttribute] Int32* @params); + [Slot(283)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetQueryObjecti64vEXT(UInt32 id, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params); + [Slot(284)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetQueryObjectivEXT(UInt32 id, System.Int32 pname, [OutAttribute] Int32* @params); + [Slot(285)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetQueryObjectui64vEXT(UInt32 id, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params); + [Slot(286)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetQueryObjectuivEXT(UInt32 id, System.Int32 pname, [OutAttribute] UInt32* @params); + [Slot(288)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetSamplerParameterIivEXT(UInt32 sampler, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + [Slot(290)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetSamplerParameterIuivEXT(UInt32 sampler, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params); + [Slot(292)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetSemaphoreParameterui64vEXT(UInt32 semaphore, System.Int32 pname, [OutAttribute] UInt64* @params); + [Slot(300)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetTexParameterIivEXT(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + [Slot(302)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetTexParameterIuivEXT(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params); + [Slot(314)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetUnsignedBytei_vEXT(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte* data); + [Slot(315)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetUnsignedBytevEXT(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte* data); + [Slot(321)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glImportMemoryFdEXT(UInt32 memory, UInt64 size, System.Int32 handleType, Int32 fd); + [Slot(322)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glImportMemoryWin32HandleEXT(UInt32 memory, UInt64 size, System.Int32 handleType, [OutAttribute] IntPtr handle); + [Slot(323)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glImportMemoryWin32NameEXT(UInt32 memory, UInt64 size, System.Int32 handleType, IntPtr name); + [Slot(324)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glImportSemaphoreFdEXT(UInt32 semaphore, System.Int32 handleType, Int32 fd); + [Slot(325)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glImportSemaphoreWin32HandleEXT(UInt32 semaphore, System.Int32 handleType, [OutAttribute] IntPtr handle); + [Slot(326)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glImportSemaphoreWin32NameEXT(UInt32 semaphore, System.Int32 handleType, IntPtr name); + [Slot(327)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glInsertEventMarkerEXT(Int32 length, IntPtr marker); + [Slot(331)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glIsEnablediEXT(System.Int32 target, UInt32 index); + [Slot(337)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glIsMemoryObjectEXT(UInt32 memoryObject); + [Slot(342)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glIsProgramPipelineEXT(UInt32 pipeline); + [Slot(343)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glIsQueryEXT(UInt32 id); + [Slot(345)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glIsSemaphoreEXT(UInt32 semaphore); + [Slot(351)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glLabelObjectEXT(System.Int32 type, UInt32 @object, Int32 length, IntPtr label); + [Slot(359)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern IntPtr glMapBufferRangeEXT(System.Int32 target, IntPtr offset, IntPtr length, System.Int32 access); + [Slot(360)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixFrustumEXT(System.Int32 mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar); + [Slot(363)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMatrixLoaddEXT(System.Int32 mode, [CountAttribute(Count = 16)] Double* m); + [Slot(364)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMatrixLoadfEXT(System.Int32 mode, [CountAttribute(Count = 16)] Single* m); + [Slot(365)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixLoadIdentityEXT(System.Int32 mode); + [Slot(367)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMatrixLoadTransposedEXT(System.Int32 mode, [CountAttribute(Count = 16)] Double* m); + [Slot(368)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMatrixLoadTransposefEXT(System.Int32 mode, [CountAttribute(Count = 16)] Single* m); + [Slot(371)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMatrixMultdEXT(System.Int32 mode, [CountAttribute(Count = 16)] Double* m); + [Slot(372)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMatrixMultfEXT(System.Int32 mode, [CountAttribute(Count = 16)] Single* m); + [Slot(374)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMatrixMultTransposedEXT(System.Int32 mode, [CountAttribute(Count = 16)] Double* m); + [Slot(375)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMatrixMultTransposefEXT(System.Int32 mode, [CountAttribute(Count = 16)] Single* m); + [Slot(376)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixOrthoEXT(System.Int32 mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar); + [Slot(377)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixPopEXT(System.Int32 mode); + [Slot(378)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixPushEXT(System.Int32 mode); + [Slot(379)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixRotatedEXT(System.Int32 mode, Double angle, Double x, Double y, Double z); + [Slot(380)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixRotatefEXT(System.Int32 mode, Single angle, Single x, Single y, Single z); + [Slot(381)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixScaledEXT(System.Int32 mode, Double x, Double y, Double z); + [Slot(382)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixScalefEXT(System.Int32 mode, Single x, Single y, Single z); + [Slot(383)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixTranslatedEXT(System.Int32 mode, Double x, Double y, Double z); + [Slot(384)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixTranslatefEXT(System.Int32 mode, Single x, Single y, Single z); + [Slot(386)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMemoryObjectParameterivEXT(UInt32 memoryObject, System.Int32 pname, Int32* @params); + [Slot(388)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMultiDrawArraysEXT(System.Int32 mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount); + [Slot(389)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMultiDrawArraysIndirectEXT(System.Int32 mode, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride); + [Slot(390)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMultiDrawElementsBaseVertexEXT(System.Int32 mode, [CountAttribute(Computed = "drawcount")] Int32* count, System.Int32 type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex); + [Slot(391)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMultiDrawElementsEXT(System.Int32 mode, [CountAttribute(Computed = "primcount")] Int32* count, System.Int32 type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount); + [Slot(392)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMultiDrawElementsIndirectEXT(System.Int32 mode, System.Int32 type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride); + [Slot(393)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNamedBufferStorageExternalEXT(UInt32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, System.Int32 flags); + [Slot(394)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNamedBufferStorageMemEXT(UInt32 buffer, IntPtr size, UInt32 memory, UInt64 offset); + [Slot(400)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPatchParameteriEXT(System.Int32 pname, Int32 value); + [Slot(427)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPolygonOffsetClampEXT(Single factor, Single units, Single clamp); + [Slot(430)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPopGroupMarkerEXT(); + [Slot(431)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPrimitiveBoundingBoxEXT(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW); + [Slot(434)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramParameteriEXT(UInt32 program, System.Int32 pname, Int32 value); + [Slot(436)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform1fEXT(UInt32 program, Int32 location, Single v0); + [Slot(437)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform1fvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value); + [Slot(440)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform1iEXT(UInt32 program, Int32 location, Int32 v0); + [Slot(441)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform1ivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value); + [Slot(444)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform1uiEXT(UInt32 program, Int32 location, UInt32 v0); + [Slot(445)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform1uivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32* value); + [Slot(446)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform2fEXT(UInt32 program, Int32 location, Single v0, Single v1); + [Slot(447)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform2fvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value); + [Slot(450)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform2iEXT(UInt32 program, Int32 location, Int32 v0, Int32 v1); + [Slot(451)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform2ivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value); + [Slot(454)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform2uiEXT(UInt32 program, Int32 location, UInt32 v0, UInt32 v1); [Slot(455)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniformHandleui64IMG(UInt32 program, Int32 location, UInt64 value); + private static extern unsafe void glProgramUniform2uivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value); + [Slot(456)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform3fEXT(UInt32 program, Int32 location, Single v0, Single v1, Single v2); [Slot(457)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformHandleui64vIMG(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values); + private static extern unsafe void glProgramUniform3fvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value); + [Slot(460)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform3iEXT(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2); + [Slot(461)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform3ivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value); + [Slot(464)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform3uiEXT(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2); + [Slot(465)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform3uivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value); + [Slot(466)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform4fEXT(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3); + [Slot(467)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform4fvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value); + [Slot(470)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform4iEXT(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3); + [Slot(471)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform4ivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value); + [Slot(474)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform4uiEXT(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3); + [Slot(475)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform4uivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value); + [Slot(480)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix2fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value); + [Slot(481)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix2x3fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); + [Slot(482)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix2x4fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); + [Slot(483)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix3fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value); + [Slot(484)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix3x2fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); [Slot(485)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix3x4fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); + [Slot(486)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix4fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value); + [Slot(487)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix4x2fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); + [Slot(488)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix4x3fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); + [Slot(491)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPushGroupMarkerEXT(Int32 length, IntPtr marker); + [Slot(492)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glQueryCounterEXT(UInt32 id, System.Int32 target); + [Slot(493)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glRasterSamplesEXT(UInt32 samples, bool fixedsamplelocations); + [Slot(494)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glReadBufferIndexedEXT(System.Int32 src, Int32 index); + [Slot(497)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glReadnPixelsEXT(Int32 x, Int32 y, Int32 width, Int32 height, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data); + [Slot(500)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glReleaseKeyedMutexWin32EXT(UInt32 memory, UInt64 key); + [Slot(505)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glRenderbufferStorageMultisampleEXT(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height); + [Slot(511)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glSamplerParameterIivEXT(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* param); + [Slot(513)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glSamplerParameterIuivEXT(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] UInt32* param); + [Slot(523)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glSemaphoreParameterui64vEXT(UInt32 semaphore, System.Int32 pname, UInt64* @params); + [Slot(527)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glSignalSemaphoreEXT(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] System.Int32* dstLayouts); + [Slot(547)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexBufferEXT(System.Int32 target, System.Int32 internalformat, UInt32 buffer); + [Slot(549)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexBufferRangeEXT(System.Int32 target, System.Int32 internalformat, UInt32 buffer, IntPtr offset, IntPtr size); + [Slot(553)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexPageCommitmentEXT(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit); + [Slot(557)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexParameterIivEXT(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + [Slot(559)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexParameterIuivEXT(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] UInt32* @params); + [Slot(562)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexStorage1DEXT(System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width); + [Slot(563)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexStorage2DEXT(System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height); + [Slot(564)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexStorage3DEXT(System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth); + [Slot(566)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexStorageMem1DEXT(System.Int32 target, Int32 levels, System.Int32 internalFormat, Int32 width, UInt32 memory, UInt64 offset); + [Slot(567)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexStorageMem2DEXT(System.Int32 target, Int32 levels, System.Int32 internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset); + [Slot(568)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexStorageMem2DMultisampleEXT(System.Int32 target, Int32 samples, System.Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset); + [Slot(569)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexStorageMem3DEXT(System.Int32 target, Int32 levels, System.Int32 internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset); + [Slot(570)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexStorageMem3DMultisampleEXT(System.Int32 target, Int32 samples, System.Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset); + [Slot(574)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureStorage1DEXT(UInt32 texture, System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width); + [Slot(575)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureStorage2DEXT(UInt32 texture, System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height); + [Slot(576)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureStorage3DEXT(UInt32 texture, System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth); + [Slot(577)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureStorageMem1DEXT(UInt32 texture, Int32 levels, System.Int32 internalFormat, Int32 width, UInt32 memory, UInt64 offset); + [Slot(578)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureStorageMem2DEXT(UInt32 texture, Int32 levels, System.Int32 internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset); + [Slot(579)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureStorageMem2DMultisampleEXT(UInt32 texture, Int32 samples, System.Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset); + [Slot(580)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureStorageMem3DEXT(UInt32 texture, Int32 levels, System.Int32 internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset); + [Slot(581)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureStorageMem3DMultisampleEXT(UInt32 texture, Int32 samples, System.Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset); + [Slot(582)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureViewEXT(UInt32 texture, System.Int32 target, UInt32 origtexture, System.Int32 internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers); + [Slot(632)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glUseProgramStagesEXT(UInt32 pipeline, System.Int32 stages, UInt32 program); + [Slot(633)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glUseShaderProgramEXT(System.Int32 type, UInt32 program); + [Slot(635)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glValidateProgramPipelineEXT(UInt32 pipeline); + [Slot(645)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribDivisorEXT(UInt32 index, UInt32 divisor); + [Slot(657)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glWaitSemaphoreEXT(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] System.Int32* srcLayouts); + [Slot(661)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glWindowRectanglesEXT(System.Int32 mode, Int32 count, [CountAttribute(Computed = "count")] Int32* box); + [Slot(184)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glFramebufferTexture2DDownsampleIMG(System.Int32 target, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level, Int32 xscale, Int32 yscale); + [Slot(186)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glFramebufferTexture2DMultisampleIMG(System.Int32 target, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level, Int32 samples); + [Slot(189)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glFramebufferTextureLayerDownsampleIMG(System.Int32 target, System.Int32 attachment, UInt32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale); + [Slot(305)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern Int64 glGetTextureHandleIMG(UInt32 texture); + [Slot(307)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern Int64 glGetTextureSamplerHandleIMG(UInt32 texture, UInt32 sampler); + [Slot(476)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniformHandleui64IMG(UInt32 program, Int32 location, UInt64 value); + [Slot(478)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformHandleui64vIMG(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values); + [Slot(506)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glRenderbufferStorageMultisampleIMG(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(595)] + [Slot(617)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniformHandleui64IMG(Int32 location, UInt64 value); - [Slot(597)] + [Slot(619)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniformHandleui64vIMG(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value); [Slot(9)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glBeginPerfQueryINTEL(UInt32 queryHandle); - [Slot(79)] + [Slot(80)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glCreatePerfQueryINTEL(UInt32 queryId, [OutAttribute] UInt32* queryHandle); - [Slot(97)] + [Slot(98)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDeletePerfQueryINTEL(UInt32 queryHandle); - [Slot(155)] + [Slot(156)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEndPerfQueryINTEL(UInt32 queryHandle); - [Slot(219)] + [Slot(220)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetFirstPerfQueryIdINTEL([OutAttribute] UInt32* queryId); - [Slot(235)] + [Slot(236)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetNextPerfQueryIdINTEL(UInt32 queryId, [OutAttribute] UInt32* nextQueryId); - [Slot(262)] + [Slot(263)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetPerfCounterInfoINTEL(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute, CountAttribute(Parameter = "counterNameLength")] IntPtr counterName, UInt32 counterDescLength, [OutAttribute, CountAttribute(Parameter = "counterDescLength")] IntPtr counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue); - [Slot(269)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPerfQueryDataINTEL(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32* bytesWritten); [Slot(270)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPerfQueryIdByNameINTEL(IntPtr queryName, [OutAttribute] UInt32* queryId); + private static extern unsafe void glGetPerfQueryDataINTEL(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32* bytesWritten); [Slot(271)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetPerfQueryIdByNameINTEL(IntPtr queryName, [OutAttribute] UInt32* queryId); + [Slot(272)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetPerfQueryInfoINTEL(UInt32 queryId, UInt32 queryNameLength, [OutAttribute, CountAttribute(Parameter = "queryNameLength")] IntPtr queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask); [Slot(20)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glBlendBarrierKHR(); - [Slot(86)] + [Slot(87)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDebugMessageCallbackKHR(DebugProcKhr callback, IntPtr userParam); - [Slot(88)] + [Slot(89)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDebugMessageControlKHR(System.Int32 source, System.Int32 type, System.Int32 severity, Int32 count, UInt32* ids, bool enabled); - [Slot(90)] + [Slot(91)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDebugMessageInsertKHR(System.Int32 source, System.Int32 type, UInt32 id, System.Int32 severity, Int32 length, IntPtr buf); - [Slot(214)] + [Slot(215)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe Int32 glGetDebugMessageLogKHR(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] System.Int32* sources, [OutAttribute, CountAttribute(Parameter = "count")] System.Int32* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] System.Int32* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr messageLog); - [Slot(228)] + [Slot(229)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern System.Int32 glGetGraphicsResetStatusKHR(); - [Slot(238)] + [Slot(239)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetnUniformfvKHR(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params); - [Slot(241)] + [Slot(242)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetnUniformivKHR(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params); - [Slot(243)] + [Slot(244)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetnUniformuivKHR(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params); - [Slot(246)] + [Slot(247)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetObjectLabelKHR(System.Int32 identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr label); - [Slot(248)] + [Slot(249)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetObjectPtrLabelKHR(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr label); - [Slot(273)] + [Slot(274)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glGetPointervKHR(System.Int32 pname, [OutAttribute] IntPtr @params); - [Slot(376)] + [Slot(385)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMaxShaderCompilerThreadsKHR(UInt32 count); + [Slot(397)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glObjectLabelKHR(System.Int32 identifier, UInt32 name, Int32 length, IntPtr label); - [Slot(378)] + [Slot(399)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glObjectPtrLabelKHR(IntPtr ptr, Int32 length, IntPtr label); - [Slot(408)] + [Slot(429)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPopDebugGroupKHR(); - [Slot(469)] + [Slot(490)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPushDebugGroupKHR(System.Int32 source, UInt32 id, Int32 length, IntPtr message); - [Slot(477)] + [Slot(498)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glReadnPixelsKHR(Int32 x, Int32 y, Int32 width, Int32 height, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data); [Slot(7)] @@ -54699,490 +62372,493 @@ namespace OpenTK.Graphics.ES20 [Slot(38)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glBlitFramebufferNV(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, System.Int32 mask, System.Int32 filter); - [Slot(61)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glConservativeRasterParameteriNV(System.Int32 pname, Int32 param); [Slot(62)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glConservativeRasterParameteriNV(System.Int32 pname, Int32 param); + [Slot(63)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glCopyBufferSubDataNV(System.Int32 readTarget, System.Int32 writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size); - [Slot(65)] + [Slot(66)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glCopyPathNV(UInt32 resultPath, UInt32 srcPath); - [Slot(70)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glCoverageMaskNV(bool mask); [Slot(71)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glCoverageModulationNV(System.Int32 components); + private static extern void glCoverageMaskNV(bool mask); [Slot(72)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glCoverageModulationTableNV(Int32 n, Single* v); + private static extern void glCoverageModulationNV(System.Int32 components); [Slot(73)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glCoverageOperationNV(System.Int32 operation); + private static extern unsafe void glCoverageModulationTableNV(Int32 n, [CountAttribute(Parameter = "n")] Single* v); [Slot(74)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glCoverFillPathInstancedNV(Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, System.Int32 coverMode, System.Int32 transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues); + private static extern void glCoverageOperationNV(System.Int32 operation); [Slot(75)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glCoverFillPathNV(UInt32 path, System.Int32 coverMode); + private static extern unsafe void glCoverFillPathInstancedNV(Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, System.Int32 coverMode, System.Int32 transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues); [Slot(76)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glCoverStrokePathInstancedNV(Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, System.Int32 coverMode, System.Int32 transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues); + private static extern void glCoverFillPathNV(UInt32 path, System.Int32 coverMode); [Slot(77)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glCoverStrokePathInstancedNV(Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, System.Int32 coverMode, System.Int32 transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues); + [Slot(78)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glCoverStrokePathNV(UInt32 path, System.Int32 coverMode); - [Slot(92)] + [Slot(93)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteFencesNV(Int32 n, [CountAttribute(Parameter = "n")] UInt32* fences); - [Slot(95)] + [Slot(96)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDeletePathsNV(UInt32 path, Int32 range); - [Slot(109)] + [Slot(110)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDepthRangeArrayfvNV(UInt32 first, Int32 count, Single* v); - [Slot(112)] + [Slot(113)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDepthRangeIndexedfNV(UInt32 index, Single n, Single f); - [Slot(118)] + [Slot(119)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDisableiNV(System.Int32 target, UInt32 index); - [Slot(126)] + [Slot(127)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawArraysInstancedNV(System.Int32 mode, Int32 first, Int32 count, Int32 primcount); - [Slot(129)] + [Slot(130)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDrawBuffersNV(Int32 n, [CountAttribute(Parameter = "n")] System.Int32* bufs); - [Slot(139)] + [Slot(140)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawElementsInstancedNV(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount); - [Slot(144)] + [Slot(145)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawVkImageNV(UInt64 vkImage, UInt32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1); - [Slot(150)] + [Slot(151)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEnableiNV(System.Int32 target, UInt32 index); - [Slot(153)] + [Slot(154)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEndConditionalRenderNV(); - [Slot(172)] + [Slot(173)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFinishFenceNV(UInt32 fence); - [Slot(175)] + [Slot(176)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFragmentCoverageColorNV(UInt32 color); - [Slot(181)] + [Slot(182)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glFramebufferSampleLocationsfvNV(System.Int32 target, UInt32 start, Int32 count, Single* v); - [Slot(195)] + [Slot(196)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGenFencesNV(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* fences); - [Slot(197)] + [Slot(198)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int32 glGenPathsNV(Int32 range); - [Slot(212)] + [Slot(213)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetCoverageModulationTableNV(Int32 bufsize, [OutAttribute] Single* v); - [Slot(218)] + [Slot(219)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetFenceivNV(UInt32 fence, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(220)] + [Slot(221)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetFloati_vNV(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data); - [Slot(229)] + [Slot(230)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int64 glGetImageHandleNV(UInt32 texture, Int32 level, bool layered, Int32 layer, System.Int32 format); - [Slot(233)] + [Slot(234)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetInternalformatSampleivNV(System.Int32 target, System.Int32 internalformat, Int32 samples, System.Int32 pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params); - [Slot(249)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathColorGenfvNV(System.Int32 color, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value); [Slot(250)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathColorGenivNV(System.Int32 color, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value); + private static extern unsafe void glGetPathColorGenfvNV(System.Int32 color, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value); [Slot(251)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathCommandsNV(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands); + private static extern unsafe void glGetPathColorGenivNV(System.Int32 color, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value); [Slot(252)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathCoordsNV(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords); + private static extern unsafe void glGetPathCommandsNV(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands); [Slot(253)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathDashArrayNV(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray); + private static extern unsafe void glGetPathCoordsNV(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords); [Slot(254)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Single glGetPathLengthNV(UInt32 path, Int32 startSegment, Int32 numSegments); + private static extern unsafe void glGetPathDashArrayNV(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray); [Slot(255)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathMetricRangeNV(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics); + private static extern Single glGetPathLengthNV(UInt32 path, Int32 startSegment, Int32 numSegments); [Slot(256)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathMetricsNV(UInt32 metricQueryMask, Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics); + private static extern unsafe void glGetPathMetricRangeNV(System.Int32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics); [Slot(257)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathParameterfvNV(UInt32 path, System.Int32 pname, [OutAttribute, CountAttribute(Count = 4)] Single* value); + private static extern unsafe void glGetPathMetricsNV(System.Int32 metricQueryMask, Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics); [Slot(258)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathParameterivNV(UInt32 path, System.Int32 pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value); + private static extern unsafe void glGetPathParameterfvNV(UInt32 path, System.Int32 pname, [OutAttribute, CountAttribute(Count = 4)] Single* value); [Slot(259)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathSpacingNV(System.Int32 pathListMode, Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, System.Int32 transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing); + private static extern unsafe void glGetPathParameterivNV(UInt32 path, System.Int32 pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value); [Slot(260)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathTexGenfvNV(System.Int32 texCoordSet, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value); + private static extern unsafe void glGetPathSpacingNV(System.Int32 pathListMode, Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, System.Int32 transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing); [Slot(261)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetPathTexGenfvNV(System.Int32 texCoordSet, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value); + [Slot(262)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetPathTexGenivNV(System.Int32 texCoordSet, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value); - [Slot(279)] + [Slot(280)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetProgramResourcefvNV(UInt32 program, System.Int32 programInterface, UInt32 index, Int32 propCount, System.Int32* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params); - [Slot(305)] + [Slot(306)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int64 glGetTextureHandleNV(UInt32 texture); - [Slot(307)] + [Slot(308)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int64 glGetTextureSamplerHandleNV(UInt32 texture, UInt32 sampler); - [Slot(310)] + [Slot(311)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetUniformi64vNV(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params); - [Slot(318)] + [Slot(319)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern IntPtr glGetVkProcAddrNV([CountAttribute(Computed = "name")] IntPtr name); - [Slot(327)] + [Slot(328)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glInterpolatePathsNV(UInt32 resultPath, UInt32 pathA, UInt32 pathB, Single weight); - [Slot(331)] + [Slot(332)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsEnablediNV(System.Int32 target, UInt32 index); - [Slot(333)] + [Slot(334)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsFenceNV(UInt32 fence); - [Slot(335)] + [Slot(336)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsImageHandleResidentNV(UInt64 handle); - [Slot(337)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsPathNV(UInt32 path); [Slot(338)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsPointInFillPathNV(UInt32 path, UInt32 mask, Single x, Single y); + private static extern byte glIsPathNV(UInt32 path); [Slot(339)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glIsPointInFillPathNV(UInt32 path, UInt32 mask, Single x, Single y); + [Slot(340)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsPointInStrokePathNV(UInt32 path, Single x, Single y); - [Slot(348)] + [Slot(349)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsTextureHandleResidentNV(UInt64 handle); - [Slot(353)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMakeImageHandleNonResidentNV(UInt64 handle); [Slot(354)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMakeImageHandleResidentNV(UInt64 handle, System.Int32 access); + private static extern void glMakeImageHandleNonResidentNV(UInt64 handle); [Slot(355)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMakeTextureHandleNonResidentNV(UInt64 handle); + private static extern void glMakeImageHandleResidentNV(UInt64 handle, System.Int32 access); [Slot(356)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMakeTextureHandleNonResidentNV(UInt64 handle); + [Slot(357)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMakeTextureHandleResidentNV(UInt64 handle); - [Slot(359)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMatrixLoad3x2fNV(System.Int32 matrixMode, Single* m); - [Slot(360)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMatrixLoad3x3fNV(System.Int32 matrixMode, Single* m); [Slot(361)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMatrixLoadTranspose3x3fNV(System.Int32 matrixMode, Single* m); + private static extern unsafe void glMatrixLoad3x2fNV(System.Int32 matrixMode, Single* m); [Slot(362)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMatrixLoad3x3fNV(System.Int32 matrixMode, Single* m); + [Slot(366)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMatrixLoadTranspose3x3fNV(System.Int32 matrixMode, Single* m); + [Slot(369)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMatrixMult3x2fNV(System.Int32 matrixMode, Single* m); - [Slot(363)] + [Slot(370)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMatrixMult3x3fNV(System.Int32 matrixMode, Single* m); - [Slot(364)] + [Slot(373)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMatrixMultTranspose3x3fNV(System.Int32 matrixMode, Single* m); - [Slot(374)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glNamedFramebufferSampleLocationsfvNV(UInt32 framebuffer, UInt32 start, Int32 count, Single* v); - [Slot(381)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPathColorGenNV(System.Int32 color, System.Int32 genMode, System.Int32 colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single* coeffs); - [Slot(382)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPathCommandsNV(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, System.Int32 coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords); - [Slot(383)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathCoordsNV(UInt32 path, Int32 numCoords, System.Int32 coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords); - [Slot(384)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathCoverDepthFuncNV(System.Int32 func); - [Slot(385)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPathDashArrayNV(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray); - [Slot(386)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathFogGenNV(System.Int32 genMode); - [Slot(387)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern System.Int32 glPathGlyphIndexArrayNV(UInt32 firstPathName, System.Int32 fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale); - [Slot(388)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern System.Int32 glPathGlyphIndexRangeNV(System.Int32 fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount); - [Slot(389)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathGlyphRangeNV(UInt32 firstPathName, System.Int32 fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, System.Int32 handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale); - [Slot(390)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathGlyphsNV(UInt32 firstPathName, System.Int32 fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, Int32 numGlyphs, System.Int32 type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, System.Int32 handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale); - [Slot(391)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern System.Int32 glPathMemoryGlyphIndexArrayNV(UInt32 firstPathName, System.Int32 fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale); - [Slot(392)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathParameterfNV(UInt32 path, System.Int32 pname, Single value); - [Slot(393)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPathParameterfvNV(UInt32 path, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* value); - [Slot(394)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathParameteriNV(UInt32 path, System.Int32 pname, Int32 value); [Slot(395)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPathParameterivNV(UInt32 path, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* value); - [Slot(396)] + private static extern unsafe void glNamedFramebufferSampleLocationsfvNV(UInt32 framebuffer, UInt32 start, Int32 count, Single* v); + [Slot(402)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathStencilDepthOffsetNV(Single factor, Single units); - [Slot(397)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathStencilFuncNV(System.Int32 func, Int32 @ref, UInt32 mask); - [Slot(398)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathStringNV(UInt32 path, System.Int32 format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString); - [Slot(399)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPathSubCommandsNV(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, System.Int32 coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords); - [Slot(400)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathSubCoordsNV(UInt32 path, Int32 coordStart, Int32 numCoords, System.Int32 coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords); - [Slot(401)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPathTexGenNV(System.Int32 texCoordSet, System.Int32 genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single* coeffs); + private static extern unsafe void glPathColorGenNV(System.Int32 color, System.Int32 genMode, System.Int32 colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single* coeffs); [Slot(403)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe byte glPointAlongPathNV(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY); + private static extern unsafe void glPathCommandsNV(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, System.Int32 coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords); [Slot(404)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPolygonModeNV(System.Int32 face, System.Int32 mode); + private static extern void glPathCoordsNV(UInt32 path, Int32 numCoords, System.Int32 coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords); + [Slot(405)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPathCoverDepthFuncNV(System.Int32 func); + [Slot(406)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glPathDashArrayNV(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray); + [Slot(407)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPathFogGenNV(System.Int32 genMode); + [Slot(408)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern System.Int32 glPathGlyphIndexArrayNV(UInt32 firstPathName, System.Int32 fontTarget, IntPtr fontName, System.Int32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale); + [Slot(409)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern System.Int32 glPathGlyphIndexRangeNV(System.Int32 fontTarget, IntPtr fontName, System.Int32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount); + [Slot(410)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPathGlyphRangeNV(UInt32 firstPathName, System.Int32 fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, System.Int32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, System.Int32 handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale); + [Slot(411)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPathGlyphsNV(UInt32 firstPathName, System.Int32 fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, System.Int32 fontStyle, Int32 numGlyphs, System.Int32 type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, System.Int32 handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale); + [Slot(412)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern System.Int32 glPathMemoryGlyphIndexArrayNV(UInt32 firstPathName, System.Int32 fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale); + [Slot(413)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPathParameterfNV(UInt32 path, System.Int32 pname, Single value); [Slot(414)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramPathFragmentInputGenNV(UInt32 program, Int32 location, System.Int32 genMode, Int32 components, Single* coeffs); + private static extern unsafe void glPathParameterfvNV(UInt32 path, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* value); + [Slot(415)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPathParameteriNV(UInt32 path, System.Int32 pname, Int32 value); + [Slot(416)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glPathParameterivNV(UInt32 path, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* value); [Slot(417)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform1i64NV(UInt32 program, Int32 location, Int64 x); + private static extern void glPathStencilDepthOffsetNV(Single factor, Single units); [Slot(418)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform1i64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value); + private static extern void glPathStencilFuncNV(System.Int32 func, Int32 @ref, UInt32 mask); + [Slot(419)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPathStringNV(UInt32 path, System.Int32 format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString); + [Slot(420)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glPathSubCommandsNV(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, System.Int32 coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords); [Slot(421)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform1ui64NV(UInt32 program, Int32 location, UInt64 x); + private static extern void glPathSubCoordsNV(UInt32 path, Int32 coordStart, Int32 numCoords, System.Int32 coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords); [Slot(422)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform1ui64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value); - [Slot(427)] + private static extern unsafe void glPathTexGenNV(System.Int32 texCoordSet, System.Int32 genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single* coeffs); + [Slot(424)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform2i64NV(UInt32 program, Int32 location, Int64 x, Int64 y); - [Slot(428)] + private static extern unsafe byte glPointAlongPathNV(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY); + [Slot(425)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform2i64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value); - [Slot(431)] + private static extern void glPolygonModeNV(System.Int32 face, System.Int32 mode); + [Slot(435)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform2ui64NV(UInt32 program, Int32 location, UInt64 x, UInt64 y); - [Slot(432)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform2ui64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value); - [Slot(437)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform3i64NV(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z); + private static extern unsafe void glProgramPathFragmentInputGenNV(UInt32 program, Int32 location, System.Int32 genMode, Int32 components, Single* coeffs); [Slot(438)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform3i64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value); - [Slot(441)] + private static extern void glProgramUniform1i64NV(UInt32 program, Int32 location, Int64 x); + [Slot(439)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform3ui64NV(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z); + private static extern unsafe void glProgramUniform1i64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value); [Slot(442)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform3ui64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value); - [Slot(447)] + private static extern void glProgramUniform1ui64NV(UInt32 program, Int32 location, UInt64 x); + [Slot(443)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform4i64NV(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w); + private static extern unsafe void glProgramUniform1ui64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value); [Slot(448)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform4i64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value); - [Slot(451)] + private static extern void glProgramUniform2i64NV(UInt32 program, Int32 location, Int64 x, Int64 y); + [Slot(449)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform4ui64NV(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w); + private static extern unsafe void glProgramUniform2i64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value); [Slot(452)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform4ui64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value); - [Slot(456)] + private static extern void glProgramUniform2ui64NV(UInt32 program, Int32 location, UInt64 x, UInt64 y); + [Slot(453)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniformHandleui64NV(UInt32 program, Int32 location, UInt64 value); + private static extern unsafe void glProgramUniform2ui64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value); [Slot(458)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform3i64NV(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z); + [Slot(459)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform3i64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value); + [Slot(462)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform3ui64NV(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z); + [Slot(463)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform3ui64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value); + [Slot(468)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform4i64NV(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w); + [Slot(469)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform4i64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value); + [Slot(472)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform4ui64NV(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w); + [Slot(473)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform4ui64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value); + [Slot(477)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniformHandleui64NV(UInt32 program, Int32 location, UInt64 value); + [Slot(479)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformHandleui64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values); - [Slot(474)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glReadBufferNV(System.Int32 mode); - [Slot(486)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRenderbufferStorageMultisampleNV(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(487)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glResolveDepthValuesNV(); [Slot(495)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glScissorArrayvNV(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v); - [Slot(497)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glScissorIndexedNV(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height); - [Slot(499)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glScissorIndexedvNV(UInt32 index, [CountAttribute(Count = 4)] Int32* v); - [Slot(503)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSetFenceNV(UInt32 fence, System.Int32 condition); + private static extern void glReadBufferNV(System.Int32 mode); [Slot(507)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSignalVkFenceNV(UInt64 vkFence); + private static extern void glRenderbufferStorageMultisampleNV(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height); [Slot(508)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSignalVkSemaphoreNV(UInt64 vkSemaphore); - [Slot(510)] + private static extern void glResolveDepthValuesNV(); + [Slot(516)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glStencilFillPathInstancedNV(Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, System.Int32 fillMode, UInt32 mask, System.Int32 transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues); - [Slot(511)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilFillPathNV(UInt32 path, System.Int32 fillMode, UInt32 mask); + private static extern unsafe void glScissorArrayvNV(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v); [Slot(518)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glStencilStrokePathInstancedNV(Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, System.Int32 transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues); - [Slot(519)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilStrokePathNV(UInt32 path, Int32 reference, UInt32 mask); + private static extern void glScissorIndexedNV(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height); [Slot(520)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glStencilThenCoverFillPathInstancedNV(Int32 numPaths, System.Int32 pathNameType, IntPtr paths, UInt32 pathBase, System.Int32 fillMode, UInt32 mask, System.Int32 coverMode, System.Int32 transformType, Single* transformValues); - [Slot(521)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilThenCoverFillPathNV(UInt32 path, System.Int32 fillMode, UInt32 mask, System.Int32 coverMode); - [Slot(522)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glStencilThenCoverStrokePathInstancedNV(Int32 numPaths, System.Int32 pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, System.Int32 coverMode, System.Int32 transformType, Single* transformValues); - [Slot(523)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilThenCoverStrokePathNV(UInt32 path, Int32 reference, UInt32 mask, System.Int32 coverMode); + private static extern unsafe void glScissorIndexedvNV(UInt32 index, [CountAttribute(Count = 4)] Int32* v); [Slot(524)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glSetFenceNV(UInt32 fence, System.Int32 condition); + [Slot(528)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glSignalVkFenceNV(UInt64 vkFence); + [Slot(529)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glSignalVkSemaphoreNV(UInt64 vkSemaphore); + [Slot(531)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glStencilFillPathInstancedNV(Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, System.Int32 fillMode, UInt32 mask, System.Int32 transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues); + [Slot(532)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glStencilFillPathNV(UInt32 path, System.Int32 fillMode, UInt32 mask); + [Slot(539)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glStencilStrokePathInstancedNV(Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, System.Int32 transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues); + [Slot(540)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glStencilStrokePathNV(UInt32 path, Int32 reference, UInt32 mask); + [Slot(541)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glStencilThenCoverFillPathInstancedNV(Int32 numPaths, System.Int32 pathNameType, IntPtr paths, UInt32 pathBase, System.Int32 fillMode, UInt32 mask, System.Int32 coverMode, System.Int32 transformType, Single* transformValues); + [Slot(542)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glStencilThenCoverFillPathNV(UInt32 path, System.Int32 fillMode, UInt32 mask, System.Int32 coverMode); + [Slot(543)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glStencilThenCoverStrokePathInstancedNV(Int32 numPaths, System.Int32 pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, System.Int32 coverMode, System.Int32 transformType, Single* transformValues); + [Slot(544)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glStencilThenCoverStrokePathNV(UInt32 path, Int32 reference, UInt32 mask, System.Int32 coverMode); + [Slot(545)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glSubpixelPrecisionBiasNV(UInt32 xbits, UInt32 ybits); - [Slot(525)] + [Slot(546)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glTestFenceNV(UInt32 fence); - [Slot(562)] + [Slot(584)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTransformPathNV(UInt32 resultPath, UInt32 srcPath, System.Int32 transformType, [CountAttribute(Computed = "transformType")] Single* transformValues); - [Slot(566)] + [Slot(588)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform1i64NV(Int32 location, Int64 x); - [Slot(567)] + [Slot(589)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform1i64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value); - [Slot(569)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform1ui64NV(Int32 location, UInt64 x); - [Slot(570)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform1ui64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value); - [Slot(574)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform2i64NV(Int32 location, Int64 x, Int64 y); - [Slot(575)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform2i64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value); - [Slot(577)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform2ui64NV(Int32 location, UInt64 x, UInt64 y); - [Slot(578)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform2ui64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value); - [Slot(582)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform3i64NV(Int32 location, Int64 x, Int64 y, Int64 z); - [Slot(583)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform3i64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value); - [Slot(585)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform3ui64NV(Int32 location, UInt64 x, UInt64 y, UInt64 z); - [Slot(586)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform3ui64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value); - [Slot(590)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform4i64NV(Int32 location, Int64 x, Int64 y, Int64 z, Int64 w); [Slot(591)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform4i64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value); - [Slot(593)] + private static extern void glUniform1ui64NV(Int32 location, UInt64 x); + [Slot(592)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform4ui64NV(Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w); - [Slot(594)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform4ui64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value); + private static extern unsafe void glUniform1ui64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value); [Slot(596)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniformHandleui64NV(Int32 location, UInt64 value); - [Slot(598)] + private static extern void glUniform2i64NV(Int32 location, Int64 x, Int64 y); + [Slot(597)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformHandleui64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value); + private static extern unsafe void glUniform2i64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value); + [Slot(599)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glUniform2ui64NV(Int32 location, UInt64 x, UInt64 y); [Slot(600)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix2x3fvNV(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); - [Slot(601)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix2x4fvNV(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); - [Slot(603)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix3x2fvNV(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); + private static extern unsafe void glUniform2ui64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value); [Slot(604)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix3x4fvNV(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); - [Slot(606)] + private static extern void glUniform3i64NV(Int32 location, Int64 x, Int64 y, Int64 z); + [Slot(605)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix4x2fvNV(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); + private static extern unsafe void glUniform3i64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value); [Slot(607)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix4x3fvNV(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); - [Slot(624)] + private static extern void glUniform3ui64NV(Int32 location, UInt64 x, UInt64 y, UInt64 z); + [Slot(608)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribDivisorNV(UInt32 index, UInt32 divisor); - [Slot(627)] + private static extern unsafe void glUniform3ui64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value); + [Slot(612)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glViewportArrayvNV(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v); + private static extern void glUniform4i64NV(Int32 location, Int64 x, Int64 y, Int64 z, Int64 w); + [Slot(613)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniform4i64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value); + [Slot(615)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glUniform4ui64NV(Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w); + [Slot(616)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniform4ui64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value); + [Slot(618)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glUniformHandleui64NV(Int32 location, UInt64 value); + [Slot(620)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniformHandleui64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value); + [Slot(622)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniformMatrix2x3fvNV(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); + [Slot(623)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniformMatrix2x4fvNV(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); + [Slot(625)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniformMatrix3x2fvNV(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); + [Slot(626)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniformMatrix3x4fvNV(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); + [Slot(628)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniformMatrix4x2fvNV(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); [Slot(629)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniformMatrix4x3fvNV(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); + [Slot(646)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribDivisorNV(UInt32 index, UInt32 divisor); + [Slot(649)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glViewportArrayvNV(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v); + [Slot(651)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glViewportIndexedfNV(UInt32 index, Single x, Single y, Single w, Single h); - [Slot(631)] + [Slot(653)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glViewportIndexedfvNV(UInt32 index, [CountAttribute(Count = 4)] Single* v); - [Slot(633)] + [Slot(655)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glViewportPositionWScaleNV(UInt32 index, Single xcoeff, Single ycoeff); + [Slot(656)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glViewportSwizzleNV(UInt32 index, System.Int32 swizzlex, System.Int32 swizzley, System.Int32 swizzlez, System.Int32 swizzlew); - [Slot(636)] + [Slot(659)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glWaitVkSemaphoreNV(UInt64 vkSemaphore); - [Slot(637)] + [Slot(660)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glWeightPathsNV(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights); [Slot(19)] @@ -55200,224 +62876,227 @@ namespace OpenTK.Graphics.ES20 [Slot(35)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glBlendFuncSeparateiOES(UInt32 buf, System.Int32 srcRGB, System.Int32 dstRGB, System.Int32 srcAlpha, System.Int32 dstAlpha); - [Slot(55)] + [Slot(56)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glColorMaskiOES(UInt32 index, bool r, bool g, bool b, bool a); - [Slot(58)] + [Slot(59)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glCompressedTexImage3DOES(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data); - [Slot(60)] + [Slot(61)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glCompressedTexSubImage3DOES(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, System.Int32 format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data); - [Slot(64)] + [Slot(65)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glCopyImageSubDataOES(UInt32 srcName, System.Int32 srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, System.Int32 dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth); - [Slot(68)] + [Slot(69)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glCopyTexSubImage3DOES(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height); - [Slot(106)] + [Slot(107)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteVertexArraysOES(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays); - [Slot(110)] + [Slot(111)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDepthRangeArrayfvOES(UInt32 first, Int32 count, Single* v); - [Slot(113)] + [Slot(114)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDepthRangeIndexedfOES(UInt32 index, Single n, Single f); - [Slot(119)] + [Slot(120)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDisableiOES(System.Int32 target, UInt32 index); - [Slot(132)] + [Slot(133)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawElementsBaseVertexOES(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex); - [Slot(137)] + [Slot(138)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawElementsInstancedBaseVertexOES(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex); - [Slot(141)] + [Slot(142)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawRangeElementsBaseVertexOES(System.Int32 mode, UInt32 start, UInt32 end, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex); - [Slot(145)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glEGLImageTargetRenderbufferStorageOES(System.Int32 target, IntPtr image); [Slot(146)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glEGLImageTargetRenderbufferStorageOES(System.Int32 target, IntPtr image); + [Slot(147)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEGLImageTargetTexture2DOES(System.Int32 target, IntPtr image); - [Slot(151)] + [Slot(152)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEnableiOES(System.Int32 target, UInt32 index); - [Slot(186)] + [Slot(187)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferTexture3DOES(System.Int32 target, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level, Int32 zoffset); - [Slot(191)] + [Slot(192)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferTextureOES(System.Int32 target, System.Int32 attachment, UInt32 texture, Int32 level); - [Slot(204)] + [Slot(205)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGenVertexArraysOES(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays); - [Slot(211)] + [Slot(212)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glGetBufferPointervOES(System.Int32 target, System.Int32 pname, [OutAttribute] IntPtr @params); - [Slot(221)] + [Slot(222)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetFloati_vOES(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data); - [Slot(274)] + [Slot(275)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetProgramBinaryOES(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] System.Int32* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary); - [Slot(288)] + [Slot(289)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetSamplerParameterIivOES(UInt32 sampler, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(290)] + [Slot(291)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetSamplerParameterIuivOES(UInt32 sampler, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params); - [Slot(300)] + [Slot(301)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetTexParameterIivOES(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(302)] + [Slot(303)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetTexParameterIuivOES(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params); - [Slot(332)] + [Slot(333)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsEnablediOES(System.Int32 target, UInt32 index); - [Slot(349)] + [Slot(350)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsVertexArrayOES(UInt32 array); - [Slot(357)] + [Slot(358)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern IntPtr glMapBufferOES(System.Int32 target, System.Int32 access); - [Slot(366)] + [Slot(387)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMinSampleShadingOES(Single value); - [Slot(380)] + [Slot(401)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPatchParameteriOES(System.Int32 pname, Int32 value); - [Slot(411)] + [Slot(432)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPrimitiveBoundingBoxOES(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW); - [Slot(412)] + [Slot(433)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramBinaryOES(UInt32 program, System.Int32 binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length); - [Slot(491)] + [Slot(512)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glSamplerParameterIivOES(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* param); - [Slot(493)] + [Slot(514)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glSamplerParameterIuivOES(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] UInt32* param); - [Slot(496)] + [Slot(517)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glScissorArrayvOES(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v); - [Slot(498)] + [Slot(519)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glScissorIndexedOES(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height); - [Slot(500)] + [Slot(521)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glScissorIndexedvOES(UInt32 index, [CountAttribute(Count = 4)] Int32* v); - [Slot(527)] + [Slot(548)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexBufferOES(System.Int32 target, System.Int32 internalformat, UInt32 buffer); - [Slot(529)] + [Slot(550)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexBufferRangeOES(System.Int32 target, System.Int32 internalformat, UInt32 buffer, IntPtr offset, IntPtr size); - [Slot(531)] + [Slot(552)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexImage3DOES(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels); - [Slot(537)] + [Slot(558)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTexParameterIivOES(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); - [Slot(539)] + [Slot(560)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTexParameterIuivOES(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] UInt32* @params); - [Slot(544)] + [Slot(565)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexStorage3DMultisampleOES(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations); - [Slot(551)] + [Slot(572)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexSubImage3DOES(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels); - [Slot(561)] + [Slot(583)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureViewOES(UInt32 texture, System.Int32 target, UInt32 origtexture, System.Int32 internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers); - [Slot(608)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glUnmapBufferOES(System.Int32 target); - [Slot(628)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glViewportArrayvOES(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v); [Slot(630)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glUnmapBufferOES(System.Int32 target); + [Slot(650)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glViewportArrayvOES(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v); + [Slot(652)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glViewportIndexedfOES(UInt32 index, Single x, Single y, Single w, Single h); - [Slot(632)] + [Slot(654)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glViewportIndexedfvOES(UInt32 index, [CountAttribute(Count = 4)] Single* v); - [Slot(189)] + [Slot(190)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferTextureMultisampleMultiviewOVR(System.Int32 target, System.Int32 attachment, UInt32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews); - [Slot(190)] + [Slot(191)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferTextureMultiviewOVR(System.Int32 target, System.Int32 attachment, UInt32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews); [Slot(4)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glAlphaFuncQCOM(System.Int32 func, Single @ref); - [Slot(116)] + [Slot(117)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDisableDriverControlQCOM(UInt32 driverControl); - [Slot(148)] + [Slot(149)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEnableDriverControlQCOM(UInt32 driverControl); - [Slot(157)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glEndTilingQCOM(UInt32 preserveMask); [Slot(158)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glExtGetBufferPointervQCOM(System.Int32 target, [OutAttribute] IntPtr @params); + private static extern void glEndTilingQCOM(System.Int32 preserveMask); [Slot(159)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glExtGetBuffersQCOM([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers); + private static extern void glExtGetBufferPointervQCOM(System.Int32 target, [OutAttribute] IntPtr @params); [Slot(160)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glExtGetFramebuffersQCOM([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers); + private static extern unsafe void glExtGetBuffersQCOM([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers); [Slot(161)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glExtGetProgramBinarySourceQCOM(UInt32 program, System.Int32 shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] IntPtr source, [OutAttribute] Int32* length); + private static extern unsafe void glExtGetFramebuffersQCOM([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers); [Slot(162)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glExtGetProgramsQCOM([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms); + private static extern unsafe void glExtGetProgramBinarySourceQCOM(UInt32 program, System.Int32 shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] IntPtr source, [OutAttribute] Int32* length); [Slot(163)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glExtGetRenderbuffersQCOM([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers); + private static extern unsafe void glExtGetProgramsQCOM([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms); [Slot(164)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glExtGetShadersQCOM([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders); + private static extern unsafe void glExtGetRenderbuffersQCOM([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers); [Slot(165)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glExtGetTexLevelParameterivQCOM(UInt32 texture, System.Int32 face, Int32 level, System.Int32 pname, [OutAttribute] Int32* @params); + private static extern unsafe void glExtGetShadersQCOM([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders); [Slot(166)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glExtGetTexSubImageQCOM(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, System.Int32 format, System.Int32 type, [OutAttribute] IntPtr texels); + private static extern unsafe void glExtGetTexLevelParameterivQCOM(UInt32 texture, System.Int32 face, Int32 level, System.Int32 pname, [OutAttribute] Int32* @params); [Slot(167)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glExtGetTexturesQCOM([OutAttribute] UInt32* textures, Int32 maxTextures, [OutAttribute] Int32* numTextures); + private static extern void glExtGetTexSubImageQCOM(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, System.Int32 format, System.Int32 type, [OutAttribute] IntPtr texels); [Slot(168)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glExtIsProgramBinaryQCOM(UInt32 program); + private static extern unsafe void glExtGetTexturesQCOM([OutAttribute] UInt32* textures, Int32 maxTextures, [OutAttribute] Int32* numTextures); [Slot(169)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glExtTexObjectStateOverrideiQCOM(System.Int32 target, System.Int32 pname, Int32 param); - [Slot(176)] + private static extern byte glExtIsProgramBinaryQCOM(UInt32 program); + [Slot(170)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFramebufferFetchBarrierQCOM(); + private static extern void glExtTexObjectStateOverrideiQCOM(System.Int32 target, System.Int32 pname, Int32 param); [Slot(177)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glFramebufferFoveationConfigQCOM(UInt32 framebuffer, UInt32 numLayers, UInt32 focalPointsPerLayer, UInt32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] UInt32* providedFeatures); + private static extern void glFramebufferFetchBarrierQCOM(); [Slot(178)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFramebufferFoveationParametersQCOM(UInt32 framebuffer, UInt32 layer, UInt32 focalPoint, Single focalX, Single focalY, Single gainX, Single gainY, Single foveaArea); - [Slot(215)] + private static extern unsafe void glFramebufferFoveationConfigQCOM(UInt32 framebuffer, UInt32 numLayers, UInt32 focalPointsPerLayer, UInt32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] UInt32* providedFeatures); + [Slot(179)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetDriverControlsQCOM([OutAttribute] Int32* num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32* driverControls); + private static extern void glFramebufferFoveationParametersQCOM(UInt32 framebuffer, UInt32 layer, UInt32 focalPoint, Single focalX, Single focalY, Single gainX, Single gainY, Single foveaArea); [Slot(216)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetDriverControlStringQCOM(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr driverControlString); - [Slot(509)] + private static extern unsafe void glGetDriverControlsQCOM([OutAttribute] Int32* num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32* driverControls); + [Slot(217)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStartTilingQCOM(UInt32 x, UInt32 y, UInt32 width, UInt32 height, UInt32 preserveMask); + private static extern unsafe void glGetDriverControlStringQCOM(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr driverControlString); + [Slot(530)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glStartTilingQCOM(UInt32 x, UInt32 y, UInt32 width, UInt32 height, System.Int32 preserveMask); + [Slot(573)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureFoveationParametersQCOM(UInt32 texture, UInt32 layer, UInt32 focalPoint, Single focalX, Single focalY, Single gainX, Single gainY, Single foveaArea); } } diff --git a/src/OpenTK/Graphics/ES20/ES20Enums.cs b/src/OpenTK/Graphics/ES20/ES20Enums.cs index 519952df..1d32ede1 100644 --- a/src/OpenTK/Graphics/ES20/ES20Enums.cs +++ b/src/OpenTK/Graphics/ES20/ES20Enums.cs @@ -167,7 +167,7 @@ namespace OpenTK.Graphics.ES20 } /// - /// Used in GL.Amd.GetPerfMonitorCounterData, GL.Amd.GetPerfMonitorCounterInfo and 286 other functions + /// Used in GL.Amd.GetPerfMonitorCounterData, GL.Amd.GetPerfMonitorCounterInfo and 305 other functions /// public enum All : int { @@ -240,10 +240,18 @@ namespace OpenTK.Graphics.ES20 /// QueryDepthPassEventBitAmd = ((int)0x00000001), /// + /// Original was GL_SYNC_FLUSH_COMMANDS_BIT = 0x00000001 + /// + SyncFlushCommandsBit = ((int)0x00000001), + /// /// Original was GL_SYNC_FLUSH_COMMANDS_BIT_APPLE = 0x00000001 /// SyncFlushCommandsBitApple = ((int)0x00000001), /// + /// Original was GL_TEXTURE_STORAGE_SPARSE_BIT_AMD = 0x00000001 + /// + TextureStorageSparseBitAmd = ((int)0x00000001), + /// /// Original was GL_VERTEX_ATTRIB_ARRAY_BARRIER_BIT = 0x00000001 /// VertexAttribArrayBarrierBit = ((int)0x00000001), @@ -312,6 +320,10 @@ namespace OpenTK.Graphics.ES20 /// ColorBufferBit2Qcom = ((int)0x00000004), /// + /// Original was GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT = 0x00000004 + /// + ContextFlagRobustAccessBit = ((int)0x00000004), + /// /// Original was GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT_ARB = 0x00000004 /// ContextFlagRobustAccessBitArb = ((int)0x00000004), @@ -348,6 +360,10 @@ namespace OpenTK.Graphics.ES20 /// ColorBufferBit3Qcom = ((int)0x00000008), /// + /// Original was GL_CONTEXT_FLAG_NO_ERROR_BIT = 0x00000008 + /// + ContextFlagNoErrorBit = ((int)0x00000008), + /// /// Original was GL_CONTEXT_FLAG_NO_ERROR_BIT_KHR = 0x00000008 /// ContextFlagNoErrorBitKhr = ((int)0x00000008), @@ -1008,6 +1024,10 @@ namespace OpenTK.Graphics.ES20 /// FrontLeft = ((int)0x0400), /// + /// Original was GL_SPARSE_STORAGE_BIT_ARB = 0x0400 + /// + SparseStorageBitArb = ((int)0x0400), + /// /// Original was GL_FONT_UNDERLINE_POSITION_BIT_NV = 0x04000000 /// FontUnderlinePositionBitNv = ((int)0x04000000), @@ -1192,6 +1212,14 @@ namespace OpenTK.Graphics.ES20 /// Exp = ((int)0x0800), /// + /// Original was GL_LGPU_SEPARATE_STORAGE_BIT_NVX = 0x0800 + /// + LgpuSeparateStorageBitNvx = ((int)0x0800), + /// + /// Original was GL_PER_GPU_STORAGE_BIT_NV = 0x0800 + /// + PerGpuStorageBitNv = ((int)0x0800), + /// /// Original was GL_FONT_UNDERLINE_THICKNESS_BIT_NV = 0x08000000 /// FontUnderlineThicknessBitNv = ((int)0x08000000), @@ -2380,6 +2408,10 @@ namespace OpenTK.Graphics.ES20 /// Double = ((int)0x140A), /// + /// Original was GL_HALF_FLOAT = 0x140B + /// + HalfFloat = ((int)0x140B), + /// /// Original was GL_Fixed = 0X140c /// Fixed = ((int)0X140c), @@ -3188,34 +3220,18 @@ namespace OpenTK.Graphics.ES20 /// ConstantColor = ((int)0x8001), /// - /// Original was GL_CONSTANT_COLOR_EXT = 0x8001 - /// - ConstantColorExt = ((int)0x8001), - /// /// Original was GL_ONE_MINUS_CONSTANT_COLOR = 0x8002 /// OneMinusConstantColor = ((int)0x8002), /// - /// Original was GL_ONE_MINUS_CONSTANT_COLOR_EXT = 0x8002 - /// - OneMinusConstantColorExt = ((int)0x8002), - /// /// Original was GL_CONSTANT_ALPHA = 0x8003 /// ConstantAlpha = ((int)0x8003), /// - /// Original was GL_CONSTANT_ALPHA_EXT = 0x8003 - /// - ConstantAlphaExt = ((int)0x8003), - /// /// Original was GL_ONE_MINUS_CONSTANT_ALPHA = 0x8004 /// OneMinusConstantAlpha = ((int)0x8004), /// - /// Original was GL_ONE_MINUS_CONSTANT_ALPHA_EXT = 0x8004 - /// - OneMinusConstantAlphaExt = ((int)0x8004), - /// /// Original was GL_BLEND_COLOR = 0x8005 /// BlendColor = ((int)0x8005), @@ -3348,22 +3364,42 @@ namespace OpenTK.Graphics.ES20 /// ReduceExt = ((int)0x8016), /// + /// Original was GL_CONVOLUTION_FORMAT = 0x8017 + /// + ConvolutionFormat = ((int)0x8017), + /// /// Original was GL_CONVOLUTION_FORMAT_EXT = 0x8017 /// ConvolutionFormatExt = ((int)0x8017), /// + /// Original was GL_CONVOLUTION_WIDTH = 0x8018 + /// + ConvolutionWidth = ((int)0x8018), + /// /// Original was GL_CONVOLUTION_WIDTH_EXT = 0x8018 /// ConvolutionWidthExt = ((int)0x8018), /// + /// Original was GL_CONVOLUTION_HEIGHT = 0x8019 + /// + ConvolutionHeight = ((int)0x8019), + /// /// Original was GL_CONVOLUTION_HEIGHT_EXT = 0x8019 /// ConvolutionHeightExt = ((int)0x8019), /// + /// Original was GL_MAX_CONVOLUTION_WIDTH = 0x801A + /// + MaxConvolutionWidth = ((int)0x801A), + /// /// Original was GL_MAX_CONVOLUTION_WIDTH_EXT = 0x801A /// MaxConvolutionWidthExt = ((int)0x801A), /// + /// Original was GL_MAX_CONVOLUTION_HEIGHT = 0x801B + /// + MaxConvolutionHeight = ((int)0x801B), + /// /// Original was GL_MAX_CONVOLUTION_HEIGHT_EXT = 0x801B /// MaxConvolutionHeightExt = ((int)0x801B), @@ -3448,34 +3484,66 @@ namespace OpenTK.Graphics.ES20 /// ProxyHistogramExt = ((int)0x8025), /// + /// Original was GL_HISTOGRAM_WIDTH = 0x8026 + /// + HistogramWidth = ((int)0x8026), + /// /// Original was GL_HISTOGRAM_WIDTH_EXT = 0x8026 /// HistogramWidthExt = ((int)0x8026), /// + /// Original was GL_HISTOGRAM_FORMAT = 0x8027 + /// + HistogramFormat = ((int)0x8027), + /// /// Original was GL_HISTOGRAM_FORMAT_EXT = 0x8027 /// HistogramFormatExt = ((int)0x8027), /// + /// Original was GL_HISTOGRAM_RED_SIZE = 0x8028 + /// + HistogramRedSize = ((int)0x8028), + /// /// Original was GL_HISTOGRAM_RED_SIZE_EXT = 0x8028 /// HistogramRedSizeExt = ((int)0x8028), /// + /// Original was GL_HISTOGRAM_GREEN_SIZE = 0x8029 + /// + HistogramGreenSize = ((int)0x8029), + /// /// Original was GL_HISTOGRAM_GREEN_SIZE_EXT = 0x8029 /// HistogramGreenSizeExt = ((int)0x8029), /// + /// Original was GL_HISTOGRAM_BLUE_SIZE = 0x802A + /// + HistogramBlueSize = ((int)0x802A), + /// /// Original was GL_HISTOGRAM_BLUE_SIZE_EXT = 0x802A /// HistogramBlueSizeExt = ((int)0x802A), /// + /// Original was GL_HISTOGRAM_ALPHA_SIZE = 0x802B + /// + HistogramAlphaSize = ((int)0x802B), + /// /// Original was GL_HISTOGRAM_ALPHA_SIZE_EXT = 0x802B /// HistogramAlphaSizeExt = ((int)0x802B), /// + /// Original was GL_HISTOGRAM_LUMINANCE_SIZE = 0x802C + /// + HistogramLuminanceSize = ((int)0x802C), + /// /// Original was GL_HISTOGRAM_LUMINANCE_SIZE_EXT = 0x802C /// HistogramLuminanceSizeExt = ((int)0x802C), /// + /// Original was GL_HISTOGRAM_SINK = 0x802D + /// + HistogramSink = ((int)0x802D), + /// /// Original was GL_HISTOGRAM_SINK_EXT = 0x802D /// HistogramSinkExt = ((int)0x802D), @@ -3680,14 +3748,26 @@ namespace OpenTK.Graphics.ES20 /// Rgb4 = ((int)0x804F), /// + /// Original was GL_RGB4_EXT = 0x804F + /// + Rgb4Ext = ((int)0x804F), + /// /// Original was GL_RGB5 = 0x8050 /// Rgb5 = ((int)0x8050), /// + /// Original was GL_RGB5_EXT = 0x8050 + /// + Rgb5Ext = ((int)0x8050), + /// /// Original was GL_RGB8 = 0x8051 /// Rgb8 = ((int)0x8051), /// + /// Original was GL_RGB8_EXT = 0x8051 + /// + Rgb8Ext = ((int)0x8051), + /// /// Original was GL_RGB8_OES = 0x8051 /// Rgb8Oes = ((int)0x8051), @@ -3704,6 +3784,10 @@ namespace OpenTK.Graphics.ES20 /// Rgb12 = ((int)0x8053), /// + /// Original was GL_RGB12_EXT = 0x8053 + /// + Rgb12Ext = ((int)0x8053), + /// /// Original was GL_RGB16 = 0x8054 /// Rgb16 = ((int)0x8054), @@ -3712,9 +3796,9 @@ namespace OpenTK.Graphics.ES20 /// Rgb16Ext = ((int)0x8054), /// - /// Original was GL_RGBA2 = 0x8055 + /// Original was GL_RGBA4_EXT = 0x8056 /// - Rgba2 = ((int)0x8055), + Rgba4Ext = ((int)0x8056), /// /// Original was GL_RGBA4_OES = 0x8056 /// @@ -3728,6 +3812,10 @@ namespace OpenTK.Graphics.ES20 /// Rgb5A1 = ((int)0x8057), /// + /// Original was GL_RGB5_A1_EXT = 0x8057 + /// + Rgb5A1Ext = ((int)0x8057), + /// /// Original was GL_RGB5_A1_OES = 0x8057 /// Rgb5A1Oes = ((int)0x8057), @@ -3736,6 +3824,10 @@ namespace OpenTK.Graphics.ES20 /// Rgba8 = ((int)0x8058), /// + /// Original was GL_RGBA8_EXT = 0x8058 + /// + Rgba8Ext = ((int)0x8058), + /// /// Original was GL_RGBA8_OES = 0x8058 /// Rgba8Oes = ((int)0x8058), @@ -3752,6 +3844,10 @@ namespace OpenTK.Graphics.ES20 /// Rgba12 = ((int)0x805A), /// + /// Original was GL_RGBA12_EXT = 0x805A + /// + Rgba12Ext = ((int)0x805A), + /// /// Original was GL_RGBA16 = 0x805B /// Rgba16 = ((int)0x805B), @@ -4420,34 +4516,66 @@ namespace OpenTK.Graphics.ES20 /// ColorTableBiasSgi = ((int)0x80D7), /// + /// Original was GL_COLOR_TABLE_FORMAT = 0x80D8 + /// + ColorTableFormat = ((int)0x80D8), + /// /// Original was GL_COLOR_TABLE_FORMAT_SGI = 0x80D8 /// ColorTableFormatSgi = ((int)0x80D8), /// + /// Original was GL_COLOR_TABLE_WIDTH = 0x80D9 + /// + ColorTableWidth = ((int)0x80D9), + /// /// Original was GL_COLOR_TABLE_WIDTH_SGI = 0x80D9 /// ColorTableWidthSgi = ((int)0x80D9), /// + /// Original was GL_COLOR_TABLE_RED_SIZE = 0x80DA + /// + ColorTableRedSize = ((int)0x80DA), + /// /// Original was GL_COLOR_TABLE_RED_SIZE_SGI = 0x80DA /// ColorTableRedSizeSgi = ((int)0x80DA), /// + /// Original was GL_COLOR_TABLE_GREEN_SIZE = 0x80DB + /// + ColorTableGreenSize = ((int)0x80DB), + /// /// Original was GL_COLOR_TABLE_GREEN_SIZE_SGI = 0x80DB /// ColorTableGreenSizeSgi = ((int)0x80DB), /// + /// Original was GL_COLOR_TABLE_BLUE_SIZE = 0x80DC + /// + ColorTableBlueSize = ((int)0x80DC), + /// /// Original was GL_COLOR_TABLE_BLUE_SIZE_SGI = 0x80DC /// ColorTableBlueSizeSgi = ((int)0x80DC), /// + /// Original was GL_COLOR_TABLE_ALPHA_SIZE = 0x80DD + /// + ColorTableAlphaSize = ((int)0x80DD), + /// /// Original was GL_COLOR_TABLE_ALPHA_SIZE_SGI = 0x80DD /// ColorTableAlphaSizeSgi = ((int)0x80DD), /// + /// Original was GL_COLOR_TABLE_LUMINANCE_SIZE = 0x80DE + /// + ColorTableLuminanceSize = ((int)0x80DE), + /// /// Original was GL_COLOR_TABLE_LUMINANCE_SIZE_SGI = 0x80DE /// ColorTableLuminanceSizeSgi = ((int)0x80DE), /// + /// Original was GL_COLOR_TABLE_INTENSITY_SIZE = 0x80DF + /// + ColorTableIntensitySize = ((int)0x80DF), + /// /// Original was GL_COLOR_TABLE_INTENSITY_SIZE_SGI = 0x80DF /// ColorTableIntensitySizeSgi = ((int)0x80DF), @@ -4804,6 +4932,10 @@ namespace OpenTK.Graphics.ES20 /// Texture4DBindingSgis = ((int)0x814F), /// + /// Original was GL_CONVOLUTION_BORDER_COLOR = 0x8154 + /// + ConvolutionBorderColor = ((int)0x8154), + /// /// Original was GL_LINEAR_CLIPMAP_LINEAR_SGIX = 0x8170 /// LinearClipmapLinearSgix = ((int)0x8170), @@ -4992,6 +5124,10 @@ namespace OpenTK.Graphics.ES20 /// DepthComponent16 = ((int)0x81A5), /// + /// Original was GL_DEPTH_COMPONENT16_ARB = 0x81A5 + /// + DepthComponent16Arb = ((int)0x81A5), + /// /// Original was GL_DEPTH_COMPONENT16_OES = 0x81A5 /// DepthComponent16Oes = ((int)0x81A5), @@ -5000,6 +5136,10 @@ namespace OpenTK.Graphics.ES20 /// DepthComponent16Sgix = ((int)0x81A5), /// + /// Original was GL_DEPTH_COMPONENT24_ARB = 0x81A6 + /// + DepthComponent24Arb = ((int)0x81A6), + /// /// Original was GL_DEPTH_COMPONENT24_OES = 0x81A6 /// DepthComponent24Oes = ((int)0x81A6), @@ -5008,6 +5148,10 @@ namespace OpenTK.Graphics.ES20 /// DepthComponent24Sgix = ((int)0x81A6), /// + /// Original was GL_DEPTH_COMPONENT32_ARB = 0x81A7 + /// + DepthComponent32Arb = ((int)0x81A7), + /// /// Original was GL_DEPTH_COMPONENT32_OES = 0x81A7 /// DepthComponent32Oes = ((int)0x81A7), @@ -5084,22 +5228,66 @@ namespace OpenTK.Graphics.ES20 /// SharedTexturePaletteExt = ((int)0x81FB), /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING = 0x8210 + /// + FramebufferAttachmentColorEncoding = ((int)0x8210), + /// /// Original was GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXT = 0x8210 /// FramebufferAttachmentColorEncodingExt = ((int)0x8210), /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE = 0x8211 + /// + FramebufferAttachmentComponentType = ((int)0x8211), + /// /// Original was GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT = 0x8211 /// FramebufferAttachmentComponentTypeExt = ((int)0x8211), /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_RED_SIZE = 0x8212 + /// + FramebufferAttachmentRedSize = ((int)0x8212), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_GREEN_SIZE = 0x8213 + /// + FramebufferAttachmentGreenSize = ((int)0x8213), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_BLUE_SIZE = 0x8214 + /// + FramebufferAttachmentBlueSize = ((int)0x8214), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE = 0x8215 + /// + FramebufferAttachmentAlphaSize = ((int)0x8215), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE = 0x8216 + /// + FramebufferAttachmentDepthSize = ((int)0x8216), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE = 0x8217 + /// + FramebufferAttachmentStencilSize = ((int)0x8217), + /// + /// Original was GL_FRAMEBUFFER_UNDEFINED = 0x8219 + /// + FramebufferUndefined = ((int)0x8219), + /// /// Original was GL_FRAMEBUFFER_UNDEFINED_OES = 0x8219 /// FramebufferUndefinedOes = ((int)0x8219), /// + /// Original was GL_BUFFER_IMMUTABLE_STORAGE = 0x821F + /// + BufferImmutableStorage = ((int)0x821F), + /// /// Original was GL_BUFFER_IMMUTABLE_STORAGE_EXT = 0x821F /// BufferImmutableStorageExt = ((int)0x821F), /// + /// Original was GL_BUFFER_STORAGE_FLAGS = 0x8220 + /// + BufferStorageFlags = ((int)0x8220), + /// /// Original was GL_BUFFER_STORAGE_FLAGS_EXT = 0x8220 /// BufferStorageFlagsExt = ((int)0x8220), @@ -5112,42 +5300,134 @@ namespace OpenTK.Graphics.ES20 /// PrimitiveRestartForPatchesSupportedOes = ((int)0x8221), /// + /// Original was GL_COMPRESSED_RED = 0x8225 + /// + CompressedRed = ((int)0x8225), + /// + /// Original was GL_COMPRESSED_RG = 0x8226 + /// + CompressedRg = ((int)0x8226), + /// + /// Original was GL_RG = 0x8227 + /// + Rg = ((int)0x8227), + /// /// Original was GL_RG_EXT = 0x8227 /// RgExt = ((int)0x8227), /// + /// Original was GL_R8 = 0x8229 + /// + R8 = ((int)0x8229), + /// /// Original was GL_R8_EXT = 0x8229 /// R8Ext = ((int)0x8229), /// + /// Original was GL_R16 = 0x822A + /// + R16 = ((int)0x822A), + /// /// Original was GL_R16_EXT = 0x822A /// R16Ext = ((int)0x822A), /// + /// Original was GL_RG8 = 0x822B + /// + Rg8 = ((int)0x822B), + /// /// Original was GL_RG8_EXT = 0x822B /// Rg8Ext = ((int)0x822B), /// + /// Original was GL_RG16 = 0x822C + /// + Rg16 = ((int)0x822C), + /// /// Original was GL_RG16_EXT = 0x822C /// Rg16Ext = ((int)0x822C), /// + /// Original was GL_R16F = 0x822D + /// + R16f = ((int)0x822D), + /// /// Original was GL_R16F_EXT = 0x822D /// R16fExt = ((int)0x822D), /// + /// Original was GL_R32F = 0x822E + /// + R32f = ((int)0x822E), + /// /// Original was GL_R32F_EXT = 0x822E /// R32fExt = ((int)0x822E), /// + /// Original was GL_RG16F = 0x822F + /// + Rg16f = ((int)0x822F), + /// /// Original was GL_RG16F_EXT = 0x822F /// Rg16fExt = ((int)0x822F), /// + /// Original was GL_RG32F = 0x8230 + /// + Rg32f = ((int)0x8230), + /// /// Original was GL_RG32F_EXT = 0x8230 /// Rg32fExt = ((int)0x8230), /// + /// Original was GL_R8I = 0x8231 + /// + R8i = ((int)0x8231), + /// + /// Original was GL_R8UI = 0x8232 + /// + R8ui = ((int)0x8232), + /// + /// Original was GL_R16I = 0x8233 + /// + R16i = ((int)0x8233), + /// + /// Original was GL_R16UI = 0x8234 + /// + R16ui = ((int)0x8234), + /// + /// Original was GL_R32I = 0x8235 + /// + R32i = ((int)0x8235), + /// + /// Original was GL_R32UI = 0x8236 + /// + R32ui = ((int)0x8236), + /// + /// Original was GL_RG8I = 0x8237 + /// + Rg8i = ((int)0x8237), + /// + /// Original was GL_RG8UI = 0x8238 + /// + Rg8ui = ((int)0x8238), + /// + /// Original was GL_RG16I = 0x8239 + /// + Rg16i = ((int)0x8239), + /// + /// Original was GL_RG16UI = 0x823A + /// + Rg16ui = ((int)0x823A), + /// + /// Original was GL_RG32I = 0x823B + /// + Rg32i = ((int)0x823B), + /// + /// Original was GL_RG32UI = 0x823C + /// + Rg32ui = ((int)0x823C), + /// /// Original was GL_DEBUG_OUTPUT_SYNCHRONOUS = 0x8242 /// DebugOutputSynchronous = ((int)0x8242), @@ -5340,10 +5620,18 @@ namespace OpenTK.Graphics.ES20 /// ProgramBinaryRetrievableHint = ((int)0x8257), /// + /// Original was GL_PROGRAM_SEPARABLE = 0x8258 + /// + ProgramSeparable = ((int)0x8258), + /// /// Original was GL_PROGRAM_SEPARABLE_EXT = 0x8258 /// ProgramSeparableExt = ((int)0x8258), /// + /// Original was GL_ACTIVE_PROGRAM = 0x8259 + /// + ActiveProgram = ((int)0x8259), + /// /// Original was GL_ACTIVE_PROGRAM_EXT = 0x8259 /// ActiveProgramExt = ((int)0x8259), @@ -5412,6 +5700,10 @@ namespace OpenTK.Graphics.ES20 /// NoResetNotificationKhr = ((int)0x8261), /// + /// Original was GL_COMPUTE_WORK_GROUP_SIZE = 0x8267 + /// + ComputeWorkGroupSize = ((int)0x8267), + /// /// Original was GL_DEBUG_TYPE_MARKER = 0x8268 /// DebugTypeMarker = ((int)0x8268), @@ -5460,6 +5752,270 @@ namespace OpenTK.Graphics.ES20 /// DebugGroupStackDepthKhr = ((int)0x826D), /// + /// Original was GL_INTERNALFORMAT_SUPPORTED = 0x826F + /// + InternalformatSupported = ((int)0x826F), + /// + /// Original was GL_INTERNALFORMAT_PREFERRED = 0x8270 + /// + InternalformatPreferred = ((int)0x8270), + /// + /// Original was GL_INTERNALFORMAT_RED_SIZE = 0x8271 + /// + InternalformatRedSize = ((int)0x8271), + /// + /// Original was GL_INTERNALFORMAT_GREEN_SIZE = 0x8272 + /// + InternalformatGreenSize = ((int)0x8272), + /// + /// Original was GL_INTERNALFORMAT_BLUE_SIZE = 0x8273 + /// + InternalformatBlueSize = ((int)0x8273), + /// + /// Original was GL_INTERNALFORMAT_ALPHA_SIZE = 0x8274 + /// + InternalformatAlphaSize = ((int)0x8274), + /// + /// Original was GL_INTERNALFORMAT_DEPTH_SIZE = 0x8275 + /// + InternalformatDepthSize = ((int)0x8275), + /// + /// Original was GL_INTERNALFORMAT_STENCIL_SIZE = 0x8276 + /// + InternalformatStencilSize = ((int)0x8276), + /// + /// Original was GL_INTERNALFORMAT_SHARED_SIZE = 0x8277 + /// + InternalformatSharedSize = ((int)0x8277), + /// + /// Original was GL_INTERNALFORMAT_RED_TYPE = 0x8278 + /// + InternalformatRedType = ((int)0x8278), + /// + /// Original was GL_INTERNALFORMAT_GREEN_TYPE = 0x8279 + /// + InternalformatGreenType = ((int)0x8279), + /// + /// Original was GL_INTERNALFORMAT_BLUE_TYPE = 0x827A + /// + InternalformatBlueType = ((int)0x827A), + /// + /// Original was GL_INTERNALFORMAT_ALPHA_TYPE = 0x827B + /// + InternalformatAlphaType = ((int)0x827B), + /// + /// Original was GL_INTERNALFORMAT_DEPTH_TYPE = 0x827C + /// + InternalformatDepthType = ((int)0x827C), + /// + /// Original was GL_INTERNALFORMAT_STENCIL_TYPE = 0x827D + /// + InternalformatStencilType = ((int)0x827D), + /// + /// Original was GL_MAX_WIDTH = 0x827E + /// + MaxWidth = ((int)0x827E), + /// + /// Original was GL_MAX_HEIGHT = 0x827F + /// + MaxHeight = ((int)0x827F), + /// + /// Original was GL_MAX_DEPTH = 0x8280 + /// + MaxDepth = ((int)0x8280), + /// + /// Original was GL_MAX_LAYERS = 0x8281 + /// + MaxLayers = ((int)0x8281), + /// + /// Original was GL_COLOR_COMPONENTS = 0x8283 + /// + ColorComponents = ((int)0x8283), + /// + /// Original was GL_COLOR_RENDERABLE = 0x8286 + /// + ColorRenderable = ((int)0x8286), + /// + /// Original was GL_DEPTH_RENDERABLE = 0x8287 + /// + DepthRenderable = ((int)0x8287), + /// + /// Original was GL_STENCIL_RENDERABLE = 0x8288 + /// + StencilRenderable = ((int)0x8288), + /// + /// Original was GL_FRAMEBUFFER_RENDERABLE = 0x8289 + /// + FramebufferRenderable = ((int)0x8289), + /// + /// Original was GL_FRAMEBUFFER_RENDERABLE_LAYERED = 0x828A + /// + FramebufferRenderableLayered = ((int)0x828A), + /// + /// Original was GL_FRAMEBUFFER_BLEND = 0x828B + /// + FramebufferBlend = ((int)0x828B), + /// + /// Original was GL_READ_PIXELS = 0x828C + /// + ReadPixels = ((int)0x828C), + /// + /// Original was GL_READ_PIXELS_FORMAT = 0x828D + /// + ReadPixelsFormat = ((int)0x828D), + /// + /// Original was GL_READ_PIXELS_TYPE = 0x828E + /// + ReadPixelsType = ((int)0x828E), + /// + /// Original was GL_TEXTURE_IMAGE_FORMAT = 0x828F + /// + TextureImageFormat = ((int)0x828F), + /// + /// Original was GL_TEXTURE_IMAGE_TYPE = 0x8290 + /// + TextureImageType = ((int)0x8290), + /// + /// Original was GL_GET_TEXTURE_IMAGE_FORMAT = 0x8291 + /// + GetTextureImageFormat = ((int)0x8291), + /// + /// Original was GL_GET_TEXTURE_IMAGE_TYPE = 0x8292 + /// + GetTextureImageType = ((int)0x8292), + /// + /// Original was GL_MIPMAP = 0x8293 + /// + Mipmap = ((int)0x8293), + /// + /// Original was GL_AUTO_GENERATE_MIPMAP = 0x8295 + /// + AutoGenerateMipmap = ((int)0x8295), + /// + /// Original was GL_COLOR_ENCODING = 0x8296 + /// + ColorEncoding = ((int)0x8296), + /// + /// Original was GL_SRGB_READ = 0x8297 + /// + SrgbRead = ((int)0x8297), + /// + /// Original was GL_SRGB_WRITE = 0x8298 + /// + SrgbWrite = ((int)0x8298), + /// + /// Original was GL_FILTER = 0x829A + /// + Filter = ((int)0x829A), + /// + /// Original was GL_VERTEX_TEXTURE = 0x829B + /// + VertexTexture = ((int)0x829B), + /// + /// Original was GL_TESS_CONTROL_TEXTURE = 0x829C + /// + TessControlTexture = ((int)0x829C), + /// + /// Original was GL_TESS_EVALUATION_TEXTURE = 0x829D + /// + TessEvaluationTexture = ((int)0x829D), + /// + /// Original was GL_GEOMETRY_TEXTURE = 0x829E + /// + GeometryTexture = ((int)0x829E), + /// + /// Original was GL_FRAGMENT_TEXTURE = 0x829F + /// + FragmentTexture = ((int)0x829F), + /// + /// Original was GL_COMPUTE_TEXTURE = 0x82A0 + /// + ComputeTexture = ((int)0x82A0), + /// + /// Original was GL_TEXTURE_SHADOW = 0x82A1 + /// + TextureShadow = ((int)0x82A1), + /// + /// Original was GL_TEXTURE_GATHER = 0x82A2 + /// + TextureGather = ((int)0x82A2), + /// + /// Original was GL_TEXTURE_GATHER_SHADOW = 0x82A3 + /// + TextureGatherShadow = ((int)0x82A3), + /// + /// Original was GL_SHADER_IMAGE_LOAD = 0x82A4 + /// + ShaderImageLoad = ((int)0x82A4), + /// + /// Original was GL_SHADER_IMAGE_STORE = 0x82A5 + /// + ShaderImageStore = ((int)0x82A5), + /// + /// Original was GL_SHADER_IMAGE_ATOMIC = 0x82A6 + /// + ShaderImageAtomic = ((int)0x82A6), + /// + /// Original was GL_IMAGE_TEXEL_SIZE = 0x82A7 + /// + ImageTexelSize = ((int)0x82A7), + /// + /// Original was GL_IMAGE_COMPATIBILITY_CLASS = 0x82A8 + /// + ImageCompatibilityClass = ((int)0x82A8), + /// + /// Original was GL_IMAGE_PIXEL_FORMAT = 0x82A9 + /// + ImagePixelFormat = ((int)0x82A9), + /// + /// Original was GL_IMAGE_PIXEL_TYPE = 0x82AA + /// + ImagePixelType = ((int)0x82AA), + /// + /// Original was GL_SIMULTANEOUS_TEXTURE_AND_DEPTH_TEST = 0x82AC + /// + SimultaneousTextureAndDepthTest = ((int)0x82AC), + /// + /// Original was GL_SIMULTANEOUS_TEXTURE_AND_STENCIL_TEST = 0x82AD + /// + SimultaneousTextureAndStencilTest = ((int)0x82AD), + /// + /// Original was GL_SIMULTANEOUS_TEXTURE_AND_DEPTH_WRITE = 0x82AE + /// + SimultaneousTextureAndDepthWrite = ((int)0x82AE), + /// + /// Original was GL_SIMULTANEOUS_TEXTURE_AND_STENCIL_WRITE = 0x82AF + /// + SimultaneousTextureAndStencilWrite = ((int)0x82AF), + /// + /// Original was GL_TEXTURE_COMPRESSED_BLOCK_WIDTH = 0x82B1 + /// + TextureCompressedBlockWidth = ((int)0x82B1), + /// + /// Original was GL_TEXTURE_COMPRESSED_BLOCK_HEIGHT = 0x82B2 + /// + TextureCompressedBlockHeight = ((int)0x82B2), + /// + /// Original was GL_TEXTURE_COMPRESSED_BLOCK_SIZE = 0x82B3 + /// + TextureCompressedBlockSize = ((int)0x82B3), + /// + /// Original was GL_CLEAR_BUFFER = 0x82B4 + /// + ClearBuffer = ((int)0x82B4), + /// + /// Original was GL_TEXTURE_VIEW = 0x82B5 + /// + TextureView = ((int)0x82B5), + /// + /// Original was GL_VIEW_COMPATIBILITY_CLASS = 0x82B6 + /// + ViewCompatibilityClass = ((int)0x82B6), + /// + /// Original was GL_VERTEX_ATTRIB_RELATIVE_OFFSET = 0x82D5 + /// + VertexAttribRelativeOffset = ((int)0x82D5), + /// /// Original was GL_TEXTURE_VIEW_MIN_LEVEL_EXT = 0x82DB /// TextureViewMinLevelExt = ((int)0x82DB), @@ -5556,6 +6112,10 @@ namespace OpenTK.Graphics.ES20 /// MaxLabelLengthKhr = ((int)0x82E8), /// + /// Original was GL_QUERY_TARGET = 0x82EA + /// + QueryTarget = ((int)0x82EA), + /// /// Original was GL_MAX_CULL_DISTANCES_EXT = 0x82F9 /// MaxCullDistancesExt = ((int)0x82F9), @@ -5668,6 +6228,10 @@ namespace OpenTK.Graphics.ES20 /// UnsignedShort1555RevExt = ((int)0x8366), /// + /// Original was GL_UNSIGNED_INT_2_10_10_10_REV = 0x8368 + /// + UnsignedInt2101010Rev = ((int)0x8368), + /// /// Original was GL_UNSIGNED_INT_2_10_10_10_REV_EXT = 0x8368 /// UnsignedInt2101010RevExt = ((int)0x8368), @@ -5844,6 +6408,10 @@ namespace OpenTK.Graphics.ES20 /// LinearClipmapNearestSgix = ((int)0x844F), /// + /// Original was GL_FOG_COORD_SRC = 0x8450 + /// + FogCoordSrc = ((int)0x8450), + /// /// Original was GL_ALIASED_POINT_SIZE_RANGE = 0x846D /// AliasedPointSizeRange = ((int)0x846D), @@ -5996,6 +6564,14 @@ namespace OpenTK.Graphics.ES20 /// MaxRenderbufferSize = ((int)0x84E8), /// + /// Original was GL_COMPRESSED_RGB = 0x84ED + /// + CompressedRgb = ((int)0x84ED), + /// + /// Original was GL_COMPRESSED_RGBA = 0x84EE + /// + CompressedRgba = ((int)0x84EE), + /// /// Original was GL_TEXTURE_COMPRESSION_HINT = 0x84EF /// TextureCompressionHint = ((int)0x84EF), @@ -6004,6 +6580,14 @@ namespace OpenTK.Graphics.ES20 /// TextureCompressionHintArb = ((int)0x84EF), /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_CONTROL_SHADER = 0x84F0 + /// + UniformBlockReferencedByTessControlShader = ((int)0x84F0), + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_EVALUATION_SHADER = 0x84F1 + /// + UniformBlockReferencedByTessEvaluationShader = ((int)0x84F1), + /// /// Original was GL_ALL_COMPLETED_NV = 0x84F2 /// AllCompletedNv = ((int)0x84F2), @@ -6032,6 +6616,18 @@ namespace OpenTK.Graphics.ES20 /// ProxyTextureRectangleNv = ((int)0x84F7), /// + /// Original was GL_DEPTH_STENCIL = 0x84F9 + /// + DepthStencil = ((int)0x84F9), + /// + /// Original was GL_DEPTH_STENCIL_EXT = 0x84F9 + /// + DepthStencilExt = ((int)0x84F9), + /// + /// Original was GL_DEPTH_STENCIL_NV = 0x84F9 + /// + DepthStencilNv = ((int)0x84F9), + /// /// Original was GL_DEPTH_STENCIL_OES = 0x84F9 /// DepthStencilOes = ((int)0x84F9), @@ -6124,6 +6720,10 @@ namespace OpenTK.Graphics.ES20 /// MultisampleFilterHintNv = ((int)0x8534), /// + /// Original was GL_CONSTANT = 0x8576 + /// + Constant = ((int)0x8576), + /// /// Original was GL_CONSTANT_NV = 0x8576 /// ConstantNv = ((int)0x8576), @@ -6132,6 +6732,10 @@ namespace OpenTK.Graphics.ES20 /// PrimaryColor = ((int)0x8577), /// + /// Original was GL_SRC1_ALPHA = 0x8589 + /// + Src1Alpha = ((int)0x8589), + /// /// Original was GL_SRC1_ALPHA_EXT = 0x8589 /// Src1AlphaExt = ((int)0x8589), @@ -6200,6 +6804,10 @@ namespace OpenTK.Graphics.ES20 /// VertexAttribArrayPointer = ((int)0x8645), /// + /// Original was GL_TEXTURE_COMPRESSED = 0x86A1 + /// + TextureCompressed = ((int)0x86A1), + /// /// Original was GL_NUM_COMPRESSED_TEXTURE_FORMATS = 0x86A2 /// NumCompressedTextureFormats = ((int)0x86A2), @@ -6212,10 +6820,30 @@ namespace OpenTK.Graphics.ES20 /// Z400BinaryAmd = ((int)0x8740), /// + /// Original was GL_PROGRAM_BINARY_LENGTH = 0x8741 + /// + ProgramBinaryLength = ((int)0x8741), + /// /// Original was GL_PROGRAM_BINARY_LENGTH_OES = 0x8741 /// ProgramBinaryLengthOes = ((int)0x8741), /// + /// Original was GL_MIRROR_CLAMP_TO_EDGE_EXT = 0x8743 + /// + MirrorClampToEdgeExt = ((int)0x8743), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_LONG = 0x874E + /// + VertexAttribArrayLong = ((int)0x874E), + /// + /// Original was GL_DEPTH_STENCIL_MESA = 0x8750 + /// + DepthStencilMesa = ((int)0x8750), + /// + /// Original was GL_PROGRAM_BINARY_FORMAT_MESA = 0x875F + /// + ProgramBinaryFormatMesa = ((int)0x875F), + /// /// Original was GL_BUFFER_SIZE = 0x8764 /// BufferSize = ((int)0x8764), @@ -6260,6 +6888,14 @@ namespace OpenTK.Graphics.ES20 /// StencilBackPassDepthPass = ((int)0x8803), /// + /// Original was GL_RGBA32F = 0x8814 + /// + Rgba32f = ((int)0x8814), + /// + /// Original was GL_RGBA32F_ARB = 0x8814 + /// + Rgba32fArb = ((int)0x8814), + /// /// Original was GL_RGBA32F_EXT = 0x8814 /// Rgba32fExt = ((int)0x8814), @@ -6280,10 +6916,26 @@ namespace OpenTK.Graphics.ES20 /// LuminanceAlpha32fExt = ((int)0x8819), /// + /// Original was GL_RGBA16F = 0x881A + /// + Rgba16f = ((int)0x881A), + /// + /// Original was GL_RGBA16F_ARB = 0x881A + /// + Rgba16fArb = ((int)0x881A), + /// /// Original was GL_RGBA16F_EXT = 0x881A /// Rgba16fExt = ((int)0x881A), /// + /// Original was GL_RGB16F = 0x881B + /// + Rgb16f = ((int)0x881B), + /// + /// Original was GL_RGB16F_ARB = 0x881B + /// + Rgb16fArb = ((int)0x881B), + /// /// Original was GL_RGB16F_EXT = 0x881B /// Rgb16fExt = ((int)0x881B), @@ -6464,18 +7116,34 @@ namespace OpenTK.Graphics.ES20 /// CompareRefToTextureExt = ((int)0x884E), /// + /// Original was GL_QUERY_COUNTER_BITS = 0x8864 + /// + QueryCounterBits = ((int)0x8864), + /// /// Original was GL_QUERY_COUNTER_BITS_EXT = 0x8864 /// QueryCounterBitsExt = ((int)0x8864), /// + /// Original was GL_CURRENT_QUERY = 0x8865 + /// + CurrentQuery = ((int)0x8865), + /// /// Original was GL_CURRENT_QUERY_EXT = 0x8865 /// CurrentQueryExt = ((int)0x8865), /// + /// Original was GL_QUERY_RESULT = 0x8866 + /// + QueryResult = ((int)0x8866), + /// /// Original was GL_QUERY_RESULT_EXT = 0x8866 /// QueryResultExt = ((int)0x8866), /// + /// Original was GL_QUERY_RESULT_AVAILABLE = 0x8867 + /// + QueryResultAvailable = ((int)0x8867), + /// /// Original was GL_QUERY_RESULT_AVAILABLE_EXT = 0x8867 /// QueryResultAvailableExt = ((int)0x8867), @@ -6552,10 +7220,18 @@ namespace OpenTK.Graphics.ES20 /// ReadWrite = ((int)0x88BA), /// + /// Original was GL_BUFFER_ACCESS = 0x88BB + /// + BufferAccess = ((int)0x88BB), + /// /// Original was GL_BUFFER_ACCESS_OES = 0x88BB /// BufferAccessOes = ((int)0x88BB), /// + /// Original was GL_BUFFER_MAPPED = 0x88BC + /// + BufferMapped = ((int)0x88BC), + /// /// Original was GL_BUFFER_MAPPED_OES = 0x88BC /// BufferMappedOes = ((int)0x88BC), @@ -6564,6 +7240,10 @@ namespace OpenTK.Graphics.ES20 /// BufferMapPointerOes = ((int)0x88BD), /// + /// Original was GL_TIME_ELAPSED = 0x88BF + /// + TimeElapsed = ((int)0x88BF), + /// /// Original was GL_TIME_ELAPSED_EXT = 0x88BF /// TimeElapsedExt = ((int)0x88BF), @@ -6632,10 +7312,22 @@ namespace OpenTK.Graphics.ES20 /// PixelUnpackBufferBindingNv = ((int)0x88EF), /// + /// Original was GL_DEPTH24_STENCIL8 = 0x88F0 + /// + Depth24Stencil8 = ((int)0x88F0), + /// + /// Original was GL_DEPTH24_STENCIL8_EXT = 0x88F0 + /// + Depth24Stencil8Ext = ((int)0x88F0), + /// /// Original was GL_DEPTH24_STENCIL8_OES = 0x88F0 /// Depth24Stencil8Oes = ((int)0x88F0), /// + /// Original was GL_SRC1_COLOR = 0x88F9 + /// + Src1Color = ((int)0x88F9), + /// /// Original was GL_SRC1_COLOR_EXT = 0x88F9 /// Src1ColorExt = ((int)0x88F9), @@ -6652,6 +7344,14 @@ namespace OpenTK.Graphics.ES20 /// MaxDualSourceDrawBuffersExt = ((int)0x88FC), /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_INTEGER = 0x88FD + /// + VertexAttribArrayInteger = ((int)0x88FD), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_DIVISOR = 0x88FE + /// + VertexAttribArrayDivisor = ((int)0x88FE), + /// /// Original was GL_VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE = 0x88FE /// VertexAttribArrayDivisorAngle = ((int)0x88FE), @@ -6664,6 +7364,10 @@ namespace OpenTK.Graphics.ES20 /// VertexAttribArrayDivisorNv = ((int)0x88FE), /// + /// Original was GL_SAMPLES_PASSED = 0x8914 + /// + SamplesPassed = ((int)0x8914), + /// /// Original was GL_GEOMETRY_LINKED_VERTICES_OUT_EXT = 0x8916 /// GeometryLinkedVerticesOutExt = ((int)0x8916), @@ -6672,6 +7376,14 @@ namespace OpenTK.Graphics.ES20 /// GeometryLinkedVerticesOutOes = ((int)0x8916), /// + /// Original was GL_GEOMETRY_VERTICES_OUT = 0x8916 + /// + GeometryVerticesOut = ((int)0x8916), + /// + /// Original was GL_GEOMETRY_INPUT_TYPE = 0x8917 + /// + GeometryInputType = ((int)0x8917), + /// /// Original was GL_GEOMETRY_LINKED_INPUT_TYPE_EXT = 0x8917 /// GeometryLinkedInputTypeExt = ((int)0x8917), @@ -6688,6 +7400,54 @@ namespace OpenTK.Graphics.ES20 /// GeometryLinkedOutputTypeOes = ((int)0x8918), /// + /// Original was GL_GEOMETRY_OUTPUT_TYPE = 0x8918 + /// + GeometryOutputType = ((int)0x8918), + /// + /// Original was GL_MOV_ATI = 0x8961 + /// + MovAti = ((int)0x8961), + /// + /// Original was GL_ADD_ATI = 0x8963 + /// + AddAti = ((int)0x8963), + /// + /// Original was GL_MUL_ATI = 0x8964 + /// + MulAti = ((int)0x8964), + /// + /// Original was GL_SUB_ATI = 0x8965 + /// + SubAti = ((int)0x8965), + /// + /// Original was GL_DOT3_ATI = 0x8966 + /// + Dot3Ati = ((int)0x8966), + /// + /// Original was GL_DOT4_ATI = 0x8967 + /// + Dot4Ati = ((int)0x8967), + /// + /// Original was GL_MAD_ATI = 0x8968 + /// + MadAti = ((int)0x8968), + /// + /// Original was GL_LERP_ATI = 0x8969 + /// + LerpAti = ((int)0x8969), + /// + /// Original was GL_CND_ATI = 0x896A + /// + CndAti = ((int)0x896A), + /// + /// Original was GL_CND0_ATI = 0x896B + /// + Cnd0Ati = ((int)0x896B), + /// + /// Original was GL_DOT2_ADD_ATI = 0x896C + /// + Dot2AddAti = ((int)0x896C), + /// /// Original was GL_PACK_RESAMPLE_OML = 0x8984 /// PackResampleOml = ((int)0x8984), @@ -6720,6 +7480,78 @@ namespace OpenTK.Graphics.ES20 /// MaxCombinedGeometryUniformComponentsOes = ((int)0x8A32), /// + /// Original was GL_ACTIVE_UNIFORM_BLOCK_MAX_NAME_LENGTH = 0x8A35 + /// + ActiveUniformBlockMaxNameLength = ((int)0x8A35), + /// + /// Original was GL_ACTIVE_UNIFORM_BLOCKS = 0x8A36 + /// + ActiveUniformBlocks = ((int)0x8A36), + /// + /// Original was GL_UNIFORM_TYPE = 0x8A37 + /// + UniformType = ((int)0x8A37), + /// + /// Original was GL_UNIFORM_SIZE = 0x8A38 + /// + UniformSize = ((int)0x8A38), + /// + /// Original was GL_UNIFORM_NAME_LENGTH = 0x8A39 + /// + UniformNameLength = ((int)0x8A39), + /// + /// Original was GL_UNIFORM_BLOCK_INDEX = 0x8A3A + /// + UniformBlockIndex = ((int)0x8A3A), + /// + /// Original was GL_UNIFORM_OFFSET = 0x8A3B + /// + UniformOffset = ((int)0x8A3B), + /// + /// Original was GL_UNIFORM_ARRAY_STRIDE = 0x8A3C + /// + UniformArrayStride = ((int)0x8A3C), + /// + /// Original was GL_UNIFORM_MATRIX_STRIDE = 0x8A3D + /// + UniformMatrixStride = ((int)0x8A3D), + /// + /// Original was GL_UNIFORM_IS_ROW_MAJOR = 0x8A3E + /// + UniformIsRowMajor = ((int)0x8A3E), + /// + /// Original was GL_UNIFORM_BLOCK_BINDING = 0x8A3F + /// + UniformBlockBinding = ((int)0x8A3F), + /// + /// Original was GL_UNIFORM_BLOCK_DATA_SIZE = 0x8A40 + /// + UniformBlockDataSize = ((int)0x8A40), + /// + /// Original was GL_UNIFORM_BLOCK_NAME_LENGTH = 0x8A41 + /// + UniformBlockNameLength = ((int)0x8A41), + /// + /// Original was GL_UNIFORM_BLOCK_ACTIVE_UNIFORMS = 0x8A42 + /// + UniformBlockActiveUniforms = ((int)0x8A42), + /// + /// Original was GL_UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES = 0x8A43 + /// + UniformBlockActiveUniformIndices = ((int)0x8A43), + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER = 0x8A44 + /// + UniformBlockReferencedByVertexShader = ((int)0x8A44), + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_GEOMETRY_SHADER = 0x8A45 + /// + UniformBlockReferencedByGeometryShader = ((int)0x8A45), + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER = 0x8A46 + /// + UniformBlockReferencedByFragmentShader = ((int)0x8A46), + /// /// Original was GL_TEXTURE_SRGB_DECODE_EXT = 0x8A48 /// TextureSrgbDecodeExt = ((int)0x8A48), @@ -6768,10 +7600,18 @@ namespace OpenTK.Graphics.ES20 /// FragmentShader = ((int)0x8B30), /// + /// Original was GL_FRAGMENT_SHADER_ARB = 0x8B30 + /// + FragmentShaderArb = ((int)0x8B30), + /// /// Original was GL_VERTEX_SHADER = 0x8B31 /// VertexShader = ((int)0x8B31), /// + /// Original was GL_VERTEX_SHADER_ARB = 0x8B31 + /// + VertexShaderArb = ((int)0x8B31), + /// /// Original was GL_PROGRAM_OBJECT_EXT = 0x8B40 /// ProgramObjectExt = ((int)0x8B40), @@ -6796,26 +7636,54 @@ namespace OpenTK.Graphics.ES20 /// FloatVec2 = ((int)0x8B50), /// + /// Original was GL_FLOAT_VEC2_ARB = 0x8B50 + /// + FloatVec2Arb = ((int)0x8B50), + /// /// Original was GL_FLOAT_VEC3 = 0x8B51 /// FloatVec3 = ((int)0x8B51), /// + /// Original was GL_FLOAT_VEC3_ARB = 0x8B51 + /// + FloatVec3Arb = ((int)0x8B51), + /// /// Original was GL_FLOAT_VEC4 = 0x8B52 /// FloatVec4 = ((int)0x8B52), /// + /// Original was GL_FLOAT_VEC4_ARB = 0x8B52 + /// + FloatVec4Arb = ((int)0x8B52), + /// /// Original was GL_INT_VEC2 = 0x8B53 /// IntVec2 = ((int)0x8B53), /// + /// Original was GL_INT_VEC2_ARB = 0x8B53 + /// + IntVec2Arb = ((int)0x8B53), + /// /// Original was GL_INT_VEC3 = 0x8B54 /// IntVec3 = ((int)0x8B54), /// + /// Original was GL_INT_VEC3_ARB = 0x8B54 + /// + IntVec3Arb = ((int)0x8B54), + /// /// Original was GL_INT_VEC4 = 0x8B55 /// IntVec4 = ((int)0x8B55), /// + /// Original was GL_INT_VEC4_ARB = 0x8B55 + /// + IntVec4Arb = ((int)0x8B55), + /// + /// Original was GL_BOOL_ARB = 0x8B56 + /// + BoolArb = ((int)0x8B56), + /// /// Original was GL_Bool = 0X8b56 /// Bool = ((int)0X8b56), @@ -6824,30 +7692,74 @@ namespace OpenTK.Graphics.ES20 /// BoolVec2 = ((int)0x8B57), /// + /// Original was GL_BOOL_VEC2_ARB = 0x8B57 + /// + BoolVec2Arb = ((int)0x8B57), + /// /// Original was GL_BOOL_VEC3 = 0x8B58 /// BoolVec3 = ((int)0x8B58), /// + /// Original was GL_BOOL_VEC3_ARB = 0x8B58 + /// + BoolVec3Arb = ((int)0x8B58), + /// /// Original was GL_BOOL_VEC4 = 0x8B59 /// BoolVec4 = ((int)0x8B59), /// + /// Original was GL_BOOL_VEC4_ARB = 0x8B59 + /// + BoolVec4Arb = ((int)0x8B59), + /// /// Original was GL_FLOAT_MAT2 = 0x8B5A /// FloatMat2 = ((int)0x8B5A), /// + /// Original was GL_FLOAT_MAT2_ARB = 0x8B5A + /// + FloatMat2Arb = ((int)0x8B5A), + /// /// Original was GL_FLOAT_MAT3 = 0x8B5B /// FloatMat3 = ((int)0x8B5B), /// + /// Original was GL_FLOAT_MAT3_ARB = 0x8B5B + /// + FloatMat3Arb = ((int)0x8B5B), + /// /// Original was GL_FLOAT_MAT4 = 0x8B5C /// FloatMat4 = ((int)0x8B5C), /// + /// Original was GL_FLOAT_MAT4_ARB = 0x8B5C + /// + FloatMat4Arb = ((int)0x8B5C), + /// + /// Original was GL_SAMPLER_1D = 0x8B5D + /// + Sampler1D = ((int)0x8B5D), + /// + /// Original was GL_SAMPLER_1D_ARB = 0x8B5D + /// + Sampler1DArb = ((int)0x8B5D), + /// /// Original was GL_SAMPLER_2D = 0x8B5E /// Sampler2D = ((int)0x8B5E), /// + /// Original was GL_SAMPLER_2D_ARB = 0x8B5E + /// + Sampler2DArb = ((int)0x8B5E), + /// + /// Original was GL_SAMPLER_3D = 0x8B5F + /// + Sampler3D = ((int)0x8B5F), + /// + /// Original was GL_SAMPLER_3D_ARB = 0x8B5F + /// + Sampler3DArb = ((int)0x8B5F), + /// /// Original was GL_SAMPLER_3D_OES = 0x8B5F /// Sampler3DOes = ((int)0x8B5F), @@ -6856,30 +7768,90 @@ namespace OpenTK.Graphics.ES20 /// SamplerCube = ((int)0x8B60), /// + /// Original was GL_SAMPLER_CUBE_ARB = 0x8B60 + /// + SamplerCubeArb = ((int)0x8B60), + /// + /// Original was GL_SAMPLER_1D_SHADOW = 0x8B61 + /// + Sampler1DShadow = ((int)0x8B61), + /// + /// Original was GL_SAMPLER_1D_SHADOW_ARB = 0x8B61 + /// + Sampler1DShadowArb = ((int)0x8B61), + /// + /// Original was GL_SAMPLER_2D_SHADOW = 0x8B62 + /// + Sampler2DShadow = ((int)0x8B62), + /// + /// Original was GL_SAMPLER_2D_SHADOW_ARB = 0x8B62 + /// + Sampler2DShadowArb = ((int)0x8B62), + /// /// Original was GL_SAMPLER_2D_SHADOW_EXT = 0x8B62 /// Sampler2DShadowExt = ((int)0x8B62), /// + /// Original was GL_SAMPLER_2D_RECT = 0x8B63 + /// + Sampler2DRect = ((int)0x8B63), + /// + /// Original was GL_SAMPLER_2D_RECT_ARB = 0x8B63 + /// + Sampler2DRectArb = ((int)0x8B63), + /// + /// Original was GL_SAMPLER_2D_RECT_SHADOW = 0x8B64 + /// + Sampler2DRectShadow = ((int)0x8B64), + /// + /// Original was GL_SAMPLER_2D_RECT_SHADOW_ARB = 0x8B64 + /// + Sampler2DRectShadowArb = ((int)0x8B64), + /// + /// Original was GL_FLOAT_MAT2x3 = 0x8B65 + /// + FloatMat2x3 = ((int)0x8B65), + /// /// Original was GL_FLOAT_MAT2x3_NV = 0x8B65 /// FloatMat2x3Nv = ((int)0x8B65), /// + /// Original was GL_FLOAT_MAT2x4 = 0x8B66 + /// + FloatMat2x4 = ((int)0x8B66), + /// /// Original was GL_FLOAT_MAT2x4_NV = 0x8B66 /// FloatMat2x4Nv = ((int)0x8B66), /// + /// Original was GL_FLOAT_MAT3x2 = 0x8B67 + /// + FloatMat3x2 = ((int)0x8B67), + /// /// Original was GL_FLOAT_MAT3x2_NV = 0x8B67 /// FloatMat3x2Nv = ((int)0x8B67), /// + /// Original was GL_FLOAT_MAT3x4 = 0x8B68 + /// + FloatMat3x4 = ((int)0x8B68), + /// /// Original was GL_FLOAT_MAT3x4_NV = 0x8B68 /// FloatMat3x4Nv = ((int)0x8B68), /// + /// Original was GL_FLOAT_MAT4x2 = 0x8B69 + /// + FloatMat4x2 = ((int)0x8B69), + /// /// Original was GL_FLOAT_MAT4x2_NV = 0x8B69 /// FloatMat4x2Nv = ((int)0x8B69), /// + /// Original was GL_FLOAT_MAT4x3 = 0x8B6A + /// + FloatMat4x3 = ((int)0x8B6A), + /// /// Original was GL_FLOAT_MAT4x3_NV = 0x8B6A /// FloatMat4x3Nv = ((int)0x8B6A), @@ -7076,6 +8048,26 @@ namespace OpenTK.Graphics.ES20 /// TextureProtectedExt = ((int)0x8BFA), /// + /// Original was GL_TEXTURE_FOVEATED_FEATURE_BITS_QCOM = 0x8BFB + /// + TextureFoveatedFeatureBitsQcom = ((int)0x8BFB), + /// + /// Original was GL_TEXTURE_FOVEATED_MIN_PIXEL_DENSITY_QCOM = 0x8BFC + /// + TextureFoveatedMinPixelDensityQcom = ((int)0x8BFC), + /// + /// Original was GL_TEXTURE_FOVEATED_FEATURE_QUERY_QCOM = 0x8BFD + /// + TextureFoveatedFeatureQueryQcom = ((int)0x8BFD), + /// + /// Original was GL_TEXTURE_FOVEATED_NUM_FOCAL_POINTS_QUERY_QCOM = 0x8BFE + /// + TextureFoveatedNumFocalPointsQueryQcom = ((int)0x8BFE), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_FOVEATION_QCOM = 0x8BFF + /// + FramebufferIncompleteFoveationQcom = ((int)0x8BFF), + /// /// Original was GL_COMPRESSED_RGB_PVRTC_4BPPV1_IMG = 0x8C00 /// CompressedRgbPvrtc4Bppv1Img = ((int)0x8C00), @@ -7176,6 +8168,10 @@ namespace OpenTK.Graphics.ES20 /// TextureBufferDataStoreBindingOes = ((int)0x8C2D), /// + /// Original was GL_ANY_SAMPLES_PASSED = 0x8C2F + /// + AnySamplesPassed = ((int)0x8C2F), + /// /// Original was GL_ANY_SAMPLES_PASSED_EXT = 0x8C2F /// AnySamplesPassedExt = ((int)0x8C2F), @@ -7188,34 +8184,74 @@ namespace OpenTK.Graphics.ES20 /// MinSampleShadingValueOes = ((int)0x8C37), /// + /// Original was GL_R11F_G11F_B10F = 0x8C3A + /// + R11fG11fB10f = ((int)0x8C3A), + /// /// Original was GL_R11F_G11F_B10F_APPLE = 0x8C3A /// R11fG11fB10fApple = ((int)0x8C3A), /// + /// Original was GL_R11F_G11F_B10F_EXT = 0x8C3A + /// + R11fG11fB10fExt = ((int)0x8C3A), + /// + /// Original was GL_UNSIGNED_INT_10F_11F_11F_REV = 0x8C3B + /// + UnsignedInt10F11F11FRev = ((int)0x8C3B), + /// /// Original was GL_UNSIGNED_INT_10F_11F_11F_REV_APPLE = 0x8C3B /// UnsignedInt10F11F11FRevApple = ((int)0x8C3B), /// + /// Original was GL_RGB9_E5 = 0x8C3D + /// + Rgb9E5 = ((int)0x8C3D), + /// /// Original was GL_RGB9_E5_APPLE = 0x8C3D /// Rgb9E5Apple = ((int)0x8C3D), /// + /// Original was GL_RGB9_E5_EXT = 0x8C3D + /// + Rgb9E5Ext = ((int)0x8C3D), + /// /// Original was GL_UNSIGNED_INT_5_9_9_9_REV_APPLE = 0x8C3E /// UnsignedInt5999RevApple = ((int)0x8C3E), /// + /// Original was GL_SRGB = 0x8C40 + /// + Srgb = ((int)0x8C40), + /// /// Original was GL_SRGB_EXT = 0x8C40 /// SrgbExt = ((int)0x8C40), /// + /// Original was GL_SRGB8 = 0x8C41 + /// + Srgb8 = ((int)0x8C41), + /// + /// Original was GL_SRGB8_EXT = 0x8C41 + /// + Srgb8Ext = ((int)0x8C41), + /// /// Original was GL_SRGB8_NV = 0x8C41 /// Srgb8Nv = ((int)0x8C41), /// + /// Original was GL_SRGB_ALPHA = 0x8C42 + /// + SrgbAlpha = ((int)0x8C42), + /// /// Original was GL_SRGB_ALPHA_EXT = 0x8C42 /// SrgbAlphaExt = ((int)0x8C42), /// + /// Original was GL_SRGB8_ALPHA8 = 0x8C43 + /// + Srgb8Alpha8 = ((int)0x8C43), + /// /// Original was GL_SRGB8_ALPHA8_EXT = 0x8C43 /// Srgb8Alpha8Ext = ((int)0x8C43), @@ -7236,22 +8272,70 @@ namespace OpenTK.Graphics.ES20 /// Sluminance8Nv = ((int)0x8C47), /// + /// Original was GL_COMPRESSED_SRGB = 0x8C48 + /// + CompressedSrgb = ((int)0x8C48), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA = 0x8C49 + /// + CompressedSrgbAlpha = ((int)0x8C49), + /// + /// Original was GL_COMPRESSED_SRGB_S3TC_DXT1_EXT = 0x8C4C + /// + CompressedSrgbS3tcDxt1Ext = ((int)0x8C4C), + /// /// Original was GL_COMPRESSED_SRGB_S3TC_DXT1_NV = 0x8C4C /// CompressedSrgbS3tcDxt1Nv = ((int)0x8C4C), /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT = 0x8C4D + /// + CompressedSrgbAlphaS3tcDxt1Ext = ((int)0x8C4D), + /// /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_NV = 0x8C4D /// CompressedSrgbAlphaS3tcDxt1Nv = ((int)0x8C4D), /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT = 0x8C4E + /// + CompressedSrgbAlphaS3tcDxt3Ext = ((int)0x8C4E), + /// /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_NV = 0x8C4E /// CompressedSrgbAlphaS3tcDxt3Nv = ((int)0x8C4E), /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT = 0x8C4F + /// + CompressedSrgbAlphaS3tcDxt5Ext = ((int)0x8C4F), + /// /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_NV = 0x8C4F /// CompressedSrgbAlphaS3tcDxt5Nv = ((int)0x8C4F), /// + /// Original was GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH = 0x8C76 + /// + TransformFeedbackVaryingMaxLength = ((int)0x8C76), + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER_MODE = 0x8C7F + /// + TransformFeedbackBufferMode = ((int)0x8C7F), + /// + /// Original was GL_TRANSFORM_FEEDBACK_VARYINGS = 0x8C83 + /// + TransformFeedbackVaryings = ((int)0x8C83), + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER_START = 0x8C84 + /// + TransformFeedbackBufferStart = ((int)0x8C84), + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER_SIZE = 0x8C85 + /// + TransformFeedbackBufferSize = ((int)0x8C85), + /// + /// Original was GL_PRIMITIVES_GENERATED = 0x8C87 + /// + PrimitivesGenerated = ((int)0x8C87), + /// /// Original was GL_PRIMITIVES_GENERATED_EXT = 0x8C87 /// PrimitivesGeneratedExt = ((int)0x8C87), @@ -7260,10 +8344,18 @@ namespace OpenTK.Graphics.ES20 /// PrimitivesGeneratedOes = ((int)0x8C87), /// + /// Original was GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN = 0x8C88 + /// + TransformFeedbackPrimitivesWritten = ((int)0x8C88), + /// /// Original was GL_TRANSFORM_FEEDBACK_BUFFER = 0x8C8E /// TransformFeedbackBuffer = ((int)0x8C8E), /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER_BINDING = 0x8C8F + /// + TransformFeedbackBufferBinding = ((int)0x8C8F), + /// /// Original was GL_ATC_RGB_AMD = 0x8C92 /// AtcRgbAmd = ((int)0x8C92), @@ -7272,6 +8364,22 @@ namespace OpenTK.Graphics.ES20 /// AtcRgbaExplicitAlphaAmd = ((int)0x8C93), /// + /// Original was GL_LOWER_LEFT = 0x8CA1 + /// + LowerLeft = ((int)0x8CA1), + /// + /// Original was GL_LOWER_LEFT_EXT = 0x8CA1 + /// + LowerLeftExt = ((int)0x8CA1), + /// + /// Original was GL_UPPER_LEFT = 0x8CA2 + /// + UpperLeft = ((int)0x8CA2), + /// + /// Original was GL_UPPER_LEFT_EXT = 0x8CA2 + /// + UpperLeftExt = ((int)0x8CA2), + /// /// Original was GL_STENCIL_BACK_REF = 0x8CA3 /// StencilBackRef = ((int)0x8CA3), @@ -7304,6 +8412,10 @@ namespace OpenTK.Graphics.ES20 /// RenderbufferBinding = ((int)0x8CA7), /// + /// Original was GL_READ_FRAMEBUFFER = 0x8CA8 + /// + ReadFramebuffer = ((int)0x8CA8), + /// /// Original was GL_READ_FRAMEBUFFER_ANGLE = 0x8CA8 /// ReadFramebufferAngle = ((int)0x8CA8), @@ -7316,6 +8428,10 @@ namespace OpenTK.Graphics.ES20 /// ReadFramebufferNv = ((int)0x8CA8), /// + /// Original was GL_DRAW_FRAMEBUFFER = 0x8CA9 + /// + DrawFramebuffer = ((int)0x8CA9), + /// /// Original was GL_DRAW_FRAMEBUFFER_ANGLE = 0x8CA9 /// DrawFramebufferAngle = ((int)0x8CA9), @@ -7340,6 +8456,10 @@ namespace OpenTK.Graphics.ES20 /// ReadFramebufferBindingNv = ((int)0x8CAA), /// + /// Original was GL_RENDERBUFFER_SAMPLES = 0x8CAB + /// + RenderbufferSamples = ((int)0x8CAB), + /// /// Original was GL_RENDERBUFFER_SAMPLES_ANGLE = 0x8CAB /// RenderbufferSamplesAngle = ((int)0x8CAB), @@ -7356,6 +8476,14 @@ namespace OpenTK.Graphics.ES20 /// RenderbufferSamplesNv = ((int)0x8CAB), /// + /// Original was GL_DEPTH_COMPONENT32F = 0x8CAC + /// + DepthComponent32f = ((int)0x8CAC), + /// + /// Original was GL_DEPTH32F_STENCIL8 = 0x8CAD + /// + Depth32fStencil8 = ((int)0x8CAD), + /// /// Original was GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE = 0x8CD0 /// FramebufferAttachmentObjectType = ((int)0x8CD0), @@ -7376,6 +8504,10 @@ namespace OpenTK.Graphics.ES20 /// FramebufferAttachmentTexture3DZoffsetOes = ((int)0x8CD4), /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER = 0x8CD4 + /// + FramebufferAttachmentTextureLayer = ((int)0x8CD4), + /// /// Original was GL_FRAMEBUFFER_COMPLETE = 0x8CD5 /// FramebufferComplete = ((int)0x8CD5), @@ -7392,10 +8524,22 @@ namespace OpenTK.Graphics.ES20 /// FramebufferIncompleteDimensions = ((int)0x8CD9), /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER = 0x8CDB + /// + FramebufferIncompleteDrawBuffer = ((int)0x8CDB), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER = 0x8CDC + /// + FramebufferIncompleteReadBuffer = ((int)0x8CDC), + /// /// Original was GL_FRAMEBUFFER_UNSUPPORTED = 0x8CDD /// FramebufferUnsupported = ((int)0x8CDD), /// + /// Original was GL_MAX_COLOR_ATTACHMENTS = 0x8CDF + /// + MaxColorAttachments = ((int)0x8CDF), + /// /// Original was GL_MAX_COLOR_ATTACHMENTS_EXT = 0x8CDF /// MaxColorAttachmentsExt = ((int)0x8CDF), @@ -7416,6 +8560,14 @@ namespace OpenTK.Graphics.ES20 /// ColorAttachment0Nv = ((int)0x8CE0), /// + /// Original was GL_COLOR_ATTACHMENT0_OES = 0x8CE0 + /// + ColorAttachment0Oes = ((int)0x8CE0), + /// + /// Original was GL_COLOR_ATTACHMENT1 = 0x8CE1 + /// + ColorAttachment1 = ((int)0x8CE1), + /// /// Original was GL_COLOR_ATTACHMENT1_EXT = 0x8CE1 /// ColorAttachment1Ext = ((int)0x8CE1), @@ -7424,6 +8576,10 @@ namespace OpenTK.Graphics.ES20 /// ColorAttachment1Nv = ((int)0x8CE1), /// + /// Original was GL_COLOR_ATTACHMENT2 = 0x8CE2 + /// + ColorAttachment2 = ((int)0x8CE2), + /// /// Original was GL_COLOR_ATTACHMENT2_EXT = 0x8CE2 /// ColorAttachment2Ext = ((int)0x8CE2), @@ -7432,6 +8588,10 @@ namespace OpenTK.Graphics.ES20 /// ColorAttachment2Nv = ((int)0x8CE2), /// + /// Original was GL_COLOR_ATTACHMENT3 = 0x8CE3 + /// + ColorAttachment3 = ((int)0x8CE3), + /// /// Original was GL_COLOR_ATTACHMENT3_EXT = 0x8CE3 /// ColorAttachment3Ext = ((int)0x8CE3), @@ -7440,6 +8600,10 @@ namespace OpenTK.Graphics.ES20 /// ColorAttachment3Nv = ((int)0x8CE3), /// + /// Original was GL_COLOR_ATTACHMENT4 = 0x8CE4 + /// + ColorAttachment4 = ((int)0x8CE4), + /// /// Original was GL_COLOR_ATTACHMENT4_EXT = 0x8CE4 /// ColorAttachment4Ext = ((int)0x8CE4), @@ -7448,6 +8612,10 @@ namespace OpenTK.Graphics.ES20 /// ColorAttachment4Nv = ((int)0x8CE4), /// + /// Original was GL_COLOR_ATTACHMENT5 = 0x8CE5 + /// + ColorAttachment5 = ((int)0x8CE5), + /// /// Original was GL_COLOR_ATTACHMENT5_EXT = 0x8CE5 /// ColorAttachment5Ext = ((int)0x8CE5), @@ -7456,6 +8624,10 @@ namespace OpenTK.Graphics.ES20 /// ColorAttachment5Nv = ((int)0x8CE5), /// + /// Original was GL_COLOR_ATTACHMENT6 = 0x8CE6 + /// + ColorAttachment6 = ((int)0x8CE6), + /// /// Original was GL_COLOR_ATTACHMENT6_EXT = 0x8CE6 /// ColorAttachment6Ext = ((int)0x8CE6), @@ -7464,6 +8636,10 @@ namespace OpenTK.Graphics.ES20 /// ColorAttachment6Nv = ((int)0x8CE6), /// + /// Original was GL_COLOR_ATTACHMENT7 = 0x8CE7 + /// + ColorAttachment7 = ((int)0x8CE7), + /// /// Original was GL_COLOR_ATTACHMENT7_EXT = 0x8CE7 /// ColorAttachment7Ext = ((int)0x8CE7), @@ -7472,6 +8648,10 @@ namespace OpenTK.Graphics.ES20 /// ColorAttachment7Nv = ((int)0x8CE7), /// + /// Original was GL_COLOR_ATTACHMENT8 = 0x8CE8 + /// + ColorAttachment8 = ((int)0x8CE8), + /// /// Original was GL_COLOR_ATTACHMENT8_EXT = 0x8CE8 /// ColorAttachment8Ext = ((int)0x8CE8), @@ -7480,6 +8660,10 @@ namespace OpenTK.Graphics.ES20 /// ColorAttachment8Nv = ((int)0x8CE8), /// + /// Original was GL_COLOR_ATTACHMENT9 = 0x8CE9 + /// + ColorAttachment9 = ((int)0x8CE9), + /// /// Original was GL_COLOR_ATTACHMENT9_EXT = 0x8CE9 /// ColorAttachment9Ext = ((int)0x8CE9), @@ -7488,6 +8672,10 @@ namespace OpenTK.Graphics.ES20 /// ColorAttachment9Nv = ((int)0x8CE9), /// + /// Original was GL_COLOR_ATTACHMENT10 = 0x8CEA + /// + ColorAttachment10 = ((int)0x8CEA), + /// /// Original was GL_COLOR_ATTACHMENT10_EXT = 0x8CEA /// ColorAttachment10Ext = ((int)0x8CEA), @@ -7496,6 +8684,10 @@ namespace OpenTK.Graphics.ES20 /// ColorAttachment10Nv = ((int)0x8CEA), /// + /// Original was GL_COLOR_ATTACHMENT11 = 0x8CEB + /// + ColorAttachment11 = ((int)0x8CEB), + /// /// Original was GL_COLOR_ATTACHMENT11_EXT = 0x8CEB /// ColorAttachment11Ext = ((int)0x8CEB), @@ -7504,6 +8696,10 @@ namespace OpenTK.Graphics.ES20 /// ColorAttachment11Nv = ((int)0x8CEB), /// + /// Original was GL_COLOR_ATTACHMENT12 = 0x8CEC + /// + ColorAttachment12 = ((int)0x8CEC), + /// /// Original was GL_COLOR_ATTACHMENT12_EXT = 0x8CEC /// ColorAttachment12Ext = ((int)0x8CEC), @@ -7512,6 +8708,10 @@ namespace OpenTK.Graphics.ES20 /// ColorAttachment12Nv = ((int)0x8CEC), /// + /// Original was GL_COLOR_ATTACHMENT13 = 0x8CED + /// + ColorAttachment13 = ((int)0x8CED), + /// /// Original was GL_COLOR_ATTACHMENT13_EXT = 0x8CED /// ColorAttachment13Ext = ((int)0x8CED), @@ -7520,6 +8720,10 @@ namespace OpenTK.Graphics.ES20 /// ColorAttachment13Nv = ((int)0x8CED), /// + /// Original was GL_COLOR_ATTACHMENT14 = 0x8CEE + /// + ColorAttachment14 = ((int)0x8CEE), + /// /// Original was GL_COLOR_ATTACHMENT14_EXT = 0x8CEE /// ColorAttachment14Ext = ((int)0x8CEE), @@ -7528,6 +8732,10 @@ namespace OpenTK.Graphics.ES20 /// ColorAttachment14Nv = ((int)0x8CEE), /// + /// Original was GL_COLOR_ATTACHMENT15 = 0x8CEF + /// + ColorAttachment15 = ((int)0x8CEF), + /// /// Original was GL_COLOR_ATTACHMENT15_EXT = 0x8CEF /// ColorAttachment15Ext = ((int)0x8CEF), @@ -7536,10 +8744,82 @@ namespace OpenTK.Graphics.ES20 /// ColorAttachment15Nv = ((int)0x8CEF), /// + /// Original was GL_COLOR_ATTACHMENT16 = 0x8CF0 + /// + ColorAttachment16 = ((int)0x8CF0), + /// + /// Original was GL_COLOR_ATTACHMENT17 = 0x8CF1 + /// + ColorAttachment17 = ((int)0x8CF1), + /// + /// Original was GL_COLOR_ATTACHMENT18 = 0x8CF2 + /// + ColorAttachment18 = ((int)0x8CF2), + /// + /// Original was GL_COLOR_ATTACHMENT19 = 0x8CF3 + /// + ColorAttachment19 = ((int)0x8CF3), + /// + /// Original was GL_COLOR_ATTACHMENT20 = 0x8CF4 + /// + ColorAttachment20 = ((int)0x8CF4), + /// + /// Original was GL_COLOR_ATTACHMENT21 = 0x8CF5 + /// + ColorAttachment21 = ((int)0x8CF5), + /// + /// Original was GL_COLOR_ATTACHMENT22 = 0x8CF6 + /// + ColorAttachment22 = ((int)0x8CF6), + /// + /// Original was GL_COLOR_ATTACHMENT23 = 0x8CF7 + /// + ColorAttachment23 = ((int)0x8CF7), + /// + /// Original was GL_COLOR_ATTACHMENT24 = 0x8CF8 + /// + ColorAttachment24 = ((int)0x8CF8), + /// + /// Original was GL_COLOR_ATTACHMENT25 = 0x8CF9 + /// + ColorAttachment25 = ((int)0x8CF9), + /// + /// Original was GL_COLOR_ATTACHMENT26 = 0x8CFA + /// + ColorAttachment26 = ((int)0x8CFA), + /// + /// Original was GL_COLOR_ATTACHMENT27 = 0x8CFB + /// + ColorAttachment27 = ((int)0x8CFB), + /// + /// Original was GL_COLOR_ATTACHMENT28 = 0x8CFC + /// + ColorAttachment28 = ((int)0x8CFC), + /// + /// Original was GL_COLOR_ATTACHMENT29 = 0x8CFD + /// + ColorAttachment29 = ((int)0x8CFD), + /// + /// Original was GL_COLOR_ATTACHMENT30 = 0x8CFE + /// + ColorAttachment30 = ((int)0x8CFE), + /// + /// Original was GL_COLOR_ATTACHMENT31 = 0x8CFF + /// + ColorAttachment31 = ((int)0x8CFF), + /// /// Original was GL_DEPTH_ATTACHMENT = 0x8D00 /// DepthAttachment = ((int)0x8D00), /// + /// Original was GL_DEPTH_ATTACHMENT_EXT = 0x8D00 + /// + DepthAttachmentExt = ((int)0x8D00), + /// + /// Original was GL_DEPTH_ATTACHMENT_OES = 0x8D00 + /// + DepthAttachmentOes = ((int)0x8D00), + /// /// Original was GL_STENCIL_ATTACHMENT = 0x8D20 /// StencilAttachment = ((int)0x8D20), @@ -7604,6 +8884,10 @@ namespace OpenTK.Graphics.ES20 /// RenderbufferStencilSize = ((int)0x8D55), /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE = 0x8D56 + /// + FramebufferIncompleteMultisample = ((int)0x8D56), + /// /// Original was GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_ANGLE = 0x8D56 /// FramebufferIncompleteMultisampleAngle = ((int)0x8D56), @@ -7668,6 +8952,10 @@ namespace OpenTK.Graphics.ES20 /// RequiredTextureImageUnitsOes = ((int)0x8D68), /// + /// Original was GL_ANY_SAMPLES_PASSED_CONSERVATIVE = 0x8D6A + /// + AnySamplesPassedConservative = ((int)0x8D6A), + /// /// Original was GL_ANY_SAMPLES_PASSED_CONSERVATIVE_EXT = 0x8D6A /// AnySamplesPassedConservativeExt = ((int)0x8D6A), @@ -7676,6 +8964,62 @@ namespace OpenTK.Graphics.ES20 /// FramebufferAttachmentTextureSamplesExt = ((int)0x8D6C), /// + /// Original was GL_RGBA32UI = 0x8D70 + /// + Rgba32ui = ((int)0x8D70), + /// + /// Original was GL_RGB32UI = 0x8D71 + /// + Rgb32ui = ((int)0x8D71), + /// + /// Original was GL_RGBA16UI = 0x8D76 + /// + Rgba16ui = ((int)0x8D76), + /// + /// Original was GL_RGB16UI = 0x8D77 + /// + Rgb16ui = ((int)0x8D77), + /// + /// Original was GL_RGBA8UI = 0x8D7C + /// + Rgba8ui = ((int)0x8D7C), + /// + /// Original was GL_RGB8UI = 0x8D7D + /// + Rgb8ui = ((int)0x8D7D), + /// + /// Original was GL_RGBA32I = 0x8D82 + /// + Rgba32i = ((int)0x8D82), + /// + /// Original was GL_RGB32I = 0x8D83 + /// + Rgb32i = ((int)0x8D83), + /// + /// Original was GL_RGBA16I = 0x8D88 + /// + Rgba16i = ((int)0x8D88), + /// + /// Original was GL_RGB16I = 0x8D89 + /// + Rgb16i = ((int)0x8D89), + /// + /// Original was GL_RGBA8I = 0x8D8E + /// + Rgba8i = ((int)0x8D8E), + /// + /// Original was GL_RGB8I = 0x8D8F + /// + Rgb8i = ((int)0x8D8F), + /// + /// Original was GL_INT_2_10_10_10_REV = 0x8D9F + /// + Int2101010Rev = ((int)0x8D9F), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_LAYERED = 0x8DA7 + /// + FramebufferAttachmentLayered = ((int)0x8DA7), + /// /// Original was GL_FRAMEBUFFER_ATTACHMENT_LAYERED_EXT = 0x8DA7 /// FramebufferAttachmentLayeredExt = ((int)0x8DA7), @@ -7684,6 +9028,10 @@ namespace OpenTK.Graphics.ES20 /// FramebufferAttachmentLayeredOes = ((int)0x8DA7), /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS = 0x8DA8 + /// + FramebufferIncompleteLayerTargets = ((int)0x8DA8), + /// /// Original was GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_EXT = 0x8DA8 /// FramebufferIncompleteLayerTargetsExt = ((int)0x8DA8), @@ -7692,14 +9040,30 @@ namespace OpenTK.Graphics.ES20 /// FramebufferIncompleteLayerTargetsOes = ((int)0x8DA8), /// + /// Original was GL_DEPTH_COMPONENT32F_NV = 0x8DAB + /// + DepthComponent32fNv = ((int)0x8DAB), + /// + /// Original was GL_DEPTH32F_STENCIL8_NV = 0x8DAC + /// + Depth32fStencil8Nv = ((int)0x8DAC), + /// /// Original was GL_FRAMEBUFFER_SRGB_EXT = 0x8DB9 /// FramebufferSrgbExt = ((int)0x8DB9), /// + /// Original was GL_COMPRESSED_RED_RGTC1 = 0x8DBB + /// + CompressedRedRgtc1 = ((int)0x8DBB), + /// /// Original was GL_COMPRESSED_RED_RGTC1_EXT = 0x8DBB /// CompressedRedRgtc1Ext = ((int)0x8DBB), /// + /// Original was GL_COMPRESSED_SIGNED_RED_RGTC1 = 0x8DBC + /// + CompressedSignedRedRgtc1 = ((int)0x8DBC), + /// /// Original was GL_COMPRESSED_SIGNED_RED_RGTC1_EXT = 0x8DBC /// CompressedSignedRedRgtc1Ext = ((int)0x8DBC), @@ -7708,10 +9072,18 @@ namespace OpenTK.Graphics.ES20 /// CompressedRedGreenRgtc2Ext = ((int)0x8DBD), /// + /// Original was GL_COMPRESSED_RG_RGTC2 = 0x8DBD + /// + CompressedRgRgtc2 = ((int)0x8DBD), + /// /// Original was GL_COMPRESSED_SIGNED_RED_GREEN_RGTC2_EXT = 0x8DBE /// CompressedSignedRedGreenRgtc2Ext = ((int)0x8DBE), /// + /// Original was GL_COMPRESSED_SIGNED_RG_RGTC2 = 0x8DBE + /// + CompressedSignedRgRgtc2 = ((int)0x8DBE), + /// /// Original was GL_SAMPLER_BUFFER_EXT = 0x8DC2 /// SamplerBufferExt = ((int)0x8DC2), @@ -7744,6 +9116,10 @@ namespace OpenTK.Graphics.ES20 /// UnsignedIntSamplerBufferOes = ((int)0x8DD8), /// + /// Original was GL_GEOMETRY_SHADER = 0x8DD9 + /// + GeometryShader = ((int)0x8DD9), + /// /// Original was GL_GEOMETRY_SHADER_EXT = 0x8DD9 /// GeometryShaderExt = ((int)0x8DD9), @@ -7776,6 +9152,14 @@ namespace OpenTK.Graphics.ES20 /// MaxGeometryTotalOutputComponentsOes = ((int)0x8DE1), /// + /// Original was GL_ACTIVE_SUBROUTINES = 0x8DE5 + /// + ActiveSubroutines = ((int)0x8DE5), + /// + /// Original was GL_ACTIVE_SUBROUTINE_UNIFORMS = 0x8DE6 + /// + ActiveSubroutineUniforms = ((int)0x8DE6), + /// /// Original was GL_LOW_FLOAT = 0x8DF0 /// LowFloat = ((int)0x8DF0), @@ -7832,18 +9216,34 @@ namespace OpenTK.Graphics.ES20 /// MaxFragmentUniformVectors = ((int)0x8DFD), /// + /// Original was GL_QUERY_WAIT = 0x8E13 + /// + QueryWait = ((int)0x8E13), + /// /// Original was GL_QUERY_WAIT_NV = 0x8E13 /// QueryWaitNv = ((int)0x8E13), /// + /// Original was GL_QUERY_NO_WAIT = 0x8E14 + /// + QueryNoWait = ((int)0x8E14), + /// /// Original was GL_QUERY_NO_WAIT_NV = 0x8E14 /// QueryNoWaitNv = ((int)0x8E14), /// + /// Original was GL_QUERY_BY_REGION_WAIT = 0x8E15 + /// + QueryByRegionWait = ((int)0x8E15), + /// /// Original was GL_QUERY_BY_REGION_WAIT_NV = 0x8E15 /// QueryByRegionWaitNv = ((int)0x8E15), /// + /// Original was GL_QUERY_BY_REGION_NO_WAIT = 0x8E16 + /// + QueryByRegionNoWait = ((int)0x8E16), + /// /// Original was GL_QUERY_BY_REGION_NO_WAIT_NV = 0x8E16 /// QueryByRegionNoWaitNv = ((int)0x8E16), @@ -7876,6 +9276,14 @@ namespace OpenTK.Graphics.ES20 /// TransformFeedback = ((int)0x8E22), /// + /// Original was GL_TRANSFORM_FEEDBACK_PAUSED = 0x8E23 + /// + TransformFeedbackPaused = ((int)0x8E23), + /// + /// Original was GL_TRANSFORM_FEEDBACK_ACTIVE = 0x8E24 + /// + TransformFeedbackActive = ((int)0x8E24), + /// /// Original was GL_TIMESTAMP_EXT = 0x8E28 /// TimestampExt = ((int)0x8E28), @@ -7904,6 +9312,30 @@ namespace OpenTK.Graphics.ES20 /// TextureSwizzleRgba = ((int)0x8E46), /// + /// Original was GL_ACTIVE_SUBROUTINE_UNIFORM_LOCATIONS = 0x8E47 + /// + ActiveSubroutineUniformLocations = ((int)0x8E47), + /// + /// Original was GL_ACTIVE_SUBROUTINE_MAX_LENGTH = 0x8E48 + /// + ActiveSubroutineMaxLength = ((int)0x8E48), + /// + /// Original was GL_ACTIVE_SUBROUTINE_UNIFORM_MAX_LENGTH = 0x8E49 + /// + ActiveSubroutineUniformMaxLength = ((int)0x8E49), + /// + /// Original was GL_NUM_COMPATIBLE_SUBROUTINES = 0x8E4A + /// + NumCompatibleSubroutines = ((int)0x8E4A), + /// + /// Original was GL_COMPATIBLE_SUBROUTINES = 0x8E4B + /// + CompatibleSubroutines = ((int)0x8E4B), + /// + /// Original was GL_FIRST_VERTEX_CONVENTION = 0x8E4D + /// + FirstVertexConvention = ((int)0x8E4D), + /// /// Original was GL_FIRST_VERTEX_CONVENTION_EXT = 0x8E4D /// FirstVertexConventionExt = ((int)0x8E4D), @@ -7912,6 +9344,10 @@ namespace OpenTK.Graphics.ES20 /// FirstVertexConventionOes = ((int)0x8E4D), /// + /// Original was GL_LAST_VERTEX_CONVENTION = 0x8E4E + /// + LastVertexConvention = ((int)0x8E4E), + /// /// Original was GL_LAST_VERTEX_CONVENTION_EXT = 0x8E4E /// LastVertexConventionExt = ((int)0x8E4E), @@ -7944,6 +9380,10 @@ namespace OpenTK.Graphics.ES20 /// FragmentInterpolationOffsetBitsOes = ((int)0x8E5D), /// + /// Original was GL_PATCH_VERTICES = 0x8E72 + /// + PatchVertices = ((int)0x8E72), + /// /// Original was GL_PATCH_VERTICES_EXT = 0x8E72 /// PatchVerticesExt = ((int)0x8E72), @@ -7952,6 +9392,14 @@ namespace OpenTK.Graphics.ES20 /// PatchVerticesOes = ((int)0x8E72), /// + /// Original was GL_PATCH_DEFAULT_INNER_LEVEL = 0x8E73 + /// + PatchDefaultInnerLevel = ((int)0x8E73), + /// + /// Original was GL_PATCH_DEFAULT_OUTER_LEVEL = 0x8E74 + /// + PatchDefaultOuterLevel = ((int)0x8E74), + /// /// Original was GL_TESS_CONTROL_OUTPUT_VERTICES_EXT = 0x8E75 /// TessControlOutputVerticesExt = ((int)0x8E75), @@ -8096,6 +9544,10 @@ namespace OpenTK.Graphics.ES20 /// MaxTessEvaluationOutputComponentsOes = ((int)0x8E86), /// + /// Original was GL_TESS_EVALUATION_SHADER = 0x8E87 + /// + TessEvaluationShader = ((int)0x8E87), + /// /// Original was GL_TESS_EVALUATION_SHADER_EXT = 0x8E87 /// TessEvaluationShaderExt = ((int)0x8E87), @@ -8104,6 +9556,10 @@ namespace OpenTK.Graphics.ES20 /// TessEvaluationShaderOes = ((int)0x8E87), /// + /// Original was GL_TESS_CONTROL_SHADER = 0x8E88 + /// + TessControlShader = ((int)0x8E88), + /// /// Original was GL_TESS_CONTROL_SHADER_EXT = 0x8E88 /// TessControlShaderExt = ((int)0x8E88), @@ -8128,18 +9584,34 @@ namespace OpenTK.Graphics.ES20 /// MaxTessEvaluationUniformBlocksOes = ((int)0x8E8A), /// + /// Original was GL_COMPRESSED_RGBA_BPTC_UNORM = 0x8E8C + /// + CompressedRgbaBptcUnorm = ((int)0x8E8C), + /// /// Original was GL_COMPRESSED_RGBA_BPTC_UNORM_EXT = 0x8E8C /// CompressedRgbaBptcUnormExt = ((int)0x8E8C), /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM = 0x8E8D + /// + CompressedSrgbAlphaBptcUnorm = ((int)0x8E8D), + /// /// Original was GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM_EXT = 0x8E8D /// CompressedSrgbAlphaBptcUnormExt = ((int)0x8E8D), /// + /// Original was GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT = 0x8E8E + /// + CompressedRgbBptcSignedFloat = ((int)0x8E8E), + /// /// Original was GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT_EXT = 0x8E8E /// CompressedRgbBptcSignedFloatExt = ((int)0x8E8E), /// + /// Original was GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT = 0x8E8F + /// + CompressedRgbBptcUnsignedFloat = ((int)0x8E8F), + /// /// Original was GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT_EXT = 0x8E8F /// CompressedRgbBptcUnsignedFloatExt = ((int)0x8E8F), @@ -8260,18 +9732,34 @@ namespace OpenTK.Graphics.ES20 /// Rg8Snorm = ((int)0x8F95), /// + /// Original was GL_RGB8_SNORM = 0x8F96 + /// + Rgb8Snorm = ((int)0x8F96), + /// /// Original was GL_RGBA8_SNORM = 0x8F97 /// Rgba8Snorm = ((int)0x8F97), /// + /// Original was GL_R16_SNORM = 0x8F98 + /// + R16Snorm = ((int)0x8F98), + /// /// Original was GL_R16_SNORM_EXT = 0x8F98 /// R16SnormExt = ((int)0x8F98), /// + /// Original was GL_RG16_SNORM = 0x8F99 + /// + Rg16Snorm = ((int)0x8F99), + /// /// Original was GL_RG16_SNORM_EXT = 0x8F99 /// Rg16SnormExt = ((int)0x8F99), /// + /// Original was GL_RGB16_SNORM = 0x8F9A + /// + Rgb16Snorm = ((int)0x8F9A), + /// /// Original was GL_RGB16_SNORM_EXT = 0x8F9A /// Rgb16SnormExt = ((int)0x8F9A), @@ -8540,6 +10028,10 @@ namespace OpenTK.Graphics.ES20 /// UnsignedIntImageCubeMapArrayOes = ((int)0x906A), /// + /// Original was GL_RGB10_A2UI = 0x906F + /// + Rgb10A2ui = ((int)0x906F), + /// /// Original was GL_PATH_FORMAT_SVG_NV = 0x9070 /// PathFormatSvgNv = ((int)0x9070), @@ -8816,6 +10308,10 @@ namespace OpenTK.Graphics.ES20 /// PathCoverDepthFuncNv = ((int)0x90BF), /// + /// Original was GL_IMAGE_FORMAT_COMPATIBILITY_TYPE = 0x90C7 + /// + ImageFormatCompatibilityType = ((int)0x90C7), + /// /// Original was GL_MAX_TESS_CONTROL_IMAGE_UNIFORMS_EXT = 0x90CB /// MaxTessControlImageUniformsExt = ((int)0x90CB), @@ -8872,6 +10368,14 @@ namespace OpenTK.Graphics.ES20 /// DepthStencilTextureMode = ((int)0x90EA), /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_COMPUTE_SHADER = 0x90EC + /// + UniformBlockReferencedByComputeShader = ((int)0x90EC), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_COMPUTE_SHADER = 0x90ED + /// + AtomicCounterBufferReferencedByComputeShader = ((int)0x90ED), + /// /// Original was GL_DISPATCH_INDIRECT_BUFFER = 0x90EE /// DispatchIndirectBuffer = ((int)0x90EE), @@ -8940,18 +10444,34 @@ namespace OpenTK.Graphics.ES20 /// MaxServerWaitTimeoutApple = ((int)0x9111), /// + /// Original was GL_OBJECT_TYPE = 0x9112 + /// + ObjectType = ((int)0x9112), + /// /// Original was GL_OBJECT_TYPE_APPLE = 0x9112 /// ObjectTypeApple = ((int)0x9112), /// + /// Original was GL_SYNC_CONDITION = 0x9113 + /// + SyncCondition = ((int)0x9113), + /// /// Original was GL_SYNC_CONDITION_APPLE = 0x9113 /// SyncConditionApple = ((int)0x9113), /// + /// Original was GL_SYNC_STATUS = 0x9114 + /// + SyncStatus = ((int)0x9114), + /// /// Original was GL_SYNC_STATUS_APPLE = 0x9114 /// SyncStatusApple = ((int)0x9114), /// + /// Original was GL_SYNC_FLAGS = 0x9115 + /// + SyncFlags = ((int)0x9115), + /// /// Original was GL_SYNC_FLAGS_APPLE = 0x9115 /// SyncFlagsApple = ((int)0x9115), @@ -8960,6 +10480,10 @@ namespace OpenTK.Graphics.ES20 /// SyncFenceApple = ((int)0x9116), /// + /// Original was GL_SYNC_GPU_COMMANDS_COMPLETE = 0x9117 + /// + SyncGpuCommandsComplete = ((int)0x9117), + /// /// Original was GL_SYNC_GPU_COMMANDS_COMPLETE_APPLE = 0x9117 /// SyncGpuCommandsCompleteApple = ((int)0x9117), @@ -8972,22 +10496,50 @@ namespace OpenTK.Graphics.ES20 /// SignaledApple = ((int)0x9119), /// + /// Original was GL_ALREADY_SIGNALED = 0x911A + /// + AlreadySignaled = ((int)0x911A), + /// /// Original was GL_ALREADY_SIGNALED_APPLE = 0x911A /// AlreadySignaledApple = ((int)0x911A), /// + /// Original was GL_TIMEOUT_EXPIRED = 0x911B + /// + TimeoutExpired = ((int)0x911B), + /// /// Original was GL_TIMEOUT_EXPIRED_APPLE = 0x911B /// TimeoutExpiredApple = ((int)0x911B), /// + /// Original was GL_CONDITION_SATISFIED = 0x911C + /// + ConditionSatisfied = ((int)0x911C), + /// /// Original was GL_CONDITION_SATISFIED_APPLE = 0x911C /// ConditionSatisfiedApple = ((int)0x911C), /// + /// Original was GL_WAIT_FAILED = 0x911D + /// + WaitFailed = ((int)0x911D), + /// /// Original was GL_WAIT_FAILED_APPLE = 0x911D /// WaitFailedApple = ((int)0x911D), /// + /// Original was GL_BUFFER_ACCESS_FLAGS = 0x911F + /// + BufferAccessFlags = ((int)0x911F), + /// + /// Original was GL_BUFFER_MAP_LENGTH = 0x9120 + /// + BufferMapLength = ((int)0x9120), + /// + /// Original was GL_BUFFER_MAP_OFFSET = 0x9121 + /// + BufferMapOffset = ((int)0x9121), + /// /// Original was GL_MAX_GEOMETRY_INPUT_COMPONENTS_EXT = 0x9123 /// MaxGeometryInputComponentsExt = ((int)0x9123), @@ -9128,6 +10680,10 @@ namespace OpenTK.Graphics.ES20 /// QueryBuffer = ((int)0x9192), /// + /// Original was GL_QUERY_RESULT_NO_WAIT = 0x9194 + /// + QueryResultNoWait = ((int)0x9194), + /// /// Original was GL_VIRTUAL_PAGE_SIZE_X_EXT = 0x9195 /// VirtualPageSizeXExt = ((int)0x9195), @@ -9196,6 +10752,18 @@ namespace OpenTK.Graphics.ES20 /// NumSparseLevelsExt = ((int)0x91AA), /// + /// Original was GL_MAX_SHADER_COMPILER_THREADS_KHR = 0x91B0 + /// + MaxShaderCompilerThreadsKhr = ((int)0x91B0), + /// + /// Original was GL_COMPLETION_STATUS_KHR = 0x91B1 + /// + CompletionStatusKhr = ((int)0x91B1), + /// + /// Original was GL_COMPUTE_SHADER = 0x91B9 + /// + ComputeShader = ((int)0x91B9), + /// /// Original was GL_SHADER_BINARY_DMP = 0x9250 /// ShaderBinaryDmp = ((int)0x9250), @@ -9216,6 +10784,46 @@ namespace OpenTK.Graphics.ES20 /// GccsoShaderBinaryFj = ((int)0x9260), /// + /// Original was GL_COMPRESSED_R11_EAC = 0x9270 + /// + CompressedR11Eac = ((int)0x9270), + /// + /// Original was GL_COMPRESSED_SIGNED_R11_EAC = 0x9271 + /// + CompressedSignedR11Eac = ((int)0x9271), + /// + /// Original was GL_COMPRESSED_RG11_EAC = 0x9272 + /// + CompressedRg11Eac = ((int)0x9272), + /// + /// Original was GL_COMPRESSED_SIGNED_RG11_EAC = 0x9273 + /// + CompressedSignedRg11Eac = ((int)0x9273), + /// + /// Original was GL_COMPRESSED_RGB8_ETC2 = 0x9274 + /// + CompressedRgb8Etc2 = ((int)0x9274), + /// + /// Original was GL_COMPRESSED_SRGB8_ETC2 = 0x9275 + /// + CompressedSrgb8Etc2 = ((int)0x9275), + /// + /// Original was GL_COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2 = 0x9276 + /// + CompressedRgb8PunchthroughAlpha1Etc2 = ((int)0x9276), + /// + /// Original was GL_COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2 = 0x9277 + /// + CompressedSrgb8PunchthroughAlpha1Etc2 = ((int)0x9277), + /// + /// Original was GL_COMPRESSED_RGBA8_ETC2_EAC = 0x9278 + /// + CompressedRgba8Etc2Eac = ((int)0x9278), + /// + /// Original was GL_COMPRESSED_SRGB8_ALPHA8_ETC2_EAC = 0x9279 + /// + CompressedSrgb8Alpha8Etc2Eac = ((int)0x9279), + /// /// Original was GL_BLEND_PREMULTIPLIED_SRC_NV = 0x9280 /// BlendPremultipliedSrcNv = ((int)0x9280), @@ -9476,6 +11084,42 @@ namespace OpenTK.Graphics.ES20 /// AtomicCounterBuffer = ((int)0x92C0), /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_BINDING = 0x92C1 + /// + AtomicCounterBufferBinding = ((int)0x92C1), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_DATA_SIZE = 0x92C4 + /// + AtomicCounterBufferDataSize = ((int)0x92C4), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTERS = 0x92C5 + /// + AtomicCounterBufferActiveAtomicCounters = ((int)0x92C5), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTER_INDICES = 0x92C6 + /// + AtomicCounterBufferActiveAtomicCounterIndices = ((int)0x92C6), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_VERTEX_SHADER = 0x92C7 + /// + AtomicCounterBufferReferencedByVertexShader = ((int)0x92C7), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_CONTROL_SHADER = 0x92C8 + /// + AtomicCounterBufferReferencedByTessControlShader = ((int)0x92C8), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_EVALUATION_SHADER = 0x92C9 + /// + AtomicCounterBufferReferencedByTessEvaluationShader = ((int)0x92C9), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_GEOMETRY_SHADER = 0x92CA + /// + AtomicCounterBufferReferencedByGeometryShader = ((int)0x92CA), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_FRAGMENT_SHADER = 0x92CB + /// + AtomicCounterBufferReferencedByFragmentShader = ((int)0x92CB), + /// /// Original was GL_MAX_TESS_CONTROL_ATOMIC_COUNTER_BUFFERS_EXT = 0x92CD /// MaxTessControlAtomicCounterBuffersExt = ((int)0x92CD), @@ -9524,6 +11168,14 @@ namespace OpenTK.Graphics.ES20 /// MaxGeometryAtomicCountersOes = ((int)0x92D5), /// + /// Original was GL_ACTIVE_ATOMIC_COUNTER_BUFFERS = 0x92D9 + /// + ActiveAtomicCounterBuffers = ((int)0x92D9), + /// + /// Original was GL_UNIFORM_ATOMIC_COUNTER_BUFFER_INDEX = 0x92DA + /// + UniformAtomicCounterBufferIndex = ((int)0x92DA), + /// /// Original was GL_FRAGMENT_COVERAGE_TO_COLOR_NV = 0x92DD /// FragmentCoverageToColorNv = ((int)0x92DD), @@ -9540,6 +11192,30 @@ namespace OpenTK.Graphics.ES20 /// DebugOutputKhr = ((int)0x92E0), /// + /// Original was GL_UNIFORM = 0x92E1 + /// + Uniform = ((int)0x92E1), + /// + /// Original was GL_UNIFORM_BLOCK = 0x92E2 + /// + UniformBlock = ((int)0x92E2), + /// + /// Original was GL_PROGRAM_INPUT = 0x92E3 + /// + ProgramInput = ((int)0x92E3), + /// + /// Original was GL_PROGRAM_OUTPUT = 0x92E4 + /// + ProgramOutput = ((int)0x92E4), + /// + /// Original was GL_BUFFER_VARIABLE = 0x92E5 + /// + BufferVariable = ((int)0x92E5), + /// + /// Original was GL_SHADER_STORAGE_BLOCK = 0x92E6 + /// + ShaderStorageBlock = ((int)0x92E6), + /// /// Original was GL_IS_PER_PATCH_EXT = 0x92E7 /// IsPerPatchExt = ((int)0x92E7), @@ -9548,6 +11224,74 @@ namespace OpenTK.Graphics.ES20 /// IsPerPatchOes = ((int)0x92E7), /// + /// Original was GL_VERTEX_SUBROUTINE = 0x92E8 + /// + VertexSubroutine = ((int)0x92E8), + /// + /// Original was GL_TESS_CONTROL_SUBROUTINE = 0x92E9 + /// + TessControlSubroutine = ((int)0x92E9), + /// + /// Original was GL_TESS_EVALUATION_SUBROUTINE = 0x92EA + /// + TessEvaluationSubroutine = ((int)0x92EA), + /// + /// Original was GL_GEOMETRY_SUBROUTINE = 0x92EB + /// + GeometrySubroutine = ((int)0x92EB), + /// + /// Original was GL_FRAGMENT_SUBROUTINE = 0x92EC + /// + FragmentSubroutine = ((int)0x92EC), + /// + /// Original was GL_COMPUTE_SUBROUTINE = 0x92ED + /// + ComputeSubroutine = ((int)0x92ED), + /// + /// Original was GL_VERTEX_SUBROUTINE_UNIFORM = 0x92EE + /// + VertexSubroutineUniform = ((int)0x92EE), + /// + /// Original was GL_TESS_CONTROL_SUBROUTINE_UNIFORM = 0x92EF + /// + TessControlSubroutineUniform = ((int)0x92EF), + /// + /// Original was GL_TESS_EVALUATION_SUBROUTINE_UNIFORM = 0x92F0 + /// + TessEvaluationSubroutineUniform = ((int)0x92F0), + /// + /// Original was GL_GEOMETRY_SUBROUTINE_UNIFORM = 0x92F1 + /// + GeometrySubroutineUniform = ((int)0x92F1), + /// + /// Original was GL_FRAGMENT_SUBROUTINE_UNIFORM = 0x92F2 + /// + FragmentSubroutineUniform = ((int)0x92F2), + /// + /// Original was GL_COMPUTE_SUBROUTINE_UNIFORM = 0x92F3 + /// + ComputeSubroutineUniform = ((int)0x92F3), + /// + /// Original was GL_TRANSFORM_FEEDBACK_VARYING = 0x92F4 + /// + TransformFeedbackVarying = ((int)0x92F4), + /// + /// Original was GL_ACTIVE_RESOURCES = 0x92F5 + /// + ActiveResources = ((int)0x92F5), + /// + /// Original was GL_MAX_NAME_LENGTH = 0x92F6 + /// + MaxNameLength = ((int)0x92F6), + /// + /// Original was GL_MAX_NUM_ACTIVE_VARIABLES = 0x92F7 + /// + MaxNumActiveVariables = ((int)0x92F7), + /// + /// Original was GL_MAX_NUM_COMPATIBLE_SUBROUTINES = 0x92F8 + /// + MaxNumCompatibleSubroutines = ((int)0x92F8), + /// /// Original was GL_REFERENCED_BY_TESS_CONTROL_SHADER_EXT = 0x9307 /// ReferencedByTessControlShaderExt = ((int)0x9307), @@ -9576,6 +11320,18 @@ namespace OpenTK.Graphics.ES20 /// LocationIndexExt = ((int)0x930F), /// + /// Original was GL_FRAMEBUFFER_DEFAULT_WIDTH = 0x9310 + /// + FramebufferDefaultWidth = ((int)0x9310), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_HEIGHT = 0x9311 + /// + FramebufferDefaultHeight = ((int)0x9311), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_LAYERS = 0x9312 + /// + FramebufferDefaultLayers = ((int)0x9312), + /// /// Original was GL_FRAMEBUFFER_DEFAULT_LAYERS_EXT = 0x9312 /// FramebufferDefaultLayersExt = ((int)0x9312), @@ -9584,6 +11340,14 @@ namespace OpenTK.Graphics.ES20 /// FramebufferDefaultLayersOes = ((int)0x9312), /// + /// Original was GL_FRAMEBUFFER_DEFAULT_SAMPLES = 0x9313 + /// + FramebufferDefaultSamples = ((int)0x9313), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_FIXED_SAMPLE_LOCATIONS = 0x9314 + /// + FramebufferDefaultFixedSampleLocations = ((int)0x9314), + /// /// Original was GL_MAX_FRAMEBUFFER_LAYERS_EXT = 0x9317 /// MaxFramebufferLayersExt = ((int)0x9317), @@ -9740,6 +11504,34 @@ namespace OpenTK.Graphics.ES20 /// ViewportSwizzleWNv = ((int)0x935B), /// + /// Original was GL_CLIP_ORIGIN_EXT = 0x935C + /// + ClipOriginExt = ((int)0x935C), + /// + /// Original was GL_CLIP_DEPTH_MODE_EXT = 0x935D + /// + ClipDepthModeExt = ((int)0x935D), + /// + /// Original was GL_NEGATIVE_ONE_TO_ONE = 0x935E + /// + NegativeOneToOne = ((int)0x935E), + /// + /// Original was GL_NEGATIVE_ONE_TO_ONE_EXT = 0x935E + /// + NegativeOneToOneExt = ((int)0x935E), + /// + /// Original was GL_ZERO_TO_ONE = 0x935F + /// + ZeroToOne = ((int)0x935F), + /// + /// Original was GL_ZERO_TO_ONE_EXT = 0x935F + /// + ZeroToOneExt = ((int)0x935F), + /// + /// Original was GL_CLEAR_TEXTURE = 0x9365 + /// + ClearTexture = ((int)0x9365), + /// /// Original was GL_FONT_GLYPHS_AVAILABLE_NV = 0x9368 /// FontGlyphsAvailableNv = ((int)0x9368), @@ -9780,6 +11572,22 @@ namespace OpenTK.Graphics.ES20 /// ConformantNv = ((int)0x9374), /// + /// Original was GL_VIEWPORT_POSITION_W_SCALE_NV = 0x937C + /// + ViewportPositionWScaleNv = ((int)0x937C), + /// + /// Original was GL_VIEWPORT_POSITION_W_SCALE_X_COEFF_NV = 0x937D + /// + ViewportPositionWScaleXCoeffNv = ((int)0x937D), + /// + /// Original was GL_VIEWPORT_POSITION_W_SCALE_Y_COEFF_NV = 0x937E + /// + ViewportPositionWScaleYCoeffNv = ((int)0x937E), + /// + /// Original was GL_NUM_SAMPLE_COUNTS = 0x9380 + /// + NumSampleCounts = ((int)0x9380), + /// /// Original was GL_TRANSLATED_SHADER_SOURCE_LENGTH_ANGLE = 0x93A0 /// TranslatedShaderSourceLengthAngle = ((int)0x93A0), @@ -10064,6 +11872,14 @@ namespace OpenTK.Graphics.ES20 /// PerfqueryGpaExtendedCountersIntel = ((int)0x9500), /// + /// Original was GL_LAYOUT_DEPTH_READ_ONLY_STENCIL_ATTACHMENT_EXT = 0x9530 + /// + LayoutDepthReadOnlyStencilAttachmentExt = ((int)0x9530), + /// + /// Original was GL_LAYOUT_DEPTH_ATTACHMENT_STENCIL_READ_ONLY_EXT = 0x9531 + /// + LayoutDepthAttachmentStencilReadOnlyExt = ((int)0x9531), + /// /// Original was GL_CONSERVATIVE_RASTER_MODE_NV = 0x954D /// ConservativeRasterModeNv = ((int)0x954D), @@ -10076,6 +11892,10 @@ namespace OpenTK.Graphics.ES20 /// ConservativeRasterModePreSnapTrianglesNv = ((int)0x954F), /// + /// Original was GL_CONSERVATIVE_RASTER_MODE_PRE_SNAP_NV = 0x9550 + /// + ConservativeRasterModePreSnapNv = ((int)0x9550), + /// /// Original was GL_TEXTURE_TILING_EXT = 0x9580 /// TextureTilingExt = ((int)0x9580), @@ -10927,6 +12747,53 @@ namespace OpenTK.Graphics.ES20 { } + /// + /// Not used directly. + /// + public enum AtomicCounterBufferPName : int + { + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_COMPUTE_SHADER = 0x90ED + /// + AtomicCounterBufferReferencedByComputeShader = ((int)0x90ED), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_BINDING = 0x92C1 + /// + AtomicCounterBufferBinding = ((int)0x92C1), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_DATA_SIZE = 0x92C4 + /// + AtomicCounterBufferDataSize = ((int)0x92C4), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTERS = 0x92C5 + /// + AtomicCounterBufferActiveAtomicCounters = ((int)0x92C5), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTER_INDICES = 0x92C6 + /// + AtomicCounterBufferActiveAtomicCounterIndices = ((int)0x92C6), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_VERTEX_SHADER = 0x92C7 + /// + AtomicCounterBufferReferencedByVertexShader = ((int)0x92C7), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_CONTROL_SHADER = 0x92C8 + /// + AtomicCounterBufferReferencedByTessControlShader = ((int)0x92C8), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_EVALUATION_SHADER = 0x92C9 + /// + AtomicCounterBufferReferencedByTessEvaluationShader = ((int)0x92C9), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_GEOMETRY_SHADER = 0x92CA + /// + AtomicCounterBufferReferencedByGeometryShader = ((int)0x92CA), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_FRAGMENT_SHADER = 0x92CB + /// + AtomicCounterBufferReferencedByFragmentShader = ((int)0x92CB), + } + /// /// Not used directly. /// @@ -11035,6 +12902,237 @@ namespace OpenTK.Graphics.ES20 AllAttribBits = unchecked((int)0xFFFFFFFF), } + /// + /// Not used directly. + /// + public enum AttributeType : int + { + /// + /// Original was GL_FLOAT_VEC2 = 0x8B50 + /// + FloatVec2 = ((int)0x8B50), + /// + /// Original was GL_FLOAT_VEC2_ARB = 0x8B50 + /// + FloatVec2Arb = ((int)0x8B50), + /// + /// Original was GL_FLOAT_VEC3 = 0x8B51 + /// + FloatVec3 = ((int)0x8B51), + /// + /// Original was GL_FLOAT_VEC3_ARB = 0x8B51 + /// + FloatVec3Arb = ((int)0x8B51), + /// + /// Original was GL_FLOAT_VEC4 = 0x8B52 + /// + FloatVec4 = ((int)0x8B52), + /// + /// Original was GL_FLOAT_VEC4_ARB = 0x8B52 + /// + FloatVec4Arb = ((int)0x8B52), + /// + /// Original was GL_INT_VEC2 = 0x8B53 + /// + IntVec2 = ((int)0x8B53), + /// + /// Original was GL_INT_VEC2_ARB = 0x8B53 + /// + IntVec2Arb = ((int)0x8B53), + /// + /// Original was GL_INT_VEC3 = 0x8B54 + /// + IntVec3 = ((int)0x8B54), + /// + /// Original was GL_INT_VEC3_ARB = 0x8B54 + /// + IntVec3Arb = ((int)0x8B54), + /// + /// Original was GL_INT_VEC4 = 0x8B55 + /// + IntVec4 = ((int)0x8B55), + /// + /// Original was GL_INT_VEC4_ARB = 0x8B55 + /// + IntVec4Arb = ((int)0x8B55), + /// + /// Original was GL_BOOL = 0x8B56 + /// + Bool = ((int)0x8B56), + /// + /// Original was GL_BOOL_ARB = 0x8B56 + /// + BoolArb = ((int)0x8B56), + /// + /// Original was GL_BOOL_VEC2 = 0x8B57 + /// + BoolVec2 = ((int)0x8B57), + /// + /// Original was GL_BOOL_VEC2_ARB = 0x8B57 + /// + BoolVec2Arb = ((int)0x8B57), + /// + /// Original was GL_BOOL_VEC3 = 0x8B58 + /// + BoolVec3 = ((int)0x8B58), + /// + /// Original was GL_BOOL_VEC3_ARB = 0x8B58 + /// + BoolVec3Arb = ((int)0x8B58), + /// + /// Original was GL_BOOL_VEC4 = 0x8B59 + /// + BoolVec4 = ((int)0x8B59), + /// + /// Original was GL_BOOL_VEC4_ARB = 0x8B59 + /// + BoolVec4Arb = ((int)0x8B59), + /// + /// Original was GL_FLOAT_MAT2 = 0x8B5A + /// + FloatMat2 = ((int)0x8B5A), + /// + /// Original was GL_FLOAT_MAT2_ARB = 0x8B5A + /// + FloatMat2Arb = ((int)0x8B5A), + /// + /// Original was GL_FLOAT_MAT3 = 0x8B5B + /// + FloatMat3 = ((int)0x8B5B), + /// + /// Original was GL_FLOAT_MAT3_ARB = 0x8B5B + /// + FloatMat3Arb = ((int)0x8B5B), + /// + /// Original was GL_FLOAT_MAT4 = 0x8B5C + /// + FloatMat4 = ((int)0x8B5C), + /// + /// Original was GL_FLOAT_MAT4_ARB = 0x8B5C + /// + FloatMat4Arb = ((int)0x8B5C), + /// + /// Original was GL_SAMPLER_1D = 0x8B5D + /// + Sampler1D = ((int)0x8B5D), + /// + /// Original was GL_SAMPLER_1D_ARB = 0x8B5D + /// + Sampler1DArb = ((int)0x8B5D), + /// + /// Original was GL_SAMPLER_2D = 0x8B5E + /// + Sampler2D = ((int)0x8B5E), + /// + /// Original was GL_SAMPLER_2D_ARB = 0x8B5E + /// + Sampler2DArb = ((int)0x8B5E), + /// + /// Original was GL_SAMPLER_3D = 0x8B5F + /// + Sampler3D = ((int)0x8B5F), + /// + /// Original was GL_SAMPLER_3D_ARB = 0x8B5F + /// + Sampler3DArb = ((int)0x8B5F), + /// + /// Original was GL_SAMPLER_3D_OES = 0x8B5F + /// + Sampler3DOes = ((int)0x8B5F), + /// + /// Original was GL_SAMPLER_CUBE = 0x8B60 + /// + SamplerCube = ((int)0x8B60), + /// + /// Original was GL_SAMPLER_CUBE_ARB = 0x8B60 + /// + SamplerCubeArb = ((int)0x8B60), + /// + /// Original was GL_SAMPLER_1D_SHADOW = 0x8B61 + /// + Sampler1DShadow = ((int)0x8B61), + /// + /// Original was GL_SAMPLER_1D_SHADOW_ARB = 0x8B61 + /// + Sampler1DShadowArb = ((int)0x8B61), + /// + /// Original was GL_SAMPLER_2D_SHADOW = 0x8B62 + /// + Sampler2DShadow = ((int)0x8B62), + /// + /// Original was GL_SAMPLER_2D_SHADOW_ARB = 0x8B62 + /// + Sampler2DShadowArb = ((int)0x8B62), + /// + /// Original was GL_SAMPLER_2D_SHADOW_EXT = 0x8B62 + /// + Sampler2DShadowExt = ((int)0x8B62), + /// + /// Original was GL_SAMPLER_2D_RECT = 0x8B63 + /// + Sampler2DRect = ((int)0x8B63), + /// + /// Original was GL_SAMPLER_2D_RECT_ARB = 0x8B63 + /// + Sampler2DRectArb = ((int)0x8B63), + /// + /// Original was GL_SAMPLER_2D_RECT_SHADOW = 0x8B64 + /// + Sampler2DRectShadow = ((int)0x8B64), + /// + /// Original was GL_SAMPLER_2D_RECT_SHADOW_ARB = 0x8B64 + /// + Sampler2DRectShadowArb = ((int)0x8B64), + /// + /// Original was GL_FLOAT_MAT2x3 = 0x8B65 + /// + FloatMat2x3 = ((int)0x8B65), + /// + /// Original was GL_FLOAT_MAT2x3_NV = 0x8B65 + /// + FloatMat2x3Nv = ((int)0x8B65), + /// + /// Original was GL_FLOAT_MAT2x4 = 0x8B66 + /// + FloatMat2x4 = ((int)0x8B66), + /// + /// Original was GL_FLOAT_MAT2x4_NV = 0x8B66 + /// + FloatMat2x4Nv = ((int)0x8B66), + /// + /// Original was GL_FLOAT_MAT3x2 = 0x8B67 + /// + FloatMat3x2 = ((int)0x8B67), + /// + /// Original was GL_FLOAT_MAT3x2_NV = 0x8B67 + /// + FloatMat3x2Nv = ((int)0x8B67), + /// + /// Original was GL_FLOAT_MAT3x4 = 0x8B68 + /// + FloatMat3x4 = ((int)0x8B68), + /// + /// Original was GL_FLOAT_MAT3x4_NV = 0x8B68 + /// + FloatMat3x4Nv = ((int)0x8B68), + /// + /// Original was GL_FLOAT_MAT4x2 = 0x8B69 + /// + FloatMat4x2 = ((int)0x8B69), + /// + /// Original was GL_FLOAT_MAT4x2_NV = 0x8B69 + /// + FloatMat4x2Nv = ((int)0x8B69), + /// + /// Original was GL_FLOAT_MAT4x3 = 0x8B6A + /// + FloatMat4x3 = ((int)0x8B6A), + /// + /// Original was GL_FLOAT_MAT4x3_NV = 0x8B6A + /// + FloatMat4x3Nv = ((int)0x8B6A), + } + /// /// Used in GL.DrawArrays, GL.DrawElements /// @@ -11070,6 +13168,17 @@ namespace OpenTK.Graphics.ES20 TriangleFan = ((int)0X0006), } + /// + /// Not used directly. + /// + public enum BindTransformFeedbackTarget : int + { + /// + /// Original was GL_TRANSFORM_FEEDBACK = 0x8E22 + /// + TransformFeedback = ((int)0x8E22), + } + /// /// Used in GL.BlendEquation, GL.BlendEquationSeparate and 4 other functions /// @@ -11099,6 +13208,10 @@ namespace OpenTK.Graphics.ES20 /// LogicOp = ((int)0x0BF1), /// + /// Original was GL_FUNC_ADD = 0x8006 + /// + FuncAdd = ((int)0x8006), + /// /// Original was GL_FUNC_ADD_EXT = 0x8006 /// FuncAddExt = ((int)0x8006), @@ -11111,10 +13224,18 @@ namespace OpenTK.Graphics.ES20 /// MaxExt = ((int)0x8008), /// + /// Original was GL_FUNC_SUBTRACT = 0x800A + /// + FuncSubtract = ((int)0x800A), + /// /// Original was GL_FUNC_SUBTRACT_EXT = 0x800A /// FuncSubtractExt = ((int)0x800A), /// + /// Original was GL_FUNC_REVERSE_SUBTRACT = 0x800B + /// + FuncReverseSubtract = ((int)0x800B), + /// /// Original was GL_FUNC_REVERSE_SUBTRACT_EXT = 0x800B /// FuncReverseSubtractExt = ((int)0x800B), @@ -11129,12 +13250,12 @@ namespace OpenTK.Graphics.ES20 } /// - /// Used in GL.BlendFunc, GL.BlendFuncSeparate + /// Used in GL.Ext.BlendFunc, GL.Ext.BlendFuncSeparate and 2 other functions /// - public enum BlendingFactorDest : int + public enum BlendingFactor : int { /// - /// Original was GL_Zero = 0 + /// Original was GL_ZERO = 0 /// Zero = ((int)0), /// @@ -11162,89 +13283,6 @@ namespace OpenTK.Graphics.ES20 /// OneMinusDstAlpha = ((int)0x0305), /// - /// Original was GL_DstColor = 0X0306 - /// - DstColor = ((int)0X0306), - /// - /// Original was GL_OneMinusDstColor = 0X0307 - /// - OneMinusDstColor = ((int)0X0307), - /// - /// Original was GL_SrcAlphaSaturate = 0X0308 - /// - SrcAlphaSaturate = ((int)0X0308), - /// - /// Original was GL_CONSTANT_COLOR_EXT = 0x8001 - /// - ConstantColorExt = ((int)0x8001), - /// - /// Original was GL_ConstantColor = 0X8001 - /// - ConstantColor = ((int)0X8001), - /// - /// Original was GL_ONE_MINUS_CONSTANT_COLOR_EXT = 0x8002 - /// - OneMinusConstantColorExt = ((int)0x8002), - /// - /// Original was GL_OneMinusConstantColor = 0X8002 - /// - OneMinusConstantColor = ((int)0X8002), - /// - /// Original was GL_CONSTANT_ALPHA_EXT = 0x8003 - /// - ConstantAlphaExt = ((int)0x8003), - /// - /// Original was GL_ConstantAlpha = 0X8003 - /// - ConstantAlpha = ((int)0X8003), - /// - /// Original was GL_ONE_MINUS_CONSTANT_ALPHA_EXT = 0x8004 - /// - OneMinusConstantAlphaExt = ((int)0x8004), - /// - /// Original was GL_OneMinusConstantAlpha = 0X8004 - /// - OneMinusConstantAlpha = ((int)0X8004), - /// - /// Original was GL_One = 1 - /// - One = ((int)1), - } - - /// - /// Used in GL.BlendFunc, GL.BlendFuncSeparate - /// - public enum BlendingFactorSrc : int - { - /// - /// Original was GL_Zero = 0 - /// - Zero = ((int)0), - /// - /// Original was GL_SrcColor = 0X0300 - /// - SrcColor = ((int)0X0300), - /// - /// Original was GL_OneMinusSrcColor = 0X0301 - /// - OneMinusSrcColor = ((int)0X0301), - /// - /// Original was GL_SRC_ALPHA = 0x0302 - /// - SrcAlpha = ((int)0x0302), - /// - /// Original was GL_ONE_MINUS_SRC_ALPHA = 0x0303 - /// - OneMinusSrcAlpha = ((int)0x0303), - /// - /// Original was GL_DST_ALPHA = 0x0304 - /// - DstAlpha = ((int)0x0304), - /// - /// Original was GL_ONE_MINUS_DST_ALPHA = 0x0305 - /// - OneMinusDstAlpha = ((int)0x0305), - /// /// Original was GL_DST_COLOR = 0x0306 /// DstColor = ((int)0x0306), @@ -11257,33 +13295,159 @@ namespace OpenTK.Graphics.ES20 /// SrcAlphaSaturate = ((int)0x0308), /// - /// Original was GL_CONSTANT_COLOR_EXT = 0x8001 + /// Original was GL_CONSTANT_COLOR = 0x8001 /// - ConstantColorExt = ((int)0x8001), + ConstantColor = ((int)0x8001), + /// + /// Original was GL_ONE_MINUS_CONSTANT_COLOR = 0x8002 + /// + OneMinusConstantColor = ((int)0x8002), + /// + /// Original was GL_CONSTANT_ALPHA = 0x8003 + /// + ConstantAlpha = ((int)0x8003), + /// + /// Original was GL_ONE_MINUS_CONSTANT_ALPHA = 0x8004 + /// + OneMinusConstantAlpha = ((int)0x8004), + /// + /// Original was GL_SRC1_ALPHA = 0x8589 + /// + Src1Alpha = ((int)0x8589), + /// + /// Original was GL_SRC1_COLOR = 0x88F9 + /// + Src1Color = ((int)0x88F9), + /// + /// Original was GL_ONE = 1 + /// + One = ((int)1), + } + + /// + /// Used in GL.BlendFunc, GL.BlendFuncSeparate + /// + public enum BlendingFactorDest : int + { + /// + /// Original was GL_Zero = 0 + /// + Zero = ((int)0), + /// + /// Original was GL_SrcColor = 0X0300 + /// + SrcColor = ((int)0X0300), + /// + /// Original was GL_OneMinusSrcColor = 0X0301 + /// + OneMinusSrcColor = ((int)0X0301), + /// + /// Original was GL_SrcAlpha = 0X0302 + /// + SrcAlpha = ((int)0X0302), + /// + /// Original was GL_OneMinusSrcAlpha = 0X0303 + /// + OneMinusSrcAlpha = ((int)0X0303), + /// + /// Original was GL_DstAlpha = 0X0304 + /// + DstAlpha = ((int)0X0304), + /// + /// Original was GL_OneMinusDstAlpha = 0X0305 + /// + OneMinusDstAlpha = ((int)0X0305), + /// + /// Original was GL_DstColor = 0X0306 + /// + DstColor = ((int)0X0306), + /// + /// Original was GL_OneMinusDstColor = 0X0307 + /// + OneMinusDstColor = ((int)0X0307), + /// + /// Original was GL_SrcAlphaSaturate = 0X0308 + /// + SrcAlphaSaturate = ((int)0X0308), /// /// Original was GL_ConstantColor = 0X8001 /// ConstantColor = ((int)0X8001), /// - /// Original was GL_ONE_MINUS_CONSTANT_COLOR_EXT = 0x8002 - /// - OneMinusConstantColorExt = ((int)0x8002), - /// /// Original was GL_OneMinusConstantColor = 0X8002 /// OneMinusConstantColor = ((int)0X8002), /// - /// Original was GL_CONSTANT_ALPHA_EXT = 0x8003 - /// - ConstantAlphaExt = ((int)0x8003), - /// /// Original was GL_ConstantAlpha = 0X8003 /// ConstantAlpha = ((int)0X8003), /// - /// Original was GL_ONE_MINUS_CONSTANT_ALPHA_EXT = 0x8004 + /// Original was GL_OneMinusConstantAlpha = 0X8004 /// - OneMinusConstantAlphaExt = ((int)0x8004), + OneMinusConstantAlpha = ((int)0X8004), + /// + /// Original was GL_One = 1 + /// + One = ((int)1), + } + + /// + /// Used in GL.BlendFunc, GL.BlendFuncSeparate + /// + public enum BlendingFactorSrc : int + { + /// + /// Original was GL_Zero = 0 + /// + Zero = ((int)0), + /// + /// Original was GL_SrcColor = 0X0300 + /// + SrcColor = ((int)0X0300), + /// + /// Original was GL_OneMinusSrcColor = 0X0301 + /// + OneMinusSrcColor = ((int)0X0301), + /// + /// Original was GL_SrcAlpha = 0X0302 + /// + SrcAlpha = ((int)0X0302), + /// + /// Original was GL_OneMinusSrcAlpha = 0X0303 + /// + OneMinusSrcAlpha = ((int)0X0303), + /// + /// Original was GL_DstAlpha = 0X0304 + /// + DstAlpha = ((int)0X0304), + /// + /// Original was GL_OneMinusDstAlpha = 0X0305 + /// + OneMinusDstAlpha = ((int)0X0305), + /// + /// Original was GL_DstColor = 0X0306 + /// + DstColor = ((int)0X0306), + /// + /// Original was GL_OneMinusDstColor = 0X0307 + /// + OneMinusDstColor = ((int)0X0307), + /// + /// Original was GL_SrcAlphaSaturate = 0X0308 + /// + SrcAlphaSaturate = ((int)0X0308), + /// + /// Original was GL_ConstantColor = 0X8001 + /// + ConstantColor = ((int)0X8001), + /// + /// Original was GL_OneMinusConstantColor = 0X8002 + /// + OneMinusConstantColor = ((int)0X8002), + /// + /// Original was GL_ConstantAlpha = 0X8003 + /// + ConstantAlpha = ((int)0X8003), /// /// Original was GL_OneMinusConstantAlpha = 0X8004 /// @@ -11300,13 +13464,13 @@ namespace OpenTK.Graphics.ES20 public enum BlitFramebufferFilter : int { /// - /// Original was GL_NEAREST = 0X2600 + /// Original was GL_NEAREST = 0x2600 /// - Nearest = ((int)0X2600), + Nearest = ((int)0x2600), /// - /// Original was GL_LINEAR = 0X2601 + /// Original was GL_LINEAR = 0x2601 /// - Linear = ((int)0X2601), + Linear = ((int)0x2601), } /// @@ -11327,6 +13491,25 @@ namespace OpenTK.Graphics.ES20 /// /// Not used directly. /// + public enum Buffer : int + { + /// + /// Original was GL_COLOR = 0x1800 + /// + Color = ((int)0x1800), + /// + /// Original was GL_DEPTH = 0x1801 + /// + Depth = ((int)0x1801), + /// + /// Original was GL_STENCIL = 0x1802 + /// + Stencil = ((int)0x1802), + } + + /// + /// Used in GL.Oes.MapBuffer + /// public enum BufferAccessArb : int { /// @@ -11343,6 +13526,213 @@ namespace OpenTK.Graphics.ES20 ReadWrite = ((int)0x88BA), } + /// + /// Used in GL.Ext.MapBufferRange + /// + [Flags] + public enum BufferAccessMask : int + { + /// + /// Original was GL_MAP_READ_BIT = 0x0001 + /// + MapReadBit = ((int)0x0001), + /// + /// Original was GL_MAP_READ_BIT_EXT = 0x0001 + /// + MapReadBitExt = ((int)0x0001), + /// + /// Original was GL_MAP_WRITE_BIT = 0x0002 + /// + MapWriteBit = ((int)0x0002), + /// + /// Original was GL_MAP_WRITE_BIT_EXT = 0x0002 + /// + MapWriteBitExt = ((int)0x0002), + /// + /// Original was GL_MAP_INVALIDATE_RANGE_BIT = 0x0004 + /// + MapInvalidateRangeBit = ((int)0x0004), + /// + /// Original was GL_MAP_INVALIDATE_RANGE_BIT_EXT = 0x0004 + /// + MapInvalidateRangeBitExt = ((int)0x0004), + /// + /// Original was GL_MAP_INVALIDATE_BUFFER_BIT = 0x0008 + /// + MapInvalidateBufferBit = ((int)0x0008), + /// + /// Original was GL_MAP_INVALIDATE_BUFFER_BIT_EXT = 0x0008 + /// + MapInvalidateBufferBitExt = ((int)0x0008), + /// + /// Original was GL_MAP_FLUSH_EXPLICIT_BIT = 0x0010 + /// + MapFlushExplicitBit = ((int)0x0010), + /// + /// Original was GL_MAP_FLUSH_EXPLICIT_BIT_EXT = 0x0010 + /// + MapFlushExplicitBitExt = ((int)0x0010), + /// + /// Original was GL_MAP_UNSYNCHRONIZED_BIT = 0x0020 + /// + MapUnsynchronizedBit = ((int)0x0020), + /// + /// Original was GL_MAP_UNSYNCHRONIZED_BIT_EXT = 0x0020 + /// + MapUnsynchronizedBitExt = ((int)0x0020), + /// + /// Original was GL_MAP_PERSISTENT_BIT = 0x0040 + /// + MapPersistentBit = ((int)0x0040), + /// + /// Original was GL_MAP_PERSISTENT_BIT_EXT = 0x0040 + /// + MapPersistentBitExt = ((int)0x0040), + /// + /// Original was GL_MAP_COHERENT_BIT = 0x0080 + /// + MapCoherentBit = ((int)0x0080), + /// + /// Original was GL_MAP_COHERENT_BIT_EXT = 0x0080 + /// + MapCoherentBitExt = ((int)0x0080), + } + + /// + /// Used in GL.Qcom.EndTiling, GL.Qcom.StartTiling + /// + public enum BufferBitQcom : int + { + /// + /// Original was GL_COLOR_BUFFER_BIT0_QCOM = 0x00000001 + /// + ColorBufferBit0Qcom = ((int)0x00000001), + /// + /// Original was GL_COLOR_BUFFER_BIT1_QCOM = 0x00000002 + /// + ColorBufferBit1Qcom = ((int)0x00000002), + /// + /// Original was GL_COLOR_BUFFER_BIT2_QCOM = 0x00000004 + /// + ColorBufferBit2Qcom = ((int)0x00000004), + /// + /// Original was GL_COLOR_BUFFER_BIT3_QCOM = 0x00000008 + /// + ColorBufferBit3Qcom = ((int)0x00000008), + /// + /// Original was GL_COLOR_BUFFER_BIT4_QCOM = 0x00000010 + /// + ColorBufferBit4Qcom = ((int)0x00000010), + /// + /// Original was GL_COLOR_BUFFER_BIT5_QCOM = 0x00000020 + /// + ColorBufferBit5Qcom = ((int)0x00000020), + /// + /// Original was GL_COLOR_BUFFER_BIT6_QCOM = 0x00000040 + /// + ColorBufferBit6Qcom = ((int)0x00000040), + /// + /// Original was GL_COLOR_BUFFER_BIT7_QCOM = 0x00000080 + /// + ColorBufferBit7Qcom = ((int)0x00000080), + /// + /// Original was GL_DEPTH_BUFFER_BIT0_QCOM = 0x00000100 + /// + DepthBufferBit0Qcom = ((int)0x00000100), + /// + /// Original was GL_DEPTH_BUFFER_BIT1_QCOM = 0x00000200 + /// + DepthBufferBit1Qcom = ((int)0x00000200), + /// + /// Original was GL_DEPTH_BUFFER_BIT2_QCOM = 0x00000400 + /// + DepthBufferBit2Qcom = ((int)0x00000400), + /// + /// Original was GL_DEPTH_BUFFER_BIT3_QCOM = 0x00000800 + /// + DepthBufferBit3Qcom = ((int)0x00000800), + /// + /// Original was GL_DEPTH_BUFFER_BIT4_QCOM = 0x00001000 + /// + DepthBufferBit4Qcom = ((int)0x00001000), + /// + /// Original was GL_DEPTH_BUFFER_BIT5_QCOM = 0x00002000 + /// + DepthBufferBit5Qcom = ((int)0x00002000), + /// + /// Original was GL_DEPTH_BUFFER_BIT6_QCOM = 0x00004000 + /// + DepthBufferBit6Qcom = ((int)0x00004000), + /// + /// Original was GL_DEPTH_BUFFER_BIT7_QCOM = 0x00008000 + /// + DepthBufferBit7Qcom = ((int)0x00008000), + /// + /// Original was GL_STENCIL_BUFFER_BIT0_QCOM = 0x00010000 + /// + StencilBufferBit0Qcom = ((int)0x00010000), + /// + /// Original was GL_STENCIL_BUFFER_BIT1_QCOM = 0x00020000 + /// + StencilBufferBit1Qcom = ((int)0x00020000), + /// + /// Original was GL_STENCIL_BUFFER_BIT2_QCOM = 0x00040000 + /// + StencilBufferBit2Qcom = ((int)0x00040000), + /// + /// Original was GL_STENCIL_BUFFER_BIT3_QCOM = 0x00080000 + /// + StencilBufferBit3Qcom = ((int)0x00080000), + /// + /// Original was GL_STENCIL_BUFFER_BIT4_QCOM = 0x00100000 + /// + StencilBufferBit4Qcom = ((int)0x00100000), + /// + /// Original was GL_STENCIL_BUFFER_BIT5_QCOM = 0x00200000 + /// + StencilBufferBit5Qcom = ((int)0x00200000), + /// + /// Original was GL_STENCIL_BUFFER_BIT6_QCOM = 0x00400000 + /// + StencilBufferBit6Qcom = ((int)0x00400000), + /// + /// Original was GL_STENCIL_BUFFER_BIT7_QCOM = 0x00800000 + /// + StencilBufferBit7Qcom = ((int)0x00800000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT0_QCOM = 0x01000000 + /// + MultisampleBufferBit0Qcom = ((int)0x01000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT1_QCOM = 0x02000000 + /// + MultisampleBufferBit1Qcom = ((int)0x02000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT2_QCOM = 0x04000000 + /// + MultisampleBufferBit2Qcom = ((int)0x04000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT3_QCOM = 0x08000000 + /// + MultisampleBufferBit3Qcom = ((int)0x08000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT4_QCOM = 0x10000000 + /// + MultisampleBufferBit4Qcom = ((int)0x10000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT5_QCOM = 0x20000000 + /// + MultisampleBufferBit5Qcom = ((int)0x20000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT6_QCOM = 0x40000000 + /// + MultisampleBufferBit6Qcom = ((int)0x40000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT7_QCOM = 0x80000000 + /// + MultisampleBufferBit7Qcom = unchecked((int)0x80000000), + } + /// /// Used in GL.GetBufferParameter /// @@ -11369,6 +13759,69 @@ namespace OpenTK.Graphics.ES20 BufferMapPointerOes = ((int)0x88BD), } + /// + /// Used in GL.Ext.BufferStorage + /// + public enum BufferStorageTarget : int + { + /// + /// Original was GL_ARRAY_BUFFER = 0x8892 + /// + ArrayBuffer = ((int)0x8892), + /// + /// Original was GL_ELEMENT_ARRAY_BUFFER = 0x8893 + /// + ElementArrayBuffer = ((int)0x8893), + /// + /// Original was GL_PIXEL_PACK_BUFFER = 0x88EB + /// + PixelPackBuffer = ((int)0x88EB), + /// + /// Original was GL_PIXEL_UNPACK_BUFFER = 0x88EC + /// + PixelUnpackBuffer = ((int)0x88EC), + /// + /// Original was GL_UNIFORM_BUFFER = 0x8A11 + /// + UniformBuffer = ((int)0x8A11), + /// + /// Original was GL_TEXTURE_BUFFER = 0x8C2A + /// + TextureBuffer = ((int)0x8C2A), + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER = 0x8C8E + /// + TransformFeedbackBuffer = ((int)0x8C8E), + /// + /// Original was GL_COPY_READ_BUFFER = 0x8F36 + /// + CopyReadBuffer = ((int)0x8F36), + /// + /// Original was GL_COPY_WRITE_BUFFER = 0x8F37 + /// + CopyWriteBuffer = ((int)0x8F37), + /// + /// Original was GL_DRAW_INDIRECT_BUFFER = 0x8F3F + /// + DrawIndirectBuffer = ((int)0x8F3F), + /// + /// Original was GL_SHADER_STORAGE_BUFFER = 0x90D2 + /// + ShaderStorageBuffer = ((int)0x90D2), + /// + /// Original was GL_DISPATCH_INDIRECT_BUFFER = 0x90EE + /// + DispatchIndirectBuffer = ((int)0x90EE), + /// + /// Original was GL_QUERY_BUFFER = 0x9192 + /// + QueryBuffer = ((int)0x9192), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER = 0x92C0 + /// + AtomicCounterBuffer = ((int)0x92C0), + } + /// /// Used in GL.BindBuffer, GL.BufferData and 7 other functions /// @@ -11385,7 +13838,7 @@ namespace OpenTK.Graphics.ES20 } /// - /// Used in GL.Ext.BufferStorageMem + /// Used in GL.Ext.BufferStorageMem, GL.Oes.MapBuffer /// public enum BufferTargetArb : int { @@ -11528,6 +13981,25 @@ namespace OpenTK.Graphics.ES20 DynamicDraw = ((int)0X88e8), } + /// + /// Not used directly. + /// + public enum CheckFramebufferStatusTarget : int + { + /// + /// Original was GL_READ_FRAMEBUFFER = 0x8CA8 + /// + ReadFramebuffer = ((int)0x8CA8), + /// + /// Original was GL_DRAW_FRAMEBUFFER = 0x8CA9 + /// + DrawFramebuffer = ((int)0x8CA9), + /// + /// Original was GL_FRAMEBUFFER = 0x8D40 + /// + Framebuffer = ((int)0x8D40), + } + /// /// Used in GL.Angle.BlitFramebuffer, GL.Clear and 1 other function /// @@ -11591,6 +14063,36 @@ namespace OpenTK.Graphics.ES20 SyncFlushCommandsBitApple = ((int)0x00000001), } + /// + /// Not used directly. + /// + public enum ClipControlDepth : int + { + /// + /// Original was GL_NEGATIVE_ONE_TO_ONE = 0x935E + /// + NegativeOneToOne = ((int)0x935E), + /// + /// Original was GL_ZERO_TO_ONE = 0x935F + /// + ZeroToOne = ((int)0x935F), + } + + /// + /// Not used directly. + /// + public enum ClipControlOrigin : int + { + /// + /// Original was GL_LOWER_LEFT = 0x8CA1 + /// + LowerLeft = ((int)0x8CA1), + /// + /// Original was GL_UPPER_LEFT = 0x8CA2 + /// + UpperLeft = ((int)0x8CA2), + } + /// /// Not used directly. /// @@ -11654,6 +14156,181 @@ namespace OpenTK.Graphics.ES20 ClipDistance7 = ((int)0x3007), } + /// + /// Not used directly. + /// + public enum ColorBuffer : int + { + /// + /// Original was GL_NONE = 0 + /// + None = ((int)0), + /// + /// Original was GL_FRONT_LEFT = 0x0400 + /// + FrontLeft = ((int)0x0400), + /// + /// Original was GL_FRONT_RIGHT = 0x0401 + /// + FrontRight = ((int)0x0401), + /// + /// Original was GL_BACK_LEFT = 0x0402 + /// + BackLeft = ((int)0x0402), + /// + /// Original was GL_BACK_RIGHT = 0x0403 + /// + BackRight = ((int)0x0403), + /// + /// Original was GL_FRONT = 0x0404 + /// + Front = ((int)0x0404), + /// + /// Original was GL_BACK = 0x0405 + /// + Back = ((int)0x0405), + /// + /// Original was GL_LEFT = 0x0406 + /// + Left = ((int)0x0406), + /// + /// Original was GL_RIGHT = 0x0407 + /// + Right = ((int)0x0407), + /// + /// Original was GL_FRONT_AND_BACK = 0x0408 + /// + FrontAndBack = ((int)0x0408), + /// + /// Original was GL_COLOR_ATTACHMENT0 = 0x8CE0 + /// + ColorAttachment0 = ((int)0x8CE0), + /// + /// Original was GL_COLOR_ATTACHMENT1 = 0x8CE1 + /// + ColorAttachment1 = ((int)0x8CE1), + /// + /// Original was GL_COLOR_ATTACHMENT2 = 0x8CE2 + /// + ColorAttachment2 = ((int)0x8CE2), + /// + /// Original was GL_COLOR_ATTACHMENT3 = 0x8CE3 + /// + ColorAttachment3 = ((int)0x8CE3), + /// + /// Original was GL_COLOR_ATTACHMENT4 = 0x8CE4 + /// + ColorAttachment4 = ((int)0x8CE4), + /// + /// Original was GL_COLOR_ATTACHMENT5 = 0x8CE5 + /// + ColorAttachment5 = ((int)0x8CE5), + /// + /// Original was GL_COLOR_ATTACHMENT6 = 0x8CE6 + /// + ColorAttachment6 = ((int)0x8CE6), + /// + /// Original was GL_COLOR_ATTACHMENT7 = 0x8CE7 + /// + ColorAttachment7 = ((int)0x8CE7), + /// + /// Original was GL_COLOR_ATTACHMENT8 = 0x8CE8 + /// + ColorAttachment8 = ((int)0x8CE8), + /// + /// Original was GL_COLOR_ATTACHMENT9 = 0x8CE9 + /// + ColorAttachment9 = ((int)0x8CE9), + /// + /// Original was GL_COLOR_ATTACHMENT10 = 0x8CEA + /// + ColorAttachment10 = ((int)0x8CEA), + /// + /// Original was GL_COLOR_ATTACHMENT11 = 0x8CEB + /// + ColorAttachment11 = ((int)0x8CEB), + /// + /// Original was GL_COLOR_ATTACHMENT12 = 0x8CEC + /// + ColorAttachment12 = ((int)0x8CEC), + /// + /// Original was GL_COLOR_ATTACHMENT13 = 0x8CED + /// + ColorAttachment13 = ((int)0x8CED), + /// + /// Original was GL_COLOR_ATTACHMENT14 = 0x8CEE + /// + ColorAttachment14 = ((int)0x8CEE), + /// + /// Original was GL_COLOR_ATTACHMENT15 = 0x8CEF + /// + ColorAttachment15 = ((int)0x8CEF), + /// + /// Original was GL_COLOR_ATTACHMENT16 = 0x8CF0 + /// + ColorAttachment16 = ((int)0x8CF0), + /// + /// Original was GL_COLOR_ATTACHMENT17 = 0x8CF1 + /// + ColorAttachment17 = ((int)0x8CF1), + /// + /// Original was GL_COLOR_ATTACHMENT18 = 0x8CF2 + /// + ColorAttachment18 = ((int)0x8CF2), + /// + /// Original was GL_COLOR_ATTACHMENT19 = 0x8CF3 + /// + ColorAttachment19 = ((int)0x8CF3), + /// + /// Original was GL_COLOR_ATTACHMENT20 = 0x8CF4 + /// + ColorAttachment20 = ((int)0x8CF4), + /// + /// Original was GL_COLOR_ATTACHMENT21 = 0x8CF5 + /// + ColorAttachment21 = ((int)0x8CF5), + /// + /// Original was GL_COLOR_ATTACHMENT22 = 0x8CF6 + /// + ColorAttachment22 = ((int)0x8CF6), + /// + /// Original was GL_COLOR_ATTACHMENT23 = 0x8CF7 + /// + ColorAttachment23 = ((int)0x8CF7), + /// + /// Original was GL_COLOR_ATTACHMENT24 = 0x8CF8 + /// + ColorAttachment24 = ((int)0x8CF8), + /// + /// Original was GL_COLOR_ATTACHMENT25 = 0x8CF9 + /// + ColorAttachment25 = ((int)0x8CF9), + /// + /// Original was GL_COLOR_ATTACHMENT26 = 0x8CFA + /// + ColorAttachment26 = ((int)0x8CFA), + /// + /// Original was GL_COLOR_ATTACHMENT27 = 0x8CFB + /// + ColorAttachment27 = ((int)0x8CFB), + /// + /// Original was GL_COLOR_ATTACHMENT28 = 0x8CFC + /// + ColorAttachment28 = ((int)0x8CFC), + /// + /// Original was GL_COLOR_ATTACHMENT29 = 0x8CFD + /// + ColorAttachment29 = ((int)0x8CFD), + /// + /// Original was GL_COLOR_ATTACHMENT30 = 0x8CFE + /// + ColorAttachment30 = ((int)0x8CFE), + /// + /// Original was GL_COLOR_ATTACHMENT31 = 0x8CFF + /// + ColorAttachment31 = ((int)0x8CFF), + } + /// /// Not used directly. /// @@ -11762,6 +14439,25 @@ namespace OpenTK.Graphics.ES20 ColorTableBiasSgi = ((int)0x80D7), } + /// + /// Not used directly. + /// + public enum ColorTableTarget : int + { + /// + /// Original was GL_COLOR_TABLE = 0x80D0 + /// + ColorTable = ((int)0x80D0), + /// + /// Original was GL_POST_CONVOLUTION_COLOR_TABLE = 0x80D1 + /// + PostConvolutionColorTable = ((int)0x80D1), + /// + /// Original was GL_POST_COLOR_MATRIX_COLOR_TABLE = 0x80D2 + /// + PostColorMatrixColorTable = ((int)0x80D2), + } + /// /// Not used directly. /// @@ -11855,10 +14551,22 @@ namespace OpenTK.Graphics.ES20 /// ContextFlagDebugBitKhr = ((int)0x00000002), /// + /// Original was GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT = 0x00000004 + /// + ContextFlagRobustAccessBit = ((int)0x00000004), + /// /// Original was GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT_ARB = 0x00000004 /// ContextFlagRobustAccessBitArb = ((int)0x00000004), /// + /// Original was GL_CONTEXT_FLAG_NO_ERROR_BIT = 0x00000008 + /// + ContextFlagNoErrorBit = ((int)0x00000008), + /// + /// Original was GL_CONTEXT_FLAG_NO_ERROR_BIT_KHR = 0x00000008 + /// + ContextFlagNoErrorBitKhr = ((int)0x00000008), + /// /// Original was GL_CONTEXT_FLAG_PROTECTED_CONTENT_BIT_EXT = 0x00000010 /// ContextFlagProtectedContentBitExt = ((int)0x00000010), @@ -11926,6 +14634,21 @@ namespace OpenTK.Graphics.ES20 ConvolutionFilterBiasExt = ((int)0x8015), } + /// + /// Not used directly. + /// + public enum ConvolutionTarget : int + { + /// + /// Original was GL_CONVOLUTION_1D = 0x8010 + /// + Convolution1D = ((int)0x8010), + /// + /// Original was GL_CONVOLUTION_2D = 0x8011 + /// + Convolution2D = ((int)0x8011), + } + /// /// Not used directly. /// @@ -11949,6 +14672,69 @@ namespace OpenTK.Graphics.ES20 Convolution2DExt = ((int)0x8011), } + /// + /// Used in GL.Ext.CopyImageSubData, GL.Oes.CopyImageSubData + /// + public enum CopyBufferSubDataTarget : int + { + /// + /// Original was GL_ARRAY_BUFFER = 0x8892 + /// + ArrayBuffer = ((int)0x8892), + /// + /// Original was GL_ELEMENT_ARRAY_BUFFER = 0x8893 + /// + ElementArrayBuffer = ((int)0x8893), + /// + /// Original was GL_PIXEL_PACK_BUFFER = 0x88EB + /// + PixelPackBuffer = ((int)0x88EB), + /// + /// Original was GL_PIXEL_UNPACK_BUFFER = 0x88EC + /// + PixelUnpackBuffer = ((int)0x88EC), + /// + /// Original was GL_UNIFORM_BUFFER = 0x8A11 + /// + UniformBuffer = ((int)0x8A11), + /// + /// Original was GL_TEXTURE_BUFFER = 0x8C2A + /// + TextureBuffer = ((int)0x8C2A), + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER = 0x8C8E + /// + TransformFeedbackBuffer = ((int)0x8C8E), + /// + /// Original was GL_COPY_READ_BUFFER = 0x8F36 + /// + CopyReadBuffer = ((int)0x8F36), + /// + /// Original was GL_COPY_WRITE_BUFFER = 0x8F37 + /// + CopyWriteBuffer = ((int)0x8F37), + /// + /// Original was GL_DRAW_INDIRECT_BUFFER = 0x8F3F + /// + DrawIndirectBuffer = ((int)0x8F3F), + /// + /// Original was GL_SHADER_STORAGE_BUFFER = 0x90D2 + /// + ShaderStorageBuffer = ((int)0x90D2), + /// + /// Original was GL_DISPATCH_INDIRECT_BUFFER = 0x90EE + /// + DispatchIndirectBuffer = ((int)0x90EE), + /// + /// Original was GL_QUERY_BUFFER = 0x9192 + /// + QueryBuffer = ((int)0x9192), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER = 0x92C0 + /// + AtomicCounterBuffer = ((int)0x92C0), + } + /// /// Used in GL.CullFace, GL.StencilFuncSeparate and 2 other functions /// @@ -11980,6 +14766,10 @@ namespace OpenTK.Graphics.ES20 /// public enum DebugSeverity : int { + /// + /// Original was GL_DONT_CARE = 0x1100 + /// + DontCare = ((int)0x1100), /// /// Original was GL_DEBUG_SEVERITY_NOTIFICATION = 0x826B /// @@ -12026,10 +14816,14 @@ namespace OpenTK.Graphics.ES20 } /// - /// Not used directly. + /// Used in GL.PushDebugGroup, GL.Khr.PushDebugGroup /// public enum DebugSource : int { + /// + /// Original was GL_DONT_CARE = 0x1100 + /// + DontCare = ((int)0x1100), /// /// Original was GL_DEBUG_SOURCE_API = 0x8246 /// @@ -12111,6 +14905,10 @@ namespace OpenTK.Graphics.ES20 /// public enum DebugType : int { + /// + /// Original was GL_DONT_CARE = 0x1100 + /// + DontCare = ((int)0x1100), /// /// Original was GL_DEBUG_TYPE_ERROR = 0x824C /// @@ -12333,7 +15131,7 @@ namespace OpenTK.Graphics.ES20 } /// - /// Used in GL.Angle.DrawElementsInstanced, GL.DrawElements and 10 other functions + /// Used in GL.Angle.DrawElementsInstanced, GL.DrawElements and 11 other functions /// public enum DrawElementsType : int { @@ -12352,7 +15150,7 @@ namespace OpenTK.Graphics.ES20 } /// - /// Used in GL.Disable, GL.Enable and 1 other function + /// Used in GL.Disable, GL.Enable and 10 other functions /// public enum EnableCap : int { @@ -14179,6 +16977,37 @@ namespace OpenTK.Graphics.ES20 { } + /// + /// Not used directly. + /// + public enum ExtClipControl : int + { + /// + /// Original was GL_LOWER_LEFT_EXT = 0x8CA1 + /// + LowerLeftExt = ((int)0x8CA1), + /// + /// Original was GL_UPPER_LEFT_EXT = 0x8CA2 + /// + UpperLeftExt = ((int)0x8CA2), + /// + /// Original was GL_CLIP_ORIGIN_EXT = 0x935C + /// + ClipOriginExt = ((int)0x935C), + /// + /// Original was GL_CLIP_DEPTH_MODE_EXT = 0x935D + /// + ClipDepthModeExt = ((int)0x935D), + /// + /// Original was GL_NEGATIVE_ONE_TO_ONE_EXT = 0x935E + /// + NegativeOneToOneExt = ((int)0x935E), + /// + /// Original was GL_ZERO_TO_ONE_EXT = 0x935F + /// + ZeroToOneExt = ((int)0x935F), + } + /// /// Not used directly. /// @@ -15339,6 +18168,14 @@ namespace OpenTK.Graphics.ES20 /// public enum ExtSemaphore : int { + /// + /// Original was GL_LAYOUT_DEPTH_READ_ONLY_STENCIL_ATTACHMENT_EXT = 0x9530 + /// + LayoutDepthReadOnlyStencilAttachmentExt = ((int)0x9530), + /// + /// Original was GL_LAYOUT_DEPTH_ATTACHMENT_STENCIL_READ_ONLY_EXT = 0x9531 + /// + LayoutDepthAttachmentStencilReadOnlyExt = ((int)0x9531), /// /// Original was GL_LAYOUT_GENERAL_EXT = 0x958D /// @@ -16063,6 +18900,29 @@ namespace OpenTK.Graphics.ES20 CompressedRgbaS3tcDxt5Ext = ((int)0x83F3), } + /// + /// Not used directly. + /// + public enum ExtTextureCompressionS3tcSrgb : int + { + /// + /// Original was GL_COMPRESSED_SRGB_S3TC_DXT1_EXT = 0x8C4C + /// + CompressedSrgbS3tcDxt1Ext = ((int)0x8C4C), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT = 0x8C4D + /// + CompressedSrgbAlphaS3tcDxt1Ext = ((int)0x8C4D), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT = 0x8C4E + /// + CompressedSrgbAlphaS3tcDxt3Ext = ((int)0x8C4E), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT = 0x8C4F + /// + CompressedSrgbAlphaS3tcDxt5Ext = ((int)0x8C4F), + } + /// /// Not used directly. /// @@ -16163,6 +19023,17 @@ namespace OpenTK.Graphics.ES20 BgraExt = ((int)0x80E1), } + /// + /// Not used directly. + /// + public enum ExtTextureMirrorClampToEdge : int + { + /// + /// Original was GL_MIRROR_CLAMP_TO_EDGE_EXT = 0x8743 + /// + MirrorClampToEdgeExt = ((int)0x8743), + } + /// /// Not used directly. /// @@ -16656,6 +19527,37 @@ namespace OpenTK.Graphics.ES20 FogOffsetValueSgix = ((int)0x8199), } + /// + /// Not used directly. + /// + public enum FogPName : int + { + /// + /// Original was GL_FOG_INDEX = 0x0B61 + /// + FogIndex = ((int)0x0B61), + /// + /// Original was GL_FOG_DENSITY = 0x0B62 + /// + FogDensity = ((int)0x0B62), + /// + /// Original was GL_FOG_START = 0x0B63 + /// + FogStart = ((int)0x0B63), + /// + /// Original was GL_FOG_END = 0x0B64 + /// + FogEnd = ((int)0x0B64), + /// + /// Original was GL_FOG_MODE = 0x0B65 + /// + FogMode = ((int)0x0B65), + /// + /// Original was GL_FOG_COORD_SRC = 0x8450 + /// + FogCoordSrc = ((int)0x8450), + } + /// /// Not used directly. /// @@ -16709,6 +19611,407 @@ namespace OpenTK.Graphics.ES20 FragmentLightModelNormalInterpolationSgix = ((int)0x840B), } + /// + /// Not used directly. + /// + public enum FragmentOpAti : int + { + /// + /// Original was GL_MOV_ATI = 0x8961 + /// + MovAti = ((int)0x8961), + /// + /// Original was GL_ADD_ATI = 0x8963 + /// + AddAti = ((int)0x8963), + /// + /// Original was GL_MUL_ATI = 0x8964 + /// + MulAti = ((int)0x8964), + /// + /// Original was GL_SUB_ATI = 0x8965 + /// + SubAti = ((int)0x8965), + /// + /// Original was GL_DOT3_ATI = 0x8966 + /// + Dot3Ati = ((int)0x8966), + /// + /// Original was GL_DOT4_ATI = 0x8967 + /// + Dot4Ati = ((int)0x8967), + /// + /// Original was GL_MAD_ATI = 0x8968 + /// + MadAti = ((int)0x8968), + /// + /// Original was GL_LERP_ATI = 0x8969 + /// + LerpAti = ((int)0x8969), + /// + /// Original was GL_CND_ATI = 0x896A + /// + CndAti = ((int)0x896A), + /// + /// Original was GL_CND0_ATI = 0x896B + /// + Cnd0Ati = ((int)0x896B), + /// + /// Original was GL_DOT2_ADD_ATI = 0x896C + /// + Dot2AddAti = ((int)0x896C), + } + + /// + /// Used in GL.FramebufferRenderbuffer, GL.FramebufferTexture2D and 10 other functions + /// + public enum FramebufferAttachment : int + { + /// + /// Original was GL_MAX_COLOR_ATTACHMENTS = 0x8CDF + /// + MaxColorAttachments = ((int)0x8CDF), + /// + /// Original was GL_MAX_COLOR_ATTACHMENTS_EXT = 0x8CDF + /// + MaxColorAttachmentsExt = ((int)0x8CDF), + /// + /// Original was GL_MAX_COLOR_ATTACHMENTS_NV = 0x8CDF + /// + MaxColorAttachmentsNv = ((int)0x8CDF), + /// + /// Original was GL_COLOR_ATTACHMENT0 = 0x8CE0 + /// + ColorAttachment0 = ((int)0x8CE0), + /// + /// Original was GL_COLOR_ATTACHMENT0_EXT = 0x8CE0 + /// + ColorAttachment0Ext = ((int)0x8CE0), + /// + /// Original was GL_COLOR_ATTACHMENT0_NV = 0x8CE0 + /// + ColorAttachment0Nv = ((int)0x8CE0), + /// + /// Original was GL_COLOR_ATTACHMENT0_OES = 0x8CE0 + /// + ColorAttachment0Oes = ((int)0x8CE0), + /// + /// Original was GL_COLOR_ATTACHMENT1 = 0x8CE1 + /// + ColorAttachment1 = ((int)0x8CE1), + /// + /// Original was GL_COLOR_ATTACHMENT1_EXT = 0x8CE1 + /// + ColorAttachment1Ext = ((int)0x8CE1), + /// + /// Original was GL_COLOR_ATTACHMENT1_NV = 0x8CE1 + /// + ColorAttachment1Nv = ((int)0x8CE1), + /// + /// Original was GL_COLOR_ATTACHMENT2 = 0x8CE2 + /// + ColorAttachment2 = ((int)0x8CE2), + /// + /// Original was GL_COLOR_ATTACHMENT2_EXT = 0x8CE2 + /// + ColorAttachment2Ext = ((int)0x8CE2), + /// + /// Original was GL_COLOR_ATTACHMENT2_NV = 0x8CE2 + /// + ColorAttachment2Nv = ((int)0x8CE2), + /// + /// Original was GL_COLOR_ATTACHMENT3 = 0x8CE3 + /// + ColorAttachment3 = ((int)0x8CE3), + /// + /// Original was GL_COLOR_ATTACHMENT3_EXT = 0x8CE3 + /// + ColorAttachment3Ext = ((int)0x8CE3), + /// + /// Original was GL_COLOR_ATTACHMENT3_NV = 0x8CE3 + /// + ColorAttachment3Nv = ((int)0x8CE3), + /// + /// Original was GL_COLOR_ATTACHMENT4 = 0x8CE4 + /// + ColorAttachment4 = ((int)0x8CE4), + /// + /// Original was GL_COLOR_ATTACHMENT4_EXT = 0x8CE4 + /// + ColorAttachment4Ext = ((int)0x8CE4), + /// + /// Original was GL_COLOR_ATTACHMENT4_NV = 0x8CE4 + /// + ColorAttachment4Nv = ((int)0x8CE4), + /// + /// Original was GL_COLOR_ATTACHMENT5 = 0x8CE5 + /// + ColorAttachment5 = ((int)0x8CE5), + /// + /// Original was GL_COLOR_ATTACHMENT5_EXT = 0x8CE5 + /// + ColorAttachment5Ext = ((int)0x8CE5), + /// + /// Original was GL_COLOR_ATTACHMENT5_NV = 0x8CE5 + /// + ColorAttachment5Nv = ((int)0x8CE5), + /// + /// Original was GL_COLOR_ATTACHMENT6 = 0x8CE6 + /// + ColorAttachment6 = ((int)0x8CE6), + /// + /// Original was GL_COLOR_ATTACHMENT6_EXT = 0x8CE6 + /// + ColorAttachment6Ext = ((int)0x8CE6), + /// + /// Original was GL_COLOR_ATTACHMENT6_NV = 0x8CE6 + /// + ColorAttachment6Nv = ((int)0x8CE6), + /// + /// Original was GL_COLOR_ATTACHMENT7 = 0x8CE7 + /// + ColorAttachment7 = ((int)0x8CE7), + /// + /// Original was GL_COLOR_ATTACHMENT7_EXT = 0x8CE7 + /// + ColorAttachment7Ext = ((int)0x8CE7), + /// + /// Original was GL_COLOR_ATTACHMENT7_NV = 0x8CE7 + /// + ColorAttachment7Nv = ((int)0x8CE7), + /// + /// Original was GL_COLOR_ATTACHMENT8 = 0x8CE8 + /// + ColorAttachment8 = ((int)0x8CE8), + /// + /// Original was GL_COLOR_ATTACHMENT8_EXT = 0x8CE8 + /// + ColorAttachment8Ext = ((int)0x8CE8), + /// + /// Original was GL_COLOR_ATTACHMENT8_NV = 0x8CE8 + /// + ColorAttachment8Nv = ((int)0x8CE8), + /// + /// Original was GL_COLOR_ATTACHMENT9 = 0x8CE9 + /// + ColorAttachment9 = ((int)0x8CE9), + /// + /// Original was GL_COLOR_ATTACHMENT9_EXT = 0x8CE9 + /// + ColorAttachment9Ext = ((int)0x8CE9), + /// + /// Original was GL_COLOR_ATTACHMENT9_NV = 0x8CE9 + /// + ColorAttachment9Nv = ((int)0x8CE9), + /// + /// Original was GL_COLOR_ATTACHMENT10 = 0x8CEA + /// + ColorAttachment10 = ((int)0x8CEA), + /// + /// Original was GL_COLOR_ATTACHMENT10_EXT = 0x8CEA + /// + ColorAttachment10Ext = ((int)0x8CEA), + /// + /// Original was GL_COLOR_ATTACHMENT10_NV = 0x8CEA + /// + ColorAttachment10Nv = ((int)0x8CEA), + /// + /// Original was GL_COLOR_ATTACHMENT11 = 0x8CEB + /// + ColorAttachment11 = ((int)0x8CEB), + /// + /// Original was GL_COLOR_ATTACHMENT11_EXT = 0x8CEB + /// + ColorAttachment11Ext = ((int)0x8CEB), + /// + /// Original was GL_COLOR_ATTACHMENT11_NV = 0x8CEB + /// + ColorAttachment11Nv = ((int)0x8CEB), + /// + /// Original was GL_COLOR_ATTACHMENT12 = 0x8CEC + /// + ColorAttachment12 = ((int)0x8CEC), + /// + /// Original was GL_COLOR_ATTACHMENT12_EXT = 0x8CEC + /// + ColorAttachment12Ext = ((int)0x8CEC), + /// + /// Original was GL_COLOR_ATTACHMENT12_NV = 0x8CEC + /// + ColorAttachment12Nv = ((int)0x8CEC), + /// + /// Original was GL_COLOR_ATTACHMENT13 = 0x8CED + /// + ColorAttachment13 = ((int)0x8CED), + /// + /// Original was GL_COLOR_ATTACHMENT13_EXT = 0x8CED + /// + ColorAttachment13Ext = ((int)0x8CED), + /// + /// Original was GL_COLOR_ATTACHMENT13_NV = 0x8CED + /// + ColorAttachment13Nv = ((int)0x8CED), + /// + /// Original was GL_COLOR_ATTACHMENT14 = 0x8CEE + /// + ColorAttachment14 = ((int)0x8CEE), + /// + /// Original was GL_COLOR_ATTACHMENT14_EXT = 0x8CEE + /// + ColorAttachment14Ext = ((int)0x8CEE), + /// + /// Original was GL_COLOR_ATTACHMENT14_NV = 0x8CEE + /// + ColorAttachment14Nv = ((int)0x8CEE), + /// + /// Original was GL_COLOR_ATTACHMENT15 = 0x8CEF + /// + ColorAttachment15 = ((int)0x8CEF), + /// + /// Original was GL_COLOR_ATTACHMENT15_EXT = 0x8CEF + /// + ColorAttachment15Ext = ((int)0x8CEF), + /// + /// Original was GL_COLOR_ATTACHMENT15_NV = 0x8CEF + /// + ColorAttachment15Nv = ((int)0x8CEF), + /// + /// Original was GL_COLOR_ATTACHMENT16 = 0x8CF0 + /// + ColorAttachment16 = ((int)0x8CF0), + /// + /// Original was GL_COLOR_ATTACHMENT17 = 0x8CF1 + /// + ColorAttachment17 = ((int)0x8CF1), + /// + /// Original was GL_COLOR_ATTACHMENT18 = 0x8CF2 + /// + ColorAttachment18 = ((int)0x8CF2), + /// + /// Original was GL_COLOR_ATTACHMENT19 = 0x8CF3 + /// + ColorAttachment19 = ((int)0x8CF3), + /// + /// Original was GL_COLOR_ATTACHMENT20 = 0x8CF4 + /// + ColorAttachment20 = ((int)0x8CF4), + /// + /// Original was GL_COLOR_ATTACHMENT21 = 0x8CF5 + /// + ColorAttachment21 = ((int)0x8CF5), + /// + /// Original was GL_COLOR_ATTACHMENT22 = 0x8CF6 + /// + ColorAttachment22 = ((int)0x8CF6), + /// + /// Original was GL_COLOR_ATTACHMENT23 = 0x8CF7 + /// + ColorAttachment23 = ((int)0x8CF7), + /// + /// Original was GL_COLOR_ATTACHMENT24 = 0x8CF8 + /// + ColorAttachment24 = ((int)0x8CF8), + /// + /// Original was GL_COLOR_ATTACHMENT25 = 0x8CF9 + /// + ColorAttachment25 = ((int)0x8CF9), + /// + /// Original was GL_COLOR_ATTACHMENT26 = 0x8CFA + /// + ColorAttachment26 = ((int)0x8CFA), + /// + /// Original was GL_COLOR_ATTACHMENT27 = 0x8CFB + /// + ColorAttachment27 = ((int)0x8CFB), + /// + /// Original was GL_COLOR_ATTACHMENT28 = 0x8CFC + /// + ColorAttachment28 = ((int)0x8CFC), + /// + /// Original was GL_COLOR_ATTACHMENT29 = 0x8CFD + /// + ColorAttachment29 = ((int)0x8CFD), + /// + /// Original was GL_COLOR_ATTACHMENT30 = 0x8CFE + /// + ColorAttachment30 = ((int)0x8CFE), + /// + /// Original was GL_COLOR_ATTACHMENT31 = 0x8CFF + /// + ColorAttachment31 = ((int)0x8CFF), + /// + /// Original was GL_DEPTH_ATTACHMENT = 0x8D00 + /// + DepthAttachment = ((int)0x8D00), + /// + /// Original was GL_DEPTH_ATTACHMENT_EXT = 0x8D00 + /// + DepthAttachmentExt = ((int)0x8D00), + /// + /// Original was GL_DEPTH_ATTACHMENT_OES = 0x8D00 + /// + DepthAttachmentOes = ((int)0x8D00), + } + + /// + /// Not used directly. + /// + public enum FramebufferAttachmentParameterName : int + { + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING = 0x8210 + /// + FramebufferAttachmentColorEncoding = ((int)0x8210), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE = 0x8211 + /// + FramebufferAttachmentComponentType = ((int)0x8211), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_RED_SIZE = 0x8212 + /// + FramebufferAttachmentRedSize = ((int)0x8212), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_GREEN_SIZE = 0x8213 + /// + FramebufferAttachmentGreenSize = ((int)0x8213), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_BLUE_SIZE = 0x8214 + /// + FramebufferAttachmentBlueSize = ((int)0x8214), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE = 0x8215 + /// + FramebufferAttachmentAlphaSize = ((int)0x8215), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE = 0x8216 + /// + FramebufferAttachmentDepthSize = ((int)0x8216), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE = 0x8217 + /// + FramebufferAttachmentStencilSize = ((int)0x8217), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME = 0x8CD1 + /// + FramebufferAttachmentObjectName = ((int)0x8CD1), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL = 0x8CD2 + /// + FramebufferAttachmentTextureLevel = ((int)0x8CD2), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE = 0x8CD3 + /// + FramebufferAttachmentTextureCubeMapFace = ((int)0x8CD3), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER = 0x8CD4 + /// + FramebufferAttachmentTextureLayer = ((int)0x8CD4), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_LAYERED = 0x8DA7 + /// + FramebufferAttachmentLayered = ((int)0x8DA7), + } + /// /// Not used directly. /// @@ -16768,6 +20071,26 @@ namespace OpenTK.Graphics.ES20 /// Original was GL_FramebufferAttachmentTextureCubeMapFace = 0X8cd3 /// FramebufferAttachmentTextureCubeMapFace = ((int)0X8cd3), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_WIDTH = 0x9310 + /// + FramebufferDefaultWidth = ((int)0x9310), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_HEIGHT = 0x9311 + /// + FramebufferDefaultHeight = ((int)0x9311), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_LAYERS = 0x9312 + /// + FramebufferDefaultLayers = ((int)0x9312), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_SAMPLES = 0x9313 + /// + FramebufferDefaultSamples = ((int)0x9313), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_FIXED_SAMPLE_LOCATIONS = 0x9314 + /// + FramebufferDefaultFixedSampleLocations = ((int)0x9314), } /// @@ -16790,10 +20113,61 @@ namespace OpenTK.Graphics.ES20 } /// - /// Used in GL.BindFramebuffer, GL.CheckFramebufferStatus and 8 other functions + /// Not used directly. + /// + public enum FramebufferStatus : int + { + /// + /// Original was GL_FRAMEBUFFER_UNDEFINED = 0x8219 + /// + FramebufferUndefined = ((int)0x8219), + /// + /// Original was GL_FRAMEBUFFER_COMPLETE = 0x8CD5 + /// + FramebufferComplete = ((int)0x8CD5), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT = 0x8CD6 + /// + FramebufferIncompleteAttachment = ((int)0x8CD6), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT = 0x8CD7 + /// + FramebufferIncompleteMissingAttachment = ((int)0x8CD7), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER = 0x8CDB + /// + FramebufferIncompleteDrawBuffer = ((int)0x8CDB), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER = 0x8CDC + /// + FramebufferIncompleteReadBuffer = ((int)0x8CDC), + /// + /// Original was GL_FRAMEBUFFER_UNSUPPORTED = 0x8CDD + /// + FramebufferUnsupported = ((int)0x8CDD), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE = 0x8D56 + /// + FramebufferIncompleteMultisample = ((int)0x8D56), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS = 0x8DA8 + /// + FramebufferIncompleteLayerTargets = ((int)0x8DA8), + } + + /// + /// Used in GL.BindFramebuffer, GL.CheckFramebufferStatus and 14 other functions /// public enum FramebufferTarget : int { + /// + /// Original was GL_READ_FRAMEBUFFER = 0x8CA8 + /// + ReadFramebuffer = ((int)0x8CA8), + /// + /// Original was GL_DRAW_FRAMEBUFFER = 0x8CA9 + /// + DrawFramebuffer = ((int)0x8CA9), /// /// Original was GL_Framebuffer = 0X8d40 /// @@ -16820,43 +20194,83 @@ namespace OpenTK.Graphics.ES20 /// public enum GetColorTableParameterPNameSgi : int { + /// + /// Original was GL_COLOR_TABLE_SCALE = 0x80D6 + /// + ColorTableScale = ((int)0x80D6), /// /// Original was GL_COLOR_TABLE_SCALE_SGI = 0x80D6 /// ColorTableScaleSgi = ((int)0x80D6), /// + /// Original was GL_COLOR_TABLE_BIAS = 0x80D7 + /// + ColorTableBias = ((int)0x80D7), + /// /// Original was GL_COLOR_TABLE_BIAS_SGI = 0x80D7 /// ColorTableBiasSgi = ((int)0x80D7), /// + /// Original was GL_COLOR_TABLE_FORMAT = 0x80D8 + /// + ColorTableFormat = ((int)0x80D8), + /// /// Original was GL_COLOR_TABLE_FORMAT_SGI = 0x80D8 /// ColorTableFormatSgi = ((int)0x80D8), /// + /// Original was GL_COLOR_TABLE_WIDTH = 0x80D9 + /// + ColorTableWidth = ((int)0x80D9), + /// /// Original was GL_COLOR_TABLE_WIDTH_SGI = 0x80D9 /// ColorTableWidthSgi = ((int)0x80D9), /// + /// Original was GL_COLOR_TABLE_RED_SIZE = 0x80DA + /// + ColorTableRedSize = ((int)0x80DA), + /// /// Original was GL_COLOR_TABLE_RED_SIZE_SGI = 0x80DA /// ColorTableRedSizeSgi = ((int)0x80DA), /// + /// Original was GL_COLOR_TABLE_GREEN_SIZE = 0x80DB + /// + ColorTableGreenSize = ((int)0x80DB), + /// /// Original was GL_COLOR_TABLE_GREEN_SIZE_SGI = 0x80DB /// ColorTableGreenSizeSgi = ((int)0x80DB), /// + /// Original was GL_COLOR_TABLE_BLUE_SIZE = 0x80DC + /// + ColorTableBlueSize = ((int)0x80DC), + /// /// Original was GL_COLOR_TABLE_BLUE_SIZE_SGI = 0x80DC /// ColorTableBlueSizeSgi = ((int)0x80DC), /// + /// Original was GL_COLOR_TABLE_ALPHA_SIZE = 0x80DD + /// + ColorTableAlphaSize = ((int)0x80DD), + /// /// Original was GL_COLOR_TABLE_ALPHA_SIZE_SGI = 0x80DD /// ColorTableAlphaSizeSgi = ((int)0x80DD), /// + /// Original was GL_COLOR_TABLE_LUMINANCE_SIZE = 0x80DE + /// + ColorTableLuminanceSize = ((int)0x80DE), + /// /// Original was GL_COLOR_TABLE_LUMINANCE_SIZE_SGI = 0x80DE /// ColorTableLuminanceSizeSgi = ((int)0x80DE), /// + /// Original was GL_COLOR_TABLE_INTENSITY_SIZE = 0x80DF + /// + ColorTableIntensitySize = ((int)0x80DF), + /// /// Original was GL_COLOR_TABLE_INTENSITY_SIZE_SGI = 0x80DF /// ColorTableIntensitySizeSgi = ((int)0x80DF), @@ -16867,38 +20281,125 @@ namespace OpenTK.Graphics.ES20 /// public enum GetConvolutionParameter : int { + /// + /// Original was GL_CONVOLUTION_BORDER_MODE = 0x8013 + /// + ConvolutionBorderMode = ((int)0x8013), /// /// Original was GL_CONVOLUTION_BORDER_MODE_EXT = 0x8013 /// ConvolutionBorderModeExt = ((int)0x8013), /// + /// Original was GL_CONVOLUTION_FILTER_SCALE = 0x8014 + /// + ConvolutionFilterScale = ((int)0x8014), + /// /// Original was GL_CONVOLUTION_FILTER_SCALE_EXT = 0x8014 /// ConvolutionFilterScaleExt = ((int)0x8014), /// + /// Original was GL_CONVOLUTION_FILTER_BIAS = 0x8015 + /// + ConvolutionFilterBias = ((int)0x8015), + /// /// Original was GL_CONVOLUTION_FILTER_BIAS_EXT = 0x8015 /// ConvolutionFilterBiasExt = ((int)0x8015), /// + /// Original was GL_CONVOLUTION_FORMAT = 0x8017 + /// + ConvolutionFormat = ((int)0x8017), + /// /// Original was GL_CONVOLUTION_FORMAT_EXT = 0x8017 /// ConvolutionFormatExt = ((int)0x8017), /// + /// Original was GL_CONVOLUTION_WIDTH = 0x8018 + /// + ConvolutionWidth = ((int)0x8018), + /// /// Original was GL_CONVOLUTION_WIDTH_EXT = 0x8018 /// ConvolutionWidthExt = ((int)0x8018), /// + /// Original was GL_CONVOLUTION_HEIGHT = 0x8019 + /// + ConvolutionHeight = ((int)0x8019), + /// /// Original was GL_CONVOLUTION_HEIGHT_EXT = 0x8019 /// ConvolutionHeightExt = ((int)0x8019), /// + /// Original was GL_MAX_CONVOLUTION_WIDTH = 0x801A + /// + MaxConvolutionWidth = ((int)0x801A), + /// /// Original was GL_MAX_CONVOLUTION_WIDTH_EXT = 0x801A /// MaxConvolutionWidthExt = ((int)0x801A), /// + /// Original was GL_MAX_CONVOLUTION_HEIGHT = 0x801B + /// + MaxConvolutionHeight = ((int)0x801B), + /// /// Original was GL_MAX_CONVOLUTION_HEIGHT_EXT = 0x801B /// MaxConvolutionHeightExt = ((int)0x801B), + /// + /// Original was GL_CONVOLUTION_BORDER_COLOR = 0x8154 + /// + ConvolutionBorderColor = ((int)0x8154), + } + + /// + /// Not used directly. + /// + public enum GetFramebufferParameter : int + { + /// + /// Original was GL_DOUBLEBUFFER = 0x0C32 + /// + Doublebuffer = ((int)0x0C32), + /// + /// Original was GL_STEREO = 0x0C33 + /// + Stereo = ((int)0x0C33), + /// + /// Original was GL_SAMPLE_BUFFERS = 0x80A8 + /// + SampleBuffers = ((int)0x80A8), + /// + /// Original was GL_SAMPLES = 0x80A9 + /// + Samples = ((int)0x80A9), + /// + /// Original was GL_IMPLEMENTATION_COLOR_READ_TYPE = 0x8B9A + /// + ImplementationColorReadType = ((int)0x8B9A), + /// + /// Original was GL_IMPLEMENTATION_COLOR_READ_FORMAT = 0x8B9B + /// + ImplementationColorReadFormat = ((int)0x8B9B), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_WIDTH = 0x9310 + /// + FramebufferDefaultWidth = ((int)0x9310), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_HEIGHT = 0x9311 + /// + FramebufferDefaultHeight = ((int)0x9311), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_LAYERS = 0x9312 + /// + FramebufferDefaultLayers = ((int)0x9312), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_SAMPLES = 0x9313 + /// + FramebufferDefaultSamples = ((int)0x9313), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_FIXED_SAMPLE_LOCATIONS = 0x9314 + /// + FramebufferDefaultFixedSampleLocations = ((int)0x9314), } /// @@ -16906,35 +20407,67 @@ namespace OpenTK.Graphics.ES20 /// public enum GetHistogramParameterPNameExt : int { + /// + /// Original was GL_HISTOGRAM_WIDTH = 0x8026 + /// + HistogramWidth = ((int)0x8026), /// /// Original was GL_HISTOGRAM_WIDTH_EXT = 0x8026 /// HistogramWidthExt = ((int)0x8026), /// + /// Original was GL_HISTOGRAM_FORMAT = 0x8027 + /// + HistogramFormat = ((int)0x8027), + /// /// Original was GL_HISTOGRAM_FORMAT_EXT = 0x8027 /// HistogramFormatExt = ((int)0x8027), /// + /// Original was GL_HISTOGRAM_RED_SIZE = 0x8028 + /// + HistogramRedSize = ((int)0x8028), + /// /// Original was GL_HISTOGRAM_RED_SIZE_EXT = 0x8028 /// HistogramRedSizeExt = ((int)0x8028), /// + /// Original was GL_HISTOGRAM_GREEN_SIZE = 0x8029 + /// + HistogramGreenSize = ((int)0x8029), + /// /// Original was GL_HISTOGRAM_GREEN_SIZE_EXT = 0x8029 /// HistogramGreenSizeExt = ((int)0x8029), /// + /// Original was GL_HISTOGRAM_BLUE_SIZE = 0x802A + /// + HistogramBlueSize = ((int)0x802A), + /// /// Original was GL_HISTOGRAM_BLUE_SIZE_EXT = 0x802A /// HistogramBlueSizeExt = ((int)0x802A), /// + /// Original was GL_HISTOGRAM_ALPHA_SIZE = 0x802B + /// + HistogramAlphaSize = ((int)0x802B), + /// /// Original was GL_HISTOGRAM_ALPHA_SIZE_EXT = 0x802B /// HistogramAlphaSizeExt = ((int)0x802B), /// + /// Original was GL_HISTOGRAM_LUMINANCE_SIZE = 0x802C + /// + HistogramLuminanceSize = ((int)0x802C), + /// /// Original was GL_HISTOGRAM_LUMINANCE_SIZE_EXT = 0x802C /// HistogramLuminanceSizeExt = ((int)0x802C), /// + /// Original was GL_HISTOGRAM_SINK = 0x802D + /// + HistogramSink = ((int)0x802D), + /// /// Original was GL_HISTOGRAM_SINK_EXT = 0x802D /// HistogramSinkExt = ((int)0x802D), @@ -18892,6 +22425,14 @@ namespace OpenTK.Graphics.ES20 /// Original was GL_INSTRUMENT_BUFFER_POINTER_SGIX = 0x8180 /// InstrumentBufferPointerSgix = ((int)0x8180), + /// + /// Original was GL_DEBUG_CALLBACK_FUNCTION = 0x8244 + /// + DebugCallbackFunction = ((int)0x8244), + /// + /// Original was GL_DEBUG_CALLBACK_USER_PARAM = 0x8245 + /// + DebugCallbackUserParam = ((int)0x8245), } /// @@ -19225,6 +22766,29 @@ namespace OpenTK.Graphics.ES20 TextureImmutableFormatExt = ((int)0x912F), } + /// + /// Not used directly. + /// + public enum GraphicsResetStatus : int + { + /// + /// Original was GL_NO_ERROR = 0 + /// + NoError = ((int)0), + /// + /// Original was GL_GUILTY_CONTEXT_RESET = 0x8253 + /// + GuiltyContextReset = ((int)0x8253), + /// + /// Original was GL_INNOCENT_CONTEXT_RESET = 0x8254 + /// + InnocentContextReset = ((int)0x8254), + /// + /// Original was GL_UNKNOWN_CONTEXT_RESET = 0x8255 + /// + UnknownContextReset = ((int)0x8255), + } + /// /// Used in GL.Hint /// @@ -19817,10 +23381,30 @@ namespace OpenTK.Graphics.ES20 } /// - /// Not used directly. + /// Used in GL.Ext.TexBuffer, GL.Ext.TexBufferRange and 10 other functions /// public enum InternalFormat : int { + /// + /// Original was GL_DEPTH_COMPONENT = 0x1902 + /// + DepthComponent = ((int)0x1902), + /// + /// Original was GL_RED = 0x1903 + /// + Red = ((int)0x1903), + /// + /// Original was GL_RED_EXT = 0x1903 + /// + RedExt = ((int)0x1903), + /// + /// Original was GL_RGB = 0x1907 + /// + Rgb = ((int)0x1907), + /// + /// Original was GL_RGBA = 0x1908 + /// + Rgba = ((int)0x1908), /// /// Original was GL_R3_G3_B2 = 0x2A10 /// @@ -19910,54 +23494,114 @@ namespace OpenTK.Graphics.ES20 /// Rgb4 = ((int)0x804F), /// + /// Original was GL_RGB4_EXT = 0x804F + /// + Rgb4Ext = ((int)0x804F), + /// /// Original was GL_RGB5 = 0x8050 /// Rgb5 = ((int)0x8050), /// + /// Original was GL_RGB5_EXT = 0x8050 + /// + Rgb5Ext = ((int)0x8050), + /// /// Original was GL_RGB8 = 0x8051 /// Rgb8 = ((int)0x8051), /// + /// Original was GL_RGB8_EXT = 0x8051 + /// + Rgb8Ext = ((int)0x8051), + /// + /// Original was GL_RGB8_OES = 0x8051 + /// + Rgb8Oes = ((int)0x8051), + /// /// Original was GL_RGB10 = 0x8052 /// Rgb10 = ((int)0x8052), /// + /// Original was GL_RGB10_EXT = 0x8052 + /// + Rgb10Ext = ((int)0x8052), + /// /// Original was GL_RGB12 = 0x8053 /// Rgb12 = ((int)0x8053), /// + /// Original was GL_RGB12_EXT = 0x8053 + /// + Rgb12Ext = ((int)0x8053), + /// /// Original was GL_RGB16 = 0x8054 /// Rgb16 = ((int)0x8054), /// - /// Original was GL_RGBA2 = 0x8055 + /// Original was GL_RGB16_EXT = 0x8054 /// - Rgba2 = ((int)0x8055), + Rgb16Ext = ((int)0x8054), /// /// Original was GL_RGBA4 = 0x8056 /// Rgba4 = ((int)0x8056), /// + /// Original was GL_RGBA4_EXT = 0x8056 + /// + Rgba4Ext = ((int)0x8056), + /// + /// Original was GL_RGBA4_OES = 0x8056 + /// + Rgba4Oes = ((int)0x8056), + /// /// Original was GL_RGB5_A1 = 0x8057 /// Rgb5A1 = ((int)0x8057), /// + /// Original was GL_RGB5_A1_EXT = 0x8057 + /// + Rgb5A1Ext = ((int)0x8057), + /// + /// Original was GL_RGB5_A1_OES = 0x8057 + /// + Rgb5A1Oes = ((int)0x8057), + /// /// Original was GL_RGBA8 = 0x8058 /// Rgba8 = ((int)0x8058), /// + /// Original was GL_RGBA8_EXT = 0x8058 + /// + Rgba8Ext = ((int)0x8058), + /// + /// Original was GL_RGBA8_OES = 0x8058 + /// + Rgba8Oes = ((int)0x8058), + /// /// Original was GL_RGB10_A2 = 0x8059 /// Rgb10A2 = ((int)0x8059), /// + /// Original was GL_RGB10_A2_EXT = 0x8059 + /// + Rgb10A2Ext = ((int)0x8059), + /// /// Original was GL_RGBA12 = 0x805A /// Rgba12 = ((int)0x805A), /// + /// Original was GL_RGBA12_EXT = 0x805A + /// + Rgba12Ext = ((int)0x805A), + /// /// Original was GL_RGBA16 = 0x805B /// Rgba16 = ((int)0x805B), /// + /// Original was GL_RGBA16_EXT = 0x805B + /// + Rgba16Ext = ((int)0x805B), + /// /// Original was GL_DUAL_ALPHA4_SGIS = 0x8110 /// DualAlpha4Sgis = ((int)0x8110), @@ -20038,17 +23682,824 @@ namespace OpenTK.Graphics.ES20 /// QuadIntensity8Sgis = ((int)0x8123), /// + /// Original was GL_DEPTH_COMPONENT16 = 0x81A5 + /// + DepthComponent16 = ((int)0x81A5), + /// + /// Original was GL_DEPTH_COMPONENT16_ARB = 0x81A5 + /// + DepthComponent16Arb = ((int)0x81A5), + /// + /// Original was GL_DEPTH_COMPONENT16_OES = 0x81A5 + /// + DepthComponent16Oes = ((int)0x81A5), + /// /// Original was GL_DEPTH_COMPONENT16_SGIX = 0x81A5 /// DepthComponent16Sgix = ((int)0x81A5), /// + /// Original was GL_DEPTH_COMPONENT24_ARB = 0x81A6 + /// + DepthComponent24Arb = ((int)0x81A6), + /// + /// Original was GL_DEPTH_COMPONENT24_OES = 0x81A6 + /// + DepthComponent24Oes = ((int)0x81A6), + /// /// Original was GL_DEPTH_COMPONENT24_SGIX = 0x81A6 /// DepthComponent24Sgix = ((int)0x81A6), /// + /// Original was GL_DEPTH_COMPONENT32_ARB = 0x81A7 + /// + DepthComponent32Arb = ((int)0x81A7), + /// + /// Original was GL_DEPTH_COMPONENT32_OES = 0x81A7 + /// + DepthComponent32Oes = ((int)0x81A7), + /// /// Original was GL_DEPTH_COMPONENT32_SGIX = 0x81A7 /// DepthComponent32Sgix = ((int)0x81A7), + /// + /// Original was GL_COMPRESSED_RED = 0x8225 + /// + CompressedRed = ((int)0x8225), + /// + /// Original was GL_COMPRESSED_RG = 0x8226 + /// + CompressedRg = ((int)0x8226), + /// + /// Original was GL_RG = 0x8227 + /// + Rg = ((int)0x8227), + /// + /// Original was GL_R8 = 0x8229 + /// + R8 = ((int)0x8229), + /// + /// Original was GL_R8_EXT = 0x8229 + /// + R8Ext = ((int)0x8229), + /// + /// Original was GL_R16 = 0x822A + /// + R16 = ((int)0x822A), + /// + /// Original was GL_R16_EXT = 0x822A + /// + R16Ext = ((int)0x822A), + /// + /// Original was GL_RG8 = 0x822B + /// + Rg8 = ((int)0x822B), + /// + /// Original was GL_RG8_EXT = 0x822B + /// + Rg8Ext = ((int)0x822B), + /// + /// Original was GL_RG16 = 0x822C + /// + Rg16 = ((int)0x822C), + /// + /// Original was GL_RG16_EXT = 0x822C + /// + Rg16Ext = ((int)0x822C), + /// + /// Original was GL_R16F = 0x822D + /// + R16f = ((int)0x822D), + /// + /// Original was GL_R16F_EXT = 0x822D + /// + R16fExt = ((int)0x822D), + /// + /// Original was GL_R32F = 0x822E + /// + R32f = ((int)0x822E), + /// + /// Original was GL_R32F_EXT = 0x822E + /// + R32fExt = ((int)0x822E), + /// + /// Original was GL_RG16F = 0x822F + /// + Rg16f = ((int)0x822F), + /// + /// Original was GL_RG16F_EXT = 0x822F + /// + Rg16fExt = ((int)0x822F), + /// + /// Original was GL_RG32F = 0x8230 + /// + Rg32f = ((int)0x8230), + /// + /// Original was GL_RG32F_EXT = 0x8230 + /// + Rg32fExt = ((int)0x8230), + /// + /// Original was GL_R8I = 0x8231 + /// + R8i = ((int)0x8231), + /// + /// Original was GL_R8UI = 0x8232 + /// + R8ui = ((int)0x8232), + /// + /// Original was GL_R16I = 0x8233 + /// + R16i = ((int)0x8233), + /// + /// Original was GL_R16UI = 0x8234 + /// + R16ui = ((int)0x8234), + /// + /// Original was GL_R32I = 0x8235 + /// + R32i = ((int)0x8235), + /// + /// Original was GL_R32UI = 0x8236 + /// + R32ui = ((int)0x8236), + /// + /// Original was GL_RG8I = 0x8237 + /// + Rg8i = ((int)0x8237), + /// + /// Original was GL_RG8UI = 0x8238 + /// + Rg8ui = ((int)0x8238), + /// + /// Original was GL_RG16I = 0x8239 + /// + Rg16i = ((int)0x8239), + /// + /// Original was GL_RG16UI = 0x823A + /// + Rg16ui = ((int)0x823A), + /// + /// Original was GL_RG32I = 0x823B + /// + Rg32i = ((int)0x823B), + /// + /// Original was GL_RG32UI = 0x823C + /// + Rg32ui = ((int)0x823C), + /// + /// Original was GL_COMPRESSED_RGB_S3TC_DXT1_EXT = 0x83F0 + /// + CompressedRgbS3tcDxt1Ext = ((int)0x83F0), + /// + /// Original was GL_COMPRESSED_RGBA_S3TC_DXT1_EXT = 0x83F1 + /// + CompressedRgbaS3tcDxt1Ext = ((int)0x83F1), + /// + /// Original was GL_COMPRESSED_RGBA_S3TC_DXT3_EXT = 0x83F2 + /// + CompressedRgbaS3tcDxt3Ext = ((int)0x83F2), + /// + /// Original was GL_COMPRESSED_RGBA_S3TC_DXT5_EXT = 0x83F3 + /// + CompressedRgbaS3tcDxt5Ext = ((int)0x83F3), + /// + /// Original was GL_COMPRESSED_RGB = 0x84ED + /// + CompressedRgb = ((int)0x84ED), + /// + /// Original was GL_COMPRESSED_RGBA = 0x84EE + /// + CompressedRgba = ((int)0x84EE), + /// + /// Original was GL_DEPTH_STENCIL = 0x84F9 + /// + DepthStencil = ((int)0x84F9), + /// + /// Original was GL_DEPTH_STENCIL_EXT = 0x84F9 + /// + DepthStencilExt = ((int)0x84F9), + /// + /// Original was GL_DEPTH_STENCIL_NV = 0x84F9 + /// + DepthStencilNv = ((int)0x84F9), + /// + /// Original was GL_DEPTH_STENCIL_OES = 0x84F9 + /// + DepthStencilOes = ((int)0x84F9), + /// + /// Original was GL_DEPTH_STENCIL_MESA = 0x8750 + /// + DepthStencilMesa = ((int)0x8750), + /// + /// Original was GL_RGBA32F = 0x8814 + /// + Rgba32f = ((int)0x8814), + /// + /// Original was GL_RGBA32F_ARB = 0x8814 + /// + Rgba32fArb = ((int)0x8814), + /// + /// Original was GL_RGBA32F_EXT = 0x8814 + /// + Rgba32fExt = ((int)0x8814), + /// + /// Original was GL_RGBA16F = 0x881A + /// + Rgba16f = ((int)0x881A), + /// + /// Original was GL_RGBA16F_ARB = 0x881A + /// + Rgba16fArb = ((int)0x881A), + /// + /// Original was GL_RGBA16F_EXT = 0x881A + /// + Rgba16fExt = ((int)0x881A), + /// + /// Original was GL_RGB16F = 0x881B + /// + Rgb16f = ((int)0x881B), + /// + /// Original was GL_RGB16F_ARB = 0x881B + /// + Rgb16fArb = ((int)0x881B), + /// + /// Original was GL_RGB16F_EXT = 0x881B + /// + Rgb16fExt = ((int)0x881B), + /// + /// Original was GL_DEPTH24_STENCIL8 = 0x88F0 + /// + Depth24Stencil8 = ((int)0x88F0), + /// + /// Original was GL_DEPTH24_STENCIL8_EXT = 0x88F0 + /// + Depth24Stencil8Ext = ((int)0x88F0), + /// + /// Original was GL_DEPTH24_STENCIL8_OES = 0x88F0 + /// + Depth24Stencil8Oes = ((int)0x88F0), + /// + /// Original was GL_R11F_G11F_B10F = 0x8C3A + /// + R11fG11fB10f = ((int)0x8C3A), + /// + /// Original was GL_R11F_G11F_B10F_APPLE = 0x8C3A + /// + R11fG11fB10fApple = ((int)0x8C3A), + /// + /// Original was GL_R11F_G11F_B10F_EXT = 0x8C3A + /// + R11fG11fB10fExt = ((int)0x8C3A), + /// + /// Original was GL_RGB9_E5 = 0x8C3D + /// + Rgb9E5 = ((int)0x8C3D), + /// + /// Original was GL_RGB9_E5_APPLE = 0x8C3D + /// + Rgb9E5Apple = ((int)0x8C3D), + /// + /// Original was GL_RGB9_E5_EXT = 0x8C3D + /// + Rgb9E5Ext = ((int)0x8C3D), + /// + /// Original was GL_SRGB = 0x8C40 + /// + Srgb = ((int)0x8C40), + /// + /// Original was GL_SRGB_EXT = 0x8C40 + /// + SrgbExt = ((int)0x8C40), + /// + /// Original was GL_SRGB8 = 0x8C41 + /// + Srgb8 = ((int)0x8C41), + /// + /// Original was GL_SRGB8_EXT = 0x8C41 + /// + Srgb8Ext = ((int)0x8C41), + /// + /// Original was GL_SRGB8_NV = 0x8C41 + /// + Srgb8Nv = ((int)0x8C41), + /// + /// Original was GL_SRGB_ALPHA = 0x8C42 + /// + SrgbAlpha = ((int)0x8C42), + /// + /// Original was GL_SRGB_ALPHA_EXT = 0x8C42 + /// + SrgbAlphaExt = ((int)0x8C42), + /// + /// Original was GL_SRGB8_ALPHA8 = 0x8C43 + /// + Srgb8Alpha8 = ((int)0x8C43), + /// + /// Original was GL_SRGB8_ALPHA8_EXT = 0x8C43 + /// + Srgb8Alpha8Ext = ((int)0x8C43), + /// + /// Original was GL_COMPRESSED_SRGB = 0x8C48 + /// + CompressedSrgb = ((int)0x8C48), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA = 0x8C49 + /// + CompressedSrgbAlpha = ((int)0x8C49), + /// + /// Original was GL_COMPRESSED_SRGB_S3TC_DXT1_EXT = 0x8C4C + /// + CompressedSrgbS3tcDxt1Ext = ((int)0x8C4C), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT = 0x8C4D + /// + CompressedSrgbAlphaS3tcDxt1Ext = ((int)0x8C4D), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT = 0x8C4E + /// + CompressedSrgbAlphaS3tcDxt3Ext = ((int)0x8C4E), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT = 0x8C4F + /// + CompressedSrgbAlphaS3tcDxt5Ext = ((int)0x8C4F), + /// + /// Original was GL_DEPTH_COMPONENT32F = 0x8CAC + /// + DepthComponent32f = ((int)0x8CAC), + /// + /// Original was GL_DEPTH32F_STENCIL8 = 0x8CAD + /// + Depth32fStencil8 = ((int)0x8CAD), + /// + /// Original was GL_RGBA32UI = 0x8D70 + /// + Rgba32ui = ((int)0x8D70), + /// + /// Original was GL_RGB32UI = 0x8D71 + /// + Rgb32ui = ((int)0x8D71), + /// + /// Original was GL_RGBA16UI = 0x8D76 + /// + Rgba16ui = ((int)0x8D76), + /// + /// Original was GL_RGB16UI = 0x8D77 + /// + Rgb16ui = ((int)0x8D77), + /// + /// Original was GL_RGBA8UI = 0x8D7C + /// + Rgba8ui = ((int)0x8D7C), + /// + /// Original was GL_RGB8UI = 0x8D7D + /// + Rgb8ui = ((int)0x8D7D), + /// + /// Original was GL_RGBA32I = 0x8D82 + /// + Rgba32i = ((int)0x8D82), + /// + /// Original was GL_RGB32I = 0x8D83 + /// + Rgb32i = ((int)0x8D83), + /// + /// Original was GL_RGBA16I = 0x8D88 + /// + Rgba16i = ((int)0x8D88), + /// + /// Original was GL_RGB16I = 0x8D89 + /// + Rgb16i = ((int)0x8D89), + /// + /// Original was GL_RGBA8I = 0x8D8E + /// + Rgba8i = ((int)0x8D8E), + /// + /// Original was GL_RGB8I = 0x8D8F + /// + Rgb8i = ((int)0x8D8F), + /// + /// Original was GL_DEPTH_COMPONENT32F_NV = 0x8DAB + /// + DepthComponent32fNv = ((int)0x8DAB), + /// + /// Original was GL_DEPTH32F_STENCIL8_NV = 0x8DAC + /// + Depth32fStencil8Nv = ((int)0x8DAC), + /// + /// Original was GL_COMPRESSED_RED_RGTC1 = 0x8DBB + /// + CompressedRedRgtc1 = ((int)0x8DBB), + /// + /// Original was GL_COMPRESSED_RED_RGTC1_EXT = 0x8DBB + /// + CompressedRedRgtc1Ext = ((int)0x8DBB), + /// + /// Original was GL_COMPRESSED_SIGNED_RED_RGTC1 = 0x8DBC + /// + CompressedSignedRedRgtc1 = ((int)0x8DBC), + /// + /// Original was GL_COMPRESSED_SIGNED_RED_RGTC1_EXT = 0x8DBC + /// + CompressedSignedRedRgtc1Ext = ((int)0x8DBC), + /// + /// Original was GL_COMPRESSED_RG_RGTC2 = 0x8DBD + /// + CompressedRgRgtc2 = ((int)0x8DBD), + /// + /// Original was GL_COMPRESSED_SIGNED_RG_RGTC2 = 0x8DBE + /// + CompressedSignedRgRgtc2 = ((int)0x8DBE), + /// + /// Original was GL_COMPRESSED_RGBA_BPTC_UNORM = 0x8E8C + /// + CompressedRgbaBptcUnorm = ((int)0x8E8C), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM = 0x8E8D + /// + CompressedSrgbAlphaBptcUnorm = ((int)0x8E8D), + /// + /// Original was GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT = 0x8E8E + /// + CompressedRgbBptcSignedFloat = ((int)0x8E8E), + /// + /// Original was GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT = 0x8E8F + /// + CompressedRgbBptcUnsignedFloat = ((int)0x8E8F), + /// + /// Original was GL_R8_SNORM = 0x8F94 + /// + R8Snorm = ((int)0x8F94), + /// + /// Original was GL_RG8_SNORM = 0x8F95 + /// + Rg8Snorm = ((int)0x8F95), + /// + /// Original was GL_RGB8_SNORM = 0x8F96 + /// + Rgb8Snorm = ((int)0x8F96), + /// + /// Original was GL_RGBA8_SNORM = 0x8F97 + /// + Rgba8Snorm = ((int)0x8F97), + /// + /// Original was GL_R16_SNORM = 0x8F98 + /// + R16Snorm = ((int)0x8F98), + /// + /// Original was GL_R16_SNORM_EXT = 0x8F98 + /// + R16SnormExt = ((int)0x8F98), + /// + /// Original was GL_RG16_SNORM = 0x8F99 + /// + Rg16Snorm = ((int)0x8F99), + /// + /// Original was GL_RG16_SNORM_EXT = 0x8F99 + /// + Rg16SnormExt = ((int)0x8F99), + /// + /// Original was GL_RGB16_SNORM = 0x8F9A + /// + Rgb16Snorm = ((int)0x8F9A), + /// + /// Original was GL_RGB16_SNORM_EXT = 0x8F9A + /// + Rgb16SnormExt = ((int)0x8F9A), + /// + /// Original was GL_RGB10_A2UI = 0x906F + /// + Rgb10A2ui = ((int)0x906F), + /// + /// Original was GL_COMPRESSED_R11_EAC = 0x9270 + /// + CompressedR11Eac = ((int)0x9270), + /// + /// Original was GL_COMPRESSED_SIGNED_R11_EAC = 0x9271 + /// + CompressedSignedR11Eac = ((int)0x9271), + /// + /// Original was GL_COMPRESSED_RG11_EAC = 0x9272 + /// + CompressedRg11Eac = ((int)0x9272), + /// + /// Original was GL_COMPRESSED_SIGNED_RG11_EAC = 0x9273 + /// + CompressedSignedRg11Eac = ((int)0x9273), + /// + /// Original was GL_COMPRESSED_RGB8_ETC2 = 0x9274 + /// + CompressedRgb8Etc2 = ((int)0x9274), + /// + /// Original was GL_COMPRESSED_SRGB8_ETC2 = 0x9275 + /// + CompressedSrgb8Etc2 = ((int)0x9275), + /// + /// Original was GL_COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2 = 0x9276 + /// + CompressedRgb8PunchthroughAlpha1Etc2 = ((int)0x9276), + /// + /// Original was GL_COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2 = 0x9277 + /// + CompressedSrgb8PunchthroughAlpha1Etc2 = ((int)0x9277), + /// + /// Original was GL_COMPRESSED_RGBA8_ETC2_EAC = 0x9278 + /// + CompressedRgba8Etc2Eac = ((int)0x9278), + /// + /// Original was GL_COMPRESSED_SRGB8_ALPHA8_ETC2_EAC = 0x9279 + /// + CompressedSrgb8Alpha8Etc2Eac = ((int)0x9279), + } + + /// + /// Used in GL.NV.GetInternalformatSample + /// + public enum InternalFormatPName : int + { + /// + /// Original was GL_SAMPLES = 0x80A9 + /// + Samples = ((int)0x80A9), + /// + /// Original was GL_GENERATE_MIPMAP = 0x8191 + /// + GenerateMipmap = ((int)0x8191), + /// + /// Original was GL_INTERNALFORMAT_SUPPORTED = 0x826F + /// + InternalformatSupported = ((int)0x826F), + /// + /// Original was GL_INTERNALFORMAT_PREFERRED = 0x8270 + /// + InternalformatPreferred = ((int)0x8270), + /// + /// Original was GL_INTERNALFORMAT_RED_SIZE = 0x8271 + /// + InternalformatRedSize = ((int)0x8271), + /// + /// Original was GL_INTERNALFORMAT_GREEN_SIZE = 0x8272 + /// + InternalformatGreenSize = ((int)0x8272), + /// + /// Original was GL_INTERNALFORMAT_BLUE_SIZE = 0x8273 + /// + InternalformatBlueSize = ((int)0x8273), + /// + /// Original was GL_INTERNALFORMAT_ALPHA_SIZE = 0x8274 + /// + InternalformatAlphaSize = ((int)0x8274), + /// + /// Original was GL_INTERNALFORMAT_DEPTH_SIZE = 0x8275 + /// + InternalformatDepthSize = ((int)0x8275), + /// + /// Original was GL_INTERNALFORMAT_STENCIL_SIZE = 0x8276 + /// + InternalformatStencilSize = ((int)0x8276), + /// + /// Original was GL_INTERNALFORMAT_SHARED_SIZE = 0x8277 + /// + InternalformatSharedSize = ((int)0x8277), + /// + /// Original was GL_INTERNALFORMAT_RED_TYPE = 0x8278 + /// + InternalformatRedType = ((int)0x8278), + /// + /// Original was GL_INTERNALFORMAT_GREEN_TYPE = 0x8279 + /// + InternalformatGreenType = ((int)0x8279), + /// + /// Original was GL_INTERNALFORMAT_BLUE_TYPE = 0x827A + /// + InternalformatBlueType = ((int)0x827A), + /// + /// Original was GL_INTERNALFORMAT_ALPHA_TYPE = 0x827B + /// + InternalformatAlphaType = ((int)0x827B), + /// + /// Original was GL_INTERNALFORMAT_DEPTH_TYPE = 0x827C + /// + InternalformatDepthType = ((int)0x827C), + /// + /// Original was GL_INTERNALFORMAT_STENCIL_TYPE = 0x827D + /// + InternalformatStencilType = ((int)0x827D), + /// + /// Original was GL_MAX_WIDTH = 0x827E + /// + MaxWidth = ((int)0x827E), + /// + /// Original was GL_MAX_HEIGHT = 0x827F + /// + MaxHeight = ((int)0x827F), + /// + /// Original was GL_MAX_DEPTH = 0x8280 + /// + MaxDepth = ((int)0x8280), + /// + /// Original was GL_MAX_LAYERS = 0x8281 + /// + MaxLayers = ((int)0x8281), + /// + /// Original was GL_COLOR_COMPONENTS = 0x8283 + /// + ColorComponents = ((int)0x8283), + /// + /// Original was GL_COLOR_RENDERABLE = 0x8286 + /// + ColorRenderable = ((int)0x8286), + /// + /// Original was GL_DEPTH_RENDERABLE = 0x8287 + /// + DepthRenderable = ((int)0x8287), + /// + /// Original was GL_STENCIL_RENDERABLE = 0x8288 + /// + StencilRenderable = ((int)0x8288), + /// + /// Original was GL_FRAMEBUFFER_RENDERABLE = 0x8289 + /// + FramebufferRenderable = ((int)0x8289), + /// + /// Original was GL_FRAMEBUFFER_RENDERABLE_LAYERED = 0x828A + /// + FramebufferRenderableLayered = ((int)0x828A), + /// + /// Original was GL_FRAMEBUFFER_BLEND = 0x828B + /// + FramebufferBlend = ((int)0x828B), + /// + /// Original was GL_READ_PIXELS = 0x828C + /// + ReadPixels = ((int)0x828C), + /// + /// Original was GL_READ_PIXELS_FORMAT = 0x828D + /// + ReadPixelsFormat = ((int)0x828D), + /// + /// Original was GL_READ_PIXELS_TYPE = 0x828E + /// + ReadPixelsType = ((int)0x828E), + /// + /// Original was GL_TEXTURE_IMAGE_FORMAT = 0x828F + /// + TextureImageFormat = ((int)0x828F), + /// + /// Original was GL_TEXTURE_IMAGE_TYPE = 0x8290 + /// + TextureImageType = ((int)0x8290), + /// + /// Original was GL_GET_TEXTURE_IMAGE_FORMAT = 0x8291 + /// + GetTextureImageFormat = ((int)0x8291), + /// + /// Original was GL_GET_TEXTURE_IMAGE_TYPE = 0x8292 + /// + GetTextureImageType = ((int)0x8292), + /// + /// Original was GL_MIPMAP = 0x8293 + /// + Mipmap = ((int)0x8293), + /// + /// Original was GL_AUTO_GENERATE_MIPMAP = 0x8295 + /// + AutoGenerateMipmap = ((int)0x8295), + /// + /// Original was GL_COLOR_ENCODING = 0x8296 + /// + ColorEncoding = ((int)0x8296), + /// + /// Original was GL_SRGB_READ = 0x8297 + /// + SrgbRead = ((int)0x8297), + /// + /// Original was GL_SRGB_WRITE = 0x8298 + /// + SrgbWrite = ((int)0x8298), + /// + /// Original was GL_FILTER = 0x829A + /// + Filter = ((int)0x829A), + /// + /// Original was GL_VERTEX_TEXTURE = 0x829B + /// + VertexTexture = ((int)0x829B), + /// + /// Original was GL_TESS_CONTROL_TEXTURE = 0x829C + /// + TessControlTexture = ((int)0x829C), + /// + /// Original was GL_TESS_EVALUATION_TEXTURE = 0x829D + /// + TessEvaluationTexture = ((int)0x829D), + /// + /// Original was GL_GEOMETRY_TEXTURE = 0x829E + /// + GeometryTexture = ((int)0x829E), + /// + /// Original was GL_FRAGMENT_TEXTURE = 0x829F + /// + FragmentTexture = ((int)0x829F), + /// + /// Original was GL_COMPUTE_TEXTURE = 0x82A0 + /// + ComputeTexture = ((int)0x82A0), + /// + /// Original was GL_TEXTURE_SHADOW = 0x82A1 + /// + TextureShadow = ((int)0x82A1), + /// + /// Original was GL_TEXTURE_GATHER = 0x82A2 + /// + TextureGather = ((int)0x82A2), + /// + /// Original was GL_TEXTURE_GATHER_SHADOW = 0x82A3 + /// + TextureGatherShadow = ((int)0x82A3), + /// + /// Original was GL_SHADER_IMAGE_LOAD = 0x82A4 + /// + ShaderImageLoad = ((int)0x82A4), + /// + /// Original was GL_SHADER_IMAGE_STORE = 0x82A5 + /// + ShaderImageStore = ((int)0x82A5), + /// + /// Original was GL_SHADER_IMAGE_ATOMIC = 0x82A6 + /// + ShaderImageAtomic = ((int)0x82A6), + /// + /// Original was GL_IMAGE_TEXEL_SIZE = 0x82A7 + /// + ImageTexelSize = ((int)0x82A7), + /// + /// Original was GL_IMAGE_COMPATIBILITY_CLASS = 0x82A8 + /// + ImageCompatibilityClass = ((int)0x82A8), + /// + /// Original was GL_IMAGE_PIXEL_FORMAT = 0x82A9 + /// + ImagePixelFormat = ((int)0x82A9), + /// + /// Original was GL_IMAGE_PIXEL_TYPE = 0x82AA + /// + ImagePixelType = ((int)0x82AA), + /// + /// Original was GL_SIMULTANEOUS_TEXTURE_AND_DEPTH_TEST = 0x82AC + /// + SimultaneousTextureAndDepthTest = ((int)0x82AC), + /// + /// Original was GL_SIMULTANEOUS_TEXTURE_AND_STENCIL_TEST = 0x82AD + /// + SimultaneousTextureAndStencilTest = ((int)0x82AD), + /// + /// Original was GL_SIMULTANEOUS_TEXTURE_AND_DEPTH_WRITE = 0x82AE + /// + SimultaneousTextureAndDepthWrite = ((int)0x82AE), + /// + /// Original was GL_SIMULTANEOUS_TEXTURE_AND_STENCIL_WRITE = 0x82AF + /// + SimultaneousTextureAndStencilWrite = ((int)0x82AF), + /// + /// Original was GL_TEXTURE_COMPRESSED_BLOCK_WIDTH = 0x82B1 + /// + TextureCompressedBlockWidth = ((int)0x82B1), + /// + /// Original was GL_TEXTURE_COMPRESSED_BLOCK_HEIGHT = 0x82B2 + /// + TextureCompressedBlockHeight = ((int)0x82B2), + /// + /// Original was GL_TEXTURE_COMPRESSED_BLOCK_SIZE = 0x82B3 + /// + TextureCompressedBlockSize = ((int)0x82B3), + /// + /// Original was GL_CLEAR_BUFFER = 0x82B4 + /// + ClearBuffer = ((int)0x82B4), + /// + /// Original was GL_TEXTURE_VIEW = 0x82B5 + /// + TextureView = ((int)0x82B5), + /// + /// Original was GL_VIEW_COMPATIBILITY_CLASS = 0x82B6 + /// + ViewCompatibilityClass = ((int)0x82B6), + /// + /// Original was GL_TEXTURE_COMPRESSED = 0x86A1 + /// + TextureCompressed = ((int)0x86A1), + /// + /// Original was GL_IMAGE_FORMAT_COMPATIBILITY_TYPE = 0x90C7 + /// + ImageFormatCompatibilityType = ((int)0x90C7), + /// + /// Original was GL_CLEAR_TEXTURE = 0x9365 + /// + ClearTexture = ((int)0x9365), + /// + /// Original was GL_NUM_SAMPLE_COUNTS = 0x9380 + /// + NumSampleCounts = ((int)0x9380), } /// @@ -20502,6 +24953,21 @@ namespace OpenTK.Graphics.ES20 ContextFlagNoErrorBitKhr = ((int)0x00000008), } + /// + /// Not used directly. + /// + public enum KhrParallelShaderCompile : int + { + /// + /// Original was GL_MAX_SHADER_COMPILER_THREADS_KHR = 0x91B0 + /// + MaxShaderCompilerThreadsKhr = ((int)0x91B0), + /// + /// Original was GL_COMPLETION_STATUS_KHR = 0x91B1 + /// + CompletionStatusKhr = ((int)0x91B1), + } + /// /// Not used directly. /// @@ -21172,7 +25638,7 @@ namespace OpenTK.Graphics.ES20 } /// - /// Not used directly. + /// Used in GL.Ext.BufferStorage, GL.Ext.BufferStorageExternal and 1 other function /// [Flags] public enum MapBufferUsageMask : int @@ -21230,17 +25696,64 @@ namespace OpenTK.Graphics.ES20 /// MapPersistentBit = ((int)0x0040), /// + /// Original was GL_MAP_PERSISTENT_BIT_EXT = 0x0040 + /// + MapPersistentBitExt = ((int)0x0040), + /// /// Original was GL_MAP_COHERENT_BIT = 0x0080 /// MapCoherentBit = ((int)0x0080), /// + /// Original was GL_MAP_COHERENT_BIT_EXT = 0x0080 + /// + MapCoherentBitExt = ((int)0x0080), + /// /// Original was GL_DYNAMIC_STORAGE_BIT = 0x0100 /// DynamicStorageBit = ((int)0x0100), /// + /// Original was GL_DYNAMIC_STORAGE_BIT_EXT = 0x0100 + /// + DynamicStorageBitExt = ((int)0x0100), + /// /// Original was GL_CLIENT_STORAGE_BIT = 0x0200 /// ClientStorageBit = ((int)0x0200), + /// + /// Original was GL_CLIENT_STORAGE_BIT_EXT = 0x0200 + /// + ClientStorageBitExt = ((int)0x0200), + /// + /// Original was GL_SPARSE_STORAGE_BIT_ARB = 0x0400 + /// + SparseStorageBitArb = ((int)0x0400), + /// + /// Original was GL_LGPU_SEPARATE_STORAGE_BIT_NVX = 0x0800 + /// + LgpuSeparateStorageBitNvx = ((int)0x0800), + /// + /// Original was GL_PER_GPU_STORAGE_BIT_NV = 0x0800 + /// + PerGpuStorageBitNv = ((int)0x0800), + } + + /// + /// Not used directly. + /// + public enum MapQuery : int + { + /// + /// Original was GL_COEFF = 0x0A00 + /// + Coeff = ((int)0x0A00), + /// + /// Original was GL_ORDER = 0x0A01 + /// + Order = ((int)0x0A01), + /// + /// Original was GL_DOMAIN = 0x0A02 + /// + Domain = ((int)0x0A02), } /// @@ -21404,7 +25917,7 @@ namespace OpenTK.Graphics.ES20 } /// - /// Not used directly. + /// Used in GL.Ext.MatrixFrustum, GL.Ext.MatrixLoad and 10 other functions /// public enum MatrixMode : int { @@ -21541,6 +26054,10 @@ namespace OpenTK.Graphics.ES20 /// ClientMappedBufferBarrierBit = ((int)0x00004000), /// + /// Original was GL_CLIENT_MAPPED_BUFFER_BARRIER_BIT_EXT = 0x00004000 + /// + ClientMappedBufferBarrierBitExt = ((int)0x00004000), + /// /// Original was GL_QUERY_BUFFER_BARRIER_BIT = 0x00008000 /// QueryBufferBarrierBit = ((int)0x00008000), @@ -21569,6 +26086,17 @@ namespace OpenTK.Graphics.ES20 ProtectedMemoryObjectExt = ((int)0x959B), } + /// + /// Not used directly. + /// + public enum MesaProgramBinaryFormats : int + { + /// + /// Original was GL_PROGRAM_BINARY_FORMAT_MESA = 0x875F + /// + ProgramBinaryFormatMesa = ((int)0x875F), + } + /// /// Not used directly. /// @@ -21896,6 +26424,25 @@ namespace OpenTK.Graphics.ES20 FactorMaxAmd = ((int)0x901D), } + /// + /// Not used directly. + /// + public enum NvClipSpaceWScaling : int + { + /// + /// Original was GL_VIEWPORT_POSITION_W_SCALE_NV = 0x937C + /// + ViewportPositionWScaleNv = ((int)0x937C), + /// + /// Original was GL_VIEWPORT_POSITION_W_SCALE_X_COEFF_NV = 0x937D + /// + ViewportPositionWScaleXCoeffNv = ((int)0x937D), + /// + /// Original was GL_VIEWPORT_POSITION_W_SCALE_Y_COEFF_NV = 0x937E + /// + ViewportPositionWScaleYCoeffNv = ((int)0x937E), + } + /// /// Not used directly. /// @@ -21942,6 +26489,17 @@ namespace OpenTK.Graphics.ES20 MaxSubpixelPrecisionBiasBitsNv = ((int)0x9349), } + /// + /// Not used directly. + /// + public enum NvConservativeRasterPreSnap : int + { + /// + /// Original was GL_CONSERVATIVE_RASTER_MODE_PRE_SNAP_NV = 0x9550 + /// + ConservativeRasterModePreSnapNv = ((int)0x9550), + } + /// /// Not used directly. /// @@ -23540,6 +28098,13 @@ namespace OpenTK.Graphics.ES20 CompressedSrgbAlphaS3tcDxt5Nv = ((int)0x8C4F), } + /// + /// Not used directly. + /// + public enum NvStereoViewRendering : int + { + } + /// /// Not used directly. /// @@ -23677,6 +28242,57 @@ namespace OpenTK.Graphics.ES20 { } + /// + /// Not used directly. + /// + public enum ObjectIdentifier : int + { + /// + /// Original was GL_TEXTURE = 0x1702 + /// + Texture = ((int)0x1702), + /// + /// Original was GL_VERTEX_ARRAY = 0x8074 + /// + VertexArray = ((int)0x8074), + /// + /// Original was GL_BUFFER = 0x82E0 + /// + Buffer = ((int)0x82E0), + /// + /// Original was GL_SHADER = 0x82E1 + /// + Shader = ((int)0x82E1), + /// + /// Original was GL_PROGRAM = 0x82E2 + /// + Program = ((int)0x82E2), + /// + /// Original was GL_QUERY = 0x82E3 + /// + Query = ((int)0x82E3), + /// + /// Original was GL_PROGRAM_PIPELINE = 0x82E4 + /// + ProgramPipeline = ((int)0x82E4), + /// + /// Original was GL_SAMPLER = 0x82E6 + /// + Sampler = ((int)0x82E6), + /// + /// Original was GL_FRAMEBUFFER = 0x8D40 + /// + Framebuffer = ((int)0x8D40), + /// + /// Original was GL_RENDERBUFFER = 0x8D41 + /// + Renderbuffer = ((int)0x8D41), + /// + /// Original was GL_TRANSFORM_FEEDBACK = 0x8E22 + /// + TransformFeedback = ((int)0x8E22), + } + /// /// Used in GL.GetObjectLabel, GL.ObjectLabel and 2 other functions /// @@ -25237,6 +29853,500 @@ namespace OpenTK.Graphics.ES20 { } + /// + /// Used in GL.Ext.PatchParameter, GL.Oes.PatchParameter + /// + public enum PatchParameterName : int + { + /// + /// Original was GL_PATCH_VERTICES = 0x8E72 + /// + PatchVertices = ((int)0x8E72), + /// + /// Original was GL_PATCH_DEFAULT_INNER_LEVEL = 0x8E73 + /// + PatchDefaultInnerLevel = ((int)0x8E73), + /// + /// Original was GL_PATCH_DEFAULT_OUTER_LEVEL = 0x8E74 + /// + PatchDefaultOuterLevel = ((int)0x8E74), + } + + /// + /// Used in GL.NV.GetPathColorGen, GL.NV.PathColorGen and 1 other function + /// + public enum PathColor : int + { + /// + /// Original was GL_PRIMARY_COLOR_NV = 0x852C + /// + PrimaryColorNv = ((int)0x852C), + /// + /// Original was GL_SECONDARY_COLOR_NV = 0x852D + /// + SecondaryColorNv = ((int)0x852D), + /// + /// Original was GL_PRIMARY_COLOR = 0x8577 + /// + PrimaryColor = ((int)0x8577), + } + + /// + /// Used in GL.NV.CoverFillPathInstanced, GL.NV.CoverFillPath and 2 other functions + /// + public enum PathCoverMode : int + { + /// + /// Original was GL_PATH_FILL_COVER_MODE_NV = 0x9082 + /// + PathFillCoverModeNv = ((int)0x9082), + /// + /// Original was GL_CONVEX_HULL_NV = 0x908B + /// + ConvexHullNv = ((int)0x908B), + /// + /// Original was GL_BOUNDING_BOX_NV = 0x908D + /// + BoundingBoxNv = ((int)0x908D), + /// + /// Original was GL_BOUNDING_BOX_OF_BOUNDING_BOXES_NV = 0x909C + /// + BoundingBoxOfBoundingBoxesNv = ((int)0x909C), + } + + /// + /// Used in GL.NV.CoverFillPathInstanced, GL.NV.CoverStrokePathInstanced and 5 other functions + /// + public enum PathElementType : int + { + /// + /// Original was GL_UTF8_NV = 0x909A + /// + Utf8Nv = ((int)0x909A), + /// + /// Original was GL_UTF16_NV = 0x909B + /// + Utf16Nv = ((int)0x909B), + } + + /// + /// Used in GL.NV.StencilFillPathInstanced, GL.NV.StencilFillPath + /// + public enum PathFillMode : int + { + /// + /// Original was GL_INVERT = 0x150A + /// + Invert = ((int)0x150A), + /// + /// Original was GL_PATH_FILL_MODE_NV = 0x9080 + /// + PathFillModeNv = ((int)0x9080), + /// + /// Original was GL_COUNT_UP_NV = 0x9088 + /// + CountUpNv = ((int)0x9088), + /// + /// Original was GL_COUNT_DOWN_NV = 0x9089 + /// + CountDownNv = ((int)0x9089), + } + + /// + /// Used in GL.NV.PathGlyphIndexArray, GL.NV.PathGlyphIndexRange and 2 other functions + /// + public enum PathFontStyle : int + { + /// + /// Original was GL_NONE = 0 + /// + None = ((int)0), + /// + /// Original was GL_BOLD_BIT_NV = 0x01 + /// + BoldBitNv = ((int)0x01), + /// + /// Original was GL_ITALIC_BIT_NV = 0x02 + /// + ItalicBitNv = ((int)0x02), + } + + /// + /// Used in GL.NV.PathGlyphRange, GL.NV.PathGlyph + /// + public enum PathFontTarget : int + { + /// + /// Original was GL_STANDARD_FONT_NAME_NV = 0x9072 + /// + StandardFontNameNv = ((int)0x9072), + /// + /// Original was GL_SYSTEM_FONT_NAME_NV = 0x9073 + /// + SystemFontNameNv = ((int)0x9073), + /// + /// Original was GL_FILE_NAME_NV = 0x9074 + /// + FileNameNv = ((int)0x9074), + } + + /// + /// Used in GL.NV.GetPathColorGen, GL.NV.GetPathTexGen and 3 other functions + /// + public enum PathGenMode : int + { + /// + /// Original was GL_NONE = 0 + /// + None = ((int)0), + /// + /// Original was GL_EYE_LINEAR = 0x2400 + /// + EyeLinear = ((int)0x2400), + /// + /// Original was GL_OBJECT_LINEAR = 0x2401 + /// + ObjectLinear = ((int)0x2401), + /// + /// Original was GL_CONSTANT = 0x8576 + /// + Constant = ((int)0x8576), + /// + /// Original was GL_PATH_OBJECT_BOUNDING_BOX_NV = 0x908A + /// + PathObjectBoundingBoxNv = ((int)0x908A), + } + + /// + /// Used in GL.NV.PathGlyphRange, GL.NV.PathGlyph + /// + public enum PathHandleMissingGlyphs : int + { + /// + /// Original was GL_SKIP_MISSING_GLYPH_NV = 0x90A9 + /// + SkipMissingGlyphNv = ((int)0x90A9), + /// + /// Original was GL_USE_MISSING_GLYPH_NV = 0x90AA + /// + UseMissingGlyphNv = ((int)0x90AA), + } + + /// + /// Used in GL.NV.GetPathSpacing + /// + public enum PathListMode : int + { + /// + /// Original was GL_ACCUM_ADJACENT_PAIRS_NV = 0x90AD + /// + AccumAdjacentPairsNv = ((int)0x90AD), + /// + /// Original was GL_ADJACENT_PAIRS_NV = 0x90AE + /// + AdjacentPairsNv = ((int)0x90AE), + /// + /// Original was GL_FIRST_TO_REST_NV = 0x90AF + /// + FirstToRestNv = ((int)0x90AF), + } + + /// + /// Used in GL.NV.GetPathMetricRange, GL.NV.GetPathMetric + /// + [Flags] + public enum PathMetricMask : int + { + /// + /// Original was GL_FONT_X_MIN_BOUNDS_BIT_NV = 0x00010000 + /// + FontXMinBoundsBitNv = ((int)0x00010000), + /// + /// Original was GL_FONT_Y_MIN_BOUNDS_BIT_NV = 0x00020000 + /// + FontYMinBoundsBitNv = ((int)0x00020000), + /// + /// Original was GL_FONT_X_MAX_BOUNDS_BIT_NV = 0x00040000 + /// + FontXMaxBoundsBitNv = ((int)0x00040000), + /// + /// Original was GL_FONT_Y_MAX_BOUNDS_BIT_NV = 0x00080000 + /// + FontYMaxBoundsBitNv = ((int)0x00080000), + /// + /// Original was GL_FONT_UNITS_PER_EM_BIT_NV = 0x00100000 + /// + FontUnitsPerEmBitNv = ((int)0x00100000), + /// + /// Original was GL_FONT_ASCENDER_BIT_NV = 0x00200000 + /// + FontAscenderBitNv = ((int)0x00200000), + /// + /// Original was GL_FONT_DESCENDER_BIT_NV = 0x00400000 + /// + FontDescenderBitNv = ((int)0x00400000), + /// + /// Original was GL_FONT_HEIGHT_BIT_NV = 0x00800000 + /// + FontHeightBitNv = ((int)0x00800000), + /// + /// Original was GL_GLYPH_WIDTH_BIT_NV = 0x01 + /// + GlyphWidthBitNv = ((int)0x01), + /// + /// Original was GL_FONT_MAX_ADVANCE_WIDTH_BIT_NV = 0x01000000 + /// + FontMaxAdvanceWidthBitNv = ((int)0x01000000), + /// + /// Original was GL_GLYPH_HEIGHT_BIT_NV = 0x02 + /// + GlyphHeightBitNv = ((int)0x02), + /// + /// Original was GL_FONT_MAX_ADVANCE_HEIGHT_BIT_NV = 0x02000000 + /// + FontMaxAdvanceHeightBitNv = ((int)0x02000000), + /// + /// Original was GL_GLYPH_HORIZONTAL_BEARING_X_BIT_NV = 0x04 + /// + GlyphHorizontalBearingXBitNv = ((int)0x04), + /// + /// Original was GL_FONT_UNDERLINE_POSITION_BIT_NV = 0x04000000 + /// + FontUnderlinePositionBitNv = ((int)0x04000000), + /// + /// Original was GL_GLYPH_HORIZONTAL_BEARING_Y_BIT_NV = 0x08 + /// + GlyphHorizontalBearingYBitNv = ((int)0x08), + /// + /// Original was GL_FONT_UNDERLINE_THICKNESS_BIT_NV = 0x08000000 + /// + FontUnderlineThicknessBitNv = ((int)0x08000000), + /// + /// Original was GL_GLYPH_HORIZONTAL_BEARING_ADVANCE_BIT_NV = 0x10 + /// + GlyphHorizontalBearingAdvanceBitNv = ((int)0x10), + /// + /// Original was GL_GLYPH_HAS_KERNING_BIT_NV = 0x100 + /// + GlyphHasKerningBitNv = ((int)0x100), + /// + /// Original was GL_FONT_HAS_KERNING_BIT_NV = 0x10000000 + /// + FontHasKerningBitNv = ((int)0x10000000), + /// + /// Original was GL_GLYPH_VERTICAL_BEARING_X_BIT_NV = 0x20 + /// + GlyphVerticalBearingXBitNv = ((int)0x20), + /// + /// Original was GL_FONT_NUM_GLYPH_INDICES_BIT_NV = 0x20000000 + /// + FontNumGlyphIndicesBitNv = ((int)0x20000000), + /// + /// Original was GL_GLYPH_VERTICAL_BEARING_Y_BIT_NV = 0x40 + /// + GlyphVerticalBearingYBitNv = ((int)0x40), + /// + /// Original was GL_GLYPH_VERTICAL_BEARING_ADVANCE_BIT_NV = 0x80 + /// + GlyphVerticalBearingAdvanceBitNv = ((int)0x80), + } + + /// + /// Used in GL.NV.GetPathParameter, GL.NV.PathParameter + /// + public enum PathParameter : int + { + /// + /// Original was GL_PATH_STROKE_WIDTH_NV = 0x9075 + /// + PathStrokeWidthNv = ((int)0x9075), + /// + /// Original was GL_PATH_END_CAPS_NV = 0x9076 + /// + PathEndCapsNv = ((int)0x9076), + /// + /// Original was GL_PATH_INITIAL_END_CAP_NV = 0x9077 + /// + PathInitialEndCapNv = ((int)0x9077), + /// + /// Original was GL_PATH_TERMINAL_END_CAP_NV = 0x9078 + /// + PathTerminalEndCapNv = ((int)0x9078), + /// + /// Original was GL_PATH_JOIN_STYLE_NV = 0x9079 + /// + PathJoinStyleNv = ((int)0x9079), + /// + /// Original was GL_PATH_MITER_LIMIT_NV = 0x907A + /// + PathMiterLimitNv = ((int)0x907A), + /// + /// Original was GL_PATH_DASH_CAPS_NV = 0x907B + /// + PathDashCapsNv = ((int)0x907B), + /// + /// Original was GL_PATH_INITIAL_DASH_CAP_NV = 0x907C + /// + PathInitialDashCapNv = ((int)0x907C), + /// + /// Original was GL_PATH_TERMINAL_DASH_CAP_NV = 0x907D + /// + PathTerminalDashCapNv = ((int)0x907D), + /// + /// Original was GL_PATH_DASH_OFFSET_NV = 0x907E + /// + PathDashOffsetNv = ((int)0x907E), + /// + /// Original was GL_PATH_CLIENT_LENGTH_NV = 0x907F + /// + PathClientLengthNv = ((int)0x907F), + /// + /// Original was GL_PATH_FILL_MODE_NV = 0x9080 + /// + PathFillModeNv = ((int)0x9080), + /// + /// Original was GL_PATH_FILL_MASK_NV = 0x9081 + /// + PathFillMaskNv = ((int)0x9081), + /// + /// Original was GL_PATH_FILL_COVER_MODE_NV = 0x9082 + /// + PathFillCoverModeNv = ((int)0x9082), + /// + /// Original was GL_PATH_STROKE_COVER_MODE_NV = 0x9083 + /// + PathStrokeCoverModeNv = ((int)0x9083), + /// + /// Original was GL_PATH_STROKE_MASK_NV = 0x9084 + /// + PathStrokeMaskNv = ((int)0x9084), + /// + /// Original was GL_PATH_OBJECT_BOUNDING_BOX_NV = 0x908A + /// + PathObjectBoundingBoxNv = ((int)0x908A), + /// + /// Original was GL_PATH_COMMAND_COUNT_NV = 0x909D + /// + PathCommandCountNv = ((int)0x909D), + /// + /// Original was GL_PATH_COORD_COUNT_NV = 0x909E + /// + PathCoordCountNv = ((int)0x909E), + /// + /// Original was GL_PATH_DASH_ARRAY_COUNT_NV = 0x909F + /// + PathDashArrayCountNv = ((int)0x909F), + /// + /// Original was GL_PATH_COMPUTED_LENGTH_NV = 0x90A0 + /// + PathComputedLengthNv = ((int)0x90A0), + /// + /// Original was GL_PATH_FILL_BOUNDING_BOX_NV = 0x90A1 + /// + PathFillBoundingBoxNv = ((int)0x90A1), + /// + /// Original was GL_PATH_STROKE_BOUNDING_BOX_NV = 0x90A2 + /// + PathStrokeBoundingBoxNv = ((int)0x90A2), + /// + /// Original was GL_PATH_DASH_OFFSET_RESET_NV = 0x90B4 + /// + PathDashOffsetResetNv = ((int)0x90B4), + } + + /// + /// Used in GL.NV.PathString + /// + public enum PathStringFormat : int + { + /// + /// Original was GL_PATH_FORMAT_SVG_NV = 0x9070 + /// + PathFormatSvgNv = ((int)0x9070), + /// + /// Original was GL_PATH_FORMAT_PS_NV = 0x9071 + /// + PathFormatPsNv = ((int)0x9071), + } + + /// + /// Used in GL.NV.CoverFillPathInstanced, GL.NV.CoverStrokePathInstanced and 4 other functions + /// + public enum PathTransformType : int + { + /// + /// Original was GL_NONE = 0 + /// + None = ((int)0), + /// + /// Original was GL_TRANSLATE_X_NV = 0x908E + /// + TranslateXNv = ((int)0x908E), + /// + /// Original was GL_TRANSLATE_Y_NV = 0x908F + /// + TranslateYNv = ((int)0x908F), + /// + /// Original was GL_TRANSLATE_2D_NV = 0x9090 + /// + Translate2DNv = ((int)0x9090), + /// + /// Original was GL_TRANSLATE_3D_NV = 0x9091 + /// + Translate3DNv = ((int)0x9091), + /// + /// Original was GL_AFFINE_2D_NV = 0x9092 + /// + Affine2DNv = ((int)0x9092), + /// + /// Original was GL_AFFINE_3D_NV = 0x9094 + /// + Affine3DNv = ((int)0x9094), + /// + /// Original was GL_TRANSPOSE_AFFINE_2D_NV = 0x9096 + /// + TransposeAffine2DNv = ((int)0x9096), + /// + /// Original was GL_TRANSPOSE_AFFINE_3D_NV = 0x9098 + /// + TransposeAffine3DNv = ((int)0x9098), + } + + /// + /// Used in GL.Ext.GetProgramPipeline + /// + public enum PipelineParameterName : int + { + /// + /// Original was GL_ACTIVE_PROGRAM = 0x8259 + /// + ActiveProgram = ((int)0x8259), + /// + /// Original was GL_FRAGMENT_SHADER = 0x8B30 + /// + FragmentShader = ((int)0x8B30), + /// + /// Original was GL_VERTEX_SHADER = 0x8B31 + /// + VertexShader = ((int)0x8B31), + /// + /// Original was GL_INFO_LOG_LENGTH = 0x8B84 + /// + InfoLogLength = ((int)0x8B84), + /// + /// Original was GL_GEOMETRY_SHADER = 0x8DD9 + /// + GeometryShader = ((int)0x8DD9), + /// + /// Original was GL_TESS_EVALUATION_SHADER = 0x8E87 + /// + TessEvaluationShader = ((int)0x8E87), + /// + /// Original was GL_TESS_CONTROL_SHADER = 0x8E88 + /// + TessControlShader = ((int)0x8E88), + } + /// /// Not used directly. /// @@ -25269,7 +30379,7 @@ namespace OpenTK.Graphics.ES20 } /// - /// Used in GL.CompressedTexSubImage2D, GL.ReadnPixels and 6 other functions + /// Used in GL.CompressedTexSubImage2D, GL.ReadnPixels and 12 other functions /// public enum PixelFormat : int { @@ -25876,7 +30986,7 @@ namespace OpenTK.Graphics.ES20 } /// - /// Used in GL.ReadnPixels, GL.ReadPixels and 5 other functions + /// Used in GL.ReadnPixels, GL.ReadPixels and 9 other functions /// public enum PixelType : int { @@ -26048,6 +31158,37 @@ namespace OpenTK.Graphics.ES20 Fill = ((int)0x1B02), } + /// + /// Not used directly. + /// + public enum PrecisionType : int + { + /// + /// Original was GL_LOW_FLOAT = 0x8DF0 + /// + LowFloat = ((int)0x8DF0), + /// + /// Original was GL_MEDIUM_FLOAT = 0x8DF1 + /// + MediumFloat = ((int)0x8DF1), + /// + /// Original was GL_HIGH_FLOAT = 0x8DF2 + /// + HighFloat = ((int)0x8DF2), + /// + /// Original was GL_LOW_INT = 0x8DF3 + /// + LowInt = ((int)0x8DF3), + /// + /// Original was GL_MEDIUM_INT = 0x8DF4 + /// + MediumInt = ((int)0x8DF4), + /// + /// Original was GL_HIGH_INT = 0x8DF5 + /// + HighInt = ((int)0x8DF5), + } + /// /// Used in GL.Angle.DrawArraysInstanced, GL.Angle.DrawElementsInstanced and 22 other functions /// @@ -26155,6 +31296,116 @@ namespace OpenTK.Graphics.ES20 PatchesExt = ((int)0x000E), } + /// + /// Used in GL.Ext.GetProgramResourceLocationIndex, GL.NV.GetProgramResource + /// + public enum ProgramInterface : int + { + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER = 0x8C8E + /// + TransformFeedbackBuffer = ((int)0x8C8E), + /// + /// Original was GL_UNIFORM = 0x92E1 + /// + Uniform = ((int)0x92E1), + /// + /// Original was GL_UNIFORM_BLOCK = 0x92E2 + /// + UniformBlock = ((int)0x92E2), + /// + /// Original was GL_PROGRAM_INPUT = 0x92E3 + /// + ProgramInput = ((int)0x92E3), + /// + /// Original was GL_PROGRAM_OUTPUT = 0x92E4 + /// + ProgramOutput = ((int)0x92E4), + /// + /// Original was GL_BUFFER_VARIABLE = 0x92E5 + /// + BufferVariable = ((int)0x92E5), + /// + /// Original was GL_SHADER_STORAGE_BLOCK = 0x92E6 + /// + ShaderStorageBlock = ((int)0x92E6), + /// + /// Original was GL_VERTEX_SUBROUTINE = 0x92E8 + /// + VertexSubroutine = ((int)0x92E8), + /// + /// Original was GL_TESS_CONTROL_SUBROUTINE = 0x92E9 + /// + TessControlSubroutine = ((int)0x92E9), + /// + /// Original was GL_TESS_EVALUATION_SUBROUTINE = 0x92EA + /// + TessEvaluationSubroutine = ((int)0x92EA), + /// + /// Original was GL_GEOMETRY_SUBROUTINE = 0x92EB + /// + GeometrySubroutine = ((int)0x92EB), + /// + /// Original was GL_FRAGMENT_SUBROUTINE = 0x92EC + /// + FragmentSubroutine = ((int)0x92EC), + /// + /// Original was GL_COMPUTE_SUBROUTINE = 0x92ED + /// + ComputeSubroutine = ((int)0x92ED), + /// + /// Original was GL_VERTEX_SUBROUTINE_UNIFORM = 0x92EE + /// + VertexSubroutineUniform = ((int)0x92EE), + /// + /// Original was GL_TESS_CONTROL_SUBROUTINE_UNIFORM = 0x92EF + /// + TessControlSubroutineUniform = ((int)0x92EF), + /// + /// Original was GL_TESS_EVALUATION_SUBROUTINE_UNIFORM = 0x92F0 + /// + TessEvaluationSubroutineUniform = ((int)0x92F0), + /// + /// Original was GL_GEOMETRY_SUBROUTINE_UNIFORM = 0x92F1 + /// + GeometrySubroutineUniform = ((int)0x92F1), + /// + /// Original was GL_FRAGMENT_SUBROUTINE_UNIFORM = 0x92F2 + /// + FragmentSubroutineUniform = ((int)0x92F2), + /// + /// Original was GL_COMPUTE_SUBROUTINE_UNIFORM = 0x92F3 + /// + ComputeSubroutineUniform = ((int)0x92F3), + /// + /// Original was GL_TRANSFORM_FEEDBACK_VARYING = 0x92F4 + /// + TransformFeedbackVarying = ((int)0x92F4), + } + + /// + /// Not used directly. + /// + public enum ProgramInterfacePName : int + { + /// + /// Original was GL_ACTIVE_RESOURCES = 0x92F5 + /// + ActiveResources = ((int)0x92F5), + /// + /// Original was GL_MAX_NAME_LENGTH = 0x92F6 + /// + MaxNameLength = ((int)0x92F6), + /// + /// Original was GL_MAX_NUM_ACTIVE_VARIABLES = 0x92F7 + /// + MaxNumActiveVariables = ((int)0x92F7), + /// + /// Original was GL_MAX_NUM_COMPATIBLE_SUBROUTINES = 0x92F8 + /// + MaxNumCompatibleSubroutines = ((int)0x92F8), + } + /// /// Used in GL.GetProgram /// @@ -26213,6 +31464,135 @@ namespace OpenTK.Graphics.ES20 ProgramBinaryRetrievableHint = ((int)0x8257), } + /// + /// Not used directly. + /// + public enum ProgramParameterPName : int + { + /// + /// Original was GL_PROGRAM_BINARY_RETRIEVABLE_HINT = 0x8257 + /// + ProgramBinaryRetrievableHint = ((int)0x8257), + /// + /// Original was GL_PROGRAM_SEPARABLE = 0x8258 + /// + ProgramSeparable = ((int)0x8258), + } + + /// + /// Not used directly. + /// + public enum ProgramPropertyArb : int + { + /// + /// Original was GL_COMPUTE_WORK_GROUP_SIZE = 0x8267 + /// + ComputeWorkGroupSize = ((int)0x8267), + /// + /// Original was GL_PROGRAM_BINARY_LENGTH = 0x8741 + /// + ProgramBinaryLength = ((int)0x8741), + /// + /// Original was GL_GEOMETRY_VERTICES_OUT = 0x8916 + /// + GeometryVerticesOut = ((int)0x8916), + /// + /// Original was GL_GEOMETRY_INPUT_TYPE = 0x8917 + /// + GeometryInputType = ((int)0x8917), + /// + /// Original was GL_GEOMETRY_OUTPUT_TYPE = 0x8918 + /// + GeometryOutputType = ((int)0x8918), + /// + /// Original was GL_ACTIVE_UNIFORM_BLOCK_MAX_NAME_LENGTH = 0x8A35 + /// + ActiveUniformBlockMaxNameLength = ((int)0x8A35), + /// + /// Original was GL_ACTIVE_UNIFORM_BLOCKS = 0x8A36 + /// + ActiveUniformBlocks = ((int)0x8A36), + /// + /// Original was GL_DELETE_STATUS = 0x8B80 + /// + DeleteStatus = ((int)0x8B80), + /// + /// Original was GL_LINK_STATUS = 0x8B82 + /// + LinkStatus = ((int)0x8B82), + /// + /// Original was GL_VALIDATE_STATUS = 0x8B83 + /// + ValidateStatus = ((int)0x8B83), + /// + /// Original was GL_INFO_LOG_LENGTH = 0x8B84 + /// + InfoLogLength = ((int)0x8B84), + /// + /// Original was GL_ATTACHED_SHADERS = 0x8B85 + /// + AttachedShaders = ((int)0x8B85), + /// + /// Original was GL_ACTIVE_UNIFORMS = 0x8B86 + /// + ActiveUniforms = ((int)0x8B86), + /// + /// Original was GL_ACTIVE_UNIFORM_MAX_LENGTH = 0x8B87 + /// + ActiveUniformMaxLength = ((int)0x8B87), + /// + /// Original was GL_ACTIVE_ATTRIBUTES = 0x8B89 + /// + ActiveAttributes = ((int)0x8B89), + /// + /// Original was GL_ACTIVE_ATTRIBUTE_MAX_LENGTH = 0x8B8A + /// + ActiveAttributeMaxLength = ((int)0x8B8A), + /// + /// Original was GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH = 0x8C76 + /// + TransformFeedbackVaryingMaxLength = ((int)0x8C76), + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER_MODE = 0x8C7F + /// + TransformFeedbackBufferMode = ((int)0x8C7F), + /// + /// Original was GL_TRANSFORM_FEEDBACK_VARYINGS = 0x8C83 + /// + TransformFeedbackVaryings = ((int)0x8C83), + /// + /// Original was GL_ACTIVE_ATOMIC_COUNTER_BUFFERS = 0x92D9 + /// + ActiveAtomicCounterBuffers = ((int)0x92D9), + } + + /// + /// Not used directly. + /// + public enum ProgramStagePName : int + { + /// + /// Original was GL_ACTIVE_SUBROUTINES = 0x8DE5 + /// + ActiveSubroutines = ((int)0x8DE5), + /// + /// Original was GL_ACTIVE_SUBROUTINE_UNIFORMS = 0x8DE6 + /// + ActiveSubroutineUniforms = ((int)0x8DE6), + /// + /// Original was GL_ACTIVE_SUBROUTINE_UNIFORM_LOCATIONS = 0x8E47 + /// + ActiveSubroutineUniformLocations = ((int)0x8E47), + /// + /// Original was GL_ACTIVE_SUBROUTINE_MAX_LENGTH = 0x8E48 + /// + ActiveSubroutineMaxLength = ((int)0x8E48), + /// + /// Original was GL_ACTIVE_SUBROUTINE_UNIFORM_MAX_LENGTH = 0x8E49 + /// + ActiveSubroutineUniformMaxLength = ((int)0x8E49), + } + /// /// Not used directly. /// @@ -26357,6 +31737,41 @@ namespace OpenTK.Graphics.ES20 FramebufferFetchNoncoherentQcom = ((int)0x96A2), } + /// + /// Not used directly. + /// + public enum QcomTextureFoveated : int + { + /// + /// Original was GL_FOVEATION_ENABLE_BIT_QCOM = 0x00000001 + /// + FoveationEnableBitQcom = ((int)0x00000001), + /// + /// Original was GL_FOVEATION_SCALED_BIN_METHOD_BIT_QCOM = 0x00000002 + /// + FoveationScaledBinMethodBitQcom = ((int)0x00000002), + /// + /// Original was GL_TEXTURE_FOVEATED_FEATURE_BITS_QCOM = 0x8BFB + /// + TextureFoveatedFeatureBitsQcom = ((int)0x8BFB), + /// + /// Original was GL_TEXTURE_FOVEATED_MIN_PIXEL_DENSITY_QCOM = 0x8BFC + /// + TextureFoveatedMinPixelDensityQcom = ((int)0x8BFC), + /// + /// Original was GL_TEXTURE_FOVEATED_FEATURE_QUERY_QCOM = 0x8BFD + /// + TextureFoveatedFeatureQueryQcom = ((int)0x8BFD), + /// + /// Original was GL_TEXTURE_FOVEATED_NUM_FOCAL_POINTS_QUERY_QCOM = 0x8BFE + /// + TextureFoveatedNumFocalPointsQueryQcom = ((int)0x8BFE), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_FOVEATION_QCOM = 0x8BFF + /// + FramebufferIncompleteFoveationQcom = ((int)0x8BFF), + } + /// /// Not used directly. /// @@ -26515,26 +31930,88 @@ namespace OpenTK.Graphics.ES20 } /// - /// Used in GL.Ext.BeginQuery, GL.Ext.EndQuery and 1 other function + /// Not used directly. + /// + public enum QueryObjectParameterName : int + { + /// + /// Original was GL_QUERY_TARGET = 0x82EA + /// + QueryTarget = ((int)0x82EA), + /// + /// Original was GL_QUERY_RESULT = 0x8866 + /// + QueryResult = ((int)0x8866), + /// + /// Original was GL_QUERY_RESULT_AVAILABLE = 0x8867 + /// + QueryResultAvailable = ((int)0x8867), + /// + /// Original was GL_QUERY_RESULT_NO_WAIT = 0x9194 + /// + QueryResultNoWait = ((int)0x9194), + } + + /// + /// Not used directly. + /// + public enum QueryParameterName : int + { + /// + /// Original was GL_QUERY_COUNTER_BITS = 0x8864 + /// + QueryCounterBits = ((int)0x8864), + /// + /// Original was GL_CURRENT_QUERY = 0x8865 + /// + CurrentQuery = ((int)0x8865), + } + + /// + /// Used in GL.Ext.BeginQuery, GL.Ext.EndQuery and 2 other functions /// public enum QueryTarget : int { + /// + /// Original was GL_TIME_ELAPSED = 0x88BF + /// + TimeElapsed = ((int)0x88BF), /// /// Original was GL_TIME_ELAPSED_EXT = 0x88BF /// TimeElapsedExt = ((int)0x88BF), /// + /// Original was GL_SAMPLES_PASSED = 0x8914 + /// + SamplesPassed = ((int)0x8914), + /// + /// Original was GL_ANY_SAMPLES_PASSED = 0x8C2F + /// + AnySamplesPassed = ((int)0x8C2F), + /// /// Original was GL_ANY_SAMPLES_PASSED_EXT = 0x8C2F /// AnySamplesPassedExt = ((int)0x8C2F), /// + /// Original was GL_PRIMITIVES_GENERATED = 0x8C87 + /// + PrimitivesGenerated = ((int)0x8C87), + /// + /// Original was GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN = 0x8C88 + /// + TransformFeedbackPrimitivesWritten = ((int)0x8C88), + /// + /// Original was GL_ANY_SAMPLES_PASSED_CONSERVATIVE = 0x8D6A + /// + AnySamplesPassedConservative = ((int)0x8D6A), + /// /// Original was GL_ANY_SAMPLES_PASSED_CONSERVATIVE_EXT = 0x8D6A /// AnySamplesPassedConservativeExt = ((int)0x8D6A), } /// - /// Not used directly. + /// Used in GL.Ext.ReadBufferIndexed /// public enum ReadBufferMode : int { @@ -26621,41 +32098,45 @@ namespace OpenTK.Graphics.ES20 public enum RenderbufferParameterName : int { /// - /// Original was GL_RenderbufferWidth = 0X8d42 + /// Original was GL_RENDERBUFFER_SAMPLES = 0x8CAB /// - RenderbufferWidth = ((int)0X8d42), + RenderbufferSamples = ((int)0x8CAB), /// - /// Original was GL_RenderbufferHeight = 0X8d43 + /// Original was GL_RENDERBUFFER_WIDTH = 0x8D42 /// - RenderbufferHeight = ((int)0X8d43), + RenderbufferWidth = ((int)0x8D42), /// - /// Original was GL_RenderbufferInternalFormat = 0X8d44 + /// Original was GL_RENDERBUFFER_HEIGHT = 0x8D43 /// - RenderbufferInternalFormat = ((int)0X8d44), + RenderbufferHeight = ((int)0x8D43), /// - /// Original was GL_RenderbufferRedSize = 0X8d50 + /// Original was GL_RENDERBUFFER_INTERNAL_FORMAT = 0x8D44 /// - RenderbufferRedSize = ((int)0X8d50), + RenderbufferInternalFormat = ((int)0x8D44), /// - /// Original was GL_RenderbufferGreenSize = 0X8d51 + /// Original was GL_RENDERBUFFER_RED_SIZE = 0x8D50 /// - RenderbufferGreenSize = ((int)0X8d51), + RenderbufferRedSize = ((int)0x8D50), /// - /// Original was GL_RenderbufferBlueSize = 0X8d52 + /// Original was GL_RENDERBUFFER_GREEN_SIZE = 0x8D51 /// - RenderbufferBlueSize = ((int)0X8d52), + RenderbufferGreenSize = ((int)0x8D51), /// - /// Original was GL_RenderbufferAlphaSize = 0X8d53 + /// Original was GL_RENDERBUFFER_BLUE_SIZE = 0x8D52 /// - RenderbufferAlphaSize = ((int)0X8d53), + RenderbufferBlueSize = ((int)0x8D52), /// - /// Original was GL_RenderbufferDepthSize = 0X8d54 + /// Original was GL_RENDERBUFFER_ALPHA_SIZE = 0x8D53 /// - RenderbufferDepthSize = ((int)0X8d54), + RenderbufferAlphaSize = ((int)0x8D53), /// - /// Original was GL_RenderbufferStencilSize = 0X8d55 + /// Original was GL_RENDERBUFFER_DEPTH_SIZE = 0x8D54 /// - RenderbufferStencilSize = ((int)0X8d55), + RenderbufferDepthSize = ((int)0x8D54), + /// + /// Original was GL_RENDERBUFFER_STENCIL_SIZE = 0x8D55 + /// + RenderbufferStencilSize = ((int)0x8D55), } /// @@ -26774,6 +32255,53 @@ namespace OpenTK.Graphics.ES20 Gl4Pass3Sgis = ((int)0x80A7), } + /// + /// Used in GL.Ext.GetSamplerParameterI, GL.Ext.SamplerParameterI and 2 other functions + /// + public enum SamplerParameterName : int + { + /// + /// Original was GL_TEXTURE_BORDER_COLOR = 0x1004 + /// + TextureBorderColor = ((int)0x1004), + /// + /// Original was GL_TEXTURE_MAG_FILTER = 0x2800 + /// + TextureMagFilter = ((int)0x2800), + /// + /// Original was GL_TEXTURE_MIN_FILTER = 0x2801 + /// + TextureMinFilter = ((int)0x2801), + /// + /// Original was GL_TEXTURE_WRAP_S = 0x2802 + /// + TextureWrapS = ((int)0x2802), + /// + /// Original was GL_TEXTURE_WRAP_T = 0x2803 + /// + TextureWrapT = ((int)0x2803), + /// + /// Original was GL_TEXTURE_WRAP_R = 0x8072 + /// + TextureWrapR = ((int)0x8072), + /// + /// Original was GL_TEXTURE_MIN_LOD = 0x813A + /// + TextureMinLod = ((int)0x813A), + /// + /// Original was GL_TEXTURE_MAX_LOD = 0x813B + /// + TextureMaxLod = ((int)0x813B), + /// + /// Original was GL_TEXTURE_COMPARE_MODE = 0x884C + /// + TextureCompareMode = ((int)0x884C), + /// + /// Original was GL_TEXTURE_COMPARE_FUNC = 0x884D + /// + TextureCompareFunc = ((int)0x884D), + } + /// /// Used in GL.Ext.GetSemaphoreParameter, GL.Ext.SemaphoreParameter /// @@ -26834,6 +32362,33 @@ namespace OpenTK.Graphics.ES20 ShaderSourceLength = ((int)0X8b88), } + /// + /// Not used directly. + /// + public enum ShaderParameterName : int + { + /// + /// Original was GL_SHADER_TYPE = 0x8B4F + /// + ShaderType = ((int)0x8B4F), + /// + /// Original was GL_DELETE_STATUS = 0x8B80 + /// + DeleteStatus = ((int)0x8B80), + /// + /// Original was GL_COMPILE_STATUS = 0x8B81 + /// + CompileStatus = ((int)0x8B81), + /// + /// Original was GL_INFO_LOG_LENGTH = 0x8B84 + /// + InfoLogLength = ((int)0x8B84), + /// + /// Original was GL_SHADER_SOURCE_LENGTH = 0x8B88 + /// + ShaderSourceLength = ((int)0x8B88), + } + /// /// Used in GL.GetShaderPrecisionFormat /// @@ -26866,18 +32421,42 @@ namespace OpenTK.Graphics.ES20 } /// - /// Used in GL.CreateShader, GL.GetShaderPrecisionFormat + /// Used in GL.CreateShader, GL.GetShaderPrecisionFormat and 2 other functions /// public enum ShaderType : int { /// - /// Original was GL_FragmentShader = 0X8b30 + /// Original was GL_FRAGMENT_SHADER = 0x8B30 /// - FragmentShader = ((int)0X8b30), + FragmentShader = ((int)0x8B30), /// - /// Original was GL_VertexShader = 0X8b31 + /// Original was GL_FRAGMENT_SHADER_ARB = 0x8B30 /// - VertexShader = ((int)0X8b31), + FragmentShaderArb = ((int)0x8B30), + /// + /// Original was GL_VERTEX_SHADER = 0x8B31 + /// + VertexShader = ((int)0x8B31), + /// + /// Original was GL_VERTEX_SHADER_ARB = 0x8B31 + /// + VertexShaderArb = ((int)0x8B31), + /// + /// Original was GL_GEOMETRY_SHADER = 0x8DD9 + /// + GeometryShader = ((int)0x8DD9), + /// + /// Original was GL_TESS_EVALUATION_SHADER = 0x8E87 + /// + TessEvaluationShader = ((int)0x8E87), + /// + /// Original was GL_TESS_CONTROL_SHADER = 0x8E88 + /// + TessControlShader = ((int)0x8E88), + /// + /// Original was GL_COMPUTE_SHADER = 0x91B9 + /// + ComputeShader = ((int)0x91B9), } /// @@ -27137,40 +32716,122 @@ namespace OpenTK.Graphics.ES20 ShadingLanguageVersion = ((int)0x8B8C), } + /// + /// Not used directly. + /// + public enum SubroutineParameterName : int + { + /// + /// Original was GL_UNIFORM_SIZE = 0x8A38 + /// + UniformSize = ((int)0x8A38), + /// + /// Original was GL_UNIFORM_NAME_LENGTH = 0x8A39 + /// + UniformNameLength = ((int)0x8A39), + /// + /// Original was GL_NUM_COMPATIBLE_SUBROUTINES = 0x8E4A + /// + NumCompatibleSubroutines = ((int)0x8E4A), + /// + /// Original was GL_COMPATIBLE_SUBROUTINES = 0x8E4B + /// + CompatibleSubroutines = ((int)0x8E4B), + } + /// /// Used in GL.Apple.FenceSync /// public enum SyncCondition : int { + /// + /// Original was GL_SYNC_GPU_COMMANDS_COMPLETE = 0x9117 + /// + SyncGpuCommandsComplete = ((int)0x9117), /// /// Original was GL_SYNC_GPU_COMMANDS_COMPLETE_APPLE = 0x9117 /// SyncGpuCommandsCompleteApple = ((int)0x9117), } + /// + /// Not used directly. + /// + [Flags] + public enum SyncObjectMask : int + { + /// + /// Original was GL_SYNC_FLUSH_COMMANDS_BIT = 0x00000001 + /// + SyncFlushCommandsBit = ((int)0x00000001), + /// + /// Original was GL_SYNC_FLUSH_COMMANDS_BIT_APPLE = 0x00000001 + /// + SyncFlushCommandsBitApple = ((int)0x00000001), + } + /// /// Used in GL.Apple.GetSync /// public enum SyncParameterName : int { + /// + /// Original was GL_OBJECT_TYPE = 0x9112 + /// + ObjectType = ((int)0x9112), /// /// Original was GL_OBJECT_TYPE_APPLE = 0x9112 /// ObjectTypeApple = ((int)0x9112), /// + /// Original was GL_SYNC_CONDITION = 0x9113 + /// + SyncCondition = ((int)0x9113), + /// /// Original was GL_SYNC_CONDITION_APPLE = 0x9113 /// SyncConditionApple = ((int)0x9113), /// + /// Original was GL_SYNC_STATUS = 0x9114 + /// + SyncStatus = ((int)0x9114), + /// /// Original was GL_SYNC_STATUS_APPLE = 0x9114 /// SyncStatusApple = ((int)0x9114), /// + /// Original was GL_SYNC_FLAGS = 0x9115 + /// + SyncFlags = ((int)0x9115), + /// /// Original was GL_SYNC_FLAGS_APPLE = 0x9115 /// SyncFlagsApple = ((int)0x9115), } + /// + /// Not used directly. + /// + public enum SyncStatus : int + { + /// + /// Original was GL_ALREADY_SIGNALED = 0x911A + /// + AlreadySignaled = ((int)0x911A), + /// + /// Original was GL_TIMEOUT_EXPIRED = 0x911B + /// + TimeoutExpired = ((int)0x911B), + /// + /// Original was GL_CONDITION_SATISFIED = 0x911C + /// + ConditionSatisfied = ((int)0x911C), + /// + /// Original was GL_WAIT_FAILED = 0x911D + /// + WaitFailed = ((int)0x911D), + } + /// /// Not used directly. /// @@ -27506,6 +33167,14 @@ namespace OpenTK.Graphics.ES20 /// public enum TextureLayout : int { + /// + /// Original was GL_LAYOUT_DEPTH_READ_ONLY_STENCIL_ATTACHMENT_EXT = 0x9530 + /// + LayoutDepthReadOnlyStencilAttachmentExt = ((int)0x9530), + /// + /// Original was GL_LAYOUT_DEPTH_ATTACHMENT_STENCIL_READ_ONLY_EXT = 0x9531 + /// + LayoutDepthAttachmentStencilReadOnlyExt = ((int)0x9531), /// /// Original was GL_LAYOUT_GENERAL_EXT = 0x958D /// @@ -27659,11 +33328,35 @@ namespace OpenTK.Graphics.ES20 /// public enum TextureParameterName : int { + /// + /// Original was GL_TEXTURE_WIDTH = 0x1000 + /// + TextureWidth = ((int)0x1000), + /// + /// Original was GL_TEXTURE_HEIGHT = 0x1001 + /// + TextureHeight = ((int)0x1001), + /// + /// Original was GL_TEXTURE_COMPONENTS = 0x1003 + /// + TextureComponents = ((int)0x1003), + /// + /// Original was GL_TEXTURE_INTERNAL_FORMAT = 0x1003 + /// + TextureInternalFormat = ((int)0x1003), /// /// Original was GL_TEXTURE_BORDER_COLOR = 0x1004 /// TextureBorderColor = ((int)0x1004), /// + /// Original was GL_TEXTURE_BORDER_COLOR_NV = 0x1004 + /// + TextureBorderColorNv = ((int)0x1004), + /// + /// Original was GL_TEXTURE_BORDER = 0x1005 + /// + TextureBorder = ((int)0x1005), + /// /// Original was GL_TEXTURE_MAG_FILTER = 0x2800 /// TextureMagFilter = ((int)0x2800), @@ -27680,6 +33373,30 @@ namespace OpenTK.Graphics.ES20 /// TextureWrapT = ((int)0x2803), /// + /// Original was GL_TEXTURE_RED_SIZE = 0x805C + /// + TextureRedSize = ((int)0x805C), + /// + /// Original was GL_TEXTURE_GREEN_SIZE = 0x805D + /// + TextureGreenSize = ((int)0x805D), + /// + /// Original was GL_TEXTURE_BLUE_SIZE = 0x805E + /// + TextureBlueSize = ((int)0x805E), + /// + /// Original was GL_TEXTURE_ALPHA_SIZE = 0x805F + /// + TextureAlphaSize = ((int)0x805F), + /// + /// Original was GL_TEXTURE_LUMINANCE_SIZE = 0x8060 + /// + TextureLuminanceSize = ((int)0x8060), + /// + /// Original was GL_TEXTURE_INTENSITY_SIZE = 0x8061 + /// + TextureIntensitySize = ((int)0x8061), + /// /// Original was GL_TEXTURE_PRIORITY = 0x8066 /// TexturePriority = ((int)0x8066), @@ -27688,6 +33405,14 @@ namespace OpenTK.Graphics.ES20 /// TexturePriorityExt = ((int)0x8066), /// + /// Original was GL_TEXTURE_RESIDENT = 0x8067 + /// + TextureResident = ((int)0x8067), + /// + /// Original was GL_TEXTURE_DEPTH_EXT = 0x8071 + /// + TextureDepthExt = ((int)0x8071), + /// /// Original was GL_TEXTURE_WRAP_R = 0x8072 /// TextureWrapR = ((int)0x8072), @@ -27708,6 +33433,14 @@ namespace OpenTK.Graphics.ES20 /// DetailTextureModeSgis = ((int)0x809B), /// + /// Original was GL_DETAIL_TEXTURE_FUNC_POINTS_SGIS = 0x809C + /// + DetailTextureFuncPointsSgis = ((int)0x809C), + /// + /// Original was GL_SHARPEN_TEXTURE_FUNC_POINTS_SGIS = 0x80B0 + /// + SharpenTextureFuncPointsSgis = ((int)0x80B0), + /// /// Original was GL_SHADOW_AMBIENT_SGIX = 0x80BF /// ShadowAmbientSgix = ((int)0x80BF), @@ -27720,6 +33453,10 @@ namespace OpenTK.Graphics.ES20 /// QuadTextureSelectSgis = ((int)0x8125), /// + /// Original was GL_TEXTURE_4DSIZE_SGIS = 0x8136 + /// + Texture4DsizeSgis = ((int)0x8136), + /// /// Original was GL_TEXTURE_WRAP_Q_SGIS = 0x8137 /// TextureWrapQSgis = ((int)0x8137), @@ -27728,18 +33465,38 @@ namespace OpenTK.Graphics.ES20 /// TextureMinLod = ((int)0x813A), /// + /// Original was GL_TEXTURE_MIN_LOD_SGIS = 0x813A + /// + TextureMinLodSgis = ((int)0x813A), + /// /// Original was GL_TEXTURE_MAX_LOD = 0x813B /// TextureMaxLod = ((int)0x813B), /// + /// Original was GL_TEXTURE_MAX_LOD_SGIS = 0x813B + /// + TextureMaxLodSgis = ((int)0x813B), + /// /// Original was GL_TEXTURE_BASE_LEVEL = 0x813C /// TextureBaseLevel = ((int)0x813C), /// + /// Original was GL_TEXTURE_BASE_LEVEL_SGIS = 0x813C + /// + TextureBaseLevelSgis = ((int)0x813C), + /// /// Original was GL_TEXTURE_MAX_LEVEL = 0x813D /// TextureMaxLevel = ((int)0x813D), /// + /// Original was GL_TEXTURE_MAX_LEVEL_SGIS = 0x813D + /// + TextureMaxLevelSgis = ((int)0x813D), + /// + /// Original was GL_TEXTURE_FILTER4_SIZE_SGIS = 0x8147 + /// + TextureFilter4SizeSgis = ((int)0x8147), + /// /// Original was GL_TEXTURE_CLIPMAP_CENTER_SGIX = 0x8171 /// TextureClipmapCenterSgix = ((int)0x8171), @@ -27796,6 +33553,18 @@ namespace OpenTK.Graphics.ES20 /// TextureCompareSgix = ((int)0x819A), /// + /// Original was GL_TEXTURE_COMPARE_OPERATOR_SGIX = 0x819B + /// + TextureCompareOperatorSgix = ((int)0x819B), + /// + /// Original was GL_TEXTURE_LEQUAL_R_SGIX = 0x819C + /// + TextureLequalRSgix = ((int)0x819C), + /// + /// Original was GL_TEXTURE_GEQUAL_R_SGIX = 0x819D + /// + TextureGequalRSgix = ((int)0x819D), + /// /// Original was GL_TEXTURE_MAX_CLAMP_S_SGIX = 0x8369 /// TextureMaxClampSSgix = ((int)0x8369), @@ -27850,7 +33619,19 @@ namespace OpenTK.Graphics.ES20 } /// - /// Used in GL.BindTexture, GL.CompressedTexImage2D and 20 other functions + /// Not used directly. + /// + [Flags] + public enum TextureStorageMaskAmd : int + { + /// + /// Original was GL_TEXTURE_STORAGE_SPARSE_BIT_AMD = 0x00000001 + /// + TextureStorageSparseBitAmd = ((int)0x00000001), + } + + /// + /// Used in GL.BindTexture, GL.CompressedTexImage2D and 31 other functions /// public enum TextureTarget : int { @@ -28255,6 +34036,150 @@ namespace OpenTK.Graphics.ES20 /// /// Not used directly. /// + public enum TransformFeedbackPName : int + { + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER_START = 0x8C84 + /// + TransformFeedbackBufferStart = ((int)0x8C84), + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER_SIZE = 0x8C85 + /// + TransformFeedbackBufferSize = ((int)0x8C85), + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER_BINDING = 0x8C8F + /// + TransformFeedbackBufferBinding = ((int)0x8C8F), + /// + /// Original was GL_TRANSFORM_FEEDBACK_PAUSED = 0x8E23 + /// + TransformFeedbackPaused = ((int)0x8E23), + /// + /// Original was GL_TRANSFORM_FEEDBACK_ACTIVE = 0x8E24 + /// + TransformFeedbackActive = ((int)0x8E24), + } + + /// + /// Used in GL.NV.BeginConditionalRender, GL.NV.GetFloat and 1 other function + /// + public enum TypeEnum : int + { + /// + /// Original was GL_QUERY_WAIT = 0x8E13 + /// + QueryWait = ((int)0x8E13), + /// + /// Original was GL_QUERY_NO_WAIT = 0x8E14 + /// + QueryNoWait = ((int)0x8E14), + /// + /// Original was GL_QUERY_BY_REGION_WAIT = 0x8E15 + /// + QueryByRegionWait = ((int)0x8E15), + /// + /// Original was GL_QUERY_BY_REGION_NO_WAIT = 0x8E16 + /// + QueryByRegionNoWait = ((int)0x8E16), + } + + /// + /// Not used directly. + /// + public enum UniformBlockPName : int + { + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_CONTROL_SHADER = 0x84F0 + /// + UniformBlockReferencedByTessControlShader = ((int)0x84F0), + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_EVALUATION_SHADER = 0x84F1 + /// + UniformBlockReferencedByTessEvaluationShader = ((int)0x84F1), + /// + /// Original was GL_UNIFORM_BLOCK_BINDING = 0x8A3F + /// + UniformBlockBinding = ((int)0x8A3F), + /// + /// Original was GL_UNIFORM_BLOCK_DATA_SIZE = 0x8A40 + /// + UniformBlockDataSize = ((int)0x8A40), + /// + /// Original was GL_UNIFORM_BLOCK_NAME_LENGTH = 0x8A41 + /// + UniformBlockNameLength = ((int)0x8A41), + /// + /// Original was GL_UNIFORM_BLOCK_ACTIVE_UNIFORMS = 0x8A42 + /// + UniformBlockActiveUniforms = ((int)0x8A42), + /// + /// Original was GL_UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES = 0x8A43 + /// + UniformBlockActiveUniformIndices = ((int)0x8A43), + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER = 0x8A44 + /// + UniformBlockReferencedByVertexShader = ((int)0x8A44), + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_GEOMETRY_SHADER = 0x8A45 + /// + UniformBlockReferencedByGeometryShader = ((int)0x8A45), + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER = 0x8A46 + /// + UniformBlockReferencedByFragmentShader = ((int)0x8A46), + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_COMPUTE_SHADER = 0x90EC + /// + UniformBlockReferencedByComputeShader = ((int)0x90EC), + } + + /// + /// Not used directly. + /// + public enum UniformPName : int + { + /// + /// Original was GL_UNIFORM_TYPE = 0x8A37 + /// + UniformType = ((int)0x8A37), + /// + /// Original was GL_UNIFORM_SIZE = 0x8A38 + /// + UniformSize = ((int)0x8A38), + /// + /// Original was GL_UNIFORM_NAME_LENGTH = 0x8A39 + /// + UniformNameLength = ((int)0x8A39), + /// + /// Original was GL_UNIFORM_BLOCK_INDEX = 0x8A3A + /// + UniformBlockIndex = ((int)0x8A3A), + /// + /// Original was GL_UNIFORM_OFFSET = 0x8A3B + /// + UniformOffset = ((int)0x8A3B), + /// + /// Original was GL_UNIFORM_ARRAY_STRIDE = 0x8A3C + /// + UniformArrayStride = ((int)0x8A3C), + /// + /// Original was GL_UNIFORM_MATRIX_STRIDE = 0x8A3D + /// + UniformMatrixStride = ((int)0x8A3D), + /// + /// Original was GL_UNIFORM_IS_ROW_MAJOR = 0x8A3E + /// + UniformIsRowMajor = ((int)0x8A3E), + /// + /// Original was GL_UNIFORM_ATOMIC_COUNTER_BUFFER_INDEX = 0x92DA + /// + UniformAtomicCounterBufferIndex = ((int)0x92DA), + } + + /// + /// Used in GL.Ext.UseProgramStages + /// [Flags] public enum UseProgramStageMask : int { @@ -28283,6 +34208,10 @@ namespace OpenTK.Graphics.ES20 /// GeometryShaderBitExt = ((int)0x00000004), /// + /// Original was GL_GEOMETRY_SHADER_BIT_OES = 0x00000004 + /// + GeometryShaderBitOes = ((int)0x00000004), + /// /// Original was GL_TESS_CONTROL_SHADER_BIT = 0x00000008 /// TessControlShaderBit = ((int)0x00000008), @@ -28291,6 +34220,10 @@ namespace OpenTK.Graphics.ES20 /// TessControlShaderBitExt = ((int)0x00000008), /// + /// Original was GL_TESS_CONTROL_SHADER_BIT_OES = 0x00000008 + /// + TessControlShaderBitOes = ((int)0x00000008), + /// /// Original was GL_TESS_EVALUATION_SHADER_BIT = 0x00000010 /// TessEvaluationShaderBit = ((int)0x00000010), @@ -28299,6 +34232,10 @@ namespace OpenTK.Graphics.ES20 /// TessEvaluationShaderBitExt = ((int)0x00000010), /// + /// Original was GL_TESS_EVALUATION_SHADER_BIT_OES = 0x00000010 + /// + TessEvaluationShaderBitOes = ((int)0x00000010), + /// /// Original was GL_COMPUTE_SHADER_BIT = 0x00000020 /// ComputeShaderBit = ((int)0x00000020), @@ -28312,6 +34249,92 @@ namespace OpenTK.Graphics.ES20 AllShaderBitsExt = unchecked((int)0xFFFFFFFF), } + /// + /// Not used directly. + /// + public enum VertexArrayPName : int + { + /// + /// Original was GL_VERTEX_ATTRIB_RELATIVE_OFFSET = 0x82D5 + /// + VertexAttribRelativeOffset = ((int)0x82D5), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_ENABLED = 0x8622 + /// + VertexAttribArrayEnabled = ((int)0x8622), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_SIZE = 0x8623 + /// + VertexAttribArraySize = ((int)0x8623), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_STRIDE = 0x8624 + /// + VertexAttribArrayStride = ((int)0x8624), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_TYPE = 0x8625 + /// + VertexAttribArrayType = ((int)0x8625), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_LONG = 0x874E + /// + VertexAttribArrayLong = ((int)0x874E), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_NORMALIZED = 0x886A + /// + VertexAttribArrayNormalized = ((int)0x886A), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_INTEGER = 0x88FD + /// + VertexAttribArrayInteger = ((int)0x88FD), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_DIVISOR = 0x88FE + /// + VertexAttribArrayDivisor = ((int)0x88FE), + } + + /// + /// Not used directly. + /// + public enum VertexAttribEnum : int + { + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_ENABLED = 0x8622 + /// + VertexAttribArrayEnabled = ((int)0x8622), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_SIZE = 0x8623 + /// + VertexAttribArraySize = ((int)0x8623), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_STRIDE = 0x8624 + /// + VertexAttribArrayStride = ((int)0x8624), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_TYPE = 0x8625 + /// + VertexAttribArrayType = ((int)0x8625), + /// + /// Original was GL_CURRENT_VERTEX_ATTRIB = 0x8626 + /// + CurrentVertexAttrib = ((int)0x8626), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_NORMALIZED = 0x886A + /// + VertexAttribArrayNormalized = ((int)0x886A), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING = 0x889F + /// + VertexAttribArrayBufferBinding = ((int)0x889F), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_INTEGER = 0x88FD + /// + VertexAttribArrayInteger = ((int)0x88FD), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_DIVISOR = 0x88FE + /// + VertexAttribArrayDivisor = ((int)0x88FE), + } + /// /// Used in GL.GetVertexAttrib /// @@ -28368,25 +34391,198 @@ namespace OpenTK.Graphics.ES20 /// Byte = ((int)0X1400), /// - /// Original was GL_UnsignedByte = 0X1401 + /// Original was GL_UNSIGNED_BYTE = 0x1401 /// - UnsignedByte = ((int)0X1401), + UnsignedByte = ((int)0x1401), /// /// Original was GL_Short = 0X1402 /// Short = ((int)0X1402), /// - /// Original was GL_UnsignedShort = 0X1403 + /// Original was GL_UNSIGNED_SHORT = 0x1403 /// - UnsignedShort = ((int)0X1403), + UnsignedShort = ((int)0x1403), + /// + /// Original was GL_INT = 0x1404 + /// + Int = ((int)0x1404), + /// + /// Original was GL_UNSIGNED_INT = 0x1405 + /// + UnsignedInt = ((int)0x1405), /// /// Original was GL_Float = 0X1406 /// Float = ((int)0X1406), /// + /// Original was GL_DOUBLE = 0x140A + /// + Double = ((int)0x140A), + /// + /// Original was GL_HALF_FLOAT = 0x140B + /// + HalfFloat = ((int)0x140B), + /// /// Original was GL_Fixed = 0X140c /// Fixed = ((int)0X140c), + /// + /// Original was GL_UNSIGNED_INT_2_10_10_10_REV = 0x8368 + /// + UnsignedInt2101010Rev = ((int)0x8368), + /// + /// Original was GL_UNSIGNED_INT_10F_11F_11F_REV = 0x8C3B + /// + UnsignedInt10F11F11FRev = ((int)0x8C3B), + /// + /// Original was GL_INT_2_10_10_10_REV = 0x8D9F + /// + Int2101010Rev = ((int)0x8D9F), + } + + /// + /// Not used directly. + /// + public enum VertexAttribType : int + { + /// + /// Original was GL_BYTE = 0x1400 + /// + Byte = ((int)0x1400), + /// + /// Original was GL_UNSIGNED_BYTE = 0x1401 + /// + UnsignedByte = ((int)0x1401), + /// + /// Original was GL_SHORT = 0x1402 + /// + Short = ((int)0x1402), + /// + /// Original was GL_UNSIGNED_SHORT = 0x1403 + /// + UnsignedShort = ((int)0x1403), + /// + /// Original was GL_INT = 0x1404 + /// + Int = ((int)0x1404), + /// + /// Original was GL_UNSIGNED_INT = 0x1405 + /// + UnsignedInt = ((int)0x1405), + /// + /// Original was GL_FLOAT = 0x1406 + /// + Float = ((int)0x1406), + /// + /// Original was GL_DOUBLE = 0x140A + /// + Double = ((int)0x140A), + /// + /// Original was GL_HALF_FLOAT = 0x140B + /// + HalfFloat = ((int)0x140B), + /// + /// Original was GL_FIXED = 0x140C + /// + Fixed = ((int)0x140C), + /// + /// Original was GL_UNSIGNED_INT_2_10_10_10_REV = 0x8368 + /// + UnsignedInt2101010Rev = ((int)0x8368), + /// + /// Original was GL_UNSIGNED_INT_10F_11F_11F_REV = 0x8C3B + /// + UnsignedInt10F11F11FRev = ((int)0x8C3B), + /// + /// Original was GL_INT_2_10_10_10_REV = 0x8D9F + /// + Int2101010Rev = ((int)0x8D9F), + } + + /// + /// Not used directly. + /// + public enum VertexBufferObjectParameter : int + { + /// + /// Original was GL_BUFFER_IMMUTABLE_STORAGE = 0x821F + /// + BufferImmutableStorage = ((int)0x821F), + /// + /// Original was GL_BUFFER_STORAGE_FLAGS = 0x8220 + /// + BufferStorageFlags = ((int)0x8220), + /// + /// Original was GL_BUFFER_SIZE = 0x8764 + /// + BufferSize = ((int)0x8764), + /// + /// Original was GL_BUFFER_USAGE = 0x8765 + /// + BufferUsage = ((int)0x8765), + /// + /// Original was GL_BUFFER_ACCESS = 0x88BB + /// + BufferAccess = ((int)0x88BB), + /// + /// Original was GL_BUFFER_MAPPED = 0x88BC + /// + BufferMapped = ((int)0x88BC), + /// + /// Original was GL_BUFFER_ACCESS_FLAGS = 0x911F + /// + BufferAccessFlags = ((int)0x911F), + /// + /// Original was GL_BUFFER_MAP_LENGTH = 0x9120 + /// + BufferMapLength = ((int)0x9120), + /// + /// Original was GL_BUFFER_MAP_OFFSET = 0x9121 + /// + BufferMapOffset = ((int)0x9121), + } + + /// + /// Not used directly. + /// + public enum VertexBufferObjectUsage : int + { + /// + /// Original was GL_STREAM_DRAW = 0x88E0 + /// + StreamDraw = ((int)0x88E0), + /// + /// Original was GL_STREAM_READ = 0x88E1 + /// + StreamRead = ((int)0x88E1), + /// + /// Original was GL_STREAM_COPY = 0x88E2 + /// + StreamCopy = ((int)0x88E2), + /// + /// Original was GL_STATIC_DRAW = 0x88E4 + /// + StaticDraw = ((int)0x88E4), + /// + /// Original was GL_STATIC_READ = 0x88E5 + /// + StaticRead = ((int)0x88E5), + /// + /// Original was GL_STATIC_COPY = 0x88E6 + /// + StaticCopy = ((int)0x88E6), + /// + /// Original was GL_DYNAMIC_DRAW = 0x88E8 + /// + DynamicDraw = ((int)0x88E8), + /// + /// Original was GL_DYNAMIC_READ = 0x88E9 + /// + DynamicRead = ((int)0x88E9), + /// + /// Original was GL_DYNAMIC_COPY = 0x88EA + /// + DynamicCopy = ((int)0x88EA), } /// @@ -28412,6 +34608,21 @@ namespace OpenTK.Graphics.ES20 Double = ((int)0x140A), } + /// + /// Not used directly. + /// + public enum VertexProvokingMode : int + { + /// + /// Original was GL_FIRST_VERTEX_CONVENTION = 0x8E4D + /// + FirstVertexConvention = ((int)0x8E4D), + /// + /// Original was GL_LAST_VERTEX_CONVENTION = 0x8E4E + /// + LastVertexConvention = ((int)0x8E4E), + } + /// /// Not used directly. /// diff --git a/src/OpenTK/Graphics/ES30/ES30.cs b/src/OpenTK/Graphics/ES30/ES30.cs index 74f05458..d52362bc 100644 --- a/src/OpenTK/Graphics/ES30/ES30.cs +++ b/src/OpenTK/Graphics/ES30/ES30.cs @@ -108,6 +108,7 @@ namespace OpenTK.Graphics.ES30 103, 108, 67, 108, 101, 97, 114, 84, 101, 120, 83, 117, 98, 73, 109, 97, 103, 101, 69, 88, 84, 0, 103, 108, 67, 108, 105, 101, 110, 116, 87, 97, 105, 116, 83, 121, 110, 99, 0, 103, 108, 67, 108, 105, 101, 110, 116, 87, 97, 105, 116, 83, 121, 110, 99, 65, 80, 80, 76, 69, 0, + 103, 108, 67, 108, 105, 112, 67, 111, 110, 116, 114, 111, 108, 69, 88, 84, 0, 103, 108, 67, 111, 108, 111, 114, 77, 97, 115, 107, 0, 103, 108, 67, 111, 108, 111, 114, 77, 97, 115, 107, 105, 69, 88, 84, 0, 103, 108, 67, 111, 108, 111, 114, 77, 97, 115, 107, 105, 79, 69, 83, 0, @@ -467,12 +468,32 @@ namespace OpenTK.Graphics.ES30 103, 108, 77, 97, 112, 66, 117, 102, 102, 101, 114, 79, 69, 83, 0, 103, 108, 77, 97, 112, 66, 117, 102, 102, 101, 114, 82, 97, 110, 103, 101, 0, 103, 108, 77, 97, 112, 66, 117, 102, 102, 101, 114, 82, 97, 110, 103, 101, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 70, 114, 117, 115, 116, 117, 109, 69, 88, 84, 0, 103, 108, 77, 97, 116, 114, 105, 120, 76, 111, 97, 100, 51, 120, 50, 102, 78, 86, 0, 103, 108, 77, 97, 116, 114, 105, 120, 76, 111, 97, 100, 51, 120, 51, 102, 78, 86, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 76, 111, 97, 100, 100, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 76, 111, 97, 100, 102, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 76, 111, 97, 100, 73, 100, 101, 110, 116, 105, 116, 121, 69, 88, 84, 0, 103, 108, 77, 97, 116, 114, 105, 120, 76, 111, 97, 100, 84, 114, 97, 110, 115, 112, 111, 115, 101, 51, 120, 51, 102, 78, 86, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 76, 111, 97, 100, 84, 114, 97, 110, 115, 112, 111, 115, 101, 100, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 76, 111, 97, 100, 84, 114, 97, 110, 115, 112, 111, 115, 101, 102, 69, 88, 84, 0, 103, 108, 77, 97, 116, 114, 105, 120, 77, 117, 108, 116, 51, 120, 50, 102, 78, 86, 0, 103, 108, 77, 97, 116, 114, 105, 120, 77, 117, 108, 116, 51, 120, 51, 102, 78, 86, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 77, 117, 108, 116, 100, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 77, 117, 108, 116, 102, 69, 88, 84, 0, 103, 108, 77, 97, 116, 114, 105, 120, 77, 117, 108, 116, 84, 114, 97, 110, 115, 112, 111, 115, 101, 51, 120, 51, 102, 78, 86, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 77, 117, 108, 116, 84, 114, 97, 110, 115, 112, 111, 115, 101, 100, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 77, 117, 108, 116, 84, 114, 97, 110, 115, 112, 111, 115, 101, 102, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 79, 114, 116, 104, 111, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 80, 111, 112, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 80, 117, 115, 104, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 82, 111, 116, 97, 116, 101, 100, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 82, 111, 116, 97, 116, 101, 102, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 83, 99, 97, 108, 101, 100, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 83, 99, 97, 108, 101, 102, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 84, 114, 97, 110, 115, 108, 97, 116, 101, 100, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 84, 114, 97, 110, 115, 108, 97, 116, 101, 102, 69, 88, 84, 0, + 103, 108, 77, 97, 120, 83, 104, 97, 100, 101, 114, 67, 111, 109, 112, 105, 108, 101, 114, 84, 104, 114, 101, 97, 100, 115, 75, 72, 82, 0, 103, 108, 77, 101, 109, 111, 114, 121, 79, 98, 106, 101, 99, 116, 80, 97, 114, 97, 109, 101, 116, 101, 114, 105, 118, 69, 88, 84, 0, 103, 108, 77, 105, 110, 83, 97, 109, 112, 108, 101, 83, 104, 97, 100, 105, 110, 103, 79, 69, 83, 0, 103, 108, 77, 117, 108, 116, 105, 68, 114, 97, 119, 65, 114, 114, 97, 121, 115, 69, 88, 84, 0, @@ -674,6 +695,7 @@ namespace OpenTK.Graphics.ES30 103, 108, 84, 101, 120, 83, 117, 98, 73, 109, 97, 103, 101, 50, 68, 0, 103, 108, 84, 101, 120, 83, 117, 98, 73, 109, 97, 103, 101, 51, 68, 0, 103, 108, 84, 101, 120, 83, 117, 98, 73, 109, 97, 103, 101, 51, 68, 79, 69, 83, 0, + 103, 108, 84, 101, 120, 116, 117, 114, 101, 70, 111, 118, 101, 97, 116, 105, 111, 110, 80, 97, 114, 97, 109, 101, 116, 101, 114, 115, 81, 67, 79, 77, 0, 103, 108, 84, 101, 120, 116, 117, 114, 101, 83, 116, 111, 114, 97, 103, 101, 49, 68, 69, 88, 84, 0, 103, 108, 84, 101, 120, 116, 117, 114, 101, 83, 116, 111, 114, 97, 103, 101, 50, 68, 69, 88, 84, 0, 103, 108, 84, 101, 120, 116, 117, 114, 101, 83, 116, 111, 114, 97, 103, 101, 51, 68, 69, 88, 84, 0, @@ -778,6 +800,7 @@ namespace OpenTK.Graphics.ES30 103, 108, 86, 105, 101, 119, 112, 111, 114, 116, 73, 110, 100, 101, 120, 101, 100, 102, 79, 69, 83, 0, 103, 108, 86, 105, 101, 119, 112, 111, 114, 116, 73, 110, 100, 101, 120, 101, 100, 102, 118, 78, 86, 0, 103, 108, 86, 105, 101, 119, 112, 111, 114, 116, 73, 110, 100, 101, 120, 101, 100, 102, 118, 79, 69, 83, 0, + 103, 108, 86, 105, 101, 119, 112, 111, 114, 116, 80, 111, 115, 105, 116, 105, 111, 110, 87, 83, 99, 97, 108, 101, 78, 86, 0, 103, 108, 86, 105, 101, 119, 112, 111, 114, 116, 83, 119, 105, 122, 122, 108, 101, 78, 86, 0, 103, 108, 87, 97, 105, 116, 83, 101, 109, 97, 112, 104, 111, 114, 101, 69, 88, 84, 0, 103, 108, 87, 97, 105, 116, 83, 121, 110, 99, 0, @@ -855,682 +878,705 @@ namespace OpenTK.Graphics.ES30 1267, 1284, 1306, - 1318, - 1334, - 1350, - 1366, - 1389, - 1412, - 1438, - 1464, - 1490, - 1519, - 1552, - 1572, - 1594, - 1616, - 1638, - 1651, + 1323, + 1335, + 1351, + 1367, + 1383, + 1406, + 1429, + 1455, + 1481, + 1507, + 1536, + 1569, + 1589, + 1611, + 1633, + 1655, 1668, - 1688, - 1708, - 1731, - 1756, + 1685, + 1705, + 1725, + 1748, 1773, - 1796, - 1824, - 1846, - 1873, - 1891, - 1920, - 1940, - 1965, - 1988, - 2004, - 2019, - 2044, - 2070, - 2081, - 2104, - 2130, - 2152, - 2177, - 2198, - 2222, - 2238, + 1790, + 1813, + 1841, + 1863, + 1890, + 1908, + 1937, + 1957, + 1982, + 2005, + 2021, + 2036, + 2061, + 2087, + 2098, + 2121, + 2147, + 2169, + 2194, + 2215, + 2239, 2255, - 2276, - 2301, - 2317, - 2341, - 2364, - 2380, - 2408, - 2424, - 2443, - 2465, + 2272, + 2293, + 2318, + 2334, + 2358, + 2381, + 2397, + 2425, + 2441, + 2460, 2482, - 2504, - 2519, - 2532, - 2550, + 2499, + 2521, + 2536, + 2549, 2567, - 2594, - 2615, - 2639, - 2651, - 2663, - 2685, - 2708, - 2722, - 2745, - 2769, - 2784, - 2794, - 2821, - 2835, - 2848, - 2862, - 2889, - 2913, - 2926, - 2948, - 2975, - 3012, - 3037, - 3061, - 3075, + 2584, + 2611, + 2632, + 2656, + 2668, + 2680, + 2702, + 2725, + 2739, + 2762, + 2786, + 2801, + 2811, + 2838, + 2852, + 2865, + 2879, + 2906, + 2930, + 2943, + 2965, + 2992, + 3029, + 3054, + 3078, 3092, - 3116, - 3132, - 3147, - 3175, - 3203, - 3227, - 3256, - 3295, - 3344, - 3381, - 3418, - 3445, - 3471, - 3491, - 3524, - 3557, - 3584, - 3620, - 3636, - 3675, - 3704, - 3713, - 3739, - 3752, - 3764, - 3777, - 3803, - 3828, - 3848, - 3868, - 3879, - 3893, - 3909, - 3932, - 3959, - 3979, - 4004, - 4036, - 4057, - 4083, - 4103, - 4135, - 4159, - 4180, - 4205, - 4238, - 4250, + 3109, + 3133, + 3149, + 3164, + 3192, + 3220, + 3244, + 3273, + 3312, + 3361, + 3398, + 3435, + 3462, + 3488, + 3508, + 3541, + 3574, + 3601, + 3637, + 3653, + 3692, + 3721, + 3730, + 3756, + 3769, + 3781, + 3794, + 3820, + 3845, + 3865, + 3885, + 3896, + 3910, + 3926, + 3949, + 3976, + 3996, + 4021, + 4053, + 4074, + 4100, + 4120, + 4152, + 4176, + 4197, + 4222, + 4255, 4267, - 4276, - 4292, - 4300, - 4325, - 4353, - 4379, - 4409, - 4442, - 4479, - 4517, - 4543, - 4576, - 4599, - 4635, - 4672, - 4709, - 4735, - 4759, - 4785, - 4824, - 4868, - 4901, - 4925, - 4937, - 4950, + 4284, + 4293, + 4309, + 4317, + 4342, + 4370, + 4396, + 4426, + 4459, + 4496, + 4534, + 4560, + 4593, + 4616, + 4652, + 4689, + 4726, + 4752, + 4776, + 4802, + 4841, + 4885, + 4918, + 4942, + 4954, 4967, - 4981, - 4999, - 5012, - 5033, - 5058, - 5071, - 5087, - 5106, - 5120, - 5139, - 5153, - 5177, - 5195, - 5216, - 5234, - 5253, - 5279, - 5307, - 5329, - 5350, - 5370, - 5384, - 5409, - 5432, - 5452, - 5475, - 5506, - 5527, - 5551, - 5575, - 5604, - 5615, - 5630, - 5657, - 5673, + 4984, + 4998, + 5016, + 5029, + 5050, + 5075, + 5088, + 5104, + 5123, + 5137, + 5156, + 5170, + 5194, + 5212, + 5233, + 5251, + 5270, + 5296, + 5324, + 5346, + 5367, + 5387, + 5401, + 5426, + 5449, + 5469, + 5492, + 5523, + 5544, + 5568, + 5592, + 5621, + 5632, + 5647, + 5674, 5690, - 5702, - 5724, - 5746, - 5784, - 5825, - 5850, - 5878, - 5906, - 5925, - 5943, - 5959, - 5980, - 5996, - 6015, - 6029, - 6051, - 6081, - 6113, - 6139, - 6155, - 6174, - 6193, - 6209, - 6228, - 6247, + 5707, + 5719, + 5741, + 5763, + 5801, + 5842, + 5867, + 5895, + 5923, + 5942, + 5960, + 5976, + 5997, + 6013, + 6032, + 6046, + 6068, + 6098, + 6130, + 6156, + 6172, + 6191, + 6210, + 6226, + 6245, 6264, - 6284, + 6281, 6301, - 6321, - 6341, - 6361, - 6384, - 6406, - 6428, - 6448, - 6466, - 6487, - 6505, - 6528, - 6547, - 6570, - 6593, - 6612, - 6632, - 6652, - 6678, - 6709, - 6740, - 6768, - 6801, - 6827, - 6858, - 6882, - 6910, - 6934, - 6948, + 6318, + 6338, + 6358, + 6378, + 6401, + 6423, + 6445, + 6465, + 6483, + 6504, + 6522, + 6545, + 6564, + 6587, + 6610, + 6629, + 6649, + 6669, + 6695, + 6726, + 6757, + 6785, + 6818, + 6844, + 6875, + 6899, + 6927, + 6951, 6965, - 6984, - 7006, - 7026, - 7041, - 7072, - 7098, - 7123, - 7160, - 7173, - 7189, - 7213, - 7235, - 7260, - 7280, - 7303, - 7332, - 7356, - 7384, - 7412, - 7441, - 7470, - 7494, - 7526, - 7545, - 7559, - 7586, - 7604, - 7616, - 7629, - 7641, + 6982, + 7001, + 7023, + 7043, + 7058, + 7089, + 7115, + 7140, + 7177, + 7190, + 7206, + 7230, + 7252, + 7277, + 7297, + 7320, + 7349, + 7373, + 7401, + 7429, + 7458, + 7487, + 7511, + 7543, + 7562, + 7576, + 7603, + 7621, + 7633, + 7646, 7658, - 7678, - 7702, - 7726, - 7751, - 7776, - 7796, - 7818, - 7839, - 7868, - 7896, - 7926, - 7959, - 7982, - 7997, - 8016, - 8036, - 8051, - 8072, - 8088, - 8112, - 8134, - 8154, - 8175, - 8197, - 8217, - 8243, - 8261, - 8268, - 8288, - 8317, - 8344, - 8367, - 8399, - 8429, - 8452, - 8473, - 8497, - 8524, - 8535, - 8547, - 8563, - 8578, - 8594, - 8606, - 8622, - 8648, - 8668, - 8679, - 8701, - 8725, - 8737, - 8760, - 8770, - 8783, + 7675, + 7695, + 7719, + 7743, + 7768, + 7793, + 7813, + 7835, + 7856, + 7885, + 7913, + 7943, + 7976, + 7999, + 8014, + 8033, + 8053, + 8068, + 8089, + 8105, + 8129, + 8151, + 8171, + 8192, + 8214, + 8234, + 8260, + 8278, + 8285, + 8305, + 8334, + 8361, + 8384, + 8416, + 8446, + 8469, + 8490, + 8514, + 8541, + 8552, + 8564, + 8580, + 8595, + 8611, + 8623, + 8639, + 8665, + 8685, + 8696, + 8718, + 8742, + 8754, + 8777, + 8787, 8800, - 8812, + 8817, 8829, - 8840, - 8849, - 8863, - 8875, - 8903, - 8925, - 8941, - 8960, + 8846, + 8857, + 8866, + 8880, + 8892, + 8920, + 8942, + 8958, 8977, - 8989, - 9003, - 9034, - 9062, - 9095, - 9125, - 9140, + 8994, + 9006, + 9020, + 9051, + 9079, + 9112, + 9142, 9157, - 9177, - 9196, - 9215, - 9243, - 9262, - 9281, + 9174, + 9194, + 9213, + 9232, + 9251, + 9268, + 9285, 9309, - 9338, - 9360, - 9381, - 9410, - 9443, - 9466, - 9497, - 9529, - 9556, - 9594, + 9337, + 9363, + 9389, + 9408, + 9427, + 9444, + 9461, + 9489, + 9515, + 9541, + 9558, + 9573, + 9589, 9608, - 9625, - 9642, - 9662, - 9683, - 9704, - 9721, - 9738, - 9753, - 9776, - 9794, + 9627, + 9645, + 9663, + 9685, + 9707, + 9737, + 9766, + 9788, 9809, - 9833, - 9857, - 9876, - 9891, - 9921, - 9940, - 9960, - 9979, - 9999, - 10026, - 10046, - 10061, - 10081, - 10099, - 10114, - 10139, - 10153, - 10172, - 10188, + 9838, + 9871, + 9894, + 9925, + 9957, + 9984, + 10022, + 10036, + 10053, + 10070, + 10090, + 10111, + 10132, + 10149, + 10166, + 10181, 10204, - 10228, - 10244, - 10263, - 10283, - 10309, - 10335, - 10351, - 10370, - 10390, - 10413, - 10445, - 10467, - 10490, - 10513, - 10537, - 10559, - 10582, - 10606, - 10631, - 10654, - 10678, - 10700, - 10723, - 10746, - 10770, - 10792, - 10815, - 10839, - 10864, - 10887, - 10911, - 10933, - 10956, - 10979, - 11003, - 11025, - 11048, - 11072, - 11097, - 11120, - 11144, - 11166, - 11189, - 11212, - 11236, - 11258, - 11281, - 11305, - 11330, - 11353, - 11377, + 10222, + 10237, + 10261, + 10285, + 10304, + 10319, + 10349, + 10368, + 10388, + 10407, + 10427, + 10454, + 10474, + 10489, + 10509, + 10527, + 10542, + 10567, + 10581, + 10600, + 10616, + 10632, + 10656, + 10672, + 10691, + 10711, + 10737, + 10763, + 10779, + 10798, + 10818, + 10841, + 10873, + 10895, + 10918, + 10941, + 10965, + 10987, + 11010, + 11034, + 11059, + 11082, + 11106, + 11128, + 11151, + 11174, + 11198, + 11220, + 11243, + 11267, + 11292, + 11315, + 11339, + 11361, + 11384, 11407, - 11436, - 11467, - 11497, - 11526, - 11557, - 11588, + 11431, + 11453, + 11476, + 11500, + 11525, + 11548, + 11572, + 11594, 11617, - 11648, - 11679, - 11708, - 11739, - 11770, - 11787, - 11807, - 11828, - 11846, - 11865, - 11878, - 11901, - 11916, - 11930, - 11947, - 11964, - 11977, - 12005, - 12029, - 12051, - 12084, - 12122, - 12160, - 12196, - 12232, - 12267, - 12290, - 12327, - 12353, - 12370, - 12390, - 12411, - 12431, - 12456, - 12481, - 12507, - 12533, - 12554, - 12564, - 12582, - 12601, - 12620, - 12640, + 11640, + 11664, + 11686, + 11709, + 11733, + 11758, + 11781, + 11805, + 11835, + 11864, + 11895, + 11925, + 11954, + 11985, + 12016, + 12045, + 12076, + 12107, + 12136, + 12167, + 12198, + 12215, + 12235, + 12256, + 12274, + 12293, + 12306, + 12329, + 12344, + 12358, + 12375, + 12392, + 12405, + 12433, + 12457, + 12479, + 12512, + 12550, + 12588, + 12624, 12660, - 12681, - 12712, - 12741, - 12754, - 12769, - 12784, - 12805, - 12823, - 12845, - 12863, - 12892, - 12912, - 12926, - 12948, - 12962, - 12984, - 12996, - 13016, - 13047, - 13069, - 13107, - 13136, - 13176, - 13207, + 12695, + 12718, + 12755, + 12781, + 12798, + 12818, + 12839, + 12859, + 12884, + 12909, + 12935, + 12961, + 12982, + 12992, + 13010, + 13029, + 13048, + 13068, + 13088, + 13109, + 13140, + 13169, + 13182, + 13197, + 13212, 13233, - 13247, - 13262, - 13277, - 13297, - 13317, - 13330, - 13343, - 13359, - 13382, - 13398, - 13415, - 13431, - 13452, - 13473, - 13495, - 13517, - 13534, - 13552, - 13567, - 13585, - 13600, - 13618, - 13647, - 13668, - 13689, - 13721, - 13742, - 13774, - 13790, - 13806, - 13825, - 13847, - 13869, - 13891, - 13916, - 13941, - 13977, - 14002, - 14038, - 14055, - 14072, - 14100, - 14118, - 14130, - 14143, - 14155, - 14171, - 14188, - 14201, - 14214, - 14231, - 14249, - 14263, - 14275, - 14288, - 14300, - 14316, - 14333, - 14346, - 14359, - 14376, - 14394, - 14408, - 14420, - 14433, - 14445, - 14461, - 14478, - 14491, - 14504, - 14521, - 14539, - 14553, - 14565, - 14578, - 14590, - 14606, - 14623, - 14636, + 13251, + 13273, + 13291, + 13320, + 13340, + 13354, + 13376, + 13390, + 13412, + 13424, + 13444, + 13475, + 13497, + 13535, + 13564, + 13604, + 13635, + 13661, + 13675, + 13690, + 13705, + 13725, + 13745, + 13758, + 13771, + 13787, + 13810, + 13826, + 13843, + 13859, + 13880, + 13901, + 13923, + 13945, + 13962, + 13980, + 13995, + 14013, + 14028, + 14046, + 14075, + 14096, + 14117, + 14149, + 14170, + 14202, + 14218, + 14234, + 14253, + 14286, + 14308, + 14330, + 14352, + 14377, + 14402, + 14438, + 14463, + 14499, + 14516, + 14533, + 14561, + 14579, + 14591, + 14604, + 14616, + 14632, 14649, - 14666, - 14684, - 14698, - 14720, - 14743, - 14765, - 14789, - 14812, - 14831, - 14852, - 14875, - 14896, - 14919, - 14938, - 14959, + 14662, + 14675, + 14692, + 14710, + 14724, + 14736, + 14749, + 14761, + 14777, + 14794, + 14807, + 14820, + 14837, + 14855, + 14869, + 14881, + 14894, + 14906, + 14922, + 14939, + 14952, + 14965, 14982, - 15003, + 15000, + 15014, 15026, - 15045, - 15066, - 15089, + 15039, + 15051, + 15067, + 15084, + 15097, 15110, - 15133, - 15147, - 15164, - 15177, - 15199, - 15221, - 15239, - 15268, - 15285, - 15303, - 15320, - 15338, - 15355, - 15373, - 15390, - 15408, - 15430, - 15457, - 15482, + 15127, + 15145, + 15159, + 15181, + 15204, + 15226, + 15250, + 15273, + 15292, + 15313, + 15336, + 15357, + 15380, + 15399, + 15420, + 15443, + 15464, + 15487, 15506, - 15524, - 15543, - 15562, - 15582, - 15605, - 15627, + 15527, + 15550, + 15571, + 15594, + 15608, + 15625, 15638, - 15657, - 15677, - 15698, - 15720, - 15742, - 15765, - 15785, - 15804, - 15815, - 15831, + 15660, + 15682, + 15700, + 15729, + 15746, + 15764, + 15781, + 15799, + 15816, + 15834, 15851, - 15867, + 15869, + 15891, + 15918, + 15943, + 15967, + 15985, + 16004, + 16023, + 16043, + 16066, + 16088, + 16099, + 16118, + 16138, + 16159, + 16181, + 16203, + 16226, + 16253, + 16273, + 16292, + 16303, + 16319, + 16339, + 16355, }; EntryPoints = new IntPtr[EntryPointNameOffsets.Length]; } @@ -17466,6 +17512,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: 1] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] [CLSCompliant(false)] public static void GetVertexAttribI(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -17474,6 +17521,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: 1] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] [CLSCompliant(false)] public static unsafe void GetVertexAttribI(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } @@ -17484,12 +17532,30 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] [CLSCompliant(false)] + public static void GetVertexAttribI(Int32 index, OpenTK.Graphics.ES30.VertexAttribEnum pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// + /// + /// [length: 1] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] + [CLSCompliant(false)] + public static unsafe void GetVertexAttribI(Int32 index, OpenTK.Graphics.ES30.VertexAttribEnum pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// + /// + /// [length: 1] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] + [CLSCompliant(false)] public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// /// [length: 1] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] [CLSCompliant(false)] public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } @@ -17498,6 +17564,23 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: 1] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] + [CLSCompliant(false)] + public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES30.VertexAttribEnum pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// + /// + /// [length: 1] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] + [CLSCompliant(false)] + public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES30.VertexAttribEnum pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// + /// + /// [length: 1] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIuiv")] [CLSCompliant(false)] public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 1)] out UInt32 @params) { throw new BindingsNotRewrittenException(); } @@ -17506,10 +17589,27 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: 1] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIuiv")] [CLSCompliant(false)] public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 1)] UInt32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] + /// + /// + /// [length: 1] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIuiv")] + [CLSCompliant(false)] + public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES30.VertexAttribEnum pname, [OutAttribute, CountAttribute(Count = 1)] out UInt32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// + /// + /// [length: 1] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIuiv")] + [CLSCompliant(false)] + public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES30.VertexAttribEnum pname, [OutAttribute, CountAttribute(Count = 1)] UInt32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter /// @@ -19196,6 +19296,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(message,length)] /// The a string containing the message to be sent to the debug output stream. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroup")] [CLSCompliant(false)] public static void PushDebugGroup(OpenTK.Graphics.ES30.All source, Int32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new BindingsNotRewrittenException(); } @@ -19215,10 +19316,49 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(message,length)] /// The a string containing the message to be sent to the debug output stream. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroup")] [CLSCompliant(false)] public static void PushDebugGroup(OpenTK.Graphics.ES30.All source, UInt32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new BindingsNotRewrittenException(); } + /// + /// Push a named debug group into the command stream + /// + /// + /// The source of the debug message. + /// + /// + /// The identifier of the message. + /// + /// + /// The length of the message to be sent to the debug output stream. + /// + /// [length: COMPSIZE(message,length)] + /// The a string containing the message to be sent to the debug output stream. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroup")] + [CLSCompliant(false)] + public static void PushDebugGroup(OpenTK.Graphics.ES30.DebugSource source, Int32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new BindingsNotRewrittenException(); } + + /// + /// Push a named debug group into the command stream + /// + /// + /// The source of the debug message. + /// + /// + /// The identifier of the message. + /// + /// + /// The length of the message to be sent to the debug output stream. + /// + /// [length: COMPSIZE(message,length)] + /// The a string containing the message to be sent to the debug output stream. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroup")] + [CLSCompliant(false)] + public static void PushDebugGroup(OpenTK.Graphics.ES30.DebugSource source, UInt32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] /// Select a color buffer source for pixels /// @@ -26752,6 +26892,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies how the red, green, blue, and alpha destination blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha. ConstantColor, OneMinusConstantColor, ConstantAlpha, and OneMinusConstantAlpha. The initial value is Zero. /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciEXT")] [CLSCompliant(false)] public static void BlendFunc(Int32 buf, OpenTK.Graphics.ES30.All src, OpenTK.Graphics.ES30.All dst) { throw new BindingsNotRewrittenException(); } @@ -26768,8 +26909,37 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciEXT")] [CLSCompliant(false)] + public static void BlendFunc(Int32 buf, OpenTK.Graphics.ES30.BlendingFactor src, OpenTK.Graphics.ES30.BlendingFactor dst) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_draw_buffers_indexed] + /// Specify pixel arithmetic + /// + /// + /// Specifies how the red, green, blue, and alpha source blending factors are computed. The initial value is One. + /// + /// + /// 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. + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciEXT")] + [CLSCompliant(false)] public static void BlendFunc(UInt32 buf, OpenTK.Graphics.ES30.All src, OpenTK.Graphics.ES30.All dst) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_draw_buffers_indexed] + /// Specify pixel arithmetic + /// + /// + /// Specifies how the red, green, blue, and alpha source blending factors are computed. The initial value is One. + /// + /// + /// 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 = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciEXT")] + [CLSCompliant(false)] + public static void BlendFunc(UInt32 buf, OpenTK.Graphics.ES30.BlendingFactor src, OpenTK.Graphics.ES30.BlendingFactor dst) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_draw_buffers_indexed] /// Specify pixel arithmetic for RGB and alpha components separately /// @@ -26788,6 +26958,7 @@ namespace OpenTK.Graphics.ES30 /// /// Specified how the alpha destination blending factor is computed. The initial value is Zero. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiEXT")] [CLSCompliant(false)] public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.ES30.All srcRGB, OpenTK.Graphics.ES30.All dstRGB, OpenTK.Graphics.ES30.All srcAlpha, OpenTK.Graphics.ES30.All dstAlpha) { throw new BindingsNotRewrittenException(); } @@ -26812,8 +26983,265 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiEXT")] [CLSCompliant(false)] + public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.ES30.BlendingFactor srcRGB, OpenTK.Graphics.ES30.BlendingFactor dstRGB, OpenTK.Graphics.ES30.BlendingFactor srcAlpha, OpenTK.Graphics.ES30.BlendingFactor dstAlpha) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_draw_buffers_indexed] + /// Specify pixel arithmetic for RGB and alpha components separately + /// + /// + /// Specifies how the red, green, and blue blending factors are computed. The initial value is One. + /// + /// + /// Specifies how the red, green, and blue blending factors are computed. The initial value is One. + /// + /// + /// Specifies how the red, green, and blue destination blending factors are computed. The initial value is Zero. + /// + /// + /// Specified how the alpha source blending factor is computed. The initial value is One. + /// + /// + /// Specified how the alpha destination blending factor is computed. The initial value is Zero. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiEXT")] + [CLSCompliant(false)] public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.ES30.All srcRGB, OpenTK.Graphics.ES30.All dstRGB, OpenTK.Graphics.ES30.All srcAlpha, OpenTK.Graphics.ES30.All dstAlpha) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_draw_buffers_indexed] + /// Specify pixel arithmetic for RGB and alpha components separately + /// + /// + /// Specifies how the red, green, and blue blending factors are computed. The initial value is One. + /// + /// + /// Specifies how the red, green, and blue blending factors are computed. The initial value is One. + /// + /// + /// Specifies how the red, green, and blue destination blending factors are computed. The initial value is Zero. + /// + /// + /// Specified how the alpha source blending factor is computed. The initial value is One. + /// + /// + /// Specified how the alpha destination blending factor is computed. The initial value is Zero. + /// + [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiEXT")] + [CLSCompliant(false)] + public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.ES30.BlendingFactor srcRGB, OpenTK.Graphics.ES30.BlendingFactor dstRGB, OpenTK.Graphics.ES30.BlendingFactor srcAlpha, OpenTK.Graphics.ES30.BlendingFactor dstAlpha) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_buffer_storage] + /// Creates and initializes a buffer object's immutable data store + /// + /// + /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the size in bytes of the buffer object's new data store. + /// + /// [length: size] + /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. + /// + /// + /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] + public static void BufferStorage(OpenTK.Graphics.ES30.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES30.All flags) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_buffer_storage] + /// Creates and initializes a buffer object's immutable data store + /// + /// + /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the size in bytes of the buffer object's new data store. + /// + /// [length: size] + /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. + /// + /// + /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] + [CLSCompliant(false)] + public static void BufferStorage(OpenTK.Graphics.ES30.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES30.All flags) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_buffer_storage] + /// Creates and initializes a buffer object's immutable data store + /// + /// + /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the size in bytes of the buffer object's new data store. + /// + /// [length: size] + /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. + /// + /// + /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] + [CLSCompliant(false)] + public static void BufferStorage(OpenTK.Graphics.ES30.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES30.All flags) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_buffer_storage] + /// Creates and initializes a buffer object's immutable data store + /// + /// + /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the size in bytes of the buffer object's new data store. + /// + /// [length: size] + /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. + /// + /// + /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] + [CLSCompliant(false)] + public static void BufferStorage(OpenTK.Graphics.ES30.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES30.All flags) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_buffer_storage] + /// Creates and initializes a buffer object's immutable data store + /// + /// + /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the size in bytes of the buffer object's new data store. + /// + /// [length: size] + /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. + /// + /// + /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] + public static void BufferStorage(OpenTK.Graphics.ES30.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES30.All flags) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_buffer_storage] + /// Creates and initializes a buffer object's immutable data store + /// + /// + /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the size in bytes of the buffer object's new data store. + /// + /// [length: size] + /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. + /// + /// + /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] + public static void BufferStorage(OpenTK.Graphics.ES30.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES30.All flags) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_buffer_storage] + /// Creates and initializes a buffer object's immutable data store + /// + /// + /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the size in bytes of the buffer object's new data store. + /// + /// [length: size] + /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. + /// + /// + /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] + [CLSCompliant(false)] + public static void BufferStorage(OpenTK.Graphics.ES30.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES30.All flags) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_buffer_storage] + /// Creates and initializes a buffer object's immutable data store + /// + /// + /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the size in bytes of the buffer object's new data store. + /// + /// [length: size] + /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. + /// + /// + /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] + [CLSCompliant(false)] + public static void BufferStorage(OpenTK.Graphics.ES30.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES30.All flags) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_buffer_storage] + /// Creates and initializes a buffer object's immutable data store + /// + /// + /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the size in bytes of the buffer object's new data store. + /// + /// [length: size] + /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. + /// + /// + /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] + [CLSCompliant(false)] + public static void BufferStorage(OpenTK.Graphics.ES30.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES30.All flags) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_buffer_storage] + /// Creates and initializes a buffer object's immutable data store + /// + /// + /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the size in bytes of the buffer object's new data store. + /// + /// [length: size] + /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. + /// + /// + /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] + public static void BufferStorage(OpenTK.Graphics.ES30.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES30.All flags) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store /// @@ -26830,8 +27258,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES30.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new BindingsNotRewrittenException(); } + public static void BufferStorage(OpenTK.Graphics.ES30.BufferStorageTarget target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES30.MapBufferUsageMask flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26850,26 +27277,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES30.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_buffer_storage] - /// Creates and initializes a buffer object's immutable data store - /// - /// - /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. - /// - /// - /// Specifies the size in bytes of the buffer object's new data store. - /// - /// [length: size] - /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. - /// - /// - /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. - /// - [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES30.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, Int32 flags) + public static void BufferStorage(OpenTK.Graphics.ES30.BufferStorageTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES30.MapBufferUsageMask flags) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -26890,7 +27298,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES30.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, UInt32 flags) + public static void BufferStorage(OpenTK.Graphics.ES30.BufferStorageTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES30.MapBufferUsageMask flags) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -26911,7 +27319,66 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES30.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, Int32 flags) + public static void BufferStorage(OpenTK.Graphics.ES30.BufferStorageTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES30.MapBufferUsageMask flags) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_buffer_storage] + /// Creates and initializes a buffer object's immutable data store + /// + /// + /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the size in bytes of the buffer object's new data store. + /// + /// [length: size] + /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. + /// + /// + /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. + /// + [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] + public static void BufferStorage(OpenTK.Graphics.ES30.BufferStorageTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES30.MapBufferUsageMask flags) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_buffer_storage] + /// Creates and initializes a buffer object's immutable data store + /// + /// + /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the size in bytes of the buffer object's new data store. + /// + /// [length: size] + /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. + /// + /// + /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. + /// + [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] + public static void BufferStorage(OpenTK.Graphics.ES30.BufferStorageTarget target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES30.MapBufferUsageMask flags) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_buffer_storage] + /// Creates and initializes a buffer object's immutable data store + /// + /// + /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the size in bytes of the buffer object's new data store. + /// + /// [length: size] + /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. + /// + /// + /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. + /// + [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] + [CLSCompliant(false)] + public static void BufferStorage(OpenTK.Graphics.ES30.BufferStorageTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES30.MapBufferUsageMask flags) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -26932,7 +27399,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES30.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, UInt32 flags) + public static void BufferStorage(OpenTK.Graphics.ES30.BufferStorageTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES30.MapBufferUsageMask flags) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -26953,7 +27420,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES30.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, Int32 flags) + public static void BufferStorage(OpenTK.Graphics.ES30.BufferStorageTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES30.MapBufferUsageMask flags) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -26973,256 +27440,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES30.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, UInt32 flags) - where T2 : struct - { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_buffer_storage] - /// Creates and initializes a buffer object's immutable data store - /// - /// - /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. - /// - /// - /// Specifies the size in bytes of the buffer object's new data store. - /// - /// [length: size] - /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. - /// - /// - /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. - /// - [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES30.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, Int32 flags) - where T2 : struct - { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_buffer_storage] - /// Creates and initializes a buffer object's immutable data store - /// - /// - /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. - /// - /// - /// Specifies the size in bytes of the buffer object's new data store. - /// - /// [length: size] - /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. - /// - /// - /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. - /// - [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES30.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, UInt32 flags) - where T2 : struct - { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_buffer_storage] - /// Creates and initializes a buffer object's immutable data store - /// - /// - /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. - /// - /// - /// Specifies the size in bytes of the buffer object's new data store. - /// - /// [length: size] - /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. - /// - /// - /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. - /// - [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES30.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_buffer_storage] - /// Creates and initializes a buffer object's immutable data store - /// - /// - /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. - /// - /// - /// Specifies the size in bytes of the buffer object's new data store. - /// - /// [length: size] - /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. - /// - /// - /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. - /// - [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES30.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_buffer_storage] - /// Creates and initializes a buffer object's immutable data store - /// - /// - /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. - /// - /// - /// Specifies the size in bytes of the buffer object's new data store. - /// - /// [length: size] - /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. - /// - /// - /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. - /// - [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES30.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, Int32 flags) - where T2 : struct - { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_buffer_storage] - /// Creates and initializes a buffer object's immutable data store - /// - /// - /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. - /// - /// - /// Specifies the size in bytes of the buffer object's new data store. - /// - /// [length: size] - /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. - /// - /// - /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. - /// - [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES30.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, UInt32 flags) - where T2 : struct - { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_buffer_storage] - /// Creates and initializes a buffer object's immutable data store - /// - /// - /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. - /// - /// - /// Specifies the size in bytes of the buffer object's new data store. - /// - /// [length: size] - /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. - /// - /// - /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. - /// - [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES30.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, Int32 flags) - where T2 : struct - { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_buffer_storage] - /// Creates and initializes a buffer object's immutable data store - /// - /// - /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. - /// - /// - /// Specifies the size in bytes of the buffer object's new data store. - /// - /// [length: size] - /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. - /// - /// - /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. - /// - [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES30.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, UInt32 flags) - where T2 : struct - { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_buffer_storage] - /// Creates and initializes a buffer object's immutable data store - /// - /// - /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. - /// - /// - /// Specifies the size in bytes of the buffer object's new data store. - /// - /// [length: size] - /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. - /// - /// - /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. - /// - [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES30.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, Int32 flags) - where T2 : struct - { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_buffer_storage] - /// Creates and initializes a buffer object's immutable data store - /// - /// - /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. - /// - /// - /// Specifies the size in bytes of the buffer object's new data store. - /// - /// [length: size] - /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. - /// - /// - /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. - /// - [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES30.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, UInt32 flags) - where T2 : struct - { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_buffer_storage] - /// Creates and initializes a buffer object's immutable data store - /// - /// - /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. - /// - /// - /// Specifies the size in bytes of the buffer object's new data store. - /// - /// [length: size] - /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. - /// - /// - /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. - /// - [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES30.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, Int32 flags) - where T2 : struct - { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_buffer_storage] - /// Creates and initializes a buffer object's immutable data store - /// - /// - /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. - /// - /// - /// Specifies the size in bytes of the buffer object's new data store. - /// - /// [length: size] - /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. - /// - /// - /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. - /// - [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES30.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, UInt32 flags) + public static void BufferStorage(OpenTK.Graphics.ES30.BufferStorageTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES30.MapBufferUsageMask flags) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -27232,9 +27450,9 @@ namespace OpenTK.Graphics.ES30 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] - [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } + public static void BufferStorageExternal(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 size, IntPtr clientBuffer, OpenTK.Graphics.ES30.All flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -27243,8 +27461,17 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] - [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } + public static void BufferStorageExternal(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 size, IntPtr clientBuffer, OpenTK.Graphics.ES30.MapBufferUsageMask flags) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_external_buffer] + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] + public static void BufferStorageExternal(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr size, IntPtr clientBuffer, OpenTK.Graphics.ES30.All flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -27253,18 +27480,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] - [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_external_buffer] - /// - /// - /// - /// - /// - [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] - [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } + public static void BufferStorageExternal(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr size, IntPtr clientBuffer, OpenTK.Graphics.ES30.MapBufferUsageMask flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -27345,50 +27561,50 @@ namespace OpenTK.Graphics.ES30 /// [requires: EXT_shader_pixel_local_storage2] /// /// - /// + /// [length: n] [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static void ClearPixelLocalStorage(Int32 offset, Int32 n, Int32[] values) { throw new BindingsNotRewrittenException(); } + public static void ClearPixelLocalStorage(Int32 offset, Int32 n, [CountAttribute(Parameter = "n")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// /// - /// + /// [length: n] [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static void ClearPixelLocalStorage(Int32 offset, Int32 n, ref Int32 values) { throw new BindingsNotRewrittenException(); } + public static void ClearPixelLocalStorage(Int32 offset, Int32 n, [CountAttribute(Parameter = "n")] ref Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// /// - /// + /// [length: n] [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static unsafe void ClearPixelLocalStorage(Int32 offset, Int32 n, Int32* values) { throw new BindingsNotRewrittenException(); } + public static unsafe void ClearPixelLocalStorage(Int32 offset, Int32 n, [CountAttribute(Parameter = "n")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// /// - /// + /// [length: n] [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static void ClearPixelLocalStorage(Int32 offset, Int32 n, UInt32[] values) { throw new BindingsNotRewrittenException(); } + public static void ClearPixelLocalStorage(Int32 offset, Int32 n, [CountAttribute(Parameter = "n")] UInt32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// /// - /// + /// [length: n] [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static void ClearPixelLocalStorage(Int32 offset, Int32 n, ref UInt32 values) { throw new BindingsNotRewrittenException(); } + public static void ClearPixelLocalStorage(Int32 offset, Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// /// - /// + /// [length: n] [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static unsafe void ClearPixelLocalStorage(Int32 offset, Int32 n, UInt32* values) { throw new BindingsNotRewrittenException(); } + public static unsafe void ClearPixelLocalStorage(Int32 offset, Int32 n, [CountAttribute(Parameter = "n")] UInt32* values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -27408,6 +27624,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } @@ -27430,6 +27647,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) @@ -27454,6 +27672,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) @@ -27478,6 +27697,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) @@ -27502,6 +27722,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) @@ -27528,6 +27749,125 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] + public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] + [CLSCompliant(false)] + public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) + where T4 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] + [CLSCompliant(false)] + public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) + where T4 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] + [CLSCompliant(false)] + public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) + where T4 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] + [CLSCompliant(false)] + public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) + where T4 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] + [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] @@ -27548,6 +27888,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) @@ -27572,6 +27913,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) @@ -27596,6 +27938,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) @@ -27620,12 +27963,131 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_clear_texture] + /// Fills all a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] + [CLSCompliant(false)] + public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] + [CLSCompliant(false)] + public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) + where T4 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] + [CLSCompliant(false)] + public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) + where T4 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] + [CLSCompliant(false)] + public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) + where T4 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] + [CLSCompliant(false)] + public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) + where T4 : struct + { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value /// @@ -27662,6 +28124,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } @@ -27702,6 +28165,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[] data) @@ -27744,6 +28208,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,] data) @@ -27786,6 +28251,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,,] data) @@ -27828,6 +28294,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T10 data) @@ -27872,6 +28339,215 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] + public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all or part of a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The coordinate of the left edge of the region to be cleared. + /// + /// + /// The coordinate of the lower edge of the region to be cleared. + /// + /// + /// The coordinate of the front of the region to be cleared. + /// + /// + /// The width of the region to be cleared. + /// + /// + /// The height of the region to be cleared. + /// + /// + /// The depth of the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] + [CLSCompliant(false)] + public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[] data) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all or part of a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The coordinate of the left edge of the region to be cleared. + /// + /// + /// The coordinate of the lower edge of the region to be cleared. + /// + /// + /// The coordinate of the front of the region to be cleared. + /// + /// + /// The width of the region to be cleared. + /// + /// + /// The height of the region to be cleared. + /// + /// + /// The depth of the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] + [CLSCompliant(false)] + public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,] data) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all or part of a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The coordinate of the left edge of the region to be cleared. + /// + /// + /// The coordinate of the lower edge of the region to be cleared. + /// + /// + /// The coordinate of the front of the region to be cleared. + /// + /// + /// The width of the region to be cleared. + /// + /// + /// The height of the region to be cleared. + /// + /// + /// The depth of the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] + [CLSCompliant(false)] + public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,,] data) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all or part of a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The coordinate of the left edge of the region to be cleared. + /// + /// + /// The coordinate of the lower edge of the region to be cleared. + /// + /// + /// The coordinate of the front of the region to be cleared. + /// + /// + /// The width of the region to be cleared. + /// + /// + /// The height of the region to be cleared. + /// + /// + /// The depth of the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] + [CLSCompliant(false)] + public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T10 data) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all or part of a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The coordinate of the left edge of the region to be cleared. + /// + /// + /// The coordinate of the lower edge of the region to be cleared. + /// + /// + /// The coordinate of the front of the region to be cleared. + /// + /// + /// The width of the region to be cleared. + /// + /// + /// The height of the region to be cleared. + /// + /// + /// The depth of the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] + [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] @@ -27910,6 +28586,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[] data) @@ -27952,6 +28629,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,] data) @@ -27994,6 +28672,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,,] data) @@ -28036,12 +28715,227 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T10 data) where T10 : struct { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_clear_texture] + /// Fills all or part of a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The coordinate of the left edge of the region to be cleared. + /// + /// + /// The coordinate of the lower edge of the region to be cleared. + /// + /// + /// The coordinate of the front of the region to be cleared. + /// + /// + /// The width of the region to be cleared. + /// + /// + /// The height of the region to be cleared. + /// + /// + /// The depth of the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] + [CLSCompliant(false)] + public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all or part of a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The coordinate of the left edge of the region to be cleared. + /// + /// + /// The coordinate of the lower edge of the region to be cleared. + /// + /// + /// The coordinate of the front of the region to be cleared. + /// + /// + /// The width of the region to be cleared. + /// + /// + /// The height of the region to be cleared. + /// + /// + /// The depth of the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] + [CLSCompliant(false)] + public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[] data) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all or part of a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The coordinate of the left edge of the region to be cleared. + /// + /// + /// The coordinate of the lower edge of the region to be cleared. + /// + /// + /// The coordinate of the front of the region to be cleared. + /// + /// + /// The width of the region to be cleared. + /// + /// + /// The height of the region to be cleared. + /// + /// + /// The depth of the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] + [CLSCompliant(false)] + public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,] data) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all or part of a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The coordinate of the left edge of the region to be cleared. + /// + /// + /// The coordinate of the lower edge of the region to be cleared. + /// + /// + /// The coordinate of the front of the region to be cleared. + /// + /// + /// The width of the region to be cleared. + /// + /// + /// The height of the region to be cleared. + /// + /// + /// The depth of the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] + [CLSCompliant(false)] + public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,,] data) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all or part of a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The coordinate of the left edge of the region to be cleared. + /// + /// + /// The coordinate of the lower edge of the region to be cleared. + /// + /// + /// The coordinate of the front of the region to be cleared. + /// + /// + /// The width of the region to be cleared. + /// + /// + /// The height of the region to be cleared. + /// + /// + /// The depth of the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] + [CLSCompliant(false)] + public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T10 data) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clip_control] + /// + /// + [AutoGenerated(Category = "EXT_clip_control", Version = "", EntryPoint = "glClipControlEXT")] + public static void ClipControl(OpenTK.Graphics.ES30.All origin, OpenTK.Graphics.ES30.All depth) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_draw_buffers_indexed] /// Enable and disable writing of frame buffer color components /// @@ -28130,6 +29024,7 @@ namespace OpenTK.Graphics.ES30 /// /// The depth of the region to be copied. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_copy_image", Version = "", EntryPoint = "glCopyImageSubDataEXT")] [CLSCompliant(false)] public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.ES30.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.ES30.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } @@ -28184,8 +29079,113 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_copy_image", Version = "", EntryPoint = "glCopyImageSubDataEXT")] [CLSCompliant(false)] + public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.ES30.CopyBufferSubDataTarget srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.ES30.CopyBufferSubDataTarget dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_copy_image] + /// Perform a raw data copy between two images + /// + /// + /// The name of a texture or renderbuffer object from which to copy. + /// + /// + /// The target representing the namespace of the source name srcName. + /// + /// + /// The mipmap level to read from the source. + /// + /// + /// The X coordinate of the left edge of the souce region to copy. + /// + /// + /// The Y coordinate of the top edge of the souce region to copy. + /// + /// + /// The Z coordinate of the near edge of the souce region to copy. + /// + /// + /// The name of a texture or renderbuffer object to which to copy. + /// + /// + /// The target representing the namespace of the destination name dstName. + /// + /// + /// The X coordinate of the left edge of the destination region. + /// + /// + /// The X coordinate of the left edge of the destination region. + /// + /// + /// The Y coordinate of the top edge of the destination region. + /// + /// + /// The Z coordinate of the near edge of the destination region. + /// + /// + /// The width of the region to be copied. + /// + /// + /// The height of the region to be copied. + /// + /// + /// The depth of the region to be copied. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_copy_image", Version = "", EntryPoint = "glCopyImageSubDataEXT")] + [CLSCompliant(false)] public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.ES30.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.ES30.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_copy_image] + /// Perform a raw data copy between two images + /// + /// + /// The name of a texture or renderbuffer object from which to copy. + /// + /// + /// The target representing the namespace of the source name srcName. + /// + /// + /// The mipmap level to read from the source. + /// + /// + /// The X coordinate of the left edge of the souce region to copy. + /// + /// + /// The Y coordinate of the top edge of the souce region to copy. + /// + /// + /// The Z coordinate of the near edge of the souce region to copy. + /// + /// + /// The name of a texture or renderbuffer object to which to copy. + /// + /// + /// The target representing the namespace of the destination name dstName. + /// + /// + /// The X coordinate of the left edge of the destination region. + /// + /// + /// The X coordinate of the left edge of the destination region. + /// + /// + /// The Y coordinate of the top edge of the destination region. + /// + /// + /// The Z coordinate of the near edge of the destination region. + /// + /// + /// The width of the region to be copied. + /// + /// + /// The height of the region to be copied. + /// + /// + /// The depth of the region to be copied. + /// + [AutoGenerated(Category = "EXT_copy_image", Version = "", EntryPoint = "glCopyImageSubDataEXT")] + [CLSCompliant(false)] + public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.ES30.CopyBufferSubDataTarget srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.ES30.CopyBufferSubDataTarget dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_memory_object] /// /// @@ -28237,9 +29237,38 @@ namespace OpenTK.Graphics.ES30 /// /// Specifies the number of source code strings in the array strings. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glCreateShaderProgramEXT")] public static Int32 CreateShaderProgram(OpenTK.Graphics.ES30.All type, String @string) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_separate_shader_objects] + /// Create a stand-alone program from an array of null-terminated source code strings + /// + /// + /// Specifies the type of shader to create. + /// + /// + /// Specifies the number of source code strings in the array strings. + /// + [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glCreateShaderProgramEXT")] + public static Int32 CreateShaderProgram(OpenTK.Graphics.ES30.ShaderType type, String @string) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_separate_shader_objects] + /// Create a stand-alone program from an array of null-terminated source code strings + /// + /// + /// Specifies the type of shader to create. + /// + /// + /// Specifies the number of source code strings in the array strings. + /// + /// [length: count] + /// Specifies the address of an array of pointers to source code strings from which to create the program object. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glCreateShaderProgramvEXT")] + public static Int32 CreateShaderProgram(OpenTK.Graphics.ES30.All type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_separate_shader_objects] /// Create a stand-alone program from an array of null-terminated source code strings /// @@ -28253,7 +29282,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address of an array of pointers to source code strings from which to create the program object. /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glCreateShaderProgramvEXT")] - public static Int32 CreateShaderProgram(OpenTK.Graphics.ES30.All type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new BindingsNotRewrittenException(); } + public static Int32 CreateShaderProgram(OpenTK.Graphics.ES30.ShaderType type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// [length: n] @@ -28506,62 +29535,63 @@ namespace OpenTK.Graphics.ES30 public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphore([CountAttribute(Parameter = "count")] Int32 semaphores) { throw new BindingsNotRewrittenException(); } + public static void DeleteSemaphore([CountAttribute(Parameter = "n")] Int32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphore([CountAttribute(Parameter = "count")] UInt32 semaphores) { throw new BindingsNotRewrittenException(); } + public static void DeleteSemaphore([CountAttribute(Parameter = "n")] UInt32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] Int32[] semaphores) { throw new BindingsNotRewrittenException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "n")] Int32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] ref Int32 semaphores) { throw new BindingsNotRewrittenException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] Int32* semaphores) { throw new BindingsNotRewrittenException(); } + public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "n")] Int32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] UInt32[] semaphores) { throw new BindingsNotRewrittenException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] ref UInt32 semaphores) { throw new BindingsNotRewrittenException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] UInt32* semaphores) { throw new BindingsNotRewrittenException(); } + public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "n")] UInt32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glDisableiEXT")] [CLSCompliant(false)] public static void Disable(OpenTK.Graphics.ES30.All target, Int32 index) { throw new BindingsNotRewrittenException(); } @@ -28569,10 +29599,25 @@ namespace OpenTK.Graphics.ES30 /// [requires: EXT_draw_buffers_indexed] /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glDisableiEXT")] [CLSCompliant(false)] public static void Disable(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_draw_buffers_indexed] + /// + /// + [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glDisableiEXT")] + [CLSCompliant(false)] + public static void Disable(OpenTK.Graphics.ES30.EnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_draw_buffers_indexed] + /// + /// + [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glDisableiEXT")] + [CLSCompliant(false)] + public static void Disable(OpenTK.Graphics.ES30.EnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_discard_framebuffer] /// /// @@ -28730,13 +29775,13 @@ namespace OpenTK.Graphics.ES30 /// /// Specifies the number of buffers in bufs. /// - /// + /// [length: n] /// Points to an array of symbolic constants specifying the buffers into which fragment colors or data values will be written. /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, OpenTK.Graphics.ES30.All[] bufs) { throw new BindingsNotRewrittenException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.All[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -28744,13 +29789,13 @@ namespace OpenTK.Graphics.ES30 /// /// Specifies the number of buffers in bufs. /// - /// + /// [length: n] /// Points to an array of symbolic constants specifying the buffers into which fragment colors or data values will be written. /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, ref OpenTK.Graphics.ES30.All bufs) { throw new BindingsNotRewrittenException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES30.All bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -28758,13 +29803,13 @@ namespace OpenTK.Graphics.ES30 /// /// Specifies the number of buffers in bufs. /// - /// + /// [length: n] /// Points to an array of symbolic constants specifying the buffers into which fragment colors or data values will be written. /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] [CLSCompliant(false)] - public static unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.ES30.All* bufs) { throw new BindingsNotRewrittenException(); } + public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.All* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -28772,12 +29817,12 @@ namespace OpenTK.Graphics.ES30 /// /// Specifies the number of buffers in bufs. /// - /// + /// [length: n] /// Points to an array of symbolic constants specifying the buffers into which fragment colors or data values will be written. /// [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, OpenTK.Graphics.ES30.DrawBufferMode[] bufs) { throw new BindingsNotRewrittenException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.DrawBufferMode[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -28785,12 +29830,12 @@ namespace OpenTK.Graphics.ES30 /// /// Specifies the number of buffers in bufs. /// - /// + /// [length: n] /// Points to an array of symbolic constants specifying the buffers into which fragment colors or data values will be written. /// [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, ref OpenTK.Graphics.ES30.DrawBufferMode bufs) { throw new BindingsNotRewrittenException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES30.DrawBufferMode bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -28798,12 +29843,12 @@ namespace OpenTK.Graphics.ES30 /// /// Specifies the number of buffers in bufs. /// - /// + /// [length: n] /// Points to an array of symbolic constants specifying the buffers into which fragment colors or data values will be written. /// [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] [CLSCompliant(false)] - public static unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.ES30.DrawBufferMode* bufs) { throw new BindingsNotRewrittenException(); } + public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.DrawBufferMode* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -29365,7 +30410,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.PrimitiveType type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29390,7 +30435,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.PrimitiveType type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29415,7 +30460,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 baseinstance) + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -29442,7 +30487,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, UInt32 baseinstance) + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -29469,7 +30514,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 baseinstance) + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -29496,7 +30541,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, UInt32 baseinstance) + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -29523,7 +30568,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 baseinstance) + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -29550,7 +30595,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, UInt32 baseinstance) + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -29577,7 +30622,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 baseinstance) + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -29604,7 +30649,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, UInt32 baseinstance) + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -29940,7 +30985,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.PrimitiveType type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29968,7 +31013,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.PrimitiveType type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29996,7 +31041,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -30026,7 +31071,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -30056,7 +31101,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -30086,7 +31131,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -30116,7 +31161,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -30146,7 +31191,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -30176,7 +31221,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -30206,7 +31251,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -31443,6 +32488,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a symbolic constant indicating a GL capability. /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glEnableiEXT")] [CLSCompliant(false)] public static void Enable(OpenTK.Graphics.ES30.All target, Int32 index) { throw new BindingsNotRewrittenException(); } @@ -31454,10 +32500,33 @@ namespace OpenTK.Graphics.ES30 /// Specifies a symbolic constant indicating a GL capability. /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glEnableiEXT")] [CLSCompliant(false)] public static void Enable(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_draw_buffers_indexed] + /// Enable or disable server-side GL capabilities + /// + /// + /// Specifies a symbolic constant indicating a GL capability. + /// + /// + [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glEnableiEXT")] + [CLSCompliant(false)] + public static void Enable(OpenTK.Graphics.ES30.EnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_draw_buffers_indexed] + /// Enable or disable server-side GL capabilities + /// + /// + /// Specifies a symbolic constant indicating a GL capability. + /// + /// + [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glEnableiEXT")] + [CLSCompliant(false)] + public static void Enable(OpenTK.Graphics.ES30.EnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// [Obsolete("Use strongly-typed overload instead")] @@ -31552,6 +32621,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleEXT")] [CLSCompliant(false)] public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, Int32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } @@ -31563,10 +32633,33 @@ namespace OpenTK.Graphics.ES30 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleEXT")] [CLSCompliant(false)] public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, UInt32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_multisampled_render_to_texture] + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleEXT")] + [CLSCompliant(false)] + public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, OpenTK.Graphics.ES30.TextureTarget textarget, Int32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_multisampled_render_to_texture] + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleEXT")] + [CLSCompliant(false)] + public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, OpenTK.Graphics.ES30.TextureTarget textarget, UInt32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object /// @@ -31822,45 +32915,45 @@ namespace OpenTK.Graphics.ES30 /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] semaphores) { throw new BindingsNotRewrittenException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 semaphores) { throw new BindingsNotRewrittenException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] Int32* semaphores) { throw new BindingsNotRewrittenException(); } + public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] semaphores) { throw new BindingsNotRewrittenException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 semaphores) { throw new BindingsNotRewrittenException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* semaphores) { throw new BindingsNotRewrittenException(); } + public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Query the bindings of color indices to user-defined varying out variables @@ -31890,19 +32983,18 @@ namespace OpenTK.Graphics.ES30 /// [requires: EXT_shader_pixel_local_storage2] /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glGetFramebufferPixelLocalStorageSizeEXT")] - [CLSCompliant(false)] - public static Int32 GetFramebufferPixelLocalStorageSize(Int32 target) { throw new BindingsNotRewrittenException(); } + public static Int32 GetFramebufferPixelLocalStorageSize(OpenTK.Graphics.ES30.All target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glGetFramebufferPixelLocalStorageSizeEXT")] - [CLSCompliant(false)] - public static Int32 GetFramebufferPixelLocalStorageSize(UInt32 target) { throw new BindingsNotRewrittenException(); } + public static Int32 GetFramebufferPixelLocalStorageSize(OpenTK.Graphics.ES30.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetGraphicsResetStatusEXT")] - public static OpenTK.Graphics.ES30.All GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.ES30.GraphicsResetStatus GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -32478,6 +33570,7 @@ namespace OpenTK.Graphics.ES30 /// /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -32494,6 +33587,7 @@ namespace OpenTK.Graphics.ES30 /// /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -32510,6 +33604,7 @@ namespace OpenTK.Graphics.ES30 /// /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } @@ -32528,6 +33623,55 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES30.PipelineParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_separate_shader_objects] + /// Retrieve properties of a program pipeline object + /// + /// + /// Specifies the name of a program pipeline object whose parameter retrieve. + /// + /// + /// Specifies the name of the parameter to retrieve. + /// + /// + /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. + /// + [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] + [CLSCompliant(false)] + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES30.PipelineParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_separate_shader_objects] + /// Retrieve properties of a program pipeline object + /// + /// + /// Specifies the name of a program pipeline object whose parameter retrieve. + /// + /// + /// Specifies the name of the parameter to retrieve. + /// + /// + /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. + /// + [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] + [CLSCompliant(false)] + public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES30.PipelineParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_separate_shader_objects] + /// Retrieve properties of a program pipeline object + /// + /// + /// Specifies the name of a program pipeline object whose parameter retrieve. + /// + /// + /// Specifies the name of the parameter to retrieve. + /// + /// + /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] + [CLSCompliant(false)] public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] @@ -32542,6 +33686,7 @@ namespace OpenTK.Graphics.ES30 /// /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -32558,10 +33703,59 @@ namespace OpenTK.Graphics.ES30 /// /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_separate_shader_objects] + /// Retrieve properties of a program pipeline object + /// + /// + /// Specifies the name of a program pipeline object whose parameter retrieve. + /// + /// + /// Specifies the name of the parameter to retrieve. + /// + /// + /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. + /// + [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] + [CLSCompliant(false)] + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES30.PipelineParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_separate_shader_objects] + /// Retrieve properties of a program pipeline object + /// + /// + /// Specifies the name of a program pipeline object whose parameter retrieve. + /// + /// + /// Specifies the name of the parameter to retrieve. + /// + /// + /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. + /// + [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] + [CLSCompliant(false)] + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES30.PipelineParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_separate_shader_objects] + /// Retrieve properties of a program pipeline object + /// + /// + /// Specifies the name of a program pipeline object whose parameter retrieve. + /// + /// + /// Specifies the name of the parameter to retrieve. + /// + /// + /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. + /// + [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] + [CLSCompliant(false)] + public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES30.PipelineParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_blend_func_extended] /// Query the fragment color index of a named variable within a program /// @@ -32574,6 +33768,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(name)] /// The name of the resource to query the location of. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glGetProgramResourceLocationIndexEXT")] [CLSCompliant(false)] public static Int32 GetProgramResourceLocationIndex(Int32 program, OpenTK.Graphics.ES30.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } @@ -32592,8 +33787,41 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glGetProgramResourceLocationIndexEXT")] [CLSCompliant(false)] + public static Int32 GetProgramResourceLocationIndex(Int32 program, OpenTK.Graphics.ES30.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_blend_func_extended] + /// Query the fragment color index of a named variable within a program + /// + /// + /// The name of a program object whose resources to query. + /// + /// + /// A token identifying the interface within program containing the resource named name. + /// + /// [length: COMPSIZE(name)] + /// The name of the resource to query the location of. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glGetProgramResourceLocationIndexEXT")] + [CLSCompliant(false)] public static Int32 GetProgramResourceLocationIndex(UInt32 program, OpenTK.Graphics.ES30.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_blend_func_extended] + /// Query the fragment color index of a named variable within a program + /// + /// + /// The name of a program object whose resources to query. + /// + /// + /// A token identifying the interface within program containing the resource named name. + /// + /// [length: COMPSIZE(name)] + /// The name of the resource to query the location of. + /// + [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glGetProgramResourceLocationIndexEXT")] + [CLSCompliant(false)] + public static Int32 GetProgramResourceLocationIndex(UInt32 program, OpenTK.Graphics.ES30.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// /// @@ -33243,6 +34471,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -33251,6 +34480,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -33259,6 +34489,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } @@ -33269,12 +34500,38 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] + [CLSCompliant(false)] + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] + [CLSCompliant(false)] + public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] + [CLSCompliant(false)] public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -33283,6 +34540,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } @@ -33291,6 +34549,31 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] + [CLSCompliant(false)] + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] + [CLSCompliant(false)] + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] + [CLSCompliant(false)] + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivEXT")] [CLSCompliant(false)] public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } @@ -33299,6 +34582,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivEXT")] [CLSCompliant(false)] public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } @@ -33307,10 +34591,35 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivEXT")] [CLSCompliant(false)] public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivEXT")] + [CLSCompliant(false)] + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivEXT")] + [CLSCompliant(false)] + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivEXT")] + [CLSCompliant(false)] + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_semaphore] /// /// @@ -34556,6 +35865,7 @@ namespace OpenTK.Graphics.ES30 /// /// Specifies the index of the capability. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glIsEnablediEXT")] [CLSCompliant(false)] public static bool IsEnabled(OpenTK.Graphics.ES30.All target, Int32 index) { throw new BindingsNotRewrittenException(); } @@ -34569,10 +35879,37 @@ namespace OpenTK.Graphics.ES30 /// /// Specifies the index of the capability. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glIsEnablediEXT")] [CLSCompliant(false)] public static bool IsEnabled(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_draw_buffers_indexed] + /// Test whether a capability is enabled + /// + /// + /// Specifies a symbolic constant indicating a GL capability. + /// + /// + /// Specifies the index of the capability. + /// + [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glIsEnablediEXT")] + [CLSCompliant(false)] + public static bool IsEnabled(OpenTK.Graphics.ES30.EnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_draw_buffers_indexed] + /// Test whether a capability is enabled + /// + /// + /// Specifies a symbolic constant indicating a GL capability. + /// + /// + /// Specifies the index of the capability. + /// + [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glIsEnablediEXT")] + [CLSCompliant(false)] + public static bool IsEnabled(OpenTK.Graphics.ES30.EnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_memory_object] /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glIsMemoryObjectEXT")] @@ -34672,8 +36009,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] - [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 length, Int32 access) { throw new BindingsNotRewrittenException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 length, OpenTK.Graphics.ES30.All access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -34692,8 +36028,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] - [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 length, UInt32 access) { throw new BindingsNotRewrittenException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr length, OpenTK.Graphics.ES30.All access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -34710,106 +36045,571 @@ namespace OpenTK.Graphics.ES30 /// /// Specifies a combination of access flags indicating the desired access to the range. /// + [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] + public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, Int32 length, OpenTK.Graphics.ES30.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_map_buffer_range] + /// Map a section of a buffer object's data store + /// + /// + /// Specifies a binding to which the target buffer is bound. + /// + /// + /// Specifies the starting offset within the buffer of the range to be mapped. + /// + /// + /// Specifies the length of the range to be mapped. + /// + /// + /// Specifies a combination of access flags indicating the desired access to the range. + /// + [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] + public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, IntPtr length, OpenTK.Graphics.ES30.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// [Obsolete("Use strongly-typed overload instead")] - [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] - [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr length, Int32 access) { throw new BindingsNotRewrittenException(); } + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixFrustumEXT")] + public static void MatrixFrustum(OpenTK.Graphics.ES30.All mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_map_buffer_range] - /// Map a section of a buffer object's data store - /// - /// - /// Specifies a binding to which the target buffer is bound. - /// - /// - /// Specifies the starting offset within the buffer of the range to be mapped. - /// - /// - /// Specifies the length of the range to be mapped. - /// - /// - /// Specifies a combination of access flags indicating the desired access to the range. - /// + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixFrustumEXT")] + public static void MatrixFrustum(OpenTK.Graphics.ES30.MatrixMode mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] [Obsolete("Use strongly-typed overload instead")] - [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoaddEXT")] [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr length, UInt32 access) { throw new BindingsNotRewrittenException(); } + public static void MatrixLoad(OpenTK.Graphics.ES30.All mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_map_buffer_range] - /// Map a section of a buffer object's data store - /// - /// - /// Specifies a binding to which the target buffer is bound. - /// - /// - /// Specifies the starting offset within the buffer of the range to be mapped. - /// - /// - /// Specifies the length of the range to be mapped. - /// - /// - /// Specifies a combination of access flags indicating the desired access to the range. - /// - [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoaddEXT")] [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, Int32 length, Int32 access) { throw new BindingsNotRewrittenException(); } + public static void MatrixLoad(OpenTK.Graphics.ES30.All mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_map_buffer_range] - /// Map a section of a buffer object's data store - /// - /// - /// Specifies a binding to which the target buffer is bound. - /// - /// - /// Specifies the starting offset within the buffer of the range to be mapped. - /// - /// - /// Specifies the length of the range to be mapped. - /// - /// - /// Specifies a combination of access flags indicating the desired access to the range. - /// - [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoaddEXT")] [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, Int32 length, UInt32 access) { throw new BindingsNotRewrittenException(); } + public static unsafe void MatrixLoad(OpenTK.Graphics.ES30.All mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_map_buffer_range] - /// Map a section of a buffer object's data store - /// - /// - /// Specifies a binding to which the target buffer is bound. - /// - /// - /// Specifies the starting offset within the buffer of the range to be mapped. - /// - /// - /// Specifies the length of the range to be mapped. - /// - /// - /// Specifies a combination of access flags indicating the desired access to the range. - /// - [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoaddEXT")] [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, IntPtr length, Int32 access) { throw new BindingsNotRewrittenException(); } + public static void MatrixLoad(OpenTK.Graphics.ES30.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_map_buffer_range] - /// Map a section of a buffer object's data store - /// - /// - /// Specifies a binding to which the target buffer is bound. - /// - /// - /// Specifies the starting offset within the buffer of the range to be mapped. - /// - /// - /// Specifies the length of the range to be mapped. - /// - /// - /// Specifies a combination of access flags indicating the desired access to the range. - /// - [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoaddEXT")] [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, IntPtr length, UInt32 access) { throw new BindingsNotRewrittenException(); } + public static void MatrixLoad(OpenTK.Graphics.ES30.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoaddEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixLoad(OpenTK.Graphics.ES30.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadfEXT")] + [CLSCompliant(false)] + public static void MatrixLoad(OpenTK.Graphics.ES30.All mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadfEXT")] + [CLSCompliant(false)] + public static void MatrixLoad(OpenTK.Graphics.ES30.All mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadfEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixLoad(OpenTK.Graphics.ES30.All mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadfEXT")] + [CLSCompliant(false)] + public static void MatrixLoad(OpenTK.Graphics.ES30.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadfEXT")] + [CLSCompliant(false)] + public static void MatrixLoad(OpenTK.Graphics.ES30.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadfEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixLoad(OpenTK.Graphics.ES30.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadIdentityEXT")] + public static void MatrixLoadIdentity(OpenTK.Graphics.ES30.All mode) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadIdentityEXT")] + public static void MatrixLoadIdentity(OpenTK.Graphics.ES30.MatrixMode mode) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] + [CLSCompliant(false)] + public static void MatrixLoadTranspose(OpenTK.Graphics.ES30.All mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] + [CLSCompliant(false)] + public static void MatrixLoadTranspose(OpenTK.Graphics.ES30.All mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixLoadTranspose(OpenTK.Graphics.ES30.All mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] + [CLSCompliant(false)] + public static void MatrixLoadTranspose(OpenTK.Graphics.ES30.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] + [CLSCompliant(false)] + public static void MatrixLoadTranspose(OpenTK.Graphics.ES30.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixLoadTranspose(OpenTK.Graphics.ES30.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] + [CLSCompliant(false)] + public static void MatrixLoadTranspose(OpenTK.Graphics.ES30.All mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] + [CLSCompliant(false)] + public static void MatrixLoadTranspose(OpenTK.Graphics.ES30.All mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixLoadTranspose(OpenTK.Graphics.ES30.All mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] + [CLSCompliant(false)] + public static void MatrixLoadTranspose(OpenTK.Graphics.ES30.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] + [CLSCompliant(false)] + public static void MatrixLoadTranspose(OpenTK.Graphics.ES30.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixLoadTranspose(OpenTK.Graphics.ES30.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultdEXT")] + [CLSCompliant(false)] + public static void MatrixMult(OpenTK.Graphics.ES30.All mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultdEXT")] + [CLSCompliant(false)] + public static void MatrixMult(OpenTK.Graphics.ES30.All mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultdEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixMult(OpenTK.Graphics.ES30.All mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultdEXT")] + [CLSCompliant(false)] + public static void MatrixMult(OpenTK.Graphics.ES30.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultdEXT")] + [CLSCompliant(false)] + public static void MatrixMult(OpenTK.Graphics.ES30.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultdEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixMult(OpenTK.Graphics.ES30.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultfEXT")] + [CLSCompliant(false)] + public static void MatrixMult(OpenTK.Graphics.ES30.All mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultfEXT")] + [CLSCompliant(false)] + public static void MatrixMult(OpenTK.Graphics.ES30.All mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultfEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixMult(OpenTK.Graphics.ES30.All mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultfEXT")] + [CLSCompliant(false)] + public static void MatrixMult(OpenTK.Graphics.ES30.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultfEXT")] + [CLSCompliant(false)] + public static void MatrixMult(OpenTK.Graphics.ES30.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultfEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixMult(OpenTK.Graphics.ES30.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] + [CLSCompliant(false)] + public static void MatrixMultTranspose(OpenTK.Graphics.ES30.All mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] + [CLSCompliant(false)] + public static void MatrixMultTranspose(OpenTK.Graphics.ES30.All mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixMultTranspose(OpenTK.Graphics.ES30.All mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] + [CLSCompliant(false)] + public static void MatrixMultTranspose(OpenTK.Graphics.ES30.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] + [CLSCompliant(false)] + public static void MatrixMultTranspose(OpenTK.Graphics.ES30.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixMultTranspose(OpenTK.Graphics.ES30.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] + [CLSCompliant(false)] + public static void MatrixMultTranspose(OpenTK.Graphics.ES30.All mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] + [CLSCompliant(false)] + public static void MatrixMultTranspose(OpenTK.Graphics.ES30.All mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixMultTranspose(OpenTK.Graphics.ES30.All mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] + [CLSCompliant(false)] + public static void MatrixMultTranspose(OpenTK.Graphics.ES30.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] + [CLSCompliant(false)] + public static void MatrixMultTranspose(OpenTK.Graphics.ES30.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixMultTranspose(OpenTK.Graphics.ES30.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixOrthoEXT")] + public static void MatrixOrtho(OpenTK.Graphics.ES30.All mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixOrthoEXT")] + public static void MatrixOrtho(OpenTK.Graphics.ES30.MatrixMode mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixPopEXT")] + public static void MatrixPop(OpenTK.Graphics.ES30.All mode) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixPopEXT")] + public static void MatrixPop(OpenTK.Graphics.ES30.MatrixMode mode) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixPushEXT")] + public static void MatrixPush(OpenTK.Graphics.ES30.All mode) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixPushEXT")] + public static void MatrixPush(OpenTK.Graphics.ES30.MatrixMode mode) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixRotatedEXT")] + public static void MatrixRotate(OpenTK.Graphics.ES30.All mode, Double angle, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixRotatedEXT")] + public static void MatrixRotate(OpenTK.Graphics.ES30.MatrixMode mode, Double angle, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixRotatefEXT")] + public static void MatrixRotate(OpenTK.Graphics.ES30.All mode, Single angle, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixRotatefEXT")] + public static void MatrixRotate(OpenTK.Graphics.ES30.MatrixMode mode, Single angle, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixScaledEXT")] + public static void MatrixScale(OpenTK.Graphics.ES30.All mode, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixScaledEXT")] + public static void MatrixScale(OpenTK.Graphics.ES30.MatrixMode mode, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixScalefEXT")] + public static void MatrixScale(OpenTK.Graphics.ES30.All mode, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixScalefEXT")] + public static void MatrixScale(OpenTK.Graphics.ES30.MatrixMode mode, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixTranslatedEXT")] + public static void MatrixTranslate(OpenTK.Graphics.ES30.All mode, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixTranslatedEXT")] + public static void MatrixTranslate(OpenTK.Graphics.ES30.MatrixMode mode, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixTranslatefEXT")] + public static void MatrixTranslate(OpenTK.Graphics.ES30.All mode, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixTranslatefEXT")] + public static void MatrixTranslate(OpenTK.Graphics.ES30.MatrixMode mode, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -36913,7 +38713,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the distance in basic machine units between elements of the draw parameter array. /// [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectEXT")] - public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES30.PrimitiveType mode, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } + public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES30.PrimitiveType mode, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -36935,7 +38735,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectEXT")] [CLSCompliant(false)] - public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES30.PrimitiveType mode, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[] indirect, Int32 drawcount, Int32 stride) + public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES30.PrimitiveType mode, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[] indirect, Int32 drawcount, Int32 stride) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -36959,7 +38759,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectEXT")] [CLSCompliant(false)] - public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES30.PrimitiveType mode, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,] indirect, Int32 drawcount, Int32 stride) + public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES30.PrimitiveType mode, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,] indirect, Int32 drawcount, Int32 stride) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -36983,7 +38783,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectEXT")] [CLSCompliant(false)] - public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES30.PrimitiveType mode, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,,] indirect, Int32 drawcount, Int32 stride) + public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES30.PrimitiveType mode, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,,] indirect, Int32 drawcount, Int32 stride) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -37006,7 +38806,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the distance in basic machine units between elements of the draw parameter array. /// [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectEXT")] - public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES30.PrimitiveType mode, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] ref T2 indirect, Int32 drawcount, Int32 stride) + public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES30.PrimitiveType mode, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] ref T2 indirect, Int32 drawcount, Int32 stride) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -37016,9 +38816,10 @@ namespace OpenTK.Graphics.ES30 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } + public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, OpenTK.Graphics.ES30.All flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -37028,7 +38829,18 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } + public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, OpenTK.Graphics.ES30.MapBufferUsageMask flags) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_external_buffer] + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] + [CLSCompliant(false)] + public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, OpenTK.Graphics.ES30.All flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -37038,7 +38850,18 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } + public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, OpenTK.Graphics.ES30.MapBufferUsageMask flags) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_external_buffer] + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] + [CLSCompliant(false)] + public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, OpenTK.Graphics.ES30.All flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -37048,7 +38871,28 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } + public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, OpenTK.Graphics.ES30.MapBufferUsageMask flags) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_external_buffer] + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] + [CLSCompliant(false)] + public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, OpenTK.Graphics.ES30.All flags) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_external_buffer] + /// + /// + /// + /// + /// + [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] + [CLSCompliant(false)] + public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, OpenTK.Graphics.ES30.MapBufferUsageMask flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -37095,9 +38939,22 @@ namespace OpenTK.Graphics.ES30 /// /// Specifies the new value for the parameter given by pname. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_tessellation_shader", Version = "", EntryPoint = "glPatchParameteriEXT")] public static void PatchParameter(OpenTK.Graphics.ES30.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_tessellation_shader] + /// Specifies the parameters for patch primitives + /// + /// + /// Specifies the name of the parameter to set. The symbolc constants PatchVertices, PatchDefaultOuterLevel, and PatchDefaultInnerLevel are accepted. + /// + /// + /// Specifies the new value for the parameter given by pname. + /// + [AutoGenerated(Category = "EXT_tessellation_shader", Version = "", EntryPoint = "glPatchParameteriEXT")] + public static void PatchParameter(OpenTK.Graphics.ES30.PatchParameterName pname, Int32 value) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_polygon_offset_clamp] /// /// @@ -39254,6 +41111,7 @@ namespace OpenTK.Graphics.ES30 /// /// Specify the counter to query. target must be Timestamp. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glQueryCounterEXT")] [CLSCompliant(false)] public static void QueryCounter(Int32 id, OpenTK.Graphics.ES30.All target) { throw new BindingsNotRewrittenException(); } @@ -39269,8 +41127,35 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glQueryCounterEXT")] [CLSCompliant(false)] + public static void QueryCounter(Int32 id, OpenTK.Graphics.ES30.QueryTarget target) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_disjoint_timer_query] + /// Record the GL time into a query object after all previous commands have reached the GL server but have not yet necessarily executed. + /// + /// + /// Specify the name of a query object into which to record the GL time. + /// + /// + /// Specify the counter to query. target must be Timestamp. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glQueryCounterEXT")] + [CLSCompliant(false)] public static void QueryCounter(UInt32 id, OpenTK.Graphics.ES30.All target) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_disjoint_timer_query] + /// Record the GL time into a query object after all previous commands have reached the GL server but have not yet necessarily executed. + /// + /// + /// Specify the name of a query object into which to record the GL time. + /// + /// + /// Specify the counter to query. target must be Timestamp. + /// + [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glQueryCounterEXT")] + [CLSCompliant(false)] + public static void QueryCounter(UInt32 id, OpenTK.Graphics.ES30.QueryTarget target) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples] /// /// @@ -39288,9 +41173,16 @@ namespace OpenTK.Graphics.ES30 /// [requires: EXT_multiview_draw_buffers] /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glReadBufferIndexedEXT")] public static void ReadBufferIndexed(OpenTK.Graphics.ES30.All src, Int32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_multiview_draw_buffers] + /// + /// + [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glReadBufferIndexedEXT")] + public static void ReadBufferIndexed(OpenTK.Graphics.ES30.ReadBufferMode src, Int32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_robustness] /// /// @@ -39499,6 +41391,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } @@ -39507,6 +41400,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } @@ -39515,6 +41409,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } @@ -39525,12 +41420,38 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] + [CLSCompliant(false)] + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] + [CLSCompliant(false)] + public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] + [CLSCompliant(false)] public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } @@ -39539,6 +41460,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } @@ -39547,6 +41469,31 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] + [CLSCompliant(false)] + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] + [CLSCompliant(false)] + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] + [CLSCompliant(false)] + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivEXT")] [CLSCompliant(false)] public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new BindingsNotRewrittenException(); } @@ -39555,6 +41502,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivEXT")] [CLSCompliant(false)] public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new BindingsNotRewrittenException(); } @@ -39563,10 +41511,35 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivEXT")] [CLSCompliant(false)] public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivEXT")] + [CLSCompliant(false)] + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivEXT")] + [CLSCompliant(false)] + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivEXT")] + [CLSCompliant(false)] + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_semaphore] /// /// @@ -39855,7 +41828,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferEXT")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.All internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } + public static void TexBuffer(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.InternalFormat internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -39871,7 +41844,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferEXT")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.All internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } + public static void TexBuffer(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.InternalFormat internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -39891,6 +41864,7 @@ namespace OpenTK.Graphics.ES30 /// /// Specifies the size of the range of the buffer's data store to attach. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] [CLSCompliant(false)] public static void TexBufferRange(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } @@ -39913,6 +41887,7 @@ namespace OpenTK.Graphics.ES30 /// /// Specifies the size of the range of the buffer's data store to attach. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] [CLSCompliant(false)] public static void TexBufferRange(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } @@ -39935,6 +41910,7 @@ namespace OpenTK.Graphics.ES30 /// /// Specifies the size of the range of the buffer's data store to attach. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] [CLSCompliant(false)] public static void TexBufferRange(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } @@ -39957,10 +41933,99 @@ namespace OpenTK.Graphics.ES30 /// /// Specifies the size of the range of the buffer's data store to attach. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] [CLSCompliant(false)] public static void TexBufferRange(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_texture_buffer] + /// Bind a range of a buffer's data store to a buffer texture + /// + /// + /// Specifies the target of the operation and must be TextureBuffer. + /// + /// + /// Specifies the internal format of the data in the store belonging to buffer. + /// + /// + /// Specifies the name of the buffer object whose storage to attach to the active buffer texture. + /// + /// + /// Specifies the offset of the start of the range of the buffer's data store to attach. + /// + /// + /// Specifies the size of the range of the buffer's data store to attach. + /// + [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] + [CLSCompliant(false)] + public static void TexBufferRange(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.InternalFormat internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_buffer] + /// Bind a range of a buffer's data store to a buffer texture + /// + /// + /// Specifies the target of the operation and must be TextureBuffer. + /// + /// + /// Specifies the internal format of the data in the store belonging to buffer. + /// + /// + /// Specifies the name of the buffer object whose storage to attach to the active buffer texture. + /// + /// + /// Specifies the offset of the start of the range of the buffer's data store to attach. + /// + /// + /// Specifies the size of the range of the buffer's data store to attach. + /// + [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] + [CLSCompliant(false)] + public static void TexBufferRange(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.InternalFormat internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_buffer] + /// Bind a range of a buffer's data store to a buffer texture + /// + /// + /// Specifies the target of the operation and must be TextureBuffer. + /// + /// + /// Specifies the internal format of the data in the store belonging to buffer. + /// + /// + /// Specifies the name of the buffer object whose storage to attach to the active buffer texture. + /// + /// + /// Specifies the offset of the start of the range of the buffer's data store to attach. + /// + /// + /// Specifies the size of the range of the buffer's data store to attach. + /// + [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] + [CLSCompliant(false)] + public static void TexBufferRange(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.InternalFormat internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_buffer] + /// Bind a range of a buffer's data store to a buffer texture + /// + /// + /// Specifies the target of the operation and must be TextureBuffer. + /// + /// + /// Specifies the internal format of the data in the store belonging to buffer. + /// + /// + /// Specifies the name of the buffer object whose storage to attach to the active buffer texture. + /// + /// + /// Specifies the offset of the start of the range of the buffer's data store to attach. + /// + /// + /// Specifies the size of the range of the buffer's data store to attach. + /// + [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] + [CLSCompliant(false)] + public static void TexBufferRange(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.InternalFormat internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_sparse_texture] /// /// @@ -40091,9 +42156,28 @@ namespace OpenTK.Graphics.ES30 /// /// Specifies the width of the texture, in texels. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage1DEXT")] public static void TexStorage1D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_texture_storage] + /// Simultaneously specify storage for all levels of a one-dimensional texture + /// + /// + /// Specify the target of the operation. target must be either Texture1D or ProxyTexture1D. + /// + /// + /// Specify the number of texture levels. + /// + /// + /// Specifies the sized internal format to be used to store texture image data. + /// + /// + /// Specifies the width of the texture, in texels. + /// + [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage1DEXT")] + public static void TexStorage1D(OpenTK.Graphics.ES30.TextureTarget target, Int32 levels, OpenTK.Graphics.ES30.InternalFormat internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_texture_storage] /// Simultaneously specify storage for all levels of a two-dimensional texture /// @@ -40454,6 +42538,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage1DEXT")] [CLSCompliant(false)] public static void TextureStorage1D(Int32 texture, OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } @@ -40466,8 +42551,29 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage1DEXT")] [CLSCompliant(false)] + public static void TextureStorage1D(Int32 texture, OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.InternalFormat internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_storage] + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage1DEXT")] + [CLSCompliant(false)] public static void TextureStorage1D(UInt32 texture, OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_texture_storage] + /// + /// + /// + /// + /// + [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage1DEXT")] + [CLSCompliant(false)] + public static void TextureStorage1D(UInt32 texture, OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.InternalFormat internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_texture_storage] /// /// @@ -40475,6 +42581,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage2DEXT")] [CLSCompliant(false)] public static void TextureStorage2D(Int32 texture, OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } @@ -40488,8 +42595,31 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage2DEXT")] [CLSCompliant(false)] + public static void TextureStorage2D(Int32 texture, OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.InternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_storage] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage2DEXT")] + [CLSCompliant(false)] public static void TextureStorage2D(UInt32 texture, OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_texture_storage] + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage2DEXT")] + [CLSCompliant(false)] + public static void TextureStorage2D(UInt32 texture, OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.InternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_texture_storage] /// /// @@ -40498,6 +42628,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage3DEXT")] [CLSCompliant(false)] public static void TextureStorage3D(Int32 texture, OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } @@ -40512,8 +42643,33 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage3DEXT")] [CLSCompliant(false)] + public static void TextureStorage3D(Int32 texture, OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_storage] + /// + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage3DEXT")] + [CLSCompliant(false)] public static void TextureStorage3D(UInt32 texture, OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_texture_storage] + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage3DEXT")] + [CLSCompliant(false)] + public static void TextureStorage3D(UInt32 texture, OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_memory_object] /// /// @@ -40667,6 +42823,7 @@ namespace OpenTK.Graphics.ES30 /// /// Specifies the number of layers to include in the view. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_view", Version = "", EntryPoint = "glTextureViewEXT")] [CLSCompliant(false)] public static void TextureView(Int32 texture, OpenTK.Graphics.ES30.All target, Int32 origtexture, OpenTK.Graphics.ES30.All internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new BindingsNotRewrittenException(); } @@ -40700,8 +42857,71 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_texture_view", Version = "", EntryPoint = "glTextureViewEXT")] [CLSCompliant(false)] + public static void TextureView(Int32 texture, OpenTK.Graphics.ES30.TextureTarget target, Int32 origtexture, OpenTK.Graphics.ES30.InternalFormat internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_view] + /// Initialize a texture as a data alias of another texture's data store + /// + /// + /// Specifies the texture object to be initialized as a view. + /// + /// + /// Specifies the target to be used for the newly initialized texture. + /// + /// + /// Specifies the name of a texture object of which to make a view. + /// + /// + /// Specifies the internal format for the newly created view. + /// + /// + /// Specifies lowest level of detail of the view. + /// + /// + /// Specifies the number of levels of detail to include in the view. + /// + /// + /// Specifies the index of the first layer to include in the view. + /// + /// + /// Specifies the number of layers to include in the view. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_texture_view", Version = "", EntryPoint = "glTextureViewEXT")] + [CLSCompliant(false)] public static void TextureView(UInt32 texture, OpenTK.Graphics.ES30.All target, UInt32 origtexture, OpenTK.Graphics.ES30.All internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_texture_view] + /// Initialize a texture as a data alias of another texture's data store + /// + /// + /// Specifies the texture object to be initialized as a view. + /// + /// + /// Specifies the target to be used for the newly initialized texture. + /// + /// + /// Specifies the name of a texture object of which to make a view. + /// + /// + /// Specifies the internal format for the newly created view. + /// + /// + /// Specifies lowest level of detail of the view. + /// + /// + /// Specifies the number of levels of detail to include in the view. + /// + /// + /// Specifies the index of the first layer to include in the view. + /// + /// + /// Specifies the number of layers to include in the view. + /// + [AutoGenerated(Category = "EXT_texture_view", Version = "", EntryPoint = "glTextureViewEXT")] + [CLSCompliant(false)] + public static void TextureView(UInt32 texture, OpenTK.Graphics.ES30.TextureTarget target, UInt32 origtexture, OpenTK.Graphics.ES30.InternalFormat internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_separate_shader_objects] /// Bind stages of a program object to a program pipeline /// @@ -40714,9 +42934,10 @@ namespace OpenTK.Graphics.ES30 /// /// Specifies the program object containing the shader executables to use in pipeline. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseProgramStagesEXT")] [CLSCompliant(false)] - public static void UseProgramStages(Int32 pipeline, Int32 stages, Int32 program) { throw new BindingsNotRewrittenException(); } + public static void UseProgramStages(Int32 pipeline, OpenTK.Graphics.ES30.All stages, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind stages of a program object to a program pipeline @@ -40732,7 +42953,40 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseProgramStagesEXT")] [CLSCompliant(false)] - public static void UseProgramStages(UInt32 pipeline, UInt32 stages, UInt32 program) { throw new BindingsNotRewrittenException(); } + public static void UseProgramStages(Int32 pipeline, OpenTK.Graphics.ES30.UseProgramStageMask stages, Int32 program) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_separate_shader_objects] + /// Bind stages of a program object to a program pipeline + /// + /// + /// Specifies the program pipeline object to which to bind stages from program. + /// + /// + /// Specifies a set of program stages to bind to the program pipeline object. + /// + /// + /// Specifies the program object containing the shader executables to use in pipeline. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseProgramStagesEXT")] + [CLSCompliant(false)] + public static void UseProgramStages(UInt32 pipeline, OpenTK.Graphics.ES30.All stages, UInt32 program) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_separate_shader_objects] + /// Bind stages of a program object to a program pipeline + /// + /// + /// Specifies the program pipeline object to which to bind stages from program. + /// + /// + /// Specifies a set of program stages to bind to the program pipeline object. + /// + /// + /// Specifies the program object containing the shader executables to use in pipeline. + /// + [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseProgramStagesEXT")] + [CLSCompliant(false)] + public static void UseProgramStages(UInt32 pipeline, OpenTK.Graphics.ES30.UseProgramStageMask stages, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -40968,6 +43222,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTexture2DDownsampleIMG")] [CLSCompliant(false)] public static void FramebufferTexture2DDownsample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, Int32 texture, Int32 level, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } @@ -40980,10 +43235,35 @@ namespace OpenTK.Graphics.ES30 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTexture2DDownsampleIMG")] [CLSCompliant(false)] public static void FramebufferTexture2DDownsample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, UInt32 texture, Int32 level, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } + /// [requires: IMG_framebuffer_downsample] + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTexture2DDownsampleIMG")] + [CLSCompliant(false)] + public static void FramebufferTexture2DDownsample(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, OpenTK.Graphics.ES30.TextureTarget textarget, Int32 texture, Int32 level, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } + + /// [requires: IMG_framebuffer_downsample] + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTexture2DDownsampleIMG")] + [CLSCompliant(false)] + public static void FramebufferTexture2DDownsample(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, OpenTK.Graphics.ES30.TextureTarget textarget, UInt32 texture, Int32 level, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } + /// [requires: IMG_multisampled_render_to_texture] /// /// @@ -40991,6 +43271,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleIMG")] [CLSCompliant(false)] public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, Int32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } @@ -41002,10 +43283,33 @@ namespace OpenTK.Graphics.ES30 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleIMG")] [CLSCompliant(false)] public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, UInt32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } + /// [requires: IMG_multisampled_render_to_texture] + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleIMG")] + [CLSCompliant(false)] + public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, OpenTK.Graphics.ES30.TextureTarget textarget, Int32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } + + /// [requires: IMG_multisampled_render_to_texture] + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleIMG")] + [CLSCompliant(false)] + public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, OpenTK.Graphics.ES30.TextureTarget textarget, UInt32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } + /// [requires: IMG_framebuffer_downsample] /// /// @@ -42865,7 +45169,7 @@ namespace OpenTK.Graphics.ES30 /// [requires: KHR_robustness] [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetGraphicsResetStatusKHR")] - public static OpenTK.Graphics.ES30.All GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.ES30.GraphicsResetStatus GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -43629,6 +45933,18 @@ namespace OpenTK.Graphics.ES30 where T1 : struct { throw new BindingsNotRewrittenException(); } + /// [requires: KHR_parallel_shader_compile] + /// + [AutoGenerated(Category = "KHR_parallel_shader_compile", Version = "", EntryPoint = "glMaxShaderCompilerThreadsKHR")] + [CLSCompliant(false)] + public static void MaxShaderCompilerThreads(Int32 count) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_parallel_shader_compile] + /// + [AutoGenerated(Category = "KHR_parallel_shader_compile", Version = "", EntryPoint = "glMaxShaderCompilerThreadsKHR")] + [CLSCompliant(false)] + public static void MaxShaderCompilerThreads(UInt32 count) { throw new BindingsNotRewrittenException(); } + /// [requires: KHR_debug] /// Label a named object identified within a namespace /// @@ -43814,6 +46130,7 @@ namespace OpenTK.Graphics.ES30 /// /// The a string containing the message to be sent to the debug output stream. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroupKHR")] [CLSCompliant(false)] public static void PushDebugGroup(OpenTK.Graphics.ES30.All source, Int32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } @@ -43833,10 +46150,49 @@ namespace OpenTK.Graphics.ES30 /// /// The a string containing the message to be sent to the debug output stream. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroupKHR")] [CLSCompliant(false)] public static void PushDebugGroup(OpenTK.Graphics.ES30.All source, UInt32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } + /// [requires: KHR_debug] + /// Push a named debug group into the command stream + /// + /// + /// The source of the debug message. + /// + /// + /// The identifier of the message. + /// + /// + /// The length of the message to be sent to the debug output stream. + /// + /// + /// The a string containing the message to be sent to the debug output stream. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroupKHR")] + [CLSCompliant(false)] + public static void PushDebugGroup(OpenTK.Graphics.ES30.DebugSource source, Int32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Push a named debug group into the command stream + /// + /// + /// The source of the debug message. + /// + /// + /// The identifier of the message. + /// + /// + /// The length of the message to be sent to the debug output stream. + /// + /// + /// The a string containing the message to be sent to the debug output stream. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroupKHR")] + [CLSCompliant(false)] + public static void PushDebugGroup(OpenTK.Graphics.ES30.DebugSource source, UInt32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } + /// [requires: KHR_robustness] /// /// @@ -43997,6 +46353,7 @@ namespace OpenTK.Graphics.ES30 /// /// Specifies how glBeginConditionalRender interprets the results of the occlusion query. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNV")] [CLSCompliant(false)] public static void BeginConditionalRender(Int32 id, OpenTK.Graphics.ES30.All mode) { throw new BindingsNotRewrittenException(); } @@ -44012,8 +46369,35 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNV")] [CLSCompliant(false)] + public static void BeginConditionalRender(Int32 id, OpenTK.Graphics.ES30.TypeEnum mode) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_conditional_render] + /// Start conditional rendering + /// + /// + /// Specifies the name of an occlusion query object whose results are used to determine if the rendering commands are discarded. + /// + /// + /// Specifies how glBeginConditionalRender interprets the results of the occlusion query. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNV")] + [CLSCompliant(false)] public static void BeginConditionalRender(UInt32 id, OpenTK.Graphics.ES30.All mode) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_conditional_render] + /// Start conditional rendering + /// + /// + /// Specifies the name of an occlusion query object whose results are used to determine if the rendering commands are discarded. + /// + /// + /// Specifies how glBeginConditionalRender interprets the results of the occlusion query. + /// + [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNV")] + [CLSCompliant(false)] + public static void BeginConditionalRender(UInt32 id, OpenTK.Graphics.ES30.TypeEnum mode) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_blend_equation_advanced] [AutoGenerated(Category = "NV_blend_equation_advanced", Version = "", EntryPoint = "glBlendBarrierNV")] public static void BlendBarrier() { throw new BindingsNotRewrittenException(); } @@ -44215,24 +46599,24 @@ namespace OpenTK.Graphics.ES30 /// [requires: NV_framebuffer_mixed_samples] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static void CoverageModulationTable(Int32 n, Single[] v) { throw new BindingsNotRewrittenException(); } + public static void CoverageModulationTable(Int32 n, [CountAttribute(Parameter = "n")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static void CoverageModulationTable(Int32 n, ref Single v) { throw new BindingsNotRewrittenException(); } + public static void CoverageModulationTable(Int32 n, [CountAttribute(Parameter = "n")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static unsafe void CoverageModulationTable(Int32 n, Single* v) { throw new BindingsNotRewrittenException(); } + public static unsafe void CoverageModulationTable(Int32 n, [CountAttribute(Parameter = "n")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_coverage_sample] /// @@ -44247,6 +46631,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } @@ -44259,6 +46644,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } @@ -44271,6 +46657,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } @@ -44283,6 +46670,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } @@ -44295,6 +46683,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } @@ -44307,6 +46696,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } @@ -44319,6 +46709,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -44333,6 +46724,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -44347,6 +46739,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -44361,6 +46754,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -44375,6 +46769,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -44389,6 +46784,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -44403,6 +46799,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -44417,6 +46814,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -44431,6 +46829,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -44445,6 +46844,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -44459,6 +46859,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -44473,6 +46874,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -44487,6 +46889,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -44501,6 +46904,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -44515,6 +46919,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -44529,6 +46934,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -44543,6 +46949,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -44557,6 +46964,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -44571,6 +46979,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -44585,6 +46994,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -44599,6 +47009,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -44613,6 +47024,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -44627,6 +47039,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -44641,26 +47054,13 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } - /// [requires: NV_path_rendering] - /// - /// - [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] - [CLSCompliant(false)] - public static void CoverFillPath(Int32 path, OpenTK.Graphics.ES30.All coverMode) { throw new BindingsNotRewrittenException(); } - - /// [requires: NV_path_rendering] - /// - /// - [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] - [CLSCompliant(false)] - public static void CoverFillPath(UInt32 path, OpenTK.Graphics.ES30.All coverMode) { throw new BindingsNotRewrittenException(); } - /// [requires: NV_path_rendering] /// /// @@ -44669,6 +47069,445 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] + [CLSCompliant(false)] + public static void CoverFillPath(Int32 path, OpenTK.Graphics.ES30.All coverMode) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] + [CLSCompliant(false)] + public static void CoverFillPath(Int32 path, OpenTK.Graphics.ES30.PathCoverMode coverMode) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] + [CLSCompliant(false)] + public static void CoverFillPath(UInt32 path, OpenTK.Graphics.ES30.All coverMode) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] + [CLSCompliant(false)] + public static void CoverFillPath(UInt32 path, OpenTK.Graphics.ES30.PathCoverMode coverMode) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } @@ -44681,6 +47520,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } @@ -44693,6 +47533,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } @@ -44705,6 +47546,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } @@ -44717,6 +47559,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } @@ -44729,6 +47572,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } @@ -44741,6 +47585,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -44755,6 +47600,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -44769,6 +47615,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -44783,6 +47630,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -44797,6 +47645,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -44811,6 +47660,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -44825,6 +47675,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -44839,6 +47690,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -44853,6 +47705,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -44867,6 +47720,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -44881,6 +47735,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -44895,6 +47750,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -44909,6 +47765,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -44923,6 +47780,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -44937,6 +47795,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -44951,6 +47810,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -44965,6 +47825,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -44979,6 +47840,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -44993,6 +47855,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -45007,6 +47870,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -45021,6 +47885,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -45035,6 +47900,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -45049,6 +47915,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -45063,15 +47930,425 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathCoverMode coverMode, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathNV")] [CLSCompliant(false)] public static void CoverStrokePath(Int32 path, OpenTK.Graphics.ES30.All coverMode) { throw new BindingsNotRewrittenException(); } @@ -45081,8 +48358,23 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathNV")] [CLSCompliant(false)] + public static void CoverStrokePath(Int32 path, OpenTK.Graphics.ES30.PathCoverMode coverMode) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathNV")] + [CLSCompliant(false)] public static void CoverStrokePath(UInt32 path, OpenTK.Graphics.ES30.All coverMode) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathNV")] + [CLSCompliant(false)] + public static void CoverStrokePath(UInt32 path, OpenTK.Graphics.ES30.PathCoverMode coverMode) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_fence] /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] @@ -45282,6 +48574,7 @@ namespace OpenTK.Graphics.ES30 /// [requires: NV_viewport_array] /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDisableiNV")] [CLSCompliant(false)] public static void Disable(OpenTK.Graphics.ES30.All target, Int32 index) { throw new BindingsNotRewrittenException(); } @@ -45289,10 +48582,25 @@ namespace OpenTK.Graphics.ES30 /// [requires: NV_viewport_array] /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDisableiNV")] [CLSCompliant(false)] public static void Disable(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_viewport_array] + /// + /// + [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDisableiNV")] + [CLSCompliant(false)] + public static void Disable(OpenTK.Graphics.ES30.EnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_viewport_array] + /// + /// + [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDisableiNV")] + [CLSCompliant(false)] + public static void Disable(OpenTK.Graphics.ES30.EnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_draw_instanced] /// Draw multiple instances of a range of elements /// @@ -45687,6 +48995,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a symbolic constant indicating a GL capability. /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glEnableiNV")] [CLSCompliant(false)] public static void Enable(OpenTK.Graphics.ES30.All target, Int32 index) { throw new BindingsNotRewrittenException(); } @@ -45698,10 +49007,33 @@ namespace OpenTK.Graphics.ES30 /// Specifies a symbolic constant indicating a GL capability. /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glEnableiNV")] [CLSCompliant(false)] public static void Enable(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_viewport_array] + /// Enable or disable server-side GL capabilities + /// + /// + /// Specifies a symbolic constant indicating a GL capability. + /// + /// + [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glEnableiNV")] + [CLSCompliant(false)] + public static void Enable(OpenTK.Graphics.ES30.EnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_viewport_array] + /// Enable or disable server-side GL capabilities + /// + /// + /// Specifies a symbolic constant indicating a GL capability. + /// + /// + [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glEnableiNV")] + [CLSCompliant(false)] + public static void Enable(OpenTK.Graphics.ES30.EnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_conditional_render] [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glEndConditionalRenderNV")] public static void EndConditionalRender() { throw new BindingsNotRewrittenException(); } @@ -45735,6 +49067,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] public static void FramebufferSampleLocations(OpenTK.Graphics.ES30.All target, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } @@ -45744,6 +49077,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] public static void FramebufferSampleLocations(OpenTK.Graphics.ES30.All target, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } @@ -45753,6 +49087,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.ES30.All target, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } @@ -45762,6 +49097,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] public static void FramebufferSampleLocations(OpenTK.Graphics.ES30.All target, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } @@ -45771,6 +49107,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] public static void FramebufferSampleLocations(OpenTK.Graphics.ES30.All target, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } @@ -45780,10 +49117,65 @@ namespace OpenTK.Graphics.ES30 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.ES30.All target, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_sample_locations] + /// + /// + /// + /// + [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] + [CLSCompliant(false)] + public static void FramebufferSampleLocations(OpenTK.Graphics.ES30.FramebufferTarget target, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_sample_locations] + /// + /// + /// + /// + [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] + [CLSCompliant(false)] + public static void FramebufferSampleLocations(OpenTK.Graphics.ES30.FramebufferTarget target, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_sample_locations] + /// + /// + /// + /// + [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] + [CLSCompliant(false)] + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.ES30.FramebufferTarget target, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_sample_locations] + /// + /// + /// + /// + [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] + [CLSCompliant(false)] + public static void FramebufferSampleLocations(OpenTK.Graphics.ES30.FramebufferTarget target, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_sample_locations] + /// + /// + /// + /// + [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] + [CLSCompliant(false)] + public static void FramebufferSampleLocations(OpenTK.Graphics.ES30.FramebufferTarget target, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_sample_locations] + /// + /// + /// + /// + [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] + [CLSCompliant(false)] + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.ES30.FramebufferTarget target, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] @@ -45914,6 +49306,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } @@ -45922,6 +49315,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } @@ -45930,6 +49324,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] public static unsafe void GetFloat(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } @@ -45938,6 +49333,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } @@ -45946,6 +49342,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } @@ -45954,16 +49351,66 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] public static unsafe void GetFloat(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_viewport_array] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] + [CLSCompliant(false)] + public static void GetFloat(OpenTK.Graphics.ES30.TypeEnum target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_viewport_array] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] + [CLSCompliant(false)] + public static void GetFloat(OpenTK.Graphics.ES30.TypeEnum target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_viewport_array] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] + [CLSCompliant(false)] + public static unsafe void GetFloat(OpenTK.Graphics.ES30.TypeEnum target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_viewport_array] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] + [CLSCompliant(false)] + public static void GetFloat(OpenTK.Graphics.ES30.TypeEnum target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_viewport_array] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] + [CLSCompliant(false)] + public static void GetFloat(OpenTK.Graphics.ES30.TypeEnum target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_viewport_array] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] + [CLSCompliant(false)] + public static unsafe void GetFloat(OpenTK.Graphics.ES30.TypeEnum target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_bindless_texture] /// /// /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetImageHandleNV")] [CLSCompliant(false)] public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES30.All format) { throw new BindingsNotRewrittenException(); } @@ -45976,8 +49423,29 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetImageHandleNV")] [CLSCompliant(false)] + public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES30.PixelFormat format) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_bindless_texture] + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetImageHandleNV")] + [CLSCompliant(false)] public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES30.All format) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_bindless_texture] + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetImageHandleNV")] + [CLSCompliant(false)] + public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES30.PixelFormat format) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_internalformat_sample_query] /// /// @@ -45985,6 +49453,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: bufSize] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] public static void GetInternalformatSample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 samples, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -45996,6 +49465,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: bufSize] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] public static void GetInternalformatSample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 samples, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -46007,14 +49477,49 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: bufSize] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] public static unsafe void GetInternalformatSample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 samples, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_internalformat_sample_query] + /// + /// + /// + /// + /// + /// [length: bufSize] + [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] + [CLSCompliant(false)] + public static void GetInternalformatSample(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.InternalFormat internalformat, Int32 samples, OpenTK.Graphics.ES30.InternalFormatPName pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_internalformat_sample_query] + /// + /// + /// + /// + /// + /// [length: bufSize] + [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] + [CLSCompliant(false)] + public static void GetInternalformatSample(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.InternalFormat internalformat, Int32 samples, OpenTK.Graphics.ES30.InternalFormatPName pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_internalformat_sample_query] + /// + /// + /// + /// + /// + /// [length: bufSize] + [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] + [CLSCompliant(false)] + public static unsafe void GetInternalformatSample(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.InternalFormat internalformat, Int32 samples, OpenTK.Graphics.ES30.InternalFormatPName pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] public static void GetPathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } @@ -46023,6 +49528,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] public static void GetPathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } @@ -46031,6 +49537,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] public static unsafe void GetPathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } @@ -46039,6 +49546,31 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] + [CLSCompliant(false)] + public static void GetPathColorGen(OpenTK.Graphics.ES30.PathColor color, OpenTK.Graphics.ES30.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] + [CLSCompliant(false)] + public static void GetPathColorGen(OpenTK.Graphics.ES30.PathColor color, OpenTK.Graphics.ES30.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] + [CLSCompliant(false)] + public static unsafe void GetPathColorGen(OpenTK.Graphics.ES30.PathColor color, OpenTK.Graphics.ES30.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] public static void GetPathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } @@ -46047,6 +49579,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] public static void GetPathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } @@ -46055,10 +49588,35 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] public static unsafe void GetPathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] + [CLSCompliant(false)] + public static void GetPathColorGen(OpenTK.Graphics.ES30.PathColor color, OpenTK.Graphics.ES30.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] + [CLSCompliant(false)] + public static void GetPathColorGen(OpenTK.Graphics.ES30.PathColor color, OpenTK.Graphics.ES30.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] + [CLSCompliant(false)] + public static unsafe void GetPathColorGen(OpenTK.Graphics.ES30.PathColor color, OpenTK.Graphics.ES30.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] @@ -46243,9 +49801,65 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } + public static void GetPathMetricRange(OpenTK.Graphics.ES30.All metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] + [CLSCompliant(false)] + public static void GetPathMetricRange(OpenTK.Graphics.ES30.All metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetricRange(OpenTK.Graphics.ES30.All metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] + [CLSCompliant(false)] + public static void GetPathMetricRange(OpenTK.Graphics.ES30.All metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] + [CLSCompliant(false)] + public static void GetPathMetricRange(OpenTK.Graphics.ES30.All metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetricRange(OpenTK.Graphics.ES30.All metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46255,7 +49869,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } + public static void GetPathMetricRange(OpenTK.Graphics.ES30.PathMetricMask metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46265,7 +49879,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } + public static void GetPathMetricRange(OpenTK.Graphics.ES30.PathMetricMask metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46275,7 +49889,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPathMetricRange(OpenTK.Graphics.ES30.PathMetricMask metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46285,7 +49899,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } + public static void GetPathMetricRange(OpenTK.Graphics.ES30.PathMetricMask metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46295,7 +49909,17 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } + public static void GetPathMetricRange(OpenTK.Graphics.ES30.PathMetricMask metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetricRange(OpenTK.Graphics.ES30.PathMetricMask metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46305,9 +49929,10 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } + public static void GetPathMetric(OpenTK.Graphics.ES30.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46317,9 +49942,10 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } + public static void GetPathMetric(OpenTK.Graphics.ES30.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46329,9 +49955,10 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPathMetric(OpenTK.Graphics.ES30.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46341,9 +49968,394 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + public static void GetPathMetric(OpenTK.Graphics.ES30.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES30.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetric(OpenTK.Graphics.ES30.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES30.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES30.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetric(OpenTK.Graphics.ES30.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES30.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES30.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetric(OpenTK.Graphics.ES30.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES30.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES30.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetric(OpenTK.Graphics.ES30.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES30.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES30.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetric(OpenTK.Graphics.ES30.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES30.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES30.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetric(OpenTK.Graphics.ES30.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES30.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES30.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetric(OpenTK.Graphics.ES30.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES30.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES30.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetric(OpenTK.Graphics.ES30.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES30.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES30.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetric(OpenTK.Graphics.ES30.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -46357,7 +50369,79 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + public static void GetPathMetric(OpenTK.Graphics.ES30.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES30.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetric(OpenTK.Graphics.ES30.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES30.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES30.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetric(OpenTK.Graphics.ES30.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES30.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -46371,7 +50455,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + public static void GetPathMetric(OpenTK.Graphics.ES30.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -46385,7 +50469,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + public static unsafe void GetPathMetric(OpenTK.Graphics.ES30.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -46399,7 +50483,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + public static void GetPathMetric(OpenTK.Graphics.ES30.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -46413,7 +50497,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + public static void GetPathMetric(OpenTK.Graphics.ES30.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -46427,7 +50511,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + public static unsafe void GetPathMetric(OpenTK.Graphics.ES30.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -46441,7 +50525,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + public static void GetPathMetric(OpenTK.Graphics.ES30.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -46455,7 +50539,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + public static void GetPathMetric(OpenTK.Graphics.ES30.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -46469,7 +50553,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + public static unsafe void GetPathMetric(OpenTK.Graphics.ES30.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -46483,7 +50567,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + public static void GetPathMetric(OpenTK.Graphics.ES30.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -46497,7 +50581,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + public static void GetPathMetric(OpenTK.Graphics.ES30.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -46511,43 +50595,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } - - /// [requires: NV_path_rendering] - /// - /// - /// - /// [length: COMPSIZE(numPaths,pathNameType,paths)] - /// - /// - /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] - [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] - [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } - - /// [requires: NV_path_rendering] - /// - /// - /// - /// [length: COMPSIZE(numPaths,pathNameType,paths)] - /// - /// - /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] - [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] - [CLSCompliant(false)] - public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } - - /// [requires: NV_path_rendering] - /// - /// - /// - /// [length: COMPSIZE(numPaths,pathNameType,paths)] - /// - /// - /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] - [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] - [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + public static unsafe void GetPathMetric(OpenTK.Graphics.ES30.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -46561,7 +50609,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + public static void GetPathMetric(OpenTK.Graphics.ES30.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -46575,7 +50623,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + public static void GetPathMetric(OpenTK.Graphics.ES30.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -46589,7 +50637,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + public static unsafe void GetPathMetric(OpenTK.Graphics.ES30.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -46603,7 +50651,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + public static void GetPathMetric(OpenTK.Graphics.ES30.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -46617,7 +50665,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + public static void GetPathMetric(OpenTK.Graphics.ES30.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -46631,7 +50679,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + public static unsafe void GetPathMetric(OpenTK.Graphics.ES30.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -46645,7 +50693,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + public static void GetPathMetric(OpenTK.Graphics.ES30.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -46659,7 +50707,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + public static void GetPathMetric(OpenTK.Graphics.ES30.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -46673,7 +50721,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + public static unsafe void GetPathMetric(OpenTK.Graphics.ES30.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -46687,7 +50735,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + public static void GetPathMetric(OpenTK.Graphics.ES30.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -46701,7 +50749,21 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + public static void GetPathMetric(OpenTK.Graphics.ES30.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetric(OpenTK.Graphics.ES30.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -46709,6 +50771,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } @@ -46717,6 +50780,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new BindingsNotRewrittenException(); } @@ -46725,6 +50789,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } @@ -46735,12 +50800,38 @@ namespace OpenTK.Graphics.ES30 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] + public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES30.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: 4] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] + [CLSCompliant(false)] + public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES30.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: 4] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] + [CLSCompliant(false)] + public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.ES30.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] + [CLSCompliant(false)] public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new BindingsNotRewrittenException(); } @@ -46749,6 +50840,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } @@ -46757,6 +50849,31 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: 4] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] + [CLSCompliant(false)] + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES30.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: 4] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] + [CLSCompliant(false)] + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES30.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: 4] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] + [CLSCompliant(false)] + public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.ES30.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new BindingsNotRewrittenException(); } @@ -46765,6 +50882,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new BindingsNotRewrittenException(); } @@ -46773,6 +50891,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new BindingsNotRewrittenException(); } @@ -46783,12 +50902,38 @@ namespace OpenTK.Graphics.ES30 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] + public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES30.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: 4] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] + [CLSCompliant(false)] + public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES30.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: 4] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] + [CLSCompliant(false)] + public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.ES30.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] + [CLSCompliant(false)] public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new BindingsNotRewrittenException(); } @@ -46797,10 +50942,35 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// [length: 4] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] + [CLSCompliant(false)] + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES30.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: 4] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] + [CLSCompliant(false)] + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES30.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: 4] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] + [CLSCompliant(false)] + public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.ES30.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// @@ -46811,6 +50981,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new BindingsNotRewrittenException(); } @@ -46825,6 +50996,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new BindingsNotRewrittenException(); } @@ -46839,6 +51011,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new BindingsNotRewrittenException(); } @@ -46853,6 +51026,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new BindingsNotRewrittenException(); } @@ -46867,6 +51041,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new BindingsNotRewrittenException(); } @@ -46881,6 +51056,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new BindingsNotRewrittenException(); } @@ -46895,6 +51071,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) @@ -46911,6 +51088,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) @@ -46927,6 +51105,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) @@ -46943,6 +51122,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) @@ -46959,6 +51139,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) @@ -46975,6 +51156,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) @@ -46991,6 +51173,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) @@ -47007,6 +51190,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) @@ -47023,6 +51207,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) @@ -47039,6 +51224,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) @@ -47055,6 +51241,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) @@ -47071,6 +51258,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) @@ -47087,6 +51275,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) @@ -47103,6 +51292,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) @@ -47119,6 +51309,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) @@ -47135,6 +51326,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) @@ -47151,6 +51343,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) @@ -47167,6 +51360,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) @@ -47183,6 +51377,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) @@ -47199,6 +51394,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) @@ -47215,6 +51411,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) @@ -47231,6 +51428,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) @@ -47247,6 +51445,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) @@ -47263,12 +51462,481 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES30.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES30.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES30.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES30.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES30.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES30.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES30.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES30.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES30.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES30.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES30.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES30.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES30.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES30.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES30.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES30.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES30.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES30.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES30.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES30.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// @@ -47302,7 +51970,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES30.TextureUnit texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES30.TextureUnit texCoordSet, OpenTK.Graphics.ES30.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47310,7 +51978,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES30.TextureUnit texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES30.TextureUnit texCoordSet, OpenTK.Graphics.ES30.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47318,7 +51986,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathTexGen(OpenTK.Graphics.ES30.TextureUnit texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.ES30.TextureUnit texCoordSet, OpenTK.Graphics.ES30.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47353,7 +52021,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES30.TextureUnit texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES30.TextureUnit texCoordSet, OpenTK.Graphics.ES30.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47361,7 +52029,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES30.TextureUnit texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES30.TextureUnit texCoordSet, OpenTK.Graphics.ES30.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47369,7 +52037,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static unsafe void GetPathTexGen(OpenTK.Graphics.ES30.TextureUnit texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.ES30.TextureUnit texCoordSet, OpenTK.Graphics.ES30.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -47386,6 +52054,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES30.All programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.ES30.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } @@ -47405,6 +52074,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES30.All programInterface, Int32 index, Int32 propCount, ref OpenTK.Graphics.ES30.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } @@ -47424,6 +52094,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.ES30.All programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.ES30.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } @@ -47445,6 +52116,64 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] + public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES30.ProgramInterface programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.ES30.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// Retrieve values for multiple properties of a single active resource within a program object + /// + /// + /// The name of a program object whose resources to query. + /// + /// + /// A token identifying the interface within program containing the resource named name. + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] + [CLSCompliant(false)] + public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES30.ProgramInterface programInterface, Int32 index, Int32 propCount, ref OpenTK.Graphics.ES30.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// Retrieve values for multiple properties of a single active resource within a program object + /// + /// + /// The name of a program object whose resources to query. + /// + /// + /// A token identifying the interface within program containing the resource named name. + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] + [CLSCompliant(false)] + public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.ES30.ProgramInterface programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.ES30.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// Retrieve values for multiple properties of a single active resource within a program object + /// + /// + /// The name of a program object whose resources to query. + /// + /// + /// A token identifying the interface within program containing the resource named name. + /// + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] + [CLSCompliant(false)] public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES30.All programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.ES30.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] @@ -47462,6 +52191,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES30.All programInterface, UInt32 index, Int32 propCount, ref OpenTK.Graphics.ES30.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } @@ -47481,10 +52211,68 @@ namespace OpenTK.Graphics.ES30 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.ES30.All programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.ES30.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// Retrieve values for multiple properties of a single active resource within a program object + /// + /// + /// The name of a program object whose resources to query. + /// + /// + /// A token identifying the interface within program containing the resource named name. + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] + [CLSCompliant(false)] + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES30.ProgramInterface programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.ES30.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// Retrieve values for multiple properties of a single active resource within a program object + /// + /// + /// The name of a program object whose resources to query. + /// + /// + /// A token identifying the interface within program containing the resource named name. + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] + [CLSCompliant(false)] + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES30.ProgramInterface programInterface, UInt32 index, Int32 propCount, ref OpenTK.Graphics.ES30.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// Retrieve values for multiple properties of a single active resource within a program object + /// + /// + /// The name of a program object whose resources to query. + /// + /// + /// A token identifying the interface within program containing the resource named name. + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] + [CLSCompliant(false)] + public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.ES30.ProgramInterface programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.ES30.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleNV")] @@ -47639,6 +52427,7 @@ namespace OpenTK.Graphics.ES30 /// /// Specifies the index of the capability. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glIsEnablediNV")] [CLSCompliant(false)] public static bool IsEnabled(OpenTK.Graphics.ES30.All target, Int32 index) { throw new BindingsNotRewrittenException(); } @@ -47652,10 +52441,37 @@ namespace OpenTK.Graphics.ES30 /// /// Specifies the index of the capability. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glIsEnablediNV")] [CLSCompliant(false)] public static bool IsEnabled(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_viewport_array] + /// Test whether a capability is enabled + /// + /// + /// Specifies a symbolic constant indicating a GL capability. + /// + /// + /// Specifies the index of the capability. + /// + [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glIsEnablediNV")] + [CLSCompliant(false)] + public static bool IsEnabled(OpenTK.Graphics.ES30.EnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_viewport_array] + /// Test whether a capability is enabled + /// + /// + /// Specifies a symbolic constant indicating a GL capability. + /// + /// + /// Specifies the index of the capability. + /// + [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glIsEnablediNV")] + [CLSCompliant(false)] + public static bool IsEnabled(OpenTK.Graphics.ES30.EnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glIsFenceNV")] @@ -47973,6 +52789,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(genMode,colorFormat)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] public static void PathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All genMode, OpenTK.Graphics.ES30.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single[] coeffs) { throw new BindingsNotRewrittenException(); } @@ -47982,6 +52799,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(genMode,colorFormat)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] public static void PathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All genMode, OpenTK.Graphics.ES30.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] ref Single coeffs) { throw new BindingsNotRewrittenException(); } @@ -47991,10 +52809,38 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(genMode,colorFormat)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] public static unsafe void PathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All genMode, OpenTK.Graphics.ES30.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single* coeffs) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(genMode,colorFormat)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] + [CLSCompliant(false)] + public static void PathColorGen(OpenTK.Graphics.ES30.PathColor color, OpenTK.Graphics.ES30.PathGenMode genMode, OpenTK.Graphics.ES30.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single[] coeffs) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(genMode,colorFormat)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] + [CLSCompliant(false)] + public static void PathColorGen(OpenTK.Graphics.ES30.PathColor color, OpenTK.Graphics.ES30.PathGenMode genMode, OpenTK.Graphics.ES30.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] ref Single coeffs) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(genMode,colorFormat)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] + [CLSCompliant(false)] + public static unsafe void PathColorGen(OpenTK.Graphics.ES30.PathColor color, OpenTK.Graphics.ES30.PathGenMode genMode, OpenTK.Graphics.ES30.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single* coeffs) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// @@ -48540,9 +53386,15 @@ namespace OpenTK.Graphics.ES30 /// [requires: NV_path_rendering] /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathFogGenNV")] public static void PathFogGen(OpenTK.Graphics.ES30.All genMode) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathFogGenNV")] + public static void PathFogGen(OpenTK.Graphics.ES30.PathGenMode genMode) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// @@ -48552,9 +53404,10 @@ namespace OpenTK.Graphics.ES30 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, IntPtr fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, IntPtr fontName, OpenTK.Graphics.ES30.All fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48567,7 +53420,21 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T2[] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) + public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, IntPtr fontName, OpenTK.Graphics.ES30.PathFontStyle fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T2[] fontName, OpenTK.Graphics.ES30.All fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -48582,7 +53449,23 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T2[,] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) + public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T2[] fontName, OpenTK.Graphics.ES30.PathFontStyle fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T2[,] fontName, OpenTK.Graphics.ES30.All fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -48597,7 +53480,23 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) + public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T2[,] fontName, OpenTK.Graphics.ES30.PathFontStyle fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, OpenTK.Graphics.ES30.All fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -48612,7 +53511,23 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] ref T2 fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) + public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, OpenTK.Graphics.ES30.PathFontStyle fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] ref T2 fontName, OpenTK.Graphics.ES30.All fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -48627,7 +53542,23 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] ref T2 fontName, OpenTK.Graphics.ES30.PathFontStyle fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, IntPtr fontName, OpenTK.Graphics.ES30.All fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48640,7 +53571,21 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T2[] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, IntPtr fontName, OpenTK.Graphics.ES30.PathFontStyle fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T2[] fontName, OpenTK.Graphics.ES30.All fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -48655,7 +53600,23 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T2[,] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T2[] fontName, OpenTK.Graphics.ES30.PathFontStyle fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T2[,] fontName, OpenTK.Graphics.ES30.All fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -48670,7 +53631,23 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T2[,] fontName, OpenTK.Graphics.ES30.PathFontStyle fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, OpenTK.Graphics.ES30.All fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -48685,7 +53662,38 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] ref T2 fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, OpenTK.Graphics.ES30.PathFontStyle fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] ref T2 fontName, OpenTK.Graphics.ES30.All fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] ref T2 fontName, OpenTK.Graphics.ES30.PathFontStyle fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -48696,9 +53704,22 @@ namespace OpenTK.Graphics.ES30 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, IntPtr fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, IntPtr fontName, OpenTK.Graphics.ES30.All fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, IntPtr fontName, OpenTK.Graphics.ES30.All fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48709,7 +53730,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, IntPtr fontName, OpenTK.Graphics.ES30.PathFontStyle fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48720,7 +53741,33 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T1[] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) + public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, IntPtr fontName, OpenTK.Graphics.ES30.PathFontStyle fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T1[] fontName, OpenTK.Graphics.ES30.All fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) + where T1 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T1[] fontName, OpenTK.Graphics.ES30.All fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct { throw new BindingsNotRewrittenException(); } @@ -48733,7 +53780,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T1[] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) + public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T1[] fontName, OpenTK.Graphics.ES30.PathFontStyle fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct { throw new BindingsNotRewrittenException(); } @@ -48746,7 +53793,35 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T1[,] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) + public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T1[] fontName, OpenTK.Graphics.ES30.PathFontStyle fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) + where T1 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T1[,] fontName, OpenTK.Graphics.ES30.All fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) + where T1 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T1[,] fontName, OpenTK.Graphics.ES30.All fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct { throw new BindingsNotRewrittenException(); } @@ -48759,7 +53834,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T1[,] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) + public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T1[,] fontName, OpenTK.Graphics.ES30.PathFontStyle fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct { throw new BindingsNotRewrittenException(); } @@ -48772,7 +53847,35 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) + public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T1[,] fontName, OpenTK.Graphics.ES30.PathFontStyle fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) + where T1 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, OpenTK.Graphics.ES30.All fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) + where T1 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, OpenTK.Graphics.ES30.All fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct { throw new BindingsNotRewrittenException(); } @@ -48785,7 +53888,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) + public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, OpenTK.Graphics.ES30.PathFontStyle fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct { throw new BindingsNotRewrittenException(); } @@ -48798,7 +53901,35 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] ref T1 fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) + public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, OpenTK.Graphics.ES30.PathFontStyle fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) + where T1 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] ref T1 fontName, OpenTK.Graphics.ES30.All fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) + where T1 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] ref T1 fontName, OpenTK.Graphics.ES30.All fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct { throw new BindingsNotRewrittenException(); } @@ -48811,7 +53942,20 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] ref T1 fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) + public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] ref T1 fontName, OpenTK.Graphics.ES30.PathFontStyle fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) + where T1 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] ref T1 fontName, OpenTK.Graphics.ES30.PathFontStyle fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct { throw new BindingsNotRewrittenException(); } @@ -48825,9 +53969,10 @@ namespace OpenTK.Graphics.ES30 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, OpenTK.Graphics.ES30.All fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48839,9 +53984,61 @@ namespace OpenTK.Graphics.ES30 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, OpenTK.Graphics.ES30.All fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] + [CLSCompliant(false)] + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, OpenTK.Graphics.ES30.All fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] + [CLSCompliant(false)] + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, OpenTK.Graphics.ES30.All fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] + [CLSCompliant(false)] + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, OpenTK.Graphics.ES30.All fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -48857,7 +54054,21 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES30.PathFontTarget fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, OpenTK.Graphics.ES30.PathFontStyle fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] + [CLSCompliant(false)] + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES30.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, OpenTK.Graphics.ES30.PathFontStyle fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -48873,7 +54084,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES30.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, OpenTK.Graphics.ES30.PathFontStyle fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -48889,7 +54100,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES30.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, OpenTK.Graphics.ES30.PathFontStyle fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -48905,7 +54116,9 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES30.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, OpenTK.Graphics.ES30.PathFontStyle fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48917,9 +54130,76 @@ namespace OpenTK.Graphics.ES30 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, OpenTK.Graphics.ES30.All fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] + [CLSCompliant(false)] + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, OpenTK.Graphics.ES30.All fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] + [CLSCompliant(false)] + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, OpenTK.Graphics.ES30.All fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] + [CLSCompliant(false)] + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, OpenTK.Graphics.ES30.All fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] + [CLSCompliant(false)] + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, OpenTK.Graphics.ES30.All fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -48935,7 +54215,21 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES30.PathFontTarget fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, OpenTK.Graphics.ES30.PathFontStyle fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] + [CLSCompliant(false)] + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES30.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, OpenTK.Graphics.ES30.PathFontStyle fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -48951,7 +54245,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES30.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, OpenTK.Graphics.ES30.PathFontStyle fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -48967,7 +54261,23 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES30.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, OpenTK.Graphics.ES30.PathFontStyle fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] + [CLSCompliant(false)] + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES30.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, OpenTK.Graphics.ES30.PathFontStyle fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -48982,9 +54292,10 @@ namespace OpenTK.Graphics.ES30 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, OpenTK.Graphics.ES30.All fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48997,9 +54308,67 @@ namespace OpenTK.Graphics.ES30 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, OpenTK.Graphics.ES30.All fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + where T2 : struct + where T6 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// [length: COMPSIZE(numGlyphs,type,charcodes)] + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] + [CLSCompliant(false)] + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, OpenTK.Graphics.ES30.All fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + where T2 : struct + where T6 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// [length: COMPSIZE(numGlyphs,type,charcodes)] + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] + [CLSCompliant(false)] + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, OpenTK.Graphics.ES30.All fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + where T2 : struct + where T6 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// [length: COMPSIZE(numGlyphs,type,charcodes)] + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] + [CLSCompliant(false)] + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, OpenTK.Graphics.ES30.All fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -49017,7 +54386,22 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES30.PathFontTarget fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, OpenTK.Graphics.ES30.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.PathElementType type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES30.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// [length: COMPSIZE(numGlyphs,type,charcodes)] + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] + [CLSCompliant(false)] + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES30.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, OpenTK.Graphics.ES30.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.PathElementType type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.ES30.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -49035,7 +54419,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES30.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, OpenTK.Graphics.ES30.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.PathElementType type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.ES30.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -49053,7 +54437,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES30.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, OpenTK.Graphics.ES30.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.PathElementType type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.ES30.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -49071,7 +54455,10 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES30.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, OpenTK.Graphics.ES30.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.PathElementType type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.ES30.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + where T2 : struct + where T6 : struct + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49084,9 +54471,83 @@ namespace OpenTK.Graphics.ES30 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, OpenTK.Graphics.ES30.All fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// [length: COMPSIZE(numGlyphs,type,charcodes)] + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] + [CLSCompliant(false)] + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, OpenTK.Graphics.ES30.All fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + where T2 : struct + where T6 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// [length: COMPSIZE(numGlyphs,type,charcodes)] + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] + [CLSCompliant(false)] + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, OpenTK.Graphics.ES30.All fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + where T2 : struct + where T6 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// [length: COMPSIZE(numGlyphs,type,charcodes)] + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] + [CLSCompliant(false)] + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, OpenTK.Graphics.ES30.All fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + where T2 : struct + where T6 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// [length: COMPSIZE(numGlyphs,type,charcodes)] + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] + [CLSCompliant(false)] + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, OpenTK.Graphics.ES30.All fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -49104,7 +54565,22 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES30.PathFontTarget fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, OpenTK.Graphics.ES30.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.PathElementType type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES30.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// [length: COMPSIZE(numGlyphs,type,charcodes)] + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] + [CLSCompliant(false)] + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES30.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, OpenTK.Graphics.ES30.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.PathElementType type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.ES30.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -49122,7 +54598,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES30.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, OpenTK.Graphics.ES30.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.PathElementType type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.ES30.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -49140,7 +54616,25 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES30.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, OpenTK.Graphics.ES30.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.PathElementType type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.ES30.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + where T2 : struct + where T6 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// [length: COMPSIZE(numGlyphs,type,charcodes)] + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] + [CLSCompliant(false)] + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES30.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, OpenTK.Graphics.ES30.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.PathElementType type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.ES30.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -49461,6 +54955,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfNV")] [CLSCompliant(false)] public static void PathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, Single value) { throw new BindingsNotRewrittenException(); } @@ -49471,12 +54966,30 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfNV")] [CLSCompliant(false)] + public static void PathParameter(Int32 path, OpenTK.Graphics.ES30.PathParameter pname, Single value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfNV")] + [CLSCompliant(false)] public static void PathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, Single value) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfNV")] + [CLSCompliant(false)] + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES30.PathParameter pname, Single value) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] public static void PathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } @@ -49485,6 +54998,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } @@ -49495,7 +55009,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.ES30.PathParameter pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49503,12 +55017,47 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] + public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.ES30.PathParameter pname, [CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] + [CLSCompliant(false)] + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] + [CLSCompliant(false)] public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] + [CLSCompliant(false)] + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES30.PathParameter pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] + [CLSCompliant(false)] + public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.ES30.PathParameter pname, [CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameteriNV")] [CLSCompliant(false)] public static void PathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } @@ -49519,12 +55068,30 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameteriNV")] [CLSCompliant(false)] + public static void PathParameter(Int32 path, OpenTK.Graphics.ES30.PathParameter pname, Int32 value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameteriNV")] + [CLSCompliant(false)] public static void PathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameteriNV")] + [CLSCompliant(false)] + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES30.PathParameter pname, Int32 value) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] public static void PathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } @@ -49533,6 +55100,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } @@ -49543,7 +55111,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.ES30.PathParameter pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49551,8 +55119,42 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] + public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.ES30.PathParameter pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] + [CLSCompliant(false)] + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] + [CLSCompliant(false)] public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] + [CLSCompliant(false)] + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES30.PathParameter pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] + [CLSCompliant(false)] + public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.ES30.PathParameter pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// @@ -49598,6 +55200,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: length] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.ES30.All format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new BindingsNotRewrittenException(); } @@ -49607,6 +55210,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: length] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.ES30.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] pathString) @@ -49618,6 +55222,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: length] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.ES30.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] pathString) @@ -49629,6 +55234,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: length] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.ES30.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] pathString) @@ -49640,6 +55246,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: length] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.ES30.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 pathString) @@ -49653,6 +55260,60 @@ namespace OpenTK.Graphics.ES30 /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] + public static void PathString(Int32 path, OpenTK.Graphics.ES30.PathStringFormat format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: length] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] + [CLSCompliant(false)] + public static void PathString(Int32 path, OpenTK.Graphics.ES30.PathStringFormat format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] pathString) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: length] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] + [CLSCompliant(false)] + public static void PathString(Int32 path, OpenTK.Graphics.ES30.PathStringFormat format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] pathString) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: length] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] + [CLSCompliant(false)] + public static void PathString(Int32 path, OpenTK.Graphics.ES30.PathStringFormat format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] pathString) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: length] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] + [CLSCompliant(false)] + public static void PathString(Int32 path, OpenTK.Graphics.ES30.PathStringFormat format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 pathString) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: length] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] + [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.ES30.All format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] @@ -49660,6 +55321,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: length] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.ES30.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] pathString) @@ -49671,6 +55333,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: length] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.ES30.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] pathString) @@ -49682,6 +55345,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: length] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.ES30.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] pathString) @@ -49693,12 +55357,66 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: length] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.ES30.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 pathString) where T3 : struct { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: length] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] + [CLSCompliant(false)] + public static void PathString(UInt32 path, OpenTK.Graphics.ES30.PathStringFormat format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: length] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] + [CLSCompliant(false)] + public static void PathString(UInt32 path, OpenTK.Graphics.ES30.PathStringFormat format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] pathString) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: length] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] + [CLSCompliant(false)] + public static void PathString(UInt32 path, OpenTK.Graphics.ES30.PathStringFormat format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] pathString) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: length] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] + [CLSCompliant(false)] + public static void PathString(UInt32 path, OpenTK.Graphics.ES30.PathStringFormat format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] pathString) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: length] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] + [CLSCompliant(false)] + public static void PathString(UInt32 path, OpenTK.Graphics.ES30.PathStringFormat format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 pathString) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// @@ -50258,6 +55976,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(genMode,components)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] public static void PathTexGen(OpenTK.Graphics.ES30.All texCoordSet, OpenTK.Graphics.ES30.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single[] coeffs) { throw new BindingsNotRewrittenException(); } @@ -50267,6 +55986,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(genMode,components)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] public static void PathTexGen(OpenTK.Graphics.ES30.All texCoordSet, OpenTK.Graphics.ES30.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] ref Single coeffs) { throw new BindingsNotRewrittenException(); } @@ -50276,10 +55996,38 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(genMode,components)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] public static unsafe void PathTexGen(OpenTK.Graphics.ES30.All texCoordSet, OpenTK.Graphics.ES30.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single* coeffs) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(genMode,components)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] + [CLSCompliant(false)] + public static void PathTexGen(OpenTK.Graphics.ES30.PathColor texCoordSet, OpenTK.Graphics.ES30.PathGenMode genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single[] coeffs) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(genMode,components)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] + [CLSCompliant(false)] + public static void PathTexGen(OpenTK.Graphics.ES30.PathColor texCoordSet, OpenTK.Graphics.ES30.PathGenMode genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] ref Single coeffs) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(genMode,components)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] + [CLSCompliant(false)] + public static unsafe void PathTexGen(OpenTK.Graphics.ES30.PathColor texCoordSet, OpenTK.Graphics.ES30.PathGenMode genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single* coeffs) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// @@ -51738,6 +57486,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } @@ -51751,6 +57500,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } @@ -51764,6 +57514,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } @@ -51777,6 +57528,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } @@ -51790,6 +57542,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } @@ -51803,6 +57556,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } @@ -51816,6 +57570,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -51831,6 +57586,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -51846,6 +57602,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -51861,6 +57618,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -51876,6 +57634,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -51891,6 +57650,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -51906,6 +57666,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -51921,6 +57682,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -51936,6 +57698,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -51951,6 +57714,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -51966,6 +57730,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -51981,6 +57746,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -51996,6 +57762,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -52011,6 +57778,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -52026,6 +57794,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -52041,6 +57810,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -52056,6 +57826,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -52071,6 +57842,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -52086,6 +57858,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -52101,6 +57874,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -52116,6 +57890,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -52131,6 +57906,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -52146,6 +57922,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -52161,16 +57938,456 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathNV")] [CLSCompliant(false)] public static void StencilFillPath(Int32 path, OpenTK.Graphics.ES30.All fillMode, Int32 mask) { throw new BindingsNotRewrittenException(); } @@ -52181,8 +58398,25 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathNV")] [CLSCompliant(false)] + public static void StencilFillPath(Int32 path, OpenTK.Graphics.ES30.PathFillMode fillMode, Int32 mask) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathNV")] + [CLSCompliant(false)] public static void StencilFillPath(UInt32 path, OpenTK.Graphics.ES30.All fillMode, UInt32 mask) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathNV")] + [CLSCompliant(false)] + public static void StencilFillPath(UInt32 path, OpenTK.Graphics.ES30.PathFillMode fillMode, UInt32 mask) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// @@ -52192,6 +58426,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } @@ -52205,6 +58440,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } @@ -52218,6 +58454,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } @@ -52231,6 +58468,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } @@ -52244,6 +58482,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } @@ -52257,6 +58496,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } @@ -52270,6 +58510,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -52285,6 +58526,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -52300,6 +58542,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -52315,6 +58558,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -52330,6 +58574,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -52345,6 +58590,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -52360,6 +58606,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -52375,6 +58622,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -52390,6 +58638,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -52405,6 +58654,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -52420,6 +58670,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -52435,6 +58686,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -52450,6 +58702,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -52465,6 +58718,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -52480,6 +58734,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -52495,6 +58750,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -52510,6 +58766,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -52525,6 +58782,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -52540,6 +58798,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -52555,6 +58814,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -52570,6 +58830,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -52585,6 +58846,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -52600,6 +58862,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -52615,12 +58878,451 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// @@ -53640,6 +60342,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } @@ -53649,6 +60352,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } @@ -53658,6 +60362,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] public static unsafe void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } @@ -53669,6 +60374,34 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] + public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] + [CLSCompliant(false)] + public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] + [CLSCompliant(false)] + public static unsafe void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(transformType)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] + [CLSCompliant(false)] public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] @@ -53676,6 +60409,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } @@ -53685,10 +60419,38 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] public static unsafe void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] + [CLSCompliant(false)] + public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] + [CLSCompliant(false)] + public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] + [CLSCompliant(false)] + public static unsafe void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES30.PathTransformType transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object /// @@ -54677,6 +61439,22 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_clip_space_w_scaling] + /// + /// + /// + [AutoGenerated(Category = "NV_clip_space_w_scaling", Version = "", EntryPoint = "glViewportPositionWScaleNV")] + [CLSCompliant(false)] + public static void ViewportPositionWScale(Int32 index, Single xcoeff, Single ycoeff) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_clip_space_w_scaling] + /// + /// + /// + [AutoGenerated(Category = "NV_clip_space_w_scaling", Version = "", EntryPoint = "glViewportPositionWScaleNV")] + [CLSCompliant(false)] + public static void ViewportPositionWScale(UInt32 index, Single xcoeff, Single ycoeff) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_viewport_swizzle] /// /// @@ -54917,6 +61695,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies how the red, green, blue, and alpha destination blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha. ConstantColor, OneMinusConstantColor, ConstantAlpha, and OneMinusConstantAlpha. The initial value is Zero. /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciOES")] [CLSCompliant(false)] public static void BlendFunc(Int32 buf, OpenTK.Graphics.ES30.All src, OpenTK.Graphics.ES30.All dst) { throw new BindingsNotRewrittenException(); } @@ -54933,8 +61712,37 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciOES")] [CLSCompliant(false)] + public static void BlendFunc(Int32 buf, OpenTK.Graphics.ES30.BlendingFactor src, OpenTK.Graphics.ES30.BlendingFactor dst) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_draw_buffers_indexed] + /// Specify pixel arithmetic + /// + /// + /// Specifies how the red, green, blue, and alpha source blending factors are computed. The initial value is One. + /// + /// + /// 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. + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciOES")] + [CLSCompliant(false)] public static void BlendFunc(UInt32 buf, OpenTK.Graphics.ES30.All src, OpenTK.Graphics.ES30.All dst) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_draw_buffers_indexed] + /// Specify pixel arithmetic + /// + /// + /// Specifies how the red, green, blue, and alpha source blending factors are computed. The initial value is One. + /// + /// + /// 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 = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciOES")] + [CLSCompliant(false)] + public static void BlendFunc(UInt32 buf, OpenTK.Graphics.ES30.BlendingFactor src, OpenTK.Graphics.ES30.BlendingFactor dst) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_draw_buffers_indexed] /// Specify pixel arithmetic for RGB and alpha components separately /// @@ -54953,6 +61761,7 @@ namespace OpenTK.Graphics.ES30 /// /// Specified how the alpha destination blending factor is computed. The initial value is Zero. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiOES")] [CLSCompliant(false)] public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.ES30.All srcRGB, OpenTK.Graphics.ES30.All dstRGB, OpenTK.Graphics.ES30.All srcAlpha, OpenTK.Graphics.ES30.All dstAlpha) { throw new BindingsNotRewrittenException(); } @@ -54977,8 +61786,53 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiOES")] [CLSCompliant(false)] + public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.ES30.BlendingFactor srcRGB, OpenTK.Graphics.ES30.BlendingFactor dstRGB, OpenTK.Graphics.ES30.BlendingFactor srcAlpha, OpenTK.Graphics.ES30.BlendingFactor dstAlpha) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_draw_buffers_indexed] + /// Specify pixel arithmetic for RGB and alpha components separately + /// + /// + /// Specifies how the red, green, and blue blending factors are computed. The initial value is One. + /// + /// + /// Specifies how the red, green, and blue blending factors are computed. The initial value is One. + /// + /// + /// Specifies how the red, green, and blue destination blending factors are computed. The initial value is Zero. + /// + /// + /// Specified how the alpha source blending factor is computed. The initial value is One. + /// + /// + /// Specified how the alpha destination blending factor is computed. The initial value is Zero. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiOES")] + [CLSCompliant(false)] public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.ES30.All srcRGB, OpenTK.Graphics.ES30.All dstRGB, OpenTK.Graphics.ES30.All srcAlpha, OpenTK.Graphics.ES30.All dstAlpha) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_draw_buffers_indexed] + /// Specify pixel arithmetic for RGB and alpha components separately + /// + /// + /// Specifies how the red, green, and blue blending factors are computed. The initial value is One. + /// + /// + /// Specifies how the red, green, and blue blending factors are computed. The initial value is One. + /// + /// + /// Specifies how the red, green, and blue destination blending factors are computed. The initial value is Zero. + /// + /// + /// Specified how the alpha source blending factor is computed. The initial value is One. + /// + /// + /// Specified how the alpha destination blending factor is computed. The initial value is Zero. + /// + [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiOES")] + [CLSCompliant(false)] + public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.ES30.BlendingFactor srcRGB, OpenTK.Graphics.ES30.BlendingFactor dstRGB, OpenTK.Graphics.ES30.BlendingFactor srcAlpha, OpenTK.Graphics.ES30.BlendingFactor dstAlpha) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_draw_buffers_indexed] /// Enable and disable writing of frame buffer color components /// @@ -55624,7 +62478,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] - public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } + public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -55664,7 +62518,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] [CLSCompliant(false)] - public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[] data) + public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[] data) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -55706,7 +62560,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] [CLSCompliant(false)] - public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,] data) + public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,] data) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -55748,7 +62602,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] [CLSCompliant(false)] - public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,,] data) + public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,,] data) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -55789,7 +62643,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] - public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T10 data) + public static void CompressedTexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T10 data) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -55841,6 +62695,7 @@ namespace OpenTK.Graphics.ES30 /// /// The depth of the region to be copied. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_copy_image", Version = "", EntryPoint = "glCopyImageSubDataOES")] [CLSCompliant(false)] public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.ES30.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.ES30.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } @@ -55895,8 +62750,113 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_copy_image", Version = "", EntryPoint = "glCopyImageSubDataOES")] [CLSCompliant(false)] + public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.ES30.CopyBufferSubDataTarget srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.ES30.CopyBufferSubDataTarget dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_copy_image] + /// Perform a raw data copy between two images + /// + /// + /// The name of a texture or renderbuffer object from which to copy. + /// + /// + /// The target representing the namespace of the source name srcName. + /// + /// + /// The mipmap level to read from the source. + /// + /// + /// The X coordinate of the left edge of the souce region to copy. + /// + /// + /// The Y coordinate of the top edge of the souce region to copy. + /// + /// + /// The Z coordinate of the near edge of the souce region to copy. + /// + /// + /// The name of a texture or renderbuffer object to which to copy. + /// + /// + /// The target representing the namespace of the destination name dstName. + /// + /// + /// The X coordinate of the left edge of the destination region. + /// + /// + /// The X coordinate of the left edge of the destination region. + /// + /// + /// The Y coordinate of the top edge of the destination region. + /// + /// + /// The Z coordinate of the near edge of the destination region. + /// + /// + /// The width of the region to be copied. + /// + /// + /// The height of the region to be copied. + /// + /// + /// The depth of the region to be copied. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "OES_copy_image", Version = "", EntryPoint = "glCopyImageSubDataOES")] + [CLSCompliant(false)] public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.ES30.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.ES30.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_copy_image] + /// Perform a raw data copy between two images + /// + /// + /// The name of a texture or renderbuffer object from which to copy. + /// + /// + /// The target representing the namespace of the source name srcName. + /// + /// + /// The mipmap level to read from the source. + /// + /// + /// The X coordinate of the left edge of the souce region to copy. + /// + /// + /// The Y coordinate of the top edge of the souce region to copy. + /// + /// + /// The Z coordinate of the near edge of the souce region to copy. + /// + /// + /// The name of a texture or renderbuffer object to which to copy. + /// + /// + /// The target representing the namespace of the destination name dstName. + /// + /// + /// The X coordinate of the left edge of the destination region. + /// + /// + /// The X coordinate of the left edge of the destination region. + /// + /// + /// The Y coordinate of the top edge of the destination region. + /// + /// + /// The Z coordinate of the near edge of the destination region. + /// + /// + /// The width of the region to be copied. + /// + /// + /// The height of the region to be copied. + /// + /// + /// The depth of the region to be copied. + /// + [AutoGenerated(Category = "OES_copy_image", Version = "", EntryPoint = "glCopyImageSubDataOES")] + [CLSCompliant(false)] + public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.ES30.CopyBufferSubDataTarget srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.ES30.CopyBufferSubDataTarget dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_3D] /// Copy a three-dimensional texture subimage /// @@ -56193,6 +63153,7 @@ namespace OpenTK.Graphics.ES30 /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glDisableiOES")] [CLSCompliant(false)] public static void Disable(OpenTK.Graphics.ES30.All target, Int32 index) { throw new BindingsNotRewrittenException(); } @@ -56200,10 +63161,25 @@ namespace OpenTK.Graphics.ES30 /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glDisableiOES")] [CLSCompliant(false)] public static void Disable(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_draw_buffers_indexed|OES_viewport_array] + /// + /// + [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glDisableiOES")] + [CLSCompliant(false)] + public static void Disable(OpenTK.Graphics.ES30.EnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_draw_buffers_indexed|OES_viewport_array] + /// + /// + [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glDisableiOES")] + [CLSCompliant(false)] + public static void Disable(OpenTK.Graphics.ES30.EnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset /// @@ -57329,6 +64305,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a symbolic constant indicating a GL capability. /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glEnableiOES")] [CLSCompliant(false)] public static void Enable(OpenTK.Graphics.ES30.All target, Int32 index) { throw new BindingsNotRewrittenException(); } @@ -57340,10 +64317,33 @@ namespace OpenTK.Graphics.ES30 /// Specifies a symbolic constant indicating a GL capability. /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glEnableiOES")] [CLSCompliant(false)] public static void Enable(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_draw_buffers_indexed|OES_viewport_array] + /// Enable or disable server-side GL capabilities + /// + /// + /// Specifies a symbolic constant indicating a GL capability. + /// + /// + [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glEnableiOES")] + [CLSCompliant(false)] + public static void Enable(OpenTK.Graphics.ES30.EnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_draw_buffers_indexed|OES_viewport_array] + /// Enable or disable server-side GL capabilities + /// + /// + /// Specifies a symbolic constant indicating a GL capability. + /// + /// + [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glEnableiOES")] + [CLSCompliant(false)] + public static void Enable(OpenTK.Graphics.ES30.EnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_3D] /// /// @@ -57351,6 +64351,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glFramebufferTexture3DOES")] [CLSCompliant(false)] public static void FramebufferTexture3D(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, Int32 texture, Int32 level, Int32 zoffset) { throw new BindingsNotRewrittenException(); } @@ -57362,10 +64363,33 @@ namespace OpenTK.Graphics.ES30 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glFramebufferTexture3DOES")] [CLSCompliant(false)] public static void FramebufferTexture3D(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, UInt32 texture, Int32 level, Int32 zoffset) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_3D] + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glFramebufferTexture3DOES")] + [CLSCompliant(false)] + public static void FramebufferTexture3D(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, OpenTK.Graphics.ES30.TextureTarget textarget, Int32 texture, Int32 level, Int32 zoffset) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_3D] + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glFramebufferTexture3DOES")] + [CLSCompliant(false)] + public static void FramebufferTexture3D(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, OpenTK.Graphics.ES30.TextureTarget textarget, UInt32 texture, Int32 level, Int32 zoffset) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object /// @@ -57630,6 +64654,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } @@ -57638,6 +64663,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } @@ -57646,6 +64672,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] public static unsafe void GetFloat(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } @@ -57654,6 +64681,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } @@ -57662,6 +64690,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } @@ -57670,10 +64699,59 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] public static unsafe void GetFloat(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_viewport_array] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] + [CLSCompliant(false)] + public static void GetFloat(OpenTK.Graphics.ES30.TypeEnum target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_viewport_array] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] + [CLSCompliant(false)] + public static void GetFloat(OpenTK.Graphics.ES30.TypeEnum target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_viewport_array] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] + [CLSCompliant(false)] + public static unsafe void GetFloat(OpenTK.Graphics.ES30.TypeEnum target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_viewport_array] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] + [CLSCompliant(false)] + public static void GetFloat(OpenTK.Graphics.ES30.TypeEnum target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_viewport_array] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] + [CLSCompliant(false)] + public static void GetFloat(OpenTK.Graphics.ES30.TypeEnum target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_viewport_array] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] + [CLSCompliant(false)] + public static unsafe void GetFloat(OpenTK.Graphics.ES30.TypeEnum target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source /// @@ -58396,6 +65474,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -58404,6 +65483,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -58412,6 +65492,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } @@ -58422,12 +65503,38 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] + [CLSCompliant(false)] + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] + [CLSCompliant(false)] + public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] + [CLSCompliant(false)] public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -58436,6 +65543,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } @@ -58444,6 +65552,31 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] + [CLSCompliant(false)] + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] + [CLSCompliant(false)] + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] + [CLSCompliant(false)] + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivOES")] [CLSCompliant(false)] public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } @@ -58452,6 +65585,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivOES")] [CLSCompliant(false)] public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } @@ -58460,10 +65594,35 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivOES")] [CLSCompliant(false)] public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivOES")] + [CLSCompliant(false)] + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivOES")] + [CLSCompliant(false)] + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivOES")] + [CLSCompliant(false)] + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_border_clamp] /// /// @@ -58575,6 +65734,7 @@ namespace OpenTK.Graphics.ES30 /// /// Specifies the index of the capability. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glIsEnablediOES")] [CLSCompliant(false)] public static bool IsEnabled(OpenTK.Graphics.ES30.All target, Int32 index) { throw new BindingsNotRewrittenException(); } @@ -58588,10 +65748,37 @@ namespace OpenTK.Graphics.ES30 /// /// Specifies the index of the capability. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glIsEnablediOES")] [CLSCompliant(false)] public static bool IsEnabled(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_draw_buffers_indexed|OES_viewport_array] + /// Test whether a capability is enabled + /// + /// + /// Specifies a symbolic constant indicating a GL capability. + /// + /// + /// Specifies the index of the capability. + /// + [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glIsEnablediOES")] + [CLSCompliant(false)] + public static bool IsEnabled(OpenTK.Graphics.ES30.EnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_draw_buffers_indexed|OES_viewport_array] + /// Test whether a capability is enabled + /// + /// + /// Specifies a symbolic constant indicating a GL capability. + /// + /// + /// Specifies the index of the capability. + /// + [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glIsEnablediOES")] + [CLSCompliant(false)] + public static bool IsEnabled(OpenTK.Graphics.ES30.EnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_vertex_array_object] /// Determine if a name corresponds to a vertex array object /// @@ -58621,9 +65808,22 @@ namespace OpenTK.Graphics.ES30 /// /// For glMapBuffer only, specifies the access policy, indicating whether it will be possible to read from, write to, or both read from and write to the buffer object's mapped data store. The symbolic constant must be ReadOnly, WriteOnly, or ReadWrite. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glMapBufferOES")] public static IntPtr MapBuffer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All access) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_mapbuffer] + /// Map a buffer object's data store + /// + /// + /// Specifies the target buffer object being mapped. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer or UniformBuffer. + /// + /// + /// For glMapBuffer only, specifies the access policy, indicating whether it will be possible to read from, write to, or both read from and write to the buffer object's mapped data store. The symbolic constant must be ReadOnly, WriteOnly, or ReadWrite. + /// + [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glMapBufferOES")] + public static IntPtr MapBuffer(OpenTK.Graphics.ES30.BufferTargetArb target, OpenTK.Graphics.ES30.BufferAccessArb access) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_sample_shading] /// Specifies minimum rate at which sample shaing takes place /// @@ -58642,9 +65842,22 @@ namespace OpenTK.Graphics.ES30 /// /// Specifies the new value for the parameter given by pname. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_tessellation_shader", Version = "", EntryPoint = "glPatchParameteriOES")] public static void PatchParameter(OpenTK.Graphics.ES30.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_tessellation_shader] + /// Specifies the parameters for patch primitives + /// + /// + /// Specifies the name of the parameter to set. The symbolc constants PatchVertices, PatchDefaultOuterLevel, and PatchDefaultInnerLevel are accepted. + /// + /// + /// Specifies the new value for the parameter given by pname. + /// + [AutoGenerated(Category = "OES_tessellation_shader", Version = "", EntryPoint = "glPatchParameteriOES")] + public static void PatchParameter(OpenTK.Graphics.ES30.PatchParameterName pname, Int32 value) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_primitive_bounding_box] /// /// @@ -58867,6 +66080,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } @@ -58875,6 +66089,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } @@ -58883,6 +66098,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } @@ -58893,12 +66109,38 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] + [CLSCompliant(false)] + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] + [CLSCompliant(false)] + public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] + [CLSCompliant(false)] public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } @@ -58907,6 +66149,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } @@ -58915,6 +66158,31 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] + [CLSCompliant(false)] + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] + [CLSCompliant(false)] + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] + [CLSCompliant(false)] + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivOES")] [CLSCompliant(false)] public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new BindingsNotRewrittenException(); } @@ -58923,6 +66191,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivOES")] [CLSCompliant(false)] public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new BindingsNotRewrittenException(); } @@ -58931,10 +66200,35 @@ namespace OpenTK.Graphics.ES30 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivOES")] [CLSCompliant(false)] public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivOES")] + [CLSCompliant(false)] + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivOES")] + [CLSCompliant(false)] + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivOES")] + [CLSCompliant(false)] + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_viewport_array] /// Define the scissor box for multiple viewports /// @@ -59201,7 +66495,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferOES")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.All internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } + public static void TexBuffer(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.InternalFormat internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -59217,7 +66511,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferOES")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.All internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } + public static void TexBuffer(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.InternalFormat internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -59237,6 +66531,7 @@ namespace OpenTK.Graphics.ES30 /// /// Specifies the size of the range of the buffer's data store to attach. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] [CLSCompliant(false)] public static void TexBufferRange(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } @@ -59259,6 +66554,7 @@ namespace OpenTK.Graphics.ES30 /// /// Specifies the size of the range of the buffer's data store to attach. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] [CLSCompliant(false)] public static void TexBufferRange(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } @@ -59281,6 +66577,7 @@ namespace OpenTK.Graphics.ES30 /// /// Specifies the size of the range of the buffer's data store to attach. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] [CLSCompliant(false)] public static void TexBufferRange(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } @@ -59303,10 +66600,99 @@ namespace OpenTK.Graphics.ES30 /// /// Specifies the size of the range of the buffer's data store to attach. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] [CLSCompliant(false)] public static void TexBufferRange(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_buffer] + /// Bind a range of a buffer's data store to a buffer texture + /// + /// + /// Specifies the target of the operation and must be TextureBuffer. + /// + /// + /// Specifies the internal format of the data in the store belonging to buffer. + /// + /// + /// Specifies the name of the buffer object whose storage to attach to the active buffer texture. + /// + /// + /// Specifies the offset of the start of the range of the buffer's data store to attach. + /// + /// + /// Specifies the size of the range of the buffer's data store to attach. + /// + [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] + [CLSCompliant(false)] + public static void TexBufferRange(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.InternalFormat internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_buffer] + /// Bind a range of a buffer's data store to a buffer texture + /// + /// + /// Specifies the target of the operation and must be TextureBuffer. + /// + /// + /// Specifies the internal format of the data in the store belonging to buffer. + /// + /// + /// Specifies the name of the buffer object whose storage to attach to the active buffer texture. + /// + /// + /// Specifies the offset of the start of the range of the buffer's data store to attach. + /// + /// + /// Specifies the size of the range of the buffer's data store to attach. + /// + [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] + [CLSCompliant(false)] + public static void TexBufferRange(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.InternalFormat internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_buffer] + /// Bind a range of a buffer's data store to a buffer texture + /// + /// + /// Specifies the target of the operation and must be TextureBuffer. + /// + /// + /// Specifies the internal format of the data in the store belonging to buffer. + /// + /// + /// Specifies the name of the buffer object whose storage to attach to the active buffer texture. + /// + /// + /// Specifies the offset of the start of the range of the buffer's data store to attach. + /// + /// + /// Specifies the size of the range of the buffer's data store to attach. + /// + [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] + [CLSCompliant(false)] + public static void TexBufferRange(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.InternalFormat internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_buffer] + /// Bind a range of a buffer's data store to a buffer texture + /// + /// + /// Specifies the target of the operation and must be TextureBuffer. + /// + /// + /// Specifies the internal format of the data in the store belonging to buffer. + /// + /// + /// Specifies the name of the buffer object whose storage to attach to the active buffer texture. + /// + /// + /// Specifies the offset of the start of the range of the buffer's data store to attach. + /// + /// + /// Specifies the size of the range of the buffer's data store to attach. + /// + [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] + [CLSCompliant(false)] + public static void TexBufferRange(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.InternalFormat internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image /// @@ -59820,9 +67206,37 @@ namespace OpenTK.Graphics.ES30 /// /// Specifies whether the image will use identical sample locations and the same number of samples for all texels in the image, and the sample locations will not depend on the internal format or size of the image. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_storage_multisample_2d_array", Version = "", EntryPoint = "glTexStorage3DMultisampleOES")] public static void TexStorage3DMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_storage_multisample_2d_array] + /// Specify storage for a two-dimensional multisample array texture + /// + /// + /// Specify the target of the operation. target must be Texture2DMultisampleArray or ProxyTexture2DMultisampleMultisample. + /// + /// + /// Specify the number of samples in the texture. + /// + /// + /// Specifies the sized internal format to be used to store texture image data. + /// + /// + /// Specifies the width of the texture, in texels. + /// + /// + /// Specifies the height of the texture, in texels. + /// + /// + /// Specifies the depth of the texture, in layers. + /// + /// + /// Specifies whether the image will use identical sample locations and the same number of samples for all texels in the image, and the sample locations will not depend on the internal format or size of the image. + /// + [AutoGenerated(Category = "OES_texture_storage_multisample_2d_array", Version = "", EntryPoint = "glTexStorage3DMultisampleOES")] + public static void TexStorage3DMultisample(OpenTK.Graphics.ES30.TextureTarget target, Int32 samples, OpenTK.Graphics.ES30.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage /// @@ -60071,7 +67485,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] - public static void TexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } + public static void TexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -60111,7 +67525,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] [CLSCompliant(false)] - public static void TexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) + public static void TexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -60153,7 +67567,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] [CLSCompliant(false)] - public static void TexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) + public static void TexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -60195,7 +67609,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] [CLSCompliant(false)] - public static void TexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) + public static void TexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -60236,7 +67650,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] - public static void TexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) + public static void TexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -60267,6 +67681,7 @@ namespace OpenTK.Graphics.ES30 /// /// Specifies the number of layers to include in the view. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_view", Version = "", EntryPoint = "glTextureViewOES")] [CLSCompliant(false)] public static void TextureView(Int32 texture, OpenTK.Graphics.ES30.All target, Int32 origtexture, OpenTK.Graphics.ES30.All internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new BindingsNotRewrittenException(); } @@ -60300,8 +67715,71 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_texture_view", Version = "", EntryPoint = "glTextureViewOES")] [CLSCompliant(false)] + public static void TextureView(Int32 texture, OpenTK.Graphics.ES30.TextureTarget target, Int32 origtexture, OpenTK.Graphics.ES30.InternalFormat internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_view] + /// Initialize a texture as a data alias of another texture's data store + /// + /// + /// Specifies the texture object to be initialized as a view. + /// + /// + /// Specifies the target to be used for the newly initialized texture. + /// + /// + /// Specifies the name of a texture object of which to make a view. + /// + /// + /// Specifies the internal format for the newly created view. + /// + /// + /// Specifies lowest level of detail of the view. + /// + /// + /// Specifies the number of levels of detail to include in the view. + /// + /// + /// Specifies the index of the first layer to include in the view. + /// + /// + /// Specifies the number of layers to include in the view. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "OES_texture_view", Version = "", EntryPoint = "glTextureViewOES")] + [CLSCompliant(false)] public static void TextureView(UInt32 texture, OpenTK.Graphics.ES30.All target, UInt32 origtexture, OpenTK.Graphics.ES30.All internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_view] + /// Initialize a texture as a data alias of another texture's data store + /// + /// + /// Specifies the texture object to be initialized as a view. + /// + /// + /// Specifies the target to be used for the newly initialized texture. + /// + /// + /// Specifies the name of a texture object of which to make a view. + /// + /// + /// Specifies the internal format for the newly created view. + /// + /// + /// Specifies lowest level of detail of the view. + /// + /// + /// Specifies the number of levels of detail to include in the view. + /// + /// + /// Specifies the index of the first layer to include in the view. + /// + /// + /// Specifies the number of layers to include in the view. + /// + [AutoGenerated(Category = "OES_texture_view", Version = "", EntryPoint = "glTextureViewOES")] + [CLSCompliant(false)] + public static void TextureView(UInt32 texture, OpenTK.Graphics.ES30.TextureTarget target, UInt32 origtexture, OpenTK.Graphics.ES30.InternalFormat internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_mapbuffer] /// [Obsolete("Use strongly-typed overload instead")] @@ -60673,15 +68151,14 @@ namespace OpenTK.Graphics.ES30 /// [requires: QCOM_tiled_rendering] /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glEndTilingQCOM")] - [CLSCompliant(false)] - public static void EndTiling(Int32 preserveMask) { throw new BindingsNotRewrittenException(); } + public static void EndTiling(OpenTK.Graphics.ES30.All preserveMask) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_tiled_rendering] /// [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glEndTilingQCOM")] - [CLSCompliant(false)] - public static void EndTiling(UInt32 preserveMask) { throw new BindingsNotRewrittenException(); } + public static void EndTiling(OpenTK.Graphics.ES30.BufferBitQcom preserveMask) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -60861,6 +68338,7 @@ namespace OpenTK.Graphics.ES30 /// /// [length: *length] /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } @@ -60870,6 +68348,7 @@ namespace OpenTK.Graphics.ES30 /// /// [length: *length] /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } @@ -60879,6 +68358,7 @@ namespace OpenTK.Graphics.ES30 /// /// [length: *length] /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] public static unsafe void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } @@ -60890,6 +68370,34 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] + public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES30.ShaderType shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get2] + /// + /// + /// [length: *length] + /// + [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] + public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES30.ShaderType shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get2] + /// + /// + /// [length: *length] + /// + [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] + public static unsafe void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES30.ShaderType shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get2] + /// + /// + /// [length: *length] + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] @@ -60897,6 +68405,7 @@ namespace OpenTK.Graphics.ES30 /// /// [length: *length] /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } @@ -60906,10 +68415,38 @@ namespace OpenTK.Graphics.ES30 /// /// [length: *length] /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] public static unsafe void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } + /// [requires: QCOM_extended_get2] + /// + /// + /// [length: *length] + /// + [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] + public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES30.ShaderType shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get2] + /// + /// + /// [length: *length] + /// + [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] + public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES30.ShaderType shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get2] + /// + /// + /// [length: *length] + /// + [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] + public static unsafe void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES30.ShaderType shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } + /// [requires: QCOM_extended_get2] /// [length: maxPrograms] /// @@ -61180,6 +68717,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] public static void ExtGetTexSubImage(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [OutAttribute] IntPtr texels) { throw new BindingsNotRewrittenException(); } @@ -61195,6 +68733,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] [CLSCompliant(false)] public static void ExtGetTexSubImage(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T10[] texels) @@ -61213,6 +68752,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] [CLSCompliant(false)] public static void ExtGetTexSubImage(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T10[,] texels) @@ -61231,6 +68771,7 @@ namespace OpenTK.Graphics.ES30 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] [CLSCompliant(false)] public static void ExtGetTexSubImage(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T10[,,] texels) @@ -61249,11 +68790,98 @@ namespace OpenTK.Graphics.ES30 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] public static void ExtGetTexSubImage(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] ref T10 texels) where T10 : struct { throw new BindingsNotRewrittenException(); } + /// [requires: QCOM_extended_get] + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] + public static void ExtGetTexSubImage(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [OutAttribute] IntPtr texels) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get] + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] + [CLSCompliant(false)] + public static void ExtGetTexSubImage(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute] T10[] texels) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get] + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] + [CLSCompliant(false)] + public static void ExtGetTexSubImage(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute] T10[,] texels) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get] + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] + [CLSCompliant(false)] + public static void ExtGetTexSubImage(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute] T10[,,] texels) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get] + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] + public static void ExtGetTexSubImage(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute] ref T10 texels) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + /// [requires: QCOM_extended_get] /// /// @@ -61499,9 +69127,10 @@ namespace OpenTK.Graphics.ES30 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glStartTilingQCOM")] [CLSCompliant(false)] - public static void StartTiling(Int32 x, Int32 y, Int32 width, Int32 height, Int32 preserveMask) { throw new BindingsNotRewrittenException(); } + public static void StartTiling(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.All preserveMask) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_tiled_rendering] /// @@ -61511,89 +69140,136 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glStartTilingQCOM")] [CLSCompliant(false)] - public static void StartTiling(UInt32 x, UInt32 y, UInt32 width, UInt32 height, UInt32 preserveMask) { throw new BindingsNotRewrittenException(); } + public static void StartTiling(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.BufferBitQcom preserveMask) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_tiled_rendering] + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glStartTilingQCOM")] + [CLSCompliant(false)] + public static void StartTiling(UInt32 x, UInt32 y, UInt32 width, UInt32 height, OpenTK.Graphics.ES30.All preserveMask) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_tiled_rendering] + /// + /// + /// + /// + /// + [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glStartTilingQCOM")] + [CLSCompliant(false)] + public static void StartTiling(UInt32 x, UInt32 y, UInt32 width, UInt32 height, OpenTK.Graphics.ES30.BufferBitQcom preserveMask) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_texture_foveated] + /// + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "QCOM_texture_foveated", Version = "", EntryPoint = "glTextureFoveationParametersQCOM")] + [CLSCompliant(false)] + public static void TextureFoveationParameters(Int32 texture, Int32 layer, Int32 focalPoint, Single focalX, Single focalY, Single gainX, Single gainY, Single foveaArea) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_texture_foveated] + /// + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "QCOM_texture_foveated", Version = "", EntryPoint = "glTextureFoveationParametersQCOM")] + [CLSCompliant(false)] + public static void TextureFoveationParameters(UInt32 texture, UInt32 layer, UInt32 focalPoint, Single focalX, Single focalY, Single gainX, Single gainY, Single foveaArea) { throw new BindingsNotRewrittenException(); } } [Slot(8)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glBeginPerfMonitorAMD(UInt32 monitor); - [Slot(113)] + [Slot(114)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeletePerfMonitorsAMD(Int32 n, [CountAttribute(Parameter = "n")] UInt32* monitors); - [Slot(180)] + [Slot(181)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEndPerfMonitorAMD(UInt32 monitor); - [Slot(229)] + [Slot(230)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGenPerfMonitorsAMD(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* monitors); - [Slot(308)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPerfMonitorCounterDataAMD(UInt32 monitor, System.Int32 pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten); [Slot(309)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetPerfMonitorCounterInfoAMD(UInt32 group, UInt32 counter, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data); + private static extern unsafe void glGetPerfMonitorCounterDataAMD(UInt32 monitor, System.Int32 pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten); [Slot(310)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPerfMonitorCountersAMD(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32* counters); + private static extern void glGetPerfMonitorCounterInfoAMD(UInt32 group, UInt32 counter, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data); [Slot(311)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPerfMonitorCounterStringAMD(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr counterString); + private static extern unsafe void glGetPerfMonitorCountersAMD(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32* counters); [Slot(312)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPerfMonitorGroupsAMD([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32* groups); + private static extern unsafe void glGetPerfMonitorCounterStringAMD(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr counterString); [Slot(313)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetPerfMonitorGroupsAMD([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32* groups); + [Slot(314)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetPerfMonitorGroupStringAMD(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr groupString); - [Slot(577)] + [Slot(598)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glSelectPerfMonitorCountersAMD(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32* counterList); [Slot(45)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glBlitFramebufferANGLE(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, System.Int32 mask, System.Int32 filter); - [Slot(146)] + [Slot(147)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawArraysInstancedANGLE(System.Int32 mode, Int32 first, Int32 count, Int32 primcount); - [Slot(158)] + [Slot(159)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawElementsInstancedANGLE(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount); - [Slot(361)] + [Slot(362)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetTranslatedShaderSourceANGLE(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] IntPtr source); - [Slot(553)] + [Slot(574)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glRenderbufferStorageMultisampleANGLE(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(720)] + [Slot(742)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribDivisorANGLE(UInt32 index, UInt32 divisor); [Slot(65)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern System.Int32 glClientWaitSyncAPPLE(IntPtr sync, System.Int32 flags, UInt64 timeout); - [Slot(86)] + [Slot(87)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glCopyTextureLevelsAPPLE(UInt32 destinationTexture, UInt32 sourceTexture, Int32 sourceBaseLevel, Int32 sourceLevelCount); - [Slot(124)] + [Slot(125)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDeleteSyncAPPLE(IntPtr sync); - [Slot(199)] + [Slot(200)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern IntPtr glFenceSyncAPPLE(System.Int32 condition, System.Int32 flags); - [Slot(273)] + [Slot(274)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetInteger64vAPPLE(System.Int32 pname, [OutAttribute] Int64* @params); - [Slot(349)] + [Slot(350)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetSyncivAPPLE(IntPtr sync, System.Int32 pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values); - [Slot(409)] + [Slot(410)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsSyncAPPLE(IntPtr sync); - [Slot(554)] + [Slot(575)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glRenderbufferStorageMultisampleAPPLE(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(559)] + [Slot(580)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glResolveMultisampleFramebufferAPPLE(); - [Slot(739)] + [Slot(762)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glWaitSyncAPPLE(IntPtr sync, System.Int32 flags, UInt64 timeout); [Slot(5)] @@ -61695,694 +69371,694 @@ namespace OpenTK.Graphics.ES30 [Slot(64)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern System.Int32 glClientWaitSync(IntPtr sync, System.Int32 flags, UInt64 timeout); - [Slot(66)] + [Slot(67)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glColorMask(bool red, bool green, bool blue, bool alpha); - [Slot(69)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glCompileShader(UInt32 shader); [Slot(70)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glCompressedTexImage2D(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data); + private static extern void glCompileShader(UInt32 shader); [Slot(71)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glCompressedTexImage3D(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data); - [Slot(73)] + private static extern void glCompressedTexImage2D(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data); + [Slot(72)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glCompressedTexSubImage2D(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, System.Int32 format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data); + private static extern void glCompressedTexImage3D(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data); [Slot(74)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glCompressedTexSubImage2D(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, System.Int32 format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data); + [Slot(75)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glCompressedTexSubImage3D(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, System.Int32 format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data); - [Slot(77)] + [Slot(78)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glCopyBufferSubData(System.Int32 readTarget, System.Int32 writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size); - [Slot(82)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glCopyTexImage2D(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border); [Slot(83)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glCopyTexSubImage2D(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height); + private static extern void glCopyTexImage2D(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border); [Slot(84)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glCopyTexSubImage3D(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height); - [Slot(97)] + private static extern void glCopyTexSubImage2D(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height); + [Slot(85)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int32 glCreateProgram(); + private static extern void glCopyTexSubImage3D(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height); [Slot(98)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int32 glCreateShader(System.Int32 type); - [Slot(101)] + private static extern Int32 glCreateProgram(); + [Slot(99)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glCullFace(System.Int32 mode); + private static extern Int32 glCreateShader(System.Int32 type); [Slot(102)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glCullFace(System.Int32 mode); + [Slot(103)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDebugMessageCallback(DebugProc callback, IntPtr userParam); - [Slot(104)] + [Slot(105)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDebugMessageControl(System.Int32 source, System.Int32 type, System.Int32 severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled); - [Slot(106)] + [Slot(107)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDebugMessageInsert(System.Int32 source, System.Int32 type, UInt32 id, System.Int32 severity, Int32 length, [CountAttribute(Computed = "buf,length")] IntPtr buf); - [Slot(108)] + [Slot(109)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* buffers); - [Slot(110)] + [Slot(111)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* framebuffers); - [Slot(115)] + [Slot(116)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDeleteProgram(UInt32 program); - [Slot(117)] + [Slot(118)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids); - [Slot(119)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glDeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* renderbuffers); [Slot(120)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glDeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] UInt32* samplers); - [Slot(122)] + private static extern unsafe void glDeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* renderbuffers); + [Slot(121)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDeleteShader(UInt32 shader); + private static extern unsafe void glDeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] UInt32* samplers); [Slot(123)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDeleteSync(IntPtr sync); - [Slot(125)] + private static extern void glDeleteShader(UInt32 shader); + [Slot(124)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glDeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures); + private static extern void glDeleteSync(IntPtr sync); [Slot(126)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glDeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids); + private static extern unsafe void glDeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures); [Slot(127)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glDeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays); - [Slot(129)] + private static extern unsafe void glDeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids); + [Slot(128)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDepthFunc(System.Int32 func); + private static extern unsafe void glDeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays); [Slot(130)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glDepthFunc(System.Int32 func); + [Slot(131)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDepthMask(bool flag); - [Slot(133)] + [Slot(134)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDepthRangef(Single n, Single f); - [Slot(136)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDetachShader(UInt32 program, UInt32 shader); [Slot(137)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glDetachShader(UInt32 program, UInt32 shader); + [Slot(138)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDisable(System.Int32 cap); - [Slot(142)] + [Slot(143)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDisableVertexAttribArray(UInt32 index); - [Slot(144)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDrawArrays(System.Int32 mode, Int32 first, Int32 count); [Slot(145)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glDrawArrays(System.Int32 mode, Int32 first, Int32 count); + [Slot(146)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawArraysInstanced(System.Int32 mode, Int32 first, Int32 count, Int32 instancecount); - [Slot(150)] + [Slot(151)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] System.Int32* bufs); - [Slot(154)] + [Slot(155)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawElements(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices); - [Slot(157)] + [Slot(158)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawElementsInstanced(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount); - [Slot(165)] + [Slot(166)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawRangeElements(System.Int32 mode, UInt32 start, UInt32 end, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices); - [Slot(173)] + [Slot(174)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEnable(System.Int32 cap); - [Slot(178)] + [Slot(179)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEnableVertexAttribArray(UInt32 index); - [Slot(182)] + [Slot(183)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEndQuery(System.Int32 target); - [Slot(185)] + [Slot(186)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEndTransformFeedback(); - [Slot(198)] + [Slot(199)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern IntPtr glFenceSync(System.Int32 condition, System.Int32 flags); - [Slot(200)] + [Slot(201)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFinish(); - [Slot(202)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFlush(); [Slot(203)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glFlush(); + [Slot(204)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFlushMappedBufferRange(System.Int32 target, IntPtr offset, IntPtr length); - [Slot(210)] + [Slot(211)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferRenderbuffer(System.Int32 target, System.Int32 attachment, System.Int32 renderbuffertarget, UInt32 renderbuffer); - [Slot(212)] + [Slot(213)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferTexture2D(System.Int32 target, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level); - [Slot(218)] + [Slot(219)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferTextureLayer(System.Int32 target, System.Int32 attachment, UInt32 texture, Int32 level, Int32 layer); - [Slot(223)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFrontFace(System.Int32 mode); [Slot(224)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* buffers); + private static extern void glFrontFace(System.Int32 mode); [Slot(225)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* buffers); + [Slot(226)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glGenerateMipmap(System.Int32 target); - [Slot(227)] + [Slot(228)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* framebuffers); - [Slot(231)] + [Slot(232)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids); - [Slot(233)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers); [Slot(234)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* samplers); - [Slot(236)] + private static extern unsafe void glGenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers); + [Slot(235)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* textures); + private static extern unsafe void glGenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* samplers); [Slot(237)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids); + private static extern unsafe void glGenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* textures); [Slot(238)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays); - [Slot(240)] + private static extern unsafe void glGenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids); + [Slot(239)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] System.Int32* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr name); + private static extern unsafe void glGenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays); [Slot(241)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] System.Int32* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr name); + private static extern unsafe void glGetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] System.Int32* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr name); [Slot(242)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetActiveUniformBlockiv(UInt32 program, UInt32 uniformBlockIndex, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params); + private static extern unsafe void glGetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] System.Int32* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr name); [Slot(243)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetActiveUniformBlockName(UInt32 program, UInt32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr uniformBlockName); + private static extern unsafe void glGetActiveUniformBlockiv(UInt32 program, UInt32 uniformBlockIndex, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params); [Slot(244)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetActiveUniformsiv(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32* uniformIndices, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params); + private static extern unsafe void glGetActiveUniformBlockName(UInt32 program, UInt32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr uniformBlockName); [Slot(245)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32* shaders); + private static extern unsafe void glGetActiveUniformsiv(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32* uniformIndices, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params); [Slot(246)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int32 glGetAttribLocation(UInt32 program, IntPtr name); + private static extern unsafe void glGetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32* shaders); [Slot(247)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetBooleanv(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data); + private static extern Int32 glGetAttribLocation(UInt32 program, IntPtr name); [Slot(248)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetBufferParameteri64v(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params); + private static extern unsafe void glGetBooleanv(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data); [Slot(249)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetBufferParameteriv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + private static extern unsafe void glGetBufferParameteri64v(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params); [Slot(250)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetBufferParameteriv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + [Slot(251)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glGetBufferPointerv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params); - [Slot(253)] + [Slot(254)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe Int32 glGetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] System.Int32* sources, [OutAttribute, CountAttribute(Parameter = "count")] System.Int32* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] System.Int32* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr messageLog); - [Slot(257)] + [Slot(258)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern System.Int32 glGetError(); - [Slot(262)] + [Slot(263)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetFloatv(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data); - [Slot(264)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int32 glGetFragDataLocation(UInt32 program, [CountAttribute(Computed = "name")] IntPtr name); [Slot(265)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern Int32 glGetFragDataLocation(UInt32 program, [CountAttribute(Computed = "name")] IntPtr name); + [Slot(266)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetFramebufferAttachmentParameteriv(System.Int32 target, System.Int32 attachment, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(267)] + [Slot(268)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern System.Int32 glGetGraphicsResetStatus(); - [Slot(271)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetInteger64i_v(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data); [Slot(272)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetInteger64i_v(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data); + [Slot(273)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetInteger64v(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* data); - [Slot(274)] + [Slot(275)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetIntegeri_v(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data); - [Slot(276)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetIntegerv(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data); [Slot(277)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetIntegerv(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data); + [Slot(278)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetInternalformativ(System.Int32 target, System.Int32 internalformat, System.Int32 pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params); - [Slot(281)] + [Slot(282)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetnUniformfv(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params); - [Slot(284)] + [Slot(285)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetnUniformiv(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params); - [Slot(287)] + [Slot(288)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetnUniformuiv(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params); - [Slot(289)] + [Slot(290)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetObjectLabel(System.Int32 identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr label); - [Slot(292)] + [Slot(293)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr label); - [Slot(317)] + [Slot(318)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glGetPointerv(System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params); - [Slot(319)] + [Slot(320)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] System.Int32* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary); - [Slot(321)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr infoLog); [Slot(322)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr infoLog); + [Slot(323)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetProgramiv(UInt32 program, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(327)] + [Slot(328)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetQueryiv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(332)] + [Slot(333)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetQueryObjectuiv(UInt32 id, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params); - [Slot(334)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetRenderbufferParameteriv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(335)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetRenderbufferParameteriv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + [Slot(336)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetSamplerParameterfv(UInt32 sampler, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); - [Slot(340)] + [Slot(341)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetSamplerParameteriv(UInt32 sampler, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(342)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr infoLog); [Slot(343)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetShaderiv(UInt32 shader, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + private static extern unsafe void glGetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr infoLog); [Slot(344)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetShaderPrecisionFormat(System.Int32 shadertype, System.Int32 precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32* range, [OutAttribute, CountAttribute(Count = 1)] Int32* precision); + private static extern unsafe void glGetShaderiv(UInt32 shader, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(345)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr source); + private static extern unsafe void glGetShaderPrecisionFormat(System.Int32 shadertype, System.Int32 precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32* range, [OutAttribute, CountAttribute(Count = 1)] Int32* precision); [Slot(346)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern IntPtr glGetString(System.Int32 name); + private static extern unsafe void glGetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr source); [Slot(347)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern IntPtr glGetStringi(System.Int32 name, UInt32 index); + private static extern IntPtr glGetString(System.Int32 name); [Slot(348)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern IntPtr glGetStringi(System.Int32 name, UInt32 index); + [Slot(349)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetSynciv(IntPtr sync, System.Int32 pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values); - [Slot(350)] + [Slot(351)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetTexParameterfv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); - [Slot(355)] + [Slot(356)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetTexParameteriv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(360)] + [Slot(361)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] System.Int32* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr name); - [Slot(362)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int32 glGetUniformBlockIndex(UInt32 program, [CountAttribute(Computed = "")] IntPtr uniformBlockName); [Slot(363)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetUniformfv(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params); - [Slot(365)] + private static extern Int32 glGetUniformBlockIndex(UInt32 program, [CountAttribute(Computed = "")] IntPtr uniformBlockName); + [Slot(364)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] IntPtr uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] UInt32* uniformIndices); + private static extern unsafe void glGetUniformfv(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params); [Slot(366)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetUniformiv(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params); + private static extern unsafe void glGetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] IntPtr uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] UInt32* uniformIndices); [Slot(367)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int32 glGetUniformLocation(UInt32 program, IntPtr name); + private static extern unsafe void glGetUniformiv(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params); [Slot(368)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetUniformuiv(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32* @params); - [Slot(371)] + private static extern Int32 glGetUniformLocation(UInt32 program, IntPtr name); + [Slot(369)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetVertexAttribfv(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params); + private static extern unsafe void glGetUniformuiv(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32* @params); [Slot(372)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetVertexAttribIiv(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params); + private static extern unsafe void glGetVertexAttribfv(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params); [Slot(373)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetVertexAttribIuiv(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] UInt32* @params); + private static extern unsafe void glGetVertexAttribIiv(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params); [Slot(374)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetVertexAttribiv(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params); + private static extern unsafe void glGetVertexAttribIuiv(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] UInt32* @params); [Slot(375)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetVertexAttribiv(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params); + [Slot(376)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glGetVertexAttribPointerv(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer); - [Slot(377)] + [Slot(378)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glHint(System.Int32 target, System.Int32 mode); - [Slot(386)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glInvalidateFramebuffer(System.Int32 target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] System.Int32* attachments); [Slot(387)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glInvalidateSubFramebuffer(System.Int32 target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] System.Int32* attachments, Int32 x, Int32 y, Int32 width, Int32 height); + private static extern unsafe void glInvalidateFramebuffer(System.Int32 target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] System.Int32* attachments); [Slot(388)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsBuffer(UInt32 buffer); + private static extern unsafe void glInvalidateSubFramebuffer(System.Int32 target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] System.Int32* attachments, Int32 x, Int32 y, Int32 width, Int32 height); [Slot(389)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glIsBuffer(UInt32 buffer); + [Slot(390)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsEnabled(System.Int32 cap); - [Slot(394)] + [Slot(395)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsFramebuffer(UInt32 framebuffer); - [Slot(400)] + [Slot(401)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsProgram(UInt32 program); - [Slot(402)] + [Slot(403)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsQuery(UInt32 id); - [Slot(404)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsRenderbuffer(UInt32 renderbuffer); [Slot(405)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsSampler(UInt32 sampler); - [Slot(407)] + private static extern byte glIsRenderbuffer(UInt32 renderbuffer); + [Slot(406)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsShader(UInt32 shader); + private static extern byte glIsSampler(UInt32 sampler); [Slot(408)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glIsShader(UInt32 shader); + [Slot(409)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsSync(IntPtr sync); - [Slot(410)] + [Slot(411)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsTexture(UInt32 texture); - [Slot(412)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsTransformFeedback(UInt32 id); [Slot(413)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsVertexArray(UInt32 array); - [Slot(416)] + private static extern byte glIsTransformFeedback(UInt32 id); + [Slot(414)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glLineWidth(Single width); + private static extern byte glIsVertexArray(UInt32 array); [Slot(417)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glLineWidth(Single width); + [Slot(418)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glLinkProgram(UInt32 program); - [Slot(423)] + [Slot(424)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern IntPtr glMapBufferRange(System.Int32 target, IntPtr offset, IntPtr length, System.Int32 access); - [Slot(441)] + [Slot(462)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glObjectLabel(System.Int32 identifier, UInt32 name, Int32 length, [CountAttribute(Computed = "label,length")] IntPtr label); - [Slot(443)] + [Slot(464)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glObjectPtrLabel(IntPtr ptr, Int32 length, [CountAttribute(Computed = "label,length")] IntPtr label); - [Slot(468)] + [Slot(489)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPauseTransformFeedback(); - [Slot(469)] + [Slot(490)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPixelStorei(System.Int32 pname, Int32 param); - [Slot(472)] + [Slot(493)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPolygonOffset(Single factor, Single units); - [Slot(474)] + [Slot(495)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPopDebugGroup(); - [Slot(479)] + [Slot(500)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramBinary(UInt32 program, System.Int32 binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length); - [Slot(481)] + [Slot(502)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramParameteri(UInt32 program, System.Int32 pname, Int32 value); - [Slot(537)] + [Slot(558)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPushDebugGroup(System.Int32 source, UInt32 id, Int32 length, [CountAttribute(Computed = "message,length")] IntPtr message); - [Slot(542)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glReadBuffer(System.Int32 src); - [Slot(545)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute] IntPtr data); - [Slot(548)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, System.Int32 format, System.Int32 type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); - [Slot(550)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glReleaseShaderCompiler(); - [Slot(551)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRenderbufferStorage(System.Int32 target, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(552)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRenderbufferStorageMultisample(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(560)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glResumeTransformFeedback(); - [Slot(561)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSampleCoverage(Single value, bool invert); - [Slot(562)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSamplerParameterf(UInt32 sampler, System.Int32 pname, Single param); [Slot(563)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glSamplerParameterfv(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* param); - [Slot(564)] + private static extern void glReadBuffer(System.Int32 src); + [Slot(566)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSamplerParameteri(UInt32 sampler, System.Int32 pname, Int32 param); + private static extern void glReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute] IntPtr data); [Slot(569)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glSamplerParameteriv(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* param); - [Slot(570)] + private static extern void glReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, System.Int32 format, System.Int32 type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); + [Slot(571)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glScissor(Int32 x, Int32 y, Int32 width, Int32 height); - [Slot(580)] + private static extern void glReleaseShaderCompiler(); + [Slot(572)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, System.Int32 binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length); + private static extern void glRenderbufferStorage(System.Int32 target, System.Int32 internalformat, Int32 width, Int32 height); + [Slot(573)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glRenderbufferStorageMultisample(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height); [Slot(581)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] IntPtr @string, [CountAttribute(Parameter = "count")] Int32* length); - [Slot(588)] + private static extern void glResumeTransformFeedback(); + [Slot(582)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilFunc(System.Int32 func, Int32 @ref, UInt32 mask); - [Slot(589)] + private static extern void glSampleCoverage(Single value, bool invert); + [Slot(583)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilFuncSeparate(System.Int32 face, System.Int32 func, Int32 @ref, UInt32 mask); + private static extern void glSamplerParameterf(UInt32 sampler, System.Int32 pname, Single param); + [Slot(584)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glSamplerParameterfv(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* param); + [Slot(585)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glSamplerParameteri(UInt32 sampler, System.Int32 pname, Int32 param); [Slot(590)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilMask(UInt32 mask); + private static extern unsafe void glSamplerParameteriv(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* param); [Slot(591)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilMaskSeparate(System.Int32 face, UInt32 mask); - [Slot(592)] + private static extern void glScissor(Int32 x, Int32 y, Int32 width, Int32 height); + [Slot(601)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilOp(System.Int32 fail, System.Int32 zfail, System.Int32 zpass); - [Slot(593)] + private static extern unsafe void glShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, System.Int32 binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length); + [Slot(602)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilOpSeparate(System.Int32 face, System.Int32 sfail, System.Int32 dpfail, System.Int32 dppass); - [Slot(606)] + private static extern unsafe void glShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] IntPtr @string, [CountAttribute(Parameter = "count")] Int32* length); + [Slot(609)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexImage2D(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); - [Slot(607)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexImage3D(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels); + private static extern void glStencilFunc(System.Int32 func, Int32 @ref, UInt32 mask); [Slot(610)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexParameterf(System.Int32 target, System.Int32 pname, Single param); + private static extern void glStencilFuncSeparate(System.Int32 face, System.Int32 func, Int32 @ref, UInt32 mask); [Slot(611)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexParameterfv(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); + private static extern void glStencilMask(UInt32 mask); [Slot(612)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glStencilMaskSeparate(System.Int32 face, UInt32 mask); + [Slot(613)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glStencilOp(System.Int32 fail, System.Int32 zfail, System.Int32 zpass); + [Slot(614)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glStencilOpSeparate(System.Int32 face, System.Int32 sfail, System.Int32 dpfail, System.Int32 dppass); + [Slot(627)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexImage2D(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); + [Slot(628)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexImage3D(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels); + [Slot(631)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexParameterf(System.Int32 target, System.Int32 pname, Single param); + [Slot(632)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexParameterfv(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); + [Slot(633)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexParameteri(System.Int32 target, System.Int32 pname, Int32 param); - [Slot(617)] + [Slot(638)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTexParameteriv(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); - [Slot(619)] + [Slot(640)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexStorage2D(System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(621)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexStorage3D(System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth); - [Slot(629)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexSubImage2D(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); - [Slot(630)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexSubImage3D(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels); [Slot(642)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] IntPtr varyings, System.Int32 bufferMode); - [Slot(644)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform1f(Int32 location, Single v0); - [Slot(645)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform1fv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single* value); - [Slot(646)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform1i(Int32 location, Int32 v0); - [Slot(649)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform1iv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32* value); + private static extern void glTexStorage3D(System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth); [Slot(650)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform1ui(Int32 location, UInt32 v0); - [Slot(653)] + private static extern void glTexSubImage2D(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); + [Slot(651)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform1uiv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32* value); - [Slot(654)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform2f(Int32 location, Single v0, Single v1); - [Slot(655)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform2fv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value); - [Slot(656)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform2i(Int32 location, Int32 v0, Int32 v1); - [Slot(659)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform2iv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value); - [Slot(660)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform2ui(Int32 location, UInt32 v0, UInt32 v1); - [Slot(663)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform2uiv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value); + private static extern void glTexSubImage3D(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels); [Slot(664)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform3f(Int32 location, Single v0, Single v1, Single v2); - [Slot(665)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform3fv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value); + private static extern void glTransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] IntPtr varyings, System.Int32 bufferMode); [Slot(666)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform3i(Int32 location, Int32 v0, Int32 v1, Int32 v2); - [Slot(669)] + private static extern void glUniform1f(Int32 location, Single v0); + [Slot(667)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform3iv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value); - [Slot(670)] + private static extern unsafe void glUniform1fv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single* value); + [Slot(668)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform3ui(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2); - [Slot(673)] + private static extern void glUniform1i(Int32 location, Int32 v0); + [Slot(671)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform3uiv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value); - [Slot(674)] + private static extern unsafe void glUniform1iv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32* value); + [Slot(672)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform4f(Int32 location, Single v0, Single v1, Single v2, Single v3); + private static extern void glUniform1ui(Int32 location, UInt32 v0); [Slot(675)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform4fv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value); + private static extern unsafe void glUniform1uiv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32* value); [Slot(676)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform4i(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3); - [Slot(679)] + private static extern void glUniform2f(Int32 location, Single v0, Single v1); + [Slot(677)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform4iv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value); - [Slot(680)] + private static extern unsafe void glUniform2fv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value); + [Slot(678)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform4ui(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3); - [Slot(683)] + private static extern void glUniform2i(Int32 location, Int32 v0, Int32 v1); + [Slot(681)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform4uiv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value); - [Slot(684)] + private static extern unsafe void glUniform2iv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value); + [Slot(682)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniformBlockBinding(UInt32 program, UInt32 uniformBlockIndex, UInt32 uniformBlockBinding); - [Slot(689)] + private static extern void glUniform2ui(Int32 location, UInt32 v0, UInt32 v1); + [Slot(685)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix2fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value); - [Slot(690)] + private static extern unsafe void glUniform2uiv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value); + [Slot(686)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix2x3fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); + private static extern void glUniform3f(Int32 location, Single v0, Single v1, Single v2); + [Slot(687)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniform3fv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value); + [Slot(688)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glUniform3i(Int32 location, Int32 v0, Int32 v1, Int32 v2); + [Slot(691)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniform3iv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value); [Slot(692)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix2x4fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); - [Slot(694)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix3fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value); + private static extern void glUniform3ui(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2); [Slot(695)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix3x2fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); + private static extern unsafe void glUniform3uiv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value); + [Slot(696)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glUniform4f(Int32 location, Single v0, Single v1, Single v2, Single v3); [Slot(697)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix3x4fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); - [Slot(699)] + private static extern unsafe void glUniform4fv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value); + [Slot(698)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix4fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value); - [Slot(700)] + private static extern void glUniform4i(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3); + [Slot(701)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix4x2fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); + private static extern unsafe void glUniform4iv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value); [Slot(702)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix4x3fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); - [Slot(704)] + private static extern void glUniform4ui(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3); + [Slot(705)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glUnmapBuffer(System.Int32 target); + private static extern unsafe void glUniform4uiv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value); [Slot(706)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUseProgram(UInt32 program); - [Slot(709)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glValidateProgram(UInt32 program); + private static extern void glUniformBlockBinding(UInt32 program, UInt32 uniformBlockIndex, UInt32 uniformBlockBinding); [Slot(711)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttrib1f(UInt32 index, Single x); + private static extern unsafe void glUniformMatrix2fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value); [Slot(712)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib1fv(UInt32 index, [CountAttribute(Count = 1)] Single* v); - [Slot(713)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttrib2f(UInt32 index, Single x, Single y); + private static extern unsafe void glUniformMatrix2x3fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); [Slot(714)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib2fv(UInt32 index, [CountAttribute(Count = 2)] Single* v); - [Slot(715)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttrib3f(UInt32 index, Single x, Single y, Single z); + private static extern unsafe void glUniformMatrix2x4fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); [Slot(716)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib3fv(UInt32 index, [CountAttribute(Count = 3)] Single* v); + private static extern unsafe void glUniformMatrix3fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value); [Slot(717)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttrib4f(UInt32 index, Single x, Single y, Single z, Single w); - [Slot(718)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib4fv(UInt32 index, [CountAttribute(Count = 4)] Single* v); + private static extern unsafe void glUniformMatrix3x2fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); [Slot(719)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribDivisor(UInt32 index, UInt32 divisor); - [Slot(723)] + private static extern unsafe void glUniformMatrix3x4fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); + [Slot(721)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribI4i(UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w); + private static extern unsafe void glUniformMatrix4fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value); + [Slot(722)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniformMatrix4x2fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); [Slot(724)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribI4iv(UInt32 index, [CountAttribute(Count = 4)] Int32* v); - [Slot(725)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribI4ui(UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w); + private static extern unsafe void glUniformMatrix4x3fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); [Slot(726)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribI4uiv(UInt32 index, [CountAttribute(Count = 4)] UInt32* v); - [Slot(727)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribIPointer(UInt32 index, Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer); + private static extern byte glUnmapBuffer(System.Int32 target); [Slot(728)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glUseProgram(UInt32 program); + [Slot(731)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glValidateProgram(UInt32 program); + [Slot(733)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttrib1f(UInt32 index, Single x); + [Slot(734)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttrib1fv(UInt32 index, [CountAttribute(Count = 1)] Single* v); + [Slot(735)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttrib2f(UInt32 index, Single x, Single y); + [Slot(736)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttrib2fv(UInt32 index, [CountAttribute(Count = 2)] Single* v); + [Slot(737)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttrib3f(UInt32 index, Single x, Single y, Single z); + [Slot(738)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttrib3fv(UInt32 index, [CountAttribute(Count = 3)] Single* v); + [Slot(739)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttrib4f(UInt32 index, Single x, Single y, Single z, Single w); + [Slot(740)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttrib4fv(UInt32 index, [CountAttribute(Count = 4)] Single* v); + [Slot(741)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribDivisor(UInt32 index, UInt32 divisor); + [Slot(745)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribI4i(UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w); + [Slot(746)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttribI4iv(UInt32 index, [CountAttribute(Count = 4)] Int32* v); + [Slot(747)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribI4ui(UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w); + [Slot(748)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttribI4uiv(UInt32 index, [CountAttribute(Count = 4)] UInt32* v); + [Slot(749)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribIPointer(UInt32 index, Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer); + [Slot(750)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribPointer(UInt32 index, Int32 size, System.Int32 type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer); - [Slot(729)] + [Slot(751)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glViewport(Int32 x, Int32 y, Int32 width, Int32 height); - [Slot(738)] + [Slot(761)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glWaitSync(IntPtr sync, System.Int32 flags, UInt64 timeout); [Slot(0)] @@ -62423,593 +70099,656 @@ namespace OpenTK.Graphics.ES30 private static extern void glBlendFuncSeparateiEXT(UInt32 buf, System.Int32 srcRGB, System.Int32 dstRGB, System.Int32 srcAlpha, System.Int32 dstAlpha); [Slot(48)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glBufferStorageEXT(System.Int32 target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags); + private static extern void glBufferStorageEXT(System.Int32 target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, System.Int32 flags); [Slot(49)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glBufferStorageExternalEXT(System.Int32 target, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags); + private static extern void glBufferStorageExternalEXT(System.Int32 target, IntPtr offset, IntPtr size, IntPtr clientBuffer, System.Int32 flags); [Slot(50)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glBufferStorageMemEXT(System.Int32 target, IntPtr size, UInt32 memory, UInt64 offset); [Slot(60)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glClearPixelLocalStorageuiEXT(Int32 offset, Int32 n, UInt32* values); + private static extern unsafe void glClearPixelLocalStorageuiEXT(Int32 offset, Int32 n, [CountAttribute(Parameter = "n")] UInt32* values); [Slot(62)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glClearTexImageEXT(UInt32 texture, Int32 level, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type")] IntPtr data); [Slot(63)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glClearTexSubImageEXT(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type")] IntPtr data); - [Slot(67)] + [Slot(66)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glClipControlEXT(System.Int32 origin, System.Int32 depth); + [Slot(68)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glColorMaskiEXT(UInt32 index, bool r, bool g, bool b, bool a); - [Slot(79)] + [Slot(80)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glCopyImageSubDataEXT(UInt32 srcName, System.Int32 srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, System.Int32 dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth); - [Slot(95)] + [Slot(96)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glCreateMemoryObjectsEXT(Int32 n, [OutAttribute] UInt32* memoryObjects); - [Slot(99)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int32 glCreateShaderProgramEXT(System.Int32 type, IntPtr @string); [Slot(100)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern Int32 glCreateShaderProgramEXT(System.Int32 type, IntPtr @string); + [Slot(101)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int32 glCreateShaderProgramvEXT(System.Int32 type, Int32 count, [CountAttribute(Parameter = "count")] IntPtr strings); - [Slot(111)] + [Slot(112)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteMemoryObjectsEXT(Int32 n, [CountAttribute(Parameter = "n")] UInt32* memoryObjects); - [Slot(116)] + [Slot(117)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteProgramPipelinesEXT(Int32 n, [CountAttribute(Parameter = "n")] UInt32* pipelines); - [Slot(118)] + [Slot(119)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteQueriesEXT(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids); - [Slot(121)] + [Slot(122)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glDeleteSemaphoresEXT(Int32 n, [CountAttribute(Parameter = "count")] UInt32* semaphores); - [Slot(139)] + private static extern unsafe void glDeleteSemaphoresEXT(Int32 n, [CountAttribute(Parameter = "n")] UInt32* semaphores); + [Slot(140)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDisableiEXT(System.Int32 target, UInt32 index); - [Slot(143)] + [Slot(144)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDiscardFramebufferEXT(System.Int32 target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] System.Int32* attachments); - [Slot(147)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDrawArraysInstancedBaseInstanceEXT(System.Int32 mode, Int32 first, Int32 count, Int32 instancecount, UInt32 baseinstance); [Slot(148)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDrawArraysInstancedEXT(System.Int32 mode, Int32 start, Int32 count, Int32 primcount); - [Slot(151)] + private static extern void glDrawArraysInstancedBaseInstanceEXT(System.Int32 mode, Int32 first, Int32 count, Int32 instancecount, UInt32 baseinstance); + [Slot(149)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glDrawBuffersEXT(Int32 n, System.Int32* bufs); + private static extern void glDrawArraysInstancedEXT(System.Int32 mode, Int32 start, Int32 count, Int32 primcount); [Slot(152)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glDrawBuffersEXT(Int32 n, [CountAttribute(Parameter = "n")] System.Int32* bufs); + [Slot(153)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDrawBuffersIndexedEXT(Int32 n, [CountAttribute(Parameter = "n")] System.Int32* location, [CountAttribute(Parameter = "n")] Int32* indices); - [Slot(155)] + [Slot(156)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawElementsBaseVertexEXT(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex); - [Slot(159)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDrawElementsInstancedBaseInstanceEXT(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance); [Slot(160)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDrawElementsInstancedBaseVertexBaseInstanceEXT(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance); + private static extern void glDrawElementsInstancedBaseInstanceEXT(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance); [Slot(161)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glDrawElementsInstancedBaseVertexBaseInstanceEXT(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance); + [Slot(162)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawElementsInstancedBaseVertexEXT(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex); - [Slot(163)] + [Slot(164)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawElementsInstancedEXT(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount); - [Slot(166)] + [Slot(167)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawRangeElementsBaseVertexEXT(System.Int32 mode, UInt32 start, UInt32 end, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex); - [Slot(168)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDrawTransformFeedbackEXT(System.Int32 mode, UInt32 id); [Slot(169)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glDrawTransformFeedbackEXT(System.Int32 mode, UInt32 id); + [Slot(170)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawTransformFeedbackInstancedEXT(System.Int32 mode, UInt32 id, Int32 instancecount); - [Slot(175)] + [Slot(176)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEnableiEXT(System.Int32 target, UInt32 index); - [Slot(183)] + [Slot(184)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEndQueryEXT(System.Int32 target); - [Slot(204)] + [Slot(205)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFlushMappedBufferRangeEXT(System.Int32 target, IntPtr offset, IntPtr length); - [Slot(209)] + [Slot(210)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferPixelLocalStorageSizeEXT(UInt32 target, Int32 size); - [Slot(214)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFramebufferTexture2DMultisampleEXT(System.Int32 target, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level, Int32 samples); - [Slot(217)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFramebufferTextureEXT(System.Int32 target, System.Int32 attachment, UInt32 texture, Int32 level); - [Slot(230)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGenProgramPipelinesEXT(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines); - [Slot(232)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGenQueriesEXT(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids); - [Slot(235)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGenSemaphoresEXT(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* semaphores); - [Slot(263)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int32 glGetFragDataIndexEXT(UInt32 program, IntPtr name); - [Slot(266)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int32 glGetFramebufferPixelLocalStorageSizeEXT(UInt32 target); - [Slot(268)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern System.Int32 glGetGraphicsResetStatusEXT(); - [Slot(275)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetIntegeri_vEXT(System.Int32 target, UInt32 index, [OutAttribute] Int32* data); - [Slot(279)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetMemoryObjectParameterivEXT(UInt32 memoryObject, System.Int32 pname, [OutAttribute] Int32* @params); - [Slot(282)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetnUniformfvEXT(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params); - [Slot(285)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetnUniformivEXT(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params); - [Slot(290)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetObjectLabelEXT(System.Int32 type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr label); - [Slot(323)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetProgramPipelineInfoLogEXT(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr infoLog); - [Slot(324)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetProgramPipelineivEXT(UInt32 pipeline, System.Int32 pname, [OutAttribute] Int32* @params); - [Slot(326)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int32 glGetProgramResourceLocationIndexEXT(UInt32 program, System.Int32 programInterface, [CountAttribute(Computed = "name")] IntPtr name); - [Slot(328)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetQueryivEXT(System.Int32 target, System.Int32 pname, [OutAttribute] Int32* @params); - [Slot(329)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetQueryObjecti64vEXT(UInt32 id, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params); - [Slot(330)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetQueryObjectivEXT(UInt32 id, System.Int32 pname, [OutAttribute] Int32* @params); - [Slot(331)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetQueryObjectui64vEXT(UInt32 id, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params); - [Slot(333)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetQueryObjectuivEXT(UInt32 id, System.Int32 pname, [OutAttribute] UInt32* @params); - [Slot(336)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetSamplerParameterIivEXT(UInt32 sampler, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(338)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetSamplerParameterIuivEXT(UInt32 sampler, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params); - [Slot(341)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetSemaphoreParameterui64vEXT(UInt32 semaphore, System.Int32 pname, [OutAttribute] UInt64* @params); - [Slot(351)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTexParameterIivEXT(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(353)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTexParameterIuivEXT(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params); - [Slot(369)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetUnsignedBytei_vEXT(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte* data); - [Slot(370)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetUnsignedBytevEXT(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte* data); - [Slot(378)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glImportMemoryFdEXT(UInt32 memory, UInt64 size, System.Int32 handleType, Int32 fd); - [Slot(379)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glImportMemoryWin32HandleEXT(UInt32 memory, UInt64 size, System.Int32 handleType, [OutAttribute] IntPtr handle); - [Slot(380)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glImportMemoryWin32NameEXT(UInt32 memory, UInt64 size, System.Int32 handleType, IntPtr name); - [Slot(381)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glImportSemaphoreFdEXT(UInt32 semaphore, System.Int32 handleType, Int32 fd); - [Slot(382)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glImportSemaphoreWin32HandleEXT(UInt32 semaphore, System.Int32 handleType, [OutAttribute] IntPtr handle); - [Slot(383)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glImportSemaphoreWin32NameEXT(UInt32 semaphore, System.Int32 handleType, IntPtr name); - [Slot(384)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glInsertEventMarkerEXT(Int32 length, IntPtr marker); - [Slot(390)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsEnablediEXT(System.Int32 target, UInt32 index); - [Slot(396)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsMemoryObjectEXT(UInt32 memoryObject); - [Slot(401)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsProgramPipelineEXT(UInt32 pipeline); - [Slot(403)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsQueryEXT(UInt32 id); - [Slot(406)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsSemaphoreEXT(UInt32 semaphore); - [Slot(415)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glLabelObjectEXT(System.Int32 type, UInt32 @object, Int32 length, IntPtr label); - [Slot(424)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern IntPtr glMapBufferRangeEXT(System.Int32 target, IntPtr offset, IntPtr length, UInt32 access); - [Slot(431)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMemoryObjectParameterivEXT(UInt32 memoryObject, System.Int32 pname, Int32* @params); - [Slot(433)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiDrawArraysEXT(System.Int32 mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount); - [Slot(434)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiDrawArraysIndirectEXT(System.Int32 mode, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride); - [Slot(435)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiDrawElementsBaseVertexEXT(System.Int32 mode, [CountAttribute(Computed = "drawcount")] Int32* count, System.Int32 type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex); - [Slot(436)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiDrawElementsEXT(System.Int32 mode, [CountAttribute(Computed = "primcount")] Int32* count, System.Int32 type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount); - [Slot(437)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiDrawElementsIndirectEXT(System.Int32 mode, System.Int32 type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride); - [Slot(438)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedBufferStorageExternalEXT(UInt32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags); - [Slot(439)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedBufferStorageMemEXT(UInt32 buffer, IntPtr size, UInt32 memory, UInt64 offset); - [Slot(445)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPatchParameteriEXT(System.Int32 pname, Int32 value); - [Slot(473)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPolygonOffsetClampEXT(Single factor, Single units, Single clamp); - [Slot(476)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPopGroupMarkerEXT(); - [Slot(477)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPrimitiveBoundingBoxEXT(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW); - [Slot(482)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramParameteriEXT(UInt32 program, System.Int32 pname, Int32 value); - [Slot(484)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform1fEXT(UInt32 program, Int32 location, Single v0); - [Slot(485)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform1fvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value); - [Slot(488)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform1iEXT(UInt32 program, Int32 location, Int32 v0); - [Slot(489)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform1ivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value); - [Slot(492)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform1uiEXT(UInt32 program, Int32 location, UInt32 v0); - [Slot(493)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform1uivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32* value); - [Slot(494)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform2fEXT(UInt32 program, Int32 location, Single v0, Single v1); - [Slot(495)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform2fvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value); - [Slot(498)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform2iEXT(UInt32 program, Int32 location, Int32 v0, Int32 v1); - [Slot(499)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform2ivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value); - [Slot(502)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform2uiEXT(UInt32 program, Int32 location, UInt32 v0, UInt32 v1); - [Slot(503)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform2uivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value); - [Slot(504)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform3fEXT(UInt32 program, Int32 location, Single v0, Single v1, Single v2); - [Slot(505)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform3fvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value); - [Slot(508)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform3iEXT(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2); - [Slot(509)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform3ivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value); - [Slot(512)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform3uiEXT(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2); - [Slot(513)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform3uivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value); - [Slot(514)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform4fEXT(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3); - [Slot(515)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform4fvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value); - [Slot(518)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform4iEXT(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3); - [Slot(519)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform4ivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value); - [Slot(522)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform4uiEXT(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3); - [Slot(523)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform4uivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value); - [Slot(528)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix2fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value); - [Slot(529)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix2x3fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); - [Slot(530)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix2x4fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); - [Slot(531)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix3fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value); - [Slot(532)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix3x2fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); - [Slot(533)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix3x4fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); - [Slot(534)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix4fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value); - [Slot(535)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix4x2fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); - [Slot(536)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix4x3fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); - [Slot(539)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPushGroupMarkerEXT(Int32 length, IntPtr marker); - [Slot(540)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glQueryCounterEXT(UInt32 id, System.Int32 target); - [Slot(541)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRasterSamplesEXT(UInt32 samples, bool fixedsamplelocations); - [Slot(543)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glReadBufferIndexedEXT(System.Int32 src, Int32 index); - [Slot(546)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glReadnPixelsEXT(Int32 x, Int32 y, Int32 width, Int32 height, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data); - [Slot(549)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glReleaseKeyedMutexWin32EXT(UInt32 memory, UInt64 key); - [Slot(555)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRenderbufferStorageMultisampleEXT(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(565)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glSamplerParameterIivEXT(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* param); - [Slot(567)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glSamplerParameterIuivEXT(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] UInt32* param); - [Slot(578)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glSemaphoreParameterui64vEXT(UInt32 semaphore, System.Int32 pname, UInt64* @params); - [Slot(582)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glSignalSemaphoreEXT(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] System.Int32* dstLayouts); - [Slot(602)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexBufferEXT(System.Int32 target, System.Int32 internalformat, UInt32 buffer); - [Slot(604)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexBufferRangeEXT(System.Int32 target, System.Int32 internalformat, UInt32 buffer, IntPtr offset, IntPtr size); - [Slot(609)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexPageCommitmentEXT(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit); - [Slot(613)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexParameterIivEXT(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); - [Slot(615)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexParameterIuivEXT(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] UInt32* @params); - [Slot(618)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexStorage1DEXT(System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width); - [Slot(620)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexStorage2DEXT(System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(622)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexStorage3DEXT(System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth); - [Slot(624)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexStorageMem1DEXT(System.Int32 target, Int32 levels, System.Int32 internalFormat, Int32 width, UInt32 memory, UInt64 offset); - [Slot(625)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexStorageMem2DEXT(System.Int32 target, Int32 levels, System.Int32 internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset); - [Slot(626)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexStorageMem2DMultisampleEXT(System.Int32 target, Int32 samples, System.Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset); - [Slot(627)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexStorageMem3DEXT(System.Int32 target, Int32 levels, System.Int32 internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset); - [Slot(628)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexStorageMem3DMultisampleEXT(System.Int32 target, Int32 samples, System.Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset); - [Slot(632)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureStorage1DEXT(UInt32 texture, System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width); - [Slot(633)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureStorage2DEXT(UInt32 texture, System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(634)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureStorage3DEXT(UInt32 texture, System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth); - [Slot(635)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureStorageMem1DEXT(UInt32 texture, Int32 levels, System.Int32 internalFormat, Int32 width, UInt32 memory, UInt64 offset); - [Slot(636)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureStorageMem2DEXT(UInt32 texture, Int32 levels, System.Int32 internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset); - [Slot(637)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureStorageMem2DMultisampleEXT(UInt32 texture, Int32 samples, System.Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset); - [Slot(638)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureStorageMem3DEXT(UInt32 texture, Int32 levels, System.Int32 internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset); - [Slot(639)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureStorageMem3DMultisampleEXT(UInt32 texture, Int32 samples, System.Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset); - [Slot(640)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureViewEXT(UInt32 texture, System.Int32 target, UInt32 origtexture, System.Int32 internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers); - [Slot(707)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUseProgramStagesEXT(UInt32 pipeline, UInt32 stages, UInt32 program); - [Slot(708)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUseShaderProgramEXT(System.Int32 type, UInt32 program); - [Slot(710)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glValidateProgramPipelineEXT(UInt32 pipeline); - [Slot(721)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribDivisorEXT(UInt32 index, UInt32 divisor); - [Slot(737)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glWaitSemaphoreEXT(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] System.Int32* srcLayouts); - [Slot(742)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glWindowRectanglesEXT(System.Int32 mode, Int32 count, [CountAttribute(Computed = "count")] Int32* box); - [Slot(213)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFramebufferTexture2DDownsampleIMG(System.Int32 target, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level, Int32 xscale, Int32 yscale); [Slot(215)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFramebufferTexture2DMultisampleIMG(System.Int32 target, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level, Int32 samples); - [Slot(219)] + private static extern void glFramebufferTexture2DMultisampleEXT(System.Int32 target, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level, Int32 samples); + [Slot(218)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFramebufferTextureLayerDownsampleIMG(System.Int32 target, System.Int32 attachment, UInt32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale); - [Slot(356)] + private static extern void glFramebufferTextureEXT(System.Int32 target, System.Int32 attachment, UInt32 texture, Int32 level); + [Slot(231)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int64 glGetTextureHandleIMG(UInt32 texture); - [Slot(358)] + private static extern unsafe void glGenProgramPipelinesEXT(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines); + [Slot(233)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int64 glGetTextureSamplerHandleIMG(UInt32 texture, UInt32 sampler); + private static extern unsafe void glGenQueriesEXT(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids); + [Slot(236)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGenSemaphoresEXT(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* semaphores); + [Slot(264)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern Int32 glGetFragDataIndexEXT(UInt32 program, IntPtr name); + [Slot(267)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern Int32 glGetFramebufferPixelLocalStorageSizeEXT(System.Int32 target); + [Slot(269)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern System.Int32 glGetGraphicsResetStatusEXT(); + [Slot(276)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetIntegeri_vEXT(System.Int32 target, UInt32 index, [OutAttribute] Int32* data); + [Slot(280)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetMemoryObjectParameterivEXT(UInt32 memoryObject, System.Int32 pname, [OutAttribute] Int32* @params); + [Slot(283)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetnUniformfvEXT(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params); + [Slot(286)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetnUniformivEXT(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params); + [Slot(291)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetObjectLabelEXT(System.Int32 type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr label); + [Slot(324)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetProgramPipelineInfoLogEXT(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr infoLog); + [Slot(325)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetProgramPipelineivEXT(UInt32 pipeline, System.Int32 pname, [OutAttribute] Int32* @params); + [Slot(327)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern Int32 glGetProgramResourceLocationIndexEXT(UInt32 program, System.Int32 programInterface, [CountAttribute(Computed = "name")] IntPtr name); + [Slot(329)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetQueryivEXT(System.Int32 target, System.Int32 pname, [OutAttribute] Int32* @params); + [Slot(330)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetQueryObjecti64vEXT(UInt32 id, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params); + [Slot(331)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetQueryObjectivEXT(UInt32 id, System.Int32 pname, [OutAttribute] Int32* @params); + [Slot(332)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetQueryObjectui64vEXT(UInt32 id, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params); + [Slot(334)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetQueryObjectuivEXT(UInt32 id, System.Int32 pname, [OutAttribute] UInt32* @params); + [Slot(337)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetSamplerParameterIivEXT(UInt32 sampler, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + [Slot(339)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetSamplerParameterIuivEXT(UInt32 sampler, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params); + [Slot(342)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetSemaphoreParameterui64vEXT(UInt32 semaphore, System.Int32 pname, [OutAttribute] UInt64* @params); + [Slot(352)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetTexParameterIivEXT(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + [Slot(354)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetTexParameterIuivEXT(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params); + [Slot(370)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetUnsignedBytei_vEXT(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte* data); + [Slot(371)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetUnsignedBytevEXT(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte* data); + [Slot(379)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glImportMemoryFdEXT(UInt32 memory, UInt64 size, System.Int32 handleType, Int32 fd); + [Slot(380)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glImportMemoryWin32HandleEXT(UInt32 memory, UInt64 size, System.Int32 handleType, [OutAttribute] IntPtr handle); + [Slot(381)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glImportMemoryWin32NameEXT(UInt32 memory, UInt64 size, System.Int32 handleType, IntPtr name); + [Slot(382)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glImportSemaphoreFdEXT(UInt32 semaphore, System.Int32 handleType, Int32 fd); + [Slot(383)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glImportSemaphoreWin32HandleEXT(UInt32 semaphore, System.Int32 handleType, [OutAttribute] IntPtr handle); + [Slot(384)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glImportSemaphoreWin32NameEXT(UInt32 semaphore, System.Int32 handleType, IntPtr name); + [Slot(385)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glInsertEventMarkerEXT(Int32 length, IntPtr marker); + [Slot(391)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glIsEnablediEXT(System.Int32 target, UInt32 index); + [Slot(397)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glIsMemoryObjectEXT(UInt32 memoryObject); + [Slot(402)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glIsProgramPipelineEXT(UInt32 pipeline); + [Slot(404)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glIsQueryEXT(UInt32 id); + [Slot(407)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glIsSemaphoreEXT(UInt32 semaphore); + [Slot(416)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glLabelObjectEXT(System.Int32 type, UInt32 @object, Int32 length, IntPtr label); + [Slot(425)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern IntPtr glMapBufferRangeEXT(System.Int32 target, IntPtr offset, IntPtr length, System.Int32 access); + [Slot(426)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixFrustumEXT(System.Int32 mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar); + [Slot(429)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMatrixLoaddEXT(System.Int32 mode, [CountAttribute(Count = 16)] Double* m); + [Slot(430)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMatrixLoadfEXT(System.Int32 mode, [CountAttribute(Count = 16)] Single* m); + [Slot(431)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixLoadIdentityEXT(System.Int32 mode); + [Slot(433)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMatrixLoadTransposedEXT(System.Int32 mode, [CountAttribute(Count = 16)] Double* m); + [Slot(434)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMatrixLoadTransposefEXT(System.Int32 mode, [CountAttribute(Count = 16)] Single* m); + [Slot(437)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMatrixMultdEXT(System.Int32 mode, [CountAttribute(Count = 16)] Double* m); + [Slot(438)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMatrixMultfEXT(System.Int32 mode, [CountAttribute(Count = 16)] Single* m); + [Slot(440)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMatrixMultTransposedEXT(System.Int32 mode, [CountAttribute(Count = 16)] Double* m); + [Slot(441)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMatrixMultTransposefEXT(System.Int32 mode, [CountAttribute(Count = 16)] Single* m); + [Slot(442)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixOrthoEXT(System.Int32 mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar); + [Slot(443)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixPopEXT(System.Int32 mode); + [Slot(444)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixPushEXT(System.Int32 mode); + [Slot(445)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixRotatedEXT(System.Int32 mode, Double angle, Double x, Double y, Double z); + [Slot(446)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixRotatefEXT(System.Int32 mode, Single angle, Single x, Single y, Single z); + [Slot(447)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixScaledEXT(System.Int32 mode, Double x, Double y, Double z); + [Slot(448)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixScalefEXT(System.Int32 mode, Single x, Single y, Single z); + [Slot(449)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixTranslatedEXT(System.Int32 mode, Double x, Double y, Double z); + [Slot(450)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixTranslatefEXT(System.Int32 mode, Single x, Single y, Single z); + [Slot(452)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMemoryObjectParameterivEXT(UInt32 memoryObject, System.Int32 pname, Int32* @params); + [Slot(454)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMultiDrawArraysEXT(System.Int32 mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount); + [Slot(455)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMultiDrawArraysIndirectEXT(System.Int32 mode, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride); + [Slot(456)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMultiDrawElementsBaseVertexEXT(System.Int32 mode, [CountAttribute(Computed = "drawcount")] Int32* count, System.Int32 type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex); + [Slot(457)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMultiDrawElementsEXT(System.Int32 mode, [CountAttribute(Computed = "primcount")] Int32* count, System.Int32 type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount); + [Slot(458)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMultiDrawElementsIndirectEXT(System.Int32 mode, System.Int32 type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride); + [Slot(459)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNamedBufferStorageExternalEXT(UInt32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, System.Int32 flags); + [Slot(460)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNamedBufferStorageMemEXT(UInt32 buffer, IntPtr size, UInt32 memory, UInt64 offset); + [Slot(466)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPatchParameteriEXT(System.Int32 pname, Int32 value); + [Slot(494)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPolygonOffsetClampEXT(Single factor, Single units, Single clamp); + [Slot(497)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPopGroupMarkerEXT(); + [Slot(498)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPrimitiveBoundingBoxEXT(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW); + [Slot(503)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramParameteriEXT(UInt32 program, System.Int32 pname, Int32 value); + [Slot(505)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform1fEXT(UInt32 program, Int32 location, Single v0); + [Slot(506)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform1fvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value); + [Slot(509)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform1iEXT(UInt32 program, Int32 location, Int32 v0); + [Slot(510)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform1ivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value); + [Slot(513)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform1uiEXT(UInt32 program, Int32 location, UInt32 v0); + [Slot(514)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform1uivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32* value); + [Slot(515)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform2fEXT(UInt32 program, Int32 location, Single v0, Single v1); + [Slot(516)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform2fvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value); + [Slot(519)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform2iEXT(UInt32 program, Int32 location, Int32 v0, Int32 v1); + [Slot(520)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform2ivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value); + [Slot(523)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform2uiEXT(UInt32 program, Int32 location, UInt32 v0, UInt32 v1); [Slot(524)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniformHandleui64IMG(UInt32 program, Int32 location, UInt64 value); + private static extern unsafe void glProgramUniform2uivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value); + [Slot(525)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform3fEXT(UInt32 program, Int32 location, Single v0, Single v1, Single v2); [Slot(526)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformHandleui64vIMG(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values); + private static extern unsafe void glProgramUniform3fvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value); + [Slot(529)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform3iEXT(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2); + [Slot(530)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform3ivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value); + [Slot(533)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform3uiEXT(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2); + [Slot(534)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform3uivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value); + [Slot(535)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform4fEXT(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3); + [Slot(536)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform4fvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value); + [Slot(539)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform4iEXT(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3); + [Slot(540)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform4ivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value); + [Slot(543)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform4uiEXT(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3); + [Slot(544)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform4uivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value); + [Slot(549)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix2fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value); + [Slot(550)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix2x3fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); + [Slot(551)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix2x4fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); + [Slot(552)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix3fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value); + [Slot(553)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix3x2fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); + [Slot(554)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix3x4fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); + [Slot(555)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix4fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value); [Slot(556)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix4x2fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); + [Slot(557)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix4x3fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); + [Slot(560)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPushGroupMarkerEXT(Int32 length, IntPtr marker); + [Slot(561)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glQueryCounterEXT(UInt32 id, System.Int32 target); + [Slot(562)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glRasterSamplesEXT(UInt32 samples, bool fixedsamplelocations); + [Slot(564)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glReadBufferIndexedEXT(System.Int32 src, Int32 index); + [Slot(567)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glReadnPixelsEXT(Int32 x, Int32 y, Int32 width, Int32 height, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data); + [Slot(570)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glReleaseKeyedMutexWin32EXT(UInt32 memory, UInt64 key); + [Slot(576)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glRenderbufferStorageMultisampleEXT(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height); + [Slot(586)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glSamplerParameterIivEXT(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* param); + [Slot(588)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glSamplerParameterIuivEXT(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] UInt32* param); + [Slot(599)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glSemaphoreParameterui64vEXT(UInt32 semaphore, System.Int32 pname, UInt64* @params); + [Slot(603)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glSignalSemaphoreEXT(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] System.Int32* dstLayouts); + [Slot(623)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexBufferEXT(System.Int32 target, System.Int32 internalformat, UInt32 buffer); + [Slot(625)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexBufferRangeEXT(System.Int32 target, System.Int32 internalformat, UInt32 buffer, IntPtr offset, IntPtr size); + [Slot(630)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexPageCommitmentEXT(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit); + [Slot(634)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexParameterIivEXT(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + [Slot(636)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexParameterIuivEXT(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] UInt32* @params); + [Slot(639)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexStorage1DEXT(System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width); + [Slot(641)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexStorage2DEXT(System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height); + [Slot(643)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexStorage3DEXT(System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth); + [Slot(645)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexStorageMem1DEXT(System.Int32 target, Int32 levels, System.Int32 internalFormat, Int32 width, UInt32 memory, UInt64 offset); + [Slot(646)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexStorageMem2DEXT(System.Int32 target, Int32 levels, System.Int32 internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset); + [Slot(647)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexStorageMem2DMultisampleEXT(System.Int32 target, Int32 samples, System.Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset); + [Slot(648)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexStorageMem3DEXT(System.Int32 target, Int32 levels, System.Int32 internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset); + [Slot(649)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexStorageMem3DMultisampleEXT(System.Int32 target, Int32 samples, System.Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset); + [Slot(654)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureStorage1DEXT(UInt32 texture, System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width); + [Slot(655)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureStorage2DEXT(UInt32 texture, System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height); + [Slot(656)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureStorage3DEXT(UInt32 texture, System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth); + [Slot(657)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureStorageMem1DEXT(UInt32 texture, Int32 levels, System.Int32 internalFormat, Int32 width, UInt32 memory, UInt64 offset); + [Slot(658)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureStorageMem2DEXT(UInt32 texture, Int32 levels, System.Int32 internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset); + [Slot(659)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureStorageMem2DMultisampleEXT(UInt32 texture, Int32 samples, System.Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset); + [Slot(660)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureStorageMem3DEXT(UInt32 texture, Int32 levels, System.Int32 internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset); + [Slot(661)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureStorageMem3DMultisampleEXT(UInt32 texture, Int32 samples, System.Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset); + [Slot(662)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureViewEXT(UInt32 texture, System.Int32 target, UInt32 origtexture, System.Int32 internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers); + [Slot(729)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glUseProgramStagesEXT(UInt32 pipeline, System.Int32 stages, UInt32 program); + [Slot(730)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glUseShaderProgramEXT(System.Int32 type, UInt32 program); + [Slot(732)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glValidateProgramPipelineEXT(UInt32 pipeline); + [Slot(743)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribDivisorEXT(UInt32 index, UInt32 divisor); + [Slot(760)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glWaitSemaphoreEXT(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] System.Int32* srcLayouts); + [Slot(765)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glWindowRectanglesEXT(System.Int32 mode, Int32 count, [CountAttribute(Computed = "count")] Int32* box); + [Slot(214)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glFramebufferTexture2DDownsampleIMG(System.Int32 target, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level, Int32 xscale, Int32 yscale); + [Slot(216)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glFramebufferTexture2DMultisampleIMG(System.Int32 target, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level, Int32 samples); + [Slot(220)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glFramebufferTextureLayerDownsampleIMG(System.Int32 target, System.Int32 attachment, UInt32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale); + [Slot(357)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern Int64 glGetTextureHandleIMG(UInt32 texture); + [Slot(359)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern Int64 glGetTextureSamplerHandleIMG(UInt32 texture, UInt32 sampler); + [Slot(545)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniformHandleui64IMG(UInt32 program, Int32 location, UInt64 value); + [Slot(547)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformHandleui64vIMG(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values); + [Slot(577)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glRenderbufferStorageMultisampleIMG(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(685)] + [Slot(707)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniformHandleui64IMG(Int32 location, UInt64 value); - [Slot(687)] + [Slot(709)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniformHandleui64vIMG(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value); [Slot(9)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glBeginPerfQueryINTEL(UInt32 queryHandle); - [Slot(96)] + [Slot(97)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glCreatePerfQueryINTEL(UInt32 queryId, [OutAttribute] UInt32* queryHandle); - [Slot(114)] + [Slot(115)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDeletePerfQueryINTEL(UInt32 queryHandle); - [Slot(181)] + [Slot(182)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEndPerfQueryINTEL(UInt32 queryHandle); - [Slot(259)] + [Slot(260)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetFirstPerfQueryIdINTEL([OutAttribute] UInt32* queryId); - [Slot(280)] + [Slot(281)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetNextPerfQueryIdINTEL(UInt32 queryId, [OutAttribute] UInt32* nextQueryId); - [Slot(307)] + [Slot(308)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetPerfCounterInfoINTEL(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute, CountAttribute(Parameter = "counterNameLength")] IntPtr counterName, UInt32 counterDescLength, [OutAttribute, CountAttribute(Parameter = "counterDescLength")] IntPtr counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue); - [Slot(314)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPerfQueryDataINTEL(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32* bytesWritten); [Slot(315)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPerfQueryIdByNameINTEL(IntPtr queryName, [OutAttribute] UInt32* queryId); + private static extern unsafe void glGetPerfQueryDataINTEL(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32* bytesWritten); [Slot(316)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetPerfQueryIdByNameINTEL(IntPtr queryName, [OutAttribute] UInt32* queryId); + [Slot(317)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetPerfQueryInfoINTEL(UInt32 queryId, UInt32 queryNameLength, [OutAttribute, CountAttribute(Parameter = "queryNameLength")] IntPtr queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask); [Slot(27)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glBlendBarrierKHR(); - [Slot(103)] + [Slot(104)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDebugMessageCallbackKHR(DebugProcKhr callback, IntPtr userParam); - [Slot(105)] + [Slot(106)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDebugMessageControlKHR(System.Int32 source, System.Int32 type, System.Int32 severity, Int32 count, UInt32* ids, bool enabled); - [Slot(107)] + [Slot(108)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDebugMessageInsertKHR(System.Int32 source, System.Int32 type, UInt32 id, System.Int32 severity, Int32 length, IntPtr buf); - [Slot(254)] + [Slot(255)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe Int32 glGetDebugMessageLogKHR(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] System.Int32* sources, [OutAttribute, CountAttribute(Parameter = "count")] System.Int32* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] System.Int32* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr messageLog); - [Slot(269)] + [Slot(270)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern System.Int32 glGetGraphicsResetStatusKHR(); - [Slot(283)] + [Slot(284)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetnUniformfvKHR(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params); - [Slot(286)] + [Slot(287)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetnUniformivKHR(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params); - [Slot(288)] + [Slot(289)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetnUniformuivKHR(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params); - [Slot(291)] + [Slot(292)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetObjectLabelKHR(System.Int32 identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr label); - [Slot(293)] + [Slot(294)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetObjectPtrLabelKHR(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr label); - [Slot(318)] + [Slot(319)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glGetPointervKHR(System.Int32 pname, [OutAttribute] IntPtr @params); - [Slot(442)] + [Slot(451)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMaxShaderCompilerThreadsKHR(UInt32 count); + [Slot(463)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glObjectLabelKHR(System.Int32 identifier, UInt32 name, Int32 length, IntPtr label); - [Slot(444)] + [Slot(465)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glObjectPtrLabelKHR(IntPtr ptr, Int32 length, IntPtr label); - [Slot(475)] + [Slot(496)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPopDebugGroupKHR(); - [Slot(538)] + [Slot(559)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPushDebugGroupKHR(System.Int32 source, UInt32 id, Int32 length, IntPtr message); - [Slot(547)] + [Slot(568)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glReadnPixelsKHR(Int32 x, Int32 y, Int32 width, Int32 height, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data); [Slot(7)] @@ -63024,490 +70763,493 @@ namespace OpenTK.Graphics.ES30 [Slot(46)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glBlitFramebufferNV(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, System.Int32 mask, System.Int32 filter); - [Slot(76)] + [Slot(77)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glConservativeRasterParameteriNV(System.Int32 pname, Int32 param); - [Slot(78)] + [Slot(79)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glCopyBufferSubDataNV(System.Int32 readTarget, System.Int32 writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size); - [Slot(81)] + [Slot(82)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glCopyPathNV(UInt32 resultPath, UInt32 srcPath); - [Slot(87)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glCoverageMaskNV(bool mask); [Slot(88)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glCoverageModulationNV(System.Int32 components); + private static extern void glCoverageMaskNV(bool mask); [Slot(89)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glCoverageModulationTableNV(Int32 n, Single* v); + private static extern void glCoverageModulationNV(System.Int32 components); [Slot(90)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glCoverageOperationNV(System.Int32 operation); + private static extern unsafe void glCoverageModulationTableNV(Int32 n, [CountAttribute(Parameter = "n")] Single* v); [Slot(91)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glCoverFillPathInstancedNV(Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, System.Int32 coverMode, System.Int32 transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues); + private static extern void glCoverageOperationNV(System.Int32 operation); [Slot(92)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glCoverFillPathNV(UInt32 path, System.Int32 coverMode); + private static extern unsafe void glCoverFillPathInstancedNV(Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, System.Int32 coverMode, System.Int32 transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues); [Slot(93)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glCoverStrokePathInstancedNV(Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, System.Int32 coverMode, System.Int32 transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues); + private static extern void glCoverFillPathNV(UInt32 path, System.Int32 coverMode); [Slot(94)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glCoverStrokePathInstancedNV(Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, System.Int32 coverMode, System.Int32 transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues); + [Slot(95)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glCoverStrokePathNV(UInt32 path, System.Int32 coverMode); - [Slot(109)] + [Slot(110)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteFencesNV(Int32 n, [CountAttribute(Parameter = "n")] UInt32* fences); - [Slot(112)] + [Slot(113)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDeletePathsNV(UInt32 path, Int32 range); - [Slot(131)] + [Slot(132)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDepthRangeArrayfvNV(UInt32 first, Int32 count, Single* v); - [Slot(134)] + [Slot(135)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDepthRangeIndexedfNV(UInt32 index, Single n, Single f); - [Slot(140)] + [Slot(141)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDisableiNV(System.Int32 target, UInt32 index); - [Slot(149)] + [Slot(150)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawArraysInstancedNV(System.Int32 mode, Int32 first, Int32 count, Int32 primcount); - [Slot(153)] + [Slot(154)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDrawBuffersNV(Int32 n, [CountAttribute(Parameter = "n")] System.Int32* bufs); - [Slot(164)] + [Slot(165)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawElementsInstancedNV(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount); - [Slot(170)] + [Slot(171)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawVkImageNV(UInt64 vkImage, UInt32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1); - [Slot(176)] + [Slot(177)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEnableiNV(System.Int32 target, UInt32 index); - [Slot(179)] + [Slot(180)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEndConditionalRenderNV(); - [Slot(201)] + [Slot(202)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFinishFenceNV(UInt32 fence); - [Slot(205)] + [Slot(206)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFragmentCoverageColorNV(UInt32 color); - [Slot(211)] + [Slot(212)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glFramebufferSampleLocationsfvNV(System.Int32 target, UInt32 start, Int32 count, Single* v); - [Slot(226)] + [Slot(227)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGenFencesNV(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* fences); - [Slot(228)] + [Slot(229)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int32 glGenPathsNV(Int32 range); - [Slot(252)] + [Slot(253)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetCoverageModulationTableNV(Int32 bufsize, [OutAttribute] Single* v); - [Slot(258)] + [Slot(259)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetFenceivNV(UInt32 fence, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(260)] + [Slot(261)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetFloati_vNV(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data); - [Slot(270)] + [Slot(271)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int64 glGetImageHandleNV(UInt32 texture, Int32 level, bool layered, Int32 layer, System.Int32 format); - [Slot(278)] + [Slot(279)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetInternalformatSampleivNV(System.Int32 target, System.Int32 internalformat, Int32 samples, System.Int32 pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params); - [Slot(294)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathColorGenfvNV(System.Int32 color, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value); [Slot(295)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathColorGenivNV(System.Int32 color, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value); + private static extern unsafe void glGetPathColorGenfvNV(System.Int32 color, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value); [Slot(296)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathCommandsNV(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands); + private static extern unsafe void glGetPathColorGenivNV(System.Int32 color, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value); [Slot(297)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathCoordsNV(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords); + private static extern unsafe void glGetPathCommandsNV(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands); [Slot(298)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathDashArrayNV(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray); + private static extern unsafe void glGetPathCoordsNV(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords); [Slot(299)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Single glGetPathLengthNV(UInt32 path, Int32 startSegment, Int32 numSegments); + private static extern unsafe void glGetPathDashArrayNV(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray); [Slot(300)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathMetricRangeNV(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics); + private static extern Single glGetPathLengthNV(UInt32 path, Int32 startSegment, Int32 numSegments); [Slot(301)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathMetricsNV(UInt32 metricQueryMask, Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics); + private static extern unsafe void glGetPathMetricRangeNV(System.Int32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics); [Slot(302)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathParameterfvNV(UInt32 path, System.Int32 pname, [OutAttribute, CountAttribute(Count = 4)] Single* value); + private static extern unsafe void glGetPathMetricsNV(System.Int32 metricQueryMask, Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics); [Slot(303)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathParameterivNV(UInt32 path, System.Int32 pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value); + private static extern unsafe void glGetPathParameterfvNV(UInt32 path, System.Int32 pname, [OutAttribute, CountAttribute(Count = 4)] Single* value); [Slot(304)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathSpacingNV(System.Int32 pathListMode, Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, System.Int32 transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing); + private static extern unsafe void glGetPathParameterivNV(UInt32 path, System.Int32 pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value); [Slot(305)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathTexGenfvNV(System.Int32 texCoordSet, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value); + private static extern unsafe void glGetPathSpacingNV(System.Int32 pathListMode, Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, System.Int32 transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing); [Slot(306)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetPathTexGenfvNV(System.Int32 texCoordSet, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value); + [Slot(307)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetPathTexGenivNV(System.Int32 texCoordSet, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value); - [Slot(325)] + [Slot(326)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetProgramResourcefvNV(UInt32 program, System.Int32 programInterface, UInt32 index, Int32 propCount, System.Int32* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params); - [Slot(357)] + [Slot(358)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int64 glGetTextureHandleNV(UInt32 texture); - [Slot(359)] + [Slot(360)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int64 glGetTextureSamplerHandleNV(UInt32 texture, UInt32 sampler); - [Slot(364)] + [Slot(365)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetUniformi64vNV(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params); - [Slot(376)] + [Slot(377)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern IntPtr glGetVkProcAddrNV([CountAttribute(Computed = "name")] IntPtr name); - [Slot(385)] + [Slot(386)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glInterpolatePathsNV(UInt32 resultPath, UInt32 pathA, UInt32 pathB, Single weight); - [Slot(391)] + [Slot(392)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsEnablediNV(System.Int32 target, UInt32 index); - [Slot(393)] + [Slot(394)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsFenceNV(UInt32 fence); - [Slot(395)] + [Slot(396)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsImageHandleResidentNV(UInt64 handle); - [Slot(397)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsPathNV(UInt32 path); [Slot(398)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsPointInFillPathNV(UInt32 path, UInt32 mask, Single x, Single y); + private static extern byte glIsPathNV(UInt32 path); [Slot(399)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glIsPointInFillPathNV(UInt32 path, UInt32 mask, Single x, Single y); + [Slot(400)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsPointInStrokePathNV(UInt32 path, Single x, Single y); - [Slot(411)] + [Slot(412)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsTextureHandleResidentNV(UInt64 handle); - [Slot(418)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMakeImageHandleNonResidentNV(UInt64 handle); [Slot(419)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMakeImageHandleResidentNV(UInt64 handle, System.Int32 access); + private static extern void glMakeImageHandleNonResidentNV(UInt64 handle); [Slot(420)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMakeTextureHandleNonResidentNV(UInt64 handle); + private static extern void glMakeImageHandleResidentNV(UInt64 handle, System.Int32 access); [Slot(421)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMakeTextureHandleNonResidentNV(UInt64 handle); + [Slot(422)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMakeTextureHandleResidentNV(UInt64 handle); - [Slot(425)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMatrixLoad3x2fNV(System.Int32 matrixMode, Single* m); - [Slot(426)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMatrixLoad3x3fNV(System.Int32 matrixMode, Single* m); [Slot(427)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMatrixLoadTranspose3x3fNV(System.Int32 matrixMode, Single* m); + private static extern unsafe void glMatrixLoad3x2fNV(System.Int32 matrixMode, Single* m); [Slot(428)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMatrixLoad3x3fNV(System.Int32 matrixMode, Single* m); + [Slot(432)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMatrixLoadTranspose3x3fNV(System.Int32 matrixMode, Single* m); + [Slot(435)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMatrixMult3x2fNV(System.Int32 matrixMode, Single* m); - [Slot(429)] + [Slot(436)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMatrixMult3x3fNV(System.Int32 matrixMode, Single* m); - [Slot(430)] + [Slot(439)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMatrixMultTranspose3x3fNV(System.Int32 matrixMode, Single* m); - [Slot(440)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glNamedFramebufferSampleLocationsfvNV(UInt32 framebuffer, UInt32 start, Int32 count, Single* v); - [Slot(447)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPathColorGenNV(System.Int32 color, System.Int32 genMode, System.Int32 colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single* coeffs); - [Slot(448)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPathCommandsNV(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, System.Int32 coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords); - [Slot(449)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathCoordsNV(UInt32 path, Int32 numCoords, System.Int32 coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords); - [Slot(450)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathCoverDepthFuncNV(System.Int32 func); - [Slot(451)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPathDashArrayNV(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray); - [Slot(452)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathFogGenNV(System.Int32 genMode); - [Slot(453)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern System.Int32 glPathGlyphIndexArrayNV(UInt32 firstPathName, System.Int32 fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale); - [Slot(454)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern System.Int32 glPathGlyphIndexRangeNV(System.Int32 fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount); - [Slot(455)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathGlyphRangeNV(UInt32 firstPathName, System.Int32 fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, System.Int32 handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale); - [Slot(456)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathGlyphsNV(UInt32 firstPathName, System.Int32 fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, Int32 numGlyphs, System.Int32 type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, System.Int32 handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale); - [Slot(457)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern System.Int32 glPathMemoryGlyphIndexArrayNV(UInt32 firstPathName, System.Int32 fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale); - [Slot(458)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathParameterfNV(UInt32 path, System.Int32 pname, Single value); - [Slot(459)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPathParameterfvNV(UInt32 path, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* value); - [Slot(460)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathParameteriNV(UInt32 path, System.Int32 pname, Int32 value); [Slot(461)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPathParameterivNV(UInt32 path, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* value); - [Slot(462)] + private static extern unsafe void glNamedFramebufferSampleLocationsfvNV(UInt32 framebuffer, UInt32 start, Int32 count, Single* v); + [Slot(468)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathStencilDepthOffsetNV(Single factor, Single units); - [Slot(463)] + private static extern unsafe void glPathColorGenNV(System.Int32 color, System.Int32 genMode, System.Int32 colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single* coeffs); + [Slot(469)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathStencilFuncNV(System.Int32 func, Int32 @ref, UInt32 mask); - [Slot(464)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathStringNV(UInt32 path, System.Int32 format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString); - [Slot(465)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPathSubCommandsNV(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, System.Int32 coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords); - [Slot(466)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathSubCoordsNV(UInt32 path, Int32 coordStart, Int32 numCoords, System.Int32 coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords); - [Slot(467)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPathTexGenNV(System.Int32 texCoordSet, System.Int32 genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single* coeffs); + private static extern unsafe void glPathCommandsNV(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, System.Int32 coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords); [Slot(470)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe byte glPointAlongPathNV(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY); + private static extern void glPathCoordsNV(UInt32 path, Int32 numCoords, System.Int32 coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords); [Slot(471)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPolygonModeNV(System.Int32 face, System.Int32 mode); + private static extern void glPathCoverDepthFuncNV(System.Int32 func); + [Slot(472)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glPathDashArrayNV(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray); + [Slot(473)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPathFogGenNV(System.Int32 genMode); + [Slot(474)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern System.Int32 glPathGlyphIndexArrayNV(UInt32 firstPathName, System.Int32 fontTarget, IntPtr fontName, System.Int32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale); + [Slot(475)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern System.Int32 glPathGlyphIndexRangeNV(System.Int32 fontTarget, IntPtr fontName, System.Int32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount); + [Slot(476)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPathGlyphRangeNV(UInt32 firstPathName, System.Int32 fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, System.Int32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, System.Int32 handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale); + [Slot(477)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPathGlyphsNV(UInt32 firstPathName, System.Int32 fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, System.Int32 fontStyle, Int32 numGlyphs, System.Int32 type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, System.Int32 handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale); + [Slot(478)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern System.Int32 glPathMemoryGlyphIndexArrayNV(UInt32 firstPathName, System.Int32 fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale); + [Slot(479)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPathParameterfNV(UInt32 path, System.Int32 pname, Single value); + [Slot(480)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glPathParameterfvNV(UInt32 path, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* value); + [Slot(481)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPathParameteriNV(UInt32 path, System.Int32 pname, Int32 value); + [Slot(482)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glPathParameterivNV(UInt32 path, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* value); [Slot(483)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramPathFragmentInputGenNV(UInt32 program, Int32 location, System.Int32 genMode, Int32 components, Single* coeffs); + private static extern void glPathStencilDepthOffsetNV(Single factor, Single units); + [Slot(484)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPathStencilFuncNV(System.Int32 func, Int32 @ref, UInt32 mask); + [Slot(485)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPathStringNV(UInt32 path, System.Int32 format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString); [Slot(486)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform1i64NV(UInt32 program, Int32 location, Int64 x); + private static extern unsafe void glPathSubCommandsNV(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, System.Int32 coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords); [Slot(487)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform1i64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value); - [Slot(490)] + private static extern void glPathSubCoordsNV(UInt32 path, Int32 coordStart, Int32 numCoords, System.Int32 coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords); + [Slot(488)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform1ui64NV(UInt32 program, Int32 location, UInt64 x); + private static extern unsafe void glPathTexGenNV(System.Int32 texCoordSet, System.Int32 genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single* coeffs); [Slot(491)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform1ui64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value); - [Slot(496)] + private static extern unsafe byte glPointAlongPathNV(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY); + [Slot(492)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform2i64NV(UInt32 program, Int32 location, Int64 x, Int64 y); - [Slot(497)] + private static extern void glPolygonModeNV(System.Int32 face, System.Int32 mode); + [Slot(504)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform2i64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value); - [Slot(500)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform2ui64NV(UInt32 program, Int32 location, UInt64 x, UInt64 y); - [Slot(501)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform2ui64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value); - [Slot(506)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform3i64NV(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z); + private static extern unsafe void glProgramPathFragmentInputGenNV(UInt32 program, Int32 location, System.Int32 genMode, Int32 components, Single* coeffs); [Slot(507)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform3i64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value); - [Slot(510)] + private static extern void glProgramUniform1i64NV(UInt32 program, Int32 location, Int64 x); + [Slot(508)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform3ui64NV(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z); + private static extern unsafe void glProgramUniform1i64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value); [Slot(511)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform3ui64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value); - [Slot(516)] + private static extern void glProgramUniform1ui64NV(UInt32 program, Int32 location, UInt64 x); + [Slot(512)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform4i64NV(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w); + private static extern unsafe void glProgramUniform1ui64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value); [Slot(517)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform4i64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value); - [Slot(520)] + private static extern void glProgramUniform2i64NV(UInt32 program, Int32 location, Int64 x, Int64 y); + [Slot(518)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform4ui64NV(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w); + private static extern unsafe void glProgramUniform2i64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value); [Slot(521)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform4ui64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value); - [Slot(525)] + private static extern void glProgramUniform2ui64NV(UInt32 program, Int32 location, UInt64 x, UInt64 y); + [Slot(522)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniformHandleui64NV(UInt32 program, Int32 location, UInt64 value); + private static extern unsafe void glProgramUniform2ui64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value); [Slot(527)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform3i64NV(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z); + [Slot(528)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform3i64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value); + [Slot(531)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform3ui64NV(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z); + [Slot(532)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform3ui64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value); + [Slot(537)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform4i64NV(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w); + [Slot(538)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform4i64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value); + [Slot(541)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform4ui64NV(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w); + [Slot(542)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform4ui64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value); + [Slot(546)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniformHandleui64NV(UInt32 program, Int32 location, UInt64 value); + [Slot(548)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformHandleui64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values); - [Slot(544)] + [Slot(565)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glReadBufferNV(System.Int32 mode); - [Slot(557)] + [Slot(578)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glRenderbufferStorageMultisampleNV(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(558)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glResolveDepthValuesNV(); - [Slot(571)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glScissorArrayvNV(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v); - [Slot(573)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glScissorIndexedNV(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height); - [Slot(575)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glScissorIndexedvNV(UInt32 index, [CountAttribute(Count = 4)] Int32* v); [Slot(579)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSetFenceNV(UInt32 fence, System.Int32 condition); - [Slot(583)] + private static extern void glResolveDepthValuesNV(); + [Slot(592)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSignalVkFenceNV(UInt64 vkFence); - [Slot(584)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSignalVkSemaphoreNV(UInt64 vkSemaphore); - [Slot(586)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glStencilFillPathInstancedNV(Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, System.Int32 fillMode, UInt32 mask, System.Int32 transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues); - [Slot(587)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilFillPathNV(UInt32 path, System.Int32 fillMode, UInt32 mask); + private static extern unsafe void glScissorArrayvNV(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v); [Slot(594)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glStencilStrokePathInstancedNV(Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, System.Int32 transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues); - [Slot(595)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilStrokePathNV(UInt32 path, Int32 reference, UInt32 mask); + private static extern void glScissorIndexedNV(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height); [Slot(596)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glStencilThenCoverFillPathInstancedNV(Int32 numPaths, System.Int32 pathNameType, IntPtr paths, UInt32 pathBase, System.Int32 fillMode, UInt32 mask, System.Int32 coverMode, System.Int32 transformType, Single* transformValues); - [Slot(597)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilThenCoverFillPathNV(UInt32 path, System.Int32 fillMode, UInt32 mask, System.Int32 coverMode); - [Slot(598)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glStencilThenCoverStrokePathInstancedNV(Int32 numPaths, System.Int32 pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, System.Int32 coverMode, System.Int32 transformType, Single* transformValues); - [Slot(599)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilThenCoverStrokePathNV(UInt32 path, Int32 reference, UInt32 mask, System.Int32 coverMode); + private static extern unsafe void glScissorIndexedvNV(UInt32 index, [CountAttribute(Count = 4)] Int32* v); [Slot(600)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glSetFenceNV(UInt32 fence, System.Int32 condition); + [Slot(604)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glSignalVkFenceNV(UInt64 vkFence); + [Slot(605)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glSignalVkSemaphoreNV(UInt64 vkSemaphore); + [Slot(607)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glStencilFillPathInstancedNV(Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, System.Int32 fillMode, UInt32 mask, System.Int32 transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues); + [Slot(608)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glStencilFillPathNV(UInt32 path, System.Int32 fillMode, UInt32 mask); + [Slot(615)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glStencilStrokePathInstancedNV(Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, System.Int32 transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues); + [Slot(616)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glStencilStrokePathNV(UInt32 path, Int32 reference, UInt32 mask); + [Slot(617)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glStencilThenCoverFillPathInstancedNV(Int32 numPaths, System.Int32 pathNameType, IntPtr paths, UInt32 pathBase, System.Int32 fillMode, UInt32 mask, System.Int32 coverMode, System.Int32 transformType, Single* transformValues); + [Slot(618)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glStencilThenCoverFillPathNV(UInt32 path, System.Int32 fillMode, UInt32 mask, System.Int32 coverMode); + [Slot(619)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glStencilThenCoverStrokePathInstancedNV(Int32 numPaths, System.Int32 pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, System.Int32 coverMode, System.Int32 transformType, Single* transformValues); + [Slot(620)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glStencilThenCoverStrokePathNV(UInt32 path, Int32 reference, UInt32 mask, System.Int32 coverMode); + [Slot(621)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glSubpixelPrecisionBiasNV(UInt32 xbits, UInt32 ybits); - [Slot(601)] + [Slot(622)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glTestFenceNV(UInt32 fence); - [Slot(643)] + [Slot(665)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTransformPathNV(UInt32 resultPath, UInt32 srcPath, System.Int32 transformType, [CountAttribute(Computed = "transformType")] Single* transformValues); - [Slot(647)] + [Slot(669)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform1i64NV(Int32 location, Int64 x); - [Slot(648)] + [Slot(670)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform1i64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value); - [Slot(651)] + [Slot(673)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform1ui64NV(Int32 location, UInt64 x); - [Slot(652)] + [Slot(674)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform1ui64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value); - [Slot(657)] + [Slot(679)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform2i64NV(Int32 location, Int64 x, Int64 y); - [Slot(658)] + [Slot(680)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform2i64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value); - [Slot(661)] + [Slot(683)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform2ui64NV(Int32 location, UInt64 x, UInt64 y); - [Slot(662)] + [Slot(684)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform2ui64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value); - [Slot(667)] + [Slot(689)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform3i64NV(Int32 location, Int64 x, Int64 y, Int64 z); - [Slot(668)] + [Slot(690)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform3i64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value); - [Slot(671)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform3ui64NV(Int32 location, UInt64 x, UInt64 y, UInt64 z); - [Slot(672)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform3ui64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value); - [Slot(677)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform4i64NV(Int32 location, Int64 x, Int64 y, Int64 z, Int64 w); - [Slot(678)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform4i64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value); - [Slot(681)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform4ui64NV(Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w); - [Slot(682)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform4ui64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value); - [Slot(686)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniformHandleui64NV(Int32 location, UInt64 value); - [Slot(688)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformHandleui64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value); - [Slot(691)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix2x3fvNV(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); [Slot(693)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix2x4fvNV(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); - [Slot(696)] + private static extern void glUniform3ui64NV(Int32 location, UInt64 x, UInt64 y, UInt64 z); + [Slot(694)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix3x2fvNV(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); - [Slot(698)] + private static extern unsafe void glUniform3ui64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value); + [Slot(699)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix3x4fvNV(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); - [Slot(701)] + private static extern void glUniform4i64NV(Int32 location, Int64 x, Int64 y, Int64 z, Int64 w); + [Slot(700)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix4x2fvNV(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); + private static extern unsafe void glUniform4i64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value); [Slot(703)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glUniform4ui64NV(Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w); + [Slot(704)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniform4ui64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value); + [Slot(708)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glUniformHandleui64NV(Int32 location, UInt64 value); + [Slot(710)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniformHandleui64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value); + [Slot(713)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniformMatrix2x3fvNV(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); + [Slot(715)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniformMatrix2x4fvNV(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); + [Slot(718)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniformMatrix3x2fvNV(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); + [Slot(720)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniformMatrix3x4fvNV(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); + [Slot(723)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniformMatrix4x2fvNV(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); + [Slot(725)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniformMatrix4x3fvNV(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); - [Slot(722)] + [Slot(744)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribDivisorNV(UInt32 index, UInt32 divisor); - [Slot(730)] + [Slot(752)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glViewportArrayvNV(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v); - [Slot(732)] + [Slot(754)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glViewportIndexedfNV(UInt32 index, Single x, Single y, Single w, Single h); - [Slot(734)] + [Slot(756)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glViewportIndexedfvNV(UInt32 index, [CountAttribute(Count = 4)] Single* v); - [Slot(736)] + [Slot(758)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glViewportPositionWScaleNV(UInt32 index, Single xcoeff, Single ycoeff); + [Slot(759)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glViewportSwizzleNV(UInt32 index, System.Int32 swizzlex, System.Int32 swizzley, System.Int32 swizzlez, System.Int32 swizzlew); - [Slot(740)] + [Slot(763)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glWaitVkSemaphoreNV(UInt64 vkSemaphore); - [Slot(741)] + [Slot(764)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glWeightPathsNV(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights); [Slot(26)] @@ -63525,224 +71267,227 @@ namespace OpenTK.Graphics.ES30 [Slot(42)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glBlendFuncSeparateiOES(UInt32 buf, System.Int32 srcRGB, System.Int32 dstRGB, System.Int32 srcAlpha, System.Int32 dstAlpha); - [Slot(68)] + [Slot(69)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glColorMaskiOES(UInt32 index, bool r, bool g, bool b, bool a); - [Slot(72)] + [Slot(73)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glCompressedTexImage3DOES(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data); - [Slot(75)] + [Slot(76)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glCompressedTexSubImage3DOES(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, System.Int32 format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data); - [Slot(80)] + [Slot(81)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glCopyImageSubDataOES(UInt32 srcName, System.Int32 srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, System.Int32 dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth); - [Slot(85)] + [Slot(86)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glCopyTexSubImage3DOES(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height); - [Slot(128)] + [Slot(129)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteVertexArraysOES(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays); - [Slot(132)] + [Slot(133)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDepthRangeArrayfvOES(UInt32 first, Int32 count, Single* v); - [Slot(135)] + [Slot(136)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDepthRangeIndexedfOES(UInt32 index, Single n, Single f); - [Slot(141)] + [Slot(142)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDisableiOES(System.Int32 target, UInt32 index); - [Slot(156)] + [Slot(157)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawElementsBaseVertexOES(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex); - [Slot(162)] + [Slot(163)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawElementsInstancedBaseVertexOES(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex); - [Slot(167)] + [Slot(168)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawRangeElementsBaseVertexOES(System.Int32 mode, UInt32 start, UInt32 end, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex); - [Slot(171)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glEGLImageTargetRenderbufferStorageOES(System.Int32 target, IntPtr image); [Slot(172)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glEGLImageTargetRenderbufferStorageOES(System.Int32 target, IntPtr image); + [Slot(173)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEGLImageTargetTexture2DOES(System.Int32 target, IntPtr image); - [Slot(177)] + [Slot(178)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEnableiOES(System.Int32 target, UInt32 index); - [Slot(216)] + [Slot(217)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferTexture3DOES(System.Int32 target, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level, Int32 zoffset); - [Slot(222)] + [Slot(223)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferTextureOES(System.Int32 target, System.Int32 attachment, UInt32 texture, Int32 level); - [Slot(239)] + [Slot(240)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGenVertexArraysOES(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays); - [Slot(251)] + [Slot(252)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glGetBufferPointervOES(System.Int32 target, System.Int32 pname, [OutAttribute] IntPtr @params); - [Slot(261)] + [Slot(262)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetFloati_vOES(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data); - [Slot(320)] + [Slot(321)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetProgramBinaryOES(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] System.Int32* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary); - [Slot(337)] + [Slot(338)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetSamplerParameterIivOES(UInt32 sampler, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(339)] + [Slot(340)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetSamplerParameterIuivOES(UInt32 sampler, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params); - [Slot(352)] + [Slot(353)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetTexParameterIivOES(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(354)] + [Slot(355)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetTexParameterIuivOES(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params); - [Slot(392)] + [Slot(393)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsEnablediOES(System.Int32 target, UInt32 index); - [Slot(414)] + [Slot(415)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsVertexArrayOES(UInt32 array); - [Slot(422)] + [Slot(423)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern IntPtr glMapBufferOES(System.Int32 target, System.Int32 access); - [Slot(432)] + [Slot(453)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMinSampleShadingOES(Single value); - [Slot(446)] + [Slot(467)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPatchParameteriOES(System.Int32 pname, Int32 value); - [Slot(478)] + [Slot(499)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPrimitiveBoundingBoxOES(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW); - [Slot(480)] + [Slot(501)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramBinaryOES(UInt32 program, System.Int32 binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length); - [Slot(566)] + [Slot(587)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glSamplerParameterIivOES(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* param); - [Slot(568)] + [Slot(589)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glSamplerParameterIuivOES(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] UInt32* param); - [Slot(572)] + [Slot(593)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glScissorArrayvOES(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v); - [Slot(574)] + [Slot(595)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glScissorIndexedOES(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height); - [Slot(576)] + [Slot(597)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glScissorIndexedvOES(UInt32 index, [CountAttribute(Count = 4)] Int32* v); - [Slot(603)] + [Slot(624)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexBufferOES(System.Int32 target, System.Int32 internalformat, UInt32 buffer); - [Slot(605)] + [Slot(626)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexBufferRangeOES(System.Int32 target, System.Int32 internalformat, UInt32 buffer, IntPtr offset, IntPtr size); - [Slot(608)] + [Slot(629)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexImage3DOES(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels); - [Slot(614)] + [Slot(635)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTexParameterIivOES(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); - [Slot(616)] + [Slot(637)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTexParameterIuivOES(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] UInt32* @params); - [Slot(623)] + [Slot(644)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexStorage3DMultisampleOES(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations); - [Slot(631)] + [Slot(652)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexSubImage3DOES(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels); - [Slot(641)] + [Slot(663)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureViewOES(UInt32 texture, System.Int32 target, UInt32 origtexture, System.Int32 internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers); - [Slot(705)] + [Slot(727)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glUnmapBufferOES(System.Int32 target); - [Slot(731)] + [Slot(753)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glViewportArrayvOES(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v); - [Slot(733)] + [Slot(755)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glViewportIndexedfOES(UInt32 index, Single x, Single y, Single w, Single h); - [Slot(735)] + [Slot(757)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glViewportIndexedfvOES(UInt32 index, [CountAttribute(Count = 4)] Single* v); - [Slot(220)] + [Slot(221)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferTextureMultisampleMultiviewOVR(System.Int32 target, System.Int32 attachment, UInt32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews); - [Slot(221)] + [Slot(222)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferTextureMultiviewOVR(System.Int32 target, System.Int32 attachment, UInt32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews); [Slot(4)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glAlphaFuncQCOM(System.Int32 func, Single @ref); - [Slot(138)] + [Slot(139)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDisableDriverControlQCOM(UInt32 driverControl); - [Slot(174)] + [Slot(175)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEnableDriverControlQCOM(UInt32 driverControl); - [Slot(184)] + [Slot(185)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glEndTilingQCOM(UInt32 preserveMask); - [Slot(186)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glExtGetBufferPointervQCOM(System.Int32 target, [OutAttribute] IntPtr @params); + private static extern void glEndTilingQCOM(System.Int32 preserveMask); [Slot(187)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glExtGetBuffersQCOM([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers); + private static extern void glExtGetBufferPointervQCOM(System.Int32 target, [OutAttribute] IntPtr @params); [Slot(188)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glExtGetFramebuffersQCOM([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers); + private static extern unsafe void glExtGetBuffersQCOM([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers); [Slot(189)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glExtGetProgramBinarySourceQCOM(UInt32 program, System.Int32 shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] IntPtr source, [OutAttribute] Int32* length); + private static extern unsafe void glExtGetFramebuffersQCOM([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers); [Slot(190)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glExtGetProgramsQCOM([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms); + private static extern unsafe void glExtGetProgramBinarySourceQCOM(UInt32 program, System.Int32 shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] IntPtr source, [OutAttribute] Int32* length); [Slot(191)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glExtGetRenderbuffersQCOM([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers); + private static extern unsafe void glExtGetProgramsQCOM([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms); [Slot(192)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glExtGetShadersQCOM([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders); + private static extern unsafe void glExtGetRenderbuffersQCOM([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers); [Slot(193)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glExtGetTexLevelParameterivQCOM(UInt32 texture, System.Int32 face, Int32 level, System.Int32 pname, [OutAttribute] Int32* @params); + private static extern unsafe void glExtGetShadersQCOM([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders); [Slot(194)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glExtGetTexSubImageQCOM(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, System.Int32 format, System.Int32 type, [OutAttribute] IntPtr texels); + private static extern unsafe void glExtGetTexLevelParameterivQCOM(UInt32 texture, System.Int32 face, Int32 level, System.Int32 pname, [OutAttribute] Int32* @params); [Slot(195)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glExtGetTexturesQCOM([OutAttribute] UInt32* textures, Int32 maxTextures, [OutAttribute] Int32* numTextures); + private static extern void glExtGetTexSubImageQCOM(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, System.Int32 format, System.Int32 type, [OutAttribute] IntPtr texels); [Slot(196)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glExtIsProgramBinaryQCOM(UInt32 program); + private static extern unsafe void glExtGetTexturesQCOM([OutAttribute] UInt32* textures, Int32 maxTextures, [OutAttribute] Int32* numTextures); [Slot(197)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glExtTexObjectStateOverrideiQCOM(System.Int32 target, System.Int32 pname, Int32 param); - [Slot(206)] + private static extern byte glExtIsProgramBinaryQCOM(UInt32 program); + [Slot(198)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFramebufferFetchBarrierQCOM(); + private static extern void glExtTexObjectStateOverrideiQCOM(System.Int32 target, System.Int32 pname, Int32 param); [Slot(207)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glFramebufferFoveationConfigQCOM(UInt32 framebuffer, UInt32 numLayers, UInt32 focalPointsPerLayer, UInt32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] UInt32* providedFeatures); + private static extern void glFramebufferFetchBarrierQCOM(); [Slot(208)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFramebufferFoveationParametersQCOM(UInt32 framebuffer, UInt32 layer, UInt32 focalPoint, Single focalX, Single focalY, Single gainX, Single gainY, Single foveaArea); - [Slot(255)] + private static extern unsafe void glFramebufferFoveationConfigQCOM(UInt32 framebuffer, UInt32 numLayers, UInt32 focalPointsPerLayer, UInt32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] UInt32* providedFeatures); + [Slot(209)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetDriverControlsQCOM([OutAttribute] Int32* num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32* driverControls); + private static extern void glFramebufferFoveationParametersQCOM(UInt32 framebuffer, UInt32 layer, UInt32 focalPoint, Single focalX, Single focalY, Single gainX, Single gainY, Single foveaArea); [Slot(256)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetDriverControlStringQCOM(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr driverControlString); - [Slot(585)] + private static extern unsafe void glGetDriverControlsQCOM([OutAttribute] Int32* num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32* driverControls); + [Slot(257)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStartTilingQCOM(UInt32 x, UInt32 y, UInt32 width, UInt32 height, UInt32 preserveMask); + private static extern unsafe void glGetDriverControlStringQCOM(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr driverControlString); + [Slot(606)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glStartTilingQCOM(UInt32 x, UInt32 y, UInt32 width, UInt32 height, System.Int32 preserveMask); + [Slot(653)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureFoveationParametersQCOM(UInt32 texture, UInt32 layer, UInt32 focalPoint, Single focalX, Single focalY, Single gainX, Single gainY, Single foveaArea); } } diff --git a/src/OpenTK/Graphics/ES30/ES30Enums.cs b/src/OpenTK/Graphics/ES30/ES30Enums.cs index 60714563..481364cf 100644 --- a/src/OpenTK/Graphics/ES30/ES30Enums.cs +++ b/src/OpenTK/Graphics/ES30/ES30Enums.cs @@ -385,7 +385,7 @@ namespace OpenTK.Graphics.ES30 } /// - /// Used in GL.Amd.GetPerfMonitorCounterData, GL.Amd.GetPerfMonitorCounterInfo and 334 other functions + /// Used in GL.Amd.GetPerfMonitorCounterData, GL.Amd.GetPerfMonitorCounterInfo and 353 other functions /// public enum All : int { @@ -466,6 +466,10 @@ namespace OpenTK.Graphics.ES30 /// SyncFlushCommandsBitApple = ((int)0x00000001), /// + /// Original was GL_TEXTURE_STORAGE_SPARSE_BIT_AMD = 0x00000001 + /// + TextureStorageSparseBitAmd = ((int)0x00000001), + /// /// Original was GL_VERTEX_ATTRIB_ARRAY_BARRIER_BIT = 0x00000001 /// VertexAttribArrayBarrierBit = ((int)0x00000001), @@ -534,6 +538,10 @@ namespace OpenTK.Graphics.ES30 /// ColorBufferBit2Qcom = ((int)0x00000004), /// + /// Original was GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT = 0x00000004 + /// + ContextFlagRobustAccessBit = ((int)0x00000004), + /// /// Original was GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT_ARB = 0x00000004 /// ContextFlagRobustAccessBitArb = ((int)0x00000004), @@ -570,6 +578,10 @@ namespace OpenTK.Graphics.ES30 /// ColorBufferBit3Qcom = ((int)0x00000008), /// + /// Original was GL_CONTEXT_FLAG_NO_ERROR_BIT = 0x00000008 + /// + ContextFlagNoErrorBit = ((int)0x00000008), + /// /// Original was GL_CONTEXT_FLAG_NO_ERROR_BIT_KHR = 0x00000008 /// ContextFlagNoErrorBitKhr = ((int)0x00000008), @@ -1230,6 +1242,10 @@ namespace OpenTK.Graphics.ES30 /// FrontLeft = ((int)0x0400), /// + /// Original was GL_SPARSE_STORAGE_BIT_ARB = 0x0400 + /// + SparseStorageBitArb = ((int)0x0400), + /// /// Original was GL_FONT_UNDERLINE_POSITION_BIT_NV = 0x04000000 /// FontUnderlinePositionBitNv = ((int)0x04000000), @@ -1414,6 +1430,14 @@ namespace OpenTK.Graphics.ES30 /// Exp = ((int)0x0800), /// + /// Original was GL_LGPU_SEPARATE_STORAGE_BIT_NVX = 0x0800 + /// + LgpuSeparateStorageBitNvx = ((int)0x0800), + /// + /// Original was GL_PER_GPU_STORAGE_BIT_NV = 0x0800 + /// + PerGpuStorageBitNv = ((int)0x0800), + /// /// Original was GL_FONT_UNDERLINE_THICKNESS_BIT_NV = 0x08000000 /// FontUnderlineThicknessBitNv = ((int)0x08000000), @@ -3414,34 +3438,18 @@ namespace OpenTK.Graphics.ES30 /// ConstantColor = ((int)0x8001), /// - /// Original was GL_CONSTANT_COLOR_EXT = 0x8001 - /// - ConstantColorExt = ((int)0x8001), - /// /// Original was GL_ONE_MINUS_CONSTANT_COLOR = 0x8002 /// OneMinusConstantColor = ((int)0x8002), /// - /// Original was GL_ONE_MINUS_CONSTANT_COLOR_EXT = 0x8002 - /// - OneMinusConstantColorExt = ((int)0x8002), - /// /// Original was GL_CONSTANT_ALPHA = 0x8003 /// ConstantAlpha = ((int)0x8003), /// - /// Original was GL_CONSTANT_ALPHA_EXT = 0x8003 - /// - ConstantAlphaExt = ((int)0x8003), - /// /// Original was GL_ONE_MINUS_CONSTANT_ALPHA = 0x8004 /// OneMinusConstantAlpha = ((int)0x8004), /// - /// Original was GL_ONE_MINUS_CONSTANT_ALPHA_EXT = 0x8004 - /// - OneMinusConstantAlphaExt = ((int)0x8004), - /// /// Original was GL_BLEND_COLOR = 0x8005 /// BlendColor = ((int)0x8005), @@ -3574,22 +3582,42 @@ namespace OpenTK.Graphics.ES30 /// ReduceExt = ((int)0x8016), /// + /// Original was GL_CONVOLUTION_FORMAT = 0x8017 + /// + ConvolutionFormat = ((int)0x8017), + /// /// Original was GL_CONVOLUTION_FORMAT_EXT = 0x8017 /// ConvolutionFormatExt = ((int)0x8017), /// + /// Original was GL_CONVOLUTION_WIDTH = 0x8018 + /// + ConvolutionWidth = ((int)0x8018), + /// /// Original was GL_CONVOLUTION_WIDTH_EXT = 0x8018 /// ConvolutionWidthExt = ((int)0x8018), /// + /// Original was GL_CONVOLUTION_HEIGHT = 0x8019 + /// + ConvolutionHeight = ((int)0x8019), + /// /// Original was GL_CONVOLUTION_HEIGHT_EXT = 0x8019 /// ConvolutionHeightExt = ((int)0x8019), /// + /// Original was GL_MAX_CONVOLUTION_WIDTH = 0x801A + /// + MaxConvolutionWidth = ((int)0x801A), + /// /// Original was GL_MAX_CONVOLUTION_WIDTH_EXT = 0x801A /// MaxConvolutionWidthExt = ((int)0x801A), /// + /// Original was GL_MAX_CONVOLUTION_HEIGHT = 0x801B + /// + MaxConvolutionHeight = ((int)0x801B), + /// /// Original was GL_MAX_CONVOLUTION_HEIGHT_EXT = 0x801B /// MaxConvolutionHeightExt = ((int)0x801B), @@ -3674,34 +3702,66 @@ namespace OpenTK.Graphics.ES30 /// ProxyHistogramExt = ((int)0x8025), /// + /// Original was GL_HISTOGRAM_WIDTH = 0x8026 + /// + HistogramWidth = ((int)0x8026), + /// /// Original was GL_HISTOGRAM_WIDTH_EXT = 0x8026 /// HistogramWidthExt = ((int)0x8026), /// + /// Original was GL_HISTOGRAM_FORMAT = 0x8027 + /// + HistogramFormat = ((int)0x8027), + /// /// Original was GL_HISTOGRAM_FORMAT_EXT = 0x8027 /// HistogramFormatExt = ((int)0x8027), /// + /// Original was GL_HISTOGRAM_RED_SIZE = 0x8028 + /// + HistogramRedSize = ((int)0x8028), + /// /// Original was GL_HISTOGRAM_RED_SIZE_EXT = 0x8028 /// HistogramRedSizeExt = ((int)0x8028), /// + /// Original was GL_HISTOGRAM_GREEN_SIZE = 0x8029 + /// + HistogramGreenSize = ((int)0x8029), + /// /// Original was GL_HISTOGRAM_GREEN_SIZE_EXT = 0x8029 /// HistogramGreenSizeExt = ((int)0x8029), /// + /// Original was GL_HISTOGRAM_BLUE_SIZE = 0x802A + /// + HistogramBlueSize = ((int)0x802A), + /// /// Original was GL_HISTOGRAM_BLUE_SIZE_EXT = 0x802A /// HistogramBlueSizeExt = ((int)0x802A), /// + /// Original was GL_HISTOGRAM_ALPHA_SIZE = 0x802B + /// + HistogramAlphaSize = ((int)0x802B), + /// /// Original was GL_HISTOGRAM_ALPHA_SIZE_EXT = 0x802B /// HistogramAlphaSizeExt = ((int)0x802B), /// + /// Original was GL_HISTOGRAM_LUMINANCE_SIZE = 0x802C + /// + HistogramLuminanceSize = ((int)0x802C), + /// /// Original was GL_HISTOGRAM_LUMINANCE_SIZE_EXT = 0x802C /// HistogramLuminanceSizeExt = ((int)0x802C), /// + /// Original was GL_HISTOGRAM_SINK = 0x802D + /// + HistogramSink = ((int)0x802D), + /// /// Original was GL_HISTOGRAM_SINK_EXT = 0x802D /// HistogramSinkExt = ((int)0x802D), @@ -3906,14 +3966,26 @@ namespace OpenTK.Graphics.ES30 /// Rgb4 = ((int)0x804F), /// + /// Original was GL_RGB4_EXT = 0x804F + /// + Rgb4Ext = ((int)0x804F), + /// /// Original was GL_RGB5 = 0x8050 /// Rgb5 = ((int)0x8050), /// + /// Original was GL_RGB5_EXT = 0x8050 + /// + Rgb5Ext = ((int)0x8050), + /// /// Original was GL_RGB8 = 0x8051 /// Rgb8 = ((int)0x8051), /// + /// Original was GL_RGB8_EXT = 0x8051 + /// + Rgb8Ext = ((int)0x8051), + /// /// Original was GL_RGB8_OES = 0x8051 /// Rgb8Oes = ((int)0x8051), @@ -3930,6 +4002,10 @@ namespace OpenTK.Graphics.ES30 /// Rgb12 = ((int)0x8053), /// + /// Original was GL_RGB12_EXT = 0x8053 + /// + Rgb12Ext = ((int)0x8053), + /// /// Original was GL_RGB16 = 0x8054 /// Rgb16 = ((int)0x8054), @@ -3938,9 +4014,9 @@ namespace OpenTK.Graphics.ES30 /// Rgb16Ext = ((int)0x8054), /// - /// Original was GL_RGBA2 = 0x8055 + /// Original was GL_RGBA4_EXT = 0x8056 /// - Rgba2 = ((int)0x8055), + Rgba4Ext = ((int)0x8056), /// /// Original was GL_RGBA4_OES = 0x8056 /// @@ -3954,6 +4030,10 @@ namespace OpenTK.Graphics.ES30 /// Rgb5A1 = ((int)0x8057), /// + /// Original was GL_RGB5_A1_EXT = 0x8057 + /// + Rgb5A1Ext = ((int)0x8057), + /// /// Original was GL_RGB5_A1_OES = 0x8057 /// Rgb5A1Oes = ((int)0x8057), @@ -3962,6 +4042,10 @@ namespace OpenTK.Graphics.ES30 /// Rgba8 = ((int)0x8058), /// + /// Original was GL_RGBA8_EXT = 0x8058 + /// + Rgba8Ext = ((int)0x8058), + /// /// Original was GL_RGBA8_OES = 0x8058 /// Rgba8Oes = ((int)0x8058), @@ -3978,6 +4062,10 @@ namespace OpenTK.Graphics.ES30 /// Rgba12 = ((int)0x805A), /// + /// Original was GL_RGBA12_EXT = 0x805A + /// + Rgba12Ext = ((int)0x805A), + /// /// Original was GL_RGBA16 = 0x805B /// Rgba16 = ((int)0x805B), @@ -4650,34 +4738,66 @@ namespace OpenTK.Graphics.ES30 /// ColorTableBiasSgi = ((int)0x80D7), /// + /// Original was GL_COLOR_TABLE_FORMAT = 0x80D8 + /// + ColorTableFormat = ((int)0x80D8), + /// /// Original was GL_COLOR_TABLE_FORMAT_SGI = 0x80D8 /// ColorTableFormatSgi = ((int)0x80D8), /// + /// Original was GL_COLOR_TABLE_WIDTH = 0x80D9 + /// + ColorTableWidth = ((int)0x80D9), + /// /// Original was GL_COLOR_TABLE_WIDTH_SGI = 0x80D9 /// ColorTableWidthSgi = ((int)0x80D9), /// + /// Original was GL_COLOR_TABLE_RED_SIZE = 0x80DA + /// + ColorTableRedSize = ((int)0x80DA), + /// /// Original was GL_COLOR_TABLE_RED_SIZE_SGI = 0x80DA /// ColorTableRedSizeSgi = ((int)0x80DA), /// + /// Original was GL_COLOR_TABLE_GREEN_SIZE = 0x80DB + /// + ColorTableGreenSize = ((int)0x80DB), + /// /// Original was GL_COLOR_TABLE_GREEN_SIZE_SGI = 0x80DB /// ColorTableGreenSizeSgi = ((int)0x80DB), /// + /// Original was GL_COLOR_TABLE_BLUE_SIZE = 0x80DC + /// + ColorTableBlueSize = ((int)0x80DC), + /// /// Original was GL_COLOR_TABLE_BLUE_SIZE_SGI = 0x80DC /// ColorTableBlueSizeSgi = ((int)0x80DC), /// + /// Original was GL_COLOR_TABLE_ALPHA_SIZE = 0x80DD + /// + ColorTableAlphaSize = ((int)0x80DD), + /// /// Original was GL_COLOR_TABLE_ALPHA_SIZE_SGI = 0x80DD /// ColorTableAlphaSizeSgi = ((int)0x80DD), /// + /// Original was GL_COLOR_TABLE_LUMINANCE_SIZE = 0x80DE + /// + ColorTableLuminanceSize = ((int)0x80DE), + /// /// Original was GL_COLOR_TABLE_LUMINANCE_SIZE_SGI = 0x80DE /// ColorTableLuminanceSizeSgi = ((int)0x80DE), /// + /// Original was GL_COLOR_TABLE_INTENSITY_SIZE = 0x80DF + /// + ColorTableIntensitySize = ((int)0x80DF), + /// /// Original was GL_COLOR_TABLE_INTENSITY_SIZE_SGI = 0x80DF /// ColorTableIntensitySizeSgi = ((int)0x80DF), @@ -5042,6 +5162,10 @@ namespace OpenTK.Graphics.ES30 /// Texture4DBindingSgis = ((int)0x814F), /// + /// Original was GL_CONVOLUTION_BORDER_COLOR = 0x8154 + /// + ConvolutionBorderColor = ((int)0x8154), + /// /// Original was GL_LINEAR_CLIPMAP_LINEAR_SGIX = 0x8170 /// LinearClipmapLinearSgix = ((int)0x8170), @@ -5230,6 +5354,10 @@ namespace OpenTK.Graphics.ES30 /// DepthComponent16 = ((int)0x81A5), /// + /// Original was GL_DEPTH_COMPONENT16_ARB = 0x81A5 + /// + DepthComponent16Arb = ((int)0x81A5), + /// /// Original was GL_DEPTH_COMPONENT16_OES = 0x81A5 /// DepthComponent16Oes = ((int)0x81A5), @@ -5242,6 +5370,10 @@ namespace OpenTK.Graphics.ES30 /// DepthComponent24 = ((int)0x81A6), /// + /// Original was GL_DEPTH_COMPONENT24_ARB = 0x81A6 + /// + DepthComponent24Arb = ((int)0x81A6), + /// /// Original was GL_DEPTH_COMPONENT24_OES = 0x81A6 /// DepthComponent24Oes = ((int)0x81A6), @@ -5250,6 +5382,10 @@ namespace OpenTK.Graphics.ES30 /// DepthComponent24Sgix = ((int)0x81A6), /// + /// Original was GL_DEPTH_COMPONENT32_ARB = 0x81A7 + /// + DepthComponent32Arb = ((int)0x81A7), + /// /// Original was GL_DEPTH_COMPONENT32_OES = 0x81A7 /// DepthComponent32Oes = ((int)0x81A7), @@ -5394,10 +5530,18 @@ namespace OpenTK.Graphics.ES30 /// NumExtensions = ((int)0x821D), /// + /// Original was GL_BUFFER_IMMUTABLE_STORAGE = 0x821F + /// + BufferImmutableStorage = ((int)0x821F), + /// /// Original was GL_BUFFER_IMMUTABLE_STORAGE_EXT = 0x821F /// BufferImmutableStorageExt = ((int)0x821F), /// + /// Original was GL_BUFFER_STORAGE_FLAGS = 0x8220 + /// + BufferStorageFlags = ((int)0x8220), + /// /// Original was GL_BUFFER_STORAGE_FLAGS_EXT = 0x8220 /// BufferStorageFlagsExt = ((int)0x8220), @@ -5410,6 +5554,14 @@ namespace OpenTK.Graphics.ES30 /// PrimitiveRestartForPatchesSupportedOes = ((int)0x8221), /// + /// Original was GL_COMPRESSED_RED = 0x8225 + /// + CompressedRed = ((int)0x8225), + /// + /// Original was GL_COMPRESSED_RG = 0x8226 + /// + CompressedRg = ((int)0x8226), + /// /// Original was GL_RG = 0x8227 /// Rg = ((int)0x8227), @@ -5430,6 +5582,10 @@ namespace OpenTK.Graphics.ES30 /// R8Ext = ((int)0x8229), /// + /// Original was GL_R16 = 0x822A + /// + R16 = ((int)0x822A), + /// /// Original was GL_R16_EXT = 0x822A /// R16Ext = ((int)0x822A), @@ -5442,6 +5598,10 @@ namespace OpenTK.Graphics.ES30 /// Rg8Ext = ((int)0x822B), /// + /// Original was GL_RG16 = 0x822C + /// + Rg16 = ((int)0x822C), + /// /// Original was GL_RG16_EXT = 0x822C /// Rg16Ext = ((int)0x822C), @@ -5718,10 +5878,18 @@ namespace OpenTK.Graphics.ES30 /// ProgramBinaryRetrievableHint = ((int)0x8257), /// + /// Original was GL_PROGRAM_SEPARABLE = 0x8258 + /// + ProgramSeparable = ((int)0x8258), + /// /// Original was GL_PROGRAM_SEPARABLE_EXT = 0x8258 /// ProgramSeparableExt = ((int)0x8258), /// + /// Original was GL_ACTIVE_PROGRAM = 0x8259 + /// + ActiveProgram = ((int)0x8259), + /// /// Original was GL_ACTIVE_PROGRAM_EXT = 0x8259 /// ActiveProgramExt = ((int)0x8259), @@ -5790,6 +5958,10 @@ namespace OpenTK.Graphics.ES30 /// NoResetNotificationKhr = ((int)0x8261), /// + /// Original was GL_COMPUTE_WORK_GROUP_SIZE = 0x8267 + /// + ComputeWorkGroupSize = ((int)0x8267), + /// /// Original was GL_DEBUG_TYPE_MARKER = 0x8268 /// DebugTypeMarker = ((int)0x8268), @@ -5838,6 +6010,270 @@ namespace OpenTK.Graphics.ES30 /// DebugGroupStackDepthKhr = ((int)0x826D), /// + /// Original was GL_INTERNALFORMAT_SUPPORTED = 0x826F + /// + InternalformatSupported = ((int)0x826F), + /// + /// Original was GL_INTERNALFORMAT_PREFERRED = 0x8270 + /// + InternalformatPreferred = ((int)0x8270), + /// + /// Original was GL_INTERNALFORMAT_RED_SIZE = 0x8271 + /// + InternalformatRedSize = ((int)0x8271), + /// + /// Original was GL_INTERNALFORMAT_GREEN_SIZE = 0x8272 + /// + InternalformatGreenSize = ((int)0x8272), + /// + /// Original was GL_INTERNALFORMAT_BLUE_SIZE = 0x8273 + /// + InternalformatBlueSize = ((int)0x8273), + /// + /// Original was GL_INTERNALFORMAT_ALPHA_SIZE = 0x8274 + /// + InternalformatAlphaSize = ((int)0x8274), + /// + /// Original was GL_INTERNALFORMAT_DEPTH_SIZE = 0x8275 + /// + InternalformatDepthSize = ((int)0x8275), + /// + /// Original was GL_INTERNALFORMAT_STENCIL_SIZE = 0x8276 + /// + InternalformatStencilSize = ((int)0x8276), + /// + /// Original was GL_INTERNALFORMAT_SHARED_SIZE = 0x8277 + /// + InternalformatSharedSize = ((int)0x8277), + /// + /// Original was GL_INTERNALFORMAT_RED_TYPE = 0x8278 + /// + InternalformatRedType = ((int)0x8278), + /// + /// Original was GL_INTERNALFORMAT_GREEN_TYPE = 0x8279 + /// + InternalformatGreenType = ((int)0x8279), + /// + /// Original was GL_INTERNALFORMAT_BLUE_TYPE = 0x827A + /// + InternalformatBlueType = ((int)0x827A), + /// + /// Original was GL_INTERNALFORMAT_ALPHA_TYPE = 0x827B + /// + InternalformatAlphaType = ((int)0x827B), + /// + /// Original was GL_INTERNALFORMAT_DEPTH_TYPE = 0x827C + /// + InternalformatDepthType = ((int)0x827C), + /// + /// Original was GL_INTERNALFORMAT_STENCIL_TYPE = 0x827D + /// + InternalformatStencilType = ((int)0x827D), + /// + /// Original was GL_MAX_WIDTH = 0x827E + /// + MaxWidth = ((int)0x827E), + /// + /// Original was GL_MAX_HEIGHT = 0x827F + /// + MaxHeight = ((int)0x827F), + /// + /// Original was GL_MAX_DEPTH = 0x8280 + /// + MaxDepth = ((int)0x8280), + /// + /// Original was GL_MAX_LAYERS = 0x8281 + /// + MaxLayers = ((int)0x8281), + /// + /// Original was GL_COLOR_COMPONENTS = 0x8283 + /// + ColorComponents = ((int)0x8283), + /// + /// Original was GL_COLOR_RENDERABLE = 0x8286 + /// + ColorRenderable = ((int)0x8286), + /// + /// Original was GL_DEPTH_RENDERABLE = 0x8287 + /// + DepthRenderable = ((int)0x8287), + /// + /// Original was GL_STENCIL_RENDERABLE = 0x8288 + /// + StencilRenderable = ((int)0x8288), + /// + /// Original was GL_FRAMEBUFFER_RENDERABLE = 0x8289 + /// + FramebufferRenderable = ((int)0x8289), + /// + /// Original was GL_FRAMEBUFFER_RENDERABLE_LAYERED = 0x828A + /// + FramebufferRenderableLayered = ((int)0x828A), + /// + /// Original was GL_FRAMEBUFFER_BLEND = 0x828B + /// + FramebufferBlend = ((int)0x828B), + /// + /// Original was GL_READ_PIXELS = 0x828C + /// + ReadPixels = ((int)0x828C), + /// + /// Original was GL_READ_PIXELS_FORMAT = 0x828D + /// + ReadPixelsFormat = ((int)0x828D), + /// + /// Original was GL_READ_PIXELS_TYPE = 0x828E + /// + ReadPixelsType = ((int)0x828E), + /// + /// Original was GL_TEXTURE_IMAGE_FORMAT = 0x828F + /// + TextureImageFormat = ((int)0x828F), + /// + /// Original was GL_TEXTURE_IMAGE_TYPE = 0x8290 + /// + TextureImageType = ((int)0x8290), + /// + /// Original was GL_GET_TEXTURE_IMAGE_FORMAT = 0x8291 + /// + GetTextureImageFormat = ((int)0x8291), + /// + /// Original was GL_GET_TEXTURE_IMAGE_TYPE = 0x8292 + /// + GetTextureImageType = ((int)0x8292), + /// + /// Original was GL_MIPMAP = 0x8293 + /// + Mipmap = ((int)0x8293), + /// + /// Original was GL_AUTO_GENERATE_MIPMAP = 0x8295 + /// + AutoGenerateMipmap = ((int)0x8295), + /// + /// Original was GL_COLOR_ENCODING = 0x8296 + /// + ColorEncoding = ((int)0x8296), + /// + /// Original was GL_SRGB_READ = 0x8297 + /// + SrgbRead = ((int)0x8297), + /// + /// Original was GL_SRGB_WRITE = 0x8298 + /// + SrgbWrite = ((int)0x8298), + /// + /// Original was GL_FILTER = 0x829A + /// + Filter = ((int)0x829A), + /// + /// Original was GL_VERTEX_TEXTURE = 0x829B + /// + VertexTexture = ((int)0x829B), + /// + /// Original was GL_TESS_CONTROL_TEXTURE = 0x829C + /// + TessControlTexture = ((int)0x829C), + /// + /// Original was GL_TESS_EVALUATION_TEXTURE = 0x829D + /// + TessEvaluationTexture = ((int)0x829D), + /// + /// Original was GL_GEOMETRY_TEXTURE = 0x829E + /// + GeometryTexture = ((int)0x829E), + /// + /// Original was GL_FRAGMENT_TEXTURE = 0x829F + /// + FragmentTexture = ((int)0x829F), + /// + /// Original was GL_COMPUTE_TEXTURE = 0x82A0 + /// + ComputeTexture = ((int)0x82A0), + /// + /// Original was GL_TEXTURE_SHADOW = 0x82A1 + /// + TextureShadow = ((int)0x82A1), + /// + /// Original was GL_TEXTURE_GATHER = 0x82A2 + /// + TextureGather = ((int)0x82A2), + /// + /// Original was GL_TEXTURE_GATHER_SHADOW = 0x82A3 + /// + TextureGatherShadow = ((int)0x82A3), + /// + /// Original was GL_SHADER_IMAGE_LOAD = 0x82A4 + /// + ShaderImageLoad = ((int)0x82A4), + /// + /// Original was GL_SHADER_IMAGE_STORE = 0x82A5 + /// + ShaderImageStore = ((int)0x82A5), + /// + /// Original was GL_SHADER_IMAGE_ATOMIC = 0x82A6 + /// + ShaderImageAtomic = ((int)0x82A6), + /// + /// Original was GL_IMAGE_TEXEL_SIZE = 0x82A7 + /// + ImageTexelSize = ((int)0x82A7), + /// + /// Original was GL_IMAGE_COMPATIBILITY_CLASS = 0x82A8 + /// + ImageCompatibilityClass = ((int)0x82A8), + /// + /// Original was GL_IMAGE_PIXEL_FORMAT = 0x82A9 + /// + ImagePixelFormat = ((int)0x82A9), + /// + /// Original was GL_IMAGE_PIXEL_TYPE = 0x82AA + /// + ImagePixelType = ((int)0x82AA), + /// + /// Original was GL_SIMULTANEOUS_TEXTURE_AND_DEPTH_TEST = 0x82AC + /// + SimultaneousTextureAndDepthTest = ((int)0x82AC), + /// + /// Original was GL_SIMULTANEOUS_TEXTURE_AND_STENCIL_TEST = 0x82AD + /// + SimultaneousTextureAndStencilTest = ((int)0x82AD), + /// + /// Original was GL_SIMULTANEOUS_TEXTURE_AND_DEPTH_WRITE = 0x82AE + /// + SimultaneousTextureAndDepthWrite = ((int)0x82AE), + /// + /// Original was GL_SIMULTANEOUS_TEXTURE_AND_STENCIL_WRITE = 0x82AF + /// + SimultaneousTextureAndStencilWrite = ((int)0x82AF), + /// + /// Original was GL_TEXTURE_COMPRESSED_BLOCK_WIDTH = 0x82B1 + /// + TextureCompressedBlockWidth = ((int)0x82B1), + /// + /// Original was GL_TEXTURE_COMPRESSED_BLOCK_HEIGHT = 0x82B2 + /// + TextureCompressedBlockHeight = ((int)0x82B2), + /// + /// Original was GL_TEXTURE_COMPRESSED_BLOCK_SIZE = 0x82B3 + /// + TextureCompressedBlockSize = ((int)0x82B3), + /// + /// Original was GL_CLEAR_BUFFER = 0x82B4 + /// + ClearBuffer = ((int)0x82B4), + /// + /// Original was GL_TEXTURE_VIEW = 0x82B5 + /// + TextureView = ((int)0x82B5), + /// + /// Original was GL_VIEW_COMPATIBILITY_CLASS = 0x82B6 + /// + ViewCompatibilityClass = ((int)0x82B6), + /// + /// Original was GL_VERTEX_ATTRIB_RELATIVE_OFFSET = 0x82D5 + /// + VertexAttribRelativeOffset = ((int)0x82D5), + /// /// Original was GL_TEXTURE_VIEW_MIN_LEVEL_EXT = 0x82DB /// TextureViewMinLevelExt = ((int)0x82DB), @@ -5934,6 +6370,10 @@ namespace OpenTK.Graphics.ES30 /// MaxLabelLengthKhr = ((int)0x82E8), /// + /// Original was GL_QUERY_TARGET = 0x82EA + /// + QueryTarget = ((int)0x82EA), + /// /// Original was GL_MAX_CULL_DISTANCES_EXT = 0x82F9 /// MaxCullDistancesExt = ((int)0x82F9), @@ -6226,6 +6666,10 @@ namespace OpenTK.Graphics.ES30 /// LinearClipmapNearestSgix = ((int)0x844F), /// + /// Original was GL_FOG_COORD_SRC = 0x8450 + /// + FogCoordSrc = ((int)0x8450), + /// /// Original was GL_ALIASED_POINT_SIZE_RANGE = 0x846D /// AliasedPointSizeRange = ((int)0x846D), @@ -6378,6 +6822,14 @@ namespace OpenTK.Graphics.ES30 /// MaxRenderbufferSize = ((int)0x84E8), /// + /// Original was GL_COMPRESSED_RGB = 0x84ED + /// + CompressedRgb = ((int)0x84ED), + /// + /// Original was GL_COMPRESSED_RGBA = 0x84EE + /// + CompressedRgba = ((int)0x84EE), + /// /// Original was GL_TEXTURE_COMPRESSION_HINT = 0x84EF /// TextureCompressionHint = ((int)0x84EF), @@ -6386,6 +6838,14 @@ namespace OpenTK.Graphics.ES30 /// TextureCompressionHintArb = ((int)0x84EF), /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_CONTROL_SHADER = 0x84F0 + /// + UniformBlockReferencedByTessControlShader = ((int)0x84F0), + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_EVALUATION_SHADER = 0x84F1 + /// + UniformBlockReferencedByTessEvaluationShader = ((int)0x84F1), + /// /// Original was GL_ALL_COMPLETED_NV = 0x84F2 /// AllCompletedNv = ((int)0x84F2), @@ -6418,6 +6878,14 @@ namespace OpenTK.Graphics.ES30 /// DepthStencil = ((int)0x84F9), /// + /// Original was GL_DEPTH_STENCIL_EXT = 0x84F9 + /// + DepthStencilExt = ((int)0x84F9), + /// + /// Original was GL_DEPTH_STENCIL_NV = 0x84F9 + /// + DepthStencilNv = ((int)0x84F9), + /// /// Original was GL_DEPTH_STENCIL_OES = 0x84F9 /// DepthStencilOes = ((int)0x84F9), @@ -6518,6 +6986,10 @@ namespace OpenTK.Graphics.ES30 /// MultisampleFilterHintNv = ((int)0x8534), /// + /// Original was GL_CONSTANT = 0x8576 + /// + Constant = ((int)0x8576), + /// /// Original was GL_CONSTANT_NV = 0x8576 /// ConstantNv = ((int)0x8576), @@ -6526,6 +6998,10 @@ namespace OpenTK.Graphics.ES30 /// PrimaryColor = ((int)0x8577), /// + /// Original was GL_SRC1_ALPHA = 0x8589 + /// + Src1Alpha = ((int)0x8589), + /// /// Original was GL_SRC1_ALPHA_EXT = 0x8589 /// Src1AlphaExt = ((int)0x8589), @@ -6598,6 +7074,10 @@ namespace OpenTK.Graphics.ES30 /// VertexAttribArrayPointer = ((int)0x8645), /// + /// Original was GL_TEXTURE_COMPRESSED = 0x86A1 + /// + TextureCompressed = ((int)0x86A1), + /// /// Original was GL_NUM_COMPRESSED_TEXTURE_FORMATS = 0x86A2 /// NumCompressedTextureFormats = ((int)0x86A2), @@ -6618,6 +7098,22 @@ namespace OpenTK.Graphics.ES30 /// ProgramBinaryLengthOes = ((int)0x8741), /// + /// Original was GL_MIRROR_CLAMP_TO_EDGE_EXT = 0x8743 + /// + MirrorClampToEdgeExt = ((int)0x8743), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_LONG = 0x874E + /// + VertexAttribArrayLong = ((int)0x874E), + /// + /// Original was GL_DEPTH_STENCIL_MESA = 0x8750 + /// + DepthStencilMesa = ((int)0x8750), + /// + /// Original was GL_PROGRAM_BINARY_FORMAT_MESA = 0x875F + /// + ProgramBinaryFormatMesa = ((int)0x875F), + /// /// Original was GL_BUFFER_SIZE = 0x8764 /// BufferSize = ((int)0x8764), @@ -6674,6 +7170,10 @@ namespace OpenTK.Graphics.ES30 /// Rgba32f = ((int)0x8814), /// + /// Original was GL_RGBA32F_ARB = 0x8814 + /// + Rgba32fArb = ((int)0x8814), + /// /// Original was GL_RGBA32F_EXT = 0x8814 /// Rgba32fExt = ((int)0x8814), @@ -6702,6 +7202,10 @@ namespace OpenTK.Graphics.ES30 /// Rgba16f = ((int)0x881A), /// + /// Original was GL_RGBA16F_ARB = 0x881A + /// + Rgba16fArb = ((int)0x881A), + /// /// Original was GL_RGBA16F_EXT = 0x881A /// Rgba16fExt = ((int)0x881A), @@ -6710,6 +7214,10 @@ namespace OpenTK.Graphics.ES30 /// Rgb16f = ((int)0x881B), /// + /// Original was GL_RGB16F_ARB = 0x881B + /// + Rgb16fArb = ((int)0x881B), + /// /// Original was GL_RGB16F_EXT = 0x881B /// Rgb16fExt = ((int)0x881B), @@ -6962,6 +7470,10 @@ namespace OpenTK.Graphics.ES30 /// CompareRefToTextureExt = ((int)0x884E), /// + /// Original was GL_QUERY_COUNTER_BITS = 0x8864 + /// + QueryCounterBits = ((int)0x8864), + /// /// Original was GL_QUERY_COUNTER_BITS_EXT = 0x8864 /// QueryCounterBitsExt = ((int)0x8864), @@ -7062,6 +7574,10 @@ namespace OpenTK.Graphics.ES30 /// ReadWrite = ((int)0x88BA), /// + /// Original was GL_BUFFER_ACCESS = 0x88BB + /// + BufferAccess = ((int)0x88BB), + /// /// Original was GL_BUFFER_ACCESS_OES = 0x88BB /// BufferAccessOes = ((int)0x88BB), @@ -7082,6 +7598,10 @@ namespace OpenTK.Graphics.ES30 /// BufferMapPointerOes = ((int)0x88BD), /// + /// Original was GL_TIME_ELAPSED = 0x88BF + /// + TimeElapsed = ((int)0x88BF), + /// /// Original was GL_TIME_ELAPSED_EXT = 0x88BF /// TimeElapsedExt = ((int)0x88BF), @@ -7162,10 +7682,18 @@ namespace OpenTK.Graphics.ES30 /// Depth24Stencil8 = ((int)0x88F0), /// + /// Original was GL_DEPTH24_STENCIL8_EXT = 0x88F0 + /// + Depth24Stencil8Ext = ((int)0x88F0), + /// /// Original was GL_DEPTH24_STENCIL8_OES = 0x88F0 /// Depth24Stencil8Oes = ((int)0x88F0), /// + /// Original was GL_SRC1_COLOR = 0x88F9 + /// + Src1Color = ((int)0x88F9), + /// /// Original was GL_SRC1_COLOR_EXT = 0x88F9 /// Src1ColorExt = ((int)0x88F9), @@ -7214,6 +7742,10 @@ namespace OpenTK.Graphics.ES30 /// MaxProgramTexelOffset = ((int)0x8905), /// + /// Original was GL_SAMPLES_PASSED = 0x8914 + /// + SamplesPassed = ((int)0x8914), + /// /// Original was GL_GEOMETRY_LINKED_VERTICES_OUT_EXT = 0x8916 /// GeometryLinkedVerticesOutExt = ((int)0x8916), @@ -7222,6 +7754,14 @@ namespace OpenTK.Graphics.ES30 /// GeometryLinkedVerticesOutOes = ((int)0x8916), /// + /// Original was GL_GEOMETRY_VERTICES_OUT = 0x8916 + /// + GeometryVerticesOut = ((int)0x8916), + /// + /// Original was GL_GEOMETRY_INPUT_TYPE = 0x8917 + /// + GeometryInputType = ((int)0x8917), + /// /// Original was GL_GEOMETRY_LINKED_INPUT_TYPE_EXT = 0x8917 /// GeometryLinkedInputTypeExt = ((int)0x8917), @@ -7238,10 +7778,58 @@ namespace OpenTK.Graphics.ES30 /// GeometryLinkedOutputTypeOes = ((int)0x8918), /// + /// Original was GL_GEOMETRY_OUTPUT_TYPE = 0x8918 + /// + GeometryOutputType = ((int)0x8918), + /// /// Original was GL_SAMPLER_BINDING = 0x8919 /// SamplerBinding = ((int)0x8919), /// + /// Original was GL_MOV_ATI = 0x8961 + /// + MovAti = ((int)0x8961), + /// + /// Original was GL_ADD_ATI = 0x8963 + /// + AddAti = ((int)0x8963), + /// + /// Original was GL_MUL_ATI = 0x8964 + /// + MulAti = ((int)0x8964), + /// + /// Original was GL_SUB_ATI = 0x8965 + /// + SubAti = ((int)0x8965), + /// + /// Original was GL_DOT3_ATI = 0x8966 + /// + Dot3Ati = ((int)0x8966), + /// + /// Original was GL_DOT4_ATI = 0x8967 + /// + Dot4Ati = ((int)0x8967), + /// + /// Original was GL_MAD_ATI = 0x8968 + /// + MadAti = ((int)0x8968), + /// + /// Original was GL_LERP_ATI = 0x8969 + /// + LerpAti = ((int)0x8969), + /// + /// Original was GL_CND_ATI = 0x896A + /// + CndAti = ((int)0x896A), + /// + /// Original was GL_CND0_ATI = 0x896B + /// + Cnd0Ati = ((int)0x896B), + /// + /// Original was GL_DOT2_ADD_ATI = 0x896C + /// + Dot2AddAti = ((int)0x896C), + /// /// Original was GL_PACK_RESAMPLE_OML = 0x8984 /// PackResampleOml = ((int)0x8984), @@ -7382,6 +7970,10 @@ namespace OpenTK.Graphics.ES30 /// UniformBlockReferencedByVertexShader = ((int)0x8A44), /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_GEOMETRY_SHADER = 0x8A45 + /// + UniformBlockReferencedByGeometryShader = ((int)0x8A45), + /// /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER = 0x8A46 /// UniformBlockReferencedByFragmentShader = ((int)0x8A46), @@ -7434,10 +8026,18 @@ namespace OpenTK.Graphics.ES30 /// FragmentShader = ((int)0x8B30), /// + /// Original was GL_FRAGMENT_SHADER_ARB = 0x8B30 + /// + FragmentShaderArb = ((int)0x8B30), + /// /// Original was GL_VERTEX_SHADER = 0x8B31 /// VertexShader = ((int)0x8B31), /// + /// Original was GL_VERTEX_SHADER_ARB = 0x8B31 + /// + VertexShaderArb = ((int)0x8B31), + /// /// Original was GL_PROGRAM_OBJECT_EXT = 0x8B40 /// ProgramObjectExt = ((int)0x8B40), @@ -7474,26 +8074,54 @@ namespace OpenTK.Graphics.ES30 /// FloatVec2 = ((int)0x8B50), /// + /// Original was GL_FLOAT_VEC2_ARB = 0x8B50 + /// + FloatVec2Arb = ((int)0x8B50), + /// /// Original was GL_FLOAT_VEC3 = 0x8B51 /// FloatVec3 = ((int)0x8B51), /// + /// Original was GL_FLOAT_VEC3_ARB = 0x8B51 + /// + FloatVec3Arb = ((int)0x8B51), + /// /// Original was GL_FLOAT_VEC4 = 0x8B52 /// FloatVec4 = ((int)0x8B52), /// + /// Original was GL_FLOAT_VEC4_ARB = 0x8B52 + /// + FloatVec4Arb = ((int)0x8B52), + /// /// Original was GL_INT_VEC2 = 0x8B53 /// IntVec2 = ((int)0x8B53), /// + /// Original was GL_INT_VEC2_ARB = 0x8B53 + /// + IntVec2Arb = ((int)0x8B53), + /// /// Original was GL_INT_VEC3 = 0x8B54 /// IntVec3 = ((int)0x8B54), /// + /// Original was GL_INT_VEC3_ARB = 0x8B54 + /// + IntVec3Arb = ((int)0x8B54), + /// /// Original was GL_INT_VEC4 = 0x8B55 /// IntVec4 = ((int)0x8B55), /// + /// Original was GL_INT_VEC4_ARB = 0x8B55 + /// + IntVec4Arb = ((int)0x8B55), + /// + /// Original was GL_BOOL_ARB = 0x8B56 + /// + BoolArb = ((int)0x8B56), + /// /// Original was GL_Bool = 0X8b56 /// Bool = ((int)0X8b56), @@ -7502,34 +8130,74 @@ namespace OpenTK.Graphics.ES30 /// BoolVec2 = ((int)0x8B57), /// + /// Original was GL_BOOL_VEC2_ARB = 0x8B57 + /// + BoolVec2Arb = ((int)0x8B57), + /// /// Original was GL_BOOL_VEC3 = 0x8B58 /// BoolVec3 = ((int)0x8B58), /// + /// Original was GL_BOOL_VEC3_ARB = 0x8B58 + /// + BoolVec3Arb = ((int)0x8B58), + /// /// Original was GL_BOOL_VEC4 = 0x8B59 /// BoolVec4 = ((int)0x8B59), /// + /// Original was GL_BOOL_VEC4_ARB = 0x8B59 + /// + BoolVec4Arb = ((int)0x8B59), + /// /// Original was GL_FLOAT_MAT2 = 0x8B5A /// FloatMat2 = ((int)0x8B5A), /// + /// Original was GL_FLOAT_MAT2_ARB = 0x8B5A + /// + FloatMat2Arb = ((int)0x8B5A), + /// /// Original was GL_FLOAT_MAT3 = 0x8B5B /// FloatMat3 = ((int)0x8B5B), /// + /// Original was GL_FLOAT_MAT3_ARB = 0x8B5B + /// + FloatMat3Arb = ((int)0x8B5B), + /// /// Original was GL_FLOAT_MAT4 = 0x8B5C /// FloatMat4 = ((int)0x8B5C), /// + /// Original was GL_FLOAT_MAT4_ARB = 0x8B5C + /// + FloatMat4Arb = ((int)0x8B5C), + /// + /// Original was GL_SAMPLER_1D = 0x8B5D + /// + Sampler1D = ((int)0x8B5D), + /// + /// Original was GL_SAMPLER_1D_ARB = 0x8B5D + /// + Sampler1DArb = ((int)0x8B5D), + /// /// Original was GL_SAMPLER_2D = 0x8B5E /// Sampler2D = ((int)0x8B5E), /// + /// Original was GL_SAMPLER_2D_ARB = 0x8B5E + /// + Sampler2DArb = ((int)0x8B5E), + /// /// Original was GL_SAMPLER_3D = 0x8B5F /// Sampler3D = ((int)0x8B5F), /// + /// Original was GL_SAMPLER_3D_ARB = 0x8B5F + /// + Sampler3DArb = ((int)0x8B5F), + /// /// Original was GL_SAMPLER_3D_OES = 0x8B5F /// Sampler3DOes = ((int)0x8B5F), @@ -7538,14 +8206,46 @@ namespace OpenTK.Graphics.ES30 /// SamplerCube = ((int)0x8B60), /// + /// Original was GL_SAMPLER_CUBE_ARB = 0x8B60 + /// + SamplerCubeArb = ((int)0x8B60), + /// + /// Original was GL_SAMPLER_1D_SHADOW = 0x8B61 + /// + Sampler1DShadow = ((int)0x8B61), + /// + /// Original was GL_SAMPLER_1D_SHADOW_ARB = 0x8B61 + /// + Sampler1DShadowArb = ((int)0x8B61), + /// /// Original was GL_SAMPLER_2D_SHADOW = 0x8B62 /// Sampler2DShadow = ((int)0x8B62), /// + /// Original was GL_SAMPLER_2D_SHADOW_ARB = 0x8B62 + /// + Sampler2DShadowArb = ((int)0x8B62), + /// /// Original was GL_SAMPLER_2D_SHADOW_EXT = 0x8B62 /// Sampler2DShadowExt = ((int)0x8B62), /// + /// Original was GL_SAMPLER_2D_RECT = 0x8B63 + /// + Sampler2DRect = ((int)0x8B63), + /// + /// Original was GL_SAMPLER_2D_RECT_ARB = 0x8B63 + /// + Sampler2DRectArb = ((int)0x8B63), + /// + /// Original was GL_SAMPLER_2D_RECT_SHADOW = 0x8B64 + /// + Sampler2DRectShadow = ((int)0x8B64), + /// + /// Original was GL_SAMPLER_2D_RECT_SHADOW_ARB = 0x8B64 + /// + Sampler2DRectShadowArb = ((int)0x8B64), + /// /// Original was GL_FLOAT_MAT2x3 = 0x8B65 /// FloatMat2x3 = ((int)0x8B65), @@ -7786,6 +8486,26 @@ namespace OpenTK.Graphics.ES30 /// TextureProtectedExt = ((int)0x8BFA), /// + /// Original was GL_TEXTURE_FOVEATED_FEATURE_BITS_QCOM = 0x8BFB + /// + TextureFoveatedFeatureBitsQcom = ((int)0x8BFB), + /// + /// Original was GL_TEXTURE_FOVEATED_MIN_PIXEL_DENSITY_QCOM = 0x8BFC + /// + TextureFoveatedMinPixelDensityQcom = ((int)0x8BFC), + /// + /// Original was GL_TEXTURE_FOVEATED_FEATURE_QUERY_QCOM = 0x8BFD + /// + TextureFoveatedFeatureQueryQcom = ((int)0x8BFD), + /// + /// Original was GL_TEXTURE_FOVEATED_NUM_FOCAL_POINTS_QUERY_QCOM = 0x8BFE + /// + TextureFoveatedNumFocalPointsQueryQcom = ((int)0x8BFE), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_FOVEATION_QCOM = 0x8BFF + /// + FramebufferIncompleteFoveationQcom = ((int)0x8BFF), + /// /// Original was GL_COMPRESSED_RGB_PVRTC_4BPPV1_IMG = 0x8C00 /// CompressedRgbPvrtc4Bppv1Img = ((int)0x8C00), @@ -7918,6 +8638,10 @@ namespace OpenTK.Graphics.ES30 /// R11fG11fB10fApple = ((int)0x8C3A), /// + /// Original was GL_R11F_G11F_B10F_EXT = 0x8C3A + /// + R11fG11fB10fExt = ((int)0x8C3A), + /// /// Original was GL_UNSIGNED_INT_10F_11F_11F_REV = 0x8C3B /// UnsignedInt10F11F11FRev = ((int)0x8C3B), @@ -7934,6 +8658,10 @@ namespace OpenTK.Graphics.ES30 /// Rgb9E5Apple = ((int)0x8C3D), /// + /// Original was GL_RGB9_E5_EXT = 0x8C3D + /// + Rgb9E5Ext = ((int)0x8C3D), + /// /// Original was GL_UNSIGNED_INT_5_9_9_9_REV = 0x8C3E /// UnsignedInt5999Rev = ((int)0x8C3E), @@ -7954,10 +8682,18 @@ namespace OpenTK.Graphics.ES30 /// Srgb8 = ((int)0x8C41), /// + /// Original was GL_SRGB8_EXT = 0x8C41 + /// + Srgb8Ext = ((int)0x8C41), + /// /// Original was GL_SRGB8_NV = 0x8C41 /// Srgb8Nv = ((int)0x8C41), /// + /// Original was GL_SRGB_ALPHA = 0x8C42 + /// + SrgbAlpha = ((int)0x8C42), + /// /// Original was GL_SRGB_ALPHA_EXT = 0x8C42 /// SrgbAlphaExt = ((int)0x8C42), @@ -7986,18 +8722,42 @@ namespace OpenTK.Graphics.ES30 /// Sluminance8Nv = ((int)0x8C47), /// + /// Original was GL_COMPRESSED_SRGB = 0x8C48 + /// + CompressedSrgb = ((int)0x8C48), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA = 0x8C49 + /// + CompressedSrgbAlpha = ((int)0x8C49), + /// + /// Original was GL_COMPRESSED_SRGB_S3TC_DXT1_EXT = 0x8C4C + /// + CompressedSrgbS3tcDxt1Ext = ((int)0x8C4C), + /// /// Original was GL_COMPRESSED_SRGB_S3TC_DXT1_NV = 0x8C4C /// CompressedSrgbS3tcDxt1Nv = ((int)0x8C4C), /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT = 0x8C4D + /// + CompressedSrgbAlphaS3tcDxt1Ext = ((int)0x8C4D), + /// /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_NV = 0x8C4D /// CompressedSrgbAlphaS3tcDxt1Nv = ((int)0x8C4D), /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT = 0x8C4E + /// + CompressedSrgbAlphaS3tcDxt3Ext = ((int)0x8C4E), + /// /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_NV = 0x8C4E /// CompressedSrgbAlphaS3tcDxt3Nv = ((int)0x8C4E), /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT = 0x8C4F + /// + CompressedSrgbAlphaS3tcDxt5Ext = ((int)0x8C4F), + /// /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_NV = 0x8C4F /// CompressedSrgbAlphaS3tcDxt5Nv = ((int)0x8C4F), @@ -8026,6 +8786,10 @@ namespace OpenTK.Graphics.ES30 /// TransformFeedbackBufferSize = ((int)0x8C85), /// + /// Original was GL_PRIMITIVES_GENERATED = 0x8C87 + /// + PrimitivesGenerated = ((int)0x8C87), + /// /// Original was GL_PRIMITIVES_GENERATED_EXT = 0x8C87 /// PrimitivesGeneratedExt = ((int)0x8C87), @@ -8074,6 +8838,22 @@ namespace OpenTK.Graphics.ES30 /// AtcRgbaExplicitAlphaAmd = ((int)0x8C93), /// + /// Original was GL_LOWER_LEFT = 0x8CA1 + /// + LowerLeft = ((int)0x8CA1), + /// + /// Original was GL_LOWER_LEFT_EXT = 0x8CA1 + /// + LowerLeftExt = ((int)0x8CA1), + /// + /// Original was GL_UPPER_LEFT = 0x8CA2 + /// + UpperLeft = ((int)0x8CA2), + /// + /// Original was GL_UPPER_LEFT_EXT = 0x8CA2 + /// + UpperLeftExt = ((int)0x8CA2), + /// /// Original was GL_STENCIL_BACK_REF = 0x8CA3 /// StencilBackRef = ((int)0x8CA3), @@ -8226,6 +9006,14 @@ namespace OpenTK.Graphics.ES30 /// FramebufferIncompleteDimensions = ((int)0x8CD9), /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER = 0x8CDB + /// + FramebufferIncompleteDrawBuffer = ((int)0x8CDB), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER = 0x8CDC + /// + FramebufferIncompleteReadBuffer = ((int)0x8CDC), + /// /// Original was GL_FRAMEBUFFER_UNSUPPORTED = 0x8CDD /// FramebufferUnsupported = ((int)0x8CDD), @@ -8254,6 +9042,10 @@ namespace OpenTK.Graphics.ES30 /// ColorAttachment0Nv = ((int)0x8CE0), /// + /// Original was GL_COLOR_ATTACHMENT0_OES = 0x8CE0 + /// + ColorAttachment0Oes = ((int)0x8CE0), + /// /// Original was GL_COLOR_ATTACHMENT1 = 0x8CE1 /// ColorAttachment1 = ((int)0x8CE1), @@ -8502,6 +9294,14 @@ namespace OpenTK.Graphics.ES30 /// DepthAttachment = ((int)0x8D00), /// + /// Original was GL_DEPTH_ATTACHMENT_EXT = 0x8D00 + /// + DepthAttachmentExt = ((int)0x8D00), + /// + /// Original was GL_DEPTH_ATTACHMENT_OES = 0x8D00 + /// + DepthAttachmentOes = ((int)0x8D00), + /// /// Original was GL_STENCIL_ATTACHMENT = 0x8D20 /// StencilAttachment = ((int)0x8D20), @@ -8722,6 +9522,10 @@ namespace OpenTK.Graphics.ES30 /// Int2101010Rev = ((int)0x8D9F), /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_LAYERED = 0x8DA7 + /// + FramebufferAttachmentLayered = ((int)0x8DA7), + /// /// Original was GL_FRAMEBUFFER_ATTACHMENT_LAYERED_EXT = 0x8DA7 /// FramebufferAttachmentLayeredExt = ((int)0x8DA7), @@ -8730,6 +9534,10 @@ namespace OpenTK.Graphics.ES30 /// FramebufferAttachmentLayeredOes = ((int)0x8DA7), /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS = 0x8DA8 + /// + FramebufferIncompleteLayerTargets = ((int)0x8DA8), + /// /// Original was GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_EXT = 0x8DA8 /// FramebufferIncompleteLayerTargetsExt = ((int)0x8DA8), @@ -8738,6 +9546,14 @@ namespace OpenTK.Graphics.ES30 /// FramebufferIncompleteLayerTargetsOes = ((int)0x8DA8), /// + /// Original was GL_DEPTH_COMPONENT32F_NV = 0x8DAB + /// + DepthComponent32fNv = ((int)0x8DAB), + /// + /// Original was GL_DEPTH32F_STENCIL8_NV = 0x8DAC + /// + Depth32fStencil8Nv = ((int)0x8DAC), + /// /// Original was GL_FLOAT_32_UNSIGNED_INT_24_8_REV = 0x8DAD /// Float32UnsignedInt248Rev = ((int)0x8DAD), @@ -8746,10 +9562,18 @@ namespace OpenTK.Graphics.ES30 /// FramebufferSrgbExt = ((int)0x8DB9), /// + /// Original was GL_COMPRESSED_RED_RGTC1 = 0x8DBB + /// + CompressedRedRgtc1 = ((int)0x8DBB), + /// /// Original was GL_COMPRESSED_RED_RGTC1_EXT = 0x8DBB /// CompressedRedRgtc1Ext = ((int)0x8DBB), /// + /// Original was GL_COMPRESSED_SIGNED_RED_RGTC1 = 0x8DBC + /// + CompressedSignedRedRgtc1 = ((int)0x8DBC), + /// /// Original was GL_COMPRESSED_SIGNED_RED_RGTC1_EXT = 0x8DBC /// CompressedSignedRedRgtc1Ext = ((int)0x8DBC), @@ -8758,10 +9582,18 @@ namespace OpenTK.Graphics.ES30 /// CompressedRedGreenRgtc2Ext = ((int)0x8DBD), /// + /// Original was GL_COMPRESSED_RG_RGTC2 = 0x8DBD + /// + CompressedRgRgtc2 = ((int)0x8DBD), + /// /// Original was GL_COMPRESSED_SIGNED_RED_GREEN_RGTC2_EXT = 0x8DBE /// CompressedSignedRedGreenRgtc2Ext = ((int)0x8DBE), /// + /// Original was GL_COMPRESSED_SIGNED_RG_RGTC2 = 0x8DBE + /// + CompressedSignedRgRgtc2 = ((int)0x8DBE), + /// /// Original was GL_SAMPLER_2D_ARRAY = 0x8DC1 /// Sampler2DArray = ((int)0x8DC1), @@ -8850,6 +9682,10 @@ namespace OpenTK.Graphics.ES30 /// UnsignedIntSamplerBufferOes = ((int)0x8DD8), /// + /// Original was GL_GEOMETRY_SHADER = 0x8DD9 + /// + GeometryShader = ((int)0x8DD9), + /// /// Original was GL_GEOMETRY_SHADER_EXT = 0x8DD9 /// GeometryShaderExt = ((int)0x8DD9), @@ -8882,6 +9718,14 @@ namespace OpenTK.Graphics.ES30 /// MaxGeometryTotalOutputComponentsOes = ((int)0x8DE1), /// + /// Original was GL_ACTIVE_SUBROUTINES = 0x8DE5 + /// + ActiveSubroutines = ((int)0x8DE5), + /// + /// Original was GL_ACTIVE_SUBROUTINE_UNIFORMS = 0x8DE6 + /// + ActiveSubroutineUniforms = ((int)0x8DE6), + /// /// Original was GL_LOW_FLOAT = 0x8DF0 /// LowFloat = ((int)0x8DF0), @@ -8938,18 +9782,34 @@ namespace OpenTK.Graphics.ES30 /// MaxFragmentUniformVectors = ((int)0x8DFD), /// + /// Original was GL_QUERY_WAIT = 0x8E13 + /// + QueryWait = ((int)0x8E13), + /// /// Original was GL_QUERY_WAIT_NV = 0x8E13 /// QueryWaitNv = ((int)0x8E13), /// + /// Original was GL_QUERY_NO_WAIT = 0x8E14 + /// + QueryNoWait = ((int)0x8E14), + /// /// Original was GL_QUERY_NO_WAIT_NV = 0x8E14 /// QueryNoWaitNv = ((int)0x8E14), /// + /// Original was GL_QUERY_BY_REGION_WAIT = 0x8E15 + /// + QueryByRegionWait = ((int)0x8E15), + /// /// Original was GL_QUERY_BY_REGION_WAIT_NV = 0x8E15 /// QueryByRegionWaitNv = ((int)0x8E15), /// + /// Original was GL_QUERY_BY_REGION_NO_WAIT = 0x8E16 + /// + QueryByRegionNoWait = ((int)0x8E16), + /// /// Original was GL_QUERY_BY_REGION_NO_WAIT_NV = 0x8E16 /// QueryByRegionNoWaitNv = ((int)0x8E16), @@ -9022,6 +9882,30 @@ namespace OpenTK.Graphics.ES30 /// TextureSwizzleRgba = ((int)0x8E46), /// + /// Original was GL_ACTIVE_SUBROUTINE_UNIFORM_LOCATIONS = 0x8E47 + /// + ActiveSubroutineUniformLocations = ((int)0x8E47), + /// + /// Original was GL_ACTIVE_SUBROUTINE_MAX_LENGTH = 0x8E48 + /// + ActiveSubroutineMaxLength = ((int)0x8E48), + /// + /// Original was GL_ACTIVE_SUBROUTINE_UNIFORM_MAX_LENGTH = 0x8E49 + /// + ActiveSubroutineUniformMaxLength = ((int)0x8E49), + /// + /// Original was GL_NUM_COMPATIBLE_SUBROUTINES = 0x8E4A + /// + NumCompatibleSubroutines = ((int)0x8E4A), + /// + /// Original was GL_COMPATIBLE_SUBROUTINES = 0x8E4B + /// + CompatibleSubroutines = ((int)0x8E4B), + /// + /// Original was GL_FIRST_VERTEX_CONVENTION = 0x8E4D + /// + FirstVertexConvention = ((int)0x8E4D), + /// /// Original was GL_FIRST_VERTEX_CONVENTION_EXT = 0x8E4D /// FirstVertexConventionExt = ((int)0x8E4D), @@ -9030,6 +9914,10 @@ namespace OpenTK.Graphics.ES30 /// FirstVertexConventionOes = ((int)0x8E4D), /// + /// Original was GL_LAST_VERTEX_CONVENTION = 0x8E4E + /// + LastVertexConvention = ((int)0x8E4E), + /// /// Original was GL_LAST_VERTEX_CONVENTION_EXT = 0x8E4E /// LastVertexConventionExt = ((int)0x8E4E), @@ -9062,6 +9950,10 @@ namespace OpenTK.Graphics.ES30 /// FragmentInterpolationOffsetBitsOes = ((int)0x8E5D), /// + /// Original was GL_PATCH_VERTICES = 0x8E72 + /// + PatchVertices = ((int)0x8E72), + /// /// Original was GL_PATCH_VERTICES_EXT = 0x8E72 /// PatchVerticesExt = ((int)0x8E72), @@ -9070,6 +9962,14 @@ namespace OpenTK.Graphics.ES30 /// PatchVerticesOes = ((int)0x8E72), /// + /// Original was GL_PATCH_DEFAULT_INNER_LEVEL = 0x8E73 + /// + PatchDefaultInnerLevel = ((int)0x8E73), + /// + /// Original was GL_PATCH_DEFAULT_OUTER_LEVEL = 0x8E74 + /// + PatchDefaultOuterLevel = ((int)0x8E74), + /// /// Original was GL_TESS_CONTROL_OUTPUT_VERTICES_EXT = 0x8E75 /// TessControlOutputVerticesExt = ((int)0x8E75), @@ -9214,6 +10114,10 @@ namespace OpenTK.Graphics.ES30 /// MaxTessEvaluationOutputComponentsOes = ((int)0x8E86), /// + /// Original was GL_TESS_EVALUATION_SHADER = 0x8E87 + /// + TessEvaluationShader = ((int)0x8E87), + /// /// Original was GL_TESS_EVALUATION_SHADER_EXT = 0x8E87 /// TessEvaluationShaderExt = ((int)0x8E87), @@ -9222,6 +10126,10 @@ namespace OpenTK.Graphics.ES30 /// TessEvaluationShaderOes = ((int)0x8E87), /// + /// Original was GL_TESS_CONTROL_SHADER = 0x8E88 + /// + TessControlShader = ((int)0x8E88), + /// /// Original was GL_TESS_CONTROL_SHADER_EXT = 0x8E88 /// TessControlShaderExt = ((int)0x8E88), @@ -9246,18 +10154,34 @@ namespace OpenTK.Graphics.ES30 /// MaxTessEvaluationUniformBlocksOes = ((int)0x8E8A), /// + /// Original was GL_COMPRESSED_RGBA_BPTC_UNORM = 0x8E8C + /// + CompressedRgbaBptcUnorm = ((int)0x8E8C), + /// /// Original was GL_COMPRESSED_RGBA_BPTC_UNORM_EXT = 0x8E8C /// CompressedRgbaBptcUnormExt = ((int)0x8E8C), /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM = 0x8E8D + /// + CompressedSrgbAlphaBptcUnorm = ((int)0x8E8D), + /// /// Original was GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM_EXT = 0x8E8D /// CompressedSrgbAlphaBptcUnormExt = ((int)0x8E8D), /// + /// Original was GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT = 0x8E8E + /// + CompressedRgbBptcSignedFloat = ((int)0x8E8E), + /// /// Original was GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT_EXT = 0x8E8E /// CompressedRgbBptcSignedFloatExt = ((int)0x8E8E), /// + /// Original was GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT = 0x8E8F + /// + CompressedRgbBptcUnsignedFloat = ((int)0x8E8F), + /// /// Original was GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT_EXT = 0x8E8F /// CompressedRgbBptcUnsignedFloatExt = ((int)0x8E8F), @@ -9394,14 +10318,26 @@ namespace OpenTK.Graphics.ES30 /// Rgba8Snorm = ((int)0x8F97), /// + /// Original was GL_R16_SNORM = 0x8F98 + /// + R16Snorm = ((int)0x8F98), + /// /// Original was GL_R16_SNORM_EXT = 0x8F98 /// R16SnormExt = ((int)0x8F98), /// + /// Original was GL_RG16_SNORM = 0x8F99 + /// + Rg16Snorm = ((int)0x8F99), + /// /// Original was GL_RG16_SNORM_EXT = 0x8F99 /// Rg16SnormExt = ((int)0x8F99), /// + /// Original was GL_RGB16_SNORM = 0x8F9A + /// + Rgb16Snorm = ((int)0x8F9A), + /// /// Original was GL_RGB16_SNORM_EXT = 0x8F9A /// Rgb16SnormExt = ((int)0x8F9A), @@ -9954,6 +10890,10 @@ namespace OpenTK.Graphics.ES30 /// PathCoverDepthFuncNv = ((int)0x90BF), /// + /// Original was GL_IMAGE_FORMAT_COMPATIBILITY_TYPE = 0x90C7 + /// + ImageFormatCompatibilityType = ((int)0x90C7), + /// /// Original was GL_MAX_TESS_CONTROL_IMAGE_UNIFORMS_EXT = 0x90CB /// MaxTessControlImageUniformsExt = ((int)0x90CB), @@ -10010,6 +10950,14 @@ namespace OpenTK.Graphics.ES30 /// DepthStencilTextureMode = ((int)0x90EA), /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_COMPUTE_SHADER = 0x90EC + /// + UniformBlockReferencedByComputeShader = ((int)0x90EC), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_COMPUTE_SHADER = 0x90ED + /// + AtomicCounterBufferReferencedByComputeShader = ((int)0x90ED), + /// /// Original was GL_DISPATCH_INDIRECT_BUFFER = 0x90EE /// DispatchIndirectBuffer = ((int)0x90EE), @@ -10342,6 +11290,10 @@ namespace OpenTK.Graphics.ES30 /// QueryBuffer = ((int)0x9192), /// + /// Original was GL_QUERY_RESULT_NO_WAIT = 0x9194 + /// + QueryResultNoWait = ((int)0x9194), + /// /// Original was GL_VIRTUAL_PAGE_SIZE_X_EXT = 0x9195 /// VirtualPageSizeXExt = ((int)0x9195), @@ -10410,6 +11362,18 @@ namespace OpenTK.Graphics.ES30 /// NumSparseLevelsExt = ((int)0x91AA), /// + /// Original was GL_MAX_SHADER_COMPILER_THREADS_KHR = 0x91B0 + /// + MaxShaderCompilerThreadsKhr = ((int)0x91B0), + /// + /// Original was GL_COMPLETION_STATUS_KHR = 0x91B1 + /// + CompletionStatusKhr = ((int)0x91B1), + /// + /// Original was GL_COMPUTE_SHADER = 0x91B9 + /// + ComputeShader = ((int)0x91B9), + /// /// Original was GL_SHADER_BINARY_DMP = 0x9250 /// ShaderBinaryDmp = ((int)0x9250), @@ -10730,6 +11694,42 @@ namespace OpenTK.Graphics.ES30 /// AtomicCounterBuffer = ((int)0x92C0), /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_BINDING = 0x92C1 + /// + AtomicCounterBufferBinding = ((int)0x92C1), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_DATA_SIZE = 0x92C4 + /// + AtomicCounterBufferDataSize = ((int)0x92C4), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTERS = 0x92C5 + /// + AtomicCounterBufferActiveAtomicCounters = ((int)0x92C5), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTER_INDICES = 0x92C6 + /// + AtomicCounterBufferActiveAtomicCounterIndices = ((int)0x92C6), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_VERTEX_SHADER = 0x92C7 + /// + AtomicCounterBufferReferencedByVertexShader = ((int)0x92C7), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_CONTROL_SHADER = 0x92C8 + /// + AtomicCounterBufferReferencedByTessControlShader = ((int)0x92C8), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_EVALUATION_SHADER = 0x92C9 + /// + AtomicCounterBufferReferencedByTessEvaluationShader = ((int)0x92C9), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_GEOMETRY_SHADER = 0x92CA + /// + AtomicCounterBufferReferencedByGeometryShader = ((int)0x92CA), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_FRAGMENT_SHADER = 0x92CB + /// + AtomicCounterBufferReferencedByFragmentShader = ((int)0x92CB), + /// /// Original was GL_MAX_TESS_CONTROL_ATOMIC_COUNTER_BUFFERS_EXT = 0x92CD /// MaxTessControlAtomicCounterBuffersExt = ((int)0x92CD), @@ -10778,6 +11778,14 @@ namespace OpenTK.Graphics.ES30 /// MaxGeometryAtomicCountersOes = ((int)0x92D5), /// + /// Original was GL_ACTIVE_ATOMIC_COUNTER_BUFFERS = 0x92D9 + /// + ActiveAtomicCounterBuffers = ((int)0x92D9), + /// + /// Original was GL_UNIFORM_ATOMIC_COUNTER_BUFFER_INDEX = 0x92DA + /// + UniformAtomicCounterBufferIndex = ((int)0x92DA), + /// /// Original was GL_FRAGMENT_COVERAGE_TO_COLOR_NV = 0x92DD /// FragmentCoverageToColorNv = ((int)0x92DD), @@ -10794,6 +11802,30 @@ namespace OpenTK.Graphics.ES30 /// DebugOutputKhr = ((int)0x92E0), /// + /// Original was GL_UNIFORM = 0x92E1 + /// + Uniform = ((int)0x92E1), + /// + /// Original was GL_UNIFORM_BLOCK = 0x92E2 + /// + UniformBlock = ((int)0x92E2), + /// + /// Original was GL_PROGRAM_INPUT = 0x92E3 + /// + ProgramInput = ((int)0x92E3), + /// + /// Original was GL_PROGRAM_OUTPUT = 0x92E4 + /// + ProgramOutput = ((int)0x92E4), + /// + /// Original was GL_BUFFER_VARIABLE = 0x92E5 + /// + BufferVariable = ((int)0x92E5), + /// + /// Original was GL_SHADER_STORAGE_BLOCK = 0x92E6 + /// + ShaderStorageBlock = ((int)0x92E6), + /// /// Original was GL_IS_PER_PATCH_EXT = 0x92E7 /// IsPerPatchExt = ((int)0x92E7), @@ -10802,6 +11834,74 @@ namespace OpenTK.Graphics.ES30 /// IsPerPatchOes = ((int)0x92E7), /// + /// Original was GL_VERTEX_SUBROUTINE = 0x92E8 + /// + VertexSubroutine = ((int)0x92E8), + /// + /// Original was GL_TESS_CONTROL_SUBROUTINE = 0x92E9 + /// + TessControlSubroutine = ((int)0x92E9), + /// + /// Original was GL_TESS_EVALUATION_SUBROUTINE = 0x92EA + /// + TessEvaluationSubroutine = ((int)0x92EA), + /// + /// Original was GL_GEOMETRY_SUBROUTINE = 0x92EB + /// + GeometrySubroutine = ((int)0x92EB), + /// + /// Original was GL_FRAGMENT_SUBROUTINE = 0x92EC + /// + FragmentSubroutine = ((int)0x92EC), + /// + /// Original was GL_COMPUTE_SUBROUTINE = 0x92ED + /// + ComputeSubroutine = ((int)0x92ED), + /// + /// Original was GL_VERTEX_SUBROUTINE_UNIFORM = 0x92EE + /// + VertexSubroutineUniform = ((int)0x92EE), + /// + /// Original was GL_TESS_CONTROL_SUBROUTINE_UNIFORM = 0x92EF + /// + TessControlSubroutineUniform = ((int)0x92EF), + /// + /// Original was GL_TESS_EVALUATION_SUBROUTINE_UNIFORM = 0x92F0 + /// + TessEvaluationSubroutineUniform = ((int)0x92F0), + /// + /// Original was GL_GEOMETRY_SUBROUTINE_UNIFORM = 0x92F1 + /// + GeometrySubroutineUniform = ((int)0x92F1), + /// + /// Original was GL_FRAGMENT_SUBROUTINE_UNIFORM = 0x92F2 + /// + FragmentSubroutineUniform = ((int)0x92F2), + /// + /// Original was GL_COMPUTE_SUBROUTINE_UNIFORM = 0x92F3 + /// + ComputeSubroutineUniform = ((int)0x92F3), + /// + /// Original was GL_TRANSFORM_FEEDBACK_VARYING = 0x92F4 + /// + TransformFeedbackVarying = ((int)0x92F4), + /// + /// Original was GL_ACTIVE_RESOURCES = 0x92F5 + /// + ActiveResources = ((int)0x92F5), + /// + /// Original was GL_MAX_NAME_LENGTH = 0x92F6 + /// + MaxNameLength = ((int)0x92F6), + /// + /// Original was GL_MAX_NUM_ACTIVE_VARIABLES = 0x92F7 + /// + MaxNumActiveVariables = ((int)0x92F7), + /// + /// Original was GL_MAX_NUM_COMPATIBLE_SUBROUTINES = 0x92F8 + /// + MaxNumCompatibleSubroutines = ((int)0x92F8), + /// /// Original was GL_REFERENCED_BY_TESS_CONTROL_SHADER_EXT = 0x9307 /// ReferencedByTessControlShaderExt = ((int)0x9307), @@ -10830,6 +11930,18 @@ namespace OpenTK.Graphics.ES30 /// LocationIndexExt = ((int)0x930F), /// + /// Original was GL_FRAMEBUFFER_DEFAULT_WIDTH = 0x9310 + /// + FramebufferDefaultWidth = ((int)0x9310), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_HEIGHT = 0x9311 + /// + FramebufferDefaultHeight = ((int)0x9311), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_LAYERS = 0x9312 + /// + FramebufferDefaultLayers = ((int)0x9312), + /// /// Original was GL_FRAMEBUFFER_DEFAULT_LAYERS_EXT = 0x9312 /// FramebufferDefaultLayersExt = ((int)0x9312), @@ -10838,6 +11950,14 @@ namespace OpenTK.Graphics.ES30 /// FramebufferDefaultLayersOes = ((int)0x9312), /// + /// Original was GL_FRAMEBUFFER_DEFAULT_SAMPLES = 0x9313 + /// + FramebufferDefaultSamples = ((int)0x9313), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_FIXED_SAMPLE_LOCATIONS = 0x9314 + /// + FramebufferDefaultFixedSampleLocations = ((int)0x9314), + /// /// Original was GL_MAX_FRAMEBUFFER_LAYERS_EXT = 0x9317 /// MaxFramebufferLayersExt = ((int)0x9317), @@ -10994,6 +12114,34 @@ namespace OpenTK.Graphics.ES30 /// ViewportSwizzleWNv = ((int)0x935B), /// + /// Original was GL_CLIP_ORIGIN_EXT = 0x935C + /// + ClipOriginExt = ((int)0x935C), + /// + /// Original was GL_CLIP_DEPTH_MODE_EXT = 0x935D + /// + ClipDepthModeExt = ((int)0x935D), + /// + /// Original was GL_NEGATIVE_ONE_TO_ONE = 0x935E + /// + NegativeOneToOne = ((int)0x935E), + /// + /// Original was GL_NEGATIVE_ONE_TO_ONE_EXT = 0x935E + /// + NegativeOneToOneExt = ((int)0x935E), + /// + /// Original was GL_ZERO_TO_ONE = 0x935F + /// + ZeroToOne = ((int)0x935F), + /// + /// Original was GL_ZERO_TO_ONE_EXT = 0x935F + /// + ZeroToOneExt = ((int)0x935F), + /// + /// Original was GL_CLEAR_TEXTURE = 0x9365 + /// + ClearTexture = ((int)0x9365), + /// /// Original was GL_FONT_GLYPHS_AVAILABLE_NV = 0x9368 /// FontGlyphsAvailableNv = ((int)0x9368), @@ -11034,6 +12182,18 @@ namespace OpenTK.Graphics.ES30 /// ConformantNv = ((int)0x9374), /// + /// Original was GL_VIEWPORT_POSITION_W_SCALE_NV = 0x937C + /// + ViewportPositionWScaleNv = ((int)0x937C), + /// + /// Original was GL_VIEWPORT_POSITION_W_SCALE_X_COEFF_NV = 0x937D + /// + ViewportPositionWScaleXCoeffNv = ((int)0x937D), + /// + /// Original was GL_VIEWPORT_POSITION_W_SCALE_Y_COEFF_NV = 0x937E + /// + ViewportPositionWScaleYCoeffNv = ((int)0x937E), + /// /// Original was GL_NUM_SAMPLE_COUNTS = 0x9380 /// NumSampleCounts = ((int)0x9380), @@ -11322,6 +12482,14 @@ namespace OpenTK.Graphics.ES30 /// PerfqueryGpaExtendedCountersIntel = ((int)0x9500), /// + /// Original was GL_LAYOUT_DEPTH_READ_ONLY_STENCIL_ATTACHMENT_EXT = 0x9530 + /// + LayoutDepthReadOnlyStencilAttachmentExt = ((int)0x9530), + /// + /// Original was GL_LAYOUT_DEPTH_ATTACHMENT_STENCIL_READ_ONLY_EXT = 0x9531 + /// + LayoutDepthAttachmentStencilReadOnlyExt = ((int)0x9531), + /// /// Original was GL_CONSERVATIVE_RASTER_MODE_NV = 0x954D /// ConservativeRasterModeNv = ((int)0x954D), @@ -11334,6 +12502,10 @@ namespace OpenTK.Graphics.ES30 /// ConservativeRasterModePreSnapTrianglesNv = ((int)0x954F), /// + /// Original was GL_CONSERVATIVE_RASTER_MODE_PRE_SNAP_NV = 0x9550 + /// + ConservativeRasterModePreSnapNv = ((int)0x9550), + /// /// Original was GL_TEXTURE_TILING_EXT = 0x9580 /// TextureTilingExt = ((int)0x9580), @@ -12193,6 +13365,53 @@ namespace OpenTK.Graphics.ES30 { } + /// + /// Not used directly. + /// + public enum AtomicCounterBufferPName : int + { + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_COMPUTE_SHADER = 0x90ED + /// + AtomicCounterBufferReferencedByComputeShader = ((int)0x90ED), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_BINDING = 0x92C1 + /// + AtomicCounterBufferBinding = ((int)0x92C1), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_DATA_SIZE = 0x92C4 + /// + AtomicCounterBufferDataSize = ((int)0x92C4), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTERS = 0x92C5 + /// + AtomicCounterBufferActiveAtomicCounters = ((int)0x92C5), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTER_INDICES = 0x92C6 + /// + AtomicCounterBufferActiveAtomicCounterIndices = ((int)0x92C6), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_VERTEX_SHADER = 0x92C7 + /// + AtomicCounterBufferReferencedByVertexShader = ((int)0x92C7), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_CONTROL_SHADER = 0x92C8 + /// + AtomicCounterBufferReferencedByTessControlShader = ((int)0x92C8), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_EVALUATION_SHADER = 0x92C9 + /// + AtomicCounterBufferReferencedByTessEvaluationShader = ((int)0x92C9), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_GEOMETRY_SHADER = 0x92CA + /// + AtomicCounterBufferReferencedByGeometryShader = ((int)0x92CA), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_FRAGMENT_SHADER = 0x92CB + /// + AtomicCounterBufferReferencedByFragmentShader = ((int)0x92CB), + } + /// /// Not used directly. /// @@ -12301,6 +13520,237 @@ namespace OpenTK.Graphics.ES30 AllAttribBits = unchecked((int)0xFFFFFFFF), } + /// + /// Not used directly. + /// + public enum AttributeType : int + { + /// + /// Original was GL_FLOAT_VEC2 = 0x8B50 + /// + FloatVec2 = ((int)0x8B50), + /// + /// Original was GL_FLOAT_VEC2_ARB = 0x8B50 + /// + FloatVec2Arb = ((int)0x8B50), + /// + /// Original was GL_FLOAT_VEC3 = 0x8B51 + /// + FloatVec3 = ((int)0x8B51), + /// + /// Original was GL_FLOAT_VEC3_ARB = 0x8B51 + /// + FloatVec3Arb = ((int)0x8B51), + /// + /// Original was GL_FLOAT_VEC4 = 0x8B52 + /// + FloatVec4 = ((int)0x8B52), + /// + /// Original was GL_FLOAT_VEC4_ARB = 0x8B52 + /// + FloatVec4Arb = ((int)0x8B52), + /// + /// Original was GL_INT_VEC2 = 0x8B53 + /// + IntVec2 = ((int)0x8B53), + /// + /// Original was GL_INT_VEC2_ARB = 0x8B53 + /// + IntVec2Arb = ((int)0x8B53), + /// + /// Original was GL_INT_VEC3 = 0x8B54 + /// + IntVec3 = ((int)0x8B54), + /// + /// Original was GL_INT_VEC3_ARB = 0x8B54 + /// + IntVec3Arb = ((int)0x8B54), + /// + /// Original was GL_INT_VEC4 = 0x8B55 + /// + IntVec4 = ((int)0x8B55), + /// + /// Original was GL_INT_VEC4_ARB = 0x8B55 + /// + IntVec4Arb = ((int)0x8B55), + /// + /// Original was GL_BOOL = 0x8B56 + /// + Bool = ((int)0x8B56), + /// + /// Original was GL_BOOL_ARB = 0x8B56 + /// + BoolArb = ((int)0x8B56), + /// + /// Original was GL_BOOL_VEC2 = 0x8B57 + /// + BoolVec2 = ((int)0x8B57), + /// + /// Original was GL_BOOL_VEC2_ARB = 0x8B57 + /// + BoolVec2Arb = ((int)0x8B57), + /// + /// Original was GL_BOOL_VEC3 = 0x8B58 + /// + BoolVec3 = ((int)0x8B58), + /// + /// Original was GL_BOOL_VEC3_ARB = 0x8B58 + /// + BoolVec3Arb = ((int)0x8B58), + /// + /// Original was GL_BOOL_VEC4 = 0x8B59 + /// + BoolVec4 = ((int)0x8B59), + /// + /// Original was GL_BOOL_VEC4_ARB = 0x8B59 + /// + BoolVec4Arb = ((int)0x8B59), + /// + /// Original was GL_FLOAT_MAT2 = 0x8B5A + /// + FloatMat2 = ((int)0x8B5A), + /// + /// Original was GL_FLOAT_MAT2_ARB = 0x8B5A + /// + FloatMat2Arb = ((int)0x8B5A), + /// + /// Original was GL_FLOAT_MAT3 = 0x8B5B + /// + FloatMat3 = ((int)0x8B5B), + /// + /// Original was GL_FLOAT_MAT3_ARB = 0x8B5B + /// + FloatMat3Arb = ((int)0x8B5B), + /// + /// Original was GL_FLOAT_MAT4 = 0x8B5C + /// + FloatMat4 = ((int)0x8B5C), + /// + /// Original was GL_FLOAT_MAT4_ARB = 0x8B5C + /// + FloatMat4Arb = ((int)0x8B5C), + /// + /// Original was GL_SAMPLER_1D = 0x8B5D + /// + Sampler1D = ((int)0x8B5D), + /// + /// Original was GL_SAMPLER_1D_ARB = 0x8B5D + /// + Sampler1DArb = ((int)0x8B5D), + /// + /// Original was GL_SAMPLER_2D = 0x8B5E + /// + Sampler2D = ((int)0x8B5E), + /// + /// Original was GL_SAMPLER_2D_ARB = 0x8B5E + /// + Sampler2DArb = ((int)0x8B5E), + /// + /// Original was GL_SAMPLER_3D = 0x8B5F + /// + Sampler3D = ((int)0x8B5F), + /// + /// Original was GL_SAMPLER_3D_ARB = 0x8B5F + /// + Sampler3DArb = ((int)0x8B5F), + /// + /// Original was GL_SAMPLER_3D_OES = 0x8B5F + /// + Sampler3DOes = ((int)0x8B5F), + /// + /// Original was GL_SAMPLER_CUBE = 0x8B60 + /// + SamplerCube = ((int)0x8B60), + /// + /// Original was GL_SAMPLER_CUBE_ARB = 0x8B60 + /// + SamplerCubeArb = ((int)0x8B60), + /// + /// Original was GL_SAMPLER_1D_SHADOW = 0x8B61 + /// + Sampler1DShadow = ((int)0x8B61), + /// + /// Original was GL_SAMPLER_1D_SHADOW_ARB = 0x8B61 + /// + Sampler1DShadowArb = ((int)0x8B61), + /// + /// Original was GL_SAMPLER_2D_SHADOW = 0x8B62 + /// + Sampler2DShadow = ((int)0x8B62), + /// + /// Original was GL_SAMPLER_2D_SHADOW_ARB = 0x8B62 + /// + Sampler2DShadowArb = ((int)0x8B62), + /// + /// Original was GL_SAMPLER_2D_SHADOW_EXT = 0x8B62 + /// + Sampler2DShadowExt = ((int)0x8B62), + /// + /// Original was GL_SAMPLER_2D_RECT = 0x8B63 + /// + Sampler2DRect = ((int)0x8B63), + /// + /// Original was GL_SAMPLER_2D_RECT_ARB = 0x8B63 + /// + Sampler2DRectArb = ((int)0x8B63), + /// + /// Original was GL_SAMPLER_2D_RECT_SHADOW = 0x8B64 + /// + Sampler2DRectShadow = ((int)0x8B64), + /// + /// Original was GL_SAMPLER_2D_RECT_SHADOW_ARB = 0x8B64 + /// + Sampler2DRectShadowArb = ((int)0x8B64), + /// + /// Original was GL_FLOAT_MAT2x3 = 0x8B65 + /// + FloatMat2x3 = ((int)0x8B65), + /// + /// Original was GL_FLOAT_MAT2x3_NV = 0x8B65 + /// + FloatMat2x3Nv = ((int)0x8B65), + /// + /// Original was GL_FLOAT_MAT2x4 = 0x8B66 + /// + FloatMat2x4 = ((int)0x8B66), + /// + /// Original was GL_FLOAT_MAT2x4_NV = 0x8B66 + /// + FloatMat2x4Nv = ((int)0x8B66), + /// + /// Original was GL_FLOAT_MAT3x2 = 0x8B67 + /// + FloatMat3x2 = ((int)0x8B67), + /// + /// Original was GL_FLOAT_MAT3x2_NV = 0x8B67 + /// + FloatMat3x2Nv = ((int)0x8B67), + /// + /// Original was GL_FLOAT_MAT3x4 = 0x8B68 + /// + FloatMat3x4 = ((int)0x8B68), + /// + /// Original was GL_FLOAT_MAT3x4_NV = 0x8B68 + /// + FloatMat3x4Nv = ((int)0x8B68), + /// + /// Original was GL_FLOAT_MAT4x2 = 0x8B69 + /// + FloatMat4x2 = ((int)0x8B69), + /// + /// Original was GL_FLOAT_MAT4x2_NV = 0x8B69 + /// + FloatMat4x2Nv = ((int)0x8B69), + /// + /// Original was GL_FLOAT_MAT4x3 = 0x8B6A + /// + FloatMat4x3 = ((int)0x8B6A), + /// + /// Original was GL_FLOAT_MAT4x3_NV = 0x8B6A + /// + FloatMat4x3Nv = ((int)0x8B6A), + } + /// /// Not used directly. /// @@ -12336,6 +13786,17 @@ namespace OpenTK.Graphics.ES30 TriangleFan = ((int)0X0006), } + /// + /// Not used directly. + /// + public enum BindTransformFeedbackTarget : int + { + /// + /// Original was GL_TRANSFORM_FEEDBACK = 0x8E22 + /// + TransformFeedback = ((int)0x8E22), + } + /// /// Used in GL.BlendEquation, GL.BlendEquationSeparate and 4 other functions /// @@ -12373,6 +13834,10 @@ namespace OpenTK.Graphics.ES30 /// LogicOp = ((int)0x0BF1), /// + /// Original was GL_FUNC_ADD = 0x8006 + /// + FuncAdd = ((int)0x8006), + /// /// Original was GL_FUNC_ADD_EXT = 0x8006 /// FuncAddExt = ((int)0x8006), @@ -12385,10 +13850,18 @@ namespace OpenTK.Graphics.ES30 /// MaxExt = ((int)0x8008), /// + /// Original was GL_FUNC_SUBTRACT = 0x800A + /// + FuncSubtract = ((int)0x800A), + /// /// Original was GL_FUNC_SUBTRACT_EXT = 0x800A /// FuncSubtractExt = ((int)0x800A), /// + /// Original was GL_FUNC_REVERSE_SUBTRACT = 0x800B + /// + FuncReverseSubtract = ((int)0x800B), + /// /// Original was GL_FUNC_REVERSE_SUBTRACT_EXT = 0x800B /// FuncReverseSubtractExt = ((int)0x800B), @@ -12402,6 +13875,81 @@ namespace OpenTK.Graphics.ES30 AlphaMaxSgix = ((int)0x8321), } + /// + /// Used in GL.Ext.BlendFunc, GL.Ext.BlendFuncSeparate and 2 other functions + /// + public enum BlendingFactor : int + { + /// + /// Original was GL_ZERO = 0 + /// + Zero = ((int)0), + /// + /// Original was GL_SRC_COLOR = 0x0300 + /// + SrcColor = ((int)0x0300), + /// + /// Original was GL_ONE_MINUS_SRC_COLOR = 0x0301 + /// + OneMinusSrcColor = ((int)0x0301), + /// + /// Original was GL_SRC_ALPHA = 0x0302 + /// + SrcAlpha = ((int)0x0302), + /// + /// Original was GL_ONE_MINUS_SRC_ALPHA = 0x0303 + /// + OneMinusSrcAlpha = ((int)0x0303), + /// + /// Original was GL_DST_ALPHA = 0x0304 + /// + DstAlpha = ((int)0x0304), + /// + /// Original was GL_ONE_MINUS_DST_ALPHA = 0x0305 + /// + OneMinusDstAlpha = ((int)0x0305), + /// + /// Original was GL_DST_COLOR = 0x0306 + /// + DstColor = ((int)0x0306), + /// + /// Original was GL_ONE_MINUS_DST_COLOR = 0x0307 + /// + OneMinusDstColor = ((int)0x0307), + /// + /// Original was GL_SRC_ALPHA_SATURATE = 0x0308 + /// + SrcAlphaSaturate = ((int)0x0308), + /// + /// Original was GL_CONSTANT_COLOR = 0x8001 + /// + ConstantColor = ((int)0x8001), + /// + /// Original was GL_ONE_MINUS_CONSTANT_COLOR = 0x8002 + /// + OneMinusConstantColor = ((int)0x8002), + /// + /// Original was GL_CONSTANT_ALPHA = 0x8003 + /// + ConstantAlpha = ((int)0x8003), + /// + /// Original was GL_ONE_MINUS_CONSTANT_ALPHA = 0x8004 + /// + OneMinusConstantAlpha = ((int)0x8004), + /// + /// Original was GL_SRC1_ALPHA = 0x8589 + /// + Src1Alpha = ((int)0x8589), + /// + /// Original was GL_SRC1_COLOR = 0x88F9 + /// + Src1Color = ((int)0x88F9), + /// + /// Original was GL_ONE = 1 + /// + One = ((int)1), + } + /// /// Used in GL.BlendFunc, GL.BlendFuncSeparate /// @@ -12452,34 +14000,18 @@ namespace OpenTK.Graphics.ES30 /// ConstantColor = ((int)0x8001), /// - /// Original was GL_CONSTANT_COLOR_EXT = 0x8001 - /// - ConstantColorExt = ((int)0x8001), - /// /// Original was GL_ONE_MINUS_CONSTANT_COLOR = 0x8002 /// OneMinusConstantColor = ((int)0x8002), /// - /// Original was GL_ONE_MINUS_CONSTANT_COLOR_EXT = 0x8002 - /// - OneMinusConstantColorExt = ((int)0x8002), - /// /// Original was GL_CONSTANT_ALPHA = 0x8003 /// ConstantAlpha = ((int)0x8003), /// - /// Original was GL_CONSTANT_ALPHA_EXT = 0x8003 - /// - ConstantAlphaExt = ((int)0x8003), - /// /// Original was GL_ONE_MINUS_CONSTANT_ALPHA = 0x8004 /// OneMinusConstantAlpha = ((int)0x8004), /// - /// Original was GL_ONE_MINUS_CONSTANT_ALPHA_EXT = 0x8004 - /// - OneMinusConstantAlphaExt = ((int)0x8004), - /// /// Original was GL_One = 1 /// One = ((int)1), @@ -12535,34 +14067,18 @@ namespace OpenTK.Graphics.ES30 /// ConstantColor = ((int)0x8001), /// - /// Original was GL_CONSTANT_COLOR_EXT = 0x8001 - /// - ConstantColorExt = ((int)0x8001), - /// /// Original was GL_ONE_MINUS_CONSTANT_COLOR = 0x8002 /// OneMinusConstantColor = ((int)0x8002), /// - /// Original was GL_ONE_MINUS_CONSTANT_COLOR_EXT = 0x8002 - /// - OneMinusConstantColorExt = ((int)0x8002), - /// /// Original was GL_CONSTANT_ALPHA = 0x8003 /// ConstantAlpha = ((int)0x8003), /// - /// Original was GL_CONSTANT_ALPHA_EXT = 0x8003 - /// - ConstantAlphaExt = ((int)0x8003), - /// /// Original was GL_ONE_MINUS_CONSTANT_ALPHA = 0x8004 /// OneMinusConstantAlpha = ((int)0x8004), /// - /// Original was GL_ONE_MINUS_CONSTANT_ALPHA_EXT = 0x8004 - /// - OneMinusConstantAlphaExt = ((int)0x8004), - /// /// Original was GL_One = 1 /// One = ((int)1), @@ -12574,13 +14090,13 @@ namespace OpenTK.Graphics.ES30 public enum BlitFramebufferFilter : int { /// - /// Original was GL_NEAREST = 0X2600 + /// Original was GL_NEAREST = 0x2600 /// - Nearest = ((int)0X2600), + Nearest = ((int)0x2600), /// - /// Original was GL_LINEAR = 0X2601 + /// Original was GL_LINEAR = 0x2601 /// - Linear = ((int)0X2601), + Linear = ((int)0x2601), } /// @@ -12601,6 +14117,25 @@ namespace OpenTK.Graphics.ES30 /// /// Not used directly. /// + public enum Buffer : int + { + /// + /// Original was GL_COLOR = 0x1800 + /// + Color = ((int)0x1800), + /// + /// Original was GL_DEPTH = 0x1801 + /// + Depth = ((int)0x1801), + /// + /// Original was GL_STENCIL = 0x1802 + /// + Stencil = ((int)0x1802), + } + + /// + /// Used in GL.Oes.MapBuffer + /// public enum BufferAccessArb : int { /// @@ -12618,7 +14153,7 @@ namespace OpenTK.Graphics.ES30 } /// - /// Used in GL.MapBufferRange + /// Used in GL.MapBufferRange, GL.Ext.MapBufferRange /// [Flags] public enum BufferAccessMask : int @@ -12628,25 +14163,200 @@ namespace OpenTK.Graphics.ES30 /// MapReadBit = ((int)0x0001), /// + /// Original was GL_MAP_READ_BIT_EXT = 0x0001 + /// + MapReadBitExt = ((int)0x0001), + /// /// Original was GL_MAP_WRITE_BIT = 0x0002 /// MapWriteBit = ((int)0x0002), /// + /// Original was GL_MAP_WRITE_BIT_EXT = 0x0002 + /// + MapWriteBitExt = ((int)0x0002), + /// /// Original was GL_MAP_INVALIDATE_RANGE_BIT = 0x0004 /// MapInvalidateRangeBit = ((int)0x0004), /// + /// Original was GL_MAP_INVALIDATE_RANGE_BIT_EXT = 0x0004 + /// + MapInvalidateRangeBitExt = ((int)0x0004), + /// /// Original was GL_MAP_INVALIDATE_BUFFER_BIT = 0x0008 /// MapInvalidateBufferBit = ((int)0x0008), /// + /// Original was GL_MAP_INVALIDATE_BUFFER_BIT_EXT = 0x0008 + /// + MapInvalidateBufferBitExt = ((int)0x0008), + /// /// Original was GL_MAP_FLUSH_EXPLICIT_BIT = 0x0010 /// MapFlushExplicitBit = ((int)0x0010), /// + /// Original was GL_MAP_FLUSH_EXPLICIT_BIT_EXT = 0x0010 + /// + MapFlushExplicitBitExt = ((int)0x0010), + /// /// Original was GL_MAP_UNSYNCHRONIZED_BIT = 0x0020 /// MapUnsynchronizedBit = ((int)0x0020), + /// + /// Original was GL_MAP_UNSYNCHRONIZED_BIT_EXT = 0x0020 + /// + MapUnsynchronizedBitExt = ((int)0x0020), + /// + /// Original was GL_MAP_PERSISTENT_BIT = 0x0040 + /// + MapPersistentBit = ((int)0x0040), + /// + /// Original was GL_MAP_PERSISTENT_BIT_EXT = 0x0040 + /// + MapPersistentBitExt = ((int)0x0040), + /// + /// Original was GL_MAP_COHERENT_BIT = 0x0080 + /// + MapCoherentBit = ((int)0x0080), + /// + /// Original was GL_MAP_COHERENT_BIT_EXT = 0x0080 + /// + MapCoherentBitExt = ((int)0x0080), + } + + /// + /// Used in GL.Qcom.EndTiling, GL.Qcom.StartTiling + /// + public enum BufferBitQcom : int + { + /// + /// Original was GL_COLOR_BUFFER_BIT0_QCOM = 0x00000001 + /// + ColorBufferBit0Qcom = ((int)0x00000001), + /// + /// Original was GL_COLOR_BUFFER_BIT1_QCOM = 0x00000002 + /// + ColorBufferBit1Qcom = ((int)0x00000002), + /// + /// Original was GL_COLOR_BUFFER_BIT2_QCOM = 0x00000004 + /// + ColorBufferBit2Qcom = ((int)0x00000004), + /// + /// Original was GL_COLOR_BUFFER_BIT3_QCOM = 0x00000008 + /// + ColorBufferBit3Qcom = ((int)0x00000008), + /// + /// Original was GL_COLOR_BUFFER_BIT4_QCOM = 0x00000010 + /// + ColorBufferBit4Qcom = ((int)0x00000010), + /// + /// Original was GL_COLOR_BUFFER_BIT5_QCOM = 0x00000020 + /// + ColorBufferBit5Qcom = ((int)0x00000020), + /// + /// Original was GL_COLOR_BUFFER_BIT6_QCOM = 0x00000040 + /// + ColorBufferBit6Qcom = ((int)0x00000040), + /// + /// Original was GL_COLOR_BUFFER_BIT7_QCOM = 0x00000080 + /// + ColorBufferBit7Qcom = ((int)0x00000080), + /// + /// Original was GL_DEPTH_BUFFER_BIT0_QCOM = 0x00000100 + /// + DepthBufferBit0Qcom = ((int)0x00000100), + /// + /// Original was GL_DEPTH_BUFFER_BIT1_QCOM = 0x00000200 + /// + DepthBufferBit1Qcom = ((int)0x00000200), + /// + /// Original was GL_DEPTH_BUFFER_BIT2_QCOM = 0x00000400 + /// + DepthBufferBit2Qcom = ((int)0x00000400), + /// + /// Original was GL_DEPTH_BUFFER_BIT3_QCOM = 0x00000800 + /// + DepthBufferBit3Qcom = ((int)0x00000800), + /// + /// Original was GL_DEPTH_BUFFER_BIT4_QCOM = 0x00001000 + /// + DepthBufferBit4Qcom = ((int)0x00001000), + /// + /// Original was GL_DEPTH_BUFFER_BIT5_QCOM = 0x00002000 + /// + DepthBufferBit5Qcom = ((int)0x00002000), + /// + /// Original was GL_DEPTH_BUFFER_BIT6_QCOM = 0x00004000 + /// + DepthBufferBit6Qcom = ((int)0x00004000), + /// + /// Original was GL_DEPTH_BUFFER_BIT7_QCOM = 0x00008000 + /// + DepthBufferBit7Qcom = ((int)0x00008000), + /// + /// Original was GL_STENCIL_BUFFER_BIT0_QCOM = 0x00010000 + /// + StencilBufferBit0Qcom = ((int)0x00010000), + /// + /// Original was GL_STENCIL_BUFFER_BIT1_QCOM = 0x00020000 + /// + StencilBufferBit1Qcom = ((int)0x00020000), + /// + /// Original was GL_STENCIL_BUFFER_BIT2_QCOM = 0x00040000 + /// + StencilBufferBit2Qcom = ((int)0x00040000), + /// + /// Original was GL_STENCIL_BUFFER_BIT3_QCOM = 0x00080000 + /// + StencilBufferBit3Qcom = ((int)0x00080000), + /// + /// Original was GL_STENCIL_BUFFER_BIT4_QCOM = 0x00100000 + /// + StencilBufferBit4Qcom = ((int)0x00100000), + /// + /// Original was GL_STENCIL_BUFFER_BIT5_QCOM = 0x00200000 + /// + StencilBufferBit5Qcom = ((int)0x00200000), + /// + /// Original was GL_STENCIL_BUFFER_BIT6_QCOM = 0x00400000 + /// + StencilBufferBit6Qcom = ((int)0x00400000), + /// + /// Original was GL_STENCIL_BUFFER_BIT7_QCOM = 0x00800000 + /// + StencilBufferBit7Qcom = ((int)0x00800000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT0_QCOM = 0x01000000 + /// + MultisampleBufferBit0Qcom = ((int)0x01000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT1_QCOM = 0x02000000 + /// + MultisampleBufferBit1Qcom = ((int)0x02000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT2_QCOM = 0x04000000 + /// + MultisampleBufferBit2Qcom = ((int)0x04000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT3_QCOM = 0x08000000 + /// + MultisampleBufferBit3Qcom = ((int)0x08000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT4_QCOM = 0x10000000 + /// + MultisampleBufferBit4Qcom = ((int)0x10000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT5_QCOM = 0x20000000 + /// + MultisampleBufferBit5Qcom = ((int)0x20000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT6_QCOM = 0x40000000 + /// + MultisampleBufferBit6Qcom = ((int)0x40000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT7_QCOM = 0x80000000 + /// + MultisampleBufferBit7Qcom = unchecked((int)0x80000000), } /// @@ -12714,6 +14424,69 @@ namespace OpenTK.Graphics.ES30 TransformFeedbackBuffer = ((int)0x8C8E), } + /// + /// Used in GL.Ext.BufferStorage + /// + public enum BufferStorageTarget : int + { + /// + /// Original was GL_ARRAY_BUFFER = 0x8892 + /// + ArrayBuffer = ((int)0x8892), + /// + /// Original was GL_ELEMENT_ARRAY_BUFFER = 0x8893 + /// + ElementArrayBuffer = ((int)0x8893), + /// + /// Original was GL_PIXEL_PACK_BUFFER = 0x88EB + /// + PixelPackBuffer = ((int)0x88EB), + /// + /// Original was GL_PIXEL_UNPACK_BUFFER = 0x88EC + /// + PixelUnpackBuffer = ((int)0x88EC), + /// + /// Original was GL_UNIFORM_BUFFER = 0x8A11 + /// + UniformBuffer = ((int)0x8A11), + /// + /// Original was GL_TEXTURE_BUFFER = 0x8C2A + /// + TextureBuffer = ((int)0x8C2A), + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER = 0x8C8E + /// + TransformFeedbackBuffer = ((int)0x8C8E), + /// + /// Original was GL_COPY_READ_BUFFER = 0x8F36 + /// + CopyReadBuffer = ((int)0x8F36), + /// + /// Original was GL_COPY_WRITE_BUFFER = 0x8F37 + /// + CopyWriteBuffer = ((int)0x8F37), + /// + /// Original was GL_DRAW_INDIRECT_BUFFER = 0x8F3F + /// + DrawIndirectBuffer = ((int)0x8F3F), + /// + /// Original was GL_SHADER_STORAGE_BUFFER = 0x90D2 + /// + ShaderStorageBuffer = ((int)0x90D2), + /// + /// Original was GL_DISPATCH_INDIRECT_BUFFER = 0x90EE + /// + DispatchIndirectBuffer = ((int)0x90EE), + /// + /// Original was GL_QUERY_BUFFER = 0x9192 + /// + QueryBuffer = ((int)0x9192), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER = 0x92C0 + /// + AtomicCounterBuffer = ((int)0x92C0), + } + /// /// Used in GL.BindBuffer, GL.BufferData and 12 other functions /// @@ -12754,7 +14527,7 @@ namespace OpenTK.Graphics.ES30 } /// - /// Used in GL.Ext.BufferStorageMem + /// Used in GL.Ext.BufferStorageMem, GL.Oes.MapBuffer /// public enum BufferTargetArb : int { @@ -12921,6 +14694,25 @@ namespace OpenTK.Graphics.ES30 DynamicCopy = ((int)0x88EA), } + /// + /// Not used directly. + /// + public enum CheckFramebufferStatusTarget : int + { + /// + /// Original was GL_READ_FRAMEBUFFER = 0x8CA8 + /// + ReadFramebuffer = ((int)0x8CA8), + /// + /// Original was GL_DRAW_FRAMEBUFFER = 0x8CA9 + /// + DrawFramebuffer = ((int)0x8CA9), + /// + /// Original was GL_FRAMEBUFFER = 0x8D40 + /// + Framebuffer = ((int)0x8D40), + } + /// /// Used in GL.ClearBuffer /// @@ -13018,6 +14810,36 @@ namespace OpenTK.Graphics.ES30 SyncFlushCommandsBitApple = ((int)0x00000001), } + /// + /// Not used directly. + /// + public enum ClipControlDepth : int + { + /// + /// Original was GL_NEGATIVE_ONE_TO_ONE = 0x935E + /// + NegativeOneToOne = ((int)0x935E), + /// + /// Original was GL_ZERO_TO_ONE = 0x935F + /// + ZeroToOne = ((int)0x935F), + } + + /// + /// Not used directly. + /// + public enum ClipControlOrigin : int + { + /// + /// Original was GL_LOWER_LEFT = 0x8CA1 + /// + LowerLeft = ((int)0x8CA1), + /// + /// Original was GL_UPPER_LEFT = 0x8CA2 + /// + UpperLeft = ((int)0x8CA2), + } + /// /// Not used directly. /// @@ -13081,6 +14903,181 @@ namespace OpenTK.Graphics.ES30 ClipDistance7 = ((int)0x3007), } + /// + /// Not used directly. + /// + public enum ColorBuffer : int + { + /// + /// Original was GL_NONE = 0 + /// + None = ((int)0), + /// + /// Original was GL_FRONT_LEFT = 0x0400 + /// + FrontLeft = ((int)0x0400), + /// + /// Original was GL_FRONT_RIGHT = 0x0401 + /// + FrontRight = ((int)0x0401), + /// + /// Original was GL_BACK_LEFT = 0x0402 + /// + BackLeft = ((int)0x0402), + /// + /// Original was GL_BACK_RIGHT = 0x0403 + /// + BackRight = ((int)0x0403), + /// + /// Original was GL_FRONT = 0x0404 + /// + Front = ((int)0x0404), + /// + /// Original was GL_BACK = 0x0405 + /// + Back = ((int)0x0405), + /// + /// Original was GL_LEFT = 0x0406 + /// + Left = ((int)0x0406), + /// + /// Original was GL_RIGHT = 0x0407 + /// + Right = ((int)0x0407), + /// + /// Original was GL_FRONT_AND_BACK = 0x0408 + /// + FrontAndBack = ((int)0x0408), + /// + /// Original was GL_COLOR_ATTACHMENT0 = 0x8CE0 + /// + ColorAttachment0 = ((int)0x8CE0), + /// + /// Original was GL_COLOR_ATTACHMENT1 = 0x8CE1 + /// + ColorAttachment1 = ((int)0x8CE1), + /// + /// Original was GL_COLOR_ATTACHMENT2 = 0x8CE2 + /// + ColorAttachment2 = ((int)0x8CE2), + /// + /// Original was GL_COLOR_ATTACHMENT3 = 0x8CE3 + /// + ColorAttachment3 = ((int)0x8CE3), + /// + /// Original was GL_COLOR_ATTACHMENT4 = 0x8CE4 + /// + ColorAttachment4 = ((int)0x8CE4), + /// + /// Original was GL_COLOR_ATTACHMENT5 = 0x8CE5 + /// + ColorAttachment5 = ((int)0x8CE5), + /// + /// Original was GL_COLOR_ATTACHMENT6 = 0x8CE6 + /// + ColorAttachment6 = ((int)0x8CE6), + /// + /// Original was GL_COLOR_ATTACHMENT7 = 0x8CE7 + /// + ColorAttachment7 = ((int)0x8CE7), + /// + /// Original was GL_COLOR_ATTACHMENT8 = 0x8CE8 + /// + ColorAttachment8 = ((int)0x8CE8), + /// + /// Original was GL_COLOR_ATTACHMENT9 = 0x8CE9 + /// + ColorAttachment9 = ((int)0x8CE9), + /// + /// Original was GL_COLOR_ATTACHMENT10 = 0x8CEA + /// + ColorAttachment10 = ((int)0x8CEA), + /// + /// Original was GL_COLOR_ATTACHMENT11 = 0x8CEB + /// + ColorAttachment11 = ((int)0x8CEB), + /// + /// Original was GL_COLOR_ATTACHMENT12 = 0x8CEC + /// + ColorAttachment12 = ((int)0x8CEC), + /// + /// Original was GL_COLOR_ATTACHMENT13 = 0x8CED + /// + ColorAttachment13 = ((int)0x8CED), + /// + /// Original was GL_COLOR_ATTACHMENT14 = 0x8CEE + /// + ColorAttachment14 = ((int)0x8CEE), + /// + /// Original was GL_COLOR_ATTACHMENT15 = 0x8CEF + /// + ColorAttachment15 = ((int)0x8CEF), + /// + /// Original was GL_COLOR_ATTACHMENT16 = 0x8CF0 + /// + ColorAttachment16 = ((int)0x8CF0), + /// + /// Original was GL_COLOR_ATTACHMENT17 = 0x8CF1 + /// + ColorAttachment17 = ((int)0x8CF1), + /// + /// Original was GL_COLOR_ATTACHMENT18 = 0x8CF2 + /// + ColorAttachment18 = ((int)0x8CF2), + /// + /// Original was GL_COLOR_ATTACHMENT19 = 0x8CF3 + /// + ColorAttachment19 = ((int)0x8CF3), + /// + /// Original was GL_COLOR_ATTACHMENT20 = 0x8CF4 + /// + ColorAttachment20 = ((int)0x8CF4), + /// + /// Original was GL_COLOR_ATTACHMENT21 = 0x8CF5 + /// + ColorAttachment21 = ((int)0x8CF5), + /// + /// Original was GL_COLOR_ATTACHMENT22 = 0x8CF6 + /// + ColorAttachment22 = ((int)0x8CF6), + /// + /// Original was GL_COLOR_ATTACHMENT23 = 0x8CF7 + /// + ColorAttachment23 = ((int)0x8CF7), + /// + /// Original was GL_COLOR_ATTACHMENT24 = 0x8CF8 + /// + ColorAttachment24 = ((int)0x8CF8), + /// + /// Original was GL_COLOR_ATTACHMENT25 = 0x8CF9 + /// + ColorAttachment25 = ((int)0x8CF9), + /// + /// Original was GL_COLOR_ATTACHMENT26 = 0x8CFA + /// + ColorAttachment26 = ((int)0x8CFA), + /// + /// Original was GL_COLOR_ATTACHMENT27 = 0x8CFB + /// + ColorAttachment27 = ((int)0x8CFB), + /// + /// Original was GL_COLOR_ATTACHMENT28 = 0x8CFC + /// + ColorAttachment28 = ((int)0x8CFC), + /// + /// Original was GL_COLOR_ATTACHMENT29 = 0x8CFD + /// + ColorAttachment29 = ((int)0x8CFD), + /// + /// Original was GL_COLOR_ATTACHMENT30 = 0x8CFE + /// + ColorAttachment30 = ((int)0x8CFE), + /// + /// Original was GL_COLOR_ATTACHMENT31 = 0x8CFF + /// + ColorAttachment31 = ((int)0x8CFF), + } + /// /// Not used directly. /// @@ -13189,6 +15186,25 @@ namespace OpenTK.Graphics.ES30 ColorTableBiasSgi = ((int)0x80D7), } + /// + /// Not used directly. + /// + public enum ColorTableTarget : int + { + /// + /// Original was GL_COLOR_TABLE = 0x80D0 + /// + ColorTable = ((int)0x80D0), + /// + /// Original was GL_POST_CONVOLUTION_COLOR_TABLE = 0x80D1 + /// + PostConvolutionColorTable = ((int)0x80D1), + /// + /// Original was GL_POST_COLOR_MATRIX_COLOR_TABLE = 0x80D2 + /// + PostColorMatrixColorTable = ((int)0x80D2), + } + /// /// Not used directly. /// @@ -13322,10 +15338,22 @@ namespace OpenTK.Graphics.ES30 /// ContextFlagDebugBitKhr = ((int)0x00000002), /// + /// Original was GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT = 0x00000004 + /// + ContextFlagRobustAccessBit = ((int)0x00000004), + /// /// Original was GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT_ARB = 0x00000004 /// ContextFlagRobustAccessBitArb = ((int)0x00000004), /// + /// Original was GL_CONTEXT_FLAG_NO_ERROR_BIT = 0x00000008 + /// + ContextFlagNoErrorBit = ((int)0x00000008), + /// + /// Original was GL_CONTEXT_FLAG_NO_ERROR_BIT_KHR = 0x00000008 + /// + ContextFlagNoErrorBitKhr = ((int)0x00000008), + /// /// Original was GL_CONTEXT_FLAG_PROTECTED_CONTENT_BIT_EXT = 0x00000010 /// ContextFlagProtectedContentBitExt = ((int)0x00000010), @@ -13393,6 +15421,21 @@ namespace OpenTK.Graphics.ES30 ConvolutionFilterBiasExt = ((int)0x8015), } + /// + /// Not used directly. + /// + public enum ConvolutionTarget : int + { + /// + /// Original was GL_CONVOLUTION_1D = 0x8010 + /// + Convolution1D = ((int)0x8010), + /// + /// Original was GL_CONVOLUTION_2D = 0x8011 + /// + Convolution2D = ((int)0x8011), + } + /// /// Not used directly. /// @@ -13416,6 +15459,69 @@ namespace OpenTK.Graphics.ES30 Convolution2DExt = ((int)0x8011), } + /// + /// Used in GL.Ext.CopyImageSubData, GL.Oes.CopyImageSubData + /// + public enum CopyBufferSubDataTarget : int + { + /// + /// Original was GL_ARRAY_BUFFER = 0x8892 + /// + ArrayBuffer = ((int)0x8892), + /// + /// Original was GL_ELEMENT_ARRAY_BUFFER = 0x8893 + /// + ElementArrayBuffer = ((int)0x8893), + /// + /// Original was GL_PIXEL_PACK_BUFFER = 0x88EB + /// + PixelPackBuffer = ((int)0x88EB), + /// + /// Original was GL_PIXEL_UNPACK_BUFFER = 0x88EC + /// + PixelUnpackBuffer = ((int)0x88EC), + /// + /// Original was GL_UNIFORM_BUFFER = 0x8A11 + /// + UniformBuffer = ((int)0x8A11), + /// + /// Original was GL_TEXTURE_BUFFER = 0x8C2A + /// + TextureBuffer = ((int)0x8C2A), + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER = 0x8C8E + /// + TransformFeedbackBuffer = ((int)0x8C8E), + /// + /// Original was GL_COPY_READ_BUFFER = 0x8F36 + /// + CopyReadBuffer = ((int)0x8F36), + /// + /// Original was GL_COPY_WRITE_BUFFER = 0x8F37 + /// + CopyWriteBuffer = ((int)0x8F37), + /// + /// Original was GL_DRAW_INDIRECT_BUFFER = 0x8F3F + /// + DrawIndirectBuffer = ((int)0x8F3F), + /// + /// Original was GL_SHADER_STORAGE_BUFFER = 0x90D2 + /// + ShaderStorageBuffer = ((int)0x90D2), + /// + /// Original was GL_DISPATCH_INDIRECT_BUFFER = 0x90EE + /// + DispatchIndirectBuffer = ((int)0x90EE), + /// + /// Original was GL_QUERY_BUFFER = 0x9192 + /// + QueryBuffer = ((int)0x9192), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER = 0x92C0 + /// + AtomicCounterBuffer = ((int)0x92C0), + } + /// /// Used in GL.CullFace /// @@ -13447,6 +15553,10 @@ namespace OpenTK.Graphics.ES30 /// public enum DebugSeverity : int { + /// + /// Original was GL_DONT_CARE = 0x1100 + /// + DontCare = ((int)0x1100), /// /// Original was GL_DEBUG_SEVERITY_NOTIFICATION = 0x826B /// @@ -13493,10 +15603,14 @@ namespace OpenTK.Graphics.ES30 } /// - /// Not used directly. + /// Used in GL.PushDebugGroup, GL.Khr.PushDebugGroup /// public enum DebugSource : int { + /// + /// Original was GL_DONT_CARE = 0x1100 + /// + DontCare = ((int)0x1100), /// /// Original was GL_DEBUG_SOURCE_API = 0x8246 /// @@ -13578,6 +15692,10 @@ namespace OpenTK.Graphics.ES30 /// public enum DebugType : int { + /// + /// Original was GL_DONT_CARE = 0x1100 + /// + DontCare = ((int)0x1100), /// /// Original was GL_DEBUG_TYPE_ERROR = 0x824C /// @@ -13864,7 +15982,7 @@ namespace OpenTK.Graphics.ES30 } /// - /// Used in GL.Angle.DrawElementsInstanced, GL.DrawElements and 12 other functions + /// Used in GL.Angle.DrawElementsInstanced, GL.DrawElements and 13 other functions /// public enum DrawElementsType : int { @@ -13883,7 +16001,7 @@ namespace OpenTK.Graphics.ES30 } /// - /// Used in GL.Disable, GL.Enable and 1 other function + /// Used in GL.Disable, GL.Enable and 10 other functions /// public enum EnableCap : int { @@ -17009,6 +19127,37 @@ namespace OpenTK.Graphics.ES30 { } + /// + /// Not used directly. + /// + public enum ExtClipControl : int + { + /// + /// Original was GL_LOWER_LEFT_EXT = 0x8CA1 + /// + LowerLeftExt = ((int)0x8CA1), + /// + /// Original was GL_UPPER_LEFT_EXT = 0x8CA2 + /// + UpperLeftExt = ((int)0x8CA2), + /// + /// Original was GL_CLIP_ORIGIN_EXT = 0x935C + /// + ClipOriginExt = ((int)0x935C), + /// + /// Original was GL_CLIP_DEPTH_MODE_EXT = 0x935D + /// + ClipDepthModeExt = ((int)0x935D), + /// + /// Original was GL_NEGATIVE_ONE_TO_ONE_EXT = 0x935E + /// + NegativeOneToOneExt = ((int)0x935E), + /// + /// Original was GL_ZERO_TO_ONE_EXT = 0x935F + /// + ZeroToOneExt = ((int)0x935F), + } + /// /// Not used directly. /// @@ -18169,6 +20318,14 @@ namespace OpenTK.Graphics.ES30 /// public enum ExtSemaphore : int { + /// + /// Original was GL_LAYOUT_DEPTH_READ_ONLY_STENCIL_ATTACHMENT_EXT = 0x9530 + /// + LayoutDepthReadOnlyStencilAttachmentExt = ((int)0x9530), + /// + /// Original was GL_LAYOUT_DEPTH_ATTACHMENT_STENCIL_READ_ONLY_EXT = 0x9531 + /// + LayoutDepthAttachmentStencilReadOnlyExt = ((int)0x9531), /// /// Original was GL_LAYOUT_GENERAL_EXT = 0x958D /// @@ -18893,6 +21050,29 @@ namespace OpenTK.Graphics.ES30 CompressedRgbaS3tcDxt5Ext = ((int)0x83F3), } + /// + /// Not used directly. + /// + public enum ExtTextureCompressionS3tcSrgb : int + { + /// + /// Original was GL_COMPRESSED_SRGB_S3TC_DXT1_EXT = 0x8C4C + /// + CompressedSrgbS3tcDxt1Ext = ((int)0x8C4C), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT = 0x8C4D + /// + CompressedSrgbAlphaS3tcDxt1Ext = ((int)0x8C4D), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT = 0x8C4E + /// + CompressedSrgbAlphaS3tcDxt3Ext = ((int)0x8C4E), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT = 0x8C4F + /// + CompressedSrgbAlphaS3tcDxt5Ext = ((int)0x8C4F), + } + /// /// Not used directly. /// @@ -18993,6 +21173,17 @@ namespace OpenTK.Graphics.ES30 BgraExt = ((int)0x80E1), } + /// + /// Not used directly. + /// + public enum ExtTextureMirrorClampToEdge : int + { + /// + /// Original was GL_MIRROR_CLAMP_TO_EDGE_EXT = 0x8743 + /// + MirrorClampToEdgeExt = ((int)0x8743), + } + /// /// Not used directly. /// @@ -19486,6 +21677,37 @@ namespace OpenTK.Graphics.ES30 FogOffsetValueSgix = ((int)0x8199), } + /// + /// Not used directly. + /// + public enum FogPName : int + { + /// + /// Original was GL_FOG_INDEX = 0x0B61 + /// + FogIndex = ((int)0x0B61), + /// + /// Original was GL_FOG_DENSITY = 0x0B62 + /// + FogDensity = ((int)0x0B62), + /// + /// Original was GL_FOG_START = 0x0B63 + /// + FogStart = ((int)0x0B63), + /// + /// Original was GL_FOG_END = 0x0B64 + /// + FogEnd = ((int)0x0B64), + /// + /// Original was GL_FOG_MODE = 0x0B65 + /// + FogMode = ((int)0x0B65), + /// + /// Original was GL_FOG_COORD_SRC = 0x8450 + /// + FogCoordSrc = ((int)0x8450), + } + /// /// Not used directly. /// @@ -19540,7 +21762,58 @@ namespace OpenTK.Graphics.ES30 } /// - /// Used in GL.FramebufferRenderbuffer, GL.FramebufferTexture2D and 9 other functions + /// Not used directly. + /// + public enum FragmentOpAti : int + { + /// + /// Original was GL_MOV_ATI = 0x8961 + /// + MovAti = ((int)0x8961), + /// + /// Original was GL_ADD_ATI = 0x8963 + /// + AddAti = ((int)0x8963), + /// + /// Original was GL_MUL_ATI = 0x8964 + /// + MulAti = ((int)0x8964), + /// + /// Original was GL_SUB_ATI = 0x8965 + /// + SubAti = ((int)0x8965), + /// + /// Original was GL_DOT3_ATI = 0x8966 + /// + Dot3Ati = ((int)0x8966), + /// + /// Original was GL_DOT4_ATI = 0x8967 + /// + Dot4Ati = ((int)0x8967), + /// + /// Original was GL_MAD_ATI = 0x8968 + /// + MadAti = ((int)0x8968), + /// + /// Original was GL_LERP_ATI = 0x8969 + /// + LerpAti = ((int)0x8969), + /// + /// Original was GL_CND_ATI = 0x896A + /// + CndAti = ((int)0x896A), + /// + /// Original was GL_CND0_ATI = 0x896B + /// + Cnd0Ati = ((int)0x896B), + /// + /// Original was GL_DOT2_ADD_ATI = 0x896C + /// + Dot2AddAti = ((int)0x896C), + } + + /// + /// Used in GL.FramebufferRenderbuffer, GL.FramebufferTexture2D and 13 other functions /// public enum FramebufferAttachment : int { @@ -19561,79 +21834,354 @@ namespace OpenTK.Graphics.ES30 /// DepthStencilAttachment = ((int)0x821A), /// + /// Original was GL_MAX_COLOR_ATTACHMENTS = 0x8CDF + /// + MaxColorAttachments = ((int)0x8CDF), + /// + /// Original was GL_MAX_COLOR_ATTACHMENTS_EXT = 0x8CDF + /// + MaxColorAttachmentsExt = ((int)0x8CDF), + /// + /// Original was GL_MAX_COLOR_ATTACHMENTS_NV = 0x8CDF + /// + MaxColorAttachmentsNv = ((int)0x8CDF), + /// /// Original was GL_COLOR_ATTACHMENT0 = 0x8CE0 /// ColorAttachment0 = ((int)0x8CE0), /// + /// Original was GL_COLOR_ATTACHMENT0_EXT = 0x8CE0 + /// + ColorAttachment0Ext = ((int)0x8CE0), + /// + /// Original was GL_COLOR_ATTACHMENT0_NV = 0x8CE0 + /// + ColorAttachment0Nv = ((int)0x8CE0), + /// + /// Original was GL_COLOR_ATTACHMENT0_OES = 0x8CE0 + /// + ColorAttachment0Oes = ((int)0x8CE0), + /// /// Original was GL_COLOR_ATTACHMENT1 = 0x8CE1 /// ColorAttachment1 = ((int)0x8CE1), /// + /// Original was GL_COLOR_ATTACHMENT1_EXT = 0x8CE1 + /// + ColorAttachment1Ext = ((int)0x8CE1), + /// + /// Original was GL_COLOR_ATTACHMENT1_NV = 0x8CE1 + /// + ColorAttachment1Nv = ((int)0x8CE1), + /// /// Original was GL_COLOR_ATTACHMENT2 = 0x8CE2 /// ColorAttachment2 = ((int)0x8CE2), /// + /// Original was GL_COLOR_ATTACHMENT2_EXT = 0x8CE2 + /// + ColorAttachment2Ext = ((int)0x8CE2), + /// + /// Original was GL_COLOR_ATTACHMENT2_NV = 0x8CE2 + /// + ColorAttachment2Nv = ((int)0x8CE2), + /// /// Original was GL_COLOR_ATTACHMENT3 = 0x8CE3 /// ColorAttachment3 = ((int)0x8CE3), /// + /// Original was GL_COLOR_ATTACHMENT3_EXT = 0x8CE3 + /// + ColorAttachment3Ext = ((int)0x8CE3), + /// + /// Original was GL_COLOR_ATTACHMENT3_NV = 0x8CE3 + /// + ColorAttachment3Nv = ((int)0x8CE3), + /// /// Original was GL_COLOR_ATTACHMENT4 = 0x8CE4 /// ColorAttachment4 = ((int)0x8CE4), /// + /// Original was GL_COLOR_ATTACHMENT4_EXT = 0x8CE4 + /// + ColorAttachment4Ext = ((int)0x8CE4), + /// + /// Original was GL_COLOR_ATTACHMENT4_NV = 0x8CE4 + /// + ColorAttachment4Nv = ((int)0x8CE4), + /// /// Original was GL_COLOR_ATTACHMENT5 = 0x8CE5 /// ColorAttachment5 = ((int)0x8CE5), /// + /// Original was GL_COLOR_ATTACHMENT5_EXT = 0x8CE5 + /// + ColorAttachment5Ext = ((int)0x8CE5), + /// + /// Original was GL_COLOR_ATTACHMENT5_NV = 0x8CE5 + /// + ColorAttachment5Nv = ((int)0x8CE5), + /// /// Original was GL_COLOR_ATTACHMENT6 = 0x8CE6 /// ColorAttachment6 = ((int)0x8CE6), /// + /// Original was GL_COLOR_ATTACHMENT6_EXT = 0x8CE6 + /// + ColorAttachment6Ext = ((int)0x8CE6), + /// + /// Original was GL_COLOR_ATTACHMENT6_NV = 0x8CE6 + /// + ColorAttachment6Nv = ((int)0x8CE6), + /// /// Original was GL_COLOR_ATTACHMENT7 = 0x8CE7 /// ColorAttachment7 = ((int)0x8CE7), /// + /// Original was GL_COLOR_ATTACHMENT7_EXT = 0x8CE7 + /// + ColorAttachment7Ext = ((int)0x8CE7), + /// + /// Original was GL_COLOR_ATTACHMENT7_NV = 0x8CE7 + /// + ColorAttachment7Nv = ((int)0x8CE7), + /// /// Original was GL_COLOR_ATTACHMENT8 = 0x8CE8 /// ColorAttachment8 = ((int)0x8CE8), /// + /// Original was GL_COLOR_ATTACHMENT8_EXT = 0x8CE8 + /// + ColorAttachment8Ext = ((int)0x8CE8), + /// + /// Original was GL_COLOR_ATTACHMENT8_NV = 0x8CE8 + /// + ColorAttachment8Nv = ((int)0x8CE8), + /// /// Original was GL_COLOR_ATTACHMENT9 = 0x8CE9 /// ColorAttachment9 = ((int)0x8CE9), /// + /// Original was GL_COLOR_ATTACHMENT9_EXT = 0x8CE9 + /// + ColorAttachment9Ext = ((int)0x8CE9), + /// + /// Original was GL_COLOR_ATTACHMENT9_NV = 0x8CE9 + /// + ColorAttachment9Nv = ((int)0x8CE9), + /// /// Original was GL_COLOR_ATTACHMENT10 = 0x8CEA /// ColorAttachment10 = ((int)0x8CEA), /// + /// Original was GL_COLOR_ATTACHMENT10_EXT = 0x8CEA + /// + ColorAttachment10Ext = ((int)0x8CEA), + /// + /// Original was GL_COLOR_ATTACHMENT10_NV = 0x8CEA + /// + ColorAttachment10Nv = ((int)0x8CEA), + /// /// Original was GL_COLOR_ATTACHMENT11 = 0x8CEB /// ColorAttachment11 = ((int)0x8CEB), /// + /// Original was GL_COLOR_ATTACHMENT11_EXT = 0x8CEB + /// + ColorAttachment11Ext = ((int)0x8CEB), + /// + /// Original was GL_COLOR_ATTACHMENT11_NV = 0x8CEB + /// + ColorAttachment11Nv = ((int)0x8CEB), + /// /// Original was GL_COLOR_ATTACHMENT12 = 0x8CEC /// ColorAttachment12 = ((int)0x8CEC), /// + /// Original was GL_COLOR_ATTACHMENT12_EXT = 0x8CEC + /// + ColorAttachment12Ext = ((int)0x8CEC), + /// + /// Original was GL_COLOR_ATTACHMENT12_NV = 0x8CEC + /// + ColorAttachment12Nv = ((int)0x8CEC), + /// /// Original was GL_COLOR_ATTACHMENT13 = 0x8CED /// ColorAttachment13 = ((int)0x8CED), /// + /// Original was GL_COLOR_ATTACHMENT13_EXT = 0x8CED + /// + ColorAttachment13Ext = ((int)0x8CED), + /// + /// Original was GL_COLOR_ATTACHMENT13_NV = 0x8CED + /// + ColorAttachment13Nv = ((int)0x8CED), + /// /// Original was GL_COLOR_ATTACHMENT14 = 0x8CEE /// ColorAttachment14 = ((int)0x8CEE), /// + /// Original was GL_COLOR_ATTACHMENT14_EXT = 0x8CEE + /// + ColorAttachment14Ext = ((int)0x8CEE), + /// + /// Original was GL_COLOR_ATTACHMENT14_NV = 0x8CEE + /// + ColorAttachment14Nv = ((int)0x8CEE), + /// /// Original was GL_COLOR_ATTACHMENT15 = 0x8CEF /// ColorAttachment15 = ((int)0x8CEF), /// + /// Original was GL_COLOR_ATTACHMENT15_EXT = 0x8CEF + /// + ColorAttachment15Ext = ((int)0x8CEF), + /// + /// Original was GL_COLOR_ATTACHMENT15_NV = 0x8CEF + /// + ColorAttachment15Nv = ((int)0x8CEF), + /// + /// Original was GL_COLOR_ATTACHMENT16 = 0x8CF0 + /// + ColorAttachment16 = ((int)0x8CF0), + /// + /// Original was GL_COLOR_ATTACHMENT17 = 0x8CF1 + /// + ColorAttachment17 = ((int)0x8CF1), + /// + /// Original was GL_COLOR_ATTACHMENT18 = 0x8CF2 + /// + ColorAttachment18 = ((int)0x8CF2), + /// + /// Original was GL_COLOR_ATTACHMENT19 = 0x8CF3 + /// + ColorAttachment19 = ((int)0x8CF3), + /// + /// Original was GL_COLOR_ATTACHMENT20 = 0x8CF4 + /// + ColorAttachment20 = ((int)0x8CF4), + /// + /// Original was GL_COLOR_ATTACHMENT21 = 0x8CF5 + /// + ColorAttachment21 = ((int)0x8CF5), + /// + /// Original was GL_COLOR_ATTACHMENT22 = 0x8CF6 + /// + ColorAttachment22 = ((int)0x8CF6), + /// + /// Original was GL_COLOR_ATTACHMENT23 = 0x8CF7 + /// + ColorAttachment23 = ((int)0x8CF7), + /// + /// Original was GL_COLOR_ATTACHMENT24 = 0x8CF8 + /// + ColorAttachment24 = ((int)0x8CF8), + /// + /// Original was GL_COLOR_ATTACHMENT25 = 0x8CF9 + /// + ColorAttachment25 = ((int)0x8CF9), + /// + /// Original was GL_COLOR_ATTACHMENT26 = 0x8CFA + /// + ColorAttachment26 = ((int)0x8CFA), + /// + /// Original was GL_COLOR_ATTACHMENT27 = 0x8CFB + /// + ColorAttachment27 = ((int)0x8CFB), + /// + /// Original was GL_COLOR_ATTACHMENT28 = 0x8CFC + /// + ColorAttachment28 = ((int)0x8CFC), + /// + /// Original was GL_COLOR_ATTACHMENT29 = 0x8CFD + /// + ColorAttachment29 = ((int)0x8CFD), + /// + /// Original was GL_COLOR_ATTACHMENT30 = 0x8CFE + /// + ColorAttachment30 = ((int)0x8CFE), + /// + /// Original was GL_COLOR_ATTACHMENT31 = 0x8CFF + /// + ColorAttachment31 = ((int)0x8CFF), + /// /// Original was GL_DEPTH_ATTACHMENT = 0x8D00 /// DepthAttachment = ((int)0x8D00), /// + /// Original was GL_DEPTH_ATTACHMENT_EXT = 0x8D00 + /// + DepthAttachmentExt = ((int)0x8D00), + /// + /// Original was GL_DEPTH_ATTACHMENT_OES = 0x8D00 + /// + DepthAttachmentOes = ((int)0x8D00), + /// /// Original was GL_STENCIL_ATTACHMENT = 0x8D20 /// StencilAttachment = ((int)0x8D20), } + /// + /// Not used directly. + /// + public enum FramebufferAttachmentParameterName : int + { + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING = 0x8210 + /// + FramebufferAttachmentColorEncoding = ((int)0x8210), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE = 0x8211 + /// + FramebufferAttachmentComponentType = ((int)0x8211), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_RED_SIZE = 0x8212 + /// + FramebufferAttachmentRedSize = ((int)0x8212), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_GREEN_SIZE = 0x8213 + /// + FramebufferAttachmentGreenSize = ((int)0x8213), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_BLUE_SIZE = 0x8214 + /// + FramebufferAttachmentBlueSize = ((int)0x8214), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE = 0x8215 + /// + FramebufferAttachmentAlphaSize = ((int)0x8215), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE = 0x8216 + /// + FramebufferAttachmentDepthSize = ((int)0x8216), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE = 0x8217 + /// + FramebufferAttachmentStencilSize = ((int)0x8217), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME = 0x8CD1 + /// + FramebufferAttachmentObjectName = ((int)0x8CD1), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL = 0x8CD2 + /// + FramebufferAttachmentTextureLevel = ((int)0x8CD2), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE = 0x8CD3 + /// + FramebufferAttachmentTextureCubeMapFace = ((int)0x8CD3), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER = 0x8CD4 + /// + FramebufferAttachmentTextureLayer = ((int)0x8CD4), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_LAYERED = 0x8DA7 + /// + FramebufferAttachmentLayered = ((int)0x8DA7), + } + /// /// Not used directly. /// @@ -19729,6 +22277,26 @@ namespace OpenTK.Graphics.ES30 /// Original was GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER = 0x8CD4 /// FramebufferAttachmentTextureLayer = ((int)0x8CD4), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_WIDTH = 0x9310 + /// + FramebufferDefaultWidth = ((int)0x9310), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_HEIGHT = 0x9311 + /// + FramebufferDefaultHeight = ((int)0x9311), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_LAYERS = 0x9312 + /// + FramebufferDefaultLayers = ((int)0x9312), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_SAMPLES = 0x9313 + /// + FramebufferDefaultSamples = ((int)0x9313), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_FIXED_SAMPLE_LOCATIONS = 0x9314 + /// + FramebufferDefaultFixedSampleLocations = ((int)0x9314), } /// @@ -19815,7 +22383,50 @@ namespace OpenTK.Graphics.ES30 } /// - /// Used in GL.BindFramebuffer, GL.CheckFramebufferStatus and 11 other functions + /// Not used directly. + /// + public enum FramebufferStatus : int + { + /// + /// Original was GL_FRAMEBUFFER_UNDEFINED = 0x8219 + /// + FramebufferUndefined = ((int)0x8219), + /// + /// Original was GL_FRAMEBUFFER_COMPLETE = 0x8CD5 + /// + FramebufferComplete = ((int)0x8CD5), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT = 0x8CD6 + /// + FramebufferIncompleteAttachment = ((int)0x8CD6), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT = 0x8CD7 + /// + FramebufferIncompleteMissingAttachment = ((int)0x8CD7), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER = 0x8CDB + /// + FramebufferIncompleteDrawBuffer = ((int)0x8CDB), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER = 0x8CDC + /// + FramebufferIncompleteReadBuffer = ((int)0x8CDC), + /// + /// Original was GL_FRAMEBUFFER_UNSUPPORTED = 0x8CDD + /// + FramebufferUnsupported = ((int)0x8CDD), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE = 0x8D56 + /// + FramebufferIncompleteMultisample = ((int)0x8D56), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS = 0x8DA8 + /// + FramebufferIncompleteLayerTargets = ((int)0x8DA8), + } + + /// + /// Used in GL.BindFramebuffer, GL.CheckFramebufferStatus and 17 other functions /// public enum FramebufferTarget : int { @@ -19853,43 +22464,83 @@ namespace OpenTK.Graphics.ES30 /// public enum GetColorTableParameterPNameSgi : int { + /// + /// Original was GL_COLOR_TABLE_SCALE = 0x80D6 + /// + ColorTableScale = ((int)0x80D6), /// /// Original was GL_COLOR_TABLE_SCALE_SGI = 0x80D6 /// ColorTableScaleSgi = ((int)0x80D6), /// + /// Original was GL_COLOR_TABLE_BIAS = 0x80D7 + /// + ColorTableBias = ((int)0x80D7), + /// /// Original was GL_COLOR_TABLE_BIAS_SGI = 0x80D7 /// ColorTableBiasSgi = ((int)0x80D7), /// + /// Original was GL_COLOR_TABLE_FORMAT = 0x80D8 + /// + ColorTableFormat = ((int)0x80D8), + /// /// Original was GL_COLOR_TABLE_FORMAT_SGI = 0x80D8 /// ColorTableFormatSgi = ((int)0x80D8), /// + /// Original was GL_COLOR_TABLE_WIDTH = 0x80D9 + /// + ColorTableWidth = ((int)0x80D9), + /// /// Original was GL_COLOR_TABLE_WIDTH_SGI = 0x80D9 /// ColorTableWidthSgi = ((int)0x80D9), /// + /// Original was GL_COLOR_TABLE_RED_SIZE = 0x80DA + /// + ColorTableRedSize = ((int)0x80DA), + /// /// Original was GL_COLOR_TABLE_RED_SIZE_SGI = 0x80DA /// ColorTableRedSizeSgi = ((int)0x80DA), /// + /// Original was GL_COLOR_TABLE_GREEN_SIZE = 0x80DB + /// + ColorTableGreenSize = ((int)0x80DB), + /// /// Original was GL_COLOR_TABLE_GREEN_SIZE_SGI = 0x80DB /// ColorTableGreenSizeSgi = ((int)0x80DB), /// + /// Original was GL_COLOR_TABLE_BLUE_SIZE = 0x80DC + /// + ColorTableBlueSize = ((int)0x80DC), + /// /// Original was GL_COLOR_TABLE_BLUE_SIZE_SGI = 0x80DC /// ColorTableBlueSizeSgi = ((int)0x80DC), /// + /// Original was GL_COLOR_TABLE_ALPHA_SIZE = 0x80DD + /// + ColorTableAlphaSize = ((int)0x80DD), + /// /// Original was GL_COLOR_TABLE_ALPHA_SIZE_SGI = 0x80DD /// ColorTableAlphaSizeSgi = ((int)0x80DD), /// + /// Original was GL_COLOR_TABLE_LUMINANCE_SIZE = 0x80DE + /// + ColorTableLuminanceSize = ((int)0x80DE), + /// /// Original was GL_COLOR_TABLE_LUMINANCE_SIZE_SGI = 0x80DE /// ColorTableLuminanceSizeSgi = ((int)0x80DE), /// + /// Original was GL_COLOR_TABLE_INTENSITY_SIZE = 0x80DF + /// + ColorTableIntensitySize = ((int)0x80DF), + /// /// Original was GL_COLOR_TABLE_INTENSITY_SIZE_SGI = 0x80DF /// ColorTableIntensitySizeSgi = ((int)0x80DF), @@ -19900,38 +22551,125 @@ namespace OpenTK.Graphics.ES30 /// public enum GetConvolutionParameter : int { + /// + /// Original was GL_CONVOLUTION_BORDER_MODE = 0x8013 + /// + ConvolutionBorderMode = ((int)0x8013), /// /// Original was GL_CONVOLUTION_BORDER_MODE_EXT = 0x8013 /// ConvolutionBorderModeExt = ((int)0x8013), /// + /// Original was GL_CONVOLUTION_FILTER_SCALE = 0x8014 + /// + ConvolutionFilterScale = ((int)0x8014), + /// /// Original was GL_CONVOLUTION_FILTER_SCALE_EXT = 0x8014 /// ConvolutionFilterScaleExt = ((int)0x8014), /// + /// Original was GL_CONVOLUTION_FILTER_BIAS = 0x8015 + /// + ConvolutionFilterBias = ((int)0x8015), + /// /// Original was GL_CONVOLUTION_FILTER_BIAS_EXT = 0x8015 /// ConvolutionFilterBiasExt = ((int)0x8015), /// + /// Original was GL_CONVOLUTION_FORMAT = 0x8017 + /// + ConvolutionFormat = ((int)0x8017), + /// /// Original was GL_CONVOLUTION_FORMAT_EXT = 0x8017 /// ConvolutionFormatExt = ((int)0x8017), /// + /// Original was GL_CONVOLUTION_WIDTH = 0x8018 + /// + ConvolutionWidth = ((int)0x8018), + /// /// Original was GL_CONVOLUTION_WIDTH_EXT = 0x8018 /// ConvolutionWidthExt = ((int)0x8018), /// + /// Original was GL_CONVOLUTION_HEIGHT = 0x8019 + /// + ConvolutionHeight = ((int)0x8019), + /// /// Original was GL_CONVOLUTION_HEIGHT_EXT = 0x8019 /// ConvolutionHeightExt = ((int)0x8019), /// + /// Original was GL_MAX_CONVOLUTION_WIDTH = 0x801A + /// + MaxConvolutionWidth = ((int)0x801A), + /// /// Original was GL_MAX_CONVOLUTION_WIDTH_EXT = 0x801A /// MaxConvolutionWidthExt = ((int)0x801A), /// + /// Original was GL_MAX_CONVOLUTION_HEIGHT = 0x801B + /// + MaxConvolutionHeight = ((int)0x801B), + /// /// Original was GL_MAX_CONVOLUTION_HEIGHT_EXT = 0x801B /// MaxConvolutionHeightExt = ((int)0x801B), + /// + /// Original was GL_CONVOLUTION_BORDER_COLOR = 0x8154 + /// + ConvolutionBorderColor = ((int)0x8154), + } + + /// + /// Not used directly. + /// + public enum GetFramebufferParameter : int + { + /// + /// Original was GL_DOUBLEBUFFER = 0x0C32 + /// + Doublebuffer = ((int)0x0C32), + /// + /// Original was GL_STEREO = 0x0C33 + /// + Stereo = ((int)0x0C33), + /// + /// Original was GL_SAMPLE_BUFFERS = 0x80A8 + /// + SampleBuffers = ((int)0x80A8), + /// + /// Original was GL_SAMPLES = 0x80A9 + /// + Samples = ((int)0x80A9), + /// + /// Original was GL_IMPLEMENTATION_COLOR_READ_TYPE = 0x8B9A + /// + ImplementationColorReadType = ((int)0x8B9A), + /// + /// Original was GL_IMPLEMENTATION_COLOR_READ_FORMAT = 0x8B9B + /// + ImplementationColorReadFormat = ((int)0x8B9B), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_WIDTH = 0x9310 + /// + FramebufferDefaultWidth = ((int)0x9310), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_HEIGHT = 0x9311 + /// + FramebufferDefaultHeight = ((int)0x9311), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_LAYERS = 0x9312 + /// + FramebufferDefaultLayers = ((int)0x9312), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_SAMPLES = 0x9313 + /// + FramebufferDefaultSamples = ((int)0x9313), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_FIXED_SAMPLE_LOCATIONS = 0x9314 + /// + FramebufferDefaultFixedSampleLocations = ((int)0x9314), } /// @@ -19939,35 +22677,67 @@ namespace OpenTK.Graphics.ES30 /// public enum GetHistogramParameterPNameExt : int { + /// + /// Original was GL_HISTOGRAM_WIDTH = 0x8026 + /// + HistogramWidth = ((int)0x8026), /// /// Original was GL_HISTOGRAM_WIDTH_EXT = 0x8026 /// HistogramWidthExt = ((int)0x8026), /// + /// Original was GL_HISTOGRAM_FORMAT = 0x8027 + /// + HistogramFormat = ((int)0x8027), + /// /// Original was GL_HISTOGRAM_FORMAT_EXT = 0x8027 /// HistogramFormatExt = ((int)0x8027), /// + /// Original was GL_HISTOGRAM_RED_SIZE = 0x8028 + /// + HistogramRedSize = ((int)0x8028), + /// /// Original was GL_HISTOGRAM_RED_SIZE_EXT = 0x8028 /// HistogramRedSizeExt = ((int)0x8028), /// + /// Original was GL_HISTOGRAM_GREEN_SIZE = 0x8029 + /// + HistogramGreenSize = ((int)0x8029), + /// /// Original was GL_HISTOGRAM_GREEN_SIZE_EXT = 0x8029 /// HistogramGreenSizeExt = ((int)0x8029), /// + /// Original was GL_HISTOGRAM_BLUE_SIZE = 0x802A + /// + HistogramBlueSize = ((int)0x802A), + /// /// Original was GL_HISTOGRAM_BLUE_SIZE_EXT = 0x802A /// HistogramBlueSizeExt = ((int)0x802A), /// + /// Original was GL_HISTOGRAM_ALPHA_SIZE = 0x802B + /// + HistogramAlphaSize = ((int)0x802B), + /// /// Original was GL_HISTOGRAM_ALPHA_SIZE_EXT = 0x802B /// HistogramAlphaSizeExt = ((int)0x802B), /// + /// Original was GL_HISTOGRAM_LUMINANCE_SIZE = 0x802C + /// + HistogramLuminanceSize = ((int)0x802C), + /// /// Original was GL_HISTOGRAM_LUMINANCE_SIZE_EXT = 0x802C /// HistogramLuminanceSizeExt = ((int)0x802C), /// + /// Original was GL_HISTOGRAM_SINK = 0x802D + /// + HistogramSink = ((int)0x802D), + /// /// Original was GL_HISTOGRAM_SINK_EXT = 0x802D /// HistogramSinkExt = ((int)0x802D), @@ -22217,6 +24987,14 @@ namespace OpenTK.Graphics.ES30 /// Original was GL_INSTRUMENT_BUFFER_POINTER_SGIX = 0x8180 /// InstrumentBufferPointerSgix = ((int)0x8180), + /// + /// Original was GL_DEBUG_CALLBACK_FUNCTION = 0x8244 + /// + DebugCallbackFunction = ((int)0x8244), + /// + /// Original was GL_DEBUG_CALLBACK_USER_PARAM = 0x8245 + /// + DebugCallbackUserParam = ((int)0x8245), } /// @@ -22614,6 +25392,29 @@ namespace OpenTK.Graphics.ES30 TextureImmutableFormatExt = ((int)0x912F), } + /// + /// Not used directly. + /// + public enum GraphicsResetStatus : int + { + /// + /// Original was GL_NO_ERROR = 0 + /// + NoError = ((int)0), + /// + /// Original was GL_GUILTY_CONTEXT_RESET = 0x8253 + /// + GuiltyContextReset = ((int)0x8253), + /// + /// Original was GL_INNOCENT_CONTEXT_RESET = 0x8254 + /// + InnocentContextReset = ((int)0x8254), + /// + /// Original was GL_UNKNOWN_CONTEXT_RESET = 0x8255 + /// + UnknownContextReset = ((int)0x8255), + } + /// /// Used in GL.Hint /// @@ -23217,10 +26018,30 @@ namespace OpenTK.Graphics.ES30 } /// - /// Not used directly. + /// Used in GL.Ext.TexBuffer, GL.Ext.TexBufferRange and 10 other functions /// public enum InternalFormat : int { + /// + /// Original was GL_DEPTH_COMPONENT = 0x1902 + /// + DepthComponent = ((int)0x1902), + /// + /// Original was GL_RED = 0x1903 + /// + Red = ((int)0x1903), + /// + /// Original was GL_RED_EXT = 0x1903 + /// + RedExt = ((int)0x1903), + /// + /// Original was GL_RGB = 0x1907 + /// + Rgb = ((int)0x1907), + /// + /// Original was GL_RGBA = 0x1908 + /// + Rgba = ((int)0x1908), /// /// Original was GL_R3_G3_B2 = 0x2A10 /// @@ -23310,54 +26131,114 @@ namespace OpenTK.Graphics.ES30 /// Rgb4 = ((int)0x804F), /// + /// Original was GL_RGB4_EXT = 0x804F + /// + Rgb4Ext = ((int)0x804F), + /// /// Original was GL_RGB5 = 0x8050 /// Rgb5 = ((int)0x8050), /// + /// Original was GL_RGB5_EXT = 0x8050 + /// + Rgb5Ext = ((int)0x8050), + /// /// Original was GL_RGB8 = 0x8051 /// Rgb8 = ((int)0x8051), /// + /// Original was GL_RGB8_EXT = 0x8051 + /// + Rgb8Ext = ((int)0x8051), + /// + /// Original was GL_RGB8_OES = 0x8051 + /// + Rgb8Oes = ((int)0x8051), + /// /// Original was GL_RGB10 = 0x8052 /// Rgb10 = ((int)0x8052), /// + /// Original was GL_RGB10_EXT = 0x8052 + /// + Rgb10Ext = ((int)0x8052), + /// /// Original was GL_RGB12 = 0x8053 /// Rgb12 = ((int)0x8053), /// + /// Original was GL_RGB12_EXT = 0x8053 + /// + Rgb12Ext = ((int)0x8053), + /// /// Original was GL_RGB16 = 0x8054 /// Rgb16 = ((int)0x8054), /// - /// Original was GL_RGBA2 = 0x8055 + /// Original was GL_RGB16_EXT = 0x8054 /// - Rgba2 = ((int)0x8055), + Rgb16Ext = ((int)0x8054), /// /// Original was GL_RGBA4 = 0x8056 /// Rgba4 = ((int)0x8056), /// + /// Original was GL_RGBA4_EXT = 0x8056 + /// + Rgba4Ext = ((int)0x8056), + /// + /// Original was GL_RGBA4_OES = 0x8056 + /// + Rgba4Oes = ((int)0x8056), + /// /// Original was GL_RGB5_A1 = 0x8057 /// Rgb5A1 = ((int)0x8057), /// + /// Original was GL_RGB5_A1_EXT = 0x8057 + /// + Rgb5A1Ext = ((int)0x8057), + /// + /// Original was GL_RGB5_A1_OES = 0x8057 + /// + Rgb5A1Oes = ((int)0x8057), + /// /// Original was GL_RGBA8 = 0x8058 /// Rgba8 = ((int)0x8058), /// + /// Original was GL_RGBA8_EXT = 0x8058 + /// + Rgba8Ext = ((int)0x8058), + /// + /// Original was GL_RGBA8_OES = 0x8058 + /// + Rgba8Oes = ((int)0x8058), + /// /// Original was GL_RGB10_A2 = 0x8059 /// Rgb10A2 = ((int)0x8059), /// + /// Original was GL_RGB10_A2_EXT = 0x8059 + /// + Rgb10A2Ext = ((int)0x8059), + /// /// Original was GL_RGBA12 = 0x805A /// Rgba12 = ((int)0x805A), /// + /// Original was GL_RGBA12_EXT = 0x805A + /// + Rgba12Ext = ((int)0x805A), + /// /// Original was GL_RGBA16 = 0x805B /// Rgba16 = ((int)0x805B), /// + /// Original was GL_RGBA16_EXT = 0x805B + /// + Rgba16Ext = ((int)0x805B), + /// /// Original was GL_DUAL_ALPHA4_SGIS = 0x8110 /// DualAlpha4Sgis = ((int)0x8110), @@ -23438,17 +26319,533 @@ namespace OpenTK.Graphics.ES30 /// QuadIntensity8Sgis = ((int)0x8123), /// + /// Original was GL_DEPTH_COMPONENT16 = 0x81A5 + /// + DepthComponent16 = ((int)0x81A5), + /// + /// Original was GL_DEPTH_COMPONENT16_ARB = 0x81A5 + /// + DepthComponent16Arb = ((int)0x81A5), + /// + /// Original was GL_DEPTH_COMPONENT16_OES = 0x81A5 + /// + DepthComponent16Oes = ((int)0x81A5), + /// /// Original was GL_DEPTH_COMPONENT16_SGIX = 0x81A5 /// DepthComponent16Sgix = ((int)0x81A5), /// + /// Original was GL_DEPTH_COMPONENT24_ARB = 0x81A6 + /// + DepthComponent24Arb = ((int)0x81A6), + /// + /// Original was GL_DEPTH_COMPONENT24_OES = 0x81A6 + /// + DepthComponent24Oes = ((int)0x81A6), + /// /// Original was GL_DEPTH_COMPONENT24_SGIX = 0x81A6 /// DepthComponent24Sgix = ((int)0x81A6), /// + /// Original was GL_DEPTH_COMPONENT32_ARB = 0x81A7 + /// + DepthComponent32Arb = ((int)0x81A7), + /// + /// Original was GL_DEPTH_COMPONENT32_OES = 0x81A7 + /// + DepthComponent32Oes = ((int)0x81A7), + /// /// Original was GL_DEPTH_COMPONENT32_SGIX = 0x81A7 /// DepthComponent32Sgix = ((int)0x81A7), + /// + /// Original was GL_COMPRESSED_RED = 0x8225 + /// + CompressedRed = ((int)0x8225), + /// + /// Original was GL_COMPRESSED_RG = 0x8226 + /// + CompressedRg = ((int)0x8226), + /// + /// Original was GL_RG = 0x8227 + /// + Rg = ((int)0x8227), + /// + /// Original was GL_R8 = 0x8229 + /// + R8 = ((int)0x8229), + /// + /// Original was GL_R8_EXT = 0x8229 + /// + R8Ext = ((int)0x8229), + /// + /// Original was GL_R16 = 0x822A + /// + R16 = ((int)0x822A), + /// + /// Original was GL_R16_EXT = 0x822A + /// + R16Ext = ((int)0x822A), + /// + /// Original was GL_RG8 = 0x822B + /// + Rg8 = ((int)0x822B), + /// + /// Original was GL_RG8_EXT = 0x822B + /// + Rg8Ext = ((int)0x822B), + /// + /// Original was GL_RG16 = 0x822C + /// + Rg16 = ((int)0x822C), + /// + /// Original was GL_RG16_EXT = 0x822C + /// + Rg16Ext = ((int)0x822C), + /// + /// Original was GL_R16F = 0x822D + /// + R16f = ((int)0x822D), + /// + /// Original was GL_R16F_EXT = 0x822D + /// + R16fExt = ((int)0x822D), + /// + /// Original was GL_R32F = 0x822E + /// + R32f = ((int)0x822E), + /// + /// Original was GL_R32F_EXT = 0x822E + /// + R32fExt = ((int)0x822E), + /// + /// Original was GL_RG16F = 0x822F + /// + Rg16f = ((int)0x822F), + /// + /// Original was GL_RG16F_EXT = 0x822F + /// + Rg16fExt = ((int)0x822F), + /// + /// Original was GL_RG32F = 0x8230 + /// + Rg32f = ((int)0x8230), + /// + /// Original was GL_RG32F_EXT = 0x8230 + /// + Rg32fExt = ((int)0x8230), + /// + /// Original was GL_R8I = 0x8231 + /// + R8i = ((int)0x8231), + /// + /// Original was GL_R8UI = 0x8232 + /// + R8ui = ((int)0x8232), + /// + /// Original was GL_R16I = 0x8233 + /// + R16i = ((int)0x8233), + /// + /// Original was GL_R16UI = 0x8234 + /// + R16ui = ((int)0x8234), + /// + /// Original was GL_R32I = 0x8235 + /// + R32i = ((int)0x8235), + /// + /// Original was GL_R32UI = 0x8236 + /// + R32ui = ((int)0x8236), + /// + /// Original was GL_RG8I = 0x8237 + /// + Rg8i = ((int)0x8237), + /// + /// Original was GL_RG8UI = 0x8238 + /// + Rg8ui = ((int)0x8238), + /// + /// Original was GL_RG16I = 0x8239 + /// + Rg16i = ((int)0x8239), + /// + /// Original was GL_RG16UI = 0x823A + /// + Rg16ui = ((int)0x823A), + /// + /// Original was GL_RG32I = 0x823B + /// + Rg32i = ((int)0x823B), + /// + /// Original was GL_RG32UI = 0x823C + /// + Rg32ui = ((int)0x823C), + /// + /// Original was GL_COMPRESSED_RGB_S3TC_DXT1_EXT = 0x83F0 + /// + CompressedRgbS3tcDxt1Ext = ((int)0x83F0), + /// + /// Original was GL_COMPRESSED_RGBA_S3TC_DXT1_EXT = 0x83F1 + /// + CompressedRgbaS3tcDxt1Ext = ((int)0x83F1), + /// + /// Original was GL_COMPRESSED_RGBA_S3TC_DXT3_EXT = 0x83F2 + /// + CompressedRgbaS3tcDxt3Ext = ((int)0x83F2), + /// + /// Original was GL_COMPRESSED_RGBA_S3TC_DXT5_EXT = 0x83F3 + /// + CompressedRgbaS3tcDxt5Ext = ((int)0x83F3), + /// + /// Original was GL_COMPRESSED_RGB = 0x84ED + /// + CompressedRgb = ((int)0x84ED), + /// + /// Original was GL_COMPRESSED_RGBA = 0x84EE + /// + CompressedRgba = ((int)0x84EE), + /// + /// Original was GL_DEPTH_STENCIL = 0x84F9 + /// + DepthStencil = ((int)0x84F9), + /// + /// Original was GL_DEPTH_STENCIL_EXT = 0x84F9 + /// + DepthStencilExt = ((int)0x84F9), + /// + /// Original was GL_DEPTH_STENCIL_NV = 0x84F9 + /// + DepthStencilNv = ((int)0x84F9), + /// + /// Original was GL_DEPTH_STENCIL_OES = 0x84F9 + /// + DepthStencilOes = ((int)0x84F9), + /// + /// Original was GL_DEPTH_STENCIL_MESA = 0x8750 + /// + DepthStencilMesa = ((int)0x8750), + /// + /// Original was GL_RGBA32F = 0x8814 + /// + Rgba32f = ((int)0x8814), + /// + /// Original was GL_RGBA32F_ARB = 0x8814 + /// + Rgba32fArb = ((int)0x8814), + /// + /// Original was GL_RGBA32F_EXT = 0x8814 + /// + Rgba32fExt = ((int)0x8814), + /// + /// Original was GL_RGBA16F = 0x881A + /// + Rgba16f = ((int)0x881A), + /// + /// Original was GL_RGBA16F_ARB = 0x881A + /// + Rgba16fArb = ((int)0x881A), + /// + /// Original was GL_RGBA16F_EXT = 0x881A + /// + Rgba16fExt = ((int)0x881A), + /// + /// Original was GL_RGB16F = 0x881B + /// + Rgb16f = ((int)0x881B), + /// + /// Original was GL_RGB16F_ARB = 0x881B + /// + Rgb16fArb = ((int)0x881B), + /// + /// Original was GL_RGB16F_EXT = 0x881B + /// + Rgb16fExt = ((int)0x881B), + /// + /// Original was GL_DEPTH24_STENCIL8 = 0x88F0 + /// + Depth24Stencil8 = ((int)0x88F0), + /// + /// Original was GL_DEPTH24_STENCIL8_EXT = 0x88F0 + /// + Depth24Stencil8Ext = ((int)0x88F0), + /// + /// Original was GL_DEPTH24_STENCIL8_OES = 0x88F0 + /// + Depth24Stencil8Oes = ((int)0x88F0), + /// + /// Original was GL_R11F_G11F_B10F = 0x8C3A + /// + R11fG11fB10f = ((int)0x8C3A), + /// + /// Original was GL_R11F_G11F_B10F_APPLE = 0x8C3A + /// + R11fG11fB10fApple = ((int)0x8C3A), + /// + /// Original was GL_R11F_G11F_B10F_EXT = 0x8C3A + /// + R11fG11fB10fExt = ((int)0x8C3A), + /// + /// Original was GL_RGB9_E5 = 0x8C3D + /// + Rgb9E5 = ((int)0x8C3D), + /// + /// Original was GL_RGB9_E5_APPLE = 0x8C3D + /// + Rgb9E5Apple = ((int)0x8C3D), + /// + /// Original was GL_RGB9_E5_EXT = 0x8C3D + /// + Rgb9E5Ext = ((int)0x8C3D), + /// + /// Original was GL_SRGB = 0x8C40 + /// + Srgb = ((int)0x8C40), + /// + /// Original was GL_SRGB_EXT = 0x8C40 + /// + SrgbExt = ((int)0x8C40), + /// + /// Original was GL_SRGB8 = 0x8C41 + /// + Srgb8 = ((int)0x8C41), + /// + /// Original was GL_SRGB8_EXT = 0x8C41 + /// + Srgb8Ext = ((int)0x8C41), + /// + /// Original was GL_SRGB8_NV = 0x8C41 + /// + Srgb8Nv = ((int)0x8C41), + /// + /// Original was GL_SRGB_ALPHA = 0x8C42 + /// + SrgbAlpha = ((int)0x8C42), + /// + /// Original was GL_SRGB_ALPHA_EXT = 0x8C42 + /// + SrgbAlphaExt = ((int)0x8C42), + /// + /// Original was GL_SRGB8_ALPHA8 = 0x8C43 + /// + Srgb8Alpha8 = ((int)0x8C43), + /// + /// Original was GL_SRGB8_ALPHA8_EXT = 0x8C43 + /// + Srgb8Alpha8Ext = ((int)0x8C43), + /// + /// Original was GL_COMPRESSED_SRGB = 0x8C48 + /// + CompressedSrgb = ((int)0x8C48), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA = 0x8C49 + /// + CompressedSrgbAlpha = ((int)0x8C49), + /// + /// Original was GL_COMPRESSED_SRGB_S3TC_DXT1_EXT = 0x8C4C + /// + CompressedSrgbS3tcDxt1Ext = ((int)0x8C4C), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT = 0x8C4D + /// + CompressedSrgbAlphaS3tcDxt1Ext = ((int)0x8C4D), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT = 0x8C4E + /// + CompressedSrgbAlphaS3tcDxt3Ext = ((int)0x8C4E), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT = 0x8C4F + /// + CompressedSrgbAlphaS3tcDxt5Ext = ((int)0x8C4F), + /// + /// Original was GL_DEPTH_COMPONENT32F = 0x8CAC + /// + DepthComponent32f = ((int)0x8CAC), + /// + /// Original was GL_DEPTH32F_STENCIL8 = 0x8CAD + /// + Depth32fStencil8 = ((int)0x8CAD), + /// + /// Original was GL_RGBA32UI = 0x8D70 + /// + Rgba32ui = ((int)0x8D70), + /// + /// Original was GL_RGB32UI = 0x8D71 + /// + Rgb32ui = ((int)0x8D71), + /// + /// Original was GL_RGBA16UI = 0x8D76 + /// + Rgba16ui = ((int)0x8D76), + /// + /// Original was GL_RGB16UI = 0x8D77 + /// + Rgb16ui = ((int)0x8D77), + /// + /// Original was GL_RGBA8UI = 0x8D7C + /// + Rgba8ui = ((int)0x8D7C), + /// + /// Original was GL_RGB8UI = 0x8D7D + /// + Rgb8ui = ((int)0x8D7D), + /// + /// Original was GL_RGBA32I = 0x8D82 + /// + Rgba32i = ((int)0x8D82), + /// + /// Original was GL_RGB32I = 0x8D83 + /// + Rgb32i = ((int)0x8D83), + /// + /// Original was GL_RGBA16I = 0x8D88 + /// + Rgba16i = ((int)0x8D88), + /// + /// Original was GL_RGB16I = 0x8D89 + /// + Rgb16i = ((int)0x8D89), + /// + /// Original was GL_RGBA8I = 0x8D8E + /// + Rgba8i = ((int)0x8D8E), + /// + /// Original was GL_RGB8I = 0x8D8F + /// + Rgb8i = ((int)0x8D8F), + /// + /// Original was GL_DEPTH_COMPONENT32F_NV = 0x8DAB + /// + DepthComponent32fNv = ((int)0x8DAB), + /// + /// Original was GL_DEPTH32F_STENCIL8_NV = 0x8DAC + /// + Depth32fStencil8Nv = ((int)0x8DAC), + /// + /// Original was GL_COMPRESSED_RED_RGTC1 = 0x8DBB + /// + CompressedRedRgtc1 = ((int)0x8DBB), + /// + /// Original was GL_COMPRESSED_RED_RGTC1_EXT = 0x8DBB + /// + CompressedRedRgtc1Ext = ((int)0x8DBB), + /// + /// Original was GL_COMPRESSED_SIGNED_RED_RGTC1 = 0x8DBC + /// + CompressedSignedRedRgtc1 = ((int)0x8DBC), + /// + /// Original was GL_COMPRESSED_SIGNED_RED_RGTC1_EXT = 0x8DBC + /// + CompressedSignedRedRgtc1Ext = ((int)0x8DBC), + /// + /// Original was GL_COMPRESSED_RG_RGTC2 = 0x8DBD + /// + CompressedRgRgtc2 = ((int)0x8DBD), + /// + /// Original was GL_COMPRESSED_SIGNED_RG_RGTC2 = 0x8DBE + /// + CompressedSignedRgRgtc2 = ((int)0x8DBE), + /// + /// Original was GL_COMPRESSED_RGBA_BPTC_UNORM = 0x8E8C + /// + CompressedRgbaBptcUnorm = ((int)0x8E8C), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM = 0x8E8D + /// + CompressedSrgbAlphaBptcUnorm = ((int)0x8E8D), + /// + /// Original was GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT = 0x8E8E + /// + CompressedRgbBptcSignedFloat = ((int)0x8E8E), + /// + /// Original was GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT = 0x8E8F + /// + CompressedRgbBptcUnsignedFloat = ((int)0x8E8F), + /// + /// Original was GL_R8_SNORM = 0x8F94 + /// + R8Snorm = ((int)0x8F94), + /// + /// Original was GL_RG8_SNORM = 0x8F95 + /// + Rg8Snorm = ((int)0x8F95), + /// + /// Original was GL_RGB8_SNORM = 0x8F96 + /// + Rgb8Snorm = ((int)0x8F96), + /// + /// Original was GL_RGBA8_SNORM = 0x8F97 + /// + Rgba8Snorm = ((int)0x8F97), + /// + /// Original was GL_R16_SNORM = 0x8F98 + /// + R16Snorm = ((int)0x8F98), + /// + /// Original was GL_R16_SNORM_EXT = 0x8F98 + /// + R16SnormExt = ((int)0x8F98), + /// + /// Original was GL_RG16_SNORM = 0x8F99 + /// + Rg16Snorm = ((int)0x8F99), + /// + /// Original was GL_RG16_SNORM_EXT = 0x8F99 + /// + Rg16SnormExt = ((int)0x8F99), + /// + /// Original was GL_RGB16_SNORM = 0x8F9A + /// + Rgb16Snorm = ((int)0x8F9A), + /// + /// Original was GL_RGB16_SNORM_EXT = 0x8F9A + /// + Rgb16SnormExt = ((int)0x8F9A), + /// + /// Original was GL_RGB10_A2UI = 0x906F + /// + Rgb10A2ui = ((int)0x906F), + /// + /// Original was GL_COMPRESSED_R11_EAC = 0x9270 + /// + CompressedR11Eac = ((int)0x9270), + /// + /// Original was GL_COMPRESSED_SIGNED_R11_EAC = 0x9271 + /// + CompressedSignedR11Eac = ((int)0x9271), + /// + /// Original was GL_COMPRESSED_RG11_EAC = 0x9272 + /// + CompressedRg11Eac = ((int)0x9272), + /// + /// Original was GL_COMPRESSED_SIGNED_RG11_EAC = 0x9273 + /// + CompressedSignedRg11Eac = ((int)0x9273), + /// + /// Original was GL_COMPRESSED_RGB8_ETC2 = 0x9274 + /// + CompressedRgb8Etc2 = ((int)0x9274), + /// + /// Original was GL_COMPRESSED_SRGB8_ETC2 = 0x9275 + /// + CompressedSrgb8Etc2 = ((int)0x9275), + /// + /// Original was GL_COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2 = 0x9276 + /// + CompressedRgb8PunchthroughAlpha1Etc2 = ((int)0x9276), + /// + /// Original was GL_COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2 = 0x9277 + /// + CompressedSrgb8PunchthroughAlpha1Etc2 = ((int)0x9277), + /// + /// Original was GL_COMPRESSED_RGBA8_ETC2_EAC = 0x9278 + /// + CompressedRgba8Etc2Eac = ((int)0x9278), + /// + /// Original was GL_COMPRESSED_SRGB8_ALPHA8_ETC2_EAC = 0x9279 + /// + CompressedSrgb8Alpha8Etc2Eac = ((int)0x9279), } /// @@ -23466,6 +26863,297 @@ namespace OpenTK.Graphics.ES30 NumSampleCounts = ((int)0x9380), } + /// + /// Used in GL.NV.GetInternalformatSample + /// + public enum InternalFormatPName : int + { + /// + /// Original was GL_SAMPLES = 0x80A9 + /// + Samples = ((int)0x80A9), + /// + /// Original was GL_GENERATE_MIPMAP = 0x8191 + /// + GenerateMipmap = ((int)0x8191), + /// + /// Original was GL_INTERNALFORMAT_SUPPORTED = 0x826F + /// + InternalformatSupported = ((int)0x826F), + /// + /// Original was GL_INTERNALFORMAT_PREFERRED = 0x8270 + /// + InternalformatPreferred = ((int)0x8270), + /// + /// Original was GL_INTERNALFORMAT_RED_SIZE = 0x8271 + /// + InternalformatRedSize = ((int)0x8271), + /// + /// Original was GL_INTERNALFORMAT_GREEN_SIZE = 0x8272 + /// + InternalformatGreenSize = ((int)0x8272), + /// + /// Original was GL_INTERNALFORMAT_BLUE_SIZE = 0x8273 + /// + InternalformatBlueSize = ((int)0x8273), + /// + /// Original was GL_INTERNALFORMAT_ALPHA_SIZE = 0x8274 + /// + InternalformatAlphaSize = ((int)0x8274), + /// + /// Original was GL_INTERNALFORMAT_DEPTH_SIZE = 0x8275 + /// + InternalformatDepthSize = ((int)0x8275), + /// + /// Original was GL_INTERNALFORMAT_STENCIL_SIZE = 0x8276 + /// + InternalformatStencilSize = ((int)0x8276), + /// + /// Original was GL_INTERNALFORMAT_SHARED_SIZE = 0x8277 + /// + InternalformatSharedSize = ((int)0x8277), + /// + /// Original was GL_INTERNALFORMAT_RED_TYPE = 0x8278 + /// + InternalformatRedType = ((int)0x8278), + /// + /// Original was GL_INTERNALFORMAT_GREEN_TYPE = 0x8279 + /// + InternalformatGreenType = ((int)0x8279), + /// + /// Original was GL_INTERNALFORMAT_BLUE_TYPE = 0x827A + /// + InternalformatBlueType = ((int)0x827A), + /// + /// Original was GL_INTERNALFORMAT_ALPHA_TYPE = 0x827B + /// + InternalformatAlphaType = ((int)0x827B), + /// + /// Original was GL_INTERNALFORMAT_DEPTH_TYPE = 0x827C + /// + InternalformatDepthType = ((int)0x827C), + /// + /// Original was GL_INTERNALFORMAT_STENCIL_TYPE = 0x827D + /// + InternalformatStencilType = ((int)0x827D), + /// + /// Original was GL_MAX_WIDTH = 0x827E + /// + MaxWidth = ((int)0x827E), + /// + /// Original was GL_MAX_HEIGHT = 0x827F + /// + MaxHeight = ((int)0x827F), + /// + /// Original was GL_MAX_DEPTH = 0x8280 + /// + MaxDepth = ((int)0x8280), + /// + /// Original was GL_MAX_LAYERS = 0x8281 + /// + MaxLayers = ((int)0x8281), + /// + /// Original was GL_COLOR_COMPONENTS = 0x8283 + /// + ColorComponents = ((int)0x8283), + /// + /// Original was GL_COLOR_RENDERABLE = 0x8286 + /// + ColorRenderable = ((int)0x8286), + /// + /// Original was GL_DEPTH_RENDERABLE = 0x8287 + /// + DepthRenderable = ((int)0x8287), + /// + /// Original was GL_STENCIL_RENDERABLE = 0x8288 + /// + StencilRenderable = ((int)0x8288), + /// + /// Original was GL_FRAMEBUFFER_RENDERABLE = 0x8289 + /// + FramebufferRenderable = ((int)0x8289), + /// + /// Original was GL_FRAMEBUFFER_RENDERABLE_LAYERED = 0x828A + /// + FramebufferRenderableLayered = ((int)0x828A), + /// + /// Original was GL_FRAMEBUFFER_BLEND = 0x828B + /// + FramebufferBlend = ((int)0x828B), + /// + /// Original was GL_READ_PIXELS = 0x828C + /// + ReadPixels = ((int)0x828C), + /// + /// Original was GL_READ_PIXELS_FORMAT = 0x828D + /// + ReadPixelsFormat = ((int)0x828D), + /// + /// Original was GL_READ_PIXELS_TYPE = 0x828E + /// + ReadPixelsType = ((int)0x828E), + /// + /// Original was GL_TEXTURE_IMAGE_FORMAT = 0x828F + /// + TextureImageFormat = ((int)0x828F), + /// + /// Original was GL_TEXTURE_IMAGE_TYPE = 0x8290 + /// + TextureImageType = ((int)0x8290), + /// + /// Original was GL_GET_TEXTURE_IMAGE_FORMAT = 0x8291 + /// + GetTextureImageFormat = ((int)0x8291), + /// + /// Original was GL_GET_TEXTURE_IMAGE_TYPE = 0x8292 + /// + GetTextureImageType = ((int)0x8292), + /// + /// Original was GL_MIPMAP = 0x8293 + /// + Mipmap = ((int)0x8293), + /// + /// Original was GL_AUTO_GENERATE_MIPMAP = 0x8295 + /// + AutoGenerateMipmap = ((int)0x8295), + /// + /// Original was GL_COLOR_ENCODING = 0x8296 + /// + ColorEncoding = ((int)0x8296), + /// + /// Original was GL_SRGB_READ = 0x8297 + /// + SrgbRead = ((int)0x8297), + /// + /// Original was GL_SRGB_WRITE = 0x8298 + /// + SrgbWrite = ((int)0x8298), + /// + /// Original was GL_FILTER = 0x829A + /// + Filter = ((int)0x829A), + /// + /// Original was GL_VERTEX_TEXTURE = 0x829B + /// + VertexTexture = ((int)0x829B), + /// + /// Original was GL_TESS_CONTROL_TEXTURE = 0x829C + /// + TessControlTexture = ((int)0x829C), + /// + /// Original was GL_TESS_EVALUATION_TEXTURE = 0x829D + /// + TessEvaluationTexture = ((int)0x829D), + /// + /// Original was GL_GEOMETRY_TEXTURE = 0x829E + /// + GeometryTexture = ((int)0x829E), + /// + /// Original was GL_FRAGMENT_TEXTURE = 0x829F + /// + FragmentTexture = ((int)0x829F), + /// + /// Original was GL_COMPUTE_TEXTURE = 0x82A0 + /// + ComputeTexture = ((int)0x82A0), + /// + /// Original was GL_TEXTURE_SHADOW = 0x82A1 + /// + TextureShadow = ((int)0x82A1), + /// + /// Original was GL_TEXTURE_GATHER = 0x82A2 + /// + TextureGather = ((int)0x82A2), + /// + /// Original was GL_TEXTURE_GATHER_SHADOW = 0x82A3 + /// + TextureGatherShadow = ((int)0x82A3), + /// + /// Original was GL_SHADER_IMAGE_LOAD = 0x82A4 + /// + ShaderImageLoad = ((int)0x82A4), + /// + /// Original was GL_SHADER_IMAGE_STORE = 0x82A5 + /// + ShaderImageStore = ((int)0x82A5), + /// + /// Original was GL_SHADER_IMAGE_ATOMIC = 0x82A6 + /// + ShaderImageAtomic = ((int)0x82A6), + /// + /// Original was GL_IMAGE_TEXEL_SIZE = 0x82A7 + /// + ImageTexelSize = ((int)0x82A7), + /// + /// Original was GL_IMAGE_COMPATIBILITY_CLASS = 0x82A8 + /// + ImageCompatibilityClass = ((int)0x82A8), + /// + /// Original was GL_IMAGE_PIXEL_FORMAT = 0x82A9 + /// + ImagePixelFormat = ((int)0x82A9), + /// + /// Original was GL_IMAGE_PIXEL_TYPE = 0x82AA + /// + ImagePixelType = ((int)0x82AA), + /// + /// Original was GL_SIMULTANEOUS_TEXTURE_AND_DEPTH_TEST = 0x82AC + /// + SimultaneousTextureAndDepthTest = ((int)0x82AC), + /// + /// Original was GL_SIMULTANEOUS_TEXTURE_AND_STENCIL_TEST = 0x82AD + /// + SimultaneousTextureAndStencilTest = ((int)0x82AD), + /// + /// Original was GL_SIMULTANEOUS_TEXTURE_AND_DEPTH_WRITE = 0x82AE + /// + SimultaneousTextureAndDepthWrite = ((int)0x82AE), + /// + /// Original was GL_SIMULTANEOUS_TEXTURE_AND_STENCIL_WRITE = 0x82AF + /// + SimultaneousTextureAndStencilWrite = ((int)0x82AF), + /// + /// Original was GL_TEXTURE_COMPRESSED_BLOCK_WIDTH = 0x82B1 + /// + TextureCompressedBlockWidth = ((int)0x82B1), + /// + /// Original was GL_TEXTURE_COMPRESSED_BLOCK_HEIGHT = 0x82B2 + /// + TextureCompressedBlockHeight = ((int)0x82B2), + /// + /// Original was GL_TEXTURE_COMPRESSED_BLOCK_SIZE = 0x82B3 + /// + TextureCompressedBlockSize = ((int)0x82B3), + /// + /// Original was GL_CLEAR_BUFFER = 0x82B4 + /// + ClearBuffer = ((int)0x82B4), + /// + /// Original was GL_TEXTURE_VIEW = 0x82B5 + /// + TextureView = ((int)0x82B5), + /// + /// Original was GL_VIEW_COMPATIBILITY_CLASS = 0x82B6 + /// + ViewCompatibilityClass = ((int)0x82B6), + /// + /// Original was GL_TEXTURE_COMPRESSED = 0x86A1 + /// + TextureCompressed = ((int)0x86A1), + /// + /// Original was GL_IMAGE_FORMAT_COMPATIBILITY_TYPE = 0x90C7 + /// + ImageFormatCompatibilityType = ((int)0x90C7), + /// + /// Original was GL_CLEAR_TEXTURE = 0x9365 + /// + ClearTexture = ((int)0x9365), + /// + /// Original was GL_NUM_SAMPLE_COUNTS = 0x9380 + /// + NumSampleCounts = ((int)0x9380), + } + /// /// Not used directly. /// @@ -23917,6 +27605,21 @@ namespace OpenTK.Graphics.ES30 ContextFlagNoErrorBitKhr = ((int)0x00000008), } + /// + /// Not used directly. + /// + public enum KhrParallelShaderCompile : int + { + /// + /// Original was GL_MAX_SHADER_COMPILER_THREADS_KHR = 0x91B0 + /// + MaxShaderCompilerThreadsKhr = ((int)0x91B0), + /// + /// Original was GL_COMPLETION_STATUS_KHR = 0x91B1 + /// + CompletionStatusKhr = ((int)0x91B1), + } + /// /// Not used directly. /// @@ -24587,7 +28290,7 @@ namespace OpenTK.Graphics.ES30 } /// - /// Not used directly. + /// Used in GL.Ext.BufferStorage, GL.Ext.BufferStorageExternal and 1 other function /// [Flags] public enum MapBufferUsageMask : int @@ -24645,17 +28348,64 @@ namespace OpenTK.Graphics.ES30 /// MapPersistentBit = ((int)0x0040), /// + /// Original was GL_MAP_PERSISTENT_BIT_EXT = 0x0040 + /// + MapPersistentBitExt = ((int)0x0040), + /// /// Original was GL_MAP_COHERENT_BIT = 0x0080 /// MapCoherentBit = ((int)0x0080), /// + /// Original was GL_MAP_COHERENT_BIT_EXT = 0x0080 + /// + MapCoherentBitExt = ((int)0x0080), + /// /// Original was GL_DYNAMIC_STORAGE_BIT = 0x0100 /// DynamicStorageBit = ((int)0x0100), /// + /// Original was GL_DYNAMIC_STORAGE_BIT_EXT = 0x0100 + /// + DynamicStorageBitExt = ((int)0x0100), + /// /// Original was GL_CLIENT_STORAGE_BIT = 0x0200 /// ClientStorageBit = ((int)0x0200), + /// + /// Original was GL_CLIENT_STORAGE_BIT_EXT = 0x0200 + /// + ClientStorageBitExt = ((int)0x0200), + /// + /// Original was GL_SPARSE_STORAGE_BIT_ARB = 0x0400 + /// + SparseStorageBitArb = ((int)0x0400), + /// + /// Original was GL_LGPU_SEPARATE_STORAGE_BIT_NVX = 0x0800 + /// + LgpuSeparateStorageBitNvx = ((int)0x0800), + /// + /// Original was GL_PER_GPU_STORAGE_BIT_NV = 0x0800 + /// + PerGpuStorageBitNv = ((int)0x0800), + } + + /// + /// Not used directly. + /// + public enum MapQuery : int + { + /// + /// Original was GL_COEFF = 0x0A00 + /// + Coeff = ((int)0x0A00), + /// + /// Original was GL_ORDER = 0x0A01 + /// + Order = ((int)0x0A01), + /// + /// Original was GL_DOMAIN = 0x0A02 + /// + Domain = ((int)0x0A02), } /// @@ -24819,7 +28569,7 @@ namespace OpenTK.Graphics.ES30 } /// - /// Not used directly. + /// Used in GL.Ext.MatrixFrustum, GL.Ext.MatrixLoad and 10 other functions /// public enum MatrixMode : int { @@ -24956,6 +28706,10 @@ namespace OpenTK.Graphics.ES30 /// ClientMappedBufferBarrierBit = ((int)0x00004000), /// + /// Original was GL_CLIENT_MAPPED_BUFFER_BARRIER_BIT_EXT = 0x00004000 + /// + ClientMappedBufferBarrierBitExt = ((int)0x00004000), + /// /// Original was GL_QUERY_BUFFER_BARRIER_BIT = 0x00008000 /// QueryBufferBarrierBit = ((int)0x00008000), @@ -24984,6 +28738,17 @@ namespace OpenTK.Graphics.ES30 ProtectedMemoryObjectExt = ((int)0x959B), } + /// + /// Not used directly. + /// + public enum MesaProgramBinaryFormats : int + { + /// + /// Original was GL_PROGRAM_BINARY_FORMAT_MESA = 0x875F + /// + ProgramBinaryFormatMesa = ((int)0x875F), + } + /// /// Not used directly. /// @@ -25311,6 +29076,25 @@ namespace OpenTK.Graphics.ES30 FactorMaxAmd = ((int)0x901D), } + /// + /// Not used directly. + /// + public enum NvClipSpaceWScaling : int + { + /// + /// Original was GL_VIEWPORT_POSITION_W_SCALE_NV = 0x937C + /// + ViewportPositionWScaleNv = ((int)0x937C), + /// + /// Original was GL_VIEWPORT_POSITION_W_SCALE_X_COEFF_NV = 0x937D + /// + ViewportPositionWScaleXCoeffNv = ((int)0x937D), + /// + /// Original was GL_VIEWPORT_POSITION_W_SCALE_Y_COEFF_NV = 0x937E + /// + ViewportPositionWScaleYCoeffNv = ((int)0x937E), + } + /// /// Not used directly. /// @@ -25357,6 +29141,17 @@ namespace OpenTK.Graphics.ES30 MaxSubpixelPrecisionBiasBitsNv = ((int)0x9349), } + /// + /// Not used directly. + /// + public enum NvConservativeRasterPreSnap : int + { + /// + /// Original was GL_CONSERVATIVE_RASTER_MODE_PRE_SNAP_NV = 0x9550 + /// + ConservativeRasterModePreSnapNv = ((int)0x9550), + } + /// /// Not used directly. /// @@ -26955,6 +30750,13 @@ namespace OpenTK.Graphics.ES30 CompressedSrgbAlphaS3tcDxt5Nv = ((int)0x8C4F), } + /// + /// Not used directly. + /// + public enum NvStereoViewRendering : int + { + } + /// /// Not used directly. /// @@ -27092,6 +30894,57 @@ namespace OpenTK.Graphics.ES30 { } + /// + /// Not used directly. + /// + public enum ObjectIdentifier : int + { + /// + /// Original was GL_TEXTURE = 0x1702 + /// + Texture = ((int)0x1702), + /// + /// Original was GL_VERTEX_ARRAY = 0x8074 + /// + VertexArray = ((int)0x8074), + /// + /// Original was GL_BUFFER = 0x82E0 + /// + Buffer = ((int)0x82E0), + /// + /// Original was GL_SHADER = 0x82E1 + /// + Shader = ((int)0x82E1), + /// + /// Original was GL_PROGRAM = 0x82E2 + /// + Program = ((int)0x82E2), + /// + /// Original was GL_QUERY = 0x82E3 + /// + Query = ((int)0x82E3), + /// + /// Original was GL_PROGRAM_PIPELINE = 0x82E4 + /// + ProgramPipeline = ((int)0x82E4), + /// + /// Original was GL_SAMPLER = 0x82E6 + /// + Sampler = ((int)0x82E6), + /// + /// Original was GL_FRAMEBUFFER = 0x8D40 + /// + Framebuffer = ((int)0x8D40), + /// + /// Original was GL_RENDERBUFFER = 0x8D41 + /// + Renderbuffer = ((int)0x8D41), + /// + /// Original was GL_TRANSFORM_FEEDBACK = 0x8E22 + /// + TransformFeedback = ((int)0x8E22), + } + /// /// Used in GL.GetObjectLabel, GL.ObjectLabel and 2 other functions /// @@ -28656,6 +32509,500 @@ namespace OpenTK.Graphics.ES30 { } + /// + /// Used in GL.Ext.PatchParameter, GL.Oes.PatchParameter + /// + public enum PatchParameterName : int + { + /// + /// Original was GL_PATCH_VERTICES = 0x8E72 + /// + PatchVertices = ((int)0x8E72), + /// + /// Original was GL_PATCH_DEFAULT_INNER_LEVEL = 0x8E73 + /// + PatchDefaultInnerLevel = ((int)0x8E73), + /// + /// Original was GL_PATCH_DEFAULT_OUTER_LEVEL = 0x8E74 + /// + PatchDefaultOuterLevel = ((int)0x8E74), + } + + /// + /// Used in GL.NV.GetPathColorGen, GL.NV.PathColorGen and 1 other function + /// + public enum PathColor : int + { + /// + /// Original was GL_PRIMARY_COLOR_NV = 0x852C + /// + PrimaryColorNv = ((int)0x852C), + /// + /// Original was GL_SECONDARY_COLOR_NV = 0x852D + /// + SecondaryColorNv = ((int)0x852D), + /// + /// Original was GL_PRIMARY_COLOR = 0x8577 + /// + PrimaryColor = ((int)0x8577), + } + + /// + /// Used in GL.NV.CoverFillPathInstanced, GL.NV.CoverFillPath and 2 other functions + /// + public enum PathCoverMode : int + { + /// + /// Original was GL_PATH_FILL_COVER_MODE_NV = 0x9082 + /// + PathFillCoverModeNv = ((int)0x9082), + /// + /// Original was GL_CONVEX_HULL_NV = 0x908B + /// + ConvexHullNv = ((int)0x908B), + /// + /// Original was GL_BOUNDING_BOX_NV = 0x908D + /// + BoundingBoxNv = ((int)0x908D), + /// + /// Original was GL_BOUNDING_BOX_OF_BOUNDING_BOXES_NV = 0x909C + /// + BoundingBoxOfBoundingBoxesNv = ((int)0x909C), + } + + /// + /// Used in GL.NV.CoverFillPathInstanced, GL.NV.CoverStrokePathInstanced and 5 other functions + /// + public enum PathElementType : int + { + /// + /// Original was GL_UTF8_NV = 0x909A + /// + Utf8Nv = ((int)0x909A), + /// + /// Original was GL_UTF16_NV = 0x909B + /// + Utf16Nv = ((int)0x909B), + } + + /// + /// Used in GL.NV.StencilFillPathInstanced, GL.NV.StencilFillPath + /// + public enum PathFillMode : int + { + /// + /// Original was GL_INVERT = 0x150A + /// + Invert = ((int)0x150A), + /// + /// Original was GL_PATH_FILL_MODE_NV = 0x9080 + /// + PathFillModeNv = ((int)0x9080), + /// + /// Original was GL_COUNT_UP_NV = 0x9088 + /// + CountUpNv = ((int)0x9088), + /// + /// Original was GL_COUNT_DOWN_NV = 0x9089 + /// + CountDownNv = ((int)0x9089), + } + + /// + /// Used in GL.NV.PathGlyphIndexArray, GL.NV.PathGlyphIndexRange and 2 other functions + /// + public enum PathFontStyle : int + { + /// + /// Original was GL_NONE = 0 + /// + None = ((int)0), + /// + /// Original was GL_BOLD_BIT_NV = 0x01 + /// + BoldBitNv = ((int)0x01), + /// + /// Original was GL_ITALIC_BIT_NV = 0x02 + /// + ItalicBitNv = ((int)0x02), + } + + /// + /// Used in GL.NV.PathGlyphRange, GL.NV.PathGlyph + /// + public enum PathFontTarget : int + { + /// + /// Original was GL_STANDARD_FONT_NAME_NV = 0x9072 + /// + StandardFontNameNv = ((int)0x9072), + /// + /// Original was GL_SYSTEM_FONT_NAME_NV = 0x9073 + /// + SystemFontNameNv = ((int)0x9073), + /// + /// Original was GL_FILE_NAME_NV = 0x9074 + /// + FileNameNv = ((int)0x9074), + } + + /// + /// Used in GL.NV.GetPathColorGen, GL.NV.GetPathTexGen and 3 other functions + /// + public enum PathGenMode : int + { + /// + /// Original was GL_NONE = 0 + /// + None = ((int)0), + /// + /// Original was GL_EYE_LINEAR = 0x2400 + /// + EyeLinear = ((int)0x2400), + /// + /// Original was GL_OBJECT_LINEAR = 0x2401 + /// + ObjectLinear = ((int)0x2401), + /// + /// Original was GL_CONSTANT = 0x8576 + /// + Constant = ((int)0x8576), + /// + /// Original was GL_PATH_OBJECT_BOUNDING_BOX_NV = 0x908A + /// + PathObjectBoundingBoxNv = ((int)0x908A), + } + + /// + /// Used in GL.NV.PathGlyphRange, GL.NV.PathGlyph + /// + public enum PathHandleMissingGlyphs : int + { + /// + /// Original was GL_SKIP_MISSING_GLYPH_NV = 0x90A9 + /// + SkipMissingGlyphNv = ((int)0x90A9), + /// + /// Original was GL_USE_MISSING_GLYPH_NV = 0x90AA + /// + UseMissingGlyphNv = ((int)0x90AA), + } + + /// + /// Used in GL.NV.GetPathSpacing + /// + public enum PathListMode : int + { + /// + /// Original was GL_ACCUM_ADJACENT_PAIRS_NV = 0x90AD + /// + AccumAdjacentPairsNv = ((int)0x90AD), + /// + /// Original was GL_ADJACENT_PAIRS_NV = 0x90AE + /// + AdjacentPairsNv = ((int)0x90AE), + /// + /// Original was GL_FIRST_TO_REST_NV = 0x90AF + /// + FirstToRestNv = ((int)0x90AF), + } + + /// + /// Used in GL.NV.GetPathMetricRange, GL.NV.GetPathMetric + /// + [Flags] + public enum PathMetricMask : int + { + /// + /// Original was GL_FONT_X_MIN_BOUNDS_BIT_NV = 0x00010000 + /// + FontXMinBoundsBitNv = ((int)0x00010000), + /// + /// Original was GL_FONT_Y_MIN_BOUNDS_BIT_NV = 0x00020000 + /// + FontYMinBoundsBitNv = ((int)0x00020000), + /// + /// Original was GL_FONT_X_MAX_BOUNDS_BIT_NV = 0x00040000 + /// + FontXMaxBoundsBitNv = ((int)0x00040000), + /// + /// Original was GL_FONT_Y_MAX_BOUNDS_BIT_NV = 0x00080000 + /// + FontYMaxBoundsBitNv = ((int)0x00080000), + /// + /// Original was GL_FONT_UNITS_PER_EM_BIT_NV = 0x00100000 + /// + FontUnitsPerEmBitNv = ((int)0x00100000), + /// + /// Original was GL_FONT_ASCENDER_BIT_NV = 0x00200000 + /// + FontAscenderBitNv = ((int)0x00200000), + /// + /// Original was GL_FONT_DESCENDER_BIT_NV = 0x00400000 + /// + FontDescenderBitNv = ((int)0x00400000), + /// + /// Original was GL_FONT_HEIGHT_BIT_NV = 0x00800000 + /// + FontHeightBitNv = ((int)0x00800000), + /// + /// Original was GL_GLYPH_WIDTH_BIT_NV = 0x01 + /// + GlyphWidthBitNv = ((int)0x01), + /// + /// Original was GL_FONT_MAX_ADVANCE_WIDTH_BIT_NV = 0x01000000 + /// + FontMaxAdvanceWidthBitNv = ((int)0x01000000), + /// + /// Original was GL_GLYPH_HEIGHT_BIT_NV = 0x02 + /// + GlyphHeightBitNv = ((int)0x02), + /// + /// Original was GL_FONT_MAX_ADVANCE_HEIGHT_BIT_NV = 0x02000000 + /// + FontMaxAdvanceHeightBitNv = ((int)0x02000000), + /// + /// Original was GL_GLYPH_HORIZONTAL_BEARING_X_BIT_NV = 0x04 + /// + GlyphHorizontalBearingXBitNv = ((int)0x04), + /// + /// Original was GL_FONT_UNDERLINE_POSITION_BIT_NV = 0x04000000 + /// + FontUnderlinePositionBitNv = ((int)0x04000000), + /// + /// Original was GL_GLYPH_HORIZONTAL_BEARING_Y_BIT_NV = 0x08 + /// + GlyphHorizontalBearingYBitNv = ((int)0x08), + /// + /// Original was GL_FONT_UNDERLINE_THICKNESS_BIT_NV = 0x08000000 + /// + FontUnderlineThicknessBitNv = ((int)0x08000000), + /// + /// Original was GL_GLYPH_HORIZONTAL_BEARING_ADVANCE_BIT_NV = 0x10 + /// + GlyphHorizontalBearingAdvanceBitNv = ((int)0x10), + /// + /// Original was GL_GLYPH_HAS_KERNING_BIT_NV = 0x100 + /// + GlyphHasKerningBitNv = ((int)0x100), + /// + /// Original was GL_FONT_HAS_KERNING_BIT_NV = 0x10000000 + /// + FontHasKerningBitNv = ((int)0x10000000), + /// + /// Original was GL_GLYPH_VERTICAL_BEARING_X_BIT_NV = 0x20 + /// + GlyphVerticalBearingXBitNv = ((int)0x20), + /// + /// Original was GL_FONT_NUM_GLYPH_INDICES_BIT_NV = 0x20000000 + /// + FontNumGlyphIndicesBitNv = ((int)0x20000000), + /// + /// Original was GL_GLYPH_VERTICAL_BEARING_Y_BIT_NV = 0x40 + /// + GlyphVerticalBearingYBitNv = ((int)0x40), + /// + /// Original was GL_GLYPH_VERTICAL_BEARING_ADVANCE_BIT_NV = 0x80 + /// + GlyphVerticalBearingAdvanceBitNv = ((int)0x80), + } + + /// + /// Used in GL.NV.GetPathParameter, GL.NV.PathParameter + /// + public enum PathParameter : int + { + /// + /// Original was GL_PATH_STROKE_WIDTH_NV = 0x9075 + /// + PathStrokeWidthNv = ((int)0x9075), + /// + /// Original was GL_PATH_END_CAPS_NV = 0x9076 + /// + PathEndCapsNv = ((int)0x9076), + /// + /// Original was GL_PATH_INITIAL_END_CAP_NV = 0x9077 + /// + PathInitialEndCapNv = ((int)0x9077), + /// + /// Original was GL_PATH_TERMINAL_END_CAP_NV = 0x9078 + /// + PathTerminalEndCapNv = ((int)0x9078), + /// + /// Original was GL_PATH_JOIN_STYLE_NV = 0x9079 + /// + PathJoinStyleNv = ((int)0x9079), + /// + /// Original was GL_PATH_MITER_LIMIT_NV = 0x907A + /// + PathMiterLimitNv = ((int)0x907A), + /// + /// Original was GL_PATH_DASH_CAPS_NV = 0x907B + /// + PathDashCapsNv = ((int)0x907B), + /// + /// Original was GL_PATH_INITIAL_DASH_CAP_NV = 0x907C + /// + PathInitialDashCapNv = ((int)0x907C), + /// + /// Original was GL_PATH_TERMINAL_DASH_CAP_NV = 0x907D + /// + PathTerminalDashCapNv = ((int)0x907D), + /// + /// Original was GL_PATH_DASH_OFFSET_NV = 0x907E + /// + PathDashOffsetNv = ((int)0x907E), + /// + /// Original was GL_PATH_CLIENT_LENGTH_NV = 0x907F + /// + PathClientLengthNv = ((int)0x907F), + /// + /// Original was GL_PATH_FILL_MODE_NV = 0x9080 + /// + PathFillModeNv = ((int)0x9080), + /// + /// Original was GL_PATH_FILL_MASK_NV = 0x9081 + /// + PathFillMaskNv = ((int)0x9081), + /// + /// Original was GL_PATH_FILL_COVER_MODE_NV = 0x9082 + /// + PathFillCoverModeNv = ((int)0x9082), + /// + /// Original was GL_PATH_STROKE_COVER_MODE_NV = 0x9083 + /// + PathStrokeCoverModeNv = ((int)0x9083), + /// + /// Original was GL_PATH_STROKE_MASK_NV = 0x9084 + /// + PathStrokeMaskNv = ((int)0x9084), + /// + /// Original was GL_PATH_OBJECT_BOUNDING_BOX_NV = 0x908A + /// + PathObjectBoundingBoxNv = ((int)0x908A), + /// + /// Original was GL_PATH_COMMAND_COUNT_NV = 0x909D + /// + PathCommandCountNv = ((int)0x909D), + /// + /// Original was GL_PATH_COORD_COUNT_NV = 0x909E + /// + PathCoordCountNv = ((int)0x909E), + /// + /// Original was GL_PATH_DASH_ARRAY_COUNT_NV = 0x909F + /// + PathDashArrayCountNv = ((int)0x909F), + /// + /// Original was GL_PATH_COMPUTED_LENGTH_NV = 0x90A0 + /// + PathComputedLengthNv = ((int)0x90A0), + /// + /// Original was GL_PATH_FILL_BOUNDING_BOX_NV = 0x90A1 + /// + PathFillBoundingBoxNv = ((int)0x90A1), + /// + /// Original was GL_PATH_STROKE_BOUNDING_BOX_NV = 0x90A2 + /// + PathStrokeBoundingBoxNv = ((int)0x90A2), + /// + /// Original was GL_PATH_DASH_OFFSET_RESET_NV = 0x90B4 + /// + PathDashOffsetResetNv = ((int)0x90B4), + } + + /// + /// Used in GL.NV.PathString + /// + public enum PathStringFormat : int + { + /// + /// Original was GL_PATH_FORMAT_SVG_NV = 0x9070 + /// + PathFormatSvgNv = ((int)0x9070), + /// + /// Original was GL_PATH_FORMAT_PS_NV = 0x9071 + /// + PathFormatPsNv = ((int)0x9071), + } + + /// + /// Used in GL.NV.CoverFillPathInstanced, GL.NV.CoverStrokePathInstanced and 4 other functions + /// + public enum PathTransformType : int + { + /// + /// Original was GL_NONE = 0 + /// + None = ((int)0), + /// + /// Original was GL_TRANSLATE_X_NV = 0x908E + /// + TranslateXNv = ((int)0x908E), + /// + /// Original was GL_TRANSLATE_Y_NV = 0x908F + /// + TranslateYNv = ((int)0x908F), + /// + /// Original was GL_TRANSLATE_2D_NV = 0x9090 + /// + Translate2DNv = ((int)0x9090), + /// + /// Original was GL_TRANSLATE_3D_NV = 0x9091 + /// + Translate3DNv = ((int)0x9091), + /// + /// Original was GL_AFFINE_2D_NV = 0x9092 + /// + Affine2DNv = ((int)0x9092), + /// + /// Original was GL_AFFINE_3D_NV = 0x9094 + /// + Affine3DNv = ((int)0x9094), + /// + /// Original was GL_TRANSPOSE_AFFINE_2D_NV = 0x9096 + /// + TransposeAffine2DNv = ((int)0x9096), + /// + /// Original was GL_TRANSPOSE_AFFINE_3D_NV = 0x9098 + /// + TransposeAffine3DNv = ((int)0x9098), + } + + /// + /// Used in GL.Ext.GetProgramPipeline + /// + public enum PipelineParameterName : int + { + /// + /// Original was GL_ACTIVE_PROGRAM = 0x8259 + /// + ActiveProgram = ((int)0x8259), + /// + /// Original was GL_FRAGMENT_SHADER = 0x8B30 + /// + FragmentShader = ((int)0x8B30), + /// + /// Original was GL_VERTEX_SHADER = 0x8B31 + /// + VertexShader = ((int)0x8B31), + /// + /// Original was GL_INFO_LOG_LENGTH = 0x8B84 + /// + InfoLogLength = ((int)0x8B84), + /// + /// Original was GL_GEOMETRY_SHADER = 0x8DD9 + /// + GeometryShader = ((int)0x8DD9), + /// + /// Original was GL_TESS_EVALUATION_SHADER = 0x8E87 + /// + TessEvaluationShader = ((int)0x8E87), + /// + /// Original was GL_TESS_CONTROL_SHADER = 0x8E88 + /// + TessControlShader = ((int)0x8E88), + } + /// /// Not used directly. /// @@ -28688,7 +33035,7 @@ namespace OpenTK.Graphics.ES30 } /// - /// Used in GL.CompressedTexSubImage2D, GL.CompressedTexSubImage3D and 9 other functions + /// Used in GL.CompressedTexSubImage2D, GL.CompressedTexSubImage3D and 15 other functions /// public enum PixelFormat : int { @@ -29323,7 +33670,7 @@ namespace OpenTK.Graphics.ES30 } /// - /// Used in GL.ReadnPixels, GL.ReadPixels and 7 other functions + /// Used in GL.ReadnPixels, GL.ReadPixels and 11 other functions /// public enum PixelType : int { @@ -29519,6 +33866,37 @@ namespace OpenTK.Graphics.ES30 Fill = ((int)0x1B02), } + /// + /// Not used directly. + /// + public enum PrecisionType : int + { + /// + /// Original was GL_LOW_FLOAT = 0x8DF0 + /// + LowFloat = ((int)0x8DF0), + /// + /// Original was GL_MEDIUM_FLOAT = 0x8DF1 + /// + MediumFloat = ((int)0x8DF1), + /// + /// Original was GL_HIGH_FLOAT = 0x8DF2 + /// + HighFloat = ((int)0x8DF2), + /// + /// Original was GL_LOW_INT = 0x8DF3 + /// + LowInt = ((int)0x8DF3), + /// + /// Original was GL_MEDIUM_INT = 0x8DF4 + /// + MediumInt = ((int)0x8DF4), + /// + /// Original was GL_HIGH_INT = 0x8DF5 + /// + HighInt = ((int)0x8DF5), + } + /// /// Used in GL.Angle.DrawArraysInstanced, GL.Angle.DrawElementsInstanced and 25 other functions /// @@ -29626,6 +34004,116 @@ namespace OpenTK.Graphics.ES30 PatchesExt = ((int)0x000E), } + /// + /// Used in GL.Ext.GetProgramResourceLocationIndex, GL.NV.GetProgramResource + /// + public enum ProgramInterface : int + { + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER = 0x8C8E + /// + TransformFeedbackBuffer = ((int)0x8C8E), + /// + /// Original was GL_UNIFORM = 0x92E1 + /// + Uniform = ((int)0x92E1), + /// + /// Original was GL_UNIFORM_BLOCK = 0x92E2 + /// + UniformBlock = ((int)0x92E2), + /// + /// Original was GL_PROGRAM_INPUT = 0x92E3 + /// + ProgramInput = ((int)0x92E3), + /// + /// Original was GL_PROGRAM_OUTPUT = 0x92E4 + /// + ProgramOutput = ((int)0x92E4), + /// + /// Original was GL_BUFFER_VARIABLE = 0x92E5 + /// + BufferVariable = ((int)0x92E5), + /// + /// Original was GL_SHADER_STORAGE_BLOCK = 0x92E6 + /// + ShaderStorageBlock = ((int)0x92E6), + /// + /// Original was GL_VERTEX_SUBROUTINE = 0x92E8 + /// + VertexSubroutine = ((int)0x92E8), + /// + /// Original was GL_TESS_CONTROL_SUBROUTINE = 0x92E9 + /// + TessControlSubroutine = ((int)0x92E9), + /// + /// Original was GL_TESS_EVALUATION_SUBROUTINE = 0x92EA + /// + TessEvaluationSubroutine = ((int)0x92EA), + /// + /// Original was GL_GEOMETRY_SUBROUTINE = 0x92EB + /// + GeometrySubroutine = ((int)0x92EB), + /// + /// Original was GL_FRAGMENT_SUBROUTINE = 0x92EC + /// + FragmentSubroutine = ((int)0x92EC), + /// + /// Original was GL_COMPUTE_SUBROUTINE = 0x92ED + /// + ComputeSubroutine = ((int)0x92ED), + /// + /// Original was GL_VERTEX_SUBROUTINE_UNIFORM = 0x92EE + /// + VertexSubroutineUniform = ((int)0x92EE), + /// + /// Original was GL_TESS_CONTROL_SUBROUTINE_UNIFORM = 0x92EF + /// + TessControlSubroutineUniform = ((int)0x92EF), + /// + /// Original was GL_TESS_EVALUATION_SUBROUTINE_UNIFORM = 0x92F0 + /// + TessEvaluationSubroutineUniform = ((int)0x92F0), + /// + /// Original was GL_GEOMETRY_SUBROUTINE_UNIFORM = 0x92F1 + /// + GeometrySubroutineUniform = ((int)0x92F1), + /// + /// Original was GL_FRAGMENT_SUBROUTINE_UNIFORM = 0x92F2 + /// + FragmentSubroutineUniform = ((int)0x92F2), + /// + /// Original was GL_COMPUTE_SUBROUTINE_UNIFORM = 0x92F3 + /// + ComputeSubroutineUniform = ((int)0x92F3), + /// + /// Original was GL_TRANSFORM_FEEDBACK_VARYING = 0x92F4 + /// + TransformFeedbackVarying = ((int)0x92F4), + } + + /// + /// Not used directly. + /// + public enum ProgramInterfacePName : int + { + /// + /// Original was GL_ACTIVE_RESOURCES = 0x92F5 + /// + ActiveResources = ((int)0x92F5), + /// + /// Original was GL_MAX_NAME_LENGTH = 0x92F6 + /// + MaxNameLength = ((int)0x92F6), + /// + /// Original was GL_MAX_NUM_ACTIVE_VARIABLES = 0x92F7 + /// + MaxNumActiveVariables = ((int)0x92F7), + /// + /// Original was GL_MAX_NUM_COMPATIBLE_SUBROUTINES = 0x92F8 + /// + MaxNumCompatibleSubroutines = ((int)0x92F8), + } + /// /// Not used directly. /// @@ -29740,6 +34228,135 @@ namespace OpenTK.Graphics.ES30 TransformFeedbackVaryings = ((int)0x8C83), } + /// + /// Not used directly. + /// + public enum ProgramParameterPName : int + { + /// + /// Original was GL_PROGRAM_BINARY_RETRIEVABLE_HINT = 0x8257 + /// + ProgramBinaryRetrievableHint = ((int)0x8257), + /// + /// Original was GL_PROGRAM_SEPARABLE = 0x8258 + /// + ProgramSeparable = ((int)0x8258), + } + + /// + /// Not used directly. + /// + public enum ProgramPropertyArb : int + { + /// + /// Original was GL_COMPUTE_WORK_GROUP_SIZE = 0x8267 + /// + ComputeWorkGroupSize = ((int)0x8267), + /// + /// Original was GL_PROGRAM_BINARY_LENGTH = 0x8741 + /// + ProgramBinaryLength = ((int)0x8741), + /// + /// Original was GL_GEOMETRY_VERTICES_OUT = 0x8916 + /// + GeometryVerticesOut = ((int)0x8916), + /// + /// Original was GL_GEOMETRY_INPUT_TYPE = 0x8917 + /// + GeometryInputType = ((int)0x8917), + /// + /// Original was GL_GEOMETRY_OUTPUT_TYPE = 0x8918 + /// + GeometryOutputType = ((int)0x8918), + /// + /// Original was GL_ACTIVE_UNIFORM_BLOCK_MAX_NAME_LENGTH = 0x8A35 + /// + ActiveUniformBlockMaxNameLength = ((int)0x8A35), + /// + /// Original was GL_ACTIVE_UNIFORM_BLOCKS = 0x8A36 + /// + ActiveUniformBlocks = ((int)0x8A36), + /// + /// Original was GL_DELETE_STATUS = 0x8B80 + /// + DeleteStatus = ((int)0x8B80), + /// + /// Original was GL_LINK_STATUS = 0x8B82 + /// + LinkStatus = ((int)0x8B82), + /// + /// Original was GL_VALIDATE_STATUS = 0x8B83 + /// + ValidateStatus = ((int)0x8B83), + /// + /// Original was GL_INFO_LOG_LENGTH = 0x8B84 + /// + InfoLogLength = ((int)0x8B84), + /// + /// Original was GL_ATTACHED_SHADERS = 0x8B85 + /// + AttachedShaders = ((int)0x8B85), + /// + /// Original was GL_ACTIVE_UNIFORMS = 0x8B86 + /// + ActiveUniforms = ((int)0x8B86), + /// + /// Original was GL_ACTIVE_UNIFORM_MAX_LENGTH = 0x8B87 + /// + ActiveUniformMaxLength = ((int)0x8B87), + /// + /// Original was GL_ACTIVE_ATTRIBUTES = 0x8B89 + /// + ActiveAttributes = ((int)0x8B89), + /// + /// Original was GL_ACTIVE_ATTRIBUTE_MAX_LENGTH = 0x8B8A + /// + ActiveAttributeMaxLength = ((int)0x8B8A), + /// + /// Original was GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH = 0x8C76 + /// + TransformFeedbackVaryingMaxLength = ((int)0x8C76), + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER_MODE = 0x8C7F + /// + TransformFeedbackBufferMode = ((int)0x8C7F), + /// + /// Original was GL_TRANSFORM_FEEDBACK_VARYINGS = 0x8C83 + /// + TransformFeedbackVaryings = ((int)0x8C83), + /// + /// Original was GL_ACTIVE_ATOMIC_COUNTER_BUFFERS = 0x92D9 + /// + ActiveAtomicCounterBuffers = ((int)0x92D9), + } + + /// + /// Not used directly. + /// + public enum ProgramStagePName : int + { + /// + /// Original was GL_ACTIVE_SUBROUTINES = 0x8DE5 + /// + ActiveSubroutines = ((int)0x8DE5), + /// + /// Original was GL_ACTIVE_SUBROUTINE_UNIFORMS = 0x8DE6 + /// + ActiveSubroutineUniforms = ((int)0x8DE6), + /// + /// Original was GL_ACTIVE_SUBROUTINE_UNIFORM_LOCATIONS = 0x8E47 + /// + ActiveSubroutineUniformLocations = ((int)0x8E47), + /// + /// Original was GL_ACTIVE_SUBROUTINE_MAX_LENGTH = 0x8E48 + /// + ActiveSubroutineMaxLength = ((int)0x8E48), + /// + /// Original was GL_ACTIVE_SUBROUTINE_UNIFORM_MAX_LENGTH = 0x8E49 + /// + ActiveSubroutineUniformMaxLength = ((int)0x8E49), + } + /// /// Not used directly. /// @@ -29884,6 +34501,41 @@ namespace OpenTK.Graphics.ES30 FramebufferFetchNoncoherentQcom = ((int)0x96A2), } + /// + /// Not used directly. + /// + public enum QcomTextureFoveated : int + { + /// + /// Original was GL_FOVEATION_ENABLE_BIT_QCOM = 0x00000001 + /// + FoveationEnableBitQcom = ((int)0x00000001), + /// + /// Original was GL_FOVEATION_SCALED_BIN_METHOD_BIT_QCOM = 0x00000002 + /// + FoveationScaledBinMethodBitQcom = ((int)0x00000002), + /// + /// Original was GL_TEXTURE_FOVEATED_FEATURE_BITS_QCOM = 0x8BFB + /// + TextureFoveatedFeatureBitsQcom = ((int)0x8BFB), + /// + /// Original was GL_TEXTURE_FOVEATED_MIN_PIXEL_DENSITY_QCOM = 0x8BFC + /// + TextureFoveatedMinPixelDensityQcom = ((int)0x8BFC), + /// + /// Original was GL_TEXTURE_FOVEATED_FEATURE_QUERY_QCOM = 0x8BFD + /// + TextureFoveatedFeatureQueryQcom = ((int)0x8BFD), + /// + /// Original was GL_TEXTURE_FOVEATED_NUM_FOCAL_POINTS_QUERY_QCOM = 0x8BFE + /// + TextureFoveatedNumFocalPointsQueryQcom = ((int)0x8BFE), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_FOVEATION_QCOM = 0x8BFF + /// + FramebufferIncompleteFoveationQcom = ((int)0x8BFF), + } + /// /// Not used directly. /// @@ -30042,15 +34694,61 @@ namespace OpenTK.Graphics.ES30 } /// - /// Used in GL.BeginQuery, GL.EndQuery and 4 other functions + /// Not used directly. + /// + public enum QueryObjectParameterName : int + { + /// + /// Original was GL_QUERY_TARGET = 0x82EA + /// + QueryTarget = ((int)0x82EA), + /// + /// Original was GL_QUERY_RESULT = 0x8866 + /// + QueryResult = ((int)0x8866), + /// + /// Original was GL_QUERY_RESULT_AVAILABLE = 0x8867 + /// + QueryResultAvailable = ((int)0x8867), + /// + /// Original was GL_QUERY_RESULT_NO_WAIT = 0x9194 + /// + QueryResultNoWait = ((int)0x9194), + } + + /// + /// Not used directly. + /// + public enum QueryParameterName : int + { + /// + /// Original was GL_QUERY_COUNTER_BITS = 0x8864 + /// + QueryCounterBits = ((int)0x8864), + /// + /// Original was GL_CURRENT_QUERY = 0x8865 + /// + CurrentQuery = ((int)0x8865), + } + + /// + /// Used in GL.BeginQuery, GL.EndQuery and 5 other functions /// public enum QueryTarget : int { + /// + /// Original was GL_TIME_ELAPSED = 0x88BF + /// + TimeElapsed = ((int)0x88BF), /// /// Original was GL_TIME_ELAPSED_EXT = 0x88BF /// TimeElapsedExt = ((int)0x88BF), /// + /// Original was GL_SAMPLES_PASSED = 0x8914 + /// + SamplesPassed = ((int)0x8914), + /// /// Original was GL_ANY_SAMPLES_PASSED = 0x8C2F /// AnySamplesPassed = ((int)0x8C2F), @@ -30059,6 +34757,10 @@ namespace OpenTK.Graphics.ES30 /// AnySamplesPassedExt = ((int)0x8C2F), /// + /// Original was GL_PRIMITIVES_GENERATED = 0x8C87 + /// + PrimitivesGenerated = ((int)0x8C87), + /// /// Original was GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN = 0x8C88 /// TransformFeedbackPrimitivesWritten = ((int)0x8C88), @@ -30073,7 +34775,7 @@ namespace OpenTK.Graphics.ES30 } /// - /// Used in GL.ReadBuffer + /// Used in GL.ReadBuffer, GL.Ext.ReadBufferIndexed /// public enum ReadBufferMode : int { @@ -30586,10 +35288,14 @@ namespace OpenTK.Graphics.ES30 } /// - /// Used in GL.GetSamplerParameter, GL.SamplerParameter + /// Used in GL.GetSamplerParameter, GL.SamplerParameter and 4 other functions /// public enum SamplerParameterName : int { + /// + /// Original was GL_TEXTURE_BORDER_COLOR = 0x1004 + /// + TextureBorderColor = ((int)0x1004), /// /// Original was GL_TEXTURE_MAG_FILTER = 0x2800 /// @@ -30688,6 +35394,33 @@ namespace OpenTK.Graphics.ES30 ShaderSourceLength = ((int)0x8B88), } + /// + /// Not used directly. + /// + public enum ShaderParameterName : int + { + /// + /// Original was GL_SHADER_TYPE = 0x8B4F + /// + ShaderType = ((int)0x8B4F), + /// + /// Original was GL_DELETE_STATUS = 0x8B80 + /// + DeleteStatus = ((int)0x8B80), + /// + /// Original was GL_COMPILE_STATUS = 0x8B81 + /// + CompileStatus = ((int)0x8B81), + /// + /// Original was GL_INFO_LOG_LENGTH = 0x8B84 + /// + InfoLogLength = ((int)0x8B84), + /// + /// Original was GL_SHADER_SOURCE_LENGTH = 0x8B88 + /// + ShaderSourceLength = ((int)0x8B88), + } + /// /// Used in GL.GetShaderPrecisionFormat /// @@ -30720,7 +35453,7 @@ namespace OpenTK.Graphics.ES30 } /// - /// Used in GL.CreateShader, GL.GetShaderPrecisionFormat + /// Used in GL.CreateShader, GL.GetShaderPrecisionFormat and 2 other functions /// public enum ShaderType : int { @@ -30729,9 +35462,33 @@ namespace OpenTK.Graphics.ES30 /// FragmentShader = ((int)0x8B30), /// + /// Original was GL_FRAGMENT_SHADER_ARB = 0x8B30 + /// + FragmentShaderArb = ((int)0x8B30), + /// /// Original was GL_VERTEX_SHADER = 0x8B31 /// VertexShader = ((int)0x8B31), + /// + /// Original was GL_VERTEX_SHADER_ARB = 0x8B31 + /// + VertexShaderArb = ((int)0x8B31), + /// + /// Original was GL_GEOMETRY_SHADER = 0x8DD9 + /// + GeometryShader = ((int)0x8DD9), + /// + /// Original was GL_TESS_EVALUATION_SHADER = 0x8E87 + /// + TessEvaluationShader = ((int)0x8E87), + /// + /// Original was GL_TESS_CONTROL_SHADER = 0x8E88 + /// + TessControlShader = ((int)0x8E88), + /// + /// Original was GL_COMPUTE_SHADER = 0x91B9 + /// + ComputeShader = ((int)0x91B9), } /// @@ -31448,6 +36205,29 @@ namespace OpenTK.Graphics.ES30 Extensions = ((int)0X1f03), } + /// + /// Not used directly. + /// + public enum SubroutineParameterName : int + { + /// + /// Original was GL_UNIFORM_SIZE = 0x8A38 + /// + UniformSize = ((int)0x8A38), + /// + /// Original was GL_UNIFORM_NAME_LENGTH = 0x8A39 + /// + UniformNameLength = ((int)0x8A39), + /// + /// Original was GL_NUM_COMPATIBLE_SUBROUTINES = 0x8E4A + /// + NumCompatibleSubroutines = ((int)0x8E4A), + /// + /// Original was GL_COMPATIBLE_SUBROUTINES = 0x8E4B + /// + CompatibleSubroutines = ((int)0x8E4B), + } + /// /// Used in GL.Apple.FenceSync, GL.FenceSync /// @@ -31463,6 +36243,22 @@ namespace OpenTK.Graphics.ES30 SyncGpuCommandsCompleteApple = ((int)0x9117), } + /// + /// Not used directly. + /// + [Flags] + public enum SyncObjectMask : int + { + /// + /// Original was GL_SYNC_FLUSH_COMMANDS_BIT = 0x00000001 + /// + SyncFlushCommandsBit = ((int)0x00000001), + /// + /// Original was GL_SYNC_FLUSH_COMMANDS_BIT_APPLE = 0x00000001 + /// + SyncFlushCommandsBitApple = ((int)0x00000001), + } + /// /// Used in GL.Apple.GetSync, GL.GetSync /// @@ -31502,6 +36298,29 @@ namespace OpenTK.Graphics.ES30 SyncFlagsApple = ((int)0x9115), } + /// + /// Not used directly. + /// + public enum SyncStatus : int + { + /// + /// Original was GL_ALREADY_SIGNALED = 0x911A + /// + AlreadySignaled = ((int)0x911A), + /// + /// Original was GL_TIMEOUT_EXPIRED = 0x911B + /// + TimeoutExpired = ((int)0x911B), + /// + /// Original was GL_CONDITION_SATISFIED = 0x911C + /// + ConditionSatisfied = ((int)0x911C), + /// + /// Original was GL_WAIT_FAILED = 0x911D + /// + WaitFailed = ((int)0x911D), + } + /// /// Not used directly. /// @@ -32249,6 +37068,14 @@ namespace OpenTK.Graphics.ES30 /// public enum TextureLayout : int { + /// + /// Original was GL_LAYOUT_DEPTH_READ_ONLY_STENCIL_ATTACHMENT_EXT = 0x9530 + /// + LayoutDepthReadOnlyStencilAttachmentExt = ((int)0x9530), + /// + /// Original was GL_LAYOUT_DEPTH_ATTACHMENT_STENCIL_READ_ONLY_EXT = 0x9531 + /// + LayoutDepthAttachmentStencilReadOnlyExt = ((int)0x9531), /// /// Original was GL_LAYOUT_GENERAL_EXT = 0x958D /// @@ -32402,11 +37229,35 @@ namespace OpenTK.Graphics.ES30 /// public enum TextureParameterName : int { + /// + /// Original was GL_TEXTURE_WIDTH = 0x1000 + /// + TextureWidth = ((int)0x1000), + /// + /// Original was GL_TEXTURE_HEIGHT = 0x1001 + /// + TextureHeight = ((int)0x1001), + /// + /// Original was GL_TEXTURE_COMPONENTS = 0x1003 + /// + TextureComponents = ((int)0x1003), + /// + /// Original was GL_TEXTURE_INTERNAL_FORMAT = 0x1003 + /// + TextureInternalFormat = ((int)0x1003), /// /// Original was GL_TEXTURE_BORDER_COLOR = 0x1004 /// TextureBorderColor = ((int)0x1004), /// + /// Original was GL_TEXTURE_BORDER_COLOR_NV = 0x1004 + /// + TextureBorderColorNv = ((int)0x1004), + /// + /// Original was GL_TEXTURE_BORDER = 0x1005 + /// + TextureBorder = ((int)0x1005), + /// /// Original was GL_TEXTURE_MAG_FILTER = 0x2800 /// TextureMagFilter = ((int)0x2800), @@ -32423,6 +37274,30 @@ namespace OpenTK.Graphics.ES30 /// TextureWrapT = ((int)0x2803), /// + /// Original was GL_TEXTURE_RED_SIZE = 0x805C + /// + TextureRedSize = ((int)0x805C), + /// + /// Original was GL_TEXTURE_GREEN_SIZE = 0x805D + /// + TextureGreenSize = ((int)0x805D), + /// + /// Original was GL_TEXTURE_BLUE_SIZE = 0x805E + /// + TextureBlueSize = ((int)0x805E), + /// + /// Original was GL_TEXTURE_ALPHA_SIZE = 0x805F + /// + TextureAlphaSize = ((int)0x805F), + /// + /// Original was GL_TEXTURE_LUMINANCE_SIZE = 0x8060 + /// + TextureLuminanceSize = ((int)0x8060), + /// + /// Original was GL_TEXTURE_INTENSITY_SIZE = 0x8061 + /// + TextureIntensitySize = ((int)0x8061), + /// /// Original was GL_TEXTURE_PRIORITY = 0x8066 /// TexturePriority = ((int)0x8066), @@ -32431,6 +37306,14 @@ namespace OpenTK.Graphics.ES30 /// TexturePriorityExt = ((int)0x8066), /// + /// Original was GL_TEXTURE_RESIDENT = 0x8067 + /// + TextureResident = ((int)0x8067), + /// + /// Original was GL_TEXTURE_DEPTH_EXT = 0x8071 + /// + TextureDepthExt = ((int)0x8071), + /// /// Original was GL_TEXTURE_WRAP_R = 0x8072 /// TextureWrapR = ((int)0x8072), @@ -32451,6 +37334,14 @@ namespace OpenTK.Graphics.ES30 /// DetailTextureModeSgis = ((int)0x809B), /// + /// Original was GL_DETAIL_TEXTURE_FUNC_POINTS_SGIS = 0x809C + /// + DetailTextureFuncPointsSgis = ((int)0x809C), + /// + /// Original was GL_SHARPEN_TEXTURE_FUNC_POINTS_SGIS = 0x80B0 + /// + SharpenTextureFuncPointsSgis = ((int)0x80B0), + /// /// Original was GL_SHADOW_AMBIENT_SGIX = 0x80BF /// ShadowAmbientSgix = ((int)0x80BF), @@ -32463,6 +37354,10 @@ namespace OpenTK.Graphics.ES30 /// QuadTextureSelectSgis = ((int)0x8125), /// + /// Original was GL_TEXTURE_4DSIZE_SGIS = 0x8136 + /// + Texture4DsizeSgis = ((int)0x8136), + /// /// Original was GL_TEXTURE_WRAP_Q_SGIS = 0x8137 /// TextureWrapQSgis = ((int)0x8137), @@ -32471,18 +37366,38 @@ namespace OpenTK.Graphics.ES30 /// TextureMinLod = ((int)0x813A), /// + /// Original was GL_TEXTURE_MIN_LOD_SGIS = 0x813A + /// + TextureMinLodSgis = ((int)0x813A), + /// /// Original was GL_TEXTURE_MAX_LOD = 0x813B /// TextureMaxLod = ((int)0x813B), /// + /// Original was GL_TEXTURE_MAX_LOD_SGIS = 0x813B + /// + TextureMaxLodSgis = ((int)0x813B), + /// /// Original was GL_TEXTURE_BASE_LEVEL = 0x813C /// TextureBaseLevel = ((int)0x813C), /// + /// Original was GL_TEXTURE_BASE_LEVEL_SGIS = 0x813C + /// + TextureBaseLevelSgis = ((int)0x813C), + /// /// Original was GL_TEXTURE_MAX_LEVEL = 0x813D /// TextureMaxLevel = ((int)0x813D), /// + /// Original was GL_TEXTURE_MAX_LEVEL_SGIS = 0x813D + /// + TextureMaxLevelSgis = ((int)0x813D), + /// + /// Original was GL_TEXTURE_FILTER4_SIZE_SGIS = 0x8147 + /// + TextureFilter4SizeSgis = ((int)0x8147), + /// /// Original was GL_TEXTURE_CLIPMAP_CENTER_SGIX = 0x8171 /// TextureClipmapCenterSgix = ((int)0x8171), @@ -32539,6 +37454,18 @@ namespace OpenTK.Graphics.ES30 /// TextureCompareSgix = ((int)0x819A), /// + /// Original was GL_TEXTURE_COMPARE_OPERATOR_SGIX = 0x819B + /// + TextureCompareOperatorSgix = ((int)0x819B), + /// + /// Original was GL_TEXTURE_LEQUAL_R_SGIX = 0x819C + /// + TextureLequalRSgix = ((int)0x819C), + /// + /// Original was GL_TEXTURE_GEQUAL_R_SGIX = 0x819D + /// + TextureGequalRSgix = ((int)0x819D), + /// /// Original was GL_TEXTURE_MAX_CLAMP_S_SGIX = 0x8369 /// TextureMaxClampSSgix = ((int)0x8369), @@ -32593,7 +37520,19 @@ namespace OpenTK.Graphics.ES30 } /// - /// Used in GL.BindTexture, GL.GenerateMipmap and 13 other functions + /// Not used directly. + /// + [Flags] + public enum TextureStorageMaskAmd : int + { + /// + /// Original was GL_TEXTURE_STORAGE_SPARSE_BIT_AMD = 0x00000001 + /// + TextureStorageSparseBitAmd = ((int)0x00000001), + } + + /// + /// Used in GL.BindTexture, GL.GenerateMipmap and 24 other functions /// public enum TextureTarget : int { @@ -33018,6 +37957,33 @@ namespace OpenTK.Graphics.ES30 SeparateAttribs = ((int)0x8C8D), } + /// + /// Not used directly. + /// + public enum TransformFeedbackPName : int + { + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER_START = 0x8C84 + /// + TransformFeedbackBufferStart = ((int)0x8C84), + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER_SIZE = 0x8C85 + /// + TransformFeedbackBufferSize = ((int)0x8C85), + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER_BINDING = 0x8C8F + /// + TransformFeedbackBufferBinding = ((int)0x8C8F), + /// + /// Original was GL_TRANSFORM_FEEDBACK_PAUSED = 0x8E23 + /// + TransformFeedbackPaused = ((int)0x8E23), + /// + /// Original was GL_TRANSFORM_FEEDBACK_ACTIVE = 0x8E24 + /// + TransformFeedbackActive = ((int)0x8E24), + } + /// /// Used in GL.BeginTransformFeedback /// @@ -33139,9 +38105,126 @@ namespace OpenTK.Graphics.ES30 UnsignedIntVec4 = ((int)0x8DC8), } + /// + /// Used in GL.NV.BeginConditionalRender, GL.NV.GetFloat and 1 other function + /// + public enum TypeEnum : int + { + /// + /// Original was GL_QUERY_WAIT = 0x8E13 + /// + QueryWait = ((int)0x8E13), + /// + /// Original was GL_QUERY_NO_WAIT = 0x8E14 + /// + QueryNoWait = ((int)0x8E14), + /// + /// Original was GL_QUERY_BY_REGION_WAIT = 0x8E15 + /// + QueryByRegionWait = ((int)0x8E15), + /// + /// Original was GL_QUERY_BY_REGION_NO_WAIT = 0x8E16 + /// + QueryByRegionNoWait = ((int)0x8E16), + } + /// /// Not used directly. /// + public enum UniformBlockPName : int + { + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_CONTROL_SHADER = 0x84F0 + /// + UniformBlockReferencedByTessControlShader = ((int)0x84F0), + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_EVALUATION_SHADER = 0x84F1 + /// + UniformBlockReferencedByTessEvaluationShader = ((int)0x84F1), + /// + /// Original was GL_UNIFORM_BLOCK_BINDING = 0x8A3F + /// + UniformBlockBinding = ((int)0x8A3F), + /// + /// Original was GL_UNIFORM_BLOCK_DATA_SIZE = 0x8A40 + /// + UniformBlockDataSize = ((int)0x8A40), + /// + /// Original was GL_UNIFORM_BLOCK_NAME_LENGTH = 0x8A41 + /// + UniformBlockNameLength = ((int)0x8A41), + /// + /// Original was GL_UNIFORM_BLOCK_ACTIVE_UNIFORMS = 0x8A42 + /// + UniformBlockActiveUniforms = ((int)0x8A42), + /// + /// Original was GL_UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES = 0x8A43 + /// + UniformBlockActiveUniformIndices = ((int)0x8A43), + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER = 0x8A44 + /// + UniformBlockReferencedByVertexShader = ((int)0x8A44), + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_GEOMETRY_SHADER = 0x8A45 + /// + UniformBlockReferencedByGeometryShader = ((int)0x8A45), + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER = 0x8A46 + /// + UniformBlockReferencedByFragmentShader = ((int)0x8A46), + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_COMPUTE_SHADER = 0x90EC + /// + UniformBlockReferencedByComputeShader = ((int)0x90EC), + } + + /// + /// Not used directly. + /// + public enum UniformPName : int + { + /// + /// Original was GL_UNIFORM_TYPE = 0x8A37 + /// + UniformType = ((int)0x8A37), + /// + /// Original was GL_UNIFORM_SIZE = 0x8A38 + /// + UniformSize = ((int)0x8A38), + /// + /// Original was GL_UNIFORM_NAME_LENGTH = 0x8A39 + /// + UniformNameLength = ((int)0x8A39), + /// + /// Original was GL_UNIFORM_BLOCK_INDEX = 0x8A3A + /// + UniformBlockIndex = ((int)0x8A3A), + /// + /// Original was GL_UNIFORM_OFFSET = 0x8A3B + /// + UniformOffset = ((int)0x8A3B), + /// + /// Original was GL_UNIFORM_ARRAY_STRIDE = 0x8A3C + /// + UniformArrayStride = ((int)0x8A3C), + /// + /// Original was GL_UNIFORM_MATRIX_STRIDE = 0x8A3D + /// + UniformMatrixStride = ((int)0x8A3D), + /// + /// Original was GL_UNIFORM_IS_ROW_MAJOR = 0x8A3E + /// + UniformIsRowMajor = ((int)0x8A3E), + /// + /// Original was GL_UNIFORM_ATOMIC_COUNTER_BUFFER_INDEX = 0x92DA + /// + UniformAtomicCounterBufferIndex = ((int)0x92DA), + } + + /// + /// Used in GL.Ext.UseProgramStages + /// [Flags] public enum UseProgramStageMask : int { @@ -33170,6 +38253,10 @@ namespace OpenTK.Graphics.ES30 /// GeometryShaderBitExt = ((int)0x00000004), /// + /// Original was GL_GEOMETRY_SHADER_BIT_OES = 0x00000004 + /// + GeometryShaderBitOes = ((int)0x00000004), + /// /// Original was GL_TESS_CONTROL_SHADER_BIT = 0x00000008 /// TessControlShaderBit = ((int)0x00000008), @@ -33178,6 +38265,10 @@ namespace OpenTK.Graphics.ES30 /// TessControlShaderBitExt = ((int)0x00000008), /// + /// Original was GL_TESS_CONTROL_SHADER_BIT_OES = 0x00000008 + /// + TessControlShaderBitOes = ((int)0x00000008), + /// /// Original was GL_TESS_EVALUATION_SHADER_BIT = 0x00000010 /// TessEvaluationShaderBit = ((int)0x00000010), @@ -33186,6 +38277,10 @@ namespace OpenTK.Graphics.ES30 /// TessEvaluationShaderBitExt = ((int)0x00000010), /// + /// Original was GL_TESS_EVALUATION_SHADER_BIT_OES = 0x00000010 + /// + TessEvaluationShaderBitOes = ((int)0x00000010), + /// /// Original was GL_COMPUTE_SHADER_BIT = 0x00000020 /// ComputeShaderBit = ((int)0x00000020), @@ -33199,6 +38294,92 @@ namespace OpenTK.Graphics.ES30 AllShaderBitsExt = unchecked((int)0xFFFFFFFF), } + /// + /// Not used directly. + /// + public enum VertexArrayPName : int + { + /// + /// Original was GL_VERTEX_ATTRIB_RELATIVE_OFFSET = 0x82D5 + /// + VertexAttribRelativeOffset = ((int)0x82D5), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_ENABLED = 0x8622 + /// + VertexAttribArrayEnabled = ((int)0x8622), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_SIZE = 0x8623 + /// + VertexAttribArraySize = ((int)0x8623), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_STRIDE = 0x8624 + /// + VertexAttribArrayStride = ((int)0x8624), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_TYPE = 0x8625 + /// + VertexAttribArrayType = ((int)0x8625), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_LONG = 0x874E + /// + VertexAttribArrayLong = ((int)0x874E), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_NORMALIZED = 0x886A + /// + VertexAttribArrayNormalized = ((int)0x886A), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_INTEGER = 0x88FD + /// + VertexAttribArrayInteger = ((int)0x88FD), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_DIVISOR = 0x88FE + /// + VertexAttribArrayDivisor = ((int)0x88FE), + } + + /// + /// Used in GL.GetVertexAttribI + /// + public enum VertexAttribEnum : int + { + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_ENABLED = 0x8622 + /// + VertexAttribArrayEnabled = ((int)0x8622), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_SIZE = 0x8623 + /// + VertexAttribArraySize = ((int)0x8623), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_STRIDE = 0x8624 + /// + VertexAttribArrayStride = ((int)0x8624), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_TYPE = 0x8625 + /// + VertexAttribArrayType = ((int)0x8625), + /// + /// Original was GL_CURRENT_VERTEX_ATTRIB = 0x8626 + /// + CurrentVertexAttrib = ((int)0x8626), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_NORMALIZED = 0x886A + /// + VertexAttribArrayNormalized = ((int)0x886A), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING = 0x889F + /// + VertexAttribArrayBufferBinding = ((int)0x889F), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_INTEGER = 0x88FD + /// + VertexAttribArrayInteger = ((int)0x88FD), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_DIVISOR = 0x88FE + /// + VertexAttribArrayDivisor = ((int)0x88FE), + } + /// /// Used in GL.VertexAttribIPointer /// @@ -33306,9 +38487,9 @@ namespace OpenTK.Graphics.ES30 /// UnsignedShort = ((int)0x1403), /// - /// Original was GL_INT = 0X1404 + /// Original was GL_INT = 0x1404 /// - Int = ((int)0X1404), + Int = ((int)0x1404), /// /// Original was GL_UNSIGNED_INT = 0x1405 /// @@ -33318,6 +38499,10 @@ namespace OpenTK.Graphics.ES30 /// Float = ((int)0X1406), /// + /// Original was GL_DOUBLE = 0x140A + /// + Double = ((int)0x140A), + /// /// Original was GL_HALF_FLOAT = 0x140B /// HalfFloat = ((int)0x140B), @@ -33330,11 +38515,160 @@ namespace OpenTK.Graphics.ES30 /// UnsignedInt2101010Rev = ((int)0x8368), /// + /// Original was GL_UNSIGNED_INT_10F_11F_11F_REV = 0x8C3B + /// + UnsignedInt10F11F11FRev = ((int)0x8C3B), + /// /// Original was GL_INT_2_10_10_10_REV = 0x8D9F /// Int2101010Rev = ((int)0x8D9F), } + /// + /// Not used directly. + /// + public enum VertexAttribType : int + { + /// + /// Original was GL_BYTE = 0x1400 + /// + Byte = ((int)0x1400), + /// + /// Original was GL_UNSIGNED_BYTE = 0x1401 + /// + UnsignedByte = ((int)0x1401), + /// + /// Original was GL_SHORT = 0x1402 + /// + Short = ((int)0x1402), + /// + /// Original was GL_UNSIGNED_SHORT = 0x1403 + /// + UnsignedShort = ((int)0x1403), + /// + /// Original was GL_INT = 0x1404 + /// + Int = ((int)0x1404), + /// + /// Original was GL_UNSIGNED_INT = 0x1405 + /// + UnsignedInt = ((int)0x1405), + /// + /// Original was GL_FLOAT = 0x1406 + /// + Float = ((int)0x1406), + /// + /// Original was GL_DOUBLE = 0x140A + /// + Double = ((int)0x140A), + /// + /// Original was GL_HALF_FLOAT = 0x140B + /// + HalfFloat = ((int)0x140B), + /// + /// Original was GL_FIXED = 0x140C + /// + Fixed = ((int)0x140C), + /// + /// Original was GL_UNSIGNED_INT_2_10_10_10_REV = 0x8368 + /// + UnsignedInt2101010Rev = ((int)0x8368), + /// + /// Original was GL_UNSIGNED_INT_10F_11F_11F_REV = 0x8C3B + /// + UnsignedInt10F11F11FRev = ((int)0x8C3B), + /// + /// Original was GL_INT_2_10_10_10_REV = 0x8D9F + /// + Int2101010Rev = ((int)0x8D9F), + } + + /// + /// Not used directly. + /// + public enum VertexBufferObjectParameter : int + { + /// + /// Original was GL_BUFFER_IMMUTABLE_STORAGE = 0x821F + /// + BufferImmutableStorage = ((int)0x821F), + /// + /// Original was GL_BUFFER_STORAGE_FLAGS = 0x8220 + /// + BufferStorageFlags = ((int)0x8220), + /// + /// Original was GL_BUFFER_SIZE = 0x8764 + /// + BufferSize = ((int)0x8764), + /// + /// Original was GL_BUFFER_USAGE = 0x8765 + /// + BufferUsage = ((int)0x8765), + /// + /// Original was GL_BUFFER_ACCESS = 0x88BB + /// + BufferAccess = ((int)0x88BB), + /// + /// Original was GL_BUFFER_MAPPED = 0x88BC + /// + BufferMapped = ((int)0x88BC), + /// + /// Original was GL_BUFFER_ACCESS_FLAGS = 0x911F + /// + BufferAccessFlags = ((int)0x911F), + /// + /// Original was GL_BUFFER_MAP_LENGTH = 0x9120 + /// + BufferMapLength = ((int)0x9120), + /// + /// Original was GL_BUFFER_MAP_OFFSET = 0x9121 + /// + BufferMapOffset = ((int)0x9121), + } + + /// + /// Not used directly. + /// + public enum VertexBufferObjectUsage : int + { + /// + /// Original was GL_STREAM_DRAW = 0x88E0 + /// + StreamDraw = ((int)0x88E0), + /// + /// Original was GL_STREAM_READ = 0x88E1 + /// + StreamRead = ((int)0x88E1), + /// + /// Original was GL_STREAM_COPY = 0x88E2 + /// + StreamCopy = ((int)0x88E2), + /// + /// Original was GL_STATIC_DRAW = 0x88E4 + /// + StaticDraw = ((int)0x88E4), + /// + /// Original was GL_STATIC_READ = 0x88E5 + /// + StaticRead = ((int)0x88E5), + /// + /// Original was GL_STATIC_COPY = 0x88E6 + /// + StaticCopy = ((int)0x88E6), + /// + /// Original was GL_DYNAMIC_DRAW = 0x88E8 + /// + DynamicDraw = ((int)0x88E8), + /// + /// Original was GL_DYNAMIC_READ = 0x88E9 + /// + DynamicRead = ((int)0x88E9), + /// + /// Original was GL_DYNAMIC_COPY = 0x88EA + /// + DynamicCopy = ((int)0x88EA), + } + /// /// Not used directly. /// @@ -33358,6 +38692,21 @@ namespace OpenTK.Graphics.ES30 Double = ((int)0x140A), } + /// + /// Not used directly. + /// + public enum VertexProvokingMode : int + { + /// + /// Original was GL_FIRST_VERTEX_CONVENTION = 0x8E4D + /// + FirstVertexConvention = ((int)0x8E4D), + /// + /// Original was GL_LAST_VERTEX_CONVENTION = 0x8E4E + /// + LastVertexConvention = ((int)0x8E4E), + } + /// /// Not used directly. /// diff --git a/src/OpenTK/Graphics/ES31/ES31.Enums.cs b/src/OpenTK/Graphics/ES31/ES31.Enums.cs index b677e6cd..896f8582 100644 --- a/src/OpenTK/Graphics/ES31/ES31.Enums.cs +++ b/src/OpenTK/Graphics/ES31/ES31.Enums.cs @@ -460,7 +460,7 @@ namespace OpenTK.Graphics.ES31 } /// - /// Used in GL.Amd.GetPerfMonitorCounterData, GL.Amd.GetPerfMonitorCounterInfo and 347 other functions + /// Used in GL.Amd.GetPerfMonitorCounterData, GL.Amd.GetPerfMonitorCounterInfo and 371 other functions /// public enum All : int { @@ -545,6 +545,10 @@ namespace OpenTK.Graphics.ES31 /// SyncFlushCommandsBitApple = ((int)0x00000001), /// + /// Original was GL_TEXTURE_STORAGE_SPARSE_BIT_AMD = 0x00000001 + /// + TextureStorageSparseBitAmd = ((int)0x00000001), + /// /// Original was GL_VERTEX_ATTRIB_ARRAY_BARRIER_BIT = 0x00000001 /// VertexAttribArrayBarrierBit = ((int)0x00000001), @@ -617,6 +621,10 @@ namespace OpenTK.Graphics.ES31 /// ColorBufferBit2Qcom = ((int)0x00000004), /// + /// Original was GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT = 0x00000004 + /// + ContextFlagRobustAccessBit = ((int)0x00000004), + /// /// Original was GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT_ARB = 0x00000004 /// ContextFlagRobustAccessBitArb = ((int)0x00000004), @@ -657,6 +665,10 @@ namespace OpenTK.Graphics.ES31 /// ColorBufferBit3Qcom = ((int)0x00000008), /// + /// Original was GL_CONTEXT_FLAG_NO_ERROR_BIT = 0x00000008 + /// + ContextFlagNoErrorBit = ((int)0x00000008), + /// /// Original was GL_CONTEXT_FLAG_NO_ERROR_BIT_KHR = 0x00000008 /// ContextFlagNoErrorBitKhr = ((int)0x00000008), @@ -1357,6 +1369,10 @@ namespace OpenTK.Graphics.ES31 /// FrontLeft = ((int)0x0400), /// + /// Original was GL_SPARSE_STORAGE_BIT_ARB = 0x0400 + /// + SparseStorageBitArb = ((int)0x0400), + /// /// Original was GL_FONT_UNDERLINE_POSITION_BIT_NV = 0x04000000 /// FontUnderlinePositionBitNv = ((int)0x04000000), @@ -1541,6 +1557,14 @@ namespace OpenTK.Graphics.ES31 /// Exp = ((int)0x0800), /// + /// Original was GL_LGPU_SEPARATE_STORAGE_BIT_NVX = 0x0800 + /// + LgpuSeparateStorageBitNvx = ((int)0x0800), + /// + /// Original was GL_PER_GPU_STORAGE_BIT_NV = 0x0800 + /// + PerGpuStorageBitNv = ((int)0x0800), + /// /// Original was GL_FONT_UNDERLINE_THICKNESS_BIT_NV = 0x08000000 /// FontUnderlineThicknessBitNv = ((int)0x08000000), @@ -3553,34 +3577,18 @@ namespace OpenTK.Graphics.ES31 /// ConstantColor = ((int)0x8001), /// - /// Original was GL_CONSTANT_COLOR_EXT = 0x8001 - /// - ConstantColorExt = ((int)0x8001), - /// /// Original was GL_ONE_MINUS_CONSTANT_COLOR = 0x8002 /// OneMinusConstantColor = ((int)0x8002), /// - /// Original was GL_ONE_MINUS_CONSTANT_COLOR_EXT = 0x8002 - /// - OneMinusConstantColorExt = ((int)0x8002), - /// /// Original was GL_CONSTANT_ALPHA = 0x8003 /// ConstantAlpha = ((int)0x8003), /// - /// Original was GL_CONSTANT_ALPHA_EXT = 0x8003 - /// - ConstantAlphaExt = ((int)0x8003), - /// /// Original was GL_ONE_MINUS_CONSTANT_ALPHA = 0x8004 /// OneMinusConstantAlpha = ((int)0x8004), /// - /// Original was GL_ONE_MINUS_CONSTANT_ALPHA_EXT = 0x8004 - /// - OneMinusConstantAlphaExt = ((int)0x8004), - /// /// Original was GL_BLEND_COLOR = 0x8005 /// BlendColor = ((int)0x8005), @@ -3713,22 +3721,42 @@ namespace OpenTK.Graphics.ES31 /// ReduceExt = ((int)0x8016), /// + /// Original was GL_CONVOLUTION_FORMAT = 0x8017 + /// + ConvolutionFormat = ((int)0x8017), + /// /// Original was GL_CONVOLUTION_FORMAT_EXT = 0x8017 /// ConvolutionFormatExt = ((int)0x8017), /// + /// Original was GL_CONVOLUTION_WIDTH = 0x8018 + /// + ConvolutionWidth = ((int)0x8018), + /// /// Original was GL_CONVOLUTION_WIDTH_EXT = 0x8018 /// ConvolutionWidthExt = ((int)0x8018), /// + /// Original was GL_CONVOLUTION_HEIGHT = 0x8019 + /// + ConvolutionHeight = ((int)0x8019), + /// /// Original was GL_CONVOLUTION_HEIGHT_EXT = 0x8019 /// ConvolutionHeightExt = ((int)0x8019), /// + /// Original was GL_MAX_CONVOLUTION_WIDTH = 0x801A + /// + MaxConvolutionWidth = ((int)0x801A), + /// /// Original was GL_MAX_CONVOLUTION_WIDTH_EXT = 0x801A /// MaxConvolutionWidthExt = ((int)0x801A), /// + /// Original was GL_MAX_CONVOLUTION_HEIGHT = 0x801B + /// + MaxConvolutionHeight = ((int)0x801B), + /// /// Original was GL_MAX_CONVOLUTION_HEIGHT_EXT = 0x801B /// MaxConvolutionHeightExt = ((int)0x801B), @@ -3813,34 +3841,66 @@ namespace OpenTK.Graphics.ES31 /// ProxyHistogramExt = ((int)0x8025), /// + /// Original was GL_HISTOGRAM_WIDTH = 0x8026 + /// + HistogramWidth = ((int)0x8026), + /// /// Original was GL_HISTOGRAM_WIDTH_EXT = 0x8026 /// HistogramWidthExt = ((int)0x8026), /// + /// Original was GL_HISTOGRAM_FORMAT = 0x8027 + /// + HistogramFormat = ((int)0x8027), + /// /// Original was GL_HISTOGRAM_FORMAT_EXT = 0x8027 /// HistogramFormatExt = ((int)0x8027), /// + /// Original was GL_HISTOGRAM_RED_SIZE = 0x8028 + /// + HistogramRedSize = ((int)0x8028), + /// /// Original was GL_HISTOGRAM_RED_SIZE_EXT = 0x8028 /// HistogramRedSizeExt = ((int)0x8028), /// + /// Original was GL_HISTOGRAM_GREEN_SIZE = 0x8029 + /// + HistogramGreenSize = ((int)0x8029), + /// /// Original was GL_HISTOGRAM_GREEN_SIZE_EXT = 0x8029 /// HistogramGreenSizeExt = ((int)0x8029), /// + /// Original was GL_HISTOGRAM_BLUE_SIZE = 0x802A + /// + HistogramBlueSize = ((int)0x802A), + /// /// Original was GL_HISTOGRAM_BLUE_SIZE_EXT = 0x802A /// HistogramBlueSizeExt = ((int)0x802A), /// + /// Original was GL_HISTOGRAM_ALPHA_SIZE = 0x802B + /// + HistogramAlphaSize = ((int)0x802B), + /// /// Original was GL_HISTOGRAM_ALPHA_SIZE_EXT = 0x802B /// HistogramAlphaSizeExt = ((int)0x802B), /// + /// Original was GL_HISTOGRAM_LUMINANCE_SIZE = 0x802C + /// + HistogramLuminanceSize = ((int)0x802C), + /// /// Original was GL_HISTOGRAM_LUMINANCE_SIZE_EXT = 0x802C /// HistogramLuminanceSizeExt = ((int)0x802C), /// + /// Original was GL_HISTOGRAM_SINK = 0x802D + /// + HistogramSink = ((int)0x802D), + /// /// Original was GL_HISTOGRAM_SINK_EXT = 0x802D /// HistogramSinkExt = ((int)0x802D), @@ -4045,14 +4105,26 @@ namespace OpenTK.Graphics.ES31 /// Rgb4 = ((int)0x804F), /// + /// Original was GL_RGB4_EXT = 0x804F + /// + Rgb4Ext = ((int)0x804F), + /// /// Original was GL_RGB5 = 0x8050 /// Rgb5 = ((int)0x8050), /// + /// Original was GL_RGB5_EXT = 0x8050 + /// + Rgb5Ext = ((int)0x8050), + /// /// Original was GL_RGB8 = 0x8051 /// Rgb8 = ((int)0x8051), /// + /// Original was GL_RGB8_EXT = 0x8051 + /// + Rgb8Ext = ((int)0x8051), + /// /// Original was GL_RGB8_OES = 0x8051 /// Rgb8Oes = ((int)0x8051), @@ -4069,6 +4141,10 @@ namespace OpenTK.Graphics.ES31 /// Rgb12 = ((int)0x8053), /// + /// Original was GL_RGB12_EXT = 0x8053 + /// + Rgb12Ext = ((int)0x8053), + /// /// Original was GL_RGB16 = 0x8054 /// Rgb16 = ((int)0x8054), @@ -4077,9 +4153,9 @@ namespace OpenTK.Graphics.ES31 /// Rgb16Ext = ((int)0x8054), /// - /// Original was GL_RGBA2 = 0x8055 + /// Original was GL_RGBA4_EXT = 0x8056 /// - Rgba2 = ((int)0x8055), + Rgba4Ext = ((int)0x8056), /// /// Original was GL_RGBA4_OES = 0x8056 /// @@ -4093,6 +4169,10 @@ namespace OpenTK.Graphics.ES31 /// Rgb5A1 = ((int)0x8057), /// + /// Original was GL_RGB5_A1_EXT = 0x8057 + /// + Rgb5A1Ext = ((int)0x8057), + /// /// Original was GL_RGB5_A1_OES = 0x8057 /// Rgb5A1Oes = ((int)0x8057), @@ -4101,6 +4181,10 @@ namespace OpenTK.Graphics.ES31 /// Rgba8 = ((int)0x8058), /// + /// Original was GL_RGBA8_EXT = 0x8058 + /// + Rgba8Ext = ((int)0x8058), + /// /// Original was GL_RGBA8_OES = 0x8058 /// Rgba8Oes = ((int)0x8058), @@ -4117,6 +4201,10 @@ namespace OpenTK.Graphics.ES31 /// Rgba12 = ((int)0x805A), /// + /// Original was GL_RGBA12_EXT = 0x805A + /// + Rgba12Ext = ((int)0x805A), + /// /// Original was GL_RGBA16 = 0x805B /// Rgba16 = ((int)0x805B), @@ -4813,34 +4901,66 @@ namespace OpenTK.Graphics.ES31 /// ColorTableBiasSgi = ((int)0x80D7), /// + /// Original was GL_COLOR_TABLE_FORMAT = 0x80D8 + /// + ColorTableFormat = ((int)0x80D8), + /// /// Original was GL_COLOR_TABLE_FORMAT_SGI = 0x80D8 /// ColorTableFormatSgi = ((int)0x80D8), /// + /// Original was GL_COLOR_TABLE_WIDTH = 0x80D9 + /// + ColorTableWidth = ((int)0x80D9), + /// /// Original was GL_COLOR_TABLE_WIDTH_SGI = 0x80D9 /// ColorTableWidthSgi = ((int)0x80D9), /// + /// Original was GL_COLOR_TABLE_RED_SIZE = 0x80DA + /// + ColorTableRedSize = ((int)0x80DA), + /// /// Original was GL_COLOR_TABLE_RED_SIZE_SGI = 0x80DA /// ColorTableRedSizeSgi = ((int)0x80DA), /// + /// Original was GL_COLOR_TABLE_GREEN_SIZE = 0x80DB + /// + ColorTableGreenSize = ((int)0x80DB), + /// /// Original was GL_COLOR_TABLE_GREEN_SIZE_SGI = 0x80DB /// ColorTableGreenSizeSgi = ((int)0x80DB), /// + /// Original was GL_COLOR_TABLE_BLUE_SIZE = 0x80DC + /// + ColorTableBlueSize = ((int)0x80DC), + /// /// Original was GL_COLOR_TABLE_BLUE_SIZE_SGI = 0x80DC /// ColorTableBlueSizeSgi = ((int)0x80DC), /// + /// Original was GL_COLOR_TABLE_ALPHA_SIZE = 0x80DD + /// + ColorTableAlphaSize = ((int)0x80DD), + /// /// Original was GL_COLOR_TABLE_ALPHA_SIZE_SGI = 0x80DD /// ColorTableAlphaSizeSgi = ((int)0x80DD), /// + /// Original was GL_COLOR_TABLE_LUMINANCE_SIZE = 0x80DE + /// + ColorTableLuminanceSize = ((int)0x80DE), + /// /// Original was GL_COLOR_TABLE_LUMINANCE_SIZE_SGI = 0x80DE /// ColorTableLuminanceSizeSgi = ((int)0x80DE), /// + /// Original was GL_COLOR_TABLE_INTENSITY_SIZE = 0x80DF + /// + ColorTableIntensitySize = ((int)0x80DF), + /// /// Original was GL_COLOR_TABLE_INTENSITY_SIZE_SGI = 0x80DF /// ColorTableIntensitySizeSgi = ((int)0x80DF), @@ -5205,6 +5325,10 @@ namespace OpenTK.Graphics.ES31 /// Texture4DBindingSgis = ((int)0x814F), /// + /// Original was GL_CONVOLUTION_BORDER_COLOR = 0x8154 + /// + ConvolutionBorderColor = ((int)0x8154), + /// /// Original was GL_LINEAR_CLIPMAP_LINEAR_SGIX = 0x8170 /// LinearClipmapLinearSgix = ((int)0x8170), @@ -5393,6 +5517,10 @@ namespace OpenTK.Graphics.ES31 /// DepthComponent16 = ((int)0x81A5), /// + /// Original was GL_DEPTH_COMPONENT16_ARB = 0x81A5 + /// + DepthComponent16Arb = ((int)0x81A5), + /// /// Original was GL_DEPTH_COMPONENT16_OES = 0x81A5 /// DepthComponent16Oes = ((int)0x81A5), @@ -5405,6 +5533,10 @@ namespace OpenTK.Graphics.ES31 /// DepthComponent24 = ((int)0x81A6), /// + /// Original was GL_DEPTH_COMPONENT24_ARB = 0x81A6 + /// + DepthComponent24Arb = ((int)0x81A6), + /// /// Original was GL_DEPTH_COMPONENT24_OES = 0x81A6 /// DepthComponent24Oes = ((int)0x81A6), @@ -5413,6 +5545,10 @@ namespace OpenTK.Graphics.ES31 /// DepthComponent24Sgix = ((int)0x81A6), /// + /// Original was GL_DEPTH_COMPONENT32_ARB = 0x81A7 + /// + DepthComponent32Arb = ((int)0x81A7), + /// /// Original was GL_DEPTH_COMPONENT32_OES = 0x81A7 /// DepthComponent32Oes = ((int)0x81A7), @@ -5557,10 +5693,18 @@ namespace OpenTK.Graphics.ES31 /// NumExtensions = ((int)0x821D), /// + /// Original was GL_BUFFER_IMMUTABLE_STORAGE = 0x821F + /// + BufferImmutableStorage = ((int)0x821F), + /// /// Original was GL_BUFFER_IMMUTABLE_STORAGE_EXT = 0x821F /// BufferImmutableStorageExt = ((int)0x821F), /// + /// Original was GL_BUFFER_STORAGE_FLAGS = 0x8220 + /// + BufferStorageFlags = ((int)0x8220), + /// /// Original was GL_BUFFER_STORAGE_FLAGS_EXT = 0x8220 /// BufferStorageFlagsExt = ((int)0x8220), @@ -5573,6 +5717,14 @@ namespace OpenTK.Graphics.ES31 /// PrimitiveRestartForPatchesSupportedOes = ((int)0x8221), /// + /// Original was GL_COMPRESSED_RED = 0x8225 + /// + CompressedRed = ((int)0x8225), + /// + /// Original was GL_COMPRESSED_RG = 0x8226 + /// + CompressedRg = ((int)0x8226), + /// /// Original was GL_RG = 0x8227 /// Rg = ((int)0x8227), @@ -5593,6 +5745,10 @@ namespace OpenTK.Graphics.ES31 /// R8Ext = ((int)0x8229), /// + /// Original was GL_R16 = 0x822A + /// + R16 = ((int)0x822A), + /// /// Original was GL_R16_EXT = 0x822A /// R16Ext = ((int)0x822A), @@ -5605,6 +5761,10 @@ namespace OpenTK.Graphics.ES31 /// Rg8Ext = ((int)0x822B), /// + /// Original was GL_RG16 = 0x822C + /// + Rg16 = ((int)0x822C), + /// /// Original was GL_RG16_EXT = 0x822C /// Rg16Ext = ((int)0x822C), @@ -6069,6 +6229,266 @@ namespace OpenTK.Graphics.ES31 /// MaxUniformLocations = ((int)0x826E), /// + /// Original was GL_INTERNALFORMAT_SUPPORTED = 0x826F + /// + InternalformatSupported = ((int)0x826F), + /// + /// Original was GL_INTERNALFORMAT_PREFERRED = 0x8270 + /// + InternalformatPreferred = ((int)0x8270), + /// + /// Original was GL_INTERNALFORMAT_RED_SIZE = 0x8271 + /// + InternalformatRedSize = ((int)0x8271), + /// + /// Original was GL_INTERNALFORMAT_GREEN_SIZE = 0x8272 + /// + InternalformatGreenSize = ((int)0x8272), + /// + /// Original was GL_INTERNALFORMAT_BLUE_SIZE = 0x8273 + /// + InternalformatBlueSize = ((int)0x8273), + /// + /// Original was GL_INTERNALFORMAT_ALPHA_SIZE = 0x8274 + /// + InternalformatAlphaSize = ((int)0x8274), + /// + /// Original was GL_INTERNALFORMAT_DEPTH_SIZE = 0x8275 + /// + InternalformatDepthSize = ((int)0x8275), + /// + /// Original was GL_INTERNALFORMAT_STENCIL_SIZE = 0x8276 + /// + InternalformatStencilSize = ((int)0x8276), + /// + /// Original was GL_INTERNALFORMAT_SHARED_SIZE = 0x8277 + /// + InternalformatSharedSize = ((int)0x8277), + /// + /// Original was GL_INTERNALFORMAT_RED_TYPE = 0x8278 + /// + InternalformatRedType = ((int)0x8278), + /// + /// Original was GL_INTERNALFORMAT_GREEN_TYPE = 0x8279 + /// + InternalformatGreenType = ((int)0x8279), + /// + /// Original was GL_INTERNALFORMAT_BLUE_TYPE = 0x827A + /// + InternalformatBlueType = ((int)0x827A), + /// + /// Original was GL_INTERNALFORMAT_ALPHA_TYPE = 0x827B + /// + InternalformatAlphaType = ((int)0x827B), + /// + /// Original was GL_INTERNALFORMAT_DEPTH_TYPE = 0x827C + /// + InternalformatDepthType = ((int)0x827C), + /// + /// Original was GL_INTERNALFORMAT_STENCIL_TYPE = 0x827D + /// + InternalformatStencilType = ((int)0x827D), + /// + /// Original was GL_MAX_WIDTH = 0x827E + /// + MaxWidth = ((int)0x827E), + /// + /// Original was GL_MAX_HEIGHT = 0x827F + /// + MaxHeight = ((int)0x827F), + /// + /// Original was GL_MAX_DEPTH = 0x8280 + /// + MaxDepth = ((int)0x8280), + /// + /// Original was GL_MAX_LAYERS = 0x8281 + /// + MaxLayers = ((int)0x8281), + /// + /// Original was GL_COLOR_COMPONENTS = 0x8283 + /// + ColorComponents = ((int)0x8283), + /// + /// Original was GL_COLOR_RENDERABLE = 0x8286 + /// + ColorRenderable = ((int)0x8286), + /// + /// Original was GL_DEPTH_RENDERABLE = 0x8287 + /// + DepthRenderable = ((int)0x8287), + /// + /// Original was GL_STENCIL_RENDERABLE = 0x8288 + /// + StencilRenderable = ((int)0x8288), + /// + /// Original was GL_FRAMEBUFFER_RENDERABLE = 0x8289 + /// + FramebufferRenderable = ((int)0x8289), + /// + /// Original was GL_FRAMEBUFFER_RENDERABLE_LAYERED = 0x828A + /// + FramebufferRenderableLayered = ((int)0x828A), + /// + /// Original was GL_FRAMEBUFFER_BLEND = 0x828B + /// + FramebufferBlend = ((int)0x828B), + /// + /// Original was GL_READ_PIXELS = 0x828C + /// + ReadPixels = ((int)0x828C), + /// + /// Original was GL_READ_PIXELS_FORMAT = 0x828D + /// + ReadPixelsFormat = ((int)0x828D), + /// + /// Original was GL_READ_PIXELS_TYPE = 0x828E + /// + ReadPixelsType = ((int)0x828E), + /// + /// Original was GL_TEXTURE_IMAGE_FORMAT = 0x828F + /// + TextureImageFormat = ((int)0x828F), + /// + /// Original was GL_TEXTURE_IMAGE_TYPE = 0x8290 + /// + TextureImageType = ((int)0x8290), + /// + /// Original was GL_GET_TEXTURE_IMAGE_FORMAT = 0x8291 + /// + GetTextureImageFormat = ((int)0x8291), + /// + /// Original was GL_GET_TEXTURE_IMAGE_TYPE = 0x8292 + /// + GetTextureImageType = ((int)0x8292), + /// + /// Original was GL_MIPMAP = 0x8293 + /// + Mipmap = ((int)0x8293), + /// + /// Original was GL_AUTO_GENERATE_MIPMAP = 0x8295 + /// + AutoGenerateMipmap = ((int)0x8295), + /// + /// Original was GL_COLOR_ENCODING = 0x8296 + /// + ColorEncoding = ((int)0x8296), + /// + /// Original was GL_SRGB_READ = 0x8297 + /// + SrgbRead = ((int)0x8297), + /// + /// Original was GL_SRGB_WRITE = 0x8298 + /// + SrgbWrite = ((int)0x8298), + /// + /// Original was GL_FILTER = 0x829A + /// + Filter = ((int)0x829A), + /// + /// Original was GL_VERTEX_TEXTURE = 0x829B + /// + VertexTexture = ((int)0x829B), + /// + /// Original was GL_TESS_CONTROL_TEXTURE = 0x829C + /// + TessControlTexture = ((int)0x829C), + /// + /// Original was GL_TESS_EVALUATION_TEXTURE = 0x829D + /// + TessEvaluationTexture = ((int)0x829D), + /// + /// Original was GL_GEOMETRY_TEXTURE = 0x829E + /// + GeometryTexture = ((int)0x829E), + /// + /// Original was GL_FRAGMENT_TEXTURE = 0x829F + /// + FragmentTexture = ((int)0x829F), + /// + /// Original was GL_COMPUTE_TEXTURE = 0x82A0 + /// + ComputeTexture = ((int)0x82A0), + /// + /// Original was GL_TEXTURE_SHADOW = 0x82A1 + /// + TextureShadow = ((int)0x82A1), + /// + /// Original was GL_TEXTURE_GATHER = 0x82A2 + /// + TextureGather = ((int)0x82A2), + /// + /// Original was GL_TEXTURE_GATHER_SHADOW = 0x82A3 + /// + TextureGatherShadow = ((int)0x82A3), + /// + /// Original was GL_SHADER_IMAGE_LOAD = 0x82A4 + /// + ShaderImageLoad = ((int)0x82A4), + /// + /// Original was GL_SHADER_IMAGE_STORE = 0x82A5 + /// + ShaderImageStore = ((int)0x82A5), + /// + /// Original was GL_SHADER_IMAGE_ATOMIC = 0x82A6 + /// + ShaderImageAtomic = ((int)0x82A6), + /// + /// Original was GL_IMAGE_TEXEL_SIZE = 0x82A7 + /// + ImageTexelSize = ((int)0x82A7), + /// + /// Original was GL_IMAGE_COMPATIBILITY_CLASS = 0x82A8 + /// + ImageCompatibilityClass = ((int)0x82A8), + /// + /// Original was GL_IMAGE_PIXEL_FORMAT = 0x82A9 + /// + ImagePixelFormat = ((int)0x82A9), + /// + /// Original was GL_IMAGE_PIXEL_TYPE = 0x82AA + /// + ImagePixelType = ((int)0x82AA), + /// + /// Original was GL_SIMULTANEOUS_TEXTURE_AND_DEPTH_TEST = 0x82AC + /// + SimultaneousTextureAndDepthTest = ((int)0x82AC), + /// + /// Original was GL_SIMULTANEOUS_TEXTURE_AND_STENCIL_TEST = 0x82AD + /// + SimultaneousTextureAndStencilTest = ((int)0x82AD), + /// + /// Original was GL_SIMULTANEOUS_TEXTURE_AND_DEPTH_WRITE = 0x82AE + /// + SimultaneousTextureAndDepthWrite = ((int)0x82AE), + /// + /// Original was GL_SIMULTANEOUS_TEXTURE_AND_STENCIL_WRITE = 0x82AF + /// + SimultaneousTextureAndStencilWrite = ((int)0x82AF), + /// + /// Original was GL_TEXTURE_COMPRESSED_BLOCK_WIDTH = 0x82B1 + /// + TextureCompressedBlockWidth = ((int)0x82B1), + /// + /// Original was GL_TEXTURE_COMPRESSED_BLOCK_HEIGHT = 0x82B2 + /// + TextureCompressedBlockHeight = ((int)0x82B2), + /// + /// Original was GL_TEXTURE_COMPRESSED_BLOCK_SIZE = 0x82B3 + /// + TextureCompressedBlockSize = ((int)0x82B3), + /// + /// Original was GL_CLEAR_BUFFER = 0x82B4 + /// + ClearBuffer = ((int)0x82B4), + /// + /// Original was GL_TEXTURE_VIEW = 0x82B5 + /// + TextureView = ((int)0x82B5), + /// + /// Original was GL_VIEW_COMPATIBILITY_CLASS = 0x82B6 + /// + ViewCompatibilityClass = ((int)0x82B6), + /// /// Original was GL_VERTEX_ATTRIB_BINDING = 0x82D4 /// VertexAttribBinding = ((int)0x82D4), @@ -6197,6 +6617,10 @@ namespace OpenTK.Graphics.ES31 /// MaxLabelLengthKhr = ((int)0x82E8), /// + /// Original was GL_QUERY_TARGET = 0x82EA + /// + QueryTarget = ((int)0x82EA), + /// /// Original was GL_MAX_CULL_DISTANCES_EXT = 0x82F9 /// MaxCullDistancesExt = ((int)0x82F9), @@ -6489,6 +6913,10 @@ namespace OpenTK.Graphics.ES31 /// LinearClipmapNearestSgix = ((int)0x844F), /// + /// Original was GL_FOG_COORD_SRC = 0x8450 + /// + FogCoordSrc = ((int)0x8450), + /// /// Original was GL_ALIASED_POINT_SIZE_RANGE = 0x846D /// AliasedPointSizeRange = ((int)0x846D), @@ -6641,6 +7069,14 @@ namespace OpenTK.Graphics.ES31 /// MaxRenderbufferSize = ((int)0x84E8), /// + /// Original was GL_COMPRESSED_RGB = 0x84ED + /// + CompressedRgb = ((int)0x84ED), + /// + /// Original was GL_COMPRESSED_RGBA = 0x84EE + /// + CompressedRgba = ((int)0x84EE), + /// /// Original was GL_TEXTURE_COMPRESSION_HINT = 0x84EF /// TextureCompressionHint = ((int)0x84EF), @@ -6649,6 +7085,14 @@ namespace OpenTK.Graphics.ES31 /// TextureCompressionHintArb = ((int)0x84EF), /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_CONTROL_SHADER = 0x84F0 + /// + UniformBlockReferencedByTessControlShader = ((int)0x84F0), + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_EVALUATION_SHADER = 0x84F1 + /// + UniformBlockReferencedByTessEvaluationShader = ((int)0x84F1), + /// /// Original was GL_ALL_COMPLETED_NV = 0x84F2 /// AllCompletedNv = ((int)0x84F2), @@ -6681,6 +7125,14 @@ namespace OpenTK.Graphics.ES31 /// DepthStencil = ((int)0x84F9), /// + /// Original was GL_DEPTH_STENCIL_EXT = 0x84F9 + /// + DepthStencilExt = ((int)0x84F9), + /// + /// Original was GL_DEPTH_STENCIL_NV = 0x84F9 + /// + DepthStencilNv = ((int)0x84F9), + /// /// Original was GL_DEPTH_STENCIL_OES = 0x84F9 /// DepthStencilOes = ((int)0x84F9), @@ -6781,6 +7233,10 @@ namespace OpenTK.Graphics.ES31 /// MultisampleFilterHintNv = ((int)0x8534), /// + /// Original was GL_CONSTANT = 0x8576 + /// + Constant = ((int)0x8576), + /// /// Original was GL_CONSTANT_NV = 0x8576 /// ConstantNv = ((int)0x8576), @@ -6789,6 +7245,10 @@ namespace OpenTK.Graphics.ES31 /// PrimaryColor = ((int)0x8577), /// + /// Original was GL_SRC1_ALPHA = 0x8589 + /// + Src1Alpha = ((int)0x8589), + /// /// Original was GL_SRC1_ALPHA_EXT = 0x8589 /// Src1AlphaExt = ((int)0x8589), @@ -6889,6 +7349,22 @@ namespace OpenTK.Graphics.ES31 /// ProgramBinaryLengthOes = ((int)0x8741), /// + /// Original was GL_MIRROR_CLAMP_TO_EDGE_EXT = 0x8743 + /// + MirrorClampToEdgeExt = ((int)0x8743), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_LONG = 0x874E + /// + VertexAttribArrayLong = ((int)0x874E), + /// + /// Original was GL_DEPTH_STENCIL_MESA = 0x8750 + /// + DepthStencilMesa = ((int)0x8750), + /// + /// Original was GL_PROGRAM_BINARY_FORMAT_MESA = 0x875F + /// + ProgramBinaryFormatMesa = ((int)0x875F), + /// /// Original was GL_BUFFER_SIZE = 0x8764 /// BufferSize = ((int)0x8764), @@ -6945,6 +7421,10 @@ namespace OpenTK.Graphics.ES31 /// Rgba32f = ((int)0x8814), /// + /// Original was GL_RGBA32F_ARB = 0x8814 + /// + Rgba32fArb = ((int)0x8814), + /// /// Original was GL_RGBA32F_EXT = 0x8814 /// Rgba32fExt = ((int)0x8814), @@ -6973,6 +7453,10 @@ namespace OpenTK.Graphics.ES31 /// Rgba16f = ((int)0x881A), /// + /// Original was GL_RGBA16F_ARB = 0x881A + /// + Rgba16fArb = ((int)0x881A), + /// /// Original was GL_RGBA16F_EXT = 0x881A /// Rgba16fExt = ((int)0x881A), @@ -6981,6 +7465,10 @@ namespace OpenTK.Graphics.ES31 /// Rgb16f = ((int)0x881B), /// + /// Original was GL_RGB16F_ARB = 0x881B + /// + Rgb16fArb = ((int)0x881B), + /// /// Original was GL_RGB16F_EXT = 0x881B /// Rgb16fExt = ((int)0x881B), @@ -7241,6 +7729,10 @@ namespace OpenTK.Graphics.ES31 /// CompareRefToTextureExt = ((int)0x884E), /// + /// Original was GL_QUERY_COUNTER_BITS = 0x8864 + /// + QueryCounterBits = ((int)0x8864), + /// /// Original was GL_QUERY_COUNTER_BITS_EXT = 0x8864 /// QueryCounterBitsExt = ((int)0x8864), @@ -7341,6 +7833,10 @@ namespace OpenTK.Graphics.ES31 /// ReadWrite = ((int)0x88BA), /// + /// Original was GL_BUFFER_ACCESS = 0x88BB + /// + BufferAccess = ((int)0x88BB), + /// /// Original was GL_BUFFER_ACCESS_OES = 0x88BB /// BufferAccessOes = ((int)0x88BB), @@ -7361,6 +7857,10 @@ namespace OpenTK.Graphics.ES31 /// BufferMapPointerOes = ((int)0x88BD), /// + /// Original was GL_TIME_ELAPSED = 0x88BF + /// + TimeElapsed = ((int)0x88BF), + /// /// Original was GL_TIME_ELAPSED_EXT = 0x88BF /// TimeElapsedExt = ((int)0x88BF), @@ -7441,6 +7941,10 @@ namespace OpenTK.Graphics.ES31 /// Depth24Stencil8 = ((int)0x88F0), /// + /// Original was GL_DEPTH24_STENCIL8_EXT = 0x88F0 + /// + Depth24Stencil8Ext = ((int)0x88F0), + /// /// Original was GL_DEPTH24_STENCIL8_OES = 0x88F0 /// Depth24Stencil8Oes = ((int)0x88F0), @@ -7453,6 +7957,10 @@ namespace OpenTK.Graphics.ES31 /// TextureStencilSize = ((int)0x88F1), /// + /// Original was GL_SRC1_COLOR = 0x88F9 + /// + Src1Color = ((int)0x88F9), + /// /// Original was GL_SRC1_COLOR_EXT = 0x88F9 /// Src1ColorExt = ((int)0x88F9), @@ -7501,6 +8009,10 @@ namespace OpenTK.Graphics.ES31 /// MaxProgramTexelOffset = ((int)0x8905), /// + /// Original was GL_SAMPLES_PASSED = 0x8914 + /// + SamplesPassed = ((int)0x8914), + /// /// Original was GL_GEOMETRY_LINKED_VERTICES_OUT_EXT = 0x8916 /// GeometryLinkedVerticesOutExt = ((int)0x8916), @@ -7509,6 +8021,14 @@ namespace OpenTK.Graphics.ES31 /// GeometryLinkedVerticesOutOes = ((int)0x8916), /// + /// Original was GL_GEOMETRY_VERTICES_OUT = 0x8916 + /// + GeometryVerticesOut = ((int)0x8916), + /// + /// Original was GL_GEOMETRY_INPUT_TYPE = 0x8917 + /// + GeometryInputType = ((int)0x8917), + /// /// Original was GL_GEOMETRY_LINKED_INPUT_TYPE_EXT = 0x8917 /// GeometryLinkedInputTypeExt = ((int)0x8917), @@ -7525,10 +8045,58 @@ namespace OpenTK.Graphics.ES31 /// GeometryLinkedOutputTypeOes = ((int)0x8918), /// + /// Original was GL_GEOMETRY_OUTPUT_TYPE = 0x8918 + /// + GeometryOutputType = ((int)0x8918), + /// /// Original was GL_SAMPLER_BINDING = 0x8919 /// SamplerBinding = ((int)0x8919), /// + /// Original was GL_MOV_ATI = 0x8961 + /// + MovAti = ((int)0x8961), + /// + /// Original was GL_ADD_ATI = 0x8963 + /// + AddAti = ((int)0x8963), + /// + /// Original was GL_MUL_ATI = 0x8964 + /// + MulAti = ((int)0x8964), + /// + /// Original was GL_SUB_ATI = 0x8965 + /// + SubAti = ((int)0x8965), + /// + /// Original was GL_DOT3_ATI = 0x8966 + /// + Dot3Ati = ((int)0x8966), + /// + /// Original was GL_DOT4_ATI = 0x8967 + /// + Dot4Ati = ((int)0x8967), + /// + /// Original was GL_MAD_ATI = 0x8968 + /// + MadAti = ((int)0x8968), + /// + /// Original was GL_LERP_ATI = 0x8969 + /// + LerpAti = ((int)0x8969), + /// + /// Original was GL_CND_ATI = 0x896A + /// + CndAti = ((int)0x896A), + /// + /// Original was GL_CND0_ATI = 0x896B + /// + Cnd0Ati = ((int)0x896B), + /// + /// Original was GL_DOT2_ADD_ATI = 0x896C + /// + Dot2AddAti = ((int)0x896C), + /// /// Original was GL_PACK_RESAMPLE_OML = 0x8984 /// PackResampleOml = ((int)0x8984), @@ -7669,6 +8237,10 @@ namespace OpenTK.Graphics.ES31 /// UniformBlockReferencedByVertexShader = ((int)0x8A44), /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_GEOMETRY_SHADER = 0x8A45 + /// + UniformBlockReferencedByGeometryShader = ((int)0x8A45), + /// /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER = 0x8A46 /// UniformBlockReferencedByFragmentShader = ((int)0x8A46), @@ -7721,10 +8293,18 @@ namespace OpenTK.Graphics.ES31 /// FragmentShader = ((int)0x8B30), /// + /// Original was GL_FRAGMENT_SHADER_ARB = 0x8B30 + /// + FragmentShaderArb = ((int)0x8B30), + /// /// Original was GL_VERTEX_SHADER = 0x8B31 /// VertexShader = ((int)0x8B31), /// + /// Original was GL_VERTEX_SHADER_ARB = 0x8B31 + /// + VertexShaderArb = ((int)0x8B31), + /// /// Original was GL_PROGRAM_OBJECT_EXT = 0x8B40 /// ProgramObjectExt = ((int)0x8B40), @@ -7761,26 +8341,54 @@ namespace OpenTK.Graphics.ES31 /// FloatVec2 = ((int)0x8B50), /// + /// Original was GL_FLOAT_VEC2_ARB = 0x8B50 + /// + FloatVec2Arb = ((int)0x8B50), + /// /// Original was GL_FLOAT_VEC3 = 0x8B51 /// FloatVec3 = ((int)0x8B51), /// + /// Original was GL_FLOAT_VEC3_ARB = 0x8B51 + /// + FloatVec3Arb = ((int)0x8B51), + /// /// Original was GL_FLOAT_VEC4 = 0x8B52 /// FloatVec4 = ((int)0x8B52), /// + /// Original was GL_FLOAT_VEC4_ARB = 0x8B52 + /// + FloatVec4Arb = ((int)0x8B52), + /// /// Original was GL_INT_VEC2 = 0x8B53 /// IntVec2 = ((int)0x8B53), /// + /// Original was GL_INT_VEC2_ARB = 0x8B53 + /// + IntVec2Arb = ((int)0x8B53), + /// /// Original was GL_INT_VEC3 = 0x8B54 /// IntVec3 = ((int)0x8B54), /// + /// Original was GL_INT_VEC3_ARB = 0x8B54 + /// + IntVec3Arb = ((int)0x8B54), + /// /// Original was GL_INT_VEC4 = 0x8B55 /// IntVec4 = ((int)0x8B55), /// + /// Original was GL_INT_VEC4_ARB = 0x8B55 + /// + IntVec4Arb = ((int)0x8B55), + /// + /// Original was GL_BOOL_ARB = 0x8B56 + /// + BoolArb = ((int)0x8B56), + /// /// Original was GL_Bool = 0X8b56 /// Bool = ((int)0X8b56), @@ -7789,34 +8397,74 @@ namespace OpenTK.Graphics.ES31 /// BoolVec2 = ((int)0x8B57), /// + /// Original was GL_BOOL_VEC2_ARB = 0x8B57 + /// + BoolVec2Arb = ((int)0x8B57), + /// /// Original was GL_BOOL_VEC3 = 0x8B58 /// BoolVec3 = ((int)0x8B58), /// + /// Original was GL_BOOL_VEC3_ARB = 0x8B58 + /// + BoolVec3Arb = ((int)0x8B58), + /// /// Original was GL_BOOL_VEC4 = 0x8B59 /// BoolVec4 = ((int)0x8B59), /// + /// Original was GL_BOOL_VEC4_ARB = 0x8B59 + /// + BoolVec4Arb = ((int)0x8B59), + /// /// Original was GL_FLOAT_MAT2 = 0x8B5A /// FloatMat2 = ((int)0x8B5A), /// + /// Original was GL_FLOAT_MAT2_ARB = 0x8B5A + /// + FloatMat2Arb = ((int)0x8B5A), + /// /// Original was GL_FLOAT_MAT3 = 0x8B5B /// FloatMat3 = ((int)0x8B5B), /// + /// Original was GL_FLOAT_MAT3_ARB = 0x8B5B + /// + FloatMat3Arb = ((int)0x8B5B), + /// /// Original was GL_FLOAT_MAT4 = 0x8B5C /// FloatMat4 = ((int)0x8B5C), /// + /// Original was GL_FLOAT_MAT4_ARB = 0x8B5C + /// + FloatMat4Arb = ((int)0x8B5C), + /// + /// Original was GL_SAMPLER_1D = 0x8B5D + /// + Sampler1D = ((int)0x8B5D), + /// + /// Original was GL_SAMPLER_1D_ARB = 0x8B5D + /// + Sampler1DArb = ((int)0x8B5D), + /// /// Original was GL_SAMPLER_2D = 0x8B5E /// Sampler2D = ((int)0x8B5E), /// + /// Original was GL_SAMPLER_2D_ARB = 0x8B5E + /// + Sampler2DArb = ((int)0x8B5E), + /// /// Original was GL_SAMPLER_3D = 0x8B5F /// Sampler3D = ((int)0x8B5F), /// + /// Original was GL_SAMPLER_3D_ARB = 0x8B5F + /// + Sampler3DArb = ((int)0x8B5F), + /// /// Original was GL_SAMPLER_3D_OES = 0x8B5F /// Sampler3DOes = ((int)0x8B5F), @@ -7825,14 +8473,46 @@ namespace OpenTK.Graphics.ES31 /// SamplerCube = ((int)0x8B60), /// + /// Original was GL_SAMPLER_CUBE_ARB = 0x8B60 + /// + SamplerCubeArb = ((int)0x8B60), + /// + /// Original was GL_SAMPLER_1D_SHADOW = 0x8B61 + /// + Sampler1DShadow = ((int)0x8B61), + /// + /// Original was GL_SAMPLER_1D_SHADOW_ARB = 0x8B61 + /// + Sampler1DShadowArb = ((int)0x8B61), + /// /// Original was GL_SAMPLER_2D_SHADOW = 0x8B62 /// Sampler2DShadow = ((int)0x8B62), /// + /// Original was GL_SAMPLER_2D_SHADOW_ARB = 0x8B62 + /// + Sampler2DShadowArb = ((int)0x8B62), + /// /// Original was GL_SAMPLER_2D_SHADOW_EXT = 0x8B62 /// Sampler2DShadowExt = ((int)0x8B62), /// + /// Original was GL_SAMPLER_2D_RECT = 0x8B63 + /// + Sampler2DRect = ((int)0x8B63), + /// + /// Original was GL_SAMPLER_2D_RECT_ARB = 0x8B63 + /// + Sampler2DRectArb = ((int)0x8B63), + /// + /// Original was GL_SAMPLER_2D_RECT_SHADOW = 0x8B64 + /// + Sampler2DRectShadow = ((int)0x8B64), + /// + /// Original was GL_SAMPLER_2D_RECT_SHADOW_ARB = 0x8B64 + /// + Sampler2DRectShadowArb = ((int)0x8B64), + /// /// Original was GL_FLOAT_MAT2x3 = 0x8B65 /// FloatMat2x3 = ((int)0x8B65), @@ -8073,6 +8753,26 @@ namespace OpenTK.Graphics.ES31 /// TextureProtectedExt = ((int)0x8BFA), /// + /// Original was GL_TEXTURE_FOVEATED_FEATURE_BITS_QCOM = 0x8BFB + /// + TextureFoveatedFeatureBitsQcom = ((int)0x8BFB), + /// + /// Original was GL_TEXTURE_FOVEATED_MIN_PIXEL_DENSITY_QCOM = 0x8BFC + /// + TextureFoveatedMinPixelDensityQcom = ((int)0x8BFC), + /// + /// Original was GL_TEXTURE_FOVEATED_FEATURE_QUERY_QCOM = 0x8BFD + /// + TextureFoveatedFeatureQueryQcom = ((int)0x8BFD), + /// + /// Original was GL_TEXTURE_FOVEATED_NUM_FOCAL_POINTS_QUERY_QCOM = 0x8BFE + /// + TextureFoveatedNumFocalPointsQueryQcom = ((int)0x8BFE), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_FOVEATION_QCOM = 0x8BFF + /// + FramebufferIncompleteFoveationQcom = ((int)0x8BFF), + /// /// Original was GL_COMPRESSED_RGB_PVRTC_4BPPV1_IMG = 0x8C00 /// CompressedRgbPvrtc4Bppv1Img = ((int)0x8C00), @@ -8245,6 +8945,10 @@ namespace OpenTK.Graphics.ES31 /// R11fG11fB10fApple = ((int)0x8C3A), /// + /// Original was GL_R11F_G11F_B10F_EXT = 0x8C3A + /// + R11fG11fB10fExt = ((int)0x8C3A), + /// /// Original was GL_UNSIGNED_INT_10F_11F_11F_REV = 0x8C3B /// UnsignedInt10F11F11FRev = ((int)0x8C3B), @@ -8261,6 +8965,10 @@ namespace OpenTK.Graphics.ES31 /// Rgb9E5Apple = ((int)0x8C3D), /// + /// Original was GL_RGB9_E5_EXT = 0x8C3D + /// + Rgb9E5Ext = ((int)0x8C3D), + /// /// Original was GL_UNSIGNED_INT_5_9_9_9_REV = 0x8C3E /// UnsignedInt5999Rev = ((int)0x8C3E), @@ -8289,10 +8997,18 @@ namespace OpenTK.Graphics.ES31 /// Srgb8 = ((int)0x8C41), /// + /// Original was GL_SRGB8_EXT = 0x8C41 + /// + Srgb8Ext = ((int)0x8C41), + /// /// Original was GL_SRGB8_NV = 0x8C41 /// Srgb8Nv = ((int)0x8C41), /// + /// Original was GL_SRGB_ALPHA = 0x8C42 + /// + SrgbAlpha = ((int)0x8C42), + /// /// Original was GL_SRGB_ALPHA_EXT = 0x8C42 /// SrgbAlphaExt = ((int)0x8C42), @@ -8321,18 +9037,42 @@ namespace OpenTK.Graphics.ES31 /// Sluminance8Nv = ((int)0x8C47), /// + /// Original was GL_COMPRESSED_SRGB = 0x8C48 + /// + CompressedSrgb = ((int)0x8C48), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA = 0x8C49 + /// + CompressedSrgbAlpha = ((int)0x8C49), + /// + /// Original was GL_COMPRESSED_SRGB_S3TC_DXT1_EXT = 0x8C4C + /// + CompressedSrgbS3tcDxt1Ext = ((int)0x8C4C), + /// /// Original was GL_COMPRESSED_SRGB_S3TC_DXT1_NV = 0x8C4C /// CompressedSrgbS3tcDxt1Nv = ((int)0x8C4C), /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT = 0x8C4D + /// + CompressedSrgbAlphaS3tcDxt1Ext = ((int)0x8C4D), + /// /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_NV = 0x8C4D /// CompressedSrgbAlphaS3tcDxt1Nv = ((int)0x8C4D), /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT = 0x8C4E + /// + CompressedSrgbAlphaS3tcDxt3Ext = ((int)0x8C4E), + /// /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_NV = 0x8C4E /// CompressedSrgbAlphaS3tcDxt3Nv = ((int)0x8C4E), /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT = 0x8C4F + /// + CompressedSrgbAlphaS3tcDxt5Ext = ((int)0x8C4F), + /// /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_NV = 0x8C4F /// CompressedSrgbAlphaS3tcDxt5Nv = ((int)0x8C4F), @@ -8361,6 +9101,10 @@ namespace OpenTK.Graphics.ES31 /// TransformFeedbackBufferSize = ((int)0x8C85), /// + /// Original was GL_PRIMITIVES_GENERATED = 0x8C87 + /// + PrimitivesGenerated = ((int)0x8C87), + /// /// Original was GL_PRIMITIVES_GENERATED_EXT = 0x8C87 /// PrimitivesGeneratedExt = ((int)0x8C87), @@ -8409,6 +9153,22 @@ namespace OpenTK.Graphics.ES31 /// AtcRgbaExplicitAlphaAmd = ((int)0x8C93), /// + /// Original was GL_LOWER_LEFT = 0x8CA1 + /// + LowerLeft = ((int)0x8CA1), + /// + /// Original was GL_LOWER_LEFT_EXT = 0x8CA1 + /// + LowerLeftExt = ((int)0x8CA1), + /// + /// Original was GL_UPPER_LEFT = 0x8CA2 + /// + UpperLeft = ((int)0x8CA2), + /// + /// Original was GL_UPPER_LEFT_EXT = 0x8CA2 + /// + UpperLeftExt = ((int)0x8CA2), + /// /// Original was GL_STENCIL_BACK_REF = 0x8CA3 /// StencilBackRef = ((int)0x8CA3), @@ -8561,6 +9321,14 @@ namespace OpenTK.Graphics.ES31 /// FramebufferIncompleteDimensions = ((int)0x8CD9), /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER = 0x8CDB + /// + FramebufferIncompleteDrawBuffer = ((int)0x8CDB), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER = 0x8CDC + /// + FramebufferIncompleteReadBuffer = ((int)0x8CDC), + /// /// Original was GL_FRAMEBUFFER_UNSUPPORTED = 0x8CDD /// FramebufferUnsupported = ((int)0x8CDD), @@ -8589,6 +9357,10 @@ namespace OpenTK.Graphics.ES31 /// ColorAttachment0Nv = ((int)0x8CE0), /// + /// Original was GL_COLOR_ATTACHMENT0_OES = 0x8CE0 + /// + ColorAttachment0Oes = ((int)0x8CE0), + /// /// Original was GL_COLOR_ATTACHMENT1 = 0x8CE1 /// ColorAttachment1 = ((int)0x8CE1), @@ -8837,6 +9609,14 @@ namespace OpenTK.Graphics.ES31 /// DepthAttachment = ((int)0x8D00), /// + /// Original was GL_DEPTH_ATTACHMENT_EXT = 0x8D00 + /// + DepthAttachmentExt = ((int)0x8D00), + /// + /// Original was GL_DEPTH_ATTACHMENT_OES = 0x8D00 + /// + DepthAttachmentOes = ((int)0x8D00), + /// /// Original was GL_STENCIL_ATTACHMENT = 0x8D20 /// StencilAttachment = ((int)0x8D20), @@ -9057,6 +9837,10 @@ namespace OpenTK.Graphics.ES31 /// Int2101010Rev = ((int)0x8D9F), /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_LAYERED = 0x8DA7 + /// + FramebufferAttachmentLayered = ((int)0x8DA7), + /// /// Original was GL_FRAMEBUFFER_ATTACHMENT_LAYERED_EXT = 0x8DA7 /// FramebufferAttachmentLayeredExt = ((int)0x8DA7), @@ -9065,6 +9849,10 @@ namespace OpenTK.Graphics.ES31 /// FramebufferAttachmentLayeredOes = ((int)0x8DA7), /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS = 0x8DA8 + /// + FramebufferIncompleteLayerTargets = ((int)0x8DA8), + /// /// Original was GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_EXT = 0x8DA8 /// FramebufferIncompleteLayerTargetsExt = ((int)0x8DA8), @@ -9073,6 +9861,14 @@ namespace OpenTK.Graphics.ES31 /// FramebufferIncompleteLayerTargetsOes = ((int)0x8DA8), /// + /// Original was GL_DEPTH_COMPONENT32F_NV = 0x8DAB + /// + DepthComponent32fNv = ((int)0x8DAB), + /// + /// Original was GL_DEPTH32F_STENCIL8_NV = 0x8DAC + /// + Depth32fStencil8Nv = ((int)0x8DAC), + /// /// Original was GL_FLOAT_32_UNSIGNED_INT_24_8_REV = 0x8DAD /// Float32UnsignedInt248Rev = ((int)0x8DAD), @@ -9081,10 +9877,18 @@ namespace OpenTK.Graphics.ES31 /// FramebufferSrgbExt = ((int)0x8DB9), /// + /// Original was GL_COMPRESSED_RED_RGTC1 = 0x8DBB + /// + CompressedRedRgtc1 = ((int)0x8DBB), + /// /// Original was GL_COMPRESSED_RED_RGTC1_EXT = 0x8DBB /// CompressedRedRgtc1Ext = ((int)0x8DBB), /// + /// Original was GL_COMPRESSED_SIGNED_RED_RGTC1 = 0x8DBC + /// + CompressedSignedRedRgtc1 = ((int)0x8DBC), + /// /// Original was GL_COMPRESSED_SIGNED_RED_RGTC1_EXT = 0x8DBC /// CompressedSignedRedRgtc1Ext = ((int)0x8DBC), @@ -9093,10 +9897,18 @@ namespace OpenTK.Graphics.ES31 /// CompressedRedGreenRgtc2Ext = ((int)0x8DBD), /// + /// Original was GL_COMPRESSED_RG_RGTC2 = 0x8DBD + /// + CompressedRgRgtc2 = ((int)0x8DBD), + /// /// Original was GL_COMPRESSED_SIGNED_RED_GREEN_RGTC2_EXT = 0x8DBE /// CompressedSignedRedGreenRgtc2Ext = ((int)0x8DBE), /// + /// Original was GL_COMPRESSED_SIGNED_RG_RGTC2 = 0x8DBE + /// + CompressedSignedRgRgtc2 = ((int)0x8DBE), + /// /// Original was GL_SAMPLER_2D_ARRAY = 0x8DC1 /// Sampler2DArray = ((int)0x8DC1), @@ -9185,6 +9997,10 @@ namespace OpenTK.Graphics.ES31 /// UnsignedIntSamplerBufferOes = ((int)0x8DD8), /// + /// Original was GL_GEOMETRY_SHADER = 0x8DD9 + /// + GeometryShader = ((int)0x8DD9), + /// /// Original was GL_GEOMETRY_SHADER_EXT = 0x8DD9 /// GeometryShaderExt = ((int)0x8DD9), @@ -9217,6 +10033,14 @@ namespace OpenTK.Graphics.ES31 /// MaxGeometryTotalOutputComponentsOes = ((int)0x8DE1), /// + /// Original was GL_ACTIVE_SUBROUTINES = 0x8DE5 + /// + ActiveSubroutines = ((int)0x8DE5), + /// + /// Original was GL_ACTIVE_SUBROUTINE_UNIFORMS = 0x8DE6 + /// + ActiveSubroutineUniforms = ((int)0x8DE6), + /// /// Original was GL_LOW_FLOAT = 0x8DF0 /// LowFloat = ((int)0x8DF0), @@ -9273,18 +10097,34 @@ namespace OpenTK.Graphics.ES31 /// MaxFragmentUniformVectors = ((int)0x8DFD), /// + /// Original was GL_QUERY_WAIT = 0x8E13 + /// + QueryWait = ((int)0x8E13), + /// /// Original was GL_QUERY_WAIT_NV = 0x8E13 /// QueryWaitNv = ((int)0x8E13), /// + /// Original was GL_QUERY_NO_WAIT = 0x8E14 + /// + QueryNoWait = ((int)0x8E14), + /// /// Original was GL_QUERY_NO_WAIT_NV = 0x8E14 /// QueryNoWaitNv = ((int)0x8E14), /// + /// Original was GL_QUERY_BY_REGION_WAIT = 0x8E15 + /// + QueryByRegionWait = ((int)0x8E15), + /// /// Original was GL_QUERY_BY_REGION_WAIT_NV = 0x8E15 /// QueryByRegionWaitNv = ((int)0x8E15), /// + /// Original was GL_QUERY_BY_REGION_NO_WAIT = 0x8E16 + /// + QueryByRegionNoWait = ((int)0x8E16), + /// /// Original was GL_QUERY_BY_REGION_NO_WAIT_NV = 0x8E16 /// QueryByRegionNoWaitNv = ((int)0x8E16), @@ -9357,6 +10197,30 @@ namespace OpenTK.Graphics.ES31 /// TextureSwizzleRgba = ((int)0x8E46), /// + /// Original was GL_ACTIVE_SUBROUTINE_UNIFORM_LOCATIONS = 0x8E47 + /// + ActiveSubroutineUniformLocations = ((int)0x8E47), + /// + /// Original was GL_ACTIVE_SUBROUTINE_MAX_LENGTH = 0x8E48 + /// + ActiveSubroutineMaxLength = ((int)0x8E48), + /// + /// Original was GL_ACTIVE_SUBROUTINE_UNIFORM_MAX_LENGTH = 0x8E49 + /// + ActiveSubroutineUniformMaxLength = ((int)0x8E49), + /// + /// Original was GL_NUM_COMPATIBLE_SUBROUTINES = 0x8E4A + /// + NumCompatibleSubroutines = ((int)0x8E4A), + /// + /// Original was GL_COMPATIBLE_SUBROUTINES = 0x8E4B + /// + CompatibleSubroutines = ((int)0x8E4B), + /// + /// Original was GL_FIRST_VERTEX_CONVENTION = 0x8E4D + /// + FirstVertexConvention = ((int)0x8E4D), + /// /// Original was GL_FIRST_VERTEX_CONVENTION_EXT = 0x8E4D /// FirstVertexConventionExt = ((int)0x8E4D), @@ -9365,6 +10229,10 @@ namespace OpenTK.Graphics.ES31 /// FirstVertexConventionOes = ((int)0x8E4D), /// + /// Original was GL_LAST_VERTEX_CONVENTION = 0x8E4E + /// + LastVertexConvention = ((int)0x8E4E), + /// /// Original was GL_LAST_VERTEX_CONVENTION_EXT = 0x8E4E /// LastVertexConventionExt = ((int)0x8E4E), @@ -9437,6 +10305,10 @@ namespace OpenTK.Graphics.ES31 /// MaxProgramTextureGatherOffset = ((int)0x8E5F), /// + /// Original was GL_PATCH_VERTICES = 0x8E72 + /// + PatchVertices = ((int)0x8E72), + /// /// Original was GL_PATCH_VERTICES_EXT = 0x8E72 /// PatchVerticesExt = ((int)0x8E72), @@ -9445,6 +10317,14 @@ namespace OpenTK.Graphics.ES31 /// PatchVerticesOes = ((int)0x8E72), /// + /// Original was GL_PATCH_DEFAULT_INNER_LEVEL = 0x8E73 + /// + PatchDefaultInnerLevel = ((int)0x8E73), + /// + /// Original was GL_PATCH_DEFAULT_OUTER_LEVEL = 0x8E74 + /// + PatchDefaultOuterLevel = ((int)0x8E74), + /// /// Original was GL_TESS_CONTROL_OUTPUT_VERTICES_EXT = 0x8E75 /// TessControlOutputVerticesExt = ((int)0x8E75), @@ -9589,6 +10469,10 @@ namespace OpenTK.Graphics.ES31 /// MaxTessEvaluationOutputComponentsOes = ((int)0x8E86), /// + /// Original was GL_TESS_EVALUATION_SHADER = 0x8E87 + /// + TessEvaluationShader = ((int)0x8E87), + /// /// Original was GL_TESS_EVALUATION_SHADER_EXT = 0x8E87 /// TessEvaluationShaderExt = ((int)0x8E87), @@ -9597,6 +10481,10 @@ namespace OpenTK.Graphics.ES31 /// TessEvaluationShaderOes = ((int)0x8E87), /// + /// Original was GL_TESS_CONTROL_SHADER = 0x8E88 + /// + TessControlShader = ((int)0x8E88), + /// /// Original was GL_TESS_CONTROL_SHADER_EXT = 0x8E88 /// TessControlShaderExt = ((int)0x8E88), @@ -9621,18 +10509,34 @@ namespace OpenTK.Graphics.ES31 /// MaxTessEvaluationUniformBlocksOes = ((int)0x8E8A), /// + /// Original was GL_COMPRESSED_RGBA_BPTC_UNORM = 0x8E8C + /// + CompressedRgbaBptcUnorm = ((int)0x8E8C), + /// /// Original was GL_COMPRESSED_RGBA_BPTC_UNORM_EXT = 0x8E8C /// CompressedRgbaBptcUnormExt = ((int)0x8E8C), /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM = 0x8E8D + /// + CompressedSrgbAlphaBptcUnorm = ((int)0x8E8D), + /// /// Original was GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM_EXT = 0x8E8D /// CompressedSrgbAlphaBptcUnormExt = ((int)0x8E8D), /// + /// Original was GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT = 0x8E8E + /// + CompressedRgbBptcSignedFloat = ((int)0x8E8E), + /// /// Original was GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT_EXT = 0x8E8E /// CompressedRgbBptcSignedFloatExt = ((int)0x8E8E), /// + /// Original was GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT = 0x8E8F + /// + CompressedRgbBptcUnsignedFloat = ((int)0x8E8F), + /// /// Original was GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT_EXT = 0x8E8F /// CompressedRgbBptcUnsignedFloatExt = ((int)0x8E8F), @@ -9837,14 +10741,26 @@ namespace OpenTK.Graphics.ES31 /// Rgba8Snorm = ((int)0x8F97), /// + /// Original was GL_R16_SNORM = 0x8F98 + /// + R16Snorm = ((int)0x8F98), + /// /// Original was GL_R16_SNORM_EXT = 0x8F98 /// R16SnormExt = ((int)0x8F98), /// + /// Original was GL_RG16_SNORM = 0x8F99 + /// + Rg16Snorm = ((int)0x8F99), + /// /// Original was GL_RG16_SNORM_EXT = 0x8F99 /// Rg16SnormExt = ((int)0x8F99), /// + /// Original was GL_RGB16_SNORM = 0x8F9A + /// + Rgb16Snorm = ((int)0x8F9A), + /// /// Original was GL_RGB16_SNORM_EXT = 0x8F9A /// Rgb16SnormExt = ((int)0x8F9A), @@ -10673,6 +11589,14 @@ namespace OpenTK.Graphics.ES31 /// MaxComputeWorkGroupInvocations = ((int)0x90EB), /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_COMPUTE_SHADER = 0x90EC + /// + UniformBlockReferencedByComputeShader = ((int)0x90EC), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_COMPUTE_SHADER = 0x90ED + /// + AtomicCounterBufferReferencedByComputeShader = ((int)0x90ED), + /// /// Original was GL_DISPATCH_INDIRECT_BUFFER = 0x90EE /// DispatchIndirectBuffer = ((int)0x90EE), @@ -11093,6 +12017,10 @@ namespace OpenTK.Graphics.ES31 /// QueryBuffer = ((int)0x9192), /// + /// Original was GL_QUERY_RESULT_NO_WAIT = 0x9194 + /// + QueryResultNoWait = ((int)0x9194), + /// /// Original was GL_VIRTUAL_PAGE_SIZE_X_EXT = 0x9195 /// VirtualPageSizeXExt = ((int)0x9195), @@ -11161,6 +12089,14 @@ namespace OpenTK.Graphics.ES31 /// NumSparseLevelsExt = ((int)0x91AA), /// + /// Original was GL_MAX_SHADER_COMPILER_THREADS_KHR = 0x91B0 + /// + MaxShaderCompilerThreadsKhr = ((int)0x91B0), + /// + /// Original was GL_COMPLETION_STATUS_KHR = 0x91B1 + /// + CompletionStatusKhr = ((int)0x91B1), + /// /// Original was GL_COMPUTE_SHADER = 0x91B9 /// ComputeShader = ((int)0x91B9), @@ -11557,6 +12493,38 @@ namespace OpenTK.Graphics.ES31 /// GlAtomicCounterBufferSize = ((int)0x92C3), /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_DATA_SIZE = 0x92C4 + /// + AtomicCounterBufferDataSize = ((int)0x92C4), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTERS = 0x92C5 + /// + AtomicCounterBufferActiveAtomicCounters = ((int)0x92C5), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTER_INDICES = 0x92C6 + /// + AtomicCounterBufferActiveAtomicCounterIndices = ((int)0x92C6), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_VERTEX_SHADER = 0x92C7 + /// + AtomicCounterBufferReferencedByVertexShader = ((int)0x92C7), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_CONTROL_SHADER = 0x92C8 + /// + AtomicCounterBufferReferencedByTessControlShader = ((int)0x92C8), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_EVALUATION_SHADER = 0x92C9 + /// + AtomicCounterBufferReferencedByTessEvaluationShader = ((int)0x92C9), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_GEOMETRY_SHADER = 0x92CA + /// + AtomicCounterBufferReferencedByGeometryShader = ((int)0x92CA), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_FRAGMENT_SHADER = 0x92CB + /// + AtomicCounterBufferReferencedByFragmentShader = ((int)0x92CB), + /// /// Original was GL_GL_MAX_VERTEX_ATOMIC_COUNTER_BUFFERS = 0x92CC /// GlMaxVertexAtomicCounterBuffers = ((int)0x92CC), @@ -11669,6 +12637,10 @@ namespace OpenTK.Graphics.ES31 /// GlActiveAtomicCounterBuffers = ((int)0x92D9), /// + /// Original was GL_UNIFORM_ATOMIC_COUNTER_BUFFER_INDEX = 0x92DA + /// + UniformAtomicCounterBufferIndex = ((int)0x92DA), + /// /// Original was GL_UNSIGNED_INT_ATOMIC_COUNTER = 0x92DB /// UnsignedIntAtomicCounter = ((int)0x92DB), @@ -11729,6 +12701,54 @@ namespace OpenTK.Graphics.ES31 /// IsPerPatchOes = ((int)0x92E7), /// + /// Original was GL_VERTEX_SUBROUTINE = 0x92E8 + /// + VertexSubroutine = ((int)0x92E8), + /// + /// Original was GL_TESS_CONTROL_SUBROUTINE = 0x92E9 + /// + TessControlSubroutine = ((int)0x92E9), + /// + /// Original was GL_TESS_EVALUATION_SUBROUTINE = 0x92EA + /// + TessEvaluationSubroutine = ((int)0x92EA), + /// + /// Original was GL_GEOMETRY_SUBROUTINE = 0x92EB + /// + GeometrySubroutine = ((int)0x92EB), + /// + /// Original was GL_FRAGMENT_SUBROUTINE = 0x92EC + /// + FragmentSubroutine = ((int)0x92EC), + /// + /// Original was GL_COMPUTE_SUBROUTINE = 0x92ED + /// + ComputeSubroutine = ((int)0x92ED), + /// + /// Original was GL_VERTEX_SUBROUTINE_UNIFORM = 0x92EE + /// + VertexSubroutineUniform = ((int)0x92EE), + /// + /// Original was GL_TESS_CONTROL_SUBROUTINE_UNIFORM = 0x92EF + /// + TessControlSubroutineUniform = ((int)0x92EF), + /// + /// Original was GL_TESS_EVALUATION_SUBROUTINE_UNIFORM = 0x92F0 + /// + TessEvaluationSubroutineUniform = ((int)0x92F0), + /// + /// Original was GL_GEOMETRY_SUBROUTINE_UNIFORM = 0x92F1 + /// + GeometrySubroutineUniform = ((int)0x92F1), + /// + /// Original was GL_FRAGMENT_SUBROUTINE_UNIFORM = 0x92F2 + /// + FragmentSubroutineUniform = ((int)0x92F2), + /// + /// Original was GL_COMPUTE_SUBROUTINE_UNIFORM = 0x92F3 + /// + ComputeSubroutineUniform = ((int)0x92F3), + /// /// Original was GL_TRANSFORM_FEEDBACK_VARYING = 0x92F4 /// TransformFeedbackVarying = ((int)0x92F4), @@ -11745,6 +12765,10 @@ namespace OpenTK.Graphics.ES31 /// MaxNumActiveVariables = ((int)0x92F7), /// + /// Original was GL_MAX_NUM_COMPATIBLE_SUBROUTINES = 0x92F8 + /// + MaxNumCompatibleSubroutines = ((int)0x92F8), + /// /// Original was GL_NAME_LENGTH = 0x92F9 /// NameLength = ((int)0x92F9), @@ -11865,6 +12889,10 @@ namespace OpenTK.Graphics.ES31 /// GlFramebufferDefaultHeight = ((int)0x9311), /// + /// Original was GL_FRAMEBUFFER_DEFAULT_LAYERS = 0x9312 + /// + FramebufferDefaultLayers = ((int)0x9312), + /// /// Original was GL_FRAMEBUFFER_DEFAULT_LAYERS_EXT = 0x9312 /// FramebufferDefaultLayersExt = ((int)0x9312), @@ -12069,6 +13097,34 @@ namespace OpenTK.Graphics.ES31 /// ViewportSwizzleWNv = ((int)0x935B), /// + /// Original was GL_CLIP_ORIGIN_EXT = 0x935C + /// + ClipOriginExt = ((int)0x935C), + /// + /// Original was GL_CLIP_DEPTH_MODE_EXT = 0x935D + /// + ClipDepthModeExt = ((int)0x935D), + /// + /// Original was GL_NEGATIVE_ONE_TO_ONE = 0x935E + /// + NegativeOneToOne = ((int)0x935E), + /// + /// Original was GL_NEGATIVE_ONE_TO_ONE_EXT = 0x935E + /// + NegativeOneToOneExt = ((int)0x935E), + /// + /// Original was GL_ZERO_TO_ONE = 0x935F + /// + ZeroToOne = ((int)0x935F), + /// + /// Original was GL_ZERO_TO_ONE_EXT = 0x935F + /// + ZeroToOneExt = ((int)0x935F), + /// + /// Original was GL_CLEAR_TEXTURE = 0x9365 + /// + ClearTexture = ((int)0x9365), + /// /// Original was GL_FONT_GLYPHS_AVAILABLE_NV = 0x9368 /// FontGlyphsAvailableNv = ((int)0x9368), @@ -12109,6 +13165,18 @@ namespace OpenTK.Graphics.ES31 /// ConformantNv = ((int)0x9374), /// + /// Original was GL_VIEWPORT_POSITION_W_SCALE_NV = 0x937C + /// + ViewportPositionWScaleNv = ((int)0x937C), + /// + /// Original was GL_VIEWPORT_POSITION_W_SCALE_X_COEFF_NV = 0x937D + /// + ViewportPositionWScaleXCoeffNv = ((int)0x937D), + /// + /// Original was GL_VIEWPORT_POSITION_W_SCALE_Y_COEFF_NV = 0x937E + /// + ViewportPositionWScaleYCoeffNv = ((int)0x937E), + /// /// Original was GL_NUM_SAMPLE_COUNTS = 0x9380 /// NumSampleCounts = ((int)0x9380), @@ -12397,6 +13465,14 @@ namespace OpenTK.Graphics.ES31 /// PerfqueryGpaExtendedCountersIntel = ((int)0x9500), /// + /// Original was GL_LAYOUT_DEPTH_READ_ONLY_STENCIL_ATTACHMENT_EXT = 0x9530 + /// + LayoutDepthReadOnlyStencilAttachmentExt = ((int)0x9530), + /// + /// Original was GL_LAYOUT_DEPTH_ATTACHMENT_STENCIL_READ_ONLY_EXT = 0x9531 + /// + LayoutDepthAttachmentStencilReadOnlyExt = ((int)0x9531), + /// /// Original was GL_CONSERVATIVE_RASTER_MODE_NV = 0x954D /// ConservativeRasterModeNv = ((int)0x954D), @@ -12409,6 +13485,10 @@ namespace OpenTK.Graphics.ES31 /// ConservativeRasterModePreSnapTrianglesNv = ((int)0x954F), /// + /// Original was GL_CONSERVATIVE_RASTER_MODE_PRE_SNAP_NV = 0x9550 + /// + ConservativeRasterModePreSnapNv = ((int)0x9550), + /// /// Original was GL_TEXTURE_TILING_EXT = 0x9580 /// TextureTilingExt = ((int)0x9580), @@ -13272,6 +14352,53 @@ namespace OpenTK.Graphics.ES31 { } + /// + /// Not used directly. + /// + public enum AtomicCounterBufferPName : int + { + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_COMPUTE_SHADER = 0x90ED + /// + AtomicCounterBufferReferencedByComputeShader = ((int)0x90ED), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_BINDING = 0x92C1 + /// + AtomicCounterBufferBinding = ((int)0x92C1), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_DATA_SIZE = 0x92C4 + /// + AtomicCounterBufferDataSize = ((int)0x92C4), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTERS = 0x92C5 + /// + AtomicCounterBufferActiveAtomicCounters = ((int)0x92C5), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTER_INDICES = 0x92C6 + /// + AtomicCounterBufferActiveAtomicCounterIndices = ((int)0x92C6), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_VERTEX_SHADER = 0x92C7 + /// + AtomicCounterBufferReferencedByVertexShader = ((int)0x92C7), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_CONTROL_SHADER = 0x92C8 + /// + AtomicCounterBufferReferencedByTessControlShader = ((int)0x92C8), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_EVALUATION_SHADER = 0x92C9 + /// + AtomicCounterBufferReferencedByTessEvaluationShader = ((int)0x92C9), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_GEOMETRY_SHADER = 0x92CA + /// + AtomicCounterBufferReferencedByGeometryShader = ((int)0x92CA), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_FRAGMENT_SHADER = 0x92CB + /// + AtomicCounterBufferReferencedByFragmentShader = ((int)0x92CB), + } + /// /// Not used directly. /// @@ -13380,6 +14507,237 @@ namespace OpenTK.Graphics.ES31 AllAttribBits = unchecked((int)0xFFFFFFFF), } + /// + /// Used in GL.GetActiveAttrib, GL.GetActiveUniform + /// + public enum AttributeType : int + { + /// + /// Original was GL_FLOAT_VEC2 = 0x8B50 + /// + FloatVec2 = ((int)0x8B50), + /// + /// Original was GL_FLOAT_VEC2_ARB = 0x8B50 + /// + FloatVec2Arb = ((int)0x8B50), + /// + /// Original was GL_FLOAT_VEC3 = 0x8B51 + /// + FloatVec3 = ((int)0x8B51), + /// + /// Original was GL_FLOAT_VEC3_ARB = 0x8B51 + /// + FloatVec3Arb = ((int)0x8B51), + /// + /// Original was GL_FLOAT_VEC4 = 0x8B52 + /// + FloatVec4 = ((int)0x8B52), + /// + /// Original was GL_FLOAT_VEC4_ARB = 0x8B52 + /// + FloatVec4Arb = ((int)0x8B52), + /// + /// Original was GL_INT_VEC2 = 0x8B53 + /// + IntVec2 = ((int)0x8B53), + /// + /// Original was GL_INT_VEC2_ARB = 0x8B53 + /// + IntVec2Arb = ((int)0x8B53), + /// + /// Original was GL_INT_VEC3 = 0x8B54 + /// + IntVec3 = ((int)0x8B54), + /// + /// Original was GL_INT_VEC3_ARB = 0x8B54 + /// + IntVec3Arb = ((int)0x8B54), + /// + /// Original was GL_INT_VEC4 = 0x8B55 + /// + IntVec4 = ((int)0x8B55), + /// + /// Original was GL_INT_VEC4_ARB = 0x8B55 + /// + IntVec4Arb = ((int)0x8B55), + /// + /// Original was GL_BOOL = 0x8B56 + /// + Bool = ((int)0x8B56), + /// + /// Original was GL_BOOL_ARB = 0x8B56 + /// + BoolArb = ((int)0x8B56), + /// + /// Original was GL_BOOL_VEC2 = 0x8B57 + /// + BoolVec2 = ((int)0x8B57), + /// + /// Original was GL_BOOL_VEC2_ARB = 0x8B57 + /// + BoolVec2Arb = ((int)0x8B57), + /// + /// Original was GL_BOOL_VEC3 = 0x8B58 + /// + BoolVec3 = ((int)0x8B58), + /// + /// Original was GL_BOOL_VEC3_ARB = 0x8B58 + /// + BoolVec3Arb = ((int)0x8B58), + /// + /// Original was GL_BOOL_VEC4 = 0x8B59 + /// + BoolVec4 = ((int)0x8B59), + /// + /// Original was GL_BOOL_VEC4_ARB = 0x8B59 + /// + BoolVec4Arb = ((int)0x8B59), + /// + /// Original was GL_FLOAT_MAT2 = 0x8B5A + /// + FloatMat2 = ((int)0x8B5A), + /// + /// Original was GL_FLOAT_MAT2_ARB = 0x8B5A + /// + FloatMat2Arb = ((int)0x8B5A), + /// + /// Original was GL_FLOAT_MAT3 = 0x8B5B + /// + FloatMat3 = ((int)0x8B5B), + /// + /// Original was GL_FLOAT_MAT3_ARB = 0x8B5B + /// + FloatMat3Arb = ((int)0x8B5B), + /// + /// Original was GL_FLOAT_MAT4 = 0x8B5C + /// + FloatMat4 = ((int)0x8B5C), + /// + /// Original was GL_FLOAT_MAT4_ARB = 0x8B5C + /// + FloatMat4Arb = ((int)0x8B5C), + /// + /// Original was GL_SAMPLER_1D = 0x8B5D + /// + Sampler1D = ((int)0x8B5D), + /// + /// Original was GL_SAMPLER_1D_ARB = 0x8B5D + /// + Sampler1DArb = ((int)0x8B5D), + /// + /// Original was GL_SAMPLER_2D = 0x8B5E + /// + Sampler2D = ((int)0x8B5E), + /// + /// Original was GL_SAMPLER_2D_ARB = 0x8B5E + /// + Sampler2DArb = ((int)0x8B5E), + /// + /// Original was GL_SAMPLER_3D = 0x8B5F + /// + Sampler3D = ((int)0x8B5F), + /// + /// Original was GL_SAMPLER_3D_ARB = 0x8B5F + /// + Sampler3DArb = ((int)0x8B5F), + /// + /// Original was GL_SAMPLER_3D_OES = 0x8B5F + /// + Sampler3DOes = ((int)0x8B5F), + /// + /// Original was GL_SAMPLER_CUBE = 0x8B60 + /// + SamplerCube = ((int)0x8B60), + /// + /// Original was GL_SAMPLER_CUBE_ARB = 0x8B60 + /// + SamplerCubeArb = ((int)0x8B60), + /// + /// Original was GL_SAMPLER_1D_SHADOW = 0x8B61 + /// + Sampler1DShadow = ((int)0x8B61), + /// + /// Original was GL_SAMPLER_1D_SHADOW_ARB = 0x8B61 + /// + Sampler1DShadowArb = ((int)0x8B61), + /// + /// Original was GL_SAMPLER_2D_SHADOW = 0x8B62 + /// + Sampler2DShadow = ((int)0x8B62), + /// + /// Original was GL_SAMPLER_2D_SHADOW_ARB = 0x8B62 + /// + Sampler2DShadowArb = ((int)0x8B62), + /// + /// Original was GL_SAMPLER_2D_SHADOW_EXT = 0x8B62 + /// + Sampler2DShadowExt = ((int)0x8B62), + /// + /// Original was GL_SAMPLER_2D_RECT = 0x8B63 + /// + Sampler2DRect = ((int)0x8B63), + /// + /// Original was GL_SAMPLER_2D_RECT_ARB = 0x8B63 + /// + Sampler2DRectArb = ((int)0x8B63), + /// + /// Original was GL_SAMPLER_2D_RECT_SHADOW = 0x8B64 + /// + Sampler2DRectShadow = ((int)0x8B64), + /// + /// Original was GL_SAMPLER_2D_RECT_SHADOW_ARB = 0x8B64 + /// + Sampler2DRectShadowArb = ((int)0x8B64), + /// + /// Original was GL_FLOAT_MAT2x3 = 0x8B65 + /// + FloatMat2x3 = ((int)0x8B65), + /// + /// Original was GL_FLOAT_MAT2x3_NV = 0x8B65 + /// + FloatMat2x3Nv = ((int)0x8B65), + /// + /// Original was GL_FLOAT_MAT2x4 = 0x8B66 + /// + FloatMat2x4 = ((int)0x8B66), + /// + /// Original was GL_FLOAT_MAT2x4_NV = 0x8B66 + /// + FloatMat2x4Nv = ((int)0x8B66), + /// + /// Original was GL_FLOAT_MAT3x2 = 0x8B67 + /// + FloatMat3x2 = ((int)0x8B67), + /// + /// Original was GL_FLOAT_MAT3x2_NV = 0x8B67 + /// + FloatMat3x2Nv = ((int)0x8B67), + /// + /// Original was GL_FLOAT_MAT3x4 = 0x8B68 + /// + FloatMat3x4 = ((int)0x8B68), + /// + /// Original was GL_FLOAT_MAT3x4_NV = 0x8B68 + /// + FloatMat3x4Nv = ((int)0x8B68), + /// + /// Original was GL_FLOAT_MAT4x2 = 0x8B69 + /// + FloatMat4x2 = ((int)0x8B69), + /// + /// Original was GL_FLOAT_MAT4x2_NV = 0x8B69 + /// + FloatMat4x2Nv = ((int)0x8B69), + /// + /// Original was GL_FLOAT_MAT4x3 = 0x8B6A + /// + FloatMat4x3 = ((int)0x8B6A), + /// + /// Original was GL_FLOAT_MAT4x3_NV = 0x8B6A + /// + FloatMat4x3Nv = ((int)0x8B6A), + } + /// /// Not used directly. /// @@ -13416,7 +14774,18 @@ namespace OpenTK.Graphics.ES31 } /// - /// Used in GL.BlendEquation + /// Used in GL.BindTransformFeedback + /// + public enum BindTransformFeedbackTarget : int + { + /// + /// Original was GL_TRANSFORM_FEEDBACK = 0x8E22 + /// + TransformFeedback = ((int)0x8E22), + } + + /// + /// Not used directly. /// public enum BlendEquationMode : int { @@ -13443,7 +14812,7 @@ namespace OpenTK.Graphics.ES31 } /// - /// Used in GL.BlendEquationSeparate, GL.Ext.BlendEquation + /// Used in GL.BlendEquation, GL.BlendEquationSeparate and 4 other functions /// public enum BlendEquationModeExt : int { @@ -13452,6 +14821,10 @@ namespace OpenTK.Graphics.ES31 /// LogicOp = ((int)0x0BF1), /// + /// Original was GL_FUNC_ADD = 0x8006 + /// + FuncAdd = ((int)0x8006), + /// /// Original was GL_FUNC_ADD_EXT = 0x8006 /// FuncAddExt = ((int)0x8006), @@ -13464,10 +14837,18 @@ namespace OpenTK.Graphics.ES31 /// MaxExt = ((int)0x8008), /// + /// Original was GL_FUNC_SUBTRACT = 0x800A + /// + FuncSubtract = ((int)0x800A), + /// /// Original was GL_FUNC_SUBTRACT_EXT = 0x800A /// FuncSubtractExt = ((int)0x800A), /// + /// Original was GL_FUNC_REVERSE_SUBTRACT = 0x800B + /// + FuncReverseSubtract = ((int)0x800B), + /// /// Original was GL_FUNC_REVERSE_SUBTRACT_EXT = 0x800B /// FuncReverseSubtractExt = ((int)0x800B), @@ -13482,7 +14863,82 @@ namespace OpenTK.Graphics.ES31 } /// - /// Used in GL.BlendFunc + /// Used in GL.BlendFunc, GL.BlendFuncSeparate and 4 other functions + /// + public enum BlendingFactor : int + { + /// + /// Original was GL_ZERO = 0 + /// + Zero = ((int)0), + /// + /// Original was GL_SRC_COLOR = 0x0300 + /// + SrcColor = ((int)0x0300), + /// + /// Original was GL_ONE_MINUS_SRC_COLOR = 0x0301 + /// + OneMinusSrcColor = ((int)0x0301), + /// + /// Original was GL_SRC_ALPHA = 0x0302 + /// + SrcAlpha = ((int)0x0302), + /// + /// Original was GL_ONE_MINUS_SRC_ALPHA = 0x0303 + /// + OneMinusSrcAlpha = ((int)0x0303), + /// + /// Original was GL_DST_ALPHA = 0x0304 + /// + DstAlpha = ((int)0x0304), + /// + /// Original was GL_ONE_MINUS_DST_ALPHA = 0x0305 + /// + OneMinusDstAlpha = ((int)0x0305), + /// + /// Original was GL_DST_COLOR = 0x0306 + /// + DstColor = ((int)0x0306), + /// + /// Original was GL_ONE_MINUS_DST_COLOR = 0x0307 + /// + OneMinusDstColor = ((int)0x0307), + /// + /// Original was GL_SRC_ALPHA_SATURATE = 0x0308 + /// + SrcAlphaSaturate = ((int)0x0308), + /// + /// Original was GL_CONSTANT_COLOR = 0x8001 + /// + ConstantColor = ((int)0x8001), + /// + /// Original was GL_ONE_MINUS_CONSTANT_COLOR = 0x8002 + /// + OneMinusConstantColor = ((int)0x8002), + /// + /// Original was GL_CONSTANT_ALPHA = 0x8003 + /// + ConstantAlpha = ((int)0x8003), + /// + /// Original was GL_ONE_MINUS_CONSTANT_ALPHA = 0x8004 + /// + OneMinusConstantAlpha = ((int)0x8004), + /// + /// Original was GL_SRC1_ALPHA = 0x8589 + /// + Src1Alpha = ((int)0x8589), + /// + /// Original was GL_SRC1_COLOR = 0x88F9 + /// + Src1Color = ((int)0x88F9), + /// + /// Original was GL_ONE = 1 + /// + One = ((int)1), + } + + /// + /// Not used directly. /// public enum BlendingFactorDest : int { @@ -13531,41 +14987,25 @@ namespace OpenTK.Graphics.ES31 /// ConstantColor = ((int)0x8001), /// - /// Original was GL_CONSTANT_COLOR_EXT = 0x8001 - /// - ConstantColorExt = ((int)0x8001), - /// /// Original was GL_ONE_MINUS_CONSTANT_COLOR = 0x8002 /// OneMinusConstantColor = ((int)0x8002), /// - /// Original was GL_ONE_MINUS_CONSTANT_COLOR_EXT = 0x8002 - /// - OneMinusConstantColorExt = ((int)0x8002), - /// /// Original was GL_CONSTANT_ALPHA = 0x8003 /// ConstantAlpha = ((int)0x8003), /// - /// Original was GL_CONSTANT_ALPHA_EXT = 0x8003 - /// - ConstantAlphaExt = ((int)0x8003), - /// /// Original was GL_ONE_MINUS_CONSTANT_ALPHA = 0x8004 /// OneMinusConstantAlpha = ((int)0x8004), /// - /// Original was GL_ONE_MINUS_CONSTANT_ALPHA_EXT = 0x8004 - /// - OneMinusConstantAlphaExt = ((int)0x8004), - /// /// Original was GL_One = 1 /// One = ((int)1), } /// - /// Used in GL.BlendFunc + /// Not used directly. /// public enum BlendingFactorSrc : int { @@ -13614,52 +15054,36 @@ namespace OpenTK.Graphics.ES31 /// ConstantColor = ((int)0x8001), /// - /// Original was GL_CONSTANT_COLOR_EXT = 0x8001 - /// - ConstantColorExt = ((int)0x8001), - /// /// Original was GL_ONE_MINUS_CONSTANT_COLOR = 0x8002 /// OneMinusConstantColor = ((int)0x8002), /// - /// Original was GL_ONE_MINUS_CONSTANT_COLOR_EXT = 0x8002 - /// - OneMinusConstantColorExt = ((int)0x8002), - /// /// Original was GL_CONSTANT_ALPHA = 0x8003 /// ConstantAlpha = ((int)0x8003), /// - /// Original was GL_CONSTANT_ALPHA_EXT = 0x8003 - /// - ConstantAlphaExt = ((int)0x8003), - /// /// Original was GL_ONE_MINUS_CONSTANT_ALPHA = 0x8004 /// OneMinusConstantAlpha = ((int)0x8004), /// - /// Original was GL_ONE_MINUS_CONSTANT_ALPHA_EXT = 0x8004 - /// - OneMinusConstantAlphaExt = ((int)0x8004), - /// /// Original was GL_One = 1 /// One = ((int)1), } /// - /// Not used directly. + /// Used in GL.Angle.BlitFramebuffer, GL.BlitFramebuffer and 1 other function /// public enum BlitFramebufferFilter : int { /// - /// Original was GL_NEAREST = 0X2600 + /// Original was GL_NEAREST = 0x2600 /// - Nearest = ((int)0X2600), + Nearest = ((int)0x2600), /// - /// Original was GL_LINEAR = 0X2601 + /// Original was GL_LINEAR = 0x2601 /// - Linear = ((int)0X2601), + Linear = ((int)0x2601), } /// @@ -13678,7 +15102,26 @@ namespace OpenTK.Graphics.ES31 } /// - /// Not used directly. + /// Used in GL.ClearBuffer + /// + public enum Buffer : int + { + /// + /// Original was GL_COLOR = 0x1800 + /// + Color = ((int)0x1800), + /// + /// Original was GL_DEPTH = 0x1801 + /// + Depth = ((int)0x1801), + /// + /// Original was GL_STENCIL = 0x1802 + /// + Stencil = ((int)0x1802), + } + + /// + /// Used in GL.BindImageTexture, GL.Oes.MapBuffer /// public enum BufferAccessArb : int { @@ -13697,7 +15140,7 @@ namespace OpenTK.Graphics.ES31 } /// - /// Used in GL.MapBufferRange + /// Used in GL.MapBufferRange, GL.Ext.MapBufferRange /// [Flags] public enum BufferAccessMask : int @@ -13707,25 +15150,200 @@ namespace OpenTK.Graphics.ES31 /// MapReadBit = ((int)0x0001), /// + /// Original was GL_MAP_READ_BIT_EXT = 0x0001 + /// + MapReadBitExt = ((int)0x0001), + /// /// Original was GL_MAP_WRITE_BIT = 0x0002 /// MapWriteBit = ((int)0x0002), /// + /// Original was GL_MAP_WRITE_BIT_EXT = 0x0002 + /// + MapWriteBitExt = ((int)0x0002), + /// /// Original was GL_MAP_INVALIDATE_RANGE_BIT = 0x0004 /// MapInvalidateRangeBit = ((int)0x0004), /// + /// Original was GL_MAP_INVALIDATE_RANGE_BIT_EXT = 0x0004 + /// + MapInvalidateRangeBitExt = ((int)0x0004), + /// /// Original was GL_MAP_INVALIDATE_BUFFER_BIT = 0x0008 /// MapInvalidateBufferBit = ((int)0x0008), /// + /// Original was GL_MAP_INVALIDATE_BUFFER_BIT_EXT = 0x0008 + /// + MapInvalidateBufferBitExt = ((int)0x0008), + /// /// Original was GL_MAP_FLUSH_EXPLICIT_BIT = 0x0010 /// MapFlushExplicitBit = ((int)0x0010), /// + /// Original was GL_MAP_FLUSH_EXPLICIT_BIT_EXT = 0x0010 + /// + MapFlushExplicitBitExt = ((int)0x0010), + /// /// Original was GL_MAP_UNSYNCHRONIZED_BIT = 0x0020 /// MapUnsynchronizedBit = ((int)0x0020), + /// + /// Original was GL_MAP_UNSYNCHRONIZED_BIT_EXT = 0x0020 + /// + MapUnsynchronizedBitExt = ((int)0x0020), + /// + /// Original was GL_MAP_PERSISTENT_BIT = 0x0040 + /// + MapPersistentBit = ((int)0x0040), + /// + /// Original was GL_MAP_PERSISTENT_BIT_EXT = 0x0040 + /// + MapPersistentBitExt = ((int)0x0040), + /// + /// Original was GL_MAP_COHERENT_BIT = 0x0080 + /// + MapCoherentBit = ((int)0x0080), + /// + /// Original was GL_MAP_COHERENT_BIT_EXT = 0x0080 + /// + MapCoherentBitExt = ((int)0x0080), + } + + /// + /// Used in GL.Qcom.EndTiling, GL.Qcom.StartTiling + /// + public enum BufferBitQcom : int + { + /// + /// Original was GL_COLOR_BUFFER_BIT0_QCOM = 0x00000001 + /// + ColorBufferBit0Qcom = ((int)0x00000001), + /// + /// Original was GL_COLOR_BUFFER_BIT1_QCOM = 0x00000002 + /// + ColorBufferBit1Qcom = ((int)0x00000002), + /// + /// Original was GL_COLOR_BUFFER_BIT2_QCOM = 0x00000004 + /// + ColorBufferBit2Qcom = ((int)0x00000004), + /// + /// Original was GL_COLOR_BUFFER_BIT3_QCOM = 0x00000008 + /// + ColorBufferBit3Qcom = ((int)0x00000008), + /// + /// Original was GL_COLOR_BUFFER_BIT4_QCOM = 0x00000010 + /// + ColorBufferBit4Qcom = ((int)0x00000010), + /// + /// Original was GL_COLOR_BUFFER_BIT5_QCOM = 0x00000020 + /// + ColorBufferBit5Qcom = ((int)0x00000020), + /// + /// Original was GL_COLOR_BUFFER_BIT6_QCOM = 0x00000040 + /// + ColorBufferBit6Qcom = ((int)0x00000040), + /// + /// Original was GL_COLOR_BUFFER_BIT7_QCOM = 0x00000080 + /// + ColorBufferBit7Qcom = ((int)0x00000080), + /// + /// Original was GL_DEPTH_BUFFER_BIT0_QCOM = 0x00000100 + /// + DepthBufferBit0Qcom = ((int)0x00000100), + /// + /// Original was GL_DEPTH_BUFFER_BIT1_QCOM = 0x00000200 + /// + DepthBufferBit1Qcom = ((int)0x00000200), + /// + /// Original was GL_DEPTH_BUFFER_BIT2_QCOM = 0x00000400 + /// + DepthBufferBit2Qcom = ((int)0x00000400), + /// + /// Original was GL_DEPTH_BUFFER_BIT3_QCOM = 0x00000800 + /// + DepthBufferBit3Qcom = ((int)0x00000800), + /// + /// Original was GL_DEPTH_BUFFER_BIT4_QCOM = 0x00001000 + /// + DepthBufferBit4Qcom = ((int)0x00001000), + /// + /// Original was GL_DEPTH_BUFFER_BIT5_QCOM = 0x00002000 + /// + DepthBufferBit5Qcom = ((int)0x00002000), + /// + /// Original was GL_DEPTH_BUFFER_BIT6_QCOM = 0x00004000 + /// + DepthBufferBit6Qcom = ((int)0x00004000), + /// + /// Original was GL_DEPTH_BUFFER_BIT7_QCOM = 0x00008000 + /// + DepthBufferBit7Qcom = ((int)0x00008000), + /// + /// Original was GL_STENCIL_BUFFER_BIT0_QCOM = 0x00010000 + /// + StencilBufferBit0Qcom = ((int)0x00010000), + /// + /// Original was GL_STENCIL_BUFFER_BIT1_QCOM = 0x00020000 + /// + StencilBufferBit1Qcom = ((int)0x00020000), + /// + /// Original was GL_STENCIL_BUFFER_BIT2_QCOM = 0x00040000 + /// + StencilBufferBit2Qcom = ((int)0x00040000), + /// + /// Original was GL_STENCIL_BUFFER_BIT3_QCOM = 0x00080000 + /// + StencilBufferBit3Qcom = ((int)0x00080000), + /// + /// Original was GL_STENCIL_BUFFER_BIT4_QCOM = 0x00100000 + /// + StencilBufferBit4Qcom = ((int)0x00100000), + /// + /// Original was GL_STENCIL_BUFFER_BIT5_QCOM = 0x00200000 + /// + StencilBufferBit5Qcom = ((int)0x00200000), + /// + /// Original was GL_STENCIL_BUFFER_BIT6_QCOM = 0x00400000 + /// + StencilBufferBit6Qcom = ((int)0x00400000), + /// + /// Original was GL_STENCIL_BUFFER_BIT7_QCOM = 0x00800000 + /// + StencilBufferBit7Qcom = ((int)0x00800000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT0_QCOM = 0x01000000 + /// + MultisampleBufferBit0Qcom = ((int)0x01000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT1_QCOM = 0x02000000 + /// + MultisampleBufferBit1Qcom = ((int)0x02000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT2_QCOM = 0x04000000 + /// + MultisampleBufferBit2Qcom = ((int)0x04000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT3_QCOM = 0x08000000 + /// + MultisampleBufferBit3Qcom = ((int)0x08000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT4_QCOM = 0x10000000 + /// + MultisampleBufferBit4Qcom = ((int)0x10000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT5_QCOM = 0x20000000 + /// + MultisampleBufferBit5Qcom = ((int)0x20000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT6_QCOM = 0x40000000 + /// + MultisampleBufferBit6Qcom = ((int)0x40000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT7_QCOM = 0x80000000 + /// + MultisampleBufferBit7Qcom = unchecked((int)0x80000000), } /// @@ -13793,6 +15411,69 @@ namespace OpenTK.Graphics.ES31 TransformFeedbackBuffer = ((int)0x8C8E), } + /// + /// Used in GL.Ext.BufferStorage + /// + public enum BufferStorageTarget : int + { + /// + /// Original was GL_ARRAY_BUFFER = 0x8892 + /// + ArrayBuffer = ((int)0x8892), + /// + /// Original was GL_ELEMENT_ARRAY_BUFFER = 0x8893 + /// + ElementArrayBuffer = ((int)0x8893), + /// + /// Original was GL_PIXEL_PACK_BUFFER = 0x88EB + /// + PixelPackBuffer = ((int)0x88EB), + /// + /// Original was GL_PIXEL_UNPACK_BUFFER = 0x88EC + /// + PixelUnpackBuffer = ((int)0x88EC), + /// + /// Original was GL_UNIFORM_BUFFER = 0x8A11 + /// + UniformBuffer = ((int)0x8A11), + /// + /// Original was GL_TEXTURE_BUFFER = 0x8C2A + /// + TextureBuffer = ((int)0x8C2A), + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER = 0x8C8E + /// + TransformFeedbackBuffer = ((int)0x8C8E), + /// + /// Original was GL_COPY_READ_BUFFER = 0x8F36 + /// + CopyReadBuffer = ((int)0x8F36), + /// + /// Original was GL_COPY_WRITE_BUFFER = 0x8F37 + /// + CopyWriteBuffer = ((int)0x8F37), + /// + /// Original was GL_DRAW_INDIRECT_BUFFER = 0x8F3F + /// + DrawIndirectBuffer = ((int)0x8F3F), + /// + /// Original was GL_SHADER_STORAGE_BUFFER = 0x90D2 + /// + ShaderStorageBuffer = ((int)0x90D2), + /// + /// Original was GL_DISPATCH_INDIRECT_BUFFER = 0x90EE + /// + DispatchIndirectBuffer = ((int)0x90EE), + /// + /// Original was GL_QUERY_BUFFER = 0x9192 + /// + QueryBuffer = ((int)0x9192), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER = 0x92C0 + /// + AtomicCounterBuffer = ((int)0x92C0), + } + /// /// Not used directly. /// @@ -13849,7 +15530,7 @@ namespace OpenTK.Graphics.ES31 } /// - /// Used in GL.BindBuffer, GL.BufferData and 7 other functions + /// Used in GL.BindBuffer, GL.BindBufferBase and 14 other functions /// public enum BufferTargetArb : int { @@ -14016,6 +15697,25 @@ namespace OpenTK.Graphics.ES31 DynamicCopy = ((int)0x88EA), } + /// + /// Not used directly. + /// + public enum CheckFramebufferStatusTarget : int + { + /// + /// Original was GL_READ_FRAMEBUFFER = 0x8CA8 + /// + ReadFramebuffer = ((int)0x8CA8), + /// + /// Original was GL_DRAW_FRAMEBUFFER = 0x8CA9 + /// + DrawFramebuffer = ((int)0x8CA9), + /// + /// Original was GL_FRAMEBUFFER = 0x8D40 + /// + Framebuffer = ((int)0x8D40), + } + /// /// Not used directly. /// @@ -14047,7 +15747,7 @@ namespace OpenTK.Graphics.ES31 } /// - /// Used in GL.BlitFramebuffer, GL.Clear + /// Used in GL.Angle.BlitFramebuffer, GL.BlitFramebuffer and 2 other functions /// [Flags] public enum ClearBufferMask : int @@ -14113,6 +15813,36 @@ namespace OpenTK.Graphics.ES31 SyncFlushCommandsBitApple = ((int)0x00000001), } + /// + /// Not used directly. + /// + public enum ClipControlDepth : int + { + /// + /// Original was GL_NEGATIVE_ONE_TO_ONE = 0x935E + /// + NegativeOneToOne = ((int)0x935E), + /// + /// Original was GL_ZERO_TO_ONE = 0x935F + /// + ZeroToOne = ((int)0x935F), + } + + /// + /// Not used directly. + /// + public enum ClipControlOrigin : int + { + /// + /// Original was GL_LOWER_LEFT = 0x8CA1 + /// + LowerLeft = ((int)0x8CA1), + /// + /// Original was GL_UPPER_LEFT = 0x8CA2 + /// + UpperLeft = ((int)0x8CA2), + } + /// /// Not used directly. /// @@ -14176,6 +15906,181 @@ namespace OpenTK.Graphics.ES31 ClipDistance7 = ((int)0x3007), } + /// + /// Not used directly. + /// + public enum ColorBuffer : int + { + /// + /// Original was GL_NONE = 0 + /// + None = ((int)0), + /// + /// Original was GL_FRONT_LEFT = 0x0400 + /// + FrontLeft = ((int)0x0400), + /// + /// Original was GL_FRONT_RIGHT = 0x0401 + /// + FrontRight = ((int)0x0401), + /// + /// Original was GL_BACK_LEFT = 0x0402 + /// + BackLeft = ((int)0x0402), + /// + /// Original was GL_BACK_RIGHT = 0x0403 + /// + BackRight = ((int)0x0403), + /// + /// Original was GL_FRONT = 0x0404 + /// + Front = ((int)0x0404), + /// + /// Original was GL_BACK = 0x0405 + /// + Back = ((int)0x0405), + /// + /// Original was GL_LEFT = 0x0406 + /// + Left = ((int)0x0406), + /// + /// Original was GL_RIGHT = 0x0407 + /// + Right = ((int)0x0407), + /// + /// Original was GL_FRONT_AND_BACK = 0x0408 + /// + FrontAndBack = ((int)0x0408), + /// + /// Original was GL_COLOR_ATTACHMENT0 = 0x8CE0 + /// + ColorAttachment0 = ((int)0x8CE0), + /// + /// Original was GL_COLOR_ATTACHMENT1 = 0x8CE1 + /// + ColorAttachment1 = ((int)0x8CE1), + /// + /// Original was GL_COLOR_ATTACHMENT2 = 0x8CE2 + /// + ColorAttachment2 = ((int)0x8CE2), + /// + /// Original was GL_COLOR_ATTACHMENT3 = 0x8CE3 + /// + ColorAttachment3 = ((int)0x8CE3), + /// + /// Original was GL_COLOR_ATTACHMENT4 = 0x8CE4 + /// + ColorAttachment4 = ((int)0x8CE4), + /// + /// Original was GL_COLOR_ATTACHMENT5 = 0x8CE5 + /// + ColorAttachment5 = ((int)0x8CE5), + /// + /// Original was GL_COLOR_ATTACHMENT6 = 0x8CE6 + /// + ColorAttachment6 = ((int)0x8CE6), + /// + /// Original was GL_COLOR_ATTACHMENT7 = 0x8CE7 + /// + ColorAttachment7 = ((int)0x8CE7), + /// + /// Original was GL_COLOR_ATTACHMENT8 = 0x8CE8 + /// + ColorAttachment8 = ((int)0x8CE8), + /// + /// Original was GL_COLOR_ATTACHMENT9 = 0x8CE9 + /// + ColorAttachment9 = ((int)0x8CE9), + /// + /// Original was GL_COLOR_ATTACHMENT10 = 0x8CEA + /// + ColorAttachment10 = ((int)0x8CEA), + /// + /// Original was GL_COLOR_ATTACHMENT11 = 0x8CEB + /// + ColorAttachment11 = ((int)0x8CEB), + /// + /// Original was GL_COLOR_ATTACHMENT12 = 0x8CEC + /// + ColorAttachment12 = ((int)0x8CEC), + /// + /// Original was GL_COLOR_ATTACHMENT13 = 0x8CED + /// + ColorAttachment13 = ((int)0x8CED), + /// + /// Original was GL_COLOR_ATTACHMENT14 = 0x8CEE + /// + ColorAttachment14 = ((int)0x8CEE), + /// + /// Original was GL_COLOR_ATTACHMENT15 = 0x8CEF + /// + ColorAttachment15 = ((int)0x8CEF), + /// + /// Original was GL_COLOR_ATTACHMENT16 = 0x8CF0 + /// + ColorAttachment16 = ((int)0x8CF0), + /// + /// Original was GL_COLOR_ATTACHMENT17 = 0x8CF1 + /// + ColorAttachment17 = ((int)0x8CF1), + /// + /// Original was GL_COLOR_ATTACHMENT18 = 0x8CF2 + /// + ColorAttachment18 = ((int)0x8CF2), + /// + /// Original was GL_COLOR_ATTACHMENT19 = 0x8CF3 + /// + ColorAttachment19 = ((int)0x8CF3), + /// + /// Original was GL_COLOR_ATTACHMENT20 = 0x8CF4 + /// + ColorAttachment20 = ((int)0x8CF4), + /// + /// Original was GL_COLOR_ATTACHMENT21 = 0x8CF5 + /// + ColorAttachment21 = ((int)0x8CF5), + /// + /// Original was GL_COLOR_ATTACHMENT22 = 0x8CF6 + /// + ColorAttachment22 = ((int)0x8CF6), + /// + /// Original was GL_COLOR_ATTACHMENT23 = 0x8CF7 + /// + ColorAttachment23 = ((int)0x8CF7), + /// + /// Original was GL_COLOR_ATTACHMENT24 = 0x8CF8 + /// + ColorAttachment24 = ((int)0x8CF8), + /// + /// Original was GL_COLOR_ATTACHMENT25 = 0x8CF9 + /// + ColorAttachment25 = ((int)0x8CF9), + /// + /// Original was GL_COLOR_ATTACHMENT26 = 0x8CFA + /// + ColorAttachment26 = ((int)0x8CFA), + /// + /// Original was GL_COLOR_ATTACHMENT27 = 0x8CFB + /// + ColorAttachment27 = ((int)0x8CFB), + /// + /// Original was GL_COLOR_ATTACHMENT28 = 0x8CFC + /// + ColorAttachment28 = ((int)0x8CFC), + /// + /// Original was GL_COLOR_ATTACHMENT29 = 0x8CFD + /// + ColorAttachment29 = ((int)0x8CFD), + /// + /// Original was GL_COLOR_ATTACHMENT30 = 0x8CFE + /// + ColorAttachment30 = ((int)0x8CFE), + /// + /// Original was GL_COLOR_ATTACHMENT31 = 0x8CFF + /// + ColorAttachment31 = ((int)0x8CFF), + } + /// /// Not used directly. /// @@ -14284,6 +16189,25 @@ namespace OpenTK.Graphics.ES31 ColorTableBiasSgi = ((int)0x80D7), } + /// + /// Not used directly. + /// + public enum ColorTableTarget : int + { + /// + /// Original was GL_COLOR_TABLE = 0x80D0 + /// + ColorTable = ((int)0x80D0), + /// + /// Original was GL_POST_CONVOLUTION_COLOR_TABLE = 0x80D1 + /// + PostConvolutionColorTable = ((int)0x80D1), + /// + /// Original was GL_POST_COLOR_MATRIX_COLOR_TABLE = 0x80D2 + /// + PostColorMatrixColorTable = ((int)0x80D2), + } + /// /// Not used directly. /// @@ -14417,10 +16341,22 @@ namespace OpenTK.Graphics.ES31 /// ContextFlagDebugBitKhr = ((int)0x00000002), /// + /// Original was GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT = 0x00000004 + /// + ContextFlagRobustAccessBit = ((int)0x00000004), + /// /// Original was GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT_ARB = 0x00000004 /// ContextFlagRobustAccessBitArb = ((int)0x00000004), /// + /// Original was GL_CONTEXT_FLAG_NO_ERROR_BIT = 0x00000008 + /// + ContextFlagNoErrorBit = ((int)0x00000008), + /// + /// Original was GL_CONTEXT_FLAG_NO_ERROR_BIT_KHR = 0x00000008 + /// + ContextFlagNoErrorBitKhr = ((int)0x00000008), + /// /// Original was GL_CONTEXT_FLAG_PROTECTED_CONTENT_BIT_EXT = 0x00000010 /// ContextFlagProtectedContentBitExt = ((int)0x00000010), @@ -14488,6 +16424,21 @@ namespace OpenTK.Graphics.ES31 ConvolutionFilterBiasExt = ((int)0x8015), } + /// + /// Not used directly. + /// + public enum ConvolutionTarget : int + { + /// + /// Original was GL_CONVOLUTION_1D = 0x8010 + /// + Convolution1D = ((int)0x8010), + /// + /// Original was GL_CONVOLUTION_2D = 0x8011 + /// + Convolution2D = ((int)0x8011), + } + /// /// Not used directly. /// @@ -14511,6 +16462,69 @@ namespace OpenTK.Graphics.ES31 Convolution2DExt = ((int)0x8011), } + /// + /// Used in GL.CopyBufferSubData, GL.Ext.CopyImageSubData and 2 other functions + /// + public enum CopyBufferSubDataTarget : int + { + /// + /// Original was GL_ARRAY_BUFFER = 0x8892 + /// + ArrayBuffer = ((int)0x8892), + /// + /// Original was GL_ELEMENT_ARRAY_BUFFER = 0x8893 + /// + ElementArrayBuffer = ((int)0x8893), + /// + /// Original was GL_PIXEL_PACK_BUFFER = 0x88EB + /// + PixelPackBuffer = ((int)0x88EB), + /// + /// Original was GL_PIXEL_UNPACK_BUFFER = 0x88EC + /// + PixelUnpackBuffer = ((int)0x88EC), + /// + /// Original was GL_UNIFORM_BUFFER = 0x8A11 + /// + UniformBuffer = ((int)0x8A11), + /// + /// Original was GL_TEXTURE_BUFFER = 0x8C2A + /// + TextureBuffer = ((int)0x8C2A), + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER = 0x8C8E + /// + TransformFeedbackBuffer = ((int)0x8C8E), + /// + /// Original was GL_COPY_READ_BUFFER = 0x8F36 + /// + CopyReadBuffer = ((int)0x8F36), + /// + /// Original was GL_COPY_WRITE_BUFFER = 0x8F37 + /// + CopyWriteBuffer = ((int)0x8F37), + /// + /// Original was GL_DRAW_INDIRECT_BUFFER = 0x8F3F + /// + DrawIndirectBuffer = ((int)0x8F3F), + /// + /// Original was GL_SHADER_STORAGE_BUFFER = 0x90D2 + /// + ShaderStorageBuffer = ((int)0x90D2), + /// + /// Original was GL_DISPATCH_INDIRECT_BUFFER = 0x90EE + /// + DispatchIndirectBuffer = ((int)0x90EE), + /// + /// Original was GL_QUERY_BUFFER = 0x9192 + /// + QueryBuffer = ((int)0x9192), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER = 0x92C0 + /// + AtomicCounterBuffer = ((int)0x92C0), + } + /// /// Used in GL.CullFace /// @@ -14538,10 +16552,14 @@ namespace OpenTK.Graphics.ES31 } /// - /// Not used directly. + /// Used in GL.DebugMessageControl, GL.DebugMessageInsert and 4 other functions /// public enum DebugSeverity : int { + /// + /// Original was GL_DONT_CARE = 0x1100 + /// + DontCare = ((int)0x1100), /// /// Original was GL_DEBUG_SEVERITY_NOTIFICATION = 0x826B /// @@ -14588,10 +16606,14 @@ namespace OpenTK.Graphics.ES31 } /// - /// Not used directly. + /// Used in GL.DebugMessageControl, GL.DebugMessageInsert and 6 other functions /// public enum DebugSource : int { + /// + /// Original was GL_DONT_CARE = 0x1100 + /// + DontCare = ((int)0x1100), /// /// Original was GL_DEBUG_SOURCE_API = 0x8246 /// @@ -14669,10 +16691,14 @@ namespace OpenTK.Graphics.ES31 } /// - /// Not used directly. + /// Used in GL.DebugMessageControl, GL.DebugMessageInsert and 4 other functions /// public enum DebugType : int { + /// + /// Original was GL_DONT_CARE = 0x1100 + /// + DontCare = ((int)0x1100), /// /// Original was GL_DEBUG_TYPE_ERROR = 0x824C /// @@ -14959,7 +16985,7 @@ namespace OpenTK.Graphics.ES31 } /// - /// Used in GL.DrawElements, GL.DrawElementsInstanced and 10 other functions + /// Used in GL.DrawElements, GL.DrawElementsIndirect and 12 other functions /// public enum DrawElementsType : int { @@ -14978,7 +17004,7 @@ namespace OpenTK.Graphics.ES31 } /// - /// Used in GL.Disable, GL.Enable and 1 other function + /// Used in GL.Disable, GL.Enable and 10 other functions /// public enum EnableCap : int { @@ -18807,6 +20833,37 @@ namespace OpenTK.Graphics.ES31 { } + /// + /// Not used directly. + /// + public enum ExtClipControl : int + { + /// + /// Original was GL_LOWER_LEFT_EXT = 0x8CA1 + /// + LowerLeftExt = ((int)0x8CA1), + /// + /// Original was GL_UPPER_LEFT_EXT = 0x8CA2 + /// + UpperLeftExt = ((int)0x8CA2), + /// + /// Original was GL_CLIP_ORIGIN_EXT = 0x935C + /// + ClipOriginExt = ((int)0x935C), + /// + /// Original was GL_CLIP_DEPTH_MODE_EXT = 0x935D + /// + ClipDepthModeExt = ((int)0x935D), + /// + /// Original was GL_NEGATIVE_ONE_TO_ONE_EXT = 0x935E + /// + NegativeOneToOneExt = ((int)0x935E), + /// + /// Original was GL_ZERO_TO_ONE_EXT = 0x935F + /// + ZeroToOneExt = ((int)0x935F), + } + /// /// Not used directly. /// @@ -19967,6 +22024,14 @@ namespace OpenTK.Graphics.ES31 /// public enum ExtSemaphore : int { + /// + /// Original was GL_LAYOUT_DEPTH_READ_ONLY_STENCIL_ATTACHMENT_EXT = 0x9530 + /// + LayoutDepthReadOnlyStencilAttachmentExt = ((int)0x9530), + /// + /// Original was GL_LAYOUT_DEPTH_ATTACHMENT_STENCIL_READ_ONLY_EXT = 0x9531 + /// + LayoutDepthAttachmentStencilReadOnlyExt = ((int)0x9531), /// /// Original was GL_LAYOUT_GENERAL_EXT = 0x958D /// @@ -20691,6 +22756,29 @@ namespace OpenTK.Graphics.ES31 CompressedRgbaS3tcDxt5Ext = ((int)0x83F3), } + /// + /// Not used directly. + /// + public enum ExtTextureCompressionS3tcSrgb : int + { + /// + /// Original was GL_COMPRESSED_SRGB_S3TC_DXT1_EXT = 0x8C4C + /// + CompressedSrgbS3tcDxt1Ext = ((int)0x8C4C), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT = 0x8C4D + /// + CompressedSrgbAlphaS3tcDxt1Ext = ((int)0x8C4D), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT = 0x8C4E + /// + CompressedSrgbAlphaS3tcDxt3Ext = ((int)0x8C4E), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT = 0x8C4F + /// + CompressedSrgbAlphaS3tcDxt5Ext = ((int)0x8C4F), + } + /// /// Not used directly. /// @@ -20791,6 +22879,17 @@ namespace OpenTK.Graphics.ES31 BgraExt = ((int)0x80E1), } + /// + /// Not used directly. + /// + public enum ExtTextureMirrorClampToEdge : int + { + /// + /// Original was GL_MIRROR_CLAMP_TO_EDGE_EXT = 0x8743 + /// + MirrorClampToEdgeExt = ((int)0x8743), + } + /// /// Not used directly. /// @@ -21284,6 +23383,37 @@ namespace OpenTK.Graphics.ES31 FogOffsetValueSgix = ((int)0x8199), } + /// + /// Not used directly. + /// + public enum FogPName : int + { + /// + /// Original was GL_FOG_INDEX = 0x0B61 + /// + FogIndex = ((int)0x0B61), + /// + /// Original was GL_FOG_DENSITY = 0x0B62 + /// + FogDensity = ((int)0x0B62), + /// + /// Original was GL_FOG_START = 0x0B63 + /// + FogStart = ((int)0x0B63), + /// + /// Original was GL_FOG_END = 0x0B64 + /// + FogEnd = ((int)0x0B64), + /// + /// Original was GL_FOG_MODE = 0x0B65 + /// + FogMode = ((int)0x0B65), + /// + /// Original was GL_FOG_COORD_SRC = 0x8450 + /// + FogCoordSrc = ((int)0x8450), + } + /// /// Not used directly. /// @@ -21338,7 +23468,58 @@ namespace OpenTK.Graphics.ES31 } /// - /// Used in GL.FramebufferRenderbuffer, GL.FramebufferTexture2D and 7 other functions + /// Not used directly. + /// + public enum FragmentOpAti : int + { + /// + /// Original was GL_MOV_ATI = 0x8961 + /// + MovAti = ((int)0x8961), + /// + /// Original was GL_ADD_ATI = 0x8963 + /// + AddAti = ((int)0x8963), + /// + /// Original was GL_MUL_ATI = 0x8964 + /// + MulAti = ((int)0x8964), + /// + /// Original was GL_SUB_ATI = 0x8965 + /// + SubAti = ((int)0x8965), + /// + /// Original was GL_DOT3_ATI = 0x8966 + /// + Dot3Ati = ((int)0x8966), + /// + /// Original was GL_DOT4_ATI = 0x8967 + /// + Dot4Ati = ((int)0x8967), + /// + /// Original was GL_MAD_ATI = 0x8968 + /// + MadAti = ((int)0x8968), + /// + /// Original was GL_LERP_ATI = 0x8969 + /// + LerpAti = ((int)0x8969), + /// + /// Original was GL_CND_ATI = 0x896A + /// + CndAti = ((int)0x896A), + /// + /// Original was GL_CND0_ATI = 0x896B + /// + Cnd0Ati = ((int)0x896B), + /// + /// Original was GL_DOT2_ADD_ATI = 0x896C + /// + Dot2AddAti = ((int)0x896C), + } + + /// + /// Used in GL.FramebufferRenderbuffer, GL.FramebufferTexture2D and 12 other functions /// public enum FramebufferAttachment : int { @@ -21359,79 +23540,354 @@ namespace OpenTK.Graphics.ES31 /// DepthStencilAttachment = ((int)0x821A), /// + /// Original was GL_MAX_COLOR_ATTACHMENTS = 0x8CDF + /// + MaxColorAttachments = ((int)0x8CDF), + /// + /// Original was GL_MAX_COLOR_ATTACHMENTS_EXT = 0x8CDF + /// + MaxColorAttachmentsExt = ((int)0x8CDF), + /// + /// Original was GL_MAX_COLOR_ATTACHMENTS_NV = 0x8CDF + /// + MaxColorAttachmentsNv = ((int)0x8CDF), + /// /// Original was GL_COLOR_ATTACHMENT0 = 0x8CE0 /// ColorAttachment0 = ((int)0x8CE0), /// + /// Original was GL_COLOR_ATTACHMENT0_EXT = 0x8CE0 + /// + ColorAttachment0Ext = ((int)0x8CE0), + /// + /// Original was GL_COLOR_ATTACHMENT0_NV = 0x8CE0 + /// + ColorAttachment0Nv = ((int)0x8CE0), + /// + /// Original was GL_COLOR_ATTACHMENT0_OES = 0x8CE0 + /// + ColorAttachment0Oes = ((int)0x8CE0), + /// /// Original was GL_COLOR_ATTACHMENT1 = 0x8CE1 /// ColorAttachment1 = ((int)0x8CE1), /// + /// Original was GL_COLOR_ATTACHMENT1_EXT = 0x8CE1 + /// + ColorAttachment1Ext = ((int)0x8CE1), + /// + /// Original was GL_COLOR_ATTACHMENT1_NV = 0x8CE1 + /// + ColorAttachment1Nv = ((int)0x8CE1), + /// /// Original was GL_COLOR_ATTACHMENT2 = 0x8CE2 /// ColorAttachment2 = ((int)0x8CE2), /// + /// Original was GL_COLOR_ATTACHMENT2_EXT = 0x8CE2 + /// + ColorAttachment2Ext = ((int)0x8CE2), + /// + /// Original was GL_COLOR_ATTACHMENT2_NV = 0x8CE2 + /// + ColorAttachment2Nv = ((int)0x8CE2), + /// /// Original was GL_COLOR_ATTACHMENT3 = 0x8CE3 /// ColorAttachment3 = ((int)0x8CE3), /// + /// Original was GL_COLOR_ATTACHMENT3_EXT = 0x8CE3 + /// + ColorAttachment3Ext = ((int)0x8CE3), + /// + /// Original was GL_COLOR_ATTACHMENT3_NV = 0x8CE3 + /// + ColorAttachment3Nv = ((int)0x8CE3), + /// /// Original was GL_COLOR_ATTACHMENT4 = 0x8CE4 /// ColorAttachment4 = ((int)0x8CE4), /// + /// Original was GL_COLOR_ATTACHMENT4_EXT = 0x8CE4 + /// + ColorAttachment4Ext = ((int)0x8CE4), + /// + /// Original was GL_COLOR_ATTACHMENT4_NV = 0x8CE4 + /// + ColorAttachment4Nv = ((int)0x8CE4), + /// /// Original was GL_COLOR_ATTACHMENT5 = 0x8CE5 /// ColorAttachment5 = ((int)0x8CE5), /// + /// Original was GL_COLOR_ATTACHMENT5_EXT = 0x8CE5 + /// + ColorAttachment5Ext = ((int)0x8CE5), + /// + /// Original was GL_COLOR_ATTACHMENT5_NV = 0x8CE5 + /// + ColorAttachment5Nv = ((int)0x8CE5), + /// /// Original was GL_COLOR_ATTACHMENT6 = 0x8CE6 /// ColorAttachment6 = ((int)0x8CE6), /// + /// Original was GL_COLOR_ATTACHMENT6_EXT = 0x8CE6 + /// + ColorAttachment6Ext = ((int)0x8CE6), + /// + /// Original was GL_COLOR_ATTACHMENT6_NV = 0x8CE6 + /// + ColorAttachment6Nv = ((int)0x8CE6), + /// /// Original was GL_COLOR_ATTACHMENT7 = 0x8CE7 /// ColorAttachment7 = ((int)0x8CE7), /// + /// Original was GL_COLOR_ATTACHMENT7_EXT = 0x8CE7 + /// + ColorAttachment7Ext = ((int)0x8CE7), + /// + /// Original was GL_COLOR_ATTACHMENT7_NV = 0x8CE7 + /// + ColorAttachment7Nv = ((int)0x8CE7), + /// /// Original was GL_COLOR_ATTACHMENT8 = 0x8CE8 /// ColorAttachment8 = ((int)0x8CE8), /// + /// Original was GL_COLOR_ATTACHMENT8_EXT = 0x8CE8 + /// + ColorAttachment8Ext = ((int)0x8CE8), + /// + /// Original was GL_COLOR_ATTACHMENT8_NV = 0x8CE8 + /// + ColorAttachment8Nv = ((int)0x8CE8), + /// /// Original was GL_COLOR_ATTACHMENT9 = 0x8CE9 /// ColorAttachment9 = ((int)0x8CE9), /// + /// Original was GL_COLOR_ATTACHMENT9_EXT = 0x8CE9 + /// + ColorAttachment9Ext = ((int)0x8CE9), + /// + /// Original was GL_COLOR_ATTACHMENT9_NV = 0x8CE9 + /// + ColorAttachment9Nv = ((int)0x8CE9), + /// /// Original was GL_COLOR_ATTACHMENT10 = 0x8CEA /// ColorAttachment10 = ((int)0x8CEA), /// + /// Original was GL_COLOR_ATTACHMENT10_EXT = 0x8CEA + /// + ColorAttachment10Ext = ((int)0x8CEA), + /// + /// Original was GL_COLOR_ATTACHMENT10_NV = 0x8CEA + /// + ColorAttachment10Nv = ((int)0x8CEA), + /// /// Original was GL_COLOR_ATTACHMENT11 = 0x8CEB /// ColorAttachment11 = ((int)0x8CEB), /// + /// Original was GL_COLOR_ATTACHMENT11_EXT = 0x8CEB + /// + ColorAttachment11Ext = ((int)0x8CEB), + /// + /// Original was GL_COLOR_ATTACHMENT11_NV = 0x8CEB + /// + ColorAttachment11Nv = ((int)0x8CEB), + /// /// Original was GL_COLOR_ATTACHMENT12 = 0x8CEC /// ColorAttachment12 = ((int)0x8CEC), /// + /// Original was GL_COLOR_ATTACHMENT12_EXT = 0x8CEC + /// + ColorAttachment12Ext = ((int)0x8CEC), + /// + /// Original was GL_COLOR_ATTACHMENT12_NV = 0x8CEC + /// + ColorAttachment12Nv = ((int)0x8CEC), + /// /// Original was GL_COLOR_ATTACHMENT13 = 0x8CED /// ColorAttachment13 = ((int)0x8CED), /// + /// Original was GL_COLOR_ATTACHMENT13_EXT = 0x8CED + /// + ColorAttachment13Ext = ((int)0x8CED), + /// + /// Original was GL_COLOR_ATTACHMENT13_NV = 0x8CED + /// + ColorAttachment13Nv = ((int)0x8CED), + /// /// Original was GL_COLOR_ATTACHMENT14 = 0x8CEE /// ColorAttachment14 = ((int)0x8CEE), /// + /// Original was GL_COLOR_ATTACHMENT14_EXT = 0x8CEE + /// + ColorAttachment14Ext = ((int)0x8CEE), + /// + /// Original was GL_COLOR_ATTACHMENT14_NV = 0x8CEE + /// + ColorAttachment14Nv = ((int)0x8CEE), + /// /// Original was GL_COLOR_ATTACHMENT15 = 0x8CEF /// ColorAttachment15 = ((int)0x8CEF), /// + /// Original was GL_COLOR_ATTACHMENT15_EXT = 0x8CEF + /// + ColorAttachment15Ext = ((int)0x8CEF), + /// + /// Original was GL_COLOR_ATTACHMENT15_NV = 0x8CEF + /// + ColorAttachment15Nv = ((int)0x8CEF), + /// + /// Original was GL_COLOR_ATTACHMENT16 = 0x8CF0 + /// + ColorAttachment16 = ((int)0x8CF0), + /// + /// Original was GL_COLOR_ATTACHMENT17 = 0x8CF1 + /// + ColorAttachment17 = ((int)0x8CF1), + /// + /// Original was GL_COLOR_ATTACHMENT18 = 0x8CF2 + /// + ColorAttachment18 = ((int)0x8CF2), + /// + /// Original was GL_COLOR_ATTACHMENT19 = 0x8CF3 + /// + ColorAttachment19 = ((int)0x8CF3), + /// + /// Original was GL_COLOR_ATTACHMENT20 = 0x8CF4 + /// + ColorAttachment20 = ((int)0x8CF4), + /// + /// Original was GL_COLOR_ATTACHMENT21 = 0x8CF5 + /// + ColorAttachment21 = ((int)0x8CF5), + /// + /// Original was GL_COLOR_ATTACHMENT22 = 0x8CF6 + /// + ColorAttachment22 = ((int)0x8CF6), + /// + /// Original was GL_COLOR_ATTACHMENT23 = 0x8CF7 + /// + ColorAttachment23 = ((int)0x8CF7), + /// + /// Original was GL_COLOR_ATTACHMENT24 = 0x8CF8 + /// + ColorAttachment24 = ((int)0x8CF8), + /// + /// Original was GL_COLOR_ATTACHMENT25 = 0x8CF9 + /// + ColorAttachment25 = ((int)0x8CF9), + /// + /// Original was GL_COLOR_ATTACHMENT26 = 0x8CFA + /// + ColorAttachment26 = ((int)0x8CFA), + /// + /// Original was GL_COLOR_ATTACHMENT27 = 0x8CFB + /// + ColorAttachment27 = ((int)0x8CFB), + /// + /// Original was GL_COLOR_ATTACHMENT28 = 0x8CFC + /// + ColorAttachment28 = ((int)0x8CFC), + /// + /// Original was GL_COLOR_ATTACHMENT29 = 0x8CFD + /// + ColorAttachment29 = ((int)0x8CFD), + /// + /// Original was GL_COLOR_ATTACHMENT30 = 0x8CFE + /// + ColorAttachment30 = ((int)0x8CFE), + /// + /// Original was GL_COLOR_ATTACHMENT31 = 0x8CFF + /// + ColorAttachment31 = ((int)0x8CFF), + /// /// Original was GL_DEPTH_ATTACHMENT = 0x8D00 /// DepthAttachment = ((int)0x8D00), /// + /// Original was GL_DEPTH_ATTACHMENT_EXT = 0x8D00 + /// + DepthAttachmentExt = ((int)0x8D00), + /// + /// Original was GL_DEPTH_ATTACHMENT_OES = 0x8D00 + /// + DepthAttachmentOes = ((int)0x8D00), + /// /// Original was GL_STENCIL_ATTACHMENT = 0x8D20 /// StencilAttachment = ((int)0x8D20), } + /// + /// Used in GL.GetFramebufferAttachmentParameter, GL.GetFramebufferParameter + /// + public enum FramebufferAttachmentParameterName : int + { + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING = 0x8210 + /// + FramebufferAttachmentColorEncoding = ((int)0x8210), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE = 0x8211 + /// + FramebufferAttachmentComponentType = ((int)0x8211), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_RED_SIZE = 0x8212 + /// + FramebufferAttachmentRedSize = ((int)0x8212), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_GREEN_SIZE = 0x8213 + /// + FramebufferAttachmentGreenSize = ((int)0x8213), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_BLUE_SIZE = 0x8214 + /// + FramebufferAttachmentBlueSize = ((int)0x8214), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE = 0x8215 + /// + FramebufferAttachmentAlphaSize = ((int)0x8215), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE = 0x8216 + /// + FramebufferAttachmentDepthSize = ((int)0x8216), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE = 0x8217 + /// + FramebufferAttachmentStencilSize = ((int)0x8217), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME = 0x8CD1 + /// + FramebufferAttachmentObjectName = ((int)0x8CD1), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL = 0x8CD2 + /// + FramebufferAttachmentTextureLevel = ((int)0x8CD2), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE = 0x8CD3 + /// + FramebufferAttachmentTextureCubeMapFace = ((int)0x8CD3), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER = 0x8CD4 + /// + FramebufferAttachmentTextureLayer = ((int)0x8CD4), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_LAYERED = 0x8DA7 + /// + FramebufferAttachmentLayered = ((int)0x8DA7), + } + /// /// Not used directly. /// @@ -21494,7 +23950,7 @@ namespace OpenTK.Graphics.ES31 } /// - /// Not used directly. + /// Used in GL.FramebufferParameter /// public enum FramebufferParameterName : int { @@ -21550,6 +24006,26 @@ namespace OpenTK.Graphics.ES31 /// Original was GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER = 0x8CD4 /// FramebufferAttachmentTextureLayer = ((int)0x8CD4), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_WIDTH = 0x9310 + /// + FramebufferDefaultWidth = ((int)0x9310), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_HEIGHT = 0x9311 + /// + FramebufferDefaultHeight = ((int)0x9311), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_LAYERS = 0x9312 + /// + FramebufferDefaultLayers = ((int)0x9312), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_SAMPLES = 0x9313 + /// + FramebufferDefaultSamples = ((int)0x9313), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_FIXED_SAMPLE_LOCATIONS = 0x9314 + /// + FramebufferDefaultFixedSampleLocations = ((int)0x9314), } /// @@ -21636,7 +24112,50 @@ namespace OpenTK.Graphics.ES31 } /// - /// Used in GL.BindFramebuffer, GL.CheckFramebufferStatus and 9 other functions + /// Not used directly. + /// + public enum FramebufferStatus : int + { + /// + /// Original was GL_FRAMEBUFFER_UNDEFINED = 0x8219 + /// + FramebufferUndefined = ((int)0x8219), + /// + /// Original was GL_FRAMEBUFFER_COMPLETE = 0x8CD5 + /// + FramebufferComplete = ((int)0x8CD5), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT = 0x8CD6 + /// + FramebufferIncompleteAttachment = ((int)0x8CD6), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT = 0x8CD7 + /// + FramebufferIncompleteMissingAttachment = ((int)0x8CD7), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER = 0x8CDB + /// + FramebufferIncompleteDrawBuffer = ((int)0x8CDB), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER = 0x8CDC + /// + FramebufferIncompleteReadBuffer = ((int)0x8CDC), + /// + /// Original was GL_FRAMEBUFFER_UNSUPPORTED = 0x8CDD + /// + FramebufferUnsupported = ((int)0x8CDD), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE = 0x8D56 + /// + FramebufferIncompleteMultisample = ((int)0x8D56), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS = 0x8DA8 + /// + FramebufferIncompleteLayerTargets = ((int)0x8DA8), + } + + /// + /// Used in GL.BindFramebuffer, GL.CheckFramebufferStatus and 18 other functions /// public enum FramebufferTarget : int { @@ -21674,43 +24193,83 @@ namespace OpenTK.Graphics.ES31 /// public enum GetColorTableParameterPNameSgi : int { + /// + /// Original was GL_COLOR_TABLE_SCALE = 0x80D6 + /// + ColorTableScale = ((int)0x80D6), /// /// Original was GL_COLOR_TABLE_SCALE_SGI = 0x80D6 /// ColorTableScaleSgi = ((int)0x80D6), /// + /// Original was GL_COLOR_TABLE_BIAS = 0x80D7 + /// + ColorTableBias = ((int)0x80D7), + /// /// Original was GL_COLOR_TABLE_BIAS_SGI = 0x80D7 /// ColorTableBiasSgi = ((int)0x80D7), /// + /// Original was GL_COLOR_TABLE_FORMAT = 0x80D8 + /// + ColorTableFormat = ((int)0x80D8), + /// /// Original was GL_COLOR_TABLE_FORMAT_SGI = 0x80D8 /// ColorTableFormatSgi = ((int)0x80D8), /// + /// Original was GL_COLOR_TABLE_WIDTH = 0x80D9 + /// + ColorTableWidth = ((int)0x80D9), + /// /// Original was GL_COLOR_TABLE_WIDTH_SGI = 0x80D9 /// ColorTableWidthSgi = ((int)0x80D9), /// + /// Original was GL_COLOR_TABLE_RED_SIZE = 0x80DA + /// + ColorTableRedSize = ((int)0x80DA), + /// /// Original was GL_COLOR_TABLE_RED_SIZE_SGI = 0x80DA /// ColorTableRedSizeSgi = ((int)0x80DA), /// + /// Original was GL_COLOR_TABLE_GREEN_SIZE = 0x80DB + /// + ColorTableGreenSize = ((int)0x80DB), + /// /// Original was GL_COLOR_TABLE_GREEN_SIZE_SGI = 0x80DB /// ColorTableGreenSizeSgi = ((int)0x80DB), /// + /// Original was GL_COLOR_TABLE_BLUE_SIZE = 0x80DC + /// + ColorTableBlueSize = ((int)0x80DC), + /// /// Original was GL_COLOR_TABLE_BLUE_SIZE_SGI = 0x80DC /// ColorTableBlueSizeSgi = ((int)0x80DC), /// + /// Original was GL_COLOR_TABLE_ALPHA_SIZE = 0x80DD + /// + ColorTableAlphaSize = ((int)0x80DD), + /// /// Original was GL_COLOR_TABLE_ALPHA_SIZE_SGI = 0x80DD /// ColorTableAlphaSizeSgi = ((int)0x80DD), /// + /// Original was GL_COLOR_TABLE_LUMINANCE_SIZE = 0x80DE + /// + ColorTableLuminanceSize = ((int)0x80DE), + /// /// Original was GL_COLOR_TABLE_LUMINANCE_SIZE_SGI = 0x80DE /// ColorTableLuminanceSizeSgi = ((int)0x80DE), /// + /// Original was GL_COLOR_TABLE_INTENSITY_SIZE = 0x80DF + /// + ColorTableIntensitySize = ((int)0x80DF), + /// /// Original was GL_COLOR_TABLE_INTENSITY_SIZE_SGI = 0x80DF /// ColorTableIntensitySizeSgi = ((int)0x80DF), @@ -21721,38 +24280,125 @@ namespace OpenTK.Graphics.ES31 /// public enum GetConvolutionParameter : int { + /// + /// Original was GL_CONVOLUTION_BORDER_MODE = 0x8013 + /// + ConvolutionBorderMode = ((int)0x8013), /// /// Original was GL_CONVOLUTION_BORDER_MODE_EXT = 0x8013 /// ConvolutionBorderModeExt = ((int)0x8013), /// + /// Original was GL_CONVOLUTION_FILTER_SCALE = 0x8014 + /// + ConvolutionFilterScale = ((int)0x8014), + /// /// Original was GL_CONVOLUTION_FILTER_SCALE_EXT = 0x8014 /// ConvolutionFilterScaleExt = ((int)0x8014), /// + /// Original was GL_CONVOLUTION_FILTER_BIAS = 0x8015 + /// + ConvolutionFilterBias = ((int)0x8015), + /// /// Original was GL_CONVOLUTION_FILTER_BIAS_EXT = 0x8015 /// ConvolutionFilterBiasExt = ((int)0x8015), /// + /// Original was GL_CONVOLUTION_FORMAT = 0x8017 + /// + ConvolutionFormat = ((int)0x8017), + /// /// Original was GL_CONVOLUTION_FORMAT_EXT = 0x8017 /// ConvolutionFormatExt = ((int)0x8017), /// + /// Original was GL_CONVOLUTION_WIDTH = 0x8018 + /// + ConvolutionWidth = ((int)0x8018), + /// /// Original was GL_CONVOLUTION_WIDTH_EXT = 0x8018 /// ConvolutionWidthExt = ((int)0x8018), /// + /// Original was GL_CONVOLUTION_HEIGHT = 0x8019 + /// + ConvolutionHeight = ((int)0x8019), + /// /// Original was GL_CONVOLUTION_HEIGHT_EXT = 0x8019 /// ConvolutionHeightExt = ((int)0x8019), /// + /// Original was GL_MAX_CONVOLUTION_WIDTH = 0x801A + /// + MaxConvolutionWidth = ((int)0x801A), + /// /// Original was GL_MAX_CONVOLUTION_WIDTH_EXT = 0x801A /// MaxConvolutionWidthExt = ((int)0x801A), /// + /// Original was GL_MAX_CONVOLUTION_HEIGHT = 0x801B + /// + MaxConvolutionHeight = ((int)0x801B), + /// /// Original was GL_MAX_CONVOLUTION_HEIGHT_EXT = 0x801B /// MaxConvolutionHeightExt = ((int)0x801B), + /// + /// Original was GL_CONVOLUTION_BORDER_COLOR = 0x8154 + /// + ConvolutionBorderColor = ((int)0x8154), + } + + /// + /// Not used directly. + /// + public enum GetFramebufferParameter : int + { + /// + /// Original was GL_DOUBLEBUFFER = 0x0C32 + /// + Doublebuffer = ((int)0x0C32), + /// + /// Original was GL_STEREO = 0x0C33 + /// + Stereo = ((int)0x0C33), + /// + /// Original was GL_SAMPLE_BUFFERS = 0x80A8 + /// + SampleBuffers = ((int)0x80A8), + /// + /// Original was GL_SAMPLES = 0x80A9 + /// + Samples = ((int)0x80A9), + /// + /// Original was GL_IMPLEMENTATION_COLOR_READ_TYPE = 0x8B9A + /// + ImplementationColorReadType = ((int)0x8B9A), + /// + /// Original was GL_IMPLEMENTATION_COLOR_READ_FORMAT = 0x8B9B + /// + ImplementationColorReadFormat = ((int)0x8B9B), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_WIDTH = 0x9310 + /// + FramebufferDefaultWidth = ((int)0x9310), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_HEIGHT = 0x9311 + /// + FramebufferDefaultHeight = ((int)0x9311), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_LAYERS = 0x9312 + /// + FramebufferDefaultLayers = ((int)0x9312), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_SAMPLES = 0x9313 + /// + FramebufferDefaultSamples = ((int)0x9313), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_FIXED_SAMPLE_LOCATIONS = 0x9314 + /// + FramebufferDefaultFixedSampleLocations = ((int)0x9314), } /// @@ -21760,35 +24406,67 @@ namespace OpenTK.Graphics.ES31 /// public enum GetHistogramParameterPNameExt : int { + /// + /// Original was GL_HISTOGRAM_WIDTH = 0x8026 + /// + HistogramWidth = ((int)0x8026), /// /// Original was GL_HISTOGRAM_WIDTH_EXT = 0x8026 /// HistogramWidthExt = ((int)0x8026), /// + /// Original was GL_HISTOGRAM_FORMAT = 0x8027 + /// + HistogramFormat = ((int)0x8027), + /// /// Original was GL_HISTOGRAM_FORMAT_EXT = 0x8027 /// HistogramFormatExt = ((int)0x8027), /// + /// Original was GL_HISTOGRAM_RED_SIZE = 0x8028 + /// + HistogramRedSize = ((int)0x8028), + /// /// Original was GL_HISTOGRAM_RED_SIZE_EXT = 0x8028 /// HistogramRedSizeExt = ((int)0x8028), /// + /// Original was GL_HISTOGRAM_GREEN_SIZE = 0x8029 + /// + HistogramGreenSize = ((int)0x8029), + /// /// Original was GL_HISTOGRAM_GREEN_SIZE_EXT = 0x8029 /// HistogramGreenSizeExt = ((int)0x8029), /// + /// Original was GL_HISTOGRAM_BLUE_SIZE = 0x802A + /// + HistogramBlueSize = ((int)0x802A), + /// /// Original was GL_HISTOGRAM_BLUE_SIZE_EXT = 0x802A /// HistogramBlueSizeExt = ((int)0x802A), /// + /// Original was GL_HISTOGRAM_ALPHA_SIZE = 0x802B + /// + HistogramAlphaSize = ((int)0x802B), + /// /// Original was GL_HISTOGRAM_ALPHA_SIZE_EXT = 0x802B /// HistogramAlphaSizeExt = ((int)0x802B), /// + /// Original was GL_HISTOGRAM_LUMINANCE_SIZE = 0x802C + /// + HistogramLuminanceSize = ((int)0x802C), + /// /// Original was GL_HISTOGRAM_LUMINANCE_SIZE_EXT = 0x802C /// HistogramLuminanceSizeExt = ((int)0x802C), /// + /// Original was GL_HISTOGRAM_SINK = 0x802D + /// + HistogramSink = ((int)0x802D), + /// /// Original was GL_HISTOGRAM_SINK_EXT = 0x802D /// HistogramSinkExt = ((int)0x802D), @@ -21954,7 +24632,7 @@ namespace OpenTK.Graphics.ES31 } /// - /// Used in GL.GetBoolean, GL.GetFloat and 2 other functions + /// Used in GL.Apple.GetInteger64, GL.GetBoolean and 4 other functions /// public enum GetPName : int { @@ -24277,6 +26955,14 @@ namespace OpenTK.Graphics.ES31 /// Original was GL_INSTRUMENT_BUFFER_POINTER_SGIX = 0x8180 /// InstrumentBufferPointerSgix = ((int)0x8180), + /// + /// Original was GL_DEBUG_CALLBACK_FUNCTION = 0x8244 + /// + DebugCallbackFunction = ((int)0x8244), + /// + /// Original was GL_DEBUG_CALLBACK_USER_PARAM = 0x8245 + /// + DebugCallbackUserParam = ((int)0x8245), } /// @@ -24766,6 +27452,29 @@ namespace OpenTK.Graphics.ES31 TextureImmutableFormatExt = ((int)0x912F), } + /// + /// Not used directly. + /// + public enum GraphicsResetStatus : int + { + /// + /// Original was GL_NO_ERROR = 0 + /// + NoError = ((int)0), + /// + /// Original was GL_GUILTY_CONTEXT_RESET = 0x8253 + /// + GuiltyContextReset = ((int)0x8253), + /// + /// Original was GL_INNOCENT_CONTEXT_RESET = 0x8254 + /// + InnocentContextReset = ((int)0x8254), + /// + /// Original was GL_UNKNOWN_CONTEXT_RESET = 0x8255 + /// + UnknownContextReset = ((int)0x8255), + } + /// /// Used in GL.Hint /// @@ -25369,10 +28078,30 @@ namespace OpenTK.Graphics.ES31 } /// - /// Not used directly. + /// Used in GL.Angle.RenderbufferStorageMultisample, GL.Apple.RenderbufferStorageMultisample and 31 other functions /// public enum InternalFormat : int { + /// + /// Original was GL_DEPTH_COMPONENT = 0x1902 + /// + DepthComponent = ((int)0x1902), + /// + /// Original was GL_RED = 0x1903 + /// + Red = ((int)0x1903), + /// + /// Original was GL_RED_EXT = 0x1903 + /// + RedExt = ((int)0x1903), + /// + /// Original was GL_RGB = 0x1907 + /// + Rgb = ((int)0x1907), + /// + /// Original was GL_RGBA = 0x1908 + /// + Rgba = ((int)0x1908), /// /// Original was GL_R3_G3_B2 = 0x2A10 /// @@ -25462,54 +28191,114 @@ namespace OpenTK.Graphics.ES31 /// Rgb4 = ((int)0x804F), /// + /// Original was GL_RGB4_EXT = 0x804F + /// + Rgb4Ext = ((int)0x804F), + /// /// Original was GL_RGB5 = 0x8050 /// Rgb5 = ((int)0x8050), /// + /// Original was GL_RGB5_EXT = 0x8050 + /// + Rgb5Ext = ((int)0x8050), + /// /// Original was GL_RGB8 = 0x8051 /// Rgb8 = ((int)0x8051), /// + /// Original was GL_RGB8_EXT = 0x8051 + /// + Rgb8Ext = ((int)0x8051), + /// + /// Original was GL_RGB8_OES = 0x8051 + /// + Rgb8Oes = ((int)0x8051), + /// /// Original was GL_RGB10 = 0x8052 /// Rgb10 = ((int)0x8052), /// + /// Original was GL_RGB10_EXT = 0x8052 + /// + Rgb10Ext = ((int)0x8052), + /// /// Original was GL_RGB12 = 0x8053 /// Rgb12 = ((int)0x8053), /// + /// Original was GL_RGB12_EXT = 0x8053 + /// + Rgb12Ext = ((int)0x8053), + /// /// Original was GL_RGB16 = 0x8054 /// Rgb16 = ((int)0x8054), /// - /// Original was GL_RGBA2 = 0x8055 + /// Original was GL_RGB16_EXT = 0x8054 /// - Rgba2 = ((int)0x8055), + Rgb16Ext = ((int)0x8054), /// /// Original was GL_RGBA4 = 0x8056 /// Rgba4 = ((int)0x8056), /// + /// Original was GL_RGBA4_EXT = 0x8056 + /// + Rgba4Ext = ((int)0x8056), + /// + /// Original was GL_RGBA4_OES = 0x8056 + /// + Rgba4Oes = ((int)0x8056), + /// /// Original was GL_RGB5_A1 = 0x8057 /// Rgb5A1 = ((int)0x8057), /// + /// Original was GL_RGB5_A1_EXT = 0x8057 + /// + Rgb5A1Ext = ((int)0x8057), + /// + /// Original was GL_RGB5_A1_OES = 0x8057 + /// + Rgb5A1Oes = ((int)0x8057), + /// /// Original was GL_RGBA8 = 0x8058 /// Rgba8 = ((int)0x8058), /// + /// Original was GL_RGBA8_EXT = 0x8058 + /// + Rgba8Ext = ((int)0x8058), + /// + /// Original was GL_RGBA8_OES = 0x8058 + /// + Rgba8Oes = ((int)0x8058), + /// /// Original was GL_RGB10_A2 = 0x8059 /// Rgb10A2 = ((int)0x8059), /// + /// Original was GL_RGB10_A2_EXT = 0x8059 + /// + Rgb10A2Ext = ((int)0x8059), + /// /// Original was GL_RGBA12 = 0x805A /// Rgba12 = ((int)0x805A), /// + /// Original was GL_RGBA12_EXT = 0x805A + /// + Rgba12Ext = ((int)0x805A), + /// /// Original was GL_RGBA16 = 0x805B /// Rgba16 = ((int)0x805B), /// + /// Original was GL_RGBA16_EXT = 0x805B + /// + Rgba16Ext = ((int)0x805B), + /// /// Original was GL_DUAL_ALPHA4_SGIS = 0x8110 /// DualAlpha4Sgis = ((int)0x8110), @@ -25590,17 +28379,533 @@ namespace OpenTK.Graphics.ES31 /// QuadIntensity8Sgis = ((int)0x8123), /// + /// Original was GL_DEPTH_COMPONENT16 = 0x81A5 + /// + DepthComponent16 = ((int)0x81A5), + /// + /// Original was GL_DEPTH_COMPONENT16_ARB = 0x81A5 + /// + DepthComponent16Arb = ((int)0x81A5), + /// + /// Original was GL_DEPTH_COMPONENT16_OES = 0x81A5 + /// + DepthComponent16Oes = ((int)0x81A5), + /// /// Original was GL_DEPTH_COMPONENT16_SGIX = 0x81A5 /// DepthComponent16Sgix = ((int)0x81A5), /// + /// Original was GL_DEPTH_COMPONENT24_ARB = 0x81A6 + /// + DepthComponent24Arb = ((int)0x81A6), + /// + /// Original was GL_DEPTH_COMPONENT24_OES = 0x81A6 + /// + DepthComponent24Oes = ((int)0x81A6), + /// /// Original was GL_DEPTH_COMPONENT24_SGIX = 0x81A6 /// DepthComponent24Sgix = ((int)0x81A6), /// + /// Original was GL_DEPTH_COMPONENT32_ARB = 0x81A7 + /// + DepthComponent32Arb = ((int)0x81A7), + /// + /// Original was GL_DEPTH_COMPONENT32_OES = 0x81A7 + /// + DepthComponent32Oes = ((int)0x81A7), + /// /// Original was GL_DEPTH_COMPONENT32_SGIX = 0x81A7 /// DepthComponent32Sgix = ((int)0x81A7), + /// + /// Original was GL_COMPRESSED_RED = 0x8225 + /// + CompressedRed = ((int)0x8225), + /// + /// Original was GL_COMPRESSED_RG = 0x8226 + /// + CompressedRg = ((int)0x8226), + /// + /// Original was GL_RG = 0x8227 + /// + Rg = ((int)0x8227), + /// + /// Original was GL_R8 = 0x8229 + /// + R8 = ((int)0x8229), + /// + /// Original was GL_R8_EXT = 0x8229 + /// + R8Ext = ((int)0x8229), + /// + /// Original was GL_R16 = 0x822A + /// + R16 = ((int)0x822A), + /// + /// Original was GL_R16_EXT = 0x822A + /// + R16Ext = ((int)0x822A), + /// + /// Original was GL_RG8 = 0x822B + /// + Rg8 = ((int)0x822B), + /// + /// Original was GL_RG8_EXT = 0x822B + /// + Rg8Ext = ((int)0x822B), + /// + /// Original was GL_RG16 = 0x822C + /// + Rg16 = ((int)0x822C), + /// + /// Original was GL_RG16_EXT = 0x822C + /// + Rg16Ext = ((int)0x822C), + /// + /// Original was GL_R16F = 0x822D + /// + R16f = ((int)0x822D), + /// + /// Original was GL_R16F_EXT = 0x822D + /// + R16fExt = ((int)0x822D), + /// + /// Original was GL_R32F = 0x822E + /// + R32f = ((int)0x822E), + /// + /// Original was GL_R32F_EXT = 0x822E + /// + R32fExt = ((int)0x822E), + /// + /// Original was GL_RG16F = 0x822F + /// + Rg16f = ((int)0x822F), + /// + /// Original was GL_RG16F_EXT = 0x822F + /// + Rg16fExt = ((int)0x822F), + /// + /// Original was GL_RG32F = 0x8230 + /// + Rg32f = ((int)0x8230), + /// + /// Original was GL_RG32F_EXT = 0x8230 + /// + Rg32fExt = ((int)0x8230), + /// + /// Original was GL_R8I = 0x8231 + /// + R8i = ((int)0x8231), + /// + /// Original was GL_R8UI = 0x8232 + /// + R8ui = ((int)0x8232), + /// + /// Original was GL_R16I = 0x8233 + /// + R16i = ((int)0x8233), + /// + /// Original was GL_R16UI = 0x8234 + /// + R16ui = ((int)0x8234), + /// + /// Original was GL_R32I = 0x8235 + /// + R32i = ((int)0x8235), + /// + /// Original was GL_R32UI = 0x8236 + /// + R32ui = ((int)0x8236), + /// + /// Original was GL_RG8I = 0x8237 + /// + Rg8i = ((int)0x8237), + /// + /// Original was GL_RG8UI = 0x8238 + /// + Rg8ui = ((int)0x8238), + /// + /// Original was GL_RG16I = 0x8239 + /// + Rg16i = ((int)0x8239), + /// + /// Original was GL_RG16UI = 0x823A + /// + Rg16ui = ((int)0x823A), + /// + /// Original was GL_RG32I = 0x823B + /// + Rg32i = ((int)0x823B), + /// + /// Original was GL_RG32UI = 0x823C + /// + Rg32ui = ((int)0x823C), + /// + /// Original was GL_COMPRESSED_RGB_S3TC_DXT1_EXT = 0x83F0 + /// + CompressedRgbS3tcDxt1Ext = ((int)0x83F0), + /// + /// Original was GL_COMPRESSED_RGBA_S3TC_DXT1_EXT = 0x83F1 + /// + CompressedRgbaS3tcDxt1Ext = ((int)0x83F1), + /// + /// Original was GL_COMPRESSED_RGBA_S3TC_DXT3_EXT = 0x83F2 + /// + CompressedRgbaS3tcDxt3Ext = ((int)0x83F2), + /// + /// Original was GL_COMPRESSED_RGBA_S3TC_DXT5_EXT = 0x83F3 + /// + CompressedRgbaS3tcDxt5Ext = ((int)0x83F3), + /// + /// Original was GL_COMPRESSED_RGB = 0x84ED + /// + CompressedRgb = ((int)0x84ED), + /// + /// Original was GL_COMPRESSED_RGBA = 0x84EE + /// + CompressedRgba = ((int)0x84EE), + /// + /// Original was GL_DEPTH_STENCIL = 0x84F9 + /// + DepthStencil = ((int)0x84F9), + /// + /// Original was GL_DEPTH_STENCIL_EXT = 0x84F9 + /// + DepthStencilExt = ((int)0x84F9), + /// + /// Original was GL_DEPTH_STENCIL_NV = 0x84F9 + /// + DepthStencilNv = ((int)0x84F9), + /// + /// Original was GL_DEPTH_STENCIL_OES = 0x84F9 + /// + DepthStencilOes = ((int)0x84F9), + /// + /// Original was GL_DEPTH_STENCIL_MESA = 0x8750 + /// + DepthStencilMesa = ((int)0x8750), + /// + /// Original was GL_RGBA32F = 0x8814 + /// + Rgba32f = ((int)0x8814), + /// + /// Original was GL_RGBA32F_ARB = 0x8814 + /// + Rgba32fArb = ((int)0x8814), + /// + /// Original was GL_RGBA32F_EXT = 0x8814 + /// + Rgba32fExt = ((int)0x8814), + /// + /// Original was GL_RGBA16F = 0x881A + /// + Rgba16f = ((int)0x881A), + /// + /// Original was GL_RGBA16F_ARB = 0x881A + /// + Rgba16fArb = ((int)0x881A), + /// + /// Original was GL_RGBA16F_EXT = 0x881A + /// + Rgba16fExt = ((int)0x881A), + /// + /// Original was GL_RGB16F = 0x881B + /// + Rgb16f = ((int)0x881B), + /// + /// Original was GL_RGB16F_ARB = 0x881B + /// + Rgb16fArb = ((int)0x881B), + /// + /// Original was GL_RGB16F_EXT = 0x881B + /// + Rgb16fExt = ((int)0x881B), + /// + /// Original was GL_DEPTH24_STENCIL8 = 0x88F0 + /// + Depth24Stencil8 = ((int)0x88F0), + /// + /// Original was GL_DEPTH24_STENCIL8_EXT = 0x88F0 + /// + Depth24Stencil8Ext = ((int)0x88F0), + /// + /// Original was GL_DEPTH24_STENCIL8_OES = 0x88F0 + /// + Depth24Stencil8Oes = ((int)0x88F0), + /// + /// Original was GL_R11F_G11F_B10F = 0x8C3A + /// + R11fG11fB10f = ((int)0x8C3A), + /// + /// Original was GL_R11F_G11F_B10F_APPLE = 0x8C3A + /// + R11fG11fB10fApple = ((int)0x8C3A), + /// + /// Original was GL_R11F_G11F_B10F_EXT = 0x8C3A + /// + R11fG11fB10fExt = ((int)0x8C3A), + /// + /// Original was GL_RGB9_E5 = 0x8C3D + /// + Rgb9E5 = ((int)0x8C3D), + /// + /// Original was GL_RGB9_E5_APPLE = 0x8C3D + /// + Rgb9E5Apple = ((int)0x8C3D), + /// + /// Original was GL_RGB9_E5_EXT = 0x8C3D + /// + Rgb9E5Ext = ((int)0x8C3D), + /// + /// Original was GL_SRGB = 0x8C40 + /// + Srgb = ((int)0x8C40), + /// + /// Original was GL_SRGB_EXT = 0x8C40 + /// + SrgbExt = ((int)0x8C40), + /// + /// Original was GL_SRGB8 = 0x8C41 + /// + Srgb8 = ((int)0x8C41), + /// + /// Original was GL_SRGB8_EXT = 0x8C41 + /// + Srgb8Ext = ((int)0x8C41), + /// + /// Original was GL_SRGB8_NV = 0x8C41 + /// + Srgb8Nv = ((int)0x8C41), + /// + /// Original was GL_SRGB_ALPHA = 0x8C42 + /// + SrgbAlpha = ((int)0x8C42), + /// + /// Original was GL_SRGB_ALPHA_EXT = 0x8C42 + /// + SrgbAlphaExt = ((int)0x8C42), + /// + /// Original was GL_SRGB8_ALPHA8 = 0x8C43 + /// + Srgb8Alpha8 = ((int)0x8C43), + /// + /// Original was GL_SRGB8_ALPHA8_EXT = 0x8C43 + /// + Srgb8Alpha8Ext = ((int)0x8C43), + /// + /// Original was GL_COMPRESSED_SRGB = 0x8C48 + /// + CompressedSrgb = ((int)0x8C48), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA = 0x8C49 + /// + CompressedSrgbAlpha = ((int)0x8C49), + /// + /// Original was GL_COMPRESSED_SRGB_S3TC_DXT1_EXT = 0x8C4C + /// + CompressedSrgbS3tcDxt1Ext = ((int)0x8C4C), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT = 0x8C4D + /// + CompressedSrgbAlphaS3tcDxt1Ext = ((int)0x8C4D), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT = 0x8C4E + /// + CompressedSrgbAlphaS3tcDxt3Ext = ((int)0x8C4E), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT = 0x8C4F + /// + CompressedSrgbAlphaS3tcDxt5Ext = ((int)0x8C4F), + /// + /// Original was GL_DEPTH_COMPONENT32F = 0x8CAC + /// + DepthComponent32f = ((int)0x8CAC), + /// + /// Original was GL_DEPTH32F_STENCIL8 = 0x8CAD + /// + Depth32fStencil8 = ((int)0x8CAD), + /// + /// Original was GL_RGBA32UI = 0x8D70 + /// + Rgba32ui = ((int)0x8D70), + /// + /// Original was GL_RGB32UI = 0x8D71 + /// + Rgb32ui = ((int)0x8D71), + /// + /// Original was GL_RGBA16UI = 0x8D76 + /// + Rgba16ui = ((int)0x8D76), + /// + /// Original was GL_RGB16UI = 0x8D77 + /// + Rgb16ui = ((int)0x8D77), + /// + /// Original was GL_RGBA8UI = 0x8D7C + /// + Rgba8ui = ((int)0x8D7C), + /// + /// Original was GL_RGB8UI = 0x8D7D + /// + Rgb8ui = ((int)0x8D7D), + /// + /// Original was GL_RGBA32I = 0x8D82 + /// + Rgba32i = ((int)0x8D82), + /// + /// Original was GL_RGB32I = 0x8D83 + /// + Rgb32i = ((int)0x8D83), + /// + /// Original was GL_RGBA16I = 0x8D88 + /// + Rgba16i = ((int)0x8D88), + /// + /// Original was GL_RGB16I = 0x8D89 + /// + Rgb16i = ((int)0x8D89), + /// + /// Original was GL_RGBA8I = 0x8D8E + /// + Rgba8i = ((int)0x8D8E), + /// + /// Original was GL_RGB8I = 0x8D8F + /// + Rgb8i = ((int)0x8D8F), + /// + /// Original was GL_DEPTH_COMPONENT32F_NV = 0x8DAB + /// + DepthComponent32fNv = ((int)0x8DAB), + /// + /// Original was GL_DEPTH32F_STENCIL8_NV = 0x8DAC + /// + Depth32fStencil8Nv = ((int)0x8DAC), + /// + /// Original was GL_COMPRESSED_RED_RGTC1 = 0x8DBB + /// + CompressedRedRgtc1 = ((int)0x8DBB), + /// + /// Original was GL_COMPRESSED_RED_RGTC1_EXT = 0x8DBB + /// + CompressedRedRgtc1Ext = ((int)0x8DBB), + /// + /// Original was GL_COMPRESSED_SIGNED_RED_RGTC1 = 0x8DBC + /// + CompressedSignedRedRgtc1 = ((int)0x8DBC), + /// + /// Original was GL_COMPRESSED_SIGNED_RED_RGTC1_EXT = 0x8DBC + /// + CompressedSignedRedRgtc1Ext = ((int)0x8DBC), + /// + /// Original was GL_COMPRESSED_RG_RGTC2 = 0x8DBD + /// + CompressedRgRgtc2 = ((int)0x8DBD), + /// + /// Original was GL_COMPRESSED_SIGNED_RG_RGTC2 = 0x8DBE + /// + CompressedSignedRgRgtc2 = ((int)0x8DBE), + /// + /// Original was GL_COMPRESSED_RGBA_BPTC_UNORM = 0x8E8C + /// + CompressedRgbaBptcUnorm = ((int)0x8E8C), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM = 0x8E8D + /// + CompressedSrgbAlphaBptcUnorm = ((int)0x8E8D), + /// + /// Original was GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT = 0x8E8E + /// + CompressedRgbBptcSignedFloat = ((int)0x8E8E), + /// + /// Original was GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT = 0x8E8F + /// + CompressedRgbBptcUnsignedFloat = ((int)0x8E8F), + /// + /// Original was GL_R8_SNORM = 0x8F94 + /// + R8Snorm = ((int)0x8F94), + /// + /// Original was GL_RG8_SNORM = 0x8F95 + /// + Rg8Snorm = ((int)0x8F95), + /// + /// Original was GL_RGB8_SNORM = 0x8F96 + /// + Rgb8Snorm = ((int)0x8F96), + /// + /// Original was GL_RGBA8_SNORM = 0x8F97 + /// + Rgba8Snorm = ((int)0x8F97), + /// + /// Original was GL_R16_SNORM = 0x8F98 + /// + R16Snorm = ((int)0x8F98), + /// + /// Original was GL_R16_SNORM_EXT = 0x8F98 + /// + R16SnormExt = ((int)0x8F98), + /// + /// Original was GL_RG16_SNORM = 0x8F99 + /// + Rg16Snorm = ((int)0x8F99), + /// + /// Original was GL_RG16_SNORM_EXT = 0x8F99 + /// + Rg16SnormExt = ((int)0x8F99), + /// + /// Original was GL_RGB16_SNORM = 0x8F9A + /// + Rgb16Snorm = ((int)0x8F9A), + /// + /// Original was GL_RGB16_SNORM_EXT = 0x8F9A + /// + Rgb16SnormExt = ((int)0x8F9A), + /// + /// Original was GL_RGB10_A2UI = 0x906F + /// + Rgb10A2ui = ((int)0x906F), + /// + /// Original was GL_COMPRESSED_R11_EAC = 0x9270 + /// + CompressedR11Eac = ((int)0x9270), + /// + /// Original was GL_COMPRESSED_SIGNED_R11_EAC = 0x9271 + /// + CompressedSignedR11Eac = ((int)0x9271), + /// + /// Original was GL_COMPRESSED_RG11_EAC = 0x9272 + /// + CompressedRg11Eac = ((int)0x9272), + /// + /// Original was GL_COMPRESSED_SIGNED_RG11_EAC = 0x9273 + /// + CompressedSignedRg11Eac = ((int)0x9273), + /// + /// Original was GL_COMPRESSED_RGB8_ETC2 = 0x9274 + /// + CompressedRgb8Etc2 = ((int)0x9274), + /// + /// Original was GL_COMPRESSED_SRGB8_ETC2 = 0x9275 + /// + CompressedSrgb8Etc2 = ((int)0x9275), + /// + /// Original was GL_COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2 = 0x9276 + /// + CompressedRgb8PunchthroughAlpha1Etc2 = ((int)0x9276), + /// + /// Original was GL_COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2 = 0x9277 + /// + CompressedSrgb8PunchthroughAlpha1Etc2 = ((int)0x9277), + /// + /// Original was GL_COMPRESSED_RGBA8_ETC2_EAC = 0x9278 + /// + CompressedRgba8Etc2Eac = ((int)0x9278), + /// + /// Original was GL_COMPRESSED_SRGB8_ALPHA8_ETC2_EAC = 0x9279 + /// + CompressedSrgb8Alpha8Etc2Eac = ((int)0x9279), } /// @@ -25618,6 +28923,297 @@ namespace OpenTK.Graphics.ES31 NumSampleCounts = ((int)0x9380), } + /// + /// Used in GL.GetInternalformat, GL.NV.GetInternalformatSample + /// + public enum InternalFormatPName : int + { + /// + /// Original was GL_SAMPLES = 0x80A9 + /// + Samples = ((int)0x80A9), + /// + /// Original was GL_GENERATE_MIPMAP = 0x8191 + /// + GenerateMipmap = ((int)0x8191), + /// + /// Original was GL_INTERNALFORMAT_SUPPORTED = 0x826F + /// + InternalformatSupported = ((int)0x826F), + /// + /// Original was GL_INTERNALFORMAT_PREFERRED = 0x8270 + /// + InternalformatPreferred = ((int)0x8270), + /// + /// Original was GL_INTERNALFORMAT_RED_SIZE = 0x8271 + /// + InternalformatRedSize = ((int)0x8271), + /// + /// Original was GL_INTERNALFORMAT_GREEN_SIZE = 0x8272 + /// + InternalformatGreenSize = ((int)0x8272), + /// + /// Original was GL_INTERNALFORMAT_BLUE_SIZE = 0x8273 + /// + InternalformatBlueSize = ((int)0x8273), + /// + /// Original was GL_INTERNALFORMAT_ALPHA_SIZE = 0x8274 + /// + InternalformatAlphaSize = ((int)0x8274), + /// + /// Original was GL_INTERNALFORMAT_DEPTH_SIZE = 0x8275 + /// + InternalformatDepthSize = ((int)0x8275), + /// + /// Original was GL_INTERNALFORMAT_STENCIL_SIZE = 0x8276 + /// + InternalformatStencilSize = ((int)0x8276), + /// + /// Original was GL_INTERNALFORMAT_SHARED_SIZE = 0x8277 + /// + InternalformatSharedSize = ((int)0x8277), + /// + /// Original was GL_INTERNALFORMAT_RED_TYPE = 0x8278 + /// + InternalformatRedType = ((int)0x8278), + /// + /// Original was GL_INTERNALFORMAT_GREEN_TYPE = 0x8279 + /// + InternalformatGreenType = ((int)0x8279), + /// + /// Original was GL_INTERNALFORMAT_BLUE_TYPE = 0x827A + /// + InternalformatBlueType = ((int)0x827A), + /// + /// Original was GL_INTERNALFORMAT_ALPHA_TYPE = 0x827B + /// + InternalformatAlphaType = ((int)0x827B), + /// + /// Original was GL_INTERNALFORMAT_DEPTH_TYPE = 0x827C + /// + InternalformatDepthType = ((int)0x827C), + /// + /// Original was GL_INTERNALFORMAT_STENCIL_TYPE = 0x827D + /// + InternalformatStencilType = ((int)0x827D), + /// + /// Original was GL_MAX_WIDTH = 0x827E + /// + MaxWidth = ((int)0x827E), + /// + /// Original was GL_MAX_HEIGHT = 0x827F + /// + MaxHeight = ((int)0x827F), + /// + /// Original was GL_MAX_DEPTH = 0x8280 + /// + MaxDepth = ((int)0x8280), + /// + /// Original was GL_MAX_LAYERS = 0x8281 + /// + MaxLayers = ((int)0x8281), + /// + /// Original was GL_COLOR_COMPONENTS = 0x8283 + /// + ColorComponents = ((int)0x8283), + /// + /// Original was GL_COLOR_RENDERABLE = 0x8286 + /// + ColorRenderable = ((int)0x8286), + /// + /// Original was GL_DEPTH_RENDERABLE = 0x8287 + /// + DepthRenderable = ((int)0x8287), + /// + /// Original was GL_STENCIL_RENDERABLE = 0x8288 + /// + StencilRenderable = ((int)0x8288), + /// + /// Original was GL_FRAMEBUFFER_RENDERABLE = 0x8289 + /// + FramebufferRenderable = ((int)0x8289), + /// + /// Original was GL_FRAMEBUFFER_RENDERABLE_LAYERED = 0x828A + /// + FramebufferRenderableLayered = ((int)0x828A), + /// + /// Original was GL_FRAMEBUFFER_BLEND = 0x828B + /// + FramebufferBlend = ((int)0x828B), + /// + /// Original was GL_READ_PIXELS = 0x828C + /// + ReadPixels = ((int)0x828C), + /// + /// Original was GL_READ_PIXELS_FORMAT = 0x828D + /// + ReadPixelsFormat = ((int)0x828D), + /// + /// Original was GL_READ_PIXELS_TYPE = 0x828E + /// + ReadPixelsType = ((int)0x828E), + /// + /// Original was GL_TEXTURE_IMAGE_FORMAT = 0x828F + /// + TextureImageFormat = ((int)0x828F), + /// + /// Original was GL_TEXTURE_IMAGE_TYPE = 0x8290 + /// + TextureImageType = ((int)0x8290), + /// + /// Original was GL_GET_TEXTURE_IMAGE_FORMAT = 0x8291 + /// + GetTextureImageFormat = ((int)0x8291), + /// + /// Original was GL_GET_TEXTURE_IMAGE_TYPE = 0x8292 + /// + GetTextureImageType = ((int)0x8292), + /// + /// Original was GL_MIPMAP = 0x8293 + /// + Mipmap = ((int)0x8293), + /// + /// Original was GL_AUTO_GENERATE_MIPMAP = 0x8295 + /// + AutoGenerateMipmap = ((int)0x8295), + /// + /// Original was GL_COLOR_ENCODING = 0x8296 + /// + ColorEncoding = ((int)0x8296), + /// + /// Original was GL_SRGB_READ = 0x8297 + /// + SrgbRead = ((int)0x8297), + /// + /// Original was GL_SRGB_WRITE = 0x8298 + /// + SrgbWrite = ((int)0x8298), + /// + /// Original was GL_FILTER = 0x829A + /// + Filter = ((int)0x829A), + /// + /// Original was GL_VERTEX_TEXTURE = 0x829B + /// + VertexTexture = ((int)0x829B), + /// + /// Original was GL_TESS_CONTROL_TEXTURE = 0x829C + /// + TessControlTexture = ((int)0x829C), + /// + /// Original was GL_TESS_EVALUATION_TEXTURE = 0x829D + /// + TessEvaluationTexture = ((int)0x829D), + /// + /// Original was GL_GEOMETRY_TEXTURE = 0x829E + /// + GeometryTexture = ((int)0x829E), + /// + /// Original was GL_FRAGMENT_TEXTURE = 0x829F + /// + FragmentTexture = ((int)0x829F), + /// + /// Original was GL_COMPUTE_TEXTURE = 0x82A0 + /// + ComputeTexture = ((int)0x82A0), + /// + /// Original was GL_TEXTURE_SHADOW = 0x82A1 + /// + TextureShadow = ((int)0x82A1), + /// + /// Original was GL_TEXTURE_GATHER = 0x82A2 + /// + TextureGather = ((int)0x82A2), + /// + /// Original was GL_TEXTURE_GATHER_SHADOW = 0x82A3 + /// + TextureGatherShadow = ((int)0x82A3), + /// + /// Original was GL_SHADER_IMAGE_LOAD = 0x82A4 + /// + ShaderImageLoad = ((int)0x82A4), + /// + /// Original was GL_SHADER_IMAGE_STORE = 0x82A5 + /// + ShaderImageStore = ((int)0x82A5), + /// + /// Original was GL_SHADER_IMAGE_ATOMIC = 0x82A6 + /// + ShaderImageAtomic = ((int)0x82A6), + /// + /// Original was GL_IMAGE_TEXEL_SIZE = 0x82A7 + /// + ImageTexelSize = ((int)0x82A7), + /// + /// Original was GL_IMAGE_COMPATIBILITY_CLASS = 0x82A8 + /// + ImageCompatibilityClass = ((int)0x82A8), + /// + /// Original was GL_IMAGE_PIXEL_FORMAT = 0x82A9 + /// + ImagePixelFormat = ((int)0x82A9), + /// + /// Original was GL_IMAGE_PIXEL_TYPE = 0x82AA + /// + ImagePixelType = ((int)0x82AA), + /// + /// Original was GL_SIMULTANEOUS_TEXTURE_AND_DEPTH_TEST = 0x82AC + /// + SimultaneousTextureAndDepthTest = ((int)0x82AC), + /// + /// Original was GL_SIMULTANEOUS_TEXTURE_AND_STENCIL_TEST = 0x82AD + /// + SimultaneousTextureAndStencilTest = ((int)0x82AD), + /// + /// Original was GL_SIMULTANEOUS_TEXTURE_AND_DEPTH_WRITE = 0x82AE + /// + SimultaneousTextureAndDepthWrite = ((int)0x82AE), + /// + /// Original was GL_SIMULTANEOUS_TEXTURE_AND_STENCIL_WRITE = 0x82AF + /// + SimultaneousTextureAndStencilWrite = ((int)0x82AF), + /// + /// Original was GL_TEXTURE_COMPRESSED_BLOCK_WIDTH = 0x82B1 + /// + TextureCompressedBlockWidth = ((int)0x82B1), + /// + /// Original was GL_TEXTURE_COMPRESSED_BLOCK_HEIGHT = 0x82B2 + /// + TextureCompressedBlockHeight = ((int)0x82B2), + /// + /// Original was GL_TEXTURE_COMPRESSED_BLOCK_SIZE = 0x82B3 + /// + TextureCompressedBlockSize = ((int)0x82B3), + /// + /// Original was GL_CLEAR_BUFFER = 0x82B4 + /// + ClearBuffer = ((int)0x82B4), + /// + /// Original was GL_TEXTURE_VIEW = 0x82B5 + /// + TextureView = ((int)0x82B5), + /// + /// Original was GL_VIEW_COMPATIBILITY_CLASS = 0x82B6 + /// + ViewCompatibilityClass = ((int)0x82B6), + /// + /// Original was GL_TEXTURE_COMPRESSED = 0x86A1 + /// + TextureCompressed = ((int)0x86A1), + /// + /// Original was GL_IMAGE_FORMAT_COMPATIBILITY_TYPE = 0x90C7 + /// + ImageFormatCompatibilityType = ((int)0x90C7), + /// + /// Original was GL_CLEAR_TEXTURE = 0x9365 + /// + ClearTexture = ((int)0x9365), + /// + /// Original was GL_NUM_SAMPLE_COUNTS = 0x9380 + /// + NumSampleCounts = ((int)0x9380), + } + /// /// Not used directly. /// @@ -26069,6 +29665,21 @@ namespace OpenTK.Graphics.ES31 ContextFlagNoErrorBitKhr = ((int)0x00000008), } + /// + /// Not used directly. + /// + public enum KhrParallelShaderCompile : int + { + /// + /// Original was GL_MAX_SHADER_COMPILER_THREADS_KHR = 0x91B0 + /// + MaxShaderCompilerThreadsKhr = ((int)0x91B0), + /// + /// Original was GL_COMPLETION_STATUS_KHR = 0x91B1 + /// + CompletionStatusKhr = ((int)0x91B1), + } + /// /// Not used directly. /// @@ -26739,7 +30350,7 @@ namespace OpenTK.Graphics.ES31 } /// - /// Not used directly. + /// Used in GL.Ext.BufferStorage, GL.Ext.BufferStorageExternal and 1 other function /// [Flags] public enum MapBufferUsageMask : int @@ -26797,17 +30408,64 @@ namespace OpenTK.Graphics.ES31 /// MapPersistentBit = ((int)0x0040), /// + /// Original was GL_MAP_PERSISTENT_BIT_EXT = 0x0040 + /// + MapPersistentBitExt = ((int)0x0040), + /// /// Original was GL_MAP_COHERENT_BIT = 0x0080 /// MapCoherentBit = ((int)0x0080), /// + /// Original was GL_MAP_COHERENT_BIT_EXT = 0x0080 + /// + MapCoherentBitExt = ((int)0x0080), + /// /// Original was GL_DYNAMIC_STORAGE_BIT = 0x0100 /// DynamicStorageBit = ((int)0x0100), /// + /// Original was GL_DYNAMIC_STORAGE_BIT_EXT = 0x0100 + /// + DynamicStorageBitExt = ((int)0x0100), + /// /// Original was GL_CLIENT_STORAGE_BIT = 0x0200 /// ClientStorageBit = ((int)0x0200), + /// + /// Original was GL_CLIENT_STORAGE_BIT_EXT = 0x0200 + /// + ClientStorageBitExt = ((int)0x0200), + /// + /// Original was GL_SPARSE_STORAGE_BIT_ARB = 0x0400 + /// + SparseStorageBitArb = ((int)0x0400), + /// + /// Original was GL_LGPU_SEPARATE_STORAGE_BIT_NVX = 0x0800 + /// + LgpuSeparateStorageBitNvx = ((int)0x0800), + /// + /// Original was GL_PER_GPU_STORAGE_BIT_NV = 0x0800 + /// + PerGpuStorageBitNv = ((int)0x0800), + } + + /// + /// Not used directly. + /// + public enum MapQuery : int + { + /// + /// Original was GL_COEFF = 0x0A00 + /// + Coeff = ((int)0x0A00), + /// + /// Original was GL_ORDER = 0x0A01 + /// + Order = ((int)0x0A01), + /// + /// Original was GL_DOMAIN = 0x0A02 + /// + Domain = ((int)0x0A02), } /// @@ -26971,7 +30629,7 @@ namespace OpenTK.Graphics.ES31 } /// - /// Not used directly. + /// Used in GL.Ext.MatrixFrustum, GL.Ext.MatrixLoad and 10 other functions /// public enum MatrixMode : int { @@ -27053,7 +30711,7 @@ namespace OpenTK.Graphics.ES31 } /// - /// Not used directly. + /// Used in GL.MemoryBarrier, GL.MemoryBarrierByRegion /// [Flags] public enum MemoryBarrierMask : int @@ -27167,6 +30825,10 @@ namespace OpenTK.Graphics.ES31 /// ClientMappedBufferBarrierBit = ((int)0x00004000), /// + /// Original was GL_CLIENT_MAPPED_BUFFER_BARRIER_BIT_EXT = 0x00004000 + /// + ClientMappedBufferBarrierBitExt = ((int)0x00004000), + /// /// Original was GL_QUERY_BUFFER_BARRIER_BIT = 0x00008000 /// QueryBufferBarrierBit = ((int)0x00008000), @@ -27238,6 +30900,17 @@ namespace OpenTK.Graphics.ES31 ProtectedMemoryObjectExt = ((int)0x959B), } + /// + /// Not used directly. + /// + public enum MesaProgramBinaryFormats : int + { + /// + /// Original was GL_PROGRAM_BINARY_FORMAT_MESA = 0x875F + /// + ProgramBinaryFormatMesa = ((int)0x875F), + } + /// /// Not used directly. /// @@ -27565,6 +31238,25 @@ namespace OpenTK.Graphics.ES31 FactorMaxAmd = ((int)0x901D), } + /// + /// Not used directly. + /// + public enum NvClipSpaceWScaling : int + { + /// + /// Original was GL_VIEWPORT_POSITION_W_SCALE_NV = 0x937C + /// + ViewportPositionWScaleNv = ((int)0x937C), + /// + /// Original was GL_VIEWPORT_POSITION_W_SCALE_X_COEFF_NV = 0x937D + /// + ViewportPositionWScaleXCoeffNv = ((int)0x937D), + /// + /// Original was GL_VIEWPORT_POSITION_W_SCALE_Y_COEFF_NV = 0x937E + /// + ViewportPositionWScaleYCoeffNv = ((int)0x937E), + } + /// /// Not used directly. /// @@ -27611,6 +31303,17 @@ namespace OpenTK.Graphics.ES31 MaxSubpixelPrecisionBiasBitsNv = ((int)0x9349), } + /// + /// Not used directly. + /// + public enum NvConservativeRasterPreSnap : int + { + /// + /// Original was GL_CONSERVATIVE_RASTER_MODE_PRE_SNAP_NV = 0x9550 + /// + ConservativeRasterModePreSnapNv = ((int)0x9550), + } + /// /// Not used directly. /// @@ -29209,6 +32912,13 @@ namespace OpenTK.Graphics.ES31 CompressedSrgbAlphaS3tcDxt5Nv = ((int)0x8C4F), } + /// + /// Not used directly. + /// + public enum NvStereoViewRendering : int + { + } + /// /// Not used directly. /// @@ -29346,6 +33056,57 @@ namespace OpenTK.Graphics.ES31 { } + /// + /// Used in GL.ObjectLabel, GL.Khr.ObjectLabel + /// + public enum ObjectIdentifier : int + { + /// + /// Original was GL_TEXTURE = 0x1702 + /// + Texture = ((int)0x1702), + /// + /// Original was GL_VERTEX_ARRAY = 0x8074 + /// + VertexArray = ((int)0x8074), + /// + /// Original was GL_BUFFER = 0x82E0 + /// + Buffer = ((int)0x82E0), + /// + /// Original was GL_SHADER = 0x82E1 + /// + Shader = ((int)0x82E1), + /// + /// Original was GL_PROGRAM = 0x82E2 + /// + Program = ((int)0x82E2), + /// + /// Original was GL_QUERY = 0x82E3 + /// + Query = ((int)0x82E3), + /// + /// Original was GL_PROGRAM_PIPELINE = 0x82E4 + /// + ProgramPipeline = ((int)0x82E4), + /// + /// Original was GL_SAMPLER = 0x82E6 + /// + Sampler = ((int)0x82E6), + /// + /// Original was GL_FRAMEBUFFER = 0x8D40 + /// + Framebuffer = ((int)0x8D40), + /// + /// Original was GL_RENDERBUFFER = 0x8D41 + /// + Renderbuffer = ((int)0x8D41), + /// + /// Original was GL_TRANSFORM_FEEDBACK = 0x8E22 + /// + TransformFeedback = ((int)0x8E22), + } + /// /// Not used directly. /// @@ -30910,6 +34671,500 @@ namespace OpenTK.Graphics.ES31 { } + /// + /// Used in GL.Ext.PatchParameter, GL.Oes.PatchParameter + /// + public enum PatchParameterName : int + { + /// + /// Original was GL_PATCH_VERTICES = 0x8E72 + /// + PatchVertices = ((int)0x8E72), + /// + /// Original was GL_PATCH_DEFAULT_INNER_LEVEL = 0x8E73 + /// + PatchDefaultInnerLevel = ((int)0x8E73), + /// + /// Original was GL_PATCH_DEFAULT_OUTER_LEVEL = 0x8E74 + /// + PatchDefaultOuterLevel = ((int)0x8E74), + } + + /// + /// Used in GL.NV.GetPathColorGen, GL.NV.PathColorGen and 1 other function + /// + public enum PathColor : int + { + /// + /// Original was GL_PRIMARY_COLOR_NV = 0x852C + /// + PrimaryColorNv = ((int)0x852C), + /// + /// Original was GL_SECONDARY_COLOR_NV = 0x852D + /// + SecondaryColorNv = ((int)0x852D), + /// + /// Original was GL_PRIMARY_COLOR = 0x8577 + /// + PrimaryColor = ((int)0x8577), + } + + /// + /// Used in GL.NV.CoverFillPathInstanced, GL.NV.CoverFillPath and 2 other functions + /// + public enum PathCoverMode : int + { + /// + /// Original was GL_PATH_FILL_COVER_MODE_NV = 0x9082 + /// + PathFillCoverModeNv = ((int)0x9082), + /// + /// Original was GL_CONVEX_HULL_NV = 0x908B + /// + ConvexHullNv = ((int)0x908B), + /// + /// Original was GL_BOUNDING_BOX_NV = 0x908D + /// + BoundingBoxNv = ((int)0x908D), + /// + /// Original was GL_BOUNDING_BOX_OF_BOUNDING_BOXES_NV = 0x909C + /// + BoundingBoxOfBoundingBoxesNv = ((int)0x909C), + } + + /// + /// Used in GL.NV.CoverFillPathInstanced, GL.NV.CoverStrokePathInstanced and 5 other functions + /// + public enum PathElementType : int + { + /// + /// Original was GL_UTF8_NV = 0x909A + /// + Utf8Nv = ((int)0x909A), + /// + /// Original was GL_UTF16_NV = 0x909B + /// + Utf16Nv = ((int)0x909B), + } + + /// + /// Used in GL.NV.StencilFillPathInstanced, GL.NV.StencilFillPath + /// + public enum PathFillMode : int + { + /// + /// Original was GL_INVERT = 0x150A + /// + Invert = ((int)0x150A), + /// + /// Original was GL_PATH_FILL_MODE_NV = 0x9080 + /// + PathFillModeNv = ((int)0x9080), + /// + /// Original was GL_COUNT_UP_NV = 0x9088 + /// + CountUpNv = ((int)0x9088), + /// + /// Original was GL_COUNT_DOWN_NV = 0x9089 + /// + CountDownNv = ((int)0x9089), + } + + /// + /// Used in GL.NV.PathGlyphIndexArray, GL.NV.PathGlyphIndexRange and 2 other functions + /// + public enum PathFontStyle : int + { + /// + /// Original was GL_NONE = 0 + /// + None = ((int)0), + /// + /// Original was GL_BOLD_BIT_NV = 0x01 + /// + BoldBitNv = ((int)0x01), + /// + /// Original was GL_ITALIC_BIT_NV = 0x02 + /// + ItalicBitNv = ((int)0x02), + } + + /// + /// Used in GL.NV.PathGlyphRange, GL.NV.PathGlyph + /// + public enum PathFontTarget : int + { + /// + /// Original was GL_STANDARD_FONT_NAME_NV = 0x9072 + /// + StandardFontNameNv = ((int)0x9072), + /// + /// Original was GL_SYSTEM_FONT_NAME_NV = 0x9073 + /// + SystemFontNameNv = ((int)0x9073), + /// + /// Original was GL_FILE_NAME_NV = 0x9074 + /// + FileNameNv = ((int)0x9074), + } + + /// + /// Used in GL.NV.GetPathColorGen, GL.NV.GetPathTexGen and 3 other functions + /// + public enum PathGenMode : int + { + /// + /// Original was GL_NONE = 0 + /// + None = ((int)0), + /// + /// Original was GL_EYE_LINEAR = 0x2400 + /// + EyeLinear = ((int)0x2400), + /// + /// Original was GL_OBJECT_LINEAR = 0x2401 + /// + ObjectLinear = ((int)0x2401), + /// + /// Original was GL_CONSTANT = 0x8576 + /// + Constant = ((int)0x8576), + /// + /// Original was GL_PATH_OBJECT_BOUNDING_BOX_NV = 0x908A + /// + PathObjectBoundingBoxNv = ((int)0x908A), + } + + /// + /// Used in GL.NV.PathGlyphRange, GL.NV.PathGlyph + /// + public enum PathHandleMissingGlyphs : int + { + /// + /// Original was GL_SKIP_MISSING_GLYPH_NV = 0x90A9 + /// + SkipMissingGlyphNv = ((int)0x90A9), + /// + /// Original was GL_USE_MISSING_GLYPH_NV = 0x90AA + /// + UseMissingGlyphNv = ((int)0x90AA), + } + + /// + /// Used in GL.NV.GetPathSpacing + /// + public enum PathListMode : int + { + /// + /// Original was GL_ACCUM_ADJACENT_PAIRS_NV = 0x90AD + /// + AccumAdjacentPairsNv = ((int)0x90AD), + /// + /// Original was GL_ADJACENT_PAIRS_NV = 0x90AE + /// + AdjacentPairsNv = ((int)0x90AE), + /// + /// Original was GL_FIRST_TO_REST_NV = 0x90AF + /// + FirstToRestNv = ((int)0x90AF), + } + + /// + /// Used in GL.NV.GetPathMetricRange, GL.NV.GetPathMetric + /// + [Flags] + public enum PathMetricMask : int + { + /// + /// Original was GL_FONT_X_MIN_BOUNDS_BIT_NV = 0x00010000 + /// + FontXMinBoundsBitNv = ((int)0x00010000), + /// + /// Original was GL_FONT_Y_MIN_BOUNDS_BIT_NV = 0x00020000 + /// + FontYMinBoundsBitNv = ((int)0x00020000), + /// + /// Original was GL_FONT_X_MAX_BOUNDS_BIT_NV = 0x00040000 + /// + FontXMaxBoundsBitNv = ((int)0x00040000), + /// + /// Original was GL_FONT_Y_MAX_BOUNDS_BIT_NV = 0x00080000 + /// + FontYMaxBoundsBitNv = ((int)0x00080000), + /// + /// Original was GL_FONT_UNITS_PER_EM_BIT_NV = 0x00100000 + /// + FontUnitsPerEmBitNv = ((int)0x00100000), + /// + /// Original was GL_FONT_ASCENDER_BIT_NV = 0x00200000 + /// + FontAscenderBitNv = ((int)0x00200000), + /// + /// Original was GL_FONT_DESCENDER_BIT_NV = 0x00400000 + /// + FontDescenderBitNv = ((int)0x00400000), + /// + /// Original was GL_FONT_HEIGHT_BIT_NV = 0x00800000 + /// + FontHeightBitNv = ((int)0x00800000), + /// + /// Original was GL_GLYPH_WIDTH_BIT_NV = 0x01 + /// + GlyphWidthBitNv = ((int)0x01), + /// + /// Original was GL_FONT_MAX_ADVANCE_WIDTH_BIT_NV = 0x01000000 + /// + FontMaxAdvanceWidthBitNv = ((int)0x01000000), + /// + /// Original was GL_GLYPH_HEIGHT_BIT_NV = 0x02 + /// + GlyphHeightBitNv = ((int)0x02), + /// + /// Original was GL_FONT_MAX_ADVANCE_HEIGHT_BIT_NV = 0x02000000 + /// + FontMaxAdvanceHeightBitNv = ((int)0x02000000), + /// + /// Original was GL_GLYPH_HORIZONTAL_BEARING_X_BIT_NV = 0x04 + /// + GlyphHorizontalBearingXBitNv = ((int)0x04), + /// + /// Original was GL_FONT_UNDERLINE_POSITION_BIT_NV = 0x04000000 + /// + FontUnderlinePositionBitNv = ((int)0x04000000), + /// + /// Original was GL_GLYPH_HORIZONTAL_BEARING_Y_BIT_NV = 0x08 + /// + GlyphHorizontalBearingYBitNv = ((int)0x08), + /// + /// Original was GL_FONT_UNDERLINE_THICKNESS_BIT_NV = 0x08000000 + /// + FontUnderlineThicknessBitNv = ((int)0x08000000), + /// + /// Original was GL_GLYPH_HORIZONTAL_BEARING_ADVANCE_BIT_NV = 0x10 + /// + GlyphHorizontalBearingAdvanceBitNv = ((int)0x10), + /// + /// Original was GL_GLYPH_HAS_KERNING_BIT_NV = 0x100 + /// + GlyphHasKerningBitNv = ((int)0x100), + /// + /// Original was GL_FONT_HAS_KERNING_BIT_NV = 0x10000000 + /// + FontHasKerningBitNv = ((int)0x10000000), + /// + /// Original was GL_GLYPH_VERTICAL_BEARING_X_BIT_NV = 0x20 + /// + GlyphVerticalBearingXBitNv = ((int)0x20), + /// + /// Original was GL_FONT_NUM_GLYPH_INDICES_BIT_NV = 0x20000000 + /// + FontNumGlyphIndicesBitNv = ((int)0x20000000), + /// + /// Original was GL_GLYPH_VERTICAL_BEARING_Y_BIT_NV = 0x40 + /// + GlyphVerticalBearingYBitNv = ((int)0x40), + /// + /// Original was GL_GLYPH_VERTICAL_BEARING_ADVANCE_BIT_NV = 0x80 + /// + GlyphVerticalBearingAdvanceBitNv = ((int)0x80), + } + + /// + /// Used in GL.NV.GetPathParameter, GL.NV.PathParameter + /// + public enum PathParameter : int + { + /// + /// Original was GL_PATH_STROKE_WIDTH_NV = 0x9075 + /// + PathStrokeWidthNv = ((int)0x9075), + /// + /// Original was GL_PATH_END_CAPS_NV = 0x9076 + /// + PathEndCapsNv = ((int)0x9076), + /// + /// Original was GL_PATH_INITIAL_END_CAP_NV = 0x9077 + /// + PathInitialEndCapNv = ((int)0x9077), + /// + /// Original was GL_PATH_TERMINAL_END_CAP_NV = 0x9078 + /// + PathTerminalEndCapNv = ((int)0x9078), + /// + /// Original was GL_PATH_JOIN_STYLE_NV = 0x9079 + /// + PathJoinStyleNv = ((int)0x9079), + /// + /// Original was GL_PATH_MITER_LIMIT_NV = 0x907A + /// + PathMiterLimitNv = ((int)0x907A), + /// + /// Original was GL_PATH_DASH_CAPS_NV = 0x907B + /// + PathDashCapsNv = ((int)0x907B), + /// + /// Original was GL_PATH_INITIAL_DASH_CAP_NV = 0x907C + /// + PathInitialDashCapNv = ((int)0x907C), + /// + /// Original was GL_PATH_TERMINAL_DASH_CAP_NV = 0x907D + /// + PathTerminalDashCapNv = ((int)0x907D), + /// + /// Original was GL_PATH_DASH_OFFSET_NV = 0x907E + /// + PathDashOffsetNv = ((int)0x907E), + /// + /// Original was GL_PATH_CLIENT_LENGTH_NV = 0x907F + /// + PathClientLengthNv = ((int)0x907F), + /// + /// Original was GL_PATH_FILL_MODE_NV = 0x9080 + /// + PathFillModeNv = ((int)0x9080), + /// + /// Original was GL_PATH_FILL_MASK_NV = 0x9081 + /// + PathFillMaskNv = ((int)0x9081), + /// + /// Original was GL_PATH_FILL_COVER_MODE_NV = 0x9082 + /// + PathFillCoverModeNv = ((int)0x9082), + /// + /// Original was GL_PATH_STROKE_COVER_MODE_NV = 0x9083 + /// + PathStrokeCoverModeNv = ((int)0x9083), + /// + /// Original was GL_PATH_STROKE_MASK_NV = 0x9084 + /// + PathStrokeMaskNv = ((int)0x9084), + /// + /// Original was GL_PATH_OBJECT_BOUNDING_BOX_NV = 0x908A + /// + PathObjectBoundingBoxNv = ((int)0x908A), + /// + /// Original was GL_PATH_COMMAND_COUNT_NV = 0x909D + /// + PathCommandCountNv = ((int)0x909D), + /// + /// Original was GL_PATH_COORD_COUNT_NV = 0x909E + /// + PathCoordCountNv = ((int)0x909E), + /// + /// Original was GL_PATH_DASH_ARRAY_COUNT_NV = 0x909F + /// + PathDashArrayCountNv = ((int)0x909F), + /// + /// Original was GL_PATH_COMPUTED_LENGTH_NV = 0x90A0 + /// + PathComputedLengthNv = ((int)0x90A0), + /// + /// Original was GL_PATH_FILL_BOUNDING_BOX_NV = 0x90A1 + /// + PathFillBoundingBoxNv = ((int)0x90A1), + /// + /// Original was GL_PATH_STROKE_BOUNDING_BOX_NV = 0x90A2 + /// + PathStrokeBoundingBoxNv = ((int)0x90A2), + /// + /// Original was GL_PATH_DASH_OFFSET_RESET_NV = 0x90B4 + /// + PathDashOffsetResetNv = ((int)0x90B4), + } + + /// + /// Used in GL.NV.PathString + /// + public enum PathStringFormat : int + { + /// + /// Original was GL_PATH_FORMAT_SVG_NV = 0x9070 + /// + PathFormatSvgNv = ((int)0x9070), + /// + /// Original was GL_PATH_FORMAT_PS_NV = 0x9071 + /// + PathFormatPsNv = ((int)0x9071), + } + + /// + /// Used in GL.NV.CoverFillPathInstanced, GL.NV.CoverStrokePathInstanced and 4 other functions + /// + public enum PathTransformType : int + { + /// + /// Original was GL_NONE = 0 + /// + None = ((int)0), + /// + /// Original was GL_TRANSLATE_X_NV = 0x908E + /// + TranslateXNv = ((int)0x908E), + /// + /// Original was GL_TRANSLATE_Y_NV = 0x908F + /// + TranslateYNv = ((int)0x908F), + /// + /// Original was GL_TRANSLATE_2D_NV = 0x9090 + /// + Translate2DNv = ((int)0x9090), + /// + /// Original was GL_TRANSLATE_3D_NV = 0x9091 + /// + Translate3DNv = ((int)0x9091), + /// + /// Original was GL_AFFINE_2D_NV = 0x9092 + /// + Affine2DNv = ((int)0x9092), + /// + /// Original was GL_AFFINE_3D_NV = 0x9094 + /// + Affine3DNv = ((int)0x9094), + /// + /// Original was GL_TRANSPOSE_AFFINE_2D_NV = 0x9096 + /// + TransposeAffine2DNv = ((int)0x9096), + /// + /// Original was GL_TRANSPOSE_AFFINE_3D_NV = 0x9098 + /// + TransposeAffine3DNv = ((int)0x9098), + } + + /// + /// Used in GL.GetProgramPipeline, GL.Ext.GetProgramPipeline + /// + public enum PipelineParameterName : int + { + /// + /// Original was GL_ACTIVE_PROGRAM = 0x8259 + /// + ActiveProgram = ((int)0x8259), + /// + /// Original was GL_FRAGMENT_SHADER = 0x8B30 + /// + FragmentShader = ((int)0x8B30), + /// + /// Original was GL_VERTEX_SHADER = 0x8B31 + /// + VertexShader = ((int)0x8B31), + /// + /// Original was GL_INFO_LOG_LENGTH = 0x8B84 + /// + InfoLogLength = ((int)0x8B84), + /// + /// Original was GL_GEOMETRY_SHADER = 0x8DD9 + /// + GeometryShader = ((int)0x8DD9), + /// + /// Original was GL_TESS_EVALUATION_SHADER = 0x8E87 + /// + TessEvaluationShader = ((int)0x8E87), + /// + /// Original was GL_TESS_CONTROL_SHADER = 0x8E88 + /// + TessControlShader = ((int)0x8E88), + } + /// /// Not used directly. /// @@ -30942,7 +35197,7 @@ namespace OpenTK.Graphics.ES31 } /// - /// Used in GL.CompressedTexSubImage2D, GL.CompressedTexSubImage3D and 6 other functions + /// Used in GL.CompressedTexSubImage2D, GL.CompressedTexSubImage3D and 15 other functions /// public enum PixelFormat : int { @@ -31053,7 +35308,7 @@ namespace OpenTK.Graphics.ES31 } /// - /// Used in GL.CompressedTexImage2D, GL.CompressedTexImage3D and 1 other function + /// Not used directly. /// public enum PixelInternalFormat : int { @@ -31577,7 +35832,7 @@ namespace OpenTK.Graphics.ES31 } /// - /// Used in GL.ReadPixels, GL.TexImage2D and 4 other functions + /// Used in GL.ReadnPixels, GL.ReadPixels and 11 other functions /// public enum PixelType : int { @@ -31774,7 +36029,38 @@ namespace OpenTK.Graphics.ES31 } /// - /// Used in GL.Angle.DrawArraysInstanced, GL.Angle.DrawElementsInstanced and 27 other functions + /// Used in GL.GetShaderPrecisionFormat + /// + public enum PrecisionType : int + { + /// + /// Original was GL_LOW_FLOAT = 0x8DF0 + /// + LowFloat = ((int)0x8DF0), + /// + /// Original was GL_MEDIUM_FLOAT = 0x8DF1 + /// + MediumFloat = ((int)0x8DF1), + /// + /// Original was GL_HIGH_FLOAT = 0x8DF2 + /// + HighFloat = ((int)0x8DF2), + /// + /// Original was GL_LOW_INT = 0x8DF3 + /// + LowInt = ((int)0x8DF3), + /// + /// Original was GL_MEDIUM_INT = 0x8DF4 + /// + MediumInt = ((int)0x8DF4), + /// + /// Original was GL_HIGH_INT = 0x8DF5 + /// + HighInt = ((int)0x8DF5), + } + + /// + /// Used in GL.Angle.DrawArraysInstanced, GL.Angle.DrawElementsInstanced and 28 other functions /// public enum PrimitiveType : int { @@ -31881,10 +36167,14 @@ namespace OpenTK.Graphics.ES31 } /// - /// Not used directly. + /// Used in GL.GetProgramInterface, GL.GetProgramResourceIndex and 5 other functions /// public enum ProgramInterface : int { + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER = 0x8C8E + /// + TransformFeedbackBuffer = ((int)0x8C8E), /// /// Original was GL_ATOMIC_COUNTER_BUFFER = 0x92C0 /// @@ -31914,6 +36204,54 @@ namespace OpenTK.Graphics.ES31 /// ShaderStorageBlock = ((int)0x92E6), /// + /// Original was GL_VERTEX_SUBROUTINE = 0x92E8 + /// + VertexSubroutine = ((int)0x92E8), + /// + /// Original was GL_TESS_CONTROL_SUBROUTINE = 0x92E9 + /// + TessControlSubroutine = ((int)0x92E9), + /// + /// Original was GL_TESS_EVALUATION_SUBROUTINE = 0x92EA + /// + TessEvaluationSubroutine = ((int)0x92EA), + /// + /// Original was GL_GEOMETRY_SUBROUTINE = 0x92EB + /// + GeometrySubroutine = ((int)0x92EB), + /// + /// Original was GL_FRAGMENT_SUBROUTINE = 0x92EC + /// + FragmentSubroutine = ((int)0x92EC), + /// + /// Original was GL_COMPUTE_SUBROUTINE = 0x92ED + /// + ComputeSubroutine = ((int)0x92ED), + /// + /// Original was GL_VERTEX_SUBROUTINE_UNIFORM = 0x92EE + /// + VertexSubroutineUniform = ((int)0x92EE), + /// + /// Original was GL_TESS_CONTROL_SUBROUTINE_UNIFORM = 0x92EF + /// + TessControlSubroutineUniform = ((int)0x92EF), + /// + /// Original was GL_TESS_EVALUATION_SUBROUTINE_UNIFORM = 0x92F0 + /// + TessEvaluationSubroutineUniform = ((int)0x92F0), + /// + /// Original was GL_GEOMETRY_SUBROUTINE_UNIFORM = 0x92F1 + /// + GeometrySubroutineUniform = ((int)0x92F1), + /// + /// Original was GL_FRAGMENT_SUBROUTINE_UNIFORM = 0x92F2 + /// + FragmentSubroutineUniform = ((int)0x92F2), + /// + /// Original was GL_COMPUTE_SUBROUTINE_UNIFORM = 0x92F3 + /// + ComputeSubroutineUniform = ((int)0x92F3), + /// /// Original was GL_TRANSFORM_FEEDBACK_VARYING = 0x92F4 /// TransformFeedbackVarying = ((int)0x92F4), @@ -31938,6 +36276,29 @@ namespace OpenTK.Graphics.ES31 MaxNumActiveVariables = ((int)0x92F7), } + /// + /// Used in GL.GetProgramInterface + /// + public enum ProgramInterfacePName : int + { + /// + /// Original was GL_ACTIVE_RESOURCES = 0x92F5 + /// + ActiveResources = ((int)0x92F5), + /// + /// Original was GL_MAX_NAME_LENGTH = 0x92F6 + /// + MaxNameLength = ((int)0x92F6), + /// + /// Original was GL_MAX_NUM_ACTIVE_VARIABLES = 0x92F7 + /// + MaxNumActiveVariables = ((int)0x92F7), + /// + /// Original was GL_MAX_NUM_COMPATIBLE_SUBROUTINES = 0x92F8 + /// + MaxNumCompatibleSubroutines = ((int)0x92F8), + } + /// /// Not used directly. /// @@ -32056,6 +36417,21 @@ namespace OpenTK.Graphics.ES31 TransformFeedbackVaryings = ((int)0x8C83), } + /// + /// Used in GL.ProgramParameter, GL.Ext.ProgramParameter + /// + public enum ProgramParameterPName : int + { + /// + /// Original was GL_PROGRAM_BINARY_RETRIEVABLE_HINT = 0x8257 + /// + ProgramBinaryRetrievableHint = ((int)0x8257), + /// + /// Original was GL_PROGRAM_SEPARABLE = 0x8258 + /// + ProgramSeparable = ((int)0x8258), + } + /// /// Not used directly. /// @@ -32170,6 +36546,93 @@ namespace OpenTK.Graphics.ES31 Location = ((int)0x930E), } + /// + /// Used in GL.GetProgram + /// + public enum ProgramPropertyArb : int + { + /// + /// Original was GL_COMPUTE_WORK_GROUP_SIZE = 0x8267 + /// + ComputeWorkGroupSize = ((int)0x8267), + /// + /// Original was GL_PROGRAM_BINARY_LENGTH = 0x8741 + /// + ProgramBinaryLength = ((int)0x8741), + /// + /// Original was GL_GEOMETRY_VERTICES_OUT = 0x8916 + /// + GeometryVerticesOut = ((int)0x8916), + /// + /// Original was GL_GEOMETRY_INPUT_TYPE = 0x8917 + /// + GeometryInputType = ((int)0x8917), + /// + /// Original was GL_GEOMETRY_OUTPUT_TYPE = 0x8918 + /// + GeometryOutputType = ((int)0x8918), + /// + /// Original was GL_ACTIVE_UNIFORM_BLOCK_MAX_NAME_LENGTH = 0x8A35 + /// + ActiveUniformBlockMaxNameLength = ((int)0x8A35), + /// + /// Original was GL_ACTIVE_UNIFORM_BLOCKS = 0x8A36 + /// + ActiveUniformBlocks = ((int)0x8A36), + /// + /// Original was GL_DELETE_STATUS = 0x8B80 + /// + DeleteStatus = ((int)0x8B80), + /// + /// Original was GL_LINK_STATUS = 0x8B82 + /// + LinkStatus = ((int)0x8B82), + /// + /// Original was GL_VALIDATE_STATUS = 0x8B83 + /// + ValidateStatus = ((int)0x8B83), + /// + /// Original was GL_INFO_LOG_LENGTH = 0x8B84 + /// + InfoLogLength = ((int)0x8B84), + /// + /// Original was GL_ATTACHED_SHADERS = 0x8B85 + /// + AttachedShaders = ((int)0x8B85), + /// + /// Original was GL_ACTIVE_UNIFORMS = 0x8B86 + /// + ActiveUniforms = ((int)0x8B86), + /// + /// Original was GL_ACTIVE_UNIFORM_MAX_LENGTH = 0x8B87 + /// + ActiveUniformMaxLength = ((int)0x8B87), + /// + /// Original was GL_ACTIVE_ATTRIBUTES = 0x8B89 + /// + ActiveAttributes = ((int)0x8B89), + /// + /// Original was GL_ACTIVE_ATTRIBUTE_MAX_LENGTH = 0x8B8A + /// + ActiveAttributeMaxLength = ((int)0x8B8A), + /// + /// Original was GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH = 0x8C76 + /// + TransformFeedbackVaryingMaxLength = ((int)0x8C76), + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER_MODE = 0x8C7F + /// + TransformFeedbackBufferMode = ((int)0x8C7F), + /// + /// Original was GL_TRANSFORM_FEEDBACK_VARYINGS = 0x8C83 + /// + TransformFeedbackVaryings = ((int)0x8C83), + /// + /// Original was GL_ACTIVE_ATOMIC_COUNTER_BUFFERS = 0x92D9 + /// + ActiveAtomicCounterBuffers = ((int)0x92D9), + } + /// /// Not used directly. /// @@ -32198,6 +36661,33 @@ namespace OpenTK.Graphics.ES31 AllShaderBits = unchecked((int)0xFFFFFFFF), } + /// + /// Not used directly. + /// + public enum ProgramStagePName : int + { + /// + /// Original was GL_ACTIVE_SUBROUTINES = 0x8DE5 + /// + ActiveSubroutines = ((int)0x8DE5), + /// + /// Original was GL_ACTIVE_SUBROUTINE_UNIFORMS = 0x8DE6 + /// + ActiveSubroutineUniforms = ((int)0x8DE6), + /// + /// Original was GL_ACTIVE_SUBROUTINE_UNIFORM_LOCATIONS = 0x8E47 + /// + ActiveSubroutineUniformLocations = ((int)0x8E47), + /// + /// Original was GL_ACTIVE_SUBROUTINE_MAX_LENGTH = 0x8E48 + /// + ActiveSubroutineMaxLength = ((int)0x8E48), + /// + /// Original was GL_ACTIVE_SUBROUTINE_UNIFORM_MAX_LENGTH = 0x8E49 + /// + ActiveSubroutineUniformMaxLength = ((int)0x8E49), + } + /// /// Not used directly. /// @@ -32342,6 +36832,41 @@ namespace OpenTK.Graphics.ES31 FramebufferFetchNoncoherentQcom = ((int)0x96A2), } + /// + /// Not used directly. + /// + public enum QcomTextureFoveated : int + { + /// + /// Original was GL_FOVEATION_ENABLE_BIT_QCOM = 0x00000001 + /// + FoveationEnableBitQcom = ((int)0x00000001), + /// + /// Original was GL_FOVEATION_SCALED_BIN_METHOD_BIT_QCOM = 0x00000002 + /// + FoveationScaledBinMethodBitQcom = ((int)0x00000002), + /// + /// Original was GL_TEXTURE_FOVEATED_FEATURE_BITS_QCOM = 0x8BFB + /// + TextureFoveatedFeatureBitsQcom = ((int)0x8BFB), + /// + /// Original was GL_TEXTURE_FOVEATED_MIN_PIXEL_DENSITY_QCOM = 0x8BFC + /// + TextureFoveatedMinPixelDensityQcom = ((int)0x8BFC), + /// + /// Original was GL_TEXTURE_FOVEATED_FEATURE_QUERY_QCOM = 0x8BFD + /// + TextureFoveatedFeatureQueryQcom = ((int)0x8BFD), + /// + /// Original was GL_TEXTURE_FOVEATED_NUM_FOCAL_POINTS_QUERY_QCOM = 0x8BFE + /// + TextureFoveatedNumFocalPointsQueryQcom = ((int)0x8BFE), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_FOVEATION_QCOM = 0x8BFF + /// + FramebufferIncompleteFoveationQcom = ((int)0x8BFF), + } + /// /// Not used directly. /// @@ -32500,15 +37025,61 @@ namespace OpenTK.Graphics.ES31 } /// - /// Not used directly. + /// Used in GL.GetQueryObject, GL.Ext.GetQueryObject + /// + public enum QueryObjectParameterName : int + { + /// + /// Original was GL_QUERY_TARGET = 0x82EA + /// + QueryTarget = ((int)0x82EA), + /// + /// Original was GL_QUERY_RESULT = 0x8866 + /// + QueryResult = ((int)0x8866), + /// + /// Original was GL_QUERY_RESULT_AVAILABLE = 0x8867 + /// + QueryResultAvailable = ((int)0x8867), + /// + /// Original was GL_QUERY_RESULT_NO_WAIT = 0x9194 + /// + QueryResultNoWait = ((int)0x9194), + } + + /// + /// Used in GL.GetQuery, GL.Ext.GetQuery + /// + public enum QueryParameterName : int + { + /// + /// Original was GL_QUERY_COUNTER_BITS = 0x8864 + /// + QueryCounterBits = ((int)0x8864), + /// + /// Original was GL_CURRENT_QUERY = 0x8865 + /// + CurrentQuery = ((int)0x8865), + } + + /// + /// Used in GL.BeginQuery, GL.EndQuery and 5 other functions /// public enum QueryTarget : int { + /// + /// Original was GL_TIME_ELAPSED = 0x88BF + /// + TimeElapsed = ((int)0x88BF), /// /// Original was GL_TIME_ELAPSED_EXT = 0x88BF /// TimeElapsedExt = ((int)0x88BF), /// + /// Original was GL_SAMPLES_PASSED = 0x8914 + /// + SamplesPassed = ((int)0x8914), + /// /// Original was GL_ANY_SAMPLES_PASSED = 0x8C2F /// AnySamplesPassed = ((int)0x8C2F), @@ -32517,6 +37088,10 @@ namespace OpenTK.Graphics.ES31 /// AnySamplesPassedExt = ((int)0x8C2F), /// + /// Original was GL_PRIMITIVES_GENERATED = 0x8C87 + /// + PrimitivesGenerated = ((int)0x8C87), + /// /// Original was GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN = 0x8C88 /// TransformFeedbackPrimitivesWritten = ((int)0x8C88), @@ -32531,7 +37106,7 @@ namespace OpenTK.Graphics.ES31 } /// - /// Used in GL.ReadBuffer + /// Used in GL.ReadBuffer, GL.Ext.ReadBufferIndexed /// public enum ReadBufferMode : int { @@ -32881,7 +37456,7 @@ namespace OpenTK.Graphics.ES31 } /// - /// Not used directly. + /// Used in GL.GetRenderbufferParameter /// public enum RenderbufferParameterName : int { @@ -32928,7 +37503,7 @@ namespace OpenTK.Graphics.ES31 } /// - /// Used in GL.BindRenderbuffer, GL.FramebufferRenderbuffer and 2 other functions + /// Used in GL.Angle.RenderbufferStorageMultisample, GL.Apple.RenderbufferStorageMultisample and 8 other functions /// public enum RenderbufferTarget : int { @@ -33044,10 +37619,14 @@ namespace OpenTK.Graphics.ES31 } /// - /// Not used directly. + /// Used in GL.GetSamplerParameter, GL.SamplerParameter and 4 other functions /// public enum SamplerParameterName : int { + /// + /// Original was GL_TEXTURE_BORDER_COLOR = 0x1004 + /// + TextureBorderColor = ((int)0x1004), /// /// Original was GL_TEXTURE_MAG_FILTER = 0x2800 /// @@ -33146,6 +37725,33 @@ namespace OpenTK.Graphics.ES31 ShaderSourceLength = ((int)0x8B88), } + /// + /// Used in GL.GetShader + /// + public enum ShaderParameterName : int + { + /// + /// Original was GL_SHADER_TYPE = 0x8B4F + /// + ShaderType = ((int)0x8B4F), + /// + /// Original was GL_DELETE_STATUS = 0x8B80 + /// + DeleteStatus = ((int)0x8B80), + /// + /// Original was GL_COMPILE_STATUS = 0x8B81 + /// + CompileStatus = ((int)0x8B81), + /// + /// Original was GL_INFO_LOG_LENGTH = 0x8B84 + /// + InfoLogLength = ((int)0x8B84), + /// + /// Original was GL_SHADER_SOURCE_LENGTH = 0x8B88 + /// + ShaderSourceLength = ((int)0x8B88), + } + /// /// Not used directly. /// @@ -33178,7 +37784,7 @@ namespace OpenTK.Graphics.ES31 } /// - /// Not used directly. + /// Used in GL.CreateShader, GL.CreateShaderProgram and 3 other functions /// public enum ShaderType : int { @@ -33187,10 +37793,34 @@ namespace OpenTK.Graphics.ES31 /// FragmentShader = ((int)0x8B30), /// + /// Original was GL_FRAGMENT_SHADER_ARB = 0x8B30 + /// + FragmentShaderArb = ((int)0x8B30), + /// /// Original was GL_VERTEX_SHADER = 0x8B31 /// VertexShader = ((int)0x8B31), /// + /// Original was GL_VERTEX_SHADER_ARB = 0x8B31 + /// + VertexShaderArb = ((int)0x8B31), + /// + /// Original was GL_GEOMETRY_SHADER = 0x8DD9 + /// + GeometryShader = ((int)0x8DD9), + /// + /// Original was GL_TESS_EVALUATION_SHADER = 0x8E87 + /// + TessEvaluationShader = ((int)0x8E87), + /// + /// Original was GL_TESS_CONTROL_SHADER = 0x8E88 + /// + TessControlShader = ((int)0x8E88), + /// + /// Original was GL_COMPUTE_SHADER = 0x91B9 + /// + ComputeShader = ((int)0x91B9), + /// /// Original was GL_GL_COMPUTE_SHADER = 0x91B9 /// GlComputeShader = ((int)0x91B9), @@ -33913,6 +38543,29 @@ namespace OpenTK.Graphics.ES31 /// /// Not used directly. /// + public enum SubroutineParameterName : int + { + /// + /// Original was GL_UNIFORM_SIZE = 0x8A38 + /// + UniformSize = ((int)0x8A38), + /// + /// Original was GL_UNIFORM_NAME_LENGTH = 0x8A39 + /// + UniformNameLength = ((int)0x8A39), + /// + /// Original was GL_NUM_COMPATIBLE_SUBROUTINES = 0x8E4A + /// + NumCompatibleSubroutines = ((int)0x8E4A), + /// + /// Original was GL_COMPATIBLE_SUBROUTINES = 0x8E4B + /// + CompatibleSubroutines = ((int)0x8E4B), + } + + /// + /// Used in GL.Apple.FenceSync, GL.FenceSync + /// public enum SyncCondition : int { /// @@ -33926,7 +38579,23 @@ namespace OpenTK.Graphics.ES31 } /// - /// Not used directly. + /// Used in GL.Apple.ClientWaitSync, GL.ClientWaitSync + /// + [Flags] + public enum SyncObjectMask : int + { + /// + /// Original was GL_SYNC_FLUSH_COMMANDS_BIT = 0x00000001 + /// + SyncFlushCommandsBit = ((int)0x00000001), + /// + /// Original was GL_SYNC_FLUSH_COMMANDS_BIT_APPLE = 0x00000001 + /// + SyncFlushCommandsBitApple = ((int)0x00000001), + } + + /// + /// Used in GL.Apple.GetSync, GL.GetSync /// public enum SyncParameterName : int { @@ -33964,6 +38633,29 @@ namespace OpenTK.Graphics.ES31 SyncFlagsApple = ((int)0x9115), } + /// + /// Not used directly. + /// + public enum SyncStatus : int + { + /// + /// Original was GL_ALREADY_SIGNALED = 0x911A + /// + AlreadySignaled = ((int)0x911A), + /// + /// Original was GL_TIMEOUT_EXPIRED = 0x911B + /// + TimeoutExpired = ((int)0x911B), + /// + /// Original was GL_CONDITION_SATISFIED = 0x911C + /// + ConditionSatisfied = ((int)0x911C), + /// + /// Original was GL_WAIT_FAILED = 0x911D + /// + WaitFailed = ((int)0x911D), + } + /// /// Not used directly. /// @@ -34007,7 +38699,7 @@ namespace OpenTK.Graphics.ES31 } /// - /// Used in GL.TexImage2D, GL.TexImage3D + /// Not used directly. /// public enum TextureComponentCount : int { @@ -34730,6 +39422,14 @@ namespace OpenTK.Graphics.ES31 /// public enum TextureLayout : int { + /// + /// Original was GL_LAYOUT_DEPTH_READ_ONLY_STENCIL_ATTACHMENT_EXT = 0x9530 + /// + LayoutDepthReadOnlyStencilAttachmentExt = ((int)0x9530), + /// + /// Original was GL_LAYOUT_DEPTH_ATTACHMENT_STENCIL_READ_ONLY_EXT = 0x9531 + /// + LayoutDepthAttachmentStencilReadOnlyExt = ((int)0x9531), /// /// Original was GL_LAYOUT_GENERAL_EXT = 0x958D /// @@ -34883,11 +39583,35 @@ namespace OpenTK.Graphics.ES31 /// public enum TextureParameterName : int { + /// + /// Original was GL_TEXTURE_WIDTH = 0x1000 + /// + TextureWidth = ((int)0x1000), + /// + /// Original was GL_TEXTURE_HEIGHT = 0x1001 + /// + TextureHeight = ((int)0x1001), + /// + /// Original was GL_TEXTURE_COMPONENTS = 0x1003 + /// + TextureComponents = ((int)0x1003), + /// + /// Original was GL_TEXTURE_INTERNAL_FORMAT = 0x1003 + /// + TextureInternalFormat = ((int)0x1003), /// /// Original was GL_TEXTURE_BORDER_COLOR = 0x1004 /// TextureBorderColor = ((int)0x1004), /// + /// Original was GL_TEXTURE_BORDER_COLOR_NV = 0x1004 + /// + TextureBorderColorNv = ((int)0x1004), + /// + /// Original was GL_TEXTURE_BORDER = 0x1005 + /// + TextureBorder = ((int)0x1005), + /// /// Original was GL_TEXTURE_MAG_FILTER = 0x2800 /// TextureMagFilter = ((int)0x2800), @@ -34904,6 +39628,30 @@ namespace OpenTK.Graphics.ES31 /// TextureWrapT = ((int)0x2803), /// + /// Original was GL_TEXTURE_RED_SIZE = 0x805C + /// + TextureRedSize = ((int)0x805C), + /// + /// Original was GL_TEXTURE_GREEN_SIZE = 0x805D + /// + TextureGreenSize = ((int)0x805D), + /// + /// Original was GL_TEXTURE_BLUE_SIZE = 0x805E + /// + TextureBlueSize = ((int)0x805E), + /// + /// Original was GL_TEXTURE_ALPHA_SIZE = 0x805F + /// + TextureAlphaSize = ((int)0x805F), + /// + /// Original was GL_TEXTURE_LUMINANCE_SIZE = 0x8060 + /// + TextureLuminanceSize = ((int)0x8060), + /// + /// Original was GL_TEXTURE_INTENSITY_SIZE = 0x8061 + /// + TextureIntensitySize = ((int)0x8061), + /// /// Original was GL_TEXTURE_PRIORITY = 0x8066 /// TexturePriority = ((int)0x8066), @@ -34912,6 +39660,14 @@ namespace OpenTK.Graphics.ES31 /// TexturePriorityExt = ((int)0x8066), /// + /// Original was GL_TEXTURE_RESIDENT = 0x8067 + /// + TextureResident = ((int)0x8067), + /// + /// Original was GL_TEXTURE_DEPTH_EXT = 0x8071 + /// + TextureDepthExt = ((int)0x8071), + /// /// Original was GL_TEXTURE_WRAP_R = 0x8072 /// TextureWrapR = ((int)0x8072), @@ -34932,6 +39688,14 @@ namespace OpenTK.Graphics.ES31 /// DetailTextureModeSgis = ((int)0x809B), /// + /// Original was GL_DETAIL_TEXTURE_FUNC_POINTS_SGIS = 0x809C + /// + DetailTextureFuncPointsSgis = ((int)0x809C), + /// + /// Original was GL_SHARPEN_TEXTURE_FUNC_POINTS_SGIS = 0x80B0 + /// + SharpenTextureFuncPointsSgis = ((int)0x80B0), + /// /// Original was GL_SHADOW_AMBIENT_SGIX = 0x80BF /// ShadowAmbientSgix = ((int)0x80BF), @@ -34944,6 +39708,10 @@ namespace OpenTK.Graphics.ES31 /// QuadTextureSelectSgis = ((int)0x8125), /// + /// Original was GL_TEXTURE_4DSIZE_SGIS = 0x8136 + /// + Texture4DsizeSgis = ((int)0x8136), + /// /// Original was GL_TEXTURE_WRAP_Q_SGIS = 0x8137 /// TextureWrapQSgis = ((int)0x8137), @@ -34952,18 +39720,38 @@ namespace OpenTK.Graphics.ES31 /// TextureMinLod = ((int)0x813A), /// + /// Original was GL_TEXTURE_MIN_LOD_SGIS = 0x813A + /// + TextureMinLodSgis = ((int)0x813A), + /// /// Original was GL_TEXTURE_MAX_LOD = 0x813B /// TextureMaxLod = ((int)0x813B), /// + /// Original was GL_TEXTURE_MAX_LOD_SGIS = 0x813B + /// + TextureMaxLodSgis = ((int)0x813B), + /// /// Original was GL_TEXTURE_BASE_LEVEL = 0x813C /// TextureBaseLevel = ((int)0x813C), /// + /// Original was GL_TEXTURE_BASE_LEVEL_SGIS = 0x813C + /// + TextureBaseLevelSgis = ((int)0x813C), + /// /// Original was GL_TEXTURE_MAX_LEVEL = 0x813D /// TextureMaxLevel = ((int)0x813D), /// + /// Original was GL_TEXTURE_MAX_LEVEL_SGIS = 0x813D + /// + TextureMaxLevelSgis = ((int)0x813D), + /// + /// Original was GL_TEXTURE_FILTER4_SIZE_SGIS = 0x8147 + /// + TextureFilter4SizeSgis = ((int)0x8147), + /// /// Original was GL_TEXTURE_CLIPMAP_CENTER_SGIX = 0x8171 /// TextureClipmapCenterSgix = ((int)0x8171), @@ -35020,6 +39808,18 @@ namespace OpenTK.Graphics.ES31 /// TextureCompareSgix = ((int)0x819A), /// + /// Original was GL_TEXTURE_COMPARE_OPERATOR_SGIX = 0x819B + /// + TextureCompareOperatorSgix = ((int)0x819B), + /// + /// Original was GL_TEXTURE_LEQUAL_R_SGIX = 0x819C + /// + TextureLequalRSgix = ((int)0x819C), + /// + /// Original was GL_TEXTURE_GEQUAL_R_SGIX = 0x819D + /// + TextureGequalRSgix = ((int)0x819D), + /// /// Original was GL_TEXTURE_MAX_CLAMP_S_SGIX = 0x8369 /// TextureMaxClampSSgix = ((int)0x8369), @@ -35074,7 +39874,19 @@ namespace OpenTK.Graphics.ES31 } /// - /// Used in GL.BindTexture, GL.CompressedTexImage2D and 24 other functions + /// Not used directly. + /// + [Flags] + public enum TextureStorageMaskAmd : int + { + /// + /// Original was GL_TEXTURE_STORAGE_SPARSE_BIT_AMD = 0x00000001 + /// + TextureStorageSparseBitAmd = ((int)0x00000001), + } + + /// + /// Used in GL.BindTexture, GL.CompressedTexImage2D and 47 other functions /// public enum TextureTarget : int { @@ -35510,6 +40322,33 @@ namespace OpenTK.Graphics.ES31 SeparateAttribs = ((int)0x8C8D), } + /// + /// Not used directly. + /// + public enum TransformFeedbackPName : int + { + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER_START = 0x8C84 + /// + TransformFeedbackBufferStart = ((int)0x8C84), + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER_SIZE = 0x8C85 + /// + TransformFeedbackBufferSize = ((int)0x8C85), + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER_BINDING = 0x8C8F + /// + TransformFeedbackBufferBinding = ((int)0x8C8F), + /// + /// Original was GL_TRANSFORM_FEEDBACK_PAUSED = 0x8E23 + /// + TransformFeedbackPaused = ((int)0x8E23), + /// + /// Original was GL_TRANSFORM_FEEDBACK_ACTIVE = 0x8E24 + /// + TransformFeedbackActive = ((int)0x8E24), + } + /// /// Not used directly. /// @@ -35632,7 +40471,124 @@ namespace OpenTK.Graphics.ES31 } /// - /// Not used directly. + /// Used in GL.GetInteger64, GL.GetInteger and 4 other functions + /// + public enum TypeEnum : int + { + /// + /// Original was GL_QUERY_WAIT = 0x8E13 + /// + QueryWait = ((int)0x8E13), + /// + /// Original was GL_QUERY_NO_WAIT = 0x8E14 + /// + QueryNoWait = ((int)0x8E14), + /// + /// Original was GL_QUERY_BY_REGION_WAIT = 0x8E15 + /// + QueryByRegionWait = ((int)0x8E15), + /// + /// Original was GL_QUERY_BY_REGION_NO_WAIT = 0x8E16 + /// + QueryByRegionNoWait = ((int)0x8E16), + } + + /// + /// Used in GL.GetActiveUniformBlock + /// + public enum UniformBlockPName : int + { + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_CONTROL_SHADER = 0x84F0 + /// + UniformBlockReferencedByTessControlShader = ((int)0x84F0), + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_EVALUATION_SHADER = 0x84F1 + /// + UniformBlockReferencedByTessEvaluationShader = ((int)0x84F1), + /// + /// Original was GL_UNIFORM_BLOCK_BINDING = 0x8A3F + /// + UniformBlockBinding = ((int)0x8A3F), + /// + /// Original was GL_UNIFORM_BLOCK_DATA_SIZE = 0x8A40 + /// + UniformBlockDataSize = ((int)0x8A40), + /// + /// Original was GL_UNIFORM_BLOCK_NAME_LENGTH = 0x8A41 + /// + UniformBlockNameLength = ((int)0x8A41), + /// + /// Original was GL_UNIFORM_BLOCK_ACTIVE_UNIFORMS = 0x8A42 + /// + UniformBlockActiveUniforms = ((int)0x8A42), + /// + /// Original was GL_UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES = 0x8A43 + /// + UniformBlockActiveUniformIndices = ((int)0x8A43), + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER = 0x8A44 + /// + UniformBlockReferencedByVertexShader = ((int)0x8A44), + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_GEOMETRY_SHADER = 0x8A45 + /// + UniformBlockReferencedByGeometryShader = ((int)0x8A45), + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER = 0x8A46 + /// + UniformBlockReferencedByFragmentShader = ((int)0x8A46), + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_COMPUTE_SHADER = 0x90EC + /// + UniformBlockReferencedByComputeShader = ((int)0x90EC), + } + + /// + /// Used in GL.GetActiveUniforms + /// + public enum UniformPName : int + { + /// + /// Original was GL_UNIFORM_TYPE = 0x8A37 + /// + UniformType = ((int)0x8A37), + /// + /// Original was GL_UNIFORM_SIZE = 0x8A38 + /// + UniformSize = ((int)0x8A38), + /// + /// Original was GL_UNIFORM_NAME_LENGTH = 0x8A39 + /// + UniformNameLength = ((int)0x8A39), + /// + /// Original was GL_UNIFORM_BLOCK_INDEX = 0x8A3A + /// + UniformBlockIndex = ((int)0x8A3A), + /// + /// Original was GL_UNIFORM_OFFSET = 0x8A3B + /// + UniformOffset = ((int)0x8A3B), + /// + /// Original was GL_UNIFORM_ARRAY_STRIDE = 0x8A3C + /// + UniformArrayStride = ((int)0x8A3C), + /// + /// Original was GL_UNIFORM_MATRIX_STRIDE = 0x8A3D + /// + UniformMatrixStride = ((int)0x8A3D), + /// + /// Original was GL_UNIFORM_IS_ROW_MAJOR = 0x8A3E + /// + UniformIsRowMajor = ((int)0x8A3E), + /// + /// Original was GL_UNIFORM_ATOMIC_COUNTER_BUFFER_INDEX = 0x92DA + /// + UniformAtomicCounterBufferIndex = ((int)0x92DA), + } + + /// + /// Used in GL.UseProgramStages, GL.Ext.UseProgramStages /// [Flags] public enum UseProgramStageMask : int @@ -35662,6 +40618,10 @@ namespace OpenTK.Graphics.ES31 /// GeometryShaderBitExt = ((int)0x00000004), /// + /// Original was GL_GEOMETRY_SHADER_BIT_OES = 0x00000004 + /// + GeometryShaderBitOes = ((int)0x00000004), + /// /// Original was GL_TESS_CONTROL_SHADER_BIT = 0x00000008 /// TessControlShaderBit = ((int)0x00000008), @@ -35670,6 +40630,10 @@ namespace OpenTK.Graphics.ES31 /// TessControlShaderBitExt = ((int)0x00000008), /// + /// Original was GL_TESS_CONTROL_SHADER_BIT_OES = 0x00000008 + /// + TessControlShaderBitOes = ((int)0x00000008), + /// /// Original was GL_TESS_EVALUATION_SHADER_BIT = 0x00000010 /// TessEvaluationShaderBit = ((int)0x00000010), @@ -35678,6 +40642,10 @@ namespace OpenTK.Graphics.ES31 /// TessEvaluationShaderBitExt = ((int)0x00000010), /// + /// Original was GL_TESS_EVALUATION_SHADER_BIT_OES = 0x00000010 + /// + TessEvaluationShaderBitOes = ((int)0x00000010), + /// /// Original was GL_COMPUTE_SHADER_BIT = 0x00000020 /// ComputeShaderBit = ((int)0x00000020), @@ -35691,6 +40659,92 @@ namespace OpenTK.Graphics.ES31 AllShaderBitsExt = unchecked((int)0xFFFFFFFF), } + /// + /// Not used directly. + /// + public enum VertexArrayPName : int + { + /// + /// Original was GL_VERTEX_ATTRIB_RELATIVE_OFFSET = 0x82D5 + /// + VertexAttribRelativeOffset = ((int)0x82D5), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_ENABLED = 0x8622 + /// + VertexAttribArrayEnabled = ((int)0x8622), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_SIZE = 0x8623 + /// + VertexAttribArraySize = ((int)0x8623), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_STRIDE = 0x8624 + /// + VertexAttribArrayStride = ((int)0x8624), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_TYPE = 0x8625 + /// + VertexAttribArrayType = ((int)0x8625), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_LONG = 0x874E + /// + VertexAttribArrayLong = ((int)0x874E), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_NORMALIZED = 0x886A + /// + VertexAttribArrayNormalized = ((int)0x886A), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_INTEGER = 0x88FD + /// + VertexAttribArrayInteger = ((int)0x88FD), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_DIVISOR = 0x88FE + /// + VertexAttribArrayDivisor = ((int)0x88FE), + } + + /// + /// Used in GL.GetVertexAttribI + /// + public enum VertexAttribEnum : int + { + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_ENABLED = 0x8622 + /// + VertexAttribArrayEnabled = ((int)0x8622), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_SIZE = 0x8623 + /// + VertexAttribArraySize = ((int)0x8623), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_STRIDE = 0x8624 + /// + VertexAttribArrayStride = ((int)0x8624), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_TYPE = 0x8625 + /// + VertexAttribArrayType = ((int)0x8625), + /// + /// Original was GL_CURRENT_VERTEX_ATTRIB = 0x8626 + /// + CurrentVertexAttrib = ((int)0x8626), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_NORMALIZED = 0x886A + /// + VertexAttribArrayNormalized = ((int)0x886A), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING = 0x889F + /// + VertexAttribArrayBufferBinding = ((int)0x889F), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_INTEGER = 0x88FD + /// + VertexAttribArrayInteger = ((int)0x88FD), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_DIVISOR = 0x88FE + /// + VertexAttribArrayDivisor = ((int)0x88FE), + } + /// /// Not used directly. /// @@ -35777,7 +40831,7 @@ namespace OpenTK.Graphics.ES31 } /// - /// Used in GL.VertexAttribPointer + /// Used in GL.VertexAttribIPointer, GL.VertexAttribPointer /// public enum VertexAttribPointerType : int { @@ -35798,9 +40852,9 @@ namespace OpenTK.Graphics.ES31 /// UnsignedShort = ((int)0x1403), /// - /// Original was GL_INT = 0X1404 + /// Original was GL_INT = 0x1404 /// - Int = ((int)0X1404), + Int = ((int)0x1404), /// /// Original was GL_UNSIGNED_INT = 0x1405 /// @@ -35810,6 +40864,10 @@ namespace OpenTK.Graphics.ES31 /// Float = ((int)0X1406), /// + /// Original was GL_DOUBLE = 0x140A + /// + Double = ((int)0x140A), + /// /// Original was GL_HALF_FLOAT = 0x140B /// HalfFloat = ((int)0x140B), @@ -35822,6 +40880,10 @@ namespace OpenTK.Graphics.ES31 /// UnsignedInt2101010Rev = ((int)0x8368), /// + /// Original was GL_UNSIGNED_INT_10F_11F_11F_REV = 0x8C3B + /// + UnsignedInt10F11F11FRev = ((int)0x8C3B), + /// /// Original was GL_INT_2_10_10_10_REV = 0x8D9F /// Int2101010Rev = ((int)0x8D9F), @@ -35833,51 +40895,145 @@ namespace OpenTK.Graphics.ES31 public enum VertexAttribType : int { /// - /// Original was GL_BYTE = 0X1400 + /// Original was GL_BYTE = 0x1400 /// - Byte = ((int)0X1400), + Byte = ((int)0x1400), /// /// Original was GL_UNSIGNED_BYTE = 0x1401 /// UnsignedByte = ((int)0x1401), /// - /// Original was GL_SHORT = 0X1402 + /// Original was GL_SHORT = 0x1402 /// - Short = ((int)0X1402), + Short = ((int)0x1402), /// /// Original was GL_UNSIGNED_SHORT = 0x1403 /// UnsignedShort = ((int)0x1403), /// - /// Original was GL_INT = 0X1404 + /// Original was GL_INT = 0x1404 /// - Int = ((int)0X1404), + Int = ((int)0x1404), /// /// Original was GL_UNSIGNED_INT = 0x1405 /// UnsignedInt = ((int)0x1405), /// - /// Original was GL_FLOAT = 0X1406 + /// Original was GL_FLOAT = 0x1406 /// - Float = ((int)0X1406), + Float = ((int)0x1406), + /// + /// Original was GL_DOUBLE = 0x140A + /// + Double = ((int)0x140A), /// /// Original was GL_HALF_FLOAT = 0x140B /// HalfFloat = ((int)0x140B), /// - /// Original was GL_FIXED = 0X140c + /// Original was GL_FIXED = 0x140C /// - Fixed = ((int)0X140c), + Fixed = ((int)0x140C), /// /// Original was GL_UNSIGNED_INT_2_10_10_10_REV = 0x8368 /// UnsignedInt2101010Rev = ((int)0x8368), /// + /// Original was GL_UNSIGNED_INT_10F_11F_11F_REV = 0x8C3B + /// + UnsignedInt10F11F11FRev = ((int)0x8C3B), + /// /// Original was GL_INT_2_10_10_10_REV = 0x8D9F /// Int2101010Rev = ((int)0x8D9F), } + /// + /// Not used directly. + /// + public enum VertexBufferObjectParameter : int + { + /// + /// Original was GL_BUFFER_IMMUTABLE_STORAGE = 0x821F + /// + BufferImmutableStorage = ((int)0x821F), + /// + /// Original was GL_BUFFER_STORAGE_FLAGS = 0x8220 + /// + BufferStorageFlags = ((int)0x8220), + /// + /// Original was GL_BUFFER_SIZE = 0x8764 + /// + BufferSize = ((int)0x8764), + /// + /// Original was GL_BUFFER_USAGE = 0x8765 + /// + BufferUsage = ((int)0x8765), + /// + /// Original was GL_BUFFER_ACCESS = 0x88BB + /// + BufferAccess = ((int)0x88BB), + /// + /// Original was GL_BUFFER_MAPPED = 0x88BC + /// + BufferMapped = ((int)0x88BC), + /// + /// Original was GL_BUFFER_ACCESS_FLAGS = 0x911F + /// + BufferAccessFlags = ((int)0x911F), + /// + /// Original was GL_BUFFER_MAP_LENGTH = 0x9120 + /// + BufferMapLength = ((int)0x9120), + /// + /// Original was GL_BUFFER_MAP_OFFSET = 0x9121 + /// + BufferMapOffset = ((int)0x9121), + } + + /// + /// Not used directly. + /// + public enum VertexBufferObjectUsage : int + { + /// + /// Original was GL_STREAM_DRAW = 0x88E0 + /// + StreamDraw = ((int)0x88E0), + /// + /// Original was GL_STREAM_READ = 0x88E1 + /// + StreamRead = ((int)0x88E1), + /// + /// Original was GL_STREAM_COPY = 0x88E2 + /// + StreamCopy = ((int)0x88E2), + /// + /// Original was GL_STATIC_DRAW = 0x88E4 + /// + StaticDraw = ((int)0x88E4), + /// + /// Original was GL_STATIC_READ = 0x88E5 + /// + StaticRead = ((int)0x88E5), + /// + /// Original was GL_STATIC_COPY = 0x88E6 + /// + StaticCopy = ((int)0x88E6), + /// + /// Original was GL_DYNAMIC_DRAW = 0x88E8 + /// + DynamicDraw = ((int)0x88E8), + /// + /// Original was GL_DYNAMIC_READ = 0x88E9 + /// + DynamicRead = ((int)0x88E9), + /// + /// Original was GL_DYNAMIC_COPY = 0x88EA + /// + DynamicCopy = ((int)0x88EA), + } + /// /// Not used directly. /// @@ -35901,6 +41057,21 @@ namespace OpenTK.Graphics.ES31 Double = ((int)0x140A), } + /// + /// Not used directly. + /// + public enum VertexProvokingMode : int + { + /// + /// Original was GL_FIRST_VERTEX_CONVENTION = 0x8E4D + /// + FirstVertexConvention = ((int)0x8E4D), + /// + /// Original was GL_LAST_VERTEX_CONVENTION = 0x8E4E + /// + LastVertexConvention = ((int)0x8E4E), + } + /// /// Not used directly. /// diff --git a/src/OpenTK/Graphics/ES31/ES31.cs b/src/OpenTK/Graphics/ES31/ES31.cs index c0eb400e..79421eca 100644 --- a/src/OpenTK/Graphics/ES31/ES31.cs +++ b/src/OpenTK/Graphics/ES31/ES31.cs @@ -112,6 +112,7 @@ namespace OpenTK.Graphics.ES31 103, 108, 67, 108, 101, 97, 114, 84, 101, 120, 83, 117, 98, 73, 109, 97, 103, 101, 69, 88, 84, 0, 103, 108, 67, 108, 105, 101, 110, 116, 87, 97, 105, 116, 83, 121, 110, 99, 0, 103, 108, 67, 108, 105, 101, 110, 116, 87, 97, 105, 116, 83, 121, 110, 99, 65, 80, 80, 76, 69, 0, + 103, 108, 67, 108, 105, 112, 67, 111, 110, 116, 114, 111, 108, 69, 88, 84, 0, 103, 108, 67, 111, 108, 111, 114, 77, 97, 115, 107, 0, 103, 108, 67, 111, 108, 111, 114, 77, 97, 115, 107, 105, 69, 88, 84, 0, 103, 108, 67, 111, 108, 111, 114, 77, 97, 115, 107, 105, 79, 69, 83, 0, @@ -492,12 +493,32 @@ namespace OpenTK.Graphics.ES31 103, 108, 77, 97, 112, 66, 117, 102, 102, 101, 114, 79, 69, 83, 0, 103, 108, 77, 97, 112, 66, 117, 102, 102, 101, 114, 82, 97, 110, 103, 101, 0, 103, 108, 77, 97, 112, 66, 117, 102, 102, 101, 114, 82, 97, 110, 103, 101, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 70, 114, 117, 115, 116, 117, 109, 69, 88, 84, 0, 103, 108, 77, 97, 116, 114, 105, 120, 76, 111, 97, 100, 51, 120, 50, 102, 78, 86, 0, 103, 108, 77, 97, 116, 114, 105, 120, 76, 111, 97, 100, 51, 120, 51, 102, 78, 86, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 76, 111, 97, 100, 100, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 76, 111, 97, 100, 102, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 76, 111, 97, 100, 73, 100, 101, 110, 116, 105, 116, 121, 69, 88, 84, 0, 103, 108, 77, 97, 116, 114, 105, 120, 76, 111, 97, 100, 84, 114, 97, 110, 115, 112, 111, 115, 101, 51, 120, 51, 102, 78, 86, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 76, 111, 97, 100, 84, 114, 97, 110, 115, 112, 111, 115, 101, 100, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 76, 111, 97, 100, 84, 114, 97, 110, 115, 112, 111, 115, 101, 102, 69, 88, 84, 0, 103, 108, 77, 97, 116, 114, 105, 120, 77, 117, 108, 116, 51, 120, 50, 102, 78, 86, 0, 103, 108, 77, 97, 116, 114, 105, 120, 77, 117, 108, 116, 51, 120, 51, 102, 78, 86, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 77, 117, 108, 116, 100, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 77, 117, 108, 116, 102, 69, 88, 84, 0, 103, 108, 77, 97, 116, 114, 105, 120, 77, 117, 108, 116, 84, 114, 97, 110, 115, 112, 111, 115, 101, 51, 120, 51, 102, 78, 86, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 77, 117, 108, 116, 84, 114, 97, 110, 115, 112, 111, 115, 101, 100, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 77, 117, 108, 116, 84, 114, 97, 110, 115, 112, 111, 115, 101, 102, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 79, 114, 116, 104, 111, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 80, 111, 112, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 80, 117, 115, 104, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 82, 111, 116, 97, 116, 101, 100, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 82, 111, 116, 97, 116, 101, 102, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 83, 99, 97, 108, 101, 100, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 83, 99, 97, 108, 101, 102, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 84, 114, 97, 110, 115, 108, 97, 116, 101, 100, 69, 88, 84, 0, + 103, 108, 77, 97, 116, 114, 105, 120, 84, 114, 97, 110, 115, 108, 97, 116, 101, 102, 69, 88, 84, 0, + 103, 108, 77, 97, 120, 83, 104, 97, 100, 101, 114, 67, 111, 109, 112, 105, 108, 101, 114, 84, 104, 114, 101, 97, 100, 115, 75, 72, 82, 0, 103, 108, 77, 101, 109, 111, 114, 121, 66, 97, 114, 114, 105, 101, 114, 0, 103, 108, 77, 101, 109, 111, 114, 121, 66, 97, 114, 114, 105, 101, 114, 66, 121, 82, 101, 103, 105, 111, 110, 0, 103, 108, 77, 101, 109, 111, 114, 121, 79, 98, 106, 101, 99, 116, 80, 97, 114, 97, 109, 101, 116, 101, 114, 105, 118, 69, 88, 84, 0, @@ -736,6 +757,7 @@ namespace OpenTK.Graphics.ES31 103, 108, 84, 101, 120, 83, 117, 98, 73, 109, 97, 103, 101, 50, 68, 0, 103, 108, 84, 101, 120, 83, 117, 98, 73, 109, 97, 103, 101, 51, 68, 0, 103, 108, 84, 101, 120, 83, 117, 98, 73, 109, 97, 103, 101, 51, 68, 79, 69, 83, 0, + 103, 108, 84, 101, 120, 116, 117, 114, 101, 70, 111, 118, 101, 97, 116, 105, 111, 110, 80, 97, 114, 97, 109, 101, 116, 101, 114, 115, 81, 67, 79, 77, 0, 103, 108, 84, 101, 120, 116, 117, 114, 101, 83, 116, 111, 114, 97, 103, 101, 49, 68, 69, 88, 84, 0, 103, 108, 84, 101, 120, 116, 117, 114, 101, 83, 116, 111, 114, 97, 103, 101, 50, 68, 69, 88, 84, 0, 103, 108, 84, 101, 120, 116, 117, 114, 101, 83, 116, 111, 114, 97, 103, 101, 51, 68, 69, 88, 84, 0, @@ -846,6 +868,7 @@ namespace OpenTK.Graphics.ES31 103, 108, 86, 105, 101, 119, 112, 111, 114, 116, 73, 110, 100, 101, 120, 101, 100, 102, 79, 69, 83, 0, 103, 108, 86, 105, 101, 119, 112, 111, 114, 116, 73, 110, 100, 101, 120, 101, 100, 102, 118, 78, 86, 0, 103, 108, 86, 105, 101, 119, 112, 111, 114, 116, 73, 110, 100, 101, 120, 101, 100, 102, 118, 79, 69, 83, 0, + 103, 108, 86, 105, 101, 119, 112, 111, 114, 116, 80, 111, 115, 105, 116, 105, 111, 110, 87, 83, 99, 97, 108, 101, 78, 86, 0, 103, 108, 86, 105, 101, 119, 112, 111, 114, 116, 83, 119, 105, 122, 122, 108, 101, 78, 86, 0, 103, 108, 87, 97, 105, 116, 83, 101, 109, 97, 112, 104, 111, 114, 101, 69, 88, 84, 0, 103, 108, 87, 97, 105, 116, 83, 121, 110, 99, 0, @@ -927,746 +950,769 @@ namespace OpenTK.Graphics.ES31 1349, 1366, 1388, - 1400, - 1416, - 1432, - 1448, - 1471, - 1494, - 1520, - 1546, - 1572, - 1601, - 1634, - 1654, - 1676, - 1698, - 1720, - 1733, + 1405, + 1417, + 1433, + 1449, + 1465, + 1488, + 1511, + 1537, + 1563, + 1589, + 1618, + 1651, + 1671, + 1693, + 1715, + 1737, 1750, - 1770, - 1790, - 1813, - 1838, + 1767, + 1787, + 1807, + 1830, 1855, - 1878, - 1906, - 1928, - 1955, - 1973, - 2002, - 2022, - 2047, - 2070, - 2086, - 2101, - 2126, - 2149, - 2175, - 2186, - 2209, - 2235, - 2257, - 2282, - 2303, - 2327, - 2343, + 1872, + 1895, + 1923, + 1945, + 1972, + 1990, + 2019, + 2039, + 2064, + 2087, + 2103, + 2118, + 2143, + 2166, + 2192, + 2203, + 2226, + 2252, + 2274, + 2299, + 2320, + 2344, 2360, - 2381, - 2406, - 2422, - 2446, - 2469, - 2485, - 2510, - 2538, - 2554, - 2573, - 2595, + 2377, + 2398, + 2423, + 2439, + 2463, + 2486, + 2502, + 2527, + 2555, + 2571, + 2590, 2612, - 2634, - 2649, - 2662, - 2680, + 2629, + 2651, + 2666, + 2679, 2697, - 2724, - 2745, - 2769, - 2781, - 2793, - 2815, - 2838, - 2852, - 2875, - 2899, - 2914, - 2924, - 2951, - 2965, - 2978, - 2992, - 3019, - 3043, - 3061, - 3087, - 3100, - 3121, - 3143, - 3170, - 3207, - 3232, - 3256, - 3270, + 2714, + 2741, + 2762, + 2786, + 2798, + 2810, + 2832, + 2855, + 2869, + 2892, + 2916, + 2931, + 2941, + 2968, + 2982, + 2995, + 3009, + 3036, + 3060, + 3078, + 3104, + 3117, + 3138, + 3160, + 3187, + 3224, + 3249, + 3273, 3287, - 3311, - 3327, - 3342, - 3370, - 3398, - 3421, - 3445, - 3474, - 3513, - 3562, - 3599, - 3636, - 3663, - 3689, - 3709, - 3742, - 3775, - 3802, - 3838, - 3854, - 3893, - 3922, - 3931, - 3957, - 3970, - 3982, - 3995, - 4021, - 4046, - 4066, - 4086, - 4097, - 4111, - 4127, - 4150, - 4177, - 4197, - 4222, - 4254, - 4275, - 4301, - 4321, - 4353, - 4377, - 4398, - 4423, - 4456, - 4468, + 3304, + 3328, + 3344, + 3359, + 3387, + 3415, + 3438, + 3462, + 3491, + 3530, + 3579, + 3616, + 3653, + 3680, + 3706, + 3726, + 3759, + 3792, + 3819, + 3855, + 3871, + 3910, + 3939, + 3948, + 3974, + 3987, + 3999, + 4012, + 4038, + 4063, + 4083, + 4103, + 4114, + 4128, + 4144, + 4167, + 4194, + 4214, + 4239, + 4271, + 4292, + 4318, + 4338, + 4370, + 4394, + 4415, + 4440, + 4473, 4485, - 4494, - 4510, - 4518, - 4543, - 4571, - 4597, - 4627, - 4660, - 4697, - 4721, - 4759, - 4785, - 4818, - 4841, - 4877, - 4914, - 4951, - 4977, - 5001, - 5027, - 5066, - 5110, - 5143, - 5167, - 5179, - 5192, + 4502, + 4511, + 4527, + 4535, + 4560, + 4588, + 4614, + 4644, + 4677, + 4714, + 4738, + 4776, + 4802, + 4835, + 4858, + 4894, + 4931, + 4968, + 4994, + 5018, + 5044, + 5083, + 5127, + 5160, + 5184, + 5196, 5209, - 5223, - 5241, - 5254, - 5275, - 5297, - 5322, - 5335, - 5351, - 5370, - 5384, - 5403, - 5417, - 5441, - 5459, - 5480, - 5498, - 5517, - 5543, - 5571, - 5593, - 5614, - 5634, - 5650, - 5664, - 5689, - 5712, - 5732, - 5755, - 5786, - 5807, - 5831, - 5855, - 5884, - 5895, - 5910, - 5937, - 5953, + 5226, + 5240, + 5258, + 5271, + 5292, + 5314, + 5339, + 5352, + 5368, + 5387, + 5401, + 5420, + 5434, + 5458, + 5476, + 5497, + 5515, + 5534, + 5560, + 5588, + 5610, + 5631, + 5651, + 5667, + 5681, + 5706, + 5729, + 5749, + 5772, + 5803, + 5824, + 5848, + 5872, + 5901, + 5912, + 5927, + 5954, 5970, - 5982, - 6004, - 6026, - 6064, - 6092, - 6133, - 6158, - 6186, - 6214, - 6233, - 6251, - 6267, - 6288, - 6304, - 6323, - 6337, - 6359, - 6389, - 6421, - 6440, - 6466, - 6482, - 6501, - 6520, - 6536, - 6555, - 6574, + 5987, + 5999, + 6021, + 6043, + 6081, + 6109, + 6150, + 6175, + 6203, + 6231, + 6250, + 6268, + 6284, + 6305, + 6321, + 6340, + 6354, + 6376, + 6406, + 6438, + 6457, + 6483, + 6499, + 6518, + 6537, + 6553, + 6572, 6591, - 6611, + 6608, 6628, - 6648, - 6668, - 6688, - 6711, - 6733, - 6755, - 6775, - 6793, - 6814, - 6832, - 6855, - 6874, - 6897, - 6920, - 6939, - 6959, - 6979, - 7005, - 7036, - 7067, - 7095, - 7128, - 7154, - 7185, - 7209, - 7237, - 7261, - 7275, + 6645, + 6665, + 6685, + 6705, + 6728, + 6750, + 6772, + 6792, + 6810, + 6831, + 6849, + 6872, + 6891, + 6914, + 6937, + 6956, + 6976, + 6996, + 7022, + 7053, + 7084, + 7112, + 7145, + 7171, + 7202, + 7226, + 7254, + 7278, 7292, - 7311, - 7333, - 7353, - 7377, - 7392, - 7420, - 7451, - 7474, - 7500, - 7525, - 7551, - 7574, - 7603, - 7640, - 7665, - 7678, - 7694, - 7718, - 7740, - 7765, - 7785, - 7808, - 7837, - 7861, - 7889, - 7917, - 7946, - 7975, - 7999, - 8031, - 8050, - 8064, - 8091, - 8109, - 8121, - 8134, - 8146, + 7309, + 7328, + 7350, + 7370, + 7394, + 7409, + 7437, + 7468, + 7491, + 7517, + 7542, + 7568, + 7591, + 7620, + 7657, + 7682, + 7695, + 7711, + 7735, + 7757, + 7782, + 7802, + 7825, + 7854, + 7878, + 7906, + 7934, + 7963, + 7992, + 8016, + 8048, + 8067, + 8081, + 8108, + 8126, + 8138, + 8151, 8163, - 8188, - 8213, - 8233, - 8257, - 8281, - 8306, - 8331, - 8351, - 8373, - 8394, - 8423, - 8451, - 8481, - 8514, - 8537, - 8552, - 8571, - 8591, - 8606, - 8627, - 8643, - 8667, - 8689, - 8709, - 8730, - 8752, - 8772, - 8798, - 8816, - 8823, - 8843, - 8872, - 8899, - 8922, - 8954, - 8984, - 9007, - 9028, - 9052, - 9079, - 9090, - 9102, - 9118, - 9133, - 9149, - 9161, - 9177, - 9203, - 9223, - 9234, - 9256, - 9280, - 9292, - 9312, - 9335, - 9345, - 9358, + 8180, + 8205, + 8230, + 8250, + 8274, + 8298, + 8323, + 8348, + 8368, + 8390, + 8411, + 8440, + 8468, + 8498, + 8531, + 8554, + 8569, + 8588, + 8608, + 8623, + 8644, + 8660, + 8684, + 8706, + 8726, + 8747, + 8769, + 8789, + 8815, + 8833, + 8840, + 8860, + 8889, + 8916, + 8939, + 8971, + 9001, + 9024, + 9045, + 9069, + 9096, + 9107, + 9119, + 9135, + 9150, + 9166, + 9178, + 9194, + 9220, + 9240, + 9251, + 9273, + 9297, + 9309, + 9329, + 9352, + 9362, 9375, - 9387, + 9392, 9404, - 9415, - 9424, - 9438, - 9450, - 9478, - 9500, - 9516, - 9535, + 9421, + 9432, + 9441, + 9455, + 9467, + 9495, + 9517, + 9533, 9552, - 9564, - 9578, - 9609, - 9637, - 9670, - 9700, - 9715, + 9569, + 9581, + 9595, + 9626, + 9654, + 9687, + 9717, 9732, - 9752, - 9771, - 9790, - 9818, - 9837, - 9856, + 9749, + 9769, + 9788, + 9807, + 9826, + 9843, + 9860, 9884, - 9900, - 9924, - 9953, - 9975, - 9996, - 10025, - 10058, - 10081, - 10112, - 10144, - 10171, - 10209, - 10223, - 10240, - 10257, - 10277, - 10298, - 10319, - 10336, - 10353, - 10368, - 10391, - 10409, + 9912, + 9938, + 9964, + 9983, + 10002, + 10019, + 10036, + 10064, + 10090, + 10116, + 10133, + 10148, + 10164, + 10183, + 10202, + 10220, + 10238, + 10260, + 10282, + 10312, + 10328, + 10352, + 10381, + 10403, 10424, - 10448, - 10472, - 10491, - 10506, - 10536, - 10555, - 10575, - 10594, - 10614, - 10641, - 10661, - 10676, - 10696, - 10714, - 10729, - 10754, - 10768, - 10787, - 10803, + 10453, + 10486, + 10509, + 10540, + 10572, + 10599, + 10637, + 10651, + 10668, + 10685, + 10705, + 10726, + 10747, + 10764, + 10781, + 10796, 10819, - 10843, - 10859, - 10878, - 10898, - 10924, - 10950, - 10966, - 10985, - 11005, - 11028, - 11060, - 11079, - 11101, - 11121, - 11144, - 11163, - 11186, - 11210, - 11232, - 11252, - 11275, - 11295, - 11319, - 11344, - 11367, - 11388, - 11412, - 11431, - 11453, - 11473, - 11496, - 11515, - 11538, - 11562, - 11584, - 11604, - 11627, - 11647, - 11671, - 11696, - 11719, - 11740, - 11764, - 11783, - 11805, - 11825, - 11848, - 11867, - 11890, - 11914, - 11936, - 11956, - 11979, - 11999, - 12023, - 12048, - 12071, - 12092, - 12116, - 12135, - 12157, - 12177, - 12200, - 12219, - 12242, - 12266, - 12288, - 12308, - 12331, - 12351, - 12375, - 12400, - 12423, - 12444, - 12468, - 12498, - 12527, - 12558, - 12588, - 12614, - 12643, - 12671, - 12702, - 12730, - 12761, - 12787, - 12816, - 12844, - 12875, - 12903, - 12934, - 12960, - 12989, - 13017, - 13048, - 13076, - 13107, - 13124, - 13144, - 13165, - 13183, - 13202, + 10837, + 10852, + 10876, + 10900, + 10919, + 10934, + 10964, + 10983, + 11003, + 11022, + 11042, + 11069, + 11089, + 11104, + 11124, + 11142, + 11157, + 11182, + 11196, + 11215, + 11231, + 11247, + 11271, + 11287, + 11306, + 11326, + 11352, + 11378, + 11394, + 11413, + 11433, + 11456, + 11488, + 11507, + 11529, + 11549, + 11572, + 11591, + 11614, + 11638, + 11660, + 11680, + 11703, + 11723, + 11747, + 11772, + 11795, + 11816, + 11840, + 11859, + 11881, + 11901, + 11924, + 11943, + 11966, + 11990, + 12012, + 12032, + 12055, + 12075, + 12099, + 12124, + 12147, + 12168, + 12192, + 12211, + 12233, + 12253, + 12276, + 12295, + 12318, + 12342, + 12364, + 12384, + 12407, + 12427, + 12451, + 12476, + 12499, + 12520, + 12544, + 12563, + 12585, + 12605, + 12628, + 12647, + 12670, + 12694, + 12716, + 12736, + 12759, + 12779, + 12803, + 12828, + 12851, + 12872, + 12896, + 12926, + 12955, + 12986, + 13016, + 13042, + 13071, + 13099, + 13130, + 13158, + 13189, 13215, - 13238, - 13253, - 13267, - 13284, - 13301, - 13314, - 13342, - 13366, + 13244, + 13272, + 13303, + 13331, + 13362, 13388, - 13421, - 13459, - 13497, - 13533, - 13569, - 13604, - 13627, - 13664, - 13690, - 13707, - 13721, - 13741, - 13762, - 13782, - 13807, - 13832, - 13858, - 13884, - 13905, - 13915, - 13933, - 13952, - 13971, - 13991, - 14011, + 13417, + 13445, + 13476, + 13504, + 13535, + 13552, + 13572, + 13593, + 13611, + 13630, + 13643, + 13666, + 13681, + 13695, + 13712, + 13729, + 13742, + 13770, + 13794, + 13816, + 13849, + 13887, + 13925, + 13961, + 13997, 14032, - 14063, + 14055, 14092, - 14105, - 14120, + 14118, 14135, - 14156, - 14174, - 14196, - 14214, - 14243, - 14263, - 14277, - 14299, - 14313, - 14335, - 14347, - 14367, - 14398, - 14420, - 14458, - 14487, - 14527, - 14558, + 14149, + 14169, + 14190, + 14210, + 14235, + 14260, + 14286, + 14312, + 14333, + 14343, + 14361, + 14380, + 14399, + 14419, + 14439, + 14460, + 14491, + 14520, + 14533, + 14548, + 14563, 14584, - 14598, - 14613, - 14628, - 14648, - 14668, - 14681, - 14694, - 14710, - 14733, - 14749, - 14766, - 14782, - 14803, - 14824, - 14846, - 14868, - 14885, - 14903, - 14918, - 14936, - 14962, - 14977, - 14995, - 15024, - 15045, - 15066, - 15098, - 15119, - 15151, - 15167, - 15183, - 15202, - 15224, - 15246, - 15268, - 15293, - 15318, - 15354, - 15379, - 15415, - 15432, - 15449, - 15477, - 15495, - 15507, - 15520, - 15532, - 15548, - 15565, - 15578, - 15591, - 15608, - 15626, - 15640, - 15652, - 15665, - 15677, - 15693, - 15710, - 15723, - 15736, - 15753, - 15771, - 15785, - 15797, - 15810, - 15822, - 15838, - 15855, - 15868, - 15881, - 15898, - 15916, - 15930, - 15942, - 15955, - 15967, - 15983, - 16000, - 16013, + 14602, + 14624, + 14642, + 14671, + 14691, + 14705, + 14727, + 14741, + 14763, + 14775, + 14795, + 14826, + 14848, + 14886, + 14915, + 14955, + 14986, + 15012, + 15026, + 15041, + 15056, + 15076, + 15096, + 15109, + 15122, + 15138, + 15161, + 15177, + 15194, + 15210, + 15231, + 15252, + 15274, + 15296, + 15313, + 15331, + 15346, + 15364, + 15390, + 15405, + 15423, + 15452, + 15473, + 15494, + 15526, + 15547, + 15579, + 15595, + 15611, + 15630, + 15663, + 15685, + 15707, + 15729, + 15754, + 15779, + 15815, + 15840, + 15876, + 15893, + 15910, + 15938, + 15956, + 15968, + 15981, + 15993, + 16009, 16026, - 16043, - 16061, - 16075, - 16097, - 16120, - 16142, - 16166, - 16189, - 16208, - 16229, - 16252, - 16273, - 16296, - 16315, - 16336, + 16039, + 16052, + 16069, + 16087, + 16101, + 16113, + 16126, + 16138, + 16154, + 16171, + 16184, + 16197, + 16214, + 16232, + 16246, + 16258, + 16271, + 16283, + 16299, + 16316, + 16329, + 16342, 16359, - 16380, + 16377, + 16391, 16403, - 16422, - 16443, - 16466, + 16416, + 16428, + 16444, + 16461, + 16474, 16487, - 16510, - 16524, - 16541, - 16554, - 16573, - 16595, - 16617, - 16635, - 16661, + 16504, + 16522, + 16536, + 16558, + 16581, + 16603, + 16627, + 16650, + 16669, 16690, - 16707, - 16725, - 16742, - 16760, - 16777, - 16795, - 16812, - 16830, - 16852, - 16874, - 16901, - 16926, - 16950, + 16713, + 16734, + 16757, + 16776, + 16797, + 16820, + 16841, + 16864, + 16883, + 16904, + 16927, + 16948, 16971, - 16989, - 17008, - 17027, - 17047, - 17069, - 17092, - 17114, - 17137, - 17148, - 17167, - 17187, - 17208, - 17230, - 17252, - 17275, - 17295, - 17314, - 17325, - 17341, - 17361, - 17377, + 16985, + 17002, + 17015, + 17034, + 17056, + 17078, + 17096, + 17122, + 17151, + 17168, + 17186, + 17203, + 17221, + 17238, + 17256, + 17273, + 17291, + 17313, + 17335, + 17362, + 17387, + 17411, + 17432, + 17450, + 17469, + 17488, + 17508, + 17530, + 17553, + 17575, + 17598, + 17609, + 17628, + 17648, + 17669, + 17691, + 17713, + 17736, + 17763, + 17783, + 17802, + 17813, + 17829, + 17849, + 17865, }; EntryPoints = new IntPtr[EntryPointNameOffsets.Length]; } @@ -2238,9 +2284,9 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the interpolation to be applied if the image is stretched. Must be Nearest or Linear. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ANGLE_framebuffer_blit", Version = "", EntryPoint = "glBlitFramebufferANGLE")] - [CLSCompliant(false)] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, Int32 mask, OpenTK.Graphics.ES31.All filter) { throw new BindingsNotRewrittenException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES31.All mask, OpenTK.Graphics.ES31.All filter) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_framebuffer_blit] /// Copy a block of pixels from the read framebuffer to the draw framebuffer @@ -2276,8 +2322,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the interpolation to be applied if the image is stretched. Must be Nearest or Linear. /// [AutoGenerated(Category = "ANGLE_framebuffer_blit", Version = "", EntryPoint = "glBlitFramebufferANGLE")] - [CLSCompliant(false)] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, UInt32 mask, OpenTK.Graphics.ES31.All filter) { throw new BindingsNotRewrittenException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES31.ClearBufferMask mask, OpenTK.Graphics.ES31.BlitFramebufferFilter filter) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a range of elements @@ -2456,7 +2501,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.PrimitiveType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2478,7 +2523,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")] [CLSCompliant(false)] - public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) + public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -2502,7 +2547,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")] [CLSCompliant(false)] - public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) + public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -2526,7 +2571,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")] [CLSCompliant(false)] - public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) + public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -2549,7 +2594,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) + public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -2627,9 +2672,31 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the height of the renderbuffer, in pixels. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ANGLE_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleANGLE")] public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + /// [requires: ANGLE_framebuffer_multisample] + /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image + /// + /// + /// Specifies a binding to which the target of the allocation and must be Renderbuffer. + /// + /// + /// Specifies the number of samples to be used for the renderbuffer object's storage. + /// + /// + /// Specifies the internal format to use for the renderbuffer object's image. + /// + /// + /// Specifies the width of the renderbuffer, in pixels. + /// + /// + /// Specifies the height of the renderbuffer, in pixels. + /// + [AutoGenerated(Category = "ANGLE_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleANGLE")] + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES31.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + /// [requires: ANGLE_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering /// @@ -2672,9 +2739,27 @@ namespace OpenTK.Graphics.ES31 /// /// The timeout, specified in nanoseconds, for which the implementation should wait for sync to become signaled. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glClientWaitSyncAPPLE")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All ClientWaitSync(IntPtr sync, Int32 flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.ES31.SyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES31.All flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } + + /// [requires: APPLE_sync] + /// Block and wait for a sync object to become signaled + /// + /// + /// The sync object whose status to wait on. + /// + /// + /// A bitfield controlling the command flushing behavior. flags may be SyncFlushCommandsBit. + /// + /// + /// The timeout, specified in nanoseconds, for which the implementation should wait for sync to become signaled. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glClientWaitSyncAPPLE")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES31.SyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES31.All flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Block and wait for a sync object to become signaled @@ -2690,7 +2775,23 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glClientWaitSyncAPPLE")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All ClientWaitSync(IntPtr sync, UInt32 flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.ES31.SyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES31.SyncObjectMask flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } + + /// [requires: APPLE_sync] + /// Block and wait for a sync object to become signaled + /// + /// + /// The sync object whose status to wait on. + /// + /// + /// A bitfield controlling the command flushing behavior. flags may be SyncFlushCommandsBit. + /// + /// + /// The timeout, specified in nanoseconds, for which the implementation should wait for sync to become signaled. + /// + [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glClientWaitSyncAPPLE")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES31.SyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES31.SyncObjectMask flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_copy_texture_levels] /// @@ -2728,6 +2829,7 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies a bitwise combination of flags controlling the behavior of the sync object. No flags are presently defined for this operation and flags must be zero.flags is a placeholder for anticipated future extensions of fence sync object capabilities. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glFenceSyncAPPLE")] [CLSCompliant(false)] public static IntPtr FenceSync(OpenTK.Graphics.ES31.All condition, Int32 flags) { throw new BindingsNotRewrittenException(); } @@ -2741,19 +2843,54 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies a bitwise combination of flags controlling the behavior of the sync object. No flags are presently defined for this operation and flags must be zero.flags is a placeholder for anticipated future extensions of fence sync object capabilities. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glFenceSyncAPPLE")] [CLSCompliant(false)] public static IntPtr FenceSync(OpenTK.Graphics.ES31.All condition, UInt32 flags) { throw new BindingsNotRewrittenException(); } + /// [requires: APPLE_sync] + /// Create a new sync object and insert it into the GL command stream + /// + /// + /// Specifies the condition that must be met to set the sync object's state to signaled. condition must be SyncGpuCommandsComplete. + /// + /// + /// Specifies a bitwise combination of flags controlling the behavior of the sync object. No flags are presently defined for this operation and flags must be zero.flags is a placeholder for anticipated future extensions of fence sync object capabilities. + /// + [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glFenceSyncAPPLE")] + [CLSCompliant(false)] + public static IntPtr FenceSync(OpenTK.Graphics.ES31.SyncCondition condition, Int32 flags) { throw new BindingsNotRewrittenException(); } + + /// [requires: APPLE_sync] + /// Create a new sync object and insert it into the GL command stream + /// + /// + /// Specifies the condition that must be met to set the sync object's state to signaled. condition must be SyncGpuCommandsComplete. + /// + /// + /// Specifies a bitwise combination of flags controlling the behavior of the sync object. No flags are presently defined for this operation and flags must be zero.flags is a placeholder for anticipated future extensions of fence sync object capabilities. + /// + [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glFenceSyncAPPLE")] + [CLSCompliant(false)] + public static IntPtr FenceSync(OpenTK.Graphics.ES31.SyncCondition condition, UInt32 flags) { throw new BindingsNotRewrittenException(); } + /// [requires: APPLE_sync] /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] [CLSCompliant(false)] public static Int64 GetInteger64(OpenTK.Graphics.ES31.All pname) { throw new BindingsNotRewrittenException(); } + /// [requires: APPLE_sync] + /// + [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] + [CLSCompliant(false)] + public static Int64 GetInteger64(OpenTK.Graphics.ES31.GetPName pname) { throw new BindingsNotRewrittenException(); } + /// [requires: APPLE_sync] /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.ES31.All pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } @@ -2761,6 +2898,7 @@ namespace OpenTK.Graphics.ES31 /// [requires: APPLE_sync] /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } @@ -2768,10 +2906,32 @@ namespace OpenTK.Graphics.ES31 /// [requires: APPLE_sync] /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] [CLSCompliant(false)] public static unsafe void GetInteger64(OpenTK.Graphics.ES31.All pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: APPLE_sync] + /// + /// + [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] + [CLSCompliant(false)] + public static void GetInteger64(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: APPLE_sync] + /// + /// + [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] + [CLSCompliant(false)] + public static void GetInteger64(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: APPLE_sync] + /// + /// + [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] + [CLSCompliant(false)] + public static unsafe void GetInteger64(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: APPLE_sync] /// Query the properties of a sync object /// @@ -2790,6 +2950,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// Specifies the address of an array to receive the values of the queried parameter. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] [CLSCompliant(false)] public static void GetSync(IntPtr sync, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new BindingsNotRewrittenException(); } @@ -2812,6 +2973,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// Specifies the address of an array to receive the values of the queried parameter. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] [CLSCompliant(false)] public static void GetSync(IntPtr sync, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new BindingsNotRewrittenException(); } @@ -2834,10 +2996,77 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// Specifies the address of an array to receive the values of the queried parameter. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] [CLSCompliant(false)] public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new BindingsNotRewrittenException(); } + /// [requires: APPLE_sync] + /// Query the properties of a sync object + /// + /// + /// Specifies the sync object whose properties to query. + /// + /// + /// Specifies the parameter whose value to retrieve from the sync object specified in sync. + /// + /// + /// Specifies the size of the buffer whose address is given in values. + /// + /// + /// Specifies the address of an variable to receive the number of integers placed in values. + /// + /// [length: bufSize] + /// Specifies the address of an array to receive the values of the queried parameter. + /// + [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] + [CLSCompliant(false)] + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES31.SyncParameterName pname, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new BindingsNotRewrittenException(); } + + /// [requires: APPLE_sync] + /// Query the properties of a sync object + /// + /// + /// Specifies the sync object whose properties to query. + /// + /// + /// Specifies the parameter whose value to retrieve from the sync object specified in sync. + /// + /// + /// Specifies the size of the buffer whose address is given in values. + /// + /// + /// Specifies the address of an variable to receive the number of integers placed in values. + /// + /// [length: bufSize] + /// Specifies the address of an array to receive the values of the queried parameter. + /// + [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] + [CLSCompliant(false)] + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES31.SyncParameterName pname, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new BindingsNotRewrittenException(); } + + /// [requires: APPLE_sync] + /// Query the properties of a sync object + /// + /// + /// Specifies the sync object whose properties to query. + /// + /// + /// Specifies the parameter whose value to retrieve from the sync object specified in sync. + /// + /// + /// Specifies the size of the buffer whose address is given in values. + /// + /// + /// Specifies the address of an variable to receive the number of integers placed in values. + /// + /// [length: bufSize] + /// Specifies the address of an array to receive the values of the queried parameter. + /// + [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] + [CLSCompliant(false)] + public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES31.SyncParameterName pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new BindingsNotRewrittenException(); } + /// [requires: APPLE_sync] /// Determine if a name corresponds to a sync object /// @@ -2865,9 +3094,31 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the height of the renderbuffer, in pixels. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleAPPLE")] public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + /// [requires: APPLE_framebuffer_multisample] + /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image + /// + /// + /// Specifies a binding to which the target of the allocation and must be Renderbuffer. + /// + /// + /// Specifies the number of samples to be used for the renderbuffer object's storage. + /// + /// + /// Specifies the internal format to use for the renderbuffer object's image. + /// + /// + /// Specifies the width of the renderbuffer, in pixels. + /// + /// + /// Specifies the height of the renderbuffer, in pixels. + /// + [AutoGenerated(Category = "APPLE_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleAPPLE")] + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES31.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES31.InternalFormat 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 BindingsNotRewrittenException(); } @@ -2994,6 +3245,7 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the name of a query object. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBeginQuery")] [CLSCompliant(false)] public static void BeginQuery(OpenTK.Graphics.ES31.All target, Int32 id) { throw new BindingsNotRewrittenException(); } @@ -3007,10 +3259,47 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the name of a query object. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBeginQuery")] [CLSCompliant(false)] public static void BeginQuery(OpenTK.Graphics.ES31.All target, UInt32 id) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] + /// Delimit the boundaries of a query object + /// + /// + /// Specifies the target type of query object established between glBeginQuery and the subsequent glEndQuery. The symbolic constant must be one of AnySamplesPassed, AnySamplesPassedConservative, or TransformFeedbackPrimitivesWritten. + /// + /// + /// Specifies the name of a query object. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBeginQuery")] + [CLSCompliant(false)] + public static void BeginQuery(OpenTK.Graphics.ES31.QueryTarget target, Int32 id) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Delimit the boundaries of a query object + /// + /// + /// Specifies the target type of query object established between glBeginQuery and the subsequent glEndQuery. The symbolic constant must be one of AnySamplesPassed, AnySamplesPassedConservative, or TransformFeedbackPrimitivesWritten. + /// + /// + /// Specifies the name of a query object. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBeginQuery")] + [CLSCompliant(false)] + public static void BeginQuery(OpenTK.Graphics.ES31.QueryTarget target, UInt32 id) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Start transform feedback operation + /// + /// + /// Specify the output type of the primitives that will be recorded into the buffer objects that are bound for transform feedback. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBeginTransformFeedback")] + public static void BeginTransformFeedback(OpenTK.Graphics.ES31.All primitiveMode) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] /// Start transform feedback operation /// @@ -3018,7 +3307,7 @@ namespace OpenTK.Graphics.ES31 /// Specify the output type of the primitives that will be recorded into the buffer objects that are bound for transform feedback. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBeginTransformFeedback")] - public static void BeginTransformFeedback(OpenTK.Graphics.ES31.All primitiveMode) { throw new BindingsNotRewrittenException(); } + public static void BeginTransformFeedback(OpenTK.Graphics.ES31.PrimitiveType primitiveMode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Associates a generic vertex attribute index with a named attribute variable @@ -3118,6 +3407,7 @@ namespace OpenTK.Graphics.ES31 /// /// The name of a buffer object to bind to the specified binding point. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferBase")] [CLSCompliant(false)] public static void BindBufferBase(OpenTK.Graphics.ES31.All target, Int32 index, Int32 buffer) { throw new BindingsNotRewrittenException(); } @@ -3134,10 +3424,43 @@ namespace OpenTK.Graphics.ES31 /// /// The name of a buffer object to bind to the specified binding point. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferBase")] [CLSCompliant(false)] public static void BindBufferBase(OpenTK.Graphics.ES31.All target, UInt32 index, UInt32 buffer) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] + /// Bind a buffer object to an indexed buffer target + /// + /// + /// Specify the target of the bind operation. target must be one of AtomicCounterBuffer, ShaderStorageBuffer, TransformFeedbackBuffer or UniformBuffer. + /// + /// + /// Specify the index of the binding point within the array specified by target. + /// + /// + /// The name of a buffer object to bind to the specified binding point. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferBase")] + [CLSCompliant(false)] + public static void BindBufferBase(OpenTK.Graphics.ES31.BufferTargetArb target, Int32 index, Int32 buffer) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Bind a buffer object to an indexed buffer target + /// + /// + /// Specify the target of the bind operation. target must be one of AtomicCounterBuffer, ShaderStorageBuffer, TransformFeedbackBuffer or UniformBuffer. + /// + /// + /// Specify the index of the binding point within the array specified by target. + /// + /// + /// The name of a buffer object to bind to the specified binding point. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferBase")] + [CLSCompliant(false)] + public static void BindBufferBase(OpenTK.Graphics.ES31.BufferTargetArb target, UInt32 index, UInt32 buffer) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a range within a buffer object to an indexed buffer target /// @@ -3156,6 +3479,7 @@ namespace OpenTK.Graphics.ES31 /// /// The amount of data in machine units that can be read from the buffet object while used as an indexed target. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferRange")] [CLSCompliant(false)] public static void BindBufferRange(OpenTK.Graphics.ES31.All target, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } @@ -3178,6 +3502,7 @@ namespace OpenTK.Graphics.ES31 /// /// The amount of data in machine units that can be read from the buffet object while used as an indexed target. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferRange")] [CLSCompliant(false)] public static void BindBufferRange(OpenTK.Graphics.ES31.All target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } @@ -3200,6 +3525,7 @@ namespace OpenTK.Graphics.ES31 /// /// The amount of data in machine units that can be read from the buffet object while used as an indexed target. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferRange")] [CLSCompliant(false)] public static void BindBufferRange(OpenTK.Graphics.ES31.All target, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } @@ -3222,10 +3548,99 @@ namespace OpenTK.Graphics.ES31 /// /// The amount of data in machine units that can be read from the buffet object while used as an indexed target. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferRange")] [CLSCompliant(false)] public static void BindBufferRange(OpenTK.Graphics.ES31.All target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] + /// Bind a range within a buffer object to an indexed buffer target + /// + /// + /// Specify the target of the bind operation. target must be one of AtomicCounterBuffer, ShaderStorageBuffer, TransformFeedbackBuffer or UniformBuffer. + /// + /// + /// Specify the index of the binding point within the array specified by target. + /// + /// + /// The name of a buffer object to bind to the specified binding point. + /// + /// + /// The starting offset in basic machine units into the buffer object buffer. + /// + /// + /// The amount of data in machine units that can be read from the buffet object while used as an indexed target. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferRange")] + [CLSCompliant(false)] + public static void BindBufferRange(OpenTK.Graphics.ES31.BufferTargetArb target, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Bind a range within a buffer object to an indexed buffer target + /// + /// + /// Specify the target of the bind operation. target must be one of AtomicCounterBuffer, ShaderStorageBuffer, TransformFeedbackBuffer or UniformBuffer. + /// + /// + /// Specify the index of the binding point within the array specified by target. + /// + /// + /// The name of a buffer object to bind to the specified binding point. + /// + /// + /// The starting offset in basic machine units into the buffer object buffer. + /// + /// + /// The amount of data in machine units that can be read from the buffet object while used as an indexed target. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferRange")] + [CLSCompliant(false)] + public static void BindBufferRange(OpenTK.Graphics.ES31.BufferTargetArb target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Bind a range within a buffer object to an indexed buffer target + /// + /// + /// Specify the target of the bind operation. target must be one of AtomicCounterBuffer, ShaderStorageBuffer, TransformFeedbackBuffer or UniformBuffer. + /// + /// + /// Specify the index of the binding point within the array specified by target. + /// + /// + /// The name of a buffer object to bind to the specified binding point. + /// + /// + /// The starting offset in basic machine units into the buffer object buffer. + /// + /// + /// The amount of data in machine units that can be read from the buffet object while used as an indexed target. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferRange")] + [CLSCompliant(false)] + public static void BindBufferRange(OpenTK.Graphics.ES31.BufferTargetArb target, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Bind a range within a buffer object to an indexed buffer target + /// + /// + /// Specify the target of the bind operation. target must be one of AtomicCounterBuffer, ShaderStorageBuffer, TransformFeedbackBuffer or UniformBuffer. + /// + /// + /// Specify the index of the binding point within the array specified by target. + /// + /// + /// The name of a buffer object to bind to the specified binding point. + /// + /// + /// The starting offset in basic machine units into the buffer object buffer. + /// + /// + /// The amount of data in machine units that can be read from the buffet object while used as an indexed target. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferRange")] + [CLSCompliant(false)] + public static void BindBufferRange(OpenTK.Graphics.ES31.BufferTargetArb target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } + /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a framebuffer to a framebuffer target /// @@ -3304,6 +3719,7 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the format that the elements of the image will be treated as for the purposes of formatted loads and stores. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glBindImageTexture")] [CLSCompliant(false)] public static void BindImageTexture(Int32 unit, Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES31.All access, OpenTK.Graphics.ES31.All format) { throw new BindingsNotRewrittenException(); } @@ -3334,8 +3750,65 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glBindImageTexture")] [CLSCompliant(false)] + public static void BindImageTexture(Int32 unit, Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES31.BufferAccessArb access, OpenTK.Graphics.ES31.InternalFormat format) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.1 or ES_VERSION_3_1] + /// Bind a level of a texture to an image unit + /// + /// + /// Specifies the index of the image unit to which to bind the texture + /// + /// + /// Specifies the name of the texture to bind to the image unit. + /// + /// + /// Specifies the level of the texture that is to be bound. + /// + /// + /// Specifies whether a layered texture binding is to be established. + /// + /// + /// If layered is False, specifies the layer of texture to be bound to the image unit. Ignored otherwise. + /// + /// + /// Specifies a token indicating the type of access that will be performed on the image. + /// + /// + /// Specifies the format that the elements of the image will be treated as for the purposes of formatted loads and stores. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glBindImageTexture")] + [CLSCompliant(false)] public static void BindImageTexture(UInt32 unit, UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES31.All access, OpenTK.Graphics.ES31.All format) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.1 or ES_VERSION_3_1] + /// Bind a level of a texture to an image unit + /// + /// + /// Specifies the index of the image unit to which to bind the texture + /// + /// + /// Specifies the name of the texture to bind to the image unit. + /// + /// + /// Specifies the level of the texture that is to be bound. + /// + /// + /// Specifies whether a layered texture binding is to be established. + /// + /// + /// If layered is False, specifies the layer of texture to be bound to the image unit. Ignored otherwise. + /// + /// + /// Specifies a token indicating the type of access that will be performed on the image. + /// + /// + /// Specifies the format that the elements of the image will be treated as for the purposes of formatted loads and stores. + /// + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glBindImageTexture")] + [CLSCompliant(false)] + public static void BindImageTexture(UInt32 unit, UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES31.BufferAccessArb access, OpenTK.Graphics.ES31.InternalFormat format) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.1 or ES_VERSION_3_1] /// Bind a program pipeline to the current context /// @@ -3499,6 +3972,7 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the name of a transform feedback object reserved by glGenTransformFeedbacks. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindTransformFeedback")] [CLSCompliant(false)] public static void BindTransformFeedback(OpenTK.Graphics.ES31.All target, Int32 id) { throw new BindingsNotRewrittenException(); } @@ -3512,10 +3986,37 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the name of a transform feedback object reserved by glGenTransformFeedbacks. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindTransformFeedback")] [CLSCompliant(false)] public static void BindTransformFeedback(OpenTK.Graphics.ES31.All target, UInt32 id) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] + /// Bind a transform feedback object + /// + /// + /// Specifies the target to which to bind the transform feedback object id. target must be TransformFeedback. + /// + /// + /// Specifies the name of a transform feedback object reserved by glGenTransformFeedbacks. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindTransformFeedback")] + [CLSCompliant(false)] + public static void BindTransformFeedback(OpenTK.Graphics.ES31.BindTransformFeedbackTarget target, Int32 id) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Bind a transform feedback object + /// + /// + /// Specifies the target to which to bind the transform feedback object id. target must be TransformFeedback. + /// + /// + /// Specifies the name of a transform feedback object reserved by glGenTransformFeedbacks. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindTransformFeedback")] + [CLSCompliant(false)] + public static void BindTransformFeedback(OpenTK.Graphics.ES31.BindTransformFeedbackTarget target, UInt32 id) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a vertex array object /// @@ -3609,7 +4110,7 @@ namespace OpenTK.Graphics.ES31 /// specifies how source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendEquation")] - public static void BlendEquation(OpenTK.Graphics.ES31.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } + public static void BlendEquation(OpenTK.Graphics.ES31.BlendEquationModeExt mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set the RGB blend equation and the alpha blend equation separately @@ -3659,7 +4160,26 @@ namespace OpenTK.Graphics.ES31 /// Specifies how the red, green, blue, and alpha destination blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha. ConstantColor, OneMinusConstantColor, ConstantAlpha, and OneMinusConstantAlpha. The initial value is Zero. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendFunc")] - public static void BlendFunc(OpenTK.Graphics.ES31.BlendingFactorSrc sfactor, OpenTK.Graphics.ES31.BlendingFactorDest dfactor) { throw new BindingsNotRewrittenException(); } + public static void BlendFunc(OpenTK.Graphics.ES31.BlendingFactor sfactor, OpenTK.Graphics.ES31.BlendingFactor dfactor) { throw new BindingsNotRewrittenException(); } + + /// [requires: v2.0 or ES_VERSION_2_0] + /// Specify pixel arithmetic for RGB and alpha components separately + /// + /// + /// Specifies how the red, green, and blue blending factors are computed. The initial value is One. + /// + /// + /// Specifies how the red, green, and blue destination blending factors are computed. The initial value is Zero. + /// + /// + /// Specified how the alpha source blending factor is computed. The initial value is One. + /// + /// + /// Specified how the alpha destination blending factor is computed. The initial value is Zero. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendFuncSeparate")] + public static void BlendFuncSeparate(OpenTK.Graphics.ES31.All sfactorRGB, OpenTK.Graphics.ES31.All dfactorRGB, OpenTK.Graphics.ES31.All sfactorAlpha, OpenTK.Graphics.ES31.All dfactorAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify pixel arithmetic for RGB and alpha components separately @@ -3677,7 +4197,7 @@ namespace OpenTK.Graphics.ES31 /// Specified how the alpha destination blending factor is computed. The initial value is Zero. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendFuncSeparate")] - public static void BlendFuncSeparate(OpenTK.Graphics.ES31.All sfactorRGB, OpenTK.Graphics.ES31.All dfactorRGB, OpenTK.Graphics.ES31.All sfactorAlpha, OpenTK.Graphics.ES31.All dfactorAlpha) { throw new BindingsNotRewrittenException(); } + public static void BlendFuncSeparate(OpenTK.Graphics.ES31.BlendingFactor sfactorRGB, OpenTK.Graphics.ES31.BlendingFactor dfactorRGB, OpenTK.Graphics.ES31.BlendingFactor sfactorAlpha, OpenTK.Graphics.ES31.BlendingFactor dfactorAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Copy a block of pixels from the read framebuffer to the draw framebuffer @@ -3750,7 +4270,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the interpolation to be applied if the image is stretched. Must be Nearest or Linear. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBlitFramebuffer")] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES31.ClearBufferMask mask, OpenTK.Graphics.ES31.All filter) { throw new BindingsNotRewrittenException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES31.ClearBufferMask mask, OpenTK.Graphics.ES31.BlitFramebufferFilter filter) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4588,7 +5108,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCheckFramebufferStatus")] - public static OpenTK.Graphics.ES31.All CheckFramebufferStatus(OpenTK.Graphics.ES31.All target) { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.ES31.FramebufferStatus CheckFramebufferStatus(OpenTK.Graphics.ES31.All target) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Check the completeness status of a framebuffer @@ -4597,7 +5117,7 @@ namespace OpenTK.Graphics.ES31 /// Specify the target of the framebuffer completeness check. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCheckFramebufferStatus")] - public static OpenTK.Graphics.ES31.All CheckFramebufferStatus(OpenTK.Graphics.ES31.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.ES31.FramebufferStatus CheckFramebufferStatus(OpenTK.Graphics.ES31.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Clear buffers to preset values @@ -4633,9 +5153,28 @@ namespace OpenTK.Graphics.ES31 /// /// The value to clear a stencil render buffer to. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfi")] public static void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] + /// Clear individual buffers of the currently bound draw framebuffer + /// + /// + /// Specify the buffer to clear. + /// + /// + /// Specify a particular draw buffer to clear. + /// + /// + /// The value to clear a depth render buffer to. + /// + /// + /// The value to clear a stencil render buffer to. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfi")] + public static void ClearBuffer(OpenTK.Graphics.ES31.Buffer buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer /// @@ -4648,6 +5187,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(buffer)] /// For color buffers, a pointer to a four-element vector specifying R, G, B and A values to clear the buffer to. For depth buffers, a pointer to a single depth value to clear the buffer to. For stencil buffers, a pointer to a single stencil value to clear the buffer to. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfv")] [CLSCompliant(false)] public static void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Single[] value) { throw new BindingsNotRewrittenException(); } @@ -4664,6 +5204,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(buffer)] /// For color buffers, a pointer to a four-element vector specifying R, G, B and A values to clear the buffer to. For depth buffers, a pointer to a single depth value to clear the buffer to. For stencil buffers, a pointer to a single stencil value to clear the buffer to. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfv")] [CLSCompliant(false)] public static void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref Single value) { throw new BindingsNotRewrittenException(); } @@ -4680,6 +5221,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(buffer)] /// For color buffers, a pointer to a four-element vector specifying R, G, B and A values to clear the buffer to. For depth buffers, a pointer to a single depth value to clear the buffer to. For stencil buffers, a pointer to a single stencil value to clear the buffer to. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfv")] [CLSCompliant(false)] public static unsafe void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Single* value) { throw new BindingsNotRewrittenException(); } @@ -4696,6 +5238,55 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(buffer)] /// For color buffers, a pointer to a four-element vector specifying R, G, B and A values to clear the buffer to. For depth buffers, a pointer to a single depth value to clear the buffer to. For stencil buffers, a pointer to a single stencil value to clear the buffer to. /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfv")] + [CLSCompliant(false)] + public static void ClearBuffer(OpenTK.Graphics.ES31.Buffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Single[] value) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Clear individual buffers of the currently bound draw framebuffer + /// + /// + /// Specify the buffer to clear. + /// + /// + /// Specify a particular draw buffer to clear. + /// + /// [length: COMPSIZE(buffer)] + /// For color buffers, a pointer to a four-element vector specifying R, G, B and A values to clear the buffer to. For depth buffers, a pointer to a single depth value to clear the buffer to. For stencil buffers, a pointer to a single stencil value to clear the buffer to. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfv")] + [CLSCompliant(false)] + public static void ClearBuffer(OpenTK.Graphics.ES31.Buffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref Single value) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Clear individual buffers of the currently bound draw framebuffer + /// + /// + /// Specify the buffer to clear. + /// + /// + /// Specify a particular draw buffer to clear. + /// + /// [length: COMPSIZE(buffer)] + /// For color buffers, a pointer to a four-element vector specifying R, G, B and A values to clear the buffer to. For depth buffers, a pointer to a single depth value to clear the buffer to. For stencil buffers, a pointer to a single stencil value to clear the buffer to. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfv")] + [CLSCompliant(false)] + public static unsafe void ClearBuffer(OpenTK.Graphics.ES31.Buffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Single* value) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Clear individual buffers of the currently bound draw framebuffer + /// + /// + /// Specify the buffer to clear. + /// + /// + /// Specify a particular draw buffer to clear. + /// + /// [length: COMPSIZE(buffer)] + /// For color buffers, a pointer to a four-element vector specifying R, G, B and A values to clear the buffer to. For depth buffers, a pointer to a single depth value to clear the buffer to. For stencil buffers, a pointer to a single stencil value to clear the buffer to. + /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferiv")] [CLSCompliant(false)] public static void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Int32[] value) { throw new BindingsNotRewrittenException(); } @@ -4712,6 +5303,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(buffer)] /// For color buffers, a pointer to a four-element vector specifying R, G, B and A values to clear the buffer to. For depth buffers, a pointer to a single depth value to clear the buffer to. For stencil buffers, a pointer to a single stencil value to clear the buffer to. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferiv")] [CLSCompliant(false)] public static void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref Int32 value) { throw new BindingsNotRewrittenException(); } @@ -4728,6 +5320,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(buffer)] /// For color buffers, a pointer to a four-element vector specifying R, G, B and A values to clear the buffer to. For depth buffers, a pointer to a single depth value to clear the buffer to. For stencil buffers, a pointer to a single stencil value to clear the buffer to. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferiv")] [CLSCompliant(false)] public static unsafe void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Int32* value) { throw new BindingsNotRewrittenException(); } @@ -4744,6 +5337,55 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(buffer)] /// For color buffers, a pointer to a four-element vector specifying R, G, B and A values to clear the buffer to. For depth buffers, a pointer to a single depth value to clear the buffer to. For stencil buffers, a pointer to a single stencil value to clear the buffer to. /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferiv")] + [CLSCompliant(false)] + public static void ClearBuffer(OpenTK.Graphics.ES31.Buffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Int32[] value) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Clear individual buffers of the currently bound draw framebuffer + /// + /// + /// Specify the buffer to clear. + /// + /// + /// Specify a particular draw buffer to clear. + /// + /// [length: COMPSIZE(buffer)] + /// For color buffers, a pointer to a four-element vector specifying R, G, B and A values to clear the buffer to. For depth buffers, a pointer to a single depth value to clear the buffer to. For stencil buffers, a pointer to a single stencil value to clear the buffer to. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferiv")] + [CLSCompliant(false)] + public static void ClearBuffer(OpenTK.Graphics.ES31.Buffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref Int32 value) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Clear individual buffers of the currently bound draw framebuffer + /// + /// + /// Specify the buffer to clear. + /// + /// + /// Specify a particular draw buffer to clear. + /// + /// [length: COMPSIZE(buffer)] + /// For color buffers, a pointer to a four-element vector specifying R, G, B and A values to clear the buffer to. For depth buffers, a pointer to a single depth value to clear the buffer to. For stencil buffers, a pointer to a single stencil value to clear the buffer to. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferiv")] + [CLSCompliant(false)] + public static unsafe void ClearBuffer(OpenTK.Graphics.ES31.Buffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Int32* value) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Clear individual buffers of the currently bound draw framebuffer + /// + /// + /// Specify the buffer to clear. + /// + /// + /// Specify a particular draw buffer to clear. + /// + /// [length: COMPSIZE(buffer)] + /// For color buffers, a pointer to a four-element vector specifying R, G, B and A values to clear the buffer to. For depth buffers, a pointer to a single depth value to clear the buffer to. For stencil buffers, a pointer to a single stencil value to clear the buffer to. + /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] [CLSCompliant(false)] public static void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32[] value) { throw new BindingsNotRewrittenException(); } @@ -4760,6 +5402,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(buffer)] /// For color buffers, a pointer to a four-element vector specifying R, G, B and A values to clear the buffer to. For depth buffers, a pointer to a single depth value to clear the buffer to. For stencil buffers, a pointer to a single stencil value to clear the buffer to. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] [CLSCompliant(false)] public static void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } @@ -4776,10 +5419,59 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(buffer)] /// For color buffers, a pointer to a four-element vector specifying R, G, B and A values to clear the buffer to. For depth buffers, a pointer to a single depth value to clear the buffer to. For stencil buffers, a pointer to a single stencil value to clear the buffer to. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] [CLSCompliant(false)] public static unsafe void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32* value) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] + /// Clear individual buffers of the currently bound draw framebuffer + /// + /// + /// Specify the buffer to clear. + /// + /// + /// Specify a particular draw buffer to clear. + /// + /// [length: COMPSIZE(buffer)] + /// For color buffers, a pointer to a four-element vector specifying R, G, B and A values to clear the buffer to. For depth buffers, a pointer to a single depth value to clear the buffer to. For stencil buffers, a pointer to a single stencil value to clear the buffer to. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] + [CLSCompliant(false)] + public static void ClearBuffer(OpenTK.Graphics.ES31.Buffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32[] value) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Clear individual buffers of the currently bound draw framebuffer + /// + /// + /// Specify the buffer to clear. + /// + /// + /// Specify a particular draw buffer to clear. + /// + /// [length: COMPSIZE(buffer)] + /// For color buffers, a pointer to a four-element vector specifying R, G, B and A values to clear the buffer to. For depth buffers, a pointer to a single depth value to clear the buffer to. For stencil buffers, a pointer to a single stencil value to clear the buffer to. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] + [CLSCompliant(false)] + public static void ClearBuffer(OpenTK.Graphics.ES31.Buffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Clear individual buffers of the currently bound draw framebuffer + /// + /// + /// Specify the buffer to clear. + /// + /// + /// Specify a particular draw buffer to clear. + /// + /// [length: COMPSIZE(buffer)] + /// For color buffers, a pointer to a four-element vector specifying R, G, B and A values to clear the buffer to. For depth buffers, a pointer to a single depth value to clear the buffer to. For stencil buffers, a pointer to a single stencil value to clear the buffer to. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] + [CLSCompliant(false)] + public static unsafe void ClearBuffer(OpenTK.Graphics.ES31.Buffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32* value) { throw new BindingsNotRewrittenException(); } + /// [requires: v2.0 or ES_VERSION_2_0] /// Specify clear values for the color buffers /// @@ -4828,9 +5520,27 @@ namespace OpenTK.Graphics.ES31 /// /// The timeout, specified in nanoseconds, for which the implementation should wait for sync to become signaled. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClientWaitSync")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All ClientWaitSync(IntPtr sync, Int32 flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.ES31.SyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES31.All flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Block and wait for a sync object to become signaled + /// + /// + /// The sync object whose status to wait on. + /// + /// + /// A bitfield controlling the command flushing behavior. flags may be SyncFlushCommandsBit. + /// + /// + /// The timeout, specified in nanoseconds, for which the implementation should wait for sync to become signaled. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClientWaitSync")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES31.SyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES31.All flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Block and wait for a sync object to become signaled @@ -4846,7 +5556,23 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClientWaitSync")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All ClientWaitSync(IntPtr sync, UInt32 flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.ES31.SyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES31.SyncObjectMask flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Block and wait for a sync object to become signaled + /// + /// + /// The sync object whose status to wait on. + /// + /// + /// A bitfield controlling the command flushing behavior. flags may be SyncFlushCommandsBit. + /// + /// + /// The timeout, specified in nanoseconds, for which the implementation should wait for sync to become signaled. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClientWaitSync")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES31.SyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES31.SyncObjectMask flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Enable and disable writing of frame buffer color components @@ -5080,7 +5806,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] - public static void CompressedTexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } + public static void CompressedTexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -5111,7 +5837,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] [CLSCompliant(false)] - public static void CompressedTexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] data) + public static void CompressedTexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] data) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -5144,7 +5870,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] [CLSCompliant(false)] - public static void CompressedTexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] data) + public static void CompressedTexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] data) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -5177,7 +5903,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] [CLSCompliant(false)] - public static void CompressedTexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] data) + public static void CompressedTexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] data) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -5209,7 +5935,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] - public static void CompressedTexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 data) + public static void CompressedTexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 data) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -5425,7 +6151,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexImage3D")] - public static void CompressedTexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } + public static void CompressedTexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image in a compressed format @@ -5459,7 +6185,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexImage3D")] [CLSCompliant(false)] - public static void CompressedTexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] data) + public static void CompressedTexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -5495,7 +6221,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexImage3D")] [CLSCompliant(false)] - public static void CompressedTexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] data) + public static void CompressedTexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -5531,7 +6257,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexImage3D")] [CLSCompliant(false)] - public static void CompressedTexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] data) + public static void CompressedTexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -5566,7 +6292,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexImage3D")] - public static void CompressedTexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 data) + public static void CompressedTexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -6362,6 +7088,7 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the size, in basic machine units, of the data to be copied from readtarget to writetarget. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCopyBufferSubData")] public static void CopyBufferSubData(OpenTK.Graphics.ES31.All readTarget, OpenTK.Graphics.ES31.All writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } @@ -6383,9 +7110,52 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the size, in basic machine units, of the data to be copied from readtarget to writetarget. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCopyBufferSubData")] public static void CopyBufferSubData(OpenTK.Graphics.ES31.All readTarget, OpenTK.Graphics.ES31.All writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] + /// Copy part of the data store of a buffer object to the data store of another buffer object + /// + /// + /// Specifies the target from whose data store data should be read. + /// + /// + /// Specifies the target to whose data store data should be written. + /// + /// + /// Specifies the offset, in basic machine units, within the data store of readtarget from which data should be read. + /// + /// + /// Specifies the offset, in basic machine units, within the data store of writetarget to which data should be written. + /// + /// + /// Specifies the size, in basic machine units, of the data to be copied from readtarget to writetarget. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCopyBufferSubData")] + public static void CopyBufferSubData(OpenTK.Graphics.ES31.CopyBufferSubDataTarget readTarget, OpenTK.Graphics.ES31.CopyBufferSubDataTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Copy part of the data store of a buffer object to the data store of another buffer object + /// + /// + /// Specifies the target from whose data store data should be read. + /// + /// + /// Specifies the target to whose data store data should be written. + /// + /// + /// Specifies the offset, in basic machine units, within the data store of readtarget from which data should be read. + /// + /// + /// Specifies the offset, in basic machine units, within the data store of writetarget to which data should be written. + /// + /// + /// Specifies the size, in basic machine units, of the data to be copied from readtarget to writetarget. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCopyBufferSubData")] + public static void CopyBufferSubData(OpenTK.Graphics.ES31.CopyBufferSubDataTarget readTarget, OpenTK.Graphics.ES31.CopyBufferSubDataTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } + /// [requires: v2.0 or ES_VERSION_2_0] /// Copy pixels into a 2D texture image /// @@ -6445,7 +7215,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the width of the border. Must be 0. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCopyTexImage2D")] - public static void CopyTexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } + public static void CopyTexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Copy a two-dimensional texture subimage @@ -6587,9 +7357,35 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the type of shader to be created. VertexShader, FragmentShader, or ComputeShader, /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCreateShader")] public static Int32 CreateShader(OpenTK.Graphics.ES31.All type) { throw new BindingsNotRewrittenException(); } + /// [requires: v2.0 or ES_VERSION_2_0] + /// Creates a shader object + /// + /// + /// Specifies the type of shader to be created. VertexShader, FragmentShader, or ComputeShader, + /// + [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCreateShader")] + public static Int32 CreateShader(OpenTK.Graphics.ES31.ShaderType type) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.1 or ES_VERSION_3_1] + /// Create a stand-alone program from an array of null-terminated source code strings + /// + /// + /// Specifies the type of shader to create. + /// + /// + /// Specifies the number of source code strings in the array strings. + /// + /// [length: count] + /// Specifies the address of an array of pointers to source code strings from which to create the program object. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glCreateShaderProgramv")] + public static Int32 CreateShaderProgram(OpenTK.Graphics.ES31.All type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.1 or ES_VERSION_3_1] /// Create a stand-alone program from an array of null-terminated source code strings /// @@ -6603,7 +7399,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the address of an array of pointers to source code strings from which to create the program object. /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glCreateShaderProgramv")] - public static Int32 CreateShaderProgram(OpenTK.Graphics.ES31.All type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new BindingsNotRewrittenException(); } + public static Int32 CreateShaderProgram(OpenTK.Graphics.ES31.ShaderType type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify whether front- or back-facing polygons can be culled @@ -6716,6 +7512,7 @@ namespace OpenTK.Graphics.ES31 /// /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } @@ -6741,6 +7538,7 @@ namespace OpenTK.Graphics.ES31 /// /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } @@ -6766,6 +7564,7 @@ namespace OpenTK.Graphics.ES31 /// /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] public static unsafe void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } @@ -6791,6 +7590,7 @@ namespace OpenTK.Graphics.ES31 /// /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } @@ -6816,6 +7616,7 @@ namespace OpenTK.Graphics.ES31 /// /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } @@ -6841,10 +7642,161 @@ namespace OpenTK.Graphics.ES31 /// /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] public static unsafe void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } + /// + /// Control the reporting of debug messages in a debug context + /// + /// + /// The source of debug messages to enable or disable. + /// + /// + /// The type of debug messages to enable or disable. + /// + /// + /// The severity of debug messages to enable or disable. + /// + /// + /// The length of the array ids. + /// + /// [length: count] + /// The address of an array of unsigned integers contianing the ids of the messages to enable or disable. + /// + /// + /// A Boolean flag determining whether the selected messages should be enabled or disabled. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] + public static void DebugMessageControl(OpenTK.Graphics.ES31.DebugSource source, OpenTK.Graphics.ES31.DebugType type, OpenTK.Graphics.ES31.DebugSeverity severity, Int32 count, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } + + /// + /// Control the reporting of debug messages in a debug context + /// + /// + /// The source of debug messages to enable or disable. + /// + /// + /// The type of debug messages to enable or disable. + /// + /// + /// The severity of debug messages to enable or disable. + /// + /// + /// The length of the array ids. + /// + /// [length: count] + /// The address of an array of unsigned integers contianing the ids of the messages to enable or disable. + /// + /// + /// A Boolean flag determining whether the selected messages should be enabled or disabled. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] + public static void DebugMessageControl(OpenTK.Graphics.ES31.DebugSource source, OpenTK.Graphics.ES31.DebugType type, OpenTK.Graphics.ES31.DebugSeverity severity, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } + + /// + /// Control the reporting of debug messages in a debug context + /// + /// + /// The source of debug messages to enable or disable. + /// + /// + /// The type of debug messages to enable or disable. + /// + /// + /// The severity of debug messages to enable or disable. + /// + /// + /// The length of the array ids. + /// + /// [length: count] + /// The address of an array of unsigned integers contianing the ids of the messages to enable or disable. + /// + /// + /// A Boolean flag determining whether the selected messages should be enabled or disabled. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES31.DebugSource source, OpenTK.Graphics.ES31.DebugType type, OpenTK.Graphics.ES31.DebugSeverity severity, Int32 count, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } + + /// + /// Control the reporting of debug messages in a debug context + /// + /// + /// The source of debug messages to enable or disable. + /// + /// + /// The type of debug messages to enable or disable. + /// + /// + /// The severity of debug messages to enable or disable. + /// + /// + /// The length of the array ids. + /// + /// [length: count] + /// The address of an array of unsigned integers contianing the ids of the messages to enable or disable. + /// + /// + /// A Boolean flag determining whether the selected messages should be enabled or disabled. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] + public static void DebugMessageControl(OpenTK.Graphics.ES31.DebugSource source, OpenTK.Graphics.ES31.DebugType type, OpenTK.Graphics.ES31.DebugSeverity severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } + + /// + /// Control the reporting of debug messages in a debug context + /// + /// + /// The source of debug messages to enable or disable. + /// + /// + /// The type of debug messages to enable or disable. + /// + /// + /// The severity of debug messages to enable or disable. + /// + /// + /// The length of the array ids. + /// + /// [length: count] + /// The address of an array of unsigned integers contianing the ids of the messages to enable or disable. + /// + /// + /// A Boolean flag determining whether the selected messages should be enabled or disabled. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] + public static void DebugMessageControl(OpenTK.Graphics.ES31.DebugSource source, OpenTK.Graphics.ES31.DebugType type, OpenTK.Graphics.ES31.DebugSeverity severity, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } + + /// + /// Control the reporting of debug messages in a debug context + /// + /// + /// The source of debug messages to enable or disable. + /// + /// + /// The type of debug messages to enable or disable. + /// + /// + /// The severity of debug messages to enable or disable. + /// + /// + /// The length of the array ids. + /// + /// [length: count] + /// The address of an array of unsigned integers contianing the ids of the messages to enable or disable. + /// + /// + /// A Boolean flag determining whether the selected messages should be enabled or disabled. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] + [CLSCompliant(false)] + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES31.DebugSource source, OpenTK.Graphics.ES31.DebugType type, OpenTK.Graphics.ES31.DebugSeverity severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } + /// /// Inject an application-supplied message into the debug message queue /// @@ -6866,6 +7818,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(buf,length)] /// The address of a character array containing the message to insert. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsert")] [CLSCompliant(false)] public static void DebugMessageInsert(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, Int32 id, OpenTK.Graphics.ES31.All severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new BindingsNotRewrittenException(); } @@ -6891,10 +7844,61 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(buf,length)] /// The address of a character array containing the message to insert. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsert")] [CLSCompliant(false)] public static void DebugMessageInsert(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, UInt32 id, OpenTK.Graphics.ES31.All severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new BindingsNotRewrittenException(); } + /// + /// Inject an application-supplied message into the debug message queue + /// + /// + /// The source of the debug message to insert. + /// + /// + /// The type of the debug message insert. + /// + /// + /// The user-supplied identifier of the message to insert. + /// + /// + /// The severity of the debug messages to insert. + /// + /// + /// The length string contained in the character array whose address is given by message. + /// + /// [length: COMPSIZE(buf,length)] + /// The address of a character array containing the message to insert. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsert")] + [CLSCompliant(false)] + public static void DebugMessageInsert(OpenTK.Graphics.ES31.DebugSource source, OpenTK.Graphics.ES31.DebugType type, Int32 id, OpenTK.Graphics.ES31.DebugSeverity severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new BindingsNotRewrittenException(); } + + /// + /// Inject an application-supplied message into the debug message queue + /// + /// + /// The source of the debug message to insert. + /// + /// + /// The type of the debug message insert. + /// + /// + /// The user-supplied identifier of the message to insert. + /// + /// + /// The severity of the debug messages to insert. + /// + /// + /// The length string contained in the character array whose address is given by message. + /// + /// [length: COMPSIZE(buf,length)] + /// The address of a character array containing the message to insert. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsert")] + [CLSCompliant(false)] + public static void DebugMessageInsert(OpenTK.Graphics.ES31.DebugSource source, OpenTK.Graphics.ES31.DebugType type, UInt32 id, OpenTK.Graphics.ES31.DebugSeverity severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new BindingsNotRewrittenException(); } + /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects /// @@ -8521,7 +9525,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the address of a structure containing the draw parameters. /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDrawElementsIndirect")] - public static void DrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.All type, IntPtr indirect) { throw new BindingsNotRewrittenException(); } + public static void DrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.DrawElementsType type, IntPtr indirect) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Render indexed primitives from array data, taking parameters from memory @@ -8537,7 +9541,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDrawElementsIndirect")] [CLSCompliant(false)] - public static void DrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute] T2[] indirect) + public static void DrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute] T2[] indirect) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -8555,7 +9559,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDrawElementsIndirect")] [CLSCompliant(false)] - public static void DrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute] T2[,] indirect) + public static void DrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute] T2[,] indirect) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -8573,7 +9577,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDrawElementsIndirect")] [CLSCompliant(false)] - public static void DrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute] T2[,,] indirect) + public static void DrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute] T2[,,] indirect) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -8590,7 +9594,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the address of a structure containing the draw parameters. /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDrawElementsIndirect")] - public static void DrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute] ref T2 indirect) + public static void DrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute] ref T2 indirect) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -9414,9 +10418,15 @@ namespace OpenTK.Graphics.ES31 /// [requires: v3.0 or ES_VERSION_3_0] /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glEndQuery")] public static void EndQuery(OpenTK.Graphics.ES31.All target) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glEndQuery")] + public static void EndQuery(OpenTK.Graphics.ES31.QueryTarget target) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glEndTransformFeedback")] public static void EndTransformFeedback() { throw new BindingsNotRewrittenException(); } @@ -9430,6 +10440,7 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies a bitwise combination of flags controlling the behavior of the sync object. No flags are presently defined for this operation and flags must be zero.flags is a placeholder for anticipated future extensions of fence sync object capabilities. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFenceSync")] [CLSCompliant(false)] public static IntPtr FenceSync(OpenTK.Graphics.ES31.All condition, Int32 flags) { throw new BindingsNotRewrittenException(); } @@ -9443,10 +10454,37 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies a bitwise combination of flags controlling the behavior of the sync object. No flags are presently defined for this operation and flags must be zero.flags is a placeholder for anticipated future extensions of fence sync object capabilities. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFenceSync")] [CLSCompliant(false)] public static IntPtr FenceSync(OpenTK.Graphics.ES31.All condition, UInt32 flags) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] + /// Create a new sync object and insert it into the GL command stream + /// + /// + /// Specifies the condition that must be met to set the sync object's state to signaled. condition must be SyncGpuCommandsComplete. + /// + /// + /// Specifies a bitwise combination of flags controlling the behavior of the sync object. No flags are presently defined for this operation and flags must be zero.flags is a placeholder for anticipated future extensions of fence sync object capabilities. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFenceSync")] + [CLSCompliant(false)] + public static IntPtr FenceSync(OpenTK.Graphics.ES31.SyncCondition condition, Int32 flags) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Create a new sync object and insert it into the GL command stream + /// + /// + /// Specifies the condition that must be met to set the sync object's state to signaled. condition must be SyncGpuCommandsComplete. + /// + /// + /// Specifies a bitwise combination of flags controlling the behavior of the sync object. No flags are presently defined for this operation and flags must be zero.flags is a placeholder for anticipated future extensions of fence sync object capabilities. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFenceSync")] + [CLSCompliant(false)] + public static IntPtr FenceSync(OpenTK.Graphics.ES31.SyncCondition condition, UInt32 flags) { throw new BindingsNotRewrittenException(); } + /// [requires: v2.0 or ES_VERSION_2_0] /// Block until all GL execution is complete /// @@ -9533,9 +10571,25 @@ namespace OpenTK.Graphics.ES31 /// /// The new value for the parameter named pname. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glFramebufferParameteri")] public static void FramebufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.1 or ES_VERSION_3_1] + /// Set a named parameter of a framebuffer + /// + /// + /// The target of the operation, which must be ReadFramebuffer, DrawFramebuffer or Framebuffer. + /// + /// + /// A token indicating the parameter to be modified. + /// + /// + /// The new value for the parameter named pname. + /// + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glFramebufferParameteri")] + public static void FramebufferParameter(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } + /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a renderbuffer as a logical buffer to the currently bound framebuffer object /// @@ -9680,7 +10734,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")] [CLSCompliant(false)] - public static void FramebufferTexture2D(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.All textarget, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } + public static void FramebufferTexture2D(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.TextureTarget textarget, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -9702,7 +10756,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")] [CLSCompliant(false)] - public static void FramebufferTexture2D(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.All textarget, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } + public static void FramebufferTexture2D(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.TextureTarget textarget, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Attach a single layer of a texture to a framebuffer @@ -9904,9 +10958,19 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the target to which the texture whose mimaps to generate is bound. target must be Texture2D, Texture3D, Texture2DArray or TextureCubeMap. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenerateMipmap")] public static void GenerateMipmap(OpenTK.Graphics.ES31.All target) { throw new BindingsNotRewrittenException(); } + /// [requires: v2.0 or ES_VERSION_2_0] + /// Generate mipmaps for a specified texture target + /// + /// + /// Specifies the target to which the texture whose mimaps to generate is bound. target must be Texture2D, Texture3D, Texture2DArray or TextureCubeMap. + /// + [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenerateMipmap")] + public static void GenerateMipmap(OpenTK.Graphics.ES31.TextureTarget target) { throw new BindingsNotRewrittenException(); } + /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names /// @@ -10611,6 +11675,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// Returns a null terminated string containing the name of the attribute variable. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] public static void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } @@ -10641,6 +11706,35 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] + public static void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.AttributeType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } + + /// [requires: v2.0 or ES_VERSION_2_0] + /// Returns information about an active attribute variable for the specified program object + /// + /// + /// Specifies the program object to be queried. + /// + /// + /// Specifies the index of the attribute variable to be queried. + /// + /// + /// Specifies the maximum number of characters OpenGL is allowed to write in the character buffer indicated by name. + /// + /// [length: 1] + /// Returns the number of characters actually written by OpenGL in the string indicated by name (excluding the null terminator) if a value other than Null is passed. + /// + /// [length: 1] + /// Returns the size of the attribute variable. + /// + /// [length: 1] + /// Returns the data type of the attribute variable. + /// + /// [length: bufSize] + /// Returns a null terminated string containing the name of the attribute variable. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] + [CLSCompliant(false)] public static unsafe void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] @@ -10669,6 +11763,35 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] + public static unsafe void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.AttributeType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } + + /// [requires: v2.0 or ES_VERSION_2_0] + /// Returns information about an active attribute variable for the specified program object + /// + /// + /// Specifies the program object to be queried. + /// + /// + /// Specifies the index of the attribute variable to be queried. + /// + /// + /// Specifies the maximum number of characters OpenGL is allowed to write in the character buffer indicated by name. + /// + /// [length: 1] + /// Returns the number of characters actually written by OpenGL in the string indicated by name (excluding the null terminator) if a value other than Null is passed. + /// + /// [length: 1] + /// Returns the size of the attribute variable. + /// + /// [length: 1] + /// Returns the data type of the attribute variable. + /// + /// [length: bufSize] + /// Returns a null terminated string containing the name of the attribute variable. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] + [CLSCompliant(false)] public static void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] @@ -10697,8 +11820,65 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] + public static void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.AttributeType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } + + /// [requires: v2.0 or ES_VERSION_2_0] + /// Returns information about an active attribute variable for the specified program object + /// + /// + /// Specifies the program object to be queried. + /// + /// + /// Specifies the index of the attribute variable to be queried. + /// + /// + /// Specifies the maximum number of characters OpenGL is allowed to write in the character buffer indicated by name. + /// + /// [length: 1] + /// Returns the number of characters actually written by OpenGL in the string indicated by name (excluding the null terminator) if a value other than Null is passed. + /// + /// [length: 1] + /// Returns the size of the attribute variable. + /// + /// [length: 1] + /// Returns the data type of the attribute variable. + /// + /// [length: bufSize] + /// Returns a null terminated string containing the name of the attribute variable. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] + [CLSCompliant(false)] public static unsafe void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } + /// [requires: v2.0 or ES_VERSION_2_0] + /// Returns information about an active attribute variable for the specified program object + /// + /// + /// Specifies the program object to be queried. + /// + /// + /// Specifies the index of the attribute variable to be queried. + /// + /// + /// Specifies the maximum number of characters OpenGL is allowed to write in the character buffer indicated by name. + /// + /// [length: 1] + /// Returns the number of characters actually written by OpenGL in the string indicated by name (excluding the null terminator) if a value other than Null is passed. + /// + /// [length: 1] + /// Returns the size of the attribute variable. + /// + /// [length: 1] + /// Returns the data type of the attribute variable. + /// + /// [length: bufSize] + /// Returns a null terminated string containing the name of the attribute variable. + /// + [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] + [CLSCompliant(false)] + public static unsafe void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.AttributeType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } + /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active uniform variable for the specified program object /// @@ -10723,6 +11903,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// Returns a null terminated string containing the name of the uniform variable. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] public static void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } @@ -10753,6 +11934,35 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] + public static void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.AttributeType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } + + /// [requires: v2.0 or ES_VERSION_2_0] + /// Returns information about an active uniform variable for the specified program object + /// + /// + /// Specifies the program object to be queried. + /// + /// + /// Specifies the index of the uniform variable to be queried. + /// + /// + /// Specifies the maximum number of characters OpenGL is allowed to write in the character buffer indicated by name. + /// + /// [length: 1] + /// Returns the number of characters actually written by OpenGL in the string indicated by name (excluding the null terminator) if a value other than Null is passed. + /// + /// [length: 1] + /// Returns the size of the uniform variable. + /// + /// [length: 1] + /// Returns the data type of the uniform variable. + /// + /// [length: bufSize] + /// Returns a null terminated string containing the name of the uniform variable. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] + [CLSCompliant(false)] public static unsafe void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] @@ -10781,6 +11991,35 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] + public static unsafe void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.AttributeType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } + + /// [requires: v2.0 or ES_VERSION_2_0] + /// Returns information about an active uniform variable for the specified program object + /// + /// + /// Specifies the program object to be queried. + /// + /// + /// Specifies the index of the uniform variable to be queried. + /// + /// + /// Specifies the maximum number of characters OpenGL is allowed to write in the character buffer indicated by name. + /// + /// [length: 1] + /// Returns the number of characters actually written by OpenGL in the string indicated by name (excluding the null terminator) if a value other than Null is passed. + /// + /// [length: 1] + /// Returns the size of the uniform variable. + /// + /// [length: 1] + /// Returns the data type of the uniform variable. + /// + /// [length: bufSize] + /// Returns a null terminated string containing the name of the uniform variable. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] + [CLSCompliant(false)] public static void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] @@ -10809,8 +12048,65 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] + public static void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.AttributeType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } + + /// [requires: v2.0 or ES_VERSION_2_0] + /// Returns information about an active uniform variable for the specified program object + /// + /// + /// Specifies the program object to be queried. + /// + /// + /// Specifies the index of the uniform variable to be queried. + /// + /// + /// Specifies the maximum number of characters OpenGL is allowed to write in the character buffer indicated by name. + /// + /// [length: 1] + /// Returns the number of characters actually written by OpenGL in the string indicated by name (excluding the null terminator) if a value other than Null is passed. + /// + /// [length: 1] + /// Returns the size of the uniform variable. + /// + /// [length: 1] + /// Returns the data type of the uniform variable. + /// + /// [length: bufSize] + /// Returns a null terminated string containing the name of the uniform variable. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] + [CLSCompliant(false)] public static unsafe void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } + /// [requires: v2.0 or ES_VERSION_2_0] + /// Returns information about an active uniform variable for the specified program object + /// + /// + /// Specifies the program object to be queried. + /// + /// + /// Specifies the index of the uniform variable to be queried. + /// + /// + /// Specifies the maximum number of characters OpenGL is allowed to write in the character buffer indicated by name. + /// + /// [length: 1] + /// Returns the number of characters actually written by OpenGL in the string indicated by name (excluding the null terminator) if a value other than Null is passed. + /// + /// [length: 1] + /// Returns the size of the uniform variable. + /// + /// [length: 1] + /// Returns the data type of the uniform variable. + /// + /// [length: bufSize] + /// Returns a null terminated string containing the name of the uniform variable. + /// + [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] + [CLSCompliant(false)] + public static unsafe void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.AttributeType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] /// Query information about an active uniform block /// @@ -10826,6 +12122,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(program,uniformBlockIndex,pname)] /// Specifies the address of a variable to receive the result of the query. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -10845,6 +12142,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(program,uniformBlockIndex,pname)] /// Specifies the address of a variable to receive the result of the query. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -10864,6 +12162,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(program,uniformBlockIndex,pname)] /// Specifies the address of a variable to receive the result of the query. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] public static unsafe void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } @@ -10885,6 +12184,64 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] + public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES31.UniformBlockPName pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Query information about an active uniform block + /// + /// + /// Specifies the name of a program containing the uniform block. + /// + /// + /// Specifies the index of the uniform block within program. + /// + /// + /// Specifies the name of the parameter to query. + /// + /// [length: COMPSIZE(program,uniformBlockIndex,pname)] + /// Specifies the address of a variable to receive the result of the query. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] + [CLSCompliant(false)] + public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES31.UniformBlockPName pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Query information about an active uniform block + /// + /// + /// Specifies the name of a program containing the uniform block. + /// + /// + /// Specifies the index of the uniform block within program. + /// + /// + /// Specifies the name of the parameter to query. + /// + /// [length: COMPSIZE(program,uniformBlockIndex,pname)] + /// Specifies the address of a variable to receive the result of the query. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] + [CLSCompliant(false)] + public static unsafe void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES31.UniformBlockPName pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Query information about an active uniform block + /// + /// + /// Specifies the name of a program containing the uniform block. + /// + /// + /// Specifies the index of the uniform block within program. + /// + /// + /// Specifies the name of the parameter to query. + /// + /// [length: COMPSIZE(program,uniformBlockIndex,pname)] + /// Specifies the address of a variable to receive the result of the query. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] + [CLSCompliant(false)] public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] @@ -10902,6 +12259,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(program,uniformBlockIndex,pname)] /// Specifies the address of a variable to receive the result of the query. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -10921,10 +12279,68 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(program,uniformBlockIndex,pname)] /// Specifies the address of a variable to receive the result of the query. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] public static unsafe void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] + /// Query information about an active uniform block + /// + /// + /// Specifies the name of a program containing the uniform block. + /// + /// + /// Specifies the index of the uniform block within program. + /// + /// + /// Specifies the name of the parameter to query. + /// + /// [length: COMPSIZE(program,uniformBlockIndex,pname)] + /// Specifies the address of a variable to receive the result of the query. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] + [CLSCompliant(false)] + public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES31.UniformBlockPName pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Query information about an active uniform block + /// + /// + /// Specifies the name of a program containing the uniform block. + /// + /// + /// Specifies the index of the uniform block within program. + /// + /// + /// Specifies the name of the parameter to query. + /// + /// [length: COMPSIZE(program,uniformBlockIndex,pname)] + /// Specifies the address of a variable to receive the result of the query. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] + [CLSCompliant(false)] + public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES31.UniformBlockPName pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Query information about an active uniform block + /// + /// + /// Specifies the name of a program containing the uniform block. + /// + /// + /// Specifies the index of the uniform block within program. + /// + /// + /// Specifies the name of the parameter to query. + /// + /// [length: COMPSIZE(program,uniformBlockIndex,pname)] + /// Specifies the address of a variable to receive the result of the query. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] + [CLSCompliant(false)] + public static unsafe void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES31.UniformBlockPName pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the name of an active uniform block /// @@ -11031,6 +12447,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(uniformCount,pname)] /// Specifies the address of an array of uniformCount integers which are to receive the value of pname for each uniform in uniformIndices. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] public static void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] Int32[] uniformIndices, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -11055,6 +12472,29 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] + public static void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] Int32[] uniformIndices, OpenTK.Graphics.ES31.UniformPName pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Returns information about several active uniform variables for the specified program object + /// + /// + /// Specifies the program object to be queried. + /// + /// + /// Specifies both the number of elements in the array of indices uniformIndices and the number of parameters written to params upon successful return. + /// + /// [length: uniformCount] + /// Specifies the address of an array of uniformCount integers containing the indices of uniforms within program whose parameter pname should be queried. + /// + /// + /// Specifies the property of each uniform in uniformIndices that should be written into the corresponding element of params. + /// + /// [length: COMPSIZE(uniformCount,pname)] + /// Specifies the address of an array of uniformCount integers which are to receive the value of pname for each uniform in uniformIndices. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] + [CLSCompliant(false)] public static void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] ref Int32 uniformIndices, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] @@ -11077,6 +12517,29 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] + public static void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] ref Int32 uniformIndices, OpenTK.Graphics.ES31.UniformPName pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Returns information about several active uniform variables for the specified program object + /// + /// + /// Specifies the program object to be queried. + /// + /// + /// Specifies both the number of elements in the array of indices uniformIndices and the number of parameters written to params upon successful return. + /// + /// [length: uniformCount] + /// Specifies the address of an array of uniformCount integers containing the indices of uniforms within program whose parameter pname should be queried. + /// + /// + /// Specifies the property of each uniform in uniformIndices that should be written into the corresponding element of params. + /// + /// [length: COMPSIZE(uniformCount,pname)] + /// Specifies the address of an array of uniformCount integers which are to receive the value of pname for each uniform in uniformIndices. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] + [CLSCompliant(false)] public static unsafe void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] Int32* uniformIndices, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] @@ -11099,6 +12562,29 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] + public static unsafe void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] Int32* uniformIndices, OpenTK.Graphics.ES31.UniformPName pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Returns information about several active uniform variables for the specified program object + /// + /// + /// Specifies the program object to be queried. + /// + /// + /// Specifies both the number of elements in the array of indices uniformIndices and the number of parameters written to params upon successful return. + /// + /// [length: uniformCount] + /// Specifies the address of an array of uniformCount integers containing the indices of uniforms within program whose parameter pname should be queried. + /// + /// + /// Specifies the property of each uniform in uniformIndices that should be written into the corresponding element of params. + /// + /// [length: COMPSIZE(uniformCount,pname)] + /// Specifies the address of an array of uniformCount integers which are to receive the value of pname for each uniform in uniformIndices. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] + [CLSCompliant(false)] public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32[] uniformIndices, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] @@ -11121,6 +12607,29 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] + public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32[] uniformIndices, OpenTK.Graphics.ES31.UniformPName pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Returns information about several active uniform variables for the specified program object + /// + /// + /// Specifies the program object to be queried. + /// + /// + /// Specifies both the number of elements in the array of indices uniformIndices and the number of parameters written to params upon successful return. + /// + /// [length: uniformCount] + /// Specifies the address of an array of uniformCount integers containing the indices of uniforms within program whose parameter pname should be queried. + /// + /// + /// Specifies the property of each uniform in uniformIndices that should be written into the corresponding element of params. + /// + /// [length: COMPSIZE(uniformCount,pname)] + /// Specifies the address of an array of uniformCount integers which are to receive the value of pname for each uniform in uniformIndices. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] + [CLSCompliant(false)] public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] ref UInt32 uniformIndices, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] @@ -11143,8 +12652,53 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] + public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] ref UInt32 uniformIndices, OpenTK.Graphics.ES31.UniformPName pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Returns information about several active uniform variables for the specified program object + /// + /// + /// Specifies the program object to be queried. + /// + /// + /// Specifies both the number of elements in the array of indices uniformIndices and the number of parameters written to params upon successful return. + /// + /// [length: uniformCount] + /// Specifies the address of an array of uniformCount integers containing the indices of uniforms within program whose parameter pname should be queried. + /// + /// + /// Specifies the property of each uniform in uniformIndices that should be written into the corresponding element of params. + /// + /// [length: COMPSIZE(uniformCount,pname)] + /// Specifies the address of an array of uniformCount integers which are to receive the value of pname for each uniform in uniformIndices. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] + [CLSCompliant(false)] public static unsafe void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32* uniformIndices, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] + /// Returns information about several active uniform variables for the specified program object + /// + /// + /// Specifies the program object to be queried. + /// + /// + /// Specifies both the number of elements in the array of indices uniformIndices and the number of parameters written to params upon successful return. + /// + /// [length: uniformCount] + /// Specifies the address of an array of uniformCount integers containing the indices of uniforms within program whose parameter pname should be queried. + /// + /// + /// Specifies the property of each uniform in uniformIndices that should be written into the corresponding element of params. + /// + /// [length: COMPSIZE(uniformCount,pname)] + /// Specifies the address of an array of uniformCount integers which are to receive the value of pname for each uniform in uniformIndices. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] + [CLSCompliant(false)] + public static unsafe void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32* uniformIndices, OpenTK.Graphics.ES31.UniformPName pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the handles of the shader objects attached to a program object /// @@ -11289,6 +12843,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetBooleani_v")] [CLSCompliant(false)] public static void GetBoolean(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new BindingsNotRewrittenException(); } @@ -11297,6 +12852,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetBooleani_v")] [CLSCompliant(false)] public static void GetBoolean(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new BindingsNotRewrittenException(); } @@ -11305,6 +12861,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetBooleani_v")] [CLSCompliant(false)] public static unsafe void GetBoolean(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new BindingsNotRewrittenException(); } @@ -11313,6 +12870,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetBooleani_v")] [CLSCompliant(false)] public static void GetBoolean(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new BindingsNotRewrittenException(); } @@ -11321,6 +12879,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetBooleani_v")] [CLSCompliant(false)] public static void GetBoolean(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new BindingsNotRewrittenException(); } @@ -11329,10 +12888,59 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetBooleani_v")] [CLSCompliant(false)] public static unsafe void GetBoolean(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.1 or ES_VERSION_3_1] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetBooleani_v")] + [CLSCompliant(false)] + public static void GetBoolean(OpenTK.Graphics.ES31.BufferTargetArb target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.1 or ES_VERSION_3_1] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetBooleani_v")] + [CLSCompliant(false)] + public static void GetBoolean(OpenTK.Graphics.ES31.BufferTargetArb target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.1 or ES_VERSION_3_1] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetBooleani_v")] + [CLSCompliant(false)] + public static unsafe void GetBoolean(OpenTK.Graphics.ES31.BufferTargetArb target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.1 or ES_VERSION_3_1] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetBooleani_v")] + [CLSCompliant(false)] + public static void GetBoolean(OpenTK.Graphics.ES31.BufferTargetArb target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.1 or ES_VERSION_3_1] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetBooleani_v")] + [CLSCompliant(false)] + public static void GetBoolean(OpenTK.Graphics.ES31.BufferTargetArb target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.1 or ES_VERSION_3_1] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetBooleani_v")] + [CLSCompliant(false)] + public static unsafe void GetBoolean(OpenTK.Graphics.ES31.BufferTargetArb target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new BindingsNotRewrittenException(); } + /// [requires: v2.0 or ES_VERSION_2_0] /// [Obsolete("Use strongly-typed overload instead")] @@ -11793,6 +13401,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// The address of an array of characters that will receive the messages. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } @@ -11824,6 +13433,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// The address of an array of characters that will receive the messages. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } @@ -11855,6 +13465,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// The address of an array of characters that will receive the messages. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } @@ -11888,6 +13499,100 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.DebugSource[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + + /// + /// Retrieve messages from the debug message log + /// + /// + /// The number of debug messages to retrieve from the log. + /// + /// + /// The size of the buffer whose address is given by messageLog. + /// + /// [length: count] + /// The address of an array of variables to receive the sources of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the types of the retrieved messages. + /// + /// [length: count] + /// The address of an array of unsigned integers to receive the ids of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the severites of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the lengths of the received messages. + /// + /// [length: bufSize] + /// The address of an array of characters that will receive the messages. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.DebugSource sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + + /// + /// Retrieve messages from the debug message log + /// + /// + /// The number of debug messages to retrieve from the log. + /// + /// + /// The size of the buffer whose address is given by messageLog. + /// + /// [length: count] + /// The address of an array of variables to receive the sources of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the types of the retrieved messages. + /// + /// [length: count] + /// The address of an array of unsigned integers to receive the ids of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the severites of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the lengths of the received messages. + /// + /// [length: bufSize] + /// The address of an array of characters that will receive the messages. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.DebugSource* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + + /// + /// Retrieve messages from the debug message log + /// + /// + /// The number of debug messages to retrieve from the log. + /// + /// + /// The size of the buffer whose address is given by messageLog. + /// + /// [length: count] + /// The address of an array of variables to receive the sources of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the types of the retrieved messages. + /// + /// [length: count] + /// The address of an array of unsigned integers to receive the ids of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the severites of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the lengths of the received messages. + /// + /// [length: bufSize] + /// The address of an array of characters that will receive the messages. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// @@ -11917,6 +13622,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// The address of an array of characters that will receive the messages. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } @@ -11948,10 +13654,104 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// The address of an array of characters that will receive the messages. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + /// + /// Retrieve messages from the debug message log + /// + /// + /// The number of debug messages to retrieve from the log. + /// + /// + /// The size of the buffer whose address is given by messageLog. + /// + /// [length: count] + /// The address of an array of variables to receive the sources of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the types of the retrieved messages. + /// + /// [length: count] + /// The address of an array of unsigned integers to receive the ids of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the severites of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the lengths of the received messages. + /// + /// [length: bufSize] + /// The address of an array of characters that will receive the messages. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.DebugSource[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + + /// + /// Retrieve messages from the debug message log + /// + /// + /// The number of debug messages to retrieve from the log. + /// + /// + /// The size of the buffer whose address is given by messageLog. + /// + /// [length: count] + /// The address of an array of variables to receive the sources of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the types of the retrieved messages. + /// + /// [length: count] + /// The address of an array of unsigned integers to receive the ids of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the severites of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the lengths of the received messages. + /// + /// [length: bufSize] + /// The address of an array of characters that will receive the messages. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.DebugSource sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + + /// + /// Retrieve messages from the debug message log + /// + /// + /// The number of debug messages to retrieve from the log. + /// + /// + /// The size of the buffer whose address is given by messageLog. + /// + /// [length: count] + /// The address of an array of variables to receive the sources of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the types of the retrieved messages. + /// + /// [length: count] + /// The address of an array of unsigned integers to receive the ids of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the severites of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the lengths of the received messages. + /// + /// [length: bufSize] + /// The address of an array of characters that will receive the messages. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] + [CLSCompliant(false)] + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.DebugSource* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + /// [requires: v2.0 or ES_VERSION_2_0] /// Return error information /// @@ -12119,7 +13919,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.FramebufferAttachmentParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about attachments of a bound framebuffer object @@ -12138,7 +13938,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.FramebufferAttachmentParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about attachments of a bound framebuffer object @@ -12157,7 +13957,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.FramebufferAttachmentParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve a named parameter from a framebuffer @@ -12171,6 +13971,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// The address of a variable to receive the value of the parameter named pname. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetFramebufferParameteriv")] [CLSCompliant(false)] public static void GetFramebufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -12187,6 +13988,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// The address of a variable to receive the value of the parameter named pname. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetFramebufferParameteriv")] [CLSCompliant(false)] public static void GetFramebufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -12203,18 +14005,68 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// The address of a variable to receive the value of the parameter named pname. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetFramebufferParameteriv")] [CLSCompliant(false)] public static unsafe void GetFramebufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.1 or ES_VERSION_3_1] + /// Retrieve a named parameter from a framebuffer + /// + /// + /// The target of the operation, which must be ReadFramebuffer, DrawFramebuffer or Framebuffer. + /// + /// + /// A token indicating the parameter to be retrieved. + /// + /// [length: COMPSIZE(pname)] + /// The address of a variable to receive the value of the parameter named pname. + /// + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetFramebufferParameteriv")] + [CLSCompliant(false)] + public static void GetFramebufferParameter(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachmentParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.1 or ES_VERSION_3_1] + /// Retrieve a named parameter from a framebuffer + /// + /// + /// The target of the operation, which must be ReadFramebuffer, DrawFramebuffer or Framebuffer. + /// + /// + /// A token indicating the parameter to be retrieved. + /// + /// [length: COMPSIZE(pname)] + /// The address of a variable to receive the value of the parameter named pname. + /// + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetFramebufferParameteriv")] + [CLSCompliant(false)] + public static void GetFramebufferParameter(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachmentParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.1 or ES_VERSION_3_1] + /// Retrieve a named parameter from a framebuffer + /// + /// + /// The target of the operation, which must be ReadFramebuffer, DrawFramebuffer or Framebuffer. + /// + /// + /// A token indicating the parameter to be retrieved. + /// + /// [length: COMPSIZE(pname)] + /// The address of a variable to receive the value of the parameter named pname. + /// + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetFramebufferParameteriv")] + [CLSCompliant(false)] + public static unsafe void GetFramebufferParameter(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachmentParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetGraphicsResetStatus")] - public static OpenTK.Graphics.ES31.All GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.ES31.GraphicsResetStatus GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new BindingsNotRewrittenException(); } @@ -12223,6 +14075,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new BindingsNotRewrittenException(); } @@ -12231,6 +14084,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] public static unsafe void GetInteger64(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new BindingsNotRewrittenException(); } @@ -12239,6 +14093,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new BindingsNotRewrittenException(); } @@ -12247,6 +14102,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new BindingsNotRewrittenException(); } @@ -12255,19 +14111,76 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] public static unsafe void GetInteger64(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] + [CLSCompliant(false)] + public static void GetInteger64(OpenTK.Graphics.ES31.TypeEnum target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] + [CLSCompliant(false)] + public static void GetInteger64(OpenTK.Graphics.ES31.TypeEnum target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] + [CLSCompliant(false)] + public static unsafe void GetInteger64(OpenTK.Graphics.ES31.TypeEnum target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] + [CLSCompliant(false)] + public static void GetInteger64(OpenTK.Graphics.ES31.TypeEnum target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] + [CLSCompliant(false)] + public static void GetInteger64(OpenTK.Graphics.ES31.TypeEnum target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] + [CLSCompliant(false)] + public static unsafe void GetInteger64(OpenTK.Graphics.ES31.TypeEnum target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64v")] [CLSCompliant(false)] public static Int64 GetInteger64(OpenTK.Graphics.ES31.All pname) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64v")] + [CLSCompliant(false)] + public static Int64 GetInteger64(OpenTK.Graphics.ES31.GetPName pname) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64v")] [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] data) { throw new BindingsNotRewrittenException(); } @@ -12275,6 +14188,7 @@ namespace OpenTK.Graphics.ES31 /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64v")] [CLSCompliant(false)] public static void GetInteger64(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 data) { throw new BindingsNotRewrittenException(); } @@ -12282,14 +14196,37 @@ namespace OpenTK.Graphics.ES31 /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64v")] [CLSCompliant(false)] public static unsafe void GetInteger64(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* data) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64v")] + [CLSCompliant(false)] + public static void GetInteger64(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] data) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64v")] + [CLSCompliant(false)] + public static void GetInteger64(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 data) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64v")] + [CLSCompliant(false)] + public static unsafe void GetInteger64(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* data) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new BindingsNotRewrittenException(); } @@ -12298,6 +14235,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new BindingsNotRewrittenException(); } @@ -12306,6 +14244,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] public static unsafe void GetInteger(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new BindingsNotRewrittenException(); } @@ -12314,6 +14253,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new BindingsNotRewrittenException(); } @@ -12322,6 +14262,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new BindingsNotRewrittenException(); } @@ -12330,10 +14271,59 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] public static unsafe void GetInteger(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] + [CLSCompliant(false)] + public static void GetInteger(OpenTK.Graphics.ES31.TypeEnum target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] + [CLSCompliant(false)] + public static void GetInteger(OpenTK.Graphics.ES31.TypeEnum target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] + [CLSCompliant(false)] + public static unsafe void GetInteger(OpenTK.Graphics.ES31.TypeEnum target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] + [CLSCompliant(false)] + public static void GetInteger(OpenTK.Graphics.ES31.TypeEnum target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] + [CLSCompliant(false)] + public static void GetInteger(OpenTK.Graphics.ES31.TypeEnum target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] + [CLSCompliant(false)] + public static unsafe void GetInteger(OpenTK.Graphics.ES31.TypeEnum target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new BindingsNotRewrittenException(); } + /// [requires: v2.0 or ES_VERSION_2_0] /// [Obsolete("Use strongly-typed overload instead")] @@ -12410,6 +14400,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// Specifies the address of a variable into which to write the retrieved information. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInternalformativ")] [CLSCompliant(false)] public static void GetInternalformat(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -12432,6 +14423,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// Specifies the address of a variable into which to write the retrieved information. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInternalformativ")] [CLSCompliant(false)] public static void GetInternalformat(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -12454,10 +14446,77 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// Specifies the address of a variable into which to write the retrieved information. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInternalformativ")] [CLSCompliant(false)] public static unsafe void GetInternalformat(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] + /// Retrieve information about implementation-dependent support for internal formats + /// + /// + /// Indicates the usage of the internal format. target must be Renderbuffer. + /// + /// + /// Specifies the internal format about which to retrieve information. + /// + /// + /// Specifies the type of information to query. + /// + /// + /// Specifies the maximum number of integers that may be written to params by the function. + /// + /// [length: bufSize] + /// Specifies the address of a variable into which to write the retrieved information. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInternalformativ")] + [CLSCompliant(false)] + public static void GetInternalformat(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.InternalFormat internalformat, OpenTK.Graphics.ES31.InternalFormatPName pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Retrieve information about implementation-dependent support for internal formats + /// + /// + /// Indicates the usage of the internal format. target must be Renderbuffer. + /// + /// + /// Specifies the internal format about which to retrieve information. + /// + /// + /// Specifies the type of information to query. + /// + /// + /// Specifies the maximum number of integers that may be written to params by the function. + /// + /// [length: bufSize] + /// Specifies the address of a variable into which to write the retrieved information. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInternalformativ")] + [CLSCompliant(false)] + public static void GetInternalformat(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.InternalFormat internalformat, OpenTK.Graphics.ES31.InternalFormatPName pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Retrieve information about implementation-dependent support for internal formats + /// + /// + /// Indicates the usage of the internal format. target must be Renderbuffer. + /// + /// + /// Specifies the internal format about which to retrieve information. + /// + /// + /// Specifies the type of information to query. + /// + /// + /// Specifies the maximum number of integers that may be written to params by the function. + /// + /// [length: bufSize] + /// Specifies the address of a variable into which to write the retrieved information. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInternalformativ")] + [CLSCompliant(false)] + public static unsafe void GetInternalformat(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.InternalFormat internalformat, OpenTK.Graphics.ES31.InternalFormatPName pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve the location of a sample /// @@ -13847,6 +15906,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// The address of a variable to retrieve the value of pname for the program interface. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramInterfaceiv")] [CLSCompliant(false)] public static void GetProgramInterface(Int32 program, OpenTK.Graphics.ES31.All programInterface, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -13866,6 +15926,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// The address of a variable to retrieve the value of pname for the program interface. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramInterfaceiv")] [CLSCompliant(false)] public static void GetProgramInterface(Int32 program, OpenTK.Graphics.ES31.All programInterface, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -13885,6 +15946,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// The address of a variable to retrieve the value of pname for the program interface. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramInterfaceiv")] [CLSCompliant(false)] public static unsafe void GetProgramInterface(Int32 program, OpenTK.Graphics.ES31.All programInterface, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } @@ -13906,6 +15968,64 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramInterfaceiv")] [CLSCompliant(false)] + public static void GetProgramInterface(Int32 program, OpenTK.Graphics.ES31.ProgramInterface programInterface, OpenTK.Graphics.ES31.ProgramInterfacePName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.1 or ES_VERSION_3_1] + /// Query a property of an interface in a program + /// + /// + /// The name of a program object whose interface to query. + /// + /// + /// A token identifying the interface within program to query. + /// + /// + /// The name of the parameter within programInterface to query. + /// + /// [length: COMPSIZE(pname)] + /// The address of a variable to retrieve the value of pname for the program interface. + /// + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramInterfaceiv")] + [CLSCompliant(false)] + public static void GetProgramInterface(Int32 program, OpenTK.Graphics.ES31.ProgramInterface programInterface, OpenTK.Graphics.ES31.ProgramInterfacePName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.1 or ES_VERSION_3_1] + /// Query a property of an interface in a program + /// + /// + /// The name of a program object whose interface to query. + /// + /// + /// A token identifying the interface within program to query. + /// + /// + /// The name of the parameter within programInterface to query. + /// + /// [length: COMPSIZE(pname)] + /// The address of a variable to retrieve the value of pname for the program interface. + /// + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramInterfaceiv")] + [CLSCompliant(false)] + public static unsafe void GetProgramInterface(Int32 program, OpenTK.Graphics.ES31.ProgramInterface programInterface, OpenTK.Graphics.ES31.ProgramInterfacePName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.1 or ES_VERSION_3_1] + /// Query a property of an interface in a program + /// + /// + /// The name of a program object whose interface to query. + /// + /// + /// A token identifying the interface within program to query. + /// + /// + /// The name of the parameter within programInterface to query. + /// + /// [length: COMPSIZE(pname)] + /// The address of a variable to retrieve the value of pname for the program interface. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramInterfaceiv")] + [CLSCompliant(false)] public static void GetProgramInterface(UInt32 program, OpenTK.Graphics.ES31.All programInterface, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] @@ -13923,6 +16043,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// The address of a variable to retrieve the value of pname for the program interface. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramInterfaceiv")] [CLSCompliant(false)] public static void GetProgramInterface(UInt32 program, OpenTK.Graphics.ES31.All programInterface, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -13942,10 +16063,68 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// The address of a variable to retrieve the value of pname for the program interface. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramInterfaceiv")] [CLSCompliant(false)] public static unsafe void GetProgramInterface(UInt32 program, OpenTK.Graphics.ES31.All programInterface, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.1 or ES_VERSION_3_1] + /// Query a property of an interface in a program + /// + /// + /// The name of a program object whose interface to query. + /// + /// + /// A token identifying the interface within program to query. + /// + /// + /// The name of the parameter within programInterface to query. + /// + /// [length: COMPSIZE(pname)] + /// The address of a variable to retrieve the value of pname for the program interface. + /// + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramInterfaceiv")] + [CLSCompliant(false)] + public static void GetProgramInterface(UInt32 program, OpenTK.Graphics.ES31.ProgramInterface programInterface, OpenTK.Graphics.ES31.ProgramInterfacePName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.1 or ES_VERSION_3_1] + /// Query a property of an interface in a program + /// + /// + /// The name of a program object whose interface to query. + /// + /// + /// A token identifying the interface within program to query. + /// + /// + /// The name of the parameter within programInterface to query. + /// + /// [length: COMPSIZE(pname)] + /// The address of a variable to retrieve the value of pname for the program interface. + /// + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramInterfaceiv")] + [CLSCompliant(false)] + public static void GetProgramInterface(UInt32 program, OpenTK.Graphics.ES31.ProgramInterface programInterface, OpenTK.Graphics.ES31.ProgramInterfacePName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.1 or ES_VERSION_3_1] + /// Query a property of an interface in a program + /// + /// + /// The name of a program object whose interface to query. + /// + /// + /// A token identifying the interface within program to query. + /// + /// + /// The name of the parameter within programInterface to query. + /// + /// [length: COMPSIZE(pname)] + /// The address of a variable to retrieve the value of pname for the program interface. + /// + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramInterfaceiv")] + [CLSCompliant(false)] + public static unsafe void GetProgramInterface(UInt32 program, OpenTK.Graphics.ES31.ProgramInterface programInterface, OpenTK.Graphics.ES31.ProgramInterfacePName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a program object /// @@ -13958,6 +16137,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// Returns the requested object parameter. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] public static void GetProgram(Int32 program, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -13974,6 +16154,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// Returns the requested object parameter. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] public static void GetProgram(Int32 program, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -13990,6 +16171,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// Returns the requested object parameter. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] public static unsafe void GetProgram(Int32 program, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } @@ -14008,6 +16190,55 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] + public static void GetProgram(Int32 program, OpenTK.Graphics.ES31.ProgramPropertyArb pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v2.0 or ES_VERSION_2_0] + /// Returns a parameter from a program object + /// + /// + /// Specifies the program object to be queried. + /// + /// + /// Specifies the object parameter. Accepted symbolic names are ActiveAttributes, ActiveAttributeMaxLength, ActiveUniforms, ActiveUniformBlocks, ActiveUniformBlockMaxNameLength, ActiveUniformMaxLength, AttachedShaders, DeleteStatus, InfoLogLength, LinkStatus, ProgramBinaryRetrievableHint, TransformFeedbackBufferMode, TransformFeedbackVaryings, TransformFeedbackVaryingMaxLength and ValidateStatus. + /// + /// [length: COMPSIZE(pname)] + /// Returns the requested object parameter. + /// + [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] + public static void GetProgram(Int32 program, OpenTK.Graphics.ES31.ProgramPropertyArb pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v2.0 or ES_VERSION_2_0] + /// Returns a parameter from a program object + /// + /// + /// Specifies the program object to be queried. + /// + /// + /// Specifies the object parameter. Accepted symbolic names are ActiveAttributes, ActiveAttributeMaxLength, ActiveUniforms, ActiveUniformBlocks, ActiveUniformBlockMaxNameLength, ActiveUniformMaxLength, AttachedShaders, DeleteStatus, InfoLogLength, LinkStatus, ProgramBinaryRetrievableHint, TransformFeedbackBufferMode, TransformFeedbackVaryings, TransformFeedbackVaryingMaxLength and ValidateStatus. + /// + /// [length: COMPSIZE(pname)] + /// Returns the requested object parameter. + /// + [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] + public static unsafe void GetProgram(Int32 program, OpenTK.Graphics.ES31.ProgramPropertyArb pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v2.0 or ES_VERSION_2_0] + /// Returns a parameter from a program object + /// + /// + /// Specifies the program object to be queried. + /// + /// + /// Specifies the object parameter. Accepted symbolic names are ActiveAttributes, ActiveAttributeMaxLength, ActiveUniforms, ActiveUniformBlocks, ActiveUniformBlockMaxNameLength, ActiveUniformMaxLength, AttachedShaders, DeleteStatus, InfoLogLength, LinkStatus, ProgramBinaryRetrievableHint, TransformFeedbackBufferMode, TransformFeedbackVaryings, TransformFeedbackVaryingMaxLength and ValidateStatus. + /// + /// [length: COMPSIZE(pname)] + /// Returns the requested object parameter. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] public static void GetProgram(UInt32 program, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] @@ -14022,6 +16253,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// Returns the requested object parameter. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] public static void GetProgram(UInt32 program, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -14038,10 +16270,59 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// Returns the requested object parameter. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] public static unsafe void GetProgram(UInt32 program, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v2.0 or ES_VERSION_2_0] + /// Returns a parameter from a program object + /// + /// + /// Specifies the program object to be queried. + /// + /// + /// Specifies the object parameter. Accepted symbolic names are ActiveAttributes, ActiveAttributeMaxLength, ActiveUniforms, ActiveUniformBlocks, ActiveUniformBlockMaxNameLength, ActiveUniformMaxLength, AttachedShaders, DeleteStatus, InfoLogLength, LinkStatus, ProgramBinaryRetrievableHint, TransformFeedbackBufferMode, TransformFeedbackVaryings, TransformFeedbackVaryingMaxLength and ValidateStatus. + /// + /// [length: COMPSIZE(pname)] + /// Returns the requested object parameter. + /// + [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] + public static void GetProgram(UInt32 program, OpenTK.Graphics.ES31.ProgramPropertyArb pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v2.0 or ES_VERSION_2_0] + /// Returns a parameter from a program object + /// + /// + /// Specifies the program object to be queried. + /// + /// + /// Specifies the object parameter. Accepted symbolic names are ActiveAttributes, ActiveAttributeMaxLength, ActiveUniforms, ActiveUniformBlocks, ActiveUniformBlockMaxNameLength, ActiveUniformMaxLength, AttachedShaders, DeleteStatus, InfoLogLength, LinkStatus, ProgramBinaryRetrievableHint, TransformFeedbackBufferMode, TransformFeedbackVaryings, TransformFeedbackVaryingMaxLength and ValidateStatus. + /// + /// [length: COMPSIZE(pname)] + /// Returns the requested object parameter. + /// + [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] + public static void GetProgram(UInt32 program, OpenTK.Graphics.ES31.ProgramPropertyArb pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v2.0 or ES_VERSION_2_0] + /// Returns a parameter from a program object + /// + /// + /// Specifies the program object to be queried. + /// + /// + /// Specifies the object parameter. Accepted symbolic names are ActiveAttributes, ActiveAttributeMaxLength, ActiveUniforms, ActiveUniformBlocks, ActiveUniformBlockMaxNameLength, ActiveUniformMaxLength, AttachedShaders, DeleteStatus, InfoLogLength, LinkStatus, ProgramBinaryRetrievableHint, TransformFeedbackBufferMode, TransformFeedbackVaryings, TransformFeedbackVaryingMaxLength and ValidateStatus. + /// + /// [length: COMPSIZE(pname)] + /// Returns the requested object parameter. + /// + [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] + [CLSCompliant(false)] + public static unsafe void GetProgram(UInt32 program, OpenTK.Graphics.ES31.ProgramPropertyArb pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve the info log string from a program pipeline object /// @@ -14130,6 +16411,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramPipelineiv")] [CLSCompliant(false)] public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -14146,6 +16428,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramPipelineiv")] [CLSCompliant(false)] public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -14162,6 +16445,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramPipelineiv")] [CLSCompliant(false)] public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } @@ -14180,6 +16464,55 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramPipelineiv")] [CLSCompliant(false)] + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES31.PipelineParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.1 or ES_VERSION_3_1] + /// Retrieve properties of a program pipeline object + /// + /// + /// Specifies the name of a program pipeline object whose parameter retrieve. + /// + /// + /// Specifies the name of the parameter to retrieve. + /// + /// [length: COMPSIZE(pname)] + /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. + /// + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramPipelineiv")] + [CLSCompliant(false)] + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES31.PipelineParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.1 or ES_VERSION_3_1] + /// Retrieve properties of a program pipeline object + /// + /// + /// Specifies the name of a program pipeline object whose parameter retrieve. + /// + /// + /// Specifies the name of the parameter to retrieve. + /// + /// [length: COMPSIZE(pname)] + /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. + /// + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramPipelineiv")] + [CLSCompliant(false)] + public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES31.PipelineParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.1 or ES_VERSION_3_1] + /// Retrieve properties of a program pipeline object + /// + /// + /// Specifies the name of a program pipeline object whose parameter retrieve. + /// + /// + /// Specifies the name of the parameter to retrieve. + /// + /// [length: COMPSIZE(pname)] + /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramPipelineiv")] + [CLSCompliant(false)] public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] @@ -14194,6 +16527,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramPipelineiv")] [CLSCompliant(false)] public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -14210,10 +16544,59 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramPipelineiv")] [CLSCompliant(false)] public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.1 or ES_VERSION_3_1] + /// Retrieve properties of a program pipeline object + /// + /// + /// Specifies the name of a program pipeline object whose parameter retrieve. + /// + /// + /// Specifies the name of the parameter to retrieve. + /// + /// [length: COMPSIZE(pname)] + /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. + /// + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramPipelineiv")] + [CLSCompliant(false)] + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES31.PipelineParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.1 or ES_VERSION_3_1] + /// Retrieve properties of a program pipeline object + /// + /// + /// Specifies the name of a program pipeline object whose parameter retrieve. + /// + /// + /// Specifies the name of the parameter to retrieve. + /// + /// [length: COMPSIZE(pname)] + /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. + /// + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramPipelineiv")] + [CLSCompliant(false)] + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES31.PipelineParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.1 or ES_VERSION_3_1] + /// Retrieve properties of a program pipeline object + /// + /// + /// Specifies the name of a program pipeline object whose parameter retrieve. + /// + /// + /// Specifies the name of the parameter to retrieve. + /// + /// [length: COMPSIZE(pname)] + /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. + /// + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramPipelineiv")] + [CLSCompliant(false)] + public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES31.PipelineParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.1 or ES_VERSION_3_1] /// Query the index of a named resource within a program /// @@ -14226,6 +16609,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(name)] /// The name of the resource to query the index of. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceIndex")] [CLSCompliant(false)] public static Int32 GetProgramResourceIndex(Int32 program, OpenTK.Graphics.ES31.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } @@ -14244,8 +16628,41 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceIndex")] [CLSCompliant(false)] + public static Int32 GetProgramResourceIndex(Int32 program, OpenTK.Graphics.ES31.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.1 or ES_VERSION_3_1] + /// Query the index of a named resource within a program + /// + /// + /// The name of a program object whose resources to query. + /// + /// + /// A token identifying the interface within program containing the resource named name. + /// + /// [length: COMPSIZE(name)] + /// The name of the resource to query the index of. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceIndex")] + [CLSCompliant(false)] public static Int32 GetProgramResourceIndex(UInt32 program, OpenTK.Graphics.ES31.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.1 or ES_VERSION_3_1] + /// Query the index of a named resource within a program + /// + /// + /// The name of a program object whose resources to query. + /// + /// + /// A token identifying the interface within program containing the resource named name. + /// + /// [length: COMPSIZE(name)] + /// The name of the resource to query the index of. + /// + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceIndex")] + [CLSCompliant(false)] + public static Int32 GetProgramResourceIndex(UInt32 program, OpenTK.Graphics.ES31.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve values for multiple properties of a single active resource within a program object /// @@ -14261,6 +16678,7 @@ namespace OpenTK.Graphics.ES31 /// /// [length: 1] /// [length: bufSize] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES31.All programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.ES31.All[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -14280,6 +16698,7 @@ namespace OpenTK.Graphics.ES31 /// /// [length: 1] /// [length: bufSize] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES31.All programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] ref OpenTK.Graphics.ES31.All props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -14299,6 +16718,7 @@ namespace OpenTK.Graphics.ES31 /// /// [length: 1] /// [length: bufSize] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.ES31.All programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.ES31.All* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } @@ -14320,6 +16740,64 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] + public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES31.ProgramInterface programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.ES31.All[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.1 or ES_VERSION_3_1] + /// Retrieve values for multiple properties of a single active resource within a program object + /// + /// + /// The name of a program object whose resources to query. + /// + /// + /// A token identifying the interface within program containing the resource named name. + /// + /// + /// + /// [length: propCount] + /// + /// [length: 1] + /// [length: bufSize] + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceiv")] + [CLSCompliant(false)] + public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES31.ProgramInterface programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] ref OpenTK.Graphics.ES31.All props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.1 or ES_VERSION_3_1] + /// Retrieve values for multiple properties of a single active resource within a program object + /// + /// + /// The name of a program object whose resources to query. + /// + /// + /// A token identifying the interface within program containing the resource named name. + /// + /// + /// + /// [length: propCount] + /// + /// [length: 1] + /// [length: bufSize] + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceiv")] + [CLSCompliant(false)] + public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.ES31.ProgramInterface programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.ES31.All* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.1 or ES_VERSION_3_1] + /// Retrieve values for multiple properties of a single active resource within a program object + /// + /// + /// The name of a program object whose resources to query. + /// + /// + /// A token identifying the interface within program containing the resource named name. + /// + /// + /// + /// [length: propCount] + /// + /// [length: 1] + /// [length: bufSize] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceiv")] + [CLSCompliant(false)] public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES31.All programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.ES31.All[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] @@ -14337,6 +16815,7 @@ namespace OpenTK.Graphics.ES31 /// /// [length: 1] /// [length: bufSize] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES31.All programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] ref OpenTK.Graphics.ES31.All props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -14356,10 +16835,68 @@ namespace OpenTK.Graphics.ES31 /// /// [length: 1] /// [length: bufSize] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.ES31.All programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.ES31.All* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.1 or ES_VERSION_3_1] + /// Retrieve values for multiple properties of a single active resource within a program object + /// + /// + /// The name of a program object whose resources to query. + /// + /// + /// A token identifying the interface within program containing the resource named name. + /// + /// + /// + /// [length: propCount] + /// + /// [length: 1] + /// [length: bufSize] + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceiv")] + [CLSCompliant(false)] + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES31.ProgramInterface programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.ES31.All[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.1 or ES_VERSION_3_1] + /// Retrieve values for multiple properties of a single active resource within a program object + /// + /// + /// The name of a program object whose resources to query. + /// + /// + /// A token identifying the interface within program containing the resource named name. + /// + /// + /// + /// [length: propCount] + /// + /// [length: 1] + /// [length: bufSize] + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceiv")] + [CLSCompliant(false)] + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES31.ProgramInterface programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] ref OpenTK.Graphics.ES31.All props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.1 or ES_VERSION_3_1] + /// Retrieve values for multiple properties of a single active resource within a program object + /// + /// + /// The name of a program object whose resources to query. + /// + /// + /// A token identifying the interface within program containing the resource named name. + /// + /// + /// + /// [length: propCount] + /// + /// [length: 1] + /// [length: bufSize] + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceiv")] + [CLSCompliant(false)] + public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.ES31.ProgramInterface programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.ES31.All* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.1 or ES_VERSION_3_1] /// Query the location of a named resource within a program /// @@ -14372,6 +16909,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(name)] /// The name of the resource to query the location of. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceLocation")] [CLSCompliant(false)] public static Int32 GetProgramResourceLocation(Int32 program, OpenTK.Graphics.ES31.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } @@ -14390,8 +16928,41 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceLocation")] [CLSCompliant(false)] + public static Int32 GetProgramResourceLocation(Int32 program, OpenTK.Graphics.ES31.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.1 or ES_VERSION_3_1] + /// Query the location of a named resource within a program + /// + /// + /// The name of a program object whose resources to query. + /// + /// + /// A token identifying the interface within program containing the resource named name. + /// + /// [length: COMPSIZE(name)] + /// The name of the resource to query the location of. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceLocation")] + [CLSCompliant(false)] public static Int32 GetProgramResourceLocation(UInt32 program, OpenTK.Graphics.ES31.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.1 or ES_VERSION_3_1] + /// Query the location of a named resource within a program + /// + /// + /// The name of a program object whose resources to query. + /// + /// + /// A token identifying the interface within program containing the resource named name. + /// + /// [length: COMPSIZE(name)] + /// The name of the resource to query the location of. + /// + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceLocation")] + [CLSCompliant(false)] + public static Int32 GetProgramResourceLocation(UInt32 program, OpenTK.Graphics.ES31.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.1 or ES_VERSION_3_1] /// Query the name of an indexed resource within a program /// @@ -14413,6 +16984,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// The address of a character array into which will be written the name of the resource. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceName")] [CLSCompliant(false)] public static void GetProgramResourceName(Int32 program, OpenTK.Graphics.ES31.All programInterface, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } @@ -14438,6 +17010,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// The address of a character array into which will be written the name of the resource. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceName")] [CLSCompliant(false)] public static unsafe void GetProgramResourceName(Int32 program, OpenTK.Graphics.ES31.All programInterface, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } @@ -14465,7 +17038,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceName")] [CLSCompliant(false)] - public static void GetProgramResourceName(UInt32 program, OpenTK.Graphics.ES31.All programInterface, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } + public static void GetProgramResourceName(Int32 program, OpenTK.Graphics.ES31.ProgramInterface programInterface, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Query the name of an indexed resource within a program @@ -14490,8 +17063,110 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceName")] [CLSCompliant(false)] + public static unsafe void GetProgramResourceName(Int32 program, OpenTK.Graphics.ES31.ProgramInterface programInterface, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.1 or ES_VERSION_3_1] + /// Query the name of an indexed resource within a program + /// + /// + /// The name of a program object whose resources to query. + /// + /// + /// A token identifying the interface within program containing the indexed resource. + /// + /// + /// The index of the resource within programInterface of program. + /// + /// + /// The size of the character array whose address is given by name. + /// + /// [length: 1] + /// The address of a variable which will receive the length of the resource name. + /// + /// [length: bufSize] + /// The address of a character array into which will be written the name of the resource. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceName")] + [CLSCompliant(false)] + public static void GetProgramResourceName(UInt32 program, OpenTK.Graphics.ES31.All programInterface, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.1 or ES_VERSION_3_1] + /// Query the name of an indexed resource within a program + /// + /// + /// The name of a program object whose resources to query. + /// + /// + /// A token identifying the interface within program containing the indexed resource. + /// + /// + /// The index of the resource within programInterface of program. + /// + /// + /// The size of the character array whose address is given by name. + /// + /// [length: 1] + /// The address of a variable which will receive the length of the resource name. + /// + /// [length: bufSize] + /// The address of a character array into which will be written the name of the resource. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceName")] + [CLSCompliant(false)] public static unsafe void GetProgramResourceName(UInt32 program, OpenTK.Graphics.ES31.All programInterface, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.1 or ES_VERSION_3_1] + /// Query the name of an indexed resource within a program + /// + /// + /// The name of a program object whose resources to query. + /// + /// + /// A token identifying the interface within program containing the indexed resource. + /// + /// + /// The index of the resource within programInterface of program. + /// + /// + /// The size of the character array whose address is given by name. + /// + /// [length: 1] + /// The address of a variable which will receive the length of the resource name. + /// + /// [length: bufSize] + /// The address of a character array into which will be written the name of the resource. + /// + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceName")] + [CLSCompliant(false)] + public static void GetProgramResourceName(UInt32 program, OpenTK.Graphics.ES31.ProgramInterface programInterface, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.1 or ES_VERSION_3_1] + /// Query the name of an indexed resource within a program + /// + /// + /// The name of a program object whose resources to query. + /// + /// + /// A token identifying the interface within program containing the indexed resource. + /// + /// + /// The index of the resource within programInterface of program. + /// + /// + /// The size of the character array whose address is given by name. + /// + /// [length: 1] + /// The address of a variable which will receive the length of the resource name. + /// + /// [length: bufSize] + /// The address of a character array into which will be written the name of the resource. + /// + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceName")] + [CLSCompliant(false)] + public static unsafe void GetProgramResourceName(UInt32 program, OpenTK.Graphics.ES31.ProgramInterface programInterface, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object target /// @@ -14504,6 +17179,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// Returns the requested data. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryiv")] [CLSCompliant(false)] public static void GetQuery(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -14520,6 +17196,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// Returns the requested data. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryiv")] [CLSCompliant(false)] public static void GetQuery(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -14536,10 +17213,59 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// Returns the requested data. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryiv")] [CLSCompliant(false)] public static unsafe void GetQuery(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] + /// Return parameters of a query object target + /// + /// + /// Specifies a query object target. Must be AnySamplesPassed, AnySamplesPassedConservative, or TransformFeedbackPrimitivesWritten. + /// + /// + /// Specifies the symbolic name of a query object target parameter. Must be CurrentQuery. + /// + /// [length: COMPSIZE(pname)] + /// Returns the requested data. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryiv")] + [CLSCompliant(false)] + public static void GetQuery(OpenTK.Graphics.ES31.QueryTarget target, OpenTK.Graphics.ES31.QueryParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Return parameters of a query object target + /// + /// + /// Specifies a query object target. Must be AnySamplesPassed, AnySamplesPassedConservative, or TransformFeedbackPrimitivesWritten. + /// + /// + /// Specifies the symbolic name of a query object target parameter. Must be CurrentQuery. + /// + /// [length: COMPSIZE(pname)] + /// Returns the requested data. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryiv")] + [CLSCompliant(false)] + public static void GetQuery(OpenTK.Graphics.ES31.QueryTarget target, OpenTK.Graphics.ES31.QueryParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Return parameters of a query object target + /// + /// + /// Specifies a query object target. Must be AnySamplesPassed, AnySamplesPassedConservative, or TransformFeedbackPrimitivesWritten. + /// + /// + /// Specifies the symbolic name of a query object target parameter. Must be CurrentQuery. + /// + /// [length: COMPSIZE(pname)] + /// Returns the requested data. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryiv")] + [CLSCompliant(false)] + public static unsafe void GetQuery(OpenTK.Graphics.ES31.QueryTarget target, OpenTK.Graphics.ES31.QueryParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object /// @@ -14552,6 +17278,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// Returns the requested data. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] [CLSCompliant(false)] public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -14568,6 +17295,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// Returns the requested data. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] [CLSCompliant(false)] public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -14584,6 +17312,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// Returns the requested data. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] [CLSCompliant(false)] public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } @@ -14602,6 +17331,55 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] [CLSCompliant(false)] + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.QueryObjectParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Return parameters of a query object + /// + /// + /// Specifies the name of a query object. + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are QueryResult or QueryResultAvailable. + /// + /// [length: COMPSIZE(pname)] + /// Returns the requested data. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] + [CLSCompliant(false)] + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.QueryObjectParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Return parameters of a query object + /// + /// + /// Specifies the name of a query object. + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are QueryResult or QueryResultAvailable. + /// + /// [length: COMPSIZE(pname)] + /// Returns the requested data. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] + [CLSCompliant(false)] + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.QueryObjectParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Return parameters of a query object + /// + /// + /// Specifies the name of a query object. + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are QueryResult or QueryResultAvailable. + /// + /// [length: COMPSIZE(pname)] + /// Returns the requested data. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] @@ -14616,6 +17394,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// Returns the requested data. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } @@ -14632,10 +17411,59 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// Returns the requested data. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] [CLSCompliant(false)] public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] + /// Return parameters of a query object + /// + /// + /// Specifies the name of a query object. + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are QueryResult or QueryResultAvailable. + /// + /// [length: COMPSIZE(pname)] + /// Returns the requested data. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] + [CLSCompliant(false)] + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.QueryObjectParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Return parameters of a query object + /// + /// + /// Specifies the name of a query object. + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are QueryResult or QueryResultAvailable. + /// + /// [length: COMPSIZE(pname)] + /// Returns the requested data. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] + [CLSCompliant(false)] + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.QueryObjectParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Return parameters of a query object + /// + /// + /// Specifies the name of a query object. + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are QueryResult or QueryResultAvailable. + /// + /// [length: COMPSIZE(pname)] + /// Returns the requested data. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] + [CLSCompliant(false)] + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.QueryObjectParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about a bound renderbuffer object /// @@ -14701,7 +17529,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetRenderbufferParameteriv")] [CLSCompliant(false)] - public static void GetRenderbufferParameter(OpenTK.Graphics.ES31.RenderbufferTarget target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.ES31.RenderbufferTarget target, OpenTK.Graphics.ES31.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about a bound renderbuffer object @@ -14717,7 +17545,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetRenderbufferParameteriv")] [CLSCompliant(false)] - public static void GetRenderbufferParameter(OpenTK.Graphics.ES31.RenderbufferTarget target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.ES31.RenderbufferTarget target, OpenTK.Graphics.ES31.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about a bound renderbuffer object @@ -14733,7 +17561,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetRenderbufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.ES31.RenderbufferTarget target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.ES31.RenderbufferTarget target, OpenTK.Graphics.ES31.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -14747,6 +17575,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// Returns the sampler parameters. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } @@ -14763,6 +17592,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// Returns the sampler parameters. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } @@ -14779,6 +17609,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// Returns the sampler parameters. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } @@ -14797,6 +17628,55 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Return sampler parameter values + /// + /// + /// Specifies name of the sampler object from which to retrieve parameters. + /// + /// + /// Specifies the symbolic name of a sampler parameter. TextureMagFilter, TextureMinFilter, TextureMinLod, TextureMaxLod, TextureWrapS, TextureWrapT, TextureWrapR, TextureCompareMode, and TextureCompareFunc are accepted. + /// + /// [length: COMPSIZE(pname)] + /// Returns the sampler parameters. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] + [CLSCompliant(false)] + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Return sampler parameter values + /// + /// + /// Specifies name of the sampler object from which to retrieve parameters. + /// + /// + /// Specifies the symbolic name of a sampler parameter. TextureMagFilter, TextureMinFilter, TextureMinLod, TextureMaxLod, TextureWrapS, TextureWrapT, TextureWrapR, TextureCompareMode, and TextureCompareFunc are accepted. + /// + /// [length: COMPSIZE(pname)] + /// Returns the sampler parameters. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] + [CLSCompliant(false)] + public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Return sampler parameter values + /// + /// + /// Specifies name of the sampler object from which to retrieve parameters. + /// + /// + /// Specifies the symbolic name of a sampler parameter. TextureMagFilter, TextureMinFilter, TextureMinLod, TextureMaxLod, TextureWrapS, TextureWrapT, TextureWrapR, TextureCompareMode, and TextureCompareFunc are accepted. + /// + /// [length: COMPSIZE(pname)] + /// Returns the sampler parameters. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] + [CLSCompliant(false)] public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] @@ -14811,6 +17691,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// Returns the sampler parameters. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } @@ -14827,6 +17708,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// Returns the sampler parameters. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } @@ -14843,6 +17725,55 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// Returns the sampler parameters. /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] + [CLSCompliant(false)] + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Return sampler parameter values + /// + /// + /// Specifies name of the sampler object from which to retrieve parameters. + /// + /// + /// Specifies the symbolic name of a sampler parameter. TextureMagFilter, TextureMinFilter, TextureMinLod, TextureMaxLod, TextureWrapS, TextureWrapT, TextureWrapR, TextureCompareMode, and TextureCompareFunc are accepted. + /// + /// [length: COMPSIZE(pname)] + /// Returns the sampler parameters. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] + [CLSCompliant(false)] + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Return sampler parameter values + /// + /// + /// Specifies name of the sampler object from which to retrieve parameters. + /// + /// + /// Specifies the symbolic name of a sampler parameter. TextureMagFilter, TextureMinFilter, TextureMinLod, TextureMaxLod, TextureWrapS, TextureWrapT, TextureWrapR, TextureCompareMode, and TextureCompareFunc are accepted. + /// + /// [length: COMPSIZE(pname)] + /// Returns the sampler parameters. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] + [CLSCompliant(false)] + public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Return sampler parameter values + /// + /// + /// Specifies name of the sampler object from which to retrieve parameters. + /// + /// + /// Specifies the symbolic name of a sampler parameter. TextureMagFilter, TextureMinFilter, TextureMinLod, TextureMaxLod, TextureWrapS, TextureWrapT, TextureWrapR, TextureCompareMode, and TextureCompareFunc are accepted. + /// + /// [length: COMPSIZE(pname)] + /// Returns the sampler parameters. + /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -14859,6 +17790,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// Returns the sampler parameters. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -14875,6 +17807,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// Returns the sampler parameters. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } @@ -14893,6 +17826,55 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Return sampler parameter values + /// + /// + /// Specifies name of the sampler object from which to retrieve parameters. + /// + /// + /// Specifies the symbolic name of a sampler parameter. TextureMagFilter, TextureMinFilter, TextureMinLod, TextureMaxLod, TextureWrapS, TextureWrapT, TextureWrapR, TextureCompareMode, and TextureCompareFunc are accepted. + /// + /// [length: COMPSIZE(pname)] + /// Returns the sampler parameters. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] + [CLSCompliant(false)] + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Return sampler parameter values + /// + /// + /// Specifies name of the sampler object from which to retrieve parameters. + /// + /// + /// Specifies the symbolic name of a sampler parameter. TextureMagFilter, TextureMinFilter, TextureMinLod, TextureMaxLod, TextureWrapS, TextureWrapT, TextureWrapR, TextureCompareMode, and TextureCompareFunc are accepted. + /// + /// [length: COMPSIZE(pname)] + /// Returns the sampler parameters. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] + [CLSCompliant(false)] + public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Return sampler parameter values + /// + /// + /// Specifies name of the sampler object from which to retrieve parameters. + /// + /// + /// Specifies the symbolic name of a sampler parameter. TextureMagFilter, TextureMinFilter, TextureMinLod, TextureMaxLod, TextureWrapS, TextureWrapT, TextureWrapR, TextureCompareMode, and TextureCompareFunc are accepted. + /// + /// [length: COMPSIZE(pname)] + /// Returns the sampler parameters. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] + [CLSCompliant(false)] public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] @@ -14907,6 +17889,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// Returns the sampler parameters. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -14923,10 +17906,59 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// Returns the sampler parameters. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] + /// Return sampler parameter values + /// + /// + /// Specifies name of the sampler object from which to retrieve parameters. + /// + /// + /// Specifies the symbolic name of a sampler parameter. TextureMagFilter, TextureMinFilter, TextureMinLod, TextureMaxLod, TextureWrapS, TextureWrapT, TextureWrapR, TextureCompareMode, and TextureCompareFunc are accepted. + /// + /// [length: COMPSIZE(pname)] + /// Returns the sampler parameters. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] + [CLSCompliant(false)] + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Return sampler parameter values + /// + /// + /// Specifies name of the sampler object from which to retrieve parameters. + /// + /// + /// Specifies the symbolic name of a sampler parameter. TextureMagFilter, TextureMinFilter, TextureMinLod, TextureMaxLod, TextureWrapS, TextureWrapT, TextureWrapR, TextureCompareMode, and TextureCompareFunc are accepted. + /// + /// [length: COMPSIZE(pname)] + /// Returns the sampler parameters. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] + [CLSCompliant(false)] + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Return sampler parameter values + /// + /// + /// Specifies name of the sampler object from which to retrieve parameters. + /// + /// + /// Specifies the symbolic name of a sampler parameter. TextureMagFilter, TextureMinFilter, TextureMinLod, TextureMaxLod, TextureWrapS, TextureWrapT, TextureWrapR, TextureCompareMode, and TextureCompareFunc are accepted. + /// + /// [length: COMPSIZE(pname)] + /// Returns the sampler parameters. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] + [CLSCompliant(false)] + public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the information log for a shader object /// @@ -15015,6 +18047,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// Returns the requested object parameter. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] public static void GetShader(Int32 shader, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -15031,6 +18064,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// Returns the requested object parameter. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] public static void GetShader(Int32 shader, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -15047,6 +18081,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// Returns the requested object parameter. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] public static unsafe void GetShader(Int32 shader, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } @@ -15065,6 +18100,55 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] + public static void GetShader(Int32 shader, OpenTK.Graphics.ES31.ShaderParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v2.0 or ES_VERSION_2_0] + /// Returns a parameter from a shader object + /// + /// + /// Specifies the shader object to be queried. + /// + /// + /// Specifies the object parameter. Accepted symbolic names are ShaderType, DeleteStatus, CompileStatus, InfoLogLength, ShaderSourceLength. + /// + /// [length: COMPSIZE(pname)] + /// Returns the requested object parameter. + /// + [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] + public static void GetShader(Int32 shader, OpenTK.Graphics.ES31.ShaderParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v2.0 or ES_VERSION_2_0] + /// Returns a parameter from a shader object + /// + /// + /// Specifies the shader object to be queried. + /// + /// + /// Specifies the object parameter. Accepted symbolic names are ShaderType, DeleteStatus, CompileStatus, InfoLogLength, ShaderSourceLength. + /// + /// [length: COMPSIZE(pname)] + /// Returns the requested object parameter. + /// + [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] + public static unsafe void GetShader(Int32 shader, OpenTK.Graphics.ES31.ShaderParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v2.0 or ES_VERSION_2_0] + /// Returns a parameter from a shader object + /// + /// + /// Specifies the shader object to be queried. + /// + /// + /// Specifies the object parameter. Accepted symbolic names are ShaderType, DeleteStatus, CompileStatus, InfoLogLength, ShaderSourceLength. + /// + /// [length: COMPSIZE(pname)] + /// Returns the requested object parameter. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] public static void GetShader(UInt32 shader, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] @@ -15079,6 +18163,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// Returns the requested object parameter. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] public static void GetShader(UInt32 shader, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -15095,10 +18180,59 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// Returns the requested object parameter. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] public static unsafe void GetShader(UInt32 shader, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v2.0 or ES_VERSION_2_0] + /// Returns a parameter from a shader object + /// + /// + /// Specifies the shader object to be queried. + /// + /// + /// Specifies the object parameter. Accepted symbolic names are ShaderType, DeleteStatus, CompileStatus, InfoLogLength, ShaderSourceLength. + /// + /// [length: COMPSIZE(pname)] + /// Returns the requested object parameter. + /// + [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] + public static void GetShader(UInt32 shader, OpenTK.Graphics.ES31.ShaderParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v2.0 or ES_VERSION_2_0] + /// Returns a parameter from a shader object + /// + /// + /// Specifies the shader object to be queried. + /// + /// + /// Specifies the object parameter. Accepted symbolic names are ShaderType, DeleteStatus, CompileStatus, InfoLogLength, ShaderSourceLength. + /// + /// [length: COMPSIZE(pname)] + /// Returns the requested object parameter. + /// + [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] + public static void GetShader(UInt32 shader, OpenTK.Graphics.ES31.ShaderParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v2.0 or ES_VERSION_2_0] + /// Returns a parameter from a shader object + /// + /// + /// Specifies the shader object to be queried. + /// + /// + /// Specifies the object parameter. Accepted symbolic names are ShaderType, DeleteStatus, CompileStatus, InfoLogLength, ShaderSourceLength. + /// + /// [length: COMPSIZE(pname)] + /// Returns the requested object parameter. + /// + [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] + [CLSCompliant(false)] + public static unsafe void GetShader(UInt32 shader, OpenTK.Graphics.ES31.ShaderParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve the range and precision for numeric formats supported by the shader compiler /// @@ -15114,6 +18248,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] /// Specifies the address of an integer into which the numeric precision of the implementation is written. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderPrecisionFormat")] [CLSCompliant(false)] public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES31.All shadertype, OpenTK.Graphics.ES31.All precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32[] range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new BindingsNotRewrittenException(); } @@ -15133,6 +18268,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] /// Specifies the address of an integer into which the numeric precision of the implementation is written. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderPrecisionFormat")] [CLSCompliant(false)] public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES31.All shadertype, OpenTK.Graphics.ES31.All precisiontype, [OutAttribute, CountAttribute(Count = 2)] out Int32 range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new BindingsNotRewrittenException(); } @@ -15152,10 +18288,68 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] /// Specifies the address of an integer into which the numeric precision of the implementation is written. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderPrecisionFormat")] [CLSCompliant(false)] public static unsafe void GetShaderPrecisionFormat(OpenTK.Graphics.ES31.All shadertype, OpenTK.Graphics.ES31.All precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32* range, [OutAttribute, CountAttribute(Count = 1)] Int32* precision) { throw new BindingsNotRewrittenException(); } + /// [requires: v2.0 or ES_VERSION_2_0] + /// Retrieve the range and precision for numeric formats supported by the shader compiler + /// + /// + /// Specifies the type of shader whose precision to query. shaderType must be VertexShader or FragmentShader. + /// + /// + /// Specifies the numeric format whose precision and range to query. + /// + /// [length: 2] + /// Specifies the address of array of two integers into which encodings of the implementation's numeric range are returned. + /// + /// [length: 1] + /// Specifies the address of an integer into which the numeric precision of the implementation is written. + /// + [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderPrecisionFormat")] + [CLSCompliant(false)] + public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES31.ShaderType shadertype, OpenTK.Graphics.ES31.PrecisionType precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32[] range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new BindingsNotRewrittenException(); } + + /// [requires: v2.0 or ES_VERSION_2_0] + /// Retrieve the range and precision for numeric formats supported by the shader compiler + /// + /// + /// Specifies the type of shader whose precision to query. shaderType must be VertexShader or FragmentShader. + /// + /// + /// Specifies the numeric format whose precision and range to query. + /// + /// [length: 2] + /// Specifies the address of array of two integers into which encodings of the implementation's numeric range are returned. + /// + /// [length: 1] + /// Specifies the address of an integer into which the numeric precision of the implementation is written. + /// + [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderPrecisionFormat")] + [CLSCompliant(false)] + public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES31.ShaderType shadertype, OpenTK.Graphics.ES31.PrecisionType precisiontype, [OutAttribute, CountAttribute(Count = 2)] out Int32 range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new BindingsNotRewrittenException(); } + + /// [requires: v2.0 or ES_VERSION_2_0] + /// Retrieve the range and precision for numeric formats supported by the shader compiler + /// + /// + /// Specifies the type of shader whose precision to query. shaderType must be VertexShader or FragmentShader. + /// + /// + /// Specifies the numeric format whose precision and range to query. + /// + /// [length: 2] + /// Specifies the address of array of two integers into which encodings of the implementation's numeric range are returned. + /// + /// [length: 1] + /// Specifies the address of an integer into which the numeric precision of the implementation is written. + /// + [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderPrecisionFormat")] + [CLSCompliant(false)] + public static unsafe void GetShaderPrecisionFormat(OpenTK.Graphics.ES31.ShaderType shadertype, OpenTK.Graphics.ES31.PrecisionType precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32* range, [OutAttribute, CountAttribute(Count = 1)] Int32* precision) { throw new BindingsNotRewrittenException(); } + /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the source code string from a shader object /// @@ -15260,6 +18454,7 @@ namespace OpenTK.Graphics.ES31 /// /// For glGetStringi, specifies the index of the string to return. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetStringi")] [CLSCompliant(false)] public static String GetString(OpenTK.Graphics.ES31.All name, Int32 index) { throw new BindingsNotRewrittenException(); } @@ -15273,10 +18468,37 @@ namespace OpenTK.Graphics.ES31 /// /// For glGetStringi, specifies the index of the string to return. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetStringi")] [CLSCompliant(false)] public static String GetString(OpenTK.Graphics.ES31.All name, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] + /// Return a string describing the current GL connection + /// + /// + /// Specifies a symbolic constant, one of Extensions, Renderer, ShadingLanguageVersion, Vendor, or Version. glGetStringi accepts only the Extensions token. + /// + /// + /// For glGetStringi, specifies the index of the string to return. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetStringi")] + [CLSCompliant(false)] + public static String GetString(OpenTK.Graphics.ES31.StringName name, Int32 index) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Return a string describing the current GL connection + /// + /// + /// Specifies a symbolic constant, one of Extensions, Renderer, ShadingLanguageVersion, Vendor, or Version. glGetStringi accepts only the Extensions token. + /// + /// + /// For glGetStringi, specifies the index of the string to return. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetStringi")] + [CLSCompliant(false)] + public static String GetString(OpenTK.Graphics.ES31.StringName name, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] /// Query the properties of a sync object /// @@ -15295,6 +18517,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// Specifies the address of an array to receive the values of the queried parameter. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSynciv")] [CLSCompliant(false)] public static void GetSync(IntPtr sync, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new BindingsNotRewrittenException(); } @@ -15317,6 +18540,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// Specifies the address of an array to receive the values of the queried parameter. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSynciv")] [CLSCompliant(false)] public static void GetSync(IntPtr sync, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new BindingsNotRewrittenException(); } @@ -15339,10 +18563,77 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// Specifies the address of an array to receive the values of the queried parameter. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSynciv")] [CLSCompliant(false)] public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] + /// Query the properties of a sync object + /// + /// + /// Specifies the sync object whose properties to query. + /// + /// + /// Specifies the parameter whose value to retrieve from the sync object specified in sync. + /// + /// + /// Specifies the size of the buffer whose address is given in values. + /// + /// [length: 1] + /// Specifies the address of an variable to receive the number of integers placed in values. + /// + /// [length: bufSize] + /// Specifies the address of an array to receive the values of the queried parameter. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSynciv")] + [CLSCompliant(false)] + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES31.SyncParameterName pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Query the properties of a sync object + /// + /// + /// Specifies the sync object whose properties to query. + /// + /// + /// Specifies the parameter whose value to retrieve from the sync object specified in sync. + /// + /// + /// Specifies the size of the buffer whose address is given in values. + /// + /// [length: 1] + /// Specifies the address of an variable to receive the number of integers placed in values. + /// + /// [length: bufSize] + /// Specifies the address of an array to receive the values of the queried parameter. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSynciv")] + [CLSCompliant(false)] + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES31.SyncParameterName pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Query the properties of a sync object + /// + /// + /// Specifies the sync object whose properties to query. + /// + /// + /// Specifies the parameter whose value to retrieve from the sync object specified in sync. + /// + /// + /// Specifies the size of the buffer whose address is given in values. + /// + /// [length: 1] + /// Specifies the address of an variable to receive the number of integers placed in values. + /// + /// [length: bufSize] + /// Specifies the address of an array to receive the values of the queried parameter. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSynciv")] + [CLSCompliant(false)] + public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES31.SyncParameterName pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.1 or ES_VERSION_3_1] /// Return texture parameter values for a specific level of detail /// @@ -16393,6 +19684,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: 1] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] [CLSCompliant(false)] public static void GetVertexAttribI(Int32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -16401,6 +19693,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: 1] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] [CLSCompliant(false)] public static unsafe void GetVertexAttribI(Int32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } @@ -16411,12 +19704,30 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] [CLSCompliant(false)] + public static void GetVertexAttribI(Int32 index, OpenTK.Graphics.ES31.VertexAttribEnum pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// + /// + /// [length: 1] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] + [CLSCompliant(false)] + public static unsafe void GetVertexAttribI(Int32 index, OpenTK.Graphics.ES31.VertexAttribEnum pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// + /// + /// [length: 1] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] + [CLSCompliant(false)] public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// /// [length: 1] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] [CLSCompliant(false)] public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } @@ -16425,6 +19736,23 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: 1] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] + [CLSCompliant(false)] + public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES31.VertexAttribEnum pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// + /// + /// [length: 1] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] + [CLSCompliant(false)] + public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES31.VertexAttribEnum pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// + /// + /// [length: 1] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIuiv")] [CLSCompliant(false)] public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] out UInt32 @params) { throw new BindingsNotRewrittenException(); } @@ -16433,10 +19761,27 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: 1] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIuiv")] [CLSCompliant(false)] public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] UInt32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] + /// + /// + /// [length: 1] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIuiv")] + [CLSCompliant(false)] + public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES31.VertexAttribEnum pname, [OutAttribute, CountAttribute(Count = 1)] out UInt32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// + /// + /// [length: 1] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIuiv")] + [CLSCompliant(false)] + public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES31.VertexAttribEnum pname, [OutAttribute, CountAttribute(Count = 1)] UInt32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter /// @@ -16746,6 +20091,7 @@ namespace OpenTK.Graphics.ES31 /// [length: numAttachments] /// A list of numAttachments attachments to invalidate. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateFramebuffer")] [CLSCompliant(false)] public static void InvalidateFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES31.All[] attachments) { throw new BindingsNotRewrittenException(); } @@ -16762,6 +20108,7 @@ namespace OpenTK.Graphics.ES31 /// [length: numAttachments] /// A list of numAttachments attachments to invalidate. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateFramebuffer")] [CLSCompliant(false)] public static void InvalidateFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES31.All attachments) { throw new BindingsNotRewrittenException(); } @@ -16778,10 +20125,59 @@ namespace OpenTK.Graphics.ES31 /// [length: numAttachments] /// A list of numAttachments attachments to invalidate. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateFramebuffer")] [CLSCompliant(false)] public static unsafe void InvalidateFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES31.All* attachments) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] + /// Invalidate the contents of attachments within a framebuffer + /// + /// + /// Specifies the target of the invalidate operation. Must be Framebuffer. + /// + /// + /// Specifies how many attachments are supplied in the attachments list. + /// + /// [length: numAttachments] + /// A list of numAttachments attachments to invalidate. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateFramebuffer")] + [CLSCompliant(false)] + public static void InvalidateFramebuffer(OpenTK.Graphics.ES31.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES31.All[] attachments) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Invalidate the contents of attachments within a framebuffer + /// + /// + /// Specifies the target of the invalidate operation. Must be Framebuffer. + /// + /// + /// Specifies how many attachments are supplied in the attachments list. + /// + /// [length: numAttachments] + /// A list of numAttachments attachments to invalidate. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateFramebuffer")] + [CLSCompliant(false)] + public static void InvalidateFramebuffer(OpenTK.Graphics.ES31.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES31.All attachments) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Invalidate the contents of attachments within a framebuffer + /// + /// + /// Specifies the target of the invalidate operation. Must be Framebuffer. + /// + /// + /// Specifies how many attachments are supplied in the attachments list. + /// + /// [length: numAttachments] + /// A list of numAttachments attachments to invalidate. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateFramebuffer")] + [CLSCompliant(false)] + public static unsafe void InvalidateFramebuffer(OpenTK.Graphics.ES31.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES31.All* attachments) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] /// Invalidate portions of the contents of attachments within a framebuffer /// @@ -16806,6 +20202,7 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the height of the pixel rectangle to invalidate. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateSubFramebuffer")] [CLSCompliant(false)] public static void InvalidateSubFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES31.All[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } @@ -16834,6 +20231,7 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the height of the pixel rectangle to invalidate. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateSubFramebuffer")] [CLSCompliant(false)] public static void InvalidateSubFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES31.All attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } @@ -16862,10 +20260,95 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the height of the pixel rectangle to invalidate. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateSubFramebuffer")] [CLSCompliant(false)] public static unsafe void InvalidateSubFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES31.All* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] + /// Invalidate portions of the contents of attachments within a framebuffer + /// + /// + /// Specifies the target of the invalidate operation. Must be Framebuffer. + /// + /// + /// Specifies how many attachments are supplied in the attachments list. + /// + /// [length: numAttachments] + /// A list of numAttachments attachments to invalidate. + /// + /// + /// Specifies the left origin of the pixel rectangle to invalidate, with lower left hand corner at (0,0). + /// + /// + /// Specifies the bottom origin of the pixel rectangle to invalidate, with lower left hand corner at (0,0). + /// + /// + /// Specifies the width of the pixel rectangle to invalidate. + /// + /// + /// Specifies the height of the pixel rectangle to invalidate. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateSubFramebuffer")] + [CLSCompliant(false)] + public static void InvalidateSubFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES31.FramebufferAttachment[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Invalidate portions of the contents of attachments within a framebuffer + /// + /// + /// Specifies the target of the invalidate operation. Must be Framebuffer. + /// + /// + /// Specifies how many attachments are supplied in the attachments list. + /// + /// [length: numAttachments] + /// A list of numAttachments attachments to invalidate. + /// + /// + /// Specifies the left origin of the pixel rectangle to invalidate, with lower left hand corner at (0,0). + /// + /// + /// Specifies the bottom origin of the pixel rectangle to invalidate, with lower left hand corner at (0,0). + /// + /// + /// Specifies the width of the pixel rectangle to invalidate. + /// + /// + /// Specifies the height of the pixel rectangle to invalidate. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateSubFramebuffer")] + [CLSCompliant(false)] + public static void InvalidateSubFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES31.FramebufferAttachment attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Invalidate portions of the contents of attachments within a framebuffer + /// + /// + /// Specifies the target of the invalidate operation. Must be Framebuffer. + /// + /// + /// Specifies how many attachments are supplied in the attachments list. + /// + /// [length: numAttachments] + /// A list of numAttachments attachments to invalidate. + /// + /// + /// Specifies the left origin of the pixel rectangle to invalidate, with lower left hand corner at (0,0). + /// + /// + /// Specifies the bottom origin of the pixel rectangle to invalidate, with lower left hand corner at (0,0). + /// + /// + /// Specifies the width of the pixel rectangle to invalidate. + /// + /// + /// Specifies the height of the pixel rectangle to invalidate. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateSubFramebuffer")] + [CLSCompliant(false)] + public static unsafe void InvalidateSubFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES31.FramebufferAttachment* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a buffer object /// @@ -17223,9 +20706,9 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the barriers to insert. Must be a bitwise combination of VertexAttribArrayBarrierBit, ElementArrayBarrierBit, UniformBarrierBit, TextureFetchBarrierBit, ShaderImageAccessBarrierBit, CommandBarrierBit, PixelBufferBarrierBit, TextureUpdateBarrierBit, BufferUpdateBarrierBit, FramebufferBarrierBit, TransformFeedbackBarrierBit, AtomicCounterBarrierBit, or ShaderStorageBarrierBit. If the special value AllBarrierBits is specified, all supported barriers will be inserted. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glMemoryBarrier")] - [CLSCompliant(false)] - public static void MemoryBarrier(Int32 barriers) { throw new BindingsNotRewrittenException(); } + public static void MemoryBarrier(OpenTK.Graphics.ES31.All barriers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Defines a barrier ordering memory transactions @@ -17234,20 +20717,18 @@ namespace OpenTK.Graphics.ES31 /// Specifies the barriers to insert. Must be a bitwise combination of VertexAttribArrayBarrierBit, ElementArrayBarrierBit, UniformBarrierBit, TextureFetchBarrierBit, ShaderImageAccessBarrierBit, CommandBarrierBit, PixelBufferBarrierBit, TextureUpdateBarrierBit, BufferUpdateBarrierBit, FramebufferBarrierBit, TransformFeedbackBarrierBit, AtomicCounterBarrierBit, or ShaderStorageBarrierBit. If the special value AllBarrierBits is specified, all supported barriers will be inserted. /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glMemoryBarrier")] - [CLSCompliant(false)] - public static void MemoryBarrier(UInt32 barriers) { throw new BindingsNotRewrittenException(); } + public static void MemoryBarrier(OpenTK.Graphics.ES31.MemoryBarrierMask barriers) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.1 or ES_VERSION_3_1] + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glMemoryBarrierByRegion")] + public static void MemoryBarrierByRegion(OpenTK.Graphics.ES31.All barriers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glMemoryBarrierByRegion")] - [CLSCompliant(false)] - public static void MemoryBarrierByRegion(Int32 barriers) { throw new BindingsNotRewrittenException(); } - - /// [requires: v3.1 or ES_VERSION_3_1] - /// - [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glMemoryBarrierByRegion")] - [CLSCompliant(false)] - public static void MemoryBarrierByRegion(UInt32 barriers) { throw new BindingsNotRewrittenException(); } + public static void MemoryBarrierByRegion(OpenTK.Graphics.ES31.MemoryBarrierMask barriers) { throw new BindingsNotRewrittenException(); } /// /// Label a named object identified within a namespace @@ -17264,6 +20745,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(label,length)] /// The address of a string containing the label to assign to the object. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabel")] [CLSCompliant(false)] public static void ObjectLabel(OpenTK.Graphics.ES31.All identifier, Int32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } @@ -17283,10 +20765,49 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(label,length)] /// The address of a string containing the label to assign to the object. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabel")] [CLSCompliant(false)] public static void ObjectLabel(OpenTK.Graphics.ES31.All identifier, UInt32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } + /// + /// Label a named object identified within a namespace + /// + /// + /// The namespace from which the name of the object is allocated. + /// + /// + /// The name of the object to label. + /// + /// + /// The length of the label to be used for the object. + /// + /// [length: COMPSIZE(label,length)] + /// The address of a string containing the label to assign to the object. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabel")] + [CLSCompliant(false)] + public static void ObjectLabel(OpenTK.Graphics.ES31.ObjectIdentifier identifier, Int32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } + + /// + /// Label a named object identified within a namespace + /// + /// + /// The namespace from which the name of the object is allocated. + /// + /// + /// The name of the object to label. + /// + /// + /// The length of the label to be used for the object. + /// + /// [length: COMPSIZE(label,length)] + /// The address of a string containing the label to assign to the object. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabel")] + [CLSCompliant(false)] + public static void ObjectLabel(OpenTK.Graphics.ES31.ObjectIdentifier identifier, UInt32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } + /// /// Label a a sync object identified by a pointer /// @@ -17640,6 +21161,7 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the new value of the parameter specified by pname for program. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glProgramParameteri")] [CLSCompliant(false)] public static void ProgramParameter(Int32 program, OpenTK.Graphics.ES31.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } @@ -17658,8 +21180,41 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glProgramParameteri")] [CLSCompliant(false)] + public static void ProgramParameter(Int32 program, OpenTK.Graphics.ES31.ProgramParameterPName pname, Int32 value) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Specify a parameter for a program object + /// + /// + /// Specifies the name of a program object whose parameter to modify. + /// + /// + /// Specifies the name of the parameter to modify. + /// + /// + /// Specifies the new value of the parameter specified by pname for program. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glProgramParameteri")] + [CLSCompliant(false)] public static void ProgramParameter(UInt32 program, OpenTK.Graphics.ES31.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] + /// Specify a parameter for a program object + /// + /// + /// Specifies the name of a program object whose parameter to modify. + /// + /// + /// Specifies the name of the parameter to modify. + /// + /// + /// Specifies the new value of the parameter specified by pname for program. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glProgramParameteri")] + [CLSCompliant(false)] + public static void ProgramParameter(UInt32 program, OpenTK.Graphics.ES31.ProgramParameterPName pname, Int32 value) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object /// @@ -19727,6 +23282,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(message,length)] /// The a string containing the message to be sent to the debug output stream. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroup")] [CLSCompliant(false)] public static void PushDebugGroup(OpenTK.Graphics.ES31.All source, Int32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new BindingsNotRewrittenException(); } @@ -19746,10 +23302,49 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(message,length)] /// The a string containing the message to be sent to the debug output stream. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroup")] [CLSCompliant(false)] public static void PushDebugGroup(OpenTK.Graphics.ES31.All source, UInt32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new BindingsNotRewrittenException(); } + /// + /// Push a named debug group into the command stream + /// + /// + /// The source of the debug message. + /// + /// + /// The identifier of the message. + /// + /// + /// The length of the message to be sent to the debug output stream. + /// + /// [length: COMPSIZE(message,length)] + /// The a string containing the message to be sent to the debug output stream. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroup")] + [CLSCompliant(false)] + public static void PushDebugGroup(OpenTK.Graphics.ES31.DebugSource source, Int32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new BindingsNotRewrittenException(); } + + /// + /// Push a named debug group into the command stream + /// + /// + /// The source of the debug message. + /// + /// + /// The identifier of the message. + /// + /// + /// The length of the message to be sent to the debug output stream. + /// + /// [length: COMPSIZE(message,length)] + /// The a string containing the message to be sent to the debug output stream. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroup")] + [CLSCompliant(false)] + public static void PushDebugGroup(OpenTK.Graphics.ES31.DebugSource source, UInt32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] /// Select a color buffer source for pixels /// @@ -19778,6 +23373,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixels")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [OutAttribute] IntPtr data) { throw new BindingsNotRewrittenException(); } @@ -19790,6 +23386,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixels")] [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [InAttribute, OutAttribute] T7[] data) @@ -19805,6 +23402,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixels")] [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [InAttribute, OutAttribute] T7[,] data) @@ -19820,6 +23418,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixels")] [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [InAttribute, OutAttribute] T7[,,] data) @@ -19835,11 +23434,83 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixels")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [InAttribute, OutAttribute] ref T7 data) where T7 : struct { throw new BindingsNotRewrittenException(); } + /// + /// + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixels")] + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, Int32 bufSize, [OutAttribute] IntPtr data) { throw new BindingsNotRewrittenException(); } + + /// + /// + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixels")] + [CLSCompliant(false)] + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T7[] data) + where T7 : struct + { throw new BindingsNotRewrittenException(); } + + /// + /// + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixels")] + [CLSCompliant(false)] + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T7[,] data) + where T7 : struct + { throw new BindingsNotRewrittenException(); } + + /// + /// + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixels")] + [CLSCompliant(false)] + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T7[,,] data) + where T7 : struct + { throw new BindingsNotRewrittenException(); } + + /// + /// + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixels")] + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] ref T7 data) + where T7 : struct + { throw new BindingsNotRewrittenException(); } + /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer /// @@ -20178,7 +23849,29 @@ namespace OpenTK.Graphics.ES31 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glRenderbufferStorage")] - public static void RenderbufferStorage(OpenTK.Graphics.ES31.RenderbufferTarget target, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + public static void RenderbufferStorage(OpenTK.Graphics.ES31.RenderbufferTarget target, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image + /// + /// + /// Specifies a binding to which the target of the allocation and must be Renderbuffer. + /// + /// + /// Specifies the number of samples to be used for the renderbuffer object's storage. + /// + /// + /// Specifies the internal format to use for the renderbuffer object's image. + /// + /// + /// Specifies the width of the renderbuffer, in pixels. + /// + /// + /// Specifies the height of the renderbuffer, in pixels. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glRenderbufferStorageMultisample")] + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -20199,7 +23892,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glRenderbufferStorageMultisample")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES31.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Resume transform feedback operations @@ -20257,6 +23950,7 @@ namespace OpenTK.Graphics.ES31 /// /// For the scalar commands, specifies the value of pname. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterf")] [CLSCompliant(false)] public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, Single param) { throw new BindingsNotRewrittenException(); } @@ -20275,8 +23969,41 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterf")] [CLSCompliant(false)] + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Set sampler parameters + /// + /// + /// Specifies the sampler object whose parameter to modify. + /// + /// + /// Specifies the symbolic name of a single-valued sampler parameter. pname can be one of the following: TextureWrapS, TextureWrapT, TextureWrapR, TextureMinFilter, TextureMagFilter, TextureMinLod, TextureMaxLod, TextureCompareMode, or TextureCompareFunc. + /// + /// + /// For the scalar commands, specifies the value of pname. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterf")] + [CLSCompliant(false)] public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, Single param) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] + /// Set sampler parameters + /// + /// + /// Specifies the sampler object whose parameter to modify. + /// + /// + /// Specifies the symbolic name of a single-valued sampler parameter. pname can be one of the following: TextureWrapS, TextureWrapT, TextureWrapR, TextureMinFilter, TextureMagFilter, TextureMinLod, TextureMaxLod, TextureCompareMode, or TextureCompareFunc. + /// + /// + /// For the scalar commands, specifies the value of pname. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterf")] + [CLSCompliant(false)] + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters /// @@ -20289,6 +24016,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// For the scalar commands, specifies the value of pname. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterfv")] [CLSCompliant(false)] public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new BindingsNotRewrittenException(); } @@ -20305,6 +24033,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// For the scalar commands, specifies the value of pname. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterfv")] [CLSCompliant(false)] public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single* param) { throw new BindingsNotRewrittenException(); } @@ -20323,7 +24052,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterfv")] [CLSCompliant(false)] - public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new BindingsNotRewrittenException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20339,8 +24068,74 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterfv")] [CLSCompliant(false)] + public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Single* param) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Set sampler parameters + /// + /// + /// Specifies the sampler object whose parameter to modify. + /// + /// + /// Specifies the symbolic name of a single-valued sampler parameter. pname can be one of the following: TextureWrapS, TextureWrapT, TextureWrapR, TextureMinFilter, TextureMagFilter, TextureMinLod, TextureMaxLod, TextureCompareMode, or TextureCompareFunc. + /// + /// [length: COMPSIZE(pname)] + /// For the scalar commands, specifies the value of pname. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterfv")] + [CLSCompliant(false)] + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Set sampler parameters + /// + /// + /// Specifies the sampler object whose parameter to modify. + /// + /// + /// Specifies the symbolic name of a single-valued sampler parameter. pname can be one of the following: TextureWrapS, TextureWrapT, TextureWrapR, TextureMinFilter, TextureMagFilter, TextureMinLod, TextureMaxLod, TextureCompareMode, or TextureCompareFunc. + /// + /// [length: COMPSIZE(pname)] + /// For the scalar commands, specifies the value of pname. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterfv")] + [CLSCompliant(false)] public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single* param) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] + /// Set sampler parameters + /// + /// + /// Specifies the sampler object whose parameter to modify. + /// + /// + /// Specifies the symbolic name of a single-valued sampler parameter. pname can be one of the following: TextureWrapS, TextureWrapT, TextureWrapR, TextureMinFilter, TextureMagFilter, TextureMinLod, TextureMaxLod, TextureCompareMode, or TextureCompareFunc. + /// + /// [length: COMPSIZE(pname)] + /// For the scalar commands, specifies the value of pname. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterfv")] + [CLSCompliant(false)] + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Set sampler parameters + /// + /// + /// Specifies the sampler object whose parameter to modify. + /// + /// + /// Specifies the symbolic name of a single-valued sampler parameter. pname can be one of the following: TextureWrapS, TextureWrapT, TextureWrapR, TextureMinFilter, TextureMagFilter, TextureMinLod, TextureMaxLod, TextureCompareMode, or TextureCompareFunc. + /// + /// [length: COMPSIZE(pname)] + /// For the scalar commands, specifies the value of pname. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterfv")] + [CLSCompliant(false)] + public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Single* param) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters /// @@ -20353,6 +24148,7 @@ namespace OpenTK.Graphics.ES31 /// /// For the scalar commands, specifies the value of pname. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteri")] [CLSCompliant(false)] public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } @@ -20371,8 +24167,41 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteri")] [CLSCompliant(false)] + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Set sampler parameters + /// + /// + /// Specifies the sampler object whose parameter to modify. + /// + /// + /// Specifies the symbolic name of a single-valued sampler parameter. pname can be one of the following: TextureWrapS, TextureWrapT, TextureWrapR, TextureMinFilter, TextureMagFilter, TextureMinLod, TextureMaxLod, TextureCompareMode, or TextureCompareFunc. + /// + /// + /// For the scalar commands, specifies the value of pname. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteri")] + [CLSCompliant(false)] public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] + /// Set sampler parameters + /// + /// + /// Specifies the sampler object whose parameter to modify. + /// + /// + /// Specifies the symbolic name of a single-valued sampler parameter. pname can be one of the following: TextureWrapS, TextureWrapT, TextureWrapR, TextureMinFilter, TextureMagFilter, TextureMinLod, TextureMaxLod, TextureCompareMode, or TextureCompareFunc. + /// + /// + /// For the scalar commands, specifies the value of pname. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteri")] + [CLSCompliant(false)] + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters /// @@ -20385,6 +24214,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// For the scalar commands, specifies the value of pname. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteriv")] [CLSCompliant(false)] public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } @@ -20401,6 +24231,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// For the scalar commands, specifies the value of pname. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteriv")] [CLSCompliant(false)] public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } @@ -20419,7 +24250,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteriv")] [CLSCompliant(false)] - public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20435,8 +24266,74 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteriv")] [CLSCompliant(false)] + public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Set sampler parameters + /// + /// + /// Specifies the sampler object whose parameter to modify. + /// + /// + /// Specifies the symbolic name of a single-valued sampler parameter. pname can be one of the following: TextureWrapS, TextureWrapT, TextureWrapR, TextureMinFilter, TextureMagFilter, TextureMinLod, TextureMaxLod, TextureCompareMode, or TextureCompareFunc. + /// + /// [length: COMPSIZE(pname)] + /// For the scalar commands, specifies the value of pname. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteriv")] + [CLSCompliant(false)] + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Set sampler parameters + /// + /// + /// Specifies the sampler object whose parameter to modify. + /// + /// + /// Specifies the symbolic name of a single-valued sampler parameter. pname can be one of the following: TextureWrapS, TextureWrapT, TextureWrapR, TextureMinFilter, TextureMagFilter, TextureMinLod, TextureMaxLod, TextureCompareMode, or TextureCompareFunc. + /// + /// [length: COMPSIZE(pname)] + /// For the scalar commands, specifies the value of pname. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteriv")] + [CLSCompliant(false)] public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] + /// Set sampler parameters + /// + /// + /// Specifies the sampler object whose parameter to modify. + /// + /// + /// Specifies the symbolic name of a single-valued sampler parameter. pname can be one of the following: TextureWrapS, TextureWrapT, TextureWrapR, TextureMinFilter, TextureMagFilter, TextureMinLod, TextureMaxLod, TextureCompareMode, or TextureCompareFunc. + /// + /// [length: COMPSIZE(pname)] + /// For the scalar commands, specifies the value of pname. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteriv")] + [CLSCompliant(false)] + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Set sampler parameters + /// + /// + /// Specifies the sampler object whose parameter to modify. + /// + /// + /// Specifies the symbolic name of a single-valued sampler parameter. pname can be one of the following: TextureWrapS, TextureWrapT, TextureWrapR, TextureMinFilter, TextureMagFilter, TextureMinLod, TextureMaxLod, TextureCompareMode, or TextureCompareFunc. + /// + /// [length: COMPSIZE(pname)] + /// For the scalar commands, specifies the value of pname. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteriv")] + [CLSCompliant(false)] + public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } + /// [requires: v2.0 or ES_VERSION_2_0] /// Define the scissor box /// @@ -21775,7 +25672,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] - public static void TexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } + public static void TexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -21809,7 +25706,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] [CLSCompliant(false)] - public static void TexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) + public static void TexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -21845,7 +25742,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] [CLSCompliant(false)] - public static void TexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) + public static void TexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -21881,7 +25778,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] [CLSCompliant(false)] - public static void TexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) + public static void TexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -21916,7 +25813,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] - public static void TexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) + public static void TexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -22150,7 +26047,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexImage3D")] - public static void TexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } + public static void TexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image @@ -22187,7 +26084,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexImage3D")] [CLSCompliant(false)] - public static void TexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[] pixels) + public static void TexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[] pixels) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -22226,7 +26123,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexImage3D")] [CLSCompliant(false)] - public static void TexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,] pixels) + public static void TexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,] pixels) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -22265,7 +26162,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexImage3D")] [CLSCompliant(false)] - public static void TexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,,] pixels) + public static void TexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,,] pixels) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -22303,7 +26200,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexImage3D")] - public static void TexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T9 pixels) + public static void TexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T9 pixels) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -22519,9 +26416,56 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the height of the texture, in texels. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexStorage2D")] public static void TexStorage2D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] + /// Simultaneously specify storage for all levels of a two-dimensional texture + /// + /// + /// Specify the target of the operation. target must be one of Texture2D, or TextureCubeMap. + /// + /// + /// Specify the number of texture levels. + /// + /// + /// Specifies the sized internal format to be used to store texture image data. + /// + /// + /// Specifies the width of the texture, in texels. + /// + /// + /// Specifies the height of the texture, in texels. + /// + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexStorage2D")] + public static void TexStorage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 levels, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.1 or ES_VERSION_3_1] + /// Specify storage for a two-dimensional multisample texture + /// + /// + /// Specify the target of the operation. target must be Texture2DMultisample. + /// + /// + /// Specify the number of samples in the texture. + /// + /// + /// Specifies the sized internal format to be used to store texture image data. + /// + /// + /// Specifies the width of the texture, in texels. + /// + /// + /// Specifies the height of the texture, in texels. + /// + /// + /// Specifies whether the image will use identical sample locations and the same number of samples for all texels in the image, and the sample locations will not depend on the internal format or size of the image. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glTexStorage2DMultisample")] + public static void TexStorage2DMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.1 or ES_VERSION_3_1] /// Specify storage for a two-dimensional multisample texture /// @@ -22544,7 +26488,32 @@ namespace OpenTK.Graphics.ES31 /// Specifies whether the image will use identical sample locations and the same number of samples for all texels in the image, and the sample locations will not depend on the internal format or size of the image. /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glTexStorage2DMultisample")] - public static void TexStorage2DMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } + public static void TexStorage2DMultisample(OpenTK.Graphics.ES31.TextureTarget target, Int32 samples, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// Simultaneously specify storage for all levels of a three-dimensional or two-dimensional array texture + /// + /// + /// Specify the target of the operation. target must be one of Texture3D, or Texture2DArray. + /// + /// + /// Specify the number of texture levels. + /// + /// + /// Specifies the sized internal format to be used to store texture image data. + /// + /// + /// Specifies the width of the texture, in texels. + /// + /// + /// Specifies the height of the texture, in texels. + /// + /// + /// Specifies the depth of the texture, in texels. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexStorage3D")] + public static void TexStorage3D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Simultaneously specify storage for all levels of a three-dimensional or two-dimensional array texture @@ -22568,7 +26537,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the depth of the texture, in texels. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexStorage3D")] - public static void TexStorage3D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } + public static void TexStorage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 levels, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -24462,9 +28431,10 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the program object containing the shader executables to use in pipeline. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glUseProgramStages")] [CLSCompliant(false)] - public static void UseProgramStages(Int32 pipeline, Int32 stages, Int32 program) { throw new BindingsNotRewrittenException(); } + public static void UseProgramStages(Int32 pipeline, OpenTK.Graphics.ES31.All stages, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Bind stages of a program object to a program pipeline @@ -24480,7 +28450,40 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glUseProgramStages")] [CLSCompliant(false)] - public static void UseProgramStages(UInt32 pipeline, UInt32 stages, UInt32 program) { throw new BindingsNotRewrittenException(); } + public static void UseProgramStages(Int32 pipeline, OpenTK.Graphics.ES31.UseProgramStageMask stages, Int32 program) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.1 or ES_VERSION_3_1] + /// Bind stages of a program object to a program pipeline + /// + /// + /// Specifies the program pipeline object to which to bind stages from program. + /// + /// + /// Specifies a set of program stages to bind to the program pipeline object. + /// + /// + /// Specifies the program object containing the shader executables to use in pipeline. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glUseProgramStages")] + [CLSCompliant(false)] + public static void UseProgramStages(UInt32 pipeline, OpenTK.Graphics.ES31.All stages, UInt32 program) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.1 or ES_VERSION_3_1] + /// Bind stages of a program object to a program pipeline + /// + /// + /// Specifies the program pipeline object to which to bind stages from program. + /// + /// + /// Specifies a set of program stages to bind to the program pipeline object. + /// + /// + /// Specifies the program object containing the shader executables to use in pipeline. + /// + [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glUseProgramStages")] + [CLSCompliant(false)] + public static void UseProgramStages(UInt32 pipeline, OpenTK.Graphics.ES31.UseProgramStageMask stages, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Validates a program object @@ -25135,6 +29138,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(size,type,stride)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.All type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } @@ -25145,6 +29149,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(size,type,stride)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[] pointer) @@ -25157,6 +29162,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(size,type,stride)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,] pointer) @@ -25169,6 +29175,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(size,type,stride)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,,] pointer) @@ -25181,6 +29188,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(size,type,stride)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T4 pointer) @@ -25195,6 +29203,65 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(size,type,stride)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] [CLSCompliant(false)] + public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.VertexAttribPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// + /// + /// + /// + /// [length: COMPSIZE(size,type,stride)] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] + public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.VertexAttribPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[] pointer) + where T4 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// + /// + /// + /// + /// [length: COMPSIZE(size,type,stride)] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] + public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.VertexAttribPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,] pointer) + where T4 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// + /// + /// + /// + /// [length: COMPSIZE(size,type,stride)] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] + public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.VertexAttribPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,,] pointer) + where T4 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// + /// + /// + /// + /// [length: COMPSIZE(size,type,stride)] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] + public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.VertexAttribPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T4 pointer) + where T4 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// + /// + /// + /// + /// [length: COMPSIZE(size,type,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.All type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] @@ -25203,6 +29270,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(size,type,stride)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[] pointer) @@ -25215,6 +29283,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(size,type,stride)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,] pointer) @@ -25227,6 +29296,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(size,type,stride)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,,] pointer) @@ -25239,12 +29309,71 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(size,type,stride)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T4 pointer) where T4 : struct { throw new BindingsNotRewrittenException(); } + /// [requires: v3.0 or ES_VERSION_3_0] + /// + /// + /// + /// + /// [length: COMPSIZE(size,type,stride)] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] + public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.VertexAttribPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// + /// + /// + /// + /// [length: COMPSIZE(size,type,stride)] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] + public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.VertexAttribPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[] pointer) + where T4 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// + /// + /// + /// + /// [length: COMPSIZE(size,type,stride)] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] + public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.VertexAttribPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,] pointer) + where T4 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// + /// + /// + /// + /// [length: COMPSIZE(size,type,stride)] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] + public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.VertexAttribPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,,] pointer) + where T4 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.0 or ES_VERSION_3_0] + /// + /// + /// + /// + /// [length: COMPSIZE(size,type,stride)] + [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] + [CLSCompliant(false)] + public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.VertexAttribPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T4 pointer) + where T4 : struct + { throw new BindingsNotRewrittenException(); } + /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data /// @@ -25928,6 +30057,7 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the name of a query object. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glBeginQueryEXT")] [CLSCompliant(false)] public static void BeginQuery(OpenTK.Graphics.ES31.All target, Int32 id) { throw new BindingsNotRewrittenException(); } @@ -25941,10 +30071,37 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the name of a query object. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glBeginQueryEXT")] [CLSCompliant(false)] public static void BeginQuery(OpenTK.Graphics.ES31.All target, UInt32 id) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] + /// Delimit the boundaries of a query object + /// + /// + /// Specifies the target type of query object established between glBeginQuery and the subsequent glEndQuery. The symbolic constant must be one of AnySamplesPassed, AnySamplesPassedConservative, or TransformFeedbackPrimitivesWritten. + /// + /// + /// Specifies the name of a query object. + /// + [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glBeginQueryEXT")] + [CLSCompliant(false)] + public static void BeginQuery(OpenTK.Graphics.ES31.QueryTarget target, Int32 id) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] + /// Delimit the boundaries of a query object + /// + /// + /// Specifies the target type of query object established between glBeginQuery and the subsequent glEndQuery. The symbolic constant must be one of AnySamplesPassed, AnySamplesPassedConservative, or TransformFeedbackPrimitivesWritten. + /// + /// + /// Specifies the name of a query object. + /// + [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glBeginQueryEXT")] + [CLSCompliant(false)] + public static void BeginQuery(OpenTK.Graphics.ES31.QueryTarget target, UInt32 id) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_blend_func_extended] /// Bind a user-defined varying out variable to a fragment shader color number /// @@ -26063,6 +30220,7 @@ namespace OpenTK.Graphics.ES31 /// /// specifies how source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiEXT")] [CLSCompliant(false)] public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES31.All mode) { throw new BindingsNotRewrittenException(); } @@ -26078,8 +30236,35 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiEXT")] [CLSCompliant(false)] + public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES31.BlendEquationModeExt mode) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_draw_buffers_indexed] + /// Specify the equation used for both the RGB blend equation and the Alpha blend equation + /// + /// + /// specifies how source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. + /// + /// + /// specifies how source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiEXT")] + [CLSCompliant(false)] public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES31.All mode) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_draw_buffers_indexed] + /// Specify the equation used for both the RGB blend equation and the Alpha blend equation + /// + /// + /// specifies how source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. + /// + /// + /// specifies how source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. + /// + [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiEXT")] + [CLSCompliant(false)] + public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES31.BlendEquationModeExt mode) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately /// @@ -26092,6 +30277,7 @@ namespace OpenTK.Graphics.ES31 /// /// specifies the alpha blend equation, how the alpha component of the source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiEXT")] [CLSCompliant(false)] public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES31.All modeRGB, OpenTK.Graphics.ES31.All modeAlpha) { throw new BindingsNotRewrittenException(); } @@ -26110,8 +30296,41 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiEXT")] [CLSCompliant(false)] + public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES31.BlendEquationModeExt modeRGB, OpenTK.Graphics.ES31.BlendEquationModeExt modeAlpha) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_draw_buffers_indexed] + /// Set the RGB blend equation and the alpha blend equation separately + /// + /// + /// specifies the RGB blend equation, how the red, green, and blue components of the source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. + /// + /// + /// specifies the RGB blend equation, how the red, green, and blue components of the source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. + /// + /// + /// specifies the alpha blend equation, how the alpha component of the source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiEXT")] + [CLSCompliant(false)] public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES31.All modeRGB, OpenTK.Graphics.ES31.All modeAlpha) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_draw_buffers_indexed] + /// Set the RGB blend equation and the alpha blend equation separately + /// + /// + /// specifies the RGB blend equation, how the red, green, and blue components of the source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. + /// + /// + /// specifies the RGB blend equation, how the red, green, and blue components of the source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. + /// + /// + /// specifies the alpha blend equation, how the alpha component of the source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. + /// + [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiEXT")] + [CLSCompliant(false)] + public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES31.BlendEquationModeExt modeRGB, OpenTK.Graphics.ES31.BlendEquationModeExt modeAlpha) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_draw_buffers_indexed] /// Specify pixel arithmetic /// @@ -26122,6 +30341,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies how the red, green, blue, and alpha destination blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha. ConstantColor, OneMinusConstantColor, ConstantAlpha, and OneMinusConstantAlpha. The initial value is Zero. /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciEXT")] [CLSCompliant(false)] public static void BlendFunc(Int32 buf, OpenTK.Graphics.ES31.All src, OpenTK.Graphics.ES31.All dst) { throw new BindingsNotRewrittenException(); } @@ -26138,8 +30358,37 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciEXT")] [CLSCompliant(false)] + public static void BlendFunc(Int32 buf, OpenTK.Graphics.ES31.BlendingFactor src, OpenTK.Graphics.ES31.BlendingFactor dst) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_draw_buffers_indexed] + /// Specify pixel arithmetic + /// + /// + /// Specifies how the red, green, blue, and alpha source blending factors are computed. The initial value is One. + /// + /// + /// 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. + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciEXT")] + [CLSCompliant(false)] public static void BlendFunc(UInt32 buf, OpenTK.Graphics.ES31.All src, OpenTK.Graphics.ES31.All dst) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_draw_buffers_indexed] + /// Specify pixel arithmetic + /// + /// + /// Specifies how the red, green, blue, and alpha source blending factors are computed. The initial value is One. + /// + /// + /// 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 = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciEXT")] + [CLSCompliant(false)] + public static void BlendFunc(UInt32 buf, OpenTK.Graphics.ES31.BlendingFactor src, OpenTK.Graphics.ES31.BlendingFactor dst) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_draw_buffers_indexed] /// Specify pixel arithmetic for RGB and alpha components separately /// @@ -26158,6 +30407,7 @@ namespace OpenTK.Graphics.ES31 /// /// Specified how the alpha destination blending factor is computed. The initial value is Zero. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiEXT")] [CLSCompliant(false)] public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.ES31.All srcRGB, OpenTK.Graphics.ES31.All dstRGB, OpenTK.Graphics.ES31.All srcAlpha, OpenTK.Graphics.ES31.All dstAlpha) { throw new BindingsNotRewrittenException(); } @@ -26182,8 +30432,265 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiEXT")] [CLSCompliant(false)] + public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.ES31.BlendingFactor srcRGB, OpenTK.Graphics.ES31.BlendingFactor dstRGB, OpenTK.Graphics.ES31.BlendingFactor srcAlpha, OpenTK.Graphics.ES31.BlendingFactor dstAlpha) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_draw_buffers_indexed] + /// Specify pixel arithmetic for RGB and alpha components separately + /// + /// + /// Specifies how the red, green, and blue blending factors are computed. The initial value is One. + /// + /// + /// Specifies how the red, green, and blue blending factors are computed. The initial value is One. + /// + /// + /// Specifies how the red, green, and blue destination blending factors are computed. The initial value is Zero. + /// + /// + /// Specified how the alpha source blending factor is computed. The initial value is One. + /// + /// + /// Specified how the alpha destination blending factor is computed. The initial value is Zero. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiEXT")] + [CLSCompliant(false)] public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.ES31.All srcRGB, OpenTK.Graphics.ES31.All dstRGB, OpenTK.Graphics.ES31.All srcAlpha, OpenTK.Graphics.ES31.All dstAlpha) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_draw_buffers_indexed] + /// Specify pixel arithmetic for RGB and alpha components separately + /// + /// + /// Specifies how the red, green, and blue blending factors are computed. The initial value is One. + /// + /// + /// Specifies how the red, green, and blue blending factors are computed. The initial value is One. + /// + /// + /// Specifies how the red, green, and blue destination blending factors are computed. The initial value is Zero. + /// + /// + /// Specified how the alpha source blending factor is computed. The initial value is One. + /// + /// + /// Specified how the alpha destination blending factor is computed. The initial value is Zero. + /// + [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiEXT")] + [CLSCompliant(false)] + public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.ES31.BlendingFactor srcRGB, OpenTK.Graphics.ES31.BlendingFactor dstRGB, OpenTK.Graphics.ES31.BlendingFactor srcAlpha, OpenTK.Graphics.ES31.BlendingFactor dstAlpha) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_buffer_storage] + /// Creates and initializes a buffer object's immutable data store + /// + /// + /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the size in bytes of the buffer object's new data store. + /// + /// [length: size] + /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. + /// + /// + /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] + public static void BufferStorage(OpenTK.Graphics.ES31.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES31.All flags) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_buffer_storage] + /// Creates and initializes a buffer object's immutable data store + /// + /// + /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the size in bytes of the buffer object's new data store. + /// + /// [length: size] + /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. + /// + /// + /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] + [CLSCompliant(false)] + public static void BufferStorage(OpenTK.Graphics.ES31.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES31.All flags) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_buffer_storage] + /// Creates and initializes a buffer object's immutable data store + /// + /// + /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the size in bytes of the buffer object's new data store. + /// + /// [length: size] + /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. + /// + /// + /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] + [CLSCompliant(false)] + public static void BufferStorage(OpenTK.Graphics.ES31.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES31.All flags) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_buffer_storage] + /// Creates and initializes a buffer object's immutable data store + /// + /// + /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the size in bytes of the buffer object's new data store. + /// + /// [length: size] + /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. + /// + /// + /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] + [CLSCompliant(false)] + public static void BufferStorage(OpenTK.Graphics.ES31.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES31.All flags) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_buffer_storage] + /// Creates and initializes a buffer object's immutable data store + /// + /// + /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the size in bytes of the buffer object's new data store. + /// + /// [length: size] + /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. + /// + /// + /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] + public static void BufferStorage(OpenTK.Graphics.ES31.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES31.All flags) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_buffer_storage] + /// Creates and initializes a buffer object's immutable data store + /// + /// + /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the size in bytes of the buffer object's new data store. + /// + /// [length: size] + /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. + /// + /// + /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] + public static void BufferStorage(OpenTK.Graphics.ES31.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES31.All flags) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_buffer_storage] + /// Creates and initializes a buffer object's immutable data store + /// + /// + /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the size in bytes of the buffer object's new data store. + /// + /// [length: size] + /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. + /// + /// + /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] + [CLSCompliant(false)] + public static void BufferStorage(OpenTK.Graphics.ES31.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES31.All flags) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_buffer_storage] + /// Creates and initializes a buffer object's immutable data store + /// + /// + /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the size in bytes of the buffer object's new data store. + /// + /// [length: size] + /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. + /// + /// + /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] + [CLSCompliant(false)] + public static void BufferStorage(OpenTK.Graphics.ES31.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES31.All flags) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_buffer_storage] + /// Creates and initializes a buffer object's immutable data store + /// + /// + /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the size in bytes of the buffer object's new data store. + /// + /// [length: size] + /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. + /// + /// + /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] + [CLSCompliant(false)] + public static void BufferStorage(OpenTK.Graphics.ES31.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES31.All flags) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_buffer_storage] + /// Creates and initializes a buffer object's immutable data store + /// + /// + /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the size in bytes of the buffer object's new data store. + /// + /// [length: size] + /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. + /// + /// + /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] + public static void BufferStorage(OpenTK.Graphics.ES31.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES31.All flags) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store /// @@ -26200,8 +30707,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES31.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new BindingsNotRewrittenException(); } + public static void BufferStorage(OpenTK.Graphics.ES31.BufferStorageTarget target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES31.MapBufferUsageMask flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26220,26 +30726,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES31.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_buffer_storage] - /// Creates and initializes a buffer object's immutable data store - /// - /// - /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. - /// - /// - /// Specifies the size in bytes of the buffer object's new data store. - /// - /// [length: size] - /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. - /// - /// - /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. - /// - [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES31.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, Int32 flags) + public static void BufferStorage(OpenTK.Graphics.ES31.BufferStorageTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES31.MapBufferUsageMask flags) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -26260,7 +30747,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES31.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, UInt32 flags) + public static void BufferStorage(OpenTK.Graphics.ES31.BufferStorageTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES31.MapBufferUsageMask flags) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -26281,7 +30768,66 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES31.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, Int32 flags) + public static void BufferStorage(OpenTK.Graphics.ES31.BufferStorageTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES31.MapBufferUsageMask flags) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_buffer_storage] + /// Creates and initializes a buffer object's immutable data store + /// + /// + /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the size in bytes of the buffer object's new data store. + /// + /// [length: size] + /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. + /// + /// + /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. + /// + [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] + public static void BufferStorage(OpenTK.Graphics.ES31.BufferStorageTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES31.MapBufferUsageMask flags) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_buffer_storage] + /// Creates and initializes a buffer object's immutable data store + /// + /// + /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the size in bytes of the buffer object's new data store. + /// + /// [length: size] + /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. + /// + /// + /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. + /// + [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] + public static void BufferStorage(OpenTK.Graphics.ES31.BufferStorageTarget target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES31.MapBufferUsageMask flags) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_buffer_storage] + /// Creates and initializes a buffer object's immutable data store + /// + /// + /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the size in bytes of the buffer object's new data store. + /// + /// [length: size] + /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. + /// + /// + /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. + /// + [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] + [CLSCompliant(false)] + public static void BufferStorage(OpenTK.Graphics.ES31.BufferStorageTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES31.MapBufferUsageMask flags) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -26302,7 +30848,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES31.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, UInt32 flags) + public static void BufferStorage(OpenTK.Graphics.ES31.BufferStorageTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES31.MapBufferUsageMask flags) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -26323,7 +30869,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES31.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, Int32 flags) + public static void BufferStorage(OpenTK.Graphics.ES31.BufferStorageTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES31.MapBufferUsageMask flags) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -26343,256 +30889,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES31.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, UInt32 flags) - where T2 : struct - { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_buffer_storage] - /// Creates and initializes a buffer object's immutable data store - /// - /// - /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. - /// - /// - /// Specifies the size in bytes of the buffer object's new data store. - /// - /// [length: size] - /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. - /// - /// - /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. - /// - [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES31.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, Int32 flags) - where T2 : struct - { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_buffer_storage] - /// Creates and initializes a buffer object's immutable data store - /// - /// - /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. - /// - /// - /// Specifies the size in bytes of the buffer object's new data store. - /// - /// [length: size] - /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. - /// - /// - /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. - /// - [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES31.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, UInt32 flags) - where T2 : struct - { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_buffer_storage] - /// Creates and initializes a buffer object's immutable data store - /// - /// - /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. - /// - /// - /// Specifies the size in bytes of the buffer object's new data store. - /// - /// [length: size] - /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. - /// - /// - /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. - /// - [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES31.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_buffer_storage] - /// Creates and initializes a buffer object's immutable data store - /// - /// - /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. - /// - /// - /// Specifies the size in bytes of the buffer object's new data store. - /// - /// [length: size] - /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. - /// - /// - /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. - /// - [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES31.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_buffer_storage] - /// Creates and initializes a buffer object's immutable data store - /// - /// - /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. - /// - /// - /// Specifies the size in bytes of the buffer object's new data store. - /// - /// [length: size] - /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. - /// - /// - /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. - /// - [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES31.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, Int32 flags) - where T2 : struct - { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_buffer_storage] - /// Creates and initializes a buffer object's immutable data store - /// - /// - /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. - /// - /// - /// Specifies the size in bytes of the buffer object's new data store. - /// - /// [length: size] - /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. - /// - /// - /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. - /// - [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES31.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, UInt32 flags) - where T2 : struct - { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_buffer_storage] - /// Creates and initializes a buffer object's immutable data store - /// - /// - /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. - /// - /// - /// Specifies the size in bytes of the buffer object's new data store. - /// - /// [length: size] - /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. - /// - /// - /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. - /// - [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES31.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, Int32 flags) - where T2 : struct - { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_buffer_storage] - /// Creates and initializes a buffer object's immutable data store - /// - /// - /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. - /// - /// - /// Specifies the size in bytes of the buffer object's new data store. - /// - /// [length: size] - /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. - /// - /// - /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. - /// - [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES31.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, UInt32 flags) - where T2 : struct - { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_buffer_storage] - /// Creates and initializes a buffer object's immutable data store - /// - /// - /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. - /// - /// - /// Specifies the size in bytes of the buffer object's new data store. - /// - /// [length: size] - /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. - /// - /// - /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. - /// - [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES31.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, Int32 flags) - where T2 : struct - { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_buffer_storage] - /// Creates and initializes a buffer object's immutable data store - /// - /// - /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. - /// - /// - /// Specifies the size in bytes of the buffer object's new data store. - /// - /// [length: size] - /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. - /// - /// - /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. - /// - [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES31.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, UInt32 flags) - where T2 : struct - { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_buffer_storage] - /// Creates and initializes a buffer object's immutable data store - /// - /// - /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. - /// - /// - /// Specifies the size in bytes of the buffer object's new data store. - /// - /// [length: size] - /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. - /// - /// - /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. - /// - [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES31.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, Int32 flags) - where T2 : struct - { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_buffer_storage] - /// Creates and initializes a buffer object's immutable data store - /// - /// - /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer. - /// - /// - /// Specifies the size in bytes of the buffer object's new data store. - /// - /// [length: size] - /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied. - /// - /// - /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. - /// - [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] - [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES31.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, UInt32 flags) + public static void BufferStorage(OpenTK.Graphics.ES31.BufferStorageTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES31.MapBufferUsageMask flags) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -26602,9 +30899,9 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] - [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } + public static void BufferStorageExternal(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 size, IntPtr clientBuffer, OpenTK.Graphics.ES31.All flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -26613,8 +30910,17 @@ namespace OpenTK.Graphics.ES31 /// /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] - [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } + public static void BufferStorageExternal(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 size, IntPtr clientBuffer, OpenTK.Graphics.ES31.MapBufferUsageMask flags) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_external_buffer] + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] + public static void BufferStorageExternal(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr size, IntPtr clientBuffer, OpenTK.Graphics.ES31.All flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -26623,18 +30929,7 @@ namespace OpenTK.Graphics.ES31 /// /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] - [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_external_buffer] - /// - /// - /// - /// - /// - [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] - [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } + public static void BufferStorageExternal(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr size, IntPtr clientBuffer, OpenTK.Graphics.ES31.MapBufferUsageMask flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -26715,50 +31010,50 @@ namespace OpenTK.Graphics.ES31 /// [requires: EXT_shader_pixel_local_storage2] /// /// - /// + /// [length: n] [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static void ClearPixelLocalStorage(Int32 offset, Int32 n, Int32[] values) { throw new BindingsNotRewrittenException(); } + public static void ClearPixelLocalStorage(Int32 offset, Int32 n, [CountAttribute(Parameter = "n")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// /// - /// + /// [length: n] [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static void ClearPixelLocalStorage(Int32 offset, Int32 n, ref Int32 values) { throw new BindingsNotRewrittenException(); } + public static void ClearPixelLocalStorage(Int32 offset, Int32 n, [CountAttribute(Parameter = "n")] ref Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// /// - /// + /// [length: n] [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static unsafe void ClearPixelLocalStorage(Int32 offset, Int32 n, Int32* values) { throw new BindingsNotRewrittenException(); } + public static unsafe void ClearPixelLocalStorage(Int32 offset, Int32 n, [CountAttribute(Parameter = "n")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// /// - /// + /// [length: n] [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static void ClearPixelLocalStorage(Int32 offset, Int32 n, UInt32[] values) { throw new BindingsNotRewrittenException(); } + public static void ClearPixelLocalStorage(Int32 offset, Int32 n, [CountAttribute(Parameter = "n")] UInt32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// /// - /// + /// [length: n] [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static void ClearPixelLocalStorage(Int32 offset, Int32 n, ref UInt32 values) { throw new BindingsNotRewrittenException(); } + public static void ClearPixelLocalStorage(Int32 offset, Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// /// - /// + /// [length: n] [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static unsafe void ClearPixelLocalStorage(Int32 offset, Int32 n, UInt32* values) { throw new BindingsNotRewrittenException(); } + public static unsafe void ClearPixelLocalStorage(Int32 offset, Int32 n, [CountAttribute(Parameter = "n")] UInt32* values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -26778,6 +31073,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } @@ -26800,6 +31096,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) @@ -26824,6 +31121,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) @@ -26848,6 +31146,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) @@ -26872,6 +31171,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) @@ -26898,6 +31198,125 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] + public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] + [CLSCompliant(false)] + public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) + where T4 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] + [CLSCompliant(false)] + public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) + where T4 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] + [CLSCompliant(false)] + public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) + where T4 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] + [CLSCompliant(false)] + public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) + where T4 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] + [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] @@ -26918,6 +31337,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) @@ -26942,6 +31362,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) @@ -26966,6 +31387,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) @@ -26990,12 +31412,131 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_clear_texture] + /// Fills all a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] + [CLSCompliant(false)] + public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] + [CLSCompliant(false)] + public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) + where T4 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] + [CLSCompliant(false)] + public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) + where T4 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] + [CLSCompliant(false)] + public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) + where T4 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] + [CLSCompliant(false)] + public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) + where T4 : struct + { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value /// @@ -27032,6 +31573,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } @@ -27072,6 +31614,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[] data) @@ -27114,6 +31657,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,] data) @@ -27156,6 +31700,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,,] data) @@ -27198,6 +31743,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T10 data) @@ -27242,6 +31788,215 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] + public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all or part of a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The coordinate of the left edge of the region to be cleared. + /// + /// + /// The coordinate of the lower edge of the region to be cleared. + /// + /// + /// The coordinate of the front of the region to be cleared. + /// + /// + /// The width of the region to be cleared. + /// + /// + /// The height of the region to be cleared. + /// + /// + /// The depth of the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] + [CLSCompliant(false)] + public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[] data) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all or part of a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The coordinate of the left edge of the region to be cleared. + /// + /// + /// The coordinate of the lower edge of the region to be cleared. + /// + /// + /// The coordinate of the front of the region to be cleared. + /// + /// + /// The width of the region to be cleared. + /// + /// + /// The height of the region to be cleared. + /// + /// + /// The depth of the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] + [CLSCompliant(false)] + public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,] data) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all or part of a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The coordinate of the left edge of the region to be cleared. + /// + /// + /// The coordinate of the lower edge of the region to be cleared. + /// + /// + /// The coordinate of the front of the region to be cleared. + /// + /// + /// The width of the region to be cleared. + /// + /// + /// The height of the region to be cleared. + /// + /// + /// The depth of the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] + [CLSCompliant(false)] + public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,,] data) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all or part of a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The coordinate of the left edge of the region to be cleared. + /// + /// + /// The coordinate of the lower edge of the region to be cleared. + /// + /// + /// The coordinate of the front of the region to be cleared. + /// + /// + /// The width of the region to be cleared. + /// + /// + /// The height of the region to be cleared. + /// + /// + /// The depth of the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] + [CLSCompliant(false)] + public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T10 data) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all or part of a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The coordinate of the left edge of the region to be cleared. + /// + /// + /// The coordinate of the lower edge of the region to be cleared. + /// + /// + /// The coordinate of the front of the region to be cleared. + /// + /// + /// The width of the region to be cleared. + /// + /// + /// The height of the region to be cleared. + /// + /// + /// The depth of the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] + [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] @@ -27280,6 +32035,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[] data) @@ -27322,6 +32078,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,] data) @@ -27364,6 +32121,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,,] data) @@ -27406,12 +32164,227 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(format,type)] /// The address in memory of the data to be used to clear the specified region. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T10 data) where T10 : struct { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_clear_texture] + /// Fills all or part of a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The coordinate of the left edge of the region to be cleared. + /// + /// + /// The coordinate of the lower edge of the region to be cleared. + /// + /// + /// The coordinate of the front of the region to be cleared. + /// + /// + /// The width of the region to be cleared. + /// + /// + /// The height of the region to be cleared. + /// + /// + /// The depth of the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] + [CLSCompliant(false)] + public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all or part of a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The coordinate of the left edge of the region to be cleared. + /// + /// + /// The coordinate of the lower edge of the region to be cleared. + /// + /// + /// The coordinate of the front of the region to be cleared. + /// + /// + /// The width of the region to be cleared. + /// + /// + /// The height of the region to be cleared. + /// + /// + /// The depth of the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] + [CLSCompliant(false)] + public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[] data) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all or part of a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The coordinate of the left edge of the region to be cleared. + /// + /// + /// The coordinate of the lower edge of the region to be cleared. + /// + /// + /// The coordinate of the front of the region to be cleared. + /// + /// + /// The width of the region to be cleared. + /// + /// + /// The height of the region to be cleared. + /// + /// + /// The depth of the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] + [CLSCompliant(false)] + public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,] data) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all or part of a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The coordinate of the left edge of the region to be cleared. + /// + /// + /// The coordinate of the lower edge of the region to be cleared. + /// + /// + /// The coordinate of the front of the region to be cleared. + /// + /// + /// The width of the region to be cleared. + /// + /// + /// The height of the region to be cleared. + /// + /// + /// The depth of the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] + [CLSCompliant(false)] + public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,,] data) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clear_texture] + /// Fills all or part of a texture image with a constant value + /// + /// + /// The name of an existing texture object containing the image to be cleared. + /// + /// + /// The level of texture containing the region to be cleared. + /// + /// + /// The coordinate of the left edge of the region to be cleared. + /// + /// + /// The coordinate of the lower edge of the region to be cleared. + /// + /// + /// The coordinate of the front of the region to be cleared. + /// + /// + /// The width of the region to be cleared. + /// + /// + /// The height of the region to be cleared. + /// + /// + /// The depth of the region to be cleared. + /// + /// + /// The format of the data whose address in memory is given by data. + /// + /// + /// The type of the data whose address in memory is given by data. + /// + /// [length: COMPSIZE(format,type)] + /// The address in memory of the data to be used to clear the specified region. + /// + [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] + [CLSCompliant(false)] + public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T10 data) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_clip_control] + /// + /// + [AutoGenerated(Category = "EXT_clip_control", Version = "", EntryPoint = "glClipControlEXT")] + public static void ClipControl(OpenTK.Graphics.ES31.All origin, OpenTK.Graphics.ES31.All depth) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_draw_buffers_indexed] /// Enable and disable writing of frame buffer color components /// @@ -27500,6 +32473,7 @@ namespace OpenTK.Graphics.ES31 /// /// The depth of the region to be copied. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_copy_image", Version = "", EntryPoint = "glCopyImageSubDataEXT")] [CLSCompliant(false)] public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.ES31.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.ES31.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } @@ -27554,8 +32528,113 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_copy_image", Version = "", EntryPoint = "glCopyImageSubDataEXT")] [CLSCompliant(false)] + public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.ES31.CopyBufferSubDataTarget srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.ES31.CopyBufferSubDataTarget dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_copy_image] + /// Perform a raw data copy between two images + /// + /// + /// The name of a texture or renderbuffer object from which to copy. + /// + /// + /// The target representing the namespace of the source name srcName. + /// + /// + /// The mipmap level to read from the source. + /// + /// + /// The X coordinate of the left edge of the souce region to copy. + /// + /// + /// The Y coordinate of the top edge of the souce region to copy. + /// + /// + /// The Z coordinate of the near edge of the souce region to copy. + /// + /// + /// The name of a texture or renderbuffer object to which to copy. + /// + /// + /// The target representing the namespace of the destination name dstName. + /// + /// + /// The X coordinate of the left edge of the destination region. + /// + /// + /// The X coordinate of the left edge of the destination region. + /// + /// + /// The Y coordinate of the top edge of the destination region. + /// + /// + /// The Z coordinate of the near edge of the destination region. + /// + /// + /// The width of the region to be copied. + /// + /// + /// The height of the region to be copied. + /// + /// + /// The depth of the region to be copied. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_copy_image", Version = "", EntryPoint = "glCopyImageSubDataEXT")] + [CLSCompliant(false)] public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.ES31.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.ES31.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_copy_image] + /// Perform a raw data copy between two images + /// + /// + /// The name of a texture or renderbuffer object from which to copy. + /// + /// + /// The target representing the namespace of the source name srcName. + /// + /// + /// The mipmap level to read from the source. + /// + /// + /// The X coordinate of the left edge of the souce region to copy. + /// + /// + /// The Y coordinate of the top edge of the souce region to copy. + /// + /// + /// The Z coordinate of the near edge of the souce region to copy. + /// + /// + /// The name of a texture or renderbuffer object to which to copy. + /// + /// + /// The target representing the namespace of the destination name dstName. + /// + /// + /// The X coordinate of the left edge of the destination region. + /// + /// + /// The X coordinate of the left edge of the destination region. + /// + /// + /// The Y coordinate of the top edge of the destination region. + /// + /// + /// The Z coordinate of the near edge of the destination region. + /// + /// + /// The width of the region to be copied. + /// + /// + /// The height of the region to be copied. + /// + /// + /// The depth of the region to be copied. + /// + [AutoGenerated(Category = "EXT_copy_image", Version = "", EntryPoint = "glCopyImageSubDataEXT")] + [CLSCompliant(false)] + public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.ES31.CopyBufferSubDataTarget srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.ES31.CopyBufferSubDataTarget dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_memory_object] /// /// @@ -27607,9 +32686,38 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the number of source code strings in the array strings. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glCreateShaderProgramEXT")] public static Int32 CreateShaderProgram(OpenTK.Graphics.ES31.All type, String @string) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_separate_shader_objects] + /// Create a stand-alone program from an array of null-terminated source code strings + /// + /// + /// Specifies the type of shader to create. + /// + /// + /// Specifies the number of source code strings in the array strings. + /// + [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glCreateShaderProgramEXT")] + public static Int32 CreateShaderProgram(OpenTK.Graphics.ES31.ShaderType type, String @string) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_separate_shader_objects] + /// Create a stand-alone program from an array of null-terminated source code strings + /// + /// + /// Specifies the type of shader to create. + /// + /// + /// Specifies the number of source code strings in the array strings. + /// + /// [length: count] + /// Specifies the address of an array of pointers to source code strings from which to create the program object. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glCreateShaderProgramvEXT")] + public static Int32 CreateShaderProgram(OpenTK.Graphics.ES31.All type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_separate_shader_objects] /// Create a stand-alone program from an array of null-terminated source code strings /// @@ -27623,7 +32731,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the address of an array of pointers to source code strings from which to create the program object. /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glCreateShaderProgramvEXT")] - public static Int32 CreateShaderProgram(OpenTK.Graphics.ES31.All type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new BindingsNotRewrittenException(); } + public static Int32 CreateShaderProgram(OpenTK.Graphics.ES31.ShaderType type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// [length: n] @@ -27876,62 +32984,63 @@ namespace OpenTK.Graphics.ES31 public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphore([CountAttribute(Parameter = "count")] Int32 semaphores) { throw new BindingsNotRewrittenException(); } + public static void DeleteSemaphore([CountAttribute(Parameter = "n")] Int32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphore([CountAttribute(Parameter = "count")] UInt32 semaphores) { throw new BindingsNotRewrittenException(); } + public static void DeleteSemaphore([CountAttribute(Parameter = "n")] UInt32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] Int32[] semaphores) { throw new BindingsNotRewrittenException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "n")] Int32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] ref Int32 semaphores) { throw new BindingsNotRewrittenException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] Int32* semaphores) { throw new BindingsNotRewrittenException(); } + public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "n")] Int32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] UInt32[] semaphores) { throw new BindingsNotRewrittenException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] ref UInt32 semaphores) { throw new BindingsNotRewrittenException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] UInt32* semaphores) { throw new BindingsNotRewrittenException(); } + public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "n")] UInt32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glDisableiEXT")] [CLSCompliant(false)] public static void Disable(OpenTK.Graphics.ES31.All target, Int32 index) { throw new BindingsNotRewrittenException(); } @@ -27939,10 +33048,25 @@ namespace OpenTK.Graphics.ES31 /// [requires: EXT_draw_buffers_indexed] /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glDisableiEXT")] [CLSCompliant(false)] public static void Disable(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_draw_buffers_indexed] + /// + /// + [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glDisableiEXT")] + [CLSCompliant(false)] + public static void Disable(OpenTK.Graphics.ES31.EnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_draw_buffers_indexed] + /// + /// + [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glDisableiEXT")] + [CLSCompliant(false)] + public static void Disable(OpenTK.Graphics.ES31.EnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_discard_framebuffer] /// /// @@ -28100,12 +33224,12 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the number of buffers in bufs. /// - /// + /// [length: n] /// Points to an array of symbolic constants specifying the buffers into which fragment colors or data values will be written. /// [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, OpenTK.Graphics.ES31.All[] bufs) { throw new BindingsNotRewrittenException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES31.All[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -28113,12 +33237,12 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the number of buffers in bufs. /// - /// + /// [length: n] /// Points to an array of symbolic constants specifying the buffers into which fragment colors or data values will be written. /// [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, ref OpenTK.Graphics.ES31.All bufs) { throw new BindingsNotRewrittenException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES31.All bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -28126,12 +33250,12 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the number of buffers in bufs. /// - /// + /// [length: n] /// Points to an array of symbolic constants specifying the buffers into which fragment colors or data values will be written. /// [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] [CLSCompliant(false)] - public static unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.ES31.All* bufs) { throw new BindingsNotRewrittenException(); } + public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES31.All* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -28693,7 +33817,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.PrimitiveType type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28718,7 +33842,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.PrimitiveType type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28743,7 +33867,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 baseinstance) + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -28770,7 +33894,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, UInt32 baseinstance) + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -28797,7 +33921,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 baseinstance) + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -28824,7 +33948,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, UInt32 baseinstance) + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -28851,7 +33975,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 baseinstance) + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -28878,7 +34002,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, UInt32 baseinstance) + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -28905,7 +34029,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 baseinstance) + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -28932,7 +34056,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, UInt32 baseinstance) + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -29268,7 +34392,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.PrimitiveType type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29296,7 +34420,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.PrimitiveType type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29324,7 +34448,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -29354,7 +34478,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -29384,7 +34508,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -29414,7 +34538,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -29444,7 +34568,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -29474,7 +34598,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -29504,7 +34628,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -29534,7 +34658,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -30771,6 +35895,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a symbolic constant indicating a GL capability. /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glEnableiEXT")] [CLSCompliant(false)] public static void Enable(OpenTK.Graphics.ES31.All target, Int32 index) { throw new BindingsNotRewrittenException(); } @@ -30782,14 +35907,43 @@ namespace OpenTK.Graphics.ES31 /// Specifies a symbolic constant indicating a GL capability. /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glEnableiEXT")] [CLSCompliant(false)] public static void Enable(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_draw_buffers_indexed] + /// Enable or disable server-side GL capabilities + /// + /// + /// Specifies a symbolic constant indicating a GL capability. + /// + /// + [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glEnableiEXT")] + [CLSCompliant(false)] + public static void Enable(OpenTK.Graphics.ES31.EnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_draw_buffers_indexed] + /// Enable or disable server-side GL capabilities + /// + /// + /// Specifies a symbolic constant indicating a GL capability. + /// + /// + [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glEnableiEXT")] + [CLSCompliant(false)] + public static void Enable(OpenTK.Graphics.ES31.EnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glEndQueryEXT")] + public static void EndQuery(OpenTK.Graphics.ES31.All target) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glEndQueryEXT")] - public static void EndQuery(OpenTK.Graphics.ES31.All target) { throw new BindingsNotRewrittenException(); } + public static void EndQuery(OpenTK.Graphics.ES31.QueryTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Indicate modifications to a range of a mapped buffer @@ -30803,6 +35957,7 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the length of the buffer subrange, in basic machine units. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glFlushMappedBufferRangeEXT")] public static void FlushMappedBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } @@ -30818,9 +35973,40 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the length of the buffer subrange, in basic machine units. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glFlushMappedBufferRangeEXT")] public static void FlushMappedBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_map_buffer_range] + /// Indicate modifications to a range of a mapped buffer + /// + /// + /// Specifies the target of the flush operation. target must be ArrayBuffer, CopyReadBuffer, CopyWriteBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the start of the buffer subrange, in basic machine units. + /// + /// + /// Specifies the length of the buffer subrange, in basic machine units. + /// + [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glFlushMappedBufferRangeEXT")] + public static void FlushMappedBufferRange(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_map_buffer_range] + /// Indicate modifications to a range of a mapped buffer + /// + /// + /// Specifies the target of the flush operation. target must be ArrayBuffer, CopyReadBuffer, CopyWriteBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, TransformFeedbackBuffer, or UniformBuffer. + /// + /// + /// Specifies the start of the buffer subrange, in basic machine units. + /// + /// + /// Specifies the length of the buffer subrange, in basic machine units. + /// + [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glFlushMappedBufferRangeEXT")] + public static void FlushMappedBufferRange(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_shader_pixel_local_storage2] /// /// @@ -30842,6 +36028,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleEXT")] [CLSCompliant(false)] public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, Int32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } @@ -30853,10 +36040,33 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleEXT")] [CLSCompliant(false)] public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, UInt32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_multisampled_render_to_texture] + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleEXT")] + [CLSCompliant(false)] + public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.TextureTarget textarget, Int32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_multisampled_render_to_texture] + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleEXT")] + [CLSCompliant(false)] + public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.TextureTarget textarget, UInt32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object /// @@ -31112,45 +36322,45 @@ namespace OpenTK.Graphics.ES31 /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] semaphores) { throw new BindingsNotRewrittenException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 semaphores) { throw new BindingsNotRewrittenException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] Int32* semaphores) { throw new BindingsNotRewrittenException(); } + public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] semaphores) { throw new BindingsNotRewrittenException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 semaphores) { throw new BindingsNotRewrittenException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* semaphores) { throw new BindingsNotRewrittenException(); } + public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Query the bindings of color indices to user-defined varying out variables @@ -31180,24 +36390,24 @@ namespace OpenTK.Graphics.ES31 /// [requires: EXT_shader_pixel_local_storage2] /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glGetFramebufferPixelLocalStorageSizeEXT")] - [CLSCompliant(false)] - public static Int32 GetFramebufferPixelLocalStorageSize(Int32 target) { throw new BindingsNotRewrittenException(); } + public static Int32 GetFramebufferPixelLocalStorageSize(OpenTK.Graphics.ES31.All target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glGetFramebufferPixelLocalStorageSizeEXT")] - [CLSCompliant(false)] - public static Int32 GetFramebufferPixelLocalStorageSize(UInt32 target) { throw new BindingsNotRewrittenException(); } + public static Int32 GetFramebufferPixelLocalStorageSize(OpenTK.Graphics.ES31.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetGraphicsResetStatusEXT")] - public static OpenTK.Graphics.ES31.All GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.ES31.GraphicsResetStatus GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute] Int32[] data) { throw new BindingsNotRewrittenException(); } @@ -31206,6 +36416,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute] out Int32 data) { throw new BindingsNotRewrittenException(); } @@ -31214,6 +36425,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] public static unsafe void GetInteger(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute] Int32* data) { throw new BindingsNotRewrittenException(); } @@ -31222,6 +36434,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute] Int32[] data) { throw new BindingsNotRewrittenException(); } @@ -31230,6 +36443,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] public static void GetInteger(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute] out Int32 data) { throw new BindingsNotRewrittenException(); } @@ -31238,10 +36452,59 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] public static unsafe void GetInteger(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute] Int32* data) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_multiview_draw_buffers] + /// + /// + /// + [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] + [CLSCompliant(false)] + public static void GetInteger(OpenTK.Graphics.ES31.TypeEnum target, Int32 index, [OutAttribute] Int32[] data) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_multiview_draw_buffers] + /// + /// + /// + [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] + [CLSCompliant(false)] + public static void GetInteger(OpenTK.Graphics.ES31.TypeEnum target, Int32 index, [OutAttribute] out Int32 data) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_multiview_draw_buffers] + /// + /// + /// + [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] + [CLSCompliant(false)] + public static unsafe void GetInteger(OpenTK.Graphics.ES31.TypeEnum target, Int32 index, [OutAttribute] Int32* data) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_multiview_draw_buffers] + /// + /// + /// + [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] + [CLSCompliant(false)] + public static void GetInteger(OpenTK.Graphics.ES31.TypeEnum target, UInt32 index, [OutAttribute] Int32[] data) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_multiview_draw_buffers] + /// + /// + /// + [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] + [CLSCompliant(false)] + public static void GetInteger(OpenTK.Graphics.ES31.TypeEnum target, UInt32 index, [OutAttribute] out Int32 data) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_multiview_draw_buffers] + /// + /// + /// + [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] + [CLSCompliant(false)] + public static unsafe void GetInteger(OpenTK.Graphics.ES31.TypeEnum target, UInt32 index, [OutAttribute] Int32* data) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_memory_object] /// /// @@ -31714,6 +36977,7 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -31730,6 +36994,7 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -31746,6 +37011,7 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } @@ -31764,6 +37030,55 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES31.PipelineParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_separate_shader_objects] + /// Retrieve properties of a program pipeline object + /// + /// + /// Specifies the name of a program pipeline object whose parameter retrieve. + /// + /// + /// Specifies the name of the parameter to retrieve. + /// + /// + /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. + /// + [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] + [CLSCompliant(false)] + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES31.PipelineParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_separate_shader_objects] + /// Retrieve properties of a program pipeline object + /// + /// + /// Specifies the name of a program pipeline object whose parameter retrieve. + /// + /// + /// Specifies the name of the parameter to retrieve. + /// + /// + /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. + /// + [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] + [CLSCompliant(false)] + public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES31.PipelineParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_separate_shader_objects] + /// Retrieve properties of a program pipeline object + /// + /// + /// Specifies the name of a program pipeline object whose parameter retrieve. + /// + /// + /// Specifies the name of the parameter to retrieve. + /// + /// + /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] + [CLSCompliant(false)] public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] @@ -31778,6 +37093,7 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -31794,10 +37110,59 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_separate_shader_objects] + /// Retrieve properties of a program pipeline object + /// + /// + /// Specifies the name of a program pipeline object whose parameter retrieve. + /// + /// + /// Specifies the name of the parameter to retrieve. + /// + /// + /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. + /// + [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] + [CLSCompliant(false)] + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES31.PipelineParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_separate_shader_objects] + /// Retrieve properties of a program pipeline object + /// + /// + /// Specifies the name of a program pipeline object whose parameter retrieve. + /// + /// + /// Specifies the name of the parameter to retrieve. + /// + /// + /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. + /// + [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] + [CLSCompliant(false)] + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES31.PipelineParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_separate_shader_objects] + /// Retrieve properties of a program pipeline object + /// + /// + /// Specifies the name of a program pipeline object whose parameter retrieve. + /// + /// + /// Specifies the name of the parameter to retrieve. + /// + /// + /// Specifies the address of a variable into which will be written the value or values of pname for pipeline. + /// + [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] + [CLSCompliant(false)] + public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES31.PipelineParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_blend_func_extended] /// Query the fragment color index of a named variable within a program /// @@ -31810,6 +37175,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(name)] /// The name of the resource to query the location of. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glGetProgramResourceLocationIndexEXT")] [CLSCompliant(false)] public static Int32 GetProgramResourceLocationIndex(Int32 program, OpenTK.Graphics.ES31.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } @@ -31828,12 +37194,46 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glGetProgramResourceLocationIndexEXT")] [CLSCompliant(false)] + public static Int32 GetProgramResourceLocationIndex(Int32 program, OpenTK.Graphics.ES31.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_blend_func_extended] + /// Query the fragment color index of a named variable within a program + /// + /// + /// The name of a program object whose resources to query. + /// + /// + /// A token identifying the interface within program containing the resource named name. + /// + /// [length: COMPSIZE(name)] + /// The name of the resource to query the location of. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glGetProgramResourceLocationIndexEXT")] + [CLSCompliant(false)] public static Int32 GetProgramResourceLocationIndex(UInt32 program, OpenTK.Graphics.ES31.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_blend_func_extended] + /// Query the fragment color index of a named variable within a program + /// + /// + /// The name of a program object whose resources to query. + /// + /// + /// A token identifying the interface within program containing the resource named name. + /// + /// [length: COMPSIZE(name)] + /// The name of the resource to query the location of. + /// + [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glGetProgramResourceLocationIndexEXT")] + [CLSCompliant(false)] + public static Int32 GetProgramResourceLocationIndex(UInt32 program, OpenTK.Graphics.ES31.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryivEXT")] [CLSCompliant(false)] public static void GetQuery(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -31842,6 +37242,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryivEXT")] [CLSCompliant(false)] public static void GetQuery(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -31850,10 +37251,35 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryivEXT")] [CLSCompliant(false)] public static unsafe void GetQuery(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] + /// + /// + /// + [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryivEXT")] + [CLSCompliant(false)] + public static void GetQuery(OpenTK.Graphics.ES31.QueryTarget target, OpenTK.Graphics.ES31.QueryParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] + /// + /// + /// + [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryivEXT")] + [CLSCompliant(false)] + public static void GetQuery(OpenTK.Graphics.ES31.QueryTarget target, OpenTK.Graphics.ES31.QueryParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] + /// + /// + /// + [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryivEXT")] + [CLSCompliant(false)] + public static unsafe void GetQuery(OpenTK.Graphics.ES31.QueryTarget target, OpenTK.Graphics.ES31.QueryParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object /// @@ -31866,6 +37292,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// If a buffer is bound to the QueryResultBuffer target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to QueryResultBuffer, then params is treated as an address in client memory of a variable to receive the resulting data. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } @@ -31882,6 +37309,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// If a buffer is bound to the QueryResultBuffer target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to QueryResultBuffer, then params is treated as an address in client memory of a variable to receive the resulting data. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } @@ -31898,6 +37326,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// If a buffer is bound to the QueryResultBuffer target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to QueryResultBuffer, then params is treated as an address in client memory of a variable to receive the resulting data. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } @@ -31916,6 +37345,55 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.QueryObjectParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_disjoint_timer_query] + /// Return parameters of a query object + /// + /// + /// Specifies the name of a query object. + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are QueryResult or QueryResultAvailable. + /// + /// [length: COMPSIZE(pname)] + /// If a buffer is bound to the QueryResultBuffer target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to QueryResultBuffer, then params is treated as an address in client memory of a variable to receive the resulting data. + /// + [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] + [CLSCompliant(false)] + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.QueryObjectParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_disjoint_timer_query] + /// Return parameters of a query object + /// + /// + /// Specifies the name of a query object. + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are QueryResult or QueryResultAvailable. + /// + /// [length: COMPSIZE(pname)] + /// If a buffer is bound to the QueryResultBuffer target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to QueryResultBuffer, then params is treated as an address in client memory of a variable to receive the resulting data. + /// + [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] + [CLSCompliant(false)] + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.QueryObjectParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_disjoint_timer_query] + /// Return parameters of a query object + /// + /// + /// Specifies the name of a query object. + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are QueryResult or QueryResultAvailable. + /// + /// [length: COMPSIZE(pname)] + /// If a buffer is bound to the QueryResultBuffer target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to QueryResultBuffer, then params is treated as an address in client memory of a variable to receive the resulting data. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] @@ -31930,6 +37408,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// If a buffer is bound to the QueryResultBuffer target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to QueryResultBuffer, then params is treated as an address in client memory of a variable to receive the resulting data. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } @@ -31946,10 +37425,59 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// If a buffer is bound to the QueryResultBuffer target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to QueryResultBuffer, then params is treated as an address in client memory of a variable to receive the resulting data. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_disjoint_timer_query] + /// Return parameters of a query object + /// + /// + /// Specifies the name of a query object. + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are QueryResult or QueryResultAvailable. + /// + /// [length: COMPSIZE(pname)] + /// If a buffer is bound to the QueryResultBuffer target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to QueryResultBuffer, then params is treated as an address in client memory of a variable to receive the resulting data. + /// + [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] + [CLSCompliant(false)] + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.QueryObjectParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_disjoint_timer_query] + /// Return parameters of a query object + /// + /// + /// Specifies the name of a query object. + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are QueryResult or QueryResultAvailable. + /// + /// [length: COMPSIZE(pname)] + /// If a buffer is bound to the QueryResultBuffer target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to QueryResultBuffer, then params is treated as an address in client memory of a variable to receive the resulting data. + /// + [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] + [CLSCompliant(false)] + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.QueryObjectParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_disjoint_timer_query] + /// Return parameters of a query object + /// + /// + /// Specifies the name of a query object. + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are QueryResult or QueryResultAvailable. + /// + /// [length: COMPSIZE(pname)] + /// If a buffer is bound to the QueryResultBuffer target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to QueryResultBuffer, then params is treated as an address in client memory of a variable to receive the resulting data. + /// + [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] + [CLSCompliant(false)] + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.QueryObjectParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object /// @@ -31962,6 +37490,7 @@ namespace OpenTK.Graphics.ES31 /// /// If a buffer is bound to the QueryResultBuffer target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to QueryResultBuffer, then params is treated as an address in client memory of a variable to receive the resulting data. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -31978,6 +37507,7 @@ namespace OpenTK.Graphics.ES31 /// /// If a buffer is bound to the QueryResultBuffer target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to QueryResultBuffer, then params is treated as an address in client memory of a variable to receive the resulting data. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -31994,6 +37524,7 @@ namespace OpenTK.Graphics.ES31 /// /// If a buffer is bound to the QueryResultBuffer target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to QueryResultBuffer, then params is treated as an address in client memory of a variable to receive the resulting data. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } @@ -32012,6 +37543,55 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.QueryObjectParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_disjoint_timer_query] + /// Return parameters of a query object + /// + /// + /// Specifies the name of a query object. + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are QueryResult or QueryResultAvailable. + /// + /// + /// If a buffer is bound to the QueryResultBuffer target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to QueryResultBuffer, then params is treated as an address in client memory of a variable to receive the resulting data. + /// + [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] + [CLSCompliant(false)] + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.QueryObjectParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_disjoint_timer_query] + /// Return parameters of a query object + /// + /// + /// Specifies the name of a query object. + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are QueryResult or QueryResultAvailable. + /// + /// + /// If a buffer is bound to the QueryResultBuffer target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to QueryResultBuffer, then params is treated as an address in client memory of a variable to receive the resulting data. + /// + [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] + [CLSCompliant(false)] + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.QueryObjectParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_disjoint_timer_query] + /// Return parameters of a query object + /// + /// + /// Specifies the name of a query object. + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are QueryResult or QueryResultAvailable. + /// + /// + /// If a buffer is bound to the QueryResultBuffer target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to QueryResultBuffer, then params is treated as an address in client memory of a variable to receive the resulting data. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] + [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] @@ -32026,6 +37606,7 @@ namespace OpenTK.Graphics.ES31 /// /// If a buffer is bound to the QueryResultBuffer target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to QueryResultBuffer, then params is treated as an address in client memory of a variable to receive the resulting data. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -32042,10 +37623,59 @@ namespace OpenTK.Graphics.ES31 /// /// If a buffer is bound to the QueryResultBuffer target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to QueryResultBuffer, then params is treated as an address in client memory of a variable to receive the resulting data. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_disjoint_timer_query] + /// Return parameters of a query object + /// + /// + /// Specifies the name of a query object. + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are QueryResult or QueryResultAvailable. + /// + /// + /// If a buffer is bound to the QueryResultBuffer target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to QueryResultBuffer, then params is treated as an address in client memory of a variable to receive the resulting data. + /// + [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] + [CLSCompliant(false)] + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.QueryObjectParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_disjoint_timer_query] + /// Return parameters of a query object + /// + /// + /// Specifies the name of a query object. + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are QueryResult or QueryResultAvailable. + /// + /// + /// If a buffer is bound to the QueryResultBuffer target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to QueryResultBuffer, then params is treated as an address in client memory of a variable to receive the resulting data. + /// + [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] + [CLSCompliant(false)] + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.QueryObjectParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_disjoint_timer_query] + /// Return parameters of a query object + /// + /// + /// Specifies the name of a query object. + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are QueryResult or QueryResultAvailable. + /// + /// + /// If a buffer is bound to the QueryResultBuffer target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to QueryResultBuffer, then params is treated as an address in client memory of a variable to receive the resulting data. + /// + [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] + [CLSCompliant(false)] + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.QueryObjectParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object /// @@ -32058,6 +37688,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// If a buffer is bound to the QueryResultBuffer target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to QueryResultBuffer, then params is treated as an address in client memory of a variable to receive the resulting data. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } @@ -32074,6 +37705,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// If a buffer is bound to the QueryResultBuffer target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to QueryResultBuffer, then params is treated as an address in client memory of a variable to receive the resulting data. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } @@ -32090,10 +37722,59 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] /// If a buffer is bound to the QueryResultBuffer target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to QueryResultBuffer, then params is treated as an address in client memory of a variable to receive the resulting data. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_disjoint_timer_query] + /// Return parameters of a query object + /// + /// + /// Specifies the name of a query object. + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are QueryResult or QueryResultAvailable. + /// + /// [length: COMPSIZE(pname)] + /// If a buffer is bound to the QueryResultBuffer target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to QueryResultBuffer, then params is treated as an address in client memory of a variable to receive the resulting data. + /// + [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] + [CLSCompliant(false)] + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.QueryObjectParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_disjoint_timer_query] + /// Return parameters of a query object + /// + /// + /// Specifies the name of a query object. + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are QueryResult or QueryResultAvailable. + /// + /// [length: COMPSIZE(pname)] + /// If a buffer is bound to the QueryResultBuffer target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to QueryResultBuffer, then params is treated as an address in client memory of a variable to receive the resulting data. + /// + [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] + [CLSCompliant(false)] + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.QueryObjectParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_disjoint_timer_query] + /// Return parameters of a query object + /// + /// + /// Specifies the name of a query object. + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are QueryResult or QueryResultAvailable. + /// + /// [length: COMPSIZE(pname)] + /// If a buffer is bound to the QueryResultBuffer target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to QueryResultBuffer, then params is treated as an address in client memory of a variable to receive the resulting data. + /// + [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] + [CLSCompliant(false)] + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.QueryObjectParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Return parameters of a query object /// @@ -32106,6 +37787,7 @@ namespace OpenTK.Graphics.ES31 /// /// If a buffer is bound to the QueryResultBuffer target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to QueryResultBuffer, then params is treated as an address in client memory of a variable to receive the resulting data. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryObjectuivEXT")] [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } @@ -32122,6 +37804,7 @@ namespace OpenTK.Graphics.ES31 /// /// If a buffer is bound to the QueryResultBuffer target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to QueryResultBuffer, then params is treated as an address in client memory of a variable to receive the resulting data. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryObjectuivEXT")] [CLSCompliant(false)] public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } @@ -32138,14 +37821,64 @@ namespace OpenTK.Graphics.ES31 /// /// If a buffer is bound to the QueryResultBuffer target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to QueryResultBuffer, then params is treated as an address in client memory of a variable to receive the resulting data. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryObjectuivEXT")] [CLSCompliant(false)] public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] + /// Return parameters of a query object + /// + /// + /// Specifies the name of a query object. + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are QueryResult or QueryResultAvailable. + /// + /// + /// If a buffer is bound to the QueryResultBuffer target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to QueryResultBuffer, then params is treated as an address in client memory of a variable to receive the resulting data. + /// + [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryObjectuivEXT")] + [CLSCompliant(false)] + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.QueryObjectParameterName pname, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] + /// Return parameters of a query object + /// + /// + /// Specifies the name of a query object. + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are QueryResult or QueryResultAvailable. + /// + /// + /// If a buffer is bound to the QueryResultBuffer target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to QueryResultBuffer, then params is treated as an address in client memory of a variable to receive the resulting data. + /// + [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryObjectuivEXT")] + [CLSCompliant(false)] + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.QueryObjectParameterName pname, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] + /// Return parameters of a query object + /// + /// + /// Specifies the name of a query object. + /// + /// + /// Specifies the symbolic name of a query object parameter. Accepted values are QueryResult or QueryResultAvailable. + /// + /// + /// If a buffer is bound to the QueryResultBuffer target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to QueryResultBuffer, then params is treated as an address in client memory of a variable to receive the resulting data. + /// + [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryObjectuivEXT")] + [CLSCompliant(false)] + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.QueryObjectParameterName pname, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_texture_border_clamp] /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -32154,6 +37887,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -32162,6 +37896,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } @@ -32172,12 +37907,38 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] + [CLSCompliant(false)] + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] + [CLSCompliant(false)] + public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] + [CLSCompliant(false)] public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -32186,6 +37947,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } @@ -32194,6 +37956,31 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] + [CLSCompliant(false)] + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] + [CLSCompliant(false)] + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] + [CLSCompliant(false)] + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivEXT")] [CLSCompliant(false)] public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } @@ -32202,6 +37989,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivEXT")] [CLSCompliant(false)] public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } @@ -32210,10 +37998,35 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivEXT")] [CLSCompliant(false)] public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivEXT")] + [CLSCompliant(false)] + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivEXT")] + [CLSCompliant(false)] + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivEXT")] + [CLSCompliant(false)] + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_semaphore] /// /// @@ -33459,6 +39272,7 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the index of the capability. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glIsEnablediEXT")] [CLSCompliant(false)] public static bool IsEnabled(OpenTK.Graphics.ES31.All target, Int32 index) { throw new BindingsNotRewrittenException(); } @@ -33472,10 +39286,37 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the index of the capability. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glIsEnablediEXT")] [CLSCompliant(false)] public static bool IsEnabled(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_draw_buffers_indexed] + /// Test whether a capability is enabled + /// + /// + /// Specifies a symbolic constant indicating a GL capability. + /// + /// + /// Specifies the index of the capability. + /// + [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glIsEnablediEXT")] + [CLSCompliant(false)] + public static bool IsEnabled(OpenTK.Graphics.ES31.EnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_draw_buffers_indexed] + /// Test whether a capability is enabled + /// + /// + /// Specifies a symbolic constant indicating a GL capability. + /// + /// + /// Specifies the index of the capability. + /// + [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glIsEnablediEXT")] + [CLSCompliant(false)] + public static bool IsEnabled(OpenTK.Graphics.ES31.EnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_memory_object] /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glIsMemoryObjectEXT")] @@ -33573,9 +39414,28 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies a combination of access flags indicating the desired access to the range. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] - [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 length, Int32 access) { throw new BindingsNotRewrittenException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 length, OpenTK.Graphics.ES31.All access) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_map_buffer_range] + /// Map a section of a buffer object's data store + /// + /// + /// Specifies a binding to which the target buffer is bound. + /// + /// + /// Specifies the starting offset within the buffer of the range to be mapped. + /// + /// + /// Specifies the length of the range to be mapped. + /// + /// + /// Specifies a combination of access flags indicating the desired access to the range. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] + public static IntPtr MapBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr length, OpenTK.Graphics.ES31.All access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -33593,8 +39453,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a combination of access flags indicating the desired access to the range. /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] - [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 length, UInt32 access) { throw new BindingsNotRewrittenException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, Int32 length, OpenTK.Graphics.ES31.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -33612,27 +39471,552 @@ namespace OpenTK.Graphics.ES31 /// Specifies a combination of access flags indicating the desired access to the range. /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] - [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr length, Int32 access) { throw new BindingsNotRewrittenException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, IntPtr length, OpenTK.Graphics.ES31.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_map_buffer_range] - /// Map a section of a buffer object's data store - /// - /// - /// Specifies a binding to which the target buffer is bound. - /// - /// - /// Specifies the starting offset within the buffer of the range to be mapped. - /// - /// - /// Specifies the length of the range to be mapped. - /// - /// - /// Specifies a combination of access flags indicating the desired access to the range. - /// - [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixFrustumEXT")] + public static void MatrixFrustum(OpenTK.Graphics.ES31.All mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixFrustumEXT")] + public static void MatrixFrustum(OpenTK.Graphics.ES31.MatrixMode mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoaddEXT")] [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr length, UInt32 access) { throw new BindingsNotRewrittenException(); } + public static void MatrixLoad(OpenTK.Graphics.ES31.All mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoaddEXT")] + [CLSCompliant(false)] + public static void MatrixLoad(OpenTK.Graphics.ES31.All mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoaddEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixLoad(OpenTK.Graphics.ES31.All mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoaddEXT")] + [CLSCompliant(false)] + public static void MatrixLoad(OpenTK.Graphics.ES31.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoaddEXT")] + [CLSCompliant(false)] + public static void MatrixLoad(OpenTK.Graphics.ES31.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoaddEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixLoad(OpenTK.Graphics.ES31.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadfEXT")] + [CLSCompliant(false)] + public static void MatrixLoad(OpenTK.Graphics.ES31.All mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadfEXT")] + [CLSCompliant(false)] + public static void MatrixLoad(OpenTK.Graphics.ES31.All mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadfEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixLoad(OpenTK.Graphics.ES31.All mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadfEXT")] + [CLSCompliant(false)] + public static void MatrixLoad(OpenTK.Graphics.ES31.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadfEXT")] + [CLSCompliant(false)] + public static void MatrixLoad(OpenTK.Graphics.ES31.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadfEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixLoad(OpenTK.Graphics.ES31.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadIdentityEXT")] + public static void MatrixLoadIdentity(OpenTK.Graphics.ES31.All mode) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadIdentityEXT")] + public static void MatrixLoadIdentity(OpenTK.Graphics.ES31.MatrixMode mode) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] + [CLSCompliant(false)] + public static void MatrixLoadTranspose(OpenTK.Graphics.ES31.All mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] + [CLSCompliant(false)] + public static void MatrixLoadTranspose(OpenTK.Graphics.ES31.All mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixLoadTranspose(OpenTK.Graphics.ES31.All mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] + [CLSCompliant(false)] + public static void MatrixLoadTranspose(OpenTK.Graphics.ES31.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] + [CLSCompliant(false)] + public static void MatrixLoadTranspose(OpenTK.Graphics.ES31.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixLoadTranspose(OpenTK.Graphics.ES31.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] + [CLSCompliant(false)] + public static void MatrixLoadTranspose(OpenTK.Graphics.ES31.All mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] + [CLSCompliant(false)] + public static void MatrixLoadTranspose(OpenTK.Graphics.ES31.All mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixLoadTranspose(OpenTK.Graphics.ES31.All mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] + [CLSCompliant(false)] + public static void MatrixLoadTranspose(OpenTK.Graphics.ES31.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] + [CLSCompliant(false)] + public static void MatrixLoadTranspose(OpenTK.Graphics.ES31.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixLoadTranspose(OpenTK.Graphics.ES31.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultdEXT")] + [CLSCompliant(false)] + public static void MatrixMult(OpenTK.Graphics.ES31.All mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultdEXT")] + [CLSCompliant(false)] + public static void MatrixMult(OpenTK.Graphics.ES31.All mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultdEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixMult(OpenTK.Graphics.ES31.All mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultdEXT")] + [CLSCompliant(false)] + public static void MatrixMult(OpenTK.Graphics.ES31.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultdEXT")] + [CLSCompliant(false)] + public static void MatrixMult(OpenTK.Graphics.ES31.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultdEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixMult(OpenTK.Graphics.ES31.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultfEXT")] + [CLSCompliant(false)] + public static void MatrixMult(OpenTK.Graphics.ES31.All mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultfEXT")] + [CLSCompliant(false)] + public static void MatrixMult(OpenTK.Graphics.ES31.All mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultfEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixMult(OpenTK.Graphics.ES31.All mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultfEXT")] + [CLSCompliant(false)] + public static void MatrixMult(OpenTK.Graphics.ES31.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultfEXT")] + [CLSCompliant(false)] + public static void MatrixMult(OpenTK.Graphics.ES31.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultfEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixMult(OpenTK.Graphics.ES31.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] + [CLSCompliant(false)] + public static void MatrixMultTranspose(OpenTK.Graphics.ES31.All mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] + [CLSCompliant(false)] + public static void MatrixMultTranspose(OpenTK.Graphics.ES31.All mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixMultTranspose(OpenTK.Graphics.ES31.All mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] + [CLSCompliant(false)] + public static void MatrixMultTranspose(OpenTK.Graphics.ES31.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] + [CLSCompliant(false)] + public static void MatrixMultTranspose(OpenTK.Graphics.ES31.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixMultTranspose(OpenTK.Graphics.ES31.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] + [CLSCompliant(false)] + public static void MatrixMultTranspose(OpenTK.Graphics.ES31.All mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] + [CLSCompliant(false)] + public static void MatrixMultTranspose(OpenTK.Graphics.ES31.All mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixMultTranspose(OpenTK.Graphics.ES31.All mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] + [CLSCompliant(false)] + public static void MatrixMultTranspose(OpenTK.Graphics.ES31.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] + [CLSCompliant(false)] + public static void MatrixMultTranspose(OpenTK.Graphics.ES31.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// [length: 16] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] + [CLSCompliant(false)] + public static unsafe void MatrixMultTranspose(OpenTK.Graphics.ES31.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixOrthoEXT")] + public static void MatrixOrtho(OpenTK.Graphics.ES31.All mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixOrthoEXT")] + public static void MatrixOrtho(OpenTK.Graphics.ES31.MatrixMode mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixPopEXT")] + public static void MatrixPop(OpenTK.Graphics.ES31.All mode) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixPopEXT")] + public static void MatrixPop(OpenTK.Graphics.ES31.MatrixMode mode) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixPushEXT")] + public static void MatrixPush(OpenTK.Graphics.ES31.All mode) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixPushEXT")] + public static void MatrixPush(OpenTK.Graphics.ES31.MatrixMode mode) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixRotatedEXT")] + public static void MatrixRotate(OpenTK.Graphics.ES31.All mode, Double angle, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixRotatedEXT")] + public static void MatrixRotate(OpenTK.Graphics.ES31.MatrixMode mode, Double angle, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixRotatefEXT")] + public static void MatrixRotate(OpenTK.Graphics.ES31.All mode, Single angle, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixRotatefEXT")] + public static void MatrixRotate(OpenTK.Graphics.ES31.MatrixMode mode, Single angle, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixScaledEXT")] + public static void MatrixScale(OpenTK.Graphics.ES31.All mode, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixScaledEXT")] + public static void MatrixScale(OpenTK.Graphics.ES31.MatrixMode mode, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixScalefEXT")] + public static void MatrixScale(OpenTK.Graphics.ES31.All mode, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixScalefEXT")] + public static void MatrixScale(OpenTK.Graphics.ES31.MatrixMode mode, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixTranslatedEXT")] + public static void MatrixTranslate(OpenTK.Graphics.ES31.All mode, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixTranslatedEXT")] + public static void MatrixTranslate(OpenTK.Graphics.ES31.MatrixMode mode, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixTranslatefEXT")] + public static void MatrixTranslate(OpenTK.Graphics.ES31.All mode, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixTranslatefEXT")] + public static void MatrixTranslate(OpenTK.Graphics.ES31.MatrixMode mode, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -35736,7 +42120,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the distance in basic machine units between elements of the draw parameter array. /// [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectEXT")] - public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } + public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -35758,7 +42142,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectEXT")] [CLSCompliant(false)] - public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[] indirect, Int32 drawcount, Int32 stride) + public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[] indirect, Int32 drawcount, Int32 stride) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -35782,7 +42166,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectEXT")] [CLSCompliant(false)] - public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,] indirect, Int32 drawcount, Int32 stride) + public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,] indirect, Int32 drawcount, Int32 stride) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -35806,7 +42190,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectEXT")] [CLSCompliant(false)] - public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,,] indirect, Int32 drawcount, Int32 stride) + public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,,] indirect, Int32 drawcount, Int32 stride) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -35829,7 +42213,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the distance in basic machine units between elements of the draw parameter array. /// [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectEXT")] - public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] ref T2 indirect, Int32 drawcount, Int32 stride) + public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] ref T2 indirect, Int32 drawcount, Int32 stride) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -35839,9 +42223,10 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } + public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, OpenTK.Graphics.ES31.All flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -35851,7 +42236,18 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } + public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, OpenTK.Graphics.ES31.MapBufferUsageMask flags) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_external_buffer] + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] + [CLSCompliant(false)] + public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, OpenTK.Graphics.ES31.All flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -35861,7 +42257,18 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } + public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, OpenTK.Graphics.ES31.MapBufferUsageMask flags) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_external_buffer] + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] + [CLSCompliant(false)] + public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, OpenTK.Graphics.ES31.All flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -35871,7 +42278,28 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } + public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, OpenTK.Graphics.ES31.MapBufferUsageMask flags) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_external_buffer] + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] + [CLSCompliant(false)] + public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, OpenTK.Graphics.ES31.All flags) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_external_buffer] + /// + /// + /// + /// + /// + [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] + [CLSCompliant(false)] + public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, OpenTK.Graphics.ES31.MapBufferUsageMask flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -35918,9 +42346,22 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the new value for the parameter given by pname. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_tessellation_shader", Version = "", EntryPoint = "glPatchParameteriEXT")] public static void PatchParameter(OpenTK.Graphics.ES31.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_tessellation_shader] + /// Specifies the parameters for patch primitives + /// + /// + /// Specifies the name of the parameter to set. The symbolc constants PatchVertices, PatchDefaultOuterLevel, and PatchDefaultInnerLevel are accepted. + /// + /// + /// Specifies the new value for the parameter given by pname. + /// + [AutoGenerated(Category = "EXT_tessellation_shader", Version = "", EntryPoint = "glPatchParameteriEXT")] + public static void PatchParameter(OpenTK.Graphics.ES31.PatchParameterName pname, Int32 value) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_polygon_offset_clamp] /// /// @@ -35956,6 +42397,7 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the new value of the parameter specified by pname for program. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramParameteriEXT")] [CLSCompliant(false)] public static void ProgramParameter(Int32 program, OpenTK.Graphics.ES31.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } @@ -35974,8 +42416,41 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramParameteriEXT")] [CLSCompliant(false)] + public static void ProgramParameter(Int32 program, OpenTK.Graphics.ES31.ProgramParameterPName pname, Int32 value) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_separate_shader_objects] + /// Specify a parameter for a program object + /// + /// + /// Specifies the name of a program object whose parameter to modify. + /// + /// + /// Specifies the name of the parameter to modify. + /// + /// + /// Specifies the new value of the parameter specified by pname for program. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramParameteriEXT")] + [CLSCompliant(false)] public static void ProgramParameter(UInt32 program, OpenTK.Graphics.ES31.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_separate_shader_objects] + /// Specify a parameter for a program object + /// + /// + /// Specifies the name of a program object whose parameter to modify. + /// + /// + /// Specifies the name of the parameter to modify. + /// + /// + /// Specifies the new value of the parameter specified by pname for program. + /// + [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramParameteriEXT")] + [CLSCompliant(false)] + public static void ProgramParameter(UInt32 program, OpenTK.Graphics.ES31.ProgramParameterPName pname, Int32 value) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object /// @@ -38043,6 +44518,7 @@ namespace OpenTK.Graphics.ES31 /// /// Specify the counter to query. target must be Timestamp. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glQueryCounterEXT")] [CLSCompliant(false)] public static void QueryCounter(Int32 id, OpenTK.Graphics.ES31.All target) { throw new BindingsNotRewrittenException(); } @@ -38058,8 +44534,35 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glQueryCounterEXT")] [CLSCompliant(false)] + public static void QueryCounter(Int32 id, OpenTK.Graphics.ES31.QueryTarget target) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_disjoint_timer_query] + /// Record the GL time into a query object after all previous commands have reached the GL server but have not yet necessarily executed. + /// + /// + /// Specify the name of a query object into which to record the GL time. + /// + /// + /// Specify the counter to query. target must be Timestamp. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glQueryCounterEXT")] + [CLSCompliant(false)] public static void QueryCounter(UInt32 id, OpenTK.Graphics.ES31.All target) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_disjoint_timer_query] + /// Record the GL time into a query object after all previous commands have reached the GL server but have not yet necessarily executed. + /// + /// + /// Specify the name of a query object into which to record the GL time. + /// + /// + /// Specify the counter to query. target must be Timestamp. + /// + [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glQueryCounterEXT")] + [CLSCompliant(false)] + public static void QueryCounter(UInt32 id, OpenTK.Graphics.ES31.QueryTarget target) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples] /// /// @@ -38077,9 +44580,16 @@ namespace OpenTK.Graphics.ES31 /// [requires: EXT_multiview_draw_buffers] /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glReadBufferIndexedEXT")] public static void ReadBufferIndexed(OpenTK.Graphics.ES31.All src, Int32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_multiview_draw_buffers] + /// + /// + [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glReadBufferIndexedEXT")] + public static void ReadBufferIndexed(OpenTK.Graphics.ES31.ReadBufferMode src, Int32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_robustness] /// /// @@ -38089,6 +44599,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: bufSize] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } @@ -38101,6 +44612,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: bufSize] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[] data) @@ -38116,6 +44628,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: bufSize] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,] data) @@ -38131,6 +44644,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: bufSize] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,,] data) @@ -38146,11 +44660,83 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: bufSize] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T7 data) where T7 : struct { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_robustness] + /// + /// + /// + /// + /// + /// + /// + /// [length: bufSize] + [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_robustness] + /// + /// + /// + /// + /// + /// + /// + /// [length: bufSize] + [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] + [CLSCompliant(false)] + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[] data) + where T7 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_robustness] + /// + /// + /// + /// + /// + /// + /// + /// [length: bufSize] + [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] + [CLSCompliant(false)] + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,] data) + where T7 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_robustness] + /// + /// + /// + /// + /// + /// + /// + /// [length: bufSize] + [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] + [CLSCompliant(false)] + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,,] data) + where T7 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_robustness] + /// + /// + /// + /// + /// + /// + /// + /// [length: bufSize] + [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T7 data) + where T7 : struct + { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_win32_keyed_mutex] /// /// @@ -38183,13 +44769,36 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the height of the renderbuffer, in pixels. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glRenderbufferStorageMultisampleEXT")] public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_multisampled_render_to_texture] + /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image + /// + /// + /// Specifies a binding to which the target of the allocation and must be Renderbuffer. + /// + /// + /// Specifies the number of samples to be used for the renderbuffer object's storage. + /// + /// + /// Specifies the internal format to use for the renderbuffer object's image. + /// + /// + /// Specifies the width of the renderbuffer, in pixels. + /// + /// + /// Specifies the height of the renderbuffer, in pixels. + /// + [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glRenderbufferStorageMultisampleEXT")] + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES31.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_texture_border_clamp] /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } @@ -38198,6 +44807,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } @@ -38206,6 +44816,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } @@ -38216,12 +44827,38 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] + [CLSCompliant(false)] + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] + [CLSCompliant(false)] + public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] + [CLSCompliant(false)] public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } @@ -38230,6 +44867,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } @@ -38238,6 +44876,31 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] + [CLSCompliant(false)] + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] + [CLSCompliant(false)] + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] + [CLSCompliant(false)] + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivEXT")] [CLSCompliant(false)] public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new BindingsNotRewrittenException(); } @@ -38246,6 +44909,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivEXT")] [CLSCompliant(false)] public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new BindingsNotRewrittenException(); } @@ -38254,10 +44918,35 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivEXT")] [CLSCompliant(false)] public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivEXT")] + [CLSCompliant(false)] + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivEXT")] + [CLSCompliant(false)] + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivEXT")] + [CLSCompliant(false)] + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_semaphore] /// /// @@ -38546,7 +45235,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferEXT")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.All internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } + public static void TexBuffer(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -38562,7 +45251,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferEXT")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.All internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } + public static void TexBuffer(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.InternalFormat internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -38582,6 +45271,7 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the size of the range of the buffer's data store to attach. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] [CLSCompliant(false)] public static void TexBufferRange(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } @@ -38604,6 +45294,7 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the size of the range of the buffer's data store to attach. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] [CLSCompliant(false)] public static void TexBufferRange(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } @@ -38626,6 +45317,7 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the size of the range of the buffer's data store to attach. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] [CLSCompliant(false)] public static void TexBufferRange(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } @@ -38648,10 +45340,99 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the size of the range of the buffer's data store to attach. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] [CLSCompliant(false)] public static void TexBufferRange(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_texture_buffer] + /// Bind a range of a buffer's data store to a buffer texture + /// + /// + /// Specifies the target of the operation and must be TextureBuffer. + /// + /// + /// Specifies the internal format of the data in the store belonging to buffer. + /// + /// + /// Specifies the name of the buffer object whose storage to attach to the active buffer texture. + /// + /// + /// Specifies the offset of the start of the range of the buffer's data store to attach. + /// + /// + /// Specifies the size of the range of the buffer's data store to attach. + /// + [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] + [CLSCompliant(false)] + public static void TexBufferRange(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_buffer] + /// Bind a range of a buffer's data store to a buffer texture + /// + /// + /// Specifies the target of the operation and must be TextureBuffer. + /// + /// + /// Specifies the internal format of the data in the store belonging to buffer. + /// + /// + /// Specifies the name of the buffer object whose storage to attach to the active buffer texture. + /// + /// + /// Specifies the offset of the start of the range of the buffer's data store to attach. + /// + /// + /// Specifies the size of the range of the buffer's data store to attach. + /// + [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] + [CLSCompliant(false)] + public static void TexBufferRange(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_buffer] + /// Bind a range of a buffer's data store to a buffer texture + /// + /// + /// Specifies the target of the operation and must be TextureBuffer. + /// + /// + /// Specifies the internal format of the data in the store belonging to buffer. + /// + /// + /// Specifies the name of the buffer object whose storage to attach to the active buffer texture. + /// + /// + /// Specifies the offset of the start of the range of the buffer's data store to attach. + /// + /// + /// Specifies the size of the range of the buffer's data store to attach. + /// + [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] + [CLSCompliant(false)] + public static void TexBufferRange(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.InternalFormat internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_buffer] + /// Bind a range of a buffer's data store to a buffer texture + /// + /// + /// Specifies the target of the operation and must be TextureBuffer. + /// + /// + /// Specifies the internal format of the data in the store belonging to buffer. + /// + /// + /// Specifies the name of the buffer object whose storage to attach to the active buffer texture. + /// + /// + /// Specifies the offset of the start of the range of the buffer's data store to attach. + /// + /// + /// Specifies the size of the range of the buffer's data store to attach. + /// + [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] + [CLSCompliant(false)] + public static void TexBufferRange(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.InternalFormat internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_sparse_texture] /// /// @@ -38782,9 +45563,50 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the width of the texture, in texels. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage1DEXT")] public static void TexStorage1D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_texture_storage] + /// Simultaneously specify storage for all levels of a one-dimensional texture + /// + /// + /// Specify the target of the operation. target must be either Texture1D or ProxyTexture1D. + /// + /// + /// Specify the number of texture levels. + /// + /// + /// Specifies the sized internal format to be used to store texture image data. + /// + /// + /// Specifies the width of the texture, in texels. + /// + [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage1DEXT")] + public static void TexStorage1D(OpenTK.Graphics.ES31.TextureTarget target, Int32 levels, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_storage] + /// Simultaneously specify storage for all levels of a two-dimensional texture + /// + /// + /// Specify the target of the operation. target must be one of Texture2D, or TextureCubeMap. + /// + /// + /// Specify the number of texture levels. + /// + /// + /// Specifies the sized internal format to be used to store texture image data. + /// + /// + /// Specifies the width of the texture, in texels. + /// + /// + /// Specifies the height of the texture, in texels. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage2DEXT")] + public static void TexStorage2D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_texture_storage] /// Simultaneously specify storage for all levels of a two-dimensional texture /// @@ -38804,7 +45626,32 @@ namespace OpenTK.Graphics.ES31 /// Specifies the height of the texture, in texels. /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage2DEXT")] - public static void TexStorage2D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + public static void TexStorage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 levels, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_storage] + /// Simultaneously specify storage for all levels of a three-dimensional or two-dimensional array texture + /// + /// + /// Specify the target of the operation. target must be one of Texture3D, or Texture2DArray. + /// + /// + /// Specify the number of texture levels. + /// + /// + /// Specifies the sized internal format to be used to store texture image data. + /// + /// + /// Specifies the width of the texture, in texels. + /// + /// + /// Specifies the height of the texture, in texels. + /// + /// + /// Specifies the depth of the texture, in texels. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage3DEXT")] + public static void TexStorage3D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// Simultaneously specify storage for all levels of a three-dimensional or two-dimensional array texture @@ -38828,7 +45675,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the depth of the texture, in texels. /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage3DEXT")] - public static void TexStorage3D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } + public static void TexStorage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 levels, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -39098,6 +45945,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage1DEXT")] [CLSCompliant(false)] public static void TextureStorage1D(Int32 texture, OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } @@ -39110,8 +45958,29 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage1DEXT")] [CLSCompliant(false)] + public static void TextureStorage1D(Int32 texture, OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_storage] + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage1DEXT")] + [CLSCompliant(false)] public static void TextureStorage1D(UInt32 texture, OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_texture_storage] + /// + /// + /// + /// + /// + [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage1DEXT")] + [CLSCompliant(false)] + public static void TextureStorage1D(UInt32 texture, OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_texture_storage] /// /// @@ -39119,6 +45988,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage2DEXT")] [CLSCompliant(false)] public static void TextureStorage2D(Int32 texture, OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } @@ -39132,8 +46002,31 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage2DEXT")] [CLSCompliant(false)] + public static void TextureStorage2D(Int32 texture, OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_storage] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage2DEXT")] + [CLSCompliant(false)] public static void TextureStorage2D(UInt32 texture, OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_texture_storage] + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage2DEXT")] + [CLSCompliant(false)] + public static void TextureStorage2D(UInt32 texture, OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_texture_storage] /// /// @@ -39142,6 +46035,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage3DEXT")] [CLSCompliant(false)] public static void TextureStorage3D(Int32 texture, OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } @@ -39156,8 +46050,33 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage3DEXT")] [CLSCompliant(false)] + public static void TextureStorage3D(Int32 texture, OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_storage] + /// + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage3DEXT")] + [CLSCompliant(false)] public static void TextureStorage3D(UInt32 texture, OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_texture_storage] + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage3DEXT")] + [CLSCompliant(false)] + public static void TextureStorage3D(UInt32 texture, OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_memory_object] /// /// @@ -39311,6 +46230,7 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the number of layers to include in the view. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_view", Version = "", EntryPoint = "glTextureViewEXT")] [CLSCompliant(false)] public static void TextureView(Int32 texture, OpenTK.Graphics.ES31.All target, Int32 origtexture, OpenTK.Graphics.ES31.All internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new BindingsNotRewrittenException(); } @@ -39344,8 +46264,71 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_texture_view", Version = "", EntryPoint = "glTextureViewEXT")] [CLSCompliant(false)] + public static void TextureView(Int32 texture, OpenTK.Graphics.ES31.TextureTarget target, Int32 origtexture, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_texture_view] + /// Initialize a texture as a data alias of another texture's data store + /// + /// + /// Specifies the texture object to be initialized as a view. + /// + /// + /// Specifies the target to be used for the newly initialized texture. + /// + /// + /// Specifies the name of a texture object of which to make a view. + /// + /// + /// Specifies the internal format for the newly created view. + /// + /// + /// Specifies lowest level of detail of the view. + /// + /// + /// Specifies the number of levels of detail to include in the view. + /// + /// + /// Specifies the index of the first layer to include in the view. + /// + /// + /// Specifies the number of layers to include in the view. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_texture_view", Version = "", EntryPoint = "glTextureViewEXT")] + [CLSCompliant(false)] public static void TextureView(UInt32 texture, OpenTK.Graphics.ES31.All target, UInt32 origtexture, OpenTK.Graphics.ES31.All internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_texture_view] + /// Initialize a texture as a data alias of another texture's data store + /// + /// + /// Specifies the texture object to be initialized as a view. + /// + /// + /// Specifies the target to be used for the newly initialized texture. + /// + /// + /// Specifies the name of a texture object of which to make a view. + /// + /// + /// Specifies the internal format for the newly created view. + /// + /// + /// Specifies lowest level of detail of the view. + /// + /// + /// Specifies the number of levels of detail to include in the view. + /// + /// + /// Specifies the index of the first layer to include in the view. + /// + /// + /// Specifies the number of layers to include in the view. + /// + [AutoGenerated(Category = "EXT_texture_view", Version = "", EntryPoint = "glTextureViewEXT")] + [CLSCompliant(false)] + public static void TextureView(UInt32 texture, OpenTK.Graphics.ES31.TextureTarget target, UInt32 origtexture, OpenTK.Graphics.ES31.InternalFormat internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new BindingsNotRewrittenException(); } + /// [requires: EXT_separate_shader_objects] /// Bind stages of a program object to a program pipeline /// @@ -39358,9 +46341,10 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the program object containing the shader executables to use in pipeline. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseProgramStagesEXT")] [CLSCompliant(false)] - public static void UseProgramStages(Int32 pipeline, Int32 stages, Int32 program) { throw new BindingsNotRewrittenException(); } + public static void UseProgramStages(Int32 pipeline, OpenTK.Graphics.ES31.All stages, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind stages of a program object to a program pipeline @@ -39376,7 +46360,40 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseProgramStagesEXT")] [CLSCompliant(false)] - public static void UseProgramStages(UInt32 pipeline, UInt32 stages, UInt32 program) { throw new BindingsNotRewrittenException(); } + public static void UseProgramStages(Int32 pipeline, OpenTK.Graphics.ES31.UseProgramStageMask stages, Int32 program) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_separate_shader_objects] + /// Bind stages of a program object to a program pipeline + /// + /// + /// Specifies the program pipeline object to which to bind stages from program. + /// + /// + /// Specifies a set of program stages to bind to the program pipeline object. + /// + /// + /// Specifies the program object containing the shader executables to use in pipeline. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseProgramStagesEXT")] + [CLSCompliant(false)] + public static void UseProgramStages(UInt32 pipeline, OpenTK.Graphics.ES31.All stages, UInt32 program) { throw new BindingsNotRewrittenException(); } + + /// [requires: EXT_separate_shader_objects] + /// Bind stages of a program object to a program pipeline + /// + /// + /// Specifies the program pipeline object to which to bind stages from program. + /// + /// + /// Specifies a set of program stages to bind to the program pipeline object. + /// + /// + /// Specifies the program object containing the shader executables to use in pipeline. + /// + [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseProgramStagesEXT")] + [CLSCompliant(false)] + public static void UseProgramStages(UInt32 pipeline, OpenTK.Graphics.ES31.UseProgramStageMask stages, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -39612,6 +46629,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTexture2DDownsampleIMG")] [CLSCompliant(false)] public static void FramebufferTexture2DDownsample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, Int32 texture, Int32 level, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } @@ -39624,10 +46642,35 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTexture2DDownsampleIMG")] [CLSCompliant(false)] public static void FramebufferTexture2DDownsample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, UInt32 texture, Int32 level, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } + /// [requires: IMG_framebuffer_downsample] + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTexture2DDownsampleIMG")] + [CLSCompliant(false)] + public static void FramebufferTexture2DDownsample(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.TextureTarget textarget, Int32 texture, Int32 level, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } + + /// [requires: IMG_framebuffer_downsample] + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTexture2DDownsampleIMG")] + [CLSCompliant(false)] + public static void FramebufferTexture2DDownsample(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.TextureTarget textarget, UInt32 texture, Int32 level, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } + /// [requires: IMG_multisampled_render_to_texture] /// /// @@ -39635,6 +46678,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleIMG")] [CLSCompliant(false)] public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, Int32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } @@ -39646,10 +46690,33 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleIMG")] [CLSCompliant(false)] public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, UInt32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } + /// [requires: IMG_multisampled_render_to_texture] + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleIMG")] + [CLSCompliant(false)] + public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.TextureTarget textarget, Int32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } + + /// [requires: IMG_multisampled_render_to_texture] + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleIMG")] + [CLSCompliant(false)] + public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.TextureTarget textarget, UInt32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } + /// [requires: IMG_framebuffer_downsample] /// /// @@ -39814,9 +46881,31 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the height of the renderbuffer, in pixels. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glRenderbufferStorageMultisampleIMG")] public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + /// [requires: IMG_multisampled_render_to_texture] + /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image + /// + /// + /// Specifies a binding to which the target of the allocation and must be Renderbuffer. + /// + /// + /// Specifies the number of samples to be used for the renderbuffer object's storage. + /// + /// + /// Specifies the internal format to use for the renderbuffer object's image. + /// + /// + /// Specifies the width of the renderbuffer, in pixels. + /// + /// + /// Specifies the height of the renderbuffer, in pixels. + /// + [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glRenderbufferStorageMultisampleIMG")] + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES31.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + /// [requires: IMG_bindless_texture] /// /// @@ -40720,6 +47809,7 @@ namespace OpenTK.Graphics.ES31 /// /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } @@ -40745,6 +47835,7 @@ namespace OpenTK.Graphics.ES31 /// /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } @@ -40770,6 +47861,7 @@ namespace OpenTK.Graphics.ES31 /// /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] public static unsafe void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } @@ -40795,6 +47887,7 @@ namespace OpenTK.Graphics.ES31 /// /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } @@ -40820,6 +47913,7 @@ namespace OpenTK.Graphics.ES31 /// /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] public static void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } @@ -40845,10 +47939,161 @@ namespace OpenTK.Graphics.ES31 /// /// A Boolean flag determining whether the selected messages should be enabled or disabled. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] public static unsafe void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } + /// [requires: KHR_debug] + /// Control the reporting of debug messages in a debug context + /// + /// + /// The source of debug messages to enable or disable. + /// + /// + /// The type of debug messages to enable or disable. + /// + /// + /// The severity of debug messages to enable or disable. + /// + /// + /// The length of the array ids. + /// + /// + /// The address of an array of unsigned integers contianing the ids of the messages to enable or disable. + /// + /// + /// A Boolean flag determining whether the selected messages should be enabled or disabled. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] + public static void DebugMessageControl(OpenTK.Graphics.ES31.DebugSource source, OpenTK.Graphics.ES31.DebugType type, OpenTK.Graphics.ES31.DebugSeverity severity, Int32 count, Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Control the reporting of debug messages in a debug context + /// + /// + /// The source of debug messages to enable or disable. + /// + /// + /// The type of debug messages to enable or disable. + /// + /// + /// The severity of debug messages to enable or disable. + /// + /// + /// The length of the array ids. + /// + /// + /// The address of an array of unsigned integers contianing the ids of the messages to enable or disable. + /// + /// + /// A Boolean flag determining whether the selected messages should be enabled or disabled. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] + public static void DebugMessageControl(OpenTK.Graphics.ES31.DebugSource source, OpenTK.Graphics.ES31.DebugType type, OpenTK.Graphics.ES31.DebugSeverity severity, Int32 count, ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Control the reporting of debug messages in a debug context + /// + /// + /// The source of debug messages to enable or disable. + /// + /// + /// The type of debug messages to enable or disable. + /// + /// + /// The severity of debug messages to enable or disable. + /// + /// + /// The length of the array ids. + /// + /// + /// The address of an array of unsigned integers contianing the ids of the messages to enable or disable. + /// + /// + /// A Boolean flag determining whether the selected messages should be enabled or disabled. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES31.DebugSource source, OpenTK.Graphics.ES31.DebugType type, OpenTK.Graphics.ES31.DebugSeverity severity, Int32 count, Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Control the reporting of debug messages in a debug context + /// + /// + /// The source of debug messages to enable or disable. + /// + /// + /// The type of debug messages to enable or disable. + /// + /// + /// The severity of debug messages to enable or disable. + /// + /// + /// The length of the array ids. + /// + /// + /// The address of an array of unsigned integers contianing the ids of the messages to enable or disable. + /// + /// + /// A Boolean flag determining whether the selected messages should be enabled or disabled. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] + public static void DebugMessageControl(OpenTK.Graphics.ES31.DebugSource source, OpenTK.Graphics.ES31.DebugType type, OpenTK.Graphics.ES31.DebugSeverity severity, Int32 count, UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Control the reporting of debug messages in a debug context + /// + /// + /// The source of debug messages to enable or disable. + /// + /// + /// The type of debug messages to enable or disable. + /// + /// + /// The severity of debug messages to enable or disable. + /// + /// + /// The length of the array ids. + /// + /// + /// The address of an array of unsigned integers contianing the ids of the messages to enable or disable. + /// + /// + /// A Boolean flag determining whether the selected messages should be enabled or disabled. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] + public static void DebugMessageControl(OpenTK.Graphics.ES31.DebugSource source, OpenTK.Graphics.ES31.DebugType type, OpenTK.Graphics.ES31.DebugSeverity severity, Int32 count, ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Control the reporting of debug messages in a debug context + /// + /// + /// The source of debug messages to enable or disable. + /// + /// + /// The type of debug messages to enable or disable. + /// + /// + /// The severity of debug messages to enable or disable. + /// + /// + /// The length of the array ids. + /// + /// + /// The address of an array of unsigned integers contianing the ids of the messages to enable or disable. + /// + /// + /// A Boolean flag determining whether the selected messages should be enabled or disabled. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] + [CLSCompliant(false)] + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES31.DebugSource source, OpenTK.Graphics.ES31.DebugType type, OpenTK.Graphics.ES31.DebugSeverity severity, Int32 count, UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } + /// [requires: KHR_debug] /// Inject an application-supplied message into the debug message queue /// @@ -40870,6 +48115,7 @@ namespace OpenTK.Graphics.ES31 /// /// The address of a character array containing the message to insert. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")] [CLSCompliant(false)] public static void DebugMessageInsert(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, Int32 id, OpenTK.Graphics.ES31.All severity, Int32 length, String buf) { throw new BindingsNotRewrittenException(); } @@ -40895,10 +48141,61 @@ namespace OpenTK.Graphics.ES31 /// /// The address of a character array containing the message to insert. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")] [CLSCompliant(false)] public static void DebugMessageInsert(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, UInt32 id, OpenTK.Graphics.ES31.All severity, Int32 length, String buf) { throw new BindingsNotRewrittenException(); } + /// [requires: KHR_debug] + /// Inject an application-supplied message into the debug message queue + /// + /// + /// The source of the debug message to insert. + /// + /// + /// The type of the debug message insert. + /// + /// + /// The user-supplied identifier of the message to insert. + /// + /// + /// The severity of the debug messages to insert. + /// + /// + /// The length string contained in the character array whose address is given by message. + /// + /// + /// The address of a character array containing the message to insert. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")] + [CLSCompliant(false)] + public static void DebugMessageInsert(OpenTK.Graphics.ES31.DebugSource source, OpenTK.Graphics.ES31.DebugType type, Int32 id, OpenTK.Graphics.ES31.DebugSeverity severity, Int32 length, String buf) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Inject an application-supplied message into the debug message queue + /// + /// + /// The source of the debug message to insert. + /// + /// + /// The type of the debug message insert. + /// + /// + /// The user-supplied identifier of the message to insert. + /// + /// + /// The severity of the debug messages to insert. + /// + /// + /// The length string contained in the character array whose address is given by message. + /// + /// + /// The address of a character array containing the message to insert. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")] + [CLSCompliant(false)] + public static void DebugMessageInsert(OpenTK.Graphics.ES31.DebugSource source, OpenTK.Graphics.ES31.DebugType type, UInt32 id, OpenTK.Graphics.ES31.DebugSeverity severity, Int32 length, String buf) { throw new BindingsNotRewrittenException(); } + /// [requires: KHR_debug] /// Retrieve messages from the debug message log /// @@ -40926,6 +48223,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// The address of an array of characters that will receive the messages. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } @@ -40957,6 +48255,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// The address of an array of characters that will receive the messages. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } @@ -40988,6 +48287,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// The address of an array of characters that will receive the messages. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } @@ -41021,6 +48321,100 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.DebugSource[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Retrieve messages from the debug message log + /// + /// + /// The number of debug messages to retrieve from the log. + /// + /// + /// The size of the buffer whose address is given by messageLog. + /// + /// [length: count] + /// The address of an array of variables to receive the sources of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the types of the retrieved messages. + /// + /// [length: count] + /// The address of an array of unsigned integers to receive the ids of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the severites of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the lengths of the received messages. + /// + /// [length: bufSize] + /// The address of an array of characters that will receive the messages. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.DebugSource sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Retrieve messages from the debug message log + /// + /// + /// The number of debug messages to retrieve from the log. + /// + /// + /// The size of the buffer whose address is given by messageLog. + /// + /// [length: count] + /// The address of an array of variables to receive the sources of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the types of the retrieved messages. + /// + /// [length: count] + /// The address of an array of unsigned integers to receive the ids of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the severites of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the lengths of the received messages. + /// + /// [length: bufSize] + /// The address of an array of characters that will receive the messages. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.DebugSource* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Retrieve messages from the debug message log + /// + /// + /// The number of debug messages to retrieve from the log. + /// + /// + /// The size of the buffer whose address is given by messageLog. + /// + /// [length: count] + /// The address of an array of variables to receive the sources of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the types of the retrieved messages. + /// + /// [length: count] + /// The address of an array of unsigned integers to receive the ids of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the severites of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the lengths of the received messages. + /// + /// [length: bufSize] + /// The address of an array of characters that will receive the messages. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] @@ -41050,6 +48444,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// The address of an array of characters that will receive the messages. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } @@ -41081,13 +48476,107 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] /// The address of an array of characters that will receive the messages. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + /// [requires: KHR_debug] + /// Retrieve messages from the debug message log + /// + /// + /// The number of debug messages to retrieve from the log. + /// + /// + /// The size of the buffer whose address is given by messageLog. + /// + /// [length: count] + /// The address of an array of variables to receive the sources of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the types of the retrieved messages. + /// + /// [length: count] + /// The address of an array of unsigned integers to receive the ids of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the severites of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the lengths of the received messages. + /// + /// [length: bufSize] + /// The address of an array of characters that will receive the messages. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.DebugSource[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Retrieve messages from the debug message log + /// + /// + /// The number of debug messages to retrieve from the log. + /// + /// + /// The size of the buffer whose address is given by messageLog. + /// + /// [length: count] + /// The address of an array of variables to receive the sources of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the types of the retrieved messages. + /// + /// [length: count] + /// The address of an array of unsigned integers to receive the ids of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the severites of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the lengths of the received messages. + /// + /// [length: bufSize] + /// The address of an array of characters that will receive the messages. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.DebugSource sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Retrieve messages from the debug message log + /// + /// + /// The number of debug messages to retrieve from the log. + /// + /// + /// The size of the buffer whose address is given by messageLog. + /// + /// [length: count] + /// The address of an array of variables to receive the sources of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the types of the retrieved messages. + /// + /// [length: count] + /// The address of an array of unsigned integers to receive the ids of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the severites of the retrieved messages. + /// + /// [length: count] + /// The address of an array of variables to receive the lengths of the received messages. + /// + /// [length: bufSize] + /// The address of an array of characters that will receive the messages. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] + [CLSCompliant(false)] + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.DebugSource* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + /// [requires: KHR_robustness] [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetGraphicsResetStatusKHR")] - public static OpenTK.Graphics.ES31.All GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.ES31.GraphicsResetStatus GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41713,6 +49202,18 @@ namespace OpenTK.Graphics.ES31 where T1 : struct { throw new BindingsNotRewrittenException(); } + /// [requires: KHR_parallel_shader_compile] + /// + [AutoGenerated(Category = "KHR_parallel_shader_compile", Version = "", EntryPoint = "glMaxShaderCompilerThreadsKHR")] + [CLSCompliant(false)] + public static void MaxShaderCompilerThreads(Int32 count) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_parallel_shader_compile] + /// + [AutoGenerated(Category = "KHR_parallel_shader_compile", Version = "", EntryPoint = "glMaxShaderCompilerThreadsKHR")] + [CLSCompliant(false)] + public static void MaxShaderCompilerThreads(UInt32 count) { throw new BindingsNotRewrittenException(); } + /// [requires: KHR_debug] /// Label a named object identified within a namespace /// @@ -41728,6 +49229,7 @@ namespace OpenTK.Graphics.ES31 /// /// The address of a string containing the label to assign to the object. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] [CLSCompliant(false)] public static void ObjectLabel(OpenTK.Graphics.ES31.All identifier, Int32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } @@ -41747,10 +49249,49 @@ namespace OpenTK.Graphics.ES31 /// /// The address of a string containing the label to assign to the object. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] [CLSCompliant(false)] public static void ObjectLabel(OpenTK.Graphics.ES31.All identifier, UInt32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } + /// [requires: KHR_debug] + /// Label a named object identified within a namespace + /// + /// + /// The namespace from which the name of the object is allocated. + /// + /// + /// The name of the object to label. + /// + /// + /// The length of the label to be used for the object. + /// + /// + /// The address of a string containing the label to assign to the object. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] + [CLSCompliant(false)] + public static void ObjectLabel(OpenTK.Graphics.ES31.ObjectIdentifier identifier, Int32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Label a named object identified within a namespace + /// + /// + /// The namespace from which the name of the object is allocated. + /// + /// + /// The name of the object to label. + /// + /// + /// The length of the label to be used for the object. + /// + /// + /// The address of a string containing the label to assign to the object. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] + [CLSCompliant(false)] + public static void ObjectLabel(OpenTK.Graphics.ES31.ObjectIdentifier identifier, UInt32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } + /// [requires: KHR_debug] /// Label a a sync object identified by a pointer /// @@ -41858,6 +49399,7 @@ namespace OpenTK.Graphics.ES31 /// /// The a string containing the message to be sent to the debug output stream. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroupKHR")] [CLSCompliant(false)] public static void PushDebugGroup(OpenTK.Graphics.ES31.All source, Int32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } @@ -41877,10 +49419,49 @@ namespace OpenTK.Graphics.ES31 /// /// The a string containing the message to be sent to the debug output stream. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroupKHR")] [CLSCompliant(false)] public static void PushDebugGroup(OpenTK.Graphics.ES31.All source, UInt32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } + /// [requires: KHR_debug] + /// Push a named debug group into the command stream + /// + /// + /// The source of the debug message. + /// + /// + /// The identifier of the message. + /// + /// + /// The length of the message to be sent to the debug output stream. + /// + /// + /// The a string containing the message to be sent to the debug output stream. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroupKHR")] + [CLSCompliant(false)] + public static void PushDebugGroup(OpenTK.Graphics.ES31.DebugSource source, Int32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Push a named debug group into the command stream + /// + /// + /// The source of the debug message. + /// + /// + /// The identifier of the message. + /// + /// + /// The length of the message to be sent to the debug output stream. + /// + /// + /// The a string containing the message to be sent to the debug output stream. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroupKHR")] + [CLSCompliant(false)] + public static void PushDebugGroup(OpenTK.Graphics.ES31.DebugSource source, UInt32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } + /// [requires: KHR_robustness] /// /// @@ -42041,6 +49622,7 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies how glBeginConditionalRender interprets the results of the occlusion query. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNV")] [CLSCompliant(false)] public static void BeginConditionalRender(Int32 id, OpenTK.Graphics.ES31.All mode) { throw new BindingsNotRewrittenException(); } @@ -42056,8 +49638,35 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNV")] [CLSCompliant(false)] + public static void BeginConditionalRender(Int32 id, OpenTK.Graphics.ES31.TypeEnum mode) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_conditional_render] + /// Start conditional rendering + /// + /// + /// Specifies the name of an occlusion query object whose results are used to determine if the rendering commands are discarded. + /// + /// + /// Specifies how glBeginConditionalRender interprets the results of the occlusion query. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNV")] + [CLSCompliant(false)] public static void BeginConditionalRender(UInt32 id, OpenTK.Graphics.ES31.All mode) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_conditional_render] + /// Start conditional rendering + /// + /// + /// Specifies the name of an occlusion query object whose results are used to determine if the rendering commands are discarded. + /// + /// + /// Specifies how glBeginConditionalRender interprets the results of the occlusion query. + /// + [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNV")] + [CLSCompliant(false)] + public static void BeginConditionalRender(UInt32 id, OpenTK.Graphics.ES31.TypeEnum mode) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_blend_equation_advanced] [AutoGenerated(Category = "NV_blend_equation_advanced", Version = "", EntryPoint = "glBlendBarrierNV")] public static void BlendBarrier() { throw new BindingsNotRewrittenException(); } @@ -42101,9 +49710,9 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the interpolation to be applied if the image is stretched. Must be Nearest or Linear. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_framebuffer_blit", Version = "", EntryPoint = "glBlitFramebufferNV")] - [CLSCompliant(false)] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, Int32 mask, OpenTK.Graphics.ES31.All filter) { throw new BindingsNotRewrittenException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES31.All mask, OpenTK.Graphics.ES31.All filter) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_blit] /// Copy a block of pixels from the read framebuffer to the draw framebuffer @@ -42139,8 +49748,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the interpolation to be applied if the image is stretched. Must be Nearest or Linear. /// [AutoGenerated(Category = "NV_framebuffer_blit", Version = "", EntryPoint = "glBlitFramebufferNV")] - [CLSCompliant(false)] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, UInt32 mask, OpenTK.Graphics.ES31.All filter) { throw new BindingsNotRewrittenException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES31.ClearBufferMask mask, OpenTK.Graphics.ES31.BlitFramebufferFilter filter) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conservative_raster_pre_snap_triangles] /// @@ -42166,6 +49774,7 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the size, in basic machine units, of the data to be copied from readtarget to writetarget. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_copy_buffer", Version = "", EntryPoint = "glCopyBufferSubDataNV")] public static void CopyBufferSubData(OpenTK.Graphics.ES31.All readTarget, OpenTK.Graphics.ES31.All writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } @@ -42187,9 +49796,52 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the size, in basic machine units, of the data to be copied from readtarget to writetarget. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_copy_buffer", Version = "", EntryPoint = "glCopyBufferSubDataNV")] public static void CopyBufferSubData(OpenTK.Graphics.ES31.All readTarget, OpenTK.Graphics.ES31.All writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_copy_buffer] + /// Copy part of the data store of a buffer object to the data store of another buffer object + /// + /// + /// Specifies the target from whose data store data should be read. + /// + /// + /// Specifies the target to whose data store data should be written. + /// + /// + /// Specifies the offset, in basic machine units, within the data store of readtarget from which data should be read. + /// + /// + /// Specifies the offset, in basic machine units, within the data store of writetarget to which data should be written. + /// + /// + /// Specifies the size, in basic machine units, of the data to be copied from readtarget to writetarget. + /// + [AutoGenerated(Category = "NV_copy_buffer", Version = "", EntryPoint = "glCopyBufferSubDataNV")] + public static void CopyBufferSubData(OpenTK.Graphics.ES31.CopyBufferSubDataTarget readTarget, OpenTK.Graphics.ES31.CopyBufferSubDataTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_copy_buffer] + /// Copy part of the data store of a buffer object to the data store of another buffer object + /// + /// + /// Specifies the target from whose data store data should be read. + /// + /// + /// Specifies the target to whose data store data should be written. + /// + /// + /// Specifies the offset, in basic machine units, within the data store of readtarget from which data should be read. + /// + /// + /// Specifies the offset, in basic machine units, within the data store of writetarget to which data should be written. + /// + /// + /// Specifies the size, in basic machine units, of the data to be copied from readtarget to writetarget. + /// + [AutoGenerated(Category = "NV_copy_buffer", Version = "", EntryPoint = "glCopyBufferSubDataNV")] + public static void CopyBufferSubData(OpenTK.Graphics.ES31.CopyBufferSubDataTarget readTarget, OpenTK.Graphics.ES31.CopyBufferSubDataTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// @@ -42216,24 +49868,24 @@ namespace OpenTK.Graphics.ES31 /// [requires: NV_framebuffer_mixed_samples] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static void CoverageModulationTable(Int32 n, Single[] v) { throw new BindingsNotRewrittenException(); } + public static void CoverageModulationTable(Int32 n, [CountAttribute(Parameter = "n")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static void CoverageModulationTable(Int32 n, ref Single v) { throw new BindingsNotRewrittenException(); } + public static void CoverageModulationTable(Int32 n, [CountAttribute(Parameter = "n")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static unsafe void CoverageModulationTable(Int32 n, Single* v) { throw new BindingsNotRewrittenException(); } + public static unsafe void CoverageModulationTable(Int32 n, [CountAttribute(Parameter = "n")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_coverage_sample] /// @@ -42248,6 +49900,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } @@ -42260,6 +49913,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } @@ -42272,6 +49926,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } @@ -42284,6 +49939,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } @@ -42296,6 +49952,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } @@ -42308,6 +49965,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } @@ -42320,6 +49978,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -42334,6 +49993,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -42348,6 +50008,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -42362,6 +50023,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -42376,6 +50038,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -42390,6 +50053,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -42404,6 +50068,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -42418,6 +50083,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -42432,6 +50098,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -42446,6 +50113,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -42460,6 +50128,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -42474,6 +50143,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -42488,6 +50158,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -42502,6 +50173,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -42516,6 +50188,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -42530,6 +50203,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -42544,6 +50218,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -42558,6 +50233,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -42572,6 +50248,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -42586,6 +50263,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -42600,6 +50278,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -42614,6 +50293,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -42628,6 +50308,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -42642,26 +50323,13 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } - /// [requires: NV_path_rendering] - /// - /// - [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] - [CLSCompliant(false)] - public static void CoverFillPath(Int32 path, OpenTK.Graphics.ES31.All coverMode) { throw new BindingsNotRewrittenException(); } - - /// [requires: NV_path_rendering] - /// - /// - [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] - [CLSCompliant(false)] - public static void CoverFillPath(UInt32 path, OpenTK.Graphics.ES31.All coverMode) { throw new BindingsNotRewrittenException(); } - /// [requires: NV_path_rendering] /// /// @@ -42670,6 +50338,445 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] + [CLSCompliant(false)] + public static void CoverFillPath(Int32 path, OpenTK.Graphics.ES31.All coverMode) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] + [CLSCompliant(false)] + public static void CoverFillPath(Int32 path, OpenTK.Graphics.ES31.PathCoverMode coverMode) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] + [CLSCompliant(false)] + public static void CoverFillPath(UInt32 path, OpenTK.Graphics.ES31.All coverMode) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] + [CLSCompliant(false)] + public static void CoverFillPath(UInt32 path, OpenTK.Graphics.ES31.PathCoverMode coverMode) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } @@ -42682,6 +50789,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } @@ -42694,6 +50802,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } @@ -42706,6 +50815,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } @@ -42718,6 +50828,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } @@ -42730,6 +50841,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } @@ -42742,6 +50854,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -42756,6 +50869,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -42770,6 +50884,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -42784,6 +50899,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -42798,6 +50914,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -42812,6 +50929,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -42826,6 +50944,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -42840,6 +50959,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -42854,6 +50974,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -42868,6 +50989,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -42882,6 +51004,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -42896,6 +51019,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -42910,6 +51034,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -42924,6 +51049,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -42938,6 +51064,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -42952,6 +51079,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -42966,6 +51094,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -42980,6 +51109,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -42994,6 +51124,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -43008,6 +51139,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -43022,6 +51154,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -43036,6 +51169,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -43050,6 +51184,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -43064,15 +51199,425 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathCoverMode coverMode, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathNV")] [CLSCompliant(false)] public static void CoverStrokePath(Int32 path, OpenTK.Graphics.ES31.All coverMode) { throw new BindingsNotRewrittenException(); } @@ -43082,8 +51627,23 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathNV")] [CLSCompliant(false)] + public static void CoverStrokePath(Int32 path, OpenTK.Graphics.ES31.PathCoverMode coverMode) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathNV")] + [CLSCompliant(false)] public static void CoverStrokePath(UInt32 path, OpenTK.Graphics.ES31.All coverMode) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathNV")] + [CLSCompliant(false)] + public static void CoverStrokePath(UInt32 path, OpenTK.Graphics.ES31.PathCoverMode coverMode) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_fence] /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] @@ -43283,6 +51843,7 @@ namespace OpenTK.Graphics.ES31 /// [requires: NV_viewport_array] /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDisableiNV")] [CLSCompliant(false)] public static void Disable(OpenTK.Graphics.ES31.All target, Int32 index) { throw new BindingsNotRewrittenException(); } @@ -43290,10 +51851,25 @@ namespace OpenTK.Graphics.ES31 /// [requires: NV_viewport_array] /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDisableiNV")] [CLSCompliant(false)] public static void Disable(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_viewport_array] + /// + /// + [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDisableiNV")] + [CLSCompliant(false)] + public static void Disable(OpenTK.Graphics.ES31.EnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_viewport_array] + /// + /// + [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDisableiNV")] + [CLSCompliant(false)] + public static void Disable(OpenTK.Graphics.ES31.EnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_draw_instanced] /// Draw multiple instances of a range of elements /// @@ -43510,7 +52086,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedNV")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.PrimitiveType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -43532,7 +52108,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedNV")] [CLSCompliant(false)] - public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) + public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -43556,7 +52132,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedNV")] [CLSCompliant(false)] - public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) + public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -43580,7 +52156,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedNV")] [CLSCompliant(false)] - public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) + public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -43603,7 +52179,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedNV")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) + public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.PrimitiveType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -43646,6 +52222,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a symbolic constant indicating a GL capability. /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glEnableiNV")] [CLSCompliant(false)] public static void Enable(OpenTK.Graphics.ES31.All target, Int32 index) { throw new BindingsNotRewrittenException(); } @@ -43657,10 +52234,33 @@ namespace OpenTK.Graphics.ES31 /// Specifies a symbolic constant indicating a GL capability. /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glEnableiNV")] [CLSCompliant(false)] public static void Enable(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_viewport_array] + /// Enable or disable server-side GL capabilities + /// + /// + /// Specifies a symbolic constant indicating a GL capability. + /// + /// + [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glEnableiNV")] + [CLSCompliant(false)] + public static void Enable(OpenTK.Graphics.ES31.EnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_viewport_array] + /// Enable or disable server-side GL capabilities + /// + /// + /// Specifies a symbolic constant indicating a GL capability. + /// + /// + [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glEnableiNV")] + [CLSCompliant(false)] + public static void Enable(OpenTK.Graphics.ES31.EnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_conditional_render] [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glEndConditionalRenderNV")] public static void EndConditionalRender() { throw new BindingsNotRewrittenException(); } @@ -43694,6 +52294,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] public static void FramebufferSampleLocations(OpenTK.Graphics.ES31.All target, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } @@ -43703,6 +52304,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] public static void FramebufferSampleLocations(OpenTK.Graphics.ES31.All target, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } @@ -43712,6 +52314,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.ES31.All target, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } @@ -43721,6 +52324,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] public static void FramebufferSampleLocations(OpenTK.Graphics.ES31.All target, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } @@ -43730,6 +52334,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] public static void FramebufferSampleLocations(OpenTK.Graphics.ES31.All target, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } @@ -43739,10 +52344,65 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.ES31.All target, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_sample_locations] + /// + /// + /// + /// + [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] + [CLSCompliant(false)] + public static void FramebufferSampleLocations(OpenTK.Graphics.ES31.FramebufferTarget target, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_sample_locations] + /// + /// + /// + /// + [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] + [CLSCompliant(false)] + public static void FramebufferSampleLocations(OpenTK.Graphics.ES31.FramebufferTarget target, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_sample_locations] + /// + /// + /// + /// + [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] + [CLSCompliant(false)] + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.ES31.FramebufferTarget target, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_sample_locations] + /// + /// + /// + /// + [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] + [CLSCompliant(false)] + public static void FramebufferSampleLocations(OpenTK.Graphics.ES31.FramebufferTarget target, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_sample_locations] + /// + /// + /// + /// + [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] + [CLSCompliant(false)] + public static void FramebufferSampleLocations(OpenTK.Graphics.ES31.FramebufferTarget target, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_sample_locations] + /// + /// + /// + /// + [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] + [CLSCompliant(false)] + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.ES31.FramebufferTarget target, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] @@ -43873,6 +52533,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } @@ -43881,6 +52542,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } @@ -43889,6 +52551,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] public static unsafe void GetFloat(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } @@ -43897,6 +52560,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } @@ -43905,6 +52569,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } @@ -43913,16 +52578,66 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] public static unsafe void GetFloat(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_viewport_array] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] + [CLSCompliant(false)] + public static void GetFloat(OpenTK.Graphics.ES31.TypeEnum target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_viewport_array] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] + [CLSCompliant(false)] + public static void GetFloat(OpenTK.Graphics.ES31.TypeEnum target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_viewport_array] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] + [CLSCompliant(false)] + public static unsafe void GetFloat(OpenTK.Graphics.ES31.TypeEnum target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_viewport_array] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] + [CLSCompliant(false)] + public static void GetFloat(OpenTK.Graphics.ES31.TypeEnum target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_viewport_array] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] + [CLSCompliant(false)] + public static void GetFloat(OpenTK.Graphics.ES31.TypeEnum target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_viewport_array] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] + [CLSCompliant(false)] + public static unsafe void GetFloat(OpenTK.Graphics.ES31.TypeEnum target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_bindless_texture] /// /// /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetImageHandleNV")] [CLSCompliant(false)] public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES31.All format) { throw new BindingsNotRewrittenException(); } @@ -43935,8 +52650,29 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetImageHandleNV")] [CLSCompliant(false)] + public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES31.PixelFormat format) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_bindless_texture] + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetImageHandleNV")] + [CLSCompliant(false)] public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES31.All format) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_bindless_texture] + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetImageHandleNV")] + [CLSCompliant(false)] + public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES31.PixelFormat format) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_internalformat_sample_query] /// /// @@ -43944,6 +52680,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: bufSize] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] public static void GetInternalformatSample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 samples, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -43955,6 +52692,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: bufSize] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] public static void GetInternalformatSample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 samples, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -43966,14 +52704,49 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: bufSize] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] public static unsafe void GetInternalformatSample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 samples, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_internalformat_sample_query] + /// + /// + /// + /// + /// + /// [length: bufSize] + [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] + [CLSCompliant(false)] + public static void GetInternalformatSample(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 samples, OpenTK.Graphics.ES31.InternalFormatPName pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_internalformat_sample_query] + /// + /// + /// + /// + /// + /// [length: bufSize] + [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] + [CLSCompliant(false)] + public static void GetInternalformatSample(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 samples, OpenTK.Graphics.ES31.InternalFormatPName pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_internalformat_sample_query] + /// + /// + /// + /// + /// + /// [length: bufSize] + [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] + [CLSCompliant(false)] + public static unsafe void GetInternalformatSample(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 samples, OpenTK.Graphics.ES31.InternalFormatPName pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] public static void GetPathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } @@ -43982,6 +52755,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] public static void GetPathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } @@ -43990,6 +52764,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] public static unsafe void GetPathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } @@ -43998,6 +52773,31 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] + [CLSCompliant(false)] + public static void GetPathColorGen(OpenTK.Graphics.ES31.PathColor color, OpenTK.Graphics.ES31.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] + [CLSCompliant(false)] + public static void GetPathColorGen(OpenTK.Graphics.ES31.PathColor color, OpenTK.Graphics.ES31.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] + [CLSCompliant(false)] + public static unsafe void GetPathColorGen(OpenTK.Graphics.ES31.PathColor color, OpenTK.Graphics.ES31.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] public static void GetPathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } @@ -44006,6 +52806,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] public static void GetPathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } @@ -44014,10 +52815,35 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] public static unsafe void GetPathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] + [CLSCompliant(false)] + public static void GetPathColorGen(OpenTK.Graphics.ES31.PathColor color, OpenTK.Graphics.ES31.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] + [CLSCompliant(false)] + public static void GetPathColorGen(OpenTK.Graphics.ES31.PathColor color, OpenTK.Graphics.ES31.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] + [CLSCompliant(false)] + public static unsafe void GetPathColorGen(OpenTK.Graphics.ES31.PathColor color, OpenTK.Graphics.ES31.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] @@ -44202,9 +53028,65 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } + public static void GetPathMetricRange(OpenTK.Graphics.ES31.All metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] + [CLSCompliant(false)] + public static void GetPathMetricRange(OpenTK.Graphics.ES31.All metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetricRange(OpenTK.Graphics.ES31.All metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] + [CLSCompliant(false)] + public static void GetPathMetricRange(OpenTK.Graphics.ES31.All metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] + [CLSCompliant(false)] + public static void GetPathMetricRange(OpenTK.Graphics.ES31.All metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetricRange(OpenTK.Graphics.ES31.All metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44214,7 +53096,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } + public static void GetPathMetricRange(OpenTK.Graphics.ES31.PathMetricMask metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44224,7 +53106,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } + public static void GetPathMetricRange(OpenTK.Graphics.ES31.PathMetricMask metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44234,7 +53116,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPathMetricRange(OpenTK.Graphics.ES31.PathMetricMask metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44244,7 +53126,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } + public static void GetPathMetricRange(OpenTK.Graphics.ES31.PathMetricMask metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44254,7 +53136,17 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } + public static void GetPathMetricRange(OpenTK.Graphics.ES31.PathMetricMask metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetricRange(OpenTK.Graphics.ES31.PathMetricMask metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44264,9 +53156,10 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } + public static void GetPathMetric(OpenTK.Graphics.ES31.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44276,9 +53169,10 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } + public static void GetPathMetric(OpenTK.Graphics.ES31.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44288,9 +53182,10 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPathMetric(OpenTK.Graphics.ES31.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44300,9 +53195,394 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + public static void GetPathMetric(OpenTK.Graphics.ES31.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES31.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetric(OpenTK.Graphics.ES31.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES31.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES31.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetric(OpenTK.Graphics.ES31.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES31.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES31.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetric(OpenTK.Graphics.ES31.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES31.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES31.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetric(OpenTK.Graphics.ES31.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES31.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES31.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetric(OpenTK.Graphics.ES31.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES31.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES31.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetric(OpenTK.Graphics.ES31.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES31.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES31.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetric(OpenTK.Graphics.ES31.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES31.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES31.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetric(OpenTK.Graphics.ES31.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES31.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES31.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetric(OpenTK.Graphics.ES31.All metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -44316,7 +53596,79 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + public static void GetPathMetric(OpenTK.Graphics.ES31.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES31.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetric(OpenTK.Graphics.ES31.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES31.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES31.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetric(OpenTK.Graphics.ES31.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.ES31.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -44330,7 +53682,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + public static void GetPathMetric(OpenTK.Graphics.ES31.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -44344,7 +53696,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + public static unsafe void GetPathMetric(OpenTK.Graphics.ES31.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -44358,7 +53710,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + public static void GetPathMetric(OpenTK.Graphics.ES31.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -44372,7 +53724,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + public static void GetPathMetric(OpenTK.Graphics.ES31.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -44386,7 +53738,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + public static unsafe void GetPathMetric(OpenTK.Graphics.ES31.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -44400,7 +53752,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + public static void GetPathMetric(OpenTK.Graphics.ES31.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -44414,7 +53766,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + public static void GetPathMetric(OpenTK.Graphics.ES31.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -44428,7 +53780,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + public static unsafe void GetPathMetric(OpenTK.Graphics.ES31.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -44442,7 +53794,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + public static void GetPathMetric(OpenTK.Graphics.ES31.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -44456,7 +53808,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + public static void GetPathMetric(OpenTK.Graphics.ES31.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -44470,43 +53822,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } - - /// [requires: NV_path_rendering] - /// - /// - /// - /// [length: COMPSIZE(numPaths,pathNameType,paths)] - /// - /// - /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] - [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] - [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } - - /// [requires: NV_path_rendering] - /// - /// - /// - /// [length: COMPSIZE(numPaths,pathNameType,paths)] - /// - /// - /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] - [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] - [CLSCompliant(false)] - public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } - - /// [requires: NV_path_rendering] - /// - /// - /// - /// [length: COMPSIZE(numPaths,pathNameType,paths)] - /// - /// - /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] - [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] - [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + public static unsafe void GetPathMetric(OpenTK.Graphics.ES31.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -44520,7 +53836,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + public static void GetPathMetric(OpenTK.Graphics.ES31.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -44534,7 +53850,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + public static void GetPathMetric(OpenTK.Graphics.ES31.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -44548,7 +53864,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + public static unsafe void GetPathMetric(OpenTK.Graphics.ES31.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -44562,7 +53878,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + public static void GetPathMetric(OpenTK.Graphics.ES31.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -44576,7 +53892,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + public static void GetPathMetric(OpenTK.Graphics.ES31.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -44590,7 +53906,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + public static unsafe void GetPathMetric(OpenTK.Graphics.ES31.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -44604,7 +53920,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + public static void GetPathMetric(OpenTK.Graphics.ES31.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -44618,7 +53934,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + public static void GetPathMetric(OpenTK.Graphics.ES31.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -44632,7 +53948,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + public static unsafe void GetPathMetric(OpenTK.Graphics.ES31.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -44646,7 +53962,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + public static void GetPathMetric(OpenTK.Graphics.ES31.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -44660,7 +53976,21 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + public static void GetPathMetric(OpenTK.Graphics.ES31.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetric(OpenTK.Graphics.ES31.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -44668,6 +53998,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } @@ -44676,6 +54007,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new BindingsNotRewrittenException(); } @@ -44684,6 +54016,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } @@ -44694,12 +54027,38 @@ namespace OpenTK.Graphics.ES31 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] + public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES31.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: 4] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] + [CLSCompliant(false)] + public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES31.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: 4] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] + [CLSCompliant(false)] + public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.ES31.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] + [CLSCompliant(false)] public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new BindingsNotRewrittenException(); } @@ -44708,6 +54067,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } @@ -44716,6 +54076,31 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: 4] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] + [CLSCompliant(false)] + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES31.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: 4] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] + [CLSCompliant(false)] + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES31.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: 4] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] + [CLSCompliant(false)] + public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.ES31.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new BindingsNotRewrittenException(); } @@ -44724,6 +54109,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new BindingsNotRewrittenException(); } @@ -44732,6 +54118,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new BindingsNotRewrittenException(); } @@ -44742,12 +54129,38 @@ namespace OpenTK.Graphics.ES31 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] + public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES31.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: 4] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] + [CLSCompliant(false)] + public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES31.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: 4] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] + [CLSCompliant(false)] + public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.ES31.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] + [CLSCompliant(false)] public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new BindingsNotRewrittenException(); } @@ -44756,10 +54169,35 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: 4] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// [length: 4] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] + [CLSCompliant(false)] + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES31.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: 4] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] + [CLSCompliant(false)] + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES31.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: 4] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] + [CLSCompliant(false)] + public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.ES31.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// @@ -44770,6 +54208,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new BindingsNotRewrittenException(); } @@ -44784,6 +54223,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new BindingsNotRewrittenException(); } @@ -44798,6 +54238,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new BindingsNotRewrittenException(); } @@ -44812,6 +54253,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new BindingsNotRewrittenException(); } @@ -44826,6 +54268,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new BindingsNotRewrittenException(); } @@ -44840,6 +54283,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new BindingsNotRewrittenException(); } @@ -44854,6 +54298,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) @@ -44870,6 +54315,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) @@ -44886,6 +54332,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) @@ -44902,6 +54349,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) @@ -44918,6 +54366,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) @@ -44934,6 +54383,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) @@ -44950,6 +54400,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) @@ -44966,6 +54417,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) @@ -44982,6 +54434,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) @@ -44998,6 +54451,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) @@ -45014,6 +54468,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) @@ -45030,6 +54485,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) @@ -45046,6 +54502,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) @@ -45062,6 +54519,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) @@ -45078,6 +54536,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) @@ -45094,6 +54553,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) @@ -45110,6 +54570,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) @@ -45126,6 +54587,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) @@ -45142,6 +54604,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) @@ -45158,6 +54621,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) @@ -45174,6 +54638,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) @@ -45190,6 +54655,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) @@ -45206,6 +54672,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) @@ -45222,12 +54689,481 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pathListMode,numPaths)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES31.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES31.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES31.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES31.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES31.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES31.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES31.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES31.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES31.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES31.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES31.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES31.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES31.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES31.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES31.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES31.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES31.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES31.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES31.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static void GetPathSpacing(OpenTK.Graphics.ES31.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(pathListMode,numPaths)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] + [CLSCompliant(false)] + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// @@ -45261,7 +55197,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES31.TextureUnit texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES31.TextureUnit texCoordSet, OpenTK.Graphics.ES31.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45269,7 +55205,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES31.TextureUnit texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES31.TextureUnit texCoordSet, OpenTK.Graphics.ES31.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45277,7 +55213,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathTexGen(OpenTK.Graphics.ES31.TextureUnit texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.ES31.TextureUnit texCoordSet, OpenTK.Graphics.ES31.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45312,7 +55248,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES31.TextureUnit texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES31.TextureUnit texCoordSet, OpenTK.Graphics.ES31.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45320,7 +55256,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES31.TextureUnit texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES31.TextureUnit texCoordSet, OpenTK.Graphics.ES31.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45328,7 +55264,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static unsafe void GetPathTexGen(OpenTK.Graphics.ES31.TextureUnit texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.ES31.TextureUnit texCoordSet, OpenTK.Graphics.ES31.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -45345,6 +55281,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES31.All programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.ES31.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } @@ -45364,6 +55301,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES31.All programInterface, Int32 index, Int32 propCount, ref OpenTK.Graphics.ES31.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } @@ -45383,6 +55321,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.ES31.All programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.ES31.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } @@ -45404,6 +55343,64 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] + public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES31.ProgramInterface programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.ES31.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// Retrieve values for multiple properties of a single active resource within a program object + /// + /// + /// The name of a program object whose resources to query. + /// + /// + /// A token identifying the interface within program containing the resource named name. + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] + [CLSCompliant(false)] + public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES31.ProgramInterface programInterface, Int32 index, Int32 propCount, ref OpenTK.Graphics.ES31.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// Retrieve values for multiple properties of a single active resource within a program object + /// + /// + /// The name of a program object whose resources to query. + /// + /// + /// A token identifying the interface within program containing the resource named name. + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] + [CLSCompliant(false)] + public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.ES31.ProgramInterface programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.ES31.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// Retrieve values for multiple properties of a single active resource within a program object + /// + /// + /// The name of a program object whose resources to query. + /// + /// + /// A token identifying the interface within program containing the resource named name. + /// + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] + [CLSCompliant(false)] public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES31.All programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.ES31.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] @@ -45421,6 +55418,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES31.All programInterface, UInt32 index, Int32 propCount, ref OpenTK.Graphics.ES31.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } @@ -45440,10 +55438,68 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.ES31.All programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.ES31.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// Retrieve values for multiple properties of a single active resource within a program object + /// + /// + /// The name of a program object whose resources to query. + /// + /// + /// A token identifying the interface within program containing the resource named name. + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] + [CLSCompliant(false)] + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES31.ProgramInterface programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.ES31.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// Retrieve values for multiple properties of a single active resource within a program object + /// + /// + /// The name of a program object whose resources to query. + /// + /// + /// A token identifying the interface within program containing the resource named name. + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] + [CLSCompliant(false)] + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES31.ProgramInterface programInterface, UInt32 index, Int32 propCount, ref OpenTK.Graphics.ES31.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// Retrieve values for multiple properties of a single active resource within a program object + /// + /// + /// The name of a program object whose resources to query. + /// + /// + /// A token identifying the interface within program containing the resource named name. + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] + [CLSCompliant(false)] + public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.ES31.ProgramInterface programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.ES31.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleNV")] @@ -45598,6 +55654,7 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the index of the capability. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glIsEnablediNV")] [CLSCompliant(false)] public static bool IsEnabled(OpenTK.Graphics.ES31.All target, Int32 index) { throw new BindingsNotRewrittenException(); } @@ -45611,10 +55668,37 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the index of the capability. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glIsEnablediNV")] [CLSCompliant(false)] public static bool IsEnabled(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_viewport_array] + /// Test whether a capability is enabled + /// + /// + /// Specifies a symbolic constant indicating a GL capability. + /// + /// + /// Specifies the index of the capability. + /// + [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glIsEnablediNV")] + [CLSCompliant(false)] + public static bool IsEnabled(OpenTK.Graphics.ES31.EnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_viewport_array] + /// Test whether a capability is enabled + /// + /// + /// Specifies a symbolic constant indicating a GL capability. + /// + /// + /// Specifies the index of the capability. + /// + [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glIsEnablediNV")] + [CLSCompliant(false)] + public static bool IsEnabled(OpenTK.Graphics.ES31.EnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glIsFenceNV")] @@ -45932,6 +56016,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(genMode,colorFormat)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] public static void PathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All genMode, OpenTK.Graphics.ES31.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single[] coeffs) { throw new BindingsNotRewrittenException(); } @@ -45941,6 +56026,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(genMode,colorFormat)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] public static void PathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All genMode, OpenTK.Graphics.ES31.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] ref Single coeffs) { throw new BindingsNotRewrittenException(); } @@ -45950,10 +56036,38 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(genMode,colorFormat)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] public static unsafe void PathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All genMode, OpenTK.Graphics.ES31.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single* coeffs) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(genMode,colorFormat)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] + [CLSCompliant(false)] + public static void PathColorGen(OpenTK.Graphics.ES31.PathColor color, OpenTK.Graphics.ES31.PathGenMode genMode, OpenTK.Graphics.ES31.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single[] coeffs) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(genMode,colorFormat)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] + [CLSCompliant(false)] + public static void PathColorGen(OpenTK.Graphics.ES31.PathColor color, OpenTK.Graphics.ES31.PathGenMode genMode, OpenTK.Graphics.ES31.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] ref Single coeffs) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(genMode,colorFormat)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] + [CLSCompliant(false)] + public static unsafe void PathColorGen(OpenTK.Graphics.ES31.PathColor color, OpenTK.Graphics.ES31.PathGenMode genMode, OpenTK.Graphics.ES31.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single* coeffs) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// @@ -46499,9 +56613,15 @@ namespace OpenTK.Graphics.ES31 /// [requires: NV_path_rendering] /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathFogGenNV")] public static void PathFogGen(OpenTK.Graphics.ES31.All genMode) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathFogGenNV")] + public static void PathFogGen(OpenTK.Graphics.ES31.PathGenMode genMode) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// @@ -46511,9 +56631,10 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, IntPtr fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, IntPtr fontName, OpenTK.Graphics.ES31.All fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46526,7 +56647,21 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T2[] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) + public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, IntPtr fontName, OpenTK.Graphics.ES31.PathFontStyle fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T2[] fontName, OpenTK.Graphics.ES31.All fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -46541,7 +56676,23 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T2[,] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) + public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T2[] fontName, OpenTK.Graphics.ES31.PathFontStyle fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T2[,] fontName, OpenTK.Graphics.ES31.All fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -46556,7 +56707,23 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) + public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T2[,] fontName, OpenTK.Graphics.ES31.PathFontStyle fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, OpenTK.Graphics.ES31.All fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -46571,7 +56738,23 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] ref T2 fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) + public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, OpenTK.Graphics.ES31.PathFontStyle fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] ref T2 fontName, OpenTK.Graphics.ES31.All fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -46586,7 +56769,23 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] ref T2 fontName, OpenTK.Graphics.ES31.PathFontStyle fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, IntPtr fontName, OpenTK.Graphics.ES31.All fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46599,7 +56798,21 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T2[] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, IntPtr fontName, OpenTK.Graphics.ES31.PathFontStyle fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T2[] fontName, OpenTK.Graphics.ES31.All fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -46614,7 +56827,23 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T2[,] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T2[] fontName, OpenTK.Graphics.ES31.PathFontStyle fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T2[,] fontName, OpenTK.Graphics.ES31.All fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -46629,7 +56858,23 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T2[,] fontName, OpenTK.Graphics.ES31.PathFontStyle fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, OpenTK.Graphics.ES31.All fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -46644,7 +56889,38 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] ref T2 fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, OpenTK.Graphics.ES31.PathFontStyle fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] ref T2 fontName, OpenTK.Graphics.ES31.All fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] ref T2 fontName, OpenTK.Graphics.ES31.PathFontStyle fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -46655,9 +56931,22 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, IntPtr fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, IntPtr fontName, OpenTK.Graphics.ES31.All fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, IntPtr fontName, OpenTK.Graphics.ES31.All fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46668,7 +56957,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, IntPtr fontName, OpenTK.Graphics.ES31.PathFontStyle fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46679,7 +56968,33 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T1[] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) + public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, IntPtr fontName, OpenTK.Graphics.ES31.PathFontStyle fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T1[] fontName, OpenTK.Graphics.ES31.All fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) + where T1 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T1[] fontName, OpenTK.Graphics.ES31.All fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct { throw new BindingsNotRewrittenException(); } @@ -46692,7 +57007,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T1[] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) + public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T1[] fontName, OpenTK.Graphics.ES31.PathFontStyle fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct { throw new BindingsNotRewrittenException(); } @@ -46705,7 +57020,35 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T1[,] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) + public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T1[] fontName, OpenTK.Graphics.ES31.PathFontStyle fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) + where T1 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T1[,] fontName, OpenTK.Graphics.ES31.All fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) + where T1 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T1[,] fontName, OpenTK.Graphics.ES31.All fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct { throw new BindingsNotRewrittenException(); } @@ -46718,7 +57061,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T1[,] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) + public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T1[,] fontName, OpenTK.Graphics.ES31.PathFontStyle fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct { throw new BindingsNotRewrittenException(); } @@ -46731,7 +57074,35 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) + public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T1[,] fontName, OpenTK.Graphics.ES31.PathFontStyle fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) + where T1 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, OpenTK.Graphics.ES31.All fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) + where T1 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, OpenTK.Graphics.ES31.All fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct { throw new BindingsNotRewrittenException(); } @@ -46744,7 +57115,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) + public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, OpenTK.Graphics.ES31.PathFontStyle fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct { throw new BindingsNotRewrittenException(); } @@ -46757,7 +57128,35 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] ref T1 fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) + public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, OpenTK.Graphics.ES31.PathFontStyle fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) + where T1 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] ref T1 fontName, OpenTK.Graphics.ES31.All fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) + where T1 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] ref T1 fontName, OpenTK.Graphics.ES31.All fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct { throw new BindingsNotRewrittenException(); } @@ -46770,7 +57169,20 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] ref T1 fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) + public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] ref T1 fontName, OpenTK.Graphics.ES31.PathFontStyle fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) + where T1 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] + [CLSCompliant(false)] + public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] ref T1 fontName, OpenTK.Graphics.ES31.PathFontStyle fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct { throw new BindingsNotRewrittenException(); } @@ -46784,9 +57196,10 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, OpenTK.Graphics.ES31.All fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46798,9 +57211,61 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, OpenTK.Graphics.ES31.All fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] + [CLSCompliant(false)] + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, OpenTK.Graphics.ES31.All fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] + [CLSCompliant(false)] + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, OpenTK.Graphics.ES31.All fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] + [CLSCompliant(false)] + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, OpenTK.Graphics.ES31.All fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -46816,7 +57281,21 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES31.PathFontTarget fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, OpenTK.Graphics.ES31.PathFontStyle fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] + [CLSCompliant(false)] + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES31.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, OpenTK.Graphics.ES31.PathFontStyle fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -46832,7 +57311,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES31.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, OpenTK.Graphics.ES31.PathFontStyle fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -46848,7 +57327,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES31.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, OpenTK.Graphics.ES31.PathFontStyle fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -46864,7 +57343,9 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES31.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, OpenTK.Graphics.ES31.PathFontStyle fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46876,9 +57357,76 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, OpenTK.Graphics.ES31.All fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] + [CLSCompliant(false)] + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, OpenTK.Graphics.ES31.All fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] + [CLSCompliant(false)] + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, OpenTK.Graphics.ES31.All fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] + [CLSCompliant(false)] + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, OpenTK.Graphics.ES31.All fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] + [CLSCompliant(false)] + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, OpenTK.Graphics.ES31.All fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -46894,7 +57442,21 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES31.PathFontTarget fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, OpenTK.Graphics.ES31.PathFontStyle fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] + [CLSCompliant(false)] + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES31.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, OpenTK.Graphics.ES31.PathFontStyle fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -46910,7 +57472,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES31.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, OpenTK.Graphics.ES31.PathFontStyle fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -46926,7 +57488,23 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES31.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, OpenTK.Graphics.ES31.PathFontStyle fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] + [CLSCompliant(false)] + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES31.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, OpenTK.Graphics.ES31.PathFontStyle fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -46941,9 +57519,10 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, OpenTK.Graphics.ES31.All fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46956,9 +57535,67 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, OpenTK.Graphics.ES31.All fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + where T2 : struct + where T6 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// [length: COMPSIZE(numGlyphs,type,charcodes)] + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] + [CLSCompliant(false)] + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, OpenTK.Graphics.ES31.All fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + where T2 : struct + where T6 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// [length: COMPSIZE(numGlyphs,type,charcodes)] + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] + [CLSCompliant(false)] + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, OpenTK.Graphics.ES31.All fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + where T2 : struct + where T6 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// [length: COMPSIZE(numGlyphs,type,charcodes)] + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] + [CLSCompliant(false)] + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, OpenTK.Graphics.ES31.All fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -46976,7 +57613,22 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES31.PathFontTarget fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, OpenTK.Graphics.ES31.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.PathElementType type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES31.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// [length: COMPSIZE(numGlyphs,type,charcodes)] + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] + [CLSCompliant(false)] + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES31.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, OpenTK.Graphics.ES31.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.PathElementType type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.ES31.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -46994,7 +57646,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES31.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, OpenTK.Graphics.ES31.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.PathElementType type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.ES31.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -47012,7 +57664,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES31.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, OpenTK.Graphics.ES31.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.PathElementType type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.ES31.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -47030,7 +57682,10 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES31.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, OpenTK.Graphics.ES31.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.PathElementType type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.ES31.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + where T2 : struct + where T6 : struct + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47043,9 +57698,83 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, OpenTK.Graphics.ES31.All fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// [length: COMPSIZE(numGlyphs,type,charcodes)] + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] + [CLSCompliant(false)] + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, OpenTK.Graphics.ES31.All fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + where T2 : struct + where T6 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// [length: COMPSIZE(numGlyphs,type,charcodes)] + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] + [CLSCompliant(false)] + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, OpenTK.Graphics.ES31.All fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + where T2 : struct + where T6 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// [length: COMPSIZE(numGlyphs,type,charcodes)] + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] + [CLSCompliant(false)] + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, OpenTK.Graphics.ES31.All fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + where T2 : struct + where T6 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// [length: COMPSIZE(numGlyphs,type,charcodes)] + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] + [CLSCompliant(false)] + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, OpenTK.Graphics.ES31.All fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -47063,7 +57792,22 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES31.PathFontTarget fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, OpenTK.Graphics.ES31.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.PathElementType type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES31.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// [length: COMPSIZE(numGlyphs,type,charcodes)] + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] + [CLSCompliant(false)] + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES31.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, OpenTK.Graphics.ES31.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.PathElementType type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.ES31.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -47081,7 +57825,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES31.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, OpenTK.Graphics.ES31.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.PathElementType type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.ES31.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -47099,7 +57843,25 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES31.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, OpenTK.Graphics.ES31.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.PathElementType type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.ES31.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + where T2 : struct + where T6 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(fontTarget,fontName)] + /// + /// + /// + /// [length: COMPSIZE(numGlyphs,type,charcodes)] + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] + [CLSCompliant(false)] + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES31.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, OpenTK.Graphics.ES31.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.PathElementType type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.ES31.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -47420,6 +58182,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfNV")] [CLSCompliant(false)] public static void PathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, Single value) { throw new BindingsNotRewrittenException(); } @@ -47430,12 +58193,30 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfNV")] [CLSCompliant(false)] + public static void PathParameter(Int32 path, OpenTK.Graphics.ES31.PathParameter pname, Single value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfNV")] + [CLSCompliant(false)] public static void PathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, Single value) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfNV")] + [CLSCompliant(false)] + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES31.PathParameter pname, Single value) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] public static void PathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } @@ -47444,6 +58225,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } @@ -47454,7 +58236,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.ES31.PathParameter pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47462,12 +58244,47 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] + public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.ES31.PathParameter pname, [CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] + [CLSCompliant(false)] + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] + [CLSCompliant(false)] public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] + [CLSCompliant(false)] + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES31.PathParameter pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] + [CLSCompliant(false)] + public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.ES31.PathParameter pname, [CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameteriNV")] [CLSCompliant(false)] public static void PathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } @@ -47478,12 +58295,30 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameteriNV")] [CLSCompliant(false)] + public static void PathParameter(Int32 path, OpenTK.Graphics.ES31.PathParameter pname, Int32 value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameteriNV")] + [CLSCompliant(false)] public static void PathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameteriNV")] + [CLSCompliant(false)] + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES31.PathParameter pname, Int32 value) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] public static void PathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } @@ -47492,6 +58327,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } @@ -47502,7 +58338,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.ES31.PathParameter pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47510,8 +58346,42 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] + public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.ES31.PathParameter pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] + [CLSCompliant(false)] + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] + [CLSCompliant(false)] public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] + [CLSCompliant(false)] + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES31.PathParameter pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] + [CLSCompliant(false)] + public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.ES31.PathParameter pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// @@ -47557,6 +58427,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: length] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.ES31.All format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new BindingsNotRewrittenException(); } @@ -47566,6 +58437,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: length] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.ES31.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] pathString) @@ -47577,6 +58449,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: length] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.ES31.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] pathString) @@ -47588,6 +58461,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: length] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.ES31.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] pathString) @@ -47599,6 +58473,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: length] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.ES31.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 pathString) @@ -47612,6 +58487,60 @@ namespace OpenTK.Graphics.ES31 /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] + public static void PathString(Int32 path, OpenTK.Graphics.ES31.PathStringFormat format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: length] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] + [CLSCompliant(false)] + public static void PathString(Int32 path, OpenTK.Graphics.ES31.PathStringFormat format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] pathString) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: length] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] + [CLSCompliant(false)] + public static void PathString(Int32 path, OpenTK.Graphics.ES31.PathStringFormat format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] pathString) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: length] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] + [CLSCompliant(false)] + public static void PathString(Int32 path, OpenTK.Graphics.ES31.PathStringFormat format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] pathString) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: length] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] + [CLSCompliant(false)] + public static void PathString(Int32 path, OpenTK.Graphics.ES31.PathStringFormat format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 pathString) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: length] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] + [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.ES31.All format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] @@ -47619,6 +58548,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: length] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.ES31.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] pathString) @@ -47630,6 +58560,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: length] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.ES31.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] pathString) @@ -47641,6 +58572,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: length] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.ES31.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] pathString) @@ -47652,12 +58584,66 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: length] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.ES31.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 pathString) where T3 : struct { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: length] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] + [CLSCompliant(false)] + public static void PathString(UInt32 path, OpenTK.Graphics.ES31.PathStringFormat format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: length] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] + [CLSCompliant(false)] + public static void PathString(UInt32 path, OpenTK.Graphics.ES31.PathStringFormat format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] pathString) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: length] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] + [CLSCompliant(false)] + public static void PathString(UInt32 path, OpenTK.Graphics.ES31.PathStringFormat format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] pathString) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: length] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] + [CLSCompliant(false)] + public static void PathString(UInt32 path, OpenTK.Graphics.ES31.PathStringFormat format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] pathString) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: length] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] + [CLSCompliant(false)] + public static void PathString(UInt32 path, OpenTK.Graphics.ES31.PathStringFormat format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 pathString) + where T3 : struct + { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// @@ -48217,6 +59203,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(genMode,components)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] public static void PathTexGen(OpenTK.Graphics.ES31.All texCoordSet, OpenTK.Graphics.ES31.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single[] coeffs) { throw new BindingsNotRewrittenException(); } @@ -48226,6 +59213,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(genMode,components)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] public static void PathTexGen(OpenTK.Graphics.ES31.All texCoordSet, OpenTK.Graphics.ES31.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] ref Single coeffs) { throw new BindingsNotRewrittenException(); } @@ -48235,10 +59223,38 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(genMode,components)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] public static unsafe void PathTexGen(OpenTK.Graphics.ES31.All texCoordSet, OpenTK.Graphics.ES31.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single* coeffs) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(genMode,components)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] + [CLSCompliant(false)] + public static void PathTexGen(OpenTK.Graphics.ES31.PathColor texCoordSet, OpenTK.Graphics.ES31.PathGenMode genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single[] coeffs) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(genMode,components)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] + [CLSCompliant(false)] + public static void PathTexGen(OpenTK.Graphics.ES31.PathColor texCoordSet, OpenTK.Graphics.ES31.PathGenMode genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] ref Single coeffs) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(genMode,components)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] + [CLSCompliant(false)] + public static unsafe void PathTexGen(OpenTK.Graphics.ES31.PathColor texCoordSet, OpenTK.Graphics.ES31.PathGenMode genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single* coeffs) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// @@ -49403,9 +60419,31 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the height of the renderbuffer, in pixels. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleNV")] public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_framebuffer_multisample] + /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image + /// + /// + /// Specifies a binding to which the target of the allocation and must be Renderbuffer. + /// + /// + /// Specifies the number of samples to be used for the renderbuffer object's storage. + /// + /// + /// Specifies the internal format to use for the renderbuffer object's image. + /// + /// + /// Specifies the width of the renderbuffer, in pixels. + /// + /// + /// Specifies the height of the renderbuffer, in pixels. + /// + [AutoGenerated(Category = "NV_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleNV")] + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES31.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_sample_locations] [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glResolveDepthValuesNV")] public static void ResolveDepthValues() { throw new BindingsNotRewrittenException(); } @@ -49675,6 +60713,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } @@ -49688,6 +60727,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } @@ -49701,6 +60741,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } @@ -49714,6 +60755,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } @@ -49727,6 +60769,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } @@ -49740,6 +60783,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } @@ -49753,6 +60797,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -49768,6 +60813,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -49783,6 +60829,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -49798,6 +60845,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -49813,6 +60861,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -49828,6 +60877,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -49843,6 +60893,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -49858,6 +60909,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -49873,6 +60925,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -49888,6 +60941,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -49903,6 +60957,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -49918,6 +60973,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -49933,6 +60989,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -49948,6 +61005,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -49963,6 +61021,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -49978,6 +61037,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -49993,6 +61053,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -50008,6 +61069,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -50023,6 +61085,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -50038,6 +61101,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -50053,6 +61117,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -50068,6 +61133,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -50083,6 +61149,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -50098,16 +61165,456 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathNV")] [CLSCompliant(false)] public static void StencilFillPath(Int32 path, OpenTK.Graphics.ES31.All fillMode, Int32 mask) { throw new BindingsNotRewrittenException(); } @@ -50118,8 +61625,25 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathNV")] [CLSCompliant(false)] + public static void StencilFillPath(Int32 path, OpenTK.Graphics.ES31.PathFillMode fillMode, Int32 mask) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathNV")] + [CLSCompliant(false)] public static void StencilFillPath(UInt32 path, OpenTK.Graphics.ES31.All fillMode, UInt32 mask) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathNV")] + [CLSCompliant(false)] + public static void StencilFillPath(UInt32 path, OpenTK.Graphics.ES31.PathFillMode fillMode, UInt32 mask) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// @@ -50129,6 +61653,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } @@ -50142,6 +61667,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } @@ -50155,6 +61681,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } @@ -50168,6 +61695,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } @@ -50181,6 +61709,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } @@ -50194,6 +61723,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } @@ -50207,6 +61737,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -50222,6 +61753,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -50237,6 +61769,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -50252,6 +61785,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -50267,6 +61801,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -50282,6 +61817,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -50297,6 +61833,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -50312,6 +61849,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -50327,6 +61865,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -50342,6 +61881,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -50357,6 +61897,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -50372,6 +61913,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -50387,6 +61929,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -50402,6 +61945,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -50417,6 +61961,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -50432,6 +61977,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -50447,6 +61993,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -50462,6 +62009,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -50477,6 +62025,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -50492,6 +62041,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -50507,6 +62057,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) @@ -50522,6 +62073,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) @@ -50537,6 +62089,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) @@ -50552,12 +62105,451 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(numPaths,transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// + /// + /// [length: COMPSIZE(numPaths,transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] + [CLSCompliant(false)] + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] /// /// @@ -51577,6 +63569,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } @@ -51586,6 +63579,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } @@ -51595,6 +63589,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] public static unsafe void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } @@ -51606,6 +63601,34 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] + public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] + [CLSCompliant(false)] + public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] + [CLSCompliant(false)] + public static unsafe void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(transformType)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] + [CLSCompliant(false)] public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] @@ -51613,6 +63636,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } @@ -51622,10 +63646,38 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(transformType)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] public static unsafe void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] + [CLSCompliant(false)] + public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] + [CLSCompliant(false)] + public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(transformType)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] + [CLSCompliant(false)] + public static unsafe void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES31.PathTransformType transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object /// @@ -52614,6 +64666,22 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_clip_space_w_scaling] + /// + /// + /// + [AutoGenerated(Category = "NV_clip_space_w_scaling", Version = "", EntryPoint = "glViewportPositionWScaleNV")] + [CLSCompliant(false)] + public static void ViewportPositionWScale(Int32 index, Single xcoeff, Single ycoeff) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_clip_space_w_scaling] + /// + /// + /// + [AutoGenerated(Category = "NV_clip_space_w_scaling", Version = "", EntryPoint = "glViewportPositionWScaleNV")] + [CLSCompliant(false)] + public static void ViewportPositionWScale(UInt32 index, Single xcoeff, Single ycoeff) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_viewport_swizzle] /// /// @@ -52733,6 +64801,7 @@ namespace OpenTK.Graphics.ES31 /// /// specifies how source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiOES")] [CLSCompliant(false)] public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES31.All mode) { throw new BindingsNotRewrittenException(); } @@ -52748,8 +64817,35 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiOES")] [CLSCompliant(false)] + public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES31.BlendEquationModeExt mode) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_draw_buffers_indexed] + /// Specify the equation used for both the RGB blend equation and the Alpha blend equation + /// + /// + /// specifies how source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. + /// + /// + /// specifies how source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiOES")] + [CLSCompliant(false)] public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES31.All mode) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_draw_buffers_indexed] + /// Specify the equation used for both the RGB blend equation and the Alpha blend equation + /// + /// + /// specifies how source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. + /// + /// + /// specifies how source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. + /// + [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiOES")] + [CLSCompliant(false)] + public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES31.BlendEquationModeExt mode) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately /// @@ -52762,6 +64858,7 @@ namespace OpenTK.Graphics.ES31 /// /// specifies the alpha blend equation, how the alpha component of the source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiOES")] [CLSCompliant(false)] public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES31.All modeRGB, OpenTK.Graphics.ES31.All modeAlpha) { throw new BindingsNotRewrittenException(); } @@ -52780,8 +64877,41 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiOES")] [CLSCompliant(false)] + public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES31.BlendEquationModeExt modeRGB, OpenTK.Graphics.ES31.BlendEquationModeExt modeAlpha) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_draw_buffers_indexed] + /// Set the RGB blend equation and the alpha blend equation separately + /// + /// + /// specifies the RGB blend equation, how the red, green, and blue components of the source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. + /// + /// + /// specifies the RGB blend equation, how the red, green, and blue components of the source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. + /// + /// + /// specifies the alpha blend equation, how the alpha component of the source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiOES")] + [CLSCompliant(false)] public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES31.All modeRGB, OpenTK.Graphics.ES31.All modeAlpha) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_draw_buffers_indexed] + /// Set the RGB blend equation and the alpha blend equation separately + /// + /// + /// specifies the RGB blend equation, how the red, green, and blue components of the source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. + /// + /// + /// specifies the RGB blend equation, how the red, green, and blue components of the source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. + /// + /// + /// specifies the alpha blend equation, how the alpha component of the source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. + /// + [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiOES")] + [CLSCompliant(false)] + public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES31.BlendEquationModeExt modeRGB, OpenTK.Graphics.ES31.BlendEquationModeExt modeAlpha) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_draw_buffers_indexed] /// Specify pixel arithmetic /// @@ -52792,6 +64922,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies how the red, green, blue, and alpha destination blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha. ConstantColor, OneMinusConstantColor, ConstantAlpha, and OneMinusConstantAlpha. The initial value is Zero. /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciOES")] [CLSCompliant(false)] public static void BlendFunc(Int32 buf, OpenTK.Graphics.ES31.All src, OpenTK.Graphics.ES31.All dst) { throw new BindingsNotRewrittenException(); } @@ -52808,8 +64939,37 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciOES")] [CLSCompliant(false)] + public static void BlendFunc(Int32 buf, OpenTK.Graphics.ES31.BlendingFactor src, OpenTK.Graphics.ES31.BlendingFactor dst) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_draw_buffers_indexed] + /// Specify pixel arithmetic + /// + /// + /// Specifies how the red, green, blue, and alpha source blending factors are computed. The initial value is One. + /// + /// + /// 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. + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciOES")] + [CLSCompliant(false)] public static void BlendFunc(UInt32 buf, OpenTK.Graphics.ES31.All src, OpenTK.Graphics.ES31.All dst) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_draw_buffers_indexed] + /// Specify pixel arithmetic + /// + /// + /// Specifies how the red, green, blue, and alpha source blending factors are computed. The initial value is One. + /// + /// + /// 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 = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciOES")] + [CLSCompliant(false)] + public static void BlendFunc(UInt32 buf, OpenTK.Graphics.ES31.BlendingFactor src, OpenTK.Graphics.ES31.BlendingFactor dst) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_draw_buffers_indexed] /// Specify pixel arithmetic for RGB and alpha components separately /// @@ -52828,6 +64988,7 @@ namespace OpenTK.Graphics.ES31 /// /// Specified how the alpha destination blending factor is computed. The initial value is Zero. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiOES")] [CLSCompliant(false)] public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.ES31.All srcRGB, OpenTK.Graphics.ES31.All dstRGB, OpenTK.Graphics.ES31.All srcAlpha, OpenTK.Graphics.ES31.All dstAlpha) { throw new BindingsNotRewrittenException(); } @@ -52852,8 +65013,53 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiOES")] [CLSCompliant(false)] + public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.ES31.BlendingFactor srcRGB, OpenTK.Graphics.ES31.BlendingFactor dstRGB, OpenTK.Graphics.ES31.BlendingFactor srcAlpha, OpenTK.Graphics.ES31.BlendingFactor dstAlpha) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_draw_buffers_indexed] + /// Specify pixel arithmetic for RGB and alpha components separately + /// + /// + /// Specifies how the red, green, and blue blending factors are computed. The initial value is One. + /// + /// + /// Specifies how the red, green, and blue blending factors are computed. The initial value is One. + /// + /// + /// Specifies how the red, green, and blue destination blending factors are computed. The initial value is Zero. + /// + /// + /// Specified how the alpha source blending factor is computed. The initial value is One. + /// + /// + /// Specified how the alpha destination blending factor is computed. The initial value is Zero. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiOES")] + [CLSCompliant(false)] public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.ES31.All srcRGB, OpenTK.Graphics.ES31.All dstRGB, OpenTK.Graphics.ES31.All srcAlpha, OpenTK.Graphics.ES31.All dstAlpha) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_draw_buffers_indexed] + /// Specify pixel arithmetic for RGB and alpha components separately + /// + /// + /// Specifies how the red, green, and blue blending factors are computed. The initial value is One. + /// + /// + /// Specifies how the red, green, and blue blending factors are computed. The initial value is One. + /// + /// + /// Specifies how the red, green, and blue destination blending factors are computed. The initial value is Zero. + /// + /// + /// Specified how the alpha source blending factor is computed. The initial value is One. + /// + /// + /// Specified how the alpha destination blending factor is computed. The initial value is Zero. + /// + [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiOES")] + [CLSCompliant(false)] + public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.ES31.BlendingFactor srcRGB, OpenTK.Graphics.ES31.BlendingFactor dstRGB, OpenTK.Graphics.ES31.BlendingFactor srcAlpha, OpenTK.Graphics.ES31.BlendingFactor dstAlpha) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_draw_buffers_indexed] /// Enable and disable writing of frame buffer color components /// @@ -52924,6 +65130,7 @@ namespace OpenTK.Graphics.ES31 /// [length: imageSize] /// Specifies a pointer to the compressed image data in memory. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] public static void CompressedTexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } @@ -52957,6 +65164,7 @@ namespace OpenTK.Graphics.ES31 /// [length: imageSize] /// Specifies a pointer to the compressed image data in memory. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] data) @@ -52993,6 +65201,7 @@ namespace OpenTK.Graphics.ES31 /// [length: imageSize] /// Specifies a pointer to the compressed image data in memory. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] data) @@ -53029,6 +65238,7 @@ namespace OpenTK.Graphics.ES31 /// [length: imageSize] /// Specifies a pointer to the compressed image data in memory. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] data) @@ -53065,11 +65275,188 @@ namespace OpenTK.Graphics.ES31 /// [length: imageSize] /// Specifies a pointer to the compressed image data in memory. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] public static void CompressedTexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_3D] + /// Specify a three-dimensional texture image in a compressed format + /// + /// + /// Specifies the target texture. Must be Texture3D, or Texture2DArray. + /// + /// + /// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image. + /// + /// + /// Specifies the format of the compressed image data stored at address data. + /// + /// + /// Specifies the width of the texture image. + /// + /// + /// Specifies the height of the texture image. + /// + /// + /// Specifies the depth of the texture image. + /// + /// + /// This value must be 0. + /// + /// + /// Specifies the number of unsigned bytes of image data starting at the address specified by data. + /// + /// [length: imageSize] + /// Specifies a pointer to the compressed image data in memory. + /// + [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] + public static void CompressedTexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_3D] + /// Specify a three-dimensional texture image in a compressed format + /// + /// + /// Specifies the target texture. Must be Texture3D, or Texture2DArray. + /// + /// + /// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image. + /// + /// + /// Specifies the format of the compressed image data stored at address data. + /// + /// + /// Specifies the width of the texture image. + /// + /// + /// Specifies the height of the texture image. + /// + /// + /// Specifies the depth of the texture image. + /// + /// + /// This value must be 0. + /// + /// + /// Specifies the number of unsigned bytes of image data starting at the address specified by data. + /// + /// [length: imageSize] + /// Specifies a pointer to the compressed image data in memory. + /// + [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] + [CLSCompliant(false)] + public static void CompressedTexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] data) + where T8 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_3D] + /// Specify a three-dimensional texture image in a compressed format + /// + /// + /// Specifies the target texture. Must be Texture3D, or Texture2DArray. + /// + /// + /// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image. + /// + /// + /// Specifies the format of the compressed image data stored at address data. + /// + /// + /// Specifies the width of the texture image. + /// + /// + /// Specifies the height of the texture image. + /// + /// + /// Specifies the depth of the texture image. + /// + /// + /// This value must be 0. + /// + /// + /// Specifies the number of unsigned bytes of image data starting at the address specified by data. + /// + /// [length: imageSize] + /// Specifies a pointer to the compressed image data in memory. + /// + [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] + [CLSCompliant(false)] + public static void CompressedTexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] data) + where T8 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_3D] + /// Specify a three-dimensional texture image in a compressed format + /// + /// + /// Specifies the target texture. Must be Texture3D, or Texture2DArray. + /// + /// + /// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image. + /// + /// + /// Specifies the format of the compressed image data stored at address data. + /// + /// + /// Specifies the width of the texture image. + /// + /// + /// Specifies the height of the texture image. + /// + /// + /// Specifies the depth of the texture image. + /// + /// + /// This value must be 0. + /// + /// + /// Specifies the number of unsigned bytes of image data starting at the address specified by data. + /// + /// [length: imageSize] + /// Specifies a pointer to the compressed image data in memory. + /// + [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] + [CLSCompliant(false)] + public static void CompressedTexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] data) + where T8 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_3D] + /// Specify a three-dimensional texture image in a compressed format + /// + /// + /// Specifies the target texture. Must be Texture3D, or Texture2DArray. + /// + /// + /// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image. + /// + /// + /// Specifies the format of the compressed image data stored at address data. + /// + /// + /// Specifies the width of the texture image. + /// + /// + /// Specifies the height of the texture image. + /// + /// + /// Specifies the depth of the texture image. + /// + /// + /// This value must be 0. + /// + /// + /// Specifies the number of unsigned bytes of image data starting at the address specified by data. + /// + /// [length: imageSize] + /// Specifies a pointer to the compressed image data in memory. + /// + [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] + public static void CompressedTexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 data) + where T8 : struct + { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format /// @@ -53106,6 +65493,7 @@ namespace OpenTK.Graphics.ES31 /// [length: imageSize] /// Specifies a pointer to the compressed image data in memory. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } @@ -53145,6 +65533,7 @@ namespace OpenTK.Graphics.ES31 /// [length: imageSize] /// Specifies a pointer to the compressed image data in memory. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[] data) @@ -53187,6 +65576,7 @@ namespace OpenTK.Graphics.ES31 /// [length: imageSize] /// Specifies a pointer to the compressed image data in memory. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,] data) @@ -53229,6 +65619,7 @@ namespace OpenTK.Graphics.ES31 /// [length: imageSize] /// Specifies a pointer to the compressed image data in memory. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,,] data) @@ -53271,11 +65662,218 @@ namespace OpenTK.Graphics.ES31 /// [length: imageSize] /// Specifies a pointer to the compressed image data in memory. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T10 data) where T10 : struct { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_3D] + /// Specify a three-dimensional texture subimage in a compressed format + /// + /// + /// Specifies the target texture. Must be Texture3D or Texture2DArray. + /// + /// + /// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image. + /// + /// + /// Specifies a texel offset in the x direction within the texture array. + /// + /// + /// Specifies a texel offset in the y direction within the texture array. + /// + /// + /// Specifies a texel offset in the z direction within the texture array. + /// + /// + /// Specifies the width of the texture subimage. + /// + /// + /// Specifies the height of the texture subimage. + /// + /// + /// Specifies the depth of the texture subimage. + /// + /// + /// Specifies the format of the compressed image data stored at address data. + /// + /// + /// Specifies the number of unsigned bytes of image data starting at the address specified by data. + /// + /// [length: imageSize] + /// Specifies a pointer to the compressed image data in memory. + /// + [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] + public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_3D] + /// Specify a three-dimensional texture subimage in a compressed format + /// + /// + /// Specifies the target texture. Must be Texture3D or Texture2DArray. + /// + /// + /// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image. + /// + /// + /// Specifies a texel offset in the x direction within the texture array. + /// + /// + /// Specifies a texel offset in the y direction within the texture array. + /// + /// + /// Specifies a texel offset in the z direction within the texture array. + /// + /// + /// Specifies the width of the texture subimage. + /// + /// + /// Specifies the height of the texture subimage. + /// + /// + /// Specifies the depth of the texture subimage. + /// + /// + /// Specifies the format of the compressed image data stored at address data. + /// + /// + /// Specifies the number of unsigned bytes of image data starting at the address specified by data. + /// + /// [length: imageSize] + /// Specifies a pointer to the compressed image data in memory. + /// + [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] + [CLSCompliant(false)] + public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[] data) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_3D] + /// Specify a three-dimensional texture subimage in a compressed format + /// + /// + /// Specifies the target texture. Must be Texture3D or Texture2DArray. + /// + /// + /// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image. + /// + /// + /// Specifies a texel offset in the x direction within the texture array. + /// + /// + /// Specifies a texel offset in the y direction within the texture array. + /// + /// + /// Specifies a texel offset in the z direction within the texture array. + /// + /// + /// Specifies the width of the texture subimage. + /// + /// + /// Specifies the height of the texture subimage. + /// + /// + /// Specifies the depth of the texture subimage. + /// + /// + /// Specifies the format of the compressed image data stored at address data. + /// + /// + /// Specifies the number of unsigned bytes of image data starting at the address specified by data. + /// + /// [length: imageSize] + /// Specifies a pointer to the compressed image data in memory. + /// + [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] + [CLSCompliant(false)] + public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,] data) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_3D] + /// Specify a three-dimensional texture subimage in a compressed format + /// + /// + /// Specifies the target texture. Must be Texture3D or Texture2DArray. + /// + /// + /// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image. + /// + /// + /// Specifies a texel offset in the x direction within the texture array. + /// + /// + /// Specifies a texel offset in the y direction within the texture array. + /// + /// + /// Specifies a texel offset in the z direction within the texture array. + /// + /// + /// Specifies the width of the texture subimage. + /// + /// + /// Specifies the height of the texture subimage. + /// + /// + /// Specifies the depth of the texture subimage. + /// + /// + /// Specifies the format of the compressed image data stored at address data. + /// + /// + /// Specifies the number of unsigned bytes of image data starting at the address specified by data. + /// + /// [length: imageSize] + /// Specifies a pointer to the compressed image data in memory. + /// + [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] + [CLSCompliant(false)] + public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,,] data) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_3D] + /// Specify a three-dimensional texture subimage in a compressed format + /// + /// + /// Specifies the target texture. Must be Texture3D or Texture2DArray. + /// + /// + /// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image. + /// + /// + /// Specifies a texel offset in the x direction within the texture array. + /// + /// + /// Specifies a texel offset in the y direction within the texture array. + /// + /// + /// Specifies a texel offset in the z direction within the texture array. + /// + /// + /// Specifies the width of the texture subimage. + /// + /// + /// Specifies the height of the texture subimage. + /// + /// + /// Specifies the depth of the texture subimage. + /// + /// + /// Specifies the format of the compressed image data stored at address data. + /// + /// + /// Specifies the number of unsigned bytes of image data starting at the address specified by data. + /// + /// [length: imageSize] + /// Specifies a pointer to the compressed image data in memory. + /// + [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] + public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T10 data) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + /// [requires: OES_copy_image] /// Perform a raw data copy between two images /// @@ -53324,6 +65922,7 @@ namespace OpenTK.Graphics.ES31 /// /// The depth of the region to be copied. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_copy_image", Version = "", EntryPoint = "glCopyImageSubDataOES")] [CLSCompliant(false)] public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.ES31.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.ES31.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } @@ -53378,8 +65977,113 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_copy_image", Version = "", EntryPoint = "glCopyImageSubDataOES")] [CLSCompliant(false)] + public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.ES31.CopyBufferSubDataTarget srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.ES31.CopyBufferSubDataTarget dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_copy_image] + /// Perform a raw data copy between two images + /// + /// + /// The name of a texture or renderbuffer object from which to copy. + /// + /// + /// The target representing the namespace of the source name srcName. + /// + /// + /// The mipmap level to read from the source. + /// + /// + /// The X coordinate of the left edge of the souce region to copy. + /// + /// + /// The Y coordinate of the top edge of the souce region to copy. + /// + /// + /// The Z coordinate of the near edge of the souce region to copy. + /// + /// + /// The name of a texture or renderbuffer object to which to copy. + /// + /// + /// The target representing the namespace of the destination name dstName. + /// + /// + /// The X coordinate of the left edge of the destination region. + /// + /// + /// The X coordinate of the left edge of the destination region. + /// + /// + /// The Y coordinate of the top edge of the destination region. + /// + /// + /// The Z coordinate of the near edge of the destination region. + /// + /// + /// The width of the region to be copied. + /// + /// + /// The height of the region to be copied. + /// + /// + /// The depth of the region to be copied. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "OES_copy_image", Version = "", EntryPoint = "glCopyImageSubDataOES")] + [CLSCompliant(false)] public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.ES31.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.ES31.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_copy_image] + /// Perform a raw data copy between two images + /// + /// + /// The name of a texture or renderbuffer object from which to copy. + /// + /// + /// The target representing the namespace of the source name srcName. + /// + /// + /// The mipmap level to read from the source. + /// + /// + /// The X coordinate of the left edge of the souce region to copy. + /// + /// + /// The Y coordinate of the top edge of the souce region to copy. + /// + /// + /// The Z coordinate of the near edge of the souce region to copy. + /// + /// + /// The name of a texture or renderbuffer object to which to copy. + /// + /// + /// The target representing the namespace of the destination name dstName. + /// + /// + /// The X coordinate of the left edge of the destination region. + /// + /// + /// The X coordinate of the left edge of the destination region. + /// + /// + /// The Y coordinate of the top edge of the destination region. + /// + /// + /// The Z coordinate of the near edge of the destination region. + /// + /// + /// The width of the region to be copied. + /// + /// + /// The height of the region to be copied. + /// + /// + /// The depth of the region to be copied. + /// + [AutoGenerated(Category = "OES_copy_image", Version = "", EntryPoint = "glCopyImageSubDataOES")] + [CLSCompliant(false)] + public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.ES31.CopyBufferSubDataTarget srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.ES31.CopyBufferSubDataTarget dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_3D] /// Copy a three-dimensional texture subimage /// @@ -53642,6 +66346,7 @@ namespace OpenTK.Graphics.ES31 /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glDisableiOES")] [CLSCompliant(false)] public static void Disable(OpenTK.Graphics.ES31.All target, Int32 index) { throw new BindingsNotRewrittenException(); } @@ -53649,10 +66354,25 @@ namespace OpenTK.Graphics.ES31 /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glDisableiOES")] [CLSCompliant(false)] public static void Disable(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_draw_buffers_indexed|OES_viewport_array] + /// + /// + [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glDisableiOES")] + [CLSCompliant(false)] + public static void Disable(OpenTK.Graphics.ES31.EnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_draw_buffers_indexed|OES_viewport_array] + /// + /// + [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glDisableiOES")] + [CLSCompliant(false)] + public static void Disable(OpenTK.Graphics.ES31.EnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset /// @@ -54778,6 +67498,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a symbolic constant indicating a GL capability. /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glEnableiOES")] [CLSCompliant(false)] public static void Enable(OpenTK.Graphics.ES31.All target, Int32 index) { throw new BindingsNotRewrittenException(); } @@ -54789,10 +67510,33 @@ namespace OpenTK.Graphics.ES31 /// Specifies a symbolic constant indicating a GL capability. /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glEnableiOES")] [CLSCompliant(false)] public static void Enable(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_draw_buffers_indexed|OES_viewport_array] + /// Enable or disable server-side GL capabilities + /// + /// + /// Specifies a symbolic constant indicating a GL capability. + /// + /// + [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glEnableiOES")] + [CLSCompliant(false)] + public static void Enable(OpenTK.Graphics.ES31.EnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_draw_buffers_indexed|OES_viewport_array] + /// Enable or disable server-side GL capabilities + /// + /// + /// Specifies a symbolic constant indicating a GL capability. + /// + /// + [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glEnableiOES")] + [CLSCompliant(false)] + public static void Enable(OpenTK.Graphics.ES31.EnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_3D] /// /// @@ -54800,6 +67544,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glFramebufferTexture3DOES")] [CLSCompliant(false)] public static void FramebufferTexture3D(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, Int32 texture, Int32 level, Int32 zoffset) { throw new BindingsNotRewrittenException(); } @@ -54811,10 +67556,33 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glFramebufferTexture3DOES")] [CLSCompliant(false)] public static void FramebufferTexture3D(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, UInt32 texture, Int32 level, Int32 zoffset) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_3D] + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glFramebufferTexture3DOES")] + [CLSCompliant(false)] + public static void FramebufferTexture3D(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.TextureTarget textarget, Int32 texture, Int32 level, Int32 zoffset) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_3D] + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glFramebufferTexture3DOES")] + [CLSCompliant(false)] + public static void FramebufferTexture3D(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.TextureTarget textarget, UInt32 texture, Int32 level, Int32 zoffset) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object /// @@ -54982,6 +67750,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] public static void GetBufferPointer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } @@ -54989,6 +67758,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute] T2[] @params) @@ -54999,6 +67769,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute] T2[,] @params) @@ -55009,6 +67780,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute] T2[,,] @params) @@ -55019,15 +67791,63 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] public static void GetBufferPointer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute] ref T2 @params) where T2 : struct { throw new BindingsNotRewrittenException(); } + /// [requires: OES_mapbuffer] + /// + /// + /// + [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] + public static void GetBufferPointer(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.All pname, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_mapbuffer] + /// + /// + /// + [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] + [CLSCompliant(false)] + public static void GetBufferPointer(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute] T2[] @params) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_mapbuffer] + /// + /// + /// + [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] + [CLSCompliant(false)] + public static void GetBufferPointer(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute] T2[,] @params) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_mapbuffer] + /// + /// + /// + [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] + [CLSCompliant(false)] + public static void GetBufferPointer(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute] T2[,,] @params) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_mapbuffer] + /// + /// + /// + [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] + public static void GetBufferPointer(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute] ref T2 @params) + where T2 : struct + { throw new BindingsNotRewrittenException(); } + /// [requires: OES_viewport_array] /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } @@ -55036,6 +67856,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } @@ -55044,6 +67865,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] public static unsafe void GetFloat(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } @@ -55052,6 +67874,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } @@ -55060,6 +67883,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] public static void GetFloat(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } @@ -55068,10 +67892,59 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(target)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] public static unsafe void GetFloat(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_viewport_array] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] + [CLSCompliant(false)] + public static void GetFloat(OpenTK.Graphics.ES31.TypeEnum target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_viewport_array] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] + [CLSCompliant(false)] + public static void GetFloat(OpenTK.Graphics.ES31.TypeEnum target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_viewport_array] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] + [CLSCompliant(false)] + public static unsafe void GetFloat(OpenTK.Graphics.ES31.TypeEnum target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_viewport_array] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] + [CLSCompliant(false)] + public static void GetFloat(OpenTK.Graphics.ES31.TypeEnum target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_viewport_array] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] + [CLSCompliant(false)] + public static void GetFloat(OpenTK.Graphics.ES31.TypeEnum target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_viewport_array] + /// + /// + /// [length: COMPSIZE(target)] + [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] + [CLSCompliant(false)] + public static unsafe void GetFloat(OpenTK.Graphics.ES31.TypeEnum target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source /// @@ -55794,6 +68667,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } @@ -55802,6 +68676,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -55810,6 +68685,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } @@ -55820,12 +68696,38 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] + [CLSCompliant(false)] + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] + [CLSCompliant(false)] + public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] + [CLSCompliant(false)] public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } @@ -55834,6 +68736,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } @@ -55842,6 +68745,31 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] + [CLSCompliant(false)] + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] + [CLSCompliant(false)] + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] + [CLSCompliant(false)] + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivOES")] [CLSCompliant(false)] public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } @@ -55850,6 +68778,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivOES")] [CLSCompliant(false)] public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } @@ -55858,10 +68787,35 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivOES")] [CLSCompliant(false)] public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivOES")] + [CLSCompliant(false)] + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivOES")] + [CLSCompliant(false)] + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivOES")] + [CLSCompliant(false)] + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_border_clamp] /// /// @@ -55973,6 +68927,7 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the index of the capability. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glIsEnablediOES")] [CLSCompliant(false)] public static bool IsEnabled(OpenTK.Graphics.ES31.All target, Int32 index) { throw new BindingsNotRewrittenException(); } @@ -55986,10 +68941,37 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the index of the capability. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glIsEnablediOES")] [CLSCompliant(false)] public static bool IsEnabled(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_draw_buffers_indexed|OES_viewport_array] + /// Test whether a capability is enabled + /// + /// + /// Specifies a symbolic constant indicating a GL capability. + /// + /// + /// Specifies the index of the capability. + /// + [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glIsEnablediOES")] + [CLSCompliant(false)] + public static bool IsEnabled(OpenTK.Graphics.ES31.EnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_draw_buffers_indexed|OES_viewport_array] + /// Test whether a capability is enabled + /// + /// + /// Specifies a symbolic constant indicating a GL capability. + /// + /// + /// Specifies the index of the capability. + /// + [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glIsEnablediOES")] + [CLSCompliant(false)] + public static bool IsEnabled(OpenTK.Graphics.ES31.EnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_vertex_array_object] /// Determine if a name corresponds to a vertex array object /// @@ -56019,9 +69001,22 @@ namespace OpenTK.Graphics.ES31 /// /// For glMapBuffer only, specifies the access policy, indicating whether it will be possible to read from, write to, or both read from and write to the buffer object's mapped data store. The symbolic constant must be ReadOnly, WriteOnly, or ReadWrite. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glMapBufferOES")] public static IntPtr MapBuffer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All access) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_mapbuffer] + /// Map a buffer object's data store + /// + /// + /// Specifies the target buffer object being mapped. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer or UniformBuffer. + /// + /// + /// For glMapBuffer only, specifies the access policy, indicating whether it will be possible to read from, write to, or both read from and write to the buffer object's mapped data store. The symbolic constant must be ReadOnly, WriteOnly, or ReadWrite. + /// + [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glMapBufferOES")] + public static IntPtr MapBuffer(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.BufferAccessArb access) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_sample_shading] /// Specifies minimum rate at which sample shaing takes place /// @@ -56040,9 +69035,22 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the new value for the parameter given by pname. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_tessellation_shader", Version = "", EntryPoint = "glPatchParameteriOES")] public static void PatchParameter(OpenTK.Graphics.ES31.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_tessellation_shader] + /// Specifies the parameters for patch primitives + /// + /// + /// Specifies the name of the parameter to set. The symbolc constants PatchVertices, PatchDefaultOuterLevel, and PatchDefaultInnerLevel are accepted. + /// + /// + /// Specifies the new value for the parameter given by pname. + /// + [AutoGenerated(Category = "OES_tessellation_shader", Version = "", EntryPoint = "glPatchParameteriOES")] + public static void PatchParameter(OpenTK.Graphics.ES31.PatchParameterName pname, Int32 value) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_primitive_bounding_box] /// /// @@ -56265,6 +69273,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } @@ -56273,6 +69282,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } @@ -56281,6 +69291,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } @@ -56291,12 +69302,38 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] + [CLSCompliant(false)] + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] + [CLSCompliant(false)] + public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] + [CLSCompliant(false)] public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } @@ -56305,6 +69342,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } @@ -56313,6 +69351,31 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] + [CLSCompliant(false)] + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] + [CLSCompliant(false)] + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] + [CLSCompliant(false)] + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivOES")] [CLSCompliant(false)] public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new BindingsNotRewrittenException(); } @@ -56321,6 +69384,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivOES")] [CLSCompliant(false)] public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new BindingsNotRewrittenException(); } @@ -56329,10 +69393,35 @@ namespace OpenTK.Graphics.ES31 /// /// /// [length: COMPSIZE(pname)] + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivOES")] [CLSCompliant(false)] public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivOES")] + [CLSCompliant(false)] + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivOES")] + [CLSCompliant(false)] + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_border_clamp] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivOES")] + [CLSCompliant(false)] + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.SamplerParameterName pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_viewport_array] /// Define the scissor box for multiple viewports /// @@ -56599,7 +69688,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferOES")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.All internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } + public static void TexBuffer(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -56615,7 +69704,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferOES")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.All internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } + public static void TexBuffer(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.InternalFormat internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -56635,6 +69724,7 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the size of the range of the buffer's data store to attach. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] [CLSCompliant(false)] public static void TexBufferRange(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } @@ -56657,6 +69747,7 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the size of the range of the buffer's data store to attach. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] [CLSCompliant(false)] public static void TexBufferRange(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } @@ -56679,6 +69770,7 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the size of the range of the buffer's data store to attach. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] [CLSCompliant(false)] public static void TexBufferRange(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } @@ -56701,10 +69793,99 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the size of the range of the buffer's data store to attach. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] [CLSCompliant(false)] public static void TexBufferRange(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_buffer] + /// Bind a range of a buffer's data store to a buffer texture + /// + /// + /// Specifies the target of the operation and must be TextureBuffer. + /// + /// + /// Specifies the internal format of the data in the store belonging to buffer. + /// + /// + /// Specifies the name of the buffer object whose storage to attach to the active buffer texture. + /// + /// + /// Specifies the offset of the start of the range of the buffer's data store to attach. + /// + /// + /// Specifies the size of the range of the buffer's data store to attach. + /// + [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] + [CLSCompliant(false)] + public static void TexBufferRange(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_buffer] + /// Bind a range of a buffer's data store to a buffer texture + /// + /// + /// Specifies the target of the operation and must be TextureBuffer. + /// + /// + /// Specifies the internal format of the data in the store belonging to buffer. + /// + /// + /// Specifies the name of the buffer object whose storage to attach to the active buffer texture. + /// + /// + /// Specifies the offset of the start of the range of the buffer's data store to attach. + /// + /// + /// Specifies the size of the range of the buffer's data store to attach. + /// + [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] + [CLSCompliant(false)] + public static void TexBufferRange(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_buffer] + /// Bind a range of a buffer's data store to a buffer texture + /// + /// + /// Specifies the target of the operation and must be TextureBuffer. + /// + /// + /// Specifies the internal format of the data in the store belonging to buffer. + /// + /// + /// Specifies the name of the buffer object whose storage to attach to the active buffer texture. + /// + /// + /// Specifies the offset of the start of the range of the buffer's data store to attach. + /// + /// + /// Specifies the size of the range of the buffer's data store to attach. + /// + [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] + [CLSCompliant(false)] + public static void TexBufferRange(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.InternalFormat internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_buffer] + /// Bind a range of a buffer's data store to a buffer texture + /// + /// + /// Specifies the target of the operation and must be TextureBuffer. + /// + /// + /// Specifies the internal format of the data in the store belonging to buffer. + /// + /// + /// Specifies the name of the buffer object whose storage to attach to the active buffer texture. + /// + /// + /// Specifies the offset of the start of the range of the buffer's data store to attach. + /// + /// + /// Specifies the size of the range of the buffer's data store to attach. + /// + [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] + [CLSCompliant(false)] + public static void TexBufferRange(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.InternalFormat internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image /// @@ -56738,6 +69919,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(format,type,width,height,depth)] /// Specifies a pointer to the image data in memory. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] public static void TexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } @@ -56774,6 +69956,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(format,type,width,height,depth)] /// Specifies a pointer to the image data in memory. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[] pixels) @@ -56813,6 +69996,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(format,type,width,height,depth)] /// Specifies a pointer to the image data in memory. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,] pixels) @@ -56852,6 +70036,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(format,type,width,height,depth)] /// Specifies a pointer to the image data in memory. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,,] pixels) @@ -56891,11 +70076,203 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(format,type,width,height,depth)] /// Specifies a pointer to the image data in memory. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] public static void TexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T9 pixels) where T9 : struct { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_3D] + /// Specify a three-dimensional texture image + /// + /// + /// Specifies the target texture. Must be one of Texture3D or Texture2DArray. + /// + /// + /// Specifies the level-of-detail number. Level 0 is the base image level. Level is the n sup th mipmap reduction image. + /// + /// + /// Specifies the number of color components in the texture. Must be one of base internal formats given in Table 1, or one of the sized internal formats given in Table 2, below. + /// + /// + /// Specifies the width of the texture image. All implementations support 3D texture images that are at least 256 texels wide. + /// + /// + /// Specifies the height of the texture image. All implementations support 3D texture images that are at least 256 texels high. + /// + /// + /// Specifies the depth of the texture image, or the number of layers in a texture array. All implementations support 3D texture images that are at least 256 texels deep, and texture arrays that are at least 256 layers deep. + /// + /// + /// This value must be 0. + /// + /// + /// Specifies the format of the pixel data. The following symbolic values are accepted: Red, RedInteger, Rg, RgInteger, Rgb, RgbInteger, Rgba, RgbaInteger, DepthComponent, DepthStencil, LuminanceAlpha, Luminance, and Alpha, + /// + /// + /// Specifies the data type of the pixel data. The following symbolic values are accepted: UnsignedByte, Byte, UnsignedShort, Short, UnsignedInt, Int, HalfFloat, Float, UnsignedShort565, UnsignedShort4444, UnsignedShort5551, UnsignedInt2101010Rev, UnsignedInt10F11F11FRev, UnsignedInt5999Rev, UnsignedInt248, and Float32UnsignedInt248Rev. + /// + /// [length: COMPSIZE(format,type,width,height,depth)] + /// Specifies a pointer to the image data in memory. + /// + [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] + public static void TexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_3D] + /// Specify a three-dimensional texture image + /// + /// + /// Specifies the target texture. Must be one of Texture3D or Texture2DArray. + /// + /// + /// Specifies the level-of-detail number. Level 0 is the base image level. Level is the n sup th mipmap reduction image. + /// + /// + /// Specifies the number of color components in the texture. Must be one of base internal formats given in Table 1, or one of the sized internal formats given in Table 2, below. + /// + /// + /// Specifies the width of the texture image. All implementations support 3D texture images that are at least 256 texels wide. + /// + /// + /// Specifies the height of the texture image. All implementations support 3D texture images that are at least 256 texels high. + /// + /// + /// Specifies the depth of the texture image, or the number of layers in a texture array. All implementations support 3D texture images that are at least 256 texels deep, and texture arrays that are at least 256 layers deep. + /// + /// + /// This value must be 0. + /// + /// + /// Specifies the format of the pixel data. The following symbolic values are accepted: Red, RedInteger, Rg, RgInteger, Rgb, RgbInteger, Rgba, RgbaInteger, DepthComponent, DepthStencil, LuminanceAlpha, Luminance, and Alpha, + /// + /// + /// Specifies the data type of the pixel data. The following symbolic values are accepted: UnsignedByte, Byte, UnsignedShort, Short, UnsignedInt, Int, HalfFloat, Float, UnsignedShort565, UnsignedShort4444, UnsignedShort5551, UnsignedInt2101010Rev, UnsignedInt10F11F11FRev, UnsignedInt5999Rev, UnsignedInt248, and Float32UnsignedInt248Rev. + /// + /// [length: COMPSIZE(format,type,width,height,depth)] + /// Specifies a pointer to the image data in memory. + /// + [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] + [CLSCompliant(false)] + public static void TexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[] pixels) + where T9 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_3D] + /// Specify a three-dimensional texture image + /// + /// + /// Specifies the target texture. Must be one of Texture3D or Texture2DArray. + /// + /// + /// Specifies the level-of-detail number. Level 0 is the base image level. Level is the n sup th mipmap reduction image. + /// + /// + /// Specifies the number of color components in the texture. Must be one of base internal formats given in Table 1, or one of the sized internal formats given in Table 2, below. + /// + /// + /// Specifies the width of the texture image. All implementations support 3D texture images that are at least 256 texels wide. + /// + /// + /// Specifies the height of the texture image. All implementations support 3D texture images that are at least 256 texels high. + /// + /// + /// Specifies the depth of the texture image, or the number of layers in a texture array. All implementations support 3D texture images that are at least 256 texels deep, and texture arrays that are at least 256 layers deep. + /// + /// + /// This value must be 0. + /// + /// + /// Specifies the format of the pixel data. The following symbolic values are accepted: Red, RedInteger, Rg, RgInteger, Rgb, RgbInteger, Rgba, RgbaInteger, DepthComponent, DepthStencil, LuminanceAlpha, Luminance, and Alpha, + /// + /// + /// Specifies the data type of the pixel data. The following symbolic values are accepted: UnsignedByte, Byte, UnsignedShort, Short, UnsignedInt, Int, HalfFloat, Float, UnsignedShort565, UnsignedShort4444, UnsignedShort5551, UnsignedInt2101010Rev, UnsignedInt10F11F11FRev, UnsignedInt5999Rev, UnsignedInt248, and Float32UnsignedInt248Rev. + /// + /// [length: COMPSIZE(format,type,width,height,depth)] + /// Specifies a pointer to the image data in memory. + /// + [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] + [CLSCompliant(false)] + public static void TexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,] pixels) + where T9 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_3D] + /// Specify a three-dimensional texture image + /// + /// + /// Specifies the target texture. Must be one of Texture3D or Texture2DArray. + /// + /// + /// Specifies the level-of-detail number. Level 0 is the base image level. Level is the n sup th mipmap reduction image. + /// + /// + /// Specifies the number of color components in the texture. Must be one of base internal formats given in Table 1, or one of the sized internal formats given in Table 2, below. + /// + /// + /// Specifies the width of the texture image. All implementations support 3D texture images that are at least 256 texels wide. + /// + /// + /// Specifies the height of the texture image. All implementations support 3D texture images that are at least 256 texels high. + /// + /// + /// Specifies the depth of the texture image, or the number of layers in a texture array. All implementations support 3D texture images that are at least 256 texels deep, and texture arrays that are at least 256 layers deep. + /// + /// + /// This value must be 0. + /// + /// + /// Specifies the format of the pixel data. The following symbolic values are accepted: Red, RedInteger, Rg, RgInteger, Rgb, RgbInteger, Rgba, RgbaInteger, DepthComponent, DepthStencil, LuminanceAlpha, Luminance, and Alpha, + /// + /// + /// Specifies the data type of the pixel data. The following symbolic values are accepted: UnsignedByte, Byte, UnsignedShort, Short, UnsignedInt, Int, HalfFloat, Float, UnsignedShort565, UnsignedShort4444, UnsignedShort5551, UnsignedInt2101010Rev, UnsignedInt10F11F11FRev, UnsignedInt5999Rev, UnsignedInt248, and Float32UnsignedInt248Rev. + /// + /// [length: COMPSIZE(format,type,width,height,depth)] + /// Specifies a pointer to the image data in memory. + /// + [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] + [CLSCompliant(false)] + public static void TexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,,] pixels) + where T9 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_3D] + /// Specify a three-dimensional texture image + /// + /// + /// Specifies the target texture. Must be one of Texture3D or Texture2DArray. + /// + /// + /// Specifies the level-of-detail number. Level 0 is the base image level. Level is the n sup th mipmap reduction image. + /// + /// + /// Specifies the number of color components in the texture. Must be one of base internal formats given in Table 1, or one of the sized internal formats given in Table 2, below. + /// + /// + /// Specifies the width of the texture image. All implementations support 3D texture images that are at least 256 texels wide. + /// + /// + /// Specifies the height of the texture image. All implementations support 3D texture images that are at least 256 texels high. + /// + /// + /// Specifies the depth of the texture image, or the number of layers in a texture array. All implementations support 3D texture images that are at least 256 texels deep, and texture arrays that are at least 256 layers deep. + /// + /// + /// This value must be 0. + /// + /// + /// Specifies the format of the pixel data. The following symbolic values are accepted: Red, RedInteger, Rg, RgInteger, Rgb, RgbInteger, Rgba, RgbaInteger, DepthComponent, DepthStencil, LuminanceAlpha, Luminance, and Alpha, + /// + /// + /// Specifies the data type of the pixel data. The following symbolic values are accepted: UnsignedByte, Byte, UnsignedShort, Short, UnsignedInt, Int, HalfFloat, Float, UnsignedShort565, UnsignedShort4444, UnsignedShort5551, UnsignedInt2101010Rev, UnsignedInt10F11F11FRev, UnsignedInt5999Rev, UnsignedInt248, and Float32UnsignedInt248Rev. + /// + /// [length: COMPSIZE(format,type,width,height,depth)] + /// Specifies a pointer to the image data in memory. + /// + [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] + public static void TexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T9 pixels) + where T9 : struct + { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_border_clamp] /// /// @@ -57022,9 +70399,37 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies whether the image will use identical sample locations and the same number of samples for all texels in the image, and the sample locations will not depend on the internal format or size of the image. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_storage_multisample_2d_array", Version = "", EntryPoint = "glTexStorage3DMultisampleOES")] public static void TexStorage3DMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_storage_multisample_2d_array] + /// Specify storage for a two-dimensional multisample array texture + /// + /// + /// Specify the target of the operation. target must be Texture2DMultisampleArray or ProxyTexture2DMultisampleMultisample. + /// + /// + /// Specify the number of samples in the texture. + /// + /// + /// Specifies the sized internal format to be used to store texture image data. + /// + /// + /// Specifies the width of the texture, in texels. + /// + /// + /// Specifies the height of the texture, in texels. + /// + /// + /// Specifies the depth of the texture, in layers. + /// + /// + /// Specifies whether the image will use identical sample locations and the same number of samples for all texels in the image, and the sample locations will not depend on the internal format or size of the image. + /// + [AutoGenerated(Category = "OES_texture_storage_multisample_2d_array", Version = "", EntryPoint = "glTexStorage3DMultisampleOES")] + public static void TexStorage3DMultisample(OpenTK.Graphics.ES31.TextureTarget target, Int32 samples, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage /// @@ -57061,6 +70466,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(format,type,width,height,depth)] /// Specifies a pointer to the image data in memory. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] public static void TexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } @@ -57100,6 +70506,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(format,type,width,height,depth)] /// Specifies a pointer to the image data in memory. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) @@ -57142,6 +70549,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(format,type,width,height,depth)] /// Specifies a pointer to the image data in memory. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) @@ -57184,6 +70592,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(format,type,width,height,depth)] /// Specifies a pointer to the image data in memory. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) @@ -57226,11 +70635,218 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(format,type,width,height,depth)] /// Specifies a pointer to the image data in memory. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] public static void TexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_3D] + /// Specify a three-dimensional texture subimage + /// + /// + /// Specifies the target texture. Must be Texture3D or Texture2DArray. + /// + /// + /// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image. + /// + /// + /// Specifies a texel offset in the x direction within the texture array. + /// + /// + /// Specifies a texel offset in the y direction within the texture array. + /// + /// + /// Specifies a texel offset in the z direction within the texture array. + /// + /// + /// Specifies the width of the texture subimage. + /// + /// + /// Specifies the height of the texture subimage. + /// + /// + /// Specifies the depth of the texture subimage. + /// + /// + /// Specifies the format of the pixel data. The following symbolic values are accepted: Red, RedInteger, Rg, RgInteger, Rgb, RgbInteger, Rgba, RgbaInteger, DepthComponent, DepthStencil, LuminanceAlpha, Luminance, and Alpha. + /// + /// + /// Specifies the data type of the pixel data. The following symbolic values are accepted: UnsignedByte, Byte, UnsignedShort, Short, UnsignedInt, Int, HalfFloat, Float, UnsignedShort565, UnsignedShort4444, UnsignedShort5551, UnsignedInt2101010Rev, UnsignedInt10F11F11FRev, UnsignedInt5999Rev, UnsignedInt248, and Float32UnsignedInt248Rev. + /// + /// [length: COMPSIZE(format,type,width,height,depth)] + /// Specifies a pointer to the image data in memory. + /// + [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] + public static void TexSubImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_3D] + /// Specify a three-dimensional texture subimage + /// + /// + /// Specifies the target texture. Must be Texture3D or Texture2DArray. + /// + /// + /// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image. + /// + /// + /// Specifies a texel offset in the x direction within the texture array. + /// + /// + /// Specifies a texel offset in the y direction within the texture array. + /// + /// + /// Specifies a texel offset in the z direction within the texture array. + /// + /// + /// Specifies the width of the texture subimage. + /// + /// + /// Specifies the height of the texture subimage. + /// + /// + /// Specifies the depth of the texture subimage. + /// + /// + /// Specifies the format of the pixel data. The following symbolic values are accepted: Red, RedInteger, Rg, RgInteger, Rgb, RgbInteger, Rgba, RgbaInteger, DepthComponent, DepthStencil, LuminanceAlpha, Luminance, and Alpha. + /// + /// + /// Specifies the data type of the pixel data. The following symbolic values are accepted: UnsignedByte, Byte, UnsignedShort, Short, UnsignedInt, Int, HalfFloat, Float, UnsignedShort565, UnsignedShort4444, UnsignedShort5551, UnsignedInt2101010Rev, UnsignedInt10F11F11FRev, UnsignedInt5999Rev, UnsignedInt248, and Float32UnsignedInt248Rev. + /// + /// [length: COMPSIZE(format,type,width,height,depth)] + /// Specifies a pointer to the image data in memory. + /// + [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] + [CLSCompliant(false)] + public static void TexSubImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_3D] + /// Specify a three-dimensional texture subimage + /// + /// + /// Specifies the target texture. Must be Texture3D or Texture2DArray. + /// + /// + /// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image. + /// + /// + /// Specifies a texel offset in the x direction within the texture array. + /// + /// + /// Specifies a texel offset in the y direction within the texture array. + /// + /// + /// Specifies a texel offset in the z direction within the texture array. + /// + /// + /// Specifies the width of the texture subimage. + /// + /// + /// Specifies the height of the texture subimage. + /// + /// + /// Specifies the depth of the texture subimage. + /// + /// + /// Specifies the format of the pixel data. The following symbolic values are accepted: Red, RedInteger, Rg, RgInteger, Rgb, RgbInteger, Rgba, RgbaInteger, DepthComponent, DepthStencil, LuminanceAlpha, Luminance, and Alpha. + /// + /// + /// Specifies the data type of the pixel data. The following symbolic values are accepted: UnsignedByte, Byte, UnsignedShort, Short, UnsignedInt, Int, HalfFloat, Float, UnsignedShort565, UnsignedShort4444, UnsignedShort5551, UnsignedInt2101010Rev, UnsignedInt10F11F11FRev, UnsignedInt5999Rev, UnsignedInt248, and Float32UnsignedInt248Rev. + /// + /// [length: COMPSIZE(format,type,width,height,depth)] + /// Specifies a pointer to the image data in memory. + /// + [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] + [CLSCompliant(false)] + public static void TexSubImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_3D] + /// Specify a three-dimensional texture subimage + /// + /// + /// Specifies the target texture. Must be Texture3D or Texture2DArray. + /// + /// + /// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image. + /// + /// + /// Specifies a texel offset in the x direction within the texture array. + /// + /// + /// Specifies a texel offset in the y direction within the texture array. + /// + /// + /// Specifies a texel offset in the z direction within the texture array. + /// + /// + /// Specifies the width of the texture subimage. + /// + /// + /// Specifies the height of the texture subimage. + /// + /// + /// Specifies the depth of the texture subimage. + /// + /// + /// Specifies the format of the pixel data. The following symbolic values are accepted: Red, RedInteger, Rg, RgInteger, Rgb, RgbInteger, Rgba, RgbaInteger, DepthComponent, DepthStencil, LuminanceAlpha, Luminance, and Alpha. + /// + /// + /// Specifies the data type of the pixel data. The following symbolic values are accepted: UnsignedByte, Byte, UnsignedShort, Short, UnsignedInt, Int, HalfFloat, Float, UnsignedShort565, UnsignedShort4444, UnsignedShort5551, UnsignedInt2101010Rev, UnsignedInt10F11F11FRev, UnsignedInt5999Rev, UnsignedInt248, and Float32UnsignedInt248Rev. + /// + /// [length: COMPSIZE(format,type,width,height,depth)] + /// Specifies a pointer to the image data in memory. + /// + [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] + [CLSCompliant(false)] + public static void TexSubImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_3D] + /// Specify a three-dimensional texture subimage + /// + /// + /// Specifies the target texture. Must be Texture3D or Texture2DArray. + /// + /// + /// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image. + /// + /// + /// Specifies a texel offset in the x direction within the texture array. + /// + /// + /// Specifies a texel offset in the y direction within the texture array. + /// + /// + /// Specifies a texel offset in the z direction within the texture array. + /// + /// + /// Specifies the width of the texture subimage. + /// + /// + /// Specifies the height of the texture subimage. + /// + /// + /// Specifies the depth of the texture subimage. + /// + /// + /// Specifies the format of the pixel data. The following symbolic values are accepted: Red, RedInteger, Rg, RgInteger, Rgb, RgbInteger, Rgba, RgbaInteger, DepthComponent, DepthStencil, LuminanceAlpha, Luminance, and Alpha. + /// + /// + /// Specifies the data type of the pixel data. The following symbolic values are accepted: UnsignedByte, Byte, UnsignedShort, Short, UnsignedInt, Int, HalfFloat, Float, UnsignedShort565, UnsignedShort4444, UnsignedShort5551, UnsignedInt2101010Rev, UnsignedInt10F11F11FRev, UnsignedInt5999Rev, UnsignedInt248, and Float32UnsignedInt248Rev. + /// + /// [length: COMPSIZE(format,type,width,height,depth)] + /// Specifies a pointer to the image data in memory. + /// + [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] + public static void TexSubImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_view] /// Initialize a texture as a data alias of another texture's data store /// @@ -57258,6 +70874,7 @@ namespace OpenTK.Graphics.ES31 /// /// Specifies the number of layers to include in the view. /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_view", Version = "", EntryPoint = "glTextureViewOES")] [CLSCompliant(false)] public static void TextureView(Int32 texture, OpenTK.Graphics.ES31.All target, Int32 origtexture, OpenTK.Graphics.ES31.All internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new BindingsNotRewrittenException(); } @@ -57291,8 +70908,71 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_texture_view", Version = "", EntryPoint = "glTextureViewOES")] [CLSCompliant(false)] + public static void TextureView(Int32 texture, OpenTK.Graphics.ES31.TextureTarget target, Int32 origtexture, OpenTK.Graphics.ES31.InternalFormat internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new BindingsNotRewrittenException(); } + + /// [requires: OES_texture_view] + /// Initialize a texture as a data alias of another texture's data store + /// + /// + /// Specifies the texture object to be initialized as a view. + /// + /// + /// Specifies the target to be used for the newly initialized texture. + /// + /// + /// Specifies the name of a texture object of which to make a view. + /// + /// + /// Specifies the internal format for the newly created view. + /// + /// + /// Specifies lowest level of detail of the view. + /// + /// + /// Specifies the number of levels of detail to include in the view. + /// + /// + /// Specifies the index of the first layer to include in the view. + /// + /// + /// Specifies the number of layers to include in the view. + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "OES_texture_view", Version = "", EntryPoint = "glTextureViewOES")] + [CLSCompliant(false)] public static void TextureView(UInt32 texture, OpenTK.Graphics.ES31.All target, UInt32 origtexture, OpenTK.Graphics.ES31.All internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_texture_view] + /// Initialize a texture as a data alias of another texture's data store + /// + /// + /// Specifies the texture object to be initialized as a view. + /// + /// + /// Specifies the target to be used for the newly initialized texture. + /// + /// + /// Specifies the name of a texture object of which to make a view. + /// + /// + /// Specifies the internal format for the newly created view. + /// + /// + /// Specifies lowest level of detail of the view. + /// + /// + /// Specifies the number of levels of detail to include in the view. + /// + /// + /// Specifies the index of the first layer to include in the view. + /// + /// + /// Specifies the number of layers to include in the view. + /// + [AutoGenerated(Category = "OES_texture_view", Version = "", EntryPoint = "glTextureViewOES")] + [CLSCompliant(false)] + public static void TextureView(UInt32 texture, OpenTK.Graphics.ES31.TextureTarget target, UInt32 origtexture, OpenTK.Graphics.ES31.InternalFormat internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new BindingsNotRewrittenException(); } + /// [requires: OES_mapbuffer] /// [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glUnmapBufferOES")] @@ -57658,15 +71338,14 @@ namespace OpenTK.Graphics.ES31 /// [requires: QCOM_tiled_rendering] /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glEndTilingQCOM")] - [CLSCompliant(false)] - public static void EndTiling(Int32 preserveMask) { throw new BindingsNotRewrittenException(); } + public static void EndTiling(OpenTK.Graphics.ES31.All preserveMask) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_tiled_rendering] /// [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glEndTilingQCOM")] - [CLSCompliant(false)] - public static void EndTiling(UInt32 preserveMask) { throw new BindingsNotRewrittenException(); } + public static void EndTiling(OpenTK.Graphics.ES31.BufferBitQcom preserveMask) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -57846,6 +71525,7 @@ namespace OpenTK.Graphics.ES31 /// /// [length: *length] /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } @@ -57855,6 +71535,7 @@ namespace OpenTK.Graphics.ES31 /// /// [length: *length] /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } @@ -57864,6 +71545,7 @@ namespace OpenTK.Graphics.ES31 /// /// [length: *length] /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] public static unsafe void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } @@ -57875,6 +71557,34 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] + public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES31.ShaderType shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get2] + /// + /// + /// [length: *length] + /// + [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] + public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES31.ShaderType shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get2] + /// + /// + /// [length: *length] + /// + [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] + public static unsafe void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES31.ShaderType shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get2] + /// + /// + /// [length: *length] + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] @@ -57882,6 +71592,7 @@ namespace OpenTK.Graphics.ES31 /// /// [length: *length] /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } @@ -57891,10 +71602,38 @@ namespace OpenTK.Graphics.ES31 /// /// [length: *length] /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] public static unsafe void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } + /// [requires: QCOM_extended_get2] + /// + /// + /// [length: *length] + /// + [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] + public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES31.ShaderType shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get2] + /// + /// + /// [length: *length] + /// + [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] + public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES31.ShaderType shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get2] + /// + /// + /// [length: *length] + /// + [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] + [CLSCompliant(false)] + public static unsafe void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES31.ShaderType shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } + /// [requires: QCOM_extended_get2] /// [length: maxPrograms] /// @@ -58165,6 +71904,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] public static void ExtGetTexSubImage(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [OutAttribute] IntPtr texels) { throw new BindingsNotRewrittenException(); } @@ -58180,6 +71920,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] [CLSCompliant(false)] public static void ExtGetTexSubImage(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute] T10[] texels) @@ -58198,6 +71939,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] [CLSCompliant(false)] public static void ExtGetTexSubImage(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute] T10[,] texels) @@ -58216,6 +71958,7 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] [CLSCompliant(false)] public static void ExtGetTexSubImage(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute] T10[,,] texels) @@ -58234,11 +71977,98 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] public static void ExtGetTexSubImage(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute] ref T10 texels) where T10 : struct { throw new BindingsNotRewrittenException(); } + /// [requires: QCOM_extended_get] + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] + public static void ExtGetTexSubImage(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [OutAttribute] IntPtr texels) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get] + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] + [CLSCompliant(false)] + public static void ExtGetTexSubImage(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute] T10[] texels) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get] + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] + [CLSCompliant(false)] + public static void ExtGetTexSubImage(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute] T10[,] texels) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get] + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] + [CLSCompliant(false)] + public static void ExtGetTexSubImage(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute] T10[,,] texels) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_extended_get] + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] + public static void ExtGetTexSubImage(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute] ref T10 texels) + where T10 : struct + { throw new BindingsNotRewrittenException(); } + /// [requires: QCOM_extended_get] /// /// @@ -58484,9 +72314,10 @@ namespace OpenTK.Graphics.ES31 /// /// /// + [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glStartTilingQCOM")] [CLSCompliant(false)] - public static void StartTiling(Int32 x, Int32 y, Int32 width, Int32 height, Int32 preserveMask) { throw new BindingsNotRewrittenException(); } + public static void StartTiling(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All preserveMask) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_tiled_rendering] /// @@ -58496,89 +72327,136 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glStartTilingQCOM")] [CLSCompliant(false)] - public static void StartTiling(UInt32 x, UInt32 y, UInt32 width, UInt32 height, UInt32 preserveMask) { throw new BindingsNotRewrittenException(); } + public static void StartTiling(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.BufferBitQcom preserveMask) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_tiled_rendering] + /// + /// + /// + /// + /// + [Obsolete("Use strongly-typed overload instead")] + [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glStartTilingQCOM")] + [CLSCompliant(false)] + public static void StartTiling(UInt32 x, UInt32 y, UInt32 width, UInt32 height, OpenTK.Graphics.ES31.All preserveMask) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_tiled_rendering] + /// + /// + /// + /// + /// + [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glStartTilingQCOM")] + [CLSCompliant(false)] + public static void StartTiling(UInt32 x, UInt32 y, UInt32 width, UInt32 height, OpenTK.Graphics.ES31.BufferBitQcom preserveMask) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_texture_foveated] + /// + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "QCOM_texture_foveated", Version = "", EntryPoint = "glTextureFoveationParametersQCOM")] + [CLSCompliant(false)] + public static void TextureFoveationParameters(Int32 texture, Int32 layer, Int32 focalPoint, Single focalX, Single focalY, Single gainX, Single gainY, Single foveaArea) { throw new BindingsNotRewrittenException(); } + + /// [requires: QCOM_texture_foveated] + /// + /// + /// + /// + /// + /// + /// + /// + [AutoGenerated(Category = "QCOM_texture_foveated", Version = "", EntryPoint = "glTextureFoveationParametersQCOM")] + [CLSCompliant(false)] + public static void TextureFoveationParameters(UInt32 texture, UInt32 layer, UInt32 focalPoint, Single focalX, Single focalY, Single gainX, Single gainY, Single foveaArea) { throw new BindingsNotRewrittenException(); } } [Slot(9)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glBeginPerfMonitorAMD(UInt32 monitor); - [Slot(118)] + [Slot(119)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeletePerfMonitorsAMD(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* monitors); - [Slot(190)] + [Slot(191)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEndPerfMonitorAMD(UInt32 monitor); - [Slot(240)] + [Slot(241)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGenPerfMonitorsAMD(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* monitors); - [Slot(323)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPerfMonitorCounterDataAMD(UInt32 monitor, System.Int32 pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten); [Slot(324)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetPerfMonitorCounterInfoAMD(UInt32 group, UInt32 counter, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data); + private static extern unsafe void glGetPerfMonitorCounterDataAMD(UInt32 monitor, System.Int32 pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten); [Slot(325)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPerfMonitorCountersAMD(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32* counters); + private static extern void glGetPerfMonitorCounterInfoAMD(UInt32 group, UInt32 counter, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data); [Slot(326)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPerfMonitorCounterStringAMD(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr counterString); + private static extern unsafe void glGetPerfMonitorCountersAMD(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32* counters); [Slot(327)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPerfMonitorGroupsAMD([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32* groups); + private static extern unsafe void glGetPerfMonitorCounterStringAMD(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr counterString); [Slot(328)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetPerfMonitorGroupsAMD([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32* groups); + [Slot(329)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetPerfMonitorGroupStringAMD(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr groupString); - [Slot(638)] + [Slot(659)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glSelectPerfMonitorCountersAMD(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32* counterList); [Slot(49)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glBlitFramebufferANGLE(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, UInt32 mask, System.Int32 filter); - [Slot(155)] + private static extern void glBlitFramebufferANGLE(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, System.Int32 mask, System.Int32 filter); + [Slot(156)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawArraysInstancedANGLE(System.Int32 mode, Int32 first, Int32 count, Int32 primcount); - [Slot(168)] + [Slot(169)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawElementsInstancedANGLE(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount); - [Slot(385)] + [Slot(386)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetTranslatedShaderSourceANGLE(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] IntPtr source); - [Slot(613)] + [Slot(634)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glRenderbufferStorageMultisampleANGLE(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(785)] + [Slot(807)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribDivisorANGLE(UInt32 index, UInt32 divisor); [Slot(69)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern System.Int32 glClientWaitSyncAPPLE(IntPtr sync, UInt32 flags, UInt64 timeout); - [Slot(90)] + private static extern System.Int32 glClientWaitSyncAPPLE(IntPtr sync, System.Int32 flags, UInt64 timeout); + [Slot(91)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glCopyTextureLevelsAPPLE(UInt32 destinationTexture, UInt32 sourceTexture, Int32 sourceBaseLevel, Int32 sourceLevelCount); - [Slot(130)] + [Slot(131)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDeleteSyncAPPLE(IntPtr sync); - [Slot(209)] + [Slot(210)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern IntPtr glFenceSyncAPPLE(System.Int32 condition, UInt32 flags); - [Slot(287)] + [Slot(288)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetInteger64vAPPLE(System.Int32 pname, [OutAttribute] Int64* @params); - [Slot(371)] + [Slot(372)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetSyncivAPPLE(IntPtr sync, System.Int32 pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values); - [Slot(434)] + [Slot(435)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsSyncAPPLE(IntPtr sync); - [Slot(614)] + [Slot(635)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glRenderbufferStorageMultisampleAPPLE(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(619)] + [Slot(640)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glResolveMultisampleFramebufferAPPLE(); - [Slot(807)] + [Slot(830)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glWaitSyncAPPLE(IntPtr sync, UInt32 flags, UInt64 timeout); [Slot(6)] @@ -58691,888 +72569,888 @@ namespace OpenTK.Graphics.ES31 private static extern void glClearStencil(Int32 s); [Slot(68)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern System.Int32 glClientWaitSync(IntPtr sync, UInt32 flags, UInt64 timeout); - [Slot(70)] + private static extern System.Int32 glClientWaitSync(IntPtr sync, System.Int32 flags, UInt64 timeout); + [Slot(71)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glColorMask(bool red, bool green, bool blue, bool alpha); - [Slot(73)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glCompileShader(UInt32 shader); [Slot(74)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glCompressedTexImage2D(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data); + private static extern void glCompileShader(UInt32 shader); [Slot(75)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glCompressedTexImage3D(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data); - [Slot(77)] + private static extern void glCompressedTexImage2D(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data); + [Slot(76)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glCompressedTexSubImage2D(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, System.Int32 format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data); + private static extern void glCompressedTexImage3D(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data); [Slot(78)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glCompressedTexSubImage2D(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, System.Int32 format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data); + [Slot(79)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glCompressedTexSubImage3D(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, System.Int32 format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data); - [Slot(81)] + [Slot(82)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glCopyBufferSubData(System.Int32 readTarget, System.Int32 writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size); - [Slot(86)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glCopyTexImage2D(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border); [Slot(87)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glCopyTexSubImage2D(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height); + private static extern void glCopyTexImage2D(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border); [Slot(88)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glCopyTexSubImage3D(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height); - [Slot(101)] + private static extern void glCopyTexSubImage2D(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height); + [Slot(89)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int32 glCreateProgram(); + private static extern void glCopyTexSubImage3D(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height); [Slot(102)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern Int32 glCreateProgram(); + [Slot(103)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int32 glCreateShader(System.Int32 type); - [Slot(104)] + [Slot(105)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int32 glCreateShaderProgramv(System.Int32 type, Int32 count, [CountAttribute(Parameter = "count")] IntPtr strings); - [Slot(106)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glCullFace(System.Int32 mode); [Slot(107)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glCullFace(System.Int32 mode); + [Slot(108)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDebugMessageCallback(DebugProc callback, IntPtr userParam); - [Slot(109)] + [Slot(110)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDebugMessageControl(System.Int32 source, System.Int32 type, System.Int32 severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled); - [Slot(111)] + [Slot(112)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDebugMessageInsert(System.Int32 source, System.Int32 type, UInt32 id, System.Int32 severity, Int32 length, [CountAttribute(Computed = "buf,length")] IntPtr buf); - [Slot(113)] + [Slot(114)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* buffers); - [Slot(115)] + [Slot(116)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* framebuffers); - [Slot(120)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDeleteProgram(UInt32 program); [Slot(121)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glDeleteProgram(UInt32 program); + [Slot(122)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32* pipelines); - [Slot(123)] + [Slot(124)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids); - [Slot(125)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glDeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* renderbuffers); [Slot(126)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glDeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] UInt32* samplers); - [Slot(128)] + private static extern unsafe void glDeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* renderbuffers); + [Slot(127)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDeleteShader(UInt32 shader); + private static extern unsafe void glDeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] UInt32* samplers); [Slot(129)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDeleteSync(IntPtr sync); - [Slot(131)] + private static extern void glDeleteShader(UInt32 shader); + [Slot(130)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glDeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures); + private static extern void glDeleteSync(IntPtr sync); [Slot(132)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glDeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids); + private static extern unsafe void glDeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures); [Slot(133)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glDeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays); - [Slot(135)] + private static extern unsafe void glDeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids); + [Slot(134)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDepthFunc(System.Int32 func); + private static extern unsafe void glDeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays); [Slot(136)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glDepthFunc(System.Int32 func); + [Slot(137)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDepthMask(bool flag); - [Slot(139)] + [Slot(140)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDepthRangef(Single n, Single f); - [Slot(142)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDetachShader(UInt32 program, UInt32 shader); [Slot(143)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glDetachShader(UInt32 program, UInt32 shader); + [Slot(144)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDisable(System.Int32 cap); - [Slot(148)] + [Slot(149)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDisableVertexAttribArray(UInt32 index); - [Slot(150)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDispatchCompute(UInt32 num_groups_x, UInt32 num_groups_y, UInt32 num_groups_z); [Slot(151)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDispatchComputeIndirect(IntPtr indirect); + private static extern void glDispatchCompute(UInt32 num_groups_x, UInt32 num_groups_y, UInt32 num_groups_z); [Slot(152)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDrawArrays(System.Int32 mode, Int32 first, Int32 count); + private static extern void glDispatchComputeIndirect(IntPtr indirect); [Slot(153)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDrawArraysIndirect(System.Int32 mode, IntPtr indirect); + private static extern void glDrawArrays(System.Int32 mode, Int32 first, Int32 count); [Slot(154)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glDrawArraysIndirect(System.Int32 mode, IntPtr indirect); + [Slot(155)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawArraysInstanced(System.Int32 mode, Int32 first, Int32 count, Int32 instancecount); - [Slot(159)] + [Slot(160)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] System.Int32* bufs); - [Slot(163)] + [Slot(164)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawElements(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices); - [Slot(166)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDrawElementsIndirect(System.Int32 mode, System.Int32 type, IntPtr indirect); [Slot(167)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glDrawElementsIndirect(System.Int32 mode, System.Int32 type, IntPtr indirect); + [Slot(168)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawElementsInstanced(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount); - [Slot(175)] + [Slot(176)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawRangeElements(System.Int32 mode, UInt32 start, UInt32 end, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices); - [Slot(183)] + [Slot(184)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEnable(System.Int32 cap); - [Slot(188)] + [Slot(189)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEnableVertexAttribArray(UInt32 index); - [Slot(192)] + [Slot(193)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEndQuery(System.Int32 target); - [Slot(195)] + [Slot(196)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEndTransformFeedback(); - [Slot(208)] + [Slot(209)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern IntPtr glFenceSync(System.Int32 condition, UInt32 flags); - [Slot(210)] + [Slot(211)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFinish(); - [Slot(212)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFlush(); [Slot(213)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glFlush(); + [Slot(214)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFlushMappedBufferRange(System.Int32 target, IntPtr offset, IntPtr length); - [Slot(219)] + [Slot(220)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferParameteri(System.Int32 target, System.Int32 pname, Int32 param); - [Slot(221)] + [Slot(222)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferRenderbuffer(System.Int32 target, System.Int32 attachment, System.Int32 renderbuffertarget, UInt32 renderbuffer); - [Slot(223)] + [Slot(224)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferTexture2D(System.Int32 target, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level); - [Slot(229)] + [Slot(230)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferTextureLayer(System.Int32 target, System.Int32 attachment, UInt32 texture, Int32 level, Int32 layer); - [Slot(234)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFrontFace(System.Int32 mode); [Slot(235)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* buffers); + private static extern void glFrontFace(System.Int32 mode); [Slot(236)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* buffers); + [Slot(237)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glGenerateMipmap(System.Int32 target); - [Slot(238)] + [Slot(239)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* framebuffers); - [Slot(241)] + [Slot(242)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines); - [Slot(243)] + [Slot(244)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids); - [Slot(245)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers); [Slot(246)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* samplers); - [Slot(248)] + private static extern unsafe void glGenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers); + [Slot(247)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* textures); + private static extern unsafe void glGenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* samplers); [Slot(249)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids); + private static extern unsafe void glGenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* textures); [Slot(250)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays); - [Slot(252)] + private static extern unsafe void glGenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids); + [Slot(251)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] System.Int32* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr name); + private static extern unsafe void glGenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays); [Slot(253)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] System.Int32* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr name); + private static extern unsafe void glGetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] System.Int32* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr name); [Slot(254)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetActiveUniformBlockiv(UInt32 program, UInt32 uniformBlockIndex, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params); + private static extern unsafe void glGetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] System.Int32* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr name); [Slot(255)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetActiveUniformBlockName(UInt32 program, UInt32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr uniformBlockName); + private static extern unsafe void glGetActiveUniformBlockiv(UInt32 program, UInt32 uniformBlockIndex, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params); [Slot(256)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetActiveUniformsiv(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32* uniformIndices, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params); + private static extern unsafe void glGetActiveUniformBlockName(UInt32 program, UInt32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr uniformBlockName); [Slot(257)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32* shaders); + private static extern unsafe void glGetActiveUniformsiv(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32* uniformIndices, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params); [Slot(258)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int32 glGetAttribLocation(UInt32 program, IntPtr name); + private static extern unsafe void glGetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32* shaders); [Slot(259)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetBooleani_v(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data); + private static extern Int32 glGetAttribLocation(UInt32 program, IntPtr name); [Slot(260)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetBooleanv(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data); + private static extern unsafe void glGetBooleani_v(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data); [Slot(261)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetBufferParameteri64v(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params); + private static extern unsafe void glGetBooleanv(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data); [Slot(262)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetBufferParameteriv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + private static extern unsafe void glGetBufferParameteri64v(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params); [Slot(263)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetBufferParameteriv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + [Slot(264)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glGetBufferPointerv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params); - [Slot(266)] + [Slot(267)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe Int32 glGetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] System.Int32* sources, [OutAttribute, CountAttribute(Parameter = "count")] System.Int32* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] System.Int32* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr messageLog); - [Slot(270)] + [Slot(271)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern System.Int32 glGetError(); - [Slot(275)] + [Slot(276)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetFloatv(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data); - [Slot(277)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int32 glGetFragDataLocation(UInt32 program, [CountAttribute(Computed = "name")] IntPtr name); [Slot(278)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetFramebufferAttachmentParameteriv(System.Int32 target, System.Int32 attachment, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + private static extern Int32 glGetFragDataLocation(UInt32 program, [CountAttribute(Computed = "name")] IntPtr name); [Slot(279)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetFramebufferAttachmentParameteriv(System.Int32 target, System.Int32 attachment, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + [Slot(280)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetFramebufferParameteriv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(281)] + [Slot(282)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern System.Int32 glGetGraphicsResetStatus(); - [Slot(285)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetInteger64i_v(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data); [Slot(286)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetInteger64i_v(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data); + [Slot(287)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetInteger64v(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* data); - [Slot(288)] + [Slot(289)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetIntegeri_v(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data); - [Slot(290)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetIntegerv(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data); [Slot(291)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetIntegerv(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data); + [Slot(292)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetInternalformativ(System.Int32 target, System.Int32 internalformat, System.Int32 pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params); - [Slot(294)] + [Slot(295)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetMultisamplefv(System.Int32 pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* val); - [Slot(296)] + [Slot(297)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetnUniformfv(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params); - [Slot(299)] + [Slot(300)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetnUniformiv(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params); - [Slot(302)] + [Slot(303)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetnUniformuiv(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params); - [Slot(304)] + [Slot(305)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetObjectLabel(System.Int32 identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr label); - [Slot(307)] + [Slot(308)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr label); - [Slot(332)] + [Slot(333)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glGetPointerv(System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params); - [Slot(334)] + [Slot(335)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] System.Int32* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary); - [Slot(336)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr infoLog); [Slot(337)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetProgramInterfaceiv(UInt32 program, System.Int32 programInterface, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + private static extern unsafe void glGetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr infoLog); [Slot(338)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetProgramiv(UInt32 program, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + private static extern unsafe void glGetProgramInterfaceiv(UInt32 program, System.Int32 programInterface, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(339)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetProgramiv(UInt32 program, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + [Slot(340)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr infoLog); - [Slot(341)] + [Slot(342)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetProgramPipelineiv(UInt32 pipeline, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(344)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int32 glGetProgramResourceIndex(UInt32 program, System.Int32 programInterface, [CountAttribute(Computed = "name")] IntPtr name); [Slot(345)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetProgramResourceiv(UInt32 program, System.Int32 programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] System.Int32* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params); + private static extern Int32 glGetProgramResourceIndex(UInt32 program, System.Int32 programInterface, [CountAttribute(Computed = "name")] IntPtr name); [Slot(346)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int32 glGetProgramResourceLocation(UInt32 program, System.Int32 programInterface, [CountAttribute(Computed = "name")] IntPtr name); - [Slot(348)] + private static extern unsafe void glGetProgramResourceiv(UInt32 program, System.Int32 programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] System.Int32* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params); + [Slot(347)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetProgramResourceName(UInt32 program, System.Int32 programInterface, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr name); + private static extern Int32 glGetProgramResourceLocation(UInt32 program, System.Int32 programInterface, [CountAttribute(Computed = "name")] IntPtr name); [Slot(349)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetProgramResourceName(UInt32 program, System.Int32 programInterface, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr name); + [Slot(350)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetQueryiv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(354)] + [Slot(355)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetQueryObjectuiv(UInt32 id, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params); - [Slot(356)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetRenderbufferParameteriv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(357)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetRenderbufferParameteriv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + [Slot(358)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetSamplerParameterfv(UInt32 sampler, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); - [Slot(362)] + [Slot(363)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetSamplerParameteriv(UInt32 sampler, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(364)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr infoLog); [Slot(365)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetShaderiv(UInt32 shader, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + private static extern unsafe void glGetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr infoLog); [Slot(366)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetShaderPrecisionFormat(System.Int32 shadertype, System.Int32 precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32* range, [OutAttribute, CountAttribute(Count = 1)] Int32* precision); + private static extern unsafe void glGetShaderiv(UInt32 shader, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(367)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr source); + private static extern unsafe void glGetShaderPrecisionFormat(System.Int32 shadertype, System.Int32 precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32* range, [OutAttribute, CountAttribute(Count = 1)] Int32* precision); [Slot(368)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern IntPtr glGetString(System.Int32 name); + private static extern unsafe void glGetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr source); [Slot(369)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern IntPtr glGetStringi(System.Int32 name, UInt32 index); + private static extern IntPtr glGetString(System.Int32 name); [Slot(370)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetSynciv(IntPtr sync, System.Int32 pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values); - [Slot(372)] + private static extern IntPtr glGetStringi(System.Int32 name, UInt32 index); + [Slot(371)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTexLevelParameterfv(System.Int32 target, Int32 level, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); + private static extern unsafe void glGetSynciv(IntPtr sync, System.Int32 pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values); [Slot(373)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTexLevelParameteriv(System.Int32 target, Int32 level, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + private static extern unsafe void glGetTexLevelParameterfv(System.Int32 target, Int32 level, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); [Slot(374)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetTexLevelParameteriv(System.Int32 target, Int32 level, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + [Slot(375)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetTexParameterfv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); - [Slot(379)] + [Slot(380)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetTexParameteriv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(384)] + [Slot(385)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] System.Int32* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr name); - [Slot(386)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int32 glGetUniformBlockIndex(UInt32 program, [CountAttribute(Computed = "")] IntPtr uniformBlockName); [Slot(387)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetUniformfv(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params); - [Slot(389)] + private static extern Int32 glGetUniformBlockIndex(UInt32 program, [CountAttribute(Computed = "")] IntPtr uniformBlockName); + [Slot(388)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] IntPtr uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] UInt32* uniformIndices); + private static extern unsafe void glGetUniformfv(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params); [Slot(390)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetUniformiv(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params); + private static extern unsafe void glGetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] IntPtr uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] UInt32* uniformIndices); [Slot(391)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int32 glGetUniformLocation(UInt32 program, IntPtr name); + private static extern unsafe void glGetUniformiv(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params); [Slot(392)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetUniformuiv(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32* @params); - [Slot(395)] + private static extern Int32 glGetUniformLocation(UInt32 program, IntPtr name); + [Slot(393)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetVertexAttribfv(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params); + private static extern unsafe void glGetUniformuiv(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32* @params); [Slot(396)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetVertexAttribIiv(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params); + private static extern unsafe void glGetVertexAttribfv(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params); [Slot(397)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetVertexAttribIuiv(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] UInt32* @params); + private static extern unsafe void glGetVertexAttribIiv(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params); [Slot(398)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetVertexAttribiv(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params); + private static extern unsafe void glGetVertexAttribIuiv(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] UInt32* @params); [Slot(399)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetVertexAttribiv(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params); + [Slot(400)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glGetVertexAttribPointerv(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer); - [Slot(401)] + [Slot(402)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glHint(System.Int32 target, System.Int32 mode); - [Slot(410)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glInvalidateFramebuffer(System.Int32 target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] System.Int32* attachments); [Slot(411)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glInvalidateSubFramebuffer(System.Int32 target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] System.Int32* attachments, Int32 x, Int32 y, Int32 width, Int32 height); + private static extern unsafe void glInvalidateFramebuffer(System.Int32 target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] System.Int32* attachments); [Slot(412)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsBuffer(UInt32 buffer); + private static extern unsafe void glInvalidateSubFramebuffer(System.Int32 target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] System.Int32* attachments, Int32 x, Int32 y, Int32 width, Int32 height); [Slot(413)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glIsBuffer(UInt32 buffer); + [Slot(414)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsEnabled(System.Int32 cap); - [Slot(418)] + [Slot(419)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsFramebuffer(UInt32 framebuffer); - [Slot(424)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsProgram(UInt32 program); [Slot(425)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glIsProgram(UInt32 program); + [Slot(426)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsProgramPipeline(UInt32 pipeline); - [Slot(427)] + [Slot(428)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsQuery(UInt32 id); - [Slot(429)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsRenderbuffer(UInt32 renderbuffer); [Slot(430)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsSampler(UInt32 sampler); - [Slot(432)] + private static extern byte glIsRenderbuffer(UInt32 renderbuffer); + [Slot(431)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsShader(UInt32 shader); + private static extern byte glIsSampler(UInt32 sampler); [Slot(433)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glIsShader(UInt32 shader); + [Slot(434)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsSync(IntPtr sync); - [Slot(435)] + [Slot(436)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsTexture(UInt32 texture); - [Slot(437)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsTransformFeedback(UInt32 id); [Slot(438)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsVertexArray(UInt32 array); - [Slot(441)] + private static extern byte glIsTransformFeedback(UInt32 id); + [Slot(439)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glLineWidth(Single width); + private static extern byte glIsVertexArray(UInt32 array); [Slot(442)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glLineWidth(Single width); + [Slot(443)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glLinkProgram(UInt32 program); - [Slot(448)] + [Slot(449)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern IntPtr glMapBufferRange(System.Int32 target, IntPtr offset, IntPtr length, System.Int32 access); - [Slot(456)] + [Slot(477)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMemoryBarrier(UInt32 barriers); - [Slot(457)] + private static extern void glMemoryBarrier(System.Int32 barriers); + [Slot(478)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMemoryBarrierByRegion(UInt32 barriers); - [Slot(468)] + private static extern void glMemoryBarrierByRegion(System.Int32 barriers); + [Slot(489)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glObjectLabel(System.Int32 identifier, UInt32 name, Int32 length, [CountAttribute(Computed = "label,length")] IntPtr label); - [Slot(470)] + [Slot(491)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glObjectPtrLabel(IntPtr ptr, Int32 length, [CountAttribute(Computed = "label,length")] IntPtr label); - [Slot(495)] + [Slot(516)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPauseTransformFeedback(); - [Slot(496)] + [Slot(517)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPixelStorei(System.Int32 pname, Int32 param); - [Slot(499)] + [Slot(520)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPolygonOffset(Single factor, Single units); - [Slot(501)] + [Slot(522)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPopDebugGroup(); - [Slot(506)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramBinary(UInt32 program, System.Int32 binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length); - [Slot(508)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramParameteri(UInt32 program, System.Int32 pname, Int32 value); - [Slot(511)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform1f(UInt32 program, Int32 location, Single v0); - [Slot(513)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform1fv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value); - [Slot(515)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform1i(UInt32 program, Int32 location, Int32 v0); - [Slot(519)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform1iv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value); - [Slot(521)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform1ui(UInt32 program, Int32 location, UInt32 v0); - [Slot(525)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform1uiv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32* value); [Slot(527)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform2f(UInt32 program, Int32 location, Single v0, Single v1); + private static extern void glProgramBinary(UInt32 program, System.Int32 binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length); [Slot(529)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramParameteri(UInt32 program, System.Int32 pname, Int32 value); + [Slot(532)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform1f(UInt32 program, Int32 location, Single v0); + [Slot(534)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform1fv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value); + [Slot(536)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform1i(UInt32 program, Int32 location, Int32 v0); + [Slot(540)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform1iv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value); + [Slot(542)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform1ui(UInt32 program, Int32 location, UInt32 v0); + [Slot(546)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform1uiv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32* value); + [Slot(548)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform2f(UInt32 program, Int32 location, Single v0, Single v1); + [Slot(550)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform2fv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value); - [Slot(531)] + [Slot(552)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform2i(UInt32 program, Int32 location, Int32 v0, Int32 v1); - [Slot(535)] + [Slot(556)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform2iv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value); - [Slot(537)] + [Slot(558)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform2ui(UInt32 program, Int32 location, UInt32 v0, UInt32 v1); - [Slot(541)] + [Slot(562)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform2uiv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value); - [Slot(543)] + [Slot(564)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform3f(UInt32 program, Int32 location, Single v0, Single v1, Single v2); - [Slot(545)] + [Slot(566)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform3fv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value); - [Slot(547)] + [Slot(568)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform3i(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2); - [Slot(551)] + [Slot(572)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform3iv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value); - [Slot(553)] + [Slot(574)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform3ui(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2); - [Slot(557)] + [Slot(578)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform3uiv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value); - [Slot(559)] + [Slot(580)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform4f(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3); - [Slot(561)] + [Slot(582)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform4fv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value); - [Slot(563)] + [Slot(584)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform4i(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3); - [Slot(567)] + [Slot(588)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform4iv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value); - [Slot(569)] + [Slot(590)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform4ui(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3); - [Slot(573)] + [Slot(594)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform4uiv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value); - [Slot(579)] + [Slot(600)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix2fv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value); - [Slot(581)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix2x3fv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); - [Slot(583)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix2x4fv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); - [Slot(585)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix3fv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value); - [Slot(587)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix3x2fv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); - [Slot(589)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix3x4fv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); - [Slot(591)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix4fv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value); - [Slot(593)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix4x2fv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); - [Slot(595)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix4x3fv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); - [Slot(597)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPushDebugGroup(System.Int32 source, UInt32 id, Int32 length, [CountAttribute(Computed = "message,length")] IntPtr message); [Slot(602)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glReadBuffer(System.Int32 src); - [Slot(605)] + private static extern unsafe void glProgramUniformMatrix2x3fv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); + [Slot(604)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute] IntPtr data); + private static extern unsafe void glProgramUniformMatrix2x4fv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); + [Slot(606)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix3fv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value); [Slot(608)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, System.Int32 format, System.Int32 type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); + private static extern unsafe void glProgramUniformMatrix3x2fv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); [Slot(610)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glReleaseShaderCompiler(); - [Slot(611)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRenderbufferStorage(System.Int32 target, System.Int32 internalformat, Int32 width, Int32 height); + private static extern unsafe void glProgramUniformMatrix3x4fv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); [Slot(612)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRenderbufferStorageMultisample(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(620)] + private static extern unsafe void glProgramUniformMatrix4fv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value); + [Slot(614)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glResumeTransformFeedback(); - [Slot(621)] + private static extern unsafe void glProgramUniformMatrix4x2fv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); + [Slot(616)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSampleCoverage(Single value, bool invert); - [Slot(622)] + private static extern unsafe void glProgramUniformMatrix4x3fv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); + [Slot(618)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSampleMaski(UInt32 maskNumber, UInt32 mask); + private static extern void glPushDebugGroup(System.Int32 source, UInt32 id, Int32 length, [CountAttribute(Computed = "message,length")] IntPtr message); [Slot(623)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSamplerParameterf(UInt32 sampler, System.Int32 pname, Single param); - [Slot(624)] + private static extern void glReadBuffer(System.Int32 src); + [Slot(626)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glSamplerParameterfv(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* param); - [Slot(625)] + private static extern void glReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute] IntPtr data); + [Slot(629)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSamplerParameteri(UInt32 sampler, System.Int32 pname, Int32 param); - [Slot(630)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glSamplerParameteriv(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* param); + private static extern void glReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, System.Int32 format, System.Int32 type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); [Slot(631)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glScissor(Int32 x, Int32 y, Int32 width, Int32 height); + private static extern void glReleaseShaderCompiler(); + [Slot(632)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glRenderbufferStorage(System.Int32 target, System.Int32 internalformat, Int32 width, Int32 height); + [Slot(633)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glRenderbufferStorageMultisample(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height); [Slot(641)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, System.Int32 binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length); + private static extern void glResumeTransformFeedback(); [Slot(642)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] IntPtr @string, [CountAttribute(Parameter = "count")] Int32* length); - [Slot(649)] + private static extern void glSampleCoverage(Single value, bool invert); + [Slot(643)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilFunc(System.Int32 func, Int32 @ref, UInt32 mask); - [Slot(650)] + private static extern void glSampleMaski(UInt32 maskNumber, UInt32 mask); + [Slot(644)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilFuncSeparate(System.Int32 face, System.Int32 func, Int32 @ref, UInt32 mask); + private static extern void glSamplerParameterf(UInt32 sampler, System.Int32 pname, Single param); + [Slot(645)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glSamplerParameterfv(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* param); + [Slot(646)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glSamplerParameteri(UInt32 sampler, System.Int32 pname, Int32 param); [Slot(651)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilMask(UInt32 mask); + private static extern unsafe void glSamplerParameteriv(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* param); [Slot(652)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilMaskSeparate(System.Int32 face, UInt32 mask); - [Slot(653)] + private static extern void glScissor(Int32 x, Int32 y, Int32 width, Int32 height); + [Slot(662)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilOp(System.Int32 fail, System.Int32 zfail, System.Int32 zpass); - [Slot(654)] + private static extern unsafe void glShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, System.Int32 binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length); + [Slot(663)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilOpSeparate(System.Int32 face, System.Int32 sfail, System.Int32 dpfail, System.Int32 dppass); - [Slot(667)] + private static extern unsafe void glShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] IntPtr @string, [CountAttribute(Parameter = "count")] Int32* length); + [Slot(670)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexImage2D(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); - [Slot(668)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexImage3D(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels); + private static extern void glStencilFunc(System.Int32 func, Int32 @ref, UInt32 mask); [Slot(671)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexParameterf(System.Int32 target, System.Int32 pname, Single param); + private static extern void glStencilFuncSeparate(System.Int32 face, System.Int32 func, Int32 @ref, UInt32 mask); [Slot(672)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexParameterfv(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); + private static extern void glStencilMask(UInt32 mask); [Slot(673)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexParameteri(System.Int32 target, System.Int32 pname, Int32 param); - [Slot(678)] + private static extern void glStencilMaskSeparate(System.Int32 face, UInt32 mask); + [Slot(674)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexParameteriv(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); - [Slot(680)] + private static extern void glStencilOp(System.Int32 fail, System.Int32 zfail, System.Int32 zpass); + [Slot(675)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexStorage2D(System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(682)] + private static extern void glStencilOpSeparate(System.Int32 face, System.Int32 sfail, System.Int32 dpfail, System.Int32 dppass); + [Slot(688)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexStorage2DMultisample(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height, bool fixedsamplelocations); - [Slot(683)] + private static extern void glTexImage2D(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); + [Slot(689)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexStorage3D(System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth); - [Slot(691)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexSubImage2D(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); + private static extern void glTexImage3D(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels); [Slot(692)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexSubImage3D(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels); + private static extern void glTexParameterf(System.Int32 target, System.Int32 pname, Single param); + [Slot(693)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexParameterfv(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); + [Slot(694)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexParameteri(System.Int32 target, System.Int32 pname, Int32 param); + [Slot(699)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexParameteriv(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + [Slot(701)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexStorage2D(System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height); + [Slot(703)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexStorage2DMultisample(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height, bool fixedsamplelocations); [Slot(704)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] IntPtr varyings, System.Int32 bufferMode); - [Slot(706)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform1f(Int32 location, Single v0); - [Slot(707)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform1fv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single* value); - [Slot(708)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform1i(Int32 location, Int32 v0); - [Slot(711)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform1iv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32* value); + private static extern void glTexStorage3D(System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth); [Slot(712)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform1ui(Int32 location, UInt32 v0); - [Slot(715)] + private static extern void glTexSubImage2D(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); + [Slot(713)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform1uiv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32* value); - [Slot(716)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform2f(Int32 location, Single v0, Single v1); - [Slot(717)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform2fv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value); - [Slot(718)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform2i(Int32 location, Int32 v0, Int32 v1); - [Slot(721)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform2iv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value); - [Slot(722)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform2ui(Int32 location, UInt32 v0, UInt32 v1); - [Slot(725)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform2uiv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value); + private static extern void glTexSubImage3D(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels); [Slot(726)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform3f(Int32 location, Single v0, Single v1, Single v2); - [Slot(727)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform3fv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value); + private static extern void glTransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] IntPtr varyings, System.Int32 bufferMode); [Slot(728)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform3i(Int32 location, Int32 v0, Int32 v1, Int32 v2); - [Slot(731)] + private static extern void glUniform1f(Int32 location, Single v0); + [Slot(729)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform3iv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value); - [Slot(732)] + private static extern unsafe void glUniform1fv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single* value); + [Slot(730)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform3ui(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2); - [Slot(735)] + private static extern void glUniform1i(Int32 location, Int32 v0); + [Slot(733)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform3uiv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value); - [Slot(736)] + private static extern unsafe void glUniform1iv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32* value); + [Slot(734)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform4f(Int32 location, Single v0, Single v1, Single v2, Single v3); + private static extern void glUniform1ui(Int32 location, UInt32 v0); [Slot(737)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform4fv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value); + private static extern unsafe void glUniform1uiv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32* value); [Slot(738)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform4i(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3); - [Slot(741)] + private static extern void glUniform2f(Int32 location, Single v0, Single v1); + [Slot(739)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform4iv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value); - [Slot(742)] + private static extern unsafe void glUniform2fv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value); + [Slot(740)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform4ui(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3); - [Slot(745)] + private static extern void glUniform2i(Int32 location, Int32 v0, Int32 v1); + [Slot(743)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform4uiv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value); - [Slot(746)] + private static extern unsafe void glUniform2iv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value); + [Slot(744)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniformBlockBinding(UInt32 program, UInt32 uniformBlockIndex, UInt32 uniformBlockBinding); - [Slot(751)] + private static extern void glUniform2ui(Int32 location, UInt32 v0, UInt32 v1); + [Slot(747)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix2fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value); - [Slot(752)] + private static extern unsafe void glUniform2uiv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value); + [Slot(748)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix2x3fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); + private static extern void glUniform3f(Int32 location, Single v0, Single v1, Single v2); + [Slot(749)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniform3fv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value); + [Slot(750)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glUniform3i(Int32 location, Int32 v0, Int32 v1, Int32 v2); + [Slot(753)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniform3iv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value); [Slot(754)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix2x4fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); - [Slot(756)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix3fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value); + private static extern void glUniform3ui(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2); [Slot(757)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix3x2fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); + private static extern unsafe void glUniform3uiv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value); + [Slot(758)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glUniform4f(Int32 location, Single v0, Single v1, Single v2, Single v3); [Slot(759)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix3x4fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); - [Slot(761)] + private static extern unsafe void glUniform4fv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value); + [Slot(760)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix4fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value); - [Slot(762)] + private static extern void glUniform4i(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3); + [Slot(763)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix4x2fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); + private static extern unsafe void glUniform4iv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value); [Slot(764)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix4x3fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); - [Slot(766)] + private static extern void glUniform4ui(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3); + [Slot(767)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glUnmapBuffer(System.Int32 target); + private static extern unsafe void glUniform4uiv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value); [Slot(768)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUseProgram(UInt32 program); - [Slot(769)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUseProgramStages(UInt32 pipeline, UInt32 stages, UInt32 program); - [Slot(772)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glValidateProgram(UInt32 program); + private static extern void glUniformBlockBinding(UInt32 program, UInt32 uniformBlockIndex, UInt32 uniformBlockBinding); [Slot(773)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glValidateProgramPipeline(UInt32 pipeline); - [Slot(775)] + private static extern unsafe void glUniformMatrix2fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value); + [Slot(774)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttrib1f(UInt32 index, Single x); + private static extern unsafe void glUniformMatrix2x3fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); [Slot(776)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib1fv(UInt32 index, [CountAttribute(Count = 1)] Single* v); - [Slot(777)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttrib2f(UInt32 index, Single x, Single y); + private static extern unsafe void glUniformMatrix2x4fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); [Slot(778)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib2fv(UInt32 index, [CountAttribute(Count = 2)] Single* v); + private static extern unsafe void glUniformMatrix3fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value); [Slot(779)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttrib3f(UInt32 index, Single x, Single y, Single z); - [Slot(780)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib3fv(UInt32 index, [CountAttribute(Count = 3)] Single* v); + private static extern unsafe void glUniformMatrix3x2fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); [Slot(781)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttrib4f(UInt32 index, Single x, Single y, Single z, Single w); - [Slot(782)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib4fv(UInt32 index, [CountAttribute(Count = 4)] Single* v); + private static extern unsafe void glUniformMatrix3x4fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); [Slot(783)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribBinding(UInt32 attribindex, UInt32 bindingindex); + private static extern unsafe void glUniformMatrix4fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value); [Slot(784)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribDivisor(UInt32 index, UInt32 divisor); + private static extern unsafe void glUniformMatrix4x2fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); + [Slot(786)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniformMatrix4x3fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); [Slot(788)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribFormat(UInt32 attribindex, Int32 size, System.Int32 type, bool normalized, UInt32 relativeoffset); - [Slot(789)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribI4i(UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w); + private static extern byte glUnmapBuffer(System.Int32 target); [Slot(790)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribI4iv(UInt32 index, [CountAttribute(Count = 4)] Int32* v); + private static extern void glUseProgram(UInt32 program); [Slot(791)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribI4ui(UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w); - [Slot(792)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribI4uiv(UInt32 index, [CountAttribute(Count = 4)] UInt32* v); - [Slot(793)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribIFormat(UInt32 attribindex, Int32 size, System.Int32 type, UInt32 relativeoffset); + private static extern void glUseProgramStages(UInt32 pipeline, System.Int32 stages, UInt32 program); [Slot(794)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribIPointer(UInt32 index, Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer); + private static extern void glValidateProgram(UInt32 program); [Slot(795)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribPointer(UInt32 index, Int32 size, System.Int32 type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer); - [Slot(796)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexBindingDivisor(UInt32 bindingindex, UInt32 divisor); + private static extern void glValidateProgramPipeline(UInt32 pipeline); [Slot(797)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glViewport(Int32 x, Int32 y, Int32 width, Int32 height); + private static extern void glVertexAttrib1f(UInt32 index, Single x); + [Slot(798)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttrib1fv(UInt32 index, [CountAttribute(Count = 1)] Single* v); + [Slot(799)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttrib2f(UInt32 index, Single x, Single y); + [Slot(800)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttrib2fv(UInt32 index, [CountAttribute(Count = 2)] Single* v); + [Slot(801)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttrib3f(UInt32 index, Single x, Single y, Single z); + [Slot(802)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttrib3fv(UInt32 index, [CountAttribute(Count = 3)] Single* v); + [Slot(803)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttrib4f(UInt32 index, Single x, Single y, Single z, Single w); + [Slot(804)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttrib4fv(UInt32 index, [CountAttribute(Count = 4)] Single* v); + [Slot(805)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribBinding(UInt32 attribindex, UInt32 bindingindex); [Slot(806)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribDivisor(UInt32 index, UInt32 divisor); + [Slot(810)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribFormat(UInt32 attribindex, Int32 size, System.Int32 type, bool normalized, UInt32 relativeoffset); + [Slot(811)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribI4i(UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w); + [Slot(812)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttribI4iv(UInt32 index, [CountAttribute(Count = 4)] Int32* v); + [Slot(813)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribI4ui(UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w); + [Slot(814)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttribI4uiv(UInt32 index, [CountAttribute(Count = 4)] UInt32* v); + [Slot(815)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribIFormat(UInt32 attribindex, Int32 size, System.Int32 type, UInt32 relativeoffset); + [Slot(816)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribIPointer(UInt32 index, Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer); + [Slot(817)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribPointer(UInt32 index, Int32 size, System.Int32 type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer); + [Slot(818)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexBindingDivisor(UInt32 bindingindex, UInt32 divisor); + [Slot(819)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glViewport(Int32 x, Int32 y, Int32 width, Int32 height); + [Slot(829)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glWaitSync(IntPtr sync, UInt32 flags, UInt64 timeout); [Slot(0)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] @@ -59612,593 +73490,656 @@ namespace OpenTK.Graphics.ES31 private static extern void glBlendFuncSeparateiEXT(UInt32 buf, System.Int32 srcRGB, System.Int32 dstRGB, System.Int32 srcAlpha, System.Int32 dstAlpha); [Slot(52)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glBufferStorageEXT(System.Int32 target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags); + private static extern void glBufferStorageEXT(System.Int32 target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, System.Int32 flags); [Slot(53)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glBufferStorageExternalEXT(System.Int32 target, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags); + private static extern void glBufferStorageExternalEXT(System.Int32 target, IntPtr offset, IntPtr size, IntPtr clientBuffer, System.Int32 flags); [Slot(54)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glBufferStorageMemEXT(System.Int32 target, IntPtr size, UInt32 memory, UInt64 offset); [Slot(64)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glClearPixelLocalStorageuiEXT(Int32 offset, Int32 n, UInt32* values); + private static extern unsafe void glClearPixelLocalStorageuiEXT(Int32 offset, Int32 n, [CountAttribute(Parameter = "n")] UInt32* values); [Slot(66)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glClearTexImageEXT(UInt32 texture, Int32 level, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type")] IntPtr data); [Slot(67)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glClearTexSubImageEXT(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type")] IntPtr data); - [Slot(71)] + [Slot(70)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glClipControlEXT(System.Int32 origin, System.Int32 depth); + [Slot(72)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glColorMaskiEXT(UInt32 index, bool r, bool g, bool b, bool a); - [Slot(83)] + [Slot(84)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glCopyImageSubDataEXT(UInt32 srcName, System.Int32 srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, System.Int32 dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth); - [Slot(99)] + [Slot(100)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glCreateMemoryObjectsEXT(Int32 n, [OutAttribute] UInt32* memoryObjects); - [Slot(103)] + [Slot(104)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int32 glCreateShaderProgramEXT(System.Int32 type, IntPtr @string); - [Slot(105)] + [Slot(106)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int32 glCreateShaderProgramvEXT(System.Int32 type, Int32 count, [CountAttribute(Parameter = "count")] IntPtr strings); - [Slot(116)] + [Slot(117)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteMemoryObjectsEXT(Int32 n, [CountAttribute(Parameter = "n")] UInt32* memoryObjects); - [Slot(122)] + [Slot(123)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteProgramPipelinesEXT(Int32 n, [CountAttribute(Parameter = "n")] UInt32* pipelines); - [Slot(124)] + [Slot(125)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteQueriesEXT(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids); - [Slot(127)] + [Slot(128)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glDeleteSemaphoresEXT(Int32 n, [CountAttribute(Parameter = "count")] UInt32* semaphores); - [Slot(145)] + private static extern unsafe void glDeleteSemaphoresEXT(Int32 n, [CountAttribute(Parameter = "n")] UInt32* semaphores); + [Slot(146)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDisableiEXT(System.Int32 target, UInt32 index); - [Slot(149)] + [Slot(150)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDiscardFramebufferEXT(System.Int32 target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] System.Int32* attachments); - [Slot(156)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDrawArraysInstancedBaseInstanceEXT(System.Int32 mode, Int32 first, Int32 count, Int32 instancecount, UInt32 baseinstance); [Slot(157)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDrawArraysInstancedEXT(System.Int32 mode, Int32 start, Int32 count, Int32 primcount); - [Slot(160)] + private static extern void glDrawArraysInstancedBaseInstanceEXT(System.Int32 mode, Int32 first, Int32 count, Int32 instancecount, UInt32 baseinstance); + [Slot(158)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glDrawBuffersEXT(Int32 n, System.Int32* bufs); + private static extern void glDrawArraysInstancedEXT(System.Int32 mode, Int32 start, Int32 count, Int32 primcount); [Slot(161)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glDrawBuffersEXT(Int32 n, [CountAttribute(Parameter = "n")] System.Int32* bufs); + [Slot(162)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDrawBuffersIndexedEXT(Int32 n, [CountAttribute(Parameter = "n")] System.Int32* location, [CountAttribute(Parameter = "n")] Int32* indices); - [Slot(164)] + [Slot(165)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawElementsBaseVertexEXT(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex); - [Slot(169)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDrawElementsInstancedBaseInstanceEXT(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance); [Slot(170)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDrawElementsInstancedBaseVertexBaseInstanceEXT(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance); + private static extern void glDrawElementsInstancedBaseInstanceEXT(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance); [Slot(171)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glDrawElementsInstancedBaseVertexBaseInstanceEXT(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance); + [Slot(172)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawElementsInstancedBaseVertexEXT(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex); - [Slot(173)] + [Slot(174)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawElementsInstancedEXT(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount); - [Slot(176)] + [Slot(177)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawRangeElementsBaseVertexEXT(System.Int32 mode, UInt32 start, UInt32 end, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex); - [Slot(178)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDrawTransformFeedbackEXT(System.Int32 mode, UInt32 id); [Slot(179)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glDrawTransformFeedbackEXT(System.Int32 mode, UInt32 id); + [Slot(180)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawTransformFeedbackInstancedEXT(System.Int32 mode, UInt32 id, Int32 instancecount); - [Slot(185)] + [Slot(186)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEnableiEXT(System.Int32 target, UInt32 index); - [Slot(193)] + [Slot(194)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEndQueryEXT(System.Int32 target); - [Slot(214)] + [Slot(215)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFlushMappedBufferRangeEXT(System.Int32 target, IntPtr offset, IntPtr length); - [Slot(220)] + [Slot(221)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferPixelLocalStorageSizeEXT(UInt32 target, Int32 size); - [Slot(225)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFramebufferTexture2DMultisampleEXT(System.Int32 target, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level, Int32 samples); - [Slot(228)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFramebufferTextureEXT(System.Int32 target, System.Int32 attachment, UInt32 texture, Int32 level); - [Slot(242)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGenProgramPipelinesEXT(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines); - [Slot(244)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGenQueriesEXT(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids); - [Slot(247)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGenSemaphoresEXT(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* semaphores); - [Slot(276)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int32 glGetFragDataIndexEXT(UInt32 program, IntPtr name); - [Slot(280)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int32 glGetFramebufferPixelLocalStorageSizeEXT(UInt32 target); - [Slot(282)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern System.Int32 glGetGraphicsResetStatusEXT(); - [Slot(289)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetIntegeri_vEXT(System.Int32 target, UInt32 index, [OutAttribute] Int32* data); - [Slot(293)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetMemoryObjectParameterivEXT(UInt32 memoryObject, System.Int32 pname, [OutAttribute] Int32* @params); - [Slot(297)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetnUniformfvEXT(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params); - [Slot(300)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetnUniformivEXT(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params); - [Slot(305)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetObjectLabelEXT(System.Int32 type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr label); - [Slot(340)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetProgramPipelineInfoLogEXT(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr infoLog); - [Slot(342)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetProgramPipelineivEXT(UInt32 pipeline, System.Int32 pname, [OutAttribute] Int32* @params); - [Slot(347)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int32 glGetProgramResourceLocationIndexEXT(UInt32 program, System.Int32 programInterface, [CountAttribute(Computed = "name")] IntPtr name); - [Slot(350)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetQueryivEXT(System.Int32 target, System.Int32 pname, [OutAttribute] Int32* @params); - [Slot(351)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetQueryObjecti64vEXT(UInt32 id, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params); - [Slot(352)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetQueryObjectivEXT(UInt32 id, System.Int32 pname, [OutAttribute] Int32* @params); - [Slot(353)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetQueryObjectui64vEXT(UInt32 id, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params); - [Slot(355)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetQueryObjectuivEXT(UInt32 id, System.Int32 pname, [OutAttribute] UInt32* @params); - [Slot(358)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetSamplerParameterIivEXT(UInt32 sampler, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(360)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetSamplerParameterIuivEXT(UInt32 sampler, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params); - [Slot(363)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetSemaphoreParameterui64vEXT(UInt32 semaphore, System.Int32 pname, [OutAttribute] UInt64* @params); - [Slot(375)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTexParameterIivEXT(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(377)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTexParameterIuivEXT(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params); - [Slot(393)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetUnsignedBytei_vEXT(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte* data); - [Slot(394)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetUnsignedBytevEXT(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte* data); - [Slot(402)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glImportMemoryFdEXT(UInt32 memory, UInt64 size, System.Int32 handleType, Int32 fd); - [Slot(403)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glImportMemoryWin32HandleEXT(UInt32 memory, UInt64 size, System.Int32 handleType, [OutAttribute] IntPtr handle); - [Slot(404)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glImportMemoryWin32NameEXT(UInt32 memory, UInt64 size, System.Int32 handleType, IntPtr name); - [Slot(405)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glImportSemaphoreFdEXT(UInt32 semaphore, System.Int32 handleType, Int32 fd); - [Slot(406)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glImportSemaphoreWin32HandleEXT(UInt32 semaphore, System.Int32 handleType, [OutAttribute] IntPtr handle); - [Slot(407)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glImportSemaphoreWin32NameEXT(UInt32 semaphore, System.Int32 handleType, IntPtr name); - [Slot(408)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glInsertEventMarkerEXT(Int32 length, IntPtr marker); - [Slot(414)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsEnablediEXT(System.Int32 target, UInt32 index); - [Slot(420)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsMemoryObjectEXT(UInt32 memoryObject); - [Slot(426)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsProgramPipelineEXT(UInt32 pipeline); - [Slot(428)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsQueryEXT(UInt32 id); - [Slot(431)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsSemaphoreEXT(UInt32 semaphore); - [Slot(440)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glLabelObjectEXT(System.Int32 type, UInt32 @object, Int32 length, IntPtr label); - [Slot(449)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern IntPtr glMapBufferRangeEXT(System.Int32 target, IntPtr offset, IntPtr length, UInt32 access); - [Slot(458)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMemoryObjectParameterivEXT(UInt32 memoryObject, System.Int32 pname, Int32* @params); - [Slot(460)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiDrawArraysEXT(System.Int32 mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount); - [Slot(461)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiDrawArraysIndirectEXT(System.Int32 mode, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride); - [Slot(462)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiDrawElementsBaseVertexEXT(System.Int32 mode, [CountAttribute(Computed = "drawcount")] Int32* count, System.Int32 type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex); - [Slot(463)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiDrawElementsEXT(System.Int32 mode, [CountAttribute(Computed = "primcount")] Int32* count, System.Int32 type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount); - [Slot(464)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiDrawElementsIndirectEXT(System.Int32 mode, System.Int32 type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride); - [Slot(465)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedBufferStorageExternalEXT(UInt32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags); - [Slot(466)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedBufferStorageMemEXT(UInt32 buffer, IntPtr size, UInt32 memory, UInt64 offset); - [Slot(472)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPatchParameteriEXT(System.Int32 pname, Int32 value); - [Slot(500)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPolygonOffsetClampEXT(Single factor, Single units, Single clamp); - [Slot(503)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPopGroupMarkerEXT(); - [Slot(504)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPrimitiveBoundingBoxEXT(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW); - [Slot(509)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramParameteriEXT(UInt32 program, System.Int32 pname, Int32 value); - [Slot(512)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform1fEXT(UInt32 program, Int32 location, Single v0); - [Slot(514)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform1fvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value); - [Slot(518)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform1iEXT(UInt32 program, Int32 location, Int32 v0); - [Slot(520)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform1ivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value); - [Slot(524)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform1uiEXT(UInt32 program, Int32 location, UInt32 v0); - [Slot(526)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform1uivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32* value); - [Slot(528)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform2fEXT(UInt32 program, Int32 location, Single v0, Single v1); - [Slot(530)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform2fvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value); - [Slot(534)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform2iEXT(UInt32 program, Int32 location, Int32 v0, Int32 v1); - [Slot(536)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform2ivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value); - [Slot(540)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform2uiEXT(UInt32 program, Int32 location, UInt32 v0, UInt32 v1); - [Slot(542)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform2uivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value); - [Slot(544)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform3fEXT(UInt32 program, Int32 location, Single v0, Single v1, Single v2); - [Slot(546)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform3fvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value); - [Slot(550)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform3iEXT(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2); - [Slot(552)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform3ivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value); - [Slot(556)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform3uiEXT(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2); - [Slot(558)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform3uivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value); - [Slot(560)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform4fEXT(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3); - [Slot(562)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform4fvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value); - [Slot(566)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform4iEXT(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3); - [Slot(568)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform4ivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value); - [Slot(572)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform4uiEXT(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3); - [Slot(574)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform4uivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value); - [Slot(580)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix2fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value); - [Slot(582)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix2x3fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); - [Slot(584)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix2x4fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); - [Slot(586)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix3fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value); - [Slot(588)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix3x2fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); - [Slot(590)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix3x4fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); - [Slot(592)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix4fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value); - [Slot(594)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix4x2fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); - [Slot(596)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix4x3fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); - [Slot(599)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPushGroupMarkerEXT(Int32 length, IntPtr marker); - [Slot(600)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glQueryCounterEXT(UInt32 id, System.Int32 target); - [Slot(601)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRasterSamplesEXT(UInt32 samples, bool fixedsamplelocations); - [Slot(603)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glReadBufferIndexedEXT(System.Int32 src, Int32 index); - [Slot(606)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glReadnPixelsEXT(Int32 x, Int32 y, Int32 width, Int32 height, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data); - [Slot(609)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glReleaseKeyedMutexWin32EXT(UInt32 memory, UInt64 key); - [Slot(615)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRenderbufferStorageMultisampleEXT(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(626)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glSamplerParameterIivEXT(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* param); - [Slot(628)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glSamplerParameterIuivEXT(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] UInt32* param); - [Slot(639)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glSemaphoreParameterui64vEXT(UInt32 semaphore, System.Int32 pname, UInt64* @params); - [Slot(643)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glSignalSemaphoreEXT(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] System.Int32* dstLayouts); - [Slot(663)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexBufferEXT(System.Int32 target, System.Int32 internalformat, UInt32 buffer); - [Slot(665)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexBufferRangeEXT(System.Int32 target, System.Int32 internalformat, UInt32 buffer, IntPtr offset, IntPtr size); - [Slot(670)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexPageCommitmentEXT(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit); - [Slot(674)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexParameterIivEXT(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); - [Slot(676)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexParameterIuivEXT(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] UInt32* @params); - [Slot(679)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexStorage1DEXT(System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width); - [Slot(681)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexStorage2DEXT(System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(684)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexStorage3DEXT(System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth); - [Slot(686)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexStorageMem1DEXT(System.Int32 target, Int32 levels, System.Int32 internalFormat, Int32 width, UInt32 memory, UInt64 offset); - [Slot(687)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexStorageMem2DEXT(System.Int32 target, Int32 levels, System.Int32 internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset); - [Slot(688)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexStorageMem2DMultisampleEXT(System.Int32 target, Int32 samples, System.Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset); - [Slot(689)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexStorageMem3DEXT(System.Int32 target, Int32 levels, System.Int32 internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset); - [Slot(690)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexStorageMem3DMultisampleEXT(System.Int32 target, Int32 samples, System.Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset); - [Slot(694)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureStorage1DEXT(UInt32 texture, System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width); - [Slot(695)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureStorage2DEXT(UInt32 texture, System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(696)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureStorage3DEXT(UInt32 texture, System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth); - [Slot(697)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureStorageMem1DEXT(UInt32 texture, Int32 levels, System.Int32 internalFormat, Int32 width, UInt32 memory, UInt64 offset); - [Slot(698)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureStorageMem2DEXT(UInt32 texture, Int32 levels, System.Int32 internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset); - [Slot(699)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureStorageMem2DMultisampleEXT(UInt32 texture, Int32 samples, System.Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset); - [Slot(700)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureStorageMem3DEXT(UInt32 texture, Int32 levels, System.Int32 internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset); - [Slot(701)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureStorageMem3DMultisampleEXT(UInt32 texture, Int32 samples, System.Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset); - [Slot(702)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureViewEXT(UInt32 texture, System.Int32 target, UInt32 origtexture, System.Int32 internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers); - [Slot(770)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUseProgramStagesEXT(UInt32 pipeline, UInt32 stages, UInt32 program); - [Slot(771)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUseShaderProgramEXT(System.Int32 type, UInt32 program); - [Slot(774)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glValidateProgramPipelineEXT(UInt32 pipeline); - [Slot(786)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribDivisorEXT(UInt32 index, UInt32 divisor); - [Slot(805)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glWaitSemaphoreEXT(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] System.Int32* srcLayouts); - [Slot(810)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glWindowRectanglesEXT(System.Int32 mode, Int32 count, [CountAttribute(Computed = "count")] Int32* box); - [Slot(224)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFramebufferTexture2DDownsampleIMG(System.Int32 target, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level, Int32 xscale, Int32 yscale); [Slot(226)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFramebufferTexture2DMultisampleIMG(System.Int32 target, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level, Int32 samples); - [Slot(230)] + private static extern void glFramebufferTexture2DMultisampleEXT(System.Int32 target, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level, Int32 samples); + [Slot(229)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFramebufferTextureLayerDownsampleIMG(System.Int32 target, System.Int32 attachment, UInt32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale); - [Slot(380)] + private static extern void glFramebufferTextureEXT(System.Int32 target, System.Int32 attachment, UInt32 texture, Int32 level); + [Slot(243)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int64 glGetTextureHandleIMG(UInt32 texture); - [Slot(382)] + private static extern unsafe void glGenProgramPipelinesEXT(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines); + [Slot(245)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int64 glGetTextureSamplerHandleIMG(UInt32 texture, UInt32 sampler); - [Slot(575)] + private static extern unsafe void glGenQueriesEXT(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids); + [Slot(248)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniformHandleui64IMG(UInt32 program, Int32 location, UInt64 value); + private static extern unsafe void glGenSemaphoresEXT(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* semaphores); + [Slot(277)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern Int32 glGetFragDataIndexEXT(UInt32 program, IntPtr name); + [Slot(281)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern Int32 glGetFramebufferPixelLocalStorageSizeEXT(System.Int32 target); + [Slot(283)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern System.Int32 glGetGraphicsResetStatusEXT(); + [Slot(290)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetIntegeri_vEXT(System.Int32 target, UInt32 index, [OutAttribute] Int32* data); + [Slot(294)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetMemoryObjectParameterivEXT(UInt32 memoryObject, System.Int32 pname, [OutAttribute] Int32* @params); + [Slot(298)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetnUniformfvEXT(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params); + [Slot(301)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetnUniformivEXT(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params); + [Slot(306)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetObjectLabelEXT(System.Int32 type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr label); + [Slot(341)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetProgramPipelineInfoLogEXT(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr infoLog); + [Slot(343)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetProgramPipelineivEXT(UInt32 pipeline, System.Int32 pname, [OutAttribute] Int32* @params); + [Slot(348)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern Int32 glGetProgramResourceLocationIndexEXT(UInt32 program, System.Int32 programInterface, [CountAttribute(Computed = "name")] IntPtr name); + [Slot(351)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetQueryivEXT(System.Int32 target, System.Int32 pname, [OutAttribute] Int32* @params); + [Slot(352)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetQueryObjecti64vEXT(UInt32 id, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params); + [Slot(353)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetQueryObjectivEXT(UInt32 id, System.Int32 pname, [OutAttribute] Int32* @params); + [Slot(354)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetQueryObjectui64vEXT(UInt32 id, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params); + [Slot(356)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetQueryObjectuivEXT(UInt32 id, System.Int32 pname, [OutAttribute] UInt32* @params); + [Slot(359)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetSamplerParameterIivEXT(UInt32 sampler, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + [Slot(361)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetSamplerParameterIuivEXT(UInt32 sampler, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params); + [Slot(364)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetSemaphoreParameterui64vEXT(UInt32 semaphore, System.Int32 pname, [OutAttribute] UInt64* @params); + [Slot(376)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetTexParameterIivEXT(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + [Slot(378)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetTexParameterIuivEXT(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params); + [Slot(394)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetUnsignedBytei_vEXT(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte* data); + [Slot(395)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetUnsignedBytevEXT(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte* data); + [Slot(403)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glImportMemoryFdEXT(UInt32 memory, UInt64 size, System.Int32 handleType, Int32 fd); + [Slot(404)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glImportMemoryWin32HandleEXT(UInt32 memory, UInt64 size, System.Int32 handleType, [OutAttribute] IntPtr handle); + [Slot(405)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glImportMemoryWin32NameEXT(UInt32 memory, UInt64 size, System.Int32 handleType, IntPtr name); + [Slot(406)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glImportSemaphoreFdEXT(UInt32 semaphore, System.Int32 handleType, Int32 fd); + [Slot(407)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glImportSemaphoreWin32HandleEXT(UInt32 semaphore, System.Int32 handleType, [OutAttribute] IntPtr handle); + [Slot(408)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glImportSemaphoreWin32NameEXT(UInt32 semaphore, System.Int32 handleType, IntPtr name); + [Slot(409)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glInsertEventMarkerEXT(Int32 length, IntPtr marker); + [Slot(415)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glIsEnablediEXT(System.Int32 target, UInt32 index); + [Slot(421)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glIsMemoryObjectEXT(UInt32 memoryObject); + [Slot(427)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glIsProgramPipelineEXT(UInt32 pipeline); + [Slot(429)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glIsQueryEXT(UInt32 id); + [Slot(432)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glIsSemaphoreEXT(UInt32 semaphore); + [Slot(441)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glLabelObjectEXT(System.Int32 type, UInt32 @object, Int32 length, IntPtr label); + [Slot(450)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern IntPtr glMapBufferRangeEXT(System.Int32 target, IntPtr offset, IntPtr length, System.Int32 access); + [Slot(451)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixFrustumEXT(System.Int32 mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar); + [Slot(454)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMatrixLoaddEXT(System.Int32 mode, [CountAttribute(Count = 16)] Double* m); + [Slot(455)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMatrixLoadfEXT(System.Int32 mode, [CountAttribute(Count = 16)] Single* m); + [Slot(456)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixLoadIdentityEXT(System.Int32 mode); + [Slot(458)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMatrixLoadTransposedEXT(System.Int32 mode, [CountAttribute(Count = 16)] Double* m); + [Slot(459)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMatrixLoadTransposefEXT(System.Int32 mode, [CountAttribute(Count = 16)] Single* m); + [Slot(462)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMatrixMultdEXT(System.Int32 mode, [CountAttribute(Count = 16)] Double* m); + [Slot(463)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMatrixMultfEXT(System.Int32 mode, [CountAttribute(Count = 16)] Single* m); + [Slot(465)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMatrixMultTransposedEXT(System.Int32 mode, [CountAttribute(Count = 16)] Double* m); + [Slot(466)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMatrixMultTransposefEXT(System.Int32 mode, [CountAttribute(Count = 16)] Single* m); + [Slot(467)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixOrthoEXT(System.Int32 mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar); + [Slot(468)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixPopEXT(System.Int32 mode); + [Slot(469)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixPushEXT(System.Int32 mode); + [Slot(470)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixRotatedEXT(System.Int32 mode, Double angle, Double x, Double y, Double z); + [Slot(471)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixRotatefEXT(System.Int32 mode, Single angle, Single x, Single y, Single z); + [Slot(472)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixScaledEXT(System.Int32 mode, Double x, Double y, Double z); + [Slot(473)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixScalefEXT(System.Int32 mode, Single x, Single y, Single z); + [Slot(474)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixTranslatedEXT(System.Int32 mode, Double x, Double y, Double z); + [Slot(475)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixTranslatefEXT(System.Int32 mode, Single x, Single y, Single z); + [Slot(479)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMemoryObjectParameterivEXT(UInt32 memoryObject, System.Int32 pname, Int32* @params); + [Slot(481)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMultiDrawArraysEXT(System.Int32 mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount); + [Slot(482)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMultiDrawArraysIndirectEXT(System.Int32 mode, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride); + [Slot(483)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMultiDrawElementsBaseVertexEXT(System.Int32 mode, [CountAttribute(Computed = "drawcount")] Int32* count, System.Int32 type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex); + [Slot(484)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMultiDrawElementsEXT(System.Int32 mode, [CountAttribute(Computed = "primcount")] Int32* count, System.Int32 type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount); + [Slot(485)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMultiDrawElementsIndirectEXT(System.Int32 mode, System.Int32 type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride); + [Slot(486)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNamedBufferStorageExternalEXT(UInt32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, System.Int32 flags); + [Slot(487)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNamedBufferStorageMemEXT(UInt32 buffer, IntPtr size, UInt32 memory, UInt64 offset); + [Slot(493)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPatchParameteriEXT(System.Int32 pname, Int32 value); + [Slot(521)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPolygonOffsetClampEXT(Single factor, Single units, Single clamp); + [Slot(524)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPopGroupMarkerEXT(); + [Slot(525)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPrimitiveBoundingBoxEXT(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW); + [Slot(530)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramParameteriEXT(UInt32 program, System.Int32 pname, Int32 value); + [Slot(533)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform1fEXT(UInt32 program, Int32 location, Single v0); + [Slot(535)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform1fvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value); + [Slot(539)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform1iEXT(UInt32 program, Int32 location, Int32 v0); + [Slot(541)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform1ivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value); + [Slot(545)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform1uiEXT(UInt32 program, Int32 location, UInt32 v0); + [Slot(547)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform1uivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32* value); + [Slot(549)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform2fEXT(UInt32 program, Int32 location, Single v0, Single v1); + [Slot(551)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform2fvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value); + [Slot(555)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform2iEXT(UInt32 program, Int32 location, Int32 v0, Int32 v1); + [Slot(557)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform2ivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value); + [Slot(561)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform2uiEXT(UInt32 program, Int32 location, UInt32 v0, UInt32 v1); + [Slot(563)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform2uivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value); + [Slot(565)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform3fEXT(UInt32 program, Int32 location, Single v0, Single v1, Single v2); + [Slot(567)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform3fvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value); + [Slot(571)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform3iEXT(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2); + [Slot(573)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform3ivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value); [Slot(577)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform3uiEXT(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2); + [Slot(579)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform3uivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value); + [Slot(581)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform4fEXT(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3); + [Slot(583)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform4fvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value); + [Slot(587)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform4iEXT(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3); + [Slot(589)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform4ivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value); + [Slot(593)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform4uiEXT(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3); + [Slot(595)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform4uivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value); + [Slot(601)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix2fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value); + [Slot(603)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix2x3fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); + [Slot(605)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix2x4fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); + [Slot(607)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix3fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value); + [Slot(609)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix3x2fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); + [Slot(611)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix3x4fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); + [Slot(613)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix4fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value); + [Slot(615)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix4x2fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); + [Slot(617)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix4x3fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); + [Slot(620)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPushGroupMarkerEXT(Int32 length, IntPtr marker); + [Slot(621)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glQueryCounterEXT(UInt32 id, System.Int32 target); + [Slot(622)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glRasterSamplesEXT(UInt32 samples, bool fixedsamplelocations); + [Slot(624)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glReadBufferIndexedEXT(System.Int32 src, Int32 index); + [Slot(627)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glReadnPixelsEXT(Int32 x, Int32 y, Int32 width, Int32 height, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data); + [Slot(630)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glReleaseKeyedMutexWin32EXT(UInt32 memory, UInt64 key); + [Slot(636)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glRenderbufferStorageMultisampleEXT(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height); + [Slot(647)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glSamplerParameterIivEXT(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* param); + [Slot(649)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glSamplerParameterIuivEXT(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] UInt32* param); + [Slot(660)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glSemaphoreParameterui64vEXT(UInt32 semaphore, System.Int32 pname, UInt64* @params); + [Slot(664)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glSignalSemaphoreEXT(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] System.Int32* dstLayouts); + [Slot(684)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexBufferEXT(System.Int32 target, System.Int32 internalformat, UInt32 buffer); + [Slot(686)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexBufferRangeEXT(System.Int32 target, System.Int32 internalformat, UInt32 buffer, IntPtr offset, IntPtr size); + [Slot(691)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexPageCommitmentEXT(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit); + [Slot(695)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexParameterIivEXT(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + [Slot(697)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexParameterIuivEXT(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] UInt32* @params); + [Slot(700)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexStorage1DEXT(System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width); + [Slot(702)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexStorage2DEXT(System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height); + [Slot(705)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexStorage3DEXT(System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth); + [Slot(707)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexStorageMem1DEXT(System.Int32 target, Int32 levels, System.Int32 internalFormat, Int32 width, UInt32 memory, UInt64 offset); + [Slot(708)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexStorageMem2DEXT(System.Int32 target, Int32 levels, System.Int32 internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset); + [Slot(709)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexStorageMem2DMultisampleEXT(System.Int32 target, Int32 samples, System.Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset); + [Slot(710)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexStorageMem3DEXT(System.Int32 target, Int32 levels, System.Int32 internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset); + [Slot(711)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexStorageMem3DMultisampleEXT(System.Int32 target, Int32 samples, System.Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset); + [Slot(716)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureStorage1DEXT(UInt32 texture, System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width); + [Slot(717)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureStorage2DEXT(UInt32 texture, System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height); + [Slot(718)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureStorage3DEXT(UInt32 texture, System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth); + [Slot(719)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureStorageMem1DEXT(UInt32 texture, Int32 levels, System.Int32 internalFormat, Int32 width, UInt32 memory, UInt64 offset); + [Slot(720)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureStorageMem2DEXT(UInt32 texture, Int32 levels, System.Int32 internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset); + [Slot(721)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureStorageMem2DMultisampleEXT(UInt32 texture, Int32 samples, System.Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset); + [Slot(722)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureStorageMem3DEXT(UInt32 texture, Int32 levels, System.Int32 internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset); + [Slot(723)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureStorageMem3DMultisampleEXT(UInt32 texture, Int32 samples, System.Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset); + [Slot(724)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureViewEXT(UInt32 texture, System.Int32 target, UInt32 origtexture, System.Int32 internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers); + [Slot(792)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glUseProgramStagesEXT(UInt32 pipeline, System.Int32 stages, UInt32 program); + [Slot(793)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glUseShaderProgramEXT(System.Int32 type, UInt32 program); + [Slot(796)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glValidateProgramPipelineEXT(UInt32 pipeline); + [Slot(808)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribDivisorEXT(UInt32 index, UInt32 divisor); + [Slot(828)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glWaitSemaphoreEXT(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] System.Int32* srcLayouts); + [Slot(833)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glWindowRectanglesEXT(System.Int32 mode, Int32 count, [CountAttribute(Computed = "count")] Int32* box); + [Slot(225)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glFramebufferTexture2DDownsampleIMG(System.Int32 target, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level, Int32 xscale, Int32 yscale); + [Slot(227)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glFramebufferTexture2DMultisampleIMG(System.Int32 target, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level, Int32 samples); + [Slot(231)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glFramebufferTextureLayerDownsampleIMG(System.Int32 target, System.Int32 attachment, UInt32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale); + [Slot(381)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern Int64 glGetTextureHandleIMG(UInt32 texture); + [Slot(383)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern Int64 glGetTextureSamplerHandleIMG(UInt32 texture, UInt32 sampler); + [Slot(596)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniformHandleui64IMG(UInt32 program, Int32 location, UInt64 value); + [Slot(598)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformHandleui64vIMG(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values); - [Slot(616)] + [Slot(637)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glRenderbufferStorageMultisampleIMG(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(747)] + [Slot(769)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniformHandleui64IMG(Int32 location, UInt64 value); - [Slot(749)] + [Slot(771)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniformHandleui64vIMG(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value); [Slot(10)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glBeginPerfQueryINTEL(UInt32 queryHandle); - [Slot(100)] + [Slot(101)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glCreatePerfQueryINTEL(UInt32 queryId, [OutAttribute] UInt32* queryHandle); - [Slot(119)] + [Slot(120)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDeletePerfQueryINTEL(UInt32 queryHandle); - [Slot(191)] + [Slot(192)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEndPerfQueryINTEL(UInt32 queryHandle); - [Slot(272)] + [Slot(273)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetFirstPerfQueryIdINTEL([OutAttribute] UInt32* queryId); - [Slot(295)] + [Slot(296)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetNextPerfQueryIdINTEL(UInt32 queryId, [OutAttribute] UInt32* nextQueryId); - [Slot(322)] + [Slot(323)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetPerfCounterInfoINTEL(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute, CountAttribute(Parameter = "counterNameLength")] IntPtr counterName, UInt32 counterDescLength, [OutAttribute, CountAttribute(Parameter = "counterDescLength")] IntPtr counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue); - [Slot(329)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPerfQueryDataINTEL(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32* bytesWritten); [Slot(330)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPerfQueryIdByNameINTEL(IntPtr queryName, [OutAttribute] UInt32* queryId); + private static extern unsafe void glGetPerfQueryDataINTEL(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32* bytesWritten); [Slot(331)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetPerfQueryIdByNameINTEL(IntPtr queryName, [OutAttribute] UInt32* queryId); + [Slot(332)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetPerfQueryInfoINTEL(UInt32 queryId, UInt32 queryNameLength, [OutAttribute, CountAttribute(Parameter = "queryNameLength")] IntPtr queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask); [Slot(31)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glBlendBarrierKHR(); - [Slot(108)] + [Slot(109)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDebugMessageCallbackKHR(DebugProcKhr callback, IntPtr userParam); - [Slot(110)] + [Slot(111)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDebugMessageControlKHR(System.Int32 source, System.Int32 type, System.Int32 severity, Int32 count, UInt32* ids, bool enabled); - [Slot(112)] + [Slot(113)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDebugMessageInsertKHR(System.Int32 source, System.Int32 type, UInt32 id, System.Int32 severity, Int32 length, IntPtr buf); - [Slot(267)] + [Slot(268)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe Int32 glGetDebugMessageLogKHR(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] System.Int32* sources, [OutAttribute, CountAttribute(Parameter = "count")] System.Int32* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] System.Int32* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr messageLog); - [Slot(283)] + [Slot(284)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern System.Int32 glGetGraphicsResetStatusKHR(); - [Slot(298)] + [Slot(299)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetnUniformfvKHR(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params); - [Slot(301)] + [Slot(302)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetnUniformivKHR(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params); - [Slot(303)] + [Slot(304)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetnUniformuivKHR(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params); - [Slot(306)] + [Slot(307)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetObjectLabelKHR(System.Int32 identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr label); - [Slot(308)] + [Slot(309)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetObjectPtrLabelKHR(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr label); - [Slot(333)] + [Slot(334)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glGetPointervKHR(System.Int32 pname, [OutAttribute] IntPtr @params); - [Slot(469)] + [Slot(476)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMaxShaderCompilerThreadsKHR(UInt32 count); + [Slot(490)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glObjectLabelKHR(System.Int32 identifier, UInt32 name, Int32 length, IntPtr label); - [Slot(471)] + [Slot(492)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glObjectPtrLabelKHR(IntPtr ptr, Int32 length, IntPtr label); - [Slot(502)] + [Slot(523)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPopDebugGroupKHR(); - [Slot(598)] + [Slot(619)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPushDebugGroupKHR(System.Int32 source, UInt32 id, Int32 length, IntPtr message); - [Slot(607)] + [Slot(628)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glReadnPixelsKHR(Int32 x, Int32 y, Int32 width, Int32 height, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data); [Slot(8)] @@ -60212,491 +74153,494 @@ namespace OpenTK.Graphics.ES31 private static extern void glBlendParameteriNV(System.Int32 pname, Int32 value); [Slot(50)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glBlitFramebufferNV(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, UInt32 mask, System.Int32 filter); - [Slot(80)] + private static extern void glBlitFramebufferNV(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, System.Int32 mask, System.Int32 filter); + [Slot(81)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glConservativeRasterParameteriNV(System.Int32 pname, Int32 param); - [Slot(82)] + [Slot(83)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glCopyBufferSubDataNV(System.Int32 readTarget, System.Int32 writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size); - [Slot(85)] + [Slot(86)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glCopyPathNV(UInt32 resultPath, UInt32 srcPath); - [Slot(91)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glCoverageMaskNV(bool mask); [Slot(92)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glCoverageModulationNV(System.Int32 components); + private static extern void glCoverageMaskNV(bool mask); [Slot(93)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glCoverageModulationTableNV(Int32 n, Single* v); + private static extern void glCoverageModulationNV(System.Int32 components); [Slot(94)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glCoverageOperationNV(System.Int32 operation); + private static extern unsafe void glCoverageModulationTableNV(Int32 n, [CountAttribute(Parameter = "n")] Single* v); [Slot(95)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glCoverFillPathInstancedNV(Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, System.Int32 coverMode, System.Int32 transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues); + private static extern void glCoverageOperationNV(System.Int32 operation); [Slot(96)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glCoverFillPathNV(UInt32 path, System.Int32 coverMode); + private static extern unsafe void glCoverFillPathInstancedNV(Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, System.Int32 coverMode, System.Int32 transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues); [Slot(97)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glCoverStrokePathInstancedNV(Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, System.Int32 coverMode, System.Int32 transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues); + private static extern void glCoverFillPathNV(UInt32 path, System.Int32 coverMode); [Slot(98)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glCoverStrokePathInstancedNV(Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, System.Int32 coverMode, System.Int32 transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues); + [Slot(99)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glCoverStrokePathNV(UInt32 path, System.Int32 coverMode); - [Slot(114)] + [Slot(115)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteFencesNV(Int32 n, [CountAttribute(Parameter = "n")] UInt32* fences); - [Slot(117)] + [Slot(118)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDeletePathsNV(UInt32 path, Int32 range); - [Slot(137)] + [Slot(138)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDepthRangeArrayfvNV(UInt32 first, Int32 count, Single* v); - [Slot(140)] + [Slot(141)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDepthRangeIndexedfNV(UInt32 index, Single n, Single f); - [Slot(146)] + [Slot(147)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDisableiNV(System.Int32 target, UInt32 index); - [Slot(158)] + [Slot(159)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawArraysInstancedNV(System.Int32 mode, Int32 first, Int32 count, Int32 primcount); - [Slot(162)] + [Slot(163)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDrawBuffersNV(Int32 n, [CountAttribute(Parameter = "n")] System.Int32* bufs); - [Slot(174)] + [Slot(175)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawElementsInstancedNV(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount); - [Slot(180)] + [Slot(181)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawVkImageNV(UInt64 vkImage, UInt32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1); - [Slot(186)] + [Slot(187)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEnableiNV(System.Int32 target, UInt32 index); - [Slot(189)] + [Slot(190)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEndConditionalRenderNV(); - [Slot(211)] + [Slot(212)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFinishFenceNV(UInt32 fence); - [Slot(215)] + [Slot(216)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFragmentCoverageColorNV(UInt32 color); - [Slot(222)] + [Slot(223)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glFramebufferSampleLocationsfvNV(System.Int32 target, UInt32 start, Int32 count, Single* v); - [Slot(237)] + [Slot(238)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGenFencesNV(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* fences); - [Slot(239)] + [Slot(240)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int32 glGenPathsNV(Int32 range); - [Slot(265)] + [Slot(266)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetCoverageModulationTableNV(Int32 bufsize, [OutAttribute] Single* v); - [Slot(271)] + [Slot(272)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetFenceivNV(UInt32 fence, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(273)] + [Slot(274)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetFloati_vNV(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data); - [Slot(284)] + [Slot(285)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int64 glGetImageHandleNV(UInt32 texture, Int32 level, bool layered, Int32 layer, System.Int32 format); - [Slot(292)] + [Slot(293)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetInternalformatSampleivNV(System.Int32 target, System.Int32 internalformat, Int32 samples, System.Int32 pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params); - [Slot(309)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathColorGenfvNV(System.Int32 color, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value); [Slot(310)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathColorGenivNV(System.Int32 color, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value); + private static extern unsafe void glGetPathColorGenfvNV(System.Int32 color, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value); [Slot(311)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathCommandsNV(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands); + private static extern unsafe void glGetPathColorGenivNV(System.Int32 color, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value); [Slot(312)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathCoordsNV(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords); + private static extern unsafe void glGetPathCommandsNV(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands); [Slot(313)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathDashArrayNV(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray); + private static extern unsafe void glGetPathCoordsNV(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords); [Slot(314)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Single glGetPathLengthNV(UInt32 path, Int32 startSegment, Int32 numSegments); + private static extern unsafe void glGetPathDashArrayNV(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray); [Slot(315)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathMetricRangeNV(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics); + private static extern Single glGetPathLengthNV(UInt32 path, Int32 startSegment, Int32 numSegments); [Slot(316)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathMetricsNV(UInt32 metricQueryMask, Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics); + private static extern unsafe void glGetPathMetricRangeNV(System.Int32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics); [Slot(317)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathParameterfvNV(UInt32 path, System.Int32 pname, [OutAttribute, CountAttribute(Count = 4)] Single* value); + private static extern unsafe void glGetPathMetricsNV(System.Int32 metricQueryMask, Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics); [Slot(318)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathParameterivNV(UInt32 path, System.Int32 pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value); + private static extern unsafe void glGetPathParameterfvNV(UInt32 path, System.Int32 pname, [OutAttribute, CountAttribute(Count = 4)] Single* value); [Slot(319)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathSpacingNV(System.Int32 pathListMode, Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, System.Int32 transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing); + private static extern unsafe void glGetPathParameterivNV(UInt32 path, System.Int32 pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value); [Slot(320)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathTexGenfvNV(System.Int32 texCoordSet, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value); + private static extern unsafe void glGetPathSpacingNV(System.Int32 pathListMode, Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, System.Int32 transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing); [Slot(321)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetPathTexGenfvNV(System.Int32 texCoordSet, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value); + [Slot(322)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetPathTexGenivNV(System.Int32 texCoordSet, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value); - [Slot(343)] + [Slot(344)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetProgramResourcefvNV(UInt32 program, System.Int32 programInterface, UInt32 index, Int32 propCount, System.Int32* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params); - [Slot(381)] + [Slot(382)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int64 glGetTextureHandleNV(UInt32 texture); - [Slot(383)] + [Slot(384)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int64 glGetTextureSamplerHandleNV(UInt32 texture, UInt32 sampler); - [Slot(388)] + [Slot(389)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetUniformi64vNV(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params); - [Slot(400)] + [Slot(401)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern IntPtr glGetVkProcAddrNV([CountAttribute(Computed = "name")] IntPtr name); - [Slot(409)] + [Slot(410)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glInterpolatePathsNV(UInt32 resultPath, UInt32 pathA, UInt32 pathB, Single weight); - [Slot(415)] + [Slot(416)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsEnablediNV(System.Int32 target, UInt32 index); - [Slot(417)] + [Slot(418)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsFenceNV(UInt32 fence); - [Slot(419)] + [Slot(420)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsImageHandleResidentNV(UInt64 handle); - [Slot(421)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsPathNV(UInt32 path); [Slot(422)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsPointInFillPathNV(UInt32 path, UInt32 mask, Single x, Single y); + private static extern byte glIsPathNV(UInt32 path); [Slot(423)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glIsPointInFillPathNV(UInt32 path, UInt32 mask, Single x, Single y); + [Slot(424)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsPointInStrokePathNV(UInt32 path, Single x, Single y); - [Slot(436)] + [Slot(437)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsTextureHandleResidentNV(UInt64 handle); - [Slot(443)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMakeImageHandleNonResidentNV(UInt64 handle); [Slot(444)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMakeImageHandleResidentNV(UInt64 handle, System.Int32 access); + private static extern void glMakeImageHandleNonResidentNV(UInt64 handle); [Slot(445)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMakeTextureHandleNonResidentNV(UInt64 handle); + private static extern void glMakeImageHandleResidentNV(UInt64 handle, System.Int32 access); [Slot(446)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMakeTextureHandleNonResidentNV(UInt64 handle); + [Slot(447)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMakeTextureHandleResidentNV(UInt64 handle); - [Slot(450)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMatrixLoad3x2fNV(System.Int32 matrixMode, Single* m); - [Slot(451)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMatrixLoad3x3fNV(System.Int32 matrixMode, Single* m); [Slot(452)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMatrixLoadTranspose3x3fNV(System.Int32 matrixMode, Single* m); + private static extern unsafe void glMatrixLoad3x2fNV(System.Int32 matrixMode, Single* m); [Slot(453)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMatrixLoad3x3fNV(System.Int32 matrixMode, Single* m); + [Slot(457)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMatrixLoadTranspose3x3fNV(System.Int32 matrixMode, Single* m); + [Slot(460)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMatrixMult3x2fNV(System.Int32 matrixMode, Single* m); - [Slot(454)] + [Slot(461)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMatrixMult3x3fNV(System.Int32 matrixMode, Single* m); - [Slot(455)] + [Slot(464)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMatrixMultTranspose3x3fNV(System.Int32 matrixMode, Single* m); - [Slot(467)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glNamedFramebufferSampleLocationsfvNV(UInt32 framebuffer, UInt32 start, Int32 count, Single* v); - [Slot(474)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPathColorGenNV(System.Int32 color, System.Int32 genMode, System.Int32 colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single* coeffs); - [Slot(475)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPathCommandsNV(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, System.Int32 coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords); - [Slot(476)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathCoordsNV(UInt32 path, Int32 numCoords, System.Int32 coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords); - [Slot(477)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathCoverDepthFuncNV(System.Int32 func); - [Slot(478)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPathDashArrayNV(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray); - [Slot(479)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathFogGenNV(System.Int32 genMode); - [Slot(480)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern System.Int32 glPathGlyphIndexArrayNV(UInt32 firstPathName, System.Int32 fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale); - [Slot(481)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern System.Int32 glPathGlyphIndexRangeNV(System.Int32 fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount); - [Slot(482)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathGlyphRangeNV(UInt32 firstPathName, System.Int32 fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, System.Int32 handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale); - [Slot(483)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathGlyphsNV(UInt32 firstPathName, System.Int32 fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, Int32 numGlyphs, System.Int32 type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, System.Int32 handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale); - [Slot(484)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern System.Int32 glPathMemoryGlyphIndexArrayNV(UInt32 firstPathName, System.Int32 fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale); - [Slot(485)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathParameterfNV(UInt32 path, System.Int32 pname, Single value); - [Slot(486)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPathParameterfvNV(UInt32 path, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* value); - [Slot(487)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathParameteriNV(UInt32 path, System.Int32 pname, Int32 value); [Slot(488)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPathParameterivNV(UInt32 path, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* value); - [Slot(489)] + private static extern unsafe void glNamedFramebufferSampleLocationsfvNV(UInt32 framebuffer, UInt32 start, Int32 count, Single* v); + [Slot(495)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathStencilDepthOffsetNV(Single factor, Single units); - [Slot(490)] + private static extern unsafe void glPathColorGenNV(System.Int32 color, System.Int32 genMode, System.Int32 colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single* coeffs); + [Slot(496)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathStencilFuncNV(System.Int32 func, Int32 @ref, UInt32 mask); - [Slot(491)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathStringNV(UInt32 path, System.Int32 format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString); - [Slot(492)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPathSubCommandsNV(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, System.Int32 coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords); - [Slot(493)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathSubCoordsNV(UInt32 path, Int32 coordStart, Int32 numCoords, System.Int32 coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords); - [Slot(494)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPathTexGenNV(System.Int32 texCoordSet, System.Int32 genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single* coeffs); + private static extern unsafe void glPathCommandsNV(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, System.Int32 coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords); [Slot(497)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe byte glPointAlongPathNV(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY); + private static extern void glPathCoordsNV(UInt32 path, Int32 numCoords, System.Int32 coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords); [Slot(498)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPolygonModeNV(System.Int32 face, System.Int32 mode); + private static extern void glPathCoverDepthFuncNV(System.Int32 func); + [Slot(499)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glPathDashArrayNV(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray); + [Slot(500)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPathFogGenNV(System.Int32 genMode); + [Slot(501)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern System.Int32 glPathGlyphIndexArrayNV(UInt32 firstPathName, System.Int32 fontTarget, IntPtr fontName, System.Int32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale); + [Slot(502)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern System.Int32 glPathGlyphIndexRangeNV(System.Int32 fontTarget, IntPtr fontName, System.Int32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount); + [Slot(503)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPathGlyphRangeNV(UInt32 firstPathName, System.Int32 fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, System.Int32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, System.Int32 handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale); + [Slot(504)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPathGlyphsNV(UInt32 firstPathName, System.Int32 fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, System.Int32 fontStyle, Int32 numGlyphs, System.Int32 type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, System.Int32 handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale); + [Slot(505)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern System.Int32 glPathMemoryGlyphIndexArrayNV(UInt32 firstPathName, System.Int32 fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale); + [Slot(506)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPathParameterfNV(UInt32 path, System.Int32 pname, Single value); + [Slot(507)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glPathParameterfvNV(UInt32 path, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* value); + [Slot(508)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPathParameteriNV(UInt32 path, System.Int32 pname, Int32 value); + [Slot(509)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glPathParameterivNV(UInt32 path, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* value); [Slot(510)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPathStencilDepthOffsetNV(Single factor, Single units); + [Slot(511)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPathStencilFuncNV(System.Int32 func, Int32 @ref, UInt32 mask); + [Slot(512)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPathStringNV(UInt32 path, System.Int32 format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString); + [Slot(513)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glPathSubCommandsNV(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, System.Int32 coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords); + [Slot(514)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPathSubCoordsNV(UInt32 path, Int32 coordStart, Int32 numCoords, System.Int32 coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords); + [Slot(515)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glPathTexGenNV(System.Int32 texCoordSet, System.Int32 genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single* coeffs); + [Slot(518)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe byte glPointAlongPathNV(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY); + [Slot(519)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPolygonModeNV(System.Int32 face, System.Int32 mode); + [Slot(531)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramPathFragmentInputGenNV(UInt32 program, Int32 location, System.Int32 genMode, Int32 components, Single* coeffs); - [Slot(516)] + [Slot(537)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform1i64NV(UInt32 program, Int32 location, Int64 x); - [Slot(517)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform1i64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value); - [Slot(522)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform1ui64NV(UInt32 program, Int32 location, UInt64 x); - [Slot(523)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform1ui64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value); - [Slot(532)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform2i64NV(UInt32 program, Int32 location, Int64 x, Int64 y); - [Slot(533)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform2i64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value); [Slot(538)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform2ui64NV(UInt32 program, Int32 location, UInt64 x, UInt64 y); - [Slot(539)] + private static extern unsafe void glProgramUniform1i64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value); + [Slot(543)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform2ui64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value); - [Slot(548)] + private static extern void glProgramUniform1ui64NV(UInt32 program, Int32 location, UInt64 x); + [Slot(544)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform3i64NV(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z); - [Slot(549)] + private static extern unsafe void glProgramUniform1ui64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value); + [Slot(553)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform3i64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value); + private static extern void glProgramUniform2i64NV(UInt32 program, Int32 location, Int64 x, Int64 y); [Slot(554)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform3ui64NV(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z); - [Slot(555)] + private static extern unsafe void glProgramUniform2i64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value); + [Slot(559)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform3ui64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value); - [Slot(564)] + private static extern void glProgramUniform2ui64NV(UInt32 program, Int32 location, UInt64 x, UInt64 y); + [Slot(560)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform4i64NV(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w); - [Slot(565)] + private static extern unsafe void glProgramUniform2ui64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value); + [Slot(569)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform4i64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value); + private static extern void glProgramUniform3i64NV(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z); [Slot(570)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform4ui64NV(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w); - [Slot(571)] + private static extern unsafe void glProgramUniform3i64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value); + [Slot(575)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform4ui64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value); + private static extern void glProgramUniform3ui64NV(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z); [Slot(576)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform3ui64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value); + [Slot(585)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform4i64NV(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w); + [Slot(586)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform4i64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value); + [Slot(591)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform4ui64NV(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w); + [Slot(592)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform4ui64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value); + [Slot(597)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniformHandleui64NV(UInt32 program, Int32 location, UInt64 value); - [Slot(578)] + [Slot(599)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformHandleui64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values); - [Slot(604)] + [Slot(625)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glReadBufferNV(System.Int32 mode); - [Slot(617)] + [Slot(638)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glRenderbufferStorageMultisampleNV(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(618)] + [Slot(639)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glResolveDepthValuesNV(); - [Slot(632)] + [Slot(653)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glScissorArrayvNV(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v); - [Slot(634)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glScissorIndexedNV(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height); - [Slot(636)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glScissorIndexedvNV(UInt32 index, [CountAttribute(Count = 4)] Int32* v); - [Slot(640)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSetFenceNV(UInt32 fence, System.Int32 condition); - [Slot(644)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSignalVkFenceNV(UInt64 vkFence); - [Slot(645)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSignalVkSemaphoreNV(UInt64 vkSemaphore); - [Slot(647)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glStencilFillPathInstancedNV(Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, System.Int32 fillMode, UInt32 mask, System.Int32 transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues); - [Slot(648)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilFillPathNV(UInt32 path, System.Int32 fillMode, UInt32 mask); [Slot(655)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glStencilStrokePathInstancedNV(Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, System.Int32 transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues); - [Slot(656)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilStrokePathNV(UInt32 path, Int32 reference, UInt32 mask); + private static extern void glScissorIndexedNV(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height); [Slot(657)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glStencilThenCoverFillPathInstancedNV(Int32 numPaths, System.Int32 pathNameType, IntPtr paths, UInt32 pathBase, System.Int32 fillMode, UInt32 mask, System.Int32 coverMode, System.Int32 transformType, Single* transformValues); - [Slot(658)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilThenCoverFillPathNV(UInt32 path, System.Int32 fillMode, UInt32 mask, System.Int32 coverMode); - [Slot(659)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glStencilThenCoverStrokePathInstancedNV(Int32 numPaths, System.Int32 pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, System.Int32 coverMode, System.Int32 transformType, Single* transformValues); - [Slot(660)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilThenCoverStrokePathNV(UInt32 path, Int32 reference, UInt32 mask, System.Int32 coverMode); + private static extern unsafe void glScissorIndexedvNV(UInt32 index, [CountAttribute(Count = 4)] Int32* v); [Slot(661)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glSetFenceNV(UInt32 fence, System.Int32 condition); + [Slot(665)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glSignalVkFenceNV(UInt64 vkFence); + [Slot(666)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glSignalVkSemaphoreNV(UInt64 vkSemaphore); + [Slot(668)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glStencilFillPathInstancedNV(Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, System.Int32 fillMode, UInt32 mask, System.Int32 transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues); + [Slot(669)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glStencilFillPathNV(UInt32 path, System.Int32 fillMode, UInt32 mask); + [Slot(676)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glStencilStrokePathInstancedNV(Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, System.Int32 transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues); + [Slot(677)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glStencilStrokePathNV(UInt32 path, Int32 reference, UInt32 mask); + [Slot(678)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glStencilThenCoverFillPathInstancedNV(Int32 numPaths, System.Int32 pathNameType, IntPtr paths, UInt32 pathBase, System.Int32 fillMode, UInt32 mask, System.Int32 coverMode, System.Int32 transformType, Single* transformValues); + [Slot(679)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glStencilThenCoverFillPathNV(UInt32 path, System.Int32 fillMode, UInt32 mask, System.Int32 coverMode); + [Slot(680)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glStencilThenCoverStrokePathInstancedNV(Int32 numPaths, System.Int32 pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, System.Int32 coverMode, System.Int32 transformType, Single* transformValues); + [Slot(681)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glStencilThenCoverStrokePathNV(UInt32 path, Int32 reference, UInt32 mask, System.Int32 coverMode); + [Slot(682)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glSubpixelPrecisionBiasNV(UInt32 xbits, UInt32 ybits); - [Slot(662)] + [Slot(683)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glTestFenceNV(UInt32 fence); - [Slot(705)] + [Slot(727)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTransformPathNV(UInt32 resultPath, UInt32 srcPath, System.Int32 transformType, [CountAttribute(Computed = "transformType")] Single* transformValues); - [Slot(709)] + [Slot(731)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform1i64NV(Int32 location, Int64 x); - [Slot(710)] + [Slot(732)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform1i64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value); - [Slot(713)] + [Slot(735)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform1ui64NV(Int32 location, UInt64 x); - [Slot(714)] + [Slot(736)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform1ui64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value); - [Slot(719)] + [Slot(741)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform2i64NV(Int32 location, Int64 x, Int64 y); - [Slot(720)] + [Slot(742)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform2i64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value); - [Slot(723)] + [Slot(745)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform2ui64NV(Int32 location, UInt64 x, UInt64 y); - [Slot(724)] + [Slot(746)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform2ui64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value); - [Slot(729)] + [Slot(751)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform3i64NV(Int32 location, Int64 x, Int64 y, Int64 z); - [Slot(730)] + [Slot(752)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform3i64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value); - [Slot(733)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform3ui64NV(Int32 location, UInt64 x, UInt64 y, UInt64 z); - [Slot(734)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform3ui64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value); - [Slot(739)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform4i64NV(Int32 location, Int64 x, Int64 y, Int64 z, Int64 w); - [Slot(740)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform4i64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value); - [Slot(743)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform4ui64NV(Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w); - [Slot(744)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform4ui64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value); - [Slot(748)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniformHandleui64NV(Int32 location, UInt64 value); - [Slot(750)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformHandleui64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value); - [Slot(753)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix2x3fvNV(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); [Slot(755)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix2x4fvNV(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); - [Slot(758)] + private static extern void glUniform3ui64NV(Int32 location, UInt64 x, UInt64 y, UInt64 z); + [Slot(756)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix3x2fvNV(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); - [Slot(760)] + private static extern unsafe void glUniform3ui64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value); + [Slot(761)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix3x4fvNV(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); - [Slot(763)] + private static extern void glUniform4i64NV(Int32 location, Int64 x, Int64 y, Int64 z, Int64 w); + [Slot(762)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix4x2fvNV(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); + private static extern unsafe void glUniform4i64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value); [Slot(765)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix4x3fvNV(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); + private static extern void glUniform4ui64NV(Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w); + [Slot(766)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniform4ui64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value); + [Slot(770)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glUniformHandleui64NV(Int32 location, UInt64 value); + [Slot(772)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniformHandleui64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value); + [Slot(775)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniformMatrix2x3fvNV(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); + [Slot(777)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniformMatrix2x4fvNV(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); + [Slot(780)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniformMatrix3x2fvNV(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); + [Slot(782)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniformMatrix3x4fvNV(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); + [Slot(785)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniformMatrix4x2fvNV(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); [Slot(787)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniformMatrix4x3fvNV(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); + [Slot(809)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribDivisorNV(UInt32 index, UInt32 divisor); - [Slot(798)] + [Slot(820)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glViewportArrayvNV(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v); - [Slot(800)] + [Slot(822)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glViewportIndexedfNV(UInt32 index, Single x, Single y, Single w, Single h); - [Slot(802)] + [Slot(824)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glViewportIndexedfvNV(UInt32 index, [CountAttribute(Count = 4)] Single* v); - [Slot(804)] + [Slot(826)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glViewportPositionWScaleNV(UInt32 index, Single xcoeff, Single ycoeff); + [Slot(827)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glViewportSwizzleNV(UInt32 index, System.Int32 swizzlex, System.Int32 swizzley, System.Int32 swizzlez, System.Int32 swizzlew); - [Slot(808)] + [Slot(831)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glWaitVkSemaphoreNV(UInt64 vkSemaphore); - [Slot(809)] + [Slot(832)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glWeightPathsNV(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights); [Slot(29)] @@ -60714,224 +74658,227 @@ namespace OpenTK.Graphics.ES31 [Slot(46)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glBlendFuncSeparateiOES(UInt32 buf, System.Int32 srcRGB, System.Int32 dstRGB, System.Int32 srcAlpha, System.Int32 dstAlpha); - [Slot(72)] + [Slot(73)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glColorMaskiOES(UInt32 index, bool r, bool g, bool b, bool a); - [Slot(76)] + [Slot(77)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glCompressedTexImage3DOES(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data); - [Slot(79)] + [Slot(80)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glCompressedTexSubImage3DOES(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, System.Int32 format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data); - [Slot(84)] + [Slot(85)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glCopyImageSubDataOES(UInt32 srcName, System.Int32 srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, System.Int32 dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth); - [Slot(89)] + [Slot(90)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glCopyTexSubImage3DOES(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height); - [Slot(134)] + [Slot(135)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteVertexArraysOES(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays); - [Slot(138)] + [Slot(139)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDepthRangeArrayfvOES(UInt32 first, Int32 count, Single* v); - [Slot(141)] + [Slot(142)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDepthRangeIndexedfOES(UInt32 index, Single n, Single f); - [Slot(147)] + [Slot(148)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDisableiOES(System.Int32 target, UInt32 index); - [Slot(165)] + [Slot(166)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawElementsBaseVertexOES(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex); - [Slot(172)] + [Slot(173)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawElementsInstancedBaseVertexOES(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex); - [Slot(177)] + [Slot(178)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawRangeElementsBaseVertexOES(System.Int32 mode, UInt32 start, UInt32 end, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex); - [Slot(181)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glEGLImageTargetRenderbufferStorageOES(System.Int32 target, IntPtr image); [Slot(182)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glEGLImageTargetRenderbufferStorageOES(System.Int32 target, IntPtr image); + [Slot(183)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEGLImageTargetTexture2DOES(System.Int32 target, IntPtr image); - [Slot(187)] + [Slot(188)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEnableiOES(System.Int32 target, UInt32 index); - [Slot(227)] + [Slot(228)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferTexture3DOES(System.Int32 target, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level, Int32 zoffset); - [Slot(233)] + [Slot(234)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferTextureOES(System.Int32 target, System.Int32 attachment, UInt32 texture, Int32 level); - [Slot(251)] + [Slot(252)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGenVertexArraysOES(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays); - [Slot(264)] + [Slot(265)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glGetBufferPointervOES(System.Int32 target, System.Int32 pname, [OutAttribute] IntPtr @params); - [Slot(274)] + [Slot(275)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetFloati_vOES(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data); - [Slot(335)] + [Slot(336)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetProgramBinaryOES(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] System.Int32* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary); - [Slot(359)] + [Slot(360)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetSamplerParameterIivOES(UInt32 sampler, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(361)] + [Slot(362)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetSamplerParameterIuivOES(UInt32 sampler, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params); - [Slot(376)] + [Slot(377)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetTexParameterIivOES(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(378)] + [Slot(379)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetTexParameterIuivOES(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params); - [Slot(416)] + [Slot(417)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsEnablediOES(System.Int32 target, UInt32 index); - [Slot(439)] + [Slot(440)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsVertexArrayOES(UInt32 array); - [Slot(447)] + [Slot(448)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern IntPtr glMapBufferOES(System.Int32 target, System.Int32 access); - [Slot(459)] + [Slot(480)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMinSampleShadingOES(Single value); - [Slot(473)] + [Slot(494)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPatchParameteriOES(System.Int32 pname, Int32 value); - [Slot(505)] + [Slot(526)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPrimitiveBoundingBoxOES(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW); - [Slot(507)] + [Slot(528)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramBinaryOES(UInt32 program, System.Int32 binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length); - [Slot(627)] + [Slot(648)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glSamplerParameterIivOES(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* param); - [Slot(629)] + [Slot(650)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glSamplerParameterIuivOES(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] UInt32* param); - [Slot(633)] + [Slot(654)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glScissorArrayvOES(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v); - [Slot(635)] + [Slot(656)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glScissorIndexedOES(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height); - [Slot(637)] + [Slot(658)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glScissorIndexedvOES(UInt32 index, [CountAttribute(Count = 4)] Int32* v); - [Slot(664)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexBufferOES(System.Int32 target, System.Int32 internalformat, UInt32 buffer); - [Slot(666)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexBufferRangeOES(System.Int32 target, System.Int32 internalformat, UInt32 buffer, IntPtr offset, IntPtr size); - [Slot(669)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexImage3DOES(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels); - [Slot(675)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexParameterIivOES(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); - [Slot(677)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexParameterIuivOES(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] UInt32* @params); [Slot(685)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexBufferOES(System.Int32 target, System.Int32 internalformat, UInt32 buffer); + [Slot(687)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexBufferRangeOES(System.Int32 target, System.Int32 internalformat, UInt32 buffer, IntPtr offset, IntPtr size); + [Slot(690)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexImage3DOES(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels); + [Slot(696)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexParameterIivOES(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + [Slot(698)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexParameterIuivOES(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] UInt32* @params); + [Slot(706)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexStorage3DMultisampleOES(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations); - [Slot(693)] + [Slot(714)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexSubImage3DOES(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels); - [Slot(703)] + [Slot(725)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureViewOES(UInt32 texture, System.Int32 target, UInt32 origtexture, System.Int32 internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers); - [Slot(767)] + [Slot(789)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glUnmapBufferOES(System.Int32 target); - [Slot(799)] + [Slot(821)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glViewportArrayvOES(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v); - [Slot(801)] + [Slot(823)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glViewportIndexedfOES(UInt32 index, Single x, Single y, Single w, Single h); - [Slot(803)] + [Slot(825)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glViewportIndexedfvOES(UInt32 index, [CountAttribute(Count = 4)] Single* v); - [Slot(231)] + [Slot(232)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferTextureMultisampleMultiviewOVR(System.Int32 target, System.Int32 attachment, UInt32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews); - [Slot(232)] + [Slot(233)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferTextureMultiviewOVR(System.Int32 target, System.Int32 attachment, UInt32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews); [Slot(5)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glAlphaFuncQCOM(System.Int32 func, Single @ref); - [Slot(144)] + [Slot(145)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDisableDriverControlQCOM(UInt32 driverControl); - [Slot(184)] + [Slot(185)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEnableDriverControlQCOM(UInt32 driverControl); - [Slot(194)] + [Slot(195)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glEndTilingQCOM(UInt32 preserveMask); - [Slot(196)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glExtGetBufferPointervQCOM(System.Int32 target, [OutAttribute] IntPtr @params); + private static extern void glEndTilingQCOM(System.Int32 preserveMask); [Slot(197)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glExtGetBuffersQCOM([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers); + private static extern void glExtGetBufferPointervQCOM(System.Int32 target, [OutAttribute] IntPtr @params); [Slot(198)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glExtGetFramebuffersQCOM([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers); + private static extern unsafe void glExtGetBuffersQCOM([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers); [Slot(199)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glExtGetProgramBinarySourceQCOM(UInt32 program, System.Int32 shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] IntPtr source, [OutAttribute] Int32* length); + private static extern unsafe void glExtGetFramebuffersQCOM([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers); [Slot(200)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glExtGetProgramsQCOM([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms); + private static extern unsafe void glExtGetProgramBinarySourceQCOM(UInt32 program, System.Int32 shadertype, [OutAttribute, CountAttribute(Parameter = "*length")] IntPtr source, [OutAttribute] Int32* length); [Slot(201)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glExtGetRenderbuffersQCOM([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers); + private static extern unsafe void glExtGetProgramsQCOM([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms); [Slot(202)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glExtGetShadersQCOM([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders); + private static extern unsafe void glExtGetRenderbuffersQCOM([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers); [Slot(203)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glExtGetTexLevelParameterivQCOM(UInt32 texture, System.Int32 face, Int32 level, System.Int32 pname, [OutAttribute] Int32* @params); + private static extern unsafe void glExtGetShadersQCOM([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders); [Slot(204)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glExtGetTexSubImageQCOM(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, System.Int32 format, System.Int32 type, [OutAttribute] IntPtr texels); + private static extern unsafe void glExtGetTexLevelParameterivQCOM(UInt32 texture, System.Int32 face, Int32 level, System.Int32 pname, [OutAttribute] Int32* @params); [Slot(205)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glExtGetTexturesQCOM([OutAttribute] UInt32* textures, Int32 maxTextures, [OutAttribute] Int32* numTextures); + private static extern void glExtGetTexSubImageQCOM(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, System.Int32 format, System.Int32 type, [OutAttribute] IntPtr texels); [Slot(206)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glExtIsProgramBinaryQCOM(UInt32 program); + private static extern unsafe void glExtGetTexturesQCOM([OutAttribute] UInt32* textures, Int32 maxTextures, [OutAttribute] Int32* numTextures); [Slot(207)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glExtTexObjectStateOverrideiQCOM(System.Int32 target, System.Int32 pname, Int32 param); - [Slot(216)] + private static extern byte glExtIsProgramBinaryQCOM(UInt32 program); + [Slot(208)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFramebufferFetchBarrierQCOM(); + private static extern void glExtTexObjectStateOverrideiQCOM(System.Int32 target, System.Int32 pname, Int32 param); [Slot(217)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glFramebufferFoveationConfigQCOM(UInt32 framebuffer, UInt32 numLayers, UInt32 focalPointsPerLayer, UInt32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] UInt32* providedFeatures); + private static extern void glFramebufferFetchBarrierQCOM(); [Slot(218)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFramebufferFoveationParametersQCOM(UInt32 framebuffer, UInt32 layer, UInt32 focalPoint, Single focalX, Single focalY, Single gainX, Single gainY, Single foveaArea); - [Slot(268)] + private static extern unsafe void glFramebufferFoveationConfigQCOM(UInt32 framebuffer, UInt32 numLayers, UInt32 focalPointsPerLayer, UInt32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] UInt32* providedFeatures); + [Slot(219)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetDriverControlsQCOM([OutAttribute] Int32* num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32* driverControls); + private static extern void glFramebufferFoveationParametersQCOM(UInt32 framebuffer, UInt32 layer, UInt32 focalPoint, Single focalX, Single focalY, Single gainX, Single gainY, Single foveaArea); [Slot(269)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetDriverControlStringQCOM(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr driverControlString); - [Slot(646)] + private static extern unsafe void glGetDriverControlsQCOM([OutAttribute] Int32* num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32* driverControls); + [Slot(270)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStartTilingQCOM(UInt32 x, UInt32 y, UInt32 width, UInt32 height, UInt32 preserveMask); + private static extern unsafe void glGetDriverControlStringQCOM(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr driverControlString); + [Slot(667)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glStartTilingQCOM(UInt32 x, UInt32 y, UInt32 width, UInt32 height, System.Int32 preserveMask); + [Slot(715)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureFoveationParametersQCOM(UInt32 texture, UInt32 layer, UInt32 focalPoint, Single focalX, Single focalY, Single gainX, Single gainY, Single foveaArea); } } diff --git a/src/OpenTK/Graphics/OpenGL/GL.cs b/src/OpenTK/Graphics/OpenGL/GL.cs index 80f88bef..308e8da3 100644 --- a/src/OpenTK/Graphics/OpenGL/GL.cs +++ b/src/OpenTK/Graphics/OpenGL/GL.cs @@ -471,6 +471,7 @@ namespace OpenTK.Graphics.OpenGL 103, 108, 68, 101, 108, 101, 116, 101, 80, 114, 111, 103, 114, 97, 109, 115, 78, 86, 0, 103, 108, 68, 101, 108, 101, 116, 101, 81, 117, 101, 114, 105, 101, 115, 0, 103, 108, 68, 101, 108, 101, 116, 101, 81, 117, 101, 114, 105, 101, 115, 65, 82, 66, 0, + 103, 108, 68, 101, 108, 101, 116, 101, 81, 117, 101, 114, 121, 82, 101, 115, 111, 117, 114, 99, 101, 84, 97, 103, 78, 86, 0, 103, 108, 68, 101, 108, 101, 116, 101, 82, 101, 110, 100, 101, 114, 98, 117, 102, 102, 101, 114, 115, 0, 103, 108, 68, 101, 108, 101, 116, 101, 82, 101, 110, 100, 101, 114, 98, 117, 102, 102, 101, 114, 115, 69, 88, 84, 0, 103, 108, 68, 101, 108, 101, 116, 101, 83, 97, 109, 112, 108, 101, 114, 115, 0, @@ -723,6 +724,7 @@ namespace OpenTK.Graphics.OpenGL 103, 108, 71, 101, 110, 80, 114, 111, 103, 114, 97, 109, 115, 78, 86, 0, 103, 108, 71, 101, 110, 81, 117, 101, 114, 105, 101, 115, 0, 103, 108, 71, 101, 110, 81, 117, 101, 114, 105, 101, 115, 65, 82, 66, 0, + 103, 108, 71, 101, 110, 81, 117, 101, 114, 121, 82, 101, 115, 111, 117, 114, 99, 101, 84, 97, 103, 78, 86, 0, 103, 108, 71, 101, 110, 82, 101, 110, 100, 101, 114, 98, 117, 102, 102, 101, 114, 115, 0, 103, 108, 71, 101, 110, 82, 101, 110, 100, 101, 114, 98, 117, 102, 102, 101, 114, 115, 69, 88, 84, 0, 103, 108, 71, 101, 110, 83, 97, 109, 112, 108, 101, 114, 115, 0, @@ -1422,6 +1424,7 @@ namespace OpenTK.Graphics.OpenGL 103, 108, 77, 97, 116, 114, 105, 120, 84, 114, 97, 110, 115, 108, 97, 116, 101, 100, 69, 88, 84, 0, 103, 108, 77, 97, 116, 114, 105, 120, 84, 114, 97, 110, 115, 108, 97, 116, 101, 102, 69, 88, 84, 0, 103, 108, 77, 97, 120, 83, 104, 97, 100, 101, 114, 67, 111, 109, 112, 105, 108, 101, 114, 84, 104, 114, 101, 97, 100, 115, 65, 82, 66, 0, + 103, 108, 77, 97, 120, 83, 104, 97, 100, 101, 114, 67, 111, 109, 112, 105, 108, 101, 114, 84, 104, 114, 101, 97, 100, 115, 75, 72, 82, 0, 103, 108, 77, 101, 109, 111, 114, 121, 66, 97, 114, 114, 105, 101, 114, 0, 103, 108, 77, 101, 109, 111, 114, 121, 66, 97, 114, 114, 105, 101, 114, 66, 121, 82, 101, 103, 105, 111, 110, 0, 103, 108, 77, 101, 109, 111, 114, 121, 66, 97, 114, 114, 105, 101, 114, 69, 88, 84, 0, @@ -1970,6 +1973,8 @@ namespace OpenTK.Graphics.OpenGL 103, 108, 81, 117, 101, 114, 121, 67, 111, 117, 110, 116, 101, 114, 0, 103, 108, 81, 117, 101, 114, 121, 77, 97, 116, 114, 105, 120, 120, 79, 69, 83, 0, 103, 108, 81, 117, 101, 114, 121, 79, 98, 106, 101, 99, 116, 80, 97, 114, 97, 109, 101, 116, 101, 114, 117, 105, 65, 77, 68, 0, + 103, 108, 81, 117, 101, 114, 121, 82, 101, 115, 111, 117, 114, 99, 101, 78, 86, 0, + 103, 108, 81, 117, 101, 114, 121, 82, 101, 115, 111, 117, 114, 99, 101, 84, 97, 103, 78, 86, 0, 103, 108, 82, 97, 115, 116, 101, 114, 80, 111, 115, 50, 100, 0, 103, 108, 82, 97, 115, 116, 101, 114, 80, 111, 115, 50, 100, 118, 0, 103, 108, 82, 97, 115, 116, 101, 114, 80, 111, 115, 50, 102, 0, @@ -3423,2524 +3428,2529 @@ namespace OpenTK.Graphics.OpenGL 8812, 8828, 8847, - 8869, - 8894, - 8911, - 8933, - 8948, - 8965, - 8978, - 8995, - 9015, + 8874, + 8896, + 8921, + 8938, + 8960, + 8975, + 8992, + 9005, + 9022, 9042, - 9071, - 9092, - 9118, - 9142, - 9159, - 9176, - 9188, - 9200, - 9213, - 9232, - 9248, - 9262, - 9279, - 9299, - 9316, - 9334, - 9349, - 9369, - 9379, - 9400, - 9425, - 9456, - 9467, - 9487, - 9518, + 9069, + 9098, + 9119, + 9145, + 9169, + 9186, + 9203, + 9215, + 9227, + 9240, + 9259, + 9275, + 9289, + 9306, + 9326, + 9343, + 9361, + 9376, + 9396, + 9406, + 9427, + 9452, + 9483, + 9494, + 9514, 9545, - 9575, - 9599, + 9572, + 9602, 9626, 9653, - 9683, - 9701, - 9731, - 9757, - 9770, - 9786, - 9807, - 9829, - 9854, - 9888, - 9913, - 9926, + 9680, + 9710, + 9728, + 9758, + 9784, + 9797, + 9813, + 9834, + 9856, + 9881, + 9915, 9940, - 9957, - 9974, - 9998, - 10015, - 10045, - 10068, - 10092, - 10114, - 10129, - 10154, - 10177, - 10201, + 9953, + 9967, + 9984, + 10001, + 10025, + 10042, + 10072, + 10095, + 10119, + 10141, + 10156, + 10181, + 10204, 10228, - 10264, - 10298, - 10344, + 10255, + 10291, + 10325, 10371, - 10391, - 10404, - 10433, + 10398, + 10418, + 10431, 10460, - 10480, - 10510, - 10533, - 10549, - 10573, - 10606, - 10632, - 10662, - 10701, - 10717, + 10487, + 10507, + 10537, + 10560, + 10576, + 10600, + 10633, + 10659, + 10689, 10728, - 10747, - 10765, - 10786, - 10811, - 10823, - 10845, - 10865, - 10874, - 10894, - 10918, - 10948, - 10958, - 10977, - 11007, - 11033, - 11062, - 11085, - 11111, - 11137, - 11166, - 11172, - 11195, - 11220, - 11246, - 11269, - 11279, - 11301, - 11321, - 11341, - 11352, - 11366, - 11384, - 11407, - 11433, - 11458, - 11479, - 11499, - 11513, - 11528, - 11542, - 11557, - 11574, - 11592, - 11606, - 11621, - 11635, - 11650, - 11667, - 11685, - 11698, - 11710, - 11722, - 11735, - 11748, - 11773, - 11792, - 11814, - 11831, - 11852, - 11864, - 11887, - 11896, + 10744, + 10755, + 10774, + 10792, + 10813, + 10838, + 10850, + 10872, + 10892, + 10901, + 10921, + 10945, + 10975, + 10985, + 11004, + 11034, + 11060, + 11089, + 11112, + 11138, + 11164, + 11193, + 11199, + 11222, + 11247, + 11273, + 11296, + 11306, + 11328, + 11348, + 11368, + 11379, + 11393, + 11411, + 11434, + 11460, + 11485, + 11506, + 11526, + 11540, + 11555, + 11569, + 11584, + 11601, + 11619, + 11633, + 11648, + 11662, + 11677, + 11694, + 11712, + 11725, + 11737, + 11749, + 11762, + 11775, + 11800, + 11819, + 11841, + 11858, + 11879, + 11891, 11914, - 11933, - 11949, - 11969, - 11989, - 11997, - 12022, - 12052, - 12082, - 12115, - 12139, - 12157, - 12178, - 12207, - 12233, - 12245, + 11923, + 11941, + 11960, + 11976, + 11996, + 12016, + 12024, + 12049, + 12079, + 12109, + 12142, + 12166, + 12184, + 12205, + 12234, 12260, - 12273, - 12289, - 12301, + 12272, + 12287, + 12300, 12316, - 12335, - 12348, - 12364, - 12378, - 12393, - 12411, - 12432, - 12457, - 12464, - 12478, - 12486, - 12493, - 12501, - 12511, - 12522, - 12550, - 12576, - 12597, - 12619, - 12640, - 12662, - 12688, + 12328, + 12343, + 12362, + 12375, + 12391, + 12405, + 12420, + 12438, + 12459, + 12484, + 12491, + 12505, + 12513, + 12520, + 12528, + 12538, + 12549, + 12577, + 12603, + 12624, + 12646, + 12667, + 12689, 12715, - 12741, + 12742, 12768, - 12792, - 12817, - 12841, - 12866, + 12795, + 12819, + 12844, + 12868, 12893, - 12921, - 12945, + 12920, + 12948, 12972, - 12998, - 13027, - 13061, - 13094, - 13128, - 13149, - 13172, - 13198, - 13221, - 13247, - 13270, - 13296, - 13320, - 13344, - 13372, - 13400, - 13426, - 13455, - 13484, - 13517, - 13542, - 13558, - 13580, - 13592, - 13602, - 13616, - 13630, - 13652, - 13665, - 13681, - 13698, - 13718, - 13746, - 13770, + 12999, + 13025, + 13054, + 13088, + 13121, + 13155, + 13176, + 13199, + 13225, + 13248, + 13274, + 13297, + 13323, + 13347, + 13371, + 13399, + 13427, + 13453, + 13482, + 13511, + 13544, + 13569, + 13585, + 13607, + 13619, + 13629, + 13643, + 13657, + 13679, + 13692, + 13708, + 13725, + 13745, + 13773, 13797, - 13814, - 13828, - 13852, - 13870, - 13891, - 13902, - 13916, - 13940, - 13953, - 13974, - 13996, - 14021, - 14038, - 14054, - 14067, - 14083, - 14102, - 14124, - 14138, - 14157, - 14173, - 14187, - 14204, - 14228, - 14254, - 14272, - 14295, - 14317, - 14350, + 13824, + 13841, + 13855, + 13879, + 13897, + 13918, + 13929, + 13943, + 13967, + 13980, + 14001, + 14023, + 14048, + 14065, + 14081, + 14094, + 14110, + 14134, + 14153, + 14175, + 14189, + 14208, + 14224, + 14238, + 14255, + 14279, + 14305, + 14323, + 14346, 14368, - 14389, - 14415, - 14446, - 14479, - 14498, - 14520, - 14546, - 14574, + 14401, + 14419, + 14440, + 14466, + 14497, + 14530, + 14549, + 14571, 14597, - 14619, - 14640, - 14662, - 14684, - 14708, - 14729, - 14749, - 14772, - 14788, - 14812, - 14826, - 14851, - 14874, - 14900, - 14928, - 14948, - 14971, - 14990, - 15012, - 15027, - 15046, - 15065, - 15081, - 15100, - 15127, - 15157, - 15187, - 15214, - 15244, - 15274, - 15293, + 14625, + 14648, + 14670, + 14691, + 14713, + 14735, + 14759, + 14780, + 14800, + 14823, + 14839, + 14863, + 14877, + 14902, + 14925, + 14951, + 14979, + 14999, + 15022, + 15041, + 15063, + 15078, + 15097, + 15116, + 15132, + 15151, + 15178, + 15208, + 15238, + 15265, + 15295, 15325, - 15357, - 15390, - 15423, - 15455, - 15476, - 15508, - 15532, + 15344, + 15376, + 15408, + 15441, + 15474, + 15506, + 15527, 15559, - 15587, - 15618, - 15649, - 15672, - 15698, - 15726, - 15757, - 15785, - 15816, - 15847, - 15878, - 15899, - 15923, - 15947, - 15971, - 15994, - 16009, - 16027, - 16050, - 16063, - 16074, - 16089, - 16126, - 16163, - 16190, - 16205, - 16219, - 16236, - 16258, + 15583, + 15610, + 15638, + 15669, + 15700, + 15723, + 15749, + 15777, + 15808, + 15836, + 15867, + 15898, + 15929, + 15950, + 15974, + 15998, + 16022, + 16045, + 16060, + 16078, + 16101, + 16114, + 16125, + 16140, + 16177, + 16214, + 16241, + 16256, 16270, 16287, - 16306, - 16328, - 16353, - 16378, - 16403, - 16431, - 16459, - 16497, - 16538, - 16569, - 16597, - 16628, - 16653, - 16681, - 16709, - 16724, - 16739, - 16757, - 16783, - 16812, - 16838, - 16867, - 16896, - 16916, - 16935, - 16968, - 17001, - 17017, - 17038, - 17056, - 17072, - 17088, - 17112, - 17134, - 17154, - 17168, - 17192, - 17214, - 17244, - 17270, - 17294, - 17320, - 17333, - 17346, - 17361, - 17377, - 17402, - 17427, - 17457, - 17485, - 17515, - 17543, - 17571, - 17595, - 17606, - 17617, - 17628, - 17650, - 17672, - 17686, - 17702, - 17718, - 17736, - 17755, + 16309, + 16321, + 16338, + 16357, + 16379, + 16404, + 16429, + 16454, + 16482, + 16510, + 16548, + 16589, + 16620, + 16648, + 16679, + 16704, + 16732, + 16760, + 16775, + 16790, + 16808, + 16834, + 16863, + 16889, + 16918, + 16947, + 16967, + 16986, + 17019, + 17052, + 17068, + 17089, + 17107, + 17123, + 17139, + 17163, + 17185, + 17205, + 17219, + 17243, + 17265, + 17295, + 17321, + 17345, + 17371, + 17384, + 17397, + 17412, + 17428, + 17453, + 17478, + 17508, + 17536, + 17566, + 17594, + 17622, + 17646, + 17657, + 17668, + 17679, + 17701, + 17723, + 17737, + 17753, + 17769, 17787, - 17799, - 17814, - 17837, - 17863, - 17886, - 17912, - 17931, - 17952, - 17974, - 17996, - 18018, - 18040, - 18062, - 18084, - 18117, - 18150, - 18178, - 18207, - 18237, - 18265, - 18295, - 18323, - 18354, - 18387, - 18412, - 18440, - 18464, + 17806, + 17838, + 17850, + 17865, + 17888, + 17914, + 17937, + 17963, + 17982, + 18003, + 18025, + 18047, + 18069, + 18091, + 18113, + 18135, + 18168, + 18201, + 18229, + 18258, + 18288, + 18316, + 18346, + 18374, + 18405, + 18438, + 18463, 18491, - 18534, - 18580, - 18616, - 18649, - 18685, - 18708, - 18745, - 18782, - 18820, - 18859, - 18886, - 18920, - 18957, - 18977, - 18999, - 19016, - 19036, - 19061, - 19089, - 19113, + 18515, + 18542, + 18585, + 18631, + 18667, + 18700, + 18736, + 18759, + 18796, + 18833, + 18871, + 18910, + 18937, + 18971, + 19008, + 19028, + 19050, + 19067, + 19087, + 19112, 19140, - 19166, - 19182, - 19201, - 19213, - 19228, - 19240, - 19255, - 19267, - 19282, - 19295, - 19311, - 19328, - 19348, - 19366, - 19387, - 19405, - 19426, - 19447, - 19471, - 19493, - 19518, - 19533, - 19551, - 19567, - 19586, + 19164, + 19191, + 19217, + 19233, + 19252, + 19264, + 19279, + 19291, + 19306, + 19318, + 19333, + 19346, + 19362, + 19379, + 19399, + 19417, + 19438, + 19456, + 19477, + 19498, + 19522, + 19544, + 19569, + 19584, 19602, - 19621, - 19640, - 19661, - 19677, - 19696, - 19715, - 19737, - 19754, - 19774, - 19794, - 19817, - 19840, - 19857, - 19877, - 19897, - 19923, - 19951, - 19977, - 19997, - 20020, - 20044, - 20069, - 20091, - 20113, - 20133, - 20151, - 20172, - 20190, - 20213, - 20232, - 20255, - 20278, - 20297, - 20317, - 20337, - 20363, - 20394, - 20425, - 20453, - 20486, - 20512, - 20543, - 20567, - 20595, - 20619, - 20635, - 20652, - 20669, - 20685, - 20717, - 20749, - 20783, - 20817, - 20836, - 20860, - 20874, - 20891, - 20908, - 20928, - 20947, - 20977, - 21007, - 21037, - 21068, + 19618, + 19637, + 19653, + 19672, + 19691, + 19712, + 19728, + 19747, + 19766, + 19788, + 19805, + 19825, + 19845, + 19868, + 19891, + 19908, + 19928, + 19948, + 19974, + 20002, + 20028, + 20048, + 20071, + 20095, + 20120, + 20142, + 20164, + 20184, + 20202, + 20223, + 20241, + 20264, + 20283, + 20306, + 20329, + 20348, + 20368, + 20388, + 20414, + 20445, + 20476, + 20504, + 20537, + 20563, + 20594, + 20618, + 20646, + 20670, + 20686, + 20703, + 20720, + 20736, + 20768, + 20800, + 20834, + 20868, + 20887, + 20911, + 20925, + 20942, + 20959, + 20979, + 20998, + 21028, + 21058, 21088, - 21112, - 21127, - 21145, - 21162, - 21194, - 21226, - 21258, - 21291, - 21322, - 21353, - 21379, - 21405, - 21433, - 21464, - 21487, - 21513, + 21119, + 21139, + 21163, + 21178, + 21196, + 21213, + 21245, + 21277, + 21309, + 21342, + 21373, + 21404, + 21430, + 21456, + 21484, + 21515, 21538, 21564, - 21587, - 21616, - 21650, - 21675, - 21695, - 21717, - 21738, - 21775, - 21802, - 21827, - 21855, - 21881, - 21901, - 21914, - 21930, - 21951, - 21975, - 21994, - 22016, - 22038, - 22063, - 22083, - 22106, - 22135, - 22167, - 22191, - 22216, + 21589, + 21615, + 21638, + 21667, + 21701, + 21726, + 21746, + 21768, + 21789, + 21826, + 21853, + 21878, + 21906, + 21932, + 21952, + 21965, + 21981, + 22002, + 22026, + 22045, + 22067, + 22089, + 22114, + 22134, + 22157, + 22186, + 22218, 22242, - 22266, - 22298, - 22319, - 22343, - 22362, - 22376, - 22403, - 22421, - 22442, - 22466, - 22484, - 22496, - 22509, - 22530, - 22561, - 22573, - 22600, - 22627, - 22641, - 22655, - 22672, - 22695, - 22709, + 22267, + 22293, + 22317, + 22349, + 22370, + 22394, + 22413, + 22427, + 22454, + 22472, + 22493, + 22517, + 22535, + 22547, + 22560, + 22581, + 22612, + 22624, + 22651, + 22678, + 22692, + 22706, 22723, - 22737, - 22754, - 22768, - 22793, - 22818, - 22846, - 22866, - 22887, - 22911, - 22933, - 22958, - 22978, + 22746, + 22760, + 22774, + 22788, + 22805, + 22819, + 22844, + 22869, + 22897, + 22917, + 22938, + 22962, + 22984, 23009, - 23032, - 23054, - 23075, - 23093, - 23114, - 23143, - 23175, - 23204, - 23236, - 23260, + 23029, + 23060, + 23083, + 23105, + 23126, + 23144, + 23165, + 23194, + 23226, + 23255, 23287, - 23312, - 23340, - 23366, - 23395, - 23419, + 23311, + 23338, + 23363, + 23391, + 23417, 23446, - 23475, - 23503, - 23524, - 23545, - 23571, - 23599, - 23624, - 23654, - 23687, - 23719, - 23742, - 23768, - 23783, - 23798, - 23816, - 23836, - 23855, - 23875, - 23890, - 23908, - 23929, - 23953, - 23975, - 24001, - 24022, - 24042, - 24058, - 24077, - 24101, - 24123, + 23470, + 23497, + 23526, + 23554, + 23575, + 23596, + 23622, + 23650, + 23675, + 23705, + 23738, + 23770, + 23793, + 23819, + 23834, + 23849, + 23867, + 23887, + 23906, + 23926, + 23941, + 23959, + 23980, + 24004, + 24026, + 24052, + 24073, + 24093, + 24109, + 24128, 24152, - 24181, - 24205, - 24227, - 24251, - 24275, - 24298, + 24174, + 24203, + 24232, + 24256, + 24278, + 24302, 24326, - 24352, - 24382, - 24410, - 24429, - 24459, - 24487, - 24521, - 24555, - 24575, - 24598, - 24620, - 24640, - 24663, - 24685, - 24706, - 24730, - 24752, - 24777, - 24797, - 24820, - 24842, - 24863, - 24887, - 24912, - 24939, - 24965, - 24991, - 25020, - 25048, - 25070, - 25098, - 25126, - 25154, - 25171, - 25186, - 25204, - 25220, - 25238, - 25262, - 25286, - 25310, - 25334, - 25358, - 25383, - 25408, - 25433, - 25440, - 25450, - 25462, - 25477, - 25498, - 25527, - 25557, - 25586, - 25616, - 25636, - 25665, - 25692, - 25715, - 25747, - 25777, - 25793, - 25802, - 25812, - 25821, - 25837, - 25852, - 25862, - 25871, - 25881, - 25893, - 25912, - 25927, - 25945, - 25967, - 25976, - 25986, + 24349, + 24377, + 24403, + 24433, + 24461, + 24480, + 24510, + 24538, + 24572, + 24606, + 24626, + 24649, + 24671, + 24691, + 24714, + 24736, + 24757, + 24781, + 24803, + 24828, + 24848, + 24871, + 24893, + 24914, + 24938, + 24963, + 24990, + 25016, + 25042, + 25071, + 25099, + 25121, + 25149, + 25177, + 25205, + 25222, + 25237, + 25255, + 25271, + 25289, + 25313, + 25337, + 25361, + 25385, + 25409, + 25434, + 25459, + 25484, + 25491, + 25501, + 25513, + 25528, + 25549, + 25578, + 25608, + 25637, + 25667, + 25687, + 25716, + 25743, + 25766, + 25798, + 25828, + 25844, + 25853, + 25863, + 25872, + 25888, + 25903, + 25913, + 25922, + 25932, + 25944, + 25963, + 25978, 25996, - 26007, - 26019, - 26032, - 26044, - 26065, - 26088, - 26112, - 26132, - 26153, - 26176, - 26202, - 26226, - 26259, - 26295, - 26322, - 26343, - 26367, - 26387, - 26398, - 26412, - 26433, - 26451, + 26018, + 26027, + 26037, + 26047, + 26058, + 26070, + 26083, + 26095, + 26116, + 26139, + 26163, + 26183, + 26204, + 26227, + 26253, + 26277, + 26310, + 26346, + 26373, + 26394, + 26418, + 26438, + 26449, 26463, - 26476, - 26498, - 26513, - 26525, - 26541, - 26560, - 26587, - 26613, - 26622, - 26642, - 26654, - 26680, - 26699, - 26719, - 26740, - 26751, - 26773, - 26797, - 26809, + 26484, + 26502, + 26514, + 26527, + 26549, + 26564, + 26576, + 26592, + 26611, + 26638, + 26664, + 26673, + 26693, + 26705, + 26731, + 26750, + 26770, + 26791, + 26802, 26824, - 26838, - 26858, - 26881, - 26891, - 26904, - 26921, - 26941, - 26953, - 26970, - 26981, - 26993, - 27002, - 27014, - 27029, - 27058, - 27086, - 27108, - 27132, - 27154, - 27170, - 27191, - 27220, - 27237, - 27263, - 27282, - 27310, - 27326, - 27335, - 27345, - 27354, - 27364, - 27378, - 27393, - 27407, - 27422, - 27439, - 27457, - 27469, - 27482, - 27496, + 26848, + 26860, + 26875, + 26889, + 26909, + 26932, + 26942, + 26955, + 26972, + 26992, + 27004, + 27021, + 27032, + 27044, + 27053, + 27065, + 27080, + 27109, + 27137, + 27159, + 27183, + 27205, + 27221, + 27242, + 27271, + 27288, + 27314, + 27333, + 27361, + 27377, + 27386, + 27396, + 27405, + 27415, + 27429, + 27444, + 27458, + 27473, + 27490, 27508, - 27524, - 27538, - 27555, - 27566, - 27599, - 27620, - 27642, - 27663, - 27685, - 27700, - 27733, - 27747, - 27761, - 27778, - 27789, - 27805, - 27828, - 27854, - 27877, - 27903, - 27929, - 27945, - 27955, - 27981, - 28004, - 28036, - 28067, - 28096, - 28124, - 28155, - 28183, - 28217, - 28250, - 28281, - 28311, - 28319, - 28327, - 28338, - 28346, - 28354, - 28365, - 28377, - 28392, - 28409, - 28430, - 28442, - 28454, - 28469, + 27520, + 27533, + 27547, + 27559, + 27575, + 27589, + 27606, + 27617, + 27650, + 27671, + 27693, + 27714, + 27736, + 27751, + 27784, + 27798, + 27812, + 27829, + 27840, + 27856, + 27879, + 27905, + 27928, + 27954, + 27980, + 27996, + 28006, + 28032, + 28055, + 28087, + 28118, + 28147, + 28175, + 28206, + 28234, + 28268, + 28301, + 28332, + 28362, + 28370, + 28378, + 28389, + 28397, + 28405, + 28416, + 28428, + 28443, + 28460, 28481, 28493, - 28508, - 28525, - 28545, - 28567, - 28592, - 28613, - 28632, - 28651, - 28671, - 28696, - 28721, - 28746, - 28771, - 28783, - 28796, - 28808, - 28821, - 28836, - 28852, - 28871, - 28895, - 28915, - 28935, - 28955, - 28974, - 28993, - 29010, - 29027, - 29051, - 29079, - 29105, - 29131, - 29144, - 29163, + 28505, + 28520, + 28532, + 28544, + 28559, + 28576, + 28596, + 28618, + 28643, + 28664, + 28683, + 28702, + 28722, + 28747, + 28772, + 28797, + 28822, + 28834, + 28847, + 28859, + 28872, + 28887, + 28903, + 28922, + 28946, + 28966, + 28986, + 29006, + 29025, + 29044, + 29061, + 29078, + 29102, + 29130, + 29156, 29182, - 29199, - 29216, - 29244, - 29270, - 29296, - 29313, - 29328, - 29344, - 29363, - 29382, - 29400, - 29418, - 29440, - 29462, - 29492, - 29508, - 29532, - 29551, - 29580, + 29195, + 29214, + 29233, + 29250, + 29267, + 29295, + 29321, + 29347, + 29364, + 29379, + 29395, + 29414, + 29433, + 29451, + 29469, + 29491, + 29513, + 29543, + 29573, 29589, - 29601, - 29620, - 29642, - 29663, - 29692, - 29719, - 29750, - 29780, - 29822, - 29854, - 29884, - 29917, - 29948, - 29970, - 29988, - 30009, - 30035, - 30064, - 30105, - 30141, - 30172, - 30206, - 30235, - 30255, - 30285, - 30308, + 29613, + 29632, + 29661, + 29670, + 29682, + 29701, + 29723, + 29744, + 29773, + 29800, + 29831, + 29861, + 29903, + 29935, + 29965, + 29998, + 30029, + 30051, + 30069, + 30090, + 30116, + 30145, + 30186, + 30222, + 30253, + 30287, + 30316, 30336, - 30367, - 30410, + 30366, + 30389, + 30417, 30448, - 30481, - 30517, - 30551, - 30576, - 30603, - 30623, - 30644, - 30666, + 30491, + 30529, + 30562, + 30598, + 30632, + 30657, 30684, - 30705, - 30724, - 30746, - 30764, - 30785, - 30804, - 30826, - 30846, - 30867, + 30704, + 30725, + 30747, + 30765, + 30786, + 30805, + 30827, + 30845, + 30866, 30885, - 30906, - 30925, - 30947, - 30965, - 30986, - 31005, - 31027, - 31048, - 31070, - 31091, - 31113, - 31131, - 31152, - 31171, - 31193, - 31211, - 31232, - 31251, - 31273, - 31293, - 31314, + 30907, + 30927, + 30948, + 30966, + 30987, + 31006, + 31028, + 31046, + 31067, + 31086, + 31108, + 31129, + 31151, + 31172, + 31194, + 31212, + 31233, + 31252, + 31274, + 31292, + 31313, 31332, - 31353, - 31372, - 31394, - 31412, - 31433, - 31452, - 31474, - 31495, - 31517, - 31538, - 31560, - 31578, - 31599, - 31618, - 31640, - 31658, - 31679, - 31698, - 31720, - 31740, - 31761, + 31354, + 31374, + 31395, + 31413, + 31434, + 31453, + 31475, + 31493, + 31514, + 31533, + 31555, + 31576, + 31598, + 31619, + 31641, + 31659, + 31680, + 31699, + 31721, + 31739, + 31760, 31779, - 31800, - 31819, - 31841, - 31859, - 31880, - 31899, - 31921, - 31942, - 31964, - 31985, - 32007, - 32025, - 32046, - 32065, - 32087, - 32105, - 32126, - 32145, - 32167, - 32187, - 32208, + 31801, + 31821, + 31842, + 31860, + 31881, + 31900, + 31922, + 31940, + 31961, + 31980, + 32002, + 32023, + 32045, + 32066, + 32088, + 32106, + 32127, + 32146, + 32168, + 32186, + 32207, 32226, - 32247, - 32266, - 32288, - 32306, - 32327, - 32346, - 32368, - 32389, - 32411, - 32431, - 32452, - 32472, - 32493, - 32513, - 32534, - 32554, - 32575, - 32601, - 32619, - 32638, + 32248, + 32268, + 32289, + 32307, + 32328, + 32347, + 32369, + 32387, + 32408, + 32427, + 32449, + 32470, + 32492, + 32512, + 32533, + 32553, + 32574, + 32594, + 32615, + 32635, 32656, - 32675, - 32693, - 32712, - 32730, - 32749, - 32767, - 32786, - 32807, - 32828, - 32849, - 32873, - 32898, - 32922, - 32948, - 32975, - 33000, - 33026, - 33050, - 33074, - 33098, - 33112, - 33126, - 33143, - 33166, - 33192, - 33215, - 33241, - 33267, - 33285, - 33306, - 33337, - 33368, - 33389, - 33413, - 33445, - 33472, - 33493, - 33517, - 33545, + 32682, + 32700, + 32719, + 32737, + 32756, + 32774, + 32793, + 32811, + 32830, + 32848, + 32867, + 32888, + 32909, + 32930, + 32954, + 32979, + 33003, + 33029, + 33056, + 33081, + 33107, + 33131, + 33155, + 33179, + 33193, + 33207, + 33224, + 33247, + 33273, + 33296, + 33322, + 33348, + 33366, + 33387, + 33418, + 33449, + 33470, + 33494, + 33526, + 33553, 33574, - 33604, - 33633, - 33665, - 33694, - 33725, - 33759, - 33798, - 33836, - 33875, - 33901, - 33932, - 33963, - 33994, - 34023, - 34056, - 34087, - 34121, - 34155, - 34190, - 34224, - 34259, - 34294, - 34330, - 34366, - 34403, - 34439, - 34476, - 34514, - 34538, - 34565, + 33598, + 33626, + 33655, + 33685, + 33714, + 33746, + 33775, + 33806, + 33840, + 33879, + 33917, + 33956, + 33982, + 34013, + 34044, + 34075, + 34104, + 34137, + 34168, + 34202, + 34236, + 34271, + 34305, + 34340, + 34375, + 34411, + 34447, + 34484, + 34520, + 34557, 34595, - 34633, - 34682, - 34723, - 34740, - 34750, - 34771, - 34782, - 34794, - 34805, - 34817, - 34828, - 34840, - 34862, - 34885, + 34619, + 34646, + 34676, + 34714, + 34763, + 34804, + 34821, + 34831, + 34852, + 34863, + 34875, + 34886, 34898, - 34912, - 34923, - 34935, - 34946, - 34958, - 34972, - 34987, + 34909, + 34921, + 34943, + 34966, + 34979, + 34993, 35004, - 35017, - 35031, - 35047, - 35066, - 35089, - 35111, - 35131, - 35152, - 35172, - 35193, - 35213, - 35234, - 35254, - 35275, - 35295, - 35316, - 35330, - 35347, - 35364, - 35384, - 35407, - 35432, - 35440, - 35452, - 35464, - 35482, - 35496, - 35514, + 35016, + 35027, + 35039, + 35053, + 35068, + 35085, + 35098, + 35112, + 35128, + 35147, + 35170, + 35192, + 35212, + 35233, + 35253, + 35274, + 35294, + 35315, + 35335, + 35356, + 35376, + 35397, + 35411, + 35428, + 35445, + 35465, + 35488, + 35513, + 35521, 35533, - 35551, - 35568, - 35585, - 35600, - 35623, - 35641, - 35656, - 35680, + 35545, + 35563, + 35577, + 35595, + 35614, + 35632, + 35649, + 35666, + 35681, 35704, - 35723, - 35738, - 35768, - 35787, - 35807, - 35826, - 35846, - 35873, - 35893, - 35908, - 35928, - 35946, - 35961, - 35986, - 36013, - 36032, - 36045, - 36059, - 36073, - 36085, - 36099, + 35722, + 35737, + 35761, + 35785, + 35804, + 35819, + 35849, + 35868, + 35888, + 35907, + 35927, + 35954, + 35974, + 35989, + 36009, + 36027, + 36042, + 36067, + 36094, 36113, - 36127, - 36155, - 36184, - 36212, - 36241, - 36259, - 36276, + 36126, + 36140, + 36154, + 36166, + 36180, + 36194, + 36208, + 36236, + 36265, 36293, - 36313, - 36343, + 36322, + 36340, + 36357, 36374, - 36404, - 36435, - 36447, - 36463, - 36481, - 36499, - 36518, - 36536, - 36557, - 36578, - 36600, - 36619, - 36641, - 36663, - 36686, - 36704, - 36724, - 36743, - 36764, + 36394, + 36424, + 36455, + 36485, + 36516, + 36528, + 36544, + 36562, + 36580, + 36599, + 36617, + 36638, + 36659, + 36681, + 36700, + 36722, + 36744, + 36767, 36785, - 36807, - 36819, - 36835, - 36851, - 36873, - 36887, - 36903, - 36924, - 36948, - 36967, - 36987, - 37004, - 37016, - 37034, - 37050, - 37069, - 37089, - 37101, - 37111, - 37136, - 37158, - 37184, - 37208, - 37234, - 37255, - 37276, - 37300, - 37325, - 37341, - 37371, - 37402, - 37434, - 37461, - 37489, - 37516, - 37544, - 37571, - 37599, - 37627, - 37656, - 37685, - 37714, - 37744, - 37773, - 37803, - 37832, - 37862, - 37891, - 37921, - 37951, - 37982, - 38013, - 38044, - 38076, - 38104, - 38133, - 38161, - 38190, - 38213, - 38237, - 38260, - 38284, - 38304, - 38327, - 38350, - 38375, - 38400, - 38432, - 38451, - 38486, - 38505, - 38527, - 38547, - 38570, - 38589, - 38611, - 38631, - 38654, - 38673, - 38697, - 38720, - 38745, - 38769, - 38791, - 38811, - 38834, - 38854, - 38879, - 38903, - 38929, - 38954, - 38977, - 38998, - 39022, - 39041, - 39063, - 39083, - 39106, - 39125, - 39147, - 39167, - 39190, - 39209, - 39233, - 39256, - 39281, - 39305, - 39327, - 39347, - 39370, - 39390, - 39415, - 39439, - 39465, - 39490, - 39513, - 39534, - 39558, - 39577, - 39599, - 39619, - 39642, - 39661, - 39683, - 39703, - 39726, - 39745, - 39769, - 39792, - 39817, - 39841, - 39863, - 39883, - 39906, - 39926, - 39951, - 39975, - 40001, - 40026, - 40049, - 40070, - 40094, - 40113, - 40135, - 40155, - 40178, - 40197, - 40219, - 40239, - 40262, - 40281, - 40305, - 40328, - 40353, - 40377, - 40399, - 40419, - 40442, - 40462, - 40487, - 40511, - 40537, - 40562, - 40585, - 40606, - 40630, - 40660, - 40689, - 40720, - 40750, - 40776, - 40805, + 36805, + 36824, + 36845, + 36866, + 36888, + 36900, + 36916, + 36932, + 36954, + 36968, + 36984, + 37005, + 37029, + 37048, + 37068, + 37085, + 37097, + 37115, + 37131, + 37150, + 37170, + 37182, + 37192, + 37217, + 37239, + 37265, + 37289, + 37315, + 37336, + 37357, + 37381, + 37406, + 37422, + 37452, + 37483, + 37515, + 37542, + 37570, + 37597, + 37625, + 37652, + 37680, + 37708, + 37737, + 37766, + 37795, + 37825, + 37854, + 37884, + 37913, + 37943, + 37972, + 38002, + 38032, + 38063, + 38094, + 38125, + 38157, + 38185, + 38214, + 38242, + 38271, + 38294, + 38318, + 38341, + 38365, + 38385, + 38408, + 38431, + 38456, + 38481, + 38513, + 38532, + 38567, + 38586, + 38608, + 38628, + 38651, + 38670, + 38692, + 38712, + 38735, + 38754, + 38778, + 38801, + 38826, + 38850, + 38872, + 38892, + 38915, + 38935, + 38960, + 38984, + 39010, + 39035, + 39058, + 39079, + 39103, + 39122, + 39144, + 39164, + 39187, + 39206, + 39228, + 39248, + 39271, + 39290, + 39314, + 39337, + 39362, + 39386, + 39408, + 39428, + 39451, + 39471, + 39496, + 39520, + 39546, + 39571, + 39594, + 39615, + 39639, + 39658, + 39680, + 39700, + 39723, + 39742, + 39764, + 39784, + 39807, + 39826, + 39850, + 39873, + 39898, + 39922, + 39944, + 39964, + 39987, + 40007, + 40032, + 40056, + 40082, + 40107, + 40130, + 40151, + 40175, + 40194, + 40216, + 40236, + 40259, + 40278, + 40300, + 40320, + 40343, + 40362, + 40386, + 40409, + 40434, + 40458, + 40480, + 40500, + 40523, + 40543, + 40568, + 40592, + 40618, + 40643, + 40666, + 40687, + 40711, + 40741, + 40770, + 40801, 40831, - 40860, - 40888, - 40919, - 40947, - 40978, - 41006, - 41037, - 41065, - 41096, - 41122, - 41151, + 40857, + 40886, + 40912, + 40941, + 40969, + 41000, + 41028, + 41059, + 41087, + 41118, + 41146, 41177, - 41206, - 41234, - 41265, - 41293, - 41324, - 41352, - 41383, - 41411, - 41442, - 41468, - 41497, + 41203, + 41232, + 41258, + 41287, + 41315, + 41346, + 41374, + 41405, + 41433, + 41464, + 41492, 41523, - 41552, - 41580, - 41611, - 41639, - 41670, - 41698, - 41729, - 41757, - 41788, - 41811, - 41835, - 41858, - 41876, - 41897, - 41910, - 41929, - 41958, - 41975, - 41995, - 42016, - 42029, - 42040, - 42055, - 42073, - 42101, - 42115, - 42130, - 42144, - 42159, - 42173, - 42188, - 42202, - 42217, - 42234, - 42252, - 42266, - 42281, - 42295, - 42310, - 42324, - 42339, - 42353, - 42368, - 42385, - 42403, - 42417, - 42432, - 42446, - 42461, - 42475, - 42490, - 42504, - 42519, - 42536, - 42554, - 42573, - 42586, - 42608, - 42622, + 41549, + 41578, + 41604, + 41633, + 41661, + 41692, + 41720, + 41751, + 41779, + 41810, + 41838, + 41869, + 41892, + 41916, + 41939, + 41957, + 41978, + 41991, + 42010, + 42039, + 42056, + 42076, + 42097, + 42110, + 42121, + 42136, + 42154, + 42182, + 42200, + 42221, + 42235, + 42250, + 42264, + 42279, + 42293, + 42308, + 42322, + 42337, + 42354, + 42372, + 42386, + 42401, + 42415, + 42430, + 42444, + 42459, + 42473, + 42488, + 42505, + 42523, + 42537, + 42552, + 42566, + 42581, + 42595, + 42610, + 42624, 42639, 42656, - 42669, - 42677, - 42686, - 42694, - 42703, - 42711, - 42720, + 42674, + 42693, + 42706, 42728, - 42737, - 42748, - 42760, - 42781, - 42809, - 42833, - 42855, + 42742, + 42759, + 42776, + 42789, + 42797, + 42806, + 42814, + 42823, + 42831, + 42840, + 42848, + 42857, + 42868, 42880, - 42913, - 42956, - 42992, - 43010, - 43023, - 43051, - 43074, - 43098, - 43136, - 43175, - 43221, - 43268, - 43307, - 43347, - 43386, - 43426, - 43449, - 43505, - 43562, - 43611, - 43661, - 43702, - 43744, - 43775, - 43807, - 43831, - 43854, - 43878, - 43906, - 43923, - 43943, - 43957, + 42901, + 42929, + 42953, + 42975, + 43000, + 43033, + 43076, + 43112, + 43130, + 43143, + 43171, + 43194, + 43218, + 43256, + 43295, + 43341, + 43388, + 43427, + 43467, + 43506, + 43546, + 43569, + 43625, + 43682, + 43731, + 43781, + 43822, + 43864, + 43895, + 43927, + 43951, 43974, - 43994, - 44017, + 43998, + 44026, 44043, - 44071, - 44081, - 44091, - 44104, - 44121, - 44141, - 44162, - 44177, - 44193, - 44207, - 44229, - 44246, - 44265, - 44285, - 44305, - 44326, - 44346, - 44368, - 44391, - 44412, - 44421, - 44430, - 44442, - 44452, - 44468, - 44485, - 44503, - 44522, - 44544, - 44564, - 44587, - 44606, - 44628, - 44648, - 44671, - 44690, - 44712, - 44732, - 44755, - 44776, - 44798, - 44817, - 44839, - 44859, - 44882, - 44901, - 44923, - 44943, - 44966, - 44986, - 45009, - 45030, - 45054, - 45074, - 45097, - 45118, - 45142, - 45162, - 45185, - 45206, - 45230, - 45255, - 45276, - 45298, - 45322, - 45349, - 45380, - 45395, - 45426, - 45455, - 45475, - 45498, - 45514, - 45527, - 45558, - 45576, - 45598, - 45620, - 45633, - 45648, - 45663, + 44063, + 44077, + 44094, + 44114, + 44137, + 44163, + 44191, + 44201, + 44211, + 44224, + 44241, + 44261, + 44282, + 44297, + 44313, + 44327, + 44349, + 44366, + 44385, + 44405, + 44425, + 44446, + 44466, + 44488, + 44511, + 44532, + 44541, + 44550, + 44562, + 44572, + 44588, + 44605, + 44623, + 44642, + 44664, + 44684, + 44707, + 44726, + 44748, + 44768, + 44791, + 44810, + 44832, + 44852, + 44875, + 44896, + 44918, + 44937, + 44959, + 44979, + 45002, + 45021, + 45043, + 45063, + 45086, + 45106, + 45129, + 45150, + 45174, + 45194, + 45217, + 45238, + 45262, + 45282, + 45305, + 45326, + 45350, + 45375, + 45396, + 45418, + 45442, + 45469, + 45500, + 45515, + 45546, + 45575, + 45595, + 45618, + 45634, + 45647, 45678, - 45693, - 45708, - 45726, - 45754, - 45775, - 45796, - 45814, - 45836, - 45855, - 45877, - 45900, - 45924, - 45947, - 45971, - 45994, - 46011, - 46032, - 46061, - 46081, - 46095, - 46117, - 46142, - 46156, - 46178, - 46190, - 46210, - 46233, - 46253, - 46284, - 46306, - 46344, + 45696, + 45718, + 45740, + 45753, + 45768, + 45783, + 45798, + 45813, + 45828, + 45846, + 45874, + 45895, + 45916, + 45934, + 45956, + 45975, + 45997, + 46020, + 46044, + 46067, + 46091, + 46114, + 46131, + 46152, + 46181, + 46201, + 46215, + 46237, + 46262, + 46276, + 46298, + 46310, + 46330, + 46353, 46373, - 46413, - 46444, - 46466, - 46488, - 46514, - 46527, - 46546, - 46568, - 46583, - 46599, - 46614, - 46630, - 46645, - 46661, - 46676, - 46692, - 46707, - 46723, - 46743, - 46761, - 46785, - 46807, - 46824, - 46838, - 46856, - 46868, - 46883, - 46898, - 46915, - 46939, - 46963, - 46979, - 46996, - 47009, - 47023, - 47036, - 47050, - 47065, - 47081, - 47094, - 47108, - 47121, - 47135, - 47151, - 47168, - 47184, + 46404, + 46426, + 46464, + 46493, + 46533, + 46564, + 46586, + 46608, + 46634, + 46647, + 46666, + 46688, + 46703, + 46719, + 46734, + 46750, + 46765, + 46781, + 46796, + 46812, + 46827, + 46843, + 46863, + 46881, + 46905, + 46927, + 46944, + 46958, + 46976, + 46988, + 47003, + 47018, + 47035, + 47059, + 47083, + 47099, + 47116, + 47129, + 47143, + 47156, + 47170, + 47185, 47201, 47214, 47228, 47241, - 47272, + 47255, + 47271, + 47288, 47304, - 47343, - 47383, - 47415, - 47448, - 47480, - 47513, - 47527, - 47551, - 47576, - 47591, - 47607, - 47620, - 47634, + 47321, + 47334, + 47348, + 47361, + 47392, + 47424, + 47463, + 47503, + 47535, + 47568, + 47600, + 47633, 47647, - 47661, - 47677, - 47694, - 47710, + 47671, + 47696, + 47711, 47727, 47740, 47754, 47767, 47781, - 47796, - 47812, - 47825, - 47839, - 47852, - 47866, - 47882, - 47899, - 47915, + 47797, + 47814, + 47830, + 47847, + 47860, + 47874, + 47887, + 47901, + 47916, 47932, 47945, 47959, 47972, - 48011, - 48051, + 47986, + 48002, + 48019, + 48035, + 48052, 48065, - 48089, - 48114, - 48129, - 48145, - 48158, - 48172, + 48079, + 48092, + 48131, + 48171, 48185, - 48199, - 48215, - 48232, - 48251, - 48266, - 48282, - 48297, - 48313, - 48328, - 48344, - 48359, - 48375, - 48393, - 48414, - 48439, - 48463, - 48473, - 48484, - 48494, - 48505, - 48518, - 48532, - 48552, - 48562, - 48573, + 48209, + 48234, + 48249, + 48265, + 48278, + 48292, + 48305, + 48319, + 48335, + 48352, + 48371, + 48386, + 48402, + 48417, + 48433, + 48448, + 48464, + 48479, + 48495, + 48513, + 48534, + 48559, 48583, - 48594, + 48593, 48604, - 48615, - 48628, - 48642, - 48655, - 48668, - 48692, - 48726, - 48739, - 48755, - 48779, - 48813, - 48830, - 48853, - 48869, - 48886, - 48902, - 48920, - 48941, - 48960, - 48982, - 48999, - 49018, - 49038, - 49058, - 49073, - 49088, - 49114, - 49129, - 49155, - 49176, - 49197, - 49229, - 49250, - 49282, - 49304, - 49320, - 49339, - 49355, - 49374, - 49390, - 49409, - 49429, - 49446, - 49465, - 49481, - 49500, - 49521, - 49545, - 49568, - 49588, - 49608, - 49646, - 49676, - 49696, - 49734, - 49764, - 49782, - 49803, - 49822, - 49849, - 49869, - 49892, - 49913, - 49937, - 49957, - 49980, - 50002, - 50027, - 50050, - 50076, - 50097, - 50121, - 50141, - 50166, - 50185, - 50207, - 50226, - 50248, - 50278, - 50311, - 50330, - 50352, - 50382, - 50415, - 50440, - 50465, - 50501, - 50526, - 50562, - 50588, - 50608, - 50631, - 50651, - 50674, - 50694, - 50717, - 50731, - 50747, - 50776, - 50806, + 48614, + 48625, + 48638, + 48652, + 48672, + 48682, + 48693, + 48703, + 48714, + 48724, + 48735, + 48748, + 48762, + 48775, + 48788, + 48812, + 48846, + 48859, + 48875, + 48899, + 48933, + 48950, + 48973, + 48989, + 49006, + 49022, + 49040, + 49061, + 49080, + 49102, + 49119, + 49138, + 49158, + 49178, + 49193, + 49208, + 49234, + 49249, + 49275, + 49296, + 49317, + 49349, + 49370, + 49402, + 49424, + 49440, + 49459, + 49475, + 49494, + 49510, + 49529, + 49549, + 49566, + 49585, + 49601, + 49620, + 49641, + 49665, + 49688, + 49708, + 49728, + 49766, + 49796, + 49816, + 49854, + 49884, + 49902, + 49923, + 49942, + 49969, + 49989, + 50012, + 50033, + 50057, + 50077, + 50100, + 50122, + 50147, + 50170, + 50196, + 50217, + 50241, + 50261, + 50286, + 50305, + 50327, + 50346, + 50368, + 50398, + 50431, + 50450, + 50472, + 50502, + 50535, + 50560, + 50585, + 50621, + 50646, + 50682, + 50708, + 50728, + 50751, + 50771, + 50794, + 50814, 50837, - 50872, - 50900, - 50931, - 50961, - 50979, + 50851, + 50867, + 50896, + 50926, + 50957, 50992, - 51005, - 51021, - 51033, - 51046, - 51058, - 51073, - 51086, - 51102, - 51114, - 51131, - 51147, - 51165, - 51182, - 51197, - 51210, - 51226, - 51239, - 51257, - 51274, - 51293, - 51311, - 51327, - 51341, - 51358, - 51370, - 51383, - 51395, - 51410, - 51423, - 51439, - 51451, - 51468, - 51484, - 51502, - 51519, - 51534, - 51547, - 51563, - 51576, - 51594, - 51611, - 51630, - 51648, - 51664, - 51678, - 51695, - 51707, - 51720, - 51732, - 51747, - 51760, - 51776, - 51788, - 51805, - 51821, - 51839, - 51856, - 51871, - 51884, - 51900, - 51913, - 51931, - 51948, - 51967, - 51985, - 52001, - 52015, - 52032, - 52044, - 52057, - 52069, - 52084, - 52097, - 52113, - 52125, - 52142, - 52158, - 52176, - 52193, - 52208, - 52221, - 52237, - 52250, - 52268, - 52285, - 52304, - 52322, - 52338, - 52352, - 52369, - 52391, - 52410, - 52433, - 52455, - 52479, - 52502, - 52521, - 52540, - 52562, - 52583, - 52604, - 52625, - 52646, - 52665, - 52684, - 52706, - 52727, - 52748, - 52769, - 52790, - 52809, - 52828, - 52850, - 52871, - 52892, - 52913, - 52934, - 52958, - 52974, + 51020, + 51051, + 51081, + 51099, + 51112, + 51125, + 51141, + 51153, + 51166, + 51178, + 51193, + 51206, + 51222, + 51234, + 51251, + 51267, + 51285, + 51302, + 51317, + 51330, + 51346, + 51359, + 51377, + 51394, + 51413, + 51431, + 51447, + 51461, + 51478, + 51490, + 51503, + 51515, + 51530, + 51543, + 51559, + 51571, + 51588, + 51604, + 51622, + 51639, + 51654, + 51667, + 51683, + 51696, + 51714, + 51731, + 51750, + 51768, + 51784, + 51798, + 51815, + 51827, + 51840, + 51852, + 51867, + 51880, + 51896, + 51908, + 51925, + 51941, + 51959, + 51976, + 51991, + 52004, + 52020, + 52033, + 52051, + 52068, + 52087, + 52105, + 52121, + 52135, + 52152, + 52164, + 52177, + 52189, + 52204, + 52217, + 52233, + 52245, + 52262, + 52278, + 52296, + 52313, + 52328, + 52341, + 52357, + 52370, + 52388, + 52405, + 52424, + 52442, + 52458, + 52472, + 52489, + 52511, + 52530, + 52553, + 52575, + 52599, + 52622, + 52641, + 52660, + 52682, + 52703, + 52724, + 52745, + 52766, + 52785, + 52804, + 52826, + 52847, + 52868, + 52889, + 52910, + 52929, + 52948, + 52970, 52991, - 53009, - 53023, - 53040, - 53059, - 53081, - 53104, - 53126, - 53150, - 53163, - 53185, - 53204, - 53226, - 53248, - 53266, - 53287, - 53313, - 53342, - 53366, - 53381, - 53396, - 53411, - 53426, - 53446, - 53461, - 53477, - 53493, - 53509, - 53523, - 53545, - 53559, - 53578, - 53599, - 53630, - 53660, - 53683, - 53706, - 53733, - 53747, - 53762, - 53773, - 53785, - 53796, - 53808, - 53821, - 53835, - 53846, - 53858, - 53869, - 53881, - 53895, - 53910, - 53924, - 53939, - 53950, - 53962, - 53973, - 53985, - 53998, - 54012, - 54023, - 54035, - 54046, - 54058, - 54072, - 54087, - 54101, - 54116, - 54127, - 54139, - 54150, - 54162, - 54175, - 54189, - 54200, - 54212, - 54223, - 54235, - 54249, - 54264, - 54291, - 54317, - 54344, - 54371, - 54399, - 54432, - 54460, + 53012, + 53033, + 53054, + 53078, + 53094, + 53111, + 53129, + 53143, + 53160, + 53179, + 53201, + 53224, + 53246, + 53270, + 53283, + 53305, + 53324, + 53346, + 53368, + 53386, + 53407, + 53433, + 53462, + 53486, + 53501, + 53516, + 53531, + 53546, + 53566, + 53581, + 53597, + 53613, + 53629, + 53643, + 53665, + 53679, + 53698, + 53719, + 53750, + 53780, + 53803, + 53826, + 53853, + 53867, + 53882, + 53893, + 53905, + 53916, + 53928, + 53941, + 53955, + 53966, + 53978, + 53989, + 54001, + 54015, + 54030, + 54044, + 54059, + 54070, + 54082, + 54093, + 54105, + 54118, + 54132, + 54143, + 54155, + 54166, + 54178, + 54192, + 54207, + 54221, + 54236, + 54247, + 54259, + 54270, + 54282, + 54295, + 54309, + 54320, + 54332, + 54343, + 54355, + 54369, + 54384, + 54411, + 54437, + 54464, 54491, - 54518, - 54549, - 54577, - 54613, - 54642, - 54671, - 54695, - 54716, - 54753, - 54784, - 54820, - 54856, - 54891, - 54927, - 54963, - 54999, - 55035, - 55070, - 55107, - 55133, - 55160, - 55189, - 55206, - 55226, - 55245, - 55263, - 55284, - 55304, - 55321, - 55341, - 55360, - 55378, - 55399, - 55419, - 55438, - 55458, - 55475, - 55495, - 55514, - 55532, - 55553, - 55573, - 55590, - 55610, - 55629, - 55647, - 55668, - 55688, - 55705, - 55725, - 55744, - 55762, - 55783, - 55803, - 55822, - 55842, - 55859, - 55879, - 55898, - 55916, - 55937, - 55957, - 55974, - 55994, - 56013, - 56031, - 56052, - 56072, - 56089, - 56109, - 56128, - 56146, - 56167, - 56187, - 56206, - 56226, - 56243, - 56263, - 56282, - 56300, - 56321, - 56341, - 56359, - 56380, - 56397, - 56417, - 56436, - 56454, - 56475, - 56495, - 56512, - 56532, - 56551, - 56569, - 56590, - 56610, - 56629, - 56649, - 56667, - 56688, - 56707, - 56729, - 56748, - 56770, - 56789, - 56811, - 56830, - 56852, - 56872, - 56895, - 56915, - 56938, - 56958, - 56981, - 56998, - 57018, - 57037, - 57055, - 57076, - 57096, - 57116, - 57135, + 54519, + 54552, + 54580, + 54611, + 54638, + 54669, + 54697, + 54733, + 54762, + 54791, + 54815, + 54836, + 54873, + 54904, + 54940, + 54976, + 55011, + 55047, + 55083, + 55119, + 55155, + 55190, + 55227, + 55253, + 55280, + 55309, + 55326, + 55346, + 55365, + 55383, + 55404, + 55424, + 55441, + 55461, + 55480, + 55498, + 55519, + 55539, + 55558, + 55578, + 55595, + 55615, + 55634, + 55652, + 55673, + 55693, + 55710, + 55730, + 55749, + 55767, + 55788, + 55808, + 55825, + 55845, + 55864, + 55882, + 55903, + 55923, + 55942, + 55962, + 55979, + 55999, + 56018, + 56036, + 56057, + 56077, + 56094, + 56114, + 56133, + 56151, + 56172, + 56192, + 56209, + 56229, + 56248, + 56266, + 56287, + 56307, + 56326, + 56346, + 56363, + 56383, + 56402, + 56420, + 56441, + 56461, + 56479, + 56500, + 56517, + 56537, + 56556, + 56574, + 56595, + 56615, + 56632, + 56652, + 56671, + 56689, + 56710, + 56730, + 56749, + 56769, + 56787, + 56808, + 56827, + 56849, + 56868, + 56890, + 56909, + 56931, + 56950, + 56972, + 56992, + 57015, + 57035, + 57058, + 57078, + 57101, + 57118, + 57138, 57157, - 57178, - 57197, - 57219, - 57238, - 57260, - 57289, - 57311, - 57333, + 57175, + 57196, + 57216, + 57236, + 57255, + 57277, + 57298, + 57317, + 57339, 57358, - 57379, - 57402, - 57420, - 57441, - 57460, - 57482, - 57501, - 57523, - 57543, - 57566, - 57584, - 57605, - 57624, - 57646, - 57665, - 57687, - 57707, - 57730, - 57748, - 57769, - 57788, - 57810, - 57829, - 57851, - 57871, - 57894, - 57913, - 57935, - 57953, - 57974, - 57993, - 58015, - 58034, - 58056, - 58076, - 58099, - 58118, - 58140, - 58160, - 58183, - 58203, - 58226, - 58248, - 58272, - 58295, - 58321, - 58339, - 58360, - 58379, - 58401, - 58423, - 58446, - 58470, - 58493, - 58518, - 58542, - 58560, - 58581, - 58600, - 58622, - 58644, - 58667, - 58690, - 58714, - 58732, - 58753, - 58772, - 58794, - 58816, - 58839, - 58862, - 58886, - 58904, - 58925, - 58944, - 58966, - 58988, - 59011, - 59034, - 59058, - 59080, - 59104, - 59127, - 59153, - 59172, - 59192, - 59211, - 59231, - 59250, - 59270, - 59289, - 59309, - 59337, - 59359, - 59384, - 59408, + 57380, + 57409, + 57431, + 57453, + 57478, + 57499, + 57522, + 57540, + 57561, + 57580, + 57602, + 57621, + 57643, + 57663, + 57686, + 57704, + 57725, + 57744, + 57766, + 57785, + 57807, + 57827, + 57850, + 57868, + 57889, + 57908, + 57930, + 57949, + 57971, + 57991, + 58014, + 58033, + 58055, + 58073, + 58094, + 58113, + 58135, + 58154, + 58176, + 58196, + 58219, + 58238, + 58260, + 58280, + 58303, + 58323, + 58346, + 58368, + 58392, + 58415, + 58441, + 58459, + 58480, + 58499, + 58521, + 58543, + 58566, + 58590, + 58613, + 58638, + 58662, + 58680, + 58701, + 58720, + 58742, + 58764, + 58787, + 58810, + 58834, + 58852, + 58873, + 58892, + 58914, + 58936, + 58959, + 58982, + 59006, + 59024, + 59045, + 59064, + 59086, + 59108, + 59131, + 59154, + 59178, + 59200, + 59224, + 59247, + 59273, + 59292, + 59312, + 59331, + 59351, + 59370, + 59390, + 59409, 59429, - 59450, - 59471, - 59492, - 59513, - 59534, - 59555, - 59576, - 59597, - 59618, - 59639, - 59660, - 59681, - 59702, - 59723, - 59744, - 59766, - 59789, - 59806, - 59827, - 59848, - 59865, - 59878, - 59892, - 59905, - 59919, - 59932, - 59946, - 59962, - 59981, - 60004, - 60026, - 60046, - 60067, - 60087, - 60108, - 60128, - 60149, - 60169, - 60190, - 60210, - 60231, - 60251, - 60272, - 60292, - 60313, - 60333, - 60354, - 60374, - 60395, - 60415, - 60436, - 60456, - 60477, - 60497, - 60518, - 60538, - 60559, - 60579, - 60600, - 60620, - 60641, - 60661, - 60682, - 60701, - 60721, - 60739, - 60758, - 60783, - 60800, - 60834, - 60868, - 60902, - 60913, - 60930, - 60949, - 60969, - 60996, - 61016, - 61035, - 61046, - 61066, - 61080, - 61094, - 61108, - 61122, - 61138, - 61157, - 61171, + 59457, + 59479, + 59504, + 59528, + 59549, + 59570, + 59591, + 59612, + 59633, + 59654, + 59675, + 59696, + 59717, + 59738, + 59759, + 59780, + 59801, + 59822, + 59843, + 59864, + 59886, + 59909, + 59926, + 59947, + 59968, + 59985, + 59998, + 60012, + 60025, + 60039, + 60052, + 60066, + 60082, + 60101, + 60124, + 60146, + 60166, + 60187, + 60207, + 60228, + 60248, + 60269, + 60289, + 60310, + 60330, + 60351, + 60371, + 60392, + 60412, + 60433, + 60453, + 60474, + 60494, + 60515, + 60535, + 60556, + 60576, + 60597, + 60617, + 60638, + 60658, + 60679, + 60699, + 60720, + 60740, + 60761, + 60781, + 60802, + 60821, + 60841, + 60859, + 60878, + 60903, + 60920, + 60954, + 60988, + 61022, + 61033, + 61050, + 61069, + 61089, + 61116, + 61136, + 61155, + 61166, 61186, - 61201, - 61216, - 61230, - 61247, - 61265, - 61280, - 61298, - 61317, - 61331, - 61348, - 61366, - 61381, - 61399, + 61200, + 61214, + 61228, + 61242, + 61258, + 61277, + 61291, + 61306, + 61321, + 61336, + 61350, + 61367, + 61385, + 61400, 61418, - 61432, - 61449, - 61467, - 61482, - 61500, + 61437, + 61451, + 61468, + 61486, + 61501, 61519, - 61533, - 61550, - 61568, - 61583, - 61601, + 61538, + 61552, + 61569, + 61587, + 61602, 61620, - 61634, - 61651, - 61669, - 61684, - 61702, + 61639, + 61653, + 61670, + 61688, + 61703, 61721, - 61735, - 61752, - 61770, - 61785, - 61803, + 61740, + 61754, + 61771, + 61789, + 61804, 61822, - 61836, - 61853, - 61871, - 61886, - 61904, + 61841, + 61855, + 61872, + 61890, + 61905, 61923, - 61937, - 61954, - 61972, - 61987, - 62005, + 61942, + 61956, + 61973, + 61991, + 62006, 62024, - 62042, - 62061, - 62079, - 62098, - 62116, - 62135, - 62153, - 62172, - 62194, + 62043, + 62057, + 62074, + 62092, + 62107, + 62125, + 62144, + 62162, + 62181, + 62199, + 62218, + 62236, + 62255, + 62273, + 62292, + 62314, }; EntryPoints = new IntPtr[EntryPointNameOffsets.Length]; } @@ -5980,14 +5990,14 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_draw_buffers_blend", Version = "", EntryPoint = "glBlendEquationIndexedAMD")] [CLSCompliant(false)] - public static void BlendEquationIndexed(Int32 buf, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend mode) { throw new BindingsNotRewrittenException(); } + public static void BlendEquationIndexed(Int32 buf, OpenTK.Graphics.OpenGL.BlendEquationModeExt mode) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_draw_buffers_blend] /// /// [AutoGenerated(Category = "AMD_draw_buffers_blend", Version = "", EntryPoint = "glBlendEquationIndexedAMD")] [CLSCompliant(false)] - public static void BlendEquationIndexed(UInt32 buf, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend mode) { throw new BindingsNotRewrittenException(); } + public static void BlendEquationIndexed(UInt32 buf, OpenTK.Graphics.OpenGL.BlendEquationModeExt mode) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_draw_buffers_blend] /// @@ -5995,7 +6005,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_draw_buffers_blend", Version = "", EntryPoint = "glBlendEquationSeparateIndexedAMD")] [CLSCompliant(false)] - public static void BlendEquationSeparateIndexed(Int32 buf, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend modeRGB, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend modeAlpha) { throw new BindingsNotRewrittenException(); } + public static void BlendEquationSeparateIndexed(Int32 buf, OpenTK.Graphics.OpenGL.BlendEquationModeExt modeRGB, OpenTK.Graphics.OpenGL.BlendEquationModeExt modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_draw_buffers_blend] /// @@ -6003,7 +6013,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_draw_buffers_blend", Version = "", EntryPoint = "glBlendEquationSeparateIndexedAMD")] [CLSCompliant(false)] - public static void BlendEquationSeparateIndexed(UInt32 buf, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend modeRGB, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend modeAlpha) { throw new BindingsNotRewrittenException(); } + public static void BlendEquationSeparateIndexed(UInt32 buf, OpenTK.Graphics.OpenGL.BlendEquationModeExt modeRGB, OpenTK.Graphics.OpenGL.BlendEquationModeExt modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_draw_buffers_blend] /// @@ -6029,7 +6039,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_draw_buffers_blend", Version = "", EntryPoint = "glBlendFuncSeparateIndexedAMD")] [CLSCompliant(false)] - public static void BlendFuncSeparateIndexed(Int32 buf, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend srcRGB, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend dstRGB, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend srcAlpha, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend dstAlpha) { throw new BindingsNotRewrittenException(); } + public static void BlendFuncSeparateIndexed(Int32 buf, OpenTK.Graphics.OpenGL.BlendingFactor srcRGB, OpenTK.Graphics.OpenGL.BlendingFactor dstRGB, OpenTK.Graphics.OpenGL.BlendingFactor srcAlpha, OpenTK.Graphics.OpenGL.BlendingFactor dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_draw_buffers_blend] /// @@ -6039,7 +6049,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_draw_buffers_blend", Version = "", EntryPoint = "glBlendFuncSeparateIndexedAMD")] [CLSCompliant(false)] - public static void BlendFuncSeparateIndexed(UInt32 buf, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend srcRGB, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend dstRGB, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend srcAlpha, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend dstAlpha) { throw new BindingsNotRewrittenException(); } + public static void BlendFuncSeparateIndexed(UInt32 buf, OpenTK.Graphics.OpenGL.BlendingFactor srcRGB, OpenTK.Graphics.OpenGL.BlendingFactor dstRGB, OpenTK.Graphics.OpenGL.BlendingFactor srcAlpha, OpenTK.Graphics.OpenGL.BlendingFactor dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// Specify a callback to receive debugging messages from the GL @@ -6120,7 +6130,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glDebugMessageEnableAMD")] [CLSCompliant(false)] - public static void DebugMessageEnable(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.AmdDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } + public static void DebugMessageEnable(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.DebugSeverity severity, Int32 count, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// @@ -6130,7 +6140,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glDebugMessageEnableAMD")] [CLSCompliant(false)] - public static void DebugMessageEnable(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.AmdDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } + public static void DebugMessageEnable(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.DebugSeverity severity, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// @@ -6140,7 +6150,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glDebugMessageEnableAMD")] [CLSCompliant(false)] - public static unsafe void DebugMessageEnable(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.AmdDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } + public static unsafe void DebugMessageEnable(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.DebugSeverity severity, Int32 count, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// @@ -6150,7 +6160,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glDebugMessageEnableAMD")] [CLSCompliant(false)] - public static void DebugMessageEnable(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.AmdDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } + public static void DebugMessageEnable(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.DebugSeverity severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// @@ -6160,7 +6170,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glDebugMessageEnableAMD")] [CLSCompliant(false)] - public static void DebugMessageEnable(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.AmdDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } + public static void DebugMessageEnable(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.DebugSeverity severity, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// @@ -6170,7 +6180,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glDebugMessageEnableAMD")] [CLSCompliant(false)] - public static unsafe void DebugMessageEnable(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.AmdDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } + public static unsafe void DebugMessageEnable(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.DebugSeverity severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// Inject an application-supplied message into the debug message queue @@ -6192,7 +6202,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glDebugMessageInsertAMD")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.AmdDebugOutput severity, Int32 id, Int32 length, [CountAttribute(Parameter = "length")] String buf) { throw new BindingsNotRewrittenException(); } + public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.DebugSeverity severity, Int32 id, Int32 length, [CountAttribute(Parameter = "length")] String buf) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// Inject an application-supplied message into the debug message queue @@ -6214,7 +6224,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glDebugMessageInsertAMD")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.AmdDebugOutput severity, UInt32 id, Int32 length, [CountAttribute(Parameter = "length")] String buf) { throw new BindingsNotRewrittenException(); } + public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.DebugSeverity severity, UInt32 id, Int32 length, [CountAttribute(Parameter = "length")] String buf) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_name_gen_delete] /// @@ -6337,7 +6347,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glFramebufferSamplePositionsfvAMD")] [CLSCompliant(false)] - public static void FramebufferSamplePositions(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, Int32 numsamples, Int32 pixelindex, Single[] values) { throw new BindingsNotRewrittenException(); } + public static void FramebufferSamplePositions(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 numsamples, Int32 pixelindex, Single[] values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -6346,7 +6356,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glFramebufferSamplePositionsfvAMD")] [CLSCompliant(false)] - public static void FramebufferSamplePositions(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, Int32 numsamples, Int32 pixelindex, ref Single values) { throw new BindingsNotRewrittenException(); } + public static void FramebufferSamplePositions(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 numsamples, Int32 pixelindex, ref Single values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -6355,7 +6365,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glFramebufferSamplePositionsfvAMD")] [CLSCompliant(false)] - public static unsafe void FramebufferSamplePositions(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, Int32 numsamples, Int32 pixelindex, Single* values) { throw new BindingsNotRewrittenException(); } + public static unsafe void FramebufferSamplePositions(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 numsamples, Int32 pixelindex, Single* values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -6364,7 +6374,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glFramebufferSamplePositionsfvAMD")] [CLSCompliant(false)] - public static void FramebufferSamplePositions(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, UInt32 numsamples, UInt32 pixelindex, Single[] values) { throw new BindingsNotRewrittenException(); } + public static void FramebufferSamplePositions(OpenTK.Graphics.OpenGL.FramebufferTarget target, UInt32 numsamples, UInt32 pixelindex, Single[] values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -6373,7 +6383,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glFramebufferSamplePositionsfvAMD")] [CLSCompliant(false)] - public static void FramebufferSamplePositions(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, UInt32 numsamples, UInt32 pixelindex, ref Single values) { throw new BindingsNotRewrittenException(); } + public static void FramebufferSamplePositions(OpenTK.Graphics.OpenGL.FramebufferTarget target, UInt32 numsamples, UInt32 pixelindex, ref Single values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -6382,7 +6392,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glFramebufferSamplePositionsfvAMD")] [CLSCompliant(false)] - public static unsafe void FramebufferSamplePositions(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, UInt32 numsamples, UInt32 pixelindex, Single* values) { throw new BindingsNotRewrittenException(); } + public static unsafe void FramebufferSamplePositions(OpenTK.Graphics.OpenGL.FramebufferTarget target, UInt32 numsamples, UInt32 pixelindex, Single* values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_name_gen_delete] /// @@ -6505,7 +6515,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogAMD")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufsize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.AmdDebugOutput[] categories, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String message) { throw new BindingsNotRewrittenException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufsize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.AmdDebugOutput[] categories, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String message) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// Retrieve messages from the debug message log @@ -6533,7 +6543,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogAMD")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufsize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.AmdDebugOutput categories, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String message) { throw new BindingsNotRewrittenException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufsize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.AmdDebugOutput categories, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String message) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// Retrieve messages from the debug message log @@ -6561,7 +6571,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogAMD")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufsize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.AmdDebugOutput* categories, [OutAttribute, CountAttribute(Parameter = "count")] Int32* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String message) { throw new BindingsNotRewrittenException(); } + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufsize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.AmdDebugOutput* categories, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String message) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// Retrieve messages from the debug message log @@ -6589,7 +6599,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogAMD")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufsize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.AmdDebugOutput[] categories, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] severities, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String message) { throw new BindingsNotRewrittenException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufsize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.AmdDebugOutput[] categories, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String message) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// Retrieve messages from the debug message log @@ -6617,7 +6627,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogAMD")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufsize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.AmdDebugOutput categories, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 severities, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String message) { throw new BindingsNotRewrittenException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufsize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.AmdDebugOutput categories, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String message) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// Retrieve messages from the debug message log @@ -6645,7 +6655,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogAMD")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufsize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.AmdDebugOutput* categories, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* severities, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String message) { throw new BindingsNotRewrittenException(); } + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufsize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.AmdDebugOutput* categories, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String message) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// Retrieve a named parameter from a framebuffer @@ -6664,7 +6674,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glGetFramebufferParameterfvAMD")] [CLSCompliant(false)] - public static void GetFramebufferParameter(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, Int32 numsamples, Int32 pixelindex, Int32 size, [OutAttribute] Single[] values) { throw new BindingsNotRewrittenException(); } + public static void GetFramebufferParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachmentParameterName pname, Int32 numsamples, Int32 pixelindex, Int32 size, [OutAttribute] Single[] values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// Retrieve a named parameter from a framebuffer @@ -6683,7 +6693,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glGetFramebufferParameterfvAMD")] [CLSCompliant(false)] - public static void GetFramebufferParameter(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, Int32 numsamples, Int32 pixelindex, Int32 size, [OutAttribute] out Single values) { throw new BindingsNotRewrittenException(); } + public static void GetFramebufferParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachmentParameterName pname, Int32 numsamples, Int32 pixelindex, Int32 size, [OutAttribute] out Single values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// Retrieve a named parameter from a framebuffer @@ -6702,7 +6712,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glGetFramebufferParameterfvAMD")] [CLSCompliant(false)] - public static unsafe void GetFramebufferParameter(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, Int32 numsamples, Int32 pixelindex, Int32 size, [OutAttribute] Single* values) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetFramebufferParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachmentParameterName pname, Int32 numsamples, Int32 pixelindex, Int32 size, [OutAttribute] Single* values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// Retrieve a named parameter from a framebuffer @@ -6721,7 +6731,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glGetFramebufferParameterfvAMD")] [CLSCompliant(false)] - public static void GetFramebufferParameter(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, UInt32 numsamples, UInt32 pixelindex, Int32 size, [OutAttribute] Single[] values) { throw new BindingsNotRewrittenException(); } + public static void GetFramebufferParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachmentParameterName pname, UInt32 numsamples, UInt32 pixelindex, Int32 size, [OutAttribute] Single[] values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// Retrieve a named parameter from a framebuffer @@ -6740,7 +6750,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glGetFramebufferParameterfvAMD")] [CLSCompliant(false)] - public static void GetFramebufferParameter(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, UInt32 numsamples, UInt32 pixelindex, Int32 size, [OutAttribute] out Single values) { throw new BindingsNotRewrittenException(); } + public static void GetFramebufferParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachmentParameterName pname, UInt32 numsamples, UInt32 pixelindex, Int32 size, [OutAttribute] out Single values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// Retrieve a named parameter from a framebuffer @@ -6759,7 +6769,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glGetFramebufferParameterfvAMD")] [CLSCompliant(false)] - public static unsafe void GetFramebufferParameter(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, UInt32 numsamples, UInt32 pixelindex, Int32 size, [OutAttribute] Single* values) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetFramebufferParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachmentParameterName pname, UInt32 numsamples, UInt32 pixelindex, Int32 size, [OutAttribute] Single* values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -7311,7 +7321,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the distance in basic machine units between elements of the draw parameter array. /// [AutoGenerated(Category = "AMD_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectAMD")] - public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect type, IntPtr indirect, Int32 primcount, Int32 stride) { throw new BindingsNotRewrittenException(); } + public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indirect, Int32 primcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -7333,7 +7343,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectAMD")] [CLSCompliant(false)] - public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect type, [InAttribute, OutAttribute] T2[] indirect, Int32 primcount, Int32 stride) + public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T2[] indirect, Int32 primcount, Int32 stride) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -7357,7 +7367,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectAMD")] [CLSCompliant(false)] - public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect type, [InAttribute, OutAttribute] T2[,] indirect, Int32 primcount, Int32 stride) + public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T2[,] indirect, Int32 primcount, Int32 stride) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -7381,7 +7391,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectAMD")] [CLSCompliant(false)] - public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect type, [InAttribute, OutAttribute] T2[,,] indirect, Int32 primcount, Int32 stride) + public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T2[,,] indirect, Int32 primcount, Int32 stride) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -7404,7 +7414,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the distance in basic machine units between elements of the draw parameter array. /// [AutoGenerated(Category = "AMD_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectAMD")] - public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect type, [InAttribute, OutAttribute] ref T2 indirect, Int32 primcount, Int32 stride) + public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T2 indirect, Int32 primcount, Int32 stride) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -7469,7 +7479,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_occlusion_query_event", Version = "", EntryPoint = "glQueryObjectParameteruiAMD")] [CLSCompliant(false)] - public static void QueryObjectParameter(OpenTK.Graphics.OpenGL.AmdOcclusionQueryEvent target, Int32 id, OpenTK.Graphics.OpenGL.AmdOcclusionQueryEvent pname, OpenTK.Graphics.OpenGL.OcclusionQueryEventMaskAmd param) { throw new BindingsNotRewrittenException(); } + public static void QueryObjectParameter(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 id, OpenTK.Graphics.OpenGL.AmdOcclusionQueryEvent pname, OpenTK.Graphics.OpenGL.OcclusionQueryEventMaskAmd param) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_occlusion_query_event] /// @@ -7478,7 +7488,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_occlusion_query_event", Version = "", EntryPoint = "glQueryObjectParameteruiAMD")] [CLSCompliant(false)] - public static void QueryObjectParameter(OpenTK.Graphics.OpenGL.AmdOcclusionQueryEvent target, UInt32 id, OpenTK.Graphics.OpenGL.AmdOcclusionQueryEvent pname, OpenTK.Graphics.OpenGL.OcclusionQueryEventMaskAmd param) { throw new BindingsNotRewrittenException(); } + public static void QueryObjectParameter(OpenTK.Graphics.OpenGL.QueryTarget target, UInt32 id, OpenTK.Graphics.OpenGL.AmdOcclusionQueryEvent pname, OpenTK.Graphics.OpenGL.OcclusionQueryEventMaskAmd param) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -7627,20 +7637,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "AMD_sparse_texture", Version = "", EntryPoint = "glTexStorageSparseAMD")] - [CLSCompliant(false)] - public static void TexStorageSparse(OpenTK.Graphics.OpenGL.AmdSparseTexture target, OpenTK.Graphics.OpenGL.AmdSparseTexture internalFormat, Int32 width, Int32 height, Int32 depth, Int32 layers, Int32 flags) { throw new BindingsNotRewrittenException(); } - - /// [requires: AMD_sparse_texture] - /// - /// - /// - /// - /// - /// - /// - [AutoGenerated(Category = "AMD_sparse_texture", Version = "", EntryPoint = "glTexStorageSparseAMD")] - [CLSCompliant(false)] - public static void TexStorageSparse(OpenTK.Graphics.OpenGL.AmdSparseTexture target, OpenTK.Graphics.OpenGL.AmdSparseTexture internalFormat, Int32 width, Int32 height, Int32 depth, Int32 layers, UInt32 flags) { throw new BindingsNotRewrittenException(); } + public static void TexStorageSparse(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.InternalFormat internalFormat, Int32 width, Int32 height, Int32 depth, Int32 layers, OpenTK.Graphics.OpenGL.TextureStorageMaskAmd flags) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_sparse_texture] /// @@ -7653,7 +7650,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_sparse_texture", Version = "", EntryPoint = "glTextureStorageSparseAMD")] [CLSCompliant(false)] - public static void TextureStorageSparse(Int32 texture, OpenTK.Graphics.OpenGL.AmdSparseTexture target, OpenTK.Graphics.OpenGL.AmdSparseTexture internalFormat, Int32 width, Int32 height, Int32 depth, Int32 layers, Int32 flags) { throw new BindingsNotRewrittenException(); } + public static void TextureStorageSparse(Int32 texture, OpenTK.Graphics.OpenGL.AmdSparseTexture target, OpenTK.Graphics.OpenGL.InternalFormat internalFormat, Int32 width, Int32 height, Int32 depth, Int32 layers, OpenTK.Graphics.OpenGL.TextureStorageMaskAmd flags) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_sparse_texture] /// @@ -7666,7 +7663,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_sparse_texture", Version = "", EntryPoint = "glTextureStorageSparseAMD")] [CLSCompliant(false)] - public static void TextureStorageSparse(UInt32 texture, OpenTK.Graphics.OpenGL.AmdSparseTexture target, OpenTK.Graphics.OpenGL.AmdSparseTexture internalFormat, Int32 width, Int32 height, Int32 depth, Int32 layers, UInt32 flags) { throw new BindingsNotRewrittenException(); } + public static void TextureStorageSparse(UInt32 texture, OpenTK.Graphics.OpenGL.AmdSparseTexture target, OpenTK.Graphics.OpenGL.InternalFormat internalFormat, Int32 width, Int32 height, Int32 depth, Int32 layers, OpenTK.Graphics.OpenGL.TextureStorageMaskAmd flags) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_interleaved_elements] /// @@ -9247,7 +9244,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendEquationSeparateiARB")] [CLSCompliant(false)] - public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend modeRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend modeAlpha) { throw new BindingsNotRewrittenException(); } + public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.OpenGL.BlendEquationModeExt modeRGB, OpenTK.Graphics.OpenGL.BlendEquationModeExt modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Set the RGB blend equation and the alpha blend equation separately @@ -9263,7 +9260,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendEquationSeparateiARB")] [CLSCompliant(false)] - public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend modeRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend modeAlpha) { throw new BindingsNotRewrittenException(); } + public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.OpenGL.BlendEquationModeExt modeRGB, OpenTK.Graphics.OpenGL.BlendEquationModeExt modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Specify pixel arithmetic @@ -9279,7 +9276,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendFunciARB")] [CLSCompliant(false)] - public static void BlendFunc(Int32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend src, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dst) { throw new BindingsNotRewrittenException(); } + public static void BlendFunc(Int32 buf, OpenTK.Graphics.OpenGL.BlendingFactor src, OpenTK.Graphics.OpenGL.BlendingFactor dst) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Specify pixel arithmetic @@ -9295,7 +9292,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendFunciARB")] [CLSCompliant(false)] - public static void BlendFunc(UInt32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend src, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dst) { throw new BindingsNotRewrittenException(); } + public static void BlendFunc(UInt32 buf, OpenTK.Graphics.OpenGL.BlendingFactor src, OpenTK.Graphics.OpenGL.BlendingFactor dst) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Specify pixel arithmetic for RGB and alpha components separately @@ -9317,7 +9314,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendFuncSeparateiARB")] [CLSCompliant(false)] - public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend srcRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dstRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend srcAlpha, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dstAlpha) { throw new BindingsNotRewrittenException(); } + public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.OpenGL.BlendingFactor srcRGB, OpenTK.Graphics.OpenGL.BlendingFactor dstRGB, OpenTK.Graphics.OpenGL.BlendingFactor srcAlpha, OpenTK.Graphics.OpenGL.BlendingFactor dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Specify pixel arithmetic for RGB and alpha components separately @@ -9339,7 +9336,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendFuncSeparateiARB")] [CLSCompliant(false)] - public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend srcRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dstRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend srcAlpha, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dstAlpha) { throw new BindingsNotRewrittenException(); } + public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.OpenGL.BlendingFactor srcRGB, OpenTK.Graphics.OpenGL.BlendingFactor dstRGB, OpenTK.Graphics.OpenGL.BlendingFactor srcAlpha, OpenTK.Graphics.OpenGL.BlendingFactor dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Creates and initializes a buffer object's data store @@ -9881,7 +9878,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexImage1DARB")] - public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } + public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a one-dimensional texture image in a compressed format @@ -9909,7 +9906,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexImage1DARB")] [CLSCompliant(false)] - public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T6[] data) + public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T6[] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -9939,7 +9936,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexImage1DARB")] [CLSCompliant(false)] - public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T6[,] data) + public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T6[,] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -9969,7 +9966,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexImage1DARB")] [CLSCompliant(false)] - public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T6[,,] data) + public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T6[,,] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -9998,7 +9995,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexImage1DARB")] - public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T6 data) + public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T6 data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -10030,7 +10027,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexImage2DARB")] - public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } + public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a two-dimensional texture image in a compressed format @@ -10061,7 +10058,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexImage2DARB")] [CLSCompliant(false)] - public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] data) + public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] data) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -10094,7 +10091,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexImage2DARB")] [CLSCompliant(false)] - public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] data) + public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] data) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -10127,7 +10124,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexImage2DARB")] [CLSCompliant(false)] - public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] data) + public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] data) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -10159,7 +10156,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexImage2DARB")] - public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 data) + public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 data) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -10194,7 +10191,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexImage3DARB")] - public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } + public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a three-dimensional texture image in a compressed format @@ -10228,7 +10225,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexImage3DARB")] [CLSCompliant(false)] - public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] data) + public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -10264,7 +10261,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexImage3DARB")] [CLSCompliant(false)] - public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] data) + public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -10300,7 +10297,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexImage3DARB")] [CLSCompliant(false)] - public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] data) + public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -10335,7 +10332,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexImage3DARB")] - public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 data) + public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -10874,7 +10871,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ARB_shader_objects] /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glCreateShaderObjectARB")] - public static Int32 CreateShaderObject(OpenTK.Graphics.OpenGL.ArbShaderObjects shaderType) { throw new BindingsNotRewrittenException(); } + public static Int32 CreateShaderObject(OpenTK.Graphics.OpenGL.ShaderType shaderType) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_cl_event] /// @@ -11023,7 +11020,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageControlARB")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.OpenGL.ArbDebugOutput source, OpenTK.Graphics.OpenGL.ArbDebugOutput type, OpenTK.Graphics.OpenGL.ArbDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL.DebugSource source, OpenTK.Graphics.OpenGL.DebugType type, OpenTK.Graphics.OpenGL.DebugSeverity severity, Int32 count, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Control the reporting of debug messages in a debug context @@ -11048,7 +11045,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageControlARB")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.OpenGL.ArbDebugOutput source, OpenTK.Graphics.OpenGL.ArbDebugOutput type, OpenTK.Graphics.OpenGL.ArbDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL.DebugSource source, OpenTK.Graphics.OpenGL.DebugType type, OpenTK.Graphics.OpenGL.DebugSeverity severity, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Control the reporting of debug messages in a debug context @@ -11073,7 +11070,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageControlARB")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL.ArbDebugOutput source, OpenTK.Graphics.OpenGL.ArbDebugOutput type, OpenTK.Graphics.OpenGL.ArbDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL.DebugSource source, OpenTK.Graphics.OpenGL.DebugType type, OpenTK.Graphics.OpenGL.DebugSeverity severity, Int32 count, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Control the reporting of debug messages in a debug context @@ -11098,7 +11095,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageControlARB")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.OpenGL.ArbDebugOutput source, OpenTK.Graphics.OpenGL.ArbDebugOutput type, OpenTK.Graphics.OpenGL.ArbDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL.DebugSource source, OpenTK.Graphics.OpenGL.DebugType type, OpenTK.Graphics.OpenGL.DebugSeverity severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Control the reporting of debug messages in a debug context @@ -11123,7 +11120,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageControlARB")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.OpenGL.ArbDebugOutput source, OpenTK.Graphics.OpenGL.ArbDebugOutput type, OpenTK.Graphics.OpenGL.ArbDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL.DebugSource source, OpenTK.Graphics.OpenGL.DebugType type, OpenTK.Graphics.OpenGL.DebugSeverity severity, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Control the reporting of debug messages in a debug context @@ -11148,7 +11145,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageControlARB")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL.ArbDebugOutput source, OpenTK.Graphics.OpenGL.ArbDebugOutput type, OpenTK.Graphics.OpenGL.ArbDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL.DebugSource source, OpenTK.Graphics.OpenGL.DebugType type, OpenTK.Graphics.OpenGL.DebugSeverity severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Inject an application-supplied message into the debug message queue @@ -11173,7 +11170,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageInsertARB")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.ArbDebugOutput source, OpenTK.Graphics.OpenGL.ArbDebugOutput type, Int32 id, OpenTK.Graphics.OpenGL.ArbDebugOutput severity, Int32 length, [CountAttribute(Parameter = "length")] String buf) { throw new BindingsNotRewrittenException(); } + public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.DebugSource source, OpenTK.Graphics.OpenGL.DebugType type, Int32 id, OpenTK.Graphics.OpenGL.DebugSeverity severity, Int32 length, [CountAttribute(Parameter = "length")] String buf) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Inject an application-supplied message into the debug message queue @@ -11198,7 +11195,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageInsertARB")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.ArbDebugOutput source, OpenTK.Graphics.OpenGL.ArbDebugOutput type, UInt32 id, OpenTK.Graphics.OpenGL.ArbDebugOutput severity, Int32 length, [CountAttribute(Parameter = "length")] String buf) { throw new BindingsNotRewrittenException(); } + public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.DebugSource source, OpenTK.Graphics.OpenGL.DebugType type, UInt32 id, OpenTK.Graphics.OpenGL.DebugSeverity severity, Int32 length, [CountAttribute(Parameter = "length")] String buf) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Delete named buffer objects @@ -11884,7 +11881,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: ARB_occlusion_query] /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glEndQueryARB")] - public static void EndQuery(OpenTK.Graphics.OpenGL.ArbOcclusionQuery target) { throw new BindingsNotRewrittenException(); } + public static void EndQuery(OpenTK.Graphics.OpenGL.QueryTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glEvaluateDepthValuesARB")] @@ -11897,7 +11894,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.ArbSampleLocations target, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -11906,7 +11903,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.ArbSampleLocations target, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -11915,7 +11912,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.ArbSampleLocations target, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -11924,7 +11921,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.ArbSampleLocations target, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.FramebufferTarget target, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -11933,7 +11930,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.ArbSampleLocations target, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.FramebufferTarget target, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -11942,7 +11939,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.ArbSampleLocations target, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.FramebufferTarget target, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_geometry_shader4] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -12289,7 +12286,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_shader", Version = "", EntryPoint = "glGetActiveAttribARB")] [CLSCompliant(false)] - public static void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ArbVertexShader type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new BindingsNotRewrittenException(); } + public static void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.AttributeType type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_shader] /// Returns information about an active attribute variable for the specified program object @@ -12317,7 +12314,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_shader", Version = "", EntryPoint = "glGetActiveAttribARB")] [CLSCompliant(false)] - public static unsafe void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ArbVertexShader* type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.AttributeType* type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_shader] /// Returns information about an active attribute variable for the specified program object @@ -12345,7 +12342,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_shader", Version = "", EntryPoint = "glGetActiveAttribARB")] [CLSCompliant(false)] - public static void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ArbVertexShader type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new BindingsNotRewrittenException(); } + public static void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.AttributeType type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_shader] /// Returns information about an active attribute variable for the specified program object @@ -12373,7 +12370,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_shader", Version = "", EntryPoint = "glGetActiveAttribARB")] [CLSCompliant(false)] - public static unsafe void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ArbVertexShader* type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.AttributeType* type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns information about an active uniform variable for the specified program object @@ -12401,7 +12398,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetActiveUniformARB")] [CLSCompliant(false)] - public static void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ArbShaderObjects type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new BindingsNotRewrittenException(); } + public static void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.AttributeType type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns information about an active uniform variable for the specified program object @@ -12429,7 +12426,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetActiveUniformARB")] [CLSCompliant(false)] - public static unsafe void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ArbShaderObjects* type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.AttributeType* type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns information about an active uniform variable for the specified program object @@ -12457,7 +12454,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetActiveUniformARB")] [CLSCompliant(false)] - public static void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ArbShaderObjects type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new BindingsNotRewrittenException(); } + public static void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.AttributeType type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns information about an active uniform variable for the specified program object @@ -12485,7 +12482,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetActiveUniformARB")] [CLSCompliant(false)] - public static unsafe void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ArbShaderObjects* type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.AttributeType* type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -13080,7 +13077,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSource[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Retrieve messages from the debug message log @@ -13111,7 +13108,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.ArbDebugOutput sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.ArbDebugOutput types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.ArbDebugOutput severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.DebugSource sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Retrieve messages from the debug message log @@ -13142,7 +13139,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSource* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Retrieve messages from the debug message log @@ -13173,7 +13170,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSource[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Retrieve messages from the debug message log @@ -13204,7 +13201,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.ArbDebugOutput sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.ArbDebugOutput types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.ArbDebugOutput severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.DebugSource sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Retrieve messages from the debug message log @@ -13235,11 +13232,11 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSource* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetGraphicsResetStatusARB")] - public static OpenTK.Graphics.OpenGL.ArbRobustness GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.OpenGL.GraphicsResetStatus GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -13254,7 +13251,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetImageHandleARB")] [CLSCompliant(false)] - public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.ArbBindlessTexture format) { throw new BindingsNotRewrittenException(); } + public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.PixelFormat format) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -13264,7 +13261,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetImageHandleARB")] [CLSCompliant(false)] - public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.ArbBindlessTexture format) { throw new BindingsNotRewrittenException(); } + public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.PixelFormat format) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -13356,7 +13353,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnColorTableARB")] - public static void GetnColorTable(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr table) { throw new BindingsNotRewrittenException(); } + public static void GetnColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr table) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13366,7 +13363,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnColorTableARB")] [CLSCompliant(false)] - public static void GetnColorTable(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] table) + public static void GetnColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] table) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -13378,7 +13375,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnColorTableARB")] [CLSCompliant(false)] - public static void GetnColorTable(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] table) + public static void GetnColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] table) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -13390,7 +13387,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnColorTableARB")] [CLSCompliant(false)] - public static void GetnColorTable(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] table) + public static void GetnColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] table) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -13401,7 +13398,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnColorTableARB")] - public static void GetnColorTable(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 table) + public static void GetnColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 table) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -13411,7 +13408,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnCompressedTexImageARB")] - public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.ArbRobustness target, Int32 lod, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr img) { throw new BindingsNotRewrittenException(); } + public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr img) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13420,7 +13417,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnCompressedTexImageARB")] [CLSCompliant(false)] - public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.ArbRobustness target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T3[] img) + public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T3[] img) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -13431,7 +13428,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnCompressedTexImageARB")] [CLSCompliant(false)] - public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.ArbRobustness target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T3[,] img) + public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T3[,] img) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -13442,7 +13439,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnCompressedTexImageARB")] [CLSCompliant(false)] - public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.ArbRobustness target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T3[,,] img) + public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T3[,,] img) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -13452,7 +13449,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnCompressedTexImageARB")] - public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.ArbRobustness target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T3 img) + public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T3 img) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -13463,7 +13460,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnConvolutionFilterARB")] - public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr image) { throw new BindingsNotRewrittenException(); } + public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13473,7 +13470,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnConvolutionFilterARB")] [CLSCompliant(false)] - public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] image) + public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] image) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -13485,7 +13482,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnConvolutionFilterARB")] [CLSCompliant(false)] - public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] image) + public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] image) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -13497,7 +13494,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnConvolutionFilterARB")] [CLSCompliant(false)] - public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] image) + public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] image) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -13508,7 +13505,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnConvolutionFilterARB")] - public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 image) + public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 image) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -13520,7 +13517,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnHistogramARB")] - public static void GetnHistogram(OpenTK.Graphics.OpenGL.ArbRobustness target, bool reset, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr values) { throw new BindingsNotRewrittenException(); } + public static void GetnHistogram(OpenTK.Graphics.OpenGL.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13531,7 +13528,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnHistogramARB")] [CLSCompliant(false)] - public static void GetnHistogram(OpenTK.Graphics.OpenGL.ArbRobustness target, bool reset, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[] values) + public static void GetnHistogram(OpenTK.Graphics.OpenGL.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[] values) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -13544,7 +13541,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnHistogramARB")] [CLSCompliant(false)] - public static void GetnHistogram(OpenTK.Graphics.OpenGL.ArbRobustness target, bool reset, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[,] values) + public static void GetnHistogram(OpenTK.Graphics.OpenGL.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[,] values) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -13557,7 +13554,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnHistogramARB")] [CLSCompliant(false)] - public static void GetnHistogram(OpenTK.Graphics.OpenGL.ArbRobustness target, bool reset, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[,,] values) + public static void GetnHistogram(OpenTK.Graphics.OpenGL.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[,,] values) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -13569,7 +13566,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnHistogramARB")] - public static void GetnHistogram(OpenTK.Graphics.OpenGL.ArbRobustness target, bool reset, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T5 values) + public static void GetnHistogram(OpenTK.Graphics.OpenGL.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T5 values) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -13580,7 +13577,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapdvARB")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double[] v) { throw new BindingsNotRewrittenException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.MapQuery query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13589,7 +13586,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapdvARB")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Double v) { throw new BindingsNotRewrittenException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.MapQuery query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Double v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13598,7 +13595,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapdvARB")] [CLSCompliant(false)] - public static unsafe void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double* v) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetnMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.MapQuery query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13607,7 +13604,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapfvARB")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] v) { throw new BindingsNotRewrittenException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.MapQuery query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13616,7 +13613,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapfvARB")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single v) { throw new BindingsNotRewrittenException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.MapQuery query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13625,7 +13622,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapfvARB")] [CLSCompliant(false)] - public static unsafe void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* v) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetnMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.MapQuery query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13634,7 +13631,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapivARB")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] v) { throw new BindingsNotRewrittenException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.MapQuery query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13643,7 +13640,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapivARB")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 v) { throw new BindingsNotRewrittenException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.MapQuery query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13652,7 +13649,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapivARB")] [CLSCompliant(false)] - public static unsafe void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* v) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetnMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.MapQuery query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13662,7 +13659,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMinmaxARB")] - public static void GetnMinmax(OpenTK.Graphics.OpenGL.ArbRobustness target, bool reset, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr values) { throw new BindingsNotRewrittenException(); } + public static void GetnMinmax(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13673,7 +13670,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMinmaxARB")] [CLSCompliant(false)] - public static void GetnMinmax(OpenTK.Graphics.OpenGL.ArbRobustness target, bool reset, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[] values) + public static void GetnMinmax(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[] values) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -13686,7 +13683,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMinmaxARB")] [CLSCompliant(false)] - public static void GetnMinmax(OpenTK.Graphics.OpenGL.ArbRobustness target, bool reset, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[,] values) + public static void GetnMinmax(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[,] values) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -13699,7 +13696,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMinmaxARB")] [CLSCompliant(false)] - public static void GetnMinmax(OpenTK.Graphics.OpenGL.ArbRobustness target, bool reset, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[,,] values) + public static void GetnMinmax(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[,,] values) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -13711,7 +13708,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMinmaxARB")] - public static void GetnMinmax(OpenTK.Graphics.OpenGL.ArbRobustness target, bool reset, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T5 values) + public static void GetnMinmax(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T5 values) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -13721,7 +13718,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapfvARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] values) { throw new BindingsNotRewrittenException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13729,7 +13726,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapfvARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single values) { throw new BindingsNotRewrittenException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13737,7 +13734,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapfvARB")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* values) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13745,7 +13742,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new BindingsNotRewrittenException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13753,7 +13750,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new BindingsNotRewrittenException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13761,7 +13758,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13769,7 +13766,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32[] values) { throw new BindingsNotRewrittenException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13777,7 +13774,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out UInt32 values) { throw new BindingsNotRewrittenException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out UInt32 values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13785,7 +13782,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32* values) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32* values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13793,7 +13790,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int16[] values) { throw new BindingsNotRewrittenException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int16[] values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13801,7 +13798,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int16 values) { throw new BindingsNotRewrittenException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int16 values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13809,7 +13806,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int16* values) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int16* values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13817,7 +13814,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt16[] values) { throw new BindingsNotRewrittenException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt16[] values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13825,7 +13822,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out UInt16 values) { throw new BindingsNotRewrittenException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out UInt16 values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13833,7 +13830,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt16* values) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt16* values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPolygonStippleARB")] @@ -13871,7 +13868,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: columnBufSize] /// [length: 0] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnSeparableFilterARB")] - public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 rowBufSize, [OutAttribute, CountAttribute(Parameter = "rowBufSize")] IntPtr row, Int32 columnBufSize, [OutAttribute, CountAttribute(Parameter = "columnBufSize")] IntPtr column, [OutAttribute, CountAttribute(Count = 0)] IntPtr span) { throw new BindingsNotRewrittenException(); } + public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 rowBufSize, [OutAttribute, CountAttribute(Parameter = "rowBufSize")] IntPtr row, Int32 columnBufSize, [OutAttribute, CountAttribute(Parameter = "columnBufSize")] IntPtr column, [OutAttribute, CountAttribute(Count = 0)] IntPtr span) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13884,7 +13881,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 0] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnSeparableFilterARB")] [CLSCompliant(false)] - public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 rowBufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "rowBufSize")] T4[] row, Int32 columnBufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "columnBufSize")] T6[] column, [InAttribute, OutAttribute, CountAttribute(Count = 0)] T7[] span) + public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 rowBufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "rowBufSize")] T4[] row, Int32 columnBufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "columnBufSize")] T6[] column, [InAttribute, OutAttribute, CountAttribute(Count = 0)] T7[] span) where T4 : struct where T6 : struct where T7 : struct @@ -13901,7 +13898,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 0] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnSeparableFilterARB")] [CLSCompliant(false)] - public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 rowBufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "rowBufSize")] T4[,] row, Int32 columnBufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "columnBufSize")] T6[,] column, [InAttribute, OutAttribute, CountAttribute(Count = 0)] T7[,] span) + public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 rowBufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "rowBufSize")] T4[,] row, Int32 columnBufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "columnBufSize")] T6[,] column, [InAttribute, OutAttribute, CountAttribute(Count = 0)] T7[,] span) where T4 : struct where T6 : struct where T7 : struct @@ -13918,7 +13915,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 0] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnSeparableFilterARB")] [CLSCompliant(false)] - public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 rowBufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "rowBufSize")] T4[,,] row, Int32 columnBufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "columnBufSize")] T6[,,] column, [InAttribute, OutAttribute, CountAttribute(Count = 0)] T7[,,] span) + public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 rowBufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "rowBufSize")] T4[,,] row, Int32 columnBufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "columnBufSize")] T6[,,] column, [InAttribute, OutAttribute, CountAttribute(Count = 0)] T7[,,] span) where T4 : struct where T6 : struct where T7 : struct @@ -13934,7 +13931,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: columnBufSize] /// [length: 0] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnSeparableFilterARB")] - public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 rowBufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "rowBufSize")] ref T4 row, Int32 columnBufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "columnBufSize")] ref T6 column, [InAttribute, OutAttribute, CountAttribute(Count = 0)] ref T7 span) + public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 rowBufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "rowBufSize")] ref T4 row, Int32 columnBufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "columnBufSize")] ref T6 column, [InAttribute, OutAttribute, CountAttribute(Count = 0)] ref T7 span) where T4 : struct where T6 : struct where T7 : struct @@ -13948,7 +13945,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnTexImageARB")] - public static void GetnTexImage(OpenTK.Graphics.OpenGL.ArbRobustness target, Int32 level, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr img) { throw new BindingsNotRewrittenException(); } + public static void GetnTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr img) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13959,7 +13956,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnTexImageARB")] [CLSCompliant(false)] - public static void GetnTexImage(OpenTK.Graphics.OpenGL.ArbRobustness target, Int32 level, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[] img) + public static void GetnTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[] img) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -13972,7 +13969,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnTexImageARB")] [CLSCompliant(false)] - public static void GetnTexImage(OpenTK.Graphics.OpenGL.ArbRobustness target, Int32 level, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[,] img) + public static void GetnTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[,] img) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -13985,7 +13982,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnTexImageARB")] [CLSCompliant(false)] - public static void GetnTexImage(OpenTK.Graphics.OpenGL.ArbRobustness target, Int32 level, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[,,] img) + public static void GetnTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[,,] img) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -13997,7 +13994,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnTexImageARB")] - public static void GetnTexImage(OpenTK.Graphics.OpenGL.ArbRobustness target, Int32 level, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T5 img) + public static void GetnTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T5 img) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -14859,7 +14856,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryivARB")] [CLSCompliant(false)] - public static void GetQuery(OpenTK.Graphics.OpenGL.ArbOcclusionQuery target, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetQuery(OpenTK.Graphics.OpenGL.QueryTarget target, OpenTK.Graphics.OpenGL.QueryParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// @@ -14867,7 +14864,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryivARB")] [CLSCompliant(false)] - public static void GetQuery(OpenTK.Graphics.OpenGL.ArbOcclusionQuery target, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetQuery(OpenTK.Graphics.OpenGL.QueryTarget target, OpenTK.Graphics.OpenGL.QueryParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// @@ -14875,7 +14872,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryivARB")] [CLSCompliant(false)] - public static unsafe void GetQuery(OpenTK.Graphics.OpenGL.ArbOcclusionQuery target, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetQuery(OpenTK.Graphics.OpenGL.QueryTarget target, OpenTK.Graphics.OpenGL.QueryParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Return parameters of a query object @@ -14891,7 +14888,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryObjectivARB")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.QueryObjectParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Return parameters of a query object @@ -14907,7 +14904,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryObjectivARB")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.QueryObjectParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Return parameters of a query object @@ -14923,7 +14920,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryObjectivARB")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.QueryObjectParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Return parameters of a query object @@ -14939,7 +14936,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryObjectivARB")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.QueryObjectParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Return parameters of a query object @@ -14955,7 +14952,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryObjectivARB")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.QueryObjectParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Return parameters of a query object @@ -14971,7 +14968,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryObjectivARB")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.QueryObjectParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Return parameters of a query object @@ -14987,7 +14984,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryObjectuivARB")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.QueryObjectParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Return parameters of a query object @@ -15003,7 +15000,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryObjectuivARB")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.QueryObjectParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Return parameters of a query object @@ -15019,7 +15016,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryObjectuivARB")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.QueryObjectParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns the source code string from a shader object @@ -16403,7 +16400,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_indirect_parameters", Version = "", EntryPoint = "glMultiDrawElementsIndirectCountARB")] - public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.ArbIndirectParameters type, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } + public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -16414,7 +16411,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_indirect_parameters", Version = "", EntryPoint = "glMultiDrawElementsIndirectCountARB")] [CLSCompliant(false)] - public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.ArbIndirectParameters type, [InAttribute, OutAttribute] T2[] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) + public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T2[] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -16427,7 +16424,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_indirect_parameters", Version = "", EntryPoint = "glMultiDrawElementsIndirectCountARB")] [CLSCompliant(false)] - public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.ArbIndirectParameters type, [InAttribute, OutAttribute] T2[,] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) + public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T2[,] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -16440,7 +16437,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_indirect_parameters", Version = "", EntryPoint = "glMultiDrawElementsIndirectCountARB")] [CLSCompliant(false)] - public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.ArbIndirectParameters type, [InAttribute, OutAttribute] T2[,,] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) + public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T2[,,] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -16452,7 +16449,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_indirect_parameters", Version = "", EntryPoint = "glMultiDrawElementsIndirectCountARB")] - public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.ArbIndirectParameters type, [InAttribute, OutAttribute] ref T2 indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) + public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T2 indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -19215,7 +19212,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_texture_buffer_object", Version = "", EntryPoint = "glTexBufferARB")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ArbTextureBufferObject internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } + public static void TexBuffer(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_buffer_object] /// Attach the storage for a buffer object to the active buffer texture @@ -19231,7 +19228,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_texture_buffer_object", Version = "", EntryPoint = "glTexBufferARB")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ArbTextureBufferObject internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } + public static void TexBuffer(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_texture] /// @@ -23047,7 +23044,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glAlphaFragmentOp1ATI")] [CLSCompliant(false)] - public static void AlphaFragmentOp1(OpenTK.Graphics.OpenGL.AtiFragmentShader op, Int32 dst, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod) { throw new BindingsNotRewrittenException(); } + public static void AlphaFragmentOp1(OpenTK.Graphics.OpenGL.FragmentOpAti op, Int32 dst, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// @@ -23058,7 +23055,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glAlphaFragmentOp1ATI")] [CLSCompliant(false)] - public static void AlphaFragmentOp1(OpenTK.Graphics.OpenGL.AtiFragmentShader op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod) { throw new BindingsNotRewrittenException(); } + public static void AlphaFragmentOp1(OpenTK.Graphics.OpenGL.FragmentOpAti op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// @@ -23072,7 +23069,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glAlphaFragmentOp2ATI")] [CLSCompliant(false)] - public static void AlphaFragmentOp2(OpenTK.Graphics.OpenGL.AtiFragmentShader op, Int32 dst, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod) { throw new BindingsNotRewrittenException(); } + public static void AlphaFragmentOp2(OpenTK.Graphics.OpenGL.FragmentOpAti op, Int32 dst, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// @@ -23086,7 +23083,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glAlphaFragmentOp2ATI")] [CLSCompliant(false)] - public static void AlphaFragmentOp2(OpenTK.Graphics.OpenGL.AtiFragmentShader op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod) { throw new BindingsNotRewrittenException(); } + public static void AlphaFragmentOp2(OpenTK.Graphics.OpenGL.FragmentOpAti op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// @@ -23103,7 +23100,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glAlphaFragmentOp3ATI")] [CLSCompliant(false)] - public static void AlphaFragmentOp3(OpenTK.Graphics.OpenGL.AtiFragmentShader op, Int32 dst, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod, Int32 arg3, Int32 arg3Rep, Int32 arg3Mod) { throw new BindingsNotRewrittenException(); } + public static void AlphaFragmentOp3(OpenTK.Graphics.OpenGL.FragmentOpAti op, Int32 dst, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod, Int32 arg3, Int32 arg3Rep, Int32 arg3Mod) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// @@ -23120,7 +23117,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glAlphaFragmentOp3ATI")] [CLSCompliant(false)] - public static void AlphaFragmentOp3(OpenTK.Graphics.OpenGL.AtiFragmentShader op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod, UInt32 arg3, UInt32 arg3Rep, UInt32 arg3Mod) { throw new BindingsNotRewrittenException(); } + public static void AlphaFragmentOp3(OpenTK.Graphics.OpenGL.FragmentOpAti op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod, UInt32 arg3, UInt32 arg3Rep, UInt32 arg3Mod) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23175,7 +23172,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glColorFragmentOp1ATI")] [CLSCompliant(false)] - public static void ColorFragmentOp1(OpenTK.Graphics.OpenGL.AtiFragmentShader op, Int32 dst, Int32 dstMask, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod) { throw new BindingsNotRewrittenException(); } + public static void ColorFragmentOp1(OpenTK.Graphics.OpenGL.FragmentOpAti op, Int32 dst, Int32 dstMask, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// @@ -23187,7 +23184,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glColorFragmentOp1ATI")] [CLSCompliant(false)] - public static void ColorFragmentOp1(OpenTK.Graphics.OpenGL.AtiFragmentShader op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod) { throw new BindingsNotRewrittenException(); } + public static void ColorFragmentOp1(OpenTK.Graphics.OpenGL.FragmentOpAti op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// @@ -23202,7 +23199,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glColorFragmentOp2ATI")] [CLSCompliant(false)] - public static void ColorFragmentOp2(OpenTK.Graphics.OpenGL.AtiFragmentShader op, Int32 dst, Int32 dstMask, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod) { throw new BindingsNotRewrittenException(); } + public static void ColorFragmentOp2(OpenTK.Graphics.OpenGL.FragmentOpAti op, Int32 dst, Int32 dstMask, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// @@ -23217,7 +23214,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glColorFragmentOp2ATI")] [CLSCompliant(false)] - public static void ColorFragmentOp2(OpenTK.Graphics.OpenGL.AtiFragmentShader op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod) { throw new BindingsNotRewrittenException(); } + public static void ColorFragmentOp2(OpenTK.Graphics.OpenGL.FragmentOpAti op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// @@ -23235,7 +23232,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glColorFragmentOp3ATI")] [CLSCompliant(false)] - public static void ColorFragmentOp3(OpenTK.Graphics.OpenGL.AtiFragmentShader op, Int32 dst, Int32 dstMask, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod, Int32 arg3, Int32 arg3Rep, Int32 arg3Mod) { throw new BindingsNotRewrittenException(); } + public static void ColorFragmentOp3(OpenTK.Graphics.OpenGL.FragmentOpAti op, Int32 dst, Int32 dstMask, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod, Int32 arg3, Int32 arg3Rep, Int32 arg3Mod) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// @@ -23253,7 +23250,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glColorFragmentOp3ATI")] [CLSCompliant(false)] - public static void ColorFragmentOp3(OpenTK.Graphics.OpenGL.AtiFragmentShader op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod, UInt32 arg3, UInt32 arg3Rep, UInt32 arg3Mod) { throw new BindingsNotRewrittenException(); } + public static void ColorFragmentOp3(OpenTK.Graphics.OpenGL.FragmentOpAti op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod, UInt32 arg3, UInt32 arg3Rep, UInt32 arg3Mod) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// @@ -26671,7 +26668,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies how the red, green, blue, and alpha destination blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha. ConstantColor, OneMinusConstantColor, ConstantAlpha, and OneMinusConstantAlpha. The initial value is Zero. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glBlendFunc")] - public static void BlendFunc(OpenTK.Graphics.OpenGL.BlendingFactorSrc sfactor, OpenTK.Graphics.OpenGL.BlendingFactorDest dfactor) { throw new BindingsNotRewrittenException(); } + public static void BlendFunc(OpenTK.Graphics.OpenGL.BlendingFactor sfactor, OpenTK.Graphics.OpenGL.BlendingFactor dfactor) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify pixel arithmetic @@ -26684,7 +26681,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ArbDrawBuffersBlend overload instead")] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glBlendFunc")] - public static void BlendFunc(OpenTK.Graphics.OpenGL.BlendingFactorSrc sfactor, OpenTK.Graphics.OpenGL.Version40 dfactor) { throw new BindingsNotRewrittenException(); } + public static void BlendFunc(OpenTK.Graphics.OpenGL.BlendingFactor sfactor, OpenTK.Graphics.OpenGL.Version40 dfactor) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify pixel arithmetic @@ -27755,14 +27752,14 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCheckNamedFramebufferStatus")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.All CheckNamedFramebufferStatus(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.OpenGL.FramebufferStatus CheckNamedFramebufferStatus(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCheckNamedFramebufferStatus")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.All CheckNamedFramebufferStatus(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.OpenGL.FramebufferStatus CheckNamedFramebufferStatus(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify whether data read via glReadPixels should be clamped @@ -27822,7 +27819,7 @@ namespace OpenTK.Graphics.OpenGL /// The address of a memory location storing the data to be replicated into the buffer's data store. /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferData")] - public static void ClearBufferData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } + public static void ClearBufferData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill a buffer object's data store with a fixed value @@ -27844,7 +27841,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferData")] [CLSCompliant(false)] - public static void ClearBufferData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) + public static void ClearBufferData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -27868,7 +27865,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferData")] [CLSCompliant(false)] - public static void ClearBufferData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) + public static void ClearBufferData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -27892,7 +27889,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferData")] [CLSCompliant(false)] - public static void ClearBufferData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) + public static void ClearBufferData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -27915,7 +27912,7 @@ namespace OpenTK.Graphics.OpenGL /// The address of a memory location storing the data to be replicated into the buffer's data store. /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferData")] - public static void ClearBufferData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) + public static void ClearBufferData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -28077,7 +28074,7 @@ namespace OpenTK.Graphics.OpenGL /// The address of a memory location storing the data to be replicated into the buffer's data store. /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] - public static void ClearBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } + public static void ClearBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -28105,7 +28102,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] [CLSCompliant(false)] - public static void ClearBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) + public static void ClearBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -28135,7 +28132,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] [CLSCompliant(false)] - public static void ClearBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) + public static void ClearBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -28165,7 +28162,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] [CLSCompliant(false)] - public static void ClearBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) + public static void ClearBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -28194,7 +28191,7 @@ namespace OpenTK.Graphics.OpenGL /// The address of a memory location storing the data to be replicated into the buffer's data store. /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] - public static void ClearBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) + public static void ClearBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -28223,7 +28220,7 @@ namespace OpenTK.Graphics.OpenGL /// The address of a memory location storing the data to be replicated into the buffer's data store. /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] - public static void ClearBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } + public static void ClearBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -28251,7 +28248,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] [CLSCompliant(false)] - public static void ClearBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) + public static void ClearBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -28281,7 +28278,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] [CLSCompliant(false)] - public static void ClearBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) + public static void ClearBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -28311,7 +28308,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] [CLSCompliant(false)] - public static void ClearBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) + public static void ClearBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -28340,7 +28337,7 @@ namespace OpenTK.Graphics.OpenGL /// The address of a memory location storing the data to be replicated into the buffer's data store. /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] - public static void ClearBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) + public static void ClearBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -28445,7 +28442,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferData")] [CLSCompliant(false)] - public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, IntPtr data) { throw new BindingsNotRewrittenException(); } + public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28455,7 +28452,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferData")] [CLSCompliant(false)] - public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T4[] data) + public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[] data) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -28467,7 +28464,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferData")] [CLSCompliant(false)] - public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T4[,] data) + public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[,] data) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -28479,7 +28476,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferData")] [CLSCompliant(false)] - public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T4[,,] data) + public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[,,] data) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -28491,7 +28488,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferData")] [CLSCompliant(false)] - public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] ref T4 data) + public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T4 data) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -28503,7 +28500,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferData")] [CLSCompliant(false)] - public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, IntPtr data) { throw new BindingsNotRewrittenException(); } + public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28513,7 +28510,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferData")] [CLSCompliant(false)] - public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T4[] data) + public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[] data) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -28525,7 +28522,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferData")] [CLSCompliant(false)] - public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T4[,] data) + public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[,] data) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -28537,7 +28534,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferData")] [CLSCompliant(false)] - public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T4[,,] data) + public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T4[,,] data) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -28549,7 +28546,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferData")] [CLSCompliant(false)] - public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] ref T4 data) + public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T4 data) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -28563,7 +28560,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, IntPtr data) { throw new BindingsNotRewrittenException(); } + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28575,7 +28572,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T6[] data) + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -28589,7 +28586,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T6[,] data) + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[,] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -28603,7 +28600,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T6[,,] data) + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[,,] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -28617,7 +28614,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] ref T6 data) + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T6 data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -28631,7 +28628,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, IntPtr data) { throw new BindingsNotRewrittenException(); } + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28643,7 +28640,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T6[] data) + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -28657,7 +28654,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T6[,] data) + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[,] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -28671,7 +28668,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T6[,,] data) + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[,,] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -28685,7 +28682,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] ref T6 data) + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T6 data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -28699,7 +28696,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, IntPtr data) { throw new BindingsNotRewrittenException(); } + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28711,7 +28708,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T6[] data) + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -28725,7 +28722,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T6[,] data) + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[,] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -28739,7 +28736,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T6[,,] data) + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[,,] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -28753,7 +28750,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] ref T6 data) + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T6 data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -28767,7 +28764,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, IntPtr data) { throw new BindingsNotRewrittenException(); } + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28779,7 +28776,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T6[] data) + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -28793,7 +28790,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T6[,] data) + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[,] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -28807,7 +28804,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T6[,,] data) + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[,,] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -28821,7 +28818,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] ref T6 data) + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T6 data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -30912,7 +30909,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a one-dimensional array of pixel data that is processed to build the color table. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTable")] - public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr table) { throw new BindingsNotRewrittenException(); } + public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr table) { throw new BindingsNotRewrittenException(); } /// /// Define a color lookup table @@ -30937,7 +30934,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTable")] [CLSCompliant(false)] - public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[] table) + public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[] table) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -30964,7 +30961,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTable")] [CLSCompliant(false)] - public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,] table) + public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,] table) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -30991,7 +30988,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTable")] [CLSCompliant(false)] - public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,,] table) + public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,,] table) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -31017,7 +31014,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a one-dimensional array of pixel data that is processed to build the color table. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTable")] - public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T5 table) + public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T5 table) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -31035,7 +31032,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTableParameterfv")] [CLSCompliant(false)] - public static void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } + public static void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// Set color lookup table parameters @@ -31051,7 +31048,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTableParameterfv")] [CLSCompliant(false)] - public static void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] ref Single @params) { throw new BindingsNotRewrittenException(); } + public static void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi pname, [CountAttribute(Computed = "pname")] ref Single @params) { throw new BindingsNotRewrittenException(); } /// /// Set color lookup table parameters @@ -31067,7 +31064,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTableParameterfv")] [CLSCompliant(false)] - public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// Set color lookup table parameters @@ -31083,7 +31080,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTableParameteriv")] [CLSCompliant(false)] - public static void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// Set color lookup table parameters @@ -31099,7 +31096,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTableParameteriv")] [CLSCompliant(false)] - public static void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// Set color lookup table parameters @@ -31115,7 +31112,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTableParameteriv")] [CLSCompliant(false)] - public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Compiles a shader object @@ -31162,7 +31159,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage1D")] - public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } + public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture image in a compressed format @@ -31190,7 +31187,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage1D")] [CLSCompliant(false)] - public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T6[] data) + public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T6[] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -31220,7 +31217,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage1D")] [CLSCompliant(false)] - public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T6[,] data) + public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T6[,] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -31250,7 +31247,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage1D")] [CLSCompliant(false)] - public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T6[,,] data) + public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T6[,,] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -31279,7 +31276,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage1D")] - public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T6 data) + public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T6 data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -31311,7 +31308,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage2D")] - public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } + public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture image in a compressed format @@ -31342,7 +31339,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage2D")] [CLSCompliant(false)] - public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] data) + public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] data) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -31375,7 +31372,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage2D")] [CLSCompliant(false)] - public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] data) + public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] data) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -31408,7 +31405,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage2D")] [CLSCompliant(false)] - public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] data) + public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] data) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -31440,7 +31437,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage2D")] - public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 data) + public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 data) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -31475,7 +31472,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage3D")] - public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } + public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture image in a compressed format @@ -31509,7 +31506,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage3D")] [CLSCompliant(false)] - public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] data) + public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -31545,7 +31542,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage3D")] [CLSCompliant(false)] - public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] data) + public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -31581,7 +31578,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage3D")] [CLSCompliant(false)] - public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] data) + public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -31616,7 +31613,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage3D")] - public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 data) + public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -32638,7 +32635,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a one-dimensional array of pixel data that is processed to build the convolution filter kernel. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter1D")] - public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr image) { throw new BindingsNotRewrittenException(); } + public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr image) { throw new BindingsNotRewrittenException(); } /// /// Define a one-dimensional convolution filter @@ -32663,7 +32660,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter1D")] [CLSCompliant(false)] - public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[] image) + public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[] image) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -32690,7 +32687,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter1D")] [CLSCompliant(false)] - public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,] image) + public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,] image) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -32717,7 +32714,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter1D")] [CLSCompliant(false)] - public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,,] image) + public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,,] image) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -32743,7 +32740,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a one-dimensional array of pixel data that is processed to build the convolution filter kernel. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter1D")] - public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T5 image) + public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T5 image) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -32772,7 +32769,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a two-dimensional array of pixel data that is processed to build the convolution filter kernel. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter2D")] - public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr image) { throw new BindingsNotRewrittenException(); } + public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr image) { throw new BindingsNotRewrittenException(); } /// /// Define a two-dimensional convolution filter @@ -32800,7 +32797,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter2D")] [CLSCompliant(false)] - public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[] image) + public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[] image) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -32830,7 +32827,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter2D")] [CLSCompliant(false)] - public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,] image) + public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,] image) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -32860,7 +32857,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter2D")] [CLSCompliant(false)] - public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,,] image) + public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,,] image) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -32889,7 +32886,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a two-dimensional array of pixel data that is processed to build the convolution filter kernel. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter2D")] - public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T6 image) + public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T6 image) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -32906,7 +32903,7 @@ namespace OpenTK.Graphics.OpenGL /// The parameter value. Must be one of Reduce, ConstantBorder, ReplicateBorder. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionParameterf")] - public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, Single @params) { throw new BindingsNotRewrittenException(); } + public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, Single @params) { throw new BindingsNotRewrittenException(); } /// /// Set convolution parameters @@ -32922,7 +32919,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionParameterfv")] [CLSCompliant(false)] - public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } + public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// Set convolution parameters @@ -32938,7 +32935,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionParameterfv")] [CLSCompliant(false)] - public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// Set convolution parameters @@ -32953,7 +32950,7 @@ namespace OpenTK.Graphics.OpenGL /// The parameter value. Must be one of Reduce, ConstantBorder, ReplicateBorder. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionParameteri")] - public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// Set convolution parameters @@ -32969,7 +32966,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionParameteriv")] [CLSCompliant(false)] - public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// Set convolution parameters @@ -32985,7 +32982,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionParameteriv")] [CLSCompliant(false)] - public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_copy_buffer|VERSION_3_1] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -33069,7 +33066,7 @@ namespace OpenTK.Graphics.OpenGL /// The width of the pixel rectangle. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glCopyColorTable")] - public static void CopyColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } + public static void CopyColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// /// Copy pixels into a one-dimensional convolution filter @@ -33090,7 +33087,7 @@ namespace OpenTK.Graphics.OpenGL /// The width of the pixel array to copy. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glCopyConvolutionFilter1D")] - public static void CopyConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } + public static void CopyConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// /// Copy pixels into a two-dimensional convolution filter @@ -33114,7 +33111,7 @@ namespace OpenTK.Graphics.OpenGL /// The height of the pixel array to copy. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glCopyConvolutionFilter2D")] - public static void CopyConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + public static void CopyConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_copy_image|VERSION_4_3] /// Perform a raw data copy between two images @@ -33306,7 +33303,7 @@ namespace OpenTK.Graphics.OpenGL /// Must be 0. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glCopyTexImage1D")] - public static void CopyTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new BindingsNotRewrittenException(); } + public static void CopyTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Copy pixels into a 2D texture image @@ -33336,7 +33333,7 @@ namespace OpenTK.Graphics.OpenGL /// Must be 0. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glCopyTexImage2D")] - public static void CopyTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } + public static void CopyTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Copy a one-dimensional texture subimage @@ -33503,87 +33500,87 @@ namespace OpenTK.Graphics.OpenGL /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateBuffers")] [CLSCompliant(false)] - public static void CreateBuffers(Int32 n, [OutAttribute] Int32[] buffers) { throw new BindingsNotRewrittenException(); } + public static void CreateBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateBuffers")] [CLSCompliant(false)] - public static void CreateBuffers(Int32 n, [OutAttribute] out Int32 buffers) { throw new BindingsNotRewrittenException(); } + public static void CreateBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateBuffers")] [CLSCompliant(false)] - public static unsafe void CreateBuffers(Int32 n, [OutAttribute] Int32* buffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateBuffers")] [CLSCompliant(false)] - public static void CreateBuffers(Int32 n, [OutAttribute] UInt32[] buffers) { throw new BindingsNotRewrittenException(); } + public static void CreateBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateBuffers")] [CLSCompliant(false)] - public static void CreateBuffers(Int32 n, [OutAttribute] out UInt32 buffers) { throw new BindingsNotRewrittenException(); } + public static void CreateBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateBuffers")] [CLSCompliant(false)] - public static unsafe void CreateBuffers(Int32 n, [OutAttribute] UInt32* buffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateFramebuffers")] [CLSCompliant(false)] - public static void CreateFramebuffers(Int32 n, [OutAttribute] Int32[] framebuffers) { throw new BindingsNotRewrittenException(); } + public static void CreateFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateFramebuffers")] [CLSCompliant(false)] - public static void CreateFramebuffers(Int32 n, [OutAttribute] out Int32 framebuffers) { throw new BindingsNotRewrittenException(); } + public static void CreateFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateFramebuffers")] [CLSCompliant(false)] - public static unsafe void CreateFramebuffers(Int32 n, [OutAttribute] Int32* framebuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateFramebuffers")] [CLSCompliant(false)] - public static void CreateFramebuffers(Int32 n, [OutAttribute] UInt32[] framebuffers) { throw new BindingsNotRewrittenException(); } + public static void CreateFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateFramebuffers")] [CLSCompliant(false)] - public static void CreateFramebuffers(Int32 n, [OutAttribute] out UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } + public static void CreateFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateFramebuffers")] [CLSCompliant(false)] - public static unsafe void CreateFramebuffers(Int32 n, [OutAttribute] UInt32* framebuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Creates a program object @@ -33593,177 +33590,177 @@ namespace OpenTK.Graphics.OpenGL /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateProgramPipelines")] [CLSCompliant(false)] - public static void CreateProgramPipelines(Int32 n, [OutAttribute] Int32[] pipelines) { throw new BindingsNotRewrittenException(); } + public static void CreateProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateProgramPipelines")] [CLSCompliant(false)] - public static void CreateProgramPipelines(Int32 n, [OutAttribute] out Int32 pipelines) { throw new BindingsNotRewrittenException(); } + public static void CreateProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateProgramPipelines")] [CLSCompliant(false)] - public static unsafe void CreateProgramPipelines(Int32 n, [OutAttribute] Int32* pipelines) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateProgramPipelines")] [CLSCompliant(false)] - public static void CreateProgramPipelines(Int32 n, [OutAttribute] UInt32[] pipelines) { throw new BindingsNotRewrittenException(); } + public static void CreateProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateProgramPipelines")] [CLSCompliant(false)] - public static void CreateProgramPipelines(Int32 n, [OutAttribute] out UInt32 pipelines) { throw new BindingsNotRewrittenException(); } + public static void CreateProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateProgramPipelines")] [CLSCompliant(false)] - public static unsafe void CreateProgramPipelines(Int32 n, [OutAttribute] UInt32* pipelines) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateQueries")] [CLSCompliant(false)] - public static void CreateQueries(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 n, [OutAttribute] Int32[] ids) { throw new BindingsNotRewrittenException(); } + public static void CreateQueries(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateQueries")] [CLSCompliant(false)] - public static void CreateQueries(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 n, [OutAttribute] out Int32 ids) { throw new BindingsNotRewrittenException(); } + public static void CreateQueries(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateQueries")] [CLSCompliant(false)] - public static unsafe void CreateQueries(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 n, [OutAttribute] Int32* ids) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateQueries(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateQueries")] [CLSCompliant(false)] - public static void CreateQueries(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 n, [OutAttribute] UInt32[] ids) { throw new BindingsNotRewrittenException(); } + public static void CreateQueries(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateQueries")] [CLSCompliant(false)] - public static void CreateQueries(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 n, [OutAttribute] out UInt32 ids) { throw new BindingsNotRewrittenException(); } + public static void CreateQueries(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateQueries")] [CLSCompliant(false)] - public static unsafe void CreateQueries(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 n, [OutAttribute] UInt32* ids) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateQueries(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateRenderbuffers")] [CLSCompliant(false)] - public static void CreateRenderbuffers(Int32 n, [OutAttribute] Int32[] renderbuffers) { throw new BindingsNotRewrittenException(); } + public static void CreateRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateRenderbuffers")] [CLSCompliant(false)] - public static void CreateRenderbuffers(Int32 n, [OutAttribute] out Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } + public static void CreateRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateRenderbuffers")] [CLSCompliant(false)] - public static unsafe void CreateRenderbuffers(Int32 n, [OutAttribute] Int32* renderbuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateRenderbuffers")] [CLSCompliant(false)] - public static void CreateRenderbuffers(Int32 n, [OutAttribute] UInt32[] renderbuffers) { throw new BindingsNotRewrittenException(); } + public static void CreateRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateRenderbuffers")] [CLSCompliant(false)] - public static void CreateRenderbuffers(Int32 n, [OutAttribute] out UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } + public static void CreateRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateRenderbuffers")] [CLSCompliant(false)] - public static unsafe void CreateRenderbuffers(Int32 n, [OutAttribute] UInt32* renderbuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateSamplers")] [CLSCompliant(false)] - public static void CreateSamplers(Int32 n, [OutAttribute] Int32[] samplers) { throw new BindingsNotRewrittenException(); } + public static void CreateSamplers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateSamplers")] [CLSCompliant(false)] - public static void CreateSamplers(Int32 n, [OutAttribute] out Int32 samplers) { throw new BindingsNotRewrittenException(); } + public static void CreateSamplers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateSamplers")] [CLSCompliant(false)] - public static unsafe void CreateSamplers(Int32 n, [OutAttribute] Int32* samplers) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateSamplers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateSamplers")] [CLSCompliant(false)] - public static void CreateSamplers(Int32 n, [OutAttribute] UInt32[] samplers) { throw new BindingsNotRewrittenException(); } + public static void CreateSamplers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateSamplers")] [CLSCompliant(false)] - public static void CreateSamplers(Int32 n, [OutAttribute] out UInt32 samplers) { throw new BindingsNotRewrittenException(); } + public static void CreateSamplers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateSamplers")] [CLSCompliant(false)] - public static unsafe void CreateSamplers(Int32 n, [OutAttribute] UInt32* samplers) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateSamplers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Creates a shader object @@ -33792,134 +33789,134 @@ namespace OpenTK.Graphics.OpenGL /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTextures")] [CLSCompliant(false)] - public static void CreateTextures(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [OutAttribute] Int32[] textures) { throw new BindingsNotRewrittenException(); } + public static void CreateTextures(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTextures")] [CLSCompliant(false)] - public static void CreateTextures(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [OutAttribute] out Int32 textures) { throw new BindingsNotRewrittenException(); } + public static void CreateTextures(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTextures")] [CLSCompliant(false)] - public static unsafe void CreateTextures(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [OutAttribute] Int32* textures) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateTextures(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTextures")] [CLSCompliant(false)] - public static void CreateTextures(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [OutAttribute] UInt32[] textures) { throw new BindingsNotRewrittenException(); } + public static void CreateTextures(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTextures")] [CLSCompliant(false)] - public static void CreateTextures(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [OutAttribute] out UInt32 textures) { throw new BindingsNotRewrittenException(); } + public static void CreateTextures(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTextures")] [CLSCompliant(false)] - public static unsafe void CreateTextures(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [OutAttribute] UInt32* textures) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateTextures(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTransformFeedbacks")] [CLSCompliant(false)] - public static void CreateTransformFeedbacks(Int32 n, [OutAttribute] Int32[] ids) { throw new BindingsNotRewrittenException(); } + public static void CreateTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTransformFeedbacks")] [CLSCompliant(false)] - public static void CreateTransformFeedbacks(Int32 n, [OutAttribute] out Int32 ids) { throw new BindingsNotRewrittenException(); } + public static void CreateTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void CreateTransformFeedbacks(Int32 n, [OutAttribute] Int32* ids) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTransformFeedbacks")] [CLSCompliant(false)] - public static void CreateTransformFeedbacks(Int32 n, [OutAttribute] UInt32[] ids) { throw new BindingsNotRewrittenException(); } + public static void CreateTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTransformFeedbacks")] [CLSCompliant(false)] - public static void CreateTransformFeedbacks(Int32 n, [OutAttribute] out UInt32 ids) { throw new BindingsNotRewrittenException(); } + public static void CreateTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void CreateTransformFeedbacks(Int32 n, [OutAttribute] UInt32* ids) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateVertexArrays")] [CLSCompliant(false)] - public static void CreateVertexArrays(Int32 n, [OutAttribute] Int32[] arrays) { throw new BindingsNotRewrittenException(); } + public static void CreateVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateVertexArrays")] [CLSCompliant(false)] - public static void CreateVertexArrays(Int32 n, [OutAttribute] out Int32 arrays) { throw new BindingsNotRewrittenException(); } + public static void CreateVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateVertexArrays")] [CLSCompliant(false)] - public static unsafe void CreateVertexArrays(Int32 n, [OutAttribute] Int32* arrays) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateVertexArrays")] [CLSCompliant(false)] - public static void CreateVertexArrays(Int32 n, [OutAttribute] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } + public static void CreateVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateVertexArrays")] [CLSCompliant(false)] - public static void CreateVertexArrays(Int32 n, [OutAttribute] out UInt32 arrays) { throw new BindingsNotRewrittenException(); } + public static void CreateVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateVertexArrays")] [CLSCompliant(false)] - public static unsafe void CreateVertexArrays(Int32 n, [OutAttribute] UInt32* arrays) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify whether front- or back-facing facets can be culled @@ -36336,7 +36333,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of a structure containing the draw parameters. /// [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawElementsIndirect")] - public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.All type, IntPtr indirect) { throw new BindingsNotRewrittenException(); } + public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indirect) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render indexed primitives from array data, taking parameters from memory @@ -36352,7 +36349,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawElementsIndirect")] [CLSCompliant(false)] - public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T2[] indirect) + public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T2[] indirect) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -36370,7 +36367,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawElementsIndirect")] [CLSCompliant(false)] - public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T2[,] indirect) + public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T2[,] indirect) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -36388,7 +36385,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawElementsIndirect")] [CLSCompliant(false)] - public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T2[,,] indirect) + public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T2[,,] indirect) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -36405,7 +36402,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of a structure containing the draw parameters. /// [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawElementsIndirect")] - public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] ref T2 indirect) + public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T2 indirect) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -42546,7 +42543,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTableParameterfv")] [CLSCompliant(false)] - public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get color lookup table parameters @@ -42562,7 +42559,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTableParameterfv")] [CLSCompliant(false)] - public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// /// Get color lookup table parameters @@ -42578,7 +42575,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTableParameterfv")] [CLSCompliant(false)] - public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// Get color lookup table parameters @@ -42594,7 +42591,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTableParameteriv")] [CLSCompliant(false)] - public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get color lookup table parameters @@ -42610,7 +42607,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTableParameteriv")] [CLSCompliant(false)] - public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// Get color lookup table parameters @@ -42626,7 +42623,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTableParameteriv")] [CLSCompliant(false)] - public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Return a compressed texture image @@ -43101,7 +43098,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionParameterfv")] [CLSCompliant(false)] - public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get convolution parameters @@ -43117,7 +43114,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionParameterfv")] [CLSCompliant(false)] - public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } + public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// /// Get convolution parameters @@ -43133,7 +43130,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionParameterfv")] [CLSCompliant(false)] - public static unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// Get convolution parameters @@ -43149,7 +43146,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionParameteriv")] [CLSCompliant(false)] - public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get convolution parameters @@ -43165,7 +43162,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionParameteriv")] [CLSCompliant(false)] - public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// Get convolution parameters @@ -43181,7 +43178,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionParameteriv")] [CLSCompliant(false)] - public static unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve messages from the debug message log @@ -43705,7 +43702,7 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to storage for the returned histogram table. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogram")] - public static void GetHistogram(OpenTK.Graphics.OpenGL.HistogramTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values) { throw new BindingsNotRewrittenException(); } + public static void GetHistogram(OpenTK.Graphics.OpenGL.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values) { throw new BindingsNotRewrittenException(); } /// /// Get histogram table @@ -43727,7 +43724,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogram")] [CLSCompliant(false)] - public static void GetHistogram(OpenTK.Graphics.OpenGL.HistogramTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[] values) + public static void GetHistogram(OpenTK.Graphics.OpenGL.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[] values) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -43751,7 +43748,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogram")] [CLSCompliant(false)] - public static void GetHistogram(OpenTK.Graphics.OpenGL.HistogramTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[,] values) + public static void GetHistogram(OpenTK.Graphics.OpenGL.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[,] values) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -43775,7 +43772,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogram")] [CLSCompliant(false)] - public static void GetHistogram(OpenTK.Graphics.OpenGL.HistogramTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[,,] values) + public static void GetHistogram(OpenTK.Graphics.OpenGL.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[,,] values) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -43798,7 +43795,7 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to storage for the returned histogram table. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogram")] - public static void GetHistogram(OpenTK.Graphics.OpenGL.HistogramTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T4 values) + public static void GetHistogram(OpenTK.Graphics.OpenGL.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T4 values) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -43816,7 +43813,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogramParameterfv")] [CLSCompliant(false)] - public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTarget target, OpenTK.Graphics.OpenGL.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTargetExt target, OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get histogram parameters @@ -43832,7 +43829,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogramParameterfv")] [CLSCompliant(false)] - public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTarget target, OpenTK.Graphics.OpenGL.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } + public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTargetExt target, OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// /// Get histogram parameters @@ -43848,7 +43845,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogramParameterfv")] [CLSCompliant(false)] - public static unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTarget target, OpenTK.Graphics.OpenGL.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTargetExt target, OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// Get histogram parameters @@ -43864,7 +43861,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogramParameteriv")] [CLSCompliant(false)] - public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTarget target, OpenTK.Graphics.OpenGL.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTargetExt target, OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get histogram parameters @@ -43880,7 +43877,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogramParameteriv")] [CLSCompliant(false)] - public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTarget target, OpenTK.Graphics.OpenGL.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTargetExt target, OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// Get histogram parameters @@ -43896,7 +43893,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogramParameteriv")] [CLSCompliant(false)] - public static unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTarget target, OpenTK.Graphics.OpenGL.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTargetExt target, OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// @@ -44620,7 +44617,7 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to storage for the returned values. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmax")] - public static void GetMinmax(OpenTK.Graphics.OpenGL.MinmaxTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values) { throw new BindingsNotRewrittenException(); } + public static void GetMinmax(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values) { throw new BindingsNotRewrittenException(); } /// /// Get minimum and maximum pixel values @@ -44642,7 +44639,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmax")] [CLSCompliant(false)] - public static void GetMinmax(OpenTK.Graphics.OpenGL.MinmaxTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[] values) + public static void GetMinmax(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[] values) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -44666,7 +44663,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmax")] [CLSCompliant(false)] - public static void GetMinmax(OpenTK.Graphics.OpenGL.MinmaxTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[,] values) + public static void GetMinmax(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[,] values) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -44690,7 +44687,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmax")] [CLSCompliant(false)] - public static void GetMinmax(OpenTK.Graphics.OpenGL.MinmaxTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[,,] values) + public static void GetMinmax(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[,,] values) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -44713,7 +44710,7 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to storage for the returned values. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmax")] - public static void GetMinmax(OpenTK.Graphics.OpenGL.MinmaxTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T4 values) + public static void GetMinmax(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T4 values) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -44731,7 +44728,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmaxParameterfv")] [CLSCompliant(false)] - public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get minmax parameters @@ -44747,7 +44744,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmaxParameterfv")] [CLSCompliant(false)] - public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } + public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// /// Get minmax parameters @@ -44763,7 +44760,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmaxParameterfv")] [CLSCompliant(false)] - public static unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// Get minmax parameters @@ -44779,7 +44776,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmaxParameteriv")] [CLSCompliant(false)] - public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get minmax parameters @@ -44795,7 +44792,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmaxParameteriv")] [CLSCompliant(false)] - public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// Get minmax parameters @@ -44811,7 +44808,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmaxParameteriv")] [CLSCompliant(false)] - public static unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Retrieve the location of a sample @@ -45470,7 +45467,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnColorTable")] - public static void GetnColorTable(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [OutAttribute] IntPtr table) { throw new BindingsNotRewrittenException(); } + public static void GetnColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [OutAttribute] IntPtr table) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45480,7 +45477,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnColorTable")] [CLSCompliant(false)] - public static void GetnColorTable(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T4[] table) + public static void GetnColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T4[] table) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -45492,7 +45489,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnColorTable")] [CLSCompliant(false)] - public static void GetnColorTable(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T4[,] table) + public static void GetnColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T4[,] table) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -45504,7 +45501,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnColorTable")] [CLSCompliant(false)] - public static void GetnColorTable(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T4[,,] table) + public static void GetnColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T4[,,] table) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -45515,7 +45512,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnColorTable")] - public static void GetnColorTable(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] ref T4 table) + public static void GetnColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] ref T4 table) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -45525,7 +45522,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnCompressedTexImage")] - public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.Version45 target, Int32 lod, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } + public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45534,7 +45531,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnCompressedTexImage")] [CLSCompliant(false)] - public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.Version45 target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute] T3[] pixels) + public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute] T3[] pixels) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -45545,7 +45542,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnCompressedTexImage")] [CLSCompliant(false)] - public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.Version45 target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute] T3[,] pixels) + public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute] T3[,] pixels) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -45556,7 +45553,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnCompressedTexImage")] [CLSCompliant(false)] - public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.Version45 target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute] T3[,,] pixels) + public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute] T3[,,] pixels) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -45566,7 +45563,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnCompressedTexImage")] - public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.Version45 target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute] ref T3 pixels) + public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute] ref T3 pixels) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -45577,7 +45574,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnConvolutionFilter")] - public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [OutAttribute] IntPtr image) { throw new BindingsNotRewrittenException(); } + public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [OutAttribute] IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45587,7 +45584,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnConvolutionFilter")] [CLSCompliant(false)] - public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T4[] image) + public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T4[] image) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -45599,7 +45596,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnConvolutionFilter")] [CLSCompliant(false)] - public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T4[,] image) + public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T4[,] image) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -45611,7 +45608,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnConvolutionFilter")] [CLSCompliant(false)] - public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T4[,,] image) + public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T4[,,] image) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -45622,7 +45619,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnConvolutionFilter")] - public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] ref T4 image) + public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] ref T4 image) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -45634,7 +45631,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnHistogram")] - public static void GetnHistogram(OpenTK.Graphics.OpenGL.Version45 target, bool reset, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [OutAttribute] IntPtr values) { throw new BindingsNotRewrittenException(); } + public static void GetnHistogram(OpenTK.Graphics.OpenGL.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [OutAttribute] IntPtr values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45645,7 +45642,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnHistogram")] [CLSCompliant(false)] - public static void GetnHistogram(OpenTK.Graphics.OpenGL.Version45 target, bool reset, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T5[] values) + public static void GetnHistogram(OpenTK.Graphics.OpenGL.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[] values) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -45658,7 +45655,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnHistogram")] [CLSCompliant(false)] - public static void GetnHistogram(OpenTK.Graphics.OpenGL.Version45 target, bool reset, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T5[,] values) + public static void GetnHistogram(OpenTK.Graphics.OpenGL.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[,] values) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -45671,7 +45668,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnHistogram")] [CLSCompliant(false)] - public static void GetnHistogram(OpenTK.Graphics.OpenGL.Version45 target, bool reset, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T5[,,] values) + public static void GetnHistogram(OpenTK.Graphics.OpenGL.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[,,] values) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -45683,7 +45680,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnHistogram")] - public static void GetnHistogram(OpenTK.Graphics.OpenGL.Version45 target, bool reset, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] ref T5 values) + public static void GetnHistogram(OpenTK.Graphics.OpenGL.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] ref T5 values) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -45694,7 +45691,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapdv")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] Double[] v) { throw new BindingsNotRewrittenException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.MapQuery query, Int32 bufSize, [OutAttribute] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45703,7 +45700,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapdv")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] out Double v) { throw new BindingsNotRewrittenException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.MapQuery query, Int32 bufSize, [OutAttribute] out Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45712,7 +45709,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapdv")] [CLSCompliant(false)] - public static unsafe void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] Double* v) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetnMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.MapQuery query, Int32 bufSize, [OutAttribute] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45721,7 +45718,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapfv")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] Single[] v) { throw new BindingsNotRewrittenException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.MapQuery query, Int32 bufSize, [OutAttribute] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45730,7 +45727,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapfv")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] out Single v) { throw new BindingsNotRewrittenException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.MapQuery query, Int32 bufSize, [OutAttribute] out Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45739,7 +45736,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapfv")] [CLSCompliant(false)] - public static unsafe void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] Single* v) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetnMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.MapQuery query, Int32 bufSize, [OutAttribute] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45748,7 +45745,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapiv")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] Int32[] v) { throw new BindingsNotRewrittenException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.MapQuery query, Int32 bufSize, [OutAttribute] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45757,7 +45754,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapiv")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] out Int32 v) { throw new BindingsNotRewrittenException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.MapQuery query, Int32 bufSize, [OutAttribute] out Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45766,7 +45763,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapiv")] [CLSCompliant(false)] - public static unsafe void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] Int32* v) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetnMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.MapQuery query, Int32 bufSize, [OutAttribute] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45776,7 +45773,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMinmax")] - public static void GetnMinmax(OpenTK.Graphics.OpenGL.Version45 target, bool reset, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [OutAttribute] IntPtr values) { throw new BindingsNotRewrittenException(); } + public static void GetnMinmax(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [OutAttribute] IntPtr values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45787,7 +45784,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMinmax")] [CLSCompliant(false)] - public static void GetnMinmax(OpenTK.Graphics.OpenGL.Version45 target, bool reset, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T5[] values) + public static void GetnMinmax(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[] values) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -45800,7 +45797,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMinmax")] [CLSCompliant(false)] - public static void GetnMinmax(OpenTK.Graphics.OpenGL.Version45 target, bool reset, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T5[,] values) + public static void GetnMinmax(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[,] values) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -45813,7 +45810,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMinmax")] [CLSCompliant(false)] - public static void GetnMinmax(OpenTK.Graphics.OpenGL.Version45 target, bool reset, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T5[,,] values) + public static void GetnMinmax(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[,,] values) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -45825,7 +45822,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMinmax")] - public static void GetnMinmax(OpenTK.Graphics.OpenGL.Version45 target, bool reset, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] ref T5 values) + public static void GetnMinmax(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] ref T5 values) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -45835,7 +45832,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapfv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] Single[] values) { throw new BindingsNotRewrittenException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 bufSize, [OutAttribute] Single[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45843,7 +45840,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapfv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] out Single values) { throw new BindingsNotRewrittenException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 bufSize, [OutAttribute] out Single values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45851,7 +45848,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapfv")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] Single* values) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 bufSize, [OutAttribute] Single* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45859,7 +45856,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapuiv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] Int32[] values) { throw new BindingsNotRewrittenException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 bufSize, [OutAttribute] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45867,7 +45864,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapuiv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] out Int32 values) { throw new BindingsNotRewrittenException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 bufSize, [OutAttribute] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45875,7 +45872,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapuiv")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] Int32* values) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 bufSize, [OutAttribute] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45883,7 +45880,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapuiv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] UInt32[] values) { throw new BindingsNotRewrittenException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 bufSize, [OutAttribute] UInt32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45891,7 +45888,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapuiv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] out UInt32 values) { throw new BindingsNotRewrittenException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 bufSize, [OutAttribute] out UInt32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45899,7 +45896,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapuiv")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] UInt32* values) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 bufSize, [OutAttribute] UInt32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45907,7 +45904,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapusv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] Int16[] values) { throw new BindingsNotRewrittenException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 bufSize, [OutAttribute] Int16[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45915,7 +45912,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapusv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] out Int16 values) { throw new BindingsNotRewrittenException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 bufSize, [OutAttribute] out Int16 values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45923,7 +45920,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapusv")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] Int16* values) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 bufSize, [OutAttribute] Int16* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45931,7 +45928,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapusv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] UInt16[] values) { throw new BindingsNotRewrittenException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 bufSize, [OutAttribute] UInt16[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45939,7 +45936,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapusv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] out UInt16 values) { throw new BindingsNotRewrittenException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 bufSize, [OutAttribute] out UInt16 values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45947,7 +45944,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapusv")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] UInt16* values) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 bufSize, [OutAttribute] UInt16* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPolygonStipple")] @@ -45985,7 +45982,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnSeparableFilter")] - public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 rowBufSize, [OutAttribute] IntPtr row, Int32 columnBufSize, [OutAttribute] IntPtr column, [OutAttribute] IntPtr span) { throw new BindingsNotRewrittenException(); } + public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 rowBufSize, [OutAttribute] IntPtr row, Int32 columnBufSize, [OutAttribute] IntPtr column, [OutAttribute] IntPtr span) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45998,7 +45995,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnSeparableFilter")] [CLSCompliant(false)] - public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 rowBufSize, [InAttribute, OutAttribute] T4[] row, Int32 columnBufSize, [InAttribute, OutAttribute] T6[] column, [InAttribute, OutAttribute] T7[] span) + public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 rowBufSize, [InAttribute, OutAttribute] T4[] row, Int32 columnBufSize, [InAttribute, OutAttribute] T6[] column, [InAttribute, OutAttribute] T7[] span) where T4 : struct where T6 : struct where T7 : struct @@ -46015,7 +46012,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnSeparableFilter")] [CLSCompliant(false)] - public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 rowBufSize, [InAttribute, OutAttribute] T4[,] row, Int32 columnBufSize, [InAttribute, OutAttribute] T6[,] column, [InAttribute, OutAttribute] T7[,] span) + public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 rowBufSize, [InAttribute, OutAttribute] T4[,] row, Int32 columnBufSize, [InAttribute, OutAttribute] T6[,] column, [InAttribute, OutAttribute] T7[,] span) where T4 : struct where T6 : struct where T7 : struct @@ -46032,7 +46029,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnSeparableFilter")] [CLSCompliant(false)] - public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 rowBufSize, [InAttribute, OutAttribute] T4[,,] row, Int32 columnBufSize, [InAttribute, OutAttribute] T6[,,] column, [InAttribute, OutAttribute] T7[,,] span) + public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 rowBufSize, [InAttribute, OutAttribute] T4[,,] row, Int32 columnBufSize, [InAttribute, OutAttribute] T6[,,] column, [InAttribute, OutAttribute] T7[,,] span) where T4 : struct where T6 : struct where T7 : struct @@ -46048,7 +46045,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnSeparableFilter")] - public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 rowBufSize, [InAttribute, OutAttribute] ref T4 row, Int32 columnBufSize, [InAttribute, OutAttribute] ref T6 column, [InAttribute, OutAttribute] ref T7 span) + public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 rowBufSize, [InAttribute, OutAttribute] ref T4 row, Int32 columnBufSize, [InAttribute, OutAttribute] ref T6 column, [InAttribute, OutAttribute] ref T7 span) where T4 : struct where T6 : struct where T7 : struct @@ -46062,7 +46059,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnTexImage")] - public static void GetnTexImage(OpenTK.Graphics.OpenGL.Version45 target, Int32 level, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } + public static void GetnTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -46073,7 +46070,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnTexImage")] [CLSCompliant(false)] - public static void GetnTexImage(OpenTK.Graphics.OpenGL.Version45 target, Int32 level, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T5[] pixels) + public static void GetnTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[] pixels) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -46086,7 +46083,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnTexImage")] [CLSCompliant(false)] - public static void GetnTexImage(OpenTK.Graphics.OpenGL.Version45 target, Int32 level, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T5[,] pixels) + public static void GetnTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[,] pixels) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -46099,7 +46096,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnTexImage")] [CLSCompliant(false)] - public static void GetnTexImage(OpenTK.Graphics.OpenGL.Version45 target, Int32 level, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T5[,,] pixels) + public static void GetnTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[,,] pixels) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -46111,7 +46108,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnTexImage")] - public static void GetnTexImage(OpenTK.Graphics.OpenGL.Version45 target, Int32 level, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] ref T5 pixels) + public static void GetnTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] ref T5 pixels) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -46963,7 +46960,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: size] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetPixelMapxv")] [CLSCompliant(false)] - public static void GetPixelMapx(OpenTK.Graphics.OpenGL.OesFixedPoint map, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32[] values) { throw new BindingsNotRewrittenException(); } + public static void GetPixelMapx(OpenTK.Graphics.OpenGL.PixelMap map, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// /// @@ -46971,7 +46968,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: size] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetPixelMapxv")] [CLSCompliant(false)] - public static void GetPixelMapx(OpenTK.Graphics.OpenGL.OesFixedPoint map, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out Int32 values) { throw new BindingsNotRewrittenException(); } + public static void GetPixelMapx(OpenTK.Graphics.OpenGL.PixelMap map, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// /// @@ -46979,7 +46976,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: size] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetPixelMapxv")] [CLSCompliant(false)] - public static unsafe void GetPixelMapx(OpenTK.Graphics.OpenGL.OesFixedPoint map, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32* values) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPixelMapx(OpenTK.Graphics.OpenGL.PixelMap map, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1 or KHR_debug|VERSION_1_1|VERSION_4_3|VERSION_4_3] /// Return the address of the specified pointer @@ -48646,7 +48643,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetQueryBufferObjecti64v")] [CLSCompliant(false)] - public static void GetQueryBufferObject(Int32 id, Int32 buffer, OpenTK.Graphics.OpenGL.All pname, IntPtr offset) { throw new BindingsNotRewrittenException(); } + public static void GetQueryBufferObject(Int32 id, Int32 buffer, OpenTK.Graphics.OpenGL.QueryObjectParameterName pname, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -48655,7 +48652,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetQueryBufferObjecti64v")] [CLSCompliant(false)] - public static void GetQueryBufferObject(UInt32 id, UInt32 buffer, OpenTK.Graphics.OpenGL.All pname, IntPtr offset) { throw new BindingsNotRewrittenException(); } + public static void GetQueryBufferObject(UInt32 id, UInt32 buffer, OpenTK.Graphics.OpenGL.QueryObjectParameterName pname, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Return parameters of an indexed query object target @@ -49353,30 +49350,6 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } - /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] - /// - /// - /// [length: COMPSIZE(pname)] - [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] - [CLSCompliant(false)] - public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } - - /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] - /// - /// - /// [length: COMPSIZE(pname)] - [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] - [CLSCompliant(false)] - public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } - - /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] - /// - /// - /// [length: COMPSIZE(pname)] - [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] - [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } - /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// /// @@ -49410,7 +49383,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -49418,7 +49391,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -49426,7 +49399,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -49459,25 +49432,25 @@ namespace OpenTK.Graphics.OpenGL /// /// /// [length: COMPSIZE(pname)] - [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIuiv")] + [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// /// /// [length: COMPSIZE(pname)] - [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIuiv")] + [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// /// /// [length: COMPSIZE(pname)] - [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIuiv")] + [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -49506,6 +49479,30 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIuiv")] + [CLSCompliant(false)] + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIuiv")] + [CLSCompliant(false)] + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } + + /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] + /// + /// + /// [length: COMPSIZE(pname)] + [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIuiv")] + [CLSCompliant(false)] + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } + /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values /// @@ -49726,7 +49723,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to storage for the span filter image (currently unused). /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetSeparableFilter")] - public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr row, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr column, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr span) { throw new BindingsNotRewrittenException(); } + public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr row, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr column, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr span) { throw new BindingsNotRewrittenException(); } /// /// Get separable convolution filter kernel images @@ -49751,7 +49748,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetSeparableFilter")] [CLSCompliant(false)] - public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[] column, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T5[] span) + public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[] column, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T5[] span) where T3 : struct where T4 : struct where T5 : struct @@ -49780,7 +49777,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetSeparableFilter")] [CLSCompliant(false)] - public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[,] column, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T5[,] span) + public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[,] column, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T5[,] span) where T3 : struct where T4 : struct where T5 : struct @@ -49809,7 +49806,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetSeparableFilter")] [CLSCompliant(false)] - public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,,] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[,,] column, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T5[,,] span) + public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,,] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[,,] column, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T5[,,] span) where T3 : struct where T4 : struct where T5 : struct @@ -49837,7 +49834,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to storage for the span filter image (currently unused). /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetSeparableFilter")] - public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T3 row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T4 column, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T5 span) + public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T3 row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T4 column, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T5 span) where T3 : struct where T4 : struct where T5 : struct @@ -51312,7 +51309,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIiv")] [CLSCompliant(false)] - public static void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51320,7 +51317,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIiv")] [CLSCompliant(false)] - public static void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51328,7 +51325,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIiv")] [CLSCompliant(false)] - public static unsafe void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51336,7 +51333,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIiv")] [CLSCompliant(false)] - public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51344,7 +51341,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIiv")] [CLSCompliant(false)] - public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51352,7 +51349,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIiv")] [CLSCompliant(false)] - public static unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51360,7 +51357,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIuiv")] [CLSCompliant(false)] - public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51368,7 +51365,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIuiv")] [CLSCompliant(false)] - public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51376,7 +51373,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIuiv")] [CLSCompliant(false)] - public static unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -53302,7 +53299,7 @@ namespace OpenTK.Graphics.OpenGL /// If True, pixels will be consumed by the histogramming process and no drawing or texture loading will take place. If False, pixels will proceed to the minmax process after histogramming. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glHistogram")] - public static void Histogram(OpenTK.Graphics.OpenGL.HistogramTarget target, Int32 width, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink) { throw new BindingsNotRewrittenException(); } + public static void Histogram(OpenTK.Graphics.OpenGL.HistogramTargetExt target, Int32 width, OpenTK.Graphics.OpenGL.InternalFormat internalformat, bool sink) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color index @@ -55373,7 +55370,7 @@ namespace OpenTK.Graphics.OpenGL /// If True, pixels will be consumed by the minmax process and no drawing or texture loading will take place. If False, pixels will proceed to the final conversion process after minmax. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glMinmax")] - public static void Minmax(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink) { throw new BindingsNotRewrittenException(); } + public static void Minmax(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, bool sink) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specifies minimum rate at which sample shaing takes place @@ -60097,7 +60094,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: size] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelMapx")] [CLSCompliant(false)] - public static void PixelMapx(OpenTK.Graphics.OpenGL.OesFixedPoint map, Int32 size, [CountAttribute(Parameter = "size")] Int32[] values) { throw new BindingsNotRewrittenException(); } + public static void PixelMapx(OpenTK.Graphics.OpenGL.PixelMap map, Int32 size, [CountAttribute(Parameter = "size")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// /// @@ -60105,7 +60102,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: size] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelMapx")] [CLSCompliant(false)] - public static void PixelMapx(OpenTK.Graphics.OpenGL.OesFixedPoint map, Int32 size, [CountAttribute(Parameter = "size")] ref Int32 values) { throw new BindingsNotRewrittenException(); } + public static void PixelMapx(OpenTK.Graphics.OpenGL.PixelMap map, Int32 size, [CountAttribute(Parameter = "size")] ref Int32 values) { throw new BindingsNotRewrittenException(); } /// /// @@ -60113,7 +60110,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: size] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelMapx")] [CLSCompliant(false)] - public static unsafe void PixelMapx(OpenTK.Graphics.OpenGL.OesFixedPoint map, Int32 size, [CountAttribute(Parameter = "size")] Int32* values) { throw new BindingsNotRewrittenException(); } + public static unsafe void PixelMapx(OpenTK.Graphics.OpenGL.PixelMap map, Int32 size, [CountAttribute(Parameter = "size")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set pixel storage modes @@ -60143,7 +60140,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelStorex")] - public static void PixelStorex(OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new BindingsNotRewrittenException(); } + public static void PixelStorex(OpenTK.Graphics.OpenGL.PixelStoreParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set pixel transfer modes @@ -65145,7 +65142,7 @@ namespace OpenTK.Graphics.OpenGL /// Must be Histogram. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glResetHistogram")] - public static void ResetHistogram(OpenTK.Graphics.OpenGL.HistogramTarget target) { throw new BindingsNotRewrittenException(); } + public static void ResetHistogram(OpenTK.Graphics.OpenGL.HistogramTargetExt target) { throw new BindingsNotRewrittenException(); } /// /// Reset minmax table entries to initial values @@ -65154,7 +65151,7 @@ namespace OpenTK.Graphics.OpenGL /// Must be Minmax. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glResetMinmax")] - public static void ResetMinmax(OpenTK.Graphics.OpenGL.MinmaxTarget target) { throw new BindingsNotRewrittenException(); } + public static void ResetMinmax(OpenTK.Graphics.OpenGL.MinmaxTargetExt target) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Resume transform feedback operations @@ -66649,7 +66646,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a one-dimensional array of pixel data that is processed to build the column filter kernel. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glSeparableFilter2D")] - public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "target,format,type,width")] IntPtr row, [CountAttribute(Computed = "target,format,type,height")] IntPtr column) { throw new BindingsNotRewrittenException(); } + public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "target,format,type,width")] IntPtr row, [CountAttribute(Computed = "target,format,type,height")] IntPtr column) { throw new BindingsNotRewrittenException(); } /// /// Define a separable two-dimensional convolution filter @@ -66680,7 +66677,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glSeparableFilter2D")] [CLSCompliant(false)] - public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,width")] T6[] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] T7[] column) + public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,width")] T6[] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] T7[] column) where T6 : struct where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -66714,7 +66711,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glSeparableFilter2D")] [CLSCompliant(false)] - public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,width")] T6[,] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] T7[,] column) + public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,width")] T6[,] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] T7[,] column) where T6 : struct where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -66748,7 +66745,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glSeparableFilter2D")] [CLSCompliant(false)] - public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,width")] T6[,,] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] T7[,,] column) + public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,width")] T6[,,] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] T7[,,] column) where T6 : struct where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -66781,7 +66778,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a one-dimensional array of pixel data that is processed to build the column filter kernel. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glSeparableFilter2D")] - public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,width")] ref T6 row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] ref T7 column) + public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,width")] ref T6 row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] ref T7 column) where T6 : struct where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -70583,7 +70580,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIiv")] [CLSCompliant(false)] - public static void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.All pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70591,7 +70588,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIiv")] [CLSCompliant(false)] - public static void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.All pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70599,7 +70596,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIiv")] [CLSCompliant(false)] - public static unsafe void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.All pname, Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70607,7 +70604,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIiv")] [CLSCompliant(false)] - public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70615,7 +70612,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIiv")] [CLSCompliant(false)] - public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70623,7 +70620,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIiv")] [CLSCompliant(false)] - public static unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70631,7 +70628,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIuiv")] [CLSCompliant(false)] - public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, UInt32[] @params) { throw new BindingsNotRewrittenException(); } + public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70639,7 +70636,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIuiv")] [CLSCompliant(false)] - public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, ref UInt32 @params) { throw new BindingsNotRewrittenException(); } + public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70647,7 +70644,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIuiv")] [CLSCompliant(false)] - public static unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, UInt32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -73790,7 +73787,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayAttribLFormat")] [CLSCompliant(false)] - public static void VertexArrayAttribLFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.All type, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } + public static void VertexArrayAttribLFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribType type, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -73800,7 +73797,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayAttribLFormat")] [CLSCompliant(false)] - public static void VertexArrayAttribLFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.All type, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } + public static void VertexArrayAttribLFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribType type, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -78328,7 +78325,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the output type of the primitives that will be recorded into the buffer objects that are bound for transform feedback. /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glBeginTransformFeedbackEXT")] - public static void BeginTransformFeedback(OpenTK.Graphics.OpenGL.ExtTransformFeedback primitiveMode) { throw new BindingsNotRewrittenException(); } + public static void BeginTransformFeedback(OpenTK.Graphics.OpenGL.PrimitiveType primitiveMode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glBeginVertexShaderEXT")] @@ -78348,7 +78345,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glBindBufferBaseEXT")] [CLSCompliant(false)] - public static void BindBufferBase(OpenTK.Graphics.OpenGL.ExtTransformFeedback target, Int32 index, Int32 buffer) { throw new BindingsNotRewrittenException(); } + public static void BindBufferBase(OpenTK.Graphics.OpenGL.BufferTargetArb target, Int32 index, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// Bind a buffer object to an indexed buffer target @@ -78364,7 +78361,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glBindBufferBaseEXT")] [CLSCompliant(false)] - public static void BindBufferBase(OpenTK.Graphics.OpenGL.ExtTransformFeedback target, UInt32 index, UInt32 buffer) { throw new BindingsNotRewrittenException(); } + public static void BindBufferBase(OpenTK.Graphics.OpenGL.BufferTargetArb target, UInt32 index, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// @@ -78373,7 +78370,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glBindBufferOffsetEXT")] [CLSCompliant(false)] - public static void BindBufferOffset(OpenTK.Graphics.OpenGL.ExtTransformFeedback target, Int32 index, Int32 buffer, IntPtr offset) { throw new BindingsNotRewrittenException(); } + public static void BindBufferOffset(OpenTK.Graphics.OpenGL.BufferTargetArb target, Int32 index, Int32 buffer, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// @@ -78382,7 +78379,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glBindBufferOffsetEXT")] [CLSCompliant(false)] - public static void BindBufferOffset(OpenTK.Graphics.OpenGL.ExtTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset) { throw new BindingsNotRewrittenException(); } + public static void BindBufferOffset(OpenTK.Graphics.OpenGL.BufferTargetArb target, UInt32 index, UInt32 buffer, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// Bind a range within a buffer object to an indexed buffer target @@ -78404,7 +78401,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glBindBufferRangeEXT")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.OpenGL.ExtTransformFeedback target, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL.BufferTargetArb target, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// Bind a range within a buffer object to an indexed buffer target @@ -78426,7 +78423,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glBindBufferRangeEXT")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.OpenGL.ExtTransformFeedback target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL.BufferTargetArb target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// Bind a range within a buffer object to an indexed buffer target @@ -78448,7 +78445,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glBindBufferRangeEXT")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.OpenGL.ExtTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL.BufferTargetArb target, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// Bind a range within a buffer object to an indexed buffer target @@ -78470,7 +78467,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glBindBufferRangeEXT")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.OpenGL.ExtTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL.BufferTargetArb target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Bind a user-defined varying out variable to a fragment shader color number @@ -78556,7 +78553,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_shader_image_load_store", Version = "", EntryPoint = "glBindImageTextureEXT")] [CLSCompliant(false)] - public static void BindImageTexture(Int32 index, Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore access, Int32 format) { throw new BindingsNotRewrittenException(); } + public static void BindImageTexture(Int32 index, Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.BufferAccessArb access, Int32 format) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_image_load_store] /// Bind a level of a texture to an image unit @@ -78584,7 +78581,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_shader_image_load_store", Version = "", EntryPoint = "glBindImageTextureEXT")] [CLSCompliant(false)] - public static void BindImageTexture(UInt32 index, UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore access, Int32 format) { throw new BindingsNotRewrittenException(); } + public static void BindImageTexture(UInt32 index, UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.BufferAccessArb access, Int32 format) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -78992,7 +78989,7 @@ namespace OpenTK.Graphics.OpenGL /// Specified how the alpha source blending factor is computed. The initial value is One. /// [AutoGenerated(Category = "EXT_blend_func_separate", Version = "", EntryPoint = "glBlendFuncSeparateEXT")] - public static void BlendFuncSeparate(OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate sfactorRGB, OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate dfactorRGB, OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate sfactorAlpha, OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate dfactorAlpha) { throw new BindingsNotRewrittenException(); } + public static void BlendFuncSeparate(OpenTK.Graphics.OpenGL.BlendingFactor sfactorRGB, OpenTK.Graphics.OpenGL.BlendingFactor dfactorRGB, OpenTK.Graphics.OpenGL.BlendingFactor sfactorAlpha, OpenTK.Graphics.OpenGL.BlendingFactor dfactorAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_blit] /// Copy a block of pixels from the read framebuffer to the draw framebuffer @@ -79074,8 +79071,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] - [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.OpenGL.ExtExternalBuffer target, IntPtr offset, Int32 size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } + public static void BufferStorageExternal(OpenTK.Graphics.OpenGL.ExtExternalBuffer target, IntPtr offset, Int32 size, IntPtr clientBuffer, OpenTK.Graphics.OpenGL.MapBufferUsageMask flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -79084,28 +79080,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] - [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.OpenGL.ExtExternalBuffer target, IntPtr offset, Int32 size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_external_buffer] - /// - /// - /// - /// - /// - [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] - [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.OpenGL.ExtExternalBuffer target, IntPtr offset, IntPtr size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_external_buffer] - /// - /// - /// - /// - /// - [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] - [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.OpenGL.ExtExternalBuffer target, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } + public static void BufferStorageExternal(OpenTK.Graphics.OpenGL.ExtExternalBuffer target, IntPtr offset, IntPtr size, IntPtr clientBuffer, OpenTK.Graphics.OpenGL.MapBufferUsageMask flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -79157,14 +79132,14 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCheckNamedFramebufferStatusEXT")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.ExtDirectStateAccess CheckNamedFramebufferStatus(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.OpenGL.FramebufferStatus CheckNamedFramebufferStatus(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCheckNamedFramebufferStatusEXT")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.ExtDirectStateAccess CheckNamedFramebufferStatus(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.OpenGL.FramebufferStatus CheckNamedFramebufferStatus(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_integer] /// @@ -80575,7 +80550,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a one-dimensional array of pixel data that is processed to build the color table. /// [AutoGenerated(Category = "EXT_paletted_texture", Version = "", EntryPoint = "glColorTableEXT")] - public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalFormat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr table) { throw new BindingsNotRewrittenException(); } + public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.InternalFormat internalFormat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr table) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_paletted_texture] /// Define a color lookup table @@ -80600,7 +80575,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_paletted_texture", Version = "", EntryPoint = "glColorTableEXT")] [CLSCompliant(false)] - public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalFormat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[] table) + public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.InternalFormat internalFormat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[] table) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -80627,7 +80602,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_paletted_texture", Version = "", EntryPoint = "glColorTableEXT")] [CLSCompliant(false)] - public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalFormat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,] table) + public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.InternalFormat internalFormat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,] table) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -80654,7 +80629,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_paletted_texture", Version = "", EntryPoint = "glColorTableEXT")] [CLSCompliant(false)] - public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalFormat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,,] table) + public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.InternalFormat internalFormat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,,] table) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -80680,7 +80655,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a one-dimensional array of pixel data that is processed to build the color table. /// [AutoGenerated(Category = "EXT_paletted_texture", Version = "", EntryPoint = "glColorTableEXT")] - public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalFormat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T5 table) + public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.InternalFormat internalFormat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T5 table) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -80694,7 +80669,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage1DEXT")] - public static void CompressedMultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } + public static void CompressedMultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80707,7 +80682,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage1DEXT")] [CLSCompliant(false)] - public static void CompressedMultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] bits) + public static void CompressedMultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] bits) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -80722,7 +80697,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage1DEXT")] [CLSCompliant(false)] - public static void CompressedMultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] bits) + public static void CompressedMultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] bits) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -80737,7 +80712,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage1DEXT")] [CLSCompliant(false)] - public static void CompressedMultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] bits) + public static void CompressedMultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] bits) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -80751,7 +80726,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage1DEXT")] - public static void CompressedMultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 bits) + public static void CompressedMultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 bits) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -80766,7 +80741,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage2DEXT")] - public static void CompressedMultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } + public static void CompressedMultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80780,7 +80755,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage2DEXT")] [CLSCompliant(false)] - public static void CompressedMultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] bits) + public static void CompressedMultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] bits) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -80796,7 +80771,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage2DEXT")] [CLSCompliant(false)] - public static void CompressedMultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] bits) + public static void CompressedMultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] bits) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -80812,7 +80787,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage2DEXT")] [CLSCompliant(false)] - public static void CompressedMultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] bits) + public static void CompressedMultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] bits) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -80827,7 +80802,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage2DEXT")] - public static void CompressedMultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 bits) + public static void CompressedMultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 bits) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -80843,7 +80818,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage3DEXT")] - public static void CompressedMultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } + public static void CompressedMultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80858,7 +80833,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage3DEXT")] [CLSCompliant(false)] - public static void CompressedMultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[] bits) + public static void CompressedMultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[] bits) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -80875,7 +80850,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage3DEXT")] [CLSCompliant(false)] - public static void CompressedMultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,] bits) + public static void CompressedMultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,] bits) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -80892,7 +80867,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage3DEXT")] [CLSCompliant(false)] - public static void CompressedMultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,,] bits) + public static void CompressedMultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,,] bits) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -80908,7 +80883,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage3DEXT")] - public static void CompressedMultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T9 bits) + public static void CompressedMultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T9 bits) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -81166,7 +81141,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage1DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } + public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81179,7 +81154,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage1DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] bits) + public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] bits) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -81194,7 +81169,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage1DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] bits) + public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] bits) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -81209,7 +81184,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage1DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] bits) + public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] bits) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -81224,7 +81199,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage1DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 bits) + public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 bits) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -81239,7 +81214,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage1DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } + public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81252,7 +81227,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage1DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] bits) + public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] bits) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -81267,7 +81242,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage1DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] bits) + public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] bits) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -81282,7 +81257,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage1DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] bits) + public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] bits) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -81297,7 +81272,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage1DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 bits) + public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 bits) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -81313,7 +81288,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage2DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } + public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81327,7 +81302,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage2DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] bits) + public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] bits) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -81343,7 +81318,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage2DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] bits) + public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] bits) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -81359,7 +81334,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage2DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] bits) + public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] bits) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -81375,7 +81350,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage2DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 bits) + public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 bits) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -81391,7 +81366,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage2DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } + public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81405,7 +81380,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage2DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] bits) + public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] bits) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -81421,7 +81396,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage2DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] bits) + public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] bits) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -81437,7 +81412,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage2DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] bits) + public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] bits) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -81453,7 +81428,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage2DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 bits) + public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 bits) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -81470,7 +81445,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage3DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } + public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81485,7 +81460,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage3DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[] bits) + public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[] bits) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -81502,7 +81477,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage3DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,] bits) + public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,] bits) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -81519,7 +81494,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage3DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,,] bits) + public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,,] bits) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -81536,7 +81511,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage3DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T9 bits) + public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T9 bits) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -81553,7 +81528,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage3DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } + public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81568,7 +81543,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage3DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[] bits) + public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[] bits) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -81585,7 +81560,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage3DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,] bits) + public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,] bits) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -81602,7 +81577,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage3DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,,] bits) + public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,,] bits) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -81619,7 +81594,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage3DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T9 bits) + public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T9 bits) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -82143,7 +82118,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a one-dimensional array of pixel data that is processed to build the convolution filter kernel. /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter1DEXT")] - public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr image) { throw new BindingsNotRewrittenException(); } + public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a one-dimensional convolution filter @@ -82168,7 +82143,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter1DEXT")] [CLSCompliant(false)] - public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[] image) + public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[] image) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -82195,7 +82170,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter1DEXT")] [CLSCompliant(false)] - public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,] image) + public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,] image) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -82222,7 +82197,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter1DEXT")] [CLSCompliant(false)] - public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,,] image) + public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,,] image) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -82248,7 +82223,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a one-dimensional array of pixel data that is processed to build the convolution filter kernel. /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter1DEXT")] - public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T5 image) + public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T5 image) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -82275,7 +82250,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter1DEXT")] - public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr image) { throw new BindingsNotRewrittenException(); } + public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a one-dimensional convolution filter @@ -82301,7 +82276,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter1DEXT")] [CLSCompliant(false)] - public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[] image) + public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[] image) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -82329,7 +82304,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter1DEXT")] [CLSCompliant(false)] - public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,] image) + public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,] image) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -82357,7 +82332,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter1DEXT")] [CLSCompliant(false)] - public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,,] image) + public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,,] image) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -82384,7 +82359,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter1DEXT")] - public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T5 image) + public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T5 image) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -82413,7 +82388,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a two-dimensional array of pixel data that is processed to build the convolution filter kernel. /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter2DEXT")] - public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr image) { throw new BindingsNotRewrittenException(); } + public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a two-dimensional convolution filter @@ -82441,7 +82416,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter2DEXT")] [CLSCompliant(false)] - public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[] image) + public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[] image) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -82471,7 +82446,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter2DEXT")] [CLSCompliant(false)] - public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,] image) + public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,] image) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -82501,7 +82476,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter2DEXT")] [CLSCompliant(false)] - public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,,] image) + public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,,] image) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -82530,7 +82505,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a two-dimensional array of pixel data that is processed to build the convolution filter kernel. /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter2DEXT")] - public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T6 image) + public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T6 image) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -82560,7 +82535,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter2DEXT")] - public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr image) { throw new BindingsNotRewrittenException(); } + public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a two-dimensional convolution filter @@ -82589,7 +82564,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter2DEXT")] [CLSCompliant(false)] - public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[] image) + public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[] image) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -82620,7 +82595,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter2DEXT")] [CLSCompliant(false)] - public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,] image) + public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,] image) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -82651,7 +82626,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter2DEXT")] [CLSCompliant(false)] - public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,,] image) + public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,,] image) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -82681,7 +82656,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter2DEXT")] - public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T6 image) + public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T6 image) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -82919,7 +82894,7 @@ namespace OpenTK.Graphics.OpenGL /// The width of the pixel array to copy. /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glCopyConvolutionFilter1DEXT")] - public static void CopyConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } + public static void CopyConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Copy pixels into a one-dimensional convolution filter @@ -82941,7 +82916,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glCopyConvolutionFilter1DEXT")] - public static void CopyConvolutionFilter1D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } + public static void CopyConvolutionFilter1D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Copy pixels into a two-dimensional convolution filter @@ -82965,7 +82940,7 @@ namespace OpenTK.Graphics.OpenGL /// The height of the pixel array to copy. /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glCopyConvolutionFilter2DEXT")] - public static void CopyConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + public static void CopyConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Copy pixels into a two-dimensional convolution filter @@ -82990,7 +82965,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glCopyConvolutionFilter2DEXT")] - public static void CopyConvolutionFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + public static void CopyConvolutionFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -83002,7 +82977,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyMultiTexImage1DEXT")] - public static void CopyMultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new BindingsNotRewrittenException(); } + public static void CopyMultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -83015,7 +82990,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyMultiTexImage2DEXT")] - public static void CopyMultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } + public static void CopyMultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -83080,7 +83055,7 @@ namespace OpenTK.Graphics.OpenGL /// Must be 0. /// [AutoGenerated(Category = "EXT_copy_texture", Version = "", EntryPoint = "glCopyTexImage1DEXT")] - public static void CopyTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new BindingsNotRewrittenException(); } + public static void CopyTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_copy_texture] /// Copy pixels into a 2D texture image @@ -83110,7 +83085,7 @@ namespace OpenTK.Graphics.OpenGL /// Must be 0. /// [AutoGenerated(Category = "EXT_copy_texture", Version = "", EntryPoint = "glCopyTexImage2DEXT")] - public static void CopyTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } + public static void CopyTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_copy_texture] /// Copy a one-dimensional texture subimage @@ -83210,7 +83185,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureImage1DEXT")] [CLSCompliant(false)] - public static void CopyTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new BindingsNotRewrittenException(); } + public static void CopyTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -83223,7 +83198,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureImage1DEXT")] [CLSCompliant(false)] - public static void CopyTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new BindingsNotRewrittenException(); } + public static void CopyTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -83237,7 +83212,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureImage2DEXT")] [CLSCompliant(false)] - public static void CopyTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } + public static void CopyTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -83251,7 +83226,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureImage2DEXT")] [CLSCompliant(false)] - public static void CopyTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } + public static void CopyTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -83387,7 +83362,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the number of source code strings in the array strings. /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glCreateShaderProgramEXT")] - public static Int32 CreateShaderProgram(OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects type, String @string) { throw new BindingsNotRewrittenException(); } + public static Int32 CreateShaderProgram(OpenTK.Graphics.OpenGL.ShaderType type, String @string) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Create a stand-alone program from an array of null-terminated source code strings @@ -83402,7 +83377,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array of pointers to source code strings from which to create the program object. /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glCreateShaderProgramvEXT")] - public static Int32 CreateShaderProgram(OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new BindingsNotRewrittenException(); } + public static Int32 CreateShaderProgram(OpenTK.Graphics.OpenGL.ShaderType type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_cull_vertex] /// @@ -83795,58 +83770,58 @@ namespace OpenTK.Graphics.OpenGL public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphore([CountAttribute(Parameter = "count")] Int32 semaphores) { throw new BindingsNotRewrittenException(); } + public static void DeleteSemaphore([CountAttribute(Parameter = "n")] Int32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphore([CountAttribute(Parameter = "count")] UInt32 semaphores) { throw new BindingsNotRewrittenException(); } + public static void DeleteSemaphore([CountAttribute(Parameter = "n")] UInt32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] Int32[] semaphores) { throw new BindingsNotRewrittenException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "n")] Int32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] ref Int32 semaphores) { throw new BindingsNotRewrittenException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] Int32* semaphores) { throw new BindingsNotRewrittenException(); } + public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "n")] Int32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] UInt32[] semaphores) { throw new BindingsNotRewrittenException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] ref UInt32 semaphores) { throw new BindingsNotRewrittenException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] UInt32* semaphores) { throw new BindingsNotRewrittenException(); } + public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "n")] UInt32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Delete named textures @@ -85935,45 +85910,45 @@ namespace OpenTK.Graphics.OpenGL /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] semaphores) { throw new BindingsNotRewrittenException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 semaphores) { throw new BindingsNotRewrittenException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] Int32* semaphores) { throw new BindingsNotRewrittenException(); } + public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] semaphores) { throw new BindingsNotRewrittenException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 semaphores) { throw new BindingsNotRewrittenException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// - /// [length: count] + /// [length: n] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* semaphores) { throw new BindingsNotRewrittenException(); } + public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -86096,7 +86071,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] [CLSCompliant(false)] - public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new BindingsNotRewrittenException(); } + public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL.BufferTargetArb target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -86104,7 +86079,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] [CLSCompliant(false)] - public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new BindingsNotRewrittenException(); } + public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL.BufferTargetArb target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -86112,7 +86087,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetBooleanIndexed(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetBooleanIndexed(OpenTK.Graphics.OpenGL.BufferTargetArb target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -86120,7 +86095,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] [CLSCompliant(false)] - public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new BindingsNotRewrittenException(); } + public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL.BufferTargetArb target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -86128,7 +86103,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] [CLSCompliant(false)] - public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new BindingsNotRewrittenException(); } + public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL.BufferTargetArb target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -86136,7 +86111,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access|EXT_draw_buffers2", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetBooleanIndexed(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetBooleanIndexed(OpenTK.Graphics.OpenGL.BufferTargetArb target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -86307,7 +86282,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_paletted_texture", Version = "", EntryPoint = "glGetColorTableParameterfvEXT")] [CLSCompliant(false)] - public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_paletted_texture] /// Get color lookup table parameters @@ -86323,7 +86298,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_paletted_texture", Version = "", EntryPoint = "glGetColorTableParameterfvEXT")] [CLSCompliant(false)] - public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_paletted_texture] /// Get color lookup table parameters @@ -86339,7 +86314,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_paletted_texture", Version = "", EntryPoint = "glGetColorTableParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_paletted_texture] /// Get color lookup table parameters @@ -86355,7 +86330,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_paletted_texture", Version = "", EntryPoint = "glGetColorTableParameterivEXT")] [CLSCompliant(false)] - public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_paletted_texture] /// Get color lookup table parameters @@ -86371,7 +86346,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_paletted_texture", Version = "", EntryPoint = "glGetColorTableParameterivEXT")] [CLSCompliant(false)] - public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_paletted_texture] /// Get color lookup table parameters @@ -86387,7 +86362,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_paletted_texture", Version = "", EntryPoint = "glGetColorTableParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86957,7 +86932,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoublei_vEXT")] [CLSCompliant(false)] - public static void GetDouble(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL.TypeEnum pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86965,7 +86940,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoublei_vEXT")] [CLSCompliant(false)] - public static void GetDouble(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL.TypeEnum pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86973,7 +86948,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoublei_vEXT")] [CLSCompliant(false)] - public static unsafe void GetDouble(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetDouble(OpenTK.Graphics.OpenGL.TypeEnum pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86981,7 +86956,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoublei_vEXT")] [CLSCompliant(false)] - public static void GetDouble(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL.TypeEnum pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86989,7 +86964,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoublei_vEXT")] [CLSCompliant(false)] - public static void GetDouble(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL.TypeEnum pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86997,7 +86972,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoublei_vEXT")] [CLSCompliant(false)] - public static unsafe void GetDouble(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetDouble(OpenTK.Graphics.OpenGL.TypeEnum pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87005,7 +86980,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] [CLSCompliant(false)] - public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Double[] data) { throw new BindingsNotRewrittenException(); } + public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL.TypeEnum target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Double[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87013,7 +86988,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] [CLSCompliant(false)] - public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Double data) { throw new BindingsNotRewrittenException(); } + public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL.TypeEnum target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Double data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87021,7 +86996,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetDoubleIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Double* data) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetDoubleIndexed(OpenTK.Graphics.OpenGL.TypeEnum target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Double* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87029,7 +87004,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] [CLSCompliant(false)] - public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Double[] data) { throw new BindingsNotRewrittenException(); } + public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL.TypeEnum target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Double[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87037,7 +87012,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] [CLSCompliant(false)] - public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Double data) { throw new BindingsNotRewrittenException(); } + public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL.TypeEnum target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Double data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87045,7 +87020,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetDoubleIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Double* data) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetDoubleIndexed(OpenTK.Graphics.OpenGL.TypeEnum target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Double* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87053,7 +87028,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloati_vEXT")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL.TypeEnum pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87061,7 +87036,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloati_vEXT")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL.TypeEnum pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87069,7 +87044,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloati_vEXT")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetFloat(OpenTK.Graphics.OpenGL.TypeEnum pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87077,7 +87052,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloati_vEXT")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL.TypeEnum pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87085,7 +87060,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloati_vEXT")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL.TypeEnum pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87093,7 +87068,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloati_vEXT")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetFloat(OpenTK.Graphics.OpenGL.TypeEnum pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87101,7 +87076,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] [CLSCompliant(false)] - public static void GetFloatIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } + public static void GetFloatIndexed(OpenTK.Graphics.OpenGL.TypeEnum target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87109,7 +87084,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] [CLSCompliant(false)] - public static void GetFloatIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } + public static void GetFloatIndexed(OpenTK.Graphics.OpenGL.TypeEnum target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87117,7 +87092,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetFloatIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetFloatIndexed(OpenTK.Graphics.OpenGL.TypeEnum target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87125,7 +87100,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] [CLSCompliant(false)] - public static void GetFloatIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } + public static void GetFloatIndexed(OpenTK.Graphics.OpenGL.TypeEnum target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87133,7 +87108,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] [CLSCompliant(false)] - public static void GetFloatIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } + public static void GetFloatIndexed(OpenTK.Graphics.OpenGL.TypeEnum target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87141,7 +87116,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetFloatIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetFloatIndexed(OpenTK.Graphics.OpenGL.TypeEnum target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Query the bindings of color numbers to user-defined varying out variables @@ -87240,7 +87215,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.GetFramebufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Retrieve a named parameter from a framebuffer @@ -87256,7 +87231,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.GetFramebufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Retrieve a named parameter from a framebuffer @@ -87272,7 +87247,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.GetFramebufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Retrieve a named parameter from a framebuffer @@ -87288,7 +87263,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.GetFramebufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Retrieve a named parameter from a framebuffer @@ -87304,7 +87279,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.GetFramebufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Retrieve a named parameter from a framebuffer @@ -87320,7 +87295,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.GetFramebufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram table @@ -89517,7 +89492,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferAttachmentParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89526,7 +89501,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferAttachmentParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89535,7 +89510,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferAttachmentParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89544,7 +89519,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferAttachmentParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89553,7 +89528,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferAttachmentParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89562,7 +89537,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferAttachmentParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89570,7 +89545,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.GetFramebufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89578,7 +89553,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.GetFramebufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89586,7 +89561,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.GetFramebufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89594,7 +89569,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.GetFramebufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89602,7 +89577,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.GetFramebufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89610,7 +89585,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.GetFramebufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89639,7 +89614,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramivEXT")] [CLSCompliant(false)] - public static void GetNamedProgram(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ProgramProperty pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetNamedProgram(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ProgramPropertyArb pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89648,7 +89623,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedProgram(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ProgramProperty pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetNamedProgram(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ProgramPropertyArb pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89677,7 +89652,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramivEXT")] [CLSCompliant(false)] - public static void GetNamedProgram(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ProgramProperty pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetNamedProgram(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ProgramPropertyArb pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89686,7 +89661,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedProgram(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ProgramProperty pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetNamedProgram(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ProgramPropertyArb pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90171,7 +90146,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_pixel_transform", Version = "", EntryPoint = "glGetPixelTransformParameterfvEXT")] [CLSCompliant(false)] - public static void GetPixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetPixelTransformParameter(OpenTK.Graphics.OpenGL.TypeEnum target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_pixel_transform] /// @@ -90179,7 +90154,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_pixel_transform", Version = "", EntryPoint = "glGetPixelTransformParameterfvEXT")] [CLSCompliant(false)] - public static void GetPixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } + public static void GetPixelTransformParameter(OpenTK.Graphics.OpenGL.TypeEnum target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_pixel_transform] /// @@ -90187,7 +90162,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_pixel_transform", Version = "", EntryPoint = "glGetPixelTransformParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void GetPixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPixelTransformParameter(OpenTK.Graphics.OpenGL.TypeEnum target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_pixel_transform] /// @@ -90195,7 +90170,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_pixel_transform", Version = "", EntryPoint = "glGetPixelTransformParameterivEXT")] [CLSCompliant(false)] - public static void GetPixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetPixelTransformParameter(OpenTK.Graphics.OpenGL.TypeEnum target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_pixel_transform] /// @@ -90203,7 +90178,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_pixel_transform", Version = "", EntryPoint = "glGetPixelTransformParameterivEXT")] [CLSCompliant(false)] - public static void GetPixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetPixelTransformParameter(OpenTK.Graphics.OpenGL.TypeEnum target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_pixel_transform] /// @@ -90211,7 +90186,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_pixel_transform", Version = "", EntryPoint = "glGetPixelTransformParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetPixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPixelTransformParameter(OpenTK.Graphics.OpenGL.TypeEnum target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90219,7 +90194,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointeri_vEXT")] [CLSCompliant(false)] - public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } + public static void GetPointer(OpenTK.Graphics.OpenGL.TypeEnum pname, Int32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90227,7 +90202,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointeri_vEXT")] [CLSCompliant(false)] - public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) + public static void GetPointer(OpenTK.Graphics.OpenGL.TypeEnum pname, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -90237,7 +90212,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointeri_vEXT")] [CLSCompliant(false)] - public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) + public static void GetPointer(OpenTK.Graphics.OpenGL.TypeEnum pname, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -90247,7 +90222,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointeri_vEXT")] [CLSCompliant(false)] - public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) + public static void GetPointer(OpenTK.Graphics.OpenGL.TypeEnum pname, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -90257,7 +90232,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointeri_vEXT")] [CLSCompliant(false)] - public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) + public static void GetPointer(OpenTK.Graphics.OpenGL.TypeEnum pname, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -90267,7 +90242,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointeri_vEXT")] [CLSCompliant(false)] - public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } + public static void GetPointer(OpenTK.Graphics.OpenGL.TypeEnum pname, UInt32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90275,7 +90250,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointeri_vEXT")] [CLSCompliant(false)] - public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) + public static void GetPointer(OpenTK.Graphics.OpenGL.TypeEnum pname, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -90285,7 +90260,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointeri_vEXT")] [CLSCompliant(false)] - public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) + public static void GetPointer(OpenTK.Graphics.OpenGL.TypeEnum pname, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -90295,7 +90270,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointeri_vEXT")] [CLSCompliant(false)] - public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) + public static void GetPointer(OpenTK.Graphics.OpenGL.TypeEnum pname, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -90305,7 +90280,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointeri_vEXT")] [CLSCompliant(false)] - public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) + public static void GetPointer(OpenTK.Graphics.OpenGL.TypeEnum pname, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -90315,7 +90290,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointerIndexedvEXT")] [CLSCompliant(false)] - public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr data) { throw new BindingsNotRewrittenException(); } + public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.TypeEnum target, Int32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90323,7 +90298,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointerIndexedvEXT")] [CLSCompliant(false)] - public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] data) + public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.TypeEnum target, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] data) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -90333,7 +90308,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointerIndexedvEXT")] [CLSCompliant(false)] - public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] data) + public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.TypeEnum target, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] data) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -90343,7 +90318,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointerIndexedvEXT")] [CLSCompliant(false)] - public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] data) + public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.TypeEnum target, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] data) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -90353,7 +90328,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointerIndexedvEXT")] [CLSCompliant(false)] - public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 data) + public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.TypeEnum target, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 data) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -90363,7 +90338,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointerIndexedvEXT")] [CLSCompliant(false)] - public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr data) { throw new BindingsNotRewrittenException(); } + public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.TypeEnum target, UInt32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90371,7 +90346,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointerIndexedvEXT")] [CLSCompliant(false)] - public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] data) + public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.TypeEnum target, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] data) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -90381,7 +90356,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointerIndexedvEXT")] [CLSCompliant(false)] - public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] data) + public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.TypeEnum target, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] data) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -90391,7 +90366,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointerIndexedvEXT")] [CLSCompliant(false)] - public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] data) + public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.TypeEnum target, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] data) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -90401,7 +90376,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointerIndexedvEXT")] [CLSCompliant(false)] - public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 data) + public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.TypeEnum target, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 data) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -90576,7 +90551,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL.PipelineParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -90592,7 +90567,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL.PipelineParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -90608,7 +90583,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL.PipelineParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -90624,7 +90599,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL.PipelineParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -90640,7 +90615,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL.PipelineParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -90656,7 +90631,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL.PipelineParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_timer_query] /// Return parameters of a query object @@ -90672,7 +90647,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.QueryObjectParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_timer_query] /// Return parameters of a query object @@ -90688,7 +90663,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.QueryObjectParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_timer_query] /// Return parameters of a query object @@ -90704,7 +90679,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.QueryObjectParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_timer_query] /// Return parameters of a query object @@ -90720,7 +90695,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.QueryObjectParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_timer_query] /// Return parameters of a query object @@ -90736,7 +90711,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.QueryObjectParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_timer_query] /// Return parameters of a query object @@ -90752,7 +90727,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.QueryObjectParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_timer_query] /// Return parameters of a query object @@ -90768,7 +90743,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.QueryObjectParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_timer_query] /// Return parameters of a query object @@ -90784,7 +90759,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.QueryObjectParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_timer_query] /// Return parameters of a query object @@ -90800,7 +90775,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.QueryObjectParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Retrieve information about a bound renderbuffer object @@ -92190,7 +92165,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayInteger(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } + public static void GetVertexArrayInteger(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.VertexArrayPName pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92199,7 +92174,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayInteger(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } + public static void GetVertexArrayInteger(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.VertexArrayPName pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92208,7 +92183,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegeri_vEXT")] [CLSCompliant(false)] - public static unsafe void GetVertexArrayInteger(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetVertexArrayInteger(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.VertexArrayPName pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92217,7 +92192,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayInteger(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } + public static void GetVertexArrayInteger(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.VertexArrayPName pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92226,7 +92201,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayInteger(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } + public static void GetVertexArrayInteger(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.VertexArrayPName pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92235,7 +92210,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegeri_vEXT")] [CLSCompliant(false)] - public static unsafe void GetVertexArrayInteger(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetVertexArrayInteger(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.VertexArrayPName pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92243,7 +92218,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayInteger(Int32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } + public static void GetVertexArrayInteger(Int32 vaobj, OpenTK.Graphics.OpenGL.VertexArrayPName pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92251,7 +92226,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayInteger(Int32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } + public static void GetVertexArrayInteger(Int32 vaobj, OpenTK.Graphics.OpenGL.VertexArrayPName pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92259,7 +92234,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegervEXT")] [CLSCompliant(false)] - public static unsafe void GetVertexArrayInteger(Int32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetVertexArrayInteger(Int32 vaobj, OpenTK.Graphics.OpenGL.VertexArrayPName pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92267,7 +92242,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayInteger(UInt32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } + public static void GetVertexArrayInteger(UInt32 vaobj, OpenTK.Graphics.OpenGL.VertexArrayPName pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92275,7 +92250,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayInteger(UInt32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } + public static void GetVertexArrayInteger(UInt32 vaobj, OpenTK.Graphics.OpenGL.VertexArrayPName pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92283,7 +92258,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegervEXT")] [CLSCompliant(false)] - public static unsafe void GetVertexArrayInteger(UInt32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetVertexArrayInteger(UInt32 vaobj, OpenTK.Graphics.OpenGL.VertexArrayPName pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92292,7 +92267,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] IntPtr param) { throw new BindingsNotRewrittenException(); } + public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.VertexArrayPName pname, [OutAttribute] IntPtr param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92301,7 +92276,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] T3[] param) + public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.VertexArrayPName pname, [InAttribute, OutAttribute] T3[] param) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -92312,7 +92287,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] T3[,] param) + public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.VertexArrayPName pname, [InAttribute, OutAttribute] T3[,] param) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -92323,7 +92298,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] T3[,,] param) + public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.VertexArrayPName pname, [InAttribute, OutAttribute] T3[,,] param) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -92334,7 +92309,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] ref T3 param) + public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.VertexArrayPName pname, [InAttribute, OutAttribute] ref T3 param) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -92345,7 +92320,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] IntPtr param) { throw new BindingsNotRewrittenException(); } + public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.VertexArrayPName pname, [OutAttribute] IntPtr param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92354,7 +92329,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] T3[] param) + public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.VertexArrayPName pname, [InAttribute, OutAttribute] T3[] param) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -92365,7 +92340,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] T3[,] param) + public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.VertexArrayPName pname, [InAttribute, OutAttribute] T3[,] param) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -92376,7 +92351,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] T3[,,] param) + public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.VertexArrayPName pname, [InAttribute, OutAttribute] T3[,,] param) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -92387,7 +92362,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute] ref T3 param) + public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.VertexArrayPName pname, [InAttribute, OutAttribute] ref T3 param) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -92397,7 +92372,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr param) { throw new BindingsNotRewrittenException(); } + public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL.VertexArrayPName pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92405,7 +92380,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] param) + public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL.VertexArrayPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] param) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -92415,7 +92390,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] param) + public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL.VertexArrayPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] param) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -92425,7 +92400,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] param) + public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL.VertexArrayPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] param) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -92435,7 +92410,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 param) + public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL.VertexArrayPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 param) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -92445,7 +92420,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr param) { throw new BindingsNotRewrittenException(); } + public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL.VertexArrayPName pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92453,7 +92428,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] param) + public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL.VertexArrayPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] param) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -92463,7 +92438,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] param) + public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL.VertexArrayPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] param) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -92473,7 +92448,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] param) + public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL.VertexArrayPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] param) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -92483,7 +92458,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 param) + public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL.VertexArrayPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 param) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -92493,7 +92468,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glGetVertexAttribIivEXT")] [CLSCompliant(false)] - public static void GetVertexAttribI(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram4 pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetVertexAttribI(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribEnum pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -92501,7 +92476,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glGetVertexAttribIivEXT")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribI(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram4 pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetVertexAttribI(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribEnum pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -92509,7 +92484,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glGetVertexAttribIivEXT")] [CLSCompliant(false)] - public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram4 pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribEnum pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -92517,7 +92492,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glGetVertexAttribIivEXT")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram4 pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribEnum pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -92525,7 +92500,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glGetVertexAttribIuivEXT")] [CLSCompliant(false)] - public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram4 pname, [OutAttribute, CountAttribute(Count = 1)] out UInt32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribEnum pname, [OutAttribute, CountAttribute(Count = 1)] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -92533,7 +92508,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glGetVertexAttribIuivEXT")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram4 pname, [OutAttribute, CountAttribute(Count = 1)] UInt32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribEnum pname, [OutAttribute, CountAttribute(Count = 1)] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -92541,7 +92516,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glGetVertexAttribLdvEXT")] [CLSCompliant(false)] - public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribEnum pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -92549,7 +92524,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glGetVertexAttribLdvEXT")] [CLSCompliant(false)] - public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } + public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribEnum pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -92557,7 +92532,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glGetVertexAttribLdvEXT")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribEnum pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -92565,7 +92540,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glGetVertexAttribLdvEXT")] [CLSCompliant(false)] - public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribEnum pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -92573,7 +92548,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glGetVertexAttribLdvEXT")] [CLSCompliant(false)] - public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribEnum pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -92581,7 +92556,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glGetVertexAttribLdvEXT")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribEnum pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Define histogram table @@ -92600,7 +92575,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use HistogramTargetExt overload instead")] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glHistogramEXT")] - public static void Histogram(OpenTK.Graphics.OpenGL.ExtHistogram target, Int32 width, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink) { throw new BindingsNotRewrittenException(); } + public static void Histogram(OpenTK.Graphics.OpenGL.ExtHistogram target, Int32 width, OpenTK.Graphics.OpenGL.InternalFormat internalformat, bool sink) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Define histogram table @@ -92618,7 +92593,7 @@ namespace OpenTK.Graphics.OpenGL /// If True, pixels will be consumed by the histogramming process and no drawing or texture loading will take place. If False, pixels will proceed to the minmax process after histogramming. /// [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glHistogramEXT")] - public static void Histogram(OpenTK.Graphics.OpenGL.HistogramTargetExt target, Int32 width, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink) { throw new BindingsNotRewrittenException(); } + public static void Histogram(OpenTK.Graphics.OpenGL.HistogramTargetExt target, Int32 width, OpenTK.Graphics.OpenGL.InternalFormat internalformat, bool sink) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_fd] /// @@ -93447,7 +93422,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr MapNamedBufferRange(UInt32 buffer, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// /// @@ -93455,183 +93430,183 @@ namespace OpenTK.Graphics.OpenGL /// /// /// - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixFrustumEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixFrustumEXT")] public static void MatrixFrustum(OpenTK.Graphics.OpenGL.MatrixMode mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoaddEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixLoaddEXT")] [CLSCompliant(false)] public static void MatrixLoad(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoaddEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixLoaddEXT")] [CLSCompliant(false)] public static void MatrixLoad(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoaddEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixLoaddEXT")] [CLSCompliant(false)] public static unsafe void MatrixLoad(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadfEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadfEXT")] [CLSCompliant(false)] public static void MatrixLoad(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadfEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadfEXT")] [CLSCompliant(false)] public static void MatrixLoad(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadfEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadfEXT")] [CLSCompliant(false)] public static unsafe void MatrixLoad(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadIdentityEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadIdentityEXT")] public static void MatrixLoadIdentity(OpenTK.Graphics.OpenGL.MatrixMode mode) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] [CLSCompliant(false)] public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] [CLSCompliant(false)] public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] [CLSCompliant(false)] public static unsafe void MatrixLoadTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] [CLSCompliant(false)] public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] [CLSCompliant(false)] public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] [CLSCompliant(false)] public static unsafe void MatrixLoadTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultdEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixMultdEXT")] [CLSCompliant(false)] public static void MatrixMult(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultdEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixMultdEXT")] [CLSCompliant(false)] public static void MatrixMult(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultdEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixMultdEXT")] [CLSCompliant(false)] public static unsafe void MatrixMult(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultfEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixMultfEXT")] [CLSCompliant(false)] public static void MatrixMult(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultfEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixMultfEXT")] [CLSCompliant(false)] public static void MatrixMult(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultfEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixMultfEXT")] [CLSCompliant(false)] public static unsafe void MatrixMult(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] [CLSCompliant(false)] public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] [CLSCompliant(false)] public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] [CLSCompliant(false)] public static unsafe void MatrixMultTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] [CLSCompliant(false)] public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] [CLSCompliant(false)] public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] [CLSCompliant(false)] public static unsafe void MatrixMultTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// /// @@ -93639,67 +93614,67 @@ namespace OpenTK.Graphics.OpenGL /// /// /// - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixOrthoEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixOrthoEXT")] public static void MatrixOrtho(OpenTK.Graphics.OpenGL.MatrixMode mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixPopEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixPopEXT")] public static void MatrixPop(OpenTK.Graphics.OpenGL.MatrixMode mode) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixPushEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixPushEXT")] public static void MatrixPush(OpenTK.Graphics.OpenGL.MatrixMode mode) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// /// /// /// - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixRotatedEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixRotatedEXT")] public static void MatrixRotate(OpenTK.Graphics.OpenGL.MatrixMode mode, Double angle, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// /// /// /// - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixRotatefEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixRotatefEXT")] public static void MatrixRotate(OpenTK.Graphics.OpenGL.MatrixMode mode, Single angle, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// /// /// - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixScaledEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixScaledEXT")] public static void MatrixScale(OpenTK.Graphics.OpenGL.MatrixMode mode, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// /// /// - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixScalefEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixScalefEXT")] public static void MatrixScale(OpenTK.Graphics.OpenGL.MatrixMode mode, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// /// /// - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixTranslatedEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixTranslatedEXT")] public static void MatrixTranslate(OpenTK.Graphics.OpenGL.MatrixMode mode, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// /// /// - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixTranslatefEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixTranslatefEXT")] public static void MatrixTranslate(OpenTK.Graphics.OpenGL.MatrixMode mode, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_image_load_store] @@ -93709,18 +93684,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the barriers to insert. Must be a bitwise combination of VertexAttribArrayBarrierBit, ElementArrayBarrierBit, UniformBarrierBit, TextureFetchBarrierBit, ShaderImageAccessBarrierBit, CommandBarrierBit, PixelBufferBarrierBit, TextureUpdateBarrierBit, BufferUpdateBarrierBit, FramebufferBarrierBit, TransformFeedbackBarrierBit, AtomicCounterBarrierBit, or ShaderStorageBarrierBit. If the special value AllBarrierBits is specified, all supported barriers will be inserted. /// [AutoGenerated(Category = "EXT_shader_image_load_store", Version = "", EntryPoint = "glMemoryBarrierEXT")] - [CLSCompliant(false)] - public static void MemoryBarrier(Int32 barriers) { throw new BindingsNotRewrittenException(); } - - /// [requires: EXT_shader_image_load_store] - /// Defines a barrier ordering memory transactions - /// - /// - /// Specifies the barriers to insert. Must be a bitwise combination of VertexAttribArrayBarrierBit, ElementArrayBarrierBit, UniformBarrierBit, TextureFetchBarrierBit, ShaderImageAccessBarrierBit, CommandBarrierBit, PixelBufferBarrierBit, TextureUpdateBarrierBit, BufferUpdateBarrierBit, FramebufferBarrierBit, TransformFeedbackBarrierBit, AtomicCounterBarrierBit, or ShaderStorageBarrierBit. If the special value AllBarrierBits is specified, all supported barriers will be inserted. - /// - [AutoGenerated(Category = "EXT_shader_image_load_store", Version = "", EntryPoint = "glMemoryBarrierEXT")] - [CLSCompliant(false)] - public static void MemoryBarrier(UInt32 barriers) { throw new BindingsNotRewrittenException(); } + public static void MemoryBarrier(OpenTK.Graphics.OpenGL.MemoryBarrierMask barriers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -93784,7 +93748,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use MinmaxTargetExt overload instead")] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glMinmaxEXT")] - public static void Minmax(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink) { throw new BindingsNotRewrittenException(); } + public static void Minmax(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, bool sink) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Define minmax table @@ -93799,7 +93763,7 @@ namespace OpenTK.Graphics.OpenGL /// If True, pixels will be consumed by the minmax process and no drawing or texture loading will take place. If False, pixels will proceed to the final conversion process after minmax. /// [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glMinmaxEXT")] - public static void Minmax(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink) { throw new BindingsNotRewrittenException(); } + public static void Minmax(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, bool sink) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -94648,7 +94612,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexBufferEXT")] [CLSCompliant(false)] - public static void MultiTexBuffer(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } + public static void MultiTexBuffer(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TypeEnum internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94657,7 +94621,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexBufferEXT")] [CLSCompliant(false)] - public static void MultiTexBuffer(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } + public static void MultiTexBuffer(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TypeEnum internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94946,7 +94910,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage1DEXT")] - public static void MultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } + public static void MultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94960,7 +94924,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage1DEXT")] [CLSCompliant(false)] - public static void MultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[] pixels) + public static void MultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[] pixels) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -94976,7 +94940,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage1DEXT")] [CLSCompliant(false)] - public static void MultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,] pixels) + public static void MultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,] pixels) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -94992,7 +94956,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage1DEXT")] [CLSCompliant(false)] - public static void MultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,,] pixels) + public static void MultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,,] pixels) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -95007,7 +94971,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage1DEXT")] - public static void MultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T8 pixels) + public static void MultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T8 pixels) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -95109,7 +95073,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage2DEXT")] - public static void MultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } + public static void MultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95124,7 +95088,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage2DEXT")] [CLSCompliant(false)] - public static void MultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) + public static void MultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -95141,7 +95105,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage2DEXT")] [CLSCompliant(false)] - public static void MultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) + public static void MultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -95158,7 +95122,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage2DEXT")] [CLSCompliant(false)] - public static void MultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) + public static void MultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -95174,7 +95138,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage2DEXT")] - public static void MultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) + public static void MultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -95282,7 +95246,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage3DEXT")] - public static void MultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } + public static void MultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95298,7 +95262,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage3DEXT")] [CLSCompliant(false)] - public static void MultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) + public static void MultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -95316,7 +95280,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage3DEXT")] [CLSCompliant(false)] - public static void MultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) + public static void MultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -95334,7 +95298,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage3DEXT")] [CLSCompliant(false)] - public static void MultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) + public static void MultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -95351,7 +95315,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage3DEXT")] - public static void MultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) + public static void MultiTexImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -96884,7 +96848,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } + public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, OpenTK.Graphics.OpenGL.MapBufferUsageMask flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -96894,7 +96858,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } + public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, OpenTK.Graphics.OpenGL.MapBufferUsageMask flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -96904,7 +96868,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } + public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, OpenTK.Graphics.OpenGL.MapBufferUsageMask flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -96914,7 +96878,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } + public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, OpenTK.Graphics.OpenGL.MapBufferUsageMask flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -98000,7 +97964,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageMultisampleCoverageEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorageMultisampleCoverage(Int32 renderbuffer, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + public static void NamedRenderbufferStorageMultisampleCoverage(Int32 renderbuffer, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -98011,7 +97975,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageMultisampleCoverageEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorageMultisampleCoverage(UInt32 renderbuffer, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + public static void NamedRenderbufferStorageMultisampleCoverage(UInt32 renderbuffer, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101724,7 +101688,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the vertex to be used as the source of data for flat shaded varyings. /// [AutoGenerated(Category = "EXT_provoking_vertex", Version = "", EntryPoint = "glProvokingVertexEXT")] - public static void ProvokingVertex(OpenTK.Graphics.OpenGL.ExtProvokingVertex mode) { throw new BindingsNotRewrittenException(); } + public static void ProvokingVertex(OpenTK.Graphics.OpenGL.VertexProvokingMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -102415,7 +102379,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a one-dimensional array of pixel data that is processed to build the column filter kernel. /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glSeparableFilter2DEXT")] - public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "target,format,type,width")] IntPtr row, [CountAttribute(Computed = "target,format,type,height")] IntPtr column) { throw new BindingsNotRewrittenException(); } + public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "target,format,type,width")] IntPtr row, [CountAttribute(Computed = "target,format,type,height")] IntPtr column) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a separable two-dimensional convolution filter @@ -102446,7 +102410,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glSeparableFilter2DEXT")] [CLSCompliant(false)] - public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,width")] T6[] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] T7[] column) + public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,width")] T6[] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] T7[] column) where T6 : struct where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -102480,7 +102444,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glSeparableFilter2DEXT")] [CLSCompliant(false)] - public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,width")] T6[,] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] T7[,] column) + public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,width")] T6[,] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] T7[,] column) where T6 : struct where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -102514,7 +102478,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glSeparableFilter2DEXT")] [CLSCompliant(false)] - public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,width")] T6[,,] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] T7[,,] column) + public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,width")] T6[,,] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] T7[,,] column) where T6 : struct where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -102547,7 +102511,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a one-dimensional array of pixel data that is processed to build the column filter kernel. /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glSeparableFilter2DEXT")] - public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,width")] ref T6 row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] ref T7 column) + public static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,width")] ref T6 row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] ref T7 column) where T6 : struct where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -103112,7 +103076,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_buffer_object", Version = "", EntryPoint = "glTexBufferEXT")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtTextureBufferObject internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } + public static void TexBuffer(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer_object] /// Attach the storage for a buffer object to the active buffer texture @@ -103128,7 +103092,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_buffer_object", Version = "", EntryPoint = "glTexBufferEXT")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtTextureBufferObject internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } + public static void TexBuffer(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of texture coordinates @@ -103280,7 +103244,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "EXT_texture3D", Version = "", EntryPoint = "glTexImage3DEXT")] - public static void TexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } + public static void TexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture3D] /// Specify a three-dimensional texture image @@ -103317,7 +103281,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture3D", Version = "", EntryPoint = "glTexImage3DEXT")] [CLSCompliant(false)] - public static void TexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[] pixels) + public static void TexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[] pixels) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -103356,7 +103320,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture3D", Version = "", EntryPoint = "glTexImage3DEXT")] [CLSCompliant(false)] - public static void TexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,] pixels) + public static void TexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,] pixels) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -103395,7 +103359,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture3D", Version = "", EntryPoint = "glTexImage3DEXT")] [CLSCompliant(false)] - public static void TexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,,] pixels) + public static void TexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,,] pixels) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -103433,7 +103397,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "EXT_texture3D", Version = "", EntryPoint = "glTexImage3DEXT")] - public static void TexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T9 pixels) + public static void TexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T9 pixels) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -104364,7 +104328,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] [CLSCompliant(false)] - public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } + public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104378,7 +104342,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] [CLSCompliant(false)] - public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[] pixels) + public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[] pixels) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -104394,7 +104358,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] [CLSCompliant(false)] - public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,] pixels) + public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,] pixels) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -104410,7 +104374,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] [CLSCompliant(false)] - public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,,] pixels) + public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,,] pixels) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -104426,7 +104390,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] [CLSCompliant(false)] - public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T8 pixels) + public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T8 pixels) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -104525,7 +104489,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] [CLSCompliant(false)] - public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } + public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104539,7 +104503,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] [CLSCompliant(false)] - public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[] pixels) + public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[] pixels) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -104555,7 +104519,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] [CLSCompliant(false)] - public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,] pixels) + public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,] pixels) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -104571,7 +104535,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] [CLSCompliant(false)] - public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,,] pixels) + public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,,] pixels) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -104587,7 +104551,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] [CLSCompliant(false)] - public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T8 pixels) + public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T8 pixels) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -104692,7 +104656,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] [CLSCompliant(false)] - public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } + public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104707,7 +104671,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] [CLSCompliant(false)] - public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) + public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -104724,7 +104688,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] [CLSCompliant(false)] - public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) + public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -104741,7 +104705,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] [CLSCompliant(false)] - public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) + public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -104758,7 +104722,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] [CLSCompliant(false)] - public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) + public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -104863,7 +104827,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] [CLSCompliant(false)] - public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } + public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104878,7 +104842,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] [CLSCompliant(false)] - public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) + public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -104895,7 +104859,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] [CLSCompliant(false)] - public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) + public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -104912,7 +104876,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] [CLSCompliant(false)] - public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) + public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -104929,7 +104893,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] [CLSCompliant(false)] - public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) + public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -105040,7 +105004,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] [CLSCompliant(false)] - public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } + public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105056,7 +105020,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] [CLSCompliant(false)] - public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) + public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -105074,7 +105038,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] [CLSCompliant(false)] - public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) + public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -105092,7 +105056,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] [CLSCompliant(false)] - public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) + public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -105110,7 +105074,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] [CLSCompliant(false)] - public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) + public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -105221,7 +105185,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] [CLSCompliant(false)] - public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } + public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105237,7 +105201,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] [CLSCompliant(false)] - public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) + public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -105255,7 +105219,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] [CLSCompliant(false)] - public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) + public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -105273,7 +105237,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] [CLSCompliant(false)] - public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) + public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -105291,7 +105255,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] [CLSCompliant(false)] - public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) + public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -107002,7 +106966,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseProgramStagesEXT")] [CLSCompliant(false)] - public static void UseProgramStages(Int32 pipeline, Int32 stages, Int32 program) { throw new BindingsNotRewrittenException(); } + public static void UseProgramStages(Int32 pipeline, OpenTK.Graphics.OpenGL.UseProgramStageMask stages, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind stages of a program object to a program pipeline @@ -107018,7 +106982,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseProgramStagesEXT")] [CLSCompliant(false)] - public static void UseProgramStages(UInt32 pipeline, UInt32 stages, UInt32 program) { throw new BindingsNotRewrittenException(); } + public static void UseProgramStages(UInt32 pipeline, OpenTK.Graphics.OpenGL.UseProgramStageMask stages, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -107705,7 +107669,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribIOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribIOffset(Int32 vaobj, Int32 buffer, Int32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } + public static void VertexArrayVertexAttribIOffset(Int32 vaobj, Int32 buffer, Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribEnum type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107717,7 +107681,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribIOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribIOffset(UInt32 vaobj, UInt32 buffer, UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } + public static void VertexArrayVertexAttribIOffset(UInt32 vaobj, UInt32 buffer, UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribEnum type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -108299,7 +108263,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,type,stride)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribIPointerEXT")] [CLSCompliant(false)] - public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } + public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -108309,7 +108273,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,type,stride)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribIPointerEXT")] [CLSCompliant(false)] - public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[] pointer) + public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[] pointer) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -108321,7 +108285,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,type,stride)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribIPointerEXT")] [CLSCompliant(false)] - public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,] pointer) + public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,] pointer) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -108333,7 +108297,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,type,stride)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribIPointerEXT")] [CLSCompliant(false)] - public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,,] pointer) + public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,,] pointer) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -108345,7 +108309,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,type,stride)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribIPointerEXT")] [CLSCompliant(false)] - public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T4 pointer) + public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T4 pointer) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -108357,7 +108321,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,type,stride)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribIPointerEXT")] [CLSCompliant(false)] - public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } + public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -108367,7 +108331,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,type,stride)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribIPointerEXT")] [CLSCompliant(false)] - public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[] pointer) + public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[] pointer) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -108379,7 +108343,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,type,stride)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribIPointerEXT")] [CLSCompliant(false)] - public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,] pointer) + public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,] pointer) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -108391,7 +108355,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,type,stride)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribIPointerEXT")] [CLSCompliant(false)] - public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,,] pointer) + public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,,] pointer) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -108403,7 +108367,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,type,stride)] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribIPointerEXT")] [CLSCompliant(false)] - public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T4 pointer) + public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T4 pointer) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -108623,7 +108587,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: size] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribLPointerEXT")] [CLSCompliant(false)] - public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, [CountAttribute(Parameter = "size")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } + public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, Int32 stride, [CountAttribute(Parameter = "size")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -108633,7 +108597,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: size] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribLPointerEXT")] [CLSCompliant(false)] - public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[] pointer) + public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[] pointer) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -108645,7 +108609,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: size] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribLPointerEXT")] [CLSCompliant(false)] - public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[,] pointer) + public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[,] pointer) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -108657,7 +108621,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: size] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribLPointerEXT")] [CLSCompliant(false)] - public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[,,] pointer) + public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[,,] pointer) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -108669,7 +108633,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: size] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribLPointerEXT")] [CLSCompliant(false)] - public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T4 pointer) + public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T4 pointer) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -108681,7 +108645,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: size] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribLPointerEXT")] [CLSCompliant(false)] - public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, [CountAttribute(Parameter = "size")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } + public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, Int32 stride, [CountAttribute(Parameter = "size")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -108691,7 +108655,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: size] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribLPointerEXT")] [CLSCompliant(false)] - public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[] pointer) + public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[] pointer) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -108703,7 +108667,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: size] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribLPointerEXT")] [CLSCompliant(false)] - public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[,] pointer) + public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[,] pointer) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -108715,7 +108679,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: size] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribLPointerEXT")] [CLSCompliant(false)] - public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[,,] pointer) + public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[,,] pointer) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -108727,7 +108691,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: size] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribLPointerEXT")] [CLSCompliant(false)] - public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T4 pointer) + public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T4 pointer) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -109892,7 +109856,7 @@ namespace OpenTK.Graphics.OpenGL /// Specified how the alpha source blending factor is computed. The initial value is One. /// [AutoGenerated(Category = "INGR_blend_func_separate", Version = "", EntryPoint = "glBlendFuncSeparateINGR")] - public static void BlendFuncSeparate(OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate sfactorRGB, OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate dfactorRGB, OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate sfactorAlpha, OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate dfactorAlpha) { throw new BindingsNotRewrittenException(); } + public static void BlendFuncSeparate(OpenTK.Graphics.OpenGL.BlendingFactor sfactorRGB, OpenTK.Graphics.OpenGL.BlendingFactor dfactorRGB, OpenTK.Graphics.OpenGL.BlendingFactor sfactorAlpha, OpenTK.Graphics.OpenGL.BlendingFactor dfactorAlpha) { throw new BindingsNotRewrittenException(); } } @@ -111132,7 +111096,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.OpenGL.KhrDebug source, OpenTK.Graphics.OpenGL.KhrDebug type, OpenTK.Graphics.OpenGL.KhrDebug severity, Int32 count, Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL.DebugSource source, OpenTK.Graphics.OpenGL.DebugType type, OpenTK.Graphics.OpenGL.DebugSeverity severity, Int32 count, Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -111157,7 +111121,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.OpenGL.KhrDebug source, OpenTK.Graphics.OpenGL.KhrDebug type, OpenTK.Graphics.OpenGL.KhrDebug severity, Int32 count, ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL.DebugSource source, OpenTK.Graphics.OpenGL.DebugType type, OpenTK.Graphics.OpenGL.DebugSeverity severity, Int32 count, ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -111182,7 +111146,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL.KhrDebug source, OpenTK.Graphics.OpenGL.KhrDebug type, OpenTK.Graphics.OpenGL.KhrDebug severity, Int32 count, Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL.DebugSource source, OpenTK.Graphics.OpenGL.DebugType type, OpenTK.Graphics.OpenGL.DebugSeverity severity, Int32 count, Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -111207,7 +111171,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.OpenGL.KhrDebug source, OpenTK.Graphics.OpenGL.KhrDebug type, OpenTK.Graphics.OpenGL.KhrDebug severity, Int32 count, UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL.DebugSource source, OpenTK.Graphics.OpenGL.DebugType type, OpenTK.Graphics.OpenGL.DebugSeverity severity, Int32 count, UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -111232,7 +111196,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.OpenGL.KhrDebug source, OpenTK.Graphics.OpenGL.KhrDebug type, OpenTK.Graphics.OpenGL.KhrDebug severity, Int32 count, ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL.DebugSource source, OpenTK.Graphics.OpenGL.DebugType type, OpenTK.Graphics.OpenGL.DebugSeverity severity, Int32 count, ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -111257,7 +111221,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL.KhrDebug source, OpenTK.Graphics.OpenGL.KhrDebug type, OpenTK.Graphics.OpenGL.KhrDebug severity, Int32 count, UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL.DebugSource source, OpenTK.Graphics.OpenGL.DebugType type, OpenTK.Graphics.OpenGL.DebugSeverity severity, Int32 count, UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Inject an application-supplied message into the debug message queue @@ -111282,7 +111246,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.KhrDebug source, OpenTK.Graphics.OpenGL.KhrDebug type, Int32 id, OpenTK.Graphics.OpenGL.KhrDebug severity, Int32 length, String buf) { throw new BindingsNotRewrittenException(); } + public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.DebugSource source, OpenTK.Graphics.OpenGL.DebugType type, Int32 id, OpenTK.Graphics.OpenGL.DebugSeverity severity, Int32 length, String buf) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Inject an application-supplied message into the debug message queue @@ -111307,7 +111271,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.KhrDebug source, OpenTK.Graphics.OpenGL.KhrDebug type, UInt32 id, OpenTK.Graphics.OpenGL.KhrDebug severity, Int32 length, String buf) { throw new BindingsNotRewrittenException(); } + public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.DebugSource source, OpenTK.Graphics.OpenGL.DebugType type, UInt32 id, OpenTK.Graphics.OpenGL.DebugSeverity severity, Int32 length, String buf) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -111338,7 +111302,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSource[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -111369,7 +111333,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.KhrDebug sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.KhrDebug types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.KhrDebug severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.DebugSource sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -111400,7 +111364,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSource* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -111431,7 +111395,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSource[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -111462,7 +111426,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.KhrDebug sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.KhrDebug types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.KhrDebug severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.DebugSource sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -111493,11 +111457,11 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSource* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetGraphicsResetStatusKHR")] - public static OpenTK.Graphics.OpenGL.KhrRobustness GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.OpenGL.GraphicsResetStatus GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -112121,24 +112085,17 @@ namespace OpenTK.Graphics.OpenGL where T1 : struct { throw new BindingsNotRewrittenException(); } - /// [requires: KHR_debug] - /// Label a named object identified within a namespace - /// - /// - /// The namespace from which the name of the object is allocated. - /// - /// - /// The name of the object to label. - /// - /// - /// The length of the label to be used for the object. - /// - /// - /// The address of a string containing the label to assign to the object. - /// - [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] + /// [requires: KHR_parallel_shader_compile] + /// + [AutoGenerated(Category = "KHR_parallel_shader_compile", Version = "", EntryPoint = "glMaxShaderCompilerThreadsKHR")] [CLSCompliant(false)] - public static void ObjectLabel(OpenTK.Graphics.OpenGL.KhrDebug identifier, Int32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } + public static void MaxShaderCompilerThreads(Int32 count) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_parallel_shader_compile] + /// + [AutoGenerated(Category = "KHR_parallel_shader_compile", Version = "", EntryPoint = "glMaxShaderCompilerThreadsKHR")] + [CLSCompliant(false)] + public static void MaxShaderCompilerThreads(UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a named object identified within a namespace @@ -112157,7 +112114,26 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] [CLSCompliant(false)] - public static void ObjectLabel(OpenTK.Graphics.OpenGL.KhrDebug identifier, UInt32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } + public static void ObjectLabel(OpenTK.Graphics.OpenGL.ObjectIdentifier identifier, Int32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Label a named object identified within a namespace + /// + /// + /// The namespace from which the name of the object is allocated. + /// + /// + /// The name of the object to label. + /// + /// + /// The length of the label to be used for the object. + /// + /// + /// The address of a string containing the label to assign to the object. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] + [CLSCompliant(false)] + public static void ObjectLabel(OpenTK.Graphics.OpenGL.ObjectIdentifier identifier, UInt32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -112268,7 +112244,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroupKHR")] [CLSCompliant(false)] - public static void PushDebugGroup(OpenTK.Graphics.OpenGL.KhrDebug source, Int32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } + public static void PushDebugGroup(OpenTK.Graphics.OpenGL.DebugSource source, Int32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Push a named debug group into the command stream @@ -112287,7 +112263,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroupKHR")] [CLSCompliant(false)] - public static void PushDebugGroup(OpenTK.Graphics.OpenGL.KhrDebug source, UInt32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } + public static void PushDebugGroup(OpenTK.Graphics.OpenGL.DebugSource source, UInt32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -112982,7 +112958,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNV")] [CLSCompliant(false)] - public static void BeginConditionalRender(Int32 id, OpenTK.Graphics.OpenGL.NvConditionalRender mode) { throw new BindingsNotRewrittenException(); } + public static void BeginConditionalRender(Int32 id, OpenTK.Graphics.OpenGL.TypeEnum mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conditional_render] /// Start conditional rendering @@ -112995,7 +112971,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNV")] [CLSCompliant(false)] - public static void BeginConditionalRender(UInt32 id, OpenTK.Graphics.OpenGL.NvConditionalRender mode) { throw new BindingsNotRewrittenException(); } + public static void BeginConditionalRender(UInt32 id, OpenTK.Graphics.OpenGL.TypeEnum mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// @@ -113016,7 +112992,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the output type of the primitives that will be recorded into the buffer objects that are bound for transform feedback. /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glBeginTransformFeedbackNV")] - public static void BeginTransformFeedback(OpenTK.Graphics.OpenGL.NvTransformFeedback primitiveMode) { throw new BindingsNotRewrittenException(); } + public static void BeginTransformFeedback(OpenTK.Graphics.OpenGL.PrimitiveType primitiveMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -113044,7 +113020,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glBindBufferBaseNV")] [CLSCompliant(false)] - public static void BindBufferBase(OpenTK.Graphics.OpenGL.NvTransformFeedback target, Int32 index, Int32 buffer) { throw new BindingsNotRewrittenException(); } + public static void BindBufferBase(OpenTK.Graphics.OpenGL.BufferTargetArb target, Int32 index, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// Bind a buffer object to an indexed buffer target @@ -113060,7 +113036,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glBindBufferBaseNV")] [CLSCompliant(false)] - public static void BindBufferBase(OpenTK.Graphics.OpenGL.NvTransformFeedback target, UInt32 index, UInt32 buffer) { throw new BindingsNotRewrittenException(); } + public static void BindBufferBase(OpenTK.Graphics.OpenGL.BufferTargetArb target, UInt32 index, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// @@ -113069,7 +113045,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glBindBufferOffsetNV")] [CLSCompliant(false)] - public static void BindBufferOffset(OpenTK.Graphics.OpenGL.NvTransformFeedback target, Int32 index, Int32 buffer, IntPtr offset) { throw new BindingsNotRewrittenException(); } + public static void BindBufferOffset(OpenTK.Graphics.OpenGL.BufferTargetArb target, Int32 index, Int32 buffer, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// @@ -113078,7 +113054,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glBindBufferOffsetNV")] [CLSCompliant(false)] - public static void BindBufferOffset(OpenTK.Graphics.OpenGL.NvTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset) { throw new BindingsNotRewrittenException(); } + public static void BindBufferOffset(OpenTK.Graphics.OpenGL.BufferTargetArb target, UInt32 index, UInt32 buffer, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// Bind a range within a buffer object to an indexed buffer target @@ -113100,7 +113076,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glBindBufferRangeNV")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.OpenGL.NvTransformFeedback target, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL.BufferTargetArb target, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// Bind a range within a buffer object to an indexed buffer target @@ -113122,7 +113098,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glBindBufferRangeNV")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.OpenGL.NvTransformFeedback target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL.BufferTargetArb target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// Bind a range within a buffer object to an indexed buffer target @@ -113144,7 +113120,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glBindBufferRangeNV")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.OpenGL.NvTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL.BufferTargetArb target, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// Bind a range within a buffer object to an indexed buffer target @@ -113166,7 +113142,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glBindBufferRangeNV")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.OpenGL.NvTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL.BufferTargetArb target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -113573,7 +113549,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_copy_image", Version = "", EntryPoint = "glCopyImageSubDataNV")] [CLSCompliant(false)] - public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.OpenGL.NvCopyImage srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.OpenGL.NvCopyImage dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } + public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.OpenGL.CopyBufferSubDataTarget srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.OpenGL.CopyBufferSubDataTarget dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: NV_copy_image] /// Perform a raw data copy between two images @@ -113623,7 +113599,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_copy_image", Version = "", EntryPoint = "glCopyImageSubDataNV")] [CLSCompliant(false)] - public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.OpenGL.NvCopyImage srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.OpenGL.NvCopyImage dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } + public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.OpenGL.CopyBufferSubDataTarget srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.OpenGL.CopyBufferSubDataTarget dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113646,24 +113622,24 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_framebuffer_mixed_samples] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static void CoverageModulationTable(Int32 n, Single[] v) { throw new BindingsNotRewrittenException(); } + public static void CoverageModulationTable(Int32 n, [CountAttribute(Parameter = "n")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static void CoverageModulationTable(Int32 n, ref Single v) { throw new BindingsNotRewrittenException(); } + public static void CoverageModulationTable(Int32 n, [CountAttribute(Parameter = "n")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static unsafe void CoverageModulationTable(Int32 n, Single* v) { throw new BindingsNotRewrittenException(); } + public static unsafe void CoverageModulationTable(Int32 n, [CountAttribute(Parameter = "n")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113675,7 +113651,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113687,7 +113663,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113699,7 +113675,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113711,7 +113687,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113723,7 +113699,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113735,7 +113711,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113747,7 +113723,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -113761,7 +113737,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -113775,7 +113751,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -113789,7 +113765,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -113803,7 +113779,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -113817,7 +113793,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -113831,7 +113807,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -113845,7 +113821,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -113859,7 +113835,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -113873,7 +113849,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -113887,7 +113863,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -113901,7 +113877,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -113915,7 +113891,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -113929,7 +113905,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -113943,7 +113919,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -113957,7 +113933,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -113971,7 +113947,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -113985,7 +113961,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -113999,7 +113975,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -114013,7 +113989,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -114027,7 +114003,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -114041,7 +114017,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -114055,7 +114031,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -114069,7 +114045,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -114078,14 +114054,14 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] [CLSCompliant(false)] - public static void CoverFillPath(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering coverMode) { throw new BindingsNotRewrittenException(); } + public static void CoverFillPath(Int32 path, OpenTK.Graphics.OpenGL.PathCoverMode coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] [CLSCompliant(false)] - public static void CoverFillPath(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering coverMode) { throw new BindingsNotRewrittenException(); } + public static void CoverFillPath(UInt32 path, OpenTK.Graphics.OpenGL.PathCoverMode coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114097,7 +114073,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114109,7 +114085,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114121,7 +114097,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114133,7 +114109,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114145,7 +114121,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114157,7 +114133,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114169,7 +114145,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -114183,7 +114159,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -114197,7 +114173,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -114211,7 +114187,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -114225,7 +114201,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -114239,7 +114215,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -114253,7 +114229,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -114267,7 +114243,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -114281,7 +114257,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -114295,7 +114271,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -114309,7 +114285,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -114323,7 +114299,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -114337,7 +114313,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -114351,7 +114327,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -114365,7 +114341,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -114379,7 +114355,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -114393,7 +114369,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -114407,7 +114383,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -114421,7 +114397,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -114435,7 +114411,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -114449,7 +114425,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -114463,7 +114439,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -114477,7 +114453,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -114491,7 +114467,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathCoverMode coverMode, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -114500,152 +114476,152 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathNV")] [CLSCompliant(false)] - public static void CoverStrokePath(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering coverMode) { throw new BindingsNotRewrittenException(); } + public static void CoverStrokePath(Int32 path, OpenTK.Graphics.OpenGL.PathCoverMode coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathNV")] [CLSCompliant(false)] - public static void CoverStrokePath(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering coverMode) { throw new BindingsNotRewrittenException(); } + public static void CoverStrokePath(UInt32 path, OpenTK.Graphics.OpenGL.PathCoverMode coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateCommandListsNV")] [CLSCompliant(false)] - public static void CreateCommandLists(Int32 n, [OutAttribute] Int32[] lists) { throw new BindingsNotRewrittenException(); } + public static void CreateCommandLists(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateCommandListsNV")] [CLSCompliant(false)] - public static void CreateCommandLists(Int32 n, [OutAttribute] out Int32 lists) { throw new BindingsNotRewrittenException(); } + public static void CreateCommandLists(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateCommandListsNV")] [CLSCompliant(false)] - public static unsafe void CreateCommandLists(Int32 n, [OutAttribute] Int32* lists) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateCommandLists(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateCommandListsNV")] [CLSCompliant(false)] - public static void CreateCommandLists(Int32 n, [OutAttribute] UInt32[] lists) { throw new BindingsNotRewrittenException(); } + public static void CreateCommandLists(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateCommandListsNV")] [CLSCompliant(false)] - public static void CreateCommandLists(Int32 n, [OutAttribute] out UInt32 lists) { throw new BindingsNotRewrittenException(); } + public static void CreateCommandLists(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateCommandListsNV")] [CLSCompliant(false)] - public static unsafe void CreateCommandLists(Int32 n, [OutAttribute] UInt32* lists) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateCommandLists(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateStatesNV")] [CLSCompliant(false)] - public static void CreateStates(Int32 n, [OutAttribute] Int32[] states) { throw new BindingsNotRewrittenException(); } + public static void CreateStates(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateStatesNV")] [CLSCompliant(false)] - public static void CreateStates(Int32 n, [OutAttribute] out Int32 states) { throw new BindingsNotRewrittenException(); } + public static void CreateStates(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateStatesNV")] [CLSCompliant(false)] - public static unsafe void CreateStates(Int32 n, [OutAttribute] Int32* states) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateStates(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateStatesNV")] [CLSCompliant(false)] - public static void CreateStates(Int32 n, [OutAttribute] UInt32[] states) { throw new BindingsNotRewrittenException(); } + public static void CreateStates(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateStatesNV")] [CLSCompliant(false)] - public static void CreateStates(Int32 n, [OutAttribute] out UInt32 states) { throw new BindingsNotRewrittenException(); } + public static void CreateStates(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateStatesNV")] [CLSCompliant(false)] - public static unsafe void CreateStates(Int32 n, [OutAttribute] UInt32* states) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateStates(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static void DeleteCommandList(Int32 lists) { throw new BindingsNotRewrittenException(); } + public static void DeleteCommandList([CountAttribute(Parameter = "n")] Int32 lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static void DeleteCommandList(UInt32 lists) { throw new BindingsNotRewrittenException(); } + public static void DeleteCommandList([CountAttribute(Parameter = "n")] UInt32 lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static void DeleteCommandLists(Int32 n, Int32[] lists) { throw new BindingsNotRewrittenException(); } + public static void DeleteCommandLists(Int32 n, [CountAttribute(Parameter = "n")] Int32[] lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static void DeleteCommandLists(Int32 n, ref Int32 lists) { throw new BindingsNotRewrittenException(); } + public static void DeleteCommandLists(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static unsafe void DeleteCommandLists(Int32 n, Int32* lists) { throw new BindingsNotRewrittenException(); } + public static unsafe void DeleteCommandLists(Int32 n, [CountAttribute(Parameter = "n")] Int32* lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static void DeleteCommandLists(Int32 n, UInt32[] lists) { throw new BindingsNotRewrittenException(); } + public static void DeleteCommandLists(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static void DeleteCommandLists(Int32 n, ref UInt32 lists) { throw new BindingsNotRewrittenException(); } + public static void DeleteCommandLists(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static unsafe void DeleteCommandLists(Int32 n, UInt32* lists) { throw new BindingsNotRewrittenException(); } + public static unsafe void DeleteCommandLists(Int32 n, [CountAttribute(Parameter = "n")] UInt32* lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [length: n] @@ -114855,59 +114831,86 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] UInt32* programs) { throw new BindingsNotRewrittenException(); } - /// [requires: NV_command_list] - /// - [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] + /// [requires: NV_query_resource_tag] + /// [length: n] + [AutoGenerated(Category = "NV_query_resource_tag", Version = "", EntryPoint = "glDeleteQueryResourceTagNV")] [CLSCompliant(false)] - public static void DeleteState(Int32 states) { throw new BindingsNotRewrittenException(); } + public static void DeleteQueryResourceTag([CountAttribute(Parameter = "n")] Int32 tagIds) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_query_resource_tag] + /// + /// [length: n] + [AutoGenerated(Category = "NV_query_resource_tag", Version = "", EntryPoint = "glDeleteQueryResourceTagNV")] + [CLSCompliant(false)] + public static void DeleteQueryResourceTag(Int32 n, [CountAttribute(Parameter = "n")] Int32[] tagIds) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_query_resource_tag] + /// + /// [length: n] + [AutoGenerated(Category = "NV_query_resource_tag", Version = "", EntryPoint = "glDeleteQueryResourceTagNV")] + [CLSCompliant(false)] + public static void DeleteQueryResourceTag(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 tagIds) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_query_resource_tag] + /// + /// [length: n] + [AutoGenerated(Category = "NV_query_resource_tag", Version = "", EntryPoint = "glDeleteQueryResourceTagNV")] + [CLSCompliant(false)] + public static unsafe void DeleteQueryResourceTag(Int32 n, [CountAttribute(Parameter = "n")] Int32* tagIds) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static void DeleteState(UInt32 states) { throw new BindingsNotRewrittenException(); } + public static void DeleteState([CountAttribute(Parameter = "n")] Int32 states) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_command_list] + /// [length: n] + [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] + [CLSCompliant(false)] + public static void DeleteState([CountAttribute(Parameter = "n")] UInt32 states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static void DeleteStates(Int32 n, Int32[] states) { throw new BindingsNotRewrittenException(); } + public static void DeleteStates(Int32 n, [CountAttribute(Parameter = "n")] Int32[] states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static void DeleteStates(Int32 n, ref Int32 states) { throw new BindingsNotRewrittenException(); } + public static void DeleteStates(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static unsafe void DeleteStates(Int32 n, Int32* states) { throw new BindingsNotRewrittenException(); } + public static unsafe void DeleteStates(Int32 n, [CountAttribute(Parameter = "n")] Int32* states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static void DeleteStates(Int32 n, UInt32[] states) { throw new BindingsNotRewrittenException(); } + public static void DeleteStates(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static void DeleteStates(Int32 n, ref UInt32 states) { throw new BindingsNotRewrittenException(); } + public static void DeleteStates(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static unsafe void DeleteStates(Int32 n, UInt32* states) { throw new BindingsNotRewrittenException(); } + public static unsafe void DeleteStates(Int32 n, [CountAttribute(Parameter = "n")] UInt32* states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Delete transform feedback objects @@ -115531,7 +115534,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.NvSampleLocations target, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -115540,7 +115543,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.NvSampleLocations target, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -115549,7 +115552,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.NvSampleLocations target, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -115558,7 +115561,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.NvSampleLocations target, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.FramebufferTarget target, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -115567,7 +115570,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.NvSampleLocations target, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.FramebufferTarget target, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -115576,7 +115579,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.NvSampleLocations target, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.FramebufferTarget target, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] @@ -115724,6 +115727,32 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* programs) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_query_resource_tag] + [AutoGenerated(Category = "NV_query_resource_tag", Version = "", EntryPoint = "glGenQueryResourceTagNV")] + [CLSCompliant(false)] + public static Int32 GenQueryResourceTag() { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_query_resource_tag] + /// + /// [length: n] + [AutoGenerated(Category = "NV_query_resource_tag", Version = "", EntryPoint = "glGenQueryResourceTagNV")] + [CLSCompliant(false)] + public static void GenQueryResourceTag(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] tagIds) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_query_resource_tag] + /// + /// [length: n] + [AutoGenerated(Category = "NV_query_resource_tag", Version = "", EntryPoint = "glGenQueryResourceTagNV")] + [CLSCompliant(false)] + public static void GenQueryResourceTag(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 tagIds) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_query_resource_tag] + /// + /// [length: n] + [AutoGenerated(Category = "NV_query_resource_tag", Version = "", EntryPoint = "glGenQueryResourceTagNV")] + [CLSCompliant(false)] + public static unsafe void GenQueryResourceTag(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* tagIds) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_transform_feedback2] /// Reserve transform feedback object names /// @@ -115871,7 +115900,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Return parameters of a buffer object @@ -115887,7 +115916,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Return parameters of a buffer object @@ -115903,7 +115932,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetBufferParameterui64vNV")] [CLSCompliant(false)] - public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Return parameters of a buffer object @@ -115919,7 +115948,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Return parameters of a buffer object @@ -115935,7 +115964,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Return parameters of a buffer object @@ -115951,7 +115980,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetBufferParameterui64vNV")] [CLSCompliant(false)] - public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -116235,7 +116264,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetImageHandleNV")] [CLSCompliant(false)] - public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.NvBindlessTexture format) { throw new BindingsNotRewrittenException(); } + public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.PixelFormat format) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -116245,7 +116274,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetImageHandleNV")] [CLSCompliant(false)] - public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.NvBindlessTexture format) { throw new BindingsNotRewrittenException(); } + public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.PixelFormat format) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -116352,7 +116381,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] - public static void GetInternalformatSample(OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery target, OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery internalformat, Int32 samples, OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetInternalformatSample(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 samples, OpenTK.Graphics.OpenGL.InternalFormatPName pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_internalformat_sample_query] /// @@ -116363,7 +116392,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] - public static void GetInternalformatSample(OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery target, OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery internalformat, Int32 samples, OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetInternalformatSample(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 samples, OpenTK.Graphics.OpenGL.InternalFormatPName pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_internalformat_sample_query] /// @@ -116374,7 +116403,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] - public static unsafe void GetInternalformatSample(OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery target, OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery internalformat, Int32 samples, OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetInternalformatSample(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 samples, OpenTK.Graphics.OpenGL.InternalFormatPName pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116944,7 +116973,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } + public static void GetPathColorGen(OpenTK.Graphics.OpenGL.PathColor color, OpenTK.Graphics.OpenGL.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -116952,7 +116981,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } + public static void GetPathColorGen(OpenTK.Graphics.OpenGL.PathColor color, OpenTK.Graphics.OpenGL.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -116960,7 +116989,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPathColorGen(OpenTK.Graphics.OpenGL.PathColor color, OpenTK.Graphics.OpenGL.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -116968,7 +116997,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } + public static void GetPathColorGen(OpenTK.Graphics.OpenGL.PathColor color, OpenTK.Graphics.OpenGL.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -116976,7 +117005,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } + public static void GetPathColorGen(OpenTK.Graphics.OpenGL.PathColor color, OpenTK.Graphics.OpenGL.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -116984,7 +117013,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] - public static unsafe void GetPathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPathColorGen(OpenTK.Graphics.OpenGL.PathColor color, OpenTK.Graphics.OpenGL.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117172,7 +117201,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } + public static void GetPathMetricRange(OpenTK.Graphics.OpenGL.PathMetricMask metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117182,7 +117211,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } + public static void GetPathMetricRange(OpenTK.Graphics.OpenGL.PathMetricMask metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117192,7 +117221,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPathMetricRange(OpenTK.Graphics.OpenGL.PathMetricMask metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117202,7 +117231,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } + public static void GetPathMetricRange(OpenTK.Graphics.OpenGL.PathMetricMask metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117212,7 +117241,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } + public static void GetPathMetricRange(OpenTK.Graphics.OpenGL.PathMetricMask metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117222,7 +117251,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPathMetricRange(OpenTK.Graphics.OpenGL.PathMetricMask metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117234,7 +117263,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } + public static void GetPathMetric(OpenTK.Graphics.OpenGL.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117246,7 +117275,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } + public static void GetPathMetric(OpenTK.Graphics.OpenGL.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117258,7 +117287,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPathMetric(OpenTK.Graphics.OpenGL.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117270,7 +117299,43 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + public static void GetPathMetric(OpenTK.Graphics.OpenGL.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.OpenGL.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetric(OpenTK.Graphics.OpenGL.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.OpenGL.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -117284,7 +117349,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + public static void GetPathMetric(OpenTK.Graphics.OpenGL.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -117298,7 +117363,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + public static unsafe void GetPathMetric(OpenTK.Graphics.OpenGL.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -117312,7 +117377,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + public static void GetPathMetric(OpenTK.Graphics.OpenGL.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -117326,7 +117391,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + public static void GetPathMetric(OpenTK.Graphics.OpenGL.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -117340,7 +117405,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + public static unsafe void GetPathMetric(OpenTK.Graphics.OpenGL.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -117354,7 +117419,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + public static void GetPathMetric(OpenTK.Graphics.OpenGL.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -117368,7 +117433,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + public static void GetPathMetric(OpenTK.Graphics.OpenGL.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -117382,7 +117447,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + public static unsafe void GetPathMetric(OpenTK.Graphics.OpenGL.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -117396,7 +117461,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + public static void GetPathMetric(OpenTK.Graphics.OpenGL.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -117410,7 +117475,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + public static void GetPathMetric(OpenTK.Graphics.OpenGL.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -117424,7 +117489,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + public static unsafe void GetPathMetric(OpenTK.Graphics.OpenGL.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -117438,43 +117503,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } - - /// [requires: NV_path_rendering] - /// - /// - /// - /// [length: COMPSIZE(numPaths,pathNameType,paths)] - /// - /// - /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] - [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] - [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } - - /// [requires: NV_path_rendering] - /// - /// - /// - /// [length: COMPSIZE(numPaths,pathNameType,paths)] - /// - /// - /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] - [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] - [CLSCompliant(false)] - public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } - - /// [requires: NV_path_rendering] - /// - /// - /// - /// [length: COMPSIZE(numPaths,pathNameType,paths)] - /// - /// - /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] - [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] - [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + public static void GetPathMetric(OpenTK.Graphics.OpenGL.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -117488,7 +117517,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + public static void GetPathMetric(OpenTK.Graphics.OpenGL.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -117502,7 +117531,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + public static unsafe void GetPathMetric(OpenTK.Graphics.OpenGL.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -117516,7 +117545,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + public static void GetPathMetric(OpenTK.Graphics.OpenGL.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -117530,7 +117559,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + public static void GetPathMetric(OpenTK.Graphics.OpenGL.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -117544,7 +117573,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + public static unsafe void GetPathMetric(OpenTK.Graphics.OpenGL.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -117558,7 +117587,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + public static void GetPathMetric(OpenTK.Graphics.OpenGL.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -117572,7 +117601,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + public static void GetPathMetric(OpenTK.Graphics.OpenGL.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -117586,7 +117615,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + public static unsafe void GetPathMetric(OpenTK.Graphics.OpenGL.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -117600,7 +117629,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + public static void GetPathMetric(OpenTK.Graphics.OpenGL.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -117614,7 +117643,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + public static void GetPathMetric(OpenTK.Graphics.OpenGL.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -117628,7 +117657,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + public static unsafe void GetPathMetric(OpenTK.Graphics.OpenGL.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -117638,7 +117667,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117646,7 +117675,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new BindingsNotRewrittenException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117654,7 +117683,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117662,7 +117691,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117670,7 +117699,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new BindingsNotRewrittenException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117678,7 +117707,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117686,7 +117715,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new BindingsNotRewrittenException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117694,7 +117723,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new BindingsNotRewrittenException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117702,7 +117731,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117710,7 +117739,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new BindingsNotRewrittenException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117718,7 +117747,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new BindingsNotRewrittenException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117726,7 +117755,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117740,7 +117769,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new BindingsNotRewrittenException(); } + public static void GetPathSpacing(OpenTK.Graphics.OpenGL.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117754,7 +117783,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new BindingsNotRewrittenException(); } + public static void GetPathSpacing(OpenTK.Graphics.OpenGL.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117768,7 +117797,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117782,7 +117811,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new BindingsNotRewrittenException(); } + public static void GetPathSpacing(OpenTK.Graphics.OpenGL.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117796,7 +117825,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new BindingsNotRewrittenException(); } + public static void GetPathSpacing(OpenTK.Graphics.OpenGL.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117810,7 +117839,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117824,7 +117853,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) + public static void GetPathSpacing(OpenTK.Graphics.OpenGL.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -117840,7 +117869,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) + public static void GetPathSpacing(OpenTK.Graphics.OpenGL.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -117856,7 +117885,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) + public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -117872,7 +117901,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) + public static void GetPathSpacing(OpenTK.Graphics.OpenGL.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -117888,7 +117917,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) + public static void GetPathSpacing(OpenTK.Graphics.OpenGL.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -117904,7 +117933,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) + public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -117920,7 +117949,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) + public static void GetPathSpacing(OpenTK.Graphics.OpenGL.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -117936,7 +117965,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) + public static void GetPathSpacing(OpenTK.Graphics.OpenGL.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -117952,7 +117981,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) + public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -117968,7 +117997,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) + public static void GetPathSpacing(OpenTK.Graphics.OpenGL.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -117984,7 +118013,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) + public static void GetPathSpacing(OpenTK.Graphics.OpenGL.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -118000,7 +118029,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) + public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -118016,7 +118045,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) + public static void GetPathSpacing(OpenTK.Graphics.OpenGL.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -118032,7 +118061,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) + public static void GetPathSpacing(OpenTK.Graphics.OpenGL.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -118048,7 +118077,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) + public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -118064,7 +118093,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) + public static void GetPathSpacing(OpenTK.Graphics.OpenGL.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -118080,7 +118109,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) + public static void GetPathSpacing(OpenTK.Graphics.OpenGL.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -118096,7 +118125,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) + public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -118112,7 +118141,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) + public static void GetPathSpacing(OpenTK.Graphics.OpenGL.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -118128,7 +118157,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) + public static void GetPathSpacing(OpenTK.Graphics.OpenGL.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -118144,7 +118173,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) + public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -118160,7 +118189,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) + public static void GetPathSpacing(OpenTK.Graphics.OpenGL.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -118176,7 +118205,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) + public static void GetPathSpacing(OpenTK.Graphics.OpenGL.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -118192,7 +118221,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) + public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -118202,7 +118231,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.OpenGL.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } + public static void GetPathTexGen(OpenTK.Graphics.OpenGL.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118210,7 +118239,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.OpenGL.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } + public static void GetPathTexGen(OpenTK.Graphics.OpenGL.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118218,7 +118247,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathTexGen(OpenTK.Graphics.OpenGL.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.OpenGL.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118226,7 +118255,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.OpenGL.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } + public static void GetPathTexGen(OpenTK.Graphics.OpenGL.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118234,7 +118263,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.OpenGL.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } + public static void GetPathTexGen(OpenTK.Graphics.OpenGL.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118242,7 +118271,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static unsafe void GetPathTexGen(OpenTK.Graphics.OpenGL.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.OpenGL.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -118717,7 +118746,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL.NvPathRendering programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.OpenGL.NvPathRendering[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.OpenGL.NvPathRendering[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -118736,7 +118765,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL.NvPathRendering programInterface, Int32 index, Int32 propCount, ref OpenTK.Graphics.OpenGL.NvPathRendering props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } + public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, Int32 index, Int32 propCount, ref OpenTK.Graphics.OpenGL.NvPathRendering props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -118755,7 +118784,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL.NvPathRendering programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.OpenGL.NvPathRendering* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.OpenGL.NvPathRendering* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -118774,7 +118803,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL.NvPathRendering programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.OpenGL.NvPathRendering[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.OpenGL.NvPathRendering[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -118793,7 +118822,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL.NvPathRendering programInterface, UInt32 index, Int32 propCount, ref OpenTK.Graphics.OpenGL.NvPathRendering props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, UInt32 index, Int32 propCount, ref OpenTK.Graphics.OpenGL.NvPathRendering props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -118812,7 +118841,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL.NvPathRendering programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.OpenGL.NvPathRendering* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.OpenGL.NvPathRendering* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118913,7 +118942,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glGetStageIndexNV")] - public static Int16 GetStageIndex(OpenTK.Graphics.OpenGL.NvCommandList shadertype) { throw new BindingsNotRewrittenException(); } + public static Int16 GetStageIndex(OpenTK.Graphics.OpenGL.ShaderType shadertype) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -119601,7 +119630,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLi64vNV")] [CLSCompliant(false)] - public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribEnum pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -119609,7 +119638,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLi64vNV")] [CLSCompliant(false)] - public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } + public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribEnum pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -119617,7 +119646,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLi64vNV")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribEnum pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -119625,7 +119654,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLi64vNV")] [CLSCompliant(false)] - public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribEnum pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -119633,7 +119662,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLi64vNV")] [CLSCompliant(false)] - public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribEnum pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -119641,7 +119670,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLi64vNV")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribEnum pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -119649,7 +119678,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLui64vNV")] [CLSCompliant(false)] - public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribEnum pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -119657,7 +119686,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLui64vNV")] [CLSCompliant(false)] - public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribEnum pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -119665,7 +119694,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLui64vNV")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribEnum pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -121219,7 +121248,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastBlitFramebufferNV")] [CLSCompliant(false)] - public static void MulticastBlitFramebuffer(Int32 srcGpu, Int32 dstGpu, Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, Int32 mask, OpenTK.Graphics.OpenGL.NvGpuMulticast filter) { throw new BindingsNotRewrittenException(); } + public static void MulticastBlitFramebuffer(Int32 srcGpu, Int32 dstGpu, Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.OpenGL.ClearBufferMask mask, OpenTK.Graphics.OpenGL.NvGpuMulticast filter) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121236,7 +121265,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastBlitFramebufferNV")] [CLSCompliant(false)] - public static void MulticastBlitFramebuffer(UInt32 srcGpu, UInt32 dstGpu, Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, UInt32 mask, OpenTK.Graphics.OpenGL.NvGpuMulticast filter) { throw new BindingsNotRewrittenException(); } + public static void MulticastBlitFramebuffer(UInt32 srcGpu, UInt32 dstGpu, Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.OpenGL.ClearBufferMask mask, OpenTK.Graphics.OpenGL.NvGpuMulticast filter) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121924,7 +121953,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_bindless_multi_draw_indirect_count", Version = "", EntryPoint = "glMultiDrawElementsIndirectBindlessCountNV")] - public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirectCount type, IntPtr indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) { throw new BindingsNotRewrittenException(); } + public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -121936,7 +121965,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_bindless_multi_draw_indirect_count", Version = "", EntryPoint = "glMultiDrawElementsIndirectBindlessCountNV")] [CLSCompliant(false)] - public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirectCount type, [InAttribute, OutAttribute] T2[] indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) + public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T2[] indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -121950,7 +121979,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_bindless_multi_draw_indirect_count", Version = "", EntryPoint = "glMultiDrawElementsIndirectBindlessCountNV")] [CLSCompliant(false)] - public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirectCount type, [InAttribute, OutAttribute] T2[,] indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) + public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T2[,] indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -121964,7 +121993,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_bindless_multi_draw_indirect_count", Version = "", EntryPoint = "glMultiDrawElementsIndirectBindlessCountNV")] [CLSCompliant(false)] - public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirectCount type, [InAttribute, OutAttribute] T2[,,] indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) + public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T2[,,] indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -121977,7 +122006,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_bindless_multi_draw_indirect_count", Version = "", EntryPoint = "glMultiDrawElementsIndirectBindlessCountNV")] - public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirectCount type, [InAttribute, OutAttribute] ref T2 indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) + public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T2 indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -121989,7 +122018,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_bindless_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectBindlessNV")] - public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect type, IntPtr indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) { throw new BindingsNotRewrittenException(); } + public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -122000,7 +122029,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_bindless_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectBindlessNV")] [CLSCompliant(false)] - public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect type, [InAttribute, OutAttribute] T2[] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) + public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T2[] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -122013,7 +122042,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_bindless_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectBindlessNV")] [CLSCompliant(false)] - public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect type, [InAttribute, OutAttribute] T2[,] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) + public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T2[,] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -122026,7 +122055,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_bindless_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectBindlessNV")] [CLSCompliant(false)] - public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect type, [InAttribute, OutAttribute] T2[,,] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) + public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] T2[,,] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -122038,7 +122067,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_bindless_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectBindlessNV")] - public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect type, [InAttribute, OutAttribute] ref T2 indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) + public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T2 indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -122234,7 +122263,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(genMode,colorFormat)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] - public static void PathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering genMode, OpenTK.Graphics.OpenGL.NvPathRendering colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single[] coeffs) { throw new BindingsNotRewrittenException(); } + public static void PathColorGen(OpenTK.Graphics.OpenGL.PathColor color, OpenTK.Graphics.OpenGL.PathGenMode genMode, OpenTK.Graphics.OpenGL.NvPathRendering colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122243,7 +122272,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(genMode,colorFormat)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] - public static void PathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering genMode, OpenTK.Graphics.OpenGL.NvPathRendering colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] ref Single coeffs) { throw new BindingsNotRewrittenException(); } + public static void PathColorGen(OpenTK.Graphics.OpenGL.PathColor color, OpenTK.Graphics.OpenGL.PathGenMode genMode, OpenTK.Graphics.OpenGL.NvPathRendering colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122252,7 +122281,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(genMode,colorFormat)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] - public static unsafe void PathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering genMode, OpenTK.Graphics.OpenGL.NvPathRendering colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single* coeffs) { throw new BindingsNotRewrittenException(); } + public static unsafe void PathColorGen(OpenTK.Graphics.OpenGL.PathColor color, OpenTK.Graphics.OpenGL.PathGenMode genMode, OpenTK.Graphics.OpenGL.NvPathRendering colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122794,7 +122823,7 @@ namespace OpenTK.Graphics.OpenGL /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathFogGenNV")] - public static void PathFogGen(OpenTK.Graphics.OpenGL.NvPathRendering genMode) { throw new BindingsNotRewrittenException(); } + public static void PathFogGen(OpenTK.Graphics.OpenGL.PathGenMode genMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122807,7 +122836,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontName, OpenTK.Graphics.OpenGL.PathFontStyle fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122820,7 +122849,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T2[] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) + public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T2[] fontName, OpenTK.Graphics.OpenGL.PathFontStyle fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -122835,7 +122864,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T2[,] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) + public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T2[,] fontName, OpenTK.Graphics.OpenGL.PathFontStyle fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -122850,7 +122879,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) + public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, OpenTK.Graphics.OpenGL.PathFontStyle fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -122865,7 +122894,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] ref T2 fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) + public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] ref T2 fontName, OpenTK.Graphics.OpenGL.PathFontStyle fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -122880,7 +122909,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontName, OpenTK.Graphics.OpenGL.PathFontStyle fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122893,7 +122922,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T2[] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T2[] fontName, OpenTK.Graphics.OpenGL.PathFontStyle fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -122908,7 +122937,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T2[,] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T2[,] fontName, OpenTK.Graphics.OpenGL.PathFontStyle fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -122923,7 +122952,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, OpenTK.Graphics.OpenGL.PathFontStyle fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -122938,7 +122967,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] ref T2 fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] ref T2 fontName, OpenTK.Graphics.OpenGL.PathFontStyle fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -122951,7 +122980,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontName, OpenTK.Graphics.OpenGL.PathFontStyle fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122962,7 +122991,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontName, OpenTK.Graphics.OpenGL.PathFontStyle fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122973,7 +123002,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T1[] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) + public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T1[] fontName, OpenTK.Graphics.OpenGL.PathFontStyle fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct { throw new BindingsNotRewrittenException(); } @@ -122986,7 +123015,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T1[] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) + public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T1[] fontName, OpenTK.Graphics.OpenGL.PathFontStyle fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct { throw new BindingsNotRewrittenException(); } @@ -122999,7 +123028,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T1[,] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) + public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T1[,] fontName, OpenTK.Graphics.OpenGL.PathFontStyle fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct { throw new BindingsNotRewrittenException(); } @@ -123012,7 +123041,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T1[,] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) + public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T1[,] fontName, OpenTK.Graphics.OpenGL.PathFontStyle fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct { throw new BindingsNotRewrittenException(); } @@ -123025,7 +123054,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) + public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, OpenTK.Graphics.OpenGL.PathFontStyle fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct { throw new BindingsNotRewrittenException(); } @@ -123038,7 +123067,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) + public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, OpenTK.Graphics.OpenGL.PathFontStyle fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct { throw new BindingsNotRewrittenException(); } @@ -123051,7 +123080,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] ref T1 fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) + public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] ref T1 fontName, OpenTK.Graphics.OpenGL.PathFontStyle fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct { throw new BindingsNotRewrittenException(); } @@ -123064,7 +123093,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] ref T1 fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) + public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] ref T1 fontName, OpenTK.Graphics.OpenGL.PathFontStyle fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct { throw new BindingsNotRewrittenException(); } @@ -123080,7 +123109,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL.PathFontTarget fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, OpenTK.Graphics.OpenGL.PathFontStyle fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123094,7 +123123,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, OpenTK.Graphics.OpenGL.PathFontStyle fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -123110,7 +123139,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, OpenTK.Graphics.OpenGL.PathFontStyle fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -123126,7 +123155,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, OpenTK.Graphics.OpenGL.PathFontStyle fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -123142,7 +123171,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, OpenTK.Graphics.OpenGL.PathFontStyle fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -123158,7 +123187,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL.PathFontTarget fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, OpenTK.Graphics.OpenGL.PathFontStyle fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123172,7 +123201,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, OpenTK.Graphics.OpenGL.PathFontStyle fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -123188,7 +123217,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, OpenTK.Graphics.OpenGL.PathFontStyle fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -123204,7 +123233,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, OpenTK.Graphics.OpenGL.PathFontStyle fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -123220,7 +123249,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, OpenTK.Graphics.OpenGL.PathFontStyle fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -123237,7 +123266,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL.PathFontTarget fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, OpenTK.Graphics.OpenGL.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.PathElementType type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.OpenGL.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123252,7 +123281,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, OpenTK.Graphics.OpenGL.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.PathElementType type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.OpenGL.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -123270,7 +123299,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, OpenTK.Graphics.OpenGL.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.PathElementType type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.OpenGL.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -123288,7 +123317,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, OpenTK.Graphics.OpenGL.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.PathElementType type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.OpenGL.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -123306,7 +123335,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, OpenTK.Graphics.OpenGL.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.PathElementType type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.OpenGL.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -123324,7 +123353,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL.PathFontTarget fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, OpenTK.Graphics.OpenGL.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.PathElementType type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.OpenGL.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123339,7 +123368,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, OpenTK.Graphics.OpenGL.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.PathElementType type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.OpenGL.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -123357,7 +123386,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, OpenTK.Graphics.OpenGL.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.PathElementType type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.OpenGL.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -123375,7 +123404,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, OpenTK.Graphics.OpenGL.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.PathElementType type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.OpenGL.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -123393,7 +123422,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, OpenTK.Graphics.OpenGL.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.PathElementType type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.OpenGL.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -123716,7 +123745,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, Single value) { throw new BindingsNotRewrittenException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL.PathParameter pname, Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123724,7 +123753,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, Single value) { throw new BindingsNotRewrittenException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL.PathParameter pname, Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123732,7 +123761,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL.PathParameter pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123740,7 +123769,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } + public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.OpenGL.PathParameter pname, [CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123748,7 +123777,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL.PathParameter pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123756,7 +123785,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } + public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL.PathParameter pname, [CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123764,7 +123793,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameteriNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, Int32 value) { throw new BindingsNotRewrittenException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL.PathParameter pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123772,7 +123801,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameteriNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, Int32 value) { throw new BindingsNotRewrittenException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL.PathParameter pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123780,7 +123809,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL.PathParameter pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123788,7 +123817,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } + public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.OpenGL.PathParameter pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123796,7 +123825,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL.PathParameter pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123804,7 +123833,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } + public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL.PathParameter pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123835,7 +123864,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] - public static void PathString(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new BindingsNotRewrittenException(); } + public static void PathString(Int32 path, OpenTK.Graphics.OpenGL.PathStringFormat format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123844,7 +123873,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] - public static void PathString(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] pathString) + public static void PathString(Int32 path, OpenTK.Graphics.OpenGL.PathStringFormat format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] pathString) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -123855,7 +123884,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] - public static void PathString(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] pathString) + public static void PathString(Int32 path, OpenTK.Graphics.OpenGL.PathStringFormat format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] pathString) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -123866,7 +123895,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] - public static void PathString(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] pathString) + public static void PathString(Int32 path, OpenTK.Graphics.OpenGL.PathStringFormat format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] pathString) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -123877,7 +123906,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] - public static void PathString(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 pathString) + public static void PathString(Int32 path, OpenTK.Graphics.OpenGL.PathStringFormat format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 pathString) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -123888,7 +123917,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] - public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new BindingsNotRewrittenException(); } + public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL.PathStringFormat format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123897,7 +123926,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] - public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] pathString) + public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL.PathStringFormat format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] pathString) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -123908,7 +123937,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] - public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] pathString) + public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL.PathStringFormat format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] pathString) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -123919,7 +123948,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] - public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] pathString) + public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL.PathStringFormat format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] pathString) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -123930,7 +123959,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] - public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 pathString) + public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL.PathStringFormat format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 pathString) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -124495,7 +124524,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(genMode,components)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] - public static void PathTexGen(OpenTK.Graphics.OpenGL.NvPathRendering texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single[] coeffs) { throw new BindingsNotRewrittenException(); } + public static void PathTexGen(OpenTK.Graphics.OpenGL.PathColor texCoordSet, OpenTK.Graphics.OpenGL.PathGenMode genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124504,7 +124533,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(genMode,components)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] - public static void PathTexGen(OpenTK.Graphics.OpenGL.NvPathRendering texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] ref Single coeffs) { throw new BindingsNotRewrittenException(); } + public static void PathTexGen(OpenTK.Graphics.OpenGL.PathColor texCoordSet, OpenTK.Graphics.OpenGL.PathGenMode genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124513,7 +124542,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(genMode,components)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] - public static unsafe void PathTexGen(OpenTK.Graphics.OpenGL.NvPathRendering texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single* coeffs) { throw new BindingsNotRewrittenException(); } + public static unsafe void PathTexGen(OpenTK.Graphics.OpenGL.PathColor texCoordSet, OpenTK.Graphics.OpenGL.PathGenMode genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Pause transform feedback operations @@ -127171,6 +127200,66 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "NV_geometry_program4", Version = "", EntryPoint = "glProgramVertexLimitNV")] public static void ProgramVertexLimit(OpenTK.Graphics.OpenGL.NvGeometryProgram4 target, Int32 limit) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_query_resource] + /// + /// + /// + /// + [AutoGenerated(Category = "NV_query_resource", Version = "", EntryPoint = "glQueryResourceNV")] + [CLSCompliant(false)] + public static Int32 QueryResource(OpenTK.Graphics.OpenGL.NvQueryResource queryType, Int32 tagId, Int32 bufSize, [OutAttribute] Int32[] buffer) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_query_resource] + /// + /// + /// + /// + [AutoGenerated(Category = "NV_query_resource", Version = "", EntryPoint = "glQueryResourceNV")] + [CLSCompliant(false)] + public static Int32 QueryResource(OpenTK.Graphics.OpenGL.NvQueryResource queryType, Int32 tagId, Int32 bufSize, [OutAttribute] out Int32 buffer) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_query_resource] + /// + /// + /// + /// + [AutoGenerated(Category = "NV_query_resource", Version = "", EntryPoint = "glQueryResourceNV")] + [CLSCompliant(false)] + public static unsafe Int32 QueryResource(OpenTK.Graphics.OpenGL.NvQueryResource queryType, Int32 tagId, Int32 bufSize, [OutAttribute] Int32* buffer) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_query_resource] + /// + /// + /// + /// + [AutoGenerated(Category = "NV_query_resource", Version = "", EntryPoint = "glQueryResourceNV")] + [CLSCompliant(false)] + public static Int32 QueryResource(OpenTK.Graphics.OpenGL.NvQueryResource queryType, Int32 tagId, UInt32 bufSize, [OutAttribute] Int32[] buffer) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_query_resource] + /// + /// + /// + /// + [AutoGenerated(Category = "NV_query_resource", Version = "", EntryPoint = "glQueryResourceNV")] + [CLSCompliant(false)] + public static Int32 QueryResource(OpenTK.Graphics.OpenGL.NvQueryResource queryType, Int32 tagId, UInt32 bufSize, [OutAttribute] out Int32 buffer) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_query_resource] + /// + /// + /// + /// + [AutoGenerated(Category = "NV_query_resource", Version = "", EntryPoint = "glQueryResourceNV")] + [CLSCompliant(false)] + public static unsafe Int32 QueryResource(OpenTK.Graphics.OpenGL.NvQueryResource queryType, Int32 tagId, UInt32 bufSize, [OutAttribute] Int32* buffer) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_query_resource_tag] + /// + /// + [AutoGenerated(Category = "NV_query_resource_tag", Version = "", EntryPoint = "glQueryResourceTagNV")] + public static void QueryResourceTag(Int32 tagId, String tagString) { throw new BindingsNotRewrittenException(); } + /// [requires: NV_framebuffer_multisample_coverage] /// /// @@ -127179,7 +127268,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_framebuffer_multisample_coverage", Version = "", EntryPoint = "glRenderbufferStorageMultisampleCoverageNV")] - public static void RenderbufferStorageMultisampleCoverage(OpenTK.Graphics.OpenGL.RenderbufferTarget target, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + public static void RenderbufferStorageMultisampleCoverage(OpenTK.Graphics.OpenGL.RenderbufferTarget target, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -127289,7 +127378,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glSecondaryColorFormatNV")] - public static void SecondaryColorFormat(Int32 size, OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, Int32 stride) { throw new BindingsNotRewrittenException(); } + public static void SecondaryColorFormat(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -127354,7 +127443,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127367,7 +127456,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127380,7 +127469,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127393,7 +127482,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127406,7 +127495,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127419,7 +127508,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127432,7 +127521,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -127447,7 +127536,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -127462,7 +127551,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -127477,7 +127566,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -127492,7 +127581,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -127507,7 +127596,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -127522,7 +127611,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -127537,7 +127626,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -127552,7 +127641,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -127567,7 +127656,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -127582,7 +127671,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -127597,7 +127686,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -127612,7 +127701,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -127627,7 +127716,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -127642,7 +127731,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -127657,7 +127746,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -127672,7 +127761,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -127687,7 +127776,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -127702,7 +127791,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -127717,7 +127806,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -127732,7 +127821,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -127747,7 +127836,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -127762,7 +127851,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -127777,7 +127866,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -127787,7 +127876,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathNV")] [CLSCompliant(false)] - public static void StencilFillPath(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask) { throw new BindingsNotRewrittenException(); } + public static void StencilFillPath(Int32 path, OpenTK.Graphics.OpenGL.PathFillMode fillMode, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127795,7 +127884,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathNV")] [CLSCompliant(false)] - public static void StencilFillPath(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask) { throw new BindingsNotRewrittenException(); } + public static void StencilFillPath(UInt32 path, OpenTK.Graphics.OpenGL.PathFillMode fillMode, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127808,7 +127897,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127821,7 +127910,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127834,7 +127923,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127847,7 +127936,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127860,7 +127949,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127873,7 +127962,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127886,7 +127975,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -127901,7 +127990,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -127916,7 +128005,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -127931,7 +128020,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -127946,7 +128035,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -127961,7 +128050,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -127976,7 +128065,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -127991,7 +128080,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -128006,7 +128095,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -128021,7 +128110,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -128036,7 +128125,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -128051,7 +128140,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -128066,7 +128155,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -128081,7 +128170,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -128096,7 +128185,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -128111,7 +128200,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -128126,7 +128215,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -128141,7 +128230,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -128156,7 +128245,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -128171,7 +128260,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -128186,7 +128275,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -128201,7 +128290,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -128216,7 +128305,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -128231,7 +128320,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -129351,7 +129440,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_texture_multisample", Version = "", EntryPoint = "glTexImage2DMultisampleCoverageNV")] - public static void TexImage2DMultisampleCoverage(OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 coverageSamples, Int32 colorSamples, Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations) { throw new BindingsNotRewrittenException(); } + public static void TexImage2DMultisampleCoverage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 coverageSamples, Int32 colorSamples, Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations) { throw new BindingsNotRewrittenException(); } /// [requires: NV_texture_multisample] /// @@ -129363,7 +129452,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_texture_multisample", Version = "", EntryPoint = "glTexImage3DMultisampleCoverageNV")] - public static void TexImage3DMultisampleCoverage(OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 coverageSamples, Int32 colorSamples, Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations) { throw new BindingsNotRewrittenException(); } + public static void TexImage3DMultisampleCoverage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 coverageSamples, Int32 colorSamples, Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations) { throw new BindingsNotRewrittenException(); } /// [requires: NV_explicit_multisample] /// @@ -129394,7 +129483,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_texture_multisample", Version = "", EntryPoint = "glTextureImage2DMultisampleCoverageNV")] [CLSCompliant(false)] - public static void TextureImage2DMultisampleCoverage(Int32 texture, OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 coverageSamples, Int32 colorSamples, Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations) { throw new BindingsNotRewrittenException(); } + public static void TextureImage2DMultisampleCoverage(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 coverageSamples, Int32 colorSamples, Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations) { throw new BindingsNotRewrittenException(); } /// [requires: NV_texture_multisample] /// @@ -129407,7 +129496,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_texture_multisample", Version = "", EntryPoint = "glTextureImage2DMultisampleCoverageNV")] [CLSCompliant(false)] - public static void TextureImage2DMultisampleCoverage(UInt32 texture, OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 coverageSamples, Int32 colorSamples, Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations) { throw new BindingsNotRewrittenException(); } + public static void TextureImage2DMultisampleCoverage(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 coverageSamples, Int32 colorSamples, Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations) { throw new BindingsNotRewrittenException(); } /// [requires: NV_texture_multisample] /// @@ -129419,7 +129508,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_texture_multisample", Version = "", EntryPoint = "glTextureImage2DMultisampleNV")] [CLSCompliant(false)] - public static void TextureImage2DMultisample(Int32 texture, OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 samples, Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations) { throw new BindingsNotRewrittenException(); } + public static void TextureImage2DMultisample(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 samples, Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations) { throw new BindingsNotRewrittenException(); } /// [requires: NV_texture_multisample] /// @@ -129431,7 +129520,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_texture_multisample", Version = "", EntryPoint = "glTextureImage2DMultisampleNV")] [CLSCompliant(false)] - public static void TextureImage2DMultisample(UInt32 texture, OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 samples, Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations) { throw new BindingsNotRewrittenException(); } + public static void TextureImage2DMultisample(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 samples, Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations) { throw new BindingsNotRewrittenException(); } /// [requires: NV_texture_multisample] /// @@ -129445,7 +129534,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_texture_multisample", Version = "", EntryPoint = "glTextureImage3DMultisampleCoverageNV")] [CLSCompliant(false)] - public static void TextureImage3DMultisampleCoverage(Int32 texture, OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 coverageSamples, Int32 colorSamples, Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations) { throw new BindingsNotRewrittenException(); } + public static void TextureImage3DMultisampleCoverage(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 coverageSamples, Int32 colorSamples, Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations) { throw new BindingsNotRewrittenException(); } /// [requires: NV_texture_multisample] /// @@ -129459,7 +129548,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_texture_multisample", Version = "", EntryPoint = "glTextureImage3DMultisampleCoverageNV")] [CLSCompliant(false)] - public static void TextureImage3DMultisampleCoverage(UInt32 texture, OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 coverageSamples, Int32 colorSamples, Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations) { throw new BindingsNotRewrittenException(); } + public static void TextureImage3DMultisampleCoverage(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 coverageSamples, Int32 colorSamples, Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations) { throw new BindingsNotRewrittenException(); } /// [requires: NV_texture_multisample] /// @@ -129472,7 +129561,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_texture_multisample", Version = "", EntryPoint = "glTextureImage3DMultisampleNV")] [CLSCompliant(false)] - public static void TextureImage3DMultisample(Int32 texture, OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 samples, Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations) { throw new BindingsNotRewrittenException(); } + public static void TextureImage3DMultisample(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 samples, Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations) { throw new BindingsNotRewrittenException(); } /// [requires: NV_texture_multisample] /// @@ -129485,7 +129574,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_texture_multisample", Version = "", EntryPoint = "glTextureImage3DMultisampleNV")] [CLSCompliant(false)] - public static void TextureImage3DMultisample(UInt32 texture, OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 samples, Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations) { throw new BindingsNotRewrittenException(); } + public static void TextureImage3DMultisample(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 samples, Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -129680,7 +129769,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129689,7 +129778,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129698,7 +129787,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static unsafe void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + public static unsafe void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129707,7 +129796,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129716,7 +129805,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129725,7 +129814,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static unsafe void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + public static unsafe void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.OpenGL.PathTransformType transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -133231,7 +133320,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribLFormatNV")] [CLSCompliant(false)] - public static void VertexAttribLFormat(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit type, Int32 stride) { throw new BindingsNotRewrittenException(); } + public static void VertexAttribLFormat(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribType type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -133240,7 +133329,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribLFormatNV")] [CLSCompliant(false)] - public static void VertexAttribLFormat(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit type, Int32 stride) { throw new BindingsNotRewrittenException(); } + public static void VertexAttribLFormat(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribType type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Define an array of generic vertex attribute data @@ -134299,7 +134388,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glVertexFormatNV")] - public static void VertexFormat(Int32 size, OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, Int32 stride) { throw new BindingsNotRewrittenException(); } + public static void VertexFormat(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -134946,7 +135035,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glAlphaFuncxOES")] - public static void AlphaFuncx(OpenTK.Graphics.OpenGL.OesFixedPoint func, Int32 @ref) { throw new BindingsNotRewrittenException(); } + public static void AlphaFuncx(OpenTK.Graphics.OpenGL.AlphaFunction func, Int32 @ref) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135033,7 +135122,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glClipPlanefOES")] [CLSCompliant(false)] - public static void ClipPlane(OpenTK.Graphics.OpenGL.OesSinglePrecision plane, [CountAttribute(Count = 4)] Single[] equation) { throw new BindingsNotRewrittenException(); } + public static void ClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, [CountAttribute(Count = 4)] Single[] equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Specify a plane against which all geometry is clipped @@ -135046,7 +135135,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glClipPlanefOES")] [CLSCompliant(false)] - public static void ClipPlane(OpenTK.Graphics.OpenGL.OesSinglePrecision plane, [CountAttribute(Count = 4)] ref Single equation) { throw new BindingsNotRewrittenException(); } + public static void ClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, [CountAttribute(Count = 4)] ref Single equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Specify a plane against which all geometry is clipped @@ -135059,28 +135148,28 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glClipPlanefOES")] [CLSCompliant(false)] - public static unsafe void ClipPlane(OpenTK.Graphics.OpenGL.OesSinglePrecision plane, [CountAttribute(Count = 4)] Single* equation) { throw new BindingsNotRewrittenException(); } + public static unsafe void ClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, [CountAttribute(Count = 4)] Single* equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClipPlanexOES")] [CLSCompliant(false)] - public static void ClipPlanex(OpenTK.Graphics.OpenGL.OesFixedPoint plane, [CountAttribute(Count = 4)] Int32[] equation) { throw new BindingsNotRewrittenException(); } + public static void ClipPlanex(OpenTK.Graphics.OpenGL.ClipPlaneName plane, [CountAttribute(Count = 4)] Int32[] equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClipPlanexOES")] [CLSCompliant(false)] - public static void ClipPlanex(OpenTK.Graphics.OpenGL.OesFixedPoint plane, [CountAttribute(Count = 4)] ref Int32 equation) { throw new BindingsNotRewrittenException(); } + public static void ClipPlanex(OpenTK.Graphics.OpenGL.ClipPlaneName plane, [CountAttribute(Count = 4)] ref Int32 equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClipPlanexOES")] [CLSCompliant(false)] - public static unsafe void ClipPlanex(OpenTK.Graphics.OpenGL.OesFixedPoint plane, [CountAttribute(Count = 4)] Int32* equation) { throw new BindingsNotRewrittenException(); } + public static unsafe void ClipPlanex(OpenTK.Graphics.OpenGL.ClipPlaneName plane, [CountAttribute(Count = 4)] Int32* equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135138,7 +135227,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glConvolutionParameterxOES")] - public static void ConvolutionParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new BindingsNotRewrittenException(); } + public static void ConvolutionParameterx(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135146,7 +135235,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glConvolutionParameterxvOES")] [CLSCompliant(false)] - public static void ConvolutionParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void ConvolutionParameterx(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135154,7 +135243,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glConvolutionParameterxvOES")] [CLSCompliant(false)] - public static unsafe void ConvolutionParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void ConvolutionParameterx(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Specify mapping of depth values from normalized device coordinates to window coordinates @@ -135237,21 +135326,21 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFogxOES")] - public static void Fogx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new BindingsNotRewrittenException(); } + public static void Fogx(OpenTK.Graphics.OpenGL.FogPName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFogxvOES")] [CLSCompliant(false)] - public static void Fogx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } + public static void Fogx(OpenTK.Graphics.OpenGL.FogPName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFogxvOES")] [CLSCompliant(false)] - public static unsafe void Fogx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } + public static unsafe void Fogx(OpenTK.Graphics.OpenGL.FogPName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Multiply the current matrix by a perspective matrix @@ -135298,7 +135387,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glGetClipPlanefOES")] [CLSCompliant(false)] - public static void GetClipPlane(OpenTK.Graphics.OpenGL.OesSinglePrecision plane, [OutAttribute, CountAttribute(Count = 4)] Single[] equation) { throw new BindingsNotRewrittenException(); } + public static void GetClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, [OutAttribute, CountAttribute(Count = 4)] Single[] equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Return the coefficients of the specified clipping plane @@ -135311,7 +135400,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glGetClipPlanefOES")] [CLSCompliant(false)] - public static void GetClipPlane(OpenTK.Graphics.OpenGL.OesSinglePrecision plane, [OutAttribute, CountAttribute(Count = 4)] out Single equation) { throw new BindingsNotRewrittenException(); } + public static void GetClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, [OutAttribute, CountAttribute(Count = 4)] out Single equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Return the coefficients of the specified clipping plane @@ -135324,28 +135413,28 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glGetClipPlanefOES")] [CLSCompliant(false)] - public static unsafe void GetClipPlane(OpenTK.Graphics.OpenGL.OesSinglePrecision plane, [OutAttribute, CountAttribute(Count = 4)] Single* equation) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, [OutAttribute, CountAttribute(Count = 4)] Single* equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetClipPlanexOES")] [CLSCompliant(false)] - public static void GetClipPlanex(OpenTK.Graphics.OpenGL.OesFixedPoint plane, [OutAttribute, CountAttribute(Count = 4)] Int32[] equation) { throw new BindingsNotRewrittenException(); } + public static void GetClipPlanex(OpenTK.Graphics.OpenGL.ClipPlaneName plane, [OutAttribute, CountAttribute(Count = 4)] Int32[] equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetClipPlanexOES")] [CLSCompliant(false)] - public static void GetClipPlanex(OpenTK.Graphics.OpenGL.OesFixedPoint plane, [OutAttribute, CountAttribute(Count = 4)] out Int32 equation) { throw new BindingsNotRewrittenException(); } + public static void GetClipPlanex(OpenTK.Graphics.OpenGL.ClipPlaneName plane, [OutAttribute, CountAttribute(Count = 4)] out Int32 equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetClipPlanexOES")] [CLSCompliant(false)] - public static unsafe void GetClipPlanex(OpenTK.Graphics.OpenGL.OesFixedPoint plane, [OutAttribute, CountAttribute(Count = 4)] Int32* equation) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetClipPlanex(OpenTK.Graphics.OpenGL.ClipPlaneName plane, [OutAttribute, CountAttribute(Count = 4)] Int32* equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135375,28 +135464,28 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetFixedvOES")] [CLSCompliant(false)] - public static Int32 GetFixed(OpenTK.Graphics.OpenGL.OesFixedPoint pname) { throw new BindingsNotRewrittenException(); } + public static Int32 GetFixed(OpenTK.Graphics.OpenGL.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetFixedvOES")] [CLSCompliant(false)] - public static void GetFixed(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetFixed(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetFixedvOES")] [CLSCompliant(false)] - public static void GetFixed(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetFixed(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetFixedvOES")] [CLSCompliant(false)] - public static unsafe void GetFixed(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetFixed(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135404,7 +135493,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetHistogramParameterxvOES")] [CLSCompliant(false)] - public static void GetHistogramParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetHistogramParameterx(OpenTK.Graphics.OpenGL.HistogramTargetExt target, OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135412,7 +135501,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetHistogramParameterxvOES")] [CLSCompliant(false)] - public static void GetHistogramParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetHistogramParameterx(OpenTK.Graphics.OpenGL.HistogramTargetExt target, OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135420,7 +135509,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetHistogramParameterxvOES")] [CLSCompliant(false)] - public static unsafe void GetHistogramParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetHistogramParameterx(OpenTK.Graphics.OpenGL.HistogramTargetExt target, OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135428,7 +135517,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetLightxOES")] [CLSCompliant(false)] - public static void GetLightx(OpenTK.Graphics.OpenGL.OesFixedPoint light, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetLightx(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135436,7 +135525,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetLightxOES")] [CLSCompliant(false)] - public static void GetLightx(OpenTK.Graphics.OpenGL.OesFixedPoint light, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetLightx(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135444,7 +135533,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetLightxOES")] [CLSCompliant(false)] - public static unsafe void GetLightx(OpenTK.Graphics.OpenGL.OesFixedPoint light, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetLightx(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135452,7 +135541,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(query)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMapxvOES")] [CLSCompliant(false)] - public static void GetMapx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint query, [OutAttribute, CountAttribute(Computed = "query")] Int32[] v) { throw new BindingsNotRewrittenException(); } + public static void GetMapx(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute, CountAttribute(Computed = "query")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135460,7 +135549,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(query)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMapxvOES")] [CLSCompliant(false)] - public static void GetMapx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint query, [OutAttribute, CountAttribute(Computed = "query")] out Int32 v) { throw new BindingsNotRewrittenException(); } + public static void GetMapx(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute, CountAttribute(Computed = "query")] out Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135468,14 +135557,14 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(query)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMapxvOES")] [CLSCompliant(false)] - public static unsafe void GetMapx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint query, [OutAttribute, CountAttribute(Computed = "query")] Int32* v) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetMapx(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute, CountAttribute(Computed = "query")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMaterialxOES")] - public static void GetMaterialx(OpenTK.Graphics.OpenGL.OesFixedPoint face, OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new BindingsNotRewrittenException(); } + public static void GetMaterialx(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135483,7 +135572,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMaterialxvOES")] [CLSCompliant(false)] - public static void GetMaterialx(OpenTK.Graphics.OpenGL.OesFixedPoint face, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetMaterialx(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135491,7 +135580,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMaterialxvOES")] [CLSCompliant(false)] - public static unsafe void GetMaterialx(OpenTK.Graphics.OpenGL.OesFixedPoint face, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetMaterialx(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135499,7 +135588,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexEnvxvOES")] [CLSCompliant(false)] - public static void GetTexEnvx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetTexEnvx(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135507,7 +135596,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexEnvxvOES")] [CLSCompliant(false)] - public static void GetTexEnvx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetTexEnvx(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135515,7 +135604,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexEnvxvOES")] [CLSCompliant(false)] - public static unsafe void GetTexEnvx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetTexEnvx(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135523,7 +135612,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexGenxvOES")] [CLSCompliant(false)] - public static void GetTexGenx(OpenTK.Graphics.OpenGL.OesFixedPoint coord, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetTexGenx(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135531,7 +135620,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexGenxvOES")] [CLSCompliant(false)] - public static void GetTexGenx(OpenTK.Graphics.OpenGL.OesFixedPoint coord, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetTexGenx(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135539,7 +135628,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexGenxvOES")] [CLSCompliant(false)] - public static unsafe void GetTexGenx(OpenTK.Graphics.OpenGL.OesFixedPoint coord, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetTexGenx(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135548,7 +135637,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexLevelParameterxvOES")] [CLSCompliant(false)] - public static void GetTexLevelParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, Int32 level, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetTexLevelParameterx(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135557,7 +135646,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexLevelParameterxvOES")] [CLSCompliant(false)] - public static void GetTexLevelParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, Int32 level, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetTexLevelParameterx(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135566,7 +135655,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexLevelParameterxvOES")] [CLSCompliant(false)] - public static unsafe void GetTexLevelParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, Int32 level, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetTexLevelParameterx(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135574,7 +135663,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexParameterxvOES")] [CLSCompliant(false)] - public static void GetTexParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetTexParameterx(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135582,7 +135671,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexParameterxvOES")] [CLSCompliant(false)] - public static void GetTexParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetTexParameterx(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135590,7 +135679,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexParameterxvOES")] [CLSCompliant(false)] - public static unsafe void GetTexParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetTexParameterx(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135607,28 +135696,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightModelxOES")] - public static void LightModelx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new BindingsNotRewrittenException(); } + public static void LightModelx(OpenTK.Graphics.OpenGL.LightModelParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightModelxvOES")] [CLSCompliant(false)] - public static void LightModelx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } + public static void LightModelx(OpenTK.Graphics.OpenGL.LightModelParameter pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightModelxvOES")] [CLSCompliant(false)] - public static unsafe void LightModelx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } + public static unsafe void LightModelx(OpenTK.Graphics.OpenGL.LightModelParameter pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightxOES")] - public static void Lightx(OpenTK.Graphics.OpenGL.OesFixedPoint light, OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new BindingsNotRewrittenException(); } + public static void Lightx(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135636,7 +135725,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightxvOES")] [CLSCompliant(false)] - public static void Lightx(OpenTK.Graphics.OpenGL.OesFixedPoint light, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void Lightx(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135644,7 +135733,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightxvOES")] [CLSCompliant(false)] - public static unsafe void Lightx(OpenTK.Graphics.OpenGL.OesFixedPoint light, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void Lightx(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135695,7 +135784,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMap1xOES")] - public static void Map1x(OpenTK.Graphics.OpenGL.OesFixedPoint target, Int32 u1, Int32 u2, Int32 stride, Int32 order, Int32 points) { throw new BindingsNotRewrittenException(); } + public static void Map1x(OpenTK.Graphics.OpenGL.MapTarget target, Int32 u1, Int32 u2, Int32 stride, Int32 order, Int32 points) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135709,7 +135798,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMap2xOES")] - public static void Map2x(OpenTK.Graphics.OpenGL.OesFixedPoint target, Int32 u1, Int32 u2, Int32 ustride, Int32 uorder, Int32 v1, Int32 v2, Int32 vstride, Int32 vorder, Int32 points) { throw new BindingsNotRewrittenException(); } + public static void Map2x(OpenTK.Graphics.OpenGL.MapTarget target, Int32 u1, Int32 u2, Int32 ustride, Int32 uorder, Int32 v1, Int32 v2, Int32 vstride, Int32 vorder, Int32 points) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135732,7 +135821,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMaterialxOES")] - public static void Materialx(OpenTK.Graphics.OpenGL.OesFixedPoint face, OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new BindingsNotRewrittenException(); } + public static void Materialx(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135740,7 +135829,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMaterialxvOES")] [CLSCompliant(false)] - public static void Materialx(OpenTK.Graphics.OpenGL.OesFixedPoint face, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } + public static void Materialx(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135748,7 +135837,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMaterialxvOES")] [CLSCompliant(false)] - public static unsafe void Materialx(OpenTK.Graphics.OpenGL.OesFixedPoint face, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } + public static unsafe void Materialx(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -135761,7 +135850,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord1bOES")] [CLSCompliant(false)] - public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, Byte s) { throw new BindingsNotRewrittenException(); } + public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit texture, Byte s) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -135774,7 +135863,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord1bOES")] [CLSCompliant(false)] - public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, SByte s) { throw new BindingsNotRewrittenException(); } + public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit texture, SByte s) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -135787,7 +135876,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord1bvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 1)] Byte* coords) { throw new BindingsNotRewrittenException(); } + public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit texture, [CountAttribute(Count = 1)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -135800,20 +135889,20 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord1bvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 1)] SByte* coords) { throw new BindingsNotRewrittenException(); } + public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit texture, [CountAttribute(Count = 1)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord1xOES")] - public static void MultiTexCoord1x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, Int32 s) { throw new BindingsNotRewrittenException(); } + public static void MultiTexCoord1x(OpenTK.Graphics.OpenGL.TextureUnit texture, Int32 s) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 1] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord1xvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord1x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } + public static unsafe void MultiTexCoord1x(OpenTK.Graphics.OpenGL.TextureUnit texture, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -135829,7 +135918,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bOES")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, Byte s, Byte t) { throw new BindingsNotRewrittenException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit texture, Byte s, Byte t) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -135845,7 +135934,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bOES")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, SByte s, SByte t) { throw new BindingsNotRewrittenException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit texture, SByte s, SByte t) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -135858,7 +135947,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 2)] Byte[] coords) { throw new BindingsNotRewrittenException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit texture, [CountAttribute(Count = 2)] Byte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -135871,7 +135960,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 2)] ref Byte coords) { throw new BindingsNotRewrittenException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit texture, [CountAttribute(Count = 2)] ref Byte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -135884,7 +135973,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 2)] Byte* coords) { throw new BindingsNotRewrittenException(); } + public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit texture, [CountAttribute(Count = 2)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -135897,7 +135986,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 2)] SByte[] coords) { throw new BindingsNotRewrittenException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit texture, [CountAttribute(Count = 2)] SByte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -135910,7 +135999,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 2)] ref SByte coords) { throw new BindingsNotRewrittenException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit texture, [CountAttribute(Count = 2)] ref SByte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -135923,35 +136012,35 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 2)] SByte* coords) { throw new BindingsNotRewrittenException(); } + public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit texture, [CountAttribute(Count = 2)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord2xOES")] - public static void MultiTexCoord2x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, Int32 s, Int32 t) { throw new BindingsNotRewrittenException(); } + public static void MultiTexCoord2x(OpenTK.Graphics.OpenGL.TextureUnit texture, Int32 s, Int32 t) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord2xvOES")] [CLSCompliant(false)] - public static void MultiTexCoord2x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 2)] Int32[] coords) { throw new BindingsNotRewrittenException(); } + public static void MultiTexCoord2x(OpenTK.Graphics.OpenGL.TextureUnit texture, [CountAttribute(Count = 2)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord2xvOES")] [CLSCompliant(false)] - public static void MultiTexCoord2x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 2)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } + public static void MultiTexCoord2x(OpenTK.Graphics.OpenGL.TextureUnit texture, [CountAttribute(Count = 2)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord2xvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord2x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 2)] Int32* coords) { throw new BindingsNotRewrittenException(); } + public static unsafe void MultiTexCoord2x(OpenTK.Graphics.OpenGL.TextureUnit texture, [CountAttribute(Count = 2)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -135970,7 +136059,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bOES")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, Byte s, Byte t, Byte r) { throw new BindingsNotRewrittenException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit texture, Byte s, Byte t, Byte r) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -135989,7 +136078,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bOES")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, SByte s, SByte t, SByte r) { throw new BindingsNotRewrittenException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit texture, SByte s, SByte t, SByte r) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136002,7 +136091,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 3)] Byte[] coords) { throw new BindingsNotRewrittenException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit texture, [CountAttribute(Count = 3)] Byte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136015,7 +136104,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 3)] ref Byte coords) { throw new BindingsNotRewrittenException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit texture, [CountAttribute(Count = 3)] ref Byte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136028,7 +136117,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 3)] Byte* coords) { throw new BindingsNotRewrittenException(); } + public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit texture, [CountAttribute(Count = 3)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136041,7 +136130,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 3)] SByte[] coords) { throw new BindingsNotRewrittenException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit texture, [CountAttribute(Count = 3)] SByte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136054,7 +136143,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 3)] ref SByte coords) { throw new BindingsNotRewrittenException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit texture, [CountAttribute(Count = 3)] ref SByte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136067,7 +136156,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 3)] SByte* coords) { throw new BindingsNotRewrittenException(); } + public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit texture, [CountAttribute(Count = 3)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -136075,28 +136164,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord3xOES")] - public static void MultiTexCoord3x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, Int32 s, Int32 t, Int32 r) { throw new BindingsNotRewrittenException(); } + public static void MultiTexCoord3x(OpenTK.Graphics.OpenGL.TextureUnit texture, Int32 s, Int32 t, Int32 r) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord3xvOES")] [CLSCompliant(false)] - public static void MultiTexCoord3x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 3)] Int32[] coords) { throw new BindingsNotRewrittenException(); } + public static void MultiTexCoord3x(OpenTK.Graphics.OpenGL.TextureUnit texture, [CountAttribute(Count = 3)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord3xvOES")] [CLSCompliant(false)] - public static void MultiTexCoord3x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 3)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } + public static void MultiTexCoord3x(OpenTK.Graphics.OpenGL.TextureUnit texture, [CountAttribute(Count = 3)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord3xvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord3x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 3)] Int32* coords) { throw new BindingsNotRewrittenException(); } + public static unsafe void MultiTexCoord3x(OpenTK.Graphics.OpenGL.TextureUnit texture, [CountAttribute(Count = 3)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136118,7 +136207,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bOES")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, Byte s, Byte t, Byte r, Byte q) { throw new BindingsNotRewrittenException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit texture, Byte s, Byte t, Byte r, Byte q) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136140,7 +136229,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bOES")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, SByte s, SByte t, SByte r, SByte q) { throw new BindingsNotRewrittenException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit texture, SByte s, SByte t, SByte r, SByte q) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136153,7 +136242,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 4)] Byte[] coords) { throw new BindingsNotRewrittenException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit texture, [CountAttribute(Count = 4)] Byte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136166,7 +136255,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 4)] ref Byte coords) { throw new BindingsNotRewrittenException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit texture, [CountAttribute(Count = 4)] ref Byte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136179,7 +136268,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 4)] Byte* coords) { throw new BindingsNotRewrittenException(); } + public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit texture, [CountAttribute(Count = 4)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136192,7 +136281,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 4)] SByte[] coords) { throw new BindingsNotRewrittenException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit texture, [CountAttribute(Count = 4)] SByte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136205,7 +136294,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 4)] ref SByte coords) { throw new BindingsNotRewrittenException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit texture, [CountAttribute(Count = 4)] ref SByte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136218,7 +136307,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 4)] SByte* coords) { throw new BindingsNotRewrittenException(); } + public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit texture, [CountAttribute(Count = 4)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -136227,28 +136316,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord4xOES")] - public static void MultiTexCoord4x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, Int32 s, Int32 t, Int32 r, Int32 q) { throw new BindingsNotRewrittenException(); } + public static void MultiTexCoord4x(OpenTK.Graphics.OpenGL.TextureUnit texture, Int32 s, Int32 t, Int32 r, Int32 q) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord4xvOES")] [CLSCompliant(false)] - public static void MultiTexCoord4x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 4)] Int32[] coords) { throw new BindingsNotRewrittenException(); } + public static void MultiTexCoord4x(OpenTK.Graphics.OpenGL.TextureUnit texture, [CountAttribute(Count = 4)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord4xvOES")] [CLSCompliant(false)] - public static void MultiTexCoord4x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 4)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } + public static void MultiTexCoord4x(OpenTK.Graphics.OpenGL.TextureUnit texture, [CountAttribute(Count = 4)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord4xvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord4x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 4)] Int32* coords) { throw new BindingsNotRewrittenException(); } + public static unsafe void MultiTexCoord4x(OpenTK.Graphics.OpenGL.TextureUnit texture, [CountAttribute(Count = 4)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] @@ -136354,7 +136443,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelTransferxOES")] - public static void PixelTransferx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new BindingsNotRewrittenException(); } + public static void PixelTransferx(OpenTK.Graphics.OpenGL.PixelTransferParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -136994,7 +137083,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexEnvxOES")] - public static void TexEnvx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new BindingsNotRewrittenException(); } + public static void TexEnvx(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -137002,7 +137091,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexEnvxvOES")] [CLSCompliant(false)] - public static void TexEnvx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void TexEnvx(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -137010,14 +137099,14 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexEnvxvOES")] [CLSCompliant(false)] - public static unsafe void TexEnvx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void TexEnvx(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexGenxOES")] - public static void TexGenx(OpenTK.Graphics.OpenGL.OesFixedPoint coord, OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new BindingsNotRewrittenException(); } + public static void TexGenx(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -137025,7 +137114,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexGenxvOES")] [CLSCompliant(false)] - public static void TexGenx(OpenTK.Graphics.OpenGL.OesFixedPoint coord, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void TexGenx(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -137033,14 +137122,14 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexGenxvOES")] [CLSCompliant(false)] - public static unsafe void TexGenx(OpenTK.Graphics.OpenGL.OesFixedPoint coord, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void TexGenx(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexParameterxOES")] - public static void TexParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new BindingsNotRewrittenException(); } + public static void TexParameterx(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -137048,7 +137137,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexParameterxvOES")] [CLSCompliant(false)] - public static void TexParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void TexParameterx(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -137056,7 +137145,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexParameterxvOES")] [CLSCompliant(false)] - public static unsafe void TexParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void TexParameterx(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -137673,7 +137762,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a one-dimensional array of pixel data that is processed to build the color table. /// [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableSGI")] - public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr table) { throw new BindingsNotRewrittenException(); } + public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr table) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Define a color lookup table @@ -137698,7 +137787,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableSGI")] [CLSCompliant(false)] - public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[] table) + public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[] table) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -137725,7 +137814,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableSGI")] [CLSCompliant(false)] - public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,] table) + public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,] table) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -137752,7 +137841,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableSGI")] [CLSCompliant(false)] - public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,,] table) + public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,,] table) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -137778,7 +137867,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a one-dimensional array of pixel data that is processed to build the color table. /// [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableSGI")] - public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T5 table) + public static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T5 table) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -137805,7 +137894,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ColorTableTargetSgi overload instead")] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableSGI")] - public static void ColorTable(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr table) { throw new BindingsNotRewrittenException(); } + public static void ColorTable(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr table) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Define a color lookup table @@ -137831,7 +137920,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ColorTableTargetSgi overload instead")] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableSGI")] [CLSCompliant(false)] - public static void ColorTable(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[] table) + public static void ColorTable(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[] table) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -137859,7 +137948,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ColorTableTargetSgi overload instead")] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableSGI")] [CLSCompliant(false)] - public static void ColorTable(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,] table) + public static void ColorTable(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,] table) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -137887,7 +137976,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ColorTableTargetSgi overload instead")] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableSGI")] [CLSCompliant(false)] - public static void ColorTable(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,,] table) + public static void ColorTable(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,,] table) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -137914,7 +138003,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ColorTableTargetSgi overload instead")] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableSGI")] - public static void ColorTable(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T5 table) + public static void ColorTable(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T5 table) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -137937,7 +138026,7 @@ namespace OpenTK.Graphics.OpenGL /// The width of the pixel rectangle. /// [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glCopyColorTableSGI")] - public static void CopyColorTable(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } + public static void CopyColorTable(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Copy pixels into a color table @@ -137959,7 +138048,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ColorTableTargetSgi overload instead")] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glCopyColorTableSGI")] - public static void CopyColorTable(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } + public static void CopyColorTable(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Get color lookup table parameters @@ -138824,7 +138913,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: COMPSIZE(format,type,width,height,depth,size4d)] [AutoGenerated(Category = "SGIS_texture4D", Version = "", EntryPoint = "glTexImage4DSGIS")] - public static void TexImage4D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 size4d, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth,size4d")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } + public static void TexImage4D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 size4d, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth,size4d")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_texture4D] /// @@ -138840,7 +138929,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height,depth,size4d)] [AutoGenerated(Category = "SGIS_texture4D", Version = "", EntryPoint = "glTexImage4DSGIS")] [CLSCompliant(false)] - public static void TexImage4D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 size4d, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth,size4d")] T10[] pixels) + public static void TexImage4D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 size4d, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth,size4d")] T10[] pixels) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -138858,7 +138947,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height,depth,size4d)] [AutoGenerated(Category = "SGIS_texture4D", Version = "", EntryPoint = "glTexImage4DSGIS")] [CLSCompliant(false)] - public static void TexImage4D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 size4d, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth,size4d")] T10[,] pixels) + public static void TexImage4D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 size4d, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth,size4d")] T10[,] pixels) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -138876,7 +138965,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height,depth,size4d)] [AutoGenerated(Category = "SGIS_texture4D", Version = "", EntryPoint = "glTexImage4DSGIS")] [CLSCompliant(false)] - public static void TexImage4D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 size4d, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth,size4d")] T10[,,] pixels) + public static void TexImage4D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 size4d, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth,size4d")] T10[,,] pixels) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -138893,7 +138982,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: COMPSIZE(format,type,width,height,depth,size4d)] [AutoGenerated(Category = "SGIS_texture4D", Version = "", EntryPoint = "glTexImage4DSGIS")] - public static void TexImage4D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 size4d, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth,size4d")] ref T10 pixels) + public static void TexImage4D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 size4d, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth,size4d")] ref T10 pixels) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -141316,7 +141405,7 @@ namespace OpenTK.Graphics.OpenGL } - [Slot(2149)] + [Slot(2154)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTbufferMask3DFX(UInt32 mask); [Slot(33)] @@ -141349,82 +141438,82 @@ namespace OpenTK.Graphics.OpenGL [Slot(420)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeletePerfMonitorsAMD(Int32 n, [CountAttribute(Parameter = "n")] UInt32* monitors); - [Slot(541)] + [Slot(542)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEndPerfMonitorAMD(UInt32 monitor); - [Slot(634)] + [Slot(635)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glFramebufferSamplePositionsfvAMD(System.Int32 target, UInt32 numsamples, UInt32 pixelindex, Single* values); - [Slot(671)] + [Slot(672)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGenNamesAMD(System.Int32 identifier, UInt32 num, [OutAttribute, CountAttribute(Parameter = "num")] UInt32* names); - [Slot(674)] + [Slot(675)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGenPerfMonitorsAMD(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* monitors); - [Slot(756)] + [Slot(758)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe Int32 glGetDebugMessageLogAMD(UInt32 count, Int32 bufsize, [OutAttribute, CountAttribute(Parameter = "count")] System.Int32* categories, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* severities, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufsize")] IntPtr message); - [Slot(784)] + private static extern unsafe Int32 glGetDebugMessageLogAMD(UInt32 count, Int32 bufsize, [OutAttribute, CountAttribute(Parameter = "count")] System.Int32* categories, [OutAttribute, CountAttribute(Parameter = "count")] System.Int32* severities, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufsize")] IntPtr message); + [Slot(786)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetFramebufferParameterfvAMD(System.Int32 target, System.Int32 pname, UInt32 numsamples, UInt32 pixelindex, Int32 size, [OutAttribute] Single* values); - [Slot(870)] + [Slot(872)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetNamedFramebufferParameterfvAMD(UInt32 framebuffer, System.Int32 pname, UInt32 numsamples, UInt32 pixelindex, Int32 size, [OutAttribute] Single* values); - [Slot(951)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPerfMonitorCounterDataAMD(UInt32 monitor, System.Int32 pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten); - [Slot(952)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetPerfMonitorCounterInfoAMD(UInt32 group, UInt32 counter, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data); [Slot(953)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPerfMonitorCountersAMD(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32* counters); + private static extern unsafe void glGetPerfMonitorCounterDataAMD(UInt32 monitor, System.Int32 pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten); [Slot(954)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPerfMonitorCounterStringAMD(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr counterString); + private static extern void glGetPerfMonitorCounterInfoAMD(UInt32 group, UInt32 counter, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data); [Slot(955)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPerfMonitorGroupsAMD([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32* groups); + private static extern unsafe void glGetPerfMonitorCountersAMD(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32* counters); [Slot(956)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetPerfMonitorCounterStringAMD(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr counterString); + [Slot(957)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetPerfMonitorGroupsAMD([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32* groups); + [Slot(958)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetPerfMonitorGroupStringAMD(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr groupString); - [Slot(1229)] + [Slot(1231)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsNameAMD(System.Int32 identifier, UInt32 name); - [Slot(1402)] + [Slot(1405)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiDrawArraysIndirectAMD(System.Int32 mode, IntPtr indirect, Int32 primcount, Int32 stride); - [Slot(1412)] + [Slot(1415)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiDrawElementsIndirectAMD(System.Int32 mode, System.Int32 type, IntPtr indirect, Int32 primcount, Int32 stride); - [Slot(1569)] + [Slot(1572)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glNamedFramebufferSamplePositionsfvAMD(UInt32 framebuffer, UInt32 numsamples, UInt32 pixelindex, Single* values); - [Slot(1927)] + [Slot(1930)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glQueryObjectParameteruiAMD(System.Int32 target, UInt32 id, System.Int32 pname, System.Int32 param); - [Slot(2084)] + [Slot(2089)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glSelectPerfMonitorCountersAMD(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32* counterList); - [Slot(2093)] + [Slot(2098)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glSetMultisamplefvAMD(System.Int32 pname, UInt32 index, [CountAttribute(Count = 2)] Single* val); - [Slot(2125)] + [Slot(2130)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glStencilOpValueAMD(System.Int32 face, UInt32 value); - [Slot(2150)] + [Slot(2155)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTessellationFactorAMD(Single factor); - [Slot(2151)] + [Slot(2156)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTessellationModeAMD(System.Int32 mode); - [Slot(2290)] + [Slot(2295)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexStorageSparseAMD(System.Int32 target, System.Int32 internalFormat, Int32 width, Int32 height, Int32 depth, Int32 layers, UInt32 flags); - [Slot(2345)] + private static extern void glTexStorageSparseAMD(System.Int32 target, System.Int32 internalFormat, Int32 width, Int32 height, Int32 depth, Int32 layers, System.Int32 flags); + [Slot(2350)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureStorageSparseAMD(UInt32 texture, System.Int32 target, System.Int32 internalFormat, Int32 width, Int32 height, Int32 depth, Int32 layers, UInt32 flags); - [Slot(2794)] + private static extern void glTextureStorageSparseAMD(UInt32 texture, System.Int32 target, System.Int32 internalFormat, Int32 width, Int32 height, Int32 depth, Int32 layers, System.Int32 flags); + [Slot(2799)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribParameteriAMD(UInt32 index, System.Int32 pname, Int32 param); [Slot(87)] @@ -141436,97 +141525,97 @@ namespace OpenTK.Graphics.OpenGL [Slot(408)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteFencesAPPLE(Int32 n, [CountAttribute(Parameter = "n")] UInt32* fences); - [Slot(441)] + [Slot(442)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteVertexArraysAPPLE(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays); - [Slot(467)] + [Slot(468)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDisableVertexAttribAPPLE(UInt32 index, System.Int32 pname); - [Slot(488)] + [Slot(489)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawElementArrayAPPLE(System.Int32 mode, Int32 first, Int32 count); - [Slot(501)] + [Slot(502)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawRangeElementArrayAPPLE(System.Int32 mode, UInt32 start, UInt32 end, Int32 first, Int32 count); - [Slot(519)] + [Slot(520)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glElementPointerAPPLE(System.Int32 type, [CountAttribute(Computed = "type")] IntPtr pointer); - [Slot(531)] + [Slot(532)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEnableVertexAttribAPPLE(UInt32 index, System.Int32 pname); - [Slot(577)] + [Slot(578)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFinishFenceAPPLE(UInt32 fence); - [Slot(579)] + [Slot(580)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFinishObjectAPPLE(System.Int32 @object, Int32 name); - [Slot(583)] + [Slot(584)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFlushMappedBufferRangeAPPLE(System.Int32 target, IntPtr offset, IntPtr size); - [Slot(589)] + [Slot(590)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFlushVertexArrayRangeAPPLE(Int32 length, [OutAttribute, CountAttribute(Parameter = "length")] IntPtr pointer); - [Slot(665)] + [Slot(666)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGenFencesAPPLE(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* fences); - [Slot(691)] + [Slot(693)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGenVertexArraysAPPLE(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays); - [Slot(931)] + [Slot(933)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetObjectParameterivAPPLE(System.Int32 objectType, UInt32 name, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(1062)] + [Slot(1064)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glGetTexParameterPointervAPPLE(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params); - [Slot(1221)] + [Slot(1223)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsFenceAPPLE(UInt32 fence); - [Slot(1259)] + [Slot(1261)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsVertexArrayAPPLE(UInt32 array); - [Slot(1260)] + [Slot(1262)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsVertexAttribEnabledAPPLE(UInt32 index, System.Int32 pname); - [Slot(1339)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMapVertexAttrib1dAPPLE(UInt32 index, UInt32 size, Double u1, Double u2, Int32 stride, Int32 order, [CountAttribute(Computed = "size,stride,order")] Double* points); - [Slot(1340)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMapVertexAttrib1fAPPLE(UInt32 index, UInt32 size, Single u1, Single u2, Int32 stride, Int32 order, [CountAttribute(Computed = "size,stride,order")] Single* points); [Slot(1341)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMapVertexAttrib2dAPPLE(UInt32 index, UInt32 size, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] Double* points); + private static extern unsafe void glMapVertexAttrib1dAPPLE(UInt32 index, UInt32 size, Double u1, Double u2, Int32 stride, Int32 order, [CountAttribute(Computed = "size,stride,order")] Double* points); [Slot(1342)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMapVertexAttrib1fAPPLE(UInt32 index, UInt32 size, Single u1, Single u2, Int32 stride, Int32 order, [CountAttribute(Computed = "size,stride,order")] Single* points); + [Slot(1343)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMapVertexAttrib2dAPPLE(UInt32 index, UInt32 size, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] Double* points); + [Slot(1344)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMapVertexAttrib2fAPPLE(UInt32 index, UInt32 size, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] Single* points); - [Slot(1407)] + [Slot(1410)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiDrawElementArrayAPPLE(System.Int32 mode, [CountAttribute(Parameter = "primcount")] Int32* first, [CountAttribute(Parameter = "primcount")] Int32* count, Int32 primcount); - [Slot(1417)] + [Slot(1420)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiDrawRangeElementArrayAPPLE(System.Int32 mode, UInt32 start, UInt32 end, [CountAttribute(Parameter = "primcount")] Int32* first, [CountAttribute(Parameter = "primcount")] Int32* count, Int32 primcount); - [Slot(1635)] + [Slot(1638)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern System.Int32 glObjectPurgeableAPPLE(System.Int32 objectType, UInt32 name, System.Int32 option); - [Slot(1636)] + [Slot(1639)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern System.Int32 glObjectUnpurgeableAPPLE(System.Int32 objectType, UInt32 name, System.Int32 option); - [Slot(2088)] + [Slot(2093)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glSetFenceAPPLE(UInt32 fence); - [Slot(2152)] + [Slot(2157)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glTestFenceAPPLE(UInt32 fence); - [Slot(2154)] + [Slot(2159)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glTestObjectAPPLE(System.Int32 @object, UInt32 name); - [Slot(2328)] + [Slot(2333)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureRangeAPPLE(System.Int32 target, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pointer); - [Slot(2575)] + [Slot(2580)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexArrayParameteriAPPLE(System.Int32 pname, Int32 param); - [Slot(2576)] + [Slot(2581)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexArrayRangeAPPLE(Int32 length, [OutAttribute, CountAttribute(Parameter = "length")] IntPtr pointer); [Slot(8)] @@ -141634,835 +141723,835 @@ namespace OpenTK.Graphics.OpenGL [Slot(428)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteQueriesARB(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids); - [Slot(454)] + [Slot(455)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDetachObjectARB(UInt32 containerObj, UInt32 attachedObj); - [Slot(469)] + [Slot(470)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDisableVertexAttribArrayARB(UInt32 index); - [Slot(471)] + [Slot(472)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDispatchComputeGroupSizeARB(UInt32 num_groups_x, UInt32 num_groups_y, UInt32 num_groups_z, UInt32 group_size_x, UInt32 group_size_y, UInt32 group_size_z); - [Slot(477)] + [Slot(478)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawArraysInstancedARB(System.Int32 mode, Int32 first, Int32 count, Int32 primcount); - [Slot(482)] + [Slot(483)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDrawBuffersARB(Int32 n, [CountAttribute(Parameter = "n")] System.Int32* bufs); - [Slot(494)] + [Slot(495)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawElementsInstancedARB(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount); - [Slot(533)] + [Slot(534)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEnableVertexAttribArrayARB(UInt32 index); - [Slot(544)] + [Slot(545)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEndQueryARB(System.Int32 target); - [Slot(568)] + [Slot(569)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEvaluateDepthValuesARB(); - [Slot(632)] + [Slot(633)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glFramebufferSampleLocationsfvARB(System.Int32 target, UInt32 start, Int32 count, Single* v); - [Slot(642)] + [Slot(643)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferTextureARB(System.Int32 target, System.Int32 attachment, UInt32 texture, Int32 level); - [Slot(644)] + [Slot(645)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferTextureFaceARB(System.Int32 target, System.Int32 attachment, UInt32 texture, Int32 level, System.Int32 face); - [Slot(647)] + [Slot(648)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferTextureLayerARB(System.Int32 target, System.Int32 attachment, UInt32 texture, Int32 level, Int32 layer); - [Slot(659)] + [Slot(660)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGenBuffersARB(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* buffers); - [Slot(677)] + [Slot(678)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGenProgramsARB(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* programs); - [Slot(680)] + [Slot(681)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGenQueriesARB(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids); - [Slot(695)] + [Slot(697)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetActiveAttribARB(UInt32 programObj, UInt32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] System.Int32* type, [OutAttribute, CountAttribute(Parameter = "maxLength")] IntPtr name); - [Slot(700)] + [Slot(702)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetActiveUniformARB(UInt32 programObj, UInt32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] System.Int32* type, [OutAttribute, CountAttribute(Parameter = "maxLength")] IntPtr name); - [Slot(708)] + [Slot(710)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetAttachedObjectsARB(UInt32 containerObj, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32* obj); - [Slot(711)] + [Slot(713)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int32 glGetAttribLocationARB(UInt32 programObj, IntPtr name); - [Slot(717)] + [Slot(719)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetBufferParameterivARB(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(720)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetBufferPointervARB(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params); [Slot(722)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glGetBufferPointervARB(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params); + [Slot(724)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glGetBufferSubDataARB(System.Int32 target, IntPtr offset, IntPtr size, [OutAttribute, CountAttribute(Parameter = "size")] IntPtr data); - [Slot(743)] + [Slot(745)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glGetCompressedTexImageARB(System.Int32 target, Int32 level, [OutAttribute, CountAttribute(Computed = "target,level")] IntPtr img); - [Slot(757)] + [Slot(759)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe Int32 glGetDebugMessageLogARB(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] System.Int32* sources, [OutAttribute, CountAttribute(Parameter = "count")] System.Int32* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] System.Int32* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr messageLog); - [Slot(788)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern System.Int32 glGetGraphicsResetStatusARB(); [Slot(790)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern System.Int32 glGetGraphicsResetStatusARB(); + [Slot(792)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int32 glGetHandleARB(System.Int32 pname); - [Slot(798)] + [Slot(800)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int64 glGetImageHandleARB(UInt32 texture, Int32 level, bool layered, Int32 layer, System.Int32 format); - [Slot(802)] + [Slot(804)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetInfoLogARB(UInt32 obj, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "maxLength")] IntPtr infoLog); - [Slot(881)] + [Slot(883)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetNamedStringARB(Int32 namelen, [CountAttribute(Parameter = "namelen")] IntPtr name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* stringlen, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr @string); - [Slot(882)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetNamedStringivARB(Int32 namelen, [CountAttribute(Parameter = "namelen")] IntPtr name, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(884)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetnColorTableARB(System.Int32 target, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr table); + private static extern unsafe void glGetNamedStringivARB(Int32 namelen, [CountAttribute(Parameter = "namelen")] IntPtr name, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(886)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetnCompressedTexImageARB(System.Int32 target, Int32 lod, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr img); + private static extern void glGetnColorTableARB(System.Int32 target, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr table); [Slot(888)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetnConvolutionFilterARB(System.Int32 target, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr image); - [Slot(891)] + private static extern void glGetnCompressedTexImageARB(System.Int32 target, Int32 lod, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr img); + [Slot(890)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetnHistogramARB(System.Int32 target, bool reset, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr values); + private static extern void glGetnConvolutionFilterARB(System.Int32 target, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr image); [Slot(893)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetnMapdvARB(System.Int32 target, System.Int32 query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double* v); + private static extern void glGetnHistogramARB(System.Int32 target, bool reset, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr values); [Slot(895)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetnMapfvARB(System.Int32 target, System.Int32 query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* v); + private static extern unsafe void glGetnMapdvARB(System.Int32 target, System.Int32 query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double* v); [Slot(897)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetnMapivARB(System.Int32 target, System.Int32 query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* v); + private static extern unsafe void glGetnMapfvARB(System.Int32 target, System.Int32 query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* v); [Slot(899)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetnMinmaxARB(System.Int32 target, bool reset, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr values); + private static extern unsafe void glGetnMapivARB(System.Int32 target, System.Int32 query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* v); [Slot(901)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetnPixelMapfvARB(System.Int32 map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* values); + private static extern void glGetnMinmaxARB(System.Int32 target, bool reset, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr values); [Slot(903)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetnPixelMapuivARB(System.Int32 map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32* values); + private static extern unsafe void glGetnPixelMapfvARB(System.Int32 map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* values); [Slot(905)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetnPixelMapusvARB(System.Int32 map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt16* values); + private static extern unsafe void glGetnPixelMapuivARB(System.Int32 map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32* values); [Slot(907)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetnPolygonStippleARB(Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Byte* pattern); + private static extern unsafe void glGetnPixelMapusvARB(System.Int32 map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt16* values); [Slot(909)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetnSeparableFilterARB(System.Int32 target, System.Int32 format, System.Int32 type, Int32 rowBufSize, [OutAttribute, CountAttribute(Parameter = "rowBufSize")] IntPtr row, Int32 columnBufSize, [OutAttribute, CountAttribute(Parameter = "columnBufSize")] IntPtr column, [OutAttribute, CountAttribute(Count = 0)] IntPtr span); + private static extern unsafe void glGetnPolygonStippleARB(Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Byte* pattern); [Slot(911)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetnTexImageARB(System.Int32 target, Int32 level, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr img); + private static extern void glGetnSeparableFilterARB(System.Int32 target, System.Int32 format, System.Int32 type, Int32 rowBufSize, [OutAttribute, CountAttribute(Parameter = "rowBufSize")] IntPtr row, Int32 columnBufSize, [OutAttribute, CountAttribute(Parameter = "columnBufSize")] IntPtr column, [OutAttribute, CountAttribute(Count = 0)] IntPtr span); [Slot(913)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetnUniformdvARB(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double* @params); + private static extern void glGetnTexImageARB(System.Int32 target, Int32 level, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr img); [Slot(915)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetnUniformfvARB(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params); + private static extern unsafe void glGetnUniformdvARB(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double* @params); [Slot(917)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetnUniformi64vARB(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int64* @params); + private static extern unsafe void glGetnUniformfvARB(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params); [Slot(919)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetnUniformivARB(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params); + private static extern unsafe void glGetnUniformi64vARB(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int64* @params); [Slot(921)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetnUniformui64vARB(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt64* @params); + private static extern unsafe void glGetnUniformivARB(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params); [Slot(923)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetnUniformuivARB(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32* @params); - [Slot(930)] + private static extern unsafe void glGetnUniformui64vARB(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt64* @params); + [Slot(925)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetObjectParameterfvARB(UInt32 obj, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); + private static extern unsafe void glGetnUniformuivARB(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32* @params); [Slot(932)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetObjectParameterfvARB(UInt32 obj, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); + [Slot(934)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetObjectParameterivARB(UInt32 obj, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(975)] + [Slot(977)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetProgramEnvParameterdvARB(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params); - [Slot(976)] + [Slot(978)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetProgramEnvParameterfvARB(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params); - [Slot(982)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetProgramivARB(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params); [Slot(984)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetProgramivARB(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params); + [Slot(986)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetProgramLocalParameterdvARB(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params); - [Slot(985)] + [Slot(987)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetProgramLocalParameterfvARB(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params); - [Slot(1003)] + [Slot(1005)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glGetProgramStringARB(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "target,pname")] IntPtr @string); - [Slot(1012)] + [Slot(1014)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetQueryivARB(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(1016)] + [Slot(1018)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetQueryObjectivARB(UInt32 id, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(1020)] + [Slot(1022)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetQueryObjectuivARB(UInt32 id, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params); - [Slot(1034)] + [Slot(1036)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetShaderSourceARB(UInt32 obj, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "maxLength")] IntPtr source); - [Slot(1064)] + [Slot(1066)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int64 glGetTextureHandleARB(UInt32 texture); - [Slot(1080)] + [Slot(1082)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int64 glGetTextureSamplerHandleARB(UInt32 texture, UInt32 sampler); - [Slot(1094)] + [Slot(1096)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetUniformfvARB(UInt32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] Single* @params); - [Slot(1095)] + [Slot(1097)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetUniformi64vARB(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params); - [Slot(1099)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetUniformivARB(UInt32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] Int32* @params); [Slot(1101)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetUniformivARB(UInt32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] Int32* @params); + [Slot(1103)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int32 glGetUniformLocationARB(UInt32 programObj, IntPtr name); - [Slot(1104)] + [Slot(1106)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetUniformui64vARB(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt64* @params); - [Slot(1127)] + [Slot(1129)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetVertexAttribdvARB(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 4)] Double* @params); - [Slot(1130)] + [Slot(1132)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetVertexAttribfvARB(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params); - [Slot(1137)] + [Slot(1139)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetVertexAttribivARB(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params); - [Slot(1142)] + [Slot(1144)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetVertexAttribLui64vARB(UInt32 index, System.Int32 pname, [OutAttribute] UInt64* @params); - [Slot(1145)] + [Slot(1147)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glGetVertexAttribPointervARB(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer); - [Slot(1215)] + [Slot(1217)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsBufferARB(UInt32 buffer); - [Slot(1225)] + [Slot(1227)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsImageHandleResidentARB(UInt64 handle); - [Slot(1231)] + [Slot(1233)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsNamedStringARB(Int32 namelen, [CountAttribute(Parameter = "namelen")] IntPtr name); - [Slot(1238)] + [Slot(1240)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsProgramARB(UInt32 program); - [Slot(1243)] + [Slot(1245)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsQueryARB(UInt32 id); - [Slot(1253)] + [Slot(1255)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsTextureHandleResidentARB(UInt64 handle); - [Slot(1282)] + [Slot(1284)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glLinkProgramARB(UInt32 programObj); - [Slot(1297)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glLoadTransposeMatrixdARB([CountAttribute(Count = 16)] Double* m); [Slot(1299)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glLoadTransposeMatrixfARB([CountAttribute(Count = 16)] Single* m); - [Slot(1305)] + private static extern unsafe void glLoadTransposeMatrixdARB([CountAttribute(Count = 16)] Double* m); + [Slot(1301)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMakeImageHandleNonResidentARB(UInt64 handle); + private static extern unsafe void glLoadTransposeMatrixfARB([CountAttribute(Count = 16)] Single* m); [Slot(1307)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMakeImageHandleResidentARB(UInt64 handle, System.Int32 access); - [Slot(1311)] + private static extern void glMakeImageHandleNonResidentARB(UInt64 handle); + [Slot(1309)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMakeTextureHandleNonResidentARB(UInt64 handle); + private static extern void glMakeImageHandleResidentARB(UInt64 handle, System.Int32 access); [Slot(1313)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMakeTextureHandleNonResidentARB(UInt64 handle); + [Slot(1315)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMakeTextureHandleResidentARB(UInt64 handle); - [Slot(1322)] + [Slot(1324)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern IntPtr glMapBufferARB(System.Int32 target, System.Int32 access); - [Slot(1350)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMatrixIndexPointerARB(Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer); - [Slot(1351)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMatrixIndexubvARB(Int32 size, [CountAttribute(Parameter = "size")] Byte* indices); [Slot(1352)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMatrixIndexuivARB(Int32 size, [CountAttribute(Parameter = "size")] UInt32* indices); + private static extern void glMatrixIndexPointerARB(Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer); [Slot(1353)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMatrixIndexubvARB(Int32 size, [CountAttribute(Parameter = "size")] Byte* indices); + [Slot(1354)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMatrixIndexuivARB(Int32 size, [CountAttribute(Parameter = "size")] UInt32* indices); + [Slot(1355)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMatrixIndexusvARB(Int32 size, [CountAttribute(Parameter = "size")] UInt16* indices); - [Slot(1379)] + [Slot(1381)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMaxShaderCompilerThreadsARB(UInt32 count); - [Slot(1387)] + [Slot(1390)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMinSampleShadingARB(Single value); - [Slot(1406)] + [Slot(1409)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiDrawArraysIndirectCountARB(System.Int32 mode, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride); - [Slot(1416)] + [Slot(1419)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiDrawElementsIndirectCountARB(System.Int32 mode, System.Int32 type, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride); - [Slot(1424)] + [Slot(1427)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiTexCoord1dARB(System.Int32 target, Double s); - [Slot(1426)] + [Slot(1429)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoord1dvARB(System.Int32 target, [CountAttribute(Count = 1)] Double* v); - [Slot(1428)] + [Slot(1431)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiTexCoord1fARB(System.Int32 target, Single s); - [Slot(1430)] + [Slot(1433)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoord1fvARB(System.Int32 target, [CountAttribute(Count = 1)] Single* v); - [Slot(1434)] + [Slot(1437)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiTexCoord1iARB(System.Int32 target, Int32 s); - [Slot(1436)] + [Slot(1439)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoord1ivARB(System.Int32 target, [CountAttribute(Count = 1)] Int32* v); - [Slot(1438)] + [Slot(1441)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiTexCoord1sARB(System.Int32 target, Int16 s); - [Slot(1440)] + [Slot(1443)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoord1svARB(System.Int32 target, [CountAttribute(Count = 1)] Int16* v); - [Slot(1446)] + [Slot(1449)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiTexCoord2dARB(System.Int32 target, Double s, Double t); - [Slot(1448)] + [Slot(1451)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoord2dvARB(System.Int32 target, [CountAttribute(Count = 2)] Double* v); - [Slot(1450)] + [Slot(1453)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiTexCoord2fARB(System.Int32 target, Single s, Single t); - [Slot(1452)] + [Slot(1455)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoord2fvARB(System.Int32 target, [CountAttribute(Count = 2)] Single* v); - [Slot(1456)] + [Slot(1459)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiTexCoord2iARB(System.Int32 target, Int32 s, Int32 t); - [Slot(1458)] + [Slot(1461)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoord2ivARB(System.Int32 target, [CountAttribute(Count = 2)] Int32* v); - [Slot(1460)] + [Slot(1463)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiTexCoord2sARB(System.Int32 target, Int16 s, Int16 t); - [Slot(1462)] + [Slot(1465)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoord2svARB(System.Int32 target, [CountAttribute(Count = 2)] Int16* v); - [Slot(1468)] + [Slot(1471)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiTexCoord3dARB(System.Int32 target, Double s, Double t, Double r); - [Slot(1470)] + [Slot(1473)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoord3dvARB(System.Int32 target, [CountAttribute(Count = 3)] Double* v); - [Slot(1472)] + [Slot(1475)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiTexCoord3fARB(System.Int32 target, Single s, Single t, Single r); - [Slot(1474)] + [Slot(1477)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoord3fvARB(System.Int32 target, [CountAttribute(Count = 3)] Single* v); - [Slot(1478)] + [Slot(1481)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiTexCoord3iARB(System.Int32 target, Int32 s, Int32 t, Int32 r); - [Slot(1480)] + [Slot(1483)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoord3ivARB(System.Int32 target, [CountAttribute(Count = 3)] Int32* v); - [Slot(1482)] + [Slot(1485)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiTexCoord3sARB(System.Int32 target, Int16 s, Int16 t, Int16 r); - [Slot(1484)] + [Slot(1487)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoord3svARB(System.Int32 target, [CountAttribute(Count = 3)] Int16* v); - [Slot(1490)] + [Slot(1493)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiTexCoord4dARB(System.Int32 target, Double s, Double t, Double r, Double q); - [Slot(1492)] + [Slot(1495)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoord4dvARB(System.Int32 target, [CountAttribute(Count = 4)] Double* v); - [Slot(1494)] + [Slot(1497)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiTexCoord4fARB(System.Int32 target, Single s, Single t, Single r, Single q); - [Slot(1496)] + [Slot(1499)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoord4fvARB(System.Int32 target, [CountAttribute(Count = 4)] Single* v); - [Slot(1500)] + [Slot(1503)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiTexCoord4iARB(System.Int32 target, Int32 s, Int32 t, Int32 r, Int32 q); - [Slot(1502)] + [Slot(1505)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoord4ivARB(System.Int32 target, [CountAttribute(Count = 4)] Int32* v); - [Slot(1504)] + [Slot(1507)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiTexCoord4sARB(System.Int32 target, Int16 s, Int16 t, Int16 r, Int16 q); - [Slot(1506)] + [Slot(1509)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoord4svARB(System.Int32 target, [CountAttribute(Count = 4)] Int16* v); - [Slot(1545)] + [Slot(1548)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultTransposeMatrixdARB([CountAttribute(Count = 16)] Double* m); - [Slot(1547)] + [Slot(1550)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultTransposeMatrixfARB([CountAttribute(Count = 16)] Single* m); - [Slot(1551)] + [Slot(1554)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glNamedBufferPageCommitmentARB(UInt32 buffer, IntPtr offset, IntPtr size, bool commit); - [Slot(1567)] + [Slot(1570)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glNamedFramebufferSampleLocationsfvARB(UInt32 framebuffer, UInt32 start, Int32 count, Single* v); - [Slot(1595)] + [Slot(1598)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glNamedStringARB(System.Int32 type, Int32 namelen, [CountAttribute(Parameter = "namelen")] IntPtr name, Int32 stringlen, [CountAttribute(Parameter = "stringlen")] IntPtr @string); - [Slot(1694)] + [Slot(1697)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPointParameterfARB(System.Int32 pname, Single param); - [Slot(1698)] + [Slot(1701)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glPointParameterfvARB(System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); - [Slot(1727)] + [Slot(1730)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPrimitiveBoundingBoxARB(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW); - [Slot(1738)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramEnvParameter4dARB(System.Int32 target, UInt32 index, Double x, Double y, Double z, Double w); - [Slot(1739)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramEnvParameter4dvARB(System.Int32 target, UInt32 index, [CountAttribute(Count = 4)] Double* @params); - [Slot(1740)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramEnvParameter4fARB(System.Int32 target, UInt32 index, Single x, Single y, Single z, Single w); [Slot(1741)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramEnvParameter4dARB(System.Int32 target, UInt32 index, Double x, Double y, Double z, Double w); + [Slot(1742)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramEnvParameter4dvARB(System.Int32 target, UInt32 index, [CountAttribute(Count = 4)] Double* @params); + [Slot(1743)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramEnvParameter4fARB(System.Int32 target, UInt32 index, Single x, Single y, Single z, Single w); + [Slot(1744)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramEnvParameter4fvARB(System.Int32 target, UInt32 index, [CountAttribute(Count = 4)] Single* @params); - [Slot(1749)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramLocalParameter4dARB(System.Int32 target, UInt32 index, Double x, Double y, Double z, Double w); - [Slot(1750)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramLocalParameter4dvARB(System.Int32 target, UInt32 index, [CountAttribute(Count = 4)] Double* @params); - [Slot(1751)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramLocalParameter4fARB(System.Int32 target, UInt32 index, Single x, Single y, Single z, Single w); [Slot(1752)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramLocalParameter4dARB(System.Int32 target, UInt32 index, Double x, Double y, Double z, Double w); + [Slot(1753)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramLocalParameter4dvARB(System.Int32 target, UInt32 index, [CountAttribute(Count = 4)] Double* @params); + [Slot(1754)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramLocalParameter4fARB(System.Int32 target, UInt32 index, Single x, Single y, Single z, Single w); + [Slot(1755)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramLocalParameter4fvARB(System.Int32 target, UInt32 index, [CountAttribute(Count = 4)] Single* @params); - [Slot(1769)] + [Slot(1772)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramParameteriARB(UInt32 program, System.Int32 pname, Int32 value); - [Slot(1774)] + [Slot(1777)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramStringARB(System.Int32 target, System.Int32 format, Int32 len, [CountAttribute(Parameter = "len")] IntPtr @string); - [Slot(1785)] + [Slot(1788)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform1i64ARB(UInt32 program, Int32 location, Int64 x); - [Slot(1787)] + [Slot(1790)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform1i64vARB(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value); - [Slot(1793)] + [Slot(1796)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform1ui64ARB(UInt32 program, Int32 location, UInt64 x); - [Slot(1795)] + [Slot(1798)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform1ui64vARB(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value); - [Slot(1809)] + [Slot(1812)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform2i64ARB(UInt32 program, Int32 location, Int64 x, Int64 y); - [Slot(1811)] + [Slot(1814)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform2i64vARB(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value); - [Slot(1817)] + [Slot(1820)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform2ui64ARB(UInt32 program, Int32 location, UInt64 x, UInt64 y); - [Slot(1819)] + [Slot(1822)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform2ui64vARB(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value); - [Slot(1833)] + [Slot(1836)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform3i64ARB(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z); - [Slot(1835)] + [Slot(1838)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform3i64vARB(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value); - [Slot(1841)] + [Slot(1844)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform3ui64ARB(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z); - [Slot(1843)] + [Slot(1846)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform3ui64vARB(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value); - [Slot(1857)] + [Slot(1860)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform4i64ARB(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w); - [Slot(1859)] + [Slot(1862)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform4i64vARB(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value); - [Slot(1865)] + [Slot(1868)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform4ui64ARB(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w); - [Slot(1867)] + [Slot(1870)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform4ui64vARB(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value); - [Slot(1872)] + [Slot(1875)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniformHandleui64ARB(UInt32 program, Int32 location, UInt64 value); - [Slot(1874)] + [Slot(1877)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformHandleui64vARB(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values); - [Slot(1962)] + [Slot(1967)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glReadnPixelsARB(Int32 x, Int32 y, Int32 width, Int32 height, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data); - [Slot(2021)] + [Slot(2026)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glSampleCoverageARB(Single value, bool invert); - [Slot(2100)] + [Slot(2105)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glShaderSourceARB(UInt32 shaderObj, Int32 count, [CountAttribute(Parameter = "count")] IntPtr @string, [CountAttribute(Parameter = "count")] Int32* length); - [Slot(2107)] + [Slot(2112)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glSpecializeShaderARB(UInt32 shader, IntPtr pEntryPoint, UInt32 numSpecializationConstants, UInt32* pConstantIndex, UInt32* pConstantValue); - [Slot(2156)] + [Slot(2161)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexBufferARB(System.Int32 target, System.Int32 internalformat, UInt32 buffer); - [Slot(2268)] + [Slot(2273)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexPageCommitmentARB(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit); - [Slot(2368)] + [Slot(2373)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform1fARB(Int32 location, Single v0); - [Slot(2370)] + [Slot(2375)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform1fvARB(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single* value); - [Slot(2372)] + [Slot(2377)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform1i64ARB(Int32 location, Int64 x); - [Slot(2374)] + [Slot(2379)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform1i64vARB(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value); - [Slot(2376)] + [Slot(2381)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform1iARB(Int32 location, Int32 v0); - [Slot(2378)] + [Slot(2383)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform1ivARB(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32* value); - [Slot(2380)] + [Slot(2385)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform1ui64ARB(Int32 location, UInt64 x); - [Slot(2382)] + [Slot(2387)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform1ui64vARB(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value); - [Slot(2390)] + [Slot(2395)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform2fARB(Int32 location, Single v0, Single v1); - [Slot(2392)] + [Slot(2397)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform2fvARB(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value); - [Slot(2394)] + [Slot(2399)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform2i64ARB(Int32 location, Int64 x, Int64 y); - [Slot(2396)] + [Slot(2401)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform2i64vARB(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value); - [Slot(2398)] + [Slot(2403)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform2iARB(Int32 location, Int32 v0, Int32 v1); - [Slot(2400)] + [Slot(2405)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform2ivARB(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value); - [Slot(2402)] + [Slot(2407)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform2ui64ARB(Int32 location, UInt64 x, UInt64 y); - [Slot(2404)] + [Slot(2409)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform2ui64vARB(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value); - [Slot(2412)] + [Slot(2417)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform3fARB(Int32 location, Single v0, Single v1, Single v2); - [Slot(2414)] + [Slot(2419)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform3fvARB(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value); - [Slot(2416)] + [Slot(2421)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform3i64ARB(Int32 location, Int64 x, Int64 y, Int64 z); - [Slot(2418)] + [Slot(2423)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform3i64vARB(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value); - [Slot(2420)] + [Slot(2425)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform3iARB(Int32 location, Int32 v0, Int32 v1, Int32 v2); - [Slot(2422)] + [Slot(2427)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform3ivARB(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value); - [Slot(2424)] + [Slot(2429)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform3ui64ARB(Int32 location, UInt64 x, UInt64 y, UInt64 z); - [Slot(2426)] + [Slot(2431)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform3ui64vARB(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value); - [Slot(2434)] + [Slot(2439)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform4fARB(Int32 location, Single v0, Single v1, Single v2, Single v3); - [Slot(2436)] + [Slot(2441)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform4fvARB(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value); - [Slot(2438)] + [Slot(2443)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform4i64ARB(Int32 location, Int64 x, Int64 y, Int64 z, Int64 w); - [Slot(2440)] + [Slot(2445)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform4i64vARB(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value); - [Slot(2442)] + [Slot(2447)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform4iARB(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3); - [Slot(2444)] + [Slot(2449)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform4ivARB(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value); - [Slot(2446)] + [Slot(2451)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform4ui64ARB(Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w); - [Slot(2448)] + [Slot(2453)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform4ui64vARB(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value); - [Slot(2455)] + [Slot(2460)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniformHandleui64ARB(Int32 location, UInt64 value); - [Slot(2457)] + [Slot(2462)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniformHandleui64vARB(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value); - [Slot(2461)] + [Slot(2466)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniformMatrix2fvARB(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value); - [Slot(2468)] + [Slot(2473)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniformMatrix3fvARB(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value); - [Slot(2475)] + [Slot(2480)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniformMatrix4fvARB(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value); - [Slot(2485)] + [Slot(2490)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glUnmapBufferARB(System.Int32 target); - [Slot(2492)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUseProgramObjectARB(UInt32 programObj); [Slot(2497)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glUseProgramObjectARB(UInt32 programObj); + [Slot(2502)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glValidateProgramARB(UInt32 programObj); - [Slot(2593)] + [Slot(2598)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttrib1dARB(UInt32 index, Double x); - [Slot(2596)] + [Slot(2601)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttrib1dvARB(UInt32 index, [CountAttribute(Count = 1)] Double* v); - [Slot(2599)] + [Slot(2604)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttrib1fARB(UInt32 index, Single x); - [Slot(2602)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib1fvARB(UInt32 index, [CountAttribute(Count = 1)] Single* v); [Slot(2607)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttrib1fvARB(UInt32 index, [CountAttribute(Count = 1)] Single* v); + [Slot(2612)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttrib1sARB(UInt32 index, Int16 x); - [Slot(2610)] + [Slot(2615)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttrib1svARB(UInt32 index, [CountAttribute(Count = 1)] Int16* v); - [Slot(2613)] + [Slot(2618)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttrib2dARB(UInt32 index, Double x, Double y); - [Slot(2616)] + [Slot(2621)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttrib2dvARB(UInt32 index, [CountAttribute(Count = 2)] Double* v); - [Slot(2619)] + [Slot(2624)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttrib2fARB(UInt32 index, Single x, Single y); - [Slot(2622)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib2fvARB(UInt32 index, [CountAttribute(Count = 2)] Single* v); [Slot(2627)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttrib2fvARB(UInt32 index, [CountAttribute(Count = 2)] Single* v); + [Slot(2632)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttrib2sARB(UInt32 index, Int16 x, Int16 y); - [Slot(2630)] + [Slot(2635)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttrib2svARB(UInt32 index, [CountAttribute(Count = 2)] Int16* v); - [Slot(2633)] + [Slot(2638)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttrib3dARB(UInt32 index, Double x, Double y, Double z); - [Slot(2636)] + [Slot(2641)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttrib3dvARB(UInt32 index, [CountAttribute(Count = 3)] Double* v); - [Slot(2639)] + [Slot(2644)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttrib3fARB(UInt32 index, Single x, Single y, Single z); - [Slot(2642)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib3fvARB(UInt32 index, [CountAttribute(Count = 3)] Single* v); [Slot(2647)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttrib3fvARB(UInt32 index, [CountAttribute(Count = 3)] Single* v); + [Slot(2652)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttrib3sARB(UInt32 index, Int16 x, Int16 y, Int16 z); - [Slot(2650)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib3svARB(UInt32 index, [CountAttribute(Count = 3)] Int16* v); - [Slot(2653)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib4bvARB(UInt32 index, [CountAttribute(Count = 4)] SByte* v); [Slot(2655)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttrib4dARB(UInt32 index, Double x, Double y, Double z, Double w); + private static extern unsafe void glVertexAttrib3svARB(UInt32 index, [CountAttribute(Count = 3)] Int16* v); [Slot(2658)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttrib4bvARB(UInt32 index, [CountAttribute(Count = 4)] SByte* v); + [Slot(2660)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttrib4dARB(UInt32 index, Double x, Double y, Double z, Double w); + [Slot(2663)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttrib4dvARB(UInt32 index, [CountAttribute(Count = 4)] Double* v); - [Slot(2661)] + [Slot(2666)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttrib4fARB(UInt32 index, Single x, Single y, Single z, Single w); - [Slot(2664)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib4fvARB(UInt32 index, [CountAttribute(Count = 4)] Single* v); [Slot(2669)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttrib4fvARB(UInt32 index, [CountAttribute(Count = 4)] Single* v); + [Slot(2674)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttrib4ivARB(UInt32 index, [CountAttribute(Count = 4)] Int32* v); - [Slot(2671)] + [Slot(2676)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttrib4NbvARB(UInt32 index, [CountAttribute(Count = 4)] SByte* v); - [Slot(2673)] + [Slot(2678)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttrib4NivARB(UInt32 index, [CountAttribute(Count = 4)] Int32* v); - [Slot(2675)] + [Slot(2680)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttrib4NsvARB(UInt32 index, [CountAttribute(Count = 4)] Int16* v); - [Slot(2677)] + [Slot(2682)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttrib4NubARB(UInt32 index, Byte x, Byte y, Byte z, Byte w); - [Slot(2679)] + [Slot(2684)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttrib4NubvARB(UInt32 index, [CountAttribute(Count = 4)] Byte* v); - [Slot(2681)] + [Slot(2686)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttrib4NuivARB(UInt32 index, [CountAttribute(Count = 4)] UInt32* v); - [Slot(2683)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib4NusvARB(UInt32 index, [CountAttribute(Count = 4)] UInt16* v); - [Slot(2685)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttrib4sARB(UInt32 index, Int16 x, Int16 y, Int16 z, Int16 w); [Slot(2688)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttrib4NusvARB(UInt32 index, [CountAttribute(Count = 4)] UInt16* v); + [Slot(2690)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttrib4sARB(UInt32 index, Int16 x, Int16 y, Int16 z, Int16 w); + [Slot(2693)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttrib4svARB(UInt32 index, [CountAttribute(Count = 4)] Int16* v); - [Slot(2692)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib4ubvARB(UInt32 index, [CountAttribute(Count = 4)] Byte* v); - [Slot(2695)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib4uivARB(UInt32 index, [CountAttribute(Count = 4)] UInt32* v); [Slot(2697)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttrib4ubvARB(UInt32 index, [CountAttribute(Count = 4)] Byte* v); + [Slot(2700)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttrib4uivARB(UInt32 index, [CountAttribute(Count = 4)] UInt32* v); + [Slot(2702)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttrib4usvARB(UInt32 index, [CountAttribute(Count = 4)] UInt16* v); - [Slot(2701)] + [Slot(2706)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribDivisorARB(UInt32 index, UInt32 divisor); - [Slot(2754)] + [Slot(2759)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribL1ui64ARB(UInt32 index, UInt64 x); - [Slot(2756)] + [Slot(2761)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttribL1ui64vARB(UInt32 index, UInt64* v); - [Slot(2796)] + [Slot(2801)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribPointerARB(UInt32 index, Int32 size, System.Int32 type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer); - [Slot(2816)] + [Slot(2821)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexBlendARB(Int32 count); - [Slot(2880)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glWeightbvARB(Int32 size, [CountAttribute(Parameter = "size")] SByte* weights); - [Slot(2881)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glWeightdvARB(Int32 size, [CountAttribute(Parameter = "size")] Double* weights); - [Slot(2882)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glWeightfvARB(Int32 size, [CountAttribute(Parameter = "size")] Single* weights); - [Slot(2883)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glWeightivARB(Int32 size, [CountAttribute(Parameter = "size")] Int32* weights); [Slot(2885)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glWeightPointerARB(Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer); + private static extern unsafe void glWeightbvARB(Int32 size, [CountAttribute(Parameter = "size")] SByte* weights); [Slot(2886)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glWeightsvARB(Int32 size, [CountAttribute(Parameter = "size")] Int16* weights); + private static extern unsafe void glWeightdvARB(Int32 size, [CountAttribute(Parameter = "size")] Double* weights); [Slot(2887)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glWeightubvARB(Int32 size, [CountAttribute(Parameter = "size")] Byte* weights); + private static extern unsafe void glWeightfvARB(Int32 size, [CountAttribute(Parameter = "size")] Single* weights); [Slot(2888)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glWeightuivARB(Int32 size, [CountAttribute(Parameter = "size")] UInt32* weights); - [Slot(2889)] + private static extern unsafe void glWeightivARB(Int32 size, [CountAttribute(Parameter = "size")] Int32* weights); + [Slot(2890)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glWeightusvARB(Int32 size, [CountAttribute(Parameter = "size")] UInt16* weights); + private static extern void glWeightPointerARB(Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer); [Slot(2891)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glWindowPos2dARB(Double x, Double y); + private static extern unsafe void glWeightsvARB(Int32 size, [CountAttribute(Parameter = "size")] Int16* weights); + [Slot(2892)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glWeightubvARB(Int32 size, [CountAttribute(Parameter = "size")] Byte* weights); + [Slot(2893)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glWeightuivARB(Int32 size, [CountAttribute(Parameter = "size")] UInt32* weights); [Slot(2894)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glWeightusvARB(Int32 size, [CountAttribute(Parameter = "size")] UInt16* weights); + [Slot(2896)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glWindowPos2dARB(Double x, Double y); + [Slot(2899)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glWindowPos2dvARB([CountAttribute(Count = 2)] Double* v); - [Slot(2897)] + [Slot(2902)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glWindowPos2fARB(Single x, Single y); - [Slot(2900)] + [Slot(2905)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glWindowPos2fvARB([CountAttribute(Count = 2)] Single* v); - [Slot(2903)] + [Slot(2908)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glWindowPos2iARB(Int32 x, Int32 y); - [Slot(2906)] + [Slot(2911)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glWindowPos2ivARB([CountAttribute(Count = 2)] Int32* v); - [Slot(2909)] + [Slot(2914)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glWindowPos2sARB(Int16 x, Int16 y); - [Slot(2912)] + [Slot(2917)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glWindowPos2svARB([CountAttribute(Count = 2)] Int16* v); - [Slot(2915)] + [Slot(2920)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glWindowPos3dARB(Double x, Double y, Double z); - [Slot(2918)] + [Slot(2923)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glWindowPos3dvARB([CountAttribute(Count = 3)] Double* v); - [Slot(2921)] + [Slot(2926)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glWindowPos3fARB(Single x, Single y, Single z); - [Slot(2924)] + [Slot(2929)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glWindowPos3fvARB([CountAttribute(Count = 3)] Single* v); - [Slot(2927)] + [Slot(2932)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glWindowPos3iARB(Int32 x, Int32 y, Int32 z); - [Slot(2930)] + [Slot(2935)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glWindowPos3ivARB([CountAttribute(Count = 3)] Int32* v); - [Slot(2933)] + [Slot(2938)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glWindowPos3sARB(Int16 x, Int16 y, Int16 z); - [Slot(2936)] + [Slot(2941)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glWindowPos3svARB([CountAttribute(Count = 3)] Int16* v); [Slot(10)] @@ -142498,236 +142587,236 @@ namespace OpenTK.Graphics.OpenGL [Slot(410)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDeleteFragmentShaderATI(UInt32 id); - [Slot(483)] + [Slot(484)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDrawBuffersATI(Int32 n, [CountAttribute(Parameter = "n")] System.Int32* bufs); - [Slot(489)] + [Slot(490)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawElementArrayATI(System.Int32 mode, Int32 count); - [Slot(502)] + [Slot(503)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawRangeElementArrayATI(System.Int32 mode, UInt32 start, UInt32 end, Int32 count); - [Slot(520)] + [Slot(521)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glElementPointerATI(System.Int32 type, [CountAttribute(Computed = "type")] IntPtr pointer); - [Slot(538)] + [Slot(539)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEndFragmentShaderATI(); - [Slot(652)] + [Slot(653)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFreeObjectBufferATI(UInt32 buffer); - [Slot(667)] + [Slot(668)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int32 glGenFragmentShadersATI(UInt32 range); - [Slot(706)] + [Slot(708)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetArrayObjectfvATI(System.Int32 array, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] Single* @params); - [Slot(707)] + [Slot(709)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetArrayObjectivATI(System.Int32 array, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params); - [Slot(925)] + [Slot(927)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetObjectBufferfvATI(UInt32 buffer, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] Single* @params); - [Slot(926)] + [Slot(928)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetObjectBufferivATI(UInt32 buffer, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params); - [Slot(1042)] + [Slot(1044)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetTexBumpParameterfvATI(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* param); - [Slot(1043)] + [Slot(1045)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetTexBumpParameterivATI(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* param); - [Slot(1110)] + [Slot(1112)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetVariantArrayObjectfvATI(UInt32 id, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] Single* @params); - [Slot(1111)] + [Slot(1113)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetVariantArrayObjectivATI(UInt32 id, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params); - [Slot(1124)] + [Slot(1126)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetVertexAttribArrayObjectfvATI(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); - [Slot(1125)] + [Slot(1127)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetVertexAttribArrayObjectivATI(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(1232)] + [Slot(1234)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsObjectBufferATI(UInt32 buffer); - [Slot(1335)] + [Slot(1337)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern IntPtr glMapObjectBufferATI(UInt32 buffer); - [Slot(1597)] + [Slot(1600)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int32 glNewObjectBufferATI(Int32 size, [CountAttribute(Parameter = "size")] IntPtr pointer, System.Int32 usage); - [Slot(1621)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNormalStream3bATI(System.Int32 stream, SByte nx, SByte ny, SByte nz); - [Slot(1622)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glNormalStream3bvATI(System.Int32 stream, [CountAttribute(Count = 3)] SByte* coords); - [Slot(1623)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNormalStream3dATI(System.Int32 stream, Double nx, Double ny, Double nz); [Slot(1624)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glNormalStream3dvATI(System.Int32 stream, [CountAttribute(Count = 3)] Double* coords); + private static extern void glNormalStream3bATI(System.Int32 stream, SByte nx, SByte ny, SByte nz); [Slot(1625)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNormalStream3fATI(System.Int32 stream, Single nx, Single ny, Single nz); + private static extern unsafe void glNormalStream3bvATI(System.Int32 stream, [CountAttribute(Count = 3)] SByte* coords); [Slot(1626)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glNormalStream3fvATI(System.Int32 stream, [CountAttribute(Count = 3)] Single* coords); + private static extern void glNormalStream3dATI(System.Int32 stream, Double nx, Double ny, Double nz); [Slot(1627)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNormalStream3iATI(System.Int32 stream, Int32 nx, Int32 ny, Int32 nz); + private static extern unsafe void glNormalStream3dvATI(System.Int32 stream, [CountAttribute(Count = 3)] Double* coords); [Slot(1628)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glNormalStream3ivATI(System.Int32 stream, [CountAttribute(Count = 3)] Int32* coords); + private static extern void glNormalStream3fATI(System.Int32 stream, Single nx, Single ny, Single nz); [Slot(1629)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNormalStream3sATI(System.Int32 stream, Int16 nx, Int16 ny, Int16 nz); + private static extern unsafe void glNormalStream3fvATI(System.Int32 stream, [CountAttribute(Count = 3)] Single* coords); [Slot(1630)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNormalStream3iATI(System.Int32 stream, Int32 nx, Int32 ny, Int32 nz); + [Slot(1631)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glNormalStream3ivATI(System.Int32 stream, [CountAttribute(Count = 3)] Int32* coords); + [Slot(1632)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNormalStream3sATI(System.Int32 stream, Int16 nx, Int16 ny, Int16 nz); + [Slot(1633)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glNormalStream3svATI(System.Int32 stream, [CountAttribute(Count = 3)] Int16* coords); - [Slot(1640)] + [Slot(1643)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPassTexCoordATI(UInt32 dst, UInt32 coord, System.Int32 swizzle); - [Slot(1690)] + [Slot(1693)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPNTrianglesfATI(System.Int32 pname, Single param); - [Slot(1691)] + [Slot(1694)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPNTrianglesiATI(System.Int32 pname, Int32 param); - [Slot(2023)] + [Slot(2028)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glSampleMapATI(UInt32 dst, UInt32 interp, System.Int32 swizzle); - [Slot(2090)] + [Slot(2095)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glSetFragmentShaderConstantATI(UInt32 dst, [CountAttribute(Count = 4)] Single* value); - [Slot(2119)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilFuncSeparateATI(System.Int32 frontfunc, System.Int32 backfunc, Int32 @ref, UInt32 mask); [Slot(2124)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glStencilFuncSeparateATI(System.Int32 frontfunc, System.Int32 backfunc, Int32 @ref, UInt32 mask); + [Slot(2129)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glStencilOpSeparateATI(System.Int32 face, System.Int32 sfail, System.Int32 dpfail, System.Int32 dppass); - [Slot(2159)] + [Slot(2164)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTexBumpParameterfvATI(System.Int32 pname, [CountAttribute(Computed = "pname")] Single* param); - [Slot(2160)] + [Slot(2165)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTexBumpParameterivATI(System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* param); - [Slot(2488)] + [Slot(2493)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUnmapObjectBufferATI(UInt32 buffer); - [Slot(2490)] + [Slot(2495)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUpdateObjectBufferATI(UInt32 buffer, UInt32 offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr pointer, System.Int32 preserve); - [Slot(2500)] + [Slot(2505)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVariantArrayObjectATI(UInt32 id, System.Int32 type, Int32 stride, UInt32 buffer, UInt32 offset); - [Slot(2698)] + [Slot(2703)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribArrayObjectATI(UInt32 index, Int32 size, System.Int32 type, bool normalized, Int32 stride, UInt32 buffer, UInt32 offset); - [Slot(2817)] + [Slot(2822)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexBlendEnvfATI(System.Int32 pname, Single param); - [Slot(2818)] + [Slot(2823)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexBlendEnviATI(System.Int32 pname, Int32 param); - [Slot(2830)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexStream1dATI(System.Int32 stream, Double x); - [Slot(2831)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexStream1dvATI(System.Int32 stream, [CountAttribute(Count = 1)] Double* coords); - [Slot(2832)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexStream1fATI(System.Int32 stream, Single x); - [Slot(2833)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexStream1fvATI(System.Int32 stream, [CountAttribute(Count = 1)] Single* coords); - [Slot(2834)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexStream1iATI(System.Int32 stream, Int32 x); [Slot(2835)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexStream1ivATI(System.Int32 stream, [CountAttribute(Count = 1)] Int32* coords); + private static extern void glVertexStream1dATI(System.Int32 stream, Double x); [Slot(2836)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexStream1sATI(System.Int32 stream, Int16 x); + private static extern unsafe void glVertexStream1dvATI(System.Int32 stream, [CountAttribute(Count = 1)] Double* coords); [Slot(2837)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexStream1svATI(System.Int32 stream, [CountAttribute(Count = 1)] Int16* coords); + private static extern void glVertexStream1fATI(System.Int32 stream, Single x); [Slot(2838)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexStream2dATI(System.Int32 stream, Double x, Double y); + private static extern unsafe void glVertexStream1fvATI(System.Int32 stream, [CountAttribute(Count = 1)] Single* coords); [Slot(2839)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexStream2dvATI(System.Int32 stream, [CountAttribute(Count = 2)] Double* coords); + private static extern void glVertexStream1iATI(System.Int32 stream, Int32 x); [Slot(2840)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexStream2fATI(System.Int32 stream, Single x, Single y); + private static extern unsafe void glVertexStream1ivATI(System.Int32 stream, [CountAttribute(Count = 1)] Int32* coords); [Slot(2841)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexStream2fvATI(System.Int32 stream, [CountAttribute(Count = 2)] Single* coords); + private static extern void glVertexStream1sATI(System.Int32 stream, Int16 x); [Slot(2842)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexStream2iATI(System.Int32 stream, Int32 x, Int32 y); + private static extern unsafe void glVertexStream1svATI(System.Int32 stream, [CountAttribute(Count = 1)] Int16* coords); [Slot(2843)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexStream2ivATI(System.Int32 stream, [CountAttribute(Count = 2)] Int32* coords); + private static extern void glVertexStream2dATI(System.Int32 stream, Double x, Double y); [Slot(2844)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexStream2sATI(System.Int32 stream, Int16 x, Int16 y); + private static extern unsafe void glVertexStream2dvATI(System.Int32 stream, [CountAttribute(Count = 2)] Double* coords); [Slot(2845)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexStream2svATI(System.Int32 stream, [CountAttribute(Count = 2)] Int16* coords); + private static extern void glVertexStream2fATI(System.Int32 stream, Single x, Single y); [Slot(2846)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexStream3dATI(System.Int32 stream, Double x, Double y, Double z); + private static extern unsafe void glVertexStream2fvATI(System.Int32 stream, [CountAttribute(Count = 2)] Single* coords); [Slot(2847)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexStream3dvATI(System.Int32 stream, [CountAttribute(Count = 3)] Double* coords); + private static extern void glVertexStream2iATI(System.Int32 stream, Int32 x, Int32 y); [Slot(2848)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexStream3fATI(System.Int32 stream, Single x, Single y, Single z); + private static extern unsafe void glVertexStream2ivATI(System.Int32 stream, [CountAttribute(Count = 2)] Int32* coords); [Slot(2849)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexStream3fvATI(System.Int32 stream, [CountAttribute(Count = 3)] Single* coords); + private static extern void glVertexStream2sATI(System.Int32 stream, Int16 x, Int16 y); [Slot(2850)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexStream3iATI(System.Int32 stream, Int32 x, Int32 y, Int32 z); + private static extern unsafe void glVertexStream2svATI(System.Int32 stream, [CountAttribute(Count = 2)] Int16* coords); [Slot(2851)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexStream3ivATI(System.Int32 stream, [CountAttribute(Count = 3)] Int32* coords); + private static extern void glVertexStream3dATI(System.Int32 stream, Double x, Double y, Double z); [Slot(2852)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexStream3sATI(System.Int32 stream, Int16 x, Int16 y, Int16 z); + private static extern unsafe void glVertexStream3dvATI(System.Int32 stream, [CountAttribute(Count = 3)] Double* coords); [Slot(2853)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexStream3svATI(System.Int32 stream, [CountAttribute(Count = 3)] Int16* coords); + private static extern void glVertexStream3fATI(System.Int32 stream, Single x, Single y, Single z); [Slot(2854)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexStream4dATI(System.Int32 stream, Double x, Double y, Double z, Double w); + private static extern unsafe void glVertexStream3fvATI(System.Int32 stream, [CountAttribute(Count = 3)] Single* coords); [Slot(2855)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexStream4dvATI(System.Int32 stream, [CountAttribute(Count = 4)] Double* coords); + private static extern void glVertexStream3iATI(System.Int32 stream, Int32 x, Int32 y, Int32 z); [Slot(2856)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexStream4fATI(System.Int32 stream, Single x, Single y, Single z, Single w); + private static extern unsafe void glVertexStream3ivATI(System.Int32 stream, [CountAttribute(Count = 3)] Int32* coords); [Slot(2857)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexStream4fvATI(System.Int32 stream, [CountAttribute(Count = 4)] Single* coords); + private static extern void glVertexStream3sATI(System.Int32 stream, Int16 x, Int16 y, Int16 z); [Slot(2858)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexStream4iATI(System.Int32 stream, Int32 x, Int32 y, Int32 z, Int32 w); + private static extern unsafe void glVertexStream3svATI(System.Int32 stream, [CountAttribute(Count = 3)] Int16* coords); [Slot(2859)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexStream4ivATI(System.Int32 stream, [CountAttribute(Count = 4)] Int32* coords); + private static extern void glVertexStream4dATI(System.Int32 stream, Double x, Double y, Double z, Double w); [Slot(2860)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexStream4sATI(System.Int32 stream, Int16 x, Int16 y, Int16 z, Int16 w); + private static extern unsafe void glVertexStream4dvATI(System.Int32 stream, [CountAttribute(Count = 4)] Double* coords); [Slot(2861)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexStream4fATI(System.Int32 stream, Single x, Single y, Single z, Single w); + [Slot(2862)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexStream4fvATI(System.Int32 stream, [CountAttribute(Count = 4)] Single* coords); + [Slot(2863)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexStream4iATI(System.Int32 stream, Int32 x, Int32 y, Int32 z, Int32 w); + [Slot(2864)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexStream4ivATI(System.Int32 stream, [CountAttribute(Count = 4)] Int32* coords); + [Slot(2865)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexStream4sATI(System.Int32 stream, Int16 x, Int16 y, Int16 z, Int16 w); + [Slot(2866)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexStream4svATI(System.Int32 stream, [CountAttribute(Count = 4)] Int16* coords); [Slot(16)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] @@ -143199,25 +143288,25 @@ namespace OpenTK.Graphics.OpenGL private static extern void glCopyTextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height); [Slot(364)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glCreateBuffers(Int32 n, [OutAttribute] UInt32* buffers); + private static extern unsafe void glCreateBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* buffers); [Slot(366)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glCreateFramebuffers(Int32 n, [OutAttribute] UInt32* framebuffers); + private static extern unsafe void glCreateFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* framebuffers); [Slot(369)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int32 glCreateProgram(); [Slot(371)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glCreateProgramPipelines(Int32 n, [OutAttribute] UInt32* pipelines); + private static extern unsafe void glCreateProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines); [Slot(372)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glCreateQueries(System.Int32 target, Int32 n, [OutAttribute] UInt32* ids); + private static extern unsafe void glCreateQueries(System.Int32 target, Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids); [Slot(373)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glCreateRenderbuffers(Int32 n, [OutAttribute] UInt32* renderbuffers); + private static extern unsafe void glCreateRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers); [Slot(374)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glCreateSamplers(Int32 n, [OutAttribute] UInt32* samplers); + private static extern unsafe void glCreateSamplers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* samplers); [Slot(375)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int32 glCreateShader(System.Int32 type); @@ -143226,13 +143315,13 @@ namespace OpenTK.Graphics.OpenGL private static extern Int32 glCreateShaderProgramv(System.Int32 type, Int32 count, [CountAttribute(Parameter = "count")] IntPtr strings); [Slot(382)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glCreateTextures(System.Int32 target, Int32 n, [OutAttribute] UInt32* textures); + private static extern unsafe void glCreateTextures(System.Int32 target, Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* textures); [Slot(383)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glCreateTransformFeedbacks(Int32 n, [OutAttribute] UInt32* ids); + private static extern unsafe void glCreateTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids); [Slot(384)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glCreateVertexArrays(Int32 n, [OutAttribute] UInt32* arrays); + private static extern unsafe void glCreateVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays); [Slot(385)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glCullFace(System.Int32 mode); @@ -143263,2713 +143352,2713 @@ namespace OpenTK.Graphics.OpenGL [Slot(427)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids); - [Slot(429)] + [Slot(430)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* renderbuffers); - [Slot(431)] + [Slot(432)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] UInt32* samplers); - [Slot(433)] + [Slot(434)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDeleteShader(UInt32 shader); - [Slot(435)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDeleteSync(IntPtr sync); [Slot(436)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glDeleteSync(IntPtr sync); + [Slot(437)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures); - [Slot(438)] + [Slot(439)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids); - [Slot(440)] + [Slot(441)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays); - [Slot(445)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDepthFunc(System.Int32 func); [Slot(446)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDepthMask(bool flag); + private static extern void glDepthFunc(System.Int32 func); [Slot(447)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDepthRange(Double near, Double far); + private static extern void glDepthMask(bool flag); [Slot(448)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glDepthRange(Double near, Double far); + [Slot(449)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDepthRangeArrayv(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Double* v); - [Slot(450)] + [Slot(451)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDepthRangef(Single n, Single f); - [Slot(452)] + [Slot(453)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDepthRangeIndexed(UInt32 index, Double n, Double f); - [Slot(455)] + [Slot(456)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDetachShader(UInt32 program, UInt32 shader); - [Slot(457)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDisable(System.Int32 cap); [Slot(458)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glDisable(System.Int32 cap); + [Slot(459)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDisableClientState(System.Int32 array); - [Slot(461)] + [Slot(462)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDisablei(System.Int32 target, UInt32 index); - [Slot(464)] + [Slot(465)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDisableVertexArrayAttrib(UInt32 vaobj, UInt32 index); - [Slot(468)] + [Slot(469)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDisableVertexAttribArray(UInt32 index); - [Slot(470)] + [Slot(471)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDispatchCompute(UInt32 num_groups_x, UInt32 num_groups_y, UInt32 num_groups_z); - [Slot(472)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDispatchComputeIndirect(IntPtr indirect); [Slot(473)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDrawArrays(System.Int32 mode, Int32 first, Int32 count); - [Slot(475)] + private static extern void glDispatchComputeIndirect(IntPtr indirect); + [Slot(474)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDrawArraysIndirect(System.Int32 mode, IntPtr indirect); + private static extern void glDrawArrays(System.Int32 mode, Int32 first, Int32 count); [Slot(476)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glDrawArraysIndirect(System.Int32 mode, IntPtr indirect); + [Slot(477)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawArraysInstanced(System.Int32 mode, Int32 first, Int32 count, Int32 instancecount); - [Slot(478)] + [Slot(479)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawArraysInstancedBaseInstance(System.Int32 mode, Int32 first, Int32 count, Int32 instancecount, UInt32 baseinstance); - [Slot(480)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDrawBuffer(System.Int32 buf); [Slot(481)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glDrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] System.Int32* bufs); - [Slot(490)] + private static extern void glDrawBuffer(System.Int32 buf); + [Slot(482)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDrawElements(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices); + private static extern unsafe void glDrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] System.Int32* bufs); [Slot(491)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDrawElementsBaseVertex(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex); + private static extern void glDrawElements(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices); [Slot(492)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDrawElementsIndirect(System.Int32 mode, System.Int32 type, IntPtr indirect); + private static extern void glDrawElementsBaseVertex(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex); [Slot(493)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDrawElementsInstanced(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount); - [Slot(495)] + private static extern void glDrawElementsIndirect(System.Int32 mode, System.Int32 type, IntPtr indirect); + [Slot(494)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDrawElementsInstancedBaseInstance(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance); + private static extern void glDrawElementsInstanced(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount); [Slot(496)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDrawElementsInstancedBaseVertex(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex); + private static extern void glDrawElementsInstancedBaseInstance(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance); [Slot(497)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glDrawElementsInstancedBaseVertex(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex); + [Slot(498)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawElementsInstancedBaseVertexBaseInstance(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance); - [Slot(500)] + [Slot(501)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawPixels(Int32 width, Int32 height, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); - [Slot(503)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDrawRangeElements(System.Int32 mode, UInt32 start, UInt32 end, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices); [Slot(504)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDrawRangeElementsBaseVertex(System.Int32 mode, UInt32 start, UInt32 end, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex); - [Slot(507)] + private static extern void glDrawRangeElements(System.Int32 mode, UInt32 start, UInt32 end, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices); + [Slot(505)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDrawTransformFeedback(System.Int32 mode, UInt32 id); + private static extern void glDrawRangeElementsBaseVertex(System.Int32 mode, UInt32 start, UInt32 end, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex); [Slot(508)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDrawTransformFeedbackInstanced(System.Int32 mode, UInt32 id, Int32 instancecount); - [Slot(510)] + private static extern void glDrawTransformFeedback(System.Int32 mode, UInt32 id); + [Slot(509)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDrawTransformFeedbackStream(System.Int32 mode, UInt32 id, UInt32 stream); + private static extern void glDrawTransformFeedbackInstanced(System.Int32 mode, UInt32 id, Int32 instancecount); [Slot(511)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glDrawTransformFeedbackStream(System.Int32 mode, UInt32 id, UInt32 stream); + [Slot(512)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawTransformFeedbackStreamInstanced(System.Int32 mode, UInt32 id, UInt32 stream, Int32 instancecount); - [Slot(513)] + [Slot(514)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEdgeFlag(bool flag); - [Slot(515)] + [Slot(516)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEdgeFlagPointer(Int32 stride, [CountAttribute(Computed = "stride")] IntPtr pointer); - [Slot(518)] + [Slot(519)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glEdgeFlagv([CountAttribute(Count = 1)] bool* flag); - [Slot(521)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glEnable(System.Int32 cap); [Slot(522)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glEnable(System.Int32 cap); + [Slot(523)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEnableClientState(System.Int32 array); - [Slot(525)] + [Slot(526)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEnablei(System.Int32 target, UInt32 index); - [Slot(528)] + [Slot(529)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEnableVertexArrayAttrib(UInt32 vaobj, UInt32 index); - [Slot(532)] + [Slot(533)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEnableVertexAttribArray(UInt32 index); - [Slot(534)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glEnd(); [Slot(535)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glEnd(); + [Slot(536)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEndConditionalRender(); - [Slot(539)] + [Slot(540)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEndList(); - [Slot(543)] + [Slot(544)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEndQuery(System.Int32 target); - [Slot(545)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glEndQueryIndexed(System.Int32 target, UInt32 index); [Slot(546)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glEndTransformFeedback(); - [Slot(551)] + private static extern void glEndQueryIndexed(System.Int32 target, UInt32 index); + [Slot(547)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glEvalCoord1d(Double u); + private static extern void glEndTransformFeedback(); [Slot(552)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glEvalCoord1dv([CountAttribute(Count = 1)] Double* u); + private static extern void glEvalCoord1d(Double u); [Slot(553)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glEvalCoord1f(Single u); + private static extern unsafe void glEvalCoord1dv([CountAttribute(Count = 1)] Double* u); [Slot(554)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glEvalCoord1fv([CountAttribute(Count = 1)] Single* u); - [Slot(557)] + private static extern void glEvalCoord1f(Single u); + [Slot(555)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glEvalCoord2d(Double u, Double v); + private static extern unsafe void glEvalCoord1fv([CountAttribute(Count = 1)] Single* u); [Slot(558)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glEvalCoord2dv([CountAttribute(Count = 2)] Double* u); + private static extern void glEvalCoord2d(Double u, Double v); [Slot(559)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glEvalCoord2f(Single u, Single v); + private static extern unsafe void glEvalCoord2dv([CountAttribute(Count = 2)] Double* u); [Slot(560)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glEvalCoord2fv([CountAttribute(Count = 2)] Single* u); - [Slot(564)] + private static extern void glEvalCoord2f(Single u, Single v); + [Slot(561)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glEvalMesh1(System.Int32 mode, Int32 i1, Int32 i2); + private static extern unsafe void glEvalCoord2fv([CountAttribute(Count = 2)] Single* u); [Slot(565)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glEvalMesh2(System.Int32 mode, Int32 i1, Int32 i2, Int32 j1, Int32 j2); + private static extern void glEvalMesh1(System.Int32 mode, Int32 i1, Int32 i2); [Slot(566)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glEvalPoint1(Int32 i); + private static extern void glEvalMesh2(System.Int32 mode, Int32 i1, Int32 i2, Int32 j1, Int32 j2); [Slot(567)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glEvalPoint1(Int32 i); + [Slot(568)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEvalPoint2(Int32 i, Int32 j); - [Slot(571)] + [Slot(572)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glFeedbackBuffer(Int32 size, System.Int32 type, [OutAttribute, CountAttribute(Parameter = "size")] Single* buffer); - [Slot(573)] + [Slot(574)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern IntPtr glFenceSync(System.Int32 condition, System.Int32 flags); - [Slot(575)] + [Slot(576)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFinish(); - [Slot(581)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFlush(); [Slot(582)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glFlush(); + [Slot(583)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFlushMappedBufferRange(System.Int32 target, IntPtr offset, IntPtr length); - [Slot(584)] + [Slot(585)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFlushMappedNamedBufferRange(UInt32 buffer, IntPtr offset, IntPtr length); - [Slot(591)] + [Slot(592)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFogCoordd(Double coord); - [Slot(593)] + [Slot(594)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glFogCoorddv([CountAttribute(Count = 1)] Double* coord); - [Slot(595)] + [Slot(596)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFogCoordf(Single coord); - [Slot(598)] + [Slot(599)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glFogCoordfv([CountAttribute(Count = 1)] Single* coord); - [Slot(602)] + [Slot(603)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFogCoordPointer(System.Int32 type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer); - [Slot(605)] + [Slot(606)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFogf(System.Int32 pname, Single param); - [Slot(607)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glFogfv(System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); [Slot(608)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFogi(System.Int32 pname, Int32 param); + private static extern unsafe void glFogfv(System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); [Slot(609)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glFogi(System.Int32 pname, Int32 param); + [Slot(610)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glFogiv(System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); - [Slot(628)] + [Slot(629)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferParameteri(System.Int32 target, System.Int32 pname, Int32 param); - [Slot(630)] + [Slot(631)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferRenderbuffer(System.Int32 target, System.Int32 attachment, System.Int32 renderbuffertarget, UInt32 renderbuffer); - [Slot(635)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFramebufferTexture(System.Int32 target, System.Int32 attachment, UInt32 texture, Int32 level); [Slot(636)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glFramebufferTexture(System.Int32 target, System.Int32 attachment, UInt32 texture, Int32 level); + [Slot(637)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferTexture1D(System.Int32 target, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level); - [Slot(638)] + [Slot(639)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferTexture2D(System.Int32 target, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level); - [Slot(640)] + [Slot(641)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferTexture3D(System.Int32 target, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level, Int32 zoffset); - [Slot(646)] + [Slot(647)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferTextureLayer(System.Int32 target, System.Int32 attachment, UInt32 texture, Int32 level, Int32 layer); - [Slot(653)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFrontFace(System.Int32 mode); [Slot(654)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glFrontFace(System.Int32 mode); + [Slot(655)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFrustum(Double left, Double right, Double bottom, Double top, Double zNear, Double zFar); - [Slot(658)] + [Slot(659)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* buffers); - [Slot(660)] + [Slot(661)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glGenerateMipmap(System.Int32 target); - [Slot(663)] + [Slot(664)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glGenerateTextureMipmap(UInt32 texture); - [Slot(668)] + [Slot(669)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* framebuffers); - [Slot(670)] + [Slot(671)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int32 glGenLists(Int32 range); - [Slot(675)] + [Slot(676)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines); - [Slot(679)] + [Slot(680)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids); - [Slot(681)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers); [Slot(683)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* samplers); - [Slot(686)] + private static extern unsafe void glGenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers); + [Slot(685)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* textures); + private static extern unsafe void glGenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* samplers); [Slot(688)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids); + private static extern unsafe void glGenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* textures); [Slot(690)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids); + [Slot(692)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays); - [Slot(693)] + [Slot(695)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetActiveAtomicCounterBufferiv(UInt32 program, UInt32 bufferIndex, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(694)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] System.Int32* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr name); [Slot(696)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetActiveSubroutineName(UInt32 program, System.Int32 shadertype, UInt32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] IntPtr name); - [Slot(697)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetActiveSubroutineUniformiv(UInt32 program, System.Int32 shadertype, UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* values); + private static extern unsafe void glGetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] System.Int32* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr name); [Slot(698)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetActiveSubroutineUniformName(UInt32 program, System.Int32 shadertype, UInt32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] IntPtr name); + private static extern unsafe void glGetActiveSubroutineName(UInt32 program, System.Int32 shadertype, UInt32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] IntPtr name); [Slot(699)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] System.Int32* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr name); + private static extern unsafe void glGetActiveSubroutineUniformiv(UInt32 program, System.Int32 shadertype, UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* values); + [Slot(700)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetActiveSubroutineUniformName(UInt32 program, System.Int32 shadertype, UInt32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] IntPtr name); [Slot(701)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetActiveUniformBlockiv(UInt32 program, UInt32 uniformBlockIndex, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params); - [Slot(702)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetActiveUniformBlockName(UInt32 program, UInt32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr uniformBlockName); + private static extern unsafe void glGetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] System.Int32* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr name); [Slot(703)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetActiveUniformName(UInt32 program, UInt32 uniformIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr uniformName); + private static extern unsafe void glGetActiveUniformBlockiv(UInt32 program, UInt32 uniformBlockIndex, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params); [Slot(704)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetActiveUniformBlockName(UInt32 program, UInt32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr uniformBlockName); + [Slot(705)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetActiveUniformName(UInt32 program, UInt32 uniformIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr uniformName); + [Slot(706)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetActiveUniformsiv(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32* uniformIndices, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params); - [Slot(709)] + [Slot(711)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32* shaders); - [Slot(710)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int32 glGetAttribLocation(UInt32 program, IntPtr name); [Slot(712)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetBooleani_v(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data); + private static extern Int32 glGetAttribLocation(UInt32 program, IntPtr name); [Slot(714)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetBooleanv(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data); - [Slot(715)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetBufferParameteri64v(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params); + private static extern unsafe void glGetBooleani_v(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data); [Slot(716)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetBufferParameteriv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(719)] + private static extern unsafe void glGetBooleanv(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data); + [Slot(717)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetBufferPointerv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params); + private static extern unsafe void glGetBufferParameteri64v(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params); + [Slot(718)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetBufferParameteriv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(721)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetBufferSubData(System.Int32 target, IntPtr offset, IntPtr size, [OutAttribute, CountAttribute(Parameter = "size")] IntPtr data); + private static extern void glGetBufferPointerv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params); [Slot(723)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetClipPlane(System.Int32 plane, [OutAttribute, CountAttribute(Count = 4)] Double* equation); - [Slot(726)] + private static extern void glGetBufferSubData(System.Int32 target, IntPtr offset, IntPtr size, [OutAttribute, CountAttribute(Parameter = "size")] IntPtr data); + [Slot(725)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetColorTable(System.Int32 target, System.Int32 format, System.Int32 type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr table); + private static extern unsafe void glGetClipPlane(System.Int32 plane, [OutAttribute, CountAttribute(Count = 4)] Double* equation); [Slot(728)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glGetColorTable(System.Int32 target, System.Int32 format, System.Int32 type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr table); + [Slot(730)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetColorTableParameterfv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); - [Slot(731)] + [Slot(733)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetColorTableParameteriv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(742)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetCompressedTexImage(System.Int32 target, Int32 level, [OutAttribute, CountAttribute(Computed = "target,level")] IntPtr img); [Slot(744)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetCompressedTextureImage(UInt32 texture, Int32 level, Int32 bufSize, [OutAttribute] IntPtr pixels); + private static extern void glGetCompressedTexImage(System.Int32 target, Int32 level, [OutAttribute, CountAttribute(Computed = "target,level")] IntPtr img); [Slot(746)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetCompressedTextureSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [OutAttribute] IntPtr pixels); - [Slot(747)] + private static extern void glGetCompressedTextureImage(UInt32 texture, Int32 level, Int32 bufSize, [OutAttribute] IntPtr pixels); + [Slot(748)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetConvolutionFilter(System.Int32 target, System.Int32 format, System.Int32 type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr image); + private static extern void glGetCompressedTextureSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [OutAttribute] IntPtr pixels); [Slot(749)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetConvolutionParameterfv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); + private static extern void glGetConvolutionFilter(System.Int32 target, System.Int32 format, System.Int32 type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr image); [Slot(751)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetConvolutionParameterfv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); + [Slot(753)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetConvolutionParameteriv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(755)] + [Slot(757)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe Int32 glGetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] System.Int32* sources, [OutAttribute, CountAttribute(Parameter = "count")] System.Int32* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] System.Int32* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr messageLog); - [Slot(760)] + [Slot(762)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetDoublei_v(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Double* data); - [Slot(763)] + [Slot(765)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetDoublev(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* data); - [Slot(764)] + [Slot(766)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern System.Int32 glGetError(); - [Slot(770)] + [Slot(772)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetFloati_v(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data); - [Slot(773)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetFloatv(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data); [Slot(775)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetFloatv(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data); + [Slot(777)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int32 glGetFragDataIndex(UInt32 program, IntPtr name); - [Slot(776)] + [Slot(778)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int32 glGetFragDataLocation(UInt32 program, [CountAttribute(Computed = "name")] IntPtr name); - [Slot(782)] + [Slot(784)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetFramebufferAttachmentParameteriv(System.Int32 target, System.Int32 attachment, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(785)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetFramebufferParameteriv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(787)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern System.Int32 glGetGraphicsResetStatus(); - [Slot(791)] + private static extern unsafe void glGetFramebufferParameteriv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + [Slot(789)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetHistogram(System.Int32 target, bool reset, System.Int32 format, System.Int32 type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values); + private static extern System.Int32 glGetGraphicsResetStatus(); [Slot(793)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetHistogramParameterfv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); + private static extern void glGetHistogram(System.Int32 target, bool reset, System.Int32 format, System.Int32 type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values); [Slot(795)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetHistogramParameterfv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); + [Slot(797)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetHistogramParameteriv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(804)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetInteger64i_v(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data); - [Slot(805)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetInteger64v(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* data); [Slot(806)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetInteger64i_v(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data); + [Slot(807)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetInteger64v(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* data); + [Slot(808)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetIntegeri_v(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data); - [Slot(810)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetIntegerv(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data); - [Slot(811)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetInternalformati64v(System.Int32 target, System.Int32 internalformat, System.Int32 pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int64* @params); [Slot(812)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetIntegerv(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data); + [Slot(813)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetInternalformati64v(System.Int32 target, System.Int32 internalformat, System.Int32 pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int64* @params); + [Slot(814)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetInternalformativ(System.Int32 target, System.Int32 internalformat, System.Int32 pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params); - [Slot(817)] + [Slot(819)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetLightfv(System.Int32 light, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); - [Slot(818)] + [Slot(820)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetLightiv(System.Int32 light, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(829)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetMapdv(System.Int32 target, System.Int32 query, [OutAttribute, CountAttribute(Computed = "target,query")] Double* v); - [Slot(830)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetMapfv(System.Int32 target, System.Int32 query, [OutAttribute, CountAttribute(Computed = "target,query")] Single* v); [Slot(831)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetMapdv(System.Int32 target, System.Int32 query, [OutAttribute, CountAttribute(Computed = "target,query")] Double* v); + [Slot(832)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetMapfv(System.Int32 target, System.Int32 query, [OutAttribute, CountAttribute(Computed = "target,query")] Single* v); + [Slot(833)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetMapiv(System.Int32 target, System.Int32 query, [OutAttribute, CountAttribute(Computed = "target,query")] Int32* v); - [Slot(835)] + [Slot(837)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetMaterialfv(System.Int32 face, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); - [Slot(836)] + [Slot(838)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetMaterialiv(System.Int32 face, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(840)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetMinmax(System.Int32 target, bool reset, System.Int32 format, System.Int32 type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values); [Slot(842)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetMinmaxParameterfv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); + private static extern void glGetMinmax(System.Int32 target, bool reset, System.Int32 format, System.Int32 type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values); [Slot(844)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetMinmaxParameteriv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + private static extern unsafe void glGetMinmaxParameterfv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); [Slot(846)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetMinmaxParameteriv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + [Slot(848)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetMultisamplefv(System.Int32 pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* val); - [Slot(860)] + [Slot(862)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetNamedBufferParameteri64v(UInt32 buffer, System.Int32 pname, [OutAttribute] Int64* @params); - [Slot(861)] + [Slot(863)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetNamedBufferParameteriv(UInt32 buffer, System.Int32 pname, [OutAttribute] Int32* @params); - [Slot(864)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetNamedBufferPointerv(UInt32 buffer, System.Int32 pname, [OutAttribute] IntPtr @params); [Slot(866)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [OutAttribute] IntPtr data); + private static extern void glGetNamedBufferPointerv(UInt32 buffer, System.Int32 pname, [OutAttribute] IntPtr @params); [Slot(868)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glGetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [OutAttribute] IntPtr data); + [Slot(870)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetNamedFramebufferAttachmentParameteriv(UInt32 framebuffer, System.Int32 attachment, System.Int32 pname, [OutAttribute] Int32* @params); - [Slot(871)] + [Slot(873)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetNamedFramebufferParameteriv(UInt32 framebuffer, System.Int32 pname, [OutAttribute] Int32* param); - [Slot(879)] + [Slot(881)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetNamedRenderbufferParameteriv(UInt32 renderbuffer, System.Int32 pname, [OutAttribute] Int32* @params); - [Slot(883)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetnColorTable(System.Int32 target, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute] IntPtr table); [Slot(885)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetnCompressedTexImage(System.Int32 target, Int32 lod, Int32 bufSize, [OutAttribute] IntPtr pixels); + private static extern void glGetnColorTable(System.Int32 target, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute] IntPtr table); [Slot(887)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetnConvolutionFilter(System.Int32 target, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute] IntPtr image); - [Slot(890)] + private static extern void glGetnCompressedTexImage(System.Int32 target, Int32 lod, Int32 bufSize, [OutAttribute] IntPtr pixels); + [Slot(889)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetnHistogram(System.Int32 target, bool reset, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute] IntPtr values); + private static extern void glGetnConvolutionFilter(System.Int32 target, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute] IntPtr image); [Slot(892)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetnMapdv(System.Int32 target, System.Int32 query, Int32 bufSize, [OutAttribute] Double* v); + private static extern void glGetnHistogram(System.Int32 target, bool reset, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute] IntPtr values); [Slot(894)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetnMapfv(System.Int32 target, System.Int32 query, Int32 bufSize, [OutAttribute] Single* v); + private static extern unsafe void glGetnMapdv(System.Int32 target, System.Int32 query, Int32 bufSize, [OutAttribute] Double* v); [Slot(896)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetnMapiv(System.Int32 target, System.Int32 query, Int32 bufSize, [OutAttribute] Int32* v); + private static extern unsafe void glGetnMapfv(System.Int32 target, System.Int32 query, Int32 bufSize, [OutAttribute] Single* v); [Slot(898)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetnMinmax(System.Int32 target, bool reset, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute] IntPtr values); + private static extern unsafe void glGetnMapiv(System.Int32 target, System.Int32 query, Int32 bufSize, [OutAttribute] Int32* v); [Slot(900)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetnPixelMapfv(System.Int32 map, Int32 bufSize, [OutAttribute] Single* values); + private static extern void glGetnMinmax(System.Int32 target, bool reset, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute] IntPtr values); [Slot(902)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetnPixelMapuiv(System.Int32 map, Int32 bufSize, [OutAttribute] UInt32* values); + private static extern unsafe void glGetnPixelMapfv(System.Int32 map, Int32 bufSize, [OutAttribute] Single* values); [Slot(904)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetnPixelMapusv(System.Int32 map, Int32 bufSize, [OutAttribute] UInt16* values); + private static extern unsafe void glGetnPixelMapuiv(System.Int32 map, Int32 bufSize, [OutAttribute] UInt32* values); [Slot(906)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetnPolygonStipple(Int32 bufSize, [OutAttribute] Byte* pattern); + private static extern unsafe void glGetnPixelMapusv(System.Int32 map, Int32 bufSize, [OutAttribute] UInt16* values); [Slot(908)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetnSeparableFilter(System.Int32 target, System.Int32 format, System.Int32 type, Int32 rowBufSize, [OutAttribute] IntPtr row, Int32 columnBufSize, [OutAttribute] IntPtr column, [OutAttribute] IntPtr span); + private static extern unsafe void glGetnPolygonStipple(Int32 bufSize, [OutAttribute] Byte* pattern); [Slot(910)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetnTexImage(System.Int32 target, Int32 level, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute] IntPtr pixels); + private static extern void glGetnSeparableFilter(System.Int32 target, System.Int32 format, System.Int32 type, Int32 rowBufSize, [OutAttribute] IntPtr row, Int32 columnBufSize, [OutAttribute] IntPtr column, [OutAttribute] IntPtr span); [Slot(912)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetnUniformdv(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Double* @params); + private static extern void glGetnTexImage(System.Int32 target, Int32 level, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute] IntPtr pixels); [Slot(914)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetnUniformdv(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Double* @params); + [Slot(916)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetnUniformfv(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params); - [Slot(918)] + [Slot(920)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetnUniformiv(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params); - [Slot(922)] + [Slot(924)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetnUniformuiv(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params); - [Slot(927)] + [Slot(929)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetObjectLabel(System.Int32 identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr label); - [Slot(933)] + [Slot(935)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr label); - [Slot(960)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPixelMapfv(System.Int32 map, [OutAttribute, CountAttribute(Computed = "map")] Single* values); - [Slot(961)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPixelMapuiv(System.Int32 map, [OutAttribute, CountAttribute(Computed = "map")] UInt32* values); [Slot(962)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPixelMapusv(System.Int32 map, [OutAttribute, CountAttribute(Computed = "map")] UInt16* values); + private static extern unsafe void glGetPixelMapfv(System.Int32 map, [OutAttribute, CountAttribute(Computed = "map")] Single* values); [Slot(963)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetPixelMapuiv(System.Int32 map, [OutAttribute, CountAttribute(Computed = "map")] UInt32* values); + [Slot(964)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetPixelMapusv(System.Int32 map, [OutAttribute, CountAttribute(Computed = "map")] UInt16* values); + [Slot(965)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetPixelMapxv(System.Int32 map, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32* values); - [Slot(970)] + [Slot(972)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glGetPointerv(System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params); - [Slot(973)] + [Slot(975)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetPolygonStipple([OutAttribute, CountAttribute(Computed = "")] Byte* mask); - [Slot(974)] + [Slot(976)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] System.Int32* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary); - [Slot(979)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr infoLog); - [Slot(980)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetProgramInterfaceiv(UInt32 program, System.Int32 programInterface, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(981)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetProgramiv(UInt32 program, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(992)] + private static extern unsafe void glGetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr infoLog); + [Slot(982)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr infoLog); + private static extern unsafe void glGetProgramInterfaceiv(UInt32 program, System.Int32 programInterface, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + [Slot(983)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetProgramiv(UInt32 program, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(994)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr infoLog); + [Slot(996)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetProgramPipelineiv(UInt32 pipeline, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(997)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int32 glGetProgramResourceIndex(UInt32 program, System.Int32 programInterface, [CountAttribute(Computed = "name")] IntPtr name); - [Slot(998)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetProgramResourceiv(UInt32 program, System.Int32 programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] System.Int32* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params); [Slot(999)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int32 glGetProgramResourceLocation(UInt32 program, System.Int32 programInterface, [CountAttribute(Computed = "name")] IntPtr name); + private static extern Int32 glGetProgramResourceIndex(UInt32 program, System.Int32 programInterface, [CountAttribute(Computed = "name")] IntPtr name); [Slot(1000)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int32 glGetProgramResourceLocationIndex(UInt32 program, System.Int32 programInterface, [CountAttribute(Computed = "name")] IntPtr name); + private static extern unsafe void glGetProgramResourceiv(UInt32 program, System.Int32 programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] System.Int32* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params); [Slot(1001)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetProgramResourceName(UInt32 program, System.Int32 programInterface, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr name); + private static extern Int32 glGetProgramResourceLocation(UInt32 program, System.Int32 programInterface, [CountAttribute(Computed = "name")] IntPtr name); [Slot(1002)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern Int32 glGetProgramResourceLocationIndex(UInt32 program, System.Int32 programInterface, [CountAttribute(Computed = "name")] IntPtr name); + [Slot(1003)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetProgramResourceName(UInt32 program, System.Int32 programInterface, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr name); + [Slot(1004)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetProgramStageiv(UInt32 program, System.Int32 shadertype, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] Int32* values); - [Slot(1006)] + [Slot(1008)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glGetQueryBufferObjecti64v(UInt32 id, UInt32 buffer, System.Int32 pname, IntPtr offset); - [Slot(1010)] + [Slot(1012)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetQueryIndexediv(System.Int32 target, UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(1011)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetQueryiv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(1013)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetQueryObjecti64v(UInt32 id, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params); + private static extern unsafe void glGetQueryiv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(1015)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetQueryObjectiv(UInt32 id, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + private static extern unsafe void glGetQueryObjecti64v(UInt32 id, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params); [Slot(1017)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetQueryObjectui64v(UInt32 id, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params); + private static extern unsafe void glGetQueryObjectiv(UInt32 id, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(1019)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetQueryObjectuiv(UInt32 id, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params); + private static extern unsafe void glGetQueryObjectui64v(UInt32 id, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params); [Slot(1021)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetRenderbufferParameteriv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + private static extern unsafe void glGetQueryObjectuiv(UInt32 id, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params); [Slot(1023)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetSamplerParameterfv(UInt32 sampler, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); - [Slot(1024)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetSamplerParameterIiv(UInt32 sampler, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + private static extern unsafe void glGetRenderbufferParameteriv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(1025)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetSamplerParameterIuiv(UInt32 sampler, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params); + private static extern unsafe void glGetSamplerParameterfv(UInt32 sampler, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); [Slot(1026)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetSamplerParameteriv(UInt32 sampler, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + private static extern unsafe void glGetSamplerParameterIiv(UInt32 sampler, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + [Slot(1027)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetSamplerParameterIuiv(UInt32 sampler, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params); [Slot(1028)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetSeparableFilter(System.Int32 target, System.Int32 format, System.Int32 type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr row, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr column, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr span); + private static extern unsafe void glGetSamplerParameteriv(UInt32 sampler, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(1030)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr infoLog); - [Slot(1031)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetShaderiv(UInt32 shader, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + private static extern void glGetSeparableFilter(System.Int32 target, System.Int32 format, System.Int32 type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr row, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr column, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr span); [Slot(1032)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetShaderPrecisionFormat(System.Int32 shadertype, System.Int32 precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32* range, [OutAttribute, CountAttribute(Count = 1)] Int32* precision); + private static extern unsafe void glGetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr infoLog); [Slot(1033)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetShaderiv(UInt32 shader, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + [Slot(1034)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetShaderPrecisionFormat(System.Int32 shadertype, System.Int32 precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32* range, [OutAttribute, CountAttribute(Count = 1)] Int32* precision); + [Slot(1035)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr source); - [Slot(1037)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern IntPtr glGetString(System.Int32 name); - [Slot(1038)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern IntPtr glGetStringi(System.Int32 name, UInt32 index); [Slot(1039)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int32 glGetSubroutineIndex(UInt32 program, System.Int32 shadertype, IntPtr name); + private static extern IntPtr glGetString(System.Int32 name); [Slot(1040)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int32 glGetSubroutineUniformLocation(UInt32 program, System.Int32 shadertype, IntPtr name); + private static extern IntPtr glGetStringi(System.Int32 name, UInt32 index); [Slot(1041)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern Int32 glGetSubroutineIndex(UInt32 program, System.Int32 shadertype, IntPtr name); + [Slot(1042)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern Int32 glGetSubroutineUniformLocation(UInt32 program, System.Int32 shadertype, IntPtr name); + [Slot(1043)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetSynciv(IntPtr sync, System.Int32 pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values); - [Slot(1044)] + [Slot(1046)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetTexEnvfv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); - [Slot(1045)] + [Slot(1047)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetTexEnviv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(1048)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTexGendv(System.Int32 coord, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params); - [Slot(1049)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTexGenfv(System.Int32 coord, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); [Slot(1050)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTexGeniv(System.Int32 coord, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + private static extern unsafe void glGetTexGendv(System.Int32 coord, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params); + [Slot(1051)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetTexGenfv(System.Int32 coord, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); [Slot(1052)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetTexImage(System.Int32 target, Int32 level, System.Int32 format, System.Int32 type, [OutAttribute, CountAttribute(Computed = "target,level,format,type")] IntPtr pixels); - [Slot(1053)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTexLevelParameterfv(System.Int32 target, Int32 level, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); + private static extern unsafe void glGetTexGeniv(System.Int32 coord, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(1054)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTexLevelParameteriv(System.Int32 target, Int32 level, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + private static extern void glGetTexImage(System.Int32 target, Int32 level, System.Int32 format, System.Int32 type, [OutAttribute, CountAttribute(Computed = "target,level,format,type")] IntPtr pixels); + [Slot(1055)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetTexLevelParameterfv(System.Int32 target, Int32 level, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); [Slot(1056)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTexParameterfv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); - [Slot(1057)] + private static extern unsafe void glGetTexLevelParameteriv(System.Int32 target, Int32 level, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + [Slot(1058)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTexParameterIiv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + private static extern unsafe void glGetTexParameterfv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); [Slot(1059)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTexParameterIuiv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params); + private static extern unsafe void glGetTexParameterIiv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(1061)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTexParameteriv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(1066)] + private static extern unsafe void glGetTexParameterIuiv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params); + [Slot(1063)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetTextureImage(UInt32 texture, Int32 level, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute] IntPtr pixels); + private static extern unsafe void glGetTexParameteriv(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(1068)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTextureLevelParameterfv(UInt32 texture, Int32 level, System.Int32 pname, [OutAttribute] Single* @params); + private static extern void glGetTextureImage(UInt32 texture, Int32 level, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute] IntPtr pixels); [Slot(1070)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTextureLevelParameteriv(UInt32 texture, Int32 level, System.Int32 pname, [OutAttribute] Int32* @params); + private static extern unsafe void glGetTextureLevelParameterfv(UInt32 texture, Int32 level, System.Int32 pname, [OutAttribute] Single* @params); [Slot(1072)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTextureParameterfv(UInt32 texture, System.Int32 pname, [OutAttribute] Single* @params); + private static extern unsafe void glGetTextureLevelParameteriv(UInt32 texture, Int32 level, System.Int32 pname, [OutAttribute] Int32* @params); [Slot(1074)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTextureParameterIiv(UInt32 texture, System.Int32 pname, [OutAttribute] Int32* @params); + private static extern unsafe void glGetTextureParameterfv(UInt32 texture, System.Int32 pname, [OutAttribute] Single* @params); [Slot(1076)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTextureParameterIuiv(UInt32 texture, System.Int32 pname, [OutAttribute] UInt32* @params); + private static extern unsafe void glGetTextureParameterIiv(UInt32 texture, System.Int32 pname, [OutAttribute] Int32* @params); [Slot(1078)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTextureParameteriv(UInt32 texture, System.Int32 pname, [OutAttribute] Int32* @params); - [Slot(1082)] + private static extern unsafe void glGetTextureParameterIuiv(UInt32 texture, System.Int32 pname, [OutAttribute] UInt32* @params); + [Slot(1080)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetTextureSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute] IntPtr pixels); + private static extern unsafe void glGetTextureParameteriv(UInt32 texture, System.Int32 pname, [OutAttribute] Int32* @params); [Slot(1084)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTransformFeedbacki_v(UInt32 xfb, System.Int32 pname, UInt32 index, [OutAttribute] Int32* param); - [Slot(1085)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTransformFeedbacki64_v(UInt32 xfb, System.Int32 pname, UInt32 index, [OutAttribute] Int64* param); + private static extern void glGetTextureSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute] IntPtr pixels); [Slot(1086)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTransformFeedbackiv(UInt32 xfb, System.Int32 pname, [OutAttribute] Int32* param); + private static extern unsafe void glGetTransformFeedbacki_v(UInt32 xfb, System.Int32 pname, UInt32 index, [OutAttribute] Int32* param); [Slot(1087)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] System.Int32* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr name); - [Slot(1090)] + private static extern unsafe void glGetTransformFeedbacki64_v(UInt32 xfb, System.Int32 pname, UInt32 index, [OutAttribute] Int64* param); + [Slot(1088)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int32 glGetUniformBlockIndex(UInt32 program, [CountAttribute(Computed = "")] IntPtr uniformBlockName); + private static extern unsafe void glGetTransformFeedbackiv(UInt32 xfb, System.Int32 pname, [OutAttribute] Int32* param); + [Slot(1089)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] System.Int32* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr name); [Slot(1092)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern Int32 glGetUniformBlockIndex(UInt32 program, [CountAttribute(Computed = "")] IntPtr uniformBlockName); + [Slot(1094)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetUniformdv(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Double* @params); - [Slot(1093)] + [Slot(1095)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetUniformfv(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params); - [Slot(1097)] + [Slot(1099)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] IntPtr uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] UInt32* uniformIndices); - [Slot(1098)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetUniformiv(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params); [Slot(1100)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetUniformiv(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params); + [Slot(1102)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int32 glGetUniformLocation(UInt32 program, IntPtr name); - [Slot(1103)] + [Slot(1105)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetUniformSubroutineuiv(System.Int32 shadertype, Int32 location, [OutAttribute, CountAttribute(Count = 1)] UInt32* @params); - [Slot(1106)] + [Slot(1108)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetUniformuiv(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32* @params); - [Slot(1117)] + [Slot(1119)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetVertexArrayIndexed64iv(UInt32 vaobj, UInt32 index, System.Int32 pname, [OutAttribute] Int64* param); - [Slot(1118)] + [Slot(1120)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetVertexArrayIndexediv(UInt32 vaobj, UInt32 index, System.Int32 pname, [OutAttribute] Int32* param); - [Slot(1121)] + [Slot(1123)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetVertexArrayiv(UInt32 vaobj, System.Int32 pname, [OutAttribute] Int32* param); - [Slot(1126)] + [Slot(1128)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetVertexAttribdv(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 4)] Double* @params); - [Slot(1129)] + [Slot(1131)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetVertexAttribfv(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params); - [Slot(1132)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetVertexAttribIiv(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params); [Slot(1134)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetVertexAttribIuiv(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] UInt32* @params); + private static extern unsafe void glGetVertexAttribIiv(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params); [Slot(1136)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetVertexAttribIuiv(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] UInt32* @params); + [Slot(1138)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetVertexAttribiv(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params); - [Slot(1139)] + [Slot(1141)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetVertexAttribLdv(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params); - [Slot(1144)] + [Slot(1146)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glGetVertexAttribPointerv(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer); - [Slot(1164)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glHint(System.Int32 target, System.Int32 mode); [Slot(1166)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glHint(System.Int32 target, System.Int32 mode); + [Slot(1168)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glHistogram(System.Int32 target, Int32 width, System.Int32 internalformat, bool sink); - [Slot(1180)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glIndexd(Double c); - [Slot(1181)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glIndexdv([CountAttribute(Count = 1)] Double* c); [Slot(1182)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glIndexd(Double c); + [Slot(1183)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glIndexdv([CountAttribute(Count = 1)] Double* c); + [Slot(1184)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glIndexf(Single c); - [Slot(1185)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glIndexfv([CountAttribute(Count = 1)] Single* c); - [Slot(1186)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glIndexi(Int32 c); [Slot(1187)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glIndexiv([CountAttribute(Count = 1)] Int32* c); + private static extern unsafe void glIndexfv([CountAttribute(Count = 1)] Single* c); [Slot(1188)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glIndexMask(UInt32 mask); + private static extern void glIndexi(Int32 c); + [Slot(1189)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glIndexiv([CountAttribute(Count = 1)] Int32* c); [Slot(1190)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glIndexMask(UInt32 mask); + [Slot(1192)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glIndexPointer(System.Int32 type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer); - [Slot(1193)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glIndexs(Int16 c); - [Slot(1194)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glIndexsv([CountAttribute(Count = 1)] Int16* c); [Slot(1195)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glIndexub(Byte c); + private static extern void glIndexs(Int16 c); [Slot(1196)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glIndexsv([CountAttribute(Count = 1)] Int16* c); + [Slot(1197)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glIndexub(Byte c); + [Slot(1198)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glIndexubv([CountAttribute(Count = 1)] Byte* c); - [Slot(1199)] + [Slot(1201)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glInitNames(); - [Slot(1203)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glInterleavedArrays(System.Int32 format, Int32 stride, [CountAttribute(Computed = "format,stride")] IntPtr pointer); [Slot(1205)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glInvalidateBufferData(UInt32 buffer); - [Slot(1206)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glInvalidateBufferSubData(UInt32 buffer, IntPtr offset, IntPtr length); + private static extern void glInterleavedArrays(System.Int32 format, Int32 stride, [CountAttribute(Computed = "format,stride")] IntPtr pointer); [Slot(1207)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glInvalidateFramebuffer(System.Int32 target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] System.Int32* attachments); + private static extern void glInvalidateBufferData(UInt32 buffer); [Slot(1208)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glInvalidateNamedFramebufferData(UInt32 framebuffer, Int32 numAttachments, System.Int32* attachments); + private static extern void glInvalidateBufferSubData(UInt32 buffer, IntPtr offset, IntPtr length); [Slot(1209)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glInvalidateNamedFramebufferSubData(UInt32 framebuffer, Int32 numAttachments, System.Int32* attachments, Int32 x, Int32 y, Int32 width, Int32 height); + private static extern unsafe void glInvalidateFramebuffer(System.Int32 target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] System.Int32* attachments); [Slot(1210)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glInvalidateSubFramebuffer(System.Int32 target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] System.Int32* attachments, Int32 x, Int32 y, Int32 width, Int32 height); + private static extern unsafe void glInvalidateNamedFramebufferData(UInt32 framebuffer, Int32 numAttachments, System.Int32* attachments); [Slot(1211)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glInvalidateTexImage(UInt32 texture, Int32 level); + private static extern unsafe void glInvalidateNamedFramebufferSubData(UInt32 framebuffer, Int32 numAttachments, System.Int32* attachments, Int32 x, Int32 y, Int32 width, Int32 height); [Slot(1212)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glInvalidateTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth); + private static extern unsafe void glInvalidateSubFramebuffer(System.Int32 target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] System.Int32* attachments, Int32 x, Int32 y, Int32 width, Int32 height); + [Slot(1213)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glInvalidateTexImage(UInt32 texture, Int32 level); [Slot(1214)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glInvalidateTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth); + [Slot(1216)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsBuffer(UInt32 buffer); - [Slot(1218)] + [Slot(1220)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsEnabled(System.Int32 cap); - [Slot(1219)] + [Slot(1221)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsEnabledi(System.Int32 target, UInt32 index); - [Slot(1223)] + [Slot(1225)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsFramebuffer(UInt32 framebuffer); - [Slot(1227)] + [Slot(1229)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsList(UInt32 list); - [Slot(1237)] + [Slot(1239)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsProgram(UInt32 program); - [Slot(1240)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsProgramPipeline(UInt32 pipeline); [Slot(1242)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsQuery(UInt32 id); + private static extern byte glIsProgramPipeline(UInt32 pipeline); [Slot(1244)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsRenderbuffer(UInt32 renderbuffer); + private static extern byte glIsQuery(UInt32 id); [Slot(1246)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsSampler(UInt32 sampler); + private static extern byte glIsRenderbuffer(UInt32 renderbuffer); [Slot(1248)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsShader(UInt32 shader); + private static extern byte glIsSampler(UInt32 sampler); [Slot(1250)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glIsShader(UInt32 shader); + [Slot(1252)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsSync(IntPtr sync); - [Slot(1251)] + [Slot(1253)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsTexture(UInt32 texture); - [Slot(1255)] + [Slot(1257)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsTransformFeedback(UInt32 id); - [Slot(1258)] + [Slot(1260)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsVertexArray(UInt32 array); - [Slot(1266)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glLightf(System.Int32 light, System.Int32 pname, Single param); - [Slot(1267)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glLightfv(System.Int32 light, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); [Slot(1268)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glLighti(System.Int32 light, System.Int32 pname, Int32 param); + private static extern void glLightf(System.Int32 light, System.Int32 pname, Single param); [Slot(1269)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glLightiv(System.Int32 light, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + private static extern unsafe void glLightfv(System.Int32 light, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); [Slot(1270)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glLightModelf(System.Int32 pname, Single param); + private static extern void glLighti(System.Int32 light, System.Int32 pname, Int32 param); [Slot(1271)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glLightModelfv(System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); + private static extern unsafe void glLightiv(System.Int32 light, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); [Slot(1272)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glLightModeli(System.Int32 pname, Int32 param); + private static extern void glLightModelf(System.Int32 pname, Single param); [Slot(1273)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glLightModelfv(System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); + [Slot(1274)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glLightModeli(System.Int32 pname, Int32 param); + [Slot(1275)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glLightModeliv(System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); - [Slot(1278)] + [Slot(1280)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glLineStipple(Int32 factor, UInt16 pattern); - [Slot(1279)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glLineWidth(Single width); [Slot(1281)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glLinkProgram(UInt32 program); + private static extern void glLineWidth(Single width); [Slot(1283)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glListBase(UInt32 @base); - [Slot(1289)] + private static extern void glLinkProgram(UInt32 program); + [Slot(1285)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glLoadIdentity(); + private static extern void glListBase(UInt32 @base); [Slot(1291)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glLoadMatrixd([CountAttribute(Count = 16)] Double* m); - [Slot(1292)] + private static extern void glLoadIdentity(); + [Slot(1293)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glLoadMatrixf([CountAttribute(Count = 16)] Single* m); + private static extern unsafe void glLoadMatrixd([CountAttribute(Count = 16)] Double* m); [Slot(1294)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glLoadName(UInt32 name); + private static extern unsafe void glLoadMatrixf([CountAttribute(Count = 16)] Single* m); [Slot(1296)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glLoadTransposeMatrixd([CountAttribute(Count = 16)] Double* m); + private static extern void glLoadName(UInt32 name); [Slot(1298)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glLoadTransposeMatrixd([CountAttribute(Count = 16)] Double* m); + [Slot(1300)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glLoadTransposeMatrixf([CountAttribute(Count = 16)] Single* m); - [Slot(1302)] + [Slot(1304)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glLogicOp(System.Int32 opcode); - [Slot(1315)] + [Slot(1317)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMap1d(System.Int32 target, Double u1, Double u2, Int32 stride, Int32 order, [CountAttribute(Computed = "target,stride,order")] Double* points); - [Slot(1316)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMap1f(System.Int32 target, Single u1, Single u2, Int32 stride, Int32 order, [CountAttribute(Computed = "target,stride,order")] Single* points); [Slot(1318)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMap2d(System.Int32 target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder")] Double* points); - [Slot(1319)] + private static extern unsafe void glMap1f(System.Int32 target, Single u1, Single u2, Int32 stride, Int32 order, [CountAttribute(Computed = "target,stride,order")] Single* points); + [Slot(1320)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMap2f(System.Int32 target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder")] Single* points); + private static extern unsafe void glMap2d(System.Int32 target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder")] Double* points); [Slot(1321)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern IntPtr glMapBuffer(System.Int32 target, System.Int32 access); + private static extern unsafe void glMap2f(System.Int32 target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder")] Single* points); [Slot(1323)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern IntPtr glMapBufferRange(System.Int32 target, IntPtr offset, IntPtr length, System.Int32 access); + private static extern IntPtr glMapBuffer(System.Int32 target, System.Int32 access); [Slot(1325)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMapGrid1d(Int32 un, Double u1, Double u2); - [Slot(1326)] + private static extern IntPtr glMapBufferRange(System.Int32 target, IntPtr offset, IntPtr length, System.Int32 access); + [Slot(1327)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMapGrid1f(Int32 un, Single u1, Single u2); + private static extern void glMapGrid1d(Int32 un, Double u1, Double u2); [Slot(1328)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMapGrid2d(Int32 un, Double u1, Double u2, Int32 vn, Double v1, Double v2); - [Slot(1329)] + private static extern void glMapGrid1f(Int32 un, Single u1, Single u2); + [Slot(1330)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMapGrid2f(Int32 un, Single u1, Single u2, Int32 vn, Single v1, Single v2); + private static extern void glMapGrid2d(Int32 un, Double u1, Double u2, Int32 vn, Double v1, Double v2); [Slot(1331)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern IntPtr glMapNamedBuffer(UInt32 buffer, System.Int32 access); + private static extern void glMapGrid2f(Int32 un, Single u1, Single u2, Int32 vn, Single v1, Single v2); [Slot(1333)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern IntPtr glMapNamedBuffer(UInt32 buffer, System.Int32 access); + [Slot(1335)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern IntPtr glMapNamedBufferRange(UInt32 buffer, IntPtr offset, IntPtr length, System.Int32 access); - [Slot(1343)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMaterialf(System.Int32 face, System.Int32 pname, Single param); - [Slot(1344)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMaterialfv(System.Int32 face, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); [Slot(1345)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMateriali(System.Int32 face, System.Int32 pname, Int32 param); + private static extern void glMaterialf(System.Int32 face, System.Int32 pname, Single param); [Slot(1346)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMaterialfv(System.Int32 face, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); + [Slot(1347)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMateriali(System.Int32 face, System.Int32 pname, Int32 param); + [Slot(1348)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMaterialiv(System.Int32 face, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); - [Slot(1362)] + [Slot(1364)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMatrixMode(System.Int32 mode); - [Slot(1380)] + [Slot(1383)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMemoryBarrier(System.Int32 barriers); - [Slot(1381)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMemoryBarrierByRegion(System.Int32 barriers); [Slot(1384)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMemoryBarrierByRegion(System.Int32 barriers); + [Slot(1387)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMinmax(System.Int32 target, System.Int32 internalformat, bool sink); - [Slot(1386)] + [Slot(1389)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMinSampleShading(Single value); - [Slot(1399)] + [Slot(1402)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiDrawArrays(System.Int32 mode, [CountAttribute(Computed = "count")] Int32* first, [CountAttribute(Computed = "drawcount")] Int32* count, Int32 drawcount); - [Slot(1401)] + [Slot(1404)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiDrawArraysIndirect(System.Int32 mode, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride); - [Slot(1405)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiDrawArraysIndirectCount(System.Int32 mode, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride); [Slot(1408)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiDrawElements(System.Int32 mode, [CountAttribute(Computed = "drawcount")] Int32* count, System.Int32 type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount); - [Slot(1409)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiDrawElementsBaseVertex(System.Int32 mode, [CountAttribute(Computed = "drawcount")] Int32* count, System.Int32 type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex); + private static extern void glMultiDrawArraysIndirectCount(System.Int32 mode, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride); [Slot(1411)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMultiDrawElements(System.Int32 mode, [CountAttribute(Computed = "drawcount")] Int32* count, System.Int32 type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount); + [Slot(1412)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMultiDrawElementsBaseVertex(System.Int32 mode, [CountAttribute(Computed = "drawcount")] Int32* count, System.Int32 type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex); + [Slot(1414)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiDrawElementsIndirect(System.Int32 mode, System.Int32 type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride); - [Slot(1415)] + [Slot(1418)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiDrawElementsIndirectCount(System.Int32 mode, System.Int32 type, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride); - [Slot(1423)] + [Slot(1426)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiTexCoord1d(System.Int32 target, Double s); - [Slot(1425)] + [Slot(1428)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoord1dv(System.Int32 target, [CountAttribute(Count = 1)] Double* v); - [Slot(1427)] + [Slot(1430)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiTexCoord1f(System.Int32 target, Single s); - [Slot(1429)] + [Slot(1432)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoord1fv(System.Int32 target, [CountAttribute(Count = 1)] Single* v); - [Slot(1433)] + [Slot(1436)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiTexCoord1i(System.Int32 target, Int32 s); - [Slot(1435)] + [Slot(1438)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoord1iv(System.Int32 target, [CountAttribute(Count = 1)] Int32* v); - [Slot(1437)] + [Slot(1440)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiTexCoord1s(System.Int32 target, Int16 s); - [Slot(1439)] + [Slot(1442)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoord1sv(System.Int32 target, [CountAttribute(Count = 1)] Int16* v); - [Slot(1445)] + [Slot(1448)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiTexCoord2d(System.Int32 target, Double s, Double t); - [Slot(1447)] + [Slot(1450)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoord2dv(System.Int32 target, [CountAttribute(Count = 2)] Double* v); - [Slot(1449)] + [Slot(1452)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiTexCoord2f(System.Int32 target, Single s, Single t); - [Slot(1451)] + [Slot(1454)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoord2fv(System.Int32 target, [CountAttribute(Count = 2)] Single* v); - [Slot(1455)] + [Slot(1458)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiTexCoord2i(System.Int32 target, Int32 s, Int32 t); - [Slot(1457)] + [Slot(1460)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoord2iv(System.Int32 target, [CountAttribute(Count = 2)] Int32* v); - [Slot(1459)] + [Slot(1462)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiTexCoord2s(System.Int32 target, Int16 s, Int16 t); - [Slot(1461)] + [Slot(1464)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoord2sv(System.Int32 target, [CountAttribute(Count = 2)] Int16* v); - [Slot(1467)] + [Slot(1470)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiTexCoord3d(System.Int32 target, Double s, Double t, Double r); - [Slot(1469)] + [Slot(1472)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoord3dv(System.Int32 target, [CountAttribute(Count = 3)] Double* v); - [Slot(1471)] + [Slot(1474)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiTexCoord3f(System.Int32 target, Single s, Single t, Single r); - [Slot(1473)] + [Slot(1476)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoord3fv(System.Int32 target, [CountAttribute(Count = 3)] Single* v); - [Slot(1477)] + [Slot(1480)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiTexCoord3i(System.Int32 target, Int32 s, Int32 t, Int32 r); - [Slot(1479)] + [Slot(1482)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoord3iv(System.Int32 target, [CountAttribute(Count = 3)] Int32* v); - [Slot(1481)] + [Slot(1484)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiTexCoord3s(System.Int32 target, Int16 s, Int16 t, Int16 r); - [Slot(1483)] + [Slot(1486)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoord3sv(System.Int32 target, [CountAttribute(Count = 3)] Int16* v); - [Slot(1489)] + [Slot(1492)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiTexCoord4d(System.Int32 target, Double s, Double t, Double r, Double q); - [Slot(1491)] + [Slot(1494)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoord4dv(System.Int32 target, [CountAttribute(Count = 4)] Double* v); - [Slot(1493)] + [Slot(1496)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiTexCoord4f(System.Int32 target, Single s, Single t, Single r, Single q); - [Slot(1495)] + [Slot(1498)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoord4fv(System.Int32 target, [CountAttribute(Count = 4)] Single* v); - [Slot(1499)] + [Slot(1502)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiTexCoord4i(System.Int32 target, Int32 s, Int32 t, Int32 r, Int32 q); - [Slot(1501)] + [Slot(1504)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoord4iv(System.Int32 target, [CountAttribute(Count = 4)] Int32* v); - [Slot(1503)] + [Slot(1506)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiTexCoord4s(System.Int32 target, Int16 s, Int16 t, Int16 r, Int16 q); - [Slot(1505)] + [Slot(1508)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoord4sv(System.Int32 target, [CountAttribute(Count = 4)] Int16* v); - [Slot(1509)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexCoordP1ui(System.Int32 texture, System.Int32 type, UInt32 coords); - [Slot(1510)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiTexCoordP1uiv(System.Int32 texture, System.Int32 type, [CountAttribute(Count = 1)] UInt32* coords); - [Slot(1511)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexCoordP2ui(System.Int32 texture, System.Int32 type, UInt32 coords); [Slot(1512)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiTexCoordP2uiv(System.Int32 texture, System.Int32 type, [CountAttribute(Count = 1)] UInt32* coords); + private static extern void glMultiTexCoordP1ui(System.Int32 texture, System.Int32 type, UInt32 coords); [Slot(1513)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexCoordP3ui(System.Int32 texture, System.Int32 type, UInt32 coords); + private static extern unsafe void glMultiTexCoordP1uiv(System.Int32 texture, System.Int32 type, [CountAttribute(Count = 1)] UInt32* coords); [Slot(1514)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiTexCoordP3uiv(System.Int32 texture, System.Int32 type, [CountAttribute(Count = 1)] UInt32* coords); + private static extern void glMultiTexCoordP2ui(System.Int32 texture, System.Int32 type, UInt32 coords); [Slot(1515)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexCoordP4ui(System.Int32 texture, System.Int32 type, UInt32 coords); + private static extern unsafe void glMultiTexCoordP2uiv(System.Int32 texture, System.Int32 type, [CountAttribute(Count = 1)] UInt32* coords); [Slot(1516)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMultiTexCoordP3ui(System.Int32 texture, System.Int32 type, UInt32 coords); + [Slot(1517)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMultiTexCoordP3uiv(System.Int32 texture, System.Int32 type, [CountAttribute(Count = 1)] UInt32* coords); + [Slot(1518)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMultiTexCoordP4ui(System.Int32 texture, System.Int32 type, UInt32 coords); + [Slot(1519)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoordP4uiv(System.Int32 texture, System.Int32 type, [CountAttribute(Count = 1)] UInt32* coords); - [Slot(1541)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultMatrixd([CountAttribute(Count = 16)] Double* m); - [Slot(1542)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultMatrixf([CountAttribute(Count = 16)] Single* m); [Slot(1544)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultTransposeMatrixd([CountAttribute(Count = 16)] Double* m); - [Slot(1546)] + private static extern unsafe void glMultMatrixd([CountAttribute(Count = 16)] Double* m); + [Slot(1545)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultTransposeMatrixf([CountAttribute(Count = 16)] Single* m); + private static extern unsafe void glMultMatrixf([CountAttribute(Count = 16)] Single* m); + [Slot(1547)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMultTransposeMatrixd([CountAttribute(Count = 16)] Double* m); [Slot(1549)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMultTransposeMatrixf([CountAttribute(Count = 16)] Single* m); + [Slot(1552)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glNamedBufferData(UInt32 buffer, IntPtr size, IntPtr data, System.Int32 usage); - [Slot(1553)] + [Slot(1556)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glNamedBufferStorage(UInt32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, System.Int32 flags); - [Slot(1557)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data); [Slot(1560)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data); + [Slot(1563)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glNamedFramebufferDrawBuffer(UInt32 framebuffer, System.Int32 buf); - [Slot(1561)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glNamedFramebufferDrawBuffers(UInt32 framebuffer, Int32 n, System.Int32* bufs); - [Slot(1562)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedFramebufferParameteri(UInt32 framebuffer, System.Int32 pname, Int32 param); [Slot(1564)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedFramebufferReadBuffer(UInt32 framebuffer, System.Int32 src); + private static extern unsafe void glNamedFramebufferDrawBuffers(UInt32 framebuffer, Int32 n, System.Int32* bufs); [Slot(1565)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNamedFramebufferParameteri(UInt32 framebuffer, System.Int32 pname, Int32 param); + [Slot(1567)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNamedFramebufferReadBuffer(UInt32 framebuffer, System.Int32 src); + [Slot(1568)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glNamedFramebufferRenderbuffer(UInt32 framebuffer, System.Int32 attachment, System.Int32 renderbuffertarget, UInt32 renderbuffer); - [Slot(1570)] + [Slot(1573)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glNamedFramebufferTexture(UInt32 framebuffer, System.Int32 attachment, UInt32 texture, Int32 level); - [Slot(1576)] + [Slot(1579)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glNamedFramebufferTextureLayer(UInt32 framebuffer, System.Int32 attachment, UInt32 texture, Int32 level, Int32 layer); - [Slot(1590)] + [Slot(1593)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glNamedRenderbufferStorage(UInt32 renderbuffer, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(1592)] + [Slot(1595)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glNamedRenderbufferStorageMultisample(UInt32 renderbuffer, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(1596)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNewList(UInt32 list, System.Int32 mode); - [Slot(1598)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNormal3b(SByte nx, SByte ny, SByte nz); [Slot(1599)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glNormal3bv([CountAttribute(Count = 3)] SByte* v); - [Slot(1600)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNormal3d(Double nx, Double ny, Double nz); + private static extern void glNewList(UInt32 list, System.Int32 mode); [Slot(1601)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glNormal3dv([CountAttribute(Count = 3)] Double* v); + private static extern void glNormal3b(SByte nx, SByte ny, SByte nz); [Slot(1602)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNormal3f(Single nx, Single ny, Single nz); + private static extern unsafe void glNormal3bv([CountAttribute(Count = 3)] SByte* v); [Slot(1603)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNormal3d(Double nx, Double ny, Double nz); + [Slot(1604)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glNormal3dv([CountAttribute(Count = 3)] Double* v); + [Slot(1605)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNormal3f(Single nx, Single ny, Single nz); + [Slot(1606)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glNormal3fv([CountAttribute(Count = 3)] Single* v); - [Slot(1608)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNormal3i(Int32 nx, Int32 ny, Int32 nz); - [Slot(1609)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glNormal3iv([CountAttribute(Count = 3)] Int32* v); - [Slot(1610)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNormal3s(Int16 nx, Int16 ny, Int16 nz); [Slot(1611)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNormal3i(Int32 nx, Int32 ny, Int32 nz); + [Slot(1612)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glNormal3iv([CountAttribute(Count = 3)] Int32* v); + [Slot(1613)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNormal3s(Int16 nx, Int16 ny, Int16 nz); + [Slot(1614)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glNormal3sv([CountAttribute(Count = 3)] Int16* v); - [Slot(1615)] + [Slot(1618)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glNormalP3ui(System.Int32 type, UInt32 coords); - [Slot(1616)] + [Slot(1619)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glNormalP3uiv(System.Int32 type, [CountAttribute(Count = 1)] UInt32* coords); - [Slot(1617)] + [Slot(1620)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glNormalPointer(System.Int32 type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer); - [Slot(1631)] + [Slot(1634)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glObjectLabel(System.Int32 identifier, UInt32 name, Int32 length, [CountAttribute(Computed = "label,length")] IntPtr label); - [Slot(1633)] + [Slot(1636)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glObjectPtrLabel(IntPtr ptr, Int32 length, [CountAttribute(Computed = "label,length")] IntPtr label); - [Slot(1637)] + [Slot(1640)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glOrtho(Double left, Double right, Double bottom, Double top, Double zNear, Double zFar); - [Slot(1641)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPassThrough(Single token); - [Slot(1643)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPatchParameterfv(System.Int32 pname, [CountAttribute(Computed = "pname")] Single* values); [Slot(1644)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPatchParameteri(System.Int32 pname, Int32 value); - [Slot(1666)] + private static extern void glPassThrough(Single token); + [Slot(1646)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPauseTransformFeedback(); + private static extern unsafe void glPatchParameterfv(System.Int32 pname, [CountAttribute(Computed = "pname")] Single* values); + [Slot(1647)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPatchParameteri(System.Int32 pname, Int32 value); [Slot(1669)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPixelMapfv(System.Int32 map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] Single* values); - [Slot(1670)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPixelMapuiv(System.Int32 map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] UInt32* values); - [Slot(1671)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPixelMapusv(System.Int32 map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] UInt16* values); + private static extern void glPauseTransformFeedback(); [Slot(1672)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPixelMapx(System.Int32 map, Int32 size, [CountAttribute(Parameter = "size")] Int32* values); + private static extern unsafe void glPixelMapfv(System.Int32 map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] Single* values); [Slot(1673)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPixelStoref(System.Int32 pname, Single param); + private static extern unsafe void glPixelMapuiv(System.Int32 map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] UInt32* values); [Slot(1674)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPixelStorei(System.Int32 pname, Int32 param); + private static extern unsafe void glPixelMapusv(System.Int32 map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] UInt16* values); [Slot(1675)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glPixelMapx(System.Int32 map, Int32 size, [CountAttribute(Parameter = "size")] Int32* values); + [Slot(1676)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPixelStoref(System.Int32 pname, Single param); + [Slot(1677)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPixelStorei(System.Int32 pname, Int32 param); + [Slot(1678)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPixelStorex(System.Int32 pname, Int32 param); - [Slot(1681)] + [Slot(1684)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPixelTransferf(System.Int32 pname, Single param); - [Slot(1682)] + [Slot(1685)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPixelTransferi(System.Int32 pname, Int32 param); - [Slot(1688)] + [Slot(1691)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPixelZoom(Single xfactor, Single yfactor); - [Slot(1693)] + [Slot(1696)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPointParameterf(System.Int32 pname, Single param); - [Slot(1697)] + [Slot(1700)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glPointParameterfv(System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); - [Slot(1701)] + [Slot(1704)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPointParameteri(System.Int32 pname, Int32 param); - [Slot(1703)] + [Slot(1706)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glPointParameteriv(System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); - [Slot(1707)] + [Slot(1710)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPointSize(Single size); - [Slot(1711)] + [Slot(1714)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPolygonMode(System.Int32 face, System.Int32 mode); - [Slot(1712)] + [Slot(1715)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPolygonOffset(Single factor, Single units); - [Slot(1713)] + [Slot(1716)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPolygonOffsetClamp(Single factor, Single units, Single clamp); - [Slot(1717)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPolygonStipple([CountAttribute(Computed = "")] Byte* mask); - [Slot(1718)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPopAttrib(); - [Slot(1719)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPopClientAttrib(); [Slot(1720)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPopDebugGroup(); + private static extern unsafe void glPolygonStipple([CountAttribute(Computed = "")] Byte* mask); + [Slot(1721)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPopAttrib(); + [Slot(1722)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPopClientAttrib(); [Slot(1723)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPopDebugGroup(); + [Slot(1726)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPopMatrix(); - [Slot(1724)] + [Slot(1727)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPopName(); - [Slot(1728)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPrimitiveRestartIndex(UInt32 index); [Slot(1731)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures, [CountAttribute(Parameter = "n")] Single* priorities); + private static extern void glPrimitiveRestartIndex(UInt32 index); [Slot(1734)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glPrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures, [CountAttribute(Parameter = "n")] Single* priorities); + [Slot(1737)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramBinary(UInt32 program, System.Int32 binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length); - [Slot(1768)] + [Slot(1771)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramParameteri(UInt32 program, System.Int32 pname, Int32 value); - [Slot(1776)] + [Slot(1779)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform1d(UInt32 program, Int32 location, Double v0); - [Slot(1778)] + [Slot(1781)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform1dv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double* value); - [Slot(1780)] + [Slot(1783)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform1f(UInt32 program, Int32 location, Single v0); - [Slot(1782)] + [Slot(1785)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform1fv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value); - [Slot(1784)] + [Slot(1787)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform1i(UInt32 program, Int32 location, Int32 v0); - [Slot(1790)] + [Slot(1793)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform1iv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value); - [Slot(1792)] + [Slot(1795)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform1ui(UInt32 program, Int32 location, UInt32 v0); - [Slot(1798)] + [Slot(1801)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform1uiv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32* value); - [Slot(1800)] + [Slot(1803)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform2d(UInt32 program, Int32 location, Double v0, Double v1); - [Slot(1802)] + [Slot(1805)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform2dv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value); - [Slot(1804)] + [Slot(1807)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform2f(UInt32 program, Int32 location, Single v0, Single v1); - [Slot(1806)] + [Slot(1809)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform2fv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value); - [Slot(1808)] + [Slot(1811)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform2i(UInt32 program, Int32 location, Int32 v0, Int32 v1); - [Slot(1814)] + [Slot(1817)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform2iv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value); - [Slot(1816)] + [Slot(1819)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform2ui(UInt32 program, Int32 location, UInt32 v0, UInt32 v1); - [Slot(1822)] + [Slot(1825)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform2uiv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value); - [Slot(1824)] + [Slot(1827)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform3d(UInt32 program, Int32 location, Double v0, Double v1, Double v2); - [Slot(1826)] + [Slot(1829)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform3dv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value); - [Slot(1828)] + [Slot(1831)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform3f(UInt32 program, Int32 location, Single v0, Single v1, Single v2); - [Slot(1830)] + [Slot(1833)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform3fv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value); - [Slot(1832)] + [Slot(1835)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform3i(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2); - [Slot(1838)] + [Slot(1841)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform3iv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value); - [Slot(1840)] + [Slot(1843)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform3ui(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2); - [Slot(1846)] + [Slot(1849)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform3uiv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value); - [Slot(1848)] + [Slot(1851)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform4d(UInt32 program, Int32 location, Double v0, Double v1, Double v2, Double v3); - [Slot(1850)] + [Slot(1853)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform4dv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value); - [Slot(1852)] + [Slot(1855)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform4f(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3); - [Slot(1854)] + [Slot(1857)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform4fv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value); - [Slot(1856)] + [Slot(1859)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform4i(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3); - [Slot(1862)] + [Slot(1865)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform4iv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value); - [Slot(1864)] + [Slot(1867)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform4ui(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3); - [Slot(1870)] + [Slot(1873)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform4uiv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value); - [Slot(1876)] + [Slot(1879)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix2dv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value); - [Slot(1878)] + [Slot(1881)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix2fv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value); - [Slot(1880)] + [Slot(1883)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix2x3dv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value); - [Slot(1882)] + [Slot(1885)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix2x3fv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); - [Slot(1884)] + [Slot(1887)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix2x4dv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value); - [Slot(1886)] + [Slot(1889)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix2x4fv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); - [Slot(1888)] + [Slot(1891)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix3dv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value); - [Slot(1890)] + [Slot(1893)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix3fv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value); - [Slot(1892)] + [Slot(1895)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix3x2dv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value); - [Slot(1894)] + [Slot(1897)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix3x2fv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); - [Slot(1896)] + [Slot(1899)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix3x4dv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value); - [Slot(1898)] + [Slot(1901)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix3x4fv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); - [Slot(1900)] + [Slot(1903)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix4dv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value); - [Slot(1902)] + [Slot(1905)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix4fv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value); - [Slot(1904)] + [Slot(1907)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix4x2dv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value); - [Slot(1906)] + [Slot(1909)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix4x2fv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); - [Slot(1908)] + [Slot(1911)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix4x3dv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value); - [Slot(1910)] + [Slot(1913)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix4x3fv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); - [Slot(1915)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProvokingVertex(System.Int32 mode); - [Slot(1917)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPushAttrib(System.Int32 mask); [Slot(1918)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPushClientAttrib(System.Int32 mask); + private static extern void glProvokingVertex(System.Int32 mode); [Slot(1920)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPushDebugGroup(System.Int32 source, UInt32 id, Int32 length, [CountAttribute(Computed = "message,length")] IntPtr message); + private static extern void glPushAttrib(System.Int32 mask); + [Slot(1921)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPushClientAttrib(System.Int32 mask); [Slot(1923)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPushDebugGroup(System.Int32 source, UInt32 id, Int32 length, [CountAttribute(Computed = "message,length")] IntPtr message); + [Slot(1926)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPushMatrix(); - [Slot(1924)] + [Slot(1927)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPushName(UInt32 name); - [Slot(1925)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glQueryCounter(UInt32 id, System.Int32 target); [Slot(1928)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRasterPos2d(Double x, Double y); - [Slot(1929)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glRasterPos2dv([CountAttribute(Count = 2)] Double* v); - [Slot(1930)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRasterPos2f(Single x, Single y); - [Slot(1931)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glRasterPos2fv([CountAttribute(Count = 2)] Single* v); - [Slot(1932)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRasterPos2i(Int32 x, Int32 y); + private static extern void glQueryCounter(UInt32 id, System.Int32 target); [Slot(1933)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glRasterPos2iv([CountAttribute(Count = 2)] Int32* v); + private static extern void glRasterPos2d(Double x, Double y); [Slot(1934)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRasterPos2s(Int16 x, Int16 y); + private static extern unsafe void glRasterPos2dv([CountAttribute(Count = 2)] Double* v); [Slot(1935)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glRasterPos2sv([CountAttribute(Count = 2)] Int16* v); + private static extern void glRasterPos2f(Single x, Single y); + [Slot(1936)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glRasterPos2fv([CountAttribute(Count = 2)] Single* v); + [Slot(1937)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glRasterPos2i(Int32 x, Int32 y); [Slot(1938)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRasterPos3d(Double x, Double y, Double z); + private static extern unsafe void glRasterPos2iv([CountAttribute(Count = 2)] Int32* v); [Slot(1939)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glRasterPos3dv([CountAttribute(Count = 3)] Double* v); + private static extern void glRasterPos2s(Int16 x, Int16 y); [Slot(1940)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRasterPos3f(Single x, Single y, Single z); - [Slot(1941)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glRasterPos3fv([CountAttribute(Count = 3)] Single* v); - [Slot(1942)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRasterPos3i(Int32 x, Int32 y, Int32 z); + private static extern unsafe void glRasterPos2sv([CountAttribute(Count = 2)] Int16* v); [Slot(1943)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glRasterPos3iv([CountAttribute(Count = 3)] Int32* v); + private static extern void glRasterPos3d(Double x, Double y, Double z); [Slot(1944)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRasterPos3s(Int16 x, Int16 y, Int16 z); + private static extern unsafe void glRasterPos3dv([CountAttribute(Count = 3)] Double* v); [Slot(1945)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glRasterPos3sv([CountAttribute(Count = 3)] Int16* v); + private static extern void glRasterPos3f(Single x, Single y, Single z); + [Slot(1946)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glRasterPos3fv([CountAttribute(Count = 3)] Single* v); + [Slot(1947)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glRasterPos3i(Int32 x, Int32 y, Int32 z); [Slot(1948)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRasterPos4d(Double x, Double y, Double z, Double w); + private static extern unsafe void glRasterPos3iv([CountAttribute(Count = 3)] Int32* v); [Slot(1949)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glRasterPos4dv([CountAttribute(Count = 4)] Double* v); + private static extern void glRasterPos3s(Int16 x, Int16 y, Int16 z); [Slot(1950)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRasterPos4f(Single x, Single y, Single z, Single w); - [Slot(1951)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glRasterPos4fv([CountAttribute(Count = 4)] Single* v); - [Slot(1952)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRasterPos4i(Int32 x, Int32 y, Int32 z, Int32 w); + private static extern unsafe void glRasterPos3sv([CountAttribute(Count = 3)] Int16* v); [Slot(1953)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glRasterPos4iv([CountAttribute(Count = 4)] Int32* v); + private static extern void glRasterPos4d(Double x, Double y, Double z, Double w); [Slot(1954)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRasterPos4s(Int16 x, Int16 y, Int16 z, Int16 w); + private static extern unsafe void glRasterPos4dv([CountAttribute(Count = 4)] Double* v); [Slot(1955)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glRasterPos4sv([CountAttribute(Count = 4)] Int16* v); + private static extern void glRasterPos4f(Single x, Single y, Single z, Single w); + [Slot(1956)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glRasterPos4fv([CountAttribute(Count = 4)] Single* v); + [Slot(1957)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glRasterPos4i(Int32 x, Int32 y, Int32 z, Int32 w); + [Slot(1958)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glRasterPos4iv([CountAttribute(Count = 4)] Int32* v); [Slot(1959)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glReadBuffer(System.Int32 src); - [Slot(1961)] + private static extern void glRasterPos4s(Int16 x, Int16 y, Int16 z, Int16 w); + [Slot(1960)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute] IntPtr data); + private static extern unsafe void glRasterPos4sv([CountAttribute(Count = 4)] Int16* v); [Slot(1964)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, System.Int32 format, System.Int32 type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); - [Slot(1965)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRectd(Double x1, Double y1, Double x2, Double y2); + private static extern void glReadBuffer(System.Int32 src); [Slot(1966)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glRectdv([CountAttribute(Count = 2)] Double* v1, [CountAttribute(Count = 2)] Double* v2); - [Slot(1967)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRectf(Single x1, Single y1, Single x2, Single y2); - [Slot(1968)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glRectfv([CountAttribute(Count = 2)] Single* v1, [CountAttribute(Count = 2)] Single* v2); + private static extern void glReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute] IntPtr data); [Slot(1969)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRecti(Int32 x1, Int32 y1, Int32 x2, Int32 y2); + private static extern void glReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, System.Int32 format, System.Int32 type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); [Slot(1970)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glRectiv([CountAttribute(Count = 2)] Int32* v1, [CountAttribute(Count = 2)] Int32* v2); + private static extern void glRectd(Double x1, Double y1, Double x2, Double y2); [Slot(1971)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRects(Int16 x1, Int16 y1, Int16 x2, Int16 y2); + private static extern unsafe void glRectdv([CountAttribute(Count = 2)] Double* v1, [CountAttribute(Count = 2)] Double* v2); [Slot(1972)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glRectsv([CountAttribute(Count = 2)] Int16* v1, [CountAttribute(Count = 2)] Int16* v2); + private static extern void glRectf(Single x1, Single y1, Single x2, Single y2); + [Slot(1973)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glRectfv([CountAttribute(Count = 2)] Single* v1, [CountAttribute(Count = 2)] Single* v2); + [Slot(1974)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glRecti(Int32 x1, Int32 y1, Int32 x2, Int32 y2); + [Slot(1975)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glRectiv([CountAttribute(Count = 2)] Int32* v1, [CountAttribute(Count = 2)] Int32* v2); + [Slot(1976)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glRects(Int16 x1, Int16 y1, Int16 x2, Int16 y2); [Slot(1977)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glRectsv([CountAttribute(Count = 2)] Int16* v1, [CountAttribute(Count = 2)] Int16* v2); + [Slot(1982)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glReleaseShaderCompiler(); - [Slot(1978)] + [Slot(1983)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glRenderbufferStorage(System.Int32 target, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(1980)] + [Slot(1985)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glRenderbufferStorageMultisample(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(1984)] + [Slot(1989)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int32 glRenderMode(System.Int32 mode); - [Slot(2009)] + [Slot(2014)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glResetHistogram(System.Int32 target); - [Slot(2011)] + [Slot(2016)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glResetMinmax(System.Int32 target); - [Slot(2015)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glResumeTransformFeedback(); - [Slot(2017)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRotated(Double angle, Double x, Double y, Double z); - [Slot(2018)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRotatef(Single angle, Single x, Single y, Single z); [Slot(2020)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSampleCoverage(Single value, bool invert); + private static extern void glResumeTransformFeedback(); + [Slot(2022)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glRotated(Double angle, Double x, Double y, Double z); + [Slot(2023)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glRotatef(Single angle, Single x, Single y, Single z); [Slot(2025)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSampleMaski(UInt32 maskNumber, UInt32 mask); + private static extern void glSampleCoverage(Single value, bool invert); [Slot(2030)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSamplerParameterf(UInt32 sampler, System.Int32 pname, Single param); - [Slot(2031)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glSamplerParameterfv(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* param); - [Slot(2032)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSamplerParameteri(UInt32 sampler, System.Int32 pname, Int32 param); - [Slot(2033)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glSamplerParameterIiv(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* param); - [Slot(2034)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glSamplerParameterIuiv(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] UInt32* param); + private static extern void glSampleMaski(UInt32 maskNumber, UInt32 mask); [Slot(2035)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glSamplerParameteriv(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* param); + private static extern void glSamplerParameterf(UInt32 sampler, System.Int32 pname, Single param); [Slot(2036)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glScaled(Double x, Double y, Double z); + private static extern unsafe void glSamplerParameterfv(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* param); [Slot(2037)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glScalef(Single x, Single y, Single z); + private static extern void glSamplerParameteri(UInt32 sampler, System.Int32 pname, Int32 param); + [Slot(2038)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glSamplerParameterIiv(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* param); [Slot(2039)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glScissor(Int32 x, Int32 y, Int32 width, Int32 height); + private static extern unsafe void glSamplerParameterIuiv(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] UInt32* param); [Slot(2040)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glScissorArrayv(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v); + private static extern unsafe void glSamplerParameteriv(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* param); [Slot(2041)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glScissorIndexed(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height); + private static extern void glScaled(Double x, Double y, Double z); [Slot(2042)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glScissorIndexedv(UInt32 index, [CountAttribute(Count = 4)] Int32* v); - [Slot(2043)] + private static extern void glScalef(Single x, Single y, Single z); + [Slot(2044)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSecondaryColor3b(SByte red, SByte green, SByte blue); + private static extern void glScissor(Int32 x, Int32 y, Int32 width, Int32 height); [Slot(2045)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glSecondaryColor3bv([CountAttribute(Count = 3)] SByte* v); + private static extern unsafe void glScissorArrayv(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v); + [Slot(2046)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glScissorIndexed(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height); [Slot(2047)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glScissorIndexedv(UInt32 index, [CountAttribute(Count = 4)] Int32* v); + [Slot(2048)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glSecondaryColor3b(SByte red, SByte green, SByte blue); + [Slot(2050)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glSecondaryColor3bv([CountAttribute(Count = 3)] SByte* v); + [Slot(2052)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glSecondaryColor3d(Double red, Double green, Double blue); - [Slot(2049)] + [Slot(2054)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glSecondaryColor3dv([CountAttribute(Count = 3)] Double* v); - [Slot(2051)] + [Slot(2056)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glSecondaryColor3f(Single red, Single green, Single blue); - [Slot(2053)] + [Slot(2058)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glSecondaryColor3fv([CountAttribute(Count = 3)] Single* v); - [Slot(2057)] + [Slot(2062)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glSecondaryColor3i(Int32 red, Int32 green, Int32 blue); - [Slot(2059)] + [Slot(2064)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glSecondaryColor3iv([CountAttribute(Count = 3)] Int32* v); - [Slot(2061)] + [Slot(2066)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glSecondaryColor3s(Int16 red, Int16 green, Int16 blue); - [Slot(2063)] + [Slot(2068)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glSecondaryColor3sv([CountAttribute(Count = 3)] Int16* v); - [Slot(2065)] + [Slot(2070)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glSecondaryColor3ub(Byte red, Byte green, Byte blue); - [Slot(2067)] + [Slot(2072)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glSecondaryColor3ubv([CountAttribute(Count = 3)] Byte* v); - [Slot(2069)] + [Slot(2074)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glSecondaryColor3ui(UInt32 red, UInt32 green, UInt32 blue); - [Slot(2071)] + [Slot(2076)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glSecondaryColor3uiv([CountAttribute(Count = 3)] UInt32* v); - [Slot(2073)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSecondaryColor3us(UInt16 red, UInt16 green, UInt16 blue); - [Slot(2075)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glSecondaryColor3usv([CountAttribute(Count = 3)] UInt16* v); [Slot(2078)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSecondaryColorP3ui(System.Int32 type, UInt32 color); - [Slot(2079)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glSecondaryColorP3uiv(System.Int32 type, [CountAttribute(Count = 1)] UInt32* color); + private static extern void glSecondaryColor3us(UInt16 red, UInt16 green, UInt16 blue); [Slot(2080)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSecondaryColorPointer(Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer); + private static extern unsafe void glSecondaryColor3usv([CountAttribute(Count = 3)] UInt16* v); [Slot(2083)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glSecondaryColorP3ui(System.Int32 type, UInt32 color); + [Slot(2084)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glSecondaryColorP3uiv(System.Int32 type, [CountAttribute(Count = 1)] UInt32* color); + [Slot(2085)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glSecondaryColorPointer(Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer); + [Slot(2088)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glSelectBuffer(Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32* buffer); - [Slot(2086)] + [Slot(2091)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glSeparableFilter2D(System.Int32 target, System.Int32 internalformat, Int32 width, Int32 height, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "target,format,type,width")] IntPtr row, [CountAttribute(Computed = "target,format,type,height")] IntPtr column); - [Slot(2094)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glShadeModel(System.Int32 mode); - [Slot(2095)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, System.Int32 binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length); [Slot(2099)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] IntPtr @string, [CountAttribute(Parameter = "count")] Int32* length); - [Slot(2101)] + private static extern void glShadeModel(System.Int32 mode); + [Slot(2100)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glShaderStorageBlockBinding(UInt32 program, UInt32 storageBlockIndex, UInt32 storageBlockBinding); + private static extern unsafe void glShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, System.Int32 binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length); + [Slot(2104)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] IntPtr @string, [CountAttribute(Parameter = "count")] Int32* length); [Slot(2106)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glShaderStorageBlockBinding(UInt32 program, UInt32 storageBlockIndex, UInt32 storageBlockBinding); + [Slot(2111)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glSpecializeShader(UInt32 shader, IntPtr pEntryPoint, UInt32 numSpecializationConstants, UInt32* pConstantIndex, UInt32* pConstantValue); - [Slot(2117)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilFunc(System.Int32 func, Int32 @ref, UInt32 mask); - [Slot(2118)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilFuncSeparate(System.Int32 face, System.Int32 func, Int32 @ref, UInt32 mask); - [Slot(2120)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilMask(UInt32 mask); - [Slot(2121)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilMaskSeparate(System.Int32 face, UInt32 mask); [Slot(2122)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilOp(System.Int32 fail, System.Int32 zfail, System.Int32 zpass); + private static extern void glStencilFunc(System.Int32 func, Int32 @ref, UInt32 mask); [Slot(2123)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glStencilFuncSeparate(System.Int32 face, System.Int32 func, Int32 @ref, UInt32 mask); + [Slot(2125)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glStencilMask(UInt32 mask); + [Slot(2126)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glStencilMaskSeparate(System.Int32 face, UInt32 mask); + [Slot(2127)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glStencilOp(System.Int32 fail, System.Int32 zfail, System.Int32 zpass); + [Slot(2128)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glStencilOpSeparate(System.Int32 face, System.Int32 sfail, System.Int32 dpfail, System.Int32 dppass); - [Slot(2155)] + [Slot(2160)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexBuffer(System.Int32 target, System.Int32 internalformat, UInt32 buffer); - [Slot(2158)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexBufferRange(System.Int32 target, System.Int32 internalformat, UInt32 buffer, IntPtr offset, IntPtr size); [Slot(2163)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexBufferRange(System.Int32 target, System.Int32 internalformat, UInt32 buffer, IntPtr offset, IntPtr size); + [Slot(2168)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexCoord1d(Double s); - [Slot(2164)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexCoord1dv([CountAttribute(Count = 1)] Double* v); - [Slot(2165)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexCoord1f(Single s); - [Slot(2166)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexCoord1fv([CountAttribute(Count = 1)] Single* v); [Slot(2169)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexCoord1i(Int32 s); + private static extern unsafe void glTexCoord1dv([CountAttribute(Count = 1)] Double* v); [Slot(2170)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexCoord1iv([CountAttribute(Count = 1)] Int32* v); + private static extern void glTexCoord1f(Single s); [Slot(2171)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexCoord1s(Int16 s); - [Slot(2172)] + private static extern unsafe void glTexCoord1fv([CountAttribute(Count = 1)] Single* v); + [Slot(2174)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexCoord1sv([CountAttribute(Count = 1)] Int16* v); + private static extern void glTexCoord1i(Int32 s); + [Slot(2175)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexCoord1iv([CountAttribute(Count = 1)] Int32* v); + [Slot(2176)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexCoord1s(Int16 s); [Slot(2177)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexCoord1sv([CountAttribute(Count = 1)] Int16* v); + [Slot(2182)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexCoord2d(Double s, Double t); - [Slot(2178)] + [Slot(2183)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTexCoord2dv([CountAttribute(Count = 2)] Double* v); - [Slot(2179)] + [Slot(2184)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexCoord2f(Single s, Single t); - [Slot(2188)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexCoord2fv([CountAttribute(Count = 2)] Single* v); [Slot(2193)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexCoord2fv([CountAttribute(Count = 2)] Single* v); + [Slot(2198)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexCoord2i(Int32 s, Int32 t); - [Slot(2194)] + [Slot(2199)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTexCoord2iv([CountAttribute(Count = 2)] Int32* v); - [Slot(2195)] + [Slot(2200)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexCoord2s(Int16 s, Int16 t); - [Slot(2196)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexCoord2sv([CountAttribute(Count = 2)] Int16* v); [Slot(2201)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexCoord2sv([CountAttribute(Count = 2)] Int16* v); + [Slot(2206)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexCoord3d(Double s, Double t, Double r); - [Slot(2202)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexCoord3dv([CountAttribute(Count = 3)] Double* v); - [Slot(2203)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexCoord3f(Single s, Single t, Single r); - [Slot(2204)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexCoord3fv([CountAttribute(Count = 3)] Single* v); [Slot(2207)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexCoord3i(Int32 s, Int32 t, Int32 r); + private static extern unsafe void glTexCoord3dv([CountAttribute(Count = 3)] Double* v); [Slot(2208)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexCoord3iv([CountAttribute(Count = 3)] Int32* v); + private static extern void glTexCoord3f(Single s, Single t, Single r); [Slot(2209)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexCoord3s(Int16 s, Int16 t, Int16 r); - [Slot(2210)] + private static extern unsafe void glTexCoord3fv([CountAttribute(Count = 3)] Single* v); + [Slot(2212)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexCoord3sv([CountAttribute(Count = 3)] Int16* v); + private static extern void glTexCoord3i(Int32 s, Int32 t, Int32 r); + [Slot(2213)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexCoord3iv([CountAttribute(Count = 3)] Int32* v); + [Slot(2214)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexCoord3s(Int16 s, Int16 t, Int16 r); [Slot(2215)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexCoord4d(Double s, Double t, Double r, Double q); - [Slot(2216)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexCoord4dv([CountAttribute(Count = 4)] Double* v); - [Slot(2217)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexCoord4f(Single s, Single t, Single r, Single q); + private static extern unsafe void glTexCoord3sv([CountAttribute(Count = 3)] Int16* v); [Slot(2220)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexCoord4fv([CountAttribute(Count = 4)] Single* v); + private static extern void glTexCoord4d(Double s, Double t, Double r, Double q); + [Slot(2221)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexCoord4dv([CountAttribute(Count = 4)] Double* v); + [Slot(2222)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexCoord4f(Single s, Single t, Single r, Single q); [Slot(2225)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexCoord4fv([CountAttribute(Count = 4)] Single* v); + [Slot(2230)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexCoord4i(Int32 s, Int32 t, Int32 r, Int32 q); - [Slot(2226)] + [Slot(2231)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTexCoord4iv([CountAttribute(Count = 4)] Int32* v); - [Slot(2227)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexCoord4s(Int16 s, Int16 t, Int16 r, Int16 q); - [Slot(2228)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexCoord4sv([CountAttribute(Count = 4)] Int16* v); [Slot(2232)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexCoordP1ui(System.Int32 type, UInt32 coords); + private static extern void glTexCoord4s(Int16 s, Int16 t, Int16 r, Int16 q); [Slot(2233)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexCoordP1uiv(System.Int32 type, [CountAttribute(Count = 1)] UInt32* coords); - [Slot(2234)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexCoordP2ui(System.Int32 type, UInt32 coords); - [Slot(2235)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexCoordP2uiv(System.Int32 type, [CountAttribute(Count = 1)] UInt32* coords); - [Slot(2236)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexCoordP3ui(System.Int32 type, UInt32 coords); + private static extern unsafe void glTexCoord4sv([CountAttribute(Count = 4)] Int16* v); [Slot(2237)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexCoordP3uiv(System.Int32 type, [CountAttribute(Count = 1)] UInt32* coords); + private static extern void glTexCoordP1ui(System.Int32 type, UInt32 coords); [Slot(2238)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexCoordP4ui(System.Int32 type, UInt32 coords); + private static extern unsafe void glTexCoordP1uiv(System.Int32 type, [CountAttribute(Count = 1)] UInt32* coords); [Slot(2239)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexCoordP4uiv(System.Int32 type, [CountAttribute(Count = 1)] UInt32* coords); + private static extern void glTexCoordP2ui(System.Int32 type, UInt32 coords); [Slot(2240)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexCoordPointer(Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer); + private static extern unsafe void glTexCoordP2uiv(System.Int32 type, [CountAttribute(Count = 1)] UInt32* coords); + [Slot(2241)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexCoordP3ui(System.Int32 type, UInt32 coords); + [Slot(2242)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexCoordP3uiv(System.Int32 type, [CountAttribute(Count = 1)] UInt32* coords); + [Slot(2243)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexCoordP4ui(System.Int32 type, UInt32 coords); [Slot(2244)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexEnvf(System.Int32 target, System.Int32 pname, Single param); + private static extern unsafe void glTexCoordP4uiv(System.Int32 type, [CountAttribute(Count = 1)] UInt32* coords); [Slot(2245)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexCoordPointer(Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer); + [Slot(2249)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexEnvf(System.Int32 target, System.Int32 pname, Single param); + [Slot(2250)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTexEnvfv(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); - [Slot(2246)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexEnvi(System.Int32 target, System.Int32 pname, Int32 param); - [Slot(2247)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexEnviv(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); [Slot(2251)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexGend(System.Int32 coord, System.Int32 pname, Double param); + private static extern void glTexEnvi(System.Int32 target, System.Int32 pname, Int32 param); [Slot(2252)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexGendv(System.Int32 coord, System.Int32 pname, [CountAttribute(Computed = "pname")] Double* @params); - [Slot(2253)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexGenf(System.Int32 coord, System.Int32 pname, Single param); - [Slot(2254)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexGenfv(System.Int32 coord, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); - [Slot(2255)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexGeni(System.Int32 coord, System.Int32 pname, Int32 param); + private static extern unsafe void glTexEnviv(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); [Slot(2256)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexGeniv(System.Int32 coord, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + private static extern void glTexGend(System.Int32 coord, System.Int32 pname, Double param); + [Slot(2257)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexGendv(System.Int32 coord, System.Int32 pname, [CountAttribute(Computed = "pname")] Double* @params); + [Slot(2258)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexGenf(System.Int32 coord, System.Int32 pname, Single param); [Slot(2259)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexImage1D(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels); + private static extern unsafe void glTexGenfv(System.Int32 coord, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); [Slot(2260)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexImage2D(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); + private static extern void glTexGeni(System.Int32 coord, System.Int32 pname, Int32 param); [Slot(2261)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexImage2DMultisample(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height, bool fixedsamplelocations); - [Slot(2263)] + private static extern unsafe void glTexGeniv(System.Int32 coord, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + [Slot(2264)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexImage3D(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels); + private static extern void glTexImage1D(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels); [Slot(2265)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexImage3DMultisample(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations); - [Slot(2269)] + private static extern void glTexImage2D(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); + [Slot(2266)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexParameterf(System.Int32 target, System.Int32 pname, Single param); + private static extern void glTexImage2DMultisample(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height, bool fixedsamplelocations); + [Slot(2268)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexImage3D(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels); [Slot(2270)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexParameterfv(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); - [Slot(2271)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexParameteri(System.Int32 target, System.Int32 pname, Int32 param); - [Slot(2272)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexParameterIiv(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + private static extern void glTexImage3DMultisample(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations); [Slot(2274)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexParameterIuiv(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] UInt32* @params); + private static extern void glTexParameterf(System.Int32 target, System.Int32 pname, Single param); + [Slot(2275)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexParameterfv(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); [Slot(2276)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexParameteriv(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); - [Slot(2280)] + private static extern void glTexParameteri(System.Int32 target, System.Int32 pname, Int32 param); + [Slot(2277)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexStorage1D(System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width); + private static extern unsafe void glTexParameterIiv(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + [Slot(2279)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexParameterIuiv(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] UInt32* @params); [Slot(2281)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexParameteriv(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + [Slot(2285)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexStorage1D(System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width); + [Slot(2286)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexStorage2D(System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(2282)] + [Slot(2287)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexStorage2DMultisample(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height, bool fixedsamplelocations); - [Slot(2283)] + [Slot(2288)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexStorage3D(System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth); - [Slot(2284)] + [Slot(2289)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexStorage3DMultisample(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations); - [Slot(2291)] + [Slot(2296)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexSubImage1D(System.Int32 target, Int32 level, Int32 xoffset, Int32 width, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels); - [Slot(2293)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexSubImage2D(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); - [Slot(2295)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexSubImage3D(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels); [Slot(2298)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureBarrier(); + private static extern void glTexSubImage2D(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); [Slot(2300)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexSubImage3D(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels); + [Slot(2303)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureBarrier(); + [Slot(2305)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureBuffer(UInt32 texture, System.Int32 internalformat, UInt32 buffer); - [Slot(2302)] + [Slot(2307)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureBufferRange(UInt32 texture, System.Int32 internalformat, UInt32 buffer, IntPtr offset, IntPtr size); - [Slot(2316)] + [Slot(2321)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureParameterf(UInt32 texture, System.Int32 pname, Single param); - [Slot(2318)] + [Slot(2323)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTextureParameterfv(UInt32 texture, System.Int32 pname, Single* param); - [Slot(2320)] + [Slot(2325)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureParameteri(UInt32 texture, System.Int32 pname, Int32 param); - [Slot(2322)] + [Slot(2327)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTextureParameterIiv(UInt32 texture, System.Int32 pname, Int32* @params); - [Slot(2324)] + [Slot(2329)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTextureParameterIuiv(UInt32 texture, System.Int32 pname, UInt32* @params); - [Slot(2326)] + [Slot(2331)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTextureParameteriv(UInt32 texture, System.Int32 pname, Int32* param); - [Slot(2330)] + [Slot(2335)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureStorage1D(UInt32 texture, Int32 levels, System.Int32 internalformat, Int32 width); - [Slot(2332)] + [Slot(2337)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureStorage2D(UInt32 texture, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(2334)] + [Slot(2339)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureStorage2DMultisample(UInt32 texture, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height, bool fixedsamplelocations); - [Slot(2336)] + [Slot(2341)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureStorage3D(UInt32 texture, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth); - [Slot(2338)] + [Slot(2343)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureStorage3DMultisample(UInt32 texture, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations); - [Slot(2346)] + [Slot(2351)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, System.Int32 format, System.Int32 type, IntPtr pixels); - [Slot(2348)] + [Slot(2353)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, System.Int32 format, System.Int32 type, IntPtr pixels); - [Slot(2350)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, System.Int32 format, System.Int32 type, IntPtr pixels); - [Slot(2352)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureView(UInt32 texture, System.Int32 target, UInt32 origtexture, System.Int32 internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers); [Slot(2355)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, System.Int32 format, System.Int32 type, IntPtr pixels); + [Slot(2357)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureView(UInt32 texture, System.Int32 target, UInt32 origtexture, System.Int32 internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers); + [Slot(2360)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTransformFeedbackBufferBase(UInt32 xfb, UInt32 index, UInt32 buffer); - [Slot(2356)] + [Slot(2361)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTransformFeedbackBufferRange(UInt32 xfb, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size); - [Slot(2358)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] IntPtr varyings, System.Int32 bufferMode); - [Slot(2362)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTranslated(Double x, Double y, Double z); [Slot(2363)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTranslatef(Single x, Single y, Single z); - [Slot(2365)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform1d(Int32 location, Double x); - [Slot(2366)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform1dv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Double* value); + private static extern void glTransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] IntPtr varyings, System.Int32 bufferMode); [Slot(2367)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform1f(Int32 location, Single v0); - [Slot(2369)] + private static extern void glTranslated(Double x, Double y, Double z); + [Slot(2368)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform1fv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single* value); + private static extern void glTranslatef(Single x, Single y, Single z); + [Slot(2370)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glUniform1d(Int32 location, Double x); [Slot(2371)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniform1dv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Double* value); + [Slot(2372)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glUniform1f(Int32 location, Single v0); + [Slot(2374)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniform1fv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single* value); + [Slot(2376)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform1i(Int32 location, Int32 v0); - [Slot(2377)] + [Slot(2382)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform1iv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32* value); - [Slot(2379)] + [Slot(2384)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform1ui(Int32 location, UInt32 v0); - [Slot(2385)] + [Slot(2390)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform1uiv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32* value); - [Slot(2387)] + [Slot(2392)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform2d(Int32 location, Double x, Double y); - [Slot(2388)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform2dv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value); - [Slot(2389)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform2f(Int32 location, Single v0, Single v1); - [Slot(2391)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform2fv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value); [Slot(2393)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniform2dv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value); + [Slot(2394)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glUniform2f(Int32 location, Single v0, Single v1); + [Slot(2396)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniform2fv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value); + [Slot(2398)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform2i(Int32 location, Int32 v0, Int32 v1); - [Slot(2399)] + [Slot(2404)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform2iv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value); - [Slot(2401)] + [Slot(2406)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform2ui(Int32 location, UInt32 v0, UInt32 v1); - [Slot(2407)] + [Slot(2412)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform2uiv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value); - [Slot(2409)] + [Slot(2414)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform3d(Int32 location, Double x, Double y, Double z); - [Slot(2410)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform3dv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value); - [Slot(2411)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform3f(Int32 location, Single v0, Single v1, Single v2); - [Slot(2413)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform3fv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value); [Slot(2415)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniform3dv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value); + [Slot(2416)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glUniform3f(Int32 location, Single v0, Single v1, Single v2); + [Slot(2418)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniform3fv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value); + [Slot(2420)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform3i(Int32 location, Int32 v0, Int32 v1, Int32 v2); - [Slot(2421)] + [Slot(2426)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform3iv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value); - [Slot(2423)] + [Slot(2428)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform3ui(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2); - [Slot(2429)] + [Slot(2434)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform3uiv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value); - [Slot(2431)] + [Slot(2436)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform4d(Int32 location, Double x, Double y, Double z, Double w); - [Slot(2432)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform4dv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value); - [Slot(2433)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform4f(Int32 location, Single v0, Single v1, Single v2, Single v3); - [Slot(2435)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform4fv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value); [Slot(2437)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniform4dv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value); + [Slot(2438)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glUniform4f(Int32 location, Single v0, Single v1, Single v2, Single v3); + [Slot(2440)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniform4fv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value); + [Slot(2442)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform4i(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3); - [Slot(2443)] + [Slot(2448)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform4iv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value); - [Slot(2445)] + [Slot(2450)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform4ui(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3); - [Slot(2451)] + [Slot(2456)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform4uiv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value); - [Slot(2453)] + [Slot(2458)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniformBlockBinding(UInt32 program, UInt32 uniformBlockIndex, UInt32 uniformBlockBinding); - [Slot(2459)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix2dv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value); - [Slot(2460)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix2fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value); - [Slot(2462)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix2x3dv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value); - [Slot(2463)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix2x3fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); [Slot(2464)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix2x4dv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value); + private static extern unsafe void glUniformMatrix2dv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value); [Slot(2465)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix2x4fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); - [Slot(2466)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix3dv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value); + private static extern unsafe void glUniformMatrix2fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value); [Slot(2467)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix3fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value); + private static extern unsafe void glUniformMatrix2x3dv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value); + [Slot(2468)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniformMatrix2x3fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); [Slot(2469)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix3x2dv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value); + private static extern unsafe void glUniformMatrix2x4dv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value); [Slot(2470)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix3x2fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); + private static extern unsafe void glUniformMatrix2x4fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); [Slot(2471)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix3x4dv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value); + private static extern unsafe void glUniformMatrix3dv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value); [Slot(2472)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix3x4fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); - [Slot(2473)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix4dv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value); + private static extern unsafe void glUniformMatrix3fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value); [Slot(2474)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix4fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value); + private static extern unsafe void glUniformMatrix3x2dv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value); + [Slot(2475)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniformMatrix3x2fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); [Slot(2476)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix4x2dv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value); + private static extern unsafe void glUniformMatrix3x4dv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value); [Slot(2477)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix4x2fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); + private static extern unsafe void glUniformMatrix3x4fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); [Slot(2478)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix4x3dv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value); + private static extern unsafe void glUniformMatrix4dv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value); [Slot(2479)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix4x3fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); - [Slot(2480)] + private static extern unsafe void glUniformMatrix4fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value); + [Slot(2481)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformSubroutinesuiv(System.Int32 shadertype, Int32 count, [CountAttribute(Parameter = "count")] UInt32* indices); + private static extern unsafe void glUniformMatrix4x2dv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value); + [Slot(2482)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniformMatrix4x2fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); + [Slot(2483)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniformMatrix4x3dv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value); [Slot(2484)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glUnmapBuffer(System.Int32 target); - [Slot(2486)] + private static extern unsafe void glUniformMatrix4x3fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); + [Slot(2485)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glUnmapNamedBuffer(UInt32 buffer); + private static extern unsafe void glUniformSubroutinesuiv(System.Int32 shadertype, Int32 count, [CountAttribute(Parameter = "count")] UInt32* indices); + [Slot(2489)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glUnmapBuffer(System.Int32 target); [Slot(2491)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUseProgram(UInt32 program); - [Slot(2493)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUseProgramStages(UInt32 pipeline, System.Int32 stages, UInt32 program); + private static extern byte glUnmapNamedBuffer(UInt32 buffer); [Slot(2496)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glValidateProgram(UInt32 program); + private static extern void glUseProgram(UInt32 program); [Slot(2498)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glUseProgramStages(UInt32 pipeline, System.Int32 stages, UInt32 program); + [Slot(2501)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glValidateProgram(UInt32 program); + [Slot(2503)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glValidateProgramPipeline(UInt32 pipeline); - [Slot(2522)] + [Slot(2527)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertex2d(Double x, Double y); - [Slot(2523)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertex2dv([CountAttribute(Count = 2)] Double* v); - [Slot(2524)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertex2f(Single x, Single y); - [Slot(2525)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertex2fv([CountAttribute(Count = 2)] Single* v); [Slot(2528)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertex2i(Int32 x, Int32 y); + private static extern unsafe void glVertex2dv([CountAttribute(Count = 2)] Double* v); [Slot(2529)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertex2iv([CountAttribute(Count = 2)] Int32* v); + private static extern void glVertex2f(Single x, Single y); [Slot(2530)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertex2s(Int16 x, Int16 y); - [Slot(2531)] + private static extern unsafe void glVertex2fv([CountAttribute(Count = 2)] Single* v); + [Slot(2533)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertex2sv([CountAttribute(Count = 2)] Int16* v); + private static extern void glVertex2i(Int32 x, Int32 y); + [Slot(2534)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertex2iv([CountAttribute(Count = 2)] Int32* v); + [Slot(2535)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertex2s(Int16 x, Int16 y); [Slot(2536)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertex2sv([CountAttribute(Count = 2)] Int16* v); + [Slot(2541)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertex3d(Double x, Double y, Double z); - [Slot(2537)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertex3dv([CountAttribute(Count = 3)] Double* v); - [Slot(2538)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertex3f(Single x, Single y, Single z); - [Slot(2539)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertex3fv([CountAttribute(Count = 3)] Single* v); [Slot(2542)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertex3i(Int32 x, Int32 y, Int32 z); + private static extern unsafe void glVertex3dv([CountAttribute(Count = 3)] Double* v); [Slot(2543)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertex3iv([CountAttribute(Count = 3)] Int32* v); + private static extern void glVertex3f(Single x, Single y, Single z); [Slot(2544)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertex3s(Int16 x, Int16 y, Int16 z); - [Slot(2545)] + private static extern unsafe void glVertex3fv([CountAttribute(Count = 3)] Single* v); + [Slot(2547)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertex3sv([CountAttribute(Count = 3)] Int16* v); + private static extern void glVertex3i(Int32 x, Int32 y, Int32 z); + [Slot(2548)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertex3iv([CountAttribute(Count = 3)] Int32* v); + [Slot(2549)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertex3s(Int16 x, Int16 y, Int16 z); [Slot(2550)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertex3sv([CountAttribute(Count = 3)] Int16* v); + [Slot(2555)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertex4d(Double x, Double y, Double z, Double w); - [Slot(2551)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertex4dv([CountAttribute(Count = 4)] Double* v); - [Slot(2552)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertex4f(Single x, Single y, Single z, Single w); - [Slot(2553)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertex4fv([CountAttribute(Count = 4)] Single* v); [Slot(2556)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertex4i(Int32 x, Int32 y, Int32 z, Int32 w); + private static extern unsafe void glVertex4dv([CountAttribute(Count = 4)] Double* v); [Slot(2557)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertex4iv([CountAttribute(Count = 4)] Int32* v); + private static extern void glVertex4f(Single x, Single y, Single z, Single w); [Slot(2558)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertex4s(Int16 x, Int16 y, Int16 z, Int16 w); - [Slot(2559)] + private static extern unsafe void glVertex4fv([CountAttribute(Count = 4)] Single* v); + [Slot(2561)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertex4sv([CountAttribute(Count = 4)] Int16* v); + private static extern void glVertex4i(Int32 x, Int32 y, Int32 z, Int32 w); [Slot(2562)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayAttribBinding(UInt32 vaobj, UInt32 attribindex, UInt32 bindingindex); + private static extern unsafe void glVertex4iv([CountAttribute(Count = 4)] Int32* v); [Slot(2563)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayAttribFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, System.Int32 type, bool normalized, UInt32 relativeoffset); + private static extern void glVertex4s(Int16 x, Int16 y, Int16 z, Int16 w); [Slot(2564)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertex4sv([CountAttribute(Count = 4)] Int16* v); + [Slot(2567)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexArrayAttribBinding(UInt32 vaobj, UInt32 attribindex, UInt32 bindingindex); + [Slot(2568)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexArrayAttribFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, System.Int32 type, bool normalized, UInt32 relativeoffset); + [Slot(2569)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexArrayAttribIFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, System.Int32 type, UInt32 relativeoffset); - [Slot(2565)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayAttribLFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, System.Int32 type, UInt32 relativeoffset); - [Slot(2566)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayBindingDivisor(UInt32 vaobj, UInt32 bindingindex, UInt32 divisor); [Slot(2570)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexArrayAttribLFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, System.Int32 type, UInt32 relativeoffset); + [Slot(2571)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexArrayBindingDivisor(UInt32 vaobj, UInt32 bindingindex, UInt32 divisor); + [Slot(2575)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexArrayElementBuffer(UInt32 vaobj, UInt32 buffer); - [Slot(2589)] + [Slot(2594)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexArrayVertexBuffer(UInt32 vaobj, UInt32 bindingindex, UInt32 buffer, IntPtr offset, Int32 stride); - [Slot(2590)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexArrayVertexBuffers(UInt32 vaobj, UInt32 first, Int32 count, UInt32* buffers, IntPtr* offsets, Int32* strides); - [Slot(2592)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttrib1d(UInt32 index, Double x); [Slot(2595)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexArrayVertexBuffers(UInt32 vaobj, UInt32 first, Int32 count, UInt32* buffers, IntPtr* offsets, Int32* strides); + [Slot(2597)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttrib1d(UInt32 index, Double x); + [Slot(2600)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttrib1dv(UInt32 index, [CountAttribute(Count = 1)] Double* v); - [Slot(2598)] + [Slot(2603)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttrib1f(UInt32 index, Single x); - [Slot(2601)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib1fv(UInt32 index, [CountAttribute(Count = 1)] Single* v); [Slot(2606)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttrib1fv(UInt32 index, [CountAttribute(Count = 1)] Single* v); + [Slot(2611)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttrib1s(UInt32 index, Int16 x); - [Slot(2609)] + [Slot(2614)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttrib1sv(UInt32 index, [CountAttribute(Count = 1)] Int16* v); - [Slot(2612)] + [Slot(2617)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttrib2d(UInt32 index, Double x, Double y); - [Slot(2615)] + [Slot(2620)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttrib2dv(UInt32 index, [CountAttribute(Count = 2)] Double* v); - [Slot(2618)] + [Slot(2623)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttrib2f(UInt32 index, Single x, Single y); - [Slot(2621)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib2fv(UInt32 index, [CountAttribute(Count = 2)] Single* v); [Slot(2626)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttrib2fv(UInt32 index, [CountAttribute(Count = 2)] Single* v); + [Slot(2631)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttrib2s(UInt32 index, Int16 x, Int16 y); - [Slot(2629)] + [Slot(2634)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttrib2sv(UInt32 index, [CountAttribute(Count = 2)] Int16* v); - [Slot(2632)] + [Slot(2637)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttrib3d(UInt32 index, Double x, Double y, Double z); - [Slot(2635)] + [Slot(2640)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttrib3dv(UInt32 index, [CountAttribute(Count = 3)] Double* v); - [Slot(2638)] + [Slot(2643)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttrib3f(UInt32 index, Single x, Single y, Single z); - [Slot(2641)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib3fv(UInt32 index, [CountAttribute(Count = 3)] Single* v); [Slot(2646)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttrib3fv(UInt32 index, [CountAttribute(Count = 3)] Single* v); + [Slot(2651)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttrib3s(UInt32 index, Int16 x, Int16 y, Int16 z); - [Slot(2649)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib3sv(UInt32 index, [CountAttribute(Count = 3)] Int16* v); - [Slot(2652)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib4bv(UInt32 index, [CountAttribute(Count = 4)] SByte* v); [Slot(2654)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttrib4d(UInt32 index, Double x, Double y, Double z, Double w); + private static extern unsafe void glVertexAttrib3sv(UInt32 index, [CountAttribute(Count = 3)] Int16* v); [Slot(2657)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttrib4bv(UInt32 index, [CountAttribute(Count = 4)] SByte* v); + [Slot(2659)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttrib4d(UInt32 index, Double x, Double y, Double z, Double w); + [Slot(2662)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttrib4dv(UInt32 index, [CountAttribute(Count = 4)] Double* v); - [Slot(2660)] + [Slot(2665)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttrib4f(UInt32 index, Single x, Single y, Single z, Single w); - [Slot(2663)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib4fv(UInt32 index, [CountAttribute(Count = 4)] Single* v); [Slot(2668)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttrib4fv(UInt32 index, [CountAttribute(Count = 4)] Single* v); + [Slot(2673)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttrib4iv(UInt32 index, [CountAttribute(Count = 4)] Int32* v); - [Slot(2670)] + [Slot(2675)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttrib4Nbv(UInt32 index, [CountAttribute(Count = 4)] SByte* v); - [Slot(2672)] + [Slot(2677)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttrib4Niv(UInt32 index, [CountAttribute(Count = 4)] Int32* v); - [Slot(2674)] + [Slot(2679)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttrib4Nsv(UInt32 index, [CountAttribute(Count = 4)] Int16* v); - [Slot(2676)] + [Slot(2681)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttrib4Nub(UInt32 index, Byte x, Byte y, Byte z, Byte w); - [Slot(2678)] + [Slot(2683)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttrib4Nubv(UInt32 index, [CountAttribute(Count = 4)] Byte* v); - [Slot(2680)] + [Slot(2685)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttrib4Nuiv(UInt32 index, [CountAttribute(Count = 4)] UInt32* v); - [Slot(2682)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib4Nusv(UInt32 index, [CountAttribute(Count = 4)] UInt16* v); - [Slot(2684)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttrib4s(UInt32 index, Int16 x, Int16 y, Int16 z, Int16 w); [Slot(2687)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttrib4Nusv(UInt32 index, [CountAttribute(Count = 4)] UInt16* v); + [Slot(2689)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttrib4s(UInt32 index, Int16 x, Int16 y, Int16 z, Int16 w); + [Slot(2692)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttrib4sv(UInt32 index, [CountAttribute(Count = 4)] Int16* v); - [Slot(2691)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib4ubv(UInt32 index, [CountAttribute(Count = 4)] Byte* v); - [Slot(2694)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib4uiv(UInt32 index, [CountAttribute(Count = 4)] UInt32* v); [Slot(2696)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib4usv(UInt32 index, [CountAttribute(Count = 4)] UInt16* v); + private static extern unsafe void glVertexAttrib4ubv(UInt32 index, [CountAttribute(Count = 4)] Byte* v); [Slot(2699)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribBinding(UInt32 attribindex, UInt32 bindingindex); - [Slot(2700)] + private static extern unsafe void glVertexAttrib4uiv(UInt32 index, [CountAttribute(Count = 4)] UInt32* v); + [Slot(2701)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribDivisor(UInt32 index, UInt32 divisor); - [Slot(2702)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribFormat(UInt32 attribindex, Int32 size, System.Int32 type, bool normalized, UInt32 relativeoffset); + private static extern unsafe void glVertexAttrib4usv(UInt32 index, [CountAttribute(Count = 4)] UInt16* v); [Slot(2704)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribBinding(UInt32 attribindex, UInt32 bindingindex); + [Slot(2705)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribDivisor(UInt32 index, UInt32 divisor); + [Slot(2707)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribFormat(UInt32 attribindex, Int32 size, System.Int32 type, bool normalized, UInt32 relativeoffset); + [Slot(2709)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribI1i(UInt32 index, Int32 x); - [Slot(2706)] + [Slot(2711)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttribI1iv(UInt32 index, [CountAttribute(Count = 1)] Int32* v); - [Slot(2708)] + [Slot(2713)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribI1ui(UInt32 index, UInt32 x); - [Slot(2710)] + [Slot(2715)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttribI1uiv(UInt32 index, [CountAttribute(Count = 1)] UInt32* v); - [Slot(2712)] + [Slot(2717)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribI2i(UInt32 index, Int32 x, Int32 y); - [Slot(2714)] + [Slot(2719)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttribI2iv(UInt32 index, [CountAttribute(Count = 2)] Int32* v); - [Slot(2716)] + [Slot(2721)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribI2ui(UInt32 index, UInt32 x, UInt32 y); - [Slot(2718)] + [Slot(2723)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttribI2uiv(UInt32 index, [CountAttribute(Count = 2)] UInt32* v); - [Slot(2720)] + [Slot(2725)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribI3i(UInt32 index, Int32 x, Int32 y, Int32 z); - [Slot(2722)] + [Slot(2727)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttribI3iv(UInt32 index, [CountAttribute(Count = 3)] Int32* v); - [Slot(2724)] + [Slot(2729)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribI3ui(UInt32 index, UInt32 x, UInt32 y, UInt32 z); - [Slot(2726)] + [Slot(2731)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttribI3uiv(UInt32 index, [CountAttribute(Count = 3)] UInt32* v); - [Slot(2728)] + [Slot(2733)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttribI4bv(UInt32 index, [CountAttribute(Count = 4)] SByte* v); - [Slot(2730)] + [Slot(2735)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribI4i(UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w); - [Slot(2732)] + [Slot(2737)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttribI4iv(UInt32 index, [CountAttribute(Count = 4)] Int32* v); - [Slot(2734)] + [Slot(2739)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttribI4sv(UInt32 index, [CountAttribute(Count = 4)] Int16* v); - [Slot(2736)] + [Slot(2741)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttribI4ubv(UInt32 index, [CountAttribute(Count = 4)] Byte* v); - [Slot(2738)] + [Slot(2743)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribI4ui(UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w); - [Slot(2740)] + [Slot(2745)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttribI4uiv(UInt32 index, [CountAttribute(Count = 4)] UInt32* v); - [Slot(2742)] + [Slot(2747)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttribI4usv(UInt32 index, [CountAttribute(Count = 4)] UInt16* v); - [Slot(2744)] + [Slot(2749)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribIFormat(UInt32 attribindex, Int32 size, System.Int32 type, UInt32 relativeoffset); - [Slot(2746)] + [Slot(2751)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribIPointer(UInt32 index, Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer); - [Slot(2748)] + [Slot(2753)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribL1d(UInt32 index, Double x); - [Slot(2750)] + [Slot(2755)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttribL1dv(UInt32 index, [CountAttribute(Count = 1)] Double* v); - [Slot(2758)] + [Slot(2763)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribL2d(UInt32 index, Double x, Double y); - [Slot(2760)] + [Slot(2765)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttribL2dv(UInt32 index, [CountAttribute(Count = 2)] Double* v); - [Slot(2766)] + [Slot(2771)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribL3d(UInt32 index, Double x, Double y, Double z); - [Slot(2768)] + [Slot(2773)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttribL3dv(UInt32 index, [CountAttribute(Count = 3)] Double* v); - [Slot(2774)] + [Slot(2779)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribL4d(UInt32 index, Double x, Double y, Double z, Double w); - [Slot(2776)] + [Slot(2781)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttribL4dv(UInt32 index, [CountAttribute(Count = 4)] Double* v); - [Slot(2782)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribLFormat(UInt32 attribindex, Int32 size, System.Int32 type, UInt32 relativeoffset); - [Slot(2784)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribLPointer(UInt32 index, Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Parameter = "size")] IntPtr pointer); - [Slot(2786)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribP1ui(UInt32 index, System.Int32 type, bool normalized, UInt32 value); [Slot(2787)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribP1uiv(UInt32 index, System.Int32 type, bool normalized, [CountAttribute(Count = 1)] UInt32* value); - [Slot(2788)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribP2ui(UInt32 index, System.Int32 type, bool normalized, UInt32 value); + private static extern void glVertexAttribLFormat(UInt32 attribindex, Int32 size, System.Int32 type, UInt32 relativeoffset); [Slot(2789)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribP2uiv(UInt32 index, System.Int32 type, bool normalized, [CountAttribute(Count = 1)] UInt32* value); - [Slot(2790)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribP3ui(UInt32 index, System.Int32 type, bool normalized, UInt32 value); + private static extern void glVertexAttribLPointer(UInt32 index, Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Parameter = "size")] IntPtr pointer); [Slot(2791)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribP3uiv(UInt32 index, System.Int32 type, bool normalized, [CountAttribute(Count = 1)] UInt32* value); + private static extern void glVertexAttribP1ui(UInt32 index, System.Int32 type, bool normalized, UInt32 value); [Slot(2792)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribP4ui(UInt32 index, System.Int32 type, bool normalized, UInt32 value); + private static extern unsafe void glVertexAttribP1uiv(UInt32 index, System.Int32 type, bool normalized, [CountAttribute(Count = 1)] UInt32* value); [Slot(2793)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribP4uiv(UInt32 index, System.Int32 type, bool normalized, [CountAttribute(Count = 1)] UInt32* value); + private static extern void glVertexAttribP2ui(UInt32 index, System.Int32 type, bool normalized, UInt32 value); + [Slot(2794)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttribP2uiv(UInt32 index, System.Int32 type, bool normalized, [CountAttribute(Count = 1)] UInt32* value); [Slot(2795)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribPointer(UInt32 index, Int32 size, System.Int32 type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer); - [Slot(2815)] + private static extern void glVertexAttribP3ui(UInt32 index, System.Int32 type, bool normalized, UInt32 value); + [Slot(2796)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexBindingDivisor(UInt32 bindingindex, UInt32 divisor); + private static extern unsafe void glVertexAttribP3uiv(UInt32 index, System.Int32 type, bool normalized, [CountAttribute(Count = 1)] UInt32* value); + [Slot(2797)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribP4ui(UInt32 index, System.Int32 type, bool normalized, UInt32 value); + [Slot(2798)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttribP4uiv(UInt32 index, System.Int32 type, bool normalized, [CountAttribute(Count = 1)] UInt32* value); + [Slot(2800)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribPointer(UInt32 index, Int32 size, System.Int32 type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer); [Slot(2820)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexP2ui(System.Int32 type, UInt32 value); - [Slot(2821)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexP2uiv(System.Int32 type, [CountAttribute(Count = 1)] UInt32* value); - [Slot(2822)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexP3ui(System.Int32 type, UInt32 value); - [Slot(2823)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexP3uiv(System.Int32 type, [CountAttribute(Count = 1)] UInt32* value); - [Slot(2824)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexP4ui(System.Int32 type, UInt32 value); + private static extern void glVertexBindingDivisor(UInt32 bindingindex, UInt32 divisor); [Slot(2825)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexP4uiv(System.Int32 type, [CountAttribute(Count = 1)] UInt32* value); + private static extern void glVertexP2ui(System.Int32 type, UInt32 value); [Slot(2826)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexP2uiv(System.Int32 type, [CountAttribute(Count = 1)] UInt32* value); + [Slot(2827)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexP3ui(System.Int32 type, UInt32 value); + [Slot(2828)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexP3uiv(System.Int32 type, [CountAttribute(Count = 1)] UInt32* value); + [Slot(2829)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexP4ui(System.Int32 type, UInt32 value); + [Slot(2830)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexP4uiv(System.Int32 type, [CountAttribute(Count = 1)] UInt32* value); + [Slot(2831)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexPointer(Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer); - [Slot(2871)] + [Slot(2876)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glViewport(Int32 x, Int32 y, Int32 width, Int32 height); - [Slot(2872)] + [Slot(2877)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glViewportArrayv(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v); - [Slot(2873)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glViewportIndexedf(UInt32 index, Single x, Single y, Single w, Single h); - [Slot(2874)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glViewportIndexedfv(UInt32 index, [CountAttribute(Count = 4)] Single* v); [Slot(2878)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glViewportIndexedf(UInt32 index, Single x, Single y, Single w, Single h); + [Slot(2879)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glViewportIndexedfv(UInt32 index, [CountAttribute(Count = 4)] Single* v); + [Slot(2883)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glWaitSync(IntPtr sync, System.Int32 flags, UInt64 timeout); - [Slot(2890)] + [Slot(2895)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glWindowPos2d(Double x, Double y); - [Slot(2893)] + [Slot(2898)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glWindowPos2dv([CountAttribute(Count = 2)] Double* v); - [Slot(2896)] + [Slot(2901)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glWindowPos2f(Single x, Single y); - [Slot(2899)] + [Slot(2904)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glWindowPos2fv([CountAttribute(Count = 2)] Single* v); - [Slot(2902)] + [Slot(2907)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glWindowPos2i(Int32 x, Int32 y); - [Slot(2905)] + [Slot(2910)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glWindowPos2iv([CountAttribute(Count = 2)] Int32* v); - [Slot(2908)] + [Slot(2913)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glWindowPos2s(Int16 x, Int16 y); - [Slot(2911)] + [Slot(2916)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glWindowPos2sv([CountAttribute(Count = 2)] Int16* v); - [Slot(2914)] + [Slot(2919)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glWindowPos3d(Double x, Double y, Double z); - [Slot(2917)] + [Slot(2922)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glWindowPos3dv([CountAttribute(Count = 3)] Double* v); - [Slot(2920)] + [Slot(2925)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glWindowPos3f(Single x, Single y, Single z); - [Slot(2923)] + [Slot(2928)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glWindowPos3fv([CountAttribute(Count = 3)] Single* v); - [Slot(2926)] + [Slot(2931)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glWindowPos3i(Int32 x, Int32 y, Int32 z); - [Slot(2929)] + [Slot(2934)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glWindowPos3iv([CountAttribute(Count = 3)] Int32* v); - [Slot(2932)] + [Slot(2937)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glWindowPos3s(Int16 x, Int16 y, Int16 z); - [Slot(2935)] + [Slot(2940)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glWindowPos3sv([CountAttribute(Count = 3)] Int16* v); [Slot(2)] @@ -146097,7 +146186,7 @@ namespace OpenTK.Graphics.OpenGL private static extern void glBlitFramebufferEXT(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, System.Int32 mask, System.Int32 filter); [Slot(141)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glBufferStorageExternalEXT(System.Int32 target, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags); + private static extern void glBufferStorageExternalEXT(System.Int32 target, IntPtr offset, IntPtr size, IntPtr clientBuffer, System.Int32 flags); [Slot(142)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glBufferStorageMemEXT(System.Int32 target, IntPtr size, UInt32 memory, UInt64 offset); @@ -146266,1510 +146355,1510 @@ namespace OpenTK.Graphics.OpenGL [Slot(424)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteProgramPipelinesEXT(Int32 n, [CountAttribute(Parameter = "n")] UInt32* pipelines); - [Slot(430)] + [Slot(431)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteRenderbuffersEXT(Int32 n, [CountAttribute(Parameter = "n")] UInt32* renderbuffers); - [Slot(432)] + [Slot(433)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glDeleteSemaphoresEXT(Int32 n, [CountAttribute(Parameter = "count")] UInt32* semaphores); - [Slot(437)] + private static extern unsafe void glDeleteSemaphoresEXT(Int32 n, [CountAttribute(Parameter = "n")] UInt32* semaphores); + [Slot(438)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteTexturesEXT(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures); - [Slot(442)] + [Slot(443)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDeleteVertexShaderEXT(UInt32 id); - [Slot(444)] + [Slot(445)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDepthBoundsEXT(Double zmin, Double zmax); - [Slot(459)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDisableClientStateiEXT(System.Int32 array, UInt32 index); [Slot(460)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDisableClientStateIndexedEXT(System.Int32 array, UInt32 index); - [Slot(462)] + private static extern void glDisableClientStateiEXT(System.Int32 array, UInt32 index); + [Slot(461)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDisableIndexedEXT(System.Int32 target, UInt32 index); + private static extern void glDisableClientStateIndexedEXT(System.Int32 array, UInt32 index); [Slot(463)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDisableVariantClientStateEXT(UInt32 id); - [Slot(465)] + private static extern void glDisableIndexedEXT(System.Int32 target, UInt32 index); + [Slot(464)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glDisableVertexArrayAttribEXT(UInt32 vaobj, UInt32 index); + private static extern void glDisableVariantClientStateEXT(UInt32 id); [Slot(466)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glDisableVertexArrayAttribEXT(UInt32 vaobj, UInt32 index); + [Slot(467)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDisableVertexArrayEXT(UInt32 vaobj, System.Int32 array); - [Slot(474)] + [Slot(475)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawArraysEXT(System.Int32 mode, Int32 first, Int32 count); - [Slot(479)] + [Slot(480)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawArraysInstancedEXT(System.Int32 mode, Int32 start, Int32 count, Int32 primcount); - [Slot(498)] + [Slot(499)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawElementsInstancedEXT(System.Int32 mode, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount); - [Slot(505)] + [Slot(506)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawRangeElementsEXT(System.Int32 mode, UInt32 start, UInt32 end, Int32 count, System.Int32 type, [CountAttribute(Computed = "count,type")] IntPtr indices); - [Slot(516)] + [Slot(517)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glEdgeFlagPointerEXT(Int32 stride, Int32 count, [CountAttribute(Computed = "stride,count")] bool* pointer); - [Slot(523)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glEnableClientStateiEXT(System.Int32 array, UInt32 index); [Slot(524)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glEnableClientStateIndexedEXT(System.Int32 array, UInt32 index); - [Slot(526)] + private static extern void glEnableClientStateiEXT(System.Int32 array, UInt32 index); + [Slot(525)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glEnableIndexedEXT(System.Int32 target, UInt32 index); + private static extern void glEnableClientStateIndexedEXT(System.Int32 array, UInt32 index); [Slot(527)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glEnableVariantClientStateEXT(UInt32 id); - [Slot(529)] + private static extern void glEnableIndexedEXT(System.Int32 target, UInt32 index); + [Slot(528)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glEnableVertexArrayAttribEXT(UInt32 vaobj, UInt32 index); + private static extern void glEnableVariantClientStateEXT(UInt32 id); [Slot(530)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glEnableVertexArrayAttribEXT(UInt32 vaobj, UInt32 index); + [Slot(531)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEnableVertexArrayEXT(UInt32 vaobj, System.Int32 array); - [Slot(547)] + [Slot(548)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEndTransformFeedbackEXT(); - [Slot(549)] + [Slot(550)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEndVertexShaderEXT(); - [Slot(570)] + [Slot(571)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glExtractComponentEXT(UInt32 res, UInt32 src, UInt32 num); - [Slot(585)] + [Slot(586)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFlushMappedNamedBufferRangeEXT(UInt32 buffer, IntPtr offset, IntPtr length); - [Slot(592)] + [Slot(593)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFogCoorddEXT(Double coord); - [Slot(594)] + [Slot(595)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glFogCoorddvEXT([CountAttribute(Count = 1)] Double* coord); - [Slot(596)] + [Slot(597)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFogCoordfEXT(Single coord); - [Slot(599)] + [Slot(600)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glFogCoordfvEXT([CountAttribute(Count = 1)] Single* coord); - [Slot(603)] + [Slot(604)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFogCoordPointerEXT(System.Int32 type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer); - [Slot(626)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFramebufferDrawBufferEXT(UInt32 framebuffer, System.Int32 mode); [Slot(627)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glFramebufferDrawBufferEXT(UInt32 framebuffer, System.Int32 mode); + [Slot(628)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glFramebufferDrawBuffersEXT(UInt32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] System.Int32* bufs); - [Slot(629)] + [Slot(630)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferReadBufferEXT(UInt32 framebuffer, System.Int32 mode); - [Slot(631)] + [Slot(632)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferRenderbufferEXT(System.Int32 target, System.Int32 attachment, System.Int32 renderbuffertarget, UInt32 renderbuffer); - [Slot(637)] + [Slot(638)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferTexture1DEXT(System.Int32 target, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level); - [Slot(639)] + [Slot(640)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferTexture2DEXT(System.Int32 target, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level); - [Slot(641)] + [Slot(642)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferTexture3DEXT(System.Int32 target, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level, Int32 zoffset); - [Slot(643)] + [Slot(644)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferTextureEXT(System.Int32 target, System.Int32 attachment, UInt32 texture, Int32 level); - [Slot(645)] + [Slot(646)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferTextureFaceEXT(System.Int32 target, System.Int32 attachment, UInt32 texture, Int32 level, System.Int32 face); - [Slot(648)] + [Slot(649)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferTextureLayerEXT(System.Int32 target, System.Int32 attachment, UInt32 texture, Int32 level, Int32 layer); - [Slot(661)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGenerateMipmapEXT(System.Int32 target); [Slot(662)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glGenerateMipmapEXT(System.Int32 target); + [Slot(663)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glGenerateMultiTexMipmapEXT(System.Int32 texunit, System.Int32 target); - [Slot(664)] + [Slot(665)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glGenerateTextureMipmapEXT(UInt32 texture, System.Int32 target); - [Slot(669)] + [Slot(670)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGenFramebuffersEXT(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* framebuffers); - [Slot(676)] + [Slot(677)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGenProgramPipelinesEXT(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines); - [Slot(682)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGenRenderbuffersEXT(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers); [Slot(684)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGenSemaphoresEXT(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* semaphores); - [Slot(685)] + private static extern unsafe void glGenRenderbuffersEXT(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers); + [Slot(686)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int32 glGenSymbolsEXT(System.Int32 datatype, System.Int32 storagetype, System.Int32 range, UInt32 components); + private static extern unsafe void glGenSemaphoresEXT(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* semaphores); [Slot(687)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern Int32 glGenSymbolsEXT(System.Int32 datatype, System.Int32 storagetype, System.Int32 range, UInt32 components); + [Slot(689)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGenTexturesEXT(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* textures); - [Slot(692)] + [Slot(694)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int32 glGenVertexShadersEXT(UInt32 range); - [Slot(713)] + [Slot(715)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetBooleanIndexedvEXT(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data); - [Slot(727)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetColorTableEXT(System.Int32 target, System.Int32 format, System.Int32 type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr data); [Slot(729)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glGetColorTableEXT(System.Int32 target, System.Int32 format, System.Int32 type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr data); + [Slot(731)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetColorTableParameterfvEXT(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); - [Slot(732)] + [Slot(734)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetColorTableParameterivEXT(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(741)] + [Slot(743)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glGetCompressedMultiTexImageEXT(System.Int32 texunit, System.Int32 target, Int32 lod, [OutAttribute, CountAttribute(Computed = "target,lod")] IntPtr img); - [Slot(745)] + [Slot(747)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glGetCompressedTextureImageEXT(UInt32 texture, System.Int32 target, Int32 lod, [OutAttribute, CountAttribute(Computed = "target,lod")] IntPtr img); - [Slot(748)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetConvolutionFilterEXT(System.Int32 target, System.Int32 format, System.Int32 type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr image); [Slot(750)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetConvolutionParameterfvEXT(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); + private static extern void glGetConvolutionFilterEXT(System.Int32 target, System.Int32 format, System.Int32 type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr image); [Slot(752)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetConvolutionParameterfvEXT(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); + [Slot(754)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetConvolutionParameterivEXT(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(761)] + [Slot(763)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetDoublei_vEXT(System.Int32 pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params); - [Slot(762)] + [Slot(764)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetDoubleIndexedvEXT(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Double* data); - [Slot(771)] + [Slot(773)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetFloati_vEXT(System.Int32 pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); - [Slot(772)] + [Slot(774)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetFloatIndexedvEXT(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data); - [Slot(777)] + [Slot(779)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int32 glGetFragDataLocationEXT(UInt32 program, [CountAttribute(Computed = "name")] IntPtr name); - [Slot(783)] + [Slot(785)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetFramebufferAttachmentParameterivEXT(System.Int32 target, System.Int32 attachment, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(786)] + [Slot(788)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetFramebufferParameterivEXT(UInt32 framebuffer, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(792)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetHistogramEXT(System.Int32 target, bool reset, System.Int32 format, System.Int32 type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values); [Slot(794)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetHistogramParameterfvEXT(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); + private static extern void glGetHistogramEXT(System.Int32 target, bool reset, System.Int32 format, System.Int32 type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values); [Slot(796)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetHistogramParameterfvEXT(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); + [Slot(798)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetHistogramParameterivEXT(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(807)] + [Slot(809)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetIntegerIndexedvEXT(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data); - [Slot(814)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetInvariantBooleanvEXT(UInt32 id, System.Int32 value, [OutAttribute, CountAttribute(Computed = "id")] bool* data); - [Slot(815)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetInvariantFloatvEXT(UInt32 id, System.Int32 value, [OutAttribute, CountAttribute(Computed = "id")] Single* data); [Slot(816)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetInvariantBooleanvEXT(UInt32 id, System.Int32 value, [OutAttribute, CountAttribute(Computed = "id")] bool* data); + [Slot(817)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetInvariantFloatvEXT(UInt32 id, System.Int32 value, [OutAttribute, CountAttribute(Computed = "id")] Single* data); + [Slot(818)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetInvariantIntegervEXT(UInt32 id, System.Int32 value, [OutAttribute, CountAttribute(Computed = "id")] Int32* data); - [Slot(823)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetLocalConstantBooleanvEXT(UInt32 id, System.Int32 value, [OutAttribute, CountAttribute(Computed = "id")] bool* data); - [Slot(824)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetLocalConstantFloatvEXT(UInt32 id, System.Int32 value, [OutAttribute, CountAttribute(Computed = "id")] Single* data); [Slot(825)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetLocalConstantIntegervEXT(UInt32 id, System.Int32 value, [OutAttribute, CountAttribute(Computed = "id")] Int32* data); - [Slot(839)] + private static extern unsafe void glGetLocalConstantBooleanvEXT(UInt32 id, System.Int32 value, [OutAttribute, CountAttribute(Computed = "id")] bool* data); + [Slot(826)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetMemoryObjectParameterivEXT(UInt32 memoryObject, System.Int32 pname, [OutAttribute] Int32* @params); + private static extern unsafe void glGetLocalConstantFloatvEXT(UInt32 id, System.Int32 value, [OutAttribute, CountAttribute(Computed = "id")] Single* data); + [Slot(827)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetLocalConstantIntegervEXT(UInt32 id, System.Int32 value, [OutAttribute, CountAttribute(Computed = "id")] Int32* data); [Slot(841)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetMinmaxEXT(System.Int32 target, bool reset, System.Int32 format, System.Int32 type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values); + private static extern unsafe void glGetMemoryObjectParameterivEXT(UInt32 memoryObject, System.Int32 pname, [OutAttribute] Int32* @params); [Slot(843)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetMinmaxParameterfvEXT(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); + private static extern void glGetMinmaxEXT(System.Int32 target, bool reset, System.Int32 format, System.Int32 type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values); [Slot(845)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetMinmaxParameterfvEXT(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); + [Slot(847)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetMinmaxParameterivEXT(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(848)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetMultiTexEnvfvEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); - [Slot(849)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetMultiTexEnvivEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(850)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetMultiTexGendvEXT(System.Int32 texunit, System.Int32 coord, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params); + private static extern unsafe void glGetMultiTexEnvfvEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); [Slot(851)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetMultiTexGenfvEXT(System.Int32 texunit, System.Int32 coord, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); + private static extern unsafe void glGetMultiTexEnvivEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(852)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetMultiTexGenivEXT(System.Int32 texunit, System.Int32 coord, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + private static extern unsafe void glGetMultiTexGendvEXT(System.Int32 texunit, System.Int32 coord, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params); [Slot(853)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetMultiTexImageEXT(System.Int32 texunit, System.Int32 target, Int32 level, System.Int32 format, System.Int32 type, [OutAttribute, CountAttribute(Computed = "target,level,format,type")] IntPtr pixels); + private static extern unsafe void glGetMultiTexGenfvEXT(System.Int32 texunit, System.Int32 coord, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); [Slot(854)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetMultiTexLevelParameterfvEXT(System.Int32 texunit, System.Int32 target, Int32 level, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); + private static extern unsafe void glGetMultiTexGenivEXT(System.Int32 texunit, System.Int32 coord, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(855)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetMultiTexLevelParameterivEXT(System.Int32 texunit, System.Int32 target, Int32 level, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + private static extern void glGetMultiTexImageEXT(System.Int32 texunit, System.Int32 target, Int32 level, System.Int32 format, System.Int32 type, [OutAttribute, CountAttribute(Computed = "target,level,format,type")] IntPtr pixels); [Slot(856)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetMultiTexParameterfvEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); + private static extern unsafe void glGetMultiTexLevelParameterfvEXT(System.Int32 texunit, System.Int32 target, Int32 level, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); [Slot(857)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetMultiTexParameterIivEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + private static extern unsafe void glGetMultiTexLevelParameterivEXT(System.Int32 texunit, System.Int32 target, Int32 level, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(858)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetMultiTexParameterIuivEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params); + private static extern unsafe void glGetMultiTexParameterfvEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); [Slot(859)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetMultiTexParameterIivEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + [Slot(860)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetMultiTexParameterIuivEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params); + [Slot(861)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetMultiTexParameterivEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(862)] + [Slot(864)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetNamedBufferParameterivEXT(UInt32 buffer, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(865)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetNamedBufferPointervEXT(UInt32 buffer, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params); [Slot(867)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetNamedBufferSubDataEXT(UInt32 buffer, IntPtr offset, IntPtr size, [OutAttribute, CountAttribute(Computed = "size")] IntPtr data); + private static extern void glGetNamedBufferPointervEXT(UInt32 buffer, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params); [Slot(869)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glGetNamedBufferSubDataEXT(UInt32 buffer, IntPtr offset, IntPtr size, [OutAttribute, CountAttribute(Computed = "size")] IntPtr data); + [Slot(871)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetNamedFramebufferAttachmentParameterivEXT(UInt32 framebuffer, System.Int32 attachment, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(872)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetNamedFramebufferParameterivEXT(UInt32 framebuffer, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(873)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetNamedProgramivEXT(UInt32 program, System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params); [Slot(874)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetNamedProgramLocalParameterdvEXT(UInt32 program, System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params); + private static extern unsafe void glGetNamedFramebufferParameterivEXT(UInt32 framebuffer, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(875)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetNamedProgramLocalParameterfvEXT(UInt32 program, System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params); + private static extern unsafe void glGetNamedProgramivEXT(UInt32 program, System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params); [Slot(876)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetNamedProgramLocalParameterIivEXT(UInt32 program, System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Int32* @params); + private static extern unsafe void glGetNamedProgramLocalParameterdvEXT(UInt32 program, System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params); [Slot(877)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetNamedProgramLocalParameterIuivEXT(UInt32 program, System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] UInt32* @params); + private static extern unsafe void glGetNamedProgramLocalParameterfvEXT(UInt32 program, System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params); [Slot(878)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetNamedProgramStringEXT(UInt32 program, System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "program,pname")] IntPtr @string); + private static extern unsafe void glGetNamedProgramLocalParameterIivEXT(UInt32 program, System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Int32* @params); + [Slot(879)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetNamedProgramLocalParameterIuivEXT(UInt32 program, System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] UInt32* @params); [Slot(880)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glGetNamedProgramStringEXT(UInt32 program, System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "program,pname")] IntPtr @string); + [Slot(882)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetNamedRenderbufferParameterivEXT(UInt32 renderbuffer, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(928)] + [Slot(930)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetObjectLabelEXT(System.Int32 type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr label); - [Slot(966)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPixelTransformParameterfvEXT(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); - [Slot(967)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPixelTransformParameterivEXT(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(968)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetPointeri_vEXT(System.Int32 pname, UInt32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params); + private static extern unsafe void glGetPixelTransformParameterfvEXT(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); [Slot(969)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetPointerIndexedvEXT(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr data); + private static extern unsafe void glGetPixelTransformParameterivEXT(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + [Slot(970)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glGetPointeri_vEXT(System.Int32 pname, UInt32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params); [Slot(971)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetPointervEXT(System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params); - [Slot(993)] + private static extern void glGetPointerIndexedvEXT(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr data); + [Slot(973)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetProgramPipelineInfoLogEXT(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr infoLog); + private static extern void glGetPointervEXT(System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params); [Slot(995)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetProgramPipelineInfoLogEXT(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr infoLog); + [Slot(997)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetProgramPipelineivEXT(UInt32 pipeline, System.Int32 pname, [OutAttribute] Int32* @params); - [Slot(1014)] + [Slot(1016)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetQueryObjecti64vEXT(UInt32 id, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params); - [Slot(1018)] + [Slot(1020)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetQueryObjectui64vEXT(UInt32 id, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params); - [Slot(1022)] + [Slot(1024)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetRenderbufferParameterivEXT(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(1027)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetSemaphoreParameterui64vEXT(UInt32 semaphore, System.Int32 pname, [OutAttribute] UInt64* @params); [Slot(1029)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetSeparableFilterEXT(System.Int32 target, System.Int32 format, System.Int32 type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr row, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr column, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr span); - [Slot(1058)] + private static extern unsafe void glGetSemaphoreParameterui64vEXT(UInt32 semaphore, System.Int32 pname, [OutAttribute] UInt64* @params); + [Slot(1031)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTexParameterIivEXT(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + private static extern void glGetSeparableFilterEXT(System.Int32 target, System.Int32 format, System.Int32 type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr row, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr column, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr span); [Slot(1060)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTexParameterIuivEXT(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params); - [Slot(1067)] + private static extern unsafe void glGetTexParameterIivEXT(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + [Slot(1062)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetTextureImageEXT(UInt32 texture, System.Int32 target, Int32 level, System.Int32 format, System.Int32 type, [OutAttribute, CountAttribute(Computed = "target,level,format,type")] IntPtr pixels); + private static extern unsafe void glGetTexParameterIuivEXT(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params); [Slot(1069)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTextureLevelParameterfvEXT(UInt32 texture, System.Int32 target, Int32 level, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); + private static extern void glGetTextureImageEXT(UInt32 texture, System.Int32 target, Int32 level, System.Int32 format, System.Int32 type, [OutAttribute, CountAttribute(Computed = "target,level,format,type")] IntPtr pixels); [Slot(1071)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTextureLevelParameterivEXT(UInt32 texture, System.Int32 target, Int32 level, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + private static extern unsafe void glGetTextureLevelParameterfvEXT(UInt32 texture, System.Int32 target, Int32 level, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); [Slot(1073)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTextureParameterfvEXT(UInt32 texture, System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); + private static extern unsafe void glGetTextureLevelParameterivEXT(UInt32 texture, System.Int32 target, Int32 level, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(1075)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTextureParameterIivEXT(UInt32 texture, System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + private static extern unsafe void glGetTextureParameterfvEXT(UInt32 texture, System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); [Slot(1077)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetTextureParameterIuivEXT(UInt32 texture, System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params); + private static extern unsafe void glGetTextureParameterIivEXT(UInt32 texture, System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(1079)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetTextureParameterIuivEXT(UInt32 texture, System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params); + [Slot(1081)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetTextureParameterivEXT(UInt32 texture, System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(1088)] + [Slot(1090)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetTransformFeedbackVaryingEXT(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] System.Int32* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr name); - [Slot(1091)] + [Slot(1093)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int32 glGetUniformBufferSizeEXT(UInt32 program, Int32 location); - [Slot(1102)] + [Slot(1104)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern IntPtr glGetUniformOffsetEXT(UInt32 program, Int32 location); - [Slot(1107)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetUniformuivEXT(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32* @params); - [Slot(1108)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetUnsignedBytei_vEXT(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte* data); [Slot(1109)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetUniformuivEXT(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32* @params); + [Slot(1110)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetUnsignedBytei_vEXT(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte* data); + [Slot(1111)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetUnsignedBytevEXT(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte* data); - [Slot(1112)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetVariantBooleanvEXT(UInt32 id, System.Int32 value, [OutAttribute, CountAttribute(Computed = "id")] bool* data); - [Slot(1113)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetVariantFloatvEXT(UInt32 id, System.Int32 value, [OutAttribute, CountAttribute(Computed = "id")] Single* data); [Slot(1114)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetVariantIntegervEXT(UInt32 id, System.Int32 value, [OutAttribute, CountAttribute(Computed = "id")] Int32* data); + private static extern unsafe void glGetVariantBooleanvEXT(UInt32 id, System.Int32 value, [OutAttribute, CountAttribute(Computed = "id")] bool* data); [Slot(1115)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetVariantFloatvEXT(UInt32 id, System.Int32 value, [OutAttribute, CountAttribute(Computed = "id")] Single* data); + [Slot(1116)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetVariantIntegervEXT(UInt32 id, System.Int32 value, [OutAttribute, CountAttribute(Computed = "id")] Int32* data); + [Slot(1117)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glGetVariantPointervEXT(UInt32 id, System.Int32 value, [OutAttribute, CountAttribute(Computed = "id")] IntPtr data); - [Slot(1119)] + [Slot(1121)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetVertexArrayIntegeri_vEXT(UInt32 vaobj, UInt32 index, System.Int32 pname, [OutAttribute] Int32* param); - [Slot(1120)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetVertexArrayIntegervEXT(UInt32 vaobj, System.Int32 pname, [OutAttribute] Int32* param); [Slot(1122)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetVertexArrayIntegervEXT(UInt32 vaobj, System.Int32 pname, [OutAttribute] Int32* param); + [Slot(1124)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glGetVertexArrayPointeri_vEXT(UInt32 vaobj, UInt32 index, System.Int32 pname, [OutAttribute] IntPtr param); - [Slot(1123)] + [Slot(1125)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glGetVertexArrayPointervEXT(UInt32 vaobj, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr param); - [Slot(1133)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetVertexAttribIivEXT(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params); [Slot(1135)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetVertexAttribIivEXT(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params); + [Slot(1137)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetVertexAttribIuivEXT(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] UInt32* @params); - [Slot(1140)] + [Slot(1142)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetVertexAttribLdvEXT(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params); - [Slot(1167)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glHistogramEXT(System.Int32 target, Int32 width, System.Int32 internalformat, bool sink); - [Slot(1173)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glImportMemoryFdEXT(UInt32 memory, UInt64 size, System.Int32 handleType, Int32 fd); - [Slot(1174)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glImportMemoryWin32HandleEXT(UInt32 memory, UInt64 size, System.Int32 handleType, [OutAttribute] IntPtr handle); - [Slot(1175)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glImportMemoryWin32NameEXT(UInt32 memory, UInt64 size, System.Int32 handleType, IntPtr name); - [Slot(1176)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glImportSemaphoreFdEXT(UInt32 semaphore, System.Int32 handleType, Int32 fd); - [Slot(1177)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glImportSemaphoreWin32HandleEXT(UInt32 semaphore, System.Int32 handleType, [OutAttribute] IntPtr handle); - [Slot(1178)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glImportSemaphoreWin32NameEXT(UInt32 semaphore, System.Int32 handleType, IntPtr name); - [Slot(1179)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern IntPtr glImportSyncEXT(System.Int32 external_sync_type, IntPtr external_sync, UInt32 flags); - [Slot(1184)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glIndexFuncEXT(System.Int32 func, Single @ref); - [Slot(1189)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glIndexMaterialEXT(System.Int32 face, System.Int32 mode); - [Slot(1191)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glIndexPointerEXT(System.Int32 type, Int32 stride, Int32 count, [CountAttribute(Computed = "type,stride,count")] IntPtr pointer); - [Slot(1200)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glInsertComponentEXT(UInt32 res, UInt32 src, UInt32 num); - [Slot(1201)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glInsertEventMarkerEXT(Int32 length, IntPtr marker); - [Slot(1220)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsEnabledIndexedEXT(System.Int32 target, UInt32 index); - [Slot(1224)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsFramebufferEXT(UInt32 framebuffer); - [Slot(1228)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsMemoryObjectEXT(UInt32 memoryObject); - [Slot(1241)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsProgramPipelineEXT(UInt32 pipeline); - [Slot(1245)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsRenderbufferEXT(UInt32 renderbuffer); - [Slot(1247)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsSemaphoreEXT(UInt32 semaphore); - [Slot(1252)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsTextureEXT(UInt32 texture); - [Slot(1257)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsVariantEnabledEXT(UInt32 id, System.Int32 cap); - [Slot(1261)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glLabelObjectEXT(System.Int32 type, UInt32 @object, Int32 length, IntPtr label); - [Slot(1301)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glLockArraysEXT(Int32 first, Int32 count); - [Slot(1332)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern IntPtr glMapNamedBufferEXT(UInt32 buffer, System.Int32 access); - [Slot(1334)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern IntPtr glMapNamedBufferRangeEXT(UInt32 buffer, IntPtr offset, IntPtr length, System.Int32 access); - [Slot(1349)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMatrixFrustumEXT(System.Int32 mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar); - [Slot(1356)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMatrixLoaddEXT(System.Int32 mode, [CountAttribute(Count = 16)] Double* m); - [Slot(1357)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMatrixLoadfEXT(System.Int32 mode, [CountAttribute(Count = 16)] Single* m); - [Slot(1358)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMatrixLoadIdentityEXT(System.Int32 mode); - [Slot(1360)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMatrixLoadTransposedEXT(System.Int32 mode, [CountAttribute(Count = 16)] Double* m); - [Slot(1361)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMatrixLoadTransposefEXT(System.Int32 mode, [CountAttribute(Count = 16)] Single* m); - [Slot(1365)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMatrixMultdEXT(System.Int32 mode, [CountAttribute(Count = 16)] Double* m); - [Slot(1366)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMatrixMultfEXT(System.Int32 mode, [CountAttribute(Count = 16)] Single* m); - [Slot(1368)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMatrixMultTransposedEXT(System.Int32 mode, [CountAttribute(Count = 16)] Double* m); - [Slot(1369)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMatrixMultTransposefEXT(System.Int32 mode, [CountAttribute(Count = 16)] Single* m); - [Slot(1370)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMatrixOrthoEXT(System.Int32 mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar); - [Slot(1371)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMatrixPopEXT(System.Int32 mode); - [Slot(1372)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMatrixPushEXT(System.Int32 mode); - [Slot(1373)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMatrixRotatedEXT(System.Int32 mode, Double angle, Double x, Double y, Double z); - [Slot(1374)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMatrixRotatefEXT(System.Int32 mode, Single angle, Single x, Single y, Single z); - [Slot(1375)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMatrixScaledEXT(System.Int32 mode, Double x, Double y, Double z); - [Slot(1376)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMatrixScalefEXT(System.Int32 mode, Single x, Single y, Single z); - [Slot(1377)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMatrixTranslatedEXT(System.Int32 mode, Double x, Double y, Double z); - [Slot(1378)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMatrixTranslatefEXT(System.Int32 mode, Single x, Single y, Single z); - [Slot(1382)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMemoryBarrierEXT(UInt32 barriers); - [Slot(1383)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMemoryObjectParameterivEXT(UInt32 memoryObject, System.Int32 pname, Int32* @params); - [Slot(1385)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMinmaxEXT(System.Int32 target, System.Int32 internalformat, bool sink); - [Slot(1400)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiDrawArraysEXT(System.Int32 mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount); - [Slot(1410)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiDrawElementsEXT(System.Int32 mode, [CountAttribute(Computed = "primcount")] Int32* count, System.Int32 type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount); - [Slot(1420)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexBufferEXT(System.Int32 texunit, System.Int32 target, System.Int32 internalformat, UInt32 buffer); - [Slot(1517)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexCoordPointerEXT(System.Int32 texunit, Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer); - [Slot(1518)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexEnvfEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, Single param); - [Slot(1519)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiTexEnvfvEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); - [Slot(1520)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexEnviEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, Int32 param); - [Slot(1521)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiTexEnvivEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); - [Slot(1522)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexGendEXT(System.Int32 texunit, System.Int32 coord, System.Int32 pname, Double param); - [Slot(1523)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiTexGendvEXT(System.Int32 texunit, System.Int32 coord, System.Int32 pname, [CountAttribute(Computed = "pname")] Double* @params); - [Slot(1524)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexGenfEXT(System.Int32 texunit, System.Int32 coord, System.Int32 pname, Single param); - [Slot(1525)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiTexGenfvEXT(System.Int32 texunit, System.Int32 coord, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); - [Slot(1526)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexGeniEXT(System.Int32 texunit, System.Int32 coord, System.Int32 pname, Int32 param); - [Slot(1527)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiTexGenivEXT(System.Int32 texunit, System.Int32 coord, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); - [Slot(1528)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexImage1DEXT(System.Int32 texunit, System.Int32 target, Int32 level, Int32 internalformat, Int32 width, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels); - [Slot(1529)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexImage2DEXT(System.Int32 texunit, System.Int32 target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); - [Slot(1530)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexImage3DEXT(System.Int32 texunit, System.Int32 target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels); - [Slot(1531)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexParameterfEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, Single param); - [Slot(1532)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiTexParameterfvEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); - [Slot(1533)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexParameteriEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, Int32 param); - [Slot(1534)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiTexParameterIivEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); - [Slot(1535)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiTexParameterIuivEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] UInt32* @params); - [Slot(1536)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiTexParameterivEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); - [Slot(1537)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexRenderbufferEXT(System.Int32 texunit, System.Int32 target, UInt32 renderbuffer); - [Slot(1538)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexSubImage1DEXT(System.Int32 texunit, System.Int32 target, Int32 level, Int32 xoffset, Int32 width, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels); - [Slot(1539)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexSubImage2DEXT(System.Int32 texunit, System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); - [Slot(1540)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexSubImage3DEXT(System.Int32 texunit, System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels); - [Slot(1550)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedBufferDataEXT(UInt32 buffer, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data, System.Int32 usage); - [Slot(1552)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedBufferPageCommitmentEXT(UInt32 buffer, IntPtr offset, IntPtr size, bool commit); - [Slot(1554)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedBufferStorageEXT(UInt32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, System.Int32 flags); - [Slot(1555)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedBufferStorageExternalEXT(UInt32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags); - [Slot(1556)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedBufferStorageMemEXT(UInt32 buffer, IntPtr size, UInt32 memory, UInt64 offset); - [Slot(1558)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedBufferSubDataEXT(UInt32 buffer, IntPtr offset, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data); - [Slot(1559)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedCopyBufferSubDataEXT(UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size); - [Slot(1563)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedFramebufferParameteriEXT(UInt32 framebuffer, System.Int32 pname, Int32 param); - [Slot(1566)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedFramebufferRenderbufferEXT(UInt32 framebuffer, System.Int32 attachment, System.Int32 renderbuffertarget, UInt32 renderbuffer); - [Slot(1571)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedFramebufferTexture1DEXT(UInt32 framebuffer, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level); - [Slot(1572)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedFramebufferTexture2DEXT(UInt32 framebuffer, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level); - [Slot(1573)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedFramebufferTexture3DEXT(UInt32 framebuffer, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level, Int32 zoffset); - [Slot(1574)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedFramebufferTextureEXT(UInt32 framebuffer, System.Int32 attachment, UInt32 texture, Int32 level); - [Slot(1575)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedFramebufferTextureFaceEXT(UInt32 framebuffer, System.Int32 attachment, UInt32 texture, Int32 level, System.Int32 face); - [Slot(1577)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedFramebufferTextureLayerEXT(UInt32 framebuffer, System.Int32 attachment, UInt32 texture, Int32 level, Int32 layer); - [Slot(1578)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedProgramLocalParameter4dEXT(UInt32 program, System.Int32 target, UInt32 index, Double x, Double y, Double z, Double w); - [Slot(1579)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glNamedProgramLocalParameter4dvEXT(UInt32 program, System.Int32 target, UInt32 index, [CountAttribute(Count = 4)] Double* @params); - [Slot(1580)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedProgramLocalParameter4fEXT(UInt32 program, System.Int32 target, UInt32 index, Single x, Single y, Single z, Single w); - [Slot(1581)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glNamedProgramLocalParameter4fvEXT(UInt32 program, System.Int32 target, UInt32 index, [CountAttribute(Count = 4)] Single* @params); - [Slot(1582)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedProgramLocalParameterI4iEXT(UInt32 program, System.Int32 target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w); - [Slot(1583)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glNamedProgramLocalParameterI4ivEXT(UInt32 program, System.Int32 target, UInt32 index, [CountAttribute(Count = 4)] Int32* @params); - [Slot(1584)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedProgramLocalParameterI4uiEXT(UInt32 program, System.Int32 target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w); - [Slot(1585)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glNamedProgramLocalParameterI4uivEXT(UInt32 program, System.Int32 target, UInt32 index, [CountAttribute(Count = 4)] UInt32* @params); - [Slot(1586)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glNamedProgramLocalParameters4fvEXT(UInt32 program, System.Int32 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* @params); - [Slot(1587)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glNamedProgramLocalParametersI4ivEXT(UInt32 program, System.Int32 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* @params); - [Slot(1588)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glNamedProgramLocalParametersI4uivEXT(UInt32 program, System.Int32 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* @params); - [Slot(1589)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedProgramStringEXT(UInt32 program, System.Int32 target, System.Int32 format, Int32 len, [CountAttribute(Parameter = "len")] IntPtr @string); - [Slot(1591)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedRenderbufferStorageEXT(UInt32 renderbuffer, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(1593)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedRenderbufferStorageMultisampleCoverageEXT(UInt32 renderbuffer, Int32 coverageSamples, Int32 colorSamples, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(1594)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedRenderbufferStorageMultisampleEXT(UInt32 renderbuffer, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(1618)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNormalPointerEXT(System.Int32 type, Int32 stride, Int32 count, [CountAttribute(Computed = "type,stride,count")] IntPtr pointer); - [Slot(1684)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPixelTransformParameterfEXT(System.Int32 target, System.Int32 pname, Single param); - [Slot(1685)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPixelTransformParameterfvEXT(System.Int32 target, System.Int32 pname, [CountAttribute(Count = 1)] Single* @params); - [Slot(1686)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPixelTransformParameteriEXT(System.Int32 target, System.Int32 pname, Int32 param); - [Slot(1687)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPixelTransformParameterivEXT(System.Int32 target, System.Int32 pname, [CountAttribute(Count = 1)] Int32* @params); - [Slot(1695)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPointParameterfEXT(System.Int32 pname, Single param); - [Slot(1699)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPointParameterfvEXT(System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); - [Slot(1714)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPolygonOffsetClampEXT(Single factor, Single units, Single clamp); - [Slot(1715)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPolygonOffsetEXT(Single factor, Single bias); - [Slot(1722)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPopGroupMarkerEXT(); - [Slot(1732)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPrioritizeTexturesEXT(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures, [CountAttribute(Parameter = "n")] Single* priorities); - [Slot(1746)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramEnvParameters4fvEXT(System.Int32 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* @params); - [Slot(1757)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramLocalParameters4fvEXT(System.Int32 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* @params); - [Slot(1770)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramParameteriEXT(UInt32 program, System.Int32 pname, Int32 value); - [Slot(1777)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform1dEXT(UInt32 program, Int32 location, Double x); - [Slot(1779)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform1dvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double* value); - [Slot(1781)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform1fEXT(UInt32 program, Int32 location, Single v0); - [Slot(1783)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform1fvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value); - [Slot(1789)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform1iEXT(UInt32 program, Int32 location, Int32 v0); - [Slot(1791)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform1ivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value); - [Slot(1797)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform1uiEXT(UInt32 program, Int32 location, UInt32 v0); - [Slot(1799)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform1uivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32* value); - [Slot(1801)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform2dEXT(UInt32 program, Int32 location, Double x, Double y); - [Slot(1803)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform2dvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value); - [Slot(1805)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform2fEXT(UInt32 program, Int32 location, Single v0, Single v1); - [Slot(1807)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform2fvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value); - [Slot(1813)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform2iEXT(UInt32 program, Int32 location, Int32 v0, Int32 v1); - [Slot(1815)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform2ivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value); - [Slot(1821)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform2uiEXT(UInt32 program, Int32 location, UInt32 v0, UInt32 v1); - [Slot(1823)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform2uivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value); - [Slot(1825)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform3dEXT(UInt32 program, Int32 location, Double x, Double y, Double z); - [Slot(1827)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform3dvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value); - [Slot(1829)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform3fEXT(UInt32 program, Int32 location, Single v0, Single v1, Single v2); - [Slot(1831)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform3fvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value); - [Slot(1837)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform3iEXT(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2); - [Slot(1839)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform3ivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value); - [Slot(1845)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform3uiEXT(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2); - [Slot(1847)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform3uivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value); - [Slot(1849)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform4dEXT(UInt32 program, Int32 location, Double x, Double y, Double z, Double w); - [Slot(1851)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform4dvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value); - [Slot(1853)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform4fEXT(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3); - [Slot(1855)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform4fvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value); - [Slot(1861)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform4iEXT(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3); - [Slot(1863)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform4ivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value); - [Slot(1869)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniform4uiEXT(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3); - [Slot(1871)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniform4uivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value); - [Slot(1877)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix2dvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value); - [Slot(1879)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix2fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value); - [Slot(1881)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix2x3dvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value); - [Slot(1883)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix2x3fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); - [Slot(1885)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix2x4dvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value); - [Slot(1887)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix2x4fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); - [Slot(1889)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix3dvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value); - [Slot(1891)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix3fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value); - [Slot(1893)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix3x2dvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value); - [Slot(1895)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix3x2fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); - [Slot(1897)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix3x4dvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value); - [Slot(1899)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix3x4fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); - [Slot(1901)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix4dvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value); - [Slot(1903)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix4fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value); - [Slot(1905)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix4x2dvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value); - [Slot(1907)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix4x2fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); - [Slot(1909)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix4x3dvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value); - [Slot(1911)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramUniformMatrix4x3fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); - [Slot(1916)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProvokingVertexEXT(System.Int32 mode); - [Slot(1919)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPushClientAttribDefaultEXT(System.Int32 mask); - [Slot(1922)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPushGroupMarkerEXT(Int32 length, IntPtr marker); - [Slot(1958)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRasterSamplesEXT(UInt32 samples, bool fixedsamplelocations); - [Slot(1976)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glReleaseKeyedMutexWin32EXT(UInt32 memory, UInt64 key); - [Slot(1979)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRenderbufferStorageEXT(System.Int32 target, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(1982)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRenderbufferStorageMultisampleEXT(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(2010)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glResetHistogramEXT(System.Int32 target); - [Slot(2012)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glResetMinmaxEXT(System.Int32 target); - [Slot(2024)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSampleMaskEXT(Single value, bool invert); - [Slot(2028)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSamplePatternEXT(System.Int32 pattern); - [Slot(2044)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSecondaryColor3bEXT(SByte red, SByte green, SByte blue); - [Slot(2046)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glSecondaryColor3bvEXT([CountAttribute(Count = 3)] SByte* v); - [Slot(2048)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSecondaryColor3dEXT(Double red, Double green, Double blue); - [Slot(2050)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glSecondaryColor3dvEXT([CountAttribute(Count = 3)] Double* v); - [Slot(2052)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSecondaryColor3fEXT(Single red, Single green, Single blue); - [Slot(2054)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glSecondaryColor3fvEXT([CountAttribute(Count = 3)] Single* v); - [Slot(2058)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSecondaryColor3iEXT(Int32 red, Int32 green, Int32 blue); - [Slot(2060)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glSecondaryColor3ivEXT([CountAttribute(Count = 3)] Int32* v); - [Slot(2062)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSecondaryColor3sEXT(Int16 red, Int16 green, Int16 blue); - [Slot(2064)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glSecondaryColor3svEXT([CountAttribute(Count = 3)] Int16* v); - [Slot(2066)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSecondaryColor3ubEXT(Byte red, Byte green, Byte blue); - [Slot(2068)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glSecondaryColor3ubvEXT([CountAttribute(Count = 3)] Byte* v); - [Slot(2070)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSecondaryColor3uiEXT(UInt32 red, UInt32 green, UInt32 blue); - [Slot(2072)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glSecondaryColor3uivEXT([CountAttribute(Count = 3)] UInt32* v); - [Slot(2074)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSecondaryColor3usEXT(UInt16 red, UInt16 green, UInt16 blue); - [Slot(2076)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glSecondaryColor3usvEXT([CountAttribute(Count = 3)] UInt16* v); - [Slot(2081)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSecondaryColorPointerEXT(Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer); - [Slot(2085)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glSemaphoreParameterui64vEXT(UInt32 semaphore, System.Int32 pname, UInt64* @params); - [Slot(2087)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSeparableFilter2DEXT(System.Int32 target, System.Int32 internalformat, Int32 width, Int32 height, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "target,format,type,width")] IntPtr row, [CountAttribute(Computed = "target,format,type,height")] IntPtr column); - [Slot(2091)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSetInvariantEXT(UInt32 id, System.Int32 type, [CountAttribute(Computed = "id,type")] IntPtr addr); - [Slot(2092)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSetLocalConstantEXT(UInt32 id, System.Int32 type, [CountAttribute(Computed = "id,type")] IntPtr addr); - [Slot(2096)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glShaderOp1EXT(System.Int32 op, UInt32 res, UInt32 arg1); - [Slot(2097)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glShaderOp2EXT(System.Int32 op, UInt32 res, UInt32 arg1, UInt32 arg2); - [Slot(2098)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glShaderOp3EXT(System.Int32 op, UInt32 res, UInt32 arg1, UInt32 arg2, UInt32 arg3); - [Slot(2103)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glSignalSemaphoreEXT(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] System.Int32* dstLayouts); - [Slot(2114)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilClearTagEXT(Int32 stencilTagBits, UInt32 stencilClearTag); - [Slot(2135)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSwizzleEXT(UInt32 res, UInt32 @in, System.Int32 outX, System.Int32 outY, System.Int32 outZ, System.Int32 outW); - [Slot(2138)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTangent3bEXT(SByte tx, SByte ty, SByte tz); - [Slot(2139)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTangent3bvEXT([CountAttribute(Count = 3)] SByte* v); - [Slot(2140)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTangent3dEXT(Double tx, Double ty, Double tz); - [Slot(2141)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTangent3dvEXT([CountAttribute(Count = 3)] Double* v); - [Slot(2142)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTangent3fEXT(Single tx, Single ty, Single tz); - [Slot(2143)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTangent3fvEXT([CountAttribute(Count = 3)] Single* v); - [Slot(2144)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTangent3iEXT(Int32 tx, Int32 ty, Int32 tz); - [Slot(2145)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTangent3ivEXT([CountAttribute(Count = 3)] Int32* v); - [Slot(2146)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTangent3sEXT(Int16 tx, Int16 ty, Int16 tz); - [Slot(2147)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTangent3svEXT([CountAttribute(Count = 3)] Int16* v); - [Slot(2148)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTangentPointerEXT(System.Int32 type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer); - [Slot(2157)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexBufferEXT(System.Int32 target, System.Int32 internalformat, UInt32 buffer); - [Slot(2241)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexCoordPointerEXT(Int32 size, System.Int32 type, Int32 stride, Int32 count, [CountAttribute(Computed = "size,type,stride,count")] IntPtr pointer); - [Slot(2264)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexImage3DEXT(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels); - [Slot(2273)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexParameterIivEXT(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); - [Slot(2275)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexParameterIuivEXT(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] UInt32* @params); - [Slot(2285)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexStorageMem1DEXT(System.Int32 target, Int32 levels, System.Int32 internalFormat, Int32 width, UInt32 memory, UInt64 offset); - [Slot(2286)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexStorageMem2DEXT(System.Int32 target, Int32 levels, System.Int32 internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset); - [Slot(2287)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexStorageMem2DMultisampleEXT(System.Int32 target, Int32 samples, System.Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset); - [Slot(2288)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexStorageMem3DEXT(System.Int32 target, Int32 levels, System.Int32 internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset); - [Slot(2289)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexStorageMem3DMultisampleEXT(System.Int32 target, Int32 samples, System.Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset); - [Slot(2292)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexSubImage1DEXT(System.Int32 target, Int32 level, Int32 xoffset, Int32 width, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels); - [Slot(2294)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexSubImage2DEXT(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); - [Slot(2296)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexSubImage3DEXT(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels); - [Slot(2301)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureBufferEXT(UInt32 texture, System.Int32 target, System.Int32 internalformat, UInt32 buffer); - [Slot(2303)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureBufferRangeEXT(UInt32 texture, System.Int32 target, System.Int32 internalformat, UInt32 buffer, IntPtr offset, IntPtr size); - [Slot(2305)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureImage1DEXT(UInt32 texture, System.Int32 target, Int32 level, Int32 internalformat, Int32 width, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels); - [Slot(2306)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureImage2DEXT(UInt32 texture, System.Int32 target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); - [Slot(2309)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureImage3DEXT(UInt32 texture, System.Int32 target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels); - [Slot(2312)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureLightEXT(System.Int32 pname); - [Slot(2313)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureMaterialEXT(System.Int32 face, System.Int32 mode); - [Slot(2314)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureNormalEXT(System.Int32 mode); - [Slot(2315)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexturePageCommitmentEXT(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit); - [Slot(2317)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureParameterfEXT(UInt32 texture, System.Int32 target, System.Int32 pname, Single param); - [Slot(2319)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTextureParameterfvEXT(UInt32 texture, System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); - [Slot(2321)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureParameteriEXT(UInt32 texture, System.Int32 target, System.Int32 pname, Int32 param); - [Slot(2323)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTextureParameterIivEXT(UInt32 texture, System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); - [Slot(2325)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTextureParameterIuivEXT(UInt32 texture, System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] UInt32* @params); - [Slot(2327)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTextureParameterivEXT(UInt32 texture, System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); - [Slot(2329)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureRenderbufferEXT(UInt32 texture, System.Int32 target, UInt32 renderbuffer); - [Slot(2331)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureStorage1DEXT(UInt32 texture, System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width); - [Slot(2333)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureStorage2DEXT(UInt32 texture, System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(2335)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureStorage2DMultisampleEXT(UInt32 texture, System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height, bool fixedsamplelocations); - [Slot(2337)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureStorage3DEXT(UInt32 texture, System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth); - [Slot(2339)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureStorage3DMultisampleEXT(UInt32 texture, System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations); - [Slot(2340)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureStorageMem1DEXT(UInt32 texture, Int32 levels, System.Int32 internalFormat, Int32 width, UInt32 memory, UInt64 offset); - [Slot(2341)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureStorageMem2DEXT(UInt32 texture, Int32 levels, System.Int32 internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset); - [Slot(2342)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureStorageMem2DMultisampleEXT(UInt32 texture, Int32 samples, System.Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset); - [Slot(2343)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureStorageMem3DEXT(UInt32 texture, Int32 levels, System.Int32 internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset); - [Slot(2344)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureStorageMem3DMultisampleEXT(UInt32 texture, Int32 samples, System.Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset); - [Slot(2347)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureSubImage1DEXT(UInt32 texture, System.Int32 target, Int32 level, Int32 xoffset, Int32 width, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels); - [Slot(2349)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureSubImage2DEXT(UInt32 texture, System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); - [Slot(2351)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureSubImage3DEXT(UInt32 texture, System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels); - [Slot(2359)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTransformFeedbackVaryingsEXT(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] IntPtr varyings, System.Int32 bufferMode); - [Slot(2384)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform1uiEXT(Int32 location, UInt32 v0); - [Slot(2386)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform1uivEXT(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32* value); - [Slot(2406)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform2uiEXT(Int32 location, UInt32 v0, UInt32 v1); - [Slot(2408)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform2uivEXT(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value); - [Slot(2428)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform3uiEXT(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2); - [Slot(2430)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform3uivEXT(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value); - [Slot(2450)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform4uiEXT(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3); - [Slot(2452)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform4uivEXT(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value); - [Slot(2454)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniformBufferEXT(UInt32 program, Int32 location, UInt32 buffer); - [Slot(2483)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUnlockArraysEXT(); - [Slot(2487)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glUnmapNamedBufferEXT(UInt32 buffer); - [Slot(2494)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUseProgramStagesEXT(UInt32 pipeline, UInt32 stages, UInt32 program); - [Slot(2495)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUseShaderProgramEXT(System.Int32 type, UInt32 program); - [Slot(2499)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glValidateProgramPipelineEXT(UInt32 pipeline); - [Slot(2501)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVariantbvEXT(UInt32 id, [CountAttribute(Computed = "id")] SByte* addr); - [Slot(2502)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVariantdvEXT(UInt32 id, [CountAttribute(Computed = "id")] Double* addr); - [Slot(2503)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVariantfvEXT(UInt32 id, [CountAttribute(Computed = "id")] Single* addr); - [Slot(2504)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVariantivEXT(UInt32 id, [CountAttribute(Computed = "id")] Int32* addr); - [Slot(2505)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVariantPointerEXT(UInt32 id, System.Int32 type, UInt32 stride, [CountAttribute(Computed = "id,type,stride")] IntPtr addr); - [Slot(2506)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVariantsvEXT(UInt32 id, [CountAttribute(Computed = "id")] Int16* addr); - [Slot(2507)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVariantubvEXT(UInt32 id, [CountAttribute(Computed = "id")] Byte* addr); - [Slot(2508)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVariantuivEXT(UInt32 id, [CountAttribute(Computed = "id")] UInt32* addr); - [Slot(2509)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVariantusvEXT(UInt32 id, [CountAttribute(Computed = "id")] UInt16* addr); - [Slot(2567)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayBindVertexBufferEXT(UInt32 vaobj, UInt32 bindingindex, UInt32 buffer, IntPtr offset, Int32 stride); - [Slot(2568)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayColorOffsetEXT(UInt32 vaobj, UInt32 buffer, Int32 size, System.Int32 type, Int32 stride, IntPtr offset); - [Slot(2569)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayEdgeFlagOffsetEXT(UInt32 vaobj, UInt32 buffer, Int32 stride, IntPtr offset); - [Slot(2571)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayFogCoordOffsetEXT(UInt32 vaobj, UInt32 buffer, System.Int32 type, Int32 stride, IntPtr offset); - [Slot(2572)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayIndexOffsetEXT(UInt32 vaobj, UInt32 buffer, System.Int32 type, Int32 stride, IntPtr offset); - [Slot(2573)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayMultiTexCoordOffsetEXT(UInt32 vaobj, UInt32 buffer, System.Int32 texunit, Int32 size, System.Int32 type, Int32 stride, IntPtr offset); - [Slot(2574)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayNormalOffsetEXT(UInt32 vaobj, UInt32 buffer, System.Int32 type, Int32 stride, IntPtr offset); - [Slot(2578)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArraySecondaryColorOffsetEXT(UInt32 vaobj, UInt32 buffer, Int32 size, System.Int32 type, Int32 stride, IntPtr offset); - [Slot(2579)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayTexCoordOffsetEXT(UInt32 vaobj, UInt32 buffer, Int32 size, System.Int32 type, Int32 stride, IntPtr offset); - [Slot(2580)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayVertexAttribBindingEXT(UInt32 vaobj, UInt32 attribindex, UInt32 bindingindex); - [Slot(2581)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayVertexAttribDivisorEXT(UInt32 vaobj, UInt32 index, UInt32 divisor); - [Slot(2582)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayVertexAttribFormatEXT(UInt32 vaobj, UInt32 attribindex, Int32 size, System.Int32 type, bool normalized, UInt32 relativeoffset); - [Slot(2583)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayVertexAttribIFormatEXT(UInt32 vaobj, UInt32 attribindex, Int32 size, System.Int32 type, UInt32 relativeoffset); - [Slot(2584)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayVertexAttribIOffsetEXT(UInt32 vaobj, UInt32 buffer, UInt32 index, Int32 size, System.Int32 type, Int32 stride, IntPtr offset); - [Slot(2585)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayVertexAttribLFormatEXT(UInt32 vaobj, UInt32 attribindex, Int32 size, System.Int32 type, UInt32 relativeoffset); - [Slot(2586)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayVertexAttribLOffsetEXT(UInt32 vaobj, UInt32 buffer, UInt32 index, Int32 size, System.Int32 type, Int32 stride, IntPtr offset); - [Slot(2587)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayVertexAttribOffsetEXT(UInt32 vaobj, UInt32 buffer, UInt32 index, Int32 size, System.Int32 type, bool normalized, Int32 stride, IntPtr offset); - [Slot(2588)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayVertexBindingDivisorEXT(UInt32 vaobj, UInt32 bindingindex, UInt32 divisor); - [Slot(2591)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayVertexOffsetEXT(UInt32 vaobj, UInt32 buffer, Int32 size, System.Int32 type, Int32 stride, IntPtr offset); - [Slot(2705)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribI1iEXT(UInt32 index, Int32 x); - [Slot(2707)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribI1ivEXT(UInt32 index, [CountAttribute(Count = 1)] Int32* v); - [Slot(2709)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribI1uiEXT(UInt32 index, UInt32 x); - [Slot(2711)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribI1uivEXT(UInt32 index, [CountAttribute(Count = 1)] UInt32* v); - [Slot(2713)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribI2iEXT(UInt32 index, Int32 x, Int32 y); - [Slot(2715)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribI2ivEXT(UInt32 index, [CountAttribute(Count = 2)] Int32* v); - [Slot(2717)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribI2uiEXT(UInt32 index, UInt32 x, UInt32 y); - [Slot(2719)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribI2uivEXT(UInt32 index, [CountAttribute(Count = 2)] UInt32* v); - [Slot(2721)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribI3iEXT(UInt32 index, Int32 x, Int32 y, Int32 z); - [Slot(2723)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribI3ivEXT(UInt32 index, [CountAttribute(Count = 3)] Int32* v); - [Slot(2725)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribI3uiEXT(UInt32 index, UInt32 x, UInt32 y, UInt32 z); - [Slot(2727)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribI3uivEXT(UInt32 index, [CountAttribute(Count = 3)] UInt32* v); - [Slot(2729)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribI4bvEXT(UInt32 index, [CountAttribute(Count = 4)] SByte* v); - [Slot(2731)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribI4iEXT(UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w); - [Slot(2733)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribI4ivEXT(UInt32 index, [CountAttribute(Count = 4)] Int32* v); - [Slot(2735)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribI4svEXT(UInt32 index, [CountAttribute(Count = 4)] Int16* v); - [Slot(2737)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribI4ubvEXT(UInt32 index, [CountAttribute(Count = 4)] Byte* v); - [Slot(2739)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribI4uiEXT(UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w); - [Slot(2741)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribI4uivEXT(UInt32 index, [CountAttribute(Count = 4)] UInt32* v); - [Slot(2743)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribI4usvEXT(UInt32 index, [CountAttribute(Count = 4)] UInt16* v); - [Slot(2747)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribIPointerEXT(UInt32 index, Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer); - [Slot(2749)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribL1dEXT(UInt32 index, Double x); - [Slot(2751)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribL1dvEXT(UInt32 index, [CountAttribute(Count = 1)] Double* v); - [Slot(2759)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribL2dEXT(UInt32 index, Double x, Double y); - [Slot(2761)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribL2dvEXT(UInt32 index, [CountAttribute(Count = 2)] Double* v); - [Slot(2767)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribL3dEXT(UInt32 index, Double x, Double y, Double z); - [Slot(2769)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribL3dvEXT(UInt32 index, [CountAttribute(Count = 3)] Double* v); - [Slot(2775)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribL4dEXT(UInt32 index, Double x, Double y, Double z, Double w); - [Slot(2777)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribL4dvEXT(UInt32 index, [CountAttribute(Count = 4)] Double* v); - [Slot(2785)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribLPointerEXT(UInt32 index, Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Parameter = "size")] IntPtr pointer); - [Slot(2827)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexPointerEXT(Int32 size, System.Int32 type, Int32 stride, Int32 count, [CountAttribute(Computed = "size,type,stride,count")] IntPtr pointer); - [Slot(2862)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexWeightfEXT(Single weight); - [Slot(2863)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexWeightfvEXT([CountAttribute(Count = 1)] Single* weight); - [Slot(2866)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexWeightPointerEXT(Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer); - [Slot(2877)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glWaitSemaphoreEXT(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] System.Int32* srcLayouts); - [Slot(2946)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glWindowRectanglesEXT(System.Int32 mode, Int32 count, [CountAttribute(Computed = "count")] Int32* box); - [Slot(2947)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glWriteMaskEXT(UInt32 res, UInt32 @in, System.Int32 outX, System.Int32 outY, System.Int32 outZ, System.Int32 outW); - [Slot(650)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFrameTerminatorGREMEDY(); - [Slot(2133)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStringMarkerGREMEDY(Int32 len, [CountAttribute(Parameter = "len")] IntPtr @string); - [Slot(800)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetImageTransformParameterfvHP(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); - [Slot(801)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetImageTransformParameterivHP(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(1169)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glImageTransformParameterfHP(System.Int32 target, System.Int32 pname, Single param); - [Slot(1170)] + private static extern void glHistogramEXT(System.Int32 target, Int32 width, System.Int32 internalformat, bool sink); + [Slot(1175)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glImageTransformParameterfvHP(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); + private static extern void glImportMemoryFdEXT(UInt32 memory, UInt64 size, System.Int32 handleType, Int32 fd); + [Slot(1176)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glImportMemoryWin32HandleEXT(UInt32 memory, UInt64 size, System.Int32 handleType, [OutAttribute] IntPtr handle); + [Slot(1177)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glImportMemoryWin32NameEXT(UInt32 memory, UInt64 size, System.Int32 handleType, IntPtr name); + [Slot(1178)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glImportSemaphoreFdEXT(UInt32 semaphore, System.Int32 handleType, Int32 fd); + [Slot(1179)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glImportSemaphoreWin32HandleEXT(UInt32 semaphore, System.Int32 handleType, [OutAttribute] IntPtr handle); + [Slot(1180)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glImportSemaphoreWin32NameEXT(UInt32 semaphore, System.Int32 handleType, IntPtr name); + [Slot(1181)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern IntPtr glImportSyncEXT(System.Int32 external_sync_type, IntPtr external_sync, UInt32 flags); + [Slot(1186)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glIndexFuncEXT(System.Int32 func, Single @ref); + [Slot(1191)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glIndexMaterialEXT(System.Int32 face, System.Int32 mode); + [Slot(1193)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glIndexPointerEXT(System.Int32 type, Int32 stride, Int32 count, [CountAttribute(Computed = "type,stride,count")] IntPtr pointer); + [Slot(1202)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glInsertComponentEXT(UInt32 res, UInt32 src, UInt32 num); + [Slot(1203)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glInsertEventMarkerEXT(Int32 length, IntPtr marker); + [Slot(1222)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glIsEnabledIndexedEXT(System.Int32 target, UInt32 index); + [Slot(1226)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glIsFramebufferEXT(UInt32 framebuffer); + [Slot(1230)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glIsMemoryObjectEXT(UInt32 memoryObject); + [Slot(1243)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glIsProgramPipelineEXT(UInt32 pipeline); + [Slot(1247)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glIsRenderbufferEXT(UInt32 renderbuffer); + [Slot(1249)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glIsSemaphoreEXT(UInt32 semaphore); + [Slot(1254)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glIsTextureEXT(UInt32 texture); + [Slot(1259)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glIsVariantEnabledEXT(UInt32 id, System.Int32 cap); + [Slot(1263)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glLabelObjectEXT(System.Int32 type, UInt32 @object, Int32 length, IntPtr label); + [Slot(1303)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glLockArraysEXT(Int32 first, Int32 count); + [Slot(1334)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern IntPtr glMapNamedBufferEXT(UInt32 buffer, System.Int32 access); + [Slot(1336)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern IntPtr glMapNamedBufferRangeEXT(UInt32 buffer, IntPtr offset, IntPtr length, System.Int32 access); + [Slot(1351)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixFrustumEXT(System.Int32 mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar); + [Slot(1358)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMatrixLoaddEXT(System.Int32 mode, [CountAttribute(Count = 16)] Double* m); + [Slot(1359)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMatrixLoadfEXT(System.Int32 mode, [CountAttribute(Count = 16)] Single* m); + [Slot(1360)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixLoadIdentityEXT(System.Int32 mode); + [Slot(1362)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMatrixLoadTransposedEXT(System.Int32 mode, [CountAttribute(Count = 16)] Double* m); + [Slot(1363)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMatrixLoadTransposefEXT(System.Int32 mode, [CountAttribute(Count = 16)] Single* m); + [Slot(1367)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMatrixMultdEXT(System.Int32 mode, [CountAttribute(Count = 16)] Double* m); + [Slot(1368)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMatrixMultfEXT(System.Int32 mode, [CountAttribute(Count = 16)] Single* m); + [Slot(1370)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMatrixMultTransposedEXT(System.Int32 mode, [CountAttribute(Count = 16)] Double* m); + [Slot(1371)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMatrixMultTransposefEXT(System.Int32 mode, [CountAttribute(Count = 16)] Single* m); + [Slot(1372)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixOrthoEXT(System.Int32 mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar); + [Slot(1373)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixPopEXT(System.Int32 mode); + [Slot(1374)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixPushEXT(System.Int32 mode); + [Slot(1375)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixRotatedEXT(System.Int32 mode, Double angle, Double x, Double y, Double z); + [Slot(1376)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixRotatefEXT(System.Int32 mode, Single angle, Single x, Single y, Single z); + [Slot(1377)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixScaledEXT(System.Int32 mode, Double x, Double y, Double z); + [Slot(1378)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixScalefEXT(System.Int32 mode, Single x, Single y, Single z); + [Slot(1379)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixTranslatedEXT(System.Int32 mode, Double x, Double y, Double z); + [Slot(1380)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMatrixTranslatefEXT(System.Int32 mode, Single x, Single y, Single z); + [Slot(1385)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMemoryBarrierEXT(System.Int32 barriers); + [Slot(1386)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMemoryObjectParameterivEXT(UInt32 memoryObject, System.Int32 pname, Int32* @params); + [Slot(1388)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMinmaxEXT(System.Int32 target, System.Int32 internalformat, bool sink); + [Slot(1403)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMultiDrawArraysEXT(System.Int32 mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount); + [Slot(1413)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMultiDrawElementsEXT(System.Int32 mode, [CountAttribute(Computed = "primcount")] Int32* count, System.Int32 type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount); + [Slot(1423)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMultiTexBufferEXT(System.Int32 texunit, System.Int32 target, System.Int32 internalformat, UInt32 buffer); + [Slot(1520)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMultiTexCoordPointerEXT(System.Int32 texunit, Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer); + [Slot(1521)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMultiTexEnvfEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, Single param); + [Slot(1522)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMultiTexEnvfvEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); + [Slot(1523)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMultiTexEnviEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, Int32 param); + [Slot(1524)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMultiTexEnvivEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + [Slot(1525)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMultiTexGendEXT(System.Int32 texunit, System.Int32 coord, System.Int32 pname, Double param); + [Slot(1526)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMultiTexGendvEXT(System.Int32 texunit, System.Int32 coord, System.Int32 pname, [CountAttribute(Computed = "pname")] Double* @params); + [Slot(1527)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMultiTexGenfEXT(System.Int32 texunit, System.Int32 coord, System.Int32 pname, Single param); + [Slot(1528)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMultiTexGenfvEXT(System.Int32 texunit, System.Int32 coord, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); + [Slot(1529)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMultiTexGeniEXT(System.Int32 texunit, System.Int32 coord, System.Int32 pname, Int32 param); + [Slot(1530)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMultiTexGenivEXT(System.Int32 texunit, System.Int32 coord, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + [Slot(1531)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMultiTexImage1DEXT(System.Int32 texunit, System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels); + [Slot(1532)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMultiTexImage2DEXT(System.Int32 texunit, System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); + [Slot(1533)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMultiTexImage3DEXT(System.Int32 texunit, System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels); + [Slot(1534)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMultiTexParameterfEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, Single param); + [Slot(1535)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMultiTexParameterfvEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); + [Slot(1536)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMultiTexParameteriEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, Int32 param); + [Slot(1537)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMultiTexParameterIivEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + [Slot(1538)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMultiTexParameterIuivEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] UInt32* @params); + [Slot(1539)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMultiTexParameterivEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + [Slot(1540)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMultiTexRenderbufferEXT(System.Int32 texunit, System.Int32 target, UInt32 renderbuffer); + [Slot(1541)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMultiTexSubImage1DEXT(System.Int32 texunit, System.Int32 target, Int32 level, Int32 xoffset, Int32 width, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels); + [Slot(1542)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMultiTexSubImage2DEXT(System.Int32 texunit, System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); + [Slot(1543)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMultiTexSubImage3DEXT(System.Int32 texunit, System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels); + [Slot(1553)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNamedBufferDataEXT(UInt32 buffer, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data, System.Int32 usage); + [Slot(1555)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNamedBufferPageCommitmentEXT(UInt32 buffer, IntPtr offset, IntPtr size, bool commit); + [Slot(1557)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNamedBufferStorageEXT(UInt32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, System.Int32 flags); + [Slot(1558)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNamedBufferStorageExternalEXT(UInt32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, System.Int32 flags); + [Slot(1559)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNamedBufferStorageMemEXT(UInt32 buffer, IntPtr size, UInt32 memory, UInt64 offset); + [Slot(1561)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNamedBufferSubDataEXT(UInt32 buffer, IntPtr offset, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data); + [Slot(1562)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNamedCopyBufferSubDataEXT(UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size); + [Slot(1566)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNamedFramebufferParameteriEXT(UInt32 framebuffer, System.Int32 pname, Int32 param); + [Slot(1569)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNamedFramebufferRenderbufferEXT(UInt32 framebuffer, System.Int32 attachment, System.Int32 renderbuffertarget, UInt32 renderbuffer); + [Slot(1574)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNamedFramebufferTexture1DEXT(UInt32 framebuffer, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level); + [Slot(1575)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNamedFramebufferTexture2DEXT(UInt32 framebuffer, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level); + [Slot(1576)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNamedFramebufferTexture3DEXT(UInt32 framebuffer, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level, Int32 zoffset); + [Slot(1577)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNamedFramebufferTextureEXT(UInt32 framebuffer, System.Int32 attachment, UInt32 texture, Int32 level); + [Slot(1578)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNamedFramebufferTextureFaceEXT(UInt32 framebuffer, System.Int32 attachment, UInt32 texture, Int32 level, System.Int32 face); + [Slot(1580)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNamedFramebufferTextureLayerEXT(UInt32 framebuffer, System.Int32 attachment, UInt32 texture, Int32 level, Int32 layer); + [Slot(1581)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNamedProgramLocalParameter4dEXT(UInt32 program, System.Int32 target, UInt32 index, Double x, Double y, Double z, Double w); + [Slot(1582)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glNamedProgramLocalParameter4dvEXT(UInt32 program, System.Int32 target, UInt32 index, [CountAttribute(Count = 4)] Double* @params); + [Slot(1583)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNamedProgramLocalParameter4fEXT(UInt32 program, System.Int32 target, UInt32 index, Single x, Single y, Single z, Single w); + [Slot(1584)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glNamedProgramLocalParameter4fvEXT(UInt32 program, System.Int32 target, UInt32 index, [CountAttribute(Count = 4)] Single* @params); + [Slot(1585)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNamedProgramLocalParameterI4iEXT(UInt32 program, System.Int32 target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w); + [Slot(1586)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glNamedProgramLocalParameterI4ivEXT(UInt32 program, System.Int32 target, UInt32 index, [CountAttribute(Count = 4)] Int32* @params); + [Slot(1587)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNamedProgramLocalParameterI4uiEXT(UInt32 program, System.Int32 target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w); + [Slot(1588)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glNamedProgramLocalParameterI4uivEXT(UInt32 program, System.Int32 target, UInt32 index, [CountAttribute(Count = 4)] UInt32* @params); + [Slot(1589)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glNamedProgramLocalParameters4fvEXT(UInt32 program, System.Int32 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* @params); + [Slot(1590)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glNamedProgramLocalParametersI4ivEXT(UInt32 program, System.Int32 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* @params); + [Slot(1591)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glNamedProgramLocalParametersI4uivEXT(UInt32 program, System.Int32 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* @params); + [Slot(1592)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNamedProgramStringEXT(UInt32 program, System.Int32 target, System.Int32 format, Int32 len, [CountAttribute(Parameter = "len")] IntPtr @string); + [Slot(1594)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNamedRenderbufferStorageEXT(UInt32 renderbuffer, System.Int32 internalformat, Int32 width, Int32 height); + [Slot(1596)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNamedRenderbufferStorageMultisampleCoverageEXT(UInt32 renderbuffer, Int32 coverageSamples, Int32 colorSamples, System.Int32 internalformat, Int32 width, Int32 height); + [Slot(1597)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNamedRenderbufferStorageMultisampleEXT(UInt32 renderbuffer, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height); + [Slot(1621)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNormalPointerEXT(System.Int32 type, Int32 stride, Int32 count, [CountAttribute(Computed = "type,stride,count")] IntPtr pointer); + [Slot(1687)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPixelTransformParameterfEXT(System.Int32 target, System.Int32 pname, Single param); + [Slot(1688)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glPixelTransformParameterfvEXT(System.Int32 target, System.Int32 pname, [CountAttribute(Count = 1)] Single* @params); + [Slot(1689)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPixelTransformParameteriEXT(System.Int32 target, System.Int32 pname, Int32 param); + [Slot(1690)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glPixelTransformParameterivEXT(System.Int32 target, System.Int32 pname, [CountAttribute(Count = 1)] Int32* @params); + [Slot(1698)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPointParameterfEXT(System.Int32 pname, Single param); + [Slot(1702)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glPointParameterfvEXT(System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); + [Slot(1717)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPolygonOffsetClampEXT(Single factor, Single units, Single clamp); + [Slot(1718)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPolygonOffsetEXT(Single factor, Single bias); + [Slot(1725)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPopGroupMarkerEXT(); + [Slot(1735)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glPrioritizeTexturesEXT(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures, [CountAttribute(Parameter = "n")] Single* priorities); + [Slot(1749)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramEnvParameters4fvEXT(System.Int32 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* @params); + [Slot(1760)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramLocalParameters4fvEXT(System.Int32 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* @params); + [Slot(1773)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramParameteriEXT(UInt32 program, System.Int32 pname, Int32 value); + [Slot(1780)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform1dEXT(UInt32 program, Int32 location, Double x); + [Slot(1782)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform1dvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double* value); + [Slot(1784)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform1fEXT(UInt32 program, Int32 location, Single v0); + [Slot(1786)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform1fvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value); + [Slot(1792)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform1iEXT(UInt32 program, Int32 location, Int32 v0); + [Slot(1794)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform1ivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value); + [Slot(1800)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform1uiEXT(UInt32 program, Int32 location, UInt32 v0); + [Slot(1802)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform1uivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32* value); + [Slot(1804)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform2dEXT(UInt32 program, Int32 location, Double x, Double y); + [Slot(1806)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform2dvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value); + [Slot(1808)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform2fEXT(UInt32 program, Int32 location, Single v0, Single v1); + [Slot(1810)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform2fvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value); + [Slot(1816)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform2iEXT(UInt32 program, Int32 location, Int32 v0, Int32 v1); + [Slot(1818)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform2ivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value); + [Slot(1824)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform2uiEXT(UInt32 program, Int32 location, UInt32 v0, UInt32 v1); + [Slot(1826)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform2uivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value); + [Slot(1828)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform3dEXT(UInt32 program, Int32 location, Double x, Double y, Double z); + [Slot(1830)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform3dvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value); + [Slot(1832)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform3fEXT(UInt32 program, Int32 location, Single v0, Single v1, Single v2); + [Slot(1834)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform3fvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value); + [Slot(1840)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform3iEXT(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2); + [Slot(1842)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform3ivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value); + [Slot(1848)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform3uiEXT(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2); + [Slot(1850)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform3uivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value); + [Slot(1852)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform4dEXT(UInt32 program, Int32 location, Double x, Double y, Double z, Double w); + [Slot(1854)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform4dvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value); + [Slot(1856)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform4fEXT(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3); + [Slot(1858)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform4fvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value); + [Slot(1864)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform4iEXT(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3); + [Slot(1866)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform4ivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value); + [Slot(1872)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniform4uiEXT(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3); + [Slot(1874)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniform4uivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value); + [Slot(1880)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix2dvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value); + [Slot(1882)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix2fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value); + [Slot(1884)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix2x3dvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value); + [Slot(1886)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix2x3fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); + [Slot(1888)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix2x4dvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value); + [Slot(1890)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix2x4fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); + [Slot(1892)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix3dvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value); + [Slot(1894)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix3fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value); + [Slot(1896)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix3x2dvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value); + [Slot(1898)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix3x2fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); + [Slot(1900)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix3x4dvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value); + [Slot(1902)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix3x4fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); + [Slot(1904)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix4dvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value); + [Slot(1906)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix4fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value); + [Slot(1908)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix4x2dvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value); + [Slot(1910)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix4x2fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); + [Slot(1912)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix4x3dvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value); + [Slot(1914)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramUniformMatrix4x3fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); + [Slot(1919)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProvokingVertexEXT(System.Int32 mode); + [Slot(1922)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPushClientAttribDefaultEXT(System.Int32 mask); + [Slot(1925)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPushGroupMarkerEXT(Int32 length, IntPtr marker); + [Slot(1963)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glRasterSamplesEXT(UInt32 samples, bool fixedsamplelocations); + [Slot(1981)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glReleaseKeyedMutexWin32EXT(UInt32 memory, UInt64 key); + [Slot(1984)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glRenderbufferStorageEXT(System.Int32 target, System.Int32 internalformat, Int32 width, Int32 height); + [Slot(1987)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glRenderbufferStorageMultisampleEXT(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height); + [Slot(2015)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glResetHistogramEXT(System.Int32 target); + [Slot(2017)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glResetMinmaxEXT(System.Int32 target); + [Slot(2029)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glSampleMaskEXT(Single value, bool invert); + [Slot(2033)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glSamplePatternEXT(System.Int32 pattern); + [Slot(2049)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glSecondaryColor3bEXT(SByte red, SByte green, SByte blue); + [Slot(2051)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glSecondaryColor3bvEXT([CountAttribute(Count = 3)] SByte* v); + [Slot(2053)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glSecondaryColor3dEXT(Double red, Double green, Double blue); + [Slot(2055)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glSecondaryColor3dvEXT([CountAttribute(Count = 3)] Double* v); + [Slot(2057)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glSecondaryColor3fEXT(Single red, Single green, Single blue); + [Slot(2059)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glSecondaryColor3fvEXT([CountAttribute(Count = 3)] Single* v); + [Slot(2063)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glSecondaryColor3iEXT(Int32 red, Int32 green, Int32 blue); + [Slot(2065)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glSecondaryColor3ivEXT([CountAttribute(Count = 3)] Int32* v); + [Slot(2067)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glSecondaryColor3sEXT(Int16 red, Int16 green, Int16 blue); + [Slot(2069)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glSecondaryColor3svEXT([CountAttribute(Count = 3)] Int16* v); + [Slot(2071)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glSecondaryColor3ubEXT(Byte red, Byte green, Byte blue); + [Slot(2073)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glSecondaryColor3ubvEXT([CountAttribute(Count = 3)] Byte* v); + [Slot(2075)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glSecondaryColor3uiEXT(UInt32 red, UInt32 green, UInt32 blue); + [Slot(2077)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glSecondaryColor3uivEXT([CountAttribute(Count = 3)] UInt32* v); + [Slot(2079)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glSecondaryColor3usEXT(UInt16 red, UInt16 green, UInt16 blue); + [Slot(2081)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glSecondaryColor3usvEXT([CountAttribute(Count = 3)] UInt16* v); + [Slot(2086)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glSecondaryColorPointerEXT(Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer); + [Slot(2090)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glSemaphoreParameterui64vEXT(UInt32 semaphore, System.Int32 pname, UInt64* @params); + [Slot(2092)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glSeparableFilter2DEXT(System.Int32 target, System.Int32 internalformat, Int32 width, Int32 height, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "target,format,type,width")] IntPtr row, [CountAttribute(Computed = "target,format,type,height")] IntPtr column); + [Slot(2096)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glSetInvariantEXT(UInt32 id, System.Int32 type, [CountAttribute(Computed = "id,type")] IntPtr addr); + [Slot(2097)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glSetLocalConstantEXT(UInt32 id, System.Int32 type, [CountAttribute(Computed = "id,type")] IntPtr addr); + [Slot(2101)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glShaderOp1EXT(System.Int32 op, UInt32 res, UInt32 arg1); + [Slot(2102)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glShaderOp2EXT(System.Int32 op, UInt32 res, UInt32 arg1, UInt32 arg2); + [Slot(2103)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glShaderOp3EXT(System.Int32 op, UInt32 res, UInt32 arg1, UInt32 arg2, UInt32 arg3); + [Slot(2108)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glSignalSemaphoreEXT(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] System.Int32* dstLayouts); + [Slot(2119)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glStencilClearTagEXT(Int32 stencilTagBits, UInt32 stencilClearTag); + [Slot(2140)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glSwizzleEXT(UInt32 res, UInt32 @in, System.Int32 outX, System.Int32 outY, System.Int32 outZ, System.Int32 outW); + [Slot(2143)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTangent3bEXT(SByte tx, SByte ty, SByte tz); + [Slot(2144)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTangent3bvEXT([CountAttribute(Count = 3)] SByte* v); + [Slot(2145)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTangent3dEXT(Double tx, Double ty, Double tz); + [Slot(2146)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTangent3dvEXT([CountAttribute(Count = 3)] Double* v); + [Slot(2147)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTangent3fEXT(Single tx, Single ty, Single tz); + [Slot(2148)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTangent3fvEXT([CountAttribute(Count = 3)] Single* v); + [Slot(2149)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTangent3iEXT(Int32 tx, Int32 ty, Int32 tz); + [Slot(2150)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTangent3ivEXT([CountAttribute(Count = 3)] Int32* v); + [Slot(2151)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTangent3sEXT(Int16 tx, Int16 ty, Int16 tz); + [Slot(2152)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTangent3svEXT([CountAttribute(Count = 3)] Int16* v); + [Slot(2153)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTangentPointerEXT(System.Int32 type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer); + [Slot(2162)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexBufferEXT(System.Int32 target, System.Int32 internalformat, UInt32 buffer); + [Slot(2246)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexCoordPointerEXT(Int32 size, System.Int32 type, Int32 stride, Int32 count, [CountAttribute(Computed = "size,type,stride,count")] IntPtr pointer); + [Slot(2269)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexImage3DEXT(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels); + [Slot(2278)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexParameterIivEXT(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + [Slot(2280)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexParameterIuivEXT(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] UInt32* @params); + [Slot(2290)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexStorageMem1DEXT(System.Int32 target, Int32 levels, System.Int32 internalFormat, Int32 width, UInt32 memory, UInt64 offset); + [Slot(2291)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexStorageMem2DEXT(System.Int32 target, Int32 levels, System.Int32 internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset); + [Slot(2292)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexStorageMem2DMultisampleEXT(System.Int32 target, Int32 samples, System.Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset); + [Slot(2293)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexStorageMem3DEXT(System.Int32 target, Int32 levels, System.Int32 internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset); + [Slot(2294)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexStorageMem3DMultisampleEXT(System.Int32 target, Int32 samples, System.Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset); + [Slot(2297)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexSubImage1DEXT(System.Int32 target, Int32 level, Int32 xoffset, Int32 width, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels); + [Slot(2299)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexSubImage2DEXT(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); + [Slot(2301)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexSubImage3DEXT(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels); + [Slot(2306)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureBufferEXT(UInt32 texture, System.Int32 target, System.Int32 internalformat, UInt32 buffer); + [Slot(2308)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureBufferRangeEXT(UInt32 texture, System.Int32 target, System.Int32 internalformat, UInt32 buffer, IntPtr offset, IntPtr size); + [Slot(2310)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureImage1DEXT(UInt32 texture, System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels); + [Slot(2311)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureImage2DEXT(UInt32 texture, System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); + [Slot(2314)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureImage3DEXT(UInt32 texture, System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels); + [Slot(2317)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureLightEXT(System.Int32 pname); + [Slot(2318)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureMaterialEXT(System.Int32 face, System.Int32 mode); + [Slot(2319)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureNormalEXT(System.Int32 mode); + [Slot(2320)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexturePageCommitmentEXT(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit); + [Slot(2322)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureParameterfEXT(UInt32 texture, System.Int32 target, System.Int32 pname, Single param); + [Slot(2324)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTextureParameterfvEXT(UInt32 texture, System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); + [Slot(2326)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureParameteriEXT(UInt32 texture, System.Int32 target, System.Int32 pname, Int32 param); + [Slot(2328)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTextureParameterIivEXT(UInt32 texture, System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + [Slot(2330)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTextureParameterIuivEXT(UInt32 texture, System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] UInt32* @params); + [Slot(2332)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTextureParameterivEXT(UInt32 texture, System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + [Slot(2334)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureRenderbufferEXT(UInt32 texture, System.Int32 target, UInt32 renderbuffer); + [Slot(2336)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureStorage1DEXT(UInt32 texture, System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width); + [Slot(2338)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureStorage2DEXT(UInt32 texture, System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height); + [Slot(2340)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureStorage2DMultisampleEXT(UInt32 texture, System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height, bool fixedsamplelocations); + [Slot(2342)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureStorage3DEXT(UInt32 texture, System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth); + [Slot(2344)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureStorage3DMultisampleEXT(UInt32 texture, System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations); + [Slot(2345)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureStorageMem1DEXT(UInt32 texture, Int32 levels, System.Int32 internalFormat, Int32 width, UInt32 memory, UInt64 offset); + [Slot(2346)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureStorageMem2DEXT(UInt32 texture, Int32 levels, System.Int32 internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset); + [Slot(2347)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureStorageMem2DMultisampleEXT(UInt32 texture, Int32 samples, System.Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset); + [Slot(2348)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureStorageMem3DEXT(UInt32 texture, Int32 levels, System.Int32 internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset); + [Slot(2349)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureStorageMem3DMultisampleEXT(UInt32 texture, Int32 samples, System.Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset); + [Slot(2352)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureSubImage1DEXT(UInt32 texture, System.Int32 target, Int32 level, Int32 xoffset, Int32 width, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels); + [Slot(2354)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureSubImage2DEXT(UInt32 texture, System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); + [Slot(2356)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureSubImage3DEXT(UInt32 texture, System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels); + [Slot(2364)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTransformFeedbackVaryingsEXT(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] IntPtr varyings, System.Int32 bufferMode); + [Slot(2389)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glUniform1uiEXT(Int32 location, UInt32 v0); + [Slot(2391)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniform1uivEXT(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32* value); + [Slot(2411)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glUniform2uiEXT(Int32 location, UInt32 v0, UInt32 v1); + [Slot(2413)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniform2uivEXT(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value); + [Slot(2433)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glUniform3uiEXT(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2); + [Slot(2435)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniform3uivEXT(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value); + [Slot(2455)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glUniform4uiEXT(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3); + [Slot(2457)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glUniform4uivEXT(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value); + [Slot(2459)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glUniformBufferEXT(UInt32 program, Int32 location, UInt32 buffer); + [Slot(2488)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glUnlockArraysEXT(); + [Slot(2492)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glUnmapNamedBufferEXT(UInt32 buffer); + [Slot(2499)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glUseProgramStagesEXT(UInt32 pipeline, System.Int32 stages, UInt32 program); + [Slot(2500)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glUseShaderProgramEXT(System.Int32 type, UInt32 program); + [Slot(2504)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glValidateProgramPipelineEXT(UInt32 pipeline); + [Slot(2506)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVariantbvEXT(UInt32 id, [CountAttribute(Computed = "id")] SByte* addr); + [Slot(2507)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVariantdvEXT(UInt32 id, [CountAttribute(Computed = "id")] Double* addr); + [Slot(2508)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVariantfvEXT(UInt32 id, [CountAttribute(Computed = "id")] Single* addr); + [Slot(2509)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVariantivEXT(UInt32 id, [CountAttribute(Computed = "id")] Int32* addr); + [Slot(2510)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVariantPointerEXT(UInt32 id, System.Int32 type, UInt32 stride, [CountAttribute(Computed = "id,type,stride")] IntPtr addr); + [Slot(2511)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVariantsvEXT(UInt32 id, [CountAttribute(Computed = "id")] Int16* addr); + [Slot(2512)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVariantubvEXT(UInt32 id, [CountAttribute(Computed = "id")] Byte* addr); + [Slot(2513)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVariantuivEXT(UInt32 id, [CountAttribute(Computed = "id")] UInt32* addr); + [Slot(2514)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVariantusvEXT(UInt32 id, [CountAttribute(Computed = "id")] UInt16* addr); + [Slot(2572)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexArrayBindVertexBufferEXT(UInt32 vaobj, UInt32 bindingindex, UInt32 buffer, IntPtr offset, Int32 stride); + [Slot(2573)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexArrayColorOffsetEXT(UInt32 vaobj, UInt32 buffer, Int32 size, System.Int32 type, Int32 stride, IntPtr offset); + [Slot(2574)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexArrayEdgeFlagOffsetEXT(UInt32 vaobj, UInt32 buffer, Int32 stride, IntPtr offset); + [Slot(2576)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexArrayFogCoordOffsetEXT(UInt32 vaobj, UInt32 buffer, System.Int32 type, Int32 stride, IntPtr offset); + [Slot(2577)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexArrayIndexOffsetEXT(UInt32 vaobj, UInt32 buffer, System.Int32 type, Int32 stride, IntPtr offset); + [Slot(2578)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexArrayMultiTexCoordOffsetEXT(UInt32 vaobj, UInt32 buffer, System.Int32 texunit, Int32 size, System.Int32 type, Int32 stride, IntPtr offset); + [Slot(2579)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexArrayNormalOffsetEXT(UInt32 vaobj, UInt32 buffer, System.Int32 type, Int32 stride, IntPtr offset); + [Slot(2583)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexArraySecondaryColorOffsetEXT(UInt32 vaobj, UInt32 buffer, Int32 size, System.Int32 type, Int32 stride, IntPtr offset); + [Slot(2584)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexArrayTexCoordOffsetEXT(UInt32 vaobj, UInt32 buffer, Int32 size, System.Int32 type, Int32 stride, IntPtr offset); + [Slot(2585)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexArrayVertexAttribBindingEXT(UInt32 vaobj, UInt32 attribindex, UInt32 bindingindex); + [Slot(2586)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexArrayVertexAttribDivisorEXT(UInt32 vaobj, UInt32 index, UInt32 divisor); + [Slot(2587)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexArrayVertexAttribFormatEXT(UInt32 vaobj, UInt32 attribindex, Int32 size, System.Int32 type, bool normalized, UInt32 relativeoffset); + [Slot(2588)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexArrayVertexAttribIFormatEXT(UInt32 vaobj, UInt32 attribindex, Int32 size, System.Int32 type, UInt32 relativeoffset); + [Slot(2589)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexArrayVertexAttribIOffsetEXT(UInt32 vaobj, UInt32 buffer, UInt32 index, Int32 size, System.Int32 type, Int32 stride, IntPtr offset); + [Slot(2590)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexArrayVertexAttribLFormatEXT(UInt32 vaobj, UInt32 attribindex, Int32 size, System.Int32 type, UInt32 relativeoffset); + [Slot(2591)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexArrayVertexAttribLOffsetEXT(UInt32 vaobj, UInt32 buffer, UInt32 index, Int32 size, System.Int32 type, Int32 stride, IntPtr offset); + [Slot(2592)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexArrayVertexAttribOffsetEXT(UInt32 vaobj, UInt32 buffer, UInt32 index, Int32 size, System.Int32 type, bool normalized, Int32 stride, IntPtr offset); + [Slot(2593)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexArrayVertexBindingDivisorEXT(UInt32 vaobj, UInt32 bindingindex, UInt32 divisor); + [Slot(2596)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexArrayVertexOffsetEXT(UInt32 vaobj, UInt32 buffer, Int32 size, System.Int32 type, Int32 stride, IntPtr offset); + [Slot(2710)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribI1iEXT(UInt32 index, Int32 x); + [Slot(2712)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttribI1ivEXT(UInt32 index, [CountAttribute(Count = 1)] Int32* v); + [Slot(2714)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribI1uiEXT(UInt32 index, UInt32 x); + [Slot(2716)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttribI1uivEXT(UInt32 index, [CountAttribute(Count = 1)] UInt32* v); + [Slot(2718)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribI2iEXT(UInt32 index, Int32 x, Int32 y); + [Slot(2720)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttribI2ivEXT(UInt32 index, [CountAttribute(Count = 2)] Int32* v); + [Slot(2722)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribI2uiEXT(UInt32 index, UInt32 x, UInt32 y); + [Slot(2724)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttribI2uivEXT(UInt32 index, [CountAttribute(Count = 2)] UInt32* v); + [Slot(2726)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribI3iEXT(UInt32 index, Int32 x, Int32 y, Int32 z); + [Slot(2728)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttribI3ivEXT(UInt32 index, [CountAttribute(Count = 3)] Int32* v); + [Slot(2730)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribI3uiEXT(UInt32 index, UInt32 x, UInt32 y, UInt32 z); + [Slot(2732)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttribI3uivEXT(UInt32 index, [CountAttribute(Count = 3)] UInt32* v); + [Slot(2734)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttribI4bvEXT(UInt32 index, [CountAttribute(Count = 4)] SByte* v); + [Slot(2736)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribI4iEXT(UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w); + [Slot(2738)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttribI4ivEXT(UInt32 index, [CountAttribute(Count = 4)] Int32* v); + [Slot(2740)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttribI4svEXT(UInt32 index, [CountAttribute(Count = 4)] Int16* v); + [Slot(2742)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttribI4ubvEXT(UInt32 index, [CountAttribute(Count = 4)] Byte* v); + [Slot(2744)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribI4uiEXT(UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w); + [Slot(2746)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttribI4uivEXT(UInt32 index, [CountAttribute(Count = 4)] UInt32* v); + [Slot(2748)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttribI4usvEXT(UInt32 index, [CountAttribute(Count = 4)] UInt16* v); + [Slot(2752)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribIPointerEXT(UInt32 index, Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer); + [Slot(2754)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribL1dEXT(UInt32 index, Double x); + [Slot(2756)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttribL1dvEXT(UInt32 index, [CountAttribute(Count = 1)] Double* v); + [Slot(2764)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribL2dEXT(UInt32 index, Double x, Double y); + [Slot(2766)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttribL2dvEXT(UInt32 index, [CountAttribute(Count = 2)] Double* v); + [Slot(2772)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribL3dEXT(UInt32 index, Double x, Double y, Double z); + [Slot(2774)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttribL3dvEXT(UInt32 index, [CountAttribute(Count = 3)] Double* v); + [Slot(2780)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribL4dEXT(UInt32 index, Double x, Double y, Double z, Double w); + [Slot(2782)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttribL4dvEXT(UInt32 index, [CountAttribute(Count = 4)] Double* v); + [Slot(2790)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribLPointerEXT(UInt32 index, Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Parameter = "size")] IntPtr pointer); + [Slot(2832)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexPointerEXT(Int32 size, System.Int32 type, Int32 stride, Int32 count, [CountAttribute(Computed = "size,type,stride,count")] IntPtr pointer); + [Slot(2867)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexWeightfEXT(Single weight); + [Slot(2868)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexWeightfvEXT([CountAttribute(Count = 1)] Single* weight); + [Slot(2871)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexWeightPointerEXT(Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer); + [Slot(2882)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glWaitSemaphoreEXT(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] System.Int32* srcLayouts); + [Slot(2951)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glWindowRectanglesEXT(System.Int32 mode, Int32 count, [CountAttribute(Computed = "count")] Int32* box); + [Slot(2952)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glWriteMaskEXT(UInt32 res, UInt32 @in, System.Int32 outX, System.Int32 outY, System.Int32 outZ, System.Int32 outW); + [Slot(651)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glFrameTerminatorGREMEDY(); + [Slot(2138)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glStringMarkerGREMEDY(Int32 len, [CountAttribute(Parameter = "len")] IntPtr @string); + [Slot(802)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetImageTransformParameterfvHP(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); + [Slot(803)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetImageTransformParameterivHP(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(1171)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glImageTransformParameteriHP(System.Int32 target, System.Int32 pname, Int32 param); + private static extern void glImageTransformParameterfHP(System.Int32 target, System.Int32 pname, Single param); [Slot(1172)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glImageTransformParameterfvHP(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); + [Slot(1173)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glImageTransformParameteriHP(System.Int32 target, System.Int32 pname, Int32 param); + [Slot(1174)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glImageTransformParameterivHP(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); [Slot(255)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glColorPointerListIBM(Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer, Int32 ptrstride); - [Slot(517)] + [Slot(518)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glEdgeFlagPointerListIBM(Int32 stride, [CountAttribute(Computed = "stride")] bool** pointer, Int32 ptrstride); - [Slot(588)] + [Slot(589)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFlushStaticDataIBM(System.Int32 target); - [Slot(604)] + [Slot(605)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFogCoordPointerListIBM(System.Int32 type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer, Int32 ptrstride); - [Slot(1192)] + [Slot(1194)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glIndexPointerListIBM(System.Int32 type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer, Int32 ptrstride); - [Slot(1418)] + [Slot(1421)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiModeDrawArraysIBM([CountAttribute(Computed = "primcount")] System.Int32* mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount, Int32 modestride); - [Slot(1419)] + [Slot(1422)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiModeDrawElementsIBM([CountAttribute(Computed = "primcount")] System.Int32* mode, [CountAttribute(Computed = "primcount")] Int32* count, System.Int32 type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount, Int32 modestride); - [Slot(1619)] + [Slot(1622)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glNormalPointerListIBM(System.Int32 type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer, Int32 ptrstride); - [Slot(2082)] + [Slot(2087)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glSecondaryColorPointerListIBM(Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer, Int32 ptrstride); - [Slot(2242)] + [Slot(2247)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexCoordPointerListIBM(Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer, Int32 ptrstride); - [Slot(2828)] + [Slot(2833)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexPointerListIBM(Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer, Int32 ptrstride); [Slot(130)] @@ -147787,43 +147876,43 @@ namespace OpenTK.Graphics.OpenGL [Slot(421)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDeletePerfQueryINTEL(UInt32 queryHandle); - [Slot(542)] + [Slot(543)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEndPerfQueryINTEL(UInt32 queryHandle); - [Slot(768)] + [Slot(770)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetFirstPerfQueryIdINTEL([OutAttribute] UInt32* queryId); - [Slot(889)] + [Slot(891)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetNextPerfQueryIdINTEL(UInt32 queryId, [OutAttribute] UInt32* nextQueryId); - [Slot(950)] + [Slot(952)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetPerfCounterInfoINTEL(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute, CountAttribute(Parameter = "counterNameLength")] IntPtr counterName, UInt32 counterDescLength, [OutAttribute, CountAttribute(Parameter = "counterDescLength")] IntPtr counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue); - [Slot(957)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPerfQueryDataINTEL(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32* bytesWritten); - [Slot(958)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPerfQueryIdByNameINTEL(IntPtr queryName, [OutAttribute] UInt32* queryId); [Slot(959)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetPerfQueryDataINTEL(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32* bytesWritten); + [Slot(960)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetPerfQueryIdByNameINTEL(IntPtr queryName, [OutAttribute] UInt32* queryId); + [Slot(961)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetPerfQueryInfoINTEL(UInt32 queryId, UInt32 queryNameLength, [OutAttribute, CountAttribute(Parameter = "queryNameLength")] IntPtr queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask); - [Slot(1338)] + [Slot(1340)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe IntPtr glMapTexture2DINTEL(UInt32 texture, Int32 level, UInt32 access, [OutAttribute, CountAttribute(Count = 1)] Int32* stride, [OutAttribute, CountAttribute(Count = 1)] System.Int32* layout); - [Slot(1620)] + [Slot(1623)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glNormalPointervINTEL(System.Int32 type, [CountAttribute(Count = 4)] IntPtr pointer); - [Slot(2136)] + [Slot(2141)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glSyncTextureINTEL(UInt32 texture); - [Slot(2243)] + [Slot(2248)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexCoordPointervINTEL(Int32 size, System.Int32 type, [CountAttribute(Count = 4)] IntPtr pointer); - [Slot(2489)] + [Slot(2494)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUnmapTexture2DINTEL(UInt32 texture, Int32 level); - [Slot(2829)] + [Slot(2834)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexPointervINTEL(Int32 size, System.Int32 type, [CountAttribute(Count = 4)] IntPtr pointer); [Slot(106)] @@ -147838,119 +147927,122 @@ namespace OpenTK.Graphics.OpenGL [Slot(400)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDebugMessageInsertKHR(System.Int32 source, System.Int32 type, UInt32 id, System.Int32 severity, Int32 length, IntPtr buf); - [Slot(758)] + [Slot(760)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe Int32 glGetDebugMessageLogKHR(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] System.Int32* sources, [OutAttribute, CountAttribute(Parameter = "count")] System.Int32* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] System.Int32* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr messageLog); - [Slot(789)] + [Slot(791)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern System.Int32 glGetGraphicsResetStatusKHR(); - [Slot(916)] + [Slot(918)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetnUniformfvKHR(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params); - [Slot(920)] + [Slot(922)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetnUniformivKHR(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params); - [Slot(924)] + [Slot(926)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetnUniformuivKHR(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params); - [Slot(929)] + [Slot(931)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetObjectLabelKHR(System.Int32 identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr label); - [Slot(934)] + [Slot(936)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetObjectPtrLabelKHR(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr label); - [Slot(972)] + [Slot(974)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glGetPointervKHR(System.Int32 pname, [OutAttribute] IntPtr @params); - [Slot(1632)] + [Slot(1382)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMaxShaderCompilerThreadsKHR(UInt32 count); + [Slot(1635)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glObjectLabelKHR(System.Int32 identifier, UInt32 name, Int32 length, IntPtr label); - [Slot(1634)] + [Slot(1637)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glObjectPtrLabelKHR(IntPtr ptr, Int32 length, IntPtr label); - [Slot(1721)] + [Slot(1724)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPopDebugGroupKHR(); - [Slot(1921)] + [Slot(1924)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPushDebugGroupKHR(System.Int32 source, UInt32 id, Int32 length, IntPtr message); - [Slot(1963)] + [Slot(1968)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glReadnPixelsKHR(Int32 x, Int32 y, Int32 width, Int32 height, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data); - [Slot(2013)] + [Slot(2018)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glResizeBuffersMESA(); - [Slot(2892)] + [Slot(2897)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glWindowPos2dMESA(Double x, Double y); - [Slot(2895)] + [Slot(2900)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glWindowPos2dvMESA([CountAttribute(Count = 2)] Double* v); - [Slot(2898)] + [Slot(2903)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glWindowPos2fMESA(Single x, Single y); - [Slot(2901)] + [Slot(2906)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glWindowPos2fvMESA([CountAttribute(Count = 2)] Single* v); - [Slot(2904)] + [Slot(2909)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glWindowPos2iMESA(Int32 x, Int32 y); - [Slot(2907)] + [Slot(2912)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glWindowPos2ivMESA([CountAttribute(Count = 2)] Int32* v); - [Slot(2910)] + [Slot(2915)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glWindowPos2sMESA(Int16 x, Int16 y); - [Slot(2913)] + [Slot(2918)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glWindowPos2svMESA([CountAttribute(Count = 2)] Int16* v); - [Slot(2916)] + [Slot(2921)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glWindowPos3dMESA(Double x, Double y, Double z); - [Slot(2919)] + [Slot(2924)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glWindowPos3dvMESA([CountAttribute(Count = 3)] Double* v); - [Slot(2922)] + [Slot(2927)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glWindowPos3fMESA(Single x, Single y, Single z); - [Slot(2925)] + [Slot(2930)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glWindowPos3fvMESA([CountAttribute(Count = 3)] Single* v); - [Slot(2928)] + [Slot(2933)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glWindowPos3iMESA(Int32 x, Int32 y, Int32 z); - [Slot(2931)] + [Slot(2936)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glWindowPos3ivMESA([CountAttribute(Count = 3)] Int32* v); - [Slot(2934)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glWindowPos3sMESA(Int16 x, Int16 y, Int16 z); - [Slot(2937)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glWindowPos3svMESA([CountAttribute(Count = 3)] Int16* v); - [Slot(2938)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glWindowPos4dMESA(Double x, Double y, Double z, Double w); [Slot(2939)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glWindowPos4dvMESA([CountAttribute(Count = 4)] Double* v); - [Slot(2940)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glWindowPos4fMESA(Single x, Single y, Single z, Single w); - [Slot(2941)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glWindowPos4fvMESA([CountAttribute(Count = 4)] Single* v); + private static extern void glWindowPos3sMESA(Int16 x, Int16 y, Int16 z); [Slot(2942)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glWindowPos4iMESA(Int32 x, Int32 y, Int32 z, Int32 w); + private static extern unsafe void glWindowPos3svMESA([CountAttribute(Count = 3)] Int16* v); [Slot(2943)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glWindowPos4ivMESA([CountAttribute(Count = 4)] Int32* v); + private static extern void glWindowPos4dMESA(Double x, Double y, Double z, Double w); [Slot(2944)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glWindowPos4sMESA(Int16 x, Int16 y, Int16 z, Int16 w); + private static extern unsafe void glWindowPos4dvMESA([CountAttribute(Count = 4)] Double* v); [Slot(2945)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glWindowPos4fMESA(Single x, Single y, Single z, Single w); + [Slot(2946)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glWindowPos4fvMESA([CountAttribute(Count = 4)] Single* v); + [Slot(2947)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glWindowPos4iMESA(Int32 x, Int32 y, Int32 z, Int32 w); + [Slot(2948)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glWindowPos4ivMESA([CountAttribute(Count = 4)] Int32* v); + [Slot(2949)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glWindowPos4sMESA(Int16 x, Int16 y, Int16 z, Int16 w); + [Slot(2950)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glWindowPos4svMESA([CountAttribute(Count = 4)] Int16* v); [Slot(9)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] @@ -148068,7 +148160,7 @@ namespace OpenTK.Graphics.OpenGL private static extern void glCoverageModulationNV(System.Int32 components); [Slot(359)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glCoverageModulationTableNV(Int32 n, Single* v); + private static extern unsafe void glCoverageModulationTableNV(Int32 n, [CountAttribute(Parameter = "n")] Single* v); [Slot(360)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glCoverFillPathInstancedNV(Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, System.Int32 coverMode, System.Int32 transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues); @@ -148083,13 +148175,13 @@ namespace OpenTK.Graphics.OpenGL private static extern void glCoverStrokePathNV(UInt32 path, System.Int32 coverMode); [Slot(365)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glCreateCommandListsNV(Int32 n, [OutAttribute] UInt32* lists); + private static extern unsafe void glCreateCommandListsNV(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* lists); [Slot(380)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glCreateStatesNV(Int32 n, [OutAttribute] UInt32* states); + private static extern unsafe void glCreateStatesNV(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* states); [Slot(407)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glDeleteCommandListsNV(Int32 n, UInt32* lists); + private static extern unsafe void glDeleteCommandListsNV(Int32 n, [CountAttribute(Parameter = "n")] UInt32* lists); [Slot(409)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteFencesNV(Int32 n, [CountAttribute(Parameter = "n")] UInt32* fences); @@ -148102,1243 +148194,1255 @@ namespace OpenTK.Graphics.OpenGL [Slot(426)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteProgramsNV(Int32 n, [CountAttribute(Parameter = "n")] UInt32* programs); - [Slot(434)] + [Slot(429)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glDeleteStatesNV(Int32 n, UInt32* states); - [Slot(439)] + private static extern unsafe void glDeleteQueryResourceTagNV(Int32 n, [CountAttribute(Parameter = "n")] Int32* tagIds); + [Slot(435)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glDeleteStatesNV(Int32 n, [CountAttribute(Parameter = "n")] UInt32* states); + [Slot(440)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDeleteTransformFeedbacksNV(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids); - [Slot(443)] + [Slot(444)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDepthBoundsdNV(Double zmin, Double zmax); - [Slot(449)] + [Slot(450)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDepthRangedNV(Double zNear, Double zFar); - [Slot(484)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glDrawCommandsAddressNV(System.Int32 primitiveMode, UInt64* indirects, Int32* sizes, UInt32 count); [Slot(485)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glDrawCommandsNV(System.Int32 primitiveMode, UInt32 buffer, IntPtr* indirects, Int32* sizes, UInt32 count); + private static extern unsafe void glDrawCommandsAddressNV(System.Int32 primitiveMode, UInt64* indirects, Int32* sizes, UInt32 count); [Slot(486)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glDrawCommandsStatesAddressNV(UInt64* indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count); + private static extern unsafe void glDrawCommandsNV(System.Int32 primitiveMode, UInt32 buffer, IntPtr* indirects, Int32* sizes, UInt32 count); [Slot(487)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glDrawCommandsStatesAddressNV(UInt64* indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count); + [Slot(488)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDrawCommandsStatesNV(UInt32 buffer, IntPtr* indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count); - [Slot(506)] + [Slot(507)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawTextureNV(UInt32 texture, UInt32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1); - [Slot(509)] + [Slot(510)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawTransformFeedbackNV(System.Int32 mode, UInt32 id); - [Slot(512)] + [Slot(513)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawVkImageNV(UInt64 vkImage, UInt32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1); - [Slot(514)] + [Slot(515)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEdgeFlagFormatNV(Int32 stride); - [Slot(536)] + [Slot(537)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEndConditionalRenderNV(); - [Slot(540)] + [Slot(541)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEndOcclusionQueryNV(); - [Slot(548)] + [Slot(549)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEndTransformFeedbackNV(); - [Slot(550)] + [Slot(551)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEndVideoCaptureNV(UInt32 video_capture_slot); - [Slot(563)] + [Slot(564)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEvalMapsNV(System.Int32 target, System.Int32 mode); - [Slot(569)] + [Slot(570)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glExecuteProgramNV(System.Int32 target, UInt32 id, [CountAttribute(Count = 4)] Single* @params); - [Slot(574)] + [Slot(575)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFinalCombinerInputNV(System.Int32 variable, System.Int32 input, System.Int32 mapping, System.Int32 componentUsage); - [Slot(578)] + [Slot(579)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFinishFenceNV(UInt32 fence); - [Slot(586)] + [Slot(587)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFlushPixelDataRangeNV(System.Int32 target); - [Slot(590)] + [Slot(591)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFlushVertexArrayRangeNV(); - [Slot(597)] + [Slot(598)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFogCoordFormatNV(System.Int32 type, Int32 stride); - [Slot(600)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFogCoordhNV(Half fog); [Slot(601)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glFogCoordhNV(Half fog); + [Slot(602)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glFogCoordhvNV([CountAttribute(Count = 1)] Half* fog); - [Slot(613)] + [Slot(614)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFragmentCoverageColorNV(UInt32 color); - [Slot(633)] + [Slot(634)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glFramebufferSampleLocationsfvNV(System.Int32 target, UInt32 start, Int32 count, Single* v); - [Slot(666)] + [Slot(667)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGenFencesNV(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* fences); - [Slot(672)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGenOcclusionQueriesNV(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids); [Slot(673)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGenOcclusionQueriesNV(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids); + [Slot(674)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int32 glGenPathsNV(Int32 range); - [Slot(678)] + [Slot(679)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGenProgramsNV(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* programs); - [Slot(689)] + [Slot(682)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGenQueryResourceTagNV(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* tagIds); + [Slot(691)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGenTransformFeedbacksNV(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids); - [Slot(705)] + [Slot(707)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetActiveVaryingNV(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] System.Int32* type, [OutAttribute, CountAttribute(Computed = "program,index,bufSize")] IntPtr name); - [Slot(718)] + [Slot(720)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetBufferParameterui64vNV(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params); - [Slot(735)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetCombinerInputParameterfvNV(System.Int32 stage, System.Int32 portion, System.Int32 variable, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); - [Slot(736)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetCombinerInputParameterivNV(System.Int32 stage, System.Int32 portion, System.Int32 variable, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(737)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetCombinerOutputParameterfvNV(System.Int32 stage, System.Int32 portion, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); + private static extern unsafe void glGetCombinerInputParameterfvNV(System.Int32 stage, System.Int32 portion, System.Int32 variable, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); [Slot(738)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetCombinerOutputParameterivNV(System.Int32 stage, System.Int32 portion, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + private static extern unsafe void glGetCombinerInputParameterivNV(System.Int32 stage, System.Int32 portion, System.Int32 variable, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(739)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetCombinerStageParameterfvNV(System.Int32 stage, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); + private static extern unsafe void glGetCombinerOutputParameterfvNV(System.Int32 stage, System.Int32 portion, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); [Slot(740)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetCombinerOutputParameterivNV(System.Int32 stage, System.Int32 portion, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + [Slot(741)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetCombinerStageParameterfvNV(System.Int32 stage, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); + [Slot(742)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int32 glGetCommandHeaderNV(System.Int32 tokenID, UInt32 size); - [Slot(754)] + [Slot(756)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetCoverageModulationTableNV(Int32 bufsize, [OutAttribute] Single* v); - [Slot(765)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetFenceivNV(UInt32 fence, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(766)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetFinalCombinerInputParameterfvNV(System.Int32 variable, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); [Slot(767)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetFenceivNV(UInt32 fence, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + [Slot(768)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetFinalCombinerInputParameterfvNV(System.Int32 variable, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); + [Slot(769)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetFinalCombinerInputParameterivNV(System.Int32 variable, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(799)] + [Slot(801)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int64 glGetImageHandleNV(UInt32 texture, Int32 level, bool layered, Int32 layer, System.Int32 format); - [Slot(808)] + [Slot(810)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetIntegerui64i_vNV(System.Int32 value, UInt32 index, [OutAttribute, CountAttribute(Computed = "value")] UInt64* result); - [Slot(809)] + [Slot(811)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetIntegerui64vNV(System.Int32 value, [OutAttribute, CountAttribute(Computed = "value")] UInt64* result); - [Slot(813)] + [Slot(815)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetInternalformatSampleivNV(System.Int32 target, System.Int32 internalformat, Int32 samples, System.Int32 pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params); - [Slot(826)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetMapAttribParameterfvNV(System.Int32 target, UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); - [Slot(827)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetMapAttribParameterivNV(System.Int32 target, UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(828)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetMapAttribParameterfvNV(System.Int32 target, UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); + [Slot(829)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetMapAttribParameterivNV(System.Int32 target, UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + [Slot(830)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glGetMapControlPointsNV(System.Int32 target, UInt32 index, System.Int32 type, Int32 ustride, Int32 vstride, bool packed, [OutAttribute, CountAttribute(Computed = "target")] IntPtr points); - [Slot(832)] + [Slot(834)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetMapParameterfvNV(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "target,pname")] Single* @params); - [Slot(833)] + [Slot(835)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetMapParameterivNV(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "target,pname")] Int32* @params); - [Slot(847)] + [Slot(849)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetMultisamplefvNV(System.Int32 pname, UInt32 index, [OutAttribute, CountAttribute(Count = 2)] Single* val); - [Slot(863)] + [Slot(865)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetNamedBufferParameterui64vNV(UInt32 buffer, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params); - [Slot(935)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetOcclusionQueryivNV(UInt32 id, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(936)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetOcclusionQueryuivNV(UInt32 id, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params); [Slot(937)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathColorGenfvNV(System.Int32 color, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value); + private static extern unsafe void glGetOcclusionQueryivNV(UInt32 id, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(938)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathColorGenivNV(System.Int32 color, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value); + private static extern unsafe void glGetOcclusionQueryuivNV(UInt32 id, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params); [Slot(939)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathCommandsNV(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands); + private static extern unsafe void glGetPathColorGenfvNV(System.Int32 color, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value); [Slot(940)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathCoordsNV(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords); + private static extern unsafe void glGetPathColorGenivNV(System.Int32 color, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value); [Slot(941)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathDashArrayNV(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray); + private static extern unsafe void glGetPathCommandsNV(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands); [Slot(942)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Single glGetPathLengthNV(UInt32 path, Int32 startSegment, Int32 numSegments); + private static extern unsafe void glGetPathCoordsNV(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords); [Slot(943)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathMetricRangeNV(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics); + private static extern unsafe void glGetPathDashArrayNV(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray); [Slot(944)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathMetricsNV(UInt32 metricQueryMask, Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics); + private static extern Single glGetPathLengthNV(UInt32 path, Int32 startSegment, Int32 numSegments); [Slot(945)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathParameterfvNV(UInt32 path, System.Int32 pname, [OutAttribute, CountAttribute(Count = 4)] Single* value); + private static extern unsafe void glGetPathMetricRangeNV(System.Int32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics); [Slot(946)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathParameterivNV(UInt32 path, System.Int32 pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value); + private static extern unsafe void glGetPathMetricsNV(System.Int32 metricQueryMask, Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics); [Slot(947)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathSpacingNV(System.Int32 pathListMode, Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, System.Int32 transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing); + private static extern unsafe void glGetPathParameterfvNV(UInt32 path, System.Int32 pname, [OutAttribute, CountAttribute(Count = 4)] Single* value); [Slot(948)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathTexGenfvNV(System.Int32 texCoordSet, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value); + private static extern unsafe void glGetPathParameterivNV(UInt32 path, System.Int32 pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value); [Slot(949)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetPathSpacingNV(System.Int32 pathListMode, Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, System.Int32 transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing); + [Slot(950)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetPathTexGenfvNV(System.Int32 texCoordSet, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value); + [Slot(951)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetPathTexGenivNV(System.Int32 texCoordSet, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value); - [Slot(977)] + [Slot(979)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetProgramEnvParameterIivNV(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Int32* @params); - [Slot(978)] + [Slot(980)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetProgramEnvParameterIuivNV(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] UInt32* @params); - [Slot(983)] + [Slot(985)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetProgramivNV(UInt32 id, System.Int32 pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params); - [Slot(986)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetProgramLocalParameterIivNV(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Int32* @params); - [Slot(987)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetProgramLocalParameterIuivNV(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] UInt32* @params); [Slot(988)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetProgramNamedParameterdvNV(UInt32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, [OutAttribute, CountAttribute(Count = 4)] Double* @params); + private static extern unsafe void glGetProgramLocalParameterIivNV(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Int32* @params); [Slot(989)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetProgramNamedParameterfvNV(UInt32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, [OutAttribute, CountAttribute(Count = 4)] Single* @params); + private static extern unsafe void glGetProgramLocalParameterIuivNV(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] UInt32* @params); [Slot(990)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetProgramParameterdvNV(System.Int32 target, UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 4)] Double* @params); + private static extern unsafe void glGetProgramNamedParameterdvNV(UInt32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, [OutAttribute, CountAttribute(Count = 4)] Double* @params); [Slot(991)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetProgramNamedParameterfvNV(UInt32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, [OutAttribute, CountAttribute(Count = 4)] Single* @params); + [Slot(992)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetProgramParameterdvNV(System.Int32 target, UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 4)] Double* @params); + [Slot(993)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetProgramParameterfvNV(System.Int32 target, UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params); - [Slot(996)] + [Slot(998)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetProgramResourcefvNV(UInt32 program, System.Int32 programInterface, UInt32 index, Int32 propCount, System.Int32* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params); - [Slot(1004)] + [Slot(1006)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetProgramStringNV(UInt32 id, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "id,pname")] Byte* program); - [Slot(1005)] + [Slot(1007)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetProgramSubroutineParameteruivNV(System.Int32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] UInt32* param); - [Slot(1036)] + [Slot(1038)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int16 glGetStageIndexNV(System.Int32 shadertype); - [Slot(1065)] + [Slot(1067)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int64 glGetTextureHandleNV(UInt32 texture); - [Slot(1081)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern Int64 glGetTextureSamplerHandleNV(UInt32 texture, UInt32 sampler); [Slot(1083)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern Int64 glGetTextureSamplerHandleNV(UInt32 texture, UInt32 sampler); + [Slot(1085)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetTrackMatrixivNV(System.Int32 target, UInt32 address, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params); - [Slot(1089)] + [Slot(1091)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetTransformFeedbackVaryingNV(UInt32 program, UInt32 index, [OutAttribute, CountAttribute(Count = 1)] Int32* location); - [Slot(1096)] + [Slot(1098)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetUniformi64vNV(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params); - [Slot(1105)] + [Slot(1107)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetUniformui64vNV(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt64* @params); - [Slot(1116)] + [Slot(1118)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int32 glGetVaryingLocationNV(UInt32 program, [CountAttribute(Computed = "name")] IntPtr name); - [Slot(1128)] + [Slot(1130)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetVertexAttribdvNV(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] Double* @params); - [Slot(1131)] + [Slot(1133)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetVertexAttribfvNV(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] Single* @params); - [Slot(1138)] + [Slot(1140)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetVertexAttribivNV(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params); - [Slot(1141)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetVertexAttribLi64vNV(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params); [Slot(1143)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetVertexAttribLi64vNV(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params); + [Slot(1145)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetVertexAttribLui64vNV(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params); - [Slot(1146)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGetVertexAttribPointervNV(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer); - [Slot(1147)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetVideoCaptureivNV(UInt32 video_capture_slot, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(1148)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetVideoCaptureStreamdvNV(UInt32 video_capture_slot, UInt32 stream, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params); + private static extern void glGetVertexAttribPointervNV(UInt32 index, System.Int32 pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer); [Slot(1149)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetVideoCaptureStreamfvNV(UInt32 video_capture_slot, UInt32 stream, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); + private static extern unsafe void glGetVideoCaptureivNV(UInt32 video_capture_slot, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(1150)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetVideoCaptureStreamivNV(UInt32 video_capture_slot, UInt32 stream, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + private static extern unsafe void glGetVideoCaptureStreamdvNV(UInt32 video_capture_slot, UInt32 stream, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params); [Slot(1151)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetVideoi64vNV(UInt32 video_slot, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params); + private static extern unsafe void glGetVideoCaptureStreamfvNV(UInt32 video_capture_slot, UInt32 stream, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); [Slot(1152)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetVideoivNV(UInt32 video_slot, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + private static extern unsafe void glGetVideoCaptureStreamivNV(UInt32 video_capture_slot, UInt32 stream, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(1153)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetVideoui64vNV(UInt32 video_slot, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params); + private static extern unsafe void glGetVideoi64vNV(UInt32 video_slot, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params); [Slot(1154)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetVideouivNV(UInt32 video_slot, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params); + private static extern unsafe void glGetVideoivNV(UInt32 video_slot, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(1155)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetVideoui64vNV(UInt32 video_slot, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params); + [Slot(1156)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetVideouivNV(UInt32 video_slot, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params); + [Slot(1157)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern IntPtr glGetVkProcAddrNV([CountAttribute(Computed = "name")] IntPtr name); - [Slot(1183)] + [Slot(1185)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glIndexFormatNV(System.Int32 type, Int32 stride); - [Slot(1204)] + [Slot(1206)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glInterpolatePathsNV(UInt32 resultPath, UInt32 pathA, UInt32 pathB, Single weight); - [Slot(1216)] + [Slot(1218)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsBufferResidentNV(System.Int32 target); - [Slot(1217)] + [Slot(1219)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsCommandListNV(UInt32 list); - [Slot(1222)] + [Slot(1224)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsFenceNV(UInt32 fence); - [Slot(1226)] + [Slot(1228)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsImageHandleResidentNV(UInt64 handle); - [Slot(1230)] + [Slot(1232)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsNamedBufferResidentNV(UInt32 buffer); - [Slot(1233)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsOcclusionQueryNV(UInt32 id); - [Slot(1234)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsPathNV(UInt32 path); [Slot(1235)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsPointInFillPathNV(UInt32 path, UInt32 mask, Single x, Single y); + private static extern byte glIsOcclusionQueryNV(UInt32 id); [Slot(1236)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glIsPathNV(UInt32 path); + [Slot(1237)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glIsPointInFillPathNV(UInt32 path, UInt32 mask, Single x, Single y); + [Slot(1238)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsPointInStrokePathNV(UInt32 path, Single x, Single y); - [Slot(1239)] + [Slot(1241)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsProgramNV(UInt32 id); - [Slot(1249)] + [Slot(1251)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsStateNV(UInt32 state); - [Slot(1254)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glIsTextureHandleResidentNV(UInt64 handle); [Slot(1256)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern byte glIsTextureHandleResidentNV(UInt64 handle); + [Slot(1258)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsTransformFeedbackNV(UInt32 id); - [Slot(1284)] + [Slot(1286)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glListDrawCommandsStatesClientNV(UInt32 list, UInt32 segment, IntPtr indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count); - [Slot(1295)] + [Slot(1297)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glLoadProgramNV(System.Int32 target, UInt32 id, Int32 len, [CountAttribute(Parameter = "len")] Byte* program); - [Slot(1303)] + [Slot(1305)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMakeBufferNonResidentNV(System.Int32 target); - [Slot(1304)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMakeBufferResidentNV(System.Int32 target, System.Int32 access); [Slot(1306)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMakeImageHandleNonResidentNV(UInt64 handle); + private static extern void glMakeBufferResidentNV(System.Int32 target, System.Int32 access); [Slot(1308)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMakeImageHandleResidentNV(UInt64 handle, System.Int32 access); - [Slot(1309)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMakeNamedBufferNonResidentNV(UInt32 buffer); + private static extern void glMakeImageHandleNonResidentNV(UInt64 handle); [Slot(1310)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMakeNamedBufferResidentNV(UInt32 buffer, System.Int32 access); + private static extern void glMakeImageHandleResidentNV(UInt64 handle, System.Int32 access); + [Slot(1311)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMakeNamedBufferNonResidentNV(UInt32 buffer); [Slot(1312)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMakeTextureHandleNonResidentNV(UInt64 handle); + private static extern void glMakeNamedBufferResidentNV(UInt32 buffer, System.Int32 access); [Slot(1314)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMakeTextureHandleNonResidentNV(UInt64 handle); + [Slot(1316)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMakeTextureHandleResidentNV(UInt64 handle); - [Slot(1324)] + [Slot(1326)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMapControlPointsNV(System.Int32 target, UInt32 index, System.Int32 type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, [CountAttribute(Computed = "target,uorder,vorder")] IntPtr points); - [Slot(1336)] + [Slot(1338)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMapParameterfvNV(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "target,pname")] Single* @params); - [Slot(1337)] + [Slot(1339)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMapParameterivNV(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "target,pname")] Int32* @params); - [Slot(1354)] + [Slot(1356)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMatrixLoad3x2fNV(System.Int32 matrixMode, Single* m); - [Slot(1355)] + [Slot(1357)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMatrixLoad3x3fNV(System.Int32 matrixMode, Single* m); - [Slot(1359)] + [Slot(1361)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMatrixLoadTranspose3x3fNV(System.Int32 matrixMode, Single* m); - [Slot(1363)] + [Slot(1365)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMatrixMult3x2fNV(System.Int32 matrixMode, Single* m); - [Slot(1364)] + [Slot(1366)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMatrixMult3x3fNV(System.Int32 matrixMode, Single* m); - [Slot(1367)] + [Slot(1369)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMatrixMultTranspose3x3fNV(System.Int32 matrixMode, Single* m); - [Slot(1388)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMulticastBarrierNV(); - [Slot(1389)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMulticastBlitFramebufferNV(UInt32 srcGpu, UInt32 dstGpu, Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, UInt32 mask, System.Int32 filter); - [Slot(1390)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMulticastBufferSubDataNV(UInt32 gpuMask, UInt32 buffer, IntPtr offset, IntPtr size, IntPtr data); [Slot(1391)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMulticastCopyBufferSubDataNV(UInt32 readGpu, UInt32 writeGpuMask, UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size); + private static extern void glMulticastBarrierNV(); [Slot(1392)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMulticastCopyImageSubDataNV(UInt32 srcGpu, UInt32 dstGpuMask, UInt32 srcName, System.Int32 srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, System.Int32 dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth); + private static extern void glMulticastBlitFramebufferNV(UInt32 srcGpu, UInt32 dstGpu, Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, System.Int32 mask, System.Int32 filter); [Slot(1393)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMulticastFramebufferSampleLocationsfvNV(UInt32 gpu, UInt32 framebuffer, UInt32 start, Int32 count, Single* v); + private static extern void glMulticastBufferSubDataNV(UInt32 gpuMask, UInt32 buffer, IntPtr offset, IntPtr size, IntPtr data); [Slot(1394)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMulticastGetQueryObjecti64vNV(UInt32 gpu, UInt32 id, System.Int32 pname, [OutAttribute] Int64* @params); + private static extern void glMulticastCopyBufferSubDataNV(UInt32 readGpu, UInt32 writeGpuMask, UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size); [Slot(1395)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMulticastGetQueryObjectivNV(UInt32 gpu, UInt32 id, System.Int32 pname, [OutAttribute] Int32* @params); + private static extern void glMulticastCopyImageSubDataNV(UInt32 srcGpu, UInt32 dstGpuMask, UInt32 srcName, System.Int32 srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, System.Int32 dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth); [Slot(1396)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMulticastGetQueryObjectui64vNV(UInt32 gpu, UInt32 id, System.Int32 pname, [OutAttribute] UInt64* @params); + private static extern unsafe void glMulticastFramebufferSampleLocationsfvNV(UInt32 gpu, UInt32 framebuffer, UInt32 start, Int32 count, Single* v); [Slot(1397)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMulticastGetQueryObjectuivNV(UInt32 gpu, UInt32 id, System.Int32 pname, [OutAttribute] UInt32* @params); + private static extern unsafe void glMulticastGetQueryObjecti64vNV(UInt32 gpu, UInt32 id, System.Int32 pname, [OutAttribute] Int64* @params); [Slot(1398)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMulticastGetQueryObjectivNV(UInt32 gpu, UInt32 id, System.Int32 pname, [OutAttribute] Int32* @params); + [Slot(1399)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMulticastGetQueryObjectui64vNV(UInt32 gpu, UInt32 id, System.Int32 pname, [OutAttribute] UInt64* @params); + [Slot(1400)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMulticastGetQueryObjectuivNV(UInt32 gpu, UInt32 id, System.Int32 pname, [OutAttribute] UInt32* @params); + [Slot(1401)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMulticastWaitSyncNV(UInt32 signalGpu, UInt32 waitGpuMask); - [Slot(1403)] + [Slot(1406)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiDrawArraysIndirectBindlessCountNV(System.Int32 mode, IntPtr indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount); - [Slot(1404)] + [Slot(1407)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiDrawArraysIndirectBindlessNV(System.Int32 mode, IntPtr indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount); - [Slot(1413)] + [Slot(1416)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiDrawElementsIndirectBindlessCountNV(System.Int32 mode, System.Int32 type, IntPtr indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount); - [Slot(1414)] + [Slot(1417)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiDrawElementsIndirectBindlessNV(System.Int32 mode, System.Int32 type, IntPtr indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount); - [Slot(1431)] + [Slot(1434)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiTexCoord1hNV(System.Int32 target, Half s); - [Slot(1432)] + [Slot(1435)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoord1hvNV(System.Int32 target, [CountAttribute(Count = 1)] Half* v); - [Slot(1453)] + [Slot(1456)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiTexCoord2hNV(System.Int32 target, Half s, Half t); - [Slot(1454)] + [Slot(1457)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoord2hvNV(System.Int32 target, [CountAttribute(Count = 2)] Half* v); - [Slot(1475)] + [Slot(1478)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiTexCoord3hNV(System.Int32 target, Half s, Half t, Half r); - [Slot(1476)] + [Slot(1479)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoord3hvNV(System.Int32 target, [CountAttribute(Count = 3)] Half* v); - [Slot(1497)] + [Slot(1500)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiTexCoord4hNV(System.Int32 target, Half s, Half t, Half r, Half q); - [Slot(1498)] + [Slot(1501)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoord4hvNV(System.Int32 target, [CountAttribute(Count = 4)] Half* v); - [Slot(1568)] + [Slot(1571)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glNamedFramebufferSampleLocationsfvNV(UInt32 framebuffer, UInt32 start, Int32 count, Single* v); - [Slot(1606)] + [Slot(1609)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glNormal3hNV(Half nx, Half ny, Half nz); - [Slot(1607)] + [Slot(1610)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glNormal3hvNV([CountAttribute(Count = 3)] Half* v); - [Slot(1614)] + [Slot(1617)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glNormalFormatNV(System.Int32 type, Int32 stride); - [Slot(1645)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPathColorGenNV(System.Int32 color, System.Int32 genMode, System.Int32 colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single* coeffs); - [Slot(1646)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPathCommandsNV(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, System.Int32 coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords); - [Slot(1647)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathCoordsNV(UInt32 path, Int32 numCoords, System.Int32 coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords); [Slot(1648)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathCoverDepthFuncNV(System.Int32 func); + private static extern unsafe void glPathColorGenNV(System.Int32 color, System.Int32 genMode, System.Int32 colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single* coeffs); [Slot(1649)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPathDashArrayNV(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray); + private static extern unsafe void glPathCommandsNV(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, System.Int32 coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords); [Slot(1650)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathFogGenNV(System.Int32 genMode); + private static extern void glPathCoordsNV(UInt32 path, Int32 numCoords, System.Int32 coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords); [Slot(1651)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern System.Int32 glPathGlyphIndexArrayNV(UInt32 firstPathName, System.Int32 fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale); + private static extern void glPathCoverDepthFuncNV(System.Int32 func); [Slot(1652)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern System.Int32 glPathGlyphIndexRangeNV(System.Int32 fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount); + private static extern unsafe void glPathDashArrayNV(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray); [Slot(1653)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathGlyphRangeNV(UInt32 firstPathName, System.Int32 fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, System.Int32 handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale); + private static extern void glPathFogGenNV(System.Int32 genMode); [Slot(1654)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathGlyphsNV(UInt32 firstPathName, System.Int32 fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, Int32 numGlyphs, System.Int32 type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, System.Int32 handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale); + private static extern System.Int32 glPathGlyphIndexArrayNV(UInt32 firstPathName, System.Int32 fontTarget, IntPtr fontName, System.Int32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale); [Slot(1655)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern System.Int32 glPathMemoryGlyphIndexArrayNV(UInt32 firstPathName, System.Int32 fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale); + private static extern System.Int32 glPathGlyphIndexRangeNV(System.Int32 fontTarget, IntPtr fontName, System.Int32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount); [Slot(1656)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathParameterfNV(UInt32 path, System.Int32 pname, Single value); + private static extern void glPathGlyphRangeNV(UInt32 firstPathName, System.Int32 fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, System.Int32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, System.Int32 handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale); [Slot(1657)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPathParameterfvNV(UInt32 path, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* value); + private static extern void glPathGlyphsNV(UInt32 firstPathName, System.Int32 fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, System.Int32 fontStyle, Int32 numGlyphs, System.Int32 type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, System.Int32 handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale); [Slot(1658)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathParameteriNV(UInt32 path, System.Int32 pname, Int32 value); + private static extern System.Int32 glPathMemoryGlyphIndexArrayNV(UInt32 firstPathName, System.Int32 fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale); [Slot(1659)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPathParameterivNV(UInt32 path, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* value); + private static extern void glPathParameterfNV(UInt32 path, System.Int32 pname, Single value); [Slot(1660)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathStencilDepthOffsetNV(Single factor, Single units); + private static extern unsafe void glPathParameterfvNV(UInt32 path, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* value); [Slot(1661)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathStencilFuncNV(System.Int32 func, Int32 @ref, UInt32 mask); + private static extern void glPathParameteriNV(UInt32 path, System.Int32 pname, Int32 value); [Slot(1662)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathStringNV(UInt32 path, System.Int32 format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString); + private static extern unsafe void glPathParameterivNV(UInt32 path, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* value); [Slot(1663)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPathSubCommandsNV(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, System.Int32 coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords); + private static extern void glPathStencilDepthOffsetNV(Single factor, Single units); [Slot(1664)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathSubCoordsNV(UInt32 path, Int32 coordStart, Int32 numCoords, System.Int32 coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords); + private static extern void glPathStencilFuncNV(System.Int32 func, Int32 @ref, UInt32 mask); [Slot(1665)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPathTexGenNV(System.Int32 texCoordSet, System.Int32 genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single* coeffs); + private static extern void glPathStringNV(UInt32 path, System.Int32 format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString); + [Slot(1666)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glPathSubCommandsNV(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, System.Int32 coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords); [Slot(1667)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPauseTransformFeedbackNV(); + private static extern void glPathSubCoordsNV(UInt32 path, Int32 coordStart, Int32 numCoords, System.Int32 coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords); [Slot(1668)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glPathTexGenNV(System.Int32 texCoordSet, System.Int32 genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single* coeffs); + [Slot(1670)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPauseTransformFeedbackNV(); + [Slot(1671)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPixelDataRangeNV(System.Int32 target, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pointer); - [Slot(1692)] + [Slot(1695)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe byte glPointAlongPathNV(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY); - [Slot(1702)] + [Slot(1705)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPointParameteriNV(System.Int32 pname, Int32 param); - [Slot(1704)] + [Slot(1707)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glPointParameterivNV(System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); - [Slot(1725)] + [Slot(1728)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPresentFrameDualFillNV(UInt32 video_slot, UInt64 minPresentTime, UInt32 beginPresentTimeId, UInt32 presentDurationId, System.Int32 type, System.Int32 target0, UInt32 fill0, System.Int32 target1, UInt32 fill1, System.Int32 target2, UInt32 fill2, System.Int32 target3, UInt32 fill3); - [Slot(1726)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPresentFrameKeyedNV(UInt32 video_slot, UInt64 minPresentTime, UInt32 beginPresentTimeId, UInt32 presentDurationId, System.Int32 type, System.Int32 target0, UInt32 fill0, UInt32 key0, System.Int32 target1, UInt32 fill1, UInt32 key1); [Slot(1729)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPresentFrameKeyedNV(UInt32 video_slot, UInt64 minPresentTime, UInt32 beginPresentTimeId, UInt32 presentDurationId, System.Int32 type, System.Int32 target0, UInt32 fill0, UInt32 key0, System.Int32 target1, UInt32 fill1, UInt32 key1); + [Slot(1732)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPrimitiveRestartIndexNV(UInt32 index); - [Slot(1730)] + [Slot(1733)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPrimitiveRestartNV(); - [Slot(1735)] + [Slot(1738)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramBufferParametersfvNV(System.Int32 target, UInt32 bindingIndex, UInt32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] Single* @params); - [Slot(1736)] + [Slot(1739)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramBufferParametersIivNV(System.Int32 target, UInt32 bindingIndex, UInt32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] Int32* @params); - [Slot(1737)] + [Slot(1740)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramBufferParametersIuivNV(System.Int32 target, UInt32 bindingIndex, UInt32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] UInt32* @params); - [Slot(1742)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramEnvParameterI4iNV(System.Int32 target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w); - [Slot(1743)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramEnvParameterI4ivNV(System.Int32 target, UInt32 index, [CountAttribute(Count = 4)] Int32* @params); - [Slot(1744)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramEnvParameterI4uiNV(System.Int32 target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w); [Slot(1745)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramEnvParameterI4uivNV(System.Int32 target, UInt32 index, [CountAttribute(Count = 4)] UInt32* @params); + private static extern void glProgramEnvParameterI4iNV(System.Int32 target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w); + [Slot(1746)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramEnvParameterI4ivNV(System.Int32 target, UInt32 index, [CountAttribute(Count = 4)] Int32* @params); [Slot(1747)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramEnvParametersI4ivNV(System.Int32 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* @params); + private static extern void glProgramEnvParameterI4uiNV(System.Int32 target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w); [Slot(1748)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramEnvParameterI4uivNV(System.Int32 target, UInt32 index, [CountAttribute(Count = 4)] UInt32* @params); + [Slot(1750)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramEnvParametersI4ivNV(System.Int32 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* @params); + [Slot(1751)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramEnvParametersI4uivNV(System.Int32 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* @params); - [Slot(1753)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramLocalParameterI4iNV(System.Int32 target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w); - [Slot(1754)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramLocalParameterI4ivNV(System.Int32 target, UInt32 index, [CountAttribute(Count = 4)] Int32* @params); - [Slot(1755)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramLocalParameterI4uiNV(System.Int32 target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w); [Slot(1756)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramLocalParameterI4uivNV(System.Int32 target, UInt32 index, [CountAttribute(Count = 4)] UInt32* @params); + private static extern void glProgramLocalParameterI4iNV(System.Int32 target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w); + [Slot(1757)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramLocalParameterI4ivNV(System.Int32 target, UInt32 index, [CountAttribute(Count = 4)] Int32* @params); [Slot(1758)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramLocalParametersI4ivNV(System.Int32 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* @params); + private static extern void glProgramLocalParameterI4uiNV(System.Int32 target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w); [Slot(1759)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramLocalParametersI4uivNV(System.Int32 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* @params); - [Slot(1760)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramNamedParameter4dNV(UInt32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, Double x, Double y, Double z, Double w); + private static extern unsafe void glProgramLocalParameterI4uivNV(System.Int32 target, UInt32 index, [CountAttribute(Count = 4)] UInt32* @params); [Slot(1761)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramNamedParameter4dvNV(UInt32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, [CountAttribute(Count = 4)] Double* v); + private static extern unsafe void glProgramLocalParametersI4ivNV(System.Int32 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* @params); [Slot(1762)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramNamedParameter4fNV(UInt32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, Single x, Single y, Single z, Single w); + private static extern unsafe void glProgramLocalParametersI4uivNV(System.Int32 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* @params); [Slot(1763)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramNamedParameter4fvNV(UInt32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, [CountAttribute(Count = 4)] Single* v); + private static extern unsafe void glProgramNamedParameter4dNV(UInt32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, Double x, Double y, Double z, Double w); [Slot(1764)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramParameter4dNV(System.Int32 target, UInt32 index, Double x, Double y, Double z, Double w); + private static extern unsafe void glProgramNamedParameter4dvNV(UInt32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, [CountAttribute(Count = 4)] Double* v); [Slot(1765)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramParameter4dvNV(System.Int32 target, UInt32 index, [CountAttribute(Count = 4)] Double* v); + private static extern unsafe void glProgramNamedParameter4fNV(UInt32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, Single x, Single y, Single z, Single w); [Slot(1766)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramParameter4fNV(System.Int32 target, UInt32 index, Single x, Single y, Single z, Single w); + private static extern unsafe void glProgramNamedParameter4fvNV(UInt32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, [CountAttribute(Count = 4)] Single* v); [Slot(1767)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramParameter4dNV(System.Int32 target, UInt32 index, Double x, Double y, Double z, Double w); + [Slot(1768)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramParameter4dvNV(System.Int32 target, UInt32 index, [CountAttribute(Count = 4)] Double* v); + [Slot(1769)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramParameter4fNV(System.Int32 target, UInt32 index, Single x, Single y, Single z, Single w); + [Slot(1770)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramParameter4fvNV(System.Int32 target, UInt32 index, [CountAttribute(Count = 4)] Single* v); - [Slot(1771)] + [Slot(1774)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramParameters4dvNV(System.Int32 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Double* v); - [Slot(1772)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramParameters4fvNV(System.Int32 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* v); - [Slot(1773)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glProgramPathFragmentInputGenNV(UInt32 program, Int32 location, System.Int32 genMode, Int32 components, Single* coeffs); [Slot(1775)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramParameters4fvNV(System.Int32 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* v); + [Slot(1776)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glProgramPathFragmentInputGenNV(UInt32 program, Int32 location, System.Int32 genMode, Int32 components, Single* coeffs); + [Slot(1778)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramSubroutineParametersuivNV(System.Int32 target, Int32 count, [CountAttribute(Parameter = "count")] UInt32* @params); - [Slot(1786)] + [Slot(1789)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform1i64NV(UInt32 program, Int32 location, Int64 x); - [Slot(1788)] + [Slot(1791)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform1i64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value); - [Slot(1794)] + [Slot(1797)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform1ui64NV(UInt32 program, Int32 location, UInt64 x); - [Slot(1796)] + [Slot(1799)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform1ui64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value); - [Slot(1810)] + [Slot(1813)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform2i64NV(UInt32 program, Int32 location, Int64 x, Int64 y); - [Slot(1812)] + [Slot(1815)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform2i64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value); - [Slot(1818)] + [Slot(1821)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform2ui64NV(UInt32 program, Int32 location, UInt64 x, UInt64 y); - [Slot(1820)] + [Slot(1823)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform2ui64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value); - [Slot(1834)] + [Slot(1837)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform3i64NV(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z); - [Slot(1836)] + [Slot(1839)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform3i64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value); - [Slot(1842)] + [Slot(1845)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform3ui64NV(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z); - [Slot(1844)] + [Slot(1847)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform3ui64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value); - [Slot(1858)] + [Slot(1861)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform4i64NV(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w); - [Slot(1860)] + [Slot(1863)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform4i64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value); - [Slot(1866)] + [Slot(1869)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform4ui64NV(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w); - [Slot(1868)] + [Slot(1871)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform4ui64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value); - [Slot(1873)] + [Slot(1876)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniformHandleui64NV(UInt32 program, Int32 location, UInt64 value); - [Slot(1875)] + [Slot(1878)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformHandleui64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values); - [Slot(1912)] + [Slot(1915)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniformui64NV(UInt32 program, Int32 location, UInt64 value); - [Slot(1913)] + [Slot(1916)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformui64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value); - [Slot(1914)] + [Slot(1917)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramVertexLimitNV(System.Int32 target, Int32 limit); - [Slot(1981)] + [Slot(1931)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe Int32 glQueryResourceNV(System.Int32 queryType, Int32 tagId, UInt32 bufSize, [OutAttribute] Int32* buffer); + [Slot(1932)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glQueryResourceTagNV(Int32 tagId, IntPtr tagString); + [Slot(1986)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glRenderbufferStorageMultisampleCoverageNV(System.Int32 target, Int32 coverageSamples, Int32 colorSamples, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(1983)] + [Slot(1988)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glRenderGpuMaskNV(UInt32 mask); - [Slot(2008)] + [Slot(2013)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glRequestResidentProgramsNV(Int32 n, [CountAttribute(Parameter = "n")] UInt32* programs); - [Slot(2014)] + [Slot(2019)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glResolveDepthValuesNV(); - [Slot(2016)] + [Slot(2021)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glResumeTransformFeedbackNV(); - [Slot(2026)] + [Slot(2031)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glSampleMaskIndexedNV(UInt32 index, UInt32 mask); - [Slot(2055)] + [Slot(2060)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glSecondaryColor3hNV(Half red, Half green, Half blue); - [Slot(2056)] + [Slot(2061)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glSecondaryColor3hvNV([CountAttribute(Count = 3)] Half* v); - [Slot(2077)] + [Slot(2082)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glSecondaryColorFormatNV(Int32 size, System.Int32 type, Int32 stride); - [Slot(2089)] + [Slot(2094)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glSetFenceNV(UInt32 fence, System.Int32 condition); - [Slot(2104)] + [Slot(2109)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glSignalVkFenceNV(UInt64 vkFence); - [Slot(2105)] + [Slot(2110)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glSignalVkSemaphoreNV(UInt64 vkSemaphore); - [Slot(2113)] + [Slot(2118)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glStateCaptureNV(UInt32 state, System.Int32 mode); - [Slot(2115)] + [Slot(2120)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glStencilFillPathInstancedNV(Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, System.Int32 fillMode, UInt32 mask, System.Int32 transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues); - [Slot(2116)] + [Slot(2121)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glStencilFillPathNV(UInt32 path, System.Int32 fillMode, UInt32 mask); - [Slot(2126)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glStencilStrokePathInstancedNV(Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, System.Int32 transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues); - [Slot(2127)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilStrokePathNV(UInt32 path, Int32 reference, UInt32 mask); - [Slot(2128)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glStencilThenCoverFillPathInstancedNV(Int32 numPaths, System.Int32 pathNameType, IntPtr paths, UInt32 pathBase, System.Int32 fillMode, UInt32 mask, System.Int32 coverMode, System.Int32 transformType, Single* transformValues); - [Slot(2129)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilThenCoverFillPathNV(UInt32 path, System.Int32 fillMode, UInt32 mask, System.Int32 coverMode); - [Slot(2130)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glStencilThenCoverStrokePathInstancedNV(Int32 numPaths, System.Int32 pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, System.Int32 coverMode, System.Int32 transformType, Single* transformValues); [Slot(2131)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilThenCoverStrokePathNV(UInt32 path, Int32 reference, UInt32 mask, System.Int32 coverMode); + private static extern unsafe void glStencilStrokePathInstancedNV(Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, System.Int32 transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues); + [Slot(2132)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glStencilStrokePathNV(UInt32 path, Int32 reference, UInt32 mask); + [Slot(2133)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glStencilThenCoverFillPathInstancedNV(Int32 numPaths, System.Int32 pathNameType, IntPtr paths, UInt32 pathBase, System.Int32 fillMode, UInt32 mask, System.Int32 coverMode, System.Int32 transformType, Single* transformValues); [Slot(2134)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glStencilThenCoverFillPathNV(UInt32 path, System.Int32 fillMode, UInt32 mask, System.Int32 coverMode); + [Slot(2135)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glStencilThenCoverStrokePathInstancedNV(Int32 numPaths, System.Int32 pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, System.Int32 coverMode, System.Int32 transformType, Single* transformValues); + [Slot(2136)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glStencilThenCoverStrokePathNV(UInt32 path, Int32 reference, UInt32 mask, System.Int32 coverMode); + [Slot(2139)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glSubpixelPrecisionBiasNV(UInt32 xbits, UInt32 ybits); - [Slot(2153)] + [Slot(2158)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glTestFenceNV(UInt32 fence); - [Slot(2167)] + [Slot(2172)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexCoord1hNV(Half s); - [Slot(2168)] + [Slot(2173)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTexCoord1hvNV([CountAttribute(Count = 1)] Half* v); - [Slot(2191)] + [Slot(2196)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexCoord2hNV(Half s, Half t); - [Slot(2192)] + [Slot(2197)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTexCoord2hvNV([CountAttribute(Count = 2)] Half* v); - [Slot(2205)] + [Slot(2210)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexCoord3hNV(Half s, Half t, Half r); - [Slot(2206)] + [Slot(2211)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTexCoord3hvNV([CountAttribute(Count = 3)] Half* v); - [Slot(2223)] + [Slot(2228)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexCoord4hNV(Half s, Half t, Half r, Half q); - [Slot(2224)] + [Slot(2229)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTexCoord4hvNV([CountAttribute(Count = 4)] Half* v); - [Slot(2231)] + [Slot(2236)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexCoordFormatNV(Int32 size, System.Int32 type, Int32 stride); - [Slot(2262)] + [Slot(2267)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexImage2DMultisampleCoverageNV(System.Int32 target, Int32 coverageSamples, Int32 colorSamples, Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations); - [Slot(2266)] + [Slot(2271)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexImage3DMultisampleCoverageNV(System.Int32 target, Int32 coverageSamples, Int32 colorSamples, Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations); - [Slot(2279)] + [Slot(2284)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexRenderbufferNV(System.Int32 target, UInt32 renderbuffer); - [Slot(2299)] + [Slot(2304)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureBarrierNV(); - [Slot(2307)] + [Slot(2312)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureImage2DMultisampleCoverageNV(UInt32 texture, System.Int32 target, Int32 coverageSamples, Int32 colorSamples, Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations); - [Slot(2308)] + [Slot(2313)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureImage2DMultisampleNV(UInt32 texture, System.Int32 target, Int32 samples, Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations); - [Slot(2310)] + [Slot(2315)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureImage3DMultisampleCoverageNV(UInt32 texture, System.Int32 target, Int32 coverageSamples, Int32 colorSamples, Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations); - [Slot(2311)] + [Slot(2316)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureImage3DMultisampleNV(UInt32 texture, System.Int32 target, Int32 samples, Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations); - [Slot(2353)] + [Slot(2358)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTrackMatrixNV(System.Int32 target, UInt32 address, System.Int32 matrix, System.Int32 transform); - [Slot(2354)] + [Slot(2359)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTransformFeedbackAttribsNV(Int32 count, [CountAttribute(Computed = "count")] Int32* attribs, System.Int32 bufferMode); - [Slot(2357)] + [Slot(2362)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTransformFeedbackStreamAttribsNV(Int32 count, [CountAttribute(Parameter = "count")] Int32* attribs, Int32 nbuffers, [CountAttribute(Parameter = "nbuffers")] Int32* bufstreams, System.Int32 bufferMode); - [Slot(2360)] + [Slot(2365)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTransformFeedbackVaryingsNV(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] Int32* locations, System.Int32 bufferMode); - [Slot(2361)] + [Slot(2366)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTransformPathNV(UInt32 resultPath, UInt32 srcPath, System.Int32 transformType, [CountAttribute(Computed = "transformType")] Single* transformValues); - [Slot(2373)] + [Slot(2378)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform1i64NV(Int32 location, Int64 x); - [Slot(2375)] + [Slot(2380)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform1i64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value); - [Slot(2381)] + [Slot(2386)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform1ui64NV(Int32 location, UInt64 x); - [Slot(2383)] + [Slot(2388)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform1ui64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value); - [Slot(2395)] + [Slot(2400)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform2i64NV(Int32 location, Int64 x, Int64 y); - [Slot(2397)] + [Slot(2402)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform2i64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value); - [Slot(2403)] + [Slot(2408)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform2ui64NV(Int32 location, UInt64 x, UInt64 y); - [Slot(2405)] + [Slot(2410)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform2ui64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value); - [Slot(2417)] + [Slot(2422)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform3i64NV(Int32 location, Int64 x, Int64 y, Int64 z); - [Slot(2419)] + [Slot(2424)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform3i64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value); - [Slot(2425)] + [Slot(2430)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform3ui64NV(Int32 location, UInt64 x, UInt64 y, UInt64 z); - [Slot(2427)] + [Slot(2432)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform3ui64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value); - [Slot(2439)] + [Slot(2444)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform4i64NV(Int32 location, Int64 x, Int64 y, Int64 z, Int64 w); - [Slot(2441)] + [Slot(2446)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform4i64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value); - [Slot(2447)] + [Slot(2452)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform4ui64NV(Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w); - [Slot(2449)] + [Slot(2454)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform4ui64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value); - [Slot(2456)] + [Slot(2461)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniformHandleui64NV(Int32 location, UInt64 value); - [Slot(2458)] + [Slot(2463)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniformHandleui64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value); - [Slot(2481)] + [Slot(2486)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniformui64NV(Int32 location, UInt64 value); - [Slot(2482)] + [Slot(2487)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniformui64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value); - [Slot(2510)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVDPAUFiniNV(); - [Slot(2511)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVDPAUGetSurfaceivNV(IntPtr surface, System.Int32 pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values); - [Slot(2512)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVDPAUInitNV(IntPtr vdpDevice, IntPtr getProcAddress); - [Slot(2513)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glVDPAUIsSurfaceNV(IntPtr surface); - [Slot(2514)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVDPAUMapSurfacesNV(Int32 numSurfaces, [CountAttribute(Parameter = "numSurfaces")] IntPtr* surfaces); [Slot(2515)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe IntPtr glVDPAURegisterOutputSurfaceNV(IntPtr vdpSurface, System.Int32 target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32* textureNames); + private static extern void glVDPAUFiniNV(); [Slot(2516)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe IntPtr glVDPAURegisterVideoSurfaceNV(IntPtr vdpSurface, System.Int32 target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32* textureNames); + private static extern unsafe void glVDPAUGetSurfaceivNV(IntPtr surface, System.Int32 pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values); [Slot(2517)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVDPAUSurfaceAccessNV(IntPtr surface, System.Int32 access); + private static extern void glVDPAUInitNV(IntPtr vdpDevice, IntPtr getProcAddress); [Slot(2518)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVDPAUUnmapSurfacesNV(Int32 numSurface, [CountAttribute(Parameter = "numSurface")] IntPtr* surfaces); + private static extern byte glVDPAUIsSurfaceNV(IntPtr surface); [Slot(2519)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVDPAUMapSurfacesNV(Int32 numSurfaces, [CountAttribute(Parameter = "numSurfaces")] IntPtr* surfaces); + [Slot(2520)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe IntPtr glVDPAURegisterOutputSurfaceNV(IntPtr vdpSurface, System.Int32 target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32* textureNames); + [Slot(2521)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe IntPtr glVDPAURegisterVideoSurfaceNV(IntPtr vdpSurface, System.Int32 target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32* textureNames); + [Slot(2522)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVDPAUSurfaceAccessNV(IntPtr surface, System.Int32 access); + [Slot(2523)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVDPAUUnmapSurfacesNV(Int32 numSurface, [CountAttribute(Parameter = "numSurface")] IntPtr* surfaces); + [Slot(2524)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVDPAUUnregisterSurfaceNV(IntPtr surface); - [Slot(2526)] + [Slot(2531)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertex2hNV(Half x, Half y); - [Slot(2527)] + [Slot(2532)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertex2hvNV([CountAttribute(Count = 2)] Half* v); - [Slot(2540)] + [Slot(2545)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertex3hNV(Half x, Half y, Half z); - [Slot(2541)] + [Slot(2546)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertex3hvNV([CountAttribute(Count = 3)] Half* v); - [Slot(2554)] + [Slot(2559)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertex4hNV(Half x, Half y, Half z, Half w); - [Slot(2555)] + [Slot(2560)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertex4hvNV([CountAttribute(Count = 4)] Half* v); - [Slot(2577)] + [Slot(2582)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexArrayRangeNV(Int32 length, [CountAttribute(Computed = "length")] IntPtr pointer); - [Slot(2594)] + [Slot(2599)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttrib1dNV(UInt32 index, Double x); - [Slot(2597)] + [Slot(2602)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttrib1dvNV(UInt32 index, [CountAttribute(Count = 1)] Double* v); - [Slot(2600)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttrib1fNV(UInt32 index, Single x); - [Slot(2603)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib1fvNV(UInt32 index, [CountAttribute(Count = 1)] Single* v); - [Slot(2604)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttrib1hNV(UInt32 index, Half x); [Slot(2605)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib1hvNV(UInt32 index, [CountAttribute(Count = 1)] Half* v); + private static extern void glVertexAttrib1fNV(UInt32 index, Single x); [Slot(2608)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttrib1fvNV(UInt32 index, [CountAttribute(Count = 1)] Single* v); + [Slot(2609)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttrib1hNV(UInt32 index, Half x); + [Slot(2610)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttrib1hvNV(UInt32 index, [CountAttribute(Count = 1)] Half* v); + [Slot(2613)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttrib1sNV(UInt32 index, Int16 x); - [Slot(2611)] + [Slot(2616)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttrib1svNV(UInt32 index, [CountAttribute(Count = 1)] Int16* v); - [Slot(2614)] + [Slot(2619)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttrib2dNV(UInt32 index, Double x, Double y); - [Slot(2617)] + [Slot(2622)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttrib2dvNV(UInt32 index, [CountAttribute(Count = 2)] Double* v); - [Slot(2620)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttrib2fNV(UInt32 index, Single x, Single y); - [Slot(2623)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib2fvNV(UInt32 index, [CountAttribute(Count = 2)] Single* v); - [Slot(2624)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttrib2hNV(UInt32 index, Half x, Half y); [Slot(2625)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib2hvNV(UInt32 index, [CountAttribute(Count = 2)] Half* v); + private static extern void glVertexAttrib2fNV(UInt32 index, Single x, Single y); [Slot(2628)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttrib2fvNV(UInt32 index, [CountAttribute(Count = 2)] Single* v); + [Slot(2629)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttrib2hNV(UInt32 index, Half x, Half y); + [Slot(2630)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttrib2hvNV(UInt32 index, [CountAttribute(Count = 2)] Half* v); + [Slot(2633)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttrib2sNV(UInt32 index, Int16 x, Int16 y); - [Slot(2631)] + [Slot(2636)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttrib2svNV(UInt32 index, [CountAttribute(Count = 2)] Int16* v); - [Slot(2634)] + [Slot(2639)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttrib3dNV(UInt32 index, Double x, Double y, Double z); - [Slot(2637)] + [Slot(2642)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttrib3dvNV(UInt32 index, [CountAttribute(Count = 3)] Double* v); - [Slot(2640)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttrib3fNV(UInt32 index, Single x, Single y, Single z); - [Slot(2643)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib3fvNV(UInt32 index, [CountAttribute(Count = 3)] Single* v); - [Slot(2644)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttrib3hNV(UInt32 index, Half x, Half y, Half z); [Slot(2645)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib3hvNV(UInt32 index, [CountAttribute(Count = 3)] Half* v); + private static extern void glVertexAttrib3fNV(UInt32 index, Single x, Single y, Single z); [Slot(2648)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttrib3sNV(UInt32 index, Int16 x, Int16 y, Int16 z); - [Slot(2651)] + private static extern unsafe void glVertexAttrib3fvNV(UInt32 index, [CountAttribute(Count = 3)] Single* v); + [Slot(2649)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib3svNV(UInt32 index, [CountAttribute(Count = 3)] Int16* v); + private static extern void glVertexAttrib3hNV(UInt32 index, Half x, Half y, Half z); + [Slot(2650)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttrib3hvNV(UInt32 index, [CountAttribute(Count = 3)] Half* v); + [Slot(2653)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttrib3sNV(UInt32 index, Int16 x, Int16 y, Int16 z); [Slot(2656)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttrib3svNV(UInt32 index, [CountAttribute(Count = 3)] Int16* v); + [Slot(2661)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttrib4dNV(UInt32 index, Double x, Double y, Double z, Double w); - [Slot(2659)] + [Slot(2664)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttrib4dvNV(UInt32 index, [CountAttribute(Count = 4)] Double* v); - [Slot(2662)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttrib4fNV(UInt32 index, Single x, Single y, Single z, Single w); - [Slot(2665)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib4fvNV(UInt32 index, [CountAttribute(Count = 4)] Single* v); - [Slot(2666)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttrib4hNV(UInt32 index, Half x, Half y, Half z, Half w); [Slot(2667)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttrib4fNV(UInt32 index, Single x, Single y, Single z, Single w); + [Slot(2670)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttrib4fvNV(UInt32 index, [CountAttribute(Count = 4)] Single* v); + [Slot(2671)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttrib4hNV(UInt32 index, Half x, Half y, Half z, Half w); + [Slot(2672)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttrib4hvNV(UInt32 index, [CountAttribute(Count = 4)] Half* v); - [Slot(2686)] + [Slot(2691)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttrib4sNV(UInt32 index, Int16 x, Int16 y, Int16 z, Int16 w); - [Slot(2689)] + [Slot(2694)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttrib4svNV(UInt32 index, [CountAttribute(Count = 4)] Int16* v); - [Slot(2690)] + [Slot(2695)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttrib4ubNV(UInt32 index, Byte x, Byte y, Byte z, Byte w); - [Slot(2693)] + [Slot(2698)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttrib4ubvNV(UInt32 index, [CountAttribute(Count = 4)] Byte* v); - [Slot(2703)] + [Slot(2708)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribFormatNV(UInt32 index, Int32 size, System.Int32 type, bool normalized, Int32 stride); - [Slot(2745)] + [Slot(2750)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribIFormatNV(UInt32 index, Int32 size, System.Int32 type, Int32 stride); - [Slot(2752)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribL1i64NV(UInt32 index, Int64 x); - [Slot(2753)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribL1i64vNV(UInt32 index, [CountAttribute(Count = 1)] Int64* v); - [Slot(2755)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribL1ui64NV(UInt32 index, UInt64 x); [Slot(2757)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribL1ui64vNV(UInt32 index, [CountAttribute(Count = 1)] UInt64* v); + private static extern void glVertexAttribL1i64NV(UInt32 index, Int64 x); + [Slot(2758)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttribL1i64vNV(UInt32 index, [CountAttribute(Count = 1)] Int64* v); + [Slot(2760)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribL1ui64NV(UInt32 index, UInt64 x); [Slot(2762)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttribL1ui64vNV(UInt32 index, [CountAttribute(Count = 1)] UInt64* v); + [Slot(2767)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribL2i64NV(UInt32 index, Int64 x, Int64 y); - [Slot(2763)] + [Slot(2768)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttribL2i64vNV(UInt32 index, [CountAttribute(Count = 2)] Int64* v); - [Slot(2764)] + [Slot(2769)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribL2ui64NV(UInt32 index, UInt64 x, UInt64 y); - [Slot(2765)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribL2ui64vNV(UInt32 index, [CountAttribute(Count = 2)] UInt64* v); [Slot(2770)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttribL2ui64vNV(UInt32 index, [CountAttribute(Count = 2)] UInt64* v); + [Slot(2775)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribL3i64NV(UInt32 index, Int64 x, Int64 y, Int64 z); - [Slot(2771)] + [Slot(2776)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttribL3i64vNV(UInt32 index, [CountAttribute(Count = 3)] Int64* v); - [Slot(2772)] + [Slot(2777)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribL3ui64NV(UInt32 index, UInt64 x, UInt64 y, UInt64 z); - [Slot(2773)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribL3ui64vNV(UInt32 index, [CountAttribute(Count = 3)] UInt64* v); [Slot(2778)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribL4i64NV(UInt32 index, Int64 x, Int64 y, Int64 z, Int64 w); - [Slot(2779)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribL4i64vNV(UInt32 index, [CountAttribute(Count = 4)] Int64* v); - [Slot(2780)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribL4ui64NV(UInt32 index, UInt64 x, UInt64 y, UInt64 z, UInt64 w); - [Slot(2781)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribL4ui64vNV(UInt32 index, [CountAttribute(Count = 4)] UInt64* v); + private static extern unsafe void glVertexAttribL3ui64vNV(UInt32 index, [CountAttribute(Count = 3)] UInt64* v); [Slot(2783)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribL4i64NV(UInt32 index, Int64 x, Int64 y, Int64 z, Int64 w); + [Slot(2784)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttribL4i64vNV(UInt32 index, [CountAttribute(Count = 4)] Int64* v); + [Slot(2785)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribL4ui64NV(UInt32 index, UInt64 x, UInt64 y, UInt64 z, UInt64 w); + [Slot(2786)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttribL4ui64vNV(UInt32 index, [CountAttribute(Count = 4)] UInt64* v); + [Slot(2788)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribLFormatNV(UInt32 index, Int32 size, System.Int32 type, Int32 stride); - [Slot(2797)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribPointerNV(UInt32 index, Int32 fsize, System.Int32 type, Int32 stride, [CountAttribute(Computed = "fsize,type,stride")] IntPtr pointer); - [Slot(2798)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribs1dvNV(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] Double* v); - [Slot(2799)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribs1fvNV(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] Single* v); - [Slot(2800)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribs1hvNV(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] Half* v); - [Slot(2801)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribs1svNV(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] Int16* v); [Slot(2802)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribs2dvNV(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Double* v); + private static extern void glVertexAttribPointerNV(UInt32 index, Int32 fsize, System.Int32 type, Int32 stride, [CountAttribute(Computed = "fsize,type,stride")] IntPtr pointer); [Slot(2803)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribs2fvNV(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Single* v); + private static extern unsafe void glVertexAttribs1dvNV(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] Double* v); [Slot(2804)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribs2hvNV(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] Half* v); + private static extern unsafe void glVertexAttribs1fvNV(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] Single* v); [Slot(2805)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribs2svNV(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Int16* v); + private static extern unsafe void glVertexAttribs1hvNV(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] Half* v); [Slot(2806)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribs3dvNV(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Double* v); + private static extern unsafe void glVertexAttribs1svNV(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] Int16* v); [Slot(2807)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribs3fvNV(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Single* v); + private static extern unsafe void glVertexAttribs2dvNV(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Double* v); [Slot(2808)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribs3hvNV(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] Half* v); + private static extern unsafe void glVertexAttribs2fvNV(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Single* v); [Slot(2809)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribs3svNV(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Int16* v); + private static extern unsafe void glVertexAttribs2hvNV(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] Half* v); [Slot(2810)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribs4dvNV(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Double* v); + private static extern unsafe void glVertexAttribs2svNV(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Int16* v); [Slot(2811)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribs4fvNV(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* v); + private static extern unsafe void glVertexAttribs3dvNV(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Double* v); [Slot(2812)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribs4hvNV(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] Half* v); + private static extern unsafe void glVertexAttribs3fvNV(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Single* v); [Slot(2813)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribs4svNV(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int16* v); + private static extern unsafe void glVertexAttribs3hvNV(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] Half* v); [Slot(2814)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribs4ubvNV(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Byte* v); + private static extern unsafe void glVertexAttribs3svNV(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Int16* v); + [Slot(2815)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttribs4dvNV(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Double* v); + [Slot(2816)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttribs4fvNV(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* v); + [Slot(2817)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttribs4hvNV(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] Half* v); + [Slot(2818)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttribs4svNV(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int16* v); [Slot(2819)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVertexAttribs4ubvNV(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Byte* v); + [Slot(2824)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexFormatNV(Int32 size, System.Int32 type, Int32 stride); - [Slot(2864)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexWeighthNV(Half weight); - [Slot(2865)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexWeighthvNV([CountAttribute(Count = 1)] Half* weight); - [Slot(2867)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe System.Int32 glVideoCaptureNV(UInt32 video_capture_slot, [OutAttribute] UInt32* sequence_num, [OutAttribute] UInt64* capture_time); - [Slot(2868)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVideoCaptureStreamParameterdvNV(UInt32 video_capture_slot, UInt32 stream, System.Int32 pname, [CountAttribute(Computed = "pname")] Double* @params); [Slot(2869)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVideoCaptureStreamParameterfvNV(UInt32 video_capture_slot, UInt32 stream, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); + private static extern void glVertexWeighthNV(Half weight); [Slot(2870)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVideoCaptureStreamParameterivNV(UInt32 video_capture_slot, UInt32 stream, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + private static extern unsafe void glVertexWeighthvNV([CountAttribute(Count = 1)] Half* weight); + [Slot(2872)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe System.Int32 glVideoCaptureNV(UInt32 video_capture_slot, [OutAttribute] UInt32* sequence_num, [OutAttribute] UInt64* capture_time); + [Slot(2873)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVideoCaptureStreamParameterdvNV(UInt32 video_capture_slot, UInt32 stream, System.Int32 pname, [CountAttribute(Computed = "pname")] Double* @params); + [Slot(2874)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVideoCaptureStreamParameterfvNV(UInt32 video_capture_slot, UInt32 stream, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); [Slot(2875)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glVideoCaptureStreamParameterivNV(UInt32 video_capture_slot, UInt32 stream, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + [Slot(2880)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glViewportPositionWScaleNV(UInt32 index, Single xcoeff, Single ycoeff); - [Slot(2876)] + [Slot(2881)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glViewportSwizzleNV(UInt32 index, System.Int32 swizzlex, System.Int32 swizzley, System.Int32 swizzlez, System.Int32 swizzlew); - [Slot(2879)] + [Slot(2884)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glWaitVkSemaphoreNV(UInt64 vkSemaphore); - [Slot(2884)] + [Slot(2889)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glWeightPathsNV(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights); [Slot(30)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glBeginConditionalRenderNVX(UInt32 id); - [Slot(537)] + [Slot(538)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glEndConditionalRenderNVX(); - [Slot(1262)] + [Slot(1264)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glLGPUCopyImageSubDataNVX(UInt32 sourceGpu, UInt32 destinationGpuMask, UInt32 srcName, System.Int32 srcTarget, Int32 srcLevel, Int32 srcX, Int32 srxY, Int32 srcZ, UInt32 dstName, System.Int32 dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 width, Int32 height, Int32 depth); - [Slot(1263)] + [Slot(1265)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glLGPUInterlockNVX(); - [Slot(1264)] + [Slot(1266)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glLGPUNamedBufferSubDataNVX(UInt32 gpuMask, UInt32 buffer, IntPtr offset, IntPtr size, IntPtr data); [Slot(1)] @@ -149389,358 +149493,358 @@ namespace OpenTK.Graphics.OpenGL [Slot(320)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glConvolutionParameterxvOES(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); - [Slot(451)] + [Slot(452)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDepthRangefOES(Single n, Single f); - [Slot(453)] + [Slot(454)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDepthRangexOES(Int32 n, Int32 f); - [Slot(555)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glEvalCoord1xOES(Int32 u); [Slot(556)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glEvalCoord1xvOES([CountAttribute(Count = 1)] Int32* coords); - [Slot(561)] + private static extern void glEvalCoord1xOES(Int32 u); + [Slot(557)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glEvalCoord2xOES(Int32 u, Int32 v); + private static extern unsafe void glEvalCoord1xvOES([CountAttribute(Count = 1)] Int32* coords); [Slot(562)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glEvalCoord2xOES(Int32 u, Int32 v); + [Slot(563)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glEvalCoord2xvOES([CountAttribute(Count = 2)] Int32* coords); - [Slot(572)] + [Slot(573)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glFeedbackBufferxOES(Int32 n, System.Int32 type, [CountAttribute(Parameter = "n")] Int32* buffer); - [Slot(610)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFogxOES(System.Int32 pname, Int32 param); [Slot(611)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glFogxvOES(System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* param); - [Slot(655)] + private static extern void glFogxOES(System.Int32 pname, Int32 param); + [Slot(612)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFrustumfOES(Single l, Single r, Single b, Single t, Single n, Single f); + private static extern unsafe void glFogxvOES(System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* param); [Slot(656)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glFrustumfOES(Single l, Single r, Single b, Single t, Single n, Single f); + [Slot(657)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFrustumxOES(Int32 l, Int32 r, Int32 b, Int32 t, Int32 n, Int32 f); - [Slot(724)] + [Slot(726)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetClipPlanefOES(System.Int32 plane, [OutAttribute, CountAttribute(Count = 4)] Single* equation); - [Slot(725)] + [Slot(727)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetClipPlanexOES(System.Int32 plane, [OutAttribute, CountAttribute(Count = 4)] Int32* equation); - [Slot(753)] + [Slot(755)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetConvolutionParameterxvOES(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(769)] + [Slot(771)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetFixedvOES(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(797)] + [Slot(799)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetHistogramParameterxvOES(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(819)] + [Slot(821)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetLightxOES(System.Int32 light, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(834)] + [Slot(836)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetMapxvOES(System.Int32 target, System.Int32 query, [OutAttribute, CountAttribute(Computed = "query")] Int32* v); - [Slot(837)] + [Slot(839)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glGetMaterialxOES(System.Int32 face, System.Int32 pname, Int32 param); - [Slot(838)] + [Slot(840)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetMaterialxvOES(System.Int32 face, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(1046)] + [Slot(1048)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetTexEnvxvOES(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(1051)] + [Slot(1053)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetTexGenxvOES(System.Int32 coord, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(1055)] + [Slot(1057)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetTexLevelParameterxvOES(System.Int32 target, Int32 level, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(1063)] + [Slot(1065)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetTexParameterxvOES(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(1197)] + [Slot(1199)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glIndexxOES(Int32 component); - [Slot(1198)] + [Slot(1200)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glIndexxvOES([CountAttribute(Count = 1)] Int32* component); - [Slot(1274)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glLightModelxOES(System.Int32 pname, Int32 param); - [Slot(1275)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glLightModelxvOES(System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* param); [Slot(1276)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glLightxOES(System.Int32 light, System.Int32 pname, Int32 param); + private static extern void glLightModelxOES(System.Int32 pname, Int32 param); [Slot(1277)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glLightModelxvOES(System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* param); + [Slot(1278)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glLightxOES(System.Int32 light, System.Int32 pname, Int32 param); + [Slot(1279)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glLightxvOES(System.Int32 light, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); - [Slot(1280)] + [Slot(1282)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glLineWidthxOES(Int32 width); - [Slot(1293)] + [Slot(1295)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glLoadMatrixxOES([CountAttribute(Count = 16)] Int32* m); - [Slot(1300)] + [Slot(1302)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glLoadTransposeMatrixxOES([CountAttribute(Count = 16)] Int32* m); - [Slot(1317)] + [Slot(1319)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMap1xOES(System.Int32 target, Int32 u1, Int32 u2, Int32 stride, Int32 order, Int32 points); - [Slot(1320)] + [Slot(1322)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMap2xOES(System.Int32 target, Int32 u1, Int32 u2, Int32 ustride, Int32 uorder, Int32 v1, Int32 v2, Int32 vstride, Int32 vorder, Int32 points); - [Slot(1327)] + [Slot(1329)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMapGrid1xOES(Int32 n, Int32 u1, Int32 u2); - [Slot(1330)] + [Slot(1332)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMapGrid2xOES(Int32 n, Int32 u1, Int32 u2, Int32 v1, Int32 v2); - [Slot(1347)] + [Slot(1349)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMaterialxOES(System.Int32 face, System.Int32 pname, Int32 param); - [Slot(1348)] + [Slot(1350)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMaterialxvOES(System.Int32 face, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* param); - [Slot(1421)] + [Slot(1424)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiTexCoord1bOES(System.Int32 texture, SByte s); - [Slot(1422)] + [Slot(1425)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoord1bvOES(System.Int32 texture, [CountAttribute(Count = 1)] SByte* coords); - [Slot(1441)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexCoord1xOES(System.Int32 texture, Int32 s); - [Slot(1442)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiTexCoord1xvOES(System.Int32 texture, [CountAttribute(Count = 1)] Int32* coords); - [Slot(1443)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexCoord2bOES(System.Int32 texture, SByte s, SByte t); [Slot(1444)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMultiTexCoord1xOES(System.Int32 texture, Int32 s); + [Slot(1445)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMultiTexCoord1xvOES(System.Int32 texture, [CountAttribute(Count = 1)] Int32* coords); + [Slot(1446)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMultiTexCoord2bOES(System.Int32 texture, SByte s, SByte t); + [Slot(1447)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoord2bvOES(System.Int32 texture, [CountAttribute(Count = 2)] SByte* coords); - [Slot(1463)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexCoord2xOES(System.Int32 texture, Int32 s, Int32 t); - [Slot(1464)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiTexCoord2xvOES(System.Int32 texture, [CountAttribute(Count = 2)] Int32* coords); - [Slot(1465)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexCoord3bOES(System.Int32 texture, SByte s, SByte t, SByte r); [Slot(1466)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMultiTexCoord2xOES(System.Int32 texture, Int32 s, Int32 t); + [Slot(1467)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMultiTexCoord2xvOES(System.Int32 texture, [CountAttribute(Count = 2)] Int32* coords); + [Slot(1468)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMultiTexCoord3bOES(System.Int32 texture, SByte s, SByte t, SByte r); + [Slot(1469)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoord3bvOES(System.Int32 texture, [CountAttribute(Count = 3)] SByte* coords); - [Slot(1485)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexCoord3xOES(System.Int32 texture, Int32 s, Int32 t, Int32 r); - [Slot(1486)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiTexCoord3xvOES(System.Int32 texture, [CountAttribute(Count = 3)] Int32* coords); - [Slot(1487)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexCoord4bOES(System.Int32 texture, SByte s, SByte t, SByte r, SByte q); [Slot(1488)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMultiTexCoord3xOES(System.Int32 texture, Int32 s, Int32 t, Int32 r); + [Slot(1489)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMultiTexCoord3xvOES(System.Int32 texture, [CountAttribute(Count = 3)] Int32* coords); + [Slot(1490)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMultiTexCoord4bOES(System.Int32 texture, SByte s, SByte t, SByte r, SByte q); + [Slot(1491)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoord4bvOES(System.Int32 texture, [CountAttribute(Count = 4)] SByte* coords); - [Slot(1507)] + [Slot(1510)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiTexCoord4xOES(System.Int32 texture, Int32 s, Int32 t, Int32 r, Int32 q); - [Slot(1508)] + [Slot(1511)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoord4xvOES(System.Int32 texture, [CountAttribute(Count = 4)] Int32* coords); - [Slot(1543)] + [Slot(1546)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultMatrixxOES([CountAttribute(Count = 16)] Int32* m); - [Slot(1548)] + [Slot(1551)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultTransposeMatrixxOES([CountAttribute(Count = 16)] Int32* m); - [Slot(1612)] + [Slot(1615)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glNormal3xOES(Int32 nx, Int32 ny, Int32 nz); - [Slot(1613)] + [Slot(1616)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glNormal3xvOES([CountAttribute(Count = 3)] Int32* coords); - [Slot(1638)] + [Slot(1641)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glOrthofOES(Single l, Single r, Single b, Single t, Single n, Single f); - [Slot(1639)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glOrthoxOES(Int32 l, Int32 r, Int32 b, Int32 t, Int32 n, Int32 f); [Slot(1642)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glOrthoxOES(Int32 l, Int32 r, Int32 b, Int32 t, Int32 n, Int32 f); + [Slot(1645)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPassThroughxOES(Int32 token); - [Slot(1683)] + [Slot(1686)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPixelTransferxOES(System.Int32 pname, Int32 param); - [Slot(1689)] + [Slot(1692)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPixelZoomxOES(Int32 xfactor, Int32 yfactor); - [Slot(1705)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPointParameterxOES(System.Int32 pname, Int32 param); - [Slot(1706)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPointParameterxvOES(System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); [Slot(1708)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPointParameterxOES(System.Int32 pname, Int32 param); + [Slot(1709)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glPointParameterxvOES(System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + [Slot(1711)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPointSizexOES(Int32 size); - [Slot(1716)] + [Slot(1719)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPolygonOffsetxOES(Int32 factor, Int32 units); - [Slot(1733)] + [Slot(1736)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glPrioritizeTexturesxOES(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures, [CountAttribute(Parameter = "n")] Int32* priorities); - [Slot(1926)] + [Slot(1929)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe Int32 glQueryMatrixxOES([OutAttribute, CountAttribute(Count = 16)] Int32* mantissa, [OutAttribute, CountAttribute(Count = 16)] Int32* exponent); - [Slot(1936)] + [Slot(1941)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glRasterPos2xOES(Int32 x, Int32 y); - [Slot(1937)] + [Slot(1942)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glRasterPos2xvOES([CountAttribute(Count = 2)] Int32* coords); - [Slot(1946)] + [Slot(1951)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glRasterPos3xOES(Int32 x, Int32 y, Int32 z); - [Slot(1947)] + [Slot(1952)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glRasterPos3xvOES([CountAttribute(Count = 3)] Int32* coords); - [Slot(1956)] + [Slot(1961)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glRasterPos4xOES(Int32 x, Int32 y, Int32 z, Int32 w); - [Slot(1957)] + [Slot(1962)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glRasterPos4xvOES([CountAttribute(Count = 4)] Int32* coords); - [Slot(1973)] + [Slot(1978)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glRectxOES(Int32 x1, Int32 y1, Int32 x2, Int32 y2); - [Slot(1974)] + [Slot(1979)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glRectxvOES([CountAttribute(Count = 2)] Int32* v1, [CountAttribute(Count = 2)] Int32* v2); - [Slot(2019)] + [Slot(2024)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glRotatexOES(Int32 angle, Int32 x, Int32 y, Int32 z); - [Slot(2022)] + [Slot(2027)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glSampleCoveragexOES(Int32 value, bool invert); - [Slot(2038)] + [Slot(2043)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glScalexOES(Int32 x, Int32 y, Int32 z); - [Slot(2161)] + [Slot(2166)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexCoord1bOES(SByte s); - [Slot(2162)] + [Slot(2167)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTexCoord1bvOES([CountAttribute(Count = 1)] SByte* coords); - [Slot(2173)] + [Slot(2178)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexCoord1xOES(Int32 s); - [Slot(2174)] + [Slot(2179)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTexCoord1xvOES([CountAttribute(Count = 1)] Int32* coords); - [Slot(2175)] + [Slot(2180)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexCoord2bOES(SByte s, SByte t); - [Slot(2176)] + [Slot(2181)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTexCoord2bvOES([CountAttribute(Count = 2)] SByte* coords); - [Slot(2197)] + [Slot(2202)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexCoord2xOES(Int32 s, Int32 t); - [Slot(2198)] + [Slot(2203)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTexCoord2xvOES([CountAttribute(Count = 2)] Int32* coords); - [Slot(2199)] + [Slot(2204)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexCoord3bOES(SByte s, SByte t, SByte r); - [Slot(2200)] + [Slot(2205)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTexCoord3bvOES([CountAttribute(Count = 3)] SByte* coords); - [Slot(2211)] + [Slot(2216)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexCoord3xOES(Int32 s, Int32 t, Int32 r); - [Slot(2212)] + [Slot(2217)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTexCoord3xvOES([CountAttribute(Count = 3)] Int32* coords); - [Slot(2213)] + [Slot(2218)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexCoord4bOES(SByte s, SByte t, SByte r, SByte q); - [Slot(2214)] + [Slot(2219)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTexCoord4bvOES([CountAttribute(Count = 4)] SByte* coords); - [Slot(2229)] + [Slot(2234)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexCoord4xOES(Int32 s, Int32 t, Int32 r, Int32 q); - [Slot(2230)] + [Slot(2235)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTexCoord4xvOES([CountAttribute(Count = 4)] Int32* coords); - [Slot(2248)] + [Slot(2253)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexEnvxOES(System.Int32 target, System.Int32 pname, Int32 param); - [Slot(2249)] + [Slot(2254)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTexEnvxvOES(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); - [Slot(2257)] + [Slot(2262)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexGenxOES(System.Int32 coord, System.Int32 pname, Int32 param); - [Slot(2258)] + [Slot(2263)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTexGenxvOES(System.Int32 coord, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); - [Slot(2277)] + [Slot(2282)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexParameterxOES(System.Int32 target, System.Int32 pname, Int32 param); - [Slot(2278)] + [Slot(2283)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTexParameterxvOES(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); - [Slot(2364)] + [Slot(2369)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTranslatexOES(Int32 x, Int32 y, Int32 z); - [Slot(2520)] + [Slot(2525)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertex2bOES(SByte x, SByte y); - [Slot(2521)] + [Slot(2526)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertex2bvOES([CountAttribute(Count = 2)] SByte* coords); - [Slot(2532)] + [Slot(2537)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertex2xOES(Int32 x); - [Slot(2533)] + [Slot(2538)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertex2xvOES([CountAttribute(Count = 2)] Int32* coords); - [Slot(2534)] + [Slot(2539)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertex3bOES(SByte x, SByte y, SByte z); - [Slot(2535)] + [Slot(2540)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertex3bvOES([CountAttribute(Count = 3)] SByte* coords); - [Slot(2546)] + [Slot(2551)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertex3xOES(Int32 x, Int32 y); - [Slot(2547)] + [Slot(2552)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertex3xvOES([CountAttribute(Count = 3)] Int32* coords); - [Slot(2548)] + [Slot(2553)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertex4bOES(SByte x, SByte y, SByte z, SByte w); - [Slot(2549)] + [Slot(2554)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertex4bvOES([CountAttribute(Count = 4)] SByte* coords); - [Slot(2560)] + [Slot(2565)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertex4xOES(Int32 x, Int32 y, Int32 z); - [Slot(2561)] + [Slot(2566)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertex4xvOES([CountAttribute(Count = 4)] Int32* coords); - [Slot(649)] + [Slot(650)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFramebufferTextureMultiviewOVR(System.Int32 target, System.Int32 attachment, UInt32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews); - [Slot(1165)] + [Slot(1167)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glHintPGI(System.Int32 target, Int32 mode); [Slot(262)] @@ -149755,76 +149859,76 @@ namespace OpenTK.Graphics.OpenGL [Slot(325)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glCopyColorTableSGI(System.Int32 target, System.Int32 internalformat, Int32 x, Int32 y, Int32 width); - [Slot(730)] + [Slot(732)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetColorTableParameterfvSGI(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); - [Slot(733)] + [Slot(735)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetColorTableParameterivSGI(System.Int32 target, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(734)] + [Slot(736)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glGetColorTableSGI(System.Int32 target, System.Int32 format, System.Int32 type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr table); - [Slot(456)] + [Slot(457)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDetailTexFuncSGIS(System.Int32 target, Int32 n, [CountAttribute(Parameter = "n*2")] Single* points); - [Slot(606)] + [Slot(607)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glFogFuncSGIS(Int32 n, [CountAttribute(Parameter = "n*2")] Single* points); - [Slot(759)] + [Slot(761)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetDetailTexFuncSGIS(System.Int32 target, [OutAttribute, CountAttribute(Computed = "target")] Single* points); - [Slot(774)] + [Slot(776)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetFogFuncSGIS([OutAttribute, CountAttribute(Computed = "")] Single* points); - [Slot(964)] + [Slot(966)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetPixelTexGenParameterfvSGIS(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); - [Slot(965)] + [Slot(967)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetPixelTexGenParameterivSGIS(System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(1035)] + [Slot(1037)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetSharpenTexFuncSGIS(System.Int32 target, [OutAttribute, CountAttribute(Computed = "target")] Single* points); - [Slot(1047)] + [Slot(1049)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetTexFilterFuncSGIS(System.Int32 target, System.Int32 filter, [OutAttribute, CountAttribute(Computed = "target,filter")] Single* weights); - [Slot(1676)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPixelTexGenParameterfSGIS(System.Int32 pname, Single param); - [Slot(1677)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPixelTexGenParameterfvSGIS(System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); - [Slot(1678)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPixelTexGenParameteriSGIS(System.Int32 pname, Int32 param); [Slot(1679)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPixelTexGenParameterfSGIS(System.Int32 pname, Single param); + [Slot(1680)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glPixelTexGenParameterfvSGIS(System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); + [Slot(1681)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPixelTexGenParameteriSGIS(System.Int32 pname, Int32 param); + [Slot(1682)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glPixelTexGenParameterivSGIS(System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); - [Slot(1696)] + [Slot(1699)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPointParameterfSGIS(System.Int32 pname, Single param); - [Slot(1700)] + [Slot(1703)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glPointParameterfvSGIS(System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); - [Slot(2027)] + [Slot(2032)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glSampleMaskSGIS(Single value, bool invert); - [Slot(2029)] + [Slot(2034)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glSamplePatternSGIS(System.Int32 pattern); - [Slot(2102)] + [Slot(2107)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glSharpenTexFuncSGIS(System.Int32 target, Int32 n, [CountAttribute(Parameter = "n*2")] Single* points); - [Slot(2250)] + [Slot(2255)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTexFilterFuncSGIS(System.Int32 target, System.Int32 filter, Int32 n, [CountAttribute(Parameter = "n")] Single* weights); - [Slot(2267)] + [Slot(2272)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexImage4DSGIS(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 size4d, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth,size4d")] IntPtr pixels); - [Slot(2297)] + [Slot(2302)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexSubImage4DSGIS(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 woffset, Int32 width, Int32 height, Int32 depth, Int32 size4d, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth,size4d")] IntPtr pixels); - [Slot(2304)] + [Slot(2309)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureColorMaskSGIS(bool red, bool green, bool blue, bool alpha); [Slot(24)] @@ -149842,139 +149946,139 @@ namespace OpenTK.Graphics.OpenGL [Slot(404)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDeleteAsyncMarkersSGIX(UInt32 marker, Int32 range); - [Slot(576)] + [Slot(577)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe Int32 glFinishAsyncSGIX([OutAttribute, CountAttribute(Count = 1)] UInt32* markerp); - [Slot(587)] + [Slot(588)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFlushRasterSGIX(); - [Slot(612)] + [Slot(613)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFragmentColorMaterialSGIX(System.Int32 face, System.Int32 mode); - [Slot(614)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFragmentLightfSGIX(System.Int32 light, System.Int32 pname, Single param); [Slot(615)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glFragmentLightfvSGIX(System.Int32 light, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); + private static extern void glFragmentLightfSGIX(System.Int32 light, System.Int32 pname, Single param); [Slot(616)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFragmentLightiSGIX(System.Int32 light, System.Int32 pname, Int32 param); + private static extern unsafe void glFragmentLightfvSGIX(System.Int32 light, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); [Slot(617)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glFragmentLightivSGIX(System.Int32 light, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + private static extern void glFragmentLightiSGIX(System.Int32 light, System.Int32 pname, Int32 param); [Slot(618)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFragmentLightModelfSGIX(System.Int32 pname, Single param); + private static extern unsafe void glFragmentLightivSGIX(System.Int32 light, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); [Slot(619)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glFragmentLightModelfvSGIX(System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); + private static extern void glFragmentLightModelfSGIX(System.Int32 pname, Single param); [Slot(620)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFragmentLightModeliSGIX(System.Int32 pname, Int32 param); + private static extern unsafe void glFragmentLightModelfvSGIX(System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); [Slot(621)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glFragmentLightModelivSGIX(System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + private static extern void glFragmentLightModeliSGIX(System.Int32 pname, Int32 param); [Slot(622)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFragmentMaterialfSGIX(System.Int32 face, System.Int32 pname, Single param); + private static extern unsafe void glFragmentLightModelivSGIX(System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); [Slot(623)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glFragmentMaterialfvSGIX(System.Int32 face, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); + private static extern void glFragmentMaterialfSGIX(System.Int32 face, System.Int32 pname, Single param); [Slot(624)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glFragmentMaterialiSGIX(System.Int32 face, System.Int32 pname, Int32 param); + private static extern unsafe void glFragmentMaterialfvSGIX(System.Int32 face, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); [Slot(625)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glFragmentMaterialiSGIX(System.Int32 face, System.Int32 pname, Int32 param); + [Slot(626)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glFragmentMaterialivSGIX(System.Int32 face, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); - [Slot(651)] + [Slot(652)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFrameZoomSGIX(Int32 factor); - [Slot(657)] + [Slot(658)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int32 glGenAsyncMarkersSGIX(Int32 range); - [Slot(778)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetFragmentLightfvSGIX(System.Int32 light, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); - [Slot(779)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetFragmentLightivSGIX(System.Int32 light, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); [Slot(780)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetFragmentMaterialfvSGIX(System.Int32 face, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); + private static extern unsafe void glGetFragmentLightfvSGIX(System.Int32 light, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); [Slot(781)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetFragmentLightivSGIX(System.Int32 light, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); + [Slot(782)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glGetFragmentMaterialfvSGIX(System.Int32 face, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); + [Slot(783)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetFragmentMaterialivSGIX(System.Int32 face, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(803)] + [Slot(805)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int32 glGetInstrumentsSGIX(); - [Slot(821)] + [Slot(823)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetListParameterfvSGIX(UInt32 list, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params); - [Slot(822)] + [Slot(824)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetListParameterivSGIX(UInt32 list, System.Int32 pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params); - [Slot(1168)] + [Slot(1170)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glIglooInterfaceSGIX(System.Int32 pname, [CountAttribute(Computed = "pname")] IntPtr @params); - [Slot(1202)] + [Slot(1204)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glInstrumentsBufferSGIX(Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32* buffer); - [Slot(1213)] + [Slot(1215)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glIsAsyncMarkerSGIX(UInt32 marker); - [Slot(1265)] + [Slot(1267)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glLightEnviSGIX(System.Int32 pname, Int32 param); - [Slot(1285)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glListParameterfSGIX(UInt32 list, System.Int32 pname, Single param); - [Slot(1286)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glListParameterfvSGIX(UInt32 list, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); [Slot(1287)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glListParameteriSGIX(UInt32 list, System.Int32 pname, Int32 param); + private static extern void glListParameterfSGIX(UInt32 list, System.Int32 pname, Single param); [Slot(1288)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glListParameterivSGIX(UInt32 list, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + private static extern unsafe void glListParameterfvSGIX(UInt32 list, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); + [Slot(1289)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glListParameteriSGIX(UInt32 list, System.Int32 pname, Int32 param); [Slot(1290)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glListParameterivSGIX(UInt32 list, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + [Slot(1292)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glLoadIdentityDeformationMapSGIX(System.Int32 mask); - [Slot(1680)] + [Slot(1683)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPixelTexGenSGIX(System.Int32 mode); - [Slot(1709)] + [Slot(1712)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe Int32 glPollAsyncSGIX([OutAttribute, CountAttribute(Count = 1)] UInt32* markerp); - [Slot(1710)] + [Slot(1713)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe Int32 glPollInstrumentsSGIX([OutAttribute, CountAttribute(Count = 1)] Int32* marker_p); - [Slot(1960)] + [Slot(1965)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glReadInstrumentsSGIX(Int32 marker); - [Slot(1975)] + [Slot(1980)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glReferencePlaneSGIX([CountAttribute(Count = 4)] Double* equation); - [Slot(2108)] + [Slot(2113)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glSpriteParameterfSGIX(System.Int32 pname, Single param); - [Slot(2109)] + [Slot(2114)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glSpriteParameterfvSGIX(System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); - [Slot(2110)] + [Slot(2115)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glSpriteParameteriSGIX(System.Int32 pname, Int32 param); - [Slot(2111)] + [Slot(2116)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glSpriteParameterivSGIX(System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); - [Slot(2112)] + [Slot(2117)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glStartInstrumentsSGIX(); - [Slot(2132)] + [Slot(2137)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glStopInstrumentsSGIX(Int32 marker); - [Slot(2137)] + [Slot(2142)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTagSampleBufferSGIX(); [Slot(199)] @@ -150001,151 +150105,151 @@ namespace OpenTK.Graphics.OpenGL [Slot(234)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glColor4ubVertex3fvSUN([CountAttribute(Count = 4)] Byte* c, [CountAttribute(Count = 3)] Single* v); - [Slot(499)] + [Slot(500)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDrawMeshArraysSUN(System.Int32 mode, Int32 first, Int32 count, Int32 width); - [Slot(1156)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGlobalAlphaFactorbSUN(SByte factor); - [Slot(1157)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGlobalAlphaFactordSUN(Double factor); [Slot(1158)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGlobalAlphaFactorfSUN(Single factor); + private static extern void glGlobalAlphaFactorbSUN(SByte factor); [Slot(1159)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGlobalAlphaFactoriSUN(Int32 factor); + private static extern void glGlobalAlphaFactordSUN(Double factor); [Slot(1160)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGlobalAlphaFactorsSUN(Int16 factor); + private static extern void glGlobalAlphaFactorfSUN(Single factor); [Slot(1161)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGlobalAlphaFactorubSUN(Byte factor); + private static extern void glGlobalAlphaFactoriSUN(Int32 factor); [Slot(1162)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glGlobalAlphaFactoruiSUN(UInt32 factor); + private static extern void glGlobalAlphaFactorsSUN(Int16 factor); [Slot(1163)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glGlobalAlphaFactorubSUN(Byte factor); + [Slot(1164)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glGlobalAlphaFactoruiSUN(UInt32 factor); + [Slot(1165)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glGlobalAlphaFactorusSUN(UInt16 factor); - [Slot(1604)] + [Slot(1607)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glNormal3fVertex3fSUN(Single nx, Single ny, Single nz, Single x, Single y, Single z); - [Slot(1605)] + [Slot(1608)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glNormal3fVertex3fvSUN([CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v); - [Slot(1985)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glReplacementCodePointerSUN(System.Int32 type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer); - [Slot(1986)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glReplacementCodeubSUN(Byte code); - [Slot(1987)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glReplacementCodeubvSUN([CountAttribute(Computed = "")] Byte* code); - [Slot(1988)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glReplacementCodeuiColor3fVertex3fSUN(UInt32 rc, Single r, Single g, Single b, Single x, Single y, Single z); - [Slot(1989)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glReplacementCodeuiColor3fVertex3fvSUN([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 3)] Single* c, [CountAttribute(Count = 3)] Single* v); [Slot(1990)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glReplacementCodeuiColor4fNormal3fVertex3fSUN(UInt32 rc, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z); + private static extern void glReplacementCodePointerSUN(System.Int32 type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer); [Slot(1991)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glReplacementCodeuiColor4fNormal3fVertex3fvSUN([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 4)] Single* c, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v); + private static extern void glReplacementCodeubSUN(Byte code); [Slot(1992)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glReplacementCodeuiColor4ubVertex3fSUN(UInt32 rc, Byte r, Byte g, Byte b, Byte a, Single x, Single y, Single z); + private static extern unsafe void glReplacementCodeubvSUN([CountAttribute(Computed = "")] Byte* code); [Slot(1993)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glReplacementCodeuiColor4ubVertex3fvSUN([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 4)] Byte* c, [CountAttribute(Count = 3)] Single* v); + private static extern void glReplacementCodeuiColor3fVertex3fSUN(UInt32 rc, Single r, Single g, Single b, Single x, Single y, Single z); [Slot(1994)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glReplacementCodeuiNormal3fVertex3fSUN(UInt32 rc, Single nx, Single ny, Single nz, Single x, Single y, Single z); + private static extern unsafe void glReplacementCodeuiColor3fVertex3fvSUN([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 3)] Single* c, [CountAttribute(Count = 3)] Single* v); [Slot(1995)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glReplacementCodeuiNormal3fVertex3fvSUN([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v); + private static extern void glReplacementCodeuiColor4fNormal3fVertex3fSUN(UInt32 rc, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z); [Slot(1996)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glReplacementCodeuiSUN(UInt32 code); + private static extern unsafe void glReplacementCodeuiColor4fNormal3fVertex3fvSUN([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 4)] Single* c, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v); [Slot(1997)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN(UInt32 rc, Single s, Single t, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z); + private static extern void glReplacementCodeuiColor4ubVertex3fSUN(UInt32 rc, Byte r, Byte g, Byte b, Byte a, Single x, Single y, Single z); [Slot(1998)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 4)] Single* c, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v); + private static extern unsafe void glReplacementCodeuiColor4ubVertex3fvSUN([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 4)] Byte* c, [CountAttribute(Count = 3)] Single* v); [Slot(1999)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN(UInt32 rc, Single s, Single t, Single nx, Single ny, Single nz, Single x, Single y, Single z); + private static extern void glReplacementCodeuiNormal3fVertex3fSUN(UInt32 rc, Single nx, Single ny, Single nz, Single x, Single y, Single z); [Slot(2000)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v); + private static extern unsafe void glReplacementCodeuiNormal3fVertex3fvSUN([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v); [Slot(2001)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glReplacementCodeuiTexCoord2fVertex3fSUN(UInt32 rc, Single s, Single t, Single x, Single y, Single z); + private static extern void glReplacementCodeuiSUN(UInt32 code); [Slot(2002)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glReplacementCodeuiTexCoord2fVertex3fvSUN([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 3)] Single* v); + private static extern void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN(UInt32 rc, Single s, Single t, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z); [Slot(2003)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glReplacementCodeuiVertex3fSUN(UInt32 rc, Single x, Single y, Single z); + private static extern unsafe void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 4)] Single* c, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v); [Slot(2004)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glReplacementCodeuiVertex3fvSUN([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 3)] Single* v); + private static extern void glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN(UInt32 rc, Single s, Single t, Single nx, Single ny, Single nz, Single x, Single y, Single z); [Slot(2005)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glReplacementCodeuivSUN([CountAttribute(Computed = "")] UInt32* code); + private static extern unsafe void glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v); [Slot(2006)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glReplacementCodeusSUN(UInt16 code); + private static extern void glReplacementCodeuiTexCoord2fVertex3fSUN(UInt32 rc, Single s, Single t, Single x, Single y, Single z); [Slot(2007)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glReplacementCodeuiTexCoord2fVertex3fvSUN([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 3)] Single* v); + [Slot(2008)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glReplacementCodeuiVertex3fSUN(UInt32 rc, Single x, Single y, Single z); + [Slot(2009)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glReplacementCodeuiVertex3fvSUN([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 3)] Single* v); + [Slot(2010)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glReplacementCodeuivSUN([CountAttribute(Computed = "")] UInt32* code); + [Slot(2011)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glReplacementCodeusSUN(UInt16 code); + [Slot(2012)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glReplacementCodeusvSUN([CountAttribute(Computed = "")] UInt16* code); - [Slot(2180)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexCoord2fColor3fVertex3fSUN(Single s, Single t, Single r, Single g, Single b, Single x, Single y, Single z); - [Slot(2181)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexCoord2fColor3fVertex3fvSUN([CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 3)] Single* c, [CountAttribute(Count = 3)] Single* v); - [Slot(2182)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexCoord2fColor4fNormal3fVertex3fSUN(Single s, Single t, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z); - [Slot(2183)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexCoord2fColor4fNormal3fVertex3fvSUN([CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 4)] Single* c, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v); - [Slot(2184)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexCoord2fColor4ubVertex3fSUN(Single s, Single t, Byte r, Byte g, Byte b, Byte a, Single x, Single y, Single z); [Slot(2185)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexCoord2fColor4ubVertex3fvSUN([CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 4)] Byte* c, [CountAttribute(Count = 3)] Single* v); + private static extern void glTexCoord2fColor3fVertex3fSUN(Single s, Single t, Single r, Single g, Single b, Single x, Single y, Single z); [Slot(2186)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexCoord2fNormal3fVertex3fSUN(Single s, Single t, Single nx, Single ny, Single nz, Single x, Single y, Single z); + private static extern unsafe void glTexCoord2fColor3fVertex3fvSUN([CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 3)] Single* c, [CountAttribute(Count = 3)] Single* v); [Slot(2187)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexCoord2fNormal3fVertex3fvSUN([CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v); + private static extern void glTexCoord2fColor4fNormal3fVertex3fSUN(Single s, Single t, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z); + [Slot(2188)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexCoord2fColor4fNormal3fVertex3fvSUN([CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 4)] Single* c, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v); [Slot(2189)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexCoord2fVertex3fSUN(Single s, Single t, Single x, Single y, Single z); + private static extern void glTexCoord2fColor4ubVertex3fSUN(Single s, Single t, Byte r, Byte g, Byte b, Byte a, Single x, Single y, Single z); [Slot(2190)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexCoord2fColor4ubVertex3fvSUN([CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 4)] Byte* c, [CountAttribute(Count = 3)] Single* v); + [Slot(2191)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexCoord2fNormal3fVertex3fSUN(Single s, Single t, Single nx, Single ny, Single nz, Single x, Single y, Single z); + [Slot(2192)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTexCoord2fNormal3fVertex3fvSUN([CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v); + [Slot(2194)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexCoord2fVertex3fSUN(Single s, Single t, Single x, Single y, Single z); + [Slot(2195)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTexCoord2fVertex3fvSUN([CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 3)] Single* v); - [Slot(2218)] + [Slot(2223)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexCoord4fColor4fNormal3fVertex4fSUN(Single s, Single t, Single p, Single q, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z, Single w); - [Slot(2219)] + [Slot(2224)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTexCoord4fColor4fNormal3fVertex4fvSUN([CountAttribute(Count = 4)] Single* tc, [CountAttribute(Count = 4)] Single* c, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 4)] Single* v); - [Slot(2221)] + [Slot(2226)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexCoord4fVertex4fSUN(Single s, Single t, Single p, Single q, Single x, Single y, Single z, Single w); - [Slot(2222)] + [Slot(2227)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTexCoord4fVertex4fvSUN([CountAttribute(Count = 4)] Single* tc, [CountAttribute(Count = 4)] Single* v); - [Slot(580)] + [Slot(581)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glFinishTextureSUNX(); } diff --git a/src/OpenTK/Graphics/OpenGL/GLEnums.cs b/src/OpenTK/Graphics/OpenGL/GLEnums.cs index 9306a05a..36468a24 100644 --- a/src/OpenTK/Graphics/OpenGL/GLEnums.cs +++ b/src/OpenTK/Graphics/OpenGL/GLEnums.cs @@ -740,7 +740,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Arb.GetProgramEnvParameter, GL.Arb.GetProgramLocalParameter and 15 other functions + /// Used in GL.Arb.GetProgramEnvParameter, GL.Arb.GetProgramLocalParameter and 4 other functions /// public enum All : int { @@ -789,6 +789,10 @@ namespace OpenTK.Graphics.OpenGL /// ClientPixelStoreBit = ((int)0x00000001), /// + /// Original was GL_COLOR_BUFFER_BIT0_QCOM = 0x00000001 + /// + ColorBufferBit0Qcom = ((int)0x00000001), + /// /// Original was GL_CONTEXT_CORE_PROFILE_BIT = 0x00000001 /// ContextCoreProfileBit = ((int)0x00000001), @@ -821,6 +825,10 @@ namespace OpenTK.Graphics.OpenGL /// SyncFlushCommandsBit = ((int)0x00000001), /// + /// Original was GL_SYNC_FLUSH_COMMANDS_BIT_APPLE = 0x00000001 + /// + SyncFlushCommandsBitApple = ((int)0x00000001), + /// /// Original was GL_TEXTURE_DEFORMATION_BIT_SGIX = 0x00000001 /// TextureDeformationBitSgix = ((int)0x00000001), @@ -849,6 +857,10 @@ namespace OpenTK.Graphics.OpenGL /// ClientVertexArrayBit = ((int)0x00000002), /// + /// Original was GL_COLOR_BUFFER_BIT1_QCOM = 0x00000002 + /// + ColorBufferBit1Qcom = ((int)0x00000002), + /// /// Original was GL_COMP_BIT_ATI = 0x00000002 /// CompBitAti = ((int)0x00000002), @@ -905,6 +917,10 @@ namespace OpenTK.Graphics.OpenGL /// BlueBitAti = ((int)0x00000004), /// + /// Original was GL_COLOR_BUFFER_BIT2_QCOM = 0x00000004 + /// + ColorBufferBit2Qcom = ((int)0x00000004), + /// /// Original was GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT = 0x00000004 /// ContextFlagRobustAccessBit = ((int)0x00000004), @@ -921,6 +937,10 @@ namespace OpenTK.Graphics.OpenGL /// GeometryShaderBitExt = ((int)0x00000004), /// + /// Original was GL_GEOMETRY_SHADER_BIT_OES = 0x00000004 + /// + GeometryShaderBitOes = ((int)0x00000004), + /// /// Original was GL_8X_BIT_ATI = 0x00000004 /// Gl8XBitAti = ((int)0x00000004), @@ -957,6 +977,10 @@ namespace OpenTK.Graphics.OpenGL /// BiasBitAti = ((int)0x00000008), /// + /// Original was GL_COLOR_BUFFER_BIT3_QCOM = 0x00000008 + /// + ColorBufferBit3Qcom = ((int)0x00000008), + /// /// Original was GL_CONTEXT_FLAG_NO_ERROR_BIT = 0x00000008 /// ContextFlagNoErrorBit = ((int)0x00000008), @@ -989,6 +1013,10 @@ namespace OpenTK.Graphics.OpenGL /// TessControlShaderBitExt = ((int)0x00000008), /// + /// Original was GL_TESS_CONTROL_SHADER_BIT_OES = 0x00000008 + /// + TessControlShaderBitOes = ((int)0x00000008), + /// /// Original was GL_TEXTURE_FETCH_BARRIER_BIT = 0x00000008 /// TextureFetchBarrierBit = ((int)0x00000008), @@ -1001,6 +1029,10 @@ namespace OpenTK.Graphics.OpenGL /// Vertex4BitPgi = ((int)0x00000008), /// + /// Original was GL_COLOR_BUFFER_BIT4_QCOM = 0x00000010 + /// + ColorBufferBit4Qcom = ((int)0x00000010), + /// /// Original was GL_CONTEXT_FLAG_PROTECTED_CONTENT_BIT_EXT = 0x00000010 /// ContextFlagProtectedContentBitExt = ((int)0x00000010), @@ -1025,6 +1057,14 @@ namespace OpenTK.Graphics.OpenGL /// TessEvaluationShaderBitExt = ((int)0x00000010), /// + /// Original was GL_TESS_EVALUATION_SHADER_BIT_OES = 0x00000010 + /// + TessEvaluationShaderBitOes = ((int)0x00000010), + /// + /// Original was GL_COLOR_BUFFER_BIT5_QCOM = 0x00000020 + /// + ColorBufferBit5Qcom = ((int)0x00000020), + /// /// Original was GL_COMPUTE_SHADER_BIT = 0x00000020 /// ComputeShaderBit = ((int)0x00000020), @@ -1049,6 +1089,10 @@ namespace OpenTK.Graphics.OpenGL /// ShaderImageAccessBarrierBitExt = ((int)0x00000020), /// + /// Original was GL_COLOR_BUFFER_BIT6_QCOM = 0x00000040 + /// + ColorBufferBit6Qcom = ((int)0x00000040), + /// /// Original was GL_COMMAND_BARRIER_BIT = 0x00000040 /// CommandBarrierBit = ((int)0x00000040), @@ -1065,6 +1109,10 @@ namespace OpenTK.Graphics.OpenGL /// SaturateBitAti = ((int)0x00000040), /// + /// Original was GL_COLOR_BUFFER_BIT7_QCOM = 0x00000080 + /// + ColorBufferBit7Qcom = ((int)0x00000080), + /// /// Original was GL_FOG_BIT = 0x00000080 /// FogBit = ((int)0x00000080), @@ -1081,6 +1129,10 @@ namespace OpenTK.Graphics.OpenGL /// DepthBufferBit = ((int)0x00000100), /// + /// Original was GL_DEPTH_BUFFER_BIT0_QCOM = 0x00000100 + /// + DepthBufferBit0Qcom = ((int)0x00000100), + /// /// Original was GL_TEXTURE_UPDATE_BARRIER_BIT = 0x00000100 /// TextureUpdateBarrierBit = ((int)0x00000100), @@ -1101,6 +1153,14 @@ namespace OpenTK.Graphics.OpenGL /// BufferUpdateBarrierBitExt = ((int)0x00000200), /// + /// Original was GL_DEPTH_BUFFER_BIT1_QCOM = 0x00000200 + /// + DepthBufferBit1Qcom = ((int)0x00000200), + /// + /// Original was GL_DEPTH_BUFFER_BIT2_QCOM = 0x00000400 + /// + DepthBufferBit2Qcom = ((int)0x00000400), + /// /// Original was GL_FRAMEBUFFER_BARRIER_BIT = 0x00000400 /// FramebufferBarrierBit = ((int)0x00000400), @@ -1117,6 +1177,10 @@ namespace OpenTK.Graphics.OpenGL /// StencilBufferBit = ((int)0x00000400), /// + /// Original was GL_DEPTH_BUFFER_BIT3_QCOM = 0x00000800 + /// + DepthBufferBit3Qcom = ((int)0x00000800), + /// /// Original was GL_TRANSFORM_FEEDBACK_BARRIER_BIT = 0x00000800 /// TransformFeedbackBarrierBit = ((int)0x00000800), @@ -1137,6 +1201,10 @@ namespace OpenTK.Graphics.OpenGL /// AtomicCounterBarrierBitExt = ((int)0x00001000), /// + /// Original was GL_DEPTH_BUFFER_BIT4_QCOM = 0x00001000 + /// + DepthBufferBit4Qcom = ((int)0x00001000), + /// /// Original was GL_GL_ATOMIC_COUNTER_BARRIER_BIT = 0x00001000 /// GlAtomicCounterBarrierBit = ((int)0x00001000), @@ -1145,6 +1213,10 @@ namespace OpenTK.Graphics.OpenGL /// TransformBit = ((int)0x00001000), /// + /// Original was GL_DEPTH_BUFFER_BIT5_QCOM = 0x00002000 + /// + DepthBufferBit5Qcom = ((int)0x00002000), + /// /// Original was GL_ENABLE_BIT = 0x00002000 /// EnableBit = ((int)0x00002000), @@ -1157,14 +1229,26 @@ namespace OpenTK.Graphics.OpenGL /// ClientMappedBufferBarrierBit = ((int)0x00004000), /// + /// Original was GL_CLIENT_MAPPED_BUFFER_BARRIER_BIT_EXT = 0x00004000 + /// + ClientMappedBufferBarrierBitExt = ((int)0x00004000), + /// /// Original was GL_COLOR_BUFFER_BIT = 0x00004000 /// ColorBufferBit = ((int)0x00004000), /// + /// Original was GL_DEPTH_BUFFER_BIT6_QCOM = 0x00004000 + /// + DepthBufferBit6Qcom = ((int)0x00004000), + /// /// Original was GL_COVERAGE_BUFFER_BIT_NV = 0x00008000 /// CoverageBufferBitNv = ((int)0x00008000), /// + /// Original was GL_DEPTH_BUFFER_BIT7_QCOM = 0x00008000 + /// + DepthBufferBit7Qcom = ((int)0x00008000), + /// /// Original was GL_HINT_BIT = 0x00008000 /// HintBit = ((int)0x00008000), @@ -1205,6 +1289,10 @@ namespace OpenTK.Graphics.OpenGL /// FontXMinBoundsBitNv = ((int)0x00010000), /// + /// Original was GL_STENCIL_BUFFER_BIT0_QCOM = 0x00010000 + /// + StencilBufferBit0Qcom = ((int)0x00010000), + /// /// Original was GL_DRAW_ELEMENTS_COMMAND_NV = 0x0002 /// DrawElementsCommandNv = ((int)0x0002), @@ -1237,6 +1325,10 @@ namespace OpenTK.Graphics.OpenGL /// ListBit = ((int)0x00020000), /// + /// Original was GL_STENCIL_BUFFER_BIT1_QCOM = 0x00020000 + /// + StencilBufferBit1Qcom = ((int)0x00020000), + /// /// Original was GL_DRAW_ARRAYS_COMMAND_NV = 0x0003 /// DrawArraysCommandNv = ((int)0x0003), @@ -1273,6 +1365,10 @@ namespace OpenTK.Graphics.OpenGL /// FontXMaxBoundsBitNv = ((int)0x00040000), /// + /// Original was GL_STENCIL_BUFFER_BIT2_QCOM = 0x00040000 + /// + StencilBufferBit2Qcom = ((int)0x00040000), + /// /// Original was GL_TEXTURE_BIT = 0x00040000 /// TextureBit = ((int)0x00040000), @@ -1333,6 +1429,10 @@ namespace OpenTK.Graphics.OpenGL /// ScissorBit = ((int)0x00080000), /// + /// Original was GL_STENCIL_BUFFER_BIT3_QCOM = 0x00080000 + /// + StencilBufferBit3Qcom = ((int)0x00080000), + /// /// Original was GL_ATTRIBUTE_ADDRESS_COMMAND_NV = 0x0009 /// AttributeAddressCommandNv = ((int)0x0009), @@ -1441,6 +1541,10 @@ namespace OpenTK.Graphics.OpenGL /// MatAmbientBitPgi = ((int)0x00100000), /// + /// Original was GL_STENCIL_BUFFER_BIT4_QCOM = 0x00100000 + /// + StencilBufferBit4Qcom = ((int)0x00100000), + /// /// Original was GL_SCISSOR_COMMAND_NV = 0x0011 /// ScissorCommandNv = ((int)0x0011), @@ -1465,10 +1569,18 @@ namespace OpenTK.Graphics.OpenGL /// MatAmbientAndDiffuseBitPgi = ((int)0x00200000), /// + /// Original was GL_STENCIL_BUFFER_BIT5_QCOM = 0x00200000 + /// + StencilBufferBit5Qcom = ((int)0x00200000), + /// /// Original was GL_MAP_PERSISTENT_BIT = 0x0040 /// MapPersistentBit = ((int)0x0040), /// + /// Original was GL_MAP_PERSISTENT_BIT_EXT = 0x0040 + /// + MapPersistentBitExt = ((int)0x0040), + /// /// Original was GL_FONT_DESCENDER_BIT_NV = 0x00400000 /// FontDescenderBitNv = ((int)0x00400000), @@ -1477,10 +1589,18 @@ namespace OpenTK.Graphics.OpenGL /// MatDiffuseBitPgi = ((int)0x00400000), /// + /// Original was GL_STENCIL_BUFFER_BIT6_QCOM = 0x00400000 + /// + StencilBufferBit6Qcom = ((int)0x00400000), + /// /// Original was GL_MAP_COHERENT_BIT = 0x0080 /// MapCoherentBit = ((int)0x0080), /// + /// Original was GL_MAP_COHERENT_BIT_EXT = 0x0080 + /// + MapCoherentBitExt = ((int)0x0080), + /// /// Original was GL_FONT_HEIGHT_BIT_NV = 0x00800000 /// FontHeightBitNv = ((int)0x00800000), @@ -1489,6 +1609,10 @@ namespace OpenTK.Graphics.OpenGL /// MatEmissionBitPgi = ((int)0x00800000), /// + /// Original was GL_STENCIL_BUFFER_BIT7_QCOM = 0x00800000 + /// + StencilBufferBit7Qcom = ((int)0x00800000), + /// /// Original was GL_BOLD_BIT_NV = 0x01 /// BoldBitNv = ((int)0x01), @@ -1505,6 +1629,10 @@ namespace OpenTK.Graphics.OpenGL /// DynamicStorageBit = ((int)0x0100), /// + /// Original was GL_DYNAMIC_STORAGE_BIT_EXT = 0x0100 + /// + DynamicStorageBitExt = ((int)0x0100), + /// /// Original was GL_FONT_MAX_ADVANCE_WIDTH_BIT_NV = 0x01000000 /// FontMaxAdvanceWidthBitNv = ((int)0x01000000), @@ -1513,6 +1641,10 @@ namespace OpenTK.Graphics.OpenGL /// MatColorIndexesBitPgi = ((int)0x01000000), /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT0_QCOM = 0x01000000 + /// + MultisampleBufferBit0Qcom = ((int)0x01000000), + /// /// Original was GL_LOAD = 0x0101 /// Load = ((int)0x0101), @@ -1545,6 +1677,10 @@ namespace OpenTK.Graphics.OpenGL /// ClientStorageBit = ((int)0x0200), /// + /// Original was GL_CLIENT_STORAGE_BIT_EXT = 0x0200 + /// + ClientStorageBitExt = ((int)0x0200), + /// /// Original was GL_NEVER = 0x0200 /// Never = ((int)0x0200), @@ -1557,6 +1693,10 @@ namespace OpenTK.Graphics.OpenGL /// MatShininessBitPgi = ((int)0x02000000), /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT1_QCOM = 0x02000000 + /// + MultisampleBufferBit1Qcom = ((int)0x02000000), + /// /// Original was GL_LESS = 0x0201 /// Less = ((int)0x0201), @@ -1649,6 +1789,10 @@ namespace OpenTK.Graphics.OpenGL /// MatSpecularBitPgi = ((int)0x04000000), /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT2_QCOM = 0x04000000 + /// + MultisampleBufferBit2Qcom = ((int)0x04000000), + /// /// Original was GL_FRONT_RIGHT = 0x0401 /// FrontRight = ((int)0x0401), @@ -1837,6 +1981,10 @@ namespace OpenTK.Graphics.OpenGL /// FontUnderlineThicknessBitNv = ((int)0x08000000), /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT3_QCOM = 0x08000000 + /// + MultisampleBufferBit3Qcom = ((int)0x08000000), + /// /// Original was GL_NORMAL_BIT_PGI = 0x08000000 /// NormalBitPgi = ((int)0x08000000), @@ -2841,6 +2989,10 @@ namespace OpenTK.Graphics.OpenGL /// FontHasKerningBitNv = ((int)0x10000000), /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT4_QCOM = 0x10000000 + /// + MultisampleBufferBit4Qcom = ((int)0x10000000), + /// /// Original was GL_TEXCOORD1_BIT_PGI = 0x10000000 /// Texcoord1BitPgi = ((int)0x10000000), @@ -3465,6 +3617,10 @@ namespace OpenTK.Graphics.OpenGL /// MultisampleBitExt = ((int)0x20000000), /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT5_QCOM = 0x20000000 + /// + MultisampleBufferBit5Qcom = ((int)0x20000000), + /// /// Original was GL_TEXCOORD2_BIT_PGI = 0x20000000 /// Texcoord2BitPgi = ((int)0x20000000), @@ -3717,6 +3873,10 @@ namespace OpenTK.Graphics.OpenGL /// Light0 = ((int)0x4000), /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT6_QCOM = 0x40000000 + /// + MultisampleBufferBit6Qcom = ((int)0x40000000), + /// /// Original was GL_TEXCOORD3_BIT_PGI = 0x40000000 /// Texcoord3BitPgi = ((int)0x40000000), @@ -3757,6 +3917,10 @@ namespace OpenTK.Graphics.OpenGL /// AbgrExt = ((int)0x8000), /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT7_QCOM = 0x80000000 + /// + MultisampleBufferBit7Qcom = unchecked((int)0x80000000), + /// /// Original was GL_TEXCOORD4_BIT_PGI = 0x80000000 /// Texcoord4BitPgi = unchecked((int)0x80000000), @@ -4393,6 +4557,10 @@ namespace OpenTK.Graphics.OpenGL /// Rgb8Ext = ((int)0x8051), /// + /// Original was GL_RGB8_OES = 0x8051 + /// + Rgb8Oes = ((int)0x8051), + /// /// Original was GL_RGB10 = 0x8052 /// Rgb10 = ((int)0x8052), @@ -4433,6 +4601,10 @@ namespace OpenTK.Graphics.OpenGL /// Rgba4Ext = ((int)0x8056), /// + /// Original was GL_RGBA4_OES = 0x8056 + /// + Rgba4Oes = ((int)0x8056), + /// /// Original was GL_RGB5_A1 = 0x8057 /// Rgb5A1 = ((int)0x8057), @@ -4441,6 +4613,10 @@ namespace OpenTK.Graphics.OpenGL /// Rgb5A1Ext = ((int)0x8057), /// + /// Original was GL_RGB5_A1_OES = 0x8057 + /// + Rgb5A1Oes = ((int)0x8057), + /// /// Original was GL_RGBA8 = 0x8058 /// Rgba8 = ((int)0x8058), @@ -4449,6 +4625,10 @@ namespace OpenTK.Graphics.OpenGL /// Rgba8Ext = ((int)0x8058), /// + /// Original was GL_RGBA8_OES = 0x8058 + /// + Rgba8Oes = ((int)0x8058), + /// /// Original was GL_RGB10_A2 = 0x8059 /// Rgb10A2 = ((int)0x8059), @@ -6165,6 +6345,10 @@ namespace OpenTK.Graphics.OpenGL /// DepthComponent16Arb = ((int)0x81A5), /// + /// Original was GL_DEPTH_COMPONENT16_OES = 0x81A5 + /// + DepthComponent16Oes = ((int)0x81A5), + /// /// Original was GL_DEPTH_COMPONENT16_SGIX = 0x81A5 /// DepthComponent16Sgix = ((int)0x81A5), @@ -6177,6 +6361,10 @@ namespace OpenTK.Graphics.OpenGL /// DepthComponent24Arb = ((int)0x81A6), /// + /// Original was GL_DEPTH_COMPONENT24_OES = 0x81A6 + /// + DepthComponent24Oes = ((int)0x81A6), + /// /// Original was GL_DEPTH_COMPONENT24_SGIX = 0x81A6 /// DepthComponent24Sgix = ((int)0x81A6), @@ -6189,6 +6377,10 @@ namespace OpenTK.Graphics.OpenGL /// DepthComponent32Arb = ((int)0x81A7), /// + /// Original was GL_DEPTH_COMPONENT32_OES = 0x81A7 + /// + DepthComponent32Oes = ((int)0x81A7), + /// /// Original was GL_DEPTH_COMPONENT32_SGIX = 0x81A7 /// DepthComponent32Sgix = ((int)0x81A7), @@ -6469,34 +6661,66 @@ namespace OpenTK.Graphics.OpenGL /// R8 = ((int)0x8229), /// + /// Original was GL_R8_EXT = 0x8229 + /// + R8Ext = ((int)0x8229), + /// /// Original was GL_R16 = 0x822A /// R16 = ((int)0x822A), /// + /// Original was GL_R16_EXT = 0x822A + /// + R16Ext = ((int)0x822A), + /// /// Original was GL_RG8 = 0x822B /// Rg8 = ((int)0x822B), /// + /// Original was GL_RG8_EXT = 0x822B + /// + Rg8Ext = ((int)0x822B), + /// /// Original was GL_RG16 = 0x822C /// Rg16 = ((int)0x822C), /// + /// Original was GL_RG16_EXT = 0x822C + /// + Rg16Ext = ((int)0x822C), + /// /// Original was GL_R16F = 0x822D /// R16f = ((int)0x822D), /// + /// Original was GL_R16F_EXT = 0x822D + /// + R16fExt = ((int)0x822D), + /// /// Original was GL_R32F = 0x822E /// R32f = ((int)0x822E), /// + /// Original was GL_R32F_EXT = 0x822E + /// + R32fExt = ((int)0x822E), + /// /// Original was GL_RG16F = 0x822F /// Rg16f = ((int)0x822F), /// + /// Original was GL_RG16F_EXT = 0x822F + /// + Rg16fExt = ((int)0x822F), + /// /// Original was GL_RG32F = 0x8230 /// Rg32f = ((int)0x8230), /// + /// Original was GL_RG32F_EXT = 0x8230 + /// + Rg32fExt = ((int)0x8230), + /// /// Original was GL_R8I = 0x8231 /// R8i = ((int)0x8231), @@ -8761,6 +8985,10 @@ namespace OpenTK.Graphics.OpenGL /// DepthStencilNv = ((int)0x84F9), /// + /// Original was GL_DEPTH_STENCIL_OES = 0x84F9 + /// + DepthStencilOes = ((int)0x84F9), + /// /// Original was GL_UNSIGNED_INT_24_8 = 0x84FA /// UnsignedInt248 = ((int)0x84FA), @@ -10997,6 +11225,10 @@ namespace OpenTK.Graphics.OpenGL /// OcclusionQueryEventMaskAmd = ((int)0x874F), /// + /// Original was GL_DEPTH_STENCIL_MESA = 0x8750 + /// + DepthStencilMesa = ((int)0x8750), + /// /// Original was GL_YCBCR_MESA = 0x8757 /// YcbcrMesa = ((int)0x8757), @@ -11029,6 +11261,10 @@ namespace OpenTK.Graphics.OpenGL /// Texture2DStackBindingMesax = ((int)0x875E), /// + /// Original was GL_PROGRAM_BINARY_FORMAT_MESA = 0x875F + /// + ProgramBinaryFormatMesa = ((int)0x875F), + /// /// Original was GL_STATIC_ATI = 0x8760 /// StaticAti = ((int)0x8760), @@ -11753,6 +11989,10 @@ namespace OpenTK.Graphics.OpenGL /// Rgba32fArb = ((int)0x8814), /// + /// Original was GL_RGBA32F_EXT = 0x8814 + /// + Rgba32fExt = ((int)0x8814), + /// /// Original was GL_RGBA_FLOAT32_APPLE = 0x8814 /// RgbaFloat32Apple = ((int)0x8814), @@ -11833,6 +12073,10 @@ namespace OpenTK.Graphics.OpenGL /// Rgba16fArb = ((int)0x881A), /// + /// Original was GL_RGBA16F_EXT = 0x881A + /// + Rgba16fExt = ((int)0x881A), + /// /// Original was GL_RGBA_FLOAT16_APPLE = 0x881A /// RgbaFloat16Apple = ((int)0x881A), @@ -11849,6 +12093,10 @@ namespace OpenTK.Graphics.OpenGL /// Rgb16fArb = ((int)0x881B), /// + /// Original was GL_RGB16F_EXT = 0x881B + /// + Rgb16fExt = ((int)0x881B), + /// /// Original was GL_RGB_FLOAT16_APPLE = 0x881B /// RgbFloat16Apple = ((int)0x881B), @@ -13313,6 +13561,10 @@ namespace OpenTK.Graphics.OpenGL /// Depth24Stencil8Ext = ((int)0x88F0), /// + /// Original was GL_DEPTH24_STENCIL8_OES = 0x88F0 + /// + Depth24Stencil8Oes = ((int)0x88F0), + /// /// Original was GL_TEXTURE_STENCIL_SIZE = 0x88F1 /// TextureStencilSize = ((int)0x88F1), @@ -14393,6 +14645,10 @@ namespace OpenTK.Graphics.OpenGL /// Sampler3DArb = ((int)0x8B5F), /// + /// Original was GL_SAMPLER_3D_OES = 0x8B5F + /// + Sampler3DOes = ((int)0x8B5F), + /// /// Original was GL_SAMPLER_CUBE = 0x8B60 /// SamplerCube = ((int)0x8B60), @@ -14417,6 +14673,10 @@ namespace OpenTK.Graphics.OpenGL /// Sampler2DShadowArb = ((int)0x8B62), /// + /// Original was GL_SAMPLER_2D_SHADOW_EXT = 0x8B62 + /// + Sampler2DShadowExt = ((int)0x8B62), + /// /// Original was GL_SAMPLER_2D_RECT = 0x8B63 /// Sampler2DRect = ((int)0x8B63), @@ -14437,26 +14697,50 @@ namespace OpenTK.Graphics.OpenGL /// FloatMat2x3 = ((int)0x8B65), /// + /// Original was GL_FLOAT_MAT2x3_NV = 0x8B65 + /// + FloatMat2x3Nv = ((int)0x8B65), + /// /// Original was GL_FLOAT_MAT2x4 = 0x8B66 /// FloatMat2x4 = ((int)0x8B66), /// + /// Original was GL_FLOAT_MAT2x4_NV = 0x8B66 + /// + FloatMat2x4Nv = ((int)0x8B66), + /// /// Original was GL_FLOAT_MAT3x2 = 0x8B67 /// FloatMat3x2 = ((int)0x8B67), /// + /// Original was GL_FLOAT_MAT3x2_NV = 0x8B67 + /// + FloatMat3x2Nv = ((int)0x8B67), + /// /// Original was GL_FLOAT_MAT3x4 = 0x8B68 /// FloatMat3x4 = ((int)0x8B68), /// + /// Original was GL_FLOAT_MAT3x4_NV = 0x8B68 + /// + FloatMat3x4Nv = ((int)0x8B68), + /// /// Original was GL_FLOAT_MAT4x2 = 0x8B69 /// FloatMat4x2 = ((int)0x8B69), /// + /// Original was GL_FLOAT_MAT4x2_NV = 0x8B69 + /// + FloatMat4x2Nv = ((int)0x8B69), + /// /// Original was GL_FLOAT_MAT4x3 = 0x8B6A /// FloatMat4x3 = ((int)0x8B6A), /// + /// Original was GL_FLOAT_MAT4x3_NV = 0x8B6A + /// + FloatMat4x3Nv = ((int)0x8B6A), + /// /// Original was GL_DELETE_STATUS = 0x8B80 /// DeleteStatus = ((int)0x8B80), @@ -14629,6 +14913,18 @@ namespace OpenTK.Graphics.OpenGL /// ImplementationColorReadFormatOes = ((int)0x8B9B), /// + /// Original was GL_TILE_RASTER_ORDER_FIXED_MESA = 0x8BB8 + /// + TileRasterOrderFixedMesa = ((int)0x8BB8), + /// + /// Original was GL_TILE_RASTER_ORDER_INCREASING_X_MESA = 0x8BB9 + /// + TileRasterOrderIncreasingXMesa = ((int)0x8BB9), + /// + /// Original was GL_TILE_RASTER_ORDER_INCREASING_Y_MESA = 0x8BBA + /// + TileRasterOrderIncreasingYMesa = ((int)0x8BBA), + /// /// Original was GL_COUNTER_TYPE_AMD = 0x8BC0 /// CounterTypeAmd = ((int)0x8BC0), @@ -14877,6 +15173,10 @@ namespace OpenTK.Graphics.OpenGL /// R11fG11fB10f = ((int)0x8C3A), /// + /// Original was GL_R11F_G11F_B10F_APPLE = 0x8C3A + /// + R11fG11fB10fApple = ((int)0x8C3A), + /// /// Original was GL_R11F_G11F_B10F_EXT = 0x8C3A /// R11fG11fB10fExt = ((int)0x8C3A), @@ -14897,6 +15197,10 @@ namespace OpenTK.Graphics.OpenGL /// Rgb9E5 = ((int)0x8C3D), /// + /// Original was GL_RGB9_E5_APPLE = 0x8C3D + /// + Rgb9E5Apple = ((int)0x8C3D), + /// /// Original was GL_RGB9_E5_EXT = 0x8C3D /// Rgb9E5Ext = ((int)0x8C3D), @@ -14933,6 +15237,10 @@ namespace OpenTK.Graphics.OpenGL /// Srgb8Ext = ((int)0x8C41), /// + /// Original was GL_SRGB8_NV = 0x8C41 + /// + Srgb8Nv = ((int)0x8C41), + /// /// Original was GL_SRGB_ALPHA = 0x8C42 /// SrgbAlpha = ((int)0x8C42), @@ -15473,6 +15781,10 @@ namespace OpenTK.Graphics.OpenGL /// MaxColorAttachmentsExt = ((int)0x8CDF), /// + /// Original was GL_MAX_COLOR_ATTACHMENTS_NV = 0x8CDF + /// + MaxColorAttachmentsNv = ((int)0x8CDF), + /// /// Original was GL_COLOR_ATTACHMENT0 = 0x8CE0 /// ColorAttachment0 = ((int)0x8CE0), @@ -15481,6 +15793,14 @@ namespace OpenTK.Graphics.OpenGL /// ColorAttachment0Ext = ((int)0x8CE0), /// + /// Original was GL_COLOR_ATTACHMENT0_NV = 0x8CE0 + /// + ColorAttachment0Nv = ((int)0x8CE0), + /// + /// Original was GL_COLOR_ATTACHMENT0_OES = 0x8CE0 + /// + ColorAttachment0Oes = ((int)0x8CE0), + /// /// Original was GL_COLOR_ATTACHMENT1 = 0x8CE1 /// ColorAttachment1 = ((int)0x8CE1), @@ -15489,6 +15809,10 @@ namespace OpenTK.Graphics.OpenGL /// ColorAttachment1Ext = ((int)0x8CE1), /// + /// Original was GL_COLOR_ATTACHMENT1_NV = 0x8CE1 + /// + ColorAttachment1Nv = ((int)0x8CE1), + /// /// Original was GL_COLOR_ATTACHMENT2 = 0x8CE2 /// ColorAttachment2 = ((int)0x8CE2), @@ -15497,6 +15821,10 @@ namespace OpenTK.Graphics.OpenGL /// ColorAttachment2Ext = ((int)0x8CE2), /// + /// Original was GL_COLOR_ATTACHMENT2_NV = 0x8CE2 + /// + ColorAttachment2Nv = ((int)0x8CE2), + /// /// Original was GL_COLOR_ATTACHMENT3 = 0x8CE3 /// ColorAttachment3 = ((int)0x8CE3), @@ -15505,6 +15833,10 @@ namespace OpenTK.Graphics.OpenGL /// ColorAttachment3Ext = ((int)0x8CE3), /// + /// Original was GL_COLOR_ATTACHMENT3_NV = 0x8CE3 + /// + ColorAttachment3Nv = ((int)0x8CE3), + /// /// Original was GL_COLOR_ATTACHMENT4 = 0x8CE4 /// ColorAttachment4 = ((int)0x8CE4), @@ -15513,6 +15845,10 @@ namespace OpenTK.Graphics.OpenGL /// ColorAttachment4Ext = ((int)0x8CE4), /// + /// Original was GL_COLOR_ATTACHMENT4_NV = 0x8CE4 + /// + ColorAttachment4Nv = ((int)0x8CE4), + /// /// Original was GL_COLOR_ATTACHMENT5 = 0x8CE5 /// ColorAttachment5 = ((int)0x8CE5), @@ -15521,6 +15857,10 @@ namespace OpenTK.Graphics.OpenGL /// ColorAttachment5Ext = ((int)0x8CE5), /// + /// Original was GL_COLOR_ATTACHMENT5_NV = 0x8CE5 + /// + ColorAttachment5Nv = ((int)0x8CE5), + /// /// Original was GL_COLOR_ATTACHMENT6 = 0x8CE6 /// ColorAttachment6 = ((int)0x8CE6), @@ -15529,6 +15869,10 @@ namespace OpenTK.Graphics.OpenGL /// ColorAttachment6Ext = ((int)0x8CE6), /// + /// Original was GL_COLOR_ATTACHMENT6_NV = 0x8CE6 + /// + ColorAttachment6Nv = ((int)0x8CE6), + /// /// Original was GL_COLOR_ATTACHMENT7 = 0x8CE7 /// ColorAttachment7 = ((int)0x8CE7), @@ -15537,6 +15881,10 @@ namespace OpenTK.Graphics.OpenGL /// ColorAttachment7Ext = ((int)0x8CE7), /// + /// Original was GL_COLOR_ATTACHMENT7_NV = 0x8CE7 + /// + ColorAttachment7Nv = ((int)0x8CE7), + /// /// Original was GL_COLOR_ATTACHMENT8 = 0x8CE8 /// ColorAttachment8 = ((int)0x8CE8), @@ -15545,6 +15893,10 @@ namespace OpenTK.Graphics.OpenGL /// ColorAttachment8Ext = ((int)0x8CE8), /// + /// Original was GL_COLOR_ATTACHMENT8_NV = 0x8CE8 + /// + ColorAttachment8Nv = ((int)0x8CE8), + /// /// Original was GL_COLOR_ATTACHMENT9 = 0x8CE9 /// ColorAttachment9 = ((int)0x8CE9), @@ -15553,6 +15905,10 @@ namespace OpenTK.Graphics.OpenGL /// ColorAttachment9Ext = ((int)0x8CE9), /// + /// Original was GL_COLOR_ATTACHMENT9_NV = 0x8CE9 + /// + ColorAttachment9Nv = ((int)0x8CE9), + /// /// Original was GL_COLOR_ATTACHMENT10 = 0x8CEA /// ColorAttachment10 = ((int)0x8CEA), @@ -15561,6 +15917,10 @@ namespace OpenTK.Graphics.OpenGL /// ColorAttachment10Ext = ((int)0x8CEA), /// + /// Original was GL_COLOR_ATTACHMENT10_NV = 0x8CEA + /// + ColorAttachment10Nv = ((int)0x8CEA), + /// /// Original was GL_COLOR_ATTACHMENT11 = 0x8CEB /// ColorAttachment11 = ((int)0x8CEB), @@ -15569,6 +15929,10 @@ namespace OpenTK.Graphics.OpenGL /// ColorAttachment11Ext = ((int)0x8CEB), /// + /// Original was GL_COLOR_ATTACHMENT11_NV = 0x8CEB + /// + ColorAttachment11Nv = ((int)0x8CEB), + /// /// Original was GL_COLOR_ATTACHMENT12 = 0x8CEC /// ColorAttachment12 = ((int)0x8CEC), @@ -15577,6 +15941,10 @@ namespace OpenTK.Graphics.OpenGL /// ColorAttachment12Ext = ((int)0x8CEC), /// + /// Original was GL_COLOR_ATTACHMENT12_NV = 0x8CEC + /// + ColorAttachment12Nv = ((int)0x8CEC), + /// /// Original was GL_COLOR_ATTACHMENT13 = 0x8CED /// ColorAttachment13 = ((int)0x8CED), @@ -15585,6 +15953,10 @@ namespace OpenTK.Graphics.OpenGL /// ColorAttachment13Ext = ((int)0x8CED), /// + /// Original was GL_COLOR_ATTACHMENT13_NV = 0x8CED + /// + ColorAttachment13Nv = ((int)0x8CED), + /// /// Original was GL_COLOR_ATTACHMENT14 = 0x8CEE /// ColorAttachment14 = ((int)0x8CEE), @@ -15593,6 +15965,10 @@ namespace OpenTK.Graphics.OpenGL /// ColorAttachment14Ext = ((int)0x8CEE), /// + /// Original was GL_COLOR_ATTACHMENT14_NV = 0x8CEE + /// + ColorAttachment14Nv = ((int)0x8CEE), + /// /// Original was GL_COLOR_ATTACHMENT15 = 0x8CEF /// ColorAttachment15 = ((int)0x8CEF), @@ -15601,6 +15977,10 @@ namespace OpenTK.Graphics.OpenGL /// ColorAttachment15Ext = ((int)0x8CEF), /// + /// Original was GL_COLOR_ATTACHMENT15_NV = 0x8CEF + /// + ColorAttachment15Nv = ((int)0x8CEF), + /// /// Original was GL_COLOR_ATTACHMENT16 = 0x8CF0 /// ColorAttachment16 = ((int)0x8CF0), @@ -15673,6 +16053,10 @@ namespace OpenTK.Graphics.OpenGL /// DepthAttachmentExt = ((int)0x8D00), /// + /// Original was GL_DEPTH_ATTACHMENT_OES = 0x8D00 + /// + DepthAttachmentOes = ((int)0x8D00), + /// /// Original was GL_STENCIL_ATTACHMENT = 0x8D20 /// StencilAttachment = ((int)0x8D20), @@ -17485,14 +17869,26 @@ namespace OpenTK.Graphics.OpenGL /// R16Snorm = ((int)0x8F98), /// + /// Original was GL_R16_SNORM_EXT = 0x8F98 + /// + R16SnormExt = ((int)0x8F98), + /// /// Original was GL_RG16_SNORM = 0x8F99 /// Rg16Snorm = ((int)0x8F99), /// + /// Original was GL_RG16_SNORM_EXT = 0x8F99 + /// + Rg16SnormExt = ((int)0x8F99), + /// /// Original was GL_RGB16_SNORM = 0x8F9A /// Rgb16Snorm = ((int)0x8F9A), /// + /// Original was GL_RGB16_SNORM_EXT = 0x8F9A + /// + Rgb16SnormExt = ((int)0x8F9A), + /// /// Original was GL_RGBA16_SNORM = 0x8F9B /// Rgba16Snorm = ((int)0x8F9B), @@ -19177,10 +19573,18 @@ namespace OpenTK.Graphics.OpenGL /// MaxShaderCompilerThreadsArb = ((int)0x91B0), /// + /// Original was GL_MAX_SHADER_COMPILER_THREADS_KHR = 0x91B0 + /// + MaxShaderCompilerThreadsKhr = ((int)0x91B0), + /// /// Original was GL_COMPLETION_STATUS_ARB = 0x91B1 /// CompletionStatusArb = ((int)0x91B1), /// + /// Original was GL_COMPLETION_STATUS_KHR = 0x91B1 + /// + CompletionStatusKhr = ((int)0x91B1), + /// /// Original was GL_COMPUTE_SHADER = 0x91B9 /// ComputeShader = ((int)0x91B9), @@ -20417,6 +20821,38 @@ namespace OpenTK.Graphics.OpenGL /// PerfqueryGpaExtendedCountersIntel = ((int)0x9500), /// + /// Original was GL_LAYOUT_DEPTH_READ_ONLY_STENCIL_ATTACHMENT_EXT = 0x9530 + /// + LayoutDepthReadOnlyStencilAttachmentExt = ((int)0x9530), + /// + /// Original was GL_LAYOUT_DEPTH_ATTACHMENT_STENCIL_READ_ONLY_EXT = 0x9531 + /// + LayoutDepthAttachmentStencilReadOnlyExt = ((int)0x9531), + /// + /// Original was GL_QUERY_RESOURCE_TYPE_VIDMEM_ALLOC_NV = 0x9540 + /// + QueryResourceTypeVidmemAllocNv = ((int)0x9540), + /// + /// Original was GL_QUERY_RESOURCE_MEMTYPE_VIDMEM_NV = 0x9542 + /// + QueryResourceMemtypeVidmemNv = ((int)0x9542), + /// + /// Original was GL_QUERY_RESOURCE_SYS_RESERVED_NV = 0x9544 + /// + QueryResourceSysReservedNv = ((int)0x9544), + /// + /// Original was GL_QUERY_RESOURCE_TEXTURE_NV = 0x9545 + /// + QueryResourceTextureNv = ((int)0x9545), + /// + /// Original was GL_QUERY_RESOURCE_RENDERBUFFER_NV = 0x9546 + /// + QueryResourceRenderbufferNv = ((int)0x9546), + /// + /// Original was GL_QUERY_RESOURCE_BUFFEROBJECT_NV = 0x9547 + /// + QueryResourceBufferobjectNv = ((int)0x9547), + /// /// Original was GL_PER_GPU_STORAGE_NV = 0x9548 /// PerGpuStorageNv = ((int)0x9548), @@ -20437,6 +20873,10 @@ namespace OpenTK.Graphics.OpenGL /// ConservativeRasterModePreSnapTrianglesNv = ((int)0x954F), /// + /// Original was GL_CONSERVATIVE_RASTER_MODE_PRE_SNAP_NV = 0x9550 + /// + ConservativeRasterModePreSnapNv = ((int)0x9550), + /// /// Original was GL_SHADER_BINARY_FORMAT_SPIR_V = 0x9551 /// ShaderBinaryFormatSpirV = ((int)0x9551), @@ -20851,7 +21291,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.AlphaFunc + /// Used in GL.AlphaFunc, GL.Oes.AlphaFuncx /// public enum AlphaFunction : int { @@ -20990,14 +21430,14 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Amd.BlendEquationIndexed, GL.Amd.BlendEquationSeparateIndexed and 2 other functions + /// Used in GL.Amd.BlendFuncIndexed /// public enum AmdDrawBuffersBlend : int { } /// - /// Used in GL.Amd.FramebufferSamplePositions, GL.Amd.GetFramebufferParameter and 1 other function + /// Used in GL.Amd.GetNamedFramebufferParameter /// public enum AmdFramebufferSamplePositions : int { @@ -21255,7 +21695,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Amd.MultiDrawElementsIndirect + /// Not used directly. /// public enum AmdMultiDrawIndirect : int { @@ -21427,6 +21867,13 @@ namespace OpenTK.Graphics.OpenGL { } + /// + /// Not used directly. + /// + public enum AmdShaderImageLoadStoreLod : int + { + } + /// /// Not used directly. /// @@ -21442,7 +21889,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Amd.TexStorageSparse, GL.Amd.TextureStorageSparse + /// Used in GL.Amd.TextureStorageSparse /// public enum AmdSparseTexture : int { @@ -22006,7 +22453,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Arb.GetImageHandle, GL.Arb.MakeImageHandleResident + /// Used in GL.Arb.MakeImageHandleResident /// public enum ArbBindlessTexture : int { @@ -22393,7 +22840,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Arb.DebugMessageControl, GL.Arb.DebugMessageInsert and 1 other function + /// Not used directly. /// public enum ArbDebugOutput : int { @@ -22686,7 +23133,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Arb.BlendEquation, GL.Arb.BlendEquationSeparate and 5 other functions + /// Used in GL.Arb.BlendEquation, GL.BlendEquation and 2 other functions /// public enum ArbDrawBuffersBlend : int { @@ -24232,7 +24679,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Arb.MultiDrawElementsIndirectCount + /// Not used directly. /// public enum ArbIndirectParameters : int { @@ -25036,7 +25483,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Arb.BeginQuery, GL.Arb.EndQuery and 2 other functions + /// Used in GL.Arb.BeginQuery /// public enum ArbOcclusionQuery : int { @@ -25479,7 +25926,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Arb.GetnColorTable, GL.Arb.GetnCompressedTexImage and 8 other functions + /// Used in GL.Arb.ReadnPixels /// public enum ArbRobustness : int { @@ -25525,7 +25972,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Arb.FramebufferSampleLocations + /// Not used directly. /// public enum ArbSampleLocations : int { @@ -26090,7 +26537,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Arb.CreateShaderObject, GL.Arb.GetActiveUniform and 2 other functions + /// Used in GL.Arb.GetHandle, GL.Arb.GetObjectParameter /// public enum ArbShaderObjects : int { @@ -26814,7 +27261,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Arb.TexBuffer + /// Not used directly. /// public enum ArbTextureBufferObject : int { @@ -28658,7 +29105,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Arb.GetActiveAttrib + /// Not used directly. /// public enum ArbVertexShader : int { @@ -29253,7 +29700,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Ati.AlphaFragmentOp1, GL.Ati.AlphaFragmentOp2 and 6 other functions + /// Used in GL.Ati.PassTexCoord, GL.Ati.SampleMap /// public enum AtiFragmentShader : int { @@ -30022,6 +30469,53 @@ namespace OpenTK.Graphics.OpenGL AtomicCounterBufferReferencedByFragmentShader = ((int)0x92CB), } + /// + /// Not used directly. + /// + public enum AtomicCounterBufferPName : int + { + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_COMPUTE_SHADER = 0x90ED + /// + AtomicCounterBufferReferencedByComputeShader = ((int)0x90ED), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_BINDING = 0x92C1 + /// + AtomicCounterBufferBinding = ((int)0x92C1), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_DATA_SIZE = 0x92C4 + /// + AtomicCounterBufferDataSize = ((int)0x92C4), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTERS = 0x92C5 + /// + AtomicCounterBufferActiveAtomicCounters = ((int)0x92C5), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTER_INDICES = 0x92C6 + /// + AtomicCounterBufferActiveAtomicCounterIndices = ((int)0x92C6), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_VERTEX_SHADER = 0x92C7 + /// + AtomicCounterBufferReferencedByVertexShader = ((int)0x92C7), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_CONTROL_SHADER = 0x92C8 + /// + AtomicCounterBufferReferencedByTessControlShader = ((int)0x92C8), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_EVALUATION_SHADER = 0x92C9 + /// + AtomicCounterBufferReferencedByTessEvaluationShader = ((int)0x92C9), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_GEOMETRY_SHADER = 0x92CA + /// + AtomicCounterBufferReferencedByGeometryShader = ((int)0x92CA), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_FRAGMENT_SHADER = 0x92CB + /// + AtomicCounterBufferReferencedByFragmentShader = ((int)0x92CB), + } + /// /// Used in GL.PushAttrib /// @@ -30130,6 +30624,237 @@ namespace OpenTK.Graphics.OpenGL AllAttribBits = unchecked((int)0xFFFFFFFF), } + /// + /// Used in GL.Arb.GetActiveAttrib, GL.Arb.GetActiveUniform + /// + public enum AttributeType : int + { + /// + /// Original was GL_FLOAT_VEC2 = 0x8B50 + /// + FloatVec2 = ((int)0x8B50), + /// + /// Original was GL_FLOAT_VEC2_ARB = 0x8B50 + /// + FloatVec2Arb = ((int)0x8B50), + /// + /// Original was GL_FLOAT_VEC3 = 0x8B51 + /// + FloatVec3 = ((int)0x8B51), + /// + /// Original was GL_FLOAT_VEC3_ARB = 0x8B51 + /// + FloatVec3Arb = ((int)0x8B51), + /// + /// Original was GL_FLOAT_VEC4 = 0x8B52 + /// + FloatVec4 = ((int)0x8B52), + /// + /// Original was GL_FLOAT_VEC4_ARB = 0x8B52 + /// + FloatVec4Arb = ((int)0x8B52), + /// + /// Original was GL_INT_VEC2 = 0x8B53 + /// + IntVec2 = ((int)0x8B53), + /// + /// Original was GL_INT_VEC2_ARB = 0x8B53 + /// + IntVec2Arb = ((int)0x8B53), + /// + /// Original was GL_INT_VEC3 = 0x8B54 + /// + IntVec3 = ((int)0x8B54), + /// + /// Original was GL_INT_VEC3_ARB = 0x8B54 + /// + IntVec3Arb = ((int)0x8B54), + /// + /// Original was GL_INT_VEC4 = 0x8B55 + /// + IntVec4 = ((int)0x8B55), + /// + /// Original was GL_INT_VEC4_ARB = 0x8B55 + /// + IntVec4Arb = ((int)0x8B55), + /// + /// Original was GL_BOOL = 0x8B56 + /// + Bool = ((int)0x8B56), + /// + /// Original was GL_BOOL_ARB = 0x8B56 + /// + BoolArb = ((int)0x8B56), + /// + /// Original was GL_BOOL_VEC2 = 0x8B57 + /// + BoolVec2 = ((int)0x8B57), + /// + /// Original was GL_BOOL_VEC2_ARB = 0x8B57 + /// + BoolVec2Arb = ((int)0x8B57), + /// + /// Original was GL_BOOL_VEC3 = 0x8B58 + /// + BoolVec3 = ((int)0x8B58), + /// + /// Original was GL_BOOL_VEC3_ARB = 0x8B58 + /// + BoolVec3Arb = ((int)0x8B58), + /// + /// Original was GL_BOOL_VEC4 = 0x8B59 + /// + BoolVec4 = ((int)0x8B59), + /// + /// Original was GL_BOOL_VEC4_ARB = 0x8B59 + /// + BoolVec4Arb = ((int)0x8B59), + /// + /// Original was GL_FLOAT_MAT2 = 0x8B5A + /// + FloatMat2 = ((int)0x8B5A), + /// + /// Original was GL_FLOAT_MAT2_ARB = 0x8B5A + /// + FloatMat2Arb = ((int)0x8B5A), + /// + /// Original was GL_FLOAT_MAT3 = 0x8B5B + /// + FloatMat3 = ((int)0x8B5B), + /// + /// Original was GL_FLOAT_MAT3_ARB = 0x8B5B + /// + FloatMat3Arb = ((int)0x8B5B), + /// + /// Original was GL_FLOAT_MAT4 = 0x8B5C + /// + FloatMat4 = ((int)0x8B5C), + /// + /// Original was GL_FLOAT_MAT4_ARB = 0x8B5C + /// + FloatMat4Arb = ((int)0x8B5C), + /// + /// Original was GL_SAMPLER_1D = 0x8B5D + /// + Sampler1D = ((int)0x8B5D), + /// + /// Original was GL_SAMPLER_1D_ARB = 0x8B5D + /// + Sampler1DArb = ((int)0x8B5D), + /// + /// Original was GL_SAMPLER_2D = 0x8B5E + /// + Sampler2D = ((int)0x8B5E), + /// + /// Original was GL_SAMPLER_2D_ARB = 0x8B5E + /// + Sampler2DArb = ((int)0x8B5E), + /// + /// Original was GL_SAMPLER_3D = 0x8B5F + /// + Sampler3D = ((int)0x8B5F), + /// + /// Original was GL_SAMPLER_3D_ARB = 0x8B5F + /// + Sampler3DArb = ((int)0x8B5F), + /// + /// Original was GL_SAMPLER_3D_OES = 0x8B5F + /// + Sampler3DOes = ((int)0x8B5F), + /// + /// Original was GL_SAMPLER_CUBE = 0x8B60 + /// + SamplerCube = ((int)0x8B60), + /// + /// Original was GL_SAMPLER_CUBE_ARB = 0x8B60 + /// + SamplerCubeArb = ((int)0x8B60), + /// + /// Original was GL_SAMPLER_1D_SHADOW = 0x8B61 + /// + Sampler1DShadow = ((int)0x8B61), + /// + /// Original was GL_SAMPLER_1D_SHADOW_ARB = 0x8B61 + /// + Sampler1DShadowArb = ((int)0x8B61), + /// + /// Original was GL_SAMPLER_2D_SHADOW = 0x8B62 + /// + Sampler2DShadow = ((int)0x8B62), + /// + /// Original was GL_SAMPLER_2D_SHADOW_ARB = 0x8B62 + /// + Sampler2DShadowArb = ((int)0x8B62), + /// + /// Original was GL_SAMPLER_2D_SHADOW_EXT = 0x8B62 + /// + Sampler2DShadowExt = ((int)0x8B62), + /// + /// Original was GL_SAMPLER_2D_RECT = 0x8B63 + /// + Sampler2DRect = ((int)0x8B63), + /// + /// Original was GL_SAMPLER_2D_RECT_ARB = 0x8B63 + /// + Sampler2DRectArb = ((int)0x8B63), + /// + /// Original was GL_SAMPLER_2D_RECT_SHADOW = 0x8B64 + /// + Sampler2DRectShadow = ((int)0x8B64), + /// + /// Original was GL_SAMPLER_2D_RECT_SHADOW_ARB = 0x8B64 + /// + Sampler2DRectShadowArb = ((int)0x8B64), + /// + /// Original was GL_FLOAT_MAT2x3 = 0x8B65 + /// + FloatMat2x3 = ((int)0x8B65), + /// + /// Original was GL_FLOAT_MAT2x3_NV = 0x8B65 + /// + FloatMat2x3Nv = ((int)0x8B65), + /// + /// Original was GL_FLOAT_MAT2x4 = 0x8B66 + /// + FloatMat2x4 = ((int)0x8B66), + /// + /// Original was GL_FLOAT_MAT2x4_NV = 0x8B66 + /// + FloatMat2x4Nv = ((int)0x8B66), + /// + /// Original was GL_FLOAT_MAT3x2 = 0x8B67 + /// + FloatMat3x2 = ((int)0x8B67), + /// + /// Original was GL_FLOAT_MAT3x2_NV = 0x8B67 + /// + FloatMat3x2Nv = ((int)0x8B67), + /// + /// Original was GL_FLOAT_MAT3x4 = 0x8B68 + /// + FloatMat3x4 = ((int)0x8B68), + /// + /// Original was GL_FLOAT_MAT3x4_NV = 0x8B68 + /// + FloatMat3x4Nv = ((int)0x8B68), + /// + /// Original was GL_FLOAT_MAT4x2 = 0x8B69 + /// + FloatMat4x2 = ((int)0x8B69), + /// + /// Original was GL_FLOAT_MAT4x2_NV = 0x8B69 + /// + FloatMat4x2Nv = ((int)0x8B69), + /// + /// Original was GL_FLOAT_MAT4x3 = 0x8B6A + /// + FloatMat4x3 = ((int)0x8B6A), + /// + /// Original was GL_FLOAT_MAT4x3_NV = 0x8B6A + /// + FloatMat4x3Nv = ((int)0x8B6A), + } + /// /// Used in GL.BeginTransformFeedback /// @@ -30223,6 +30948,17 @@ namespace OpenTK.Graphics.OpenGL { } + /// + /// Not used directly. + /// + public enum BindTransformFeedbackTarget : int + { + /// + /// Original was GL_TRANSFORM_FEEDBACK = 0x8E22 + /// + TransformFeedback = ((int)0x8E22), + } + /// /// Used in GL.Arb.BlendEquation, GL.BlendEquation and 2 other functions /// @@ -30251,7 +30987,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Ext.BlendEquationSeparate + /// Used in GL.Amd.BlendEquationIndexed, GL.Amd.BlendEquationSeparateIndexed and 2 other functions /// public enum BlendEquationModeExt : int { @@ -30260,6 +30996,10 @@ namespace OpenTK.Graphics.OpenGL /// LogicOp = ((int)0x0BF1), /// + /// Original was GL_FUNC_ADD = 0x8006 + /// + FuncAdd = ((int)0x8006), + /// /// Original was GL_FUNC_ADD_EXT = 0x8006 /// FuncAddExt = ((int)0x8006), @@ -30272,10 +31012,18 @@ namespace OpenTK.Graphics.OpenGL /// MaxExt = ((int)0x8008), /// + /// Original was GL_FUNC_SUBTRACT = 0x800A + /// + FuncSubtract = ((int)0x800A), + /// /// Original was GL_FUNC_SUBTRACT_EXT = 0x800A /// FuncSubtractExt = ((int)0x800A), /// + /// Original was GL_FUNC_REVERSE_SUBTRACT = 0x800B + /// + FuncReverseSubtract = ((int)0x800B), + /// /// Original was GL_FUNC_REVERSE_SUBTRACT_EXT = 0x800B /// FuncReverseSubtractExt = ((int)0x800B), @@ -30289,6 +31037,81 @@ namespace OpenTK.Graphics.OpenGL AlphaMaxSgix = ((int)0x8321), } + /// + /// Used in GL.Amd.BlendFuncSeparateIndexed, GL.Arb.BlendFunc and 4 other functions + /// + public enum BlendingFactor : int + { + /// + /// Original was GL_ZERO = 0 + /// + Zero = ((int)0), + /// + /// Original was GL_SRC_COLOR = 0x0300 + /// + SrcColor = ((int)0x0300), + /// + /// Original was GL_ONE_MINUS_SRC_COLOR = 0x0301 + /// + OneMinusSrcColor = ((int)0x0301), + /// + /// Original was GL_SRC_ALPHA = 0x0302 + /// + SrcAlpha = ((int)0x0302), + /// + /// Original was GL_ONE_MINUS_SRC_ALPHA = 0x0303 + /// + OneMinusSrcAlpha = ((int)0x0303), + /// + /// Original was GL_DST_ALPHA = 0x0304 + /// + DstAlpha = ((int)0x0304), + /// + /// Original was GL_ONE_MINUS_DST_ALPHA = 0x0305 + /// + OneMinusDstAlpha = ((int)0x0305), + /// + /// Original was GL_DST_COLOR = 0x0306 + /// + DstColor = ((int)0x0306), + /// + /// Original was GL_ONE_MINUS_DST_COLOR = 0x0307 + /// + OneMinusDstColor = ((int)0x0307), + /// + /// Original was GL_SRC_ALPHA_SATURATE = 0x0308 + /// + SrcAlphaSaturate = ((int)0x0308), + /// + /// Original was GL_CONSTANT_COLOR = 0x8001 + /// + ConstantColor = ((int)0x8001), + /// + /// Original was GL_ONE_MINUS_CONSTANT_COLOR = 0x8002 + /// + OneMinusConstantColor = ((int)0x8002), + /// + /// Original was GL_CONSTANT_ALPHA = 0x8003 + /// + ConstantAlpha = ((int)0x8003), + /// + /// Original was GL_ONE_MINUS_CONSTANT_ALPHA = 0x8004 + /// + OneMinusConstantAlpha = ((int)0x8004), + /// + /// Original was GL_SRC1_ALPHA = 0x8589 + /// + Src1Alpha = ((int)0x8589), + /// + /// Original was GL_SRC1_COLOR = 0x88F9 + /// + Src1Color = ((int)0x88F9), + /// + /// Original was GL_ONE = 1 + /// + One = ((int)1), + } + /// /// Used in GL.BlendFunc, GL.BlendFuncSeparate /// @@ -30339,34 +31162,18 @@ namespace OpenTK.Graphics.OpenGL /// ConstantColor = ((int)0x8001), /// - /// Original was GL_CONSTANT_COLOR_EXT = 0x8001 - /// - ConstantColorExt = ((int)0x8001), - /// /// Original was GL_ONE_MINUS_CONSTANT_COLOR = 0x8002 /// OneMinusConstantColor = ((int)0x8002), /// - /// Original was GL_ONE_MINUS_CONSTANT_COLOR_EXT = 0x8002 - /// - OneMinusConstantColorExt = ((int)0x8002), - /// /// Original was GL_CONSTANT_ALPHA = 0x8003 /// ConstantAlpha = ((int)0x8003), /// - /// Original was GL_CONSTANT_ALPHA_EXT = 0x8003 - /// - ConstantAlphaExt = ((int)0x8003), - /// /// Original was GL_ONE_MINUS_CONSTANT_ALPHA = 0x8004 /// OneMinusConstantAlpha = ((int)0x8004), /// - /// Original was GL_ONE_MINUS_CONSTANT_ALPHA_EXT = 0x8004 - /// - OneMinusConstantAlphaExt = ((int)0x8004), - /// /// Original was GL_SRC1_ALPHA = 0x8589 /// Src1Alpha = ((int)0x8589), @@ -30438,34 +31245,18 @@ namespace OpenTK.Graphics.OpenGL /// ConstantColor = ((int)0x8001), /// - /// Original was GL_CONSTANT_COLOR_EXT = 0x8001 - /// - ConstantColorExt = ((int)0x8001), - /// /// Original was GL_ONE_MINUS_CONSTANT_COLOR = 0x8002 /// OneMinusConstantColor = ((int)0x8002), /// - /// Original was GL_ONE_MINUS_CONSTANT_COLOR_EXT = 0x8002 - /// - OneMinusConstantColorExt = ((int)0x8002), - /// /// Original was GL_CONSTANT_ALPHA = 0x8003 /// ConstantAlpha = ((int)0x8003), /// - /// Original was GL_CONSTANT_ALPHA_EXT = 0x8003 - /// - ConstantAlphaExt = ((int)0x8003), - /// /// Original was GL_ONE_MINUS_CONSTANT_ALPHA = 0x8004 /// OneMinusConstantAlpha = ((int)0x8004), /// - /// Original was GL_ONE_MINUS_CONSTANT_ALPHA_EXT = 0x8004 - /// - OneMinusConstantAlphaExt = ((int)0x8004), - /// /// Original was GL_SRC1_ALPHA = 0x8589 /// Src1Alpha = ((int)0x8589), @@ -30517,6 +31308,25 @@ namespace OpenTK.Graphics.OpenGL True = ((int)1), } + /// + /// Not used directly. + /// + public enum Buffer : int + { + /// + /// Original was GL_COLOR = 0x1800 + /// + Color = ((int)0x1800), + /// + /// Original was GL_DEPTH = 0x1801 + /// + Depth = ((int)0x1801), + /// + /// Original was GL_STENCIL = 0x1802 + /// + Stencil = ((int)0x1802), + } + /// /// Used in GL.MapBuffer, GL.MapNamedBuffer and 1 other function /// @@ -30537,7 +31347,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Arb.MapBuffer + /// Used in GL.Arb.MapBuffer, GL.Ext.BindImageTexture /// public enum BufferAccessArb : int { @@ -30566,33 +31376,200 @@ namespace OpenTK.Graphics.OpenGL /// MapReadBit = ((int)0x0001), /// + /// Original was GL_MAP_READ_BIT_EXT = 0x0001 + /// + MapReadBitExt = ((int)0x0001), + /// /// Original was GL_MAP_WRITE_BIT = 0x0002 /// MapWriteBit = ((int)0x0002), /// + /// Original was GL_MAP_WRITE_BIT_EXT = 0x0002 + /// + MapWriteBitExt = ((int)0x0002), + /// /// Original was GL_MAP_INVALIDATE_RANGE_BIT = 0x0004 /// MapInvalidateRangeBit = ((int)0x0004), /// + /// Original was GL_MAP_INVALIDATE_RANGE_BIT_EXT = 0x0004 + /// + MapInvalidateRangeBitExt = ((int)0x0004), + /// /// Original was GL_MAP_INVALIDATE_BUFFER_BIT = 0x0008 /// MapInvalidateBufferBit = ((int)0x0008), /// + /// Original was GL_MAP_INVALIDATE_BUFFER_BIT_EXT = 0x0008 + /// + MapInvalidateBufferBitExt = ((int)0x0008), + /// /// Original was GL_MAP_FLUSH_EXPLICIT_BIT = 0x0010 /// MapFlushExplicitBit = ((int)0x0010), /// + /// Original was GL_MAP_FLUSH_EXPLICIT_BIT_EXT = 0x0010 + /// + MapFlushExplicitBitExt = ((int)0x0010), + /// /// Original was GL_MAP_UNSYNCHRONIZED_BIT = 0x0020 /// MapUnsynchronizedBit = ((int)0x0020), /// + /// Original was GL_MAP_UNSYNCHRONIZED_BIT_EXT = 0x0020 + /// + MapUnsynchronizedBitExt = ((int)0x0020), + /// /// Original was GL_MAP_PERSISTENT_BIT = 0x0040 /// MapPersistentBit = ((int)0x0040), /// + /// Original was GL_MAP_PERSISTENT_BIT_EXT = 0x0040 + /// + MapPersistentBitExt = ((int)0x0040), + /// /// Original was GL_MAP_COHERENT_BIT = 0x0080 /// MapCoherentBit = ((int)0x0080), + /// + /// Original was GL_MAP_COHERENT_BIT_EXT = 0x0080 + /// + MapCoherentBitExt = ((int)0x0080), + } + + /// + /// Not used directly. + /// + public enum BufferBitQCOM : int + { + /// + /// Original was GL_COLOR_BUFFER_BIT0_QCOM = 0x00000001 + /// + ColorBufferBit0Qcom = ((int)0x00000001), + /// + /// Original was GL_COLOR_BUFFER_BIT1_QCOM = 0x00000002 + /// + ColorBufferBit1Qcom = ((int)0x00000002), + /// + /// Original was GL_COLOR_BUFFER_BIT2_QCOM = 0x00000004 + /// + ColorBufferBit2Qcom = ((int)0x00000004), + /// + /// Original was GL_COLOR_BUFFER_BIT3_QCOM = 0x00000008 + /// + ColorBufferBit3Qcom = ((int)0x00000008), + /// + /// Original was GL_COLOR_BUFFER_BIT4_QCOM = 0x00000010 + /// + ColorBufferBit4Qcom = ((int)0x00000010), + /// + /// Original was GL_COLOR_BUFFER_BIT5_QCOM = 0x00000020 + /// + ColorBufferBit5Qcom = ((int)0x00000020), + /// + /// Original was GL_COLOR_BUFFER_BIT6_QCOM = 0x00000040 + /// + ColorBufferBit6Qcom = ((int)0x00000040), + /// + /// Original was GL_COLOR_BUFFER_BIT7_QCOM = 0x00000080 + /// + ColorBufferBit7Qcom = ((int)0x00000080), + /// + /// Original was GL_DEPTH_BUFFER_BIT0_QCOM = 0x00000100 + /// + DepthBufferBit0Qcom = ((int)0x00000100), + /// + /// Original was GL_DEPTH_BUFFER_BIT1_QCOM = 0x00000200 + /// + DepthBufferBit1Qcom = ((int)0x00000200), + /// + /// Original was GL_DEPTH_BUFFER_BIT2_QCOM = 0x00000400 + /// + DepthBufferBit2Qcom = ((int)0x00000400), + /// + /// Original was GL_DEPTH_BUFFER_BIT3_QCOM = 0x00000800 + /// + DepthBufferBit3Qcom = ((int)0x00000800), + /// + /// Original was GL_DEPTH_BUFFER_BIT4_QCOM = 0x00001000 + /// + DepthBufferBit4Qcom = ((int)0x00001000), + /// + /// Original was GL_DEPTH_BUFFER_BIT5_QCOM = 0x00002000 + /// + DepthBufferBit5Qcom = ((int)0x00002000), + /// + /// Original was GL_DEPTH_BUFFER_BIT6_QCOM = 0x00004000 + /// + DepthBufferBit6Qcom = ((int)0x00004000), + /// + /// Original was GL_DEPTH_BUFFER_BIT7_QCOM = 0x00008000 + /// + DepthBufferBit7Qcom = ((int)0x00008000), + /// + /// Original was GL_STENCIL_BUFFER_BIT0_QCOM = 0x00010000 + /// + StencilBufferBit0Qcom = ((int)0x00010000), + /// + /// Original was GL_STENCIL_BUFFER_BIT1_QCOM = 0x00020000 + /// + StencilBufferBit1Qcom = ((int)0x00020000), + /// + /// Original was GL_STENCIL_BUFFER_BIT2_QCOM = 0x00040000 + /// + StencilBufferBit2Qcom = ((int)0x00040000), + /// + /// Original was GL_STENCIL_BUFFER_BIT3_QCOM = 0x00080000 + /// + StencilBufferBit3Qcom = ((int)0x00080000), + /// + /// Original was GL_STENCIL_BUFFER_BIT4_QCOM = 0x00100000 + /// + StencilBufferBit4Qcom = ((int)0x00100000), + /// + /// Original was GL_STENCIL_BUFFER_BIT5_QCOM = 0x00200000 + /// + StencilBufferBit5Qcom = ((int)0x00200000), + /// + /// Original was GL_STENCIL_BUFFER_BIT6_QCOM = 0x00400000 + /// + StencilBufferBit6Qcom = ((int)0x00400000), + /// + /// Original was GL_STENCIL_BUFFER_BIT7_QCOM = 0x00800000 + /// + StencilBufferBit7Qcom = ((int)0x00800000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT0_QCOM = 0x01000000 + /// + MultisampleBufferBit0Qcom = ((int)0x01000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT1_QCOM = 0x02000000 + /// + MultisampleBufferBit1Qcom = ((int)0x02000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT2_QCOM = 0x04000000 + /// + MultisampleBufferBit2Qcom = ((int)0x04000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT3_QCOM = 0x08000000 + /// + MultisampleBufferBit3Qcom = ((int)0x08000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT4_QCOM = 0x10000000 + /// + MultisampleBufferBit4Qcom = ((int)0x10000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT5_QCOM = 0x20000000 + /// + MultisampleBufferBit5Qcom = ((int)0x20000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT6_QCOM = 0x40000000 + /// + MultisampleBufferBit6Qcom = ((int)0x40000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT7_QCOM = 0x80000000 + /// + MultisampleBufferBit7Qcom = unchecked((int)0x80000000), } /// @@ -30756,6 +31733,69 @@ namespace OpenTK.Graphics.OpenGL ClientStorageBit = ((int)0x0200), } + /// + /// Not used directly. + /// + public enum BufferStorageTarget : int + { + /// + /// Original was GL_ARRAY_BUFFER = 0x8892 + /// + ArrayBuffer = ((int)0x8892), + /// + /// Original was GL_ELEMENT_ARRAY_BUFFER = 0x8893 + /// + ElementArrayBuffer = ((int)0x8893), + /// + /// Original was GL_PIXEL_PACK_BUFFER = 0x88EB + /// + PixelPackBuffer = ((int)0x88EB), + /// + /// Original was GL_PIXEL_UNPACK_BUFFER = 0x88EC + /// + PixelUnpackBuffer = ((int)0x88EC), + /// + /// Original was GL_UNIFORM_BUFFER = 0x8A11 + /// + UniformBuffer = ((int)0x8A11), + /// + /// Original was GL_TEXTURE_BUFFER = 0x8C2A + /// + TextureBuffer = ((int)0x8C2A), + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER = 0x8C8E + /// + TransformFeedbackBuffer = ((int)0x8C8E), + /// + /// Original was GL_COPY_READ_BUFFER = 0x8F36 + /// + CopyReadBuffer = ((int)0x8F36), + /// + /// Original was GL_COPY_WRITE_BUFFER = 0x8F37 + /// + CopyWriteBuffer = ((int)0x8F37), + /// + /// Original was GL_DRAW_INDIRECT_BUFFER = 0x8F3F + /// + DrawIndirectBuffer = ((int)0x8F3F), + /// + /// Original was GL_SHADER_STORAGE_BUFFER = 0x90D2 + /// + ShaderStorageBuffer = ((int)0x90D2), + /// + /// Original was GL_DISPATCH_INDIRECT_BUFFER = 0x90EE + /// + DispatchIndirectBuffer = ((int)0x90EE), + /// + /// Original was GL_QUERY_BUFFER = 0x9192 + /// + QueryBuffer = ((int)0x9192), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER = 0x92C0 + /// + AtomicCounterBuffer = ((int)0x92C0), + } + /// /// Used in GL.Apple.BufferParameter, GL.Apple.FlushMappedBufferRange and 16 other functions /// @@ -30820,7 +31860,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Arb.BindBuffer, GL.Arb.BufferData and 8 other functions + /// Used in GL.Arb.BindBuffer, GL.Arb.BufferData and 16 other functions /// public enum BufferTargetArb : int { @@ -30968,6 +32008,25 @@ namespace OpenTK.Graphics.OpenGL DynamicCopy = ((int)0x88EA), } + /// + /// Not used directly. + /// + public enum CheckFramebufferStatusTarget : int + { + /// + /// Original was GL_READ_FRAMEBUFFER = 0x8CA8 + /// + ReadFramebuffer = ((int)0x8CA8), + /// + /// Original was GL_DRAW_FRAMEBUFFER = 0x8CA9 + /// + DrawFramebuffer = ((int)0x8CA9), + /// + /// Original was GL_FRAMEBUFFER = 0x8D40 + /// + Framebuffer = ((int)0x8D40), + } + /// /// Used in GL.ClampColor /// @@ -31037,7 +32096,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.BlitFramebuffer, GL.BlitNamedFramebuffer and 2 other functions + /// Used in GL.BlitFramebuffer, GL.BlitNamedFramebuffer and 3 other functions /// [Flags] public enum ClearBufferMask : int @@ -31110,6 +32169,36 @@ namespace OpenTK.Graphics.OpenGL { } + /// + /// Not used directly. + /// + public enum ClipControlDepth : int + { + /// + /// Original was GL_NEGATIVE_ONE_TO_ONE = 0x935E + /// + NegativeOneToOne = ((int)0x935E), + /// + /// Original was GL_ZERO_TO_ONE = 0x935F + /// + ZeroToOne = ((int)0x935F), + } + + /// + /// Not used directly. + /// + public enum ClipControlOrigin : int + { + /// + /// Original was GL_LOWER_LEFT = 0x8CA1 + /// + LowerLeft = ((int)0x8CA1), + /// + /// Original was GL_UPPER_LEFT = 0x8CA2 + /// + UpperLeft = ((int)0x8CA2), + } + /// /// Used in GL.ClipControl /// @@ -31141,7 +32230,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.ClipPlane, GL.GetClipPlane + /// Used in GL.ClipPlane, GL.GetClipPlane and 4 other functions /// public enum ClipPlaneName : int { @@ -31203,6 +32292,181 @@ namespace OpenTK.Graphics.OpenGL ClipDistance7 = ((int)0x3007), } + /// + /// Not used directly. + /// + public enum ColorBuffer : int + { + /// + /// Original was GL_NONE = 0 + /// + None = ((int)0), + /// + /// Original was GL_FRONT_LEFT = 0x0400 + /// + FrontLeft = ((int)0x0400), + /// + /// Original was GL_FRONT_RIGHT = 0x0401 + /// + FrontRight = ((int)0x0401), + /// + /// Original was GL_BACK_LEFT = 0x0402 + /// + BackLeft = ((int)0x0402), + /// + /// Original was GL_BACK_RIGHT = 0x0403 + /// + BackRight = ((int)0x0403), + /// + /// Original was GL_FRONT = 0x0404 + /// + Front = ((int)0x0404), + /// + /// Original was GL_BACK = 0x0405 + /// + Back = ((int)0x0405), + /// + /// Original was GL_LEFT = 0x0406 + /// + Left = ((int)0x0406), + /// + /// Original was GL_RIGHT = 0x0407 + /// + Right = ((int)0x0407), + /// + /// Original was GL_FRONT_AND_BACK = 0x0408 + /// + FrontAndBack = ((int)0x0408), + /// + /// Original was GL_COLOR_ATTACHMENT0 = 0x8CE0 + /// + ColorAttachment0 = ((int)0x8CE0), + /// + /// Original was GL_COLOR_ATTACHMENT1 = 0x8CE1 + /// + ColorAttachment1 = ((int)0x8CE1), + /// + /// Original was GL_COLOR_ATTACHMENT2 = 0x8CE2 + /// + ColorAttachment2 = ((int)0x8CE2), + /// + /// Original was GL_COLOR_ATTACHMENT3 = 0x8CE3 + /// + ColorAttachment3 = ((int)0x8CE3), + /// + /// Original was GL_COLOR_ATTACHMENT4 = 0x8CE4 + /// + ColorAttachment4 = ((int)0x8CE4), + /// + /// Original was GL_COLOR_ATTACHMENT5 = 0x8CE5 + /// + ColorAttachment5 = ((int)0x8CE5), + /// + /// Original was GL_COLOR_ATTACHMENT6 = 0x8CE6 + /// + ColorAttachment6 = ((int)0x8CE6), + /// + /// Original was GL_COLOR_ATTACHMENT7 = 0x8CE7 + /// + ColorAttachment7 = ((int)0x8CE7), + /// + /// Original was GL_COLOR_ATTACHMENT8 = 0x8CE8 + /// + ColorAttachment8 = ((int)0x8CE8), + /// + /// Original was GL_COLOR_ATTACHMENT9 = 0x8CE9 + /// + ColorAttachment9 = ((int)0x8CE9), + /// + /// Original was GL_COLOR_ATTACHMENT10 = 0x8CEA + /// + ColorAttachment10 = ((int)0x8CEA), + /// + /// Original was GL_COLOR_ATTACHMENT11 = 0x8CEB + /// + ColorAttachment11 = ((int)0x8CEB), + /// + /// Original was GL_COLOR_ATTACHMENT12 = 0x8CEC + /// + ColorAttachment12 = ((int)0x8CEC), + /// + /// Original was GL_COLOR_ATTACHMENT13 = 0x8CED + /// + ColorAttachment13 = ((int)0x8CED), + /// + /// Original was GL_COLOR_ATTACHMENT14 = 0x8CEE + /// + ColorAttachment14 = ((int)0x8CEE), + /// + /// Original was GL_COLOR_ATTACHMENT15 = 0x8CEF + /// + ColorAttachment15 = ((int)0x8CEF), + /// + /// Original was GL_COLOR_ATTACHMENT16 = 0x8CF0 + /// + ColorAttachment16 = ((int)0x8CF0), + /// + /// Original was GL_COLOR_ATTACHMENT17 = 0x8CF1 + /// + ColorAttachment17 = ((int)0x8CF1), + /// + /// Original was GL_COLOR_ATTACHMENT18 = 0x8CF2 + /// + ColorAttachment18 = ((int)0x8CF2), + /// + /// Original was GL_COLOR_ATTACHMENT19 = 0x8CF3 + /// + ColorAttachment19 = ((int)0x8CF3), + /// + /// Original was GL_COLOR_ATTACHMENT20 = 0x8CF4 + /// + ColorAttachment20 = ((int)0x8CF4), + /// + /// Original was GL_COLOR_ATTACHMENT21 = 0x8CF5 + /// + ColorAttachment21 = ((int)0x8CF5), + /// + /// Original was GL_COLOR_ATTACHMENT22 = 0x8CF6 + /// + ColorAttachment22 = ((int)0x8CF6), + /// + /// Original was GL_COLOR_ATTACHMENT23 = 0x8CF7 + /// + ColorAttachment23 = ((int)0x8CF7), + /// + /// Original was GL_COLOR_ATTACHMENT24 = 0x8CF8 + /// + ColorAttachment24 = ((int)0x8CF8), + /// + /// Original was GL_COLOR_ATTACHMENT25 = 0x8CF9 + /// + ColorAttachment25 = ((int)0x8CF9), + /// + /// Original was GL_COLOR_ATTACHMENT26 = 0x8CFA + /// + ColorAttachment26 = ((int)0x8CFA), + /// + /// Original was GL_COLOR_ATTACHMENT27 = 0x8CFB + /// + ColorAttachment27 = ((int)0x8CFB), + /// + /// Original was GL_COLOR_ATTACHMENT28 = 0x8CFC + /// + ColorAttachment28 = ((int)0x8CFC), + /// + /// Original was GL_COLOR_ATTACHMENT29 = 0x8CFD + /// + ColorAttachment29 = ((int)0x8CFD), + /// + /// Original was GL_COLOR_ATTACHMENT30 = 0x8CFE + /// + ColorAttachment30 = ((int)0x8CFE), + /// + /// Original was GL_COLOR_ATTACHMENT31 = 0x8CFF + /// + ColorAttachment31 = ((int)0x8CFF), + } + /// /// Not used directly. /// @@ -31250,7 +32514,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.ColorPointer, GL.SecondaryColorPointer and 5 other functions + /// Used in GL.ColorPointer, GL.SecondaryColorPointer and 6 other functions /// public enum ColorPointerType : int { @@ -31301,7 +32565,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.ColorTableParameter + /// Not used directly. /// public enum ColorTableParameterPName : int { @@ -31316,7 +32580,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Sgi.ColorTableParameter + /// Used in GL.ColorTableParameter, GL.Sgi.ColorTableParameter /// public enum ColorTableParameterPNameSgi : int { @@ -31339,7 +32603,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.ColorSubTable, GL.ColorTable and 10 other functions + /// Used in GL.Arb.GetnColorTable, GL.ColorSubTable and 12 other functions /// public enum ColorTableTarget : int { @@ -31490,10 +32754,22 @@ namespace OpenTK.Graphics.OpenGL /// ContextFlagDebugBitKhr = ((int)0x00000002), /// + /// Original was GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT = 0x00000004 + /// + ContextFlagRobustAccessBit = ((int)0x00000004), + /// /// Original was GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT_ARB = 0x00000004 /// ContextFlagRobustAccessBitArb = ((int)0x00000004), /// + /// Original was GL_CONTEXT_FLAG_NO_ERROR_BIT = 0x00000008 + /// + ContextFlagNoErrorBit = ((int)0x00000008), + /// + /// Original was GL_CONTEXT_FLAG_NO_ERROR_BIT_KHR = 0x00000008 + /// + ContextFlagNoErrorBitKhr = ((int)0x00000008), + /// /// Original was GL_CONTEXT_FLAG_PROTECTED_CONTENT_BIT_EXT = 0x00000010 /// ContextFlagProtectedContentBitExt = ((int)0x00000010), @@ -31531,7 +32807,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.ConvolutionParameter + /// Not used directly. /// public enum ConvolutionParameter : int { @@ -31550,7 +32826,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Ext.ConvolutionParameter, GL.Ext.GetConvolutionParameter + /// Used in GL.ConvolutionParameter, GL.GetConvolutionParameter and 3 other functions /// public enum ConvolutionParameterExt : int { @@ -31600,7 +32876,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.ConvolutionFilter1D, GL.ConvolutionFilter2D and 5 other functions + /// Used in GL.Arb.GetnConvolutionFilter, GL.ConvolutionFilter1D and 7 other functions /// public enum ConvolutionTarget : int { @@ -31619,7 +32895,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Ext.ConvolutionFilter1D, GL.Ext.ConvolutionFilter2D and 5 other functions + /// Used in GL.Ext.ConvolutionFilter1D, GL.Ext.ConvolutionFilter2D and 6 other functions /// public enum ConvolutionTargetExt : int { @@ -31641,6 +32917,69 @@ namespace OpenTK.Graphics.OpenGL Convolution2DExt = ((int)0x8011), } + /// + /// Used in GL.NV.CopyImageSubData + /// + public enum CopyBufferSubDataTarget : int + { + /// + /// Original was GL_ARRAY_BUFFER = 0x8892 + /// + ArrayBuffer = ((int)0x8892), + /// + /// Original was GL_ELEMENT_ARRAY_BUFFER = 0x8893 + /// + ElementArrayBuffer = ((int)0x8893), + /// + /// Original was GL_PIXEL_PACK_BUFFER = 0x88EB + /// + PixelPackBuffer = ((int)0x88EB), + /// + /// Original was GL_PIXEL_UNPACK_BUFFER = 0x88EC + /// + PixelUnpackBuffer = ((int)0x88EC), + /// + /// Original was GL_UNIFORM_BUFFER = 0x8A11 + /// + UniformBuffer = ((int)0x8A11), + /// + /// Original was GL_TEXTURE_BUFFER = 0x8C2A + /// + TextureBuffer = ((int)0x8C2A), + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER = 0x8C8E + /// + TransformFeedbackBuffer = ((int)0x8C8E), + /// + /// Original was GL_COPY_READ_BUFFER = 0x8F36 + /// + CopyReadBuffer = ((int)0x8F36), + /// + /// Original was GL_COPY_WRITE_BUFFER = 0x8F37 + /// + CopyWriteBuffer = ((int)0x8F37), + /// + /// Original was GL_DRAW_INDIRECT_BUFFER = 0x8F3F + /// + DrawIndirectBuffer = ((int)0x8F3F), + /// + /// Original was GL_SHADER_STORAGE_BUFFER = 0x90D2 + /// + ShaderStorageBuffer = ((int)0x90D2), + /// + /// Original was GL_DISPATCH_INDIRECT_BUFFER = 0x90EE + /// + DispatchIndirectBuffer = ((int)0x90EE), + /// + /// Original was GL_QUERY_BUFFER = 0x9192 + /// + QueryBuffer = ((int)0x9192), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER = 0x92C0 + /// + AtomicCounterBuffer = ((int)0x92C0), + } + /// /// Used in GL.CullFace /// @@ -31668,10 +33007,14 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.DebugMessageInsert, GL.GetDebugMessageLog + /// Used in GL.Amd.DebugMessageEnable, GL.Amd.DebugMessageInsert and 9 other functions /// public enum DebugSeverity : int { + /// + /// Original was GL_DONT_CARE = 0x1100 + /// + DontCare = ((int)0x1100), /// /// Original was GL_DEBUG_SEVERITY_NOTIFICATION = 0x826B /// @@ -31718,10 +33061,14 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.GetDebugMessageLog + /// Used in GL.Arb.DebugMessageControl, GL.Arb.DebugMessageInsert and 6 other functions /// public enum DebugSource : int { + /// + /// Original was GL_DONT_CARE = 0x1100 + /// + DontCare = ((int)0x1100), /// /// Original was GL_DEBUG_SOURCE_API = 0x8246 /// @@ -31799,10 +33146,14 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.DebugMessageInsert, GL.GetDebugMessageLog + /// Used in GL.Arb.DebugMessageControl, GL.Arb.DebugMessageInsert and 6 other functions /// public enum DebugType : int { + /// + /// Original was GL_DONT_CARE = 0x1100 + /// + DontCare = ((int)0x1100), /// /// Original was GL_DEBUG_TYPE_ERROR = 0x824C /// @@ -32166,7 +33517,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Arb.DrawElementsInstanced, GL.DrawElements and 14 other functions + /// Used in GL.Amd.MultiDrawElementsIndirect, GL.Arb.DrawElementsInstanced and 19 other functions /// public enum DrawElementsType : int { @@ -32957,7 +34308,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Ext.BlendFuncSeparate + /// Not used directly. /// public enum ExtBlendFuncSeparate : int { @@ -33318,7 +34669,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Ext.ClearNamedBufferData, GL.Ext.ClearNamedBufferSubData and 58 other functions + /// Used in GL.Ext.ClearNamedBufferData, GL.Ext.ClearNamedBufferSubData and 35 other functions /// public enum ExtDirectStateAccess : int { @@ -34572,7 +35923,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Ext.ProvokingVertex + /// Not used directly. /// public enum ExtProvokingVertex : int { @@ -34676,6 +36027,14 @@ namespace OpenTK.Graphics.OpenGL /// public enum ExtSemaphore : int { + /// + /// Original was GL_LAYOUT_DEPTH_READ_ONLY_STENCIL_ATTACHMENT_EXT = 0x9530 + /// + LayoutDepthReadOnlyStencilAttachmentExt = ((int)0x9530), + /// + /// Original was GL_LAYOUT_DEPTH_ATTACHMENT_STENCIL_READ_ONLY_EXT = 0x9531 + /// + LayoutDepthAttachmentStencilReadOnlyExt = ((int)0x9531), /// /// Original was GL_LAYOUT_GENERAL_EXT = 0x958D /// @@ -34769,7 +36128,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Ext.CreateShaderProgram, GL.Ext.GetProgramPipeline and 1 other function + /// Used in GL.Ext.UseShaderProgram /// public enum ExtSeparateShaderObjects : int { @@ -34826,7 +36185,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Ext.BindImageTexture + /// Not used directly. /// public enum ExtShaderImageLoadStore : int { @@ -35402,7 +36761,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Ext.TexBuffer + /// Not used directly. /// public enum ExtTextureBufferObject : int { @@ -36230,7 +37589,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Ext.GetQueryObject + /// Not used directly. /// public enum ExtTimerQuery : int { @@ -36241,7 +37600,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Ext.BeginTransformFeedback, GL.Ext.BindBufferBase and 4 other functions + /// Used in GL.Ext.GetTransformFeedbackVarying, GL.Ext.TransformFeedbackVaryings /// public enum ExtTransformFeedback : int { @@ -36454,7 +37813,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Ext.GetVertexAttribL, GL.Ext.VertexArrayVertexAttribLOffset and 1 other function + /// Used in GL.Ext.VertexArrayVertexAttribLOffset /// public enum ExtVertexAttrib64bit : int { @@ -37245,6 +38604,37 @@ namespace OpenTK.Graphics.OpenGL FogCoordSrc = ((int)0x8450), } + /// + /// Used in GL.Oes.Fogx + /// + public enum FogPName : int + { + /// + /// Original was GL_FOG_INDEX = 0x0B61 + /// + FogIndex = ((int)0x0B61), + /// + /// Original was GL_FOG_DENSITY = 0x0B62 + /// + FogDensity = ((int)0x0B62), + /// + /// Original was GL_FOG_START = 0x0B63 + /// + FogStart = ((int)0x0B63), + /// + /// Original was GL_FOG_END = 0x0B64 + /// + FogEnd = ((int)0x0B64), + /// + /// Original was GL_FOG_MODE = 0x0B65 + /// + FogMode = ((int)0x0B65), + /// + /// Original was GL_FOG_COORD_SRC = 0x8450 + /// + FogCoordSrc = ((int)0x8450), + } + /// /// Used in GL.FogCoordPointer, GL.Ext.VertexArrayFogCoordOffset and 1 other function /// @@ -37325,6 +38715,57 @@ namespace OpenTK.Graphics.OpenGL FragmentLightModelNormalInterpolationSgix = ((int)0x840B), } + /// + /// Used in GL.Ati.AlphaFragmentOp1, GL.Ati.AlphaFragmentOp2 and 4 other functions + /// + public enum FragmentOpAti : int + { + /// + /// Original was GL_MOV_ATI = 0x8961 + /// + MovAti = ((int)0x8961), + /// + /// Original was GL_ADD_ATI = 0x8963 + /// + AddAti = ((int)0x8963), + /// + /// Original was GL_MUL_ATI = 0x8964 + /// + MulAti = ((int)0x8964), + /// + /// Original was GL_SUB_ATI = 0x8965 + /// + SubAti = ((int)0x8965), + /// + /// Original was GL_DOT3_ATI = 0x8966 + /// + Dot3Ati = ((int)0x8966), + /// + /// Original was GL_DOT4_ATI = 0x8967 + /// + Dot4Ati = ((int)0x8967), + /// + /// Original was GL_MAD_ATI = 0x8968 + /// + MadAti = ((int)0x8968), + /// + /// Original was GL_LERP_ATI = 0x8969 + /// + LerpAti = ((int)0x8969), + /// + /// Original was GL_CND_ATI = 0x896A + /// + CndAti = ((int)0x896A), + /// + /// Original was GL_CND0_ATI = 0x896B + /// + Cnd0Ati = ((int)0x896B), + /// + /// Original was GL_DOT2_ADD_ATI = 0x896C + /// + Dot2AddAti = ((int)0x896C), + } + /// /// Used in GL.Arb.FramebufferTexture, GL.Arb.FramebufferTextureFace and 33 other functions /// @@ -37379,6 +38820,18 @@ namespace OpenTK.Graphics.OpenGL /// DepthStencilAttachment = ((int)0x821A), /// + /// Original was GL_MAX_COLOR_ATTACHMENTS = 0x8CDF + /// + MaxColorAttachments = ((int)0x8CDF), + /// + /// Original was GL_MAX_COLOR_ATTACHMENTS_EXT = 0x8CDF + /// + MaxColorAttachmentsExt = ((int)0x8CDF), + /// + /// Original was GL_MAX_COLOR_ATTACHMENTS_NV = 0x8CDF + /// + MaxColorAttachmentsNv = ((int)0x8CDF), + /// /// Original was GL_COLOR_ATTACHMENT0 = 0x8CE0 /// ColorAttachment0 = ((int)0x8CE0), @@ -37387,6 +38840,14 @@ namespace OpenTK.Graphics.OpenGL /// ColorAttachment0Ext = ((int)0x8CE0), /// + /// Original was GL_COLOR_ATTACHMENT0_NV = 0x8CE0 + /// + ColorAttachment0Nv = ((int)0x8CE0), + /// + /// Original was GL_COLOR_ATTACHMENT0_OES = 0x8CE0 + /// + ColorAttachment0Oes = ((int)0x8CE0), + /// /// Original was GL_COLOR_ATTACHMENT1 = 0x8CE1 /// ColorAttachment1 = ((int)0x8CE1), @@ -37395,6 +38856,10 @@ namespace OpenTK.Graphics.OpenGL /// ColorAttachment1Ext = ((int)0x8CE1), /// + /// Original was GL_COLOR_ATTACHMENT1_NV = 0x8CE1 + /// + ColorAttachment1Nv = ((int)0x8CE1), + /// /// Original was GL_COLOR_ATTACHMENT2 = 0x8CE2 /// ColorAttachment2 = ((int)0x8CE2), @@ -37403,6 +38868,10 @@ namespace OpenTK.Graphics.OpenGL /// ColorAttachment2Ext = ((int)0x8CE2), /// + /// Original was GL_COLOR_ATTACHMENT2_NV = 0x8CE2 + /// + ColorAttachment2Nv = ((int)0x8CE2), + /// /// Original was GL_COLOR_ATTACHMENT3 = 0x8CE3 /// ColorAttachment3 = ((int)0x8CE3), @@ -37411,6 +38880,10 @@ namespace OpenTK.Graphics.OpenGL /// ColorAttachment3Ext = ((int)0x8CE3), /// + /// Original was GL_COLOR_ATTACHMENT3_NV = 0x8CE3 + /// + ColorAttachment3Nv = ((int)0x8CE3), + /// /// Original was GL_COLOR_ATTACHMENT4 = 0x8CE4 /// ColorAttachment4 = ((int)0x8CE4), @@ -37419,6 +38892,10 @@ namespace OpenTK.Graphics.OpenGL /// ColorAttachment4Ext = ((int)0x8CE4), /// + /// Original was GL_COLOR_ATTACHMENT4_NV = 0x8CE4 + /// + ColorAttachment4Nv = ((int)0x8CE4), + /// /// Original was GL_COLOR_ATTACHMENT5 = 0x8CE5 /// ColorAttachment5 = ((int)0x8CE5), @@ -37427,6 +38904,10 @@ namespace OpenTK.Graphics.OpenGL /// ColorAttachment5Ext = ((int)0x8CE5), /// + /// Original was GL_COLOR_ATTACHMENT5_NV = 0x8CE5 + /// + ColorAttachment5Nv = ((int)0x8CE5), + /// /// Original was GL_COLOR_ATTACHMENT6 = 0x8CE6 /// ColorAttachment6 = ((int)0x8CE6), @@ -37435,6 +38916,10 @@ namespace OpenTK.Graphics.OpenGL /// ColorAttachment6Ext = ((int)0x8CE6), /// + /// Original was GL_COLOR_ATTACHMENT6_NV = 0x8CE6 + /// + ColorAttachment6Nv = ((int)0x8CE6), + /// /// Original was GL_COLOR_ATTACHMENT7 = 0x8CE7 /// ColorAttachment7 = ((int)0x8CE7), @@ -37443,6 +38928,10 @@ namespace OpenTK.Graphics.OpenGL /// ColorAttachment7Ext = ((int)0x8CE7), /// + /// Original was GL_COLOR_ATTACHMENT7_NV = 0x8CE7 + /// + ColorAttachment7Nv = ((int)0x8CE7), + /// /// Original was GL_COLOR_ATTACHMENT8 = 0x8CE8 /// ColorAttachment8 = ((int)0x8CE8), @@ -37451,6 +38940,10 @@ namespace OpenTK.Graphics.OpenGL /// ColorAttachment8Ext = ((int)0x8CE8), /// + /// Original was GL_COLOR_ATTACHMENT8_NV = 0x8CE8 + /// + ColorAttachment8Nv = ((int)0x8CE8), + /// /// Original was GL_COLOR_ATTACHMENT9 = 0x8CE9 /// ColorAttachment9 = ((int)0x8CE9), @@ -37459,6 +38952,10 @@ namespace OpenTK.Graphics.OpenGL /// ColorAttachment9Ext = ((int)0x8CE9), /// + /// Original was GL_COLOR_ATTACHMENT9_NV = 0x8CE9 + /// + ColorAttachment9Nv = ((int)0x8CE9), + /// /// Original was GL_COLOR_ATTACHMENT10 = 0x8CEA /// ColorAttachment10 = ((int)0x8CEA), @@ -37467,6 +38964,10 @@ namespace OpenTK.Graphics.OpenGL /// ColorAttachment10Ext = ((int)0x8CEA), /// + /// Original was GL_COLOR_ATTACHMENT10_NV = 0x8CEA + /// + ColorAttachment10Nv = ((int)0x8CEA), + /// /// Original was GL_COLOR_ATTACHMENT11 = 0x8CEB /// ColorAttachment11 = ((int)0x8CEB), @@ -37475,6 +38976,10 @@ namespace OpenTK.Graphics.OpenGL /// ColorAttachment11Ext = ((int)0x8CEB), /// + /// Original was GL_COLOR_ATTACHMENT11_NV = 0x8CEB + /// + ColorAttachment11Nv = ((int)0x8CEB), + /// /// Original was GL_COLOR_ATTACHMENT12 = 0x8CEC /// ColorAttachment12 = ((int)0x8CEC), @@ -37483,6 +38988,10 @@ namespace OpenTK.Graphics.OpenGL /// ColorAttachment12Ext = ((int)0x8CEC), /// + /// Original was GL_COLOR_ATTACHMENT12_NV = 0x8CEC + /// + ColorAttachment12Nv = ((int)0x8CEC), + /// /// Original was GL_COLOR_ATTACHMENT13 = 0x8CED /// ColorAttachment13 = ((int)0x8CED), @@ -37491,6 +39000,10 @@ namespace OpenTK.Graphics.OpenGL /// ColorAttachment13Ext = ((int)0x8CED), /// + /// Original was GL_COLOR_ATTACHMENT13_NV = 0x8CED + /// + ColorAttachment13Nv = ((int)0x8CED), + /// /// Original was GL_COLOR_ATTACHMENT14 = 0x8CEE /// ColorAttachment14 = ((int)0x8CEE), @@ -37499,6 +39012,10 @@ namespace OpenTK.Graphics.OpenGL /// ColorAttachment14Ext = ((int)0x8CEE), /// + /// Original was GL_COLOR_ATTACHMENT14_NV = 0x8CEE + /// + ColorAttachment14Nv = ((int)0x8CEE), + /// /// Original was GL_COLOR_ATTACHMENT15 = 0x8CEF /// ColorAttachment15 = ((int)0x8CEF), @@ -37507,6 +39024,74 @@ namespace OpenTK.Graphics.OpenGL /// ColorAttachment15Ext = ((int)0x8CEF), /// + /// Original was GL_COLOR_ATTACHMENT15_NV = 0x8CEF + /// + ColorAttachment15Nv = ((int)0x8CEF), + /// + /// Original was GL_COLOR_ATTACHMENT16 = 0x8CF0 + /// + ColorAttachment16 = ((int)0x8CF0), + /// + /// Original was GL_COLOR_ATTACHMENT17 = 0x8CF1 + /// + ColorAttachment17 = ((int)0x8CF1), + /// + /// Original was GL_COLOR_ATTACHMENT18 = 0x8CF2 + /// + ColorAttachment18 = ((int)0x8CF2), + /// + /// Original was GL_COLOR_ATTACHMENT19 = 0x8CF3 + /// + ColorAttachment19 = ((int)0x8CF3), + /// + /// Original was GL_COLOR_ATTACHMENT20 = 0x8CF4 + /// + ColorAttachment20 = ((int)0x8CF4), + /// + /// Original was GL_COLOR_ATTACHMENT21 = 0x8CF5 + /// + ColorAttachment21 = ((int)0x8CF5), + /// + /// Original was GL_COLOR_ATTACHMENT22 = 0x8CF6 + /// + ColorAttachment22 = ((int)0x8CF6), + /// + /// Original was GL_COLOR_ATTACHMENT23 = 0x8CF7 + /// + ColorAttachment23 = ((int)0x8CF7), + /// + /// Original was GL_COLOR_ATTACHMENT24 = 0x8CF8 + /// + ColorAttachment24 = ((int)0x8CF8), + /// + /// Original was GL_COLOR_ATTACHMENT25 = 0x8CF9 + /// + ColorAttachment25 = ((int)0x8CF9), + /// + /// Original was GL_COLOR_ATTACHMENT26 = 0x8CFA + /// + ColorAttachment26 = ((int)0x8CFA), + /// + /// Original was GL_COLOR_ATTACHMENT27 = 0x8CFB + /// + ColorAttachment27 = ((int)0x8CFB), + /// + /// Original was GL_COLOR_ATTACHMENT28 = 0x8CFC + /// + ColorAttachment28 = ((int)0x8CFC), + /// + /// Original was GL_COLOR_ATTACHMENT29 = 0x8CFD + /// + ColorAttachment29 = ((int)0x8CFD), + /// + /// Original was GL_COLOR_ATTACHMENT30 = 0x8CFE + /// + ColorAttachment30 = ((int)0x8CFE), + /// + /// Original was GL_COLOR_ATTACHMENT31 = 0x8CFF + /// + ColorAttachment31 = ((int)0x8CFF), + /// /// Original was GL_DEPTH_ATTACHMENT = 0x8D00 /// DepthAttachment = ((int)0x8D00), @@ -37515,6 +39100,10 @@ namespace OpenTK.Graphics.OpenGL /// DepthAttachmentExt = ((int)0x8D00), /// + /// Original was GL_DEPTH_ATTACHMENT_OES = 0x8D00 + /// + DepthAttachmentOes = ((int)0x8D00), + /// /// Original was GL_STENCIL_ATTACHMENT = 0x8D20 /// StencilAttachment = ((int)0x8D20), @@ -37570,6 +39159,65 @@ namespace OpenTK.Graphics.OpenGL Renderbuffer = ((int)0x8D41), } + /// + /// Used in GL.Amd.GetFramebufferParameter, GL.Ext.GetNamedFramebufferAttachmentParameter + /// + public enum FramebufferAttachmentParameterName : int + { + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING = 0x8210 + /// + FramebufferAttachmentColorEncoding = ((int)0x8210), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE = 0x8211 + /// + FramebufferAttachmentComponentType = ((int)0x8211), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_RED_SIZE = 0x8212 + /// + FramebufferAttachmentRedSize = ((int)0x8212), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_GREEN_SIZE = 0x8213 + /// + FramebufferAttachmentGreenSize = ((int)0x8213), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_BLUE_SIZE = 0x8214 + /// + FramebufferAttachmentBlueSize = ((int)0x8214), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE = 0x8215 + /// + FramebufferAttachmentAlphaSize = ((int)0x8215), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE = 0x8216 + /// + FramebufferAttachmentDepthSize = ((int)0x8216), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE = 0x8217 + /// + FramebufferAttachmentStencilSize = ((int)0x8217), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME = 0x8CD1 + /// + FramebufferAttachmentObjectName = ((int)0x8CD1), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL = 0x8CD2 + /// + FramebufferAttachmentTextureLevel = ((int)0x8CD2), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE = 0x8CD3 + /// + FramebufferAttachmentTextureCubeMapFace = ((int)0x8CD3), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER = 0x8CD4 + /// + FramebufferAttachmentTextureLayer = ((int)0x8CD4), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_LAYERED = 0x8DA7 + /// + FramebufferAttachmentLayered = ((int)0x8DA7), + } + /// /// Used in GL.FramebufferParameter, GL.GetFramebufferParameter and 3 other functions /// @@ -37768,10 +39416,73 @@ namespace OpenTK.Graphics.OpenGL /// Original was GL_FRAMEBUFFER_ATTACHMENT_LAYERED = 0x8DA7 /// FramebufferAttachmentLayered = ((int)0x8DA7), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_WIDTH = 0x9310 + /// + FramebufferDefaultWidth = ((int)0x9310), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_HEIGHT = 0x9311 + /// + FramebufferDefaultHeight = ((int)0x9311), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_LAYERS = 0x9312 + /// + FramebufferDefaultLayers = ((int)0x9312), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_SAMPLES = 0x9313 + /// + FramebufferDefaultSamples = ((int)0x9313), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_FIXED_SAMPLE_LOCATIONS = 0x9314 + /// + FramebufferDefaultFixedSampleLocations = ((int)0x9314), } /// - /// Used in GL.Arb.FramebufferTexture, GL.Arb.FramebufferTextureFace and 27 other functions + /// Not used directly. + /// + public enum FramebufferStatus : int + { + /// + /// Original was GL_FRAMEBUFFER_UNDEFINED = 0x8219 + /// + FramebufferUndefined = ((int)0x8219), + /// + /// Original was GL_FRAMEBUFFER_COMPLETE = 0x8CD5 + /// + FramebufferComplete = ((int)0x8CD5), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT = 0x8CD6 + /// + FramebufferIncompleteAttachment = ((int)0x8CD6), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT = 0x8CD7 + /// + FramebufferIncompleteMissingAttachment = ((int)0x8CD7), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER = 0x8CDB + /// + FramebufferIncompleteDrawBuffer = ((int)0x8CDB), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER = 0x8CDC + /// + FramebufferIncompleteReadBuffer = ((int)0x8CDC), + /// + /// Original was GL_FRAMEBUFFER_UNSUPPORTED = 0x8CDD + /// + FramebufferUnsupported = ((int)0x8CDD), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE = 0x8D56 + /// + FramebufferIncompleteMultisample = ((int)0x8D56), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS = 0x8DA8 + /// + FramebufferIncompleteLayerTargets = ((int)0x8DA8), + } + + /// + /// Used in GL.Amd.FramebufferSamplePositions, GL.Amd.GetFramebufferParameter and 31 other functions /// public enum FramebufferTarget : int { @@ -37852,7 +39563,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.GetColorTableParameter, GL.Ext.GetColorTableParameter + /// Not used directly. /// public enum GetColorTableParameterPName : int { @@ -37899,47 +39610,87 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Sgi.GetColorTableParameter + /// Used in GL.GetColorTableParameter, GL.Ext.GetColorTableParameter and 1 other function /// public enum GetColorTableParameterPNameSgi : int { + /// + /// Original was GL_COLOR_TABLE_SCALE = 0x80D6 + /// + ColorTableScale = ((int)0x80D6), /// /// Original was GL_COLOR_TABLE_SCALE_SGI = 0x80D6 /// ColorTableScaleSgi = ((int)0x80D6), /// + /// Original was GL_COLOR_TABLE_BIAS = 0x80D7 + /// + ColorTableBias = ((int)0x80D7), + /// /// Original was GL_COLOR_TABLE_BIAS_SGI = 0x80D7 /// ColorTableBiasSgi = ((int)0x80D7), /// + /// Original was GL_COLOR_TABLE_FORMAT = 0x80D8 + /// + ColorTableFormat = ((int)0x80D8), + /// /// Original was GL_COLOR_TABLE_FORMAT_SGI = 0x80D8 /// ColorTableFormatSgi = ((int)0x80D8), /// + /// Original was GL_COLOR_TABLE_WIDTH = 0x80D9 + /// + ColorTableWidth = ((int)0x80D9), + /// /// Original was GL_COLOR_TABLE_WIDTH_SGI = 0x80D9 /// ColorTableWidthSgi = ((int)0x80D9), /// + /// Original was GL_COLOR_TABLE_RED_SIZE = 0x80DA + /// + ColorTableRedSize = ((int)0x80DA), + /// /// Original was GL_COLOR_TABLE_RED_SIZE_SGI = 0x80DA /// ColorTableRedSizeSgi = ((int)0x80DA), /// + /// Original was GL_COLOR_TABLE_GREEN_SIZE = 0x80DB + /// + ColorTableGreenSize = ((int)0x80DB), + /// /// Original was GL_COLOR_TABLE_GREEN_SIZE_SGI = 0x80DB /// ColorTableGreenSizeSgi = ((int)0x80DB), /// + /// Original was GL_COLOR_TABLE_BLUE_SIZE = 0x80DC + /// + ColorTableBlueSize = ((int)0x80DC), + /// /// Original was GL_COLOR_TABLE_BLUE_SIZE_SGI = 0x80DC /// ColorTableBlueSizeSgi = ((int)0x80DC), /// + /// Original was GL_COLOR_TABLE_ALPHA_SIZE = 0x80DD + /// + ColorTableAlphaSize = ((int)0x80DD), + /// /// Original was GL_COLOR_TABLE_ALPHA_SIZE_SGI = 0x80DD /// ColorTableAlphaSizeSgi = ((int)0x80DD), /// + /// Original was GL_COLOR_TABLE_LUMINANCE_SIZE = 0x80DE + /// + ColorTableLuminanceSize = ((int)0x80DE), + /// /// Original was GL_COLOR_TABLE_LUMINANCE_SIZE_SGI = 0x80DE /// ColorTableLuminanceSizeSgi = ((int)0x80DE), /// + /// Original was GL_COLOR_TABLE_INTENSITY_SIZE = 0x80DF + /// + ColorTableIntensitySize = ((int)0x80DF), + /// /// Original was GL_COLOR_TABLE_INTENSITY_SIZE_SGI = 0x80DF /// ColorTableIntensitySizeSgi = ((int)0x80DF), @@ -37950,42 +39701,78 @@ namespace OpenTK.Graphics.OpenGL /// public enum GetConvolutionParameter : int { + /// + /// Original was GL_CONVOLUTION_BORDER_MODE = 0x8013 + /// + ConvolutionBorderMode = ((int)0x8013), /// /// Original was GL_CONVOLUTION_BORDER_MODE_EXT = 0x8013 /// ConvolutionBorderModeExt = ((int)0x8013), /// + /// Original was GL_CONVOLUTION_FILTER_SCALE = 0x8014 + /// + ConvolutionFilterScale = ((int)0x8014), + /// /// Original was GL_CONVOLUTION_FILTER_SCALE_EXT = 0x8014 /// ConvolutionFilterScaleExt = ((int)0x8014), /// + /// Original was GL_CONVOLUTION_FILTER_BIAS = 0x8015 + /// + ConvolutionFilterBias = ((int)0x8015), + /// /// Original was GL_CONVOLUTION_FILTER_BIAS_EXT = 0x8015 /// ConvolutionFilterBiasExt = ((int)0x8015), /// + /// Original was GL_CONVOLUTION_FORMAT = 0x8017 + /// + ConvolutionFormat = ((int)0x8017), + /// /// Original was GL_CONVOLUTION_FORMAT_EXT = 0x8017 /// ConvolutionFormatExt = ((int)0x8017), /// + /// Original was GL_CONVOLUTION_WIDTH = 0x8018 + /// + ConvolutionWidth = ((int)0x8018), + /// /// Original was GL_CONVOLUTION_WIDTH_EXT = 0x8018 /// ConvolutionWidthExt = ((int)0x8018), /// + /// Original was GL_CONVOLUTION_HEIGHT = 0x8019 + /// + ConvolutionHeight = ((int)0x8019), + /// /// Original was GL_CONVOLUTION_HEIGHT_EXT = 0x8019 /// ConvolutionHeightExt = ((int)0x8019), /// + /// Original was GL_MAX_CONVOLUTION_WIDTH = 0x801A + /// + MaxConvolutionWidth = ((int)0x801A), + /// /// Original was GL_MAX_CONVOLUTION_WIDTH_EXT = 0x801A /// MaxConvolutionWidthExt = ((int)0x801A), /// + /// Original was GL_MAX_CONVOLUTION_HEIGHT = 0x801B + /// + MaxConvolutionHeight = ((int)0x801B), + /// /// Original was GL_MAX_CONVOLUTION_HEIGHT_EXT = 0x801B /// MaxConvolutionHeightExt = ((int)0x801B), + /// + /// Original was GL_CONVOLUTION_BORDER_COLOR = 0x8154 + /// + ConvolutionBorderColor = ((int)0x8154), } /// - /// Used in GL.GetConvolutionParameter + /// Not used directly. /// public enum GetConvolutionParameterPName : int { @@ -38028,7 +39815,58 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.GetHistogramParameter + /// Used in GL.Ext.GetFramebufferParameter, GL.Ext.GetNamedFramebufferParameter + /// + public enum GetFramebufferParameter : int + { + /// + /// Original was GL_DOUBLEBUFFER = 0x0C32 + /// + Doublebuffer = ((int)0x0C32), + /// + /// Original was GL_STEREO = 0x0C33 + /// + Stereo = ((int)0x0C33), + /// + /// Original was GL_SAMPLE_BUFFERS = 0x80A8 + /// + SampleBuffers = ((int)0x80A8), + /// + /// Original was GL_SAMPLES = 0x80A9 + /// + Samples = ((int)0x80A9), + /// + /// Original was GL_IMPLEMENTATION_COLOR_READ_TYPE = 0x8B9A + /// + ImplementationColorReadType = ((int)0x8B9A), + /// + /// Original was GL_IMPLEMENTATION_COLOR_READ_FORMAT = 0x8B9B + /// + ImplementationColorReadFormat = ((int)0x8B9B), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_WIDTH = 0x9310 + /// + FramebufferDefaultWidth = ((int)0x9310), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_HEIGHT = 0x9311 + /// + FramebufferDefaultHeight = ((int)0x9311), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_LAYERS = 0x9312 + /// + FramebufferDefaultLayers = ((int)0x9312), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_SAMPLES = 0x9313 + /// + FramebufferDefaultSamples = ((int)0x9313), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_FIXED_SAMPLE_LOCATIONS = 0x9314 + /// + FramebufferDefaultFixedSampleLocations = ((int)0x9314), + } + + /// + /// Not used directly. /// public enum GetHistogramParameterPName : int { @@ -38067,39 +39905,71 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Ext.GetHistogramParameter + /// Used in GL.GetHistogramParameter, GL.Ext.GetHistogramParameter and 1 other function /// public enum GetHistogramParameterPNameExt : int { + /// + /// Original was GL_HISTOGRAM_WIDTH = 0x8026 + /// + HistogramWidth = ((int)0x8026), /// /// Original was GL_HISTOGRAM_WIDTH_EXT = 0x8026 /// HistogramWidthExt = ((int)0x8026), /// + /// Original was GL_HISTOGRAM_FORMAT = 0x8027 + /// + HistogramFormat = ((int)0x8027), + /// /// Original was GL_HISTOGRAM_FORMAT_EXT = 0x8027 /// HistogramFormatExt = ((int)0x8027), /// + /// Original was GL_HISTOGRAM_RED_SIZE = 0x8028 + /// + HistogramRedSize = ((int)0x8028), + /// /// Original was GL_HISTOGRAM_RED_SIZE_EXT = 0x8028 /// HistogramRedSizeExt = ((int)0x8028), /// + /// Original was GL_HISTOGRAM_GREEN_SIZE = 0x8029 + /// + HistogramGreenSize = ((int)0x8029), + /// /// Original was GL_HISTOGRAM_GREEN_SIZE_EXT = 0x8029 /// HistogramGreenSizeExt = ((int)0x8029), /// + /// Original was GL_HISTOGRAM_BLUE_SIZE = 0x802A + /// + HistogramBlueSize = ((int)0x802A), + /// /// Original was GL_HISTOGRAM_BLUE_SIZE_EXT = 0x802A /// HistogramBlueSizeExt = ((int)0x802A), /// + /// Original was GL_HISTOGRAM_ALPHA_SIZE = 0x802B + /// + HistogramAlphaSize = ((int)0x802B), + /// /// Original was GL_HISTOGRAM_ALPHA_SIZE_EXT = 0x802B /// HistogramAlphaSizeExt = ((int)0x802B), /// + /// Original was GL_HISTOGRAM_LUMINANCE_SIZE = 0x802C + /// + HistogramLuminanceSize = ((int)0x802C), + /// /// Original was GL_HISTOGRAM_LUMINANCE_SIZE_EXT = 0x802C /// HistogramLuminanceSizeExt = ((int)0x802C), /// + /// Original was GL_HISTOGRAM_SINK = 0x802D + /// + HistogramSink = ((int)0x802D), + /// /// Original was GL_HISTOGRAM_SINK_EXT = 0x802D /// HistogramSinkExt = ((int)0x802D), @@ -38193,7 +40063,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.GetMap + /// Used in GL.GetMap, GL.Oes.GetMapx /// public enum GetMapQuery : int { @@ -38212,7 +40082,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.GetMinmaxParameter + /// Not used directly. /// public enum GetMinmaxParameterPName : int { @@ -38227,7 +40097,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Ext.GetMinmaxParameter + /// Used in GL.GetMinmaxParameter, GL.Ext.GetMinmaxParameter /// public enum GetMinmaxParameterPNameExt : int { @@ -38308,7 +40178,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.GetBoolean, GL.GetDouble and 4 other functions + /// Used in GL.GetBoolean, GL.GetDouble and 5 other functions /// public enum GetPName : int { @@ -40864,6 +42734,14 @@ namespace OpenTK.Graphics.OpenGL /// InstrumentBufferPointerSgix = ((int)0x8180), /// + /// Original was GL_DEBUG_CALLBACK_FUNCTION = 0x8244 + /// + DebugCallbackFunction = ((int)0x8244), + /// + /// Original was GL_DEBUG_CALLBACK_USER_PARAM = 0x8245 + /// + DebugCallbackUserParam = ((int)0x8245), + /// /// Original was GL_FOG_COORD_ARRAY_POINTER = 0x8456 /// FogCoordArrayPointer = ((int)0x8456), @@ -41027,7 +42905,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.GetTexLevelParameter, GL.GetTexParameter and 10 other functions + /// Used in GL.GetTexLevelParameter, GL.GetTexParameter and 14 other functions /// public enum GetTextureParameter : int { @@ -41442,6 +43320,29 @@ namespace OpenTK.Graphics.OpenGL CompressedRgbaFxt13Dfx = ((int)0x86B1), } + /// + /// Not used directly. + /// + public enum GraphicsResetStatus : int + { + /// + /// Original was GL_NO_ERROR = 0 + /// + NoError = ((int)0), + /// + /// Original was GL_GUILTY_CONTEXT_RESET = 0x8253 + /// + GuiltyContextReset = ((int)0x8253), + /// + /// Original was GL_INNOCENT_CONTEXT_RESET = 0x8254 + /// + InnocentContextReset = ((int)0x8254), + /// + /// Original was GL_UNKNOWN_CONTEXT_RESET = 0x8255 + /// + UnknownContextReset = ((int)0x8255), + } + /// /// Not used directly. /// @@ -41687,7 +43588,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.GetHistogram, GL.GetHistogramParameter and 2 other functions + /// Not used directly. /// public enum HistogramTarget : int { @@ -41702,7 +43603,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Ext.GetHistogram, GL.Ext.GetHistogramParameter and 2 other functions + /// Used in GL.Arb.GetnHistogram, GL.GetHistogram and 9 other functions /// public enum HistogramTargetExt : int { @@ -42068,7 +43969,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Ingr.BlendFuncSeparate + /// Not used directly. /// public enum IngrBlendFuncSeparate : int { @@ -42350,10 +44251,30 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Not used directly. + /// Used in GL.Amd.TexStorageSparse, GL.Amd.TextureStorageSparse and 52 other functions /// public enum InternalFormat : int { + /// + /// Original was GL_DEPTH_COMPONENT = 0x1902 + /// + DepthComponent = ((int)0x1902), + /// + /// Original was GL_RED = 0x1903 + /// + Red = ((int)0x1903), + /// + /// Original was GL_RED_EXT = 0x1903 + /// + RedExt = ((int)0x1903), + /// + /// Original was GL_RGB = 0x1907 + /// + Rgb = ((int)0x1907), + /// + /// Original was GL_RGBA = 0x1908 + /// + Rgba = ((int)0x1908), /// /// Original was GL_R3_G3_B2 = 0x2A10 /// @@ -42443,54 +44364,114 @@ namespace OpenTK.Graphics.OpenGL /// Rgb4 = ((int)0x804F), /// + /// Original was GL_RGB4_EXT = 0x804F + /// + Rgb4Ext = ((int)0x804F), + /// /// Original was GL_RGB5 = 0x8050 /// Rgb5 = ((int)0x8050), /// + /// Original was GL_RGB5_EXT = 0x8050 + /// + Rgb5Ext = ((int)0x8050), + /// /// Original was GL_RGB8 = 0x8051 /// Rgb8 = ((int)0x8051), /// + /// Original was GL_RGB8_EXT = 0x8051 + /// + Rgb8Ext = ((int)0x8051), + /// + /// Original was GL_RGB8_OES = 0x8051 + /// + Rgb8Oes = ((int)0x8051), + /// /// Original was GL_RGB10 = 0x8052 /// Rgb10 = ((int)0x8052), /// + /// Original was GL_RGB10_EXT = 0x8052 + /// + Rgb10Ext = ((int)0x8052), + /// /// Original was GL_RGB12 = 0x8053 /// Rgb12 = ((int)0x8053), /// + /// Original was GL_RGB12_EXT = 0x8053 + /// + Rgb12Ext = ((int)0x8053), + /// /// Original was GL_RGB16 = 0x8054 /// Rgb16 = ((int)0x8054), /// - /// Original was GL_RGBA2 = 0x8055 + /// Original was GL_RGB16_EXT = 0x8054 /// - Rgba2 = ((int)0x8055), + Rgb16Ext = ((int)0x8054), /// /// Original was GL_RGBA4 = 0x8056 /// Rgba4 = ((int)0x8056), /// + /// Original was GL_RGBA4_EXT = 0x8056 + /// + Rgba4Ext = ((int)0x8056), + /// + /// Original was GL_RGBA4_OES = 0x8056 + /// + Rgba4Oes = ((int)0x8056), + /// /// Original was GL_RGB5_A1 = 0x8057 /// Rgb5A1 = ((int)0x8057), /// + /// Original was GL_RGB5_A1_EXT = 0x8057 + /// + Rgb5A1Ext = ((int)0x8057), + /// + /// Original was GL_RGB5_A1_OES = 0x8057 + /// + Rgb5A1Oes = ((int)0x8057), + /// /// Original was GL_RGBA8 = 0x8058 /// Rgba8 = ((int)0x8058), /// + /// Original was GL_RGBA8_EXT = 0x8058 + /// + Rgba8Ext = ((int)0x8058), + /// + /// Original was GL_RGBA8_OES = 0x8058 + /// + Rgba8Oes = ((int)0x8058), + /// /// Original was GL_RGB10_A2 = 0x8059 /// Rgb10A2 = ((int)0x8059), /// + /// Original was GL_RGB10_A2_EXT = 0x8059 + /// + Rgb10A2Ext = ((int)0x8059), + /// /// Original was GL_RGBA12 = 0x805A /// Rgba12 = ((int)0x805A), /// + /// Original was GL_RGBA12_EXT = 0x805A + /// + Rgba12Ext = ((int)0x805A), + /// /// Original was GL_RGBA16 = 0x805B /// Rgba16 = ((int)0x805B), /// + /// Original was GL_RGBA16_EXT = 0x805B + /// + Rgba16Ext = ((int)0x805B), + /// /// Original was GL_DUAL_ALPHA4_SGIS = 0x8110 /// DualAlpha4Sgis = ((int)0x8110), @@ -42571,17 +44552,533 @@ namespace OpenTK.Graphics.OpenGL /// QuadIntensity8Sgis = ((int)0x8123), /// + /// Original was GL_DEPTH_COMPONENT16 = 0x81A5 + /// + DepthComponent16 = ((int)0x81A5), + /// + /// Original was GL_DEPTH_COMPONENT16_ARB = 0x81A5 + /// + DepthComponent16Arb = ((int)0x81A5), + /// + /// Original was GL_DEPTH_COMPONENT16_OES = 0x81A5 + /// + DepthComponent16Oes = ((int)0x81A5), + /// /// Original was GL_DEPTH_COMPONENT16_SGIX = 0x81A5 /// DepthComponent16Sgix = ((int)0x81A5), /// + /// Original was GL_DEPTH_COMPONENT24_ARB = 0x81A6 + /// + DepthComponent24Arb = ((int)0x81A6), + /// + /// Original was GL_DEPTH_COMPONENT24_OES = 0x81A6 + /// + DepthComponent24Oes = ((int)0x81A6), + /// /// Original was GL_DEPTH_COMPONENT24_SGIX = 0x81A6 /// DepthComponent24Sgix = ((int)0x81A6), /// + /// Original was GL_DEPTH_COMPONENT32_ARB = 0x81A7 + /// + DepthComponent32Arb = ((int)0x81A7), + /// + /// Original was GL_DEPTH_COMPONENT32_OES = 0x81A7 + /// + DepthComponent32Oes = ((int)0x81A7), + /// /// Original was GL_DEPTH_COMPONENT32_SGIX = 0x81A7 /// DepthComponent32Sgix = ((int)0x81A7), + /// + /// Original was GL_COMPRESSED_RED = 0x8225 + /// + CompressedRed = ((int)0x8225), + /// + /// Original was GL_COMPRESSED_RG = 0x8226 + /// + CompressedRg = ((int)0x8226), + /// + /// Original was GL_RG = 0x8227 + /// + Rg = ((int)0x8227), + /// + /// Original was GL_R8 = 0x8229 + /// + R8 = ((int)0x8229), + /// + /// Original was GL_R8_EXT = 0x8229 + /// + R8Ext = ((int)0x8229), + /// + /// Original was GL_R16 = 0x822A + /// + R16 = ((int)0x822A), + /// + /// Original was GL_R16_EXT = 0x822A + /// + R16Ext = ((int)0x822A), + /// + /// Original was GL_RG8 = 0x822B + /// + Rg8 = ((int)0x822B), + /// + /// Original was GL_RG8_EXT = 0x822B + /// + Rg8Ext = ((int)0x822B), + /// + /// Original was GL_RG16 = 0x822C + /// + Rg16 = ((int)0x822C), + /// + /// Original was GL_RG16_EXT = 0x822C + /// + Rg16Ext = ((int)0x822C), + /// + /// Original was GL_R16F = 0x822D + /// + R16f = ((int)0x822D), + /// + /// Original was GL_R16F_EXT = 0x822D + /// + R16fExt = ((int)0x822D), + /// + /// Original was GL_R32F = 0x822E + /// + R32f = ((int)0x822E), + /// + /// Original was GL_R32F_EXT = 0x822E + /// + R32fExt = ((int)0x822E), + /// + /// Original was GL_RG16F = 0x822F + /// + Rg16f = ((int)0x822F), + /// + /// Original was GL_RG16F_EXT = 0x822F + /// + Rg16fExt = ((int)0x822F), + /// + /// Original was GL_RG32F = 0x8230 + /// + Rg32f = ((int)0x8230), + /// + /// Original was GL_RG32F_EXT = 0x8230 + /// + Rg32fExt = ((int)0x8230), + /// + /// Original was GL_R8I = 0x8231 + /// + R8i = ((int)0x8231), + /// + /// Original was GL_R8UI = 0x8232 + /// + R8ui = ((int)0x8232), + /// + /// Original was GL_R16I = 0x8233 + /// + R16i = ((int)0x8233), + /// + /// Original was GL_R16UI = 0x8234 + /// + R16ui = ((int)0x8234), + /// + /// Original was GL_R32I = 0x8235 + /// + R32i = ((int)0x8235), + /// + /// Original was GL_R32UI = 0x8236 + /// + R32ui = ((int)0x8236), + /// + /// Original was GL_RG8I = 0x8237 + /// + Rg8i = ((int)0x8237), + /// + /// Original was GL_RG8UI = 0x8238 + /// + Rg8ui = ((int)0x8238), + /// + /// Original was GL_RG16I = 0x8239 + /// + Rg16i = ((int)0x8239), + /// + /// Original was GL_RG16UI = 0x823A + /// + Rg16ui = ((int)0x823A), + /// + /// Original was GL_RG32I = 0x823B + /// + Rg32i = ((int)0x823B), + /// + /// Original was GL_RG32UI = 0x823C + /// + Rg32ui = ((int)0x823C), + /// + /// Original was GL_COMPRESSED_RGB_S3TC_DXT1_EXT = 0x83F0 + /// + CompressedRgbS3tcDxt1Ext = ((int)0x83F0), + /// + /// Original was GL_COMPRESSED_RGBA_S3TC_DXT1_EXT = 0x83F1 + /// + CompressedRgbaS3tcDxt1Ext = ((int)0x83F1), + /// + /// Original was GL_COMPRESSED_RGBA_S3TC_DXT3_EXT = 0x83F2 + /// + CompressedRgbaS3tcDxt3Ext = ((int)0x83F2), + /// + /// Original was GL_COMPRESSED_RGBA_S3TC_DXT5_EXT = 0x83F3 + /// + CompressedRgbaS3tcDxt5Ext = ((int)0x83F3), + /// + /// Original was GL_COMPRESSED_RGB = 0x84ED + /// + CompressedRgb = ((int)0x84ED), + /// + /// Original was GL_COMPRESSED_RGBA = 0x84EE + /// + CompressedRgba = ((int)0x84EE), + /// + /// Original was GL_DEPTH_STENCIL = 0x84F9 + /// + DepthStencil = ((int)0x84F9), + /// + /// Original was GL_DEPTH_STENCIL_EXT = 0x84F9 + /// + DepthStencilExt = ((int)0x84F9), + /// + /// Original was GL_DEPTH_STENCIL_NV = 0x84F9 + /// + DepthStencilNv = ((int)0x84F9), + /// + /// Original was GL_DEPTH_STENCIL_OES = 0x84F9 + /// + DepthStencilOes = ((int)0x84F9), + /// + /// Original was GL_DEPTH_STENCIL_MESA = 0x8750 + /// + DepthStencilMesa = ((int)0x8750), + /// + /// Original was GL_RGBA32F = 0x8814 + /// + Rgba32f = ((int)0x8814), + /// + /// Original was GL_RGBA32F_ARB = 0x8814 + /// + Rgba32fArb = ((int)0x8814), + /// + /// Original was GL_RGBA32F_EXT = 0x8814 + /// + Rgba32fExt = ((int)0x8814), + /// + /// Original was GL_RGBA16F = 0x881A + /// + Rgba16f = ((int)0x881A), + /// + /// Original was GL_RGBA16F_ARB = 0x881A + /// + Rgba16fArb = ((int)0x881A), + /// + /// Original was GL_RGBA16F_EXT = 0x881A + /// + Rgba16fExt = ((int)0x881A), + /// + /// Original was GL_RGB16F = 0x881B + /// + Rgb16f = ((int)0x881B), + /// + /// Original was GL_RGB16F_ARB = 0x881B + /// + Rgb16fArb = ((int)0x881B), + /// + /// Original was GL_RGB16F_EXT = 0x881B + /// + Rgb16fExt = ((int)0x881B), + /// + /// Original was GL_DEPTH24_STENCIL8 = 0x88F0 + /// + Depth24Stencil8 = ((int)0x88F0), + /// + /// Original was GL_DEPTH24_STENCIL8_EXT = 0x88F0 + /// + Depth24Stencil8Ext = ((int)0x88F0), + /// + /// Original was GL_DEPTH24_STENCIL8_OES = 0x88F0 + /// + Depth24Stencil8Oes = ((int)0x88F0), + /// + /// Original was GL_R11F_G11F_B10F = 0x8C3A + /// + R11fG11fB10f = ((int)0x8C3A), + /// + /// Original was GL_R11F_G11F_B10F_APPLE = 0x8C3A + /// + R11fG11fB10fApple = ((int)0x8C3A), + /// + /// Original was GL_R11F_G11F_B10F_EXT = 0x8C3A + /// + R11fG11fB10fExt = ((int)0x8C3A), + /// + /// Original was GL_RGB9_E5 = 0x8C3D + /// + Rgb9E5 = ((int)0x8C3D), + /// + /// Original was GL_RGB9_E5_APPLE = 0x8C3D + /// + Rgb9E5Apple = ((int)0x8C3D), + /// + /// Original was GL_RGB9_E5_EXT = 0x8C3D + /// + Rgb9E5Ext = ((int)0x8C3D), + /// + /// Original was GL_SRGB = 0x8C40 + /// + Srgb = ((int)0x8C40), + /// + /// Original was GL_SRGB_EXT = 0x8C40 + /// + SrgbExt = ((int)0x8C40), + /// + /// Original was GL_SRGB8 = 0x8C41 + /// + Srgb8 = ((int)0x8C41), + /// + /// Original was GL_SRGB8_EXT = 0x8C41 + /// + Srgb8Ext = ((int)0x8C41), + /// + /// Original was GL_SRGB8_NV = 0x8C41 + /// + Srgb8Nv = ((int)0x8C41), + /// + /// Original was GL_SRGB_ALPHA = 0x8C42 + /// + SrgbAlpha = ((int)0x8C42), + /// + /// Original was GL_SRGB_ALPHA_EXT = 0x8C42 + /// + SrgbAlphaExt = ((int)0x8C42), + /// + /// Original was GL_SRGB8_ALPHA8 = 0x8C43 + /// + Srgb8Alpha8 = ((int)0x8C43), + /// + /// Original was GL_SRGB8_ALPHA8_EXT = 0x8C43 + /// + Srgb8Alpha8Ext = ((int)0x8C43), + /// + /// Original was GL_COMPRESSED_SRGB = 0x8C48 + /// + CompressedSrgb = ((int)0x8C48), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA = 0x8C49 + /// + CompressedSrgbAlpha = ((int)0x8C49), + /// + /// Original was GL_COMPRESSED_SRGB_S3TC_DXT1_EXT = 0x8C4C + /// + CompressedSrgbS3tcDxt1Ext = ((int)0x8C4C), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT = 0x8C4D + /// + CompressedSrgbAlphaS3tcDxt1Ext = ((int)0x8C4D), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT = 0x8C4E + /// + CompressedSrgbAlphaS3tcDxt3Ext = ((int)0x8C4E), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT = 0x8C4F + /// + CompressedSrgbAlphaS3tcDxt5Ext = ((int)0x8C4F), + /// + /// Original was GL_DEPTH_COMPONENT32F = 0x8CAC + /// + DepthComponent32f = ((int)0x8CAC), + /// + /// Original was GL_DEPTH32F_STENCIL8 = 0x8CAD + /// + Depth32fStencil8 = ((int)0x8CAD), + /// + /// Original was GL_RGBA32UI = 0x8D70 + /// + Rgba32ui = ((int)0x8D70), + /// + /// Original was GL_RGB32UI = 0x8D71 + /// + Rgb32ui = ((int)0x8D71), + /// + /// Original was GL_RGBA16UI = 0x8D76 + /// + Rgba16ui = ((int)0x8D76), + /// + /// Original was GL_RGB16UI = 0x8D77 + /// + Rgb16ui = ((int)0x8D77), + /// + /// Original was GL_RGBA8UI = 0x8D7C + /// + Rgba8ui = ((int)0x8D7C), + /// + /// Original was GL_RGB8UI = 0x8D7D + /// + Rgb8ui = ((int)0x8D7D), + /// + /// Original was GL_RGBA32I = 0x8D82 + /// + Rgba32i = ((int)0x8D82), + /// + /// Original was GL_RGB32I = 0x8D83 + /// + Rgb32i = ((int)0x8D83), + /// + /// Original was GL_RGBA16I = 0x8D88 + /// + Rgba16i = ((int)0x8D88), + /// + /// Original was GL_RGB16I = 0x8D89 + /// + Rgb16i = ((int)0x8D89), + /// + /// Original was GL_RGBA8I = 0x8D8E + /// + Rgba8i = ((int)0x8D8E), + /// + /// Original was GL_RGB8I = 0x8D8F + /// + Rgb8i = ((int)0x8D8F), + /// + /// Original was GL_DEPTH_COMPONENT32F_NV = 0x8DAB + /// + DepthComponent32fNv = ((int)0x8DAB), + /// + /// Original was GL_DEPTH32F_STENCIL8_NV = 0x8DAC + /// + Depth32fStencil8Nv = ((int)0x8DAC), + /// + /// Original was GL_COMPRESSED_RED_RGTC1 = 0x8DBB + /// + CompressedRedRgtc1 = ((int)0x8DBB), + /// + /// Original was GL_COMPRESSED_RED_RGTC1_EXT = 0x8DBB + /// + CompressedRedRgtc1Ext = ((int)0x8DBB), + /// + /// Original was GL_COMPRESSED_SIGNED_RED_RGTC1 = 0x8DBC + /// + CompressedSignedRedRgtc1 = ((int)0x8DBC), + /// + /// Original was GL_COMPRESSED_SIGNED_RED_RGTC1_EXT = 0x8DBC + /// + CompressedSignedRedRgtc1Ext = ((int)0x8DBC), + /// + /// Original was GL_COMPRESSED_RG_RGTC2 = 0x8DBD + /// + CompressedRgRgtc2 = ((int)0x8DBD), + /// + /// Original was GL_COMPRESSED_SIGNED_RG_RGTC2 = 0x8DBE + /// + CompressedSignedRgRgtc2 = ((int)0x8DBE), + /// + /// Original was GL_COMPRESSED_RGBA_BPTC_UNORM = 0x8E8C + /// + CompressedRgbaBptcUnorm = ((int)0x8E8C), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM = 0x8E8D + /// + CompressedSrgbAlphaBptcUnorm = ((int)0x8E8D), + /// + /// Original was GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT = 0x8E8E + /// + CompressedRgbBptcSignedFloat = ((int)0x8E8E), + /// + /// Original was GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT = 0x8E8F + /// + CompressedRgbBptcUnsignedFloat = ((int)0x8E8F), + /// + /// Original was GL_R8_SNORM = 0x8F94 + /// + R8Snorm = ((int)0x8F94), + /// + /// Original was GL_RG8_SNORM = 0x8F95 + /// + Rg8Snorm = ((int)0x8F95), + /// + /// Original was GL_RGB8_SNORM = 0x8F96 + /// + Rgb8Snorm = ((int)0x8F96), + /// + /// Original was GL_RGBA8_SNORM = 0x8F97 + /// + Rgba8Snorm = ((int)0x8F97), + /// + /// Original was GL_R16_SNORM = 0x8F98 + /// + R16Snorm = ((int)0x8F98), + /// + /// Original was GL_R16_SNORM_EXT = 0x8F98 + /// + R16SnormExt = ((int)0x8F98), + /// + /// Original was GL_RG16_SNORM = 0x8F99 + /// + Rg16Snorm = ((int)0x8F99), + /// + /// Original was GL_RG16_SNORM_EXT = 0x8F99 + /// + Rg16SnormExt = ((int)0x8F99), + /// + /// Original was GL_RGB16_SNORM = 0x8F9A + /// + Rgb16Snorm = ((int)0x8F9A), + /// + /// Original was GL_RGB16_SNORM_EXT = 0x8F9A + /// + Rgb16SnormExt = ((int)0x8F9A), + /// + /// Original was GL_RGB10_A2UI = 0x906F + /// + Rgb10A2ui = ((int)0x906F), + /// + /// Original was GL_COMPRESSED_R11_EAC = 0x9270 + /// + CompressedR11Eac = ((int)0x9270), + /// + /// Original was GL_COMPRESSED_SIGNED_R11_EAC = 0x9271 + /// + CompressedSignedR11Eac = ((int)0x9271), + /// + /// Original was GL_COMPRESSED_RG11_EAC = 0x9272 + /// + CompressedRg11Eac = ((int)0x9272), + /// + /// Original was GL_COMPRESSED_SIGNED_RG11_EAC = 0x9273 + /// + CompressedSignedRg11Eac = ((int)0x9273), + /// + /// Original was GL_COMPRESSED_RGB8_ETC2 = 0x9274 + /// + CompressedRgb8Etc2 = ((int)0x9274), + /// + /// Original was GL_COMPRESSED_SRGB8_ETC2 = 0x9275 + /// + CompressedSrgb8Etc2 = ((int)0x9275), + /// + /// Original was GL_COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2 = 0x9276 + /// + CompressedRgb8PunchthroughAlpha1Etc2 = ((int)0x9276), + /// + /// Original was GL_COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2 = 0x9277 + /// + CompressedSrgb8PunchthroughAlpha1Etc2 = ((int)0x9277), + /// + /// Original was GL_COMPRESSED_RGBA8_ETC2_EAC = 0x9278 + /// + CompressedRgba8Etc2Eac = ((int)0x9278), + /// + /// Original was GL_COMPRESSED_SRGB8_ALPHA8_ETC2_EAC = 0x9279 + /// + CompressedSrgb8Alpha8Etc2Eac = ((int)0x9279), } /// @@ -42875,6 +45372,297 @@ namespace OpenTK.Graphics.OpenGL NumSampleCounts = ((int)0x9380), } + /// + /// Used in GL.NV.GetInternalformatSample + /// + public enum InternalFormatPName : int + { + /// + /// Original was GL_SAMPLES = 0x80A9 + /// + Samples = ((int)0x80A9), + /// + /// Original was GL_GENERATE_MIPMAP = 0x8191 + /// + GenerateMipmap = ((int)0x8191), + /// + /// Original was GL_INTERNALFORMAT_SUPPORTED = 0x826F + /// + InternalformatSupported = ((int)0x826F), + /// + /// Original was GL_INTERNALFORMAT_PREFERRED = 0x8270 + /// + InternalformatPreferred = ((int)0x8270), + /// + /// Original was GL_INTERNALFORMAT_RED_SIZE = 0x8271 + /// + InternalformatRedSize = ((int)0x8271), + /// + /// Original was GL_INTERNALFORMAT_GREEN_SIZE = 0x8272 + /// + InternalformatGreenSize = ((int)0x8272), + /// + /// Original was GL_INTERNALFORMAT_BLUE_SIZE = 0x8273 + /// + InternalformatBlueSize = ((int)0x8273), + /// + /// Original was GL_INTERNALFORMAT_ALPHA_SIZE = 0x8274 + /// + InternalformatAlphaSize = ((int)0x8274), + /// + /// Original was GL_INTERNALFORMAT_DEPTH_SIZE = 0x8275 + /// + InternalformatDepthSize = ((int)0x8275), + /// + /// Original was GL_INTERNALFORMAT_STENCIL_SIZE = 0x8276 + /// + InternalformatStencilSize = ((int)0x8276), + /// + /// Original was GL_INTERNALFORMAT_SHARED_SIZE = 0x8277 + /// + InternalformatSharedSize = ((int)0x8277), + /// + /// Original was GL_INTERNALFORMAT_RED_TYPE = 0x8278 + /// + InternalformatRedType = ((int)0x8278), + /// + /// Original was GL_INTERNALFORMAT_GREEN_TYPE = 0x8279 + /// + InternalformatGreenType = ((int)0x8279), + /// + /// Original was GL_INTERNALFORMAT_BLUE_TYPE = 0x827A + /// + InternalformatBlueType = ((int)0x827A), + /// + /// Original was GL_INTERNALFORMAT_ALPHA_TYPE = 0x827B + /// + InternalformatAlphaType = ((int)0x827B), + /// + /// Original was GL_INTERNALFORMAT_DEPTH_TYPE = 0x827C + /// + InternalformatDepthType = ((int)0x827C), + /// + /// Original was GL_INTERNALFORMAT_STENCIL_TYPE = 0x827D + /// + InternalformatStencilType = ((int)0x827D), + /// + /// Original was GL_MAX_WIDTH = 0x827E + /// + MaxWidth = ((int)0x827E), + /// + /// Original was GL_MAX_HEIGHT = 0x827F + /// + MaxHeight = ((int)0x827F), + /// + /// Original was GL_MAX_DEPTH = 0x8280 + /// + MaxDepth = ((int)0x8280), + /// + /// Original was GL_MAX_LAYERS = 0x8281 + /// + MaxLayers = ((int)0x8281), + /// + /// Original was GL_COLOR_COMPONENTS = 0x8283 + /// + ColorComponents = ((int)0x8283), + /// + /// Original was GL_COLOR_RENDERABLE = 0x8286 + /// + ColorRenderable = ((int)0x8286), + /// + /// Original was GL_DEPTH_RENDERABLE = 0x8287 + /// + DepthRenderable = ((int)0x8287), + /// + /// Original was GL_STENCIL_RENDERABLE = 0x8288 + /// + StencilRenderable = ((int)0x8288), + /// + /// Original was GL_FRAMEBUFFER_RENDERABLE = 0x8289 + /// + FramebufferRenderable = ((int)0x8289), + /// + /// Original was GL_FRAMEBUFFER_RENDERABLE_LAYERED = 0x828A + /// + FramebufferRenderableLayered = ((int)0x828A), + /// + /// Original was GL_FRAMEBUFFER_BLEND = 0x828B + /// + FramebufferBlend = ((int)0x828B), + /// + /// Original was GL_READ_PIXELS = 0x828C + /// + ReadPixels = ((int)0x828C), + /// + /// Original was GL_READ_PIXELS_FORMAT = 0x828D + /// + ReadPixelsFormat = ((int)0x828D), + /// + /// Original was GL_READ_PIXELS_TYPE = 0x828E + /// + ReadPixelsType = ((int)0x828E), + /// + /// Original was GL_TEXTURE_IMAGE_FORMAT = 0x828F + /// + TextureImageFormat = ((int)0x828F), + /// + /// Original was GL_TEXTURE_IMAGE_TYPE = 0x8290 + /// + TextureImageType = ((int)0x8290), + /// + /// Original was GL_GET_TEXTURE_IMAGE_FORMAT = 0x8291 + /// + GetTextureImageFormat = ((int)0x8291), + /// + /// Original was GL_GET_TEXTURE_IMAGE_TYPE = 0x8292 + /// + GetTextureImageType = ((int)0x8292), + /// + /// Original was GL_MIPMAP = 0x8293 + /// + Mipmap = ((int)0x8293), + /// + /// Original was GL_AUTO_GENERATE_MIPMAP = 0x8295 + /// + AutoGenerateMipmap = ((int)0x8295), + /// + /// Original was GL_COLOR_ENCODING = 0x8296 + /// + ColorEncoding = ((int)0x8296), + /// + /// Original was GL_SRGB_READ = 0x8297 + /// + SrgbRead = ((int)0x8297), + /// + /// Original was GL_SRGB_WRITE = 0x8298 + /// + SrgbWrite = ((int)0x8298), + /// + /// Original was GL_FILTER = 0x829A + /// + Filter = ((int)0x829A), + /// + /// Original was GL_VERTEX_TEXTURE = 0x829B + /// + VertexTexture = ((int)0x829B), + /// + /// Original was GL_TESS_CONTROL_TEXTURE = 0x829C + /// + TessControlTexture = ((int)0x829C), + /// + /// Original was GL_TESS_EVALUATION_TEXTURE = 0x829D + /// + TessEvaluationTexture = ((int)0x829D), + /// + /// Original was GL_GEOMETRY_TEXTURE = 0x829E + /// + GeometryTexture = ((int)0x829E), + /// + /// Original was GL_FRAGMENT_TEXTURE = 0x829F + /// + FragmentTexture = ((int)0x829F), + /// + /// Original was GL_COMPUTE_TEXTURE = 0x82A0 + /// + ComputeTexture = ((int)0x82A0), + /// + /// Original was GL_TEXTURE_SHADOW = 0x82A1 + /// + TextureShadow = ((int)0x82A1), + /// + /// Original was GL_TEXTURE_GATHER = 0x82A2 + /// + TextureGather = ((int)0x82A2), + /// + /// Original was GL_TEXTURE_GATHER_SHADOW = 0x82A3 + /// + TextureGatherShadow = ((int)0x82A3), + /// + /// Original was GL_SHADER_IMAGE_LOAD = 0x82A4 + /// + ShaderImageLoad = ((int)0x82A4), + /// + /// Original was GL_SHADER_IMAGE_STORE = 0x82A5 + /// + ShaderImageStore = ((int)0x82A5), + /// + /// Original was GL_SHADER_IMAGE_ATOMIC = 0x82A6 + /// + ShaderImageAtomic = ((int)0x82A6), + /// + /// Original was GL_IMAGE_TEXEL_SIZE = 0x82A7 + /// + ImageTexelSize = ((int)0x82A7), + /// + /// Original was GL_IMAGE_COMPATIBILITY_CLASS = 0x82A8 + /// + ImageCompatibilityClass = ((int)0x82A8), + /// + /// Original was GL_IMAGE_PIXEL_FORMAT = 0x82A9 + /// + ImagePixelFormat = ((int)0x82A9), + /// + /// Original was GL_IMAGE_PIXEL_TYPE = 0x82AA + /// + ImagePixelType = ((int)0x82AA), + /// + /// Original was GL_SIMULTANEOUS_TEXTURE_AND_DEPTH_TEST = 0x82AC + /// + SimultaneousTextureAndDepthTest = ((int)0x82AC), + /// + /// Original was GL_SIMULTANEOUS_TEXTURE_AND_STENCIL_TEST = 0x82AD + /// + SimultaneousTextureAndStencilTest = ((int)0x82AD), + /// + /// Original was GL_SIMULTANEOUS_TEXTURE_AND_DEPTH_WRITE = 0x82AE + /// + SimultaneousTextureAndDepthWrite = ((int)0x82AE), + /// + /// Original was GL_SIMULTANEOUS_TEXTURE_AND_STENCIL_WRITE = 0x82AF + /// + SimultaneousTextureAndStencilWrite = ((int)0x82AF), + /// + /// Original was GL_TEXTURE_COMPRESSED_BLOCK_WIDTH = 0x82B1 + /// + TextureCompressedBlockWidth = ((int)0x82B1), + /// + /// Original was GL_TEXTURE_COMPRESSED_BLOCK_HEIGHT = 0x82B2 + /// + TextureCompressedBlockHeight = ((int)0x82B2), + /// + /// Original was GL_TEXTURE_COMPRESSED_BLOCK_SIZE = 0x82B3 + /// + TextureCompressedBlockSize = ((int)0x82B3), + /// + /// Original was GL_CLEAR_BUFFER = 0x82B4 + /// + ClearBuffer = ((int)0x82B4), + /// + /// Original was GL_TEXTURE_VIEW = 0x82B5 + /// + TextureView = ((int)0x82B5), + /// + /// Original was GL_VIEW_COMPATIBILITY_CLASS = 0x82B6 + /// + ViewCompatibilityClass = ((int)0x82B6), + /// + /// Original was GL_TEXTURE_COMPRESSED = 0x86A1 + /// + TextureCompressed = ((int)0x86A1), + /// + /// Original was GL_IMAGE_FORMAT_COMPATIBILITY_TYPE = 0x90C7 + /// + ImageFormatCompatibilityType = ((int)0x90C7), + /// + /// Original was GL_CLEAR_TEXTURE = 0x9365 + /// + ClearTexture = ((int)0x9365), + /// + /// Original was GL_NUM_SAMPLE_COUNTS = 0x9380 + /// + NumSampleCounts = ((int)0x9380), + } + /// /// Not used directly. /// @@ -42985,7 +45773,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Khr.DebugMessageControl, GL.Khr.DebugMessageInsert and 5 other functions + /// Used in GL.Khr.GetObjectLabel, GL.Khr.GetPointer /// public enum KhrDebug : int { @@ -43326,6 +46114,21 @@ namespace OpenTK.Graphics.OpenGL ContextFlagNoErrorBitKhr = ((int)0x00000008), } + /// + /// Not used directly. + /// + public enum KhrParallelShaderCompile : int + { + /// + /// Original was GL_MAX_SHADER_COMPILER_THREADS_KHR = 0x91B0 + /// + MaxShaderCompilerThreadsKhr = ((int)0x91B0), + /// + /// Original was GL_COMPLETION_STATUS_KHR = 0x91B1 + /// + CompletionStatusKhr = ((int)0x91B1), + } + /// /// Not used directly. /// @@ -43707,7 +46510,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.LightModel + /// Used in GL.LightModel, GL.Oes.LightModelx /// public enum LightModelParameter : int { @@ -43734,7 +46537,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.GetLight, GL.Light and 1 other function + /// Used in GL.GetLight, GL.Light and 3 other functions /// public enum LightName : int { @@ -43805,7 +46608,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.GetLight, GL.Light and 1 other function + /// Used in GL.GetLight, GL.Light and 3 other functions /// public enum LightParameter : int { @@ -43996,7 +46799,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Not used directly. + /// Used in GL.Ext.BufferStorageExternal, GL.Ext.NamedBufferStorageExternal /// [Flags] public enum MapBufferUsageMask : int @@ -44054,21 +46857,68 @@ namespace OpenTK.Graphics.OpenGL /// MapPersistentBit = ((int)0x0040), /// + /// Original was GL_MAP_PERSISTENT_BIT_EXT = 0x0040 + /// + MapPersistentBitExt = ((int)0x0040), + /// /// Original was GL_MAP_COHERENT_BIT = 0x0080 /// MapCoherentBit = ((int)0x0080), /// + /// Original was GL_MAP_COHERENT_BIT_EXT = 0x0080 + /// + MapCoherentBitExt = ((int)0x0080), + /// /// Original was GL_DYNAMIC_STORAGE_BIT = 0x0100 /// DynamicStorageBit = ((int)0x0100), /// + /// Original was GL_DYNAMIC_STORAGE_BIT_EXT = 0x0100 + /// + DynamicStorageBitExt = ((int)0x0100), + /// /// Original was GL_CLIENT_STORAGE_BIT = 0x0200 /// ClientStorageBit = ((int)0x0200), + /// + /// Original was GL_CLIENT_STORAGE_BIT_EXT = 0x0200 + /// + ClientStorageBitExt = ((int)0x0200), + /// + /// Original was GL_SPARSE_STORAGE_BIT_ARB = 0x0400 + /// + SparseStorageBitArb = ((int)0x0400), + /// + /// Original was GL_LGPU_SEPARATE_STORAGE_BIT_NVX = 0x0800 + /// + LgpuSeparateStorageBitNvx = ((int)0x0800), + /// + /// Original was GL_PER_GPU_STORAGE_BIT_NV = 0x0800 + /// + PerGpuStorageBitNv = ((int)0x0800), } /// - /// Used in GL.GetMap, GL.Map1 and 1 other function + /// Used in GL.Arb.GetnMap, GL.GetnMap + /// + public enum MapQuery : int + { + /// + /// Original was GL_COEFF = 0x0A00 + /// + Coeff = ((int)0x0A00), + /// + /// Original was GL_ORDER = 0x0A01 + /// + Order = ((int)0x0A01), + /// + /// Original was GL_DOMAIN = 0x0A02 + /// + Domain = ((int)0x0A02), + } + + /// + /// Used in GL.Arb.GetnMap, GL.GetMap and 6 other functions /// public enum MapTarget : int { @@ -44174,7 +47024,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.ColorMaterial, GL.GetMaterial and 8 other functions + /// Used in GL.ColorMaterial, GL.GetMaterial and 10 other functions /// public enum MaterialFace : int { @@ -44193,7 +47043,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.GetMaterial, GL.Material and 5 other functions + /// Used in GL.GetMaterial, GL.Material and 7 other functions /// public enum MaterialParameter : int { @@ -44477,7 +47327,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Not used directly. + /// Used in GL.Ext.MemoryBarrier /// [Flags] public enum MemoryBarrierMask : int @@ -44591,6 +47441,10 @@ namespace OpenTK.Graphics.OpenGL /// ClientMappedBufferBarrierBit = ((int)0x00004000), /// + /// Original was GL_CLIENT_MAPPED_BUFFER_BARRIER_BIT_EXT = 0x00004000 + /// + ClientMappedBufferBarrierBitExt = ((int)0x00004000), + /// /// Original was GL_QUERY_BUFFER_BARRIER_BIT = 0x00008000 /// QueryBufferBarrierBit = ((int)0x00008000), @@ -44661,6 +47515,17 @@ namespace OpenTK.Graphics.OpenGL PackInvertMesa = ((int)0x8758), } + /// + /// Not used directly. + /// + public enum MesaProgramBinaryFormats : int + { + /// + /// Original was GL_PROGRAM_BINARY_FORMAT_MESA = 0x875F + /// + ProgramBinaryFormatMesa = ((int)0x875F), + } + /// /// Not used directly. /// @@ -44675,6 +47540,25 @@ namespace OpenTK.Graphics.OpenGL { } + /// + /// Not used directly. + /// + public enum MesaTileRasterOrder : int + { + /// + /// Original was GL_TILE_RASTER_ORDER_FIXED_MESA = 0x8BB8 + /// + TileRasterOrderFixedMesa = ((int)0x8BB8), + /// + /// Original was GL_TILE_RASTER_ORDER_INCREASING_X_MESA = 0x8BB9 + /// + TileRasterOrderIncreasingXMesa = ((int)0x8BB9), + /// + /// Original was GL_TILE_RASTER_ORDER_INCREASING_Y_MESA = 0x8BBA + /// + TileRasterOrderIncreasingYMesa = ((int)0x8BBA), + } + /// /// Not used directly. /// @@ -44767,7 +47651,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.GetMinmax, GL.GetMinmaxParameter and 2 other functions + /// Not used directly. /// public enum MinmaxTarget : int { @@ -44778,7 +47662,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Ext.GetMinmax, GL.Ext.GetMinmaxParameter and 2 other functions + /// Used in GL.Arb.GetnMinmax, GL.GetMinmax and 8 other functions /// public enum MinmaxTargetExt : int { @@ -44855,21 +47739,21 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.NV.MultiDrawElementsIndirectBindles + /// Not used directly. /// public enum NvBindlessMultiDrawIndirect : int { } /// - /// Used in GL.NV.MultiDrawElementsIndirectBindlessCount + /// Not used directly. /// public enum NvBindlessMultiDrawIndirectCount : int { } /// - /// Used in GL.NV.GetImageHandle, GL.NV.MakeImageHandleResident + /// Used in GL.NV.MakeImageHandleResident /// public enum NvBindlessTexture : int { @@ -45139,7 +48023,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.NV.DrawCommandsAddres, GL.NV.DrawCommands and 3 other functions + /// Used in GL.NV.DrawCommandsAddres, GL.NV.DrawCommands and 2 other functions /// public enum NvCommandList : int { @@ -45237,7 +48121,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.NV.BeginConditionalRender + /// Not used directly. /// public enum NvConditionalRender : int { @@ -45301,6 +48185,17 @@ namespace OpenTK.Graphics.OpenGL ConservativeRasterDilateGranularityNv = ((int)0x937B), } + /// + /// Not used directly. + /// + public enum NvConservativeRasterPreSnap : int + { + /// + /// Original was GL_CONSERVATIVE_RASTER_MODE_PRE_SNAP_NV = 0x9550 + /// + ConservativeRasterModePreSnapNv = ((int)0x9550), + } + /// /// Used in GL.NV.ConservativeRasterParameter /// @@ -45320,6 +48215,13 @@ namespace OpenTK.Graphics.OpenGL ConservativeRasterModePreSnapTrianglesNv = ((int)0x954F), } + /// + /// Not used directly. + /// + public enum NvConservativeRasterUnderestimation : int + { + } + /// /// Not used directly. /// @@ -45336,7 +48238,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.NV.CopyImageSubData + /// Not used directly. /// public enum NvCopyImage : int { @@ -46187,7 +49089,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.NV.GetInternalformatSample + /// Not used directly. /// public enum NvInternalformatSampleQuery : int { @@ -46335,7 +49237,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.NV.CoverFillPathInstanced, GL.NV.CoverFillPath and 37 other functions + /// Used in GL.NV.GetProgramResource, GL.NV.MatrixLoad3x2 and 18 other functions /// public enum NvPathRendering : int { @@ -47104,6 +50006,44 @@ namespace OpenTK.Graphics.OpenGL PrimitiveRestartIndexNv = ((int)0x8559), } + /// + /// Used in GL.NV.QueryResource + /// + public enum NvQueryResource : int + { + /// + /// Original was GL_QUERY_RESOURCE_TYPE_VIDMEM_ALLOC_NV = 0x9540 + /// + QueryResourceTypeVidmemAllocNv = ((int)0x9540), + /// + /// Original was GL_QUERY_RESOURCE_MEMTYPE_VIDMEM_NV = 0x9542 + /// + QueryResourceMemtypeVidmemNv = ((int)0x9542), + /// + /// Original was GL_QUERY_RESOURCE_SYS_RESERVED_NV = 0x9544 + /// + QueryResourceSysReservedNv = ((int)0x9544), + /// + /// Original was GL_QUERY_RESOURCE_TEXTURE_NV = 0x9545 + /// + QueryResourceTextureNv = ((int)0x9545), + /// + /// Original was GL_QUERY_RESOURCE_RENDERBUFFER_NV = 0x9546 + /// + QueryResourceRenderbufferNv = ((int)0x9546), + /// + /// Original was GL_QUERY_RESOURCE_BUFFEROBJECT_NV = 0x9547 + /// + QueryResourceBufferobjectNv = ((int)0x9547), + } + + /// + /// Not used directly. + /// + public enum NvQueryResourceTag : int + { + } + /// /// Used in GL.NV.CombinerInput, GL.NV.CombinerOutput and 5 other functions /// @@ -47358,7 +50298,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.NV.FramebufferSampleLocations + /// Not used directly. /// public enum NvSampleLocations : int { @@ -47631,7 +50571,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.NV.TexImage2DMultisampleCoverage, GL.NV.TexImage3DMultisampleCoverage and 4 other functions + /// Not used directly. /// public enum NvTextureMultisample : int { @@ -48061,7 +51001,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.NV.BeginTransformFeedback, GL.NV.BindBufferBase and 6 other functions + /// Used in GL.NV.GetActiveVarying, GL.NV.TransformFeedbackAttrib and 2 other functions /// public enum NvTransformFeedback : int { @@ -48295,7 +51235,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.NV.GetVertexAttrib, GL.NV.GetVertexAttribL and 1 other function + /// Used in GL.NV.GetVertexAttrib /// public enum NvVertexAttribInteger64bit : int { @@ -48310,7 +51250,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.NV.BufferAddressRange, GL.NV.ColorFormat and 9 other functions + /// Used in GL.NV.BufferAddressRange, GL.NV.ColorFormat and 7 other functions /// public enum NvVertexBufferUnifiedMemory : int { @@ -48796,7 +51736,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Ext.GetVertexAttribI, GL.Ext.VertexAttribIPointer + /// Not used directly. /// public enum NvVertexProgram4 : int { @@ -49047,6 +51987,57 @@ namespace OpenTK.Graphics.OpenGL MaxLgpuGpusNvx = ((int)0x92BA), } + /// + /// Used in GL.Khr.ObjectLabel + /// + public enum ObjectIdentifier : int + { + /// + /// Original was GL_TEXTURE = 0x1702 + /// + Texture = ((int)0x1702), + /// + /// Original was GL_VERTEX_ARRAY = 0x8074 + /// + VertexArray = ((int)0x8074), + /// + /// Original was GL_BUFFER = 0x82E0 + /// + Buffer = ((int)0x82E0), + /// + /// Original was GL_SHADER = 0x82E1 + /// + Shader = ((int)0x82E1), + /// + /// Original was GL_PROGRAM = 0x82E2 + /// + Program = ((int)0x82E2), + /// + /// Original was GL_QUERY = 0x82E3 + /// + Query = ((int)0x82E3), + /// + /// Original was GL_PROGRAM_PIPELINE = 0x82E4 + /// + ProgramPipeline = ((int)0x82E4), + /// + /// Original was GL_SAMPLER = 0x82E6 + /// + Sampler = ((int)0x82E6), + /// + /// Original was GL_FRAMEBUFFER = 0x8D40 + /// + Framebuffer = ((int)0x8D40), + /// + /// Original was GL_RENDERBUFFER = 0x8D41 + /// + Renderbuffer = ((int)0x8D41), + /// + /// Original was GL_TRANSFORM_FEEDBACK = 0x8E22 + /// + TransformFeedback = ((int)0x8E22), + } + /// /// Used in GL.GetObjectLabel, GL.ObjectLabel /// @@ -49127,7 +52118,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Oes.MultiTexCoord1, GL.Oes.MultiTexCoord2 and 2 other functions + /// Not used directly. /// public enum OesByteCoordinates : int { @@ -49185,7 +52176,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.GetPixelMapx, GL.PixelMapx and 32 other functions + /// Used in GL.Oes.Accumx, GL.Oes.FeedbackBufferx and 2 other functions /// public enum OesFixedPoint : int { @@ -49218,7 +52209,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Oes.ClipPlane, GL.Oes.GetClipPlane + /// Not used directly. /// public enum OesSinglePrecision : int { @@ -49356,6 +52347,465 @@ namespace OpenTK.Graphics.OpenGL PatchVertices = ((int)0x8E72), } + /// + /// Not used directly. + /// + public enum PatchParameterName : int + { + /// + /// Original was GL_PATCH_VERTICES = 0x8E72 + /// + PatchVertices = ((int)0x8E72), + /// + /// Original was GL_PATCH_DEFAULT_INNER_LEVEL = 0x8E73 + /// + PatchDefaultInnerLevel = ((int)0x8E73), + /// + /// Original was GL_PATCH_DEFAULT_OUTER_LEVEL = 0x8E74 + /// + PatchDefaultOuterLevel = ((int)0x8E74), + } + + /// + /// Used in GL.NV.GetPathColorGen, GL.NV.PathColorGen and 1 other function + /// + public enum PathColor : int + { + /// + /// Original was GL_PRIMARY_COLOR_NV = 0x852C + /// + PrimaryColorNv = ((int)0x852C), + /// + /// Original was GL_SECONDARY_COLOR_NV = 0x852D + /// + SecondaryColorNv = ((int)0x852D), + /// + /// Original was GL_PRIMARY_COLOR = 0x8577 + /// + PrimaryColor = ((int)0x8577), + } + + /// + /// Used in GL.NV.CoverFillPathInstanced, GL.NV.CoverFillPath and 2 other functions + /// + public enum PathCoverMode : int + { + /// + /// Original was GL_PATH_FILL_COVER_MODE_NV = 0x9082 + /// + PathFillCoverModeNv = ((int)0x9082), + /// + /// Original was GL_CONVEX_HULL_NV = 0x908B + /// + ConvexHullNv = ((int)0x908B), + /// + /// Original was GL_BOUNDING_BOX_NV = 0x908D + /// + BoundingBoxNv = ((int)0x908D), + /// + /// Original was GL_BOUNDING_BOX_OF_BOUNDING_BOXES_NV = 0x909C + /// + BoundingBoxOfBoundingBoxesNv = ((int)0x909C), + } + + /// + /// Used in GL.NV.CoverFillPathInstanced, GL.NV.CoverStrokePathInstanced and 5 other functions + /// + public enum PathElementType : int + { + /// + /// Original was GL_UTF8_NV = 0x909A + /// + Utf8Nv = ((int)0x909A), + /// + /// Original was GL_UTF16_NV = 0x909B + /// + Utf16Nv = ((int)0x909B), + } + + /// + /// Used in GL.NV.StencilFillPathInstanced, GL.NV.StencilFillPath + /// + public enum PathFillMode : int + { + /// + /// Original was GL_INVERT = 0x150A + /// + Invert = ((int)0x150A), + /// + /// Original was GL_PATH_FILL_MODE_NV = 0x9080 + /// + PathFillModeNv = ((int)0x9080), + /// + /// Original was GL_COUNT_UP_NV = 0x9088 + /// + CountUpNv = ((int)0x9088), + /// + /// Original was GL_COUNT_DOWN_NV = 0x9089 + /// + CountDownNv = ((int)0x9089), + } + + /// + /// Used in GL.NV.PathGlyphIndexArray, GL.NV.PathGlyphIndexRange and 2 other functions + /// + public enum PathFontStyle : int + { + /// + /// Original was GL_NONE = 0 + /// + None = ((int)0), + /// + /// Original was GL_BOLD_BIT_NV = 0x01 + /// + BoldBitNv = ((int)0x01), + /// + /// Original was GL_ITALIC_BIT_NV = 0x02 + /// + ItalicBitNv = ((int)0x02), + } + + /// + /// Used in GL.NV.PathGlyphRange, GL.NV.PathGlyph + /// + public enum PathFontTarget : int + { + /// + /// Original was GL_STANDARD_FONT_NAME_NV = 0x9072 + /// + StandardFontNameNv = ((int)0x9072), + /// + /// Original was GL_SYSTEM_FONT_NAME_NV = 0x9073 + /// + SystemFontNameNv = ((int)0x9073), + /// + /// Original was GL_FILE_NAME_NV = 0x9074 + /// + FileNameNv = ((int)0x9074), + } + + /// + /// Used in GL.NV.GetPathColorGen, GL.NV.GetPathTexGen and 3 other functions + /// + public enum PathGenMode : int + { + /// + /// Original was GL_NONE = 0 + /// + None = ((int)0), + /// + /// Original was GL_EYE_LINEAR = 0x2400 + /// + EyeLinear = ((int)0x2400), + /// + /// Original was GL_OBJECT_LINEAR = 0x2401 + /// + ObjectLinear = ((int)0x2401), + /// + /// Original was GL_CONSTANT = 0x8576 + /// + Constant = ((int)0x8576), + /// + /// Original was GL_PATH_OBJECT_BOUNDING_BOX_NV = 0x908A + /// + PathObjectBoundingBoxNv = ((int)0x908A), + } + + /// + /// Used in GL.NV.PathGlyphRange, GL.NV.PathGlyph + /// + public enum PathHandleMissingGlyphs : int + { + /// + /// Original was GL_SKIP_MISSING_GLYPH_NV = 0x90A9 + /// + SkipMissingGlyphNv = ((int)0x90A9), + /// + /// Original was GL_USE_MISSING_GLYPH_NV = 0x90AA + /// + UseMissingGlyphNv = ((int)0x90AA), + } + + /// + /// Used in GL.NV.GetPathSpacing + /// + public enum PathListMode : int + { + /// + /// Original was GL_ACCUM_ADJACENT_PAIRS_NV = 0x90AD + /// + AccumAdjacentPairsNv = ((int)0x90AD), + /// + /// Original was GL_ADJACENT_PAIRS_NV = 0x90AE + /// + AdjacentPairsNv = ((int)0x90AE), + /// + /// Original was GL_FIRST_TO_REST_NV = 0x90AF + /// + FirstToRestNv = ((int)0x90AF), + } + + /// + /// Used in GL.NV.GetPathMetricRange, GL.NV.GetPathMetric + /// + [Flags] + public enum PathMetricMask : int + { + /// + /// Original was GL_FONT_X_MIN_BOUNDS_BIT_NV = 0x00010000 + /// + FontXMinBoundsBitNv = ((int)0x00010000), + /// + /// Original was GL_FONT_Y_MIN_BOUNDS_BIT_NV = 0x00020000 + /// + FontYMinBoundsBitNv = ((int)0x00020000), + /// + /// Original was GL_FONT_X_MAX_BOUNDS_BIT_NV = 0x00040000 + /// + FontXMaxBoundsBitNv = ((int)0x00040000), + /// + /// Original was GL_FONT_Y_MAX_BOUNDS_BIT_NV = 0x00080000 + /// + FontYMaxBoundsBitNv = ((int)0x00080000), + /// + /// Original was GL_FONT_UNITS_PER_EM_BIT_NV = 0x00100000 + /// + FontUnitsPerEmBitNv = ((int)0x00100000), + /// + /// Original was GL_FONT_ASCENDER_BIT_NV = 0x00200000 + /// + FontAscenderBitNv = ((int)0x00200000), + /// + /// Original was GL_FONT_DESCENDER_BIT_NV = 0x00400000 + /// + FontDescenderBitNv = ((int)0x00400000), + /// + /// Original was GL_FONT_HEIGHT_BIT_NV = 0x00800000 + /// + FontHeightBitNv = ((int)0x00800000), + /// + /// Original was GL_GLYPH_WIDTH_BIT_NV = 0x01 + /// + GlyphWidthBitNv = ((int)0x01), + /// + /// Original was GL_FONT_MAX_ADVANCE_WIDTH_BIT_NV = 0x01000000 + /// + FontMaxAdvanceWidthBitNv = ((int)0x01000000), + /// + /// Original was GL_GLYPH_HEIGHT_BIT_NV = 0x02 + /// + GlyphHeightBitNv = ((int)0x02), + /// + /// Original was GL_FONT_MAX_ADVANCE_HEIGHT_BIT_NV = 0x02000000 + /// + FontMaxAdvanceHeightBitNv = ((int)0x02000000), + /// + /// Original was GL_GLYPH_HORIZONTAL_BEARING_X_BIT_NV = 0x04 + /// + GlyphHorizontalBearingXBitNv = ((int)0x04), + /// + /// Original was GL_FONT_UNDERLINE_POSITION_BIT_NV = 0x04000000 + /// + FontUnderlinePositionBitNv = ((int)0x04000000), + /// + /// Original was GL_GLYPH_HORIZONTAL_BEARING_Y_BIT_NV = 0x08 + /// + GlyphHorizontalBearingYBitNv = ((int)0x08), + /// + /// Original was GL_FONT_UNDERLINE_THICKNESS_BIT_NV = 0x08000000 + /// + FontUnderlineThicknessBitNv = ((int)0x08000000), + /// + /// Original was GL_GLYPH_HORIZONTAL_BEARING_ADVANCE_BIT_NV = 0x10 + /// + GlyphHorizontalBearingAdvanceBitNv = ((int)0x10), + /// + /// Original was GL_GLYPH_HAS_KERNING_BIT_NV = 0x100 + /// + GlyphHasKerningBitNv = ((int)0x100), + /// + /// Original was GL_FONT_HAS_KERNING_BIT_NV = 0x10000000 + /// + FontHasKerningBitNv = ((int)0x10000000), + /// + /// Original was GL_GLYPH_VERTICAL_BEARING_X_BIT_NV = 0x20 + /// + GlyphVerticalBearingXBitNv = ((int)0x20), + /// + /// Original was GL_FONT_NUM_GLYPH_INDICES_BIT_NV = 0x20000000 + /// + FontNumGlyphIndicesBitNv = ((int)0x20000000), + /// + /// Original was GL_GLYPH_VERTICAL_BEARING_Y_BIT_NV = 0x40 + /// + GlyphVerticalBearingYBitNv = ((int)0x40), + /// + /// Original was GL_GLYPH_VERTICAL_BEARING_ADVANCE_BIT_NV = 0x80 + /// + GlyphVerticalBearingAdvanceBitNv = ((int)0x80), + } + + /// + /// Used in GL.NV.GetPathParameter, GL.NV.PathParameter + /// + public enum PathParameter : int + { + /// + /// Original was GL_PATH_STROKE_WIDTH_NV = 0x9075 + /// + PathStrokeWidthNv = ((int)0x9075), + /// + /// Original was GL_PATH_END_CAPS_NV = 0x9076 + /// + PathEndCapsNv = ((int)0x9076), + /// + /// Original was GL_PATH_INITIAL_END_CAP_NV = 0x9077 + /// + PathInitialEndCapNv = ((int)0x9077), + /// + /// Original was GL_PATH_TERMINAL_END_CAP_NV = 0x9078 + /// + PathTerminalEndCapNv = ((int)0x9078), + /// + /// Original was GL_PATH_JOIN_STYLE_NV = 0x9079 + /// + PathJoinStyleNv = ((int)0x9079), + /// + /// Original was GL_PATH_MITER_LIMIT_NV = 0x907A + /// + PathMiterLimitNv = ((int)0x907A), + /// + /// Original was GL_PATH_DASH_CAPS_NV = 0x907B + /// + PathDashCapsNv = ((int)0x907B), + /// + /// Original was GL_PATH_INITIAL_DASH_CAP_NV = 0x907C + /// + PathInitialDashCapNv = ((int)0x907C), + /// + /// Original was GL_PATH_TERMINAL_DASH_CAP_NV = 0x907D + /// + PathTerminalDashCapNv = ((int)0x907D), + /// + /// Original was GL_PATH_DASH_OFFSET_NV = 0x907E + /// + PathDashOffsetNv = ((int)0x907E), + /// + /// Original was GL_PATH_CLIENT_LENGTH_NV = 0x907F + /// + PathClientLengthNv = ((int)0x907F), + /// + /// Original was GL_PATH_FILL_MODE_NV = 0x9080 + /// + PathFillModeNv = ((int)0x9080), + /// + /// Original was GL_PATH_FILL_MASK_NV = 0x9081 + /// + PathFillMaskNv = ((int)0x9081), + /// + /// Original was GL_PATH_FILL_COVER_MODE_NV = 0x9082 + /// + PathFillCoverModeNv = ((int)0x9082), + /// + /// Original was GL_PATH_STROKE_COVER_MODE_NV = 0x9083 + /// + PathStrokeCoverModeNv = ((int)0x9083), + /// + /// Original was GL_PATH_STROKE_MASK_NV = 0x9084 + /// + PathStrokeMaskNv = ((int)0x9084), + /// + /// Original was GL_PATH_OBJECT_BOUNDING_BOX_NV = 0x908A + /// + PathObjectBoundingBoxNv = ((int)0x908A), + /// + /// Original was GL_PATH_COMMAND_COUNT_NV = 0x909D + /// + PathCommandCountNv = ((int)0x909D), + /// + /// Original was GL_PATH_COORD_COUNT_NV = 0x909E + /// + PathCoordCountNv = ((int)0x909E), + /// + /// Original was GL_PATH_DASH_ARRAY_COUNT_NV = 0x909F + /// + PathDashArrayCountNv = ((int)0x909F), + /// + /// Original was GL_PATH_COMPUTED_LENGTH_NV = 0x90A0 + /// + PathComputedLengthNv = ((int)0x90A0), + /// + /// Original was GL_PATH_FILL_BOUNDING_BOX_NV = 0x90A1 + /// + PathFillBoundingBoxNv = ((int)0x90A1), + /// + /// Original was GL_PATH_STROKE_BOUNDING_BOX_NV = 0x90A2 + /// + PathStrokeBoundingBoxNv = ((int)0x90A2), + /// + /// Original was GL_PATH_DASH_OFFSET_RESET_NV = 0x90B4 + /// + PathDashOffsetResetNv = ((int)0x90B4), + } + + /// + /// Used in GL.NV.PathString + /// + public enum PathStringFormat : int + { + /// + /// Original was GL_PATH_FORMAT_SVG_NV = 0x9070 + /// + PathFormatSvgNv = ((int)0x9070), + /// + /// Original was GL_PATH_FORMAT_PS_NV = 0x9071 + /// + PathFormatPsNv = ((int)0x9071), + } + + /// + /// Used in GL.NV.CoverFillPathInstanced, GL.NV.CoverStrokePathInstanced and 4 other functions + /// + public enum PathTransformType : int + { + /// + /// Original was GL_NONE = 0 + /// + None = ((int)0), + /// + /// Original was GL_TRANSLATE_X_NV = 0x908E + /// + TranslateXNv = ((int)0x908E), + /// + /// Original was GL_TRANSLATE_Y_NV = 0x908F + /// + TranslateYNv = ((int)0x908F), + /// + /// Original was GL_TRANSLATE_2D_NV = 0x9090 + /// + Translate2DNv = ((int)0x9090), + /// + /// Original was GL_TRANSLATE_3D_NV = 0x9091 + /// + Translate3DNv = ((int)0x9091), + /// + /// Original was GL_AFFINE_2D_NV = 0x9092 + /// + Affine2DNv = ((int)0x9092), + /// + /// Original was GL_AFFINE_3D_NV = 0x9094 + /// + Affine3DNv = ((int)0x9094), + /// + /// Original was GL_TRANSPOSE_AFFINE_2D_NV = 0x9096 + /// + TransposeAffine2DNv = ((int)0x9096), + /// + /// Original was GL_TRANSPOSE_AFFINE_3D_NV = 0x9098 + /// + TransposeAffine3DNv = ((int)0x9098), + } + /// /// Used in GL.Pgi.Hint /// @@ -49538,6 +52988,41 @@ namespace OpenTK.Graphics.OpenGL Texcoord4BitPgi = unchecked((int)0x80000000), } + /// + /// Used in GL.Ext.GetProgramPipeline + /// + public enum PipelineParameterName : int + { + /// + /// Original was GL_ACTIVE_PROGRAM = 0x8259 + /// + ActiveProgram = ((int)0x8259), + /// + /// Original was GL_FRAGMENT_SHADER = 0x8B30 + /// + FragmentShader = ((int)0x8B30), + /// + /// Original was GL_VERTEX_SHADER = 0x8B31 + /// + VertexShader = ((int)0x8B31), + /// + /// Original was GL_INFO_LOG_LENGTH = 0x8B84 + /// + InfoLogLength = ((int)0x8B84), + /// + /// Original was GL_GEOMETRY_SHADER = 0x8DD9 + /// + GeometryShader = ((int)0x8DD9), + /// + /// Original was GL_TESS_EVALUATION_SHADER = 0x8E87 + /// + TessEvaluationShader = ((int)0x8E87), + /// + /// Original was GL_TESS_CONTROL_SHADER = 0x8E88 + /// + TessControlShader = ((int)0x8E88), + } + /// /// Used in GL.CopyPixels /// @@ -49570,7 +53055,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Arb.CompressedTexSubImage1D, GL.Arb.CompressedTexSubImage2D and 80 other functions + /// Used in GL.Arb.CompressedTexSubImage1D, GL.Arb.CompressedTexSubImage2D and 94 other functions /// public enum PixelFormat : int { @@ -49725,7 +53210,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Arb.CompressedTexImage1D, GL.Arb.CompressedTexImage2D and 45 other functions + /// Used in GL.ClearBufferData, GL.ClearBufferSubData and 12 other functions /// public enum PixelInternalFormat : int { @@ -50412,7 +53897,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.GetPixelMap, GL.PixelMap + /// Used in GL.Arb.GetnPixelMap, GL.GetnPixelMap and 4 other functions /// public enum PixelMap : int { @@ -50459,7 +53944,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.PixelStore + /// Used in GL.PixelStore, GL.PixelStorex /// public enum PixelStoreParameter : int { @@ -50750,7 +54235,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.PixelTransfer + /// Used in GL.PixelTransfer, GL.Oes.PixelTransferx /// public enum PixelTransferParameter : int { @@ -50941,7 +54426,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Arb.ReadnPixels, GL.ClearTexImage and 61 other functions + /// Used in GL.Arb.GetnColorTable, GL.Arb.GetnConvolutionFilter and 77 other functions /// public enum PixelType : int { @@ -51200,7 +54685,38 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Amd.MultiDrawArraysIndirect, GL.Amd.MultiDrawElementsIndirect and 49 other functions + /// Not used directly. + /// + public enum PrecisionType : int + { + /// + /// Original was GL_LOW_FLOAT = 0x8DF0 + /// + LowFloat = ((int)0x8DF0), + /// + /// Original was GL_MEDIUM_FLOAT = 0x8DF1 + /// + MediumFloat = ((int)0x8DF1), + /// + /// Original was GL_HIGH_FLOAT = 0x8DF2 + /// + HighFloat = ((int)0x8DF2), + /// + /// Original was GL_LOW_INT = 0x8DF3 + /// + LowInt = ((int)0x8DF3), + /// + /// Original was GL_MEDIUM_INT = 0x8DF4 + /// + MediumInt = ((int)0x8DF4), + /// + /// Original was GL_HIGH_INT = 0x8DF5 + /// + HighInt = ((int)0x8DF5), + } + + /// + /// Used in GL.Amd.MultiDrawArraysIndirect, GL.Amd.MultiDrawElementsIndirect and 51 other functions /// public enum PrimitiveType : int { @@ -51307,7 +54823,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.GetProgramInterface, GL.GetProgramResourceIndex and 4 other functions + /// Used in GL.GetProgramInterface, GL.GetProgramResourceIndex and 5 other functions /// public enum ProgramInterface : int { @@ -51420,6 +54936,29 @@ namespace OpenTK.Graphics.OpenGL MaxNumCompatibleSubroutines = ((int)0x92F8), } + /// + /// Not used directly. + /// + public enum ProgramInterfacePName : int + { + /// + /// Original was GL_ACTIVE_RESOURCES = 0x92F5 + /// + ActiveResources = ((int)0x92F5), + /// + /// Original was GL_MAX_NAME_LENGTH = 0x92F6 + /// + MaxNameLength = ((int)0x92F6), + /// + /// Original was GL_MAX_NUM_ACTIVE_VARIABLES = 0x92F7 + /// + MaxNumActiveVariables = ((int)0x92F7), + /// + /// Original was GL_MAX_NUM_COMPATIBLE_SUBROUTINES = 0x92F8 + /// + MaxNumCompatibleSubroutines = ((int)0x92F8), + } + /// /// Used in GL.GetProgram /// @@ -51609,7 +55148,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.GetProgramResource, GL.Ext.GetNamedProgram + /// Used in GL.GetProgramResource /// public enum ProgramProperty : int { @@ -51727,6 +55266,93 @@ namespace OpenTK.Graphics.OpenGL TransformFeedbackBufferStride = ((int)0x934C), } + /// + /// Used in GL.Ext.GetNamedProgram + /// + public enum ProgramPropertyArb : int + { + /// + /// Original was GL_COMPUTE_WORK_GROUP_SIZE = 0x8267 + /// + ComputeWorkGroupSize = ((int)0x8267), + /// + /// Original was GL_PROGRAM_BINARY_LENGTH = 0x8741 + /// + ProgramBinaryLength = ((int)0x8741), + /// + /// Original was GL_GEOMETRY_VERTICES_OUT = 0x8916 + /// + GeometryVerticesOut = ((int)0x8916), + /// + /// Original was GL_GEOMETRY_INPUT_TYPE = 0x8917 + /// + GeometryInputType = ((int)0x8917), + /// + /// Original was GL_GEOMETRY_OUTPUT_TYPE = 0x8918 + /// + GeometryOutputType = ((int)0x8918), + /// + /// Original was GL_ACTIVE_UNIFORM_BLOCK_MAX_NAME_LENGTH = 0x8A35 + /// + ActiveUniformBlockMaxNameLength = ((int)0x8A35), + /// + /// Original was GL_ACTIVE_UNIFORM_BLOCKS = 0x8A36 + /// + ActiveUniformBlocks = ((int)0x8A36), + /// + /// Original was GL_DELETE_STATUS = 0x8B80 + /// + DeleteStatus = ((int)0x8B80), + /// + /// Original was GL_LINK_STATUS = 0x8B82 + /// + LinkStatus = ((int)0x8B82), + /// + /// Original was GL_VALIDATE_STATUS = 0x8B83 + /// + ValidateStatus = ((int)0x8B83), + /// + /// Original was GL_INFO_LOG_LENGTH = 0x8B84 + /// + InfoLogLength = ((int)0x8B84), + /// + /// Original was GL_ATTACHED_SHADERS = 0x8B85 + /// + AttachedShaders = ((int)0x8B85), + /// + /// Original was GL_ACTIVE_UNIFORMS = 0x8B86 + /// + ActiveUniforms = ((int)0x8B86), + /// + /// Original was GL_ACTIVE_UNIFORM_MAX_LENGTH = 0x8B87 + /// + ActiveUniformMaxLength = ((int)0x8B87), + /// + /// Original was GL_ACTIVE_ATTRIBUTES = 0x8B89 + /// + ActiveAttributes = ((int)0x8B89), + /// + /// Original was GL_ACTIVE_ATTRIBUTE_MAX_LENGTH = 0x8B8A + /// + ActiveAttributeMaxLength = ((int)0x8B8A), + /// + /// Original was GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH = 0x8C76 + /// + TransformFeedbackVaryingMaxLength = ((int)0x8C76), + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER_MODE = 0x8C7F + /// + TransformFeedbackBufferMode = ((int)0x8C7F), + /// + /// Original was GL_TRANSFORM_FEEDBACK_VARYINGS = 0x8C83 + /// + TransformFeedbackVaryings = ((int)0x8C83), + /// + /// Original was GL_ACTIVE_ATOMIC_COUNTER_BUFFERS = 0x92D9 + /// + ActiveAtomicCounterBuffers = ((int)0x92D9), + } + /// /// Used in GL.UseProgramStages /// @@ -51790,6 +55416,33 @@ namespace OpenTK.Graphics.OpenGL ActiveSubroutineUniformMaxLength = ((int)0x8E49), } + /// + /// Not used directly. + /// + public enum ProgramStagePName : int + { + /// + /// Original was GL_ACTIVE_SUBROUTINES = 0x8DE5 + /// + ActiveSubroutines = ((int)0x8DE5), + /// + /// Original was GL_ACTIVE_SUBROUTINE_UNIFORMS = 0x8DE6 + /// + ActiveSubroutineUniforms = ((int)0x8DE6), + /// + /// Original was GL_ACTIVE_SUBROUTINE_UNIFORM_LOCATIONS = 0x8E47 + /// + ActiveSubroutineUniformLocations = ((int)0x8E47), + /// + /// Original was GL_ACTIVE_SUBROUTINE_MAX_LENGTH = 0x8E48 + /// + ActiveSubroutineMaxLength = ((int)0x8E48), + /// + /// Original was GL_ACTIVE_SUBROUTINE_UNIFORM_MAX_LENGTH = 0x8E49 + /// + ActiveSubroutineUniformMaxLength = ((int)0x8E49), + } + /// /// Used in GL.ProvokingVertex /// @@ -51817,7 +55470,45 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.BeginQuery, GL.BeginQueryIndexed and 5 other functions + /// Used in GL.Arb.GetQueryObject, GL.GetQueryBufferObject and 1 other function + /// + public enum QueryObjectParameterName : int + { + /// + /// Original was GL_QUERY_TARGET = 0x82EA + /// + QueryTarget = ((int)0x82EA), + /// + /// Original was GL_QUERY_RESULT = 0x8866 + /// + QueryResult = ((int)0x8866), + /// + /// Original was GL_QUERY_RESULT_AVAILABLE = 0x8867 + /// + QueryResultAvailable = ((int)0x8867), + /// + /// Original was GL_QUERY_RESULT_NO_WAIT = 0x9194 + /// + QueryResultNoWait = ((int)0x9194), + } + + /// + /// Used in GL.Arb.GetQuery + /// + public enum QueryParameterName : int + { + /// + /// Original was GL_QUERY_COUNTER_BITS = 0x8864 + /// + QueryCounterBits = ((int)0x8864), + /// + /// Original was GL_CURRENT_QUERY = 0x8865 + /// + CurrentQuery = ((int)0x8865), + } + + /// + /// Used in GL.Amd.QueryObjectParameter, GL.Arb.EndQuery and 8 other functions /// public enum QueryTarget : int { @@ -52586,40 +56277,40 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.GetSamplerParameter, GL.SamplerParameter and 1 other function + /// Used in GL.GetSamplerParameter, GL.GetSamplerParameterI and 2 other functions /// public enum SamplerParameterName : int { /// - /// Original was GL_TextureBorderColor = 0x1004 + /// Original was GL_TEXTURE_BORDER_COLOR = 0x1004 /// TextureBorderColor = ((int)0x1004), /// - /// Original was GL_TextureMagFilter = 0x2800 + /// Original was GL_TEXTURE_MAG_FILTER = 0x2800 /// TextureMagFilter = ((int)0x2800), /// - /// Original was GL_TextureMinFilter = 0x2801 + /// Original was GL_TEXTURE_MIN_FILTER = 0x2801 /// TextureMinFilter = ((int)0x2801), /// - /// Original was GL_TextureWrapS = 0x2802 + /// Original was GL_TEXTURE_WRAP_S = 0x2802 /// TextureWrapS = ((int)0x2802), /// - /// Original was GL_TextureWrapT = 0x2803 + /// Original was GL_TEXTURE_WRAP_T = 0x2803 /// TextureWrapT = ((int)0x2803), /// - /// Original was GL_TextureWrapR = 0x8072 + /// Original was GL_TEXTURE_WRAP_R = 0x8072 /// TextureWrapR = ((int)0x8072), /// - /// Original was GL_TextureMinLod = 0x813A + /// Original was GL_TEXTURE_MIN_LOD = 0x813A /// TextureMinLod = ((int)0x813A), /// - /// Original was GL_TextureMaxLod = 0x813B + /// Original was GL_TEXTURE_MAX_LOD = 0x813B /// TextureMaxLod = ((int)0x813B), /// @@ -52631,11 +56322,11 @@ namespace OpenTK.Graphics.OpenGL /// TextureLodBias = ((int)0x8501), /// - /// Original was GL_TextureCompareMode = 0x884C + /// Original was GL_TEXTURE_COMPARE_MODE = 0x884C /// TextureCompareMode = ((int)0x884C), /// - /// Original was GL_TextureCompareFunc = 0x884D + /// Original was GL_TEXTURE_COMPARE_FUNC = 0x884D /// TextureCompareFunc = ((int)0x884D), } @@ -52652,7 +56343,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.GetSeparableFilter, GL.SeparableFilter2D + /// Not used directly. /// public enum SeparableTarget : int { @@ -52663,7 +56354,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Ext.GetSeparableFilter, GL.Ext.SeparableFilter2D + /// Used in GL.Arb.GetnSeparableFilter, GL.GetnSeparableFilter and 4 other functions /// public enum SeparableTargetExt : int { @@ -54096,6 +57787,33 @@ namespace OpenTK.Graphics.OpenGL ShaderSourceLength = ((int)0x8B88), } + /// + /// Not used directly. + /// + public enum ShaderParameterName : int + { + /// + /// Original was GL_SHADER_TYPE = 0x8B4F + /// + ShaderType = ((int)0x8B4F), + /// + /// Original was GL_DELETE_STATUS = 0x8B80 + /// + DeleteStatus = ((int)0x8B80), + /// + /// Original was GL_COMPILE_STATUS = 0x8B81 + /// + CompileStatus = ((int)0x8B81), + /// + /// Original was GL_INFO_LOG_LENGTH = 0x8B84 + /// + InfoLogLength = ((int)0x8B84), + /// + /// Original was GL_SHADER_SOURCE_LENGTH = 0x8B88 + /// + ShaderSourceLength = ((int)0x8B88), + } + /// /// Used in GL.GetShaderPrecisionFormat /// @@ -54128,7 +57846,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.CreateShader, GL.CreateShaderProgram and 9 other functions + /// Used in GL.Arb.CreateShaderObject, GL.CreateShader and 12 other functions /// public enum ShaderType : int { @@ -54137,10 +57855,18 @@ namespace OpenTK.Graphics.OpenGL /// FragmentShader = ((int)0x8B30), /// + /// Original was GL_FRAGMENT_SHADER_ARB = 0x8B30 + /// + FragmentShaderArb = ((int)0x8B30), + /// /// Original was GL_VERTEX_SHADER = 0x8B31 /// VertexShader = ((int)0x8B31), /// + /// Original was GL_VERTEX_SHADER_ARB = 0x8B31 + /// + VertexShaderArb = ((int)0x8B31), + /// /// Original was GL_GEOMETRY_SHADER = 0x8DD9 /// GeometryShader = ((int)0x8DD9), @@ -54462,6 +58188,29 @@ namespace OpenTK.Graphics.OpenGL ShadingLanguageVersion = ((int)0x8B8C), } + /// + /// Not used directly. + /// + public enum SubroutineParameterName : int + { + /// + /// Original was GL_UNIFORM_SIZE = 0x8A38 + /// + UniformSize = ((int)0x8A38), + /// + /// Original was GL_UNIFORM_NAME_LENGTH = 0x8A39 + /// + UniformNameLength = ((int)0x8A39), + /// + /// Original was GL_NUM_COMPATIBLE_SUBROUTINES = 0x8E4A + /// + NumCompatibleSubroutines = ((int)0x8E4A), + /// + /// Original was GL_COMPATIBLE_SUBROUTINES = 0x8E4B + /// + CompatibleSubroutines = ((int)0x8E4B), + } + /// /// Not used directly. /// @@ -54622,6 +58371,22 @@ namespace OpenTK.Graphics.OpenGL SyncGpuCommandsComplete = ((int)0x9117), } + /// + /// Not used directly. + /// + [Flags] + public enum SyncObjectMask : int + { + /// + /// Original was GL_SYNC_FLUSH_COMMANDS_BIT = 0x00000001 + /// + SyncFlushCommandsBit = ((int)0x00000001), + /// + /// Original was GL_SYNC_FLUSH_COMMANDS_BIT_APPLE = 0x00000001 + /// + SyncFlushCommandsBitApple = ((int)0x00000001), + } + /// /// Used in GL.GetSync /// @@ -54645,6 +58410,29 @@ namespace OpenTK.Graphics.OpenGL SyncFlags = ((int)0x9115), } + /// + /// Not used directly. + /// + public enum SyncStatus : int + { + /// + /// Original was GL_ALREADY_SIGNALED = 0x911A + /// + AlreadySignaled = ((int)0x911A), + /// + /// Original was GL_TIMEOUT_EXPIRED = 0x911B + /// + TimeoutExpired = ((int)0x911B), + /// + /// Original was GL_CONDITION_SATISFIED = 0x911C + /// + ConditionSatisfied = ((int)0x911C), + /// + /// Original was GL_WAIT_FAILED = 0x911D + /// + WaitFailed = ((int)0x911D), + } + /// /// Used in GL.TexCoordPointer, GL.Ext.MultiTexCoordPointer and 4 other functions /// @@ -54730,7 +58518,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.GetTexGen, GL.TexGend and 5 other functions + /// Used in GL.GetTexGen, GL.TexGend and 7 other functions /// public enum TextureCoordName : int { @@ -55054,7 +58842,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.GetTexEnv, GL.TexEnv and 2 other functions + /// Used in GL.GetTexEnv, GL.TexEnv and 4 other functions /// public enum TextureEnvParameter : int { @@ -55141,7 +58929,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.GetTexEnv, GL.TexEnv and 2 other functions + /// Used in GL.GetTexEnv, GL.TexEnv and 4 other functions /// public enum TextureEnvTarget : int { @@ -55214,7 +59002,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.GetTexGen, GL.TexGend and 5 other functions + /// Used in GL.GetTexGen, GL.TexGend and 7 other functions /// public enum TextureGenParameter : int { @@ -55253,6 +59041,14 @@ namespace OpenTK.Graphics.OpenGL /// public enum TextureLayout : int { + /// + /// Original was GL_LAYOUT_DEPTH_READ_ONLY_STENCIL_ATTACHMENT_EXT = 0x9530 + /// + LayoutDepthReadOnlyStencilAttachmentExt = ((int)0x9530), + /// + /// Original was GL_LAYOUT_DEPTH_ATTACHMENT_STENCIL_READ_ONLY_EXT = 0x9531 + /// + LayoutDepthAttachmentStencilReadOnlyExt = ((int)0x9531), /// /// Original was GL_LAYOUT_GENERAL_EXT = 0x958D /// @@ -55402,15 +59198,39 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.TexParameter, GL.TexParameterI and 6 other functions + /// Used in GL.TexParameter, GL.TexParameterI and 7 other functions /// public enum TextureParameterName : int { + /// + /// Original was GL_TEXTURE_WIDTH = 0x1000 + /// + TextureWidth = ((int)0x1000), + /// + /// Original was GL_TEXTURE_HEIGHT = 0x1001 + /// + TextureHeight = ((int)0x1001), + /// + /// Original was GL_TEXTURE_COMPONENTS = 0x1003 + /// + TextureComponents = ((int)0x1003), + /// + /// Original was GL_TEXTURE_INTERNAL_FORMAT = 0x1003 + /// + TextureInternalFormat = ((int)0x1003), /// /// Original was GL_TEXTURE_BORDER_COLOR = 0x1004 /// TextureBorderColor = ((int)0x1004), /// + /// Original was GL_TEXTURE_BORDER_COLOR_NV = 0x1004 + /// + TextureBorderColorNv = ((int)0x1004), + /// + /// Original was GL_TEXTURE_BORDER = 0x1005 + /// + TextureBorder = ((int)0x1005), + /// /// Original was GL_TEXTURE_MAG_FILTER = 0x2800 /// TextureMagFilter = ((int)0x2800), @@ -55427,6 +59247,30 @@ namespace OpenTK.Graphics.OpenGL /// TextureWrapT = ((int)0x2803), /// + /// Original was GL_TEXTURE_RED_SIZE = 0x805C + /// + TextureRedSize = ((int)0x805C), + /// + /// Original was GL_TEXTURE_GREEN_SIZE = 0x805D + /// + TextureGreenSize = ((int)0x805D), + /// + /// Original was GL_TEXTURE_BLUE_SIZE = 0x805E + /// + TextureBlueSize = ((int)0x805E), + /// + /// Original was GL_TEXTURE_ALPHA_SIZE = 0x805F + /// + TextureAlphaSize = ((int)0x805F), + /// + /// Original was GL_TEXTURE_LUMINANCE_SIZE = 0x8060 + /// + TextureLuminanceSize = ((int)0x8060), + /// + /// Original was GL_TEXTURE_INTENSITY_SIZE = 0x8061 + /// + TextureIntensitySize = ((int)0x8061), + /// /// Original was GL_TEXTURE_PRIORITY = 0x8066 /// TexturePriority = ((int)0x8066), @@ -55435,10 +59279,18 @@ namespace OpenTK.Graphics.OpenGL /// TexturePriorityExt = ((int)0x8066), /// + /// Original was GL_TEXTURE_RESIDENT = 0x8067 + /// + TextureResident = ((int)0x8067), + /// /// Original was GL_TEXTURE_DEPTH = 0x8071 /// TextureDepth = ((int)0x8071), /// + /// Original was GL_TEXTURE_DEPTH_EXT = 0x8071 + /// + TextureDepthExt = ((int)0x8071), + /// /// Original was GL_TEXTURE_WRAP_R = 0x8072 /// TextureWrapR = ((int)0x8072), @@ -55459,6 +59311,14 @@ namespace OpenTK.Graphics.OpenGL /// DetailTextureModeSgis = ((int)0x809B), /// + /// Original was GL_DETAIL_TEXTURE_FUNC_POINTS_SGIS = 0x809C + /// + DetailTextureFuncPointsSgis = ((int)0x809C), + /// + /// Original was GL_SHARPEN_TEXTURE_FUNC_POINTS_SGIS = 0x80B0 + /// + SharpenTextureFuncPointsSgis = ((int)0x80B0), + /// /// Original was GL_SHADOW_AMBIENT_SGIX = 0x80BF /// ShadowAmbientSgix = ((int)0x80BF), @@ -55483,6 +59343,10 @@ namespace OpenTK.Graphics.OpenGL /// ClampToEdge = ((int)0x812F), /// + /// Original was GL_TEXTURE_4DSIZE_SGIS = 0x8136 + /// + Texture4DsizeSgis = ((int)0x8136), + /// /// Original was GL_TEXTURE_WRAP_Q_SGIS = 0x8137 /// TextureWrapQSgis = ((int)0x8137), @@ -55491,18 +59355,38 @@ namespace OpenTK.Graphics.OpenGL /// TextureMinLod = ((int)0x813A), /// + /// Original was GL_TEXTURE_MIN_LOD_SGIS = 0x813A + /// + TextureMinLodSgis = ((int)0x813A), + /// /// Original was GL_TEXTURE_MAX_LOD = 0x813B /// TextureMaxLod = ((int)0x813B), /// + /// Original was GL_TEXTURE_MAX_LOD_SGIS = 0x813B + /// + TextureMaxLodSgis = ((int)0x813B), + /// /// Original was GL_TEXTURE_BASE_LEVEL = 0x813C /// TextureBaseLevel = ((int)0x813C), /// + /// Original was GL_TEXTURE_BASE_LEVEL_SGIS = 0x813C + /// + TextureBaseLevelSgis = ((int)0x813C), + /// /// Original was GL_TEXTURE_MAX_LEVEL = 0x813D /// TextureMaxLevel = ((int)0x813D), /// + /// Original was GL_TEXTURE_MAX_LEVEL_SGIS = 0x813D + /// + TextureMaxLevelSgis = ((int)0x813D), + /// + /// Original was GL_TEXTURE_FILTER4_SIZE_SGIS = 0x8147 + /// + TextureFilter4SizeSgis = ((int)0x8147), + /// /// Original was GL_TEXTURE_CLIPMAP_CENTER_SGIX = 0x8171 /// TextureClipmapCenterSgix = ((int)0x8171), @@ -55559,6 +59443,18 @@ namespace OpenTK.Graphics.OpenGL /// TextureCompareSgix = ((int)0x819A), /// + /// Original was GL_TEXTURE_COMPARE_OPERATOR_SGIX = 0x819B + /// + TextureCompareOperatorSgix = ((int)0x819B), + /// + /// Original was GL_TEXTURE_LEQUAL_R_SGIX = 0x819C + /// + TextureLequalRSgix = ((int)0x819C), + /// + /// Original was GL_TEXTURE_GEQUAL_R_SGIX = 0x819D + /// + TextureGequalRSgix = ((int)0x819D), + /// /// Original was GL_TEXTURE_MAX_CLAMP_S_SGIX = 0x8369 /// TextureMaxClampSSgix = ((int)0x8369), @@ -55617,7 +59513,19 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Arb.CompressedTexImage1D, GL.Arb.CompressedTexImage2D and 129 other functions + /// Used in GL.Amd.TexStorageSparse, GL.Amd.TextureStorageSparse + /// + [Flags] + public enum TextureStorageMaskAmd : int + { + /// + /// Original was GL_TEXTURE_STORAGE_SPARSE_BIT_AMD = 0x00000001 + /// + TextureStorageSparseBitAmd = ((int)0x00000001), + } + + /// + /// Used in GL.Amd.TexStorageSparse, GL.Arb.CompressedTexImage1D and 144 other functions /// public enum TextureTarget : int { @@ -55954,7 +59862,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Arb.ActiveTexture, GL.Arb.ClientActiveTexture and 55 other functions + /// Used in GL.Arb.ActiveTexture, GL.Arb.ClientActiveTexture and 63 other functions /// public enum TextureUnit : int { @@ -56180,6 +60088,33 @@ namespace OpenTK.Graphics.OpenGL TransformFeedbackActive = ((int)0x8E24), } + /// + /// Not used directly. + /// + public enum TransformFeedbackPName : int + { + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER_START = 0x8C84 + /// + TransformFeedbackBufferStart = ((int)0x8C84), + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER_SIZE = 0x8C85 + /// + TransformFeedbackBufferSize = ((int)0x8C85), + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER_BINDING = 0x8C8F + /// + TransformFeedbackBufferBinding = ((int)0x8C8F), + /// + /// Original was GL_TRANSFORM_FEEDBACK_PAUSED = 0x8E23 + /// + TransformFeedbackPaused = ((int)0x8E23), + /// + /// Original was GL_TRANSFORM_FEEDBACK_ACTIVE = 0x8E24 + /// + TransformFeedbackActive = ((int)0x8E24), + } + /// /// Used in GL.BeginTransformFeedback /// @@ -56353,9 +60288,126 @@ namespace OpenTK.Graphics.OpenGL DoubleVec4 = ((int)0x8FFE), } + /// + /// Used in GL.Ext.GetDouble, GL.Ext.GetDoubleIndexed and 7 other functions + /// + public enum TypeEnum : int + { + /// + /// Original was GL_QUERY_WAIT = 0x8E13 + /// + QueryWait = ((int)0x8E13), + /// + /// Original was GL_QUERY_NO_WAIT = 0x8E14 + /// + QueryNoWait = ((int)0x8E14), + /// + /// Original was GL_QUERY_BY_REGION_WAIT = 0x8E15 + /// + QueryByRegionWait = ((int)0x8E15), + /// + /// Original was GL_QUERY_BY_REGION_NO_WAIT = 0x8E16 + /// + QueryByRegionNoWait = ((int)0x8E16), + } + /// /// Not used directly. /// + public enum UniformBlockPName : int + { + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_CONTROL_SHADER = 0x84F0 + /// + UniformBlockReferencedByTessControlShader = ((int)0x84F0), + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_EVALUATION_SHADER = 0x84F1 + /// + UniformBlockReferencedByTessEvaluationShader = ((int)0x84F1), + /// + /// Original was GL_UNIFORM_BLOCK_BINDING = 0x8A3F + /// + UniformBlockBinding = ((int)0x8A3F), + /// + /// Original was GL_UNIFORM_BLOCK_DATA_SIZE = 0x8A40 + /// + UniformBlockDataSize = ((int)0x8A40), + /// + /// Original was GL_UNIFORM_BLOCK_NAME_LENGTH = 0x8A41 + /// + UniformBlockNameLength = ((int)0x8A41), + /// + /// Original was GL_UNIFORM_BLOCK_ACTIVE_UNIFORMS = 0x8A42 + /// + UniformBlockActiveUniforms = ((int)0x8A42), + /// + /// Original was GL_UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES = 0x8A43 + /// + UniformBlockActiveUniformIndices = ((int)0x8A43), + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER = 0x8A44 + /// + UniformBlockReferencedByVertexShader = ((int)0x8A44), + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_GEOMETRY_SHADER = 0x8A45 + /// + UniformBlockReferencedByGeometryShader = ((int)0x8A45), + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER = 0x8A46 + /// + UniformBlockReferencedByFragmentShader = ((int)0x8A46), + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_COMPUTE_SHADER = 0x90EC + /// + UniformBlockReferencedByComputeShader = ((int)0x90EC), + } + + /// + /// Not used directly. + /// + public enum UniformPName : int + { + /// + /// Original was GL_UNIFORM_TYPE = 0x8A37 + /// + UniformType = ((int)0x8A37), + /// + /// Original was GL_UNIFORM_SIZE = 0x8A38 + /// + UniformSize = ((int)0x8A38), + /// + /// Original was GL_UNIFORM_NAME_LENGTH = 0x8A39 + /// + UniformNameLength = ((int)0x8A39), + /// + /// Original was GL_UNIFORM_BLOCK_INDEX = 0x8A3A + /// + UniformBlockIndex = ((int)0x8A3A), + /// + /// Original was GL_UNIFORM_OFFSET = 0x8A3B + /// + UniformOffset = ((int)0x8A3B), + /// + /// Original was GL_UNIFORM_ARRAY_STRIDE = 0x8A3C + /// + UniformArrayStride = ((int)0x8A3C), + /// + /// Original was GL_UNIFORM_MATRIX_STRIDE = 0x8A3D + /// + UniformMatrixStride = ((int)0x8A3D), + /// + /// Original was GL_UNIFORM_IS_ROW_MAJOR = 0x8A3E + /// + UniformIsRowMajor = ((int)0x8A3E), + /// + /// Original was GL_UNIFORM_ATOMIC_COUNTER_BUFFER_INDEX = 0x92DA + /// + UniformAtomicCounterBufferIndex = ((int)0x92DA), + } + + /// + /// Used in GL.Ext.UseProgramStages + /// [Flags] public enum UseProgramStageMask : int { @@ -56384,6 +60436,10 @@ namespace OpenTK.Graphics.OpenGL /// GeometryShaderBitExt = ((int)0x00000004), /// + /// Original was GL_GEOMETRY_SHADER_BIT_OES = 0x00000004 + /// + GeometryShaderBitOes = ((int)0x00000004), + /// /// Original was GL_TESS_CONTROL_SHADER_BIT = 0x00000008 /// TessControlShaderBit = ((int)0x00000008), @@ -56392,6 +60448,10 @@ namespace OpenTK.Graphics.OpenGL /// TessControlShaderBitExt = ((int)0x00000008), /// + /// Original was GL_TESS_CONTROL_SHADER_BIT_OES = 0x00000008 + /// + TessControlShaderBitOes = ((int)0x00000008), + /// /// Original was GL_TESS_EVALUATION_SHADER_BIT = 0x00000010 /// TessEvaluationShaderBit = ((int)0x00000010), @@ -56400,6 +60460,10 @@ namespace OpenTK.Graphics.OpenGL /// TessEvaluationShaderBitExt = ((int)0x00000010), /// + /// Original was GL_TESS_EVALUATION_SHADER_BIT_OES = 0x00000010 + /// + TessEvaluationShaderBitOes = ((int)0x00000010), + /// /// Original was GL_COMPUTE_SHADER_BIT = 0x00000020 /// ComputeShaderBit = ((int)0x00000020), @@ -59123,6 +63187,10 @@ namespace OpenTK.Graphics.OpenGL /// OneMinusConstantAlpha = ((int)0x8004), /// + /// Original was GL_BLEND_COLOR = 0x8005 + /// + BlendColor = ((int)0x8005), + /// /// Original was GL_FUNC_ADD = 0x8006 /// FuncAdd = ((int)0x8006), @@ -59135,6 +63203,10 @@ namespace OpenTK.Graphics.OpenGL /// Max = ((int)0x8008), /// + /// Original was GL_BLEND_EQUATION = 0x8009 + /// + BlendEquation = ((int)0x8009), + /// /// Original was GL_FUNC_SUBTRACT = 0x800A /// FuncSubtract = ((int)0x800A), @@ -63573,7 +67645,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.GetnColorTable, GL.GetnCompressedTexImage and 7 other functions + /// Not used directly. /// public enum Version45 : int { @@ -63907,6 +67979,49 @@ namespace OpenTK.Graphics.OpenGL ElementArrayBufferBinding = ((int)0x8895), } + /// + /// Used in GL.Ext.GetVertexArrayInteger, GL.Ext.GetVertexArrayPointer + /// + public enum VertexArrayPName : int + { + /// + /// Original was GL_VERTEX_ATTRIB_RELATIVE_OFFSET = 0x82D5 + /// + VertexAttribRelativeOffset = ((int)0x82D5), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_ENABLED = 0x8622 + /// + VertexAttribArrayEnabled = ((int)0x8622), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_SIZE = 0x8623 + /// + VertexAttribArraySize = ((int)0x8623), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_STRIDE = 0x8624 + /// + VertexAttribArrayStride = ((int)0x8624), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_TYPE = 0x8625 + /// + VertexAttribArrayType = ((int)0x8625), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_LONG = 0x874E + /// + VertexAttribArrayLong = ((int)0x874E), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_NORMALIZED = 0x886A + /// + VertexAttribArrayNormalized = ((int)0x886A), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_INTEGER = 0x88FD + /// + VertexAttribArrayInteger = ((int)0x88FD), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_DIVISOR = 0x88FE + /// + VertexAttribArrayDivisor = ((int)0x88FE), + } + /// /// Used in GL.VertexAttribLFormat, GL.VertexAttribLPointer /// @@ -63929,6 +68044,49 @@ namespace OpenTK.Graphics.OpenGL Double = ((int)0x140A), } + /// + /// Used in GL.Ext.GetVertexAttribI, GL.Ext.GetVertexAttribL and 2 other functions + /// + public enum VertexAttribEnum : int + { + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_ENABLED = 0x8622 + /// + VertexAttribArrayEnabled = ((int)0x8622), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_SIZE = 0x8623 + /// + VertexAttribArraySize = ((int)0x8623), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_STRIDE = 0x8624 + /// + VertexAttribArrayStride = ((int)0x8624), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_TYPE = 0x8625 + /// + VertexAttribArrayType = ((int)0x8625), + /// + /// Original was GL_CURRENT_VERTEX_ATTRIB = 0x8626 + /// + CurrentVertexAttrib = ((int)0x8626), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_NORMALIZED = 0x886A + /// + VertexAttribArrayNormalized = ((int)0x886A), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING = 0x889F + /// + VertexAttribArrayBufferBinding = ((int)0x889F), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_INTEGER = 0x88FD + /// + VertexAttribArrayInteger = ((int)0x88FD), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_DIVISOR = 0x88FE + /// + VertexAttribArrayDivisor = ((int)0x88FE), + } + /// /// Used in GL.VertexAttribIFormat, GL.VertexAttribIPointer /// @@ -64088,7 +68246,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.Ati.VertexAttribArrayObject, GL.VertexAttribPointer and 1 other function + /// Used in GL.Ati.VertexAttribArrayObject, GL.VertexAttribPointer and 3 other functions /// public enum VertexAttribPointerType : int { @@ -64137,6 +68295,10 @@ namespace OpenTK.Graphics.OpenGL /// UnsignedInt2101010Rev = ((int)0x8368), /// + /// Original was GL_UNSIGNED_INT_10F_11F_11F_REV = 0x8C3B + /// + UnsignedInt10F11F11FRev = ((int)0x8C3B), + /// /// Original was GL_INT_2_10_10_10_REV = 0x8D9F /// Int2101010Rev = ((int)0x8D9F), @@ -64182,7 +68344,7 @@ namespace OpenTK.Graphics.OpenGL } /// - /// Used in GL.VertexArrayAttribFormat, GL.VertexArrayAttribIFormat and 1 other function + /// Used in GL.VertexArrayAttribFormat, GL.VertexArrayAttribIFormat and 3 other functions /// public enum VertexAttribType : int { @@ -64231,13 +68393,103 @@ namespace OpenTK.Graphics.OpenGL /// UnsignedInt2101010Rev = ((int)0x8368), /// + /// Original was GL_UNSIGNED_INT_10F_11F_11F_REV = 0x8C3B + /// + UnsignedInt10F11F11FRev = ((int)0x8C3B), + /// /// Original was GL_INT_2_10_10_10_REV = 0x8D9F /// Int2101010Rev = ((int)0x8D9F), } /// - /// Used in GL.VertexPointer, GL.Ext.VertexArrayVertexOffset and 5 other functions + /// Not used directly. + /// + public enum VertexBufferObjectParameter : int + { + /// + /// Original was GL_BUFFER_IMMUTABLE_STORAGE = 0x821F + /// + BufferImmutableStorage = ((int)0x821F), + /// + /// Original was GL_BUFFER_STORAGE_FLAGS = 0x8220 + /// + BufferStorageFlags = ((int)0x8220), + /// + /// Original was GL_BUFFER_SIZE = 0x8764 + /// + BufferSize = ((int)0x8764), + /// + /// Original was GL_BUFFER_USAGE = 0x8765 + /// + BufferUsage = ((int)0x8765), + /// + /// Original was GL_BUFFER_ACCESS = 0x88BB + /// + BufferAccess = ((int)0x88BB), + /// + /// Original was GL_BUFFER_MAPPED = 0x88BC + /// + BufferMapped = ((int)0x88BC), + /// + /// Original was GL_BUFFER_ACCESS_FLAGS = 0x911F + /// + BufferAccessFlags = ((int)0x911F), + /// + /// Original was GL_BUFFER_MAP_LENGTH = 0x9120 + /// + BufferMapLength = ((int)0x9120), + /// + /// Original was GL_BUFFER_MAP_OFFSET = 0x9121 + /// + BufferMapOffset = ((int)0x9121), + } + + /// + /// Not used directly. + /// + public enum VertexBufferObjectUsage : int + { + /// + /// Original was GL_STREAM_DRAW = 0x88E0 + /// + StreamDraw = ((int)0x88E0), + /// + /// Original was GL_STREAM_READ = 0x88E1 + /// + StreamRead = ((int)0x88E1), + /// + /// Original was GL_STREAM_COPY = 0x88E2 + /// + StreamCopy = ((int)0x88E2), + /// + /// Original was GL_STATIC_DRAW = 0x88E4 + /// + StaticDraw = ((int)0x88E4), + /// + /// Original was GL_STATIC_READ = 0x88E5 + /// + StaticRead = ((int)0x88E5), + /// + /// Original was GL_STATIC_COPY = 0x88E6 + /// + StaticCopy = ((int)0x88E6), + /// + /// Original was GL_DYNAMIC_DRAW = 0x88E8 + /// + DynamicDraw = ((int)0x88E8), + /// + /// Original was GL_DYNAMIC_READ = 0x88E9 + /// + DynamicRead = ((int)0x88E9), + /// + /// Original was GL_DYNAMIC_COPY = 0x88EA + /// + DynamicCopy = ((int)0x88EA), + } + + /// + /// Used in GL.VertexPointer, GL.Ext.VertexArrayVertexOffset and 6 other functions /// public enum VertexPointerType : int { @@ -64271,6 +68523,21 @@ namespace OpenTK.Graphics.OpenGL Int2101010Rev = ((int)0x8D9F), } + /// + /// Used in GL.Ext.ProvokingVertex + /// + public enum VertexProvokingMode : int + { + /// + /// Original was GL_FIRST_VERTEX_CONVENTION = 0x8E4D + /// + FirstVertexConvention = ((int)0x8E4D), + /// + /// Original was GL_LAST_VERTEX_CONVENTION = 0x8E4E + /// + LastVertexConvention = ((int)0x8E4E), + } + /// /// Used in GL.FenceSync, GL.WaitSync /// diff --git a/src/OpenTK/Graphics/OpenGL4/GL4.cs b/src/OpenTK/Graphics/OpenGL4/GL4.cs index 7cf95e0a..a8a2ecbb 100644 --- a/src/OpenTK/Graphics/OpenGL4/GL4.cs +++ b/src/OpenTK/Graphics/OpenGL4/GL4.cs @@ -732,6 +732,7 @@ namespace OpenTK.Graphics.OpenGL4 103, 108, 77, 97, 116, 114, 105, 120, 84, 114, 97, 110, 115, 108, 97, 116, 101, 100, 69, 88, 84, 0, 103, 108, 77, 97, 116, 114, 105, 120, 84, 114, 97, 110, 115, 108, 97, 116, 101, 102, 69, 88, 84, 0, 103, 108, 77, 97, 120, 83, 104, 97, 100, 101, 114, 67, 111, 109, 112, 105, 108, 101, 114, 84, 104, 114, 101, 97, 100, 115, 65, 82, 66, 0, + 103, 108, 77, 97, 120, 83, 104, 97, 100, 101, 114, 67, 111, 109, 112, 105, 108, 101, 114, 84, 104, 114, 101, 97, 100, 115, 75, 72, 82, 0, 103, 108, 77, 101, 109, 111, 114, 121, 66, 97, 114, 114, 105, 101, 114, 0, 103, 108, 77, 101, 109, 111, 114, 121, 66, 97, 114, 114, 105, 101, 114, 66, 121, 82, 101, 103, 105, 111, 110, 0, 103, 108, 77, 105, 110, 109, 97, 120, 0, @@ -2095,674 +2096,675 @@ namespace OpenTK.Graphics.OpenGL4 15346, 15368, 15398, - 15414, - 15438, - 15447, - 15466, - 15488, - 15506, - 15532, - 15573, - 15609, - 15640, - 15674, - 15694, + 15428, + 15444, + 15468, + 15477, + 15496, + 15518, + 15536, + 15562, + 15603, + 15639, + 15670, + 15704, 15724, - 15752, - 15795, - 15833, - 15866, - 15902, - 15922, - 15942, - 15963, - 15983, - 16004, - 16024, - 16045, - 16065, - 16086, - 16112, - 16130, - 16149, - 16167, - 16186, - 16204, - 16223, - 16241, - 16260, - 16278, - 16297, - 16318, - 16339, - 16360, - 16384, - 16409, - 16433, - 16459, - 16486, - 16511, - 16537, - 16561, - 16585, - 16609, - 16627, - 16648, - 16679, - 16710, - 16731, - 16755, - 16776, - 16800, - 16828, - 16857, + 15754, + 15782, + 15825, + 15863, + 15896, + 15932, + 15952, + 15972, + 15993, + 16013, + 16034, + 16054, + 16075, + 16095, + 16116, + 16142, + 16160, + 16179, + 16197, + 16216, + 16234, + 16253, + 16271, + 16290, + 16308, + 16327, + 16348, + 16369, + 16390, + 16414, + 16439, + 16463, + 16489, + 16516, + 16541, + 16567, + 16591, + 16615, + 16639, + 16657, + 16678, + 16709, + 16740, + 16761, + 16785, + 16806, + 16830, + 16858, 16887, - 16916, - 16948, - 16977, - 17008, - 17042, - 17081, - 17119, - 17145, - 17176, - 17207, - 17238, - 17267, - 17300, - 17331, - 17365, - 17399, - 17434, - 17468, - 17503, - 17538, - 17574, - 17610, - 17647, - 17683, - 17720, - 17758, - 17782, - 17809, + 16917, + 16946, + 16978, + 17007, + 17038, + 17072, + 17111, + 17149, + 17175, + 17206, + 17237, + 17268, + 17297, + 17330, + 17361, + 17395, + 17429, + 17464, + 17498, + 17533, + 17568, + 17604, + 17640, + 17677, + 17713, + 17750, + 17788, + 17812, 17839, - 17877, - 17926, - 17967, - 17984, - 18001, + 17869, + 17907, + 17956, + 17997, 18014, - 18028, - 18042, - 18059, - 18076, - 18096, - 18115, - 18133, - 18150, - 18167, - 18182, - 18205, - 18223, - 18238, - 18262, - 18286, - 18305, - 18320, + 18031, + 18044, + 18058, + 18072, + 18089, + 18106, + 18126, + 18145, + 18163, + 18180, + 18197, + 18212, + 18235, + 18253, + 18268, + 18292, + 18316, + 18335, 18350, - 18369, - 18389, - 18408, - 18428, - 18455, - 18475, - 18490, - 18510, - 18528, - 18543, - 18568, - 18582, - 18596, - 18615, - 18633, - 18652, - 18670, - 18689, - 18701, - 18715, + 18380, + 18399, + 18419, + 18438, + 18458, + 18485, + 18505, + 18520, + 18540, + 18558, + 18573, + 18598, + 18612, + 18626, + 18645, + 18663, + 18682, + 18700, + 18719, 18731, - 18752, - 18776, - 18792, - 18811, - 18831, - 18857, - 18881, - 18897, - 18917, - 18940, - 18963, - 18995, - 19014, - 19036, - 19056, - 19079, - 19098, - 19120, - 19140, - 19163, - 19182, - 19206, - 19229, - 19254, - 19278, - 19300, - 19320, - 19343, - 19363, - 19388, - 19412, - 19438, - 19463, - 19486, - 19507, - 19531, - 19550, - 19572, - 19592, - 19615, - 19634, - 19656, - 19676, - 19699, - 19718, - 19742, - 19765, - 19790, - 19814, - 19836, - 19856, - 19879, - 19899, - 19924, - 19948, - 19974, - 19999, - 20022, - 20043, - 20067, - 20086, - 20108, - 20128, - 20151, - 20170, - 20192, - 20212, - 20235, - 20254, - 20278, - 20301, - 20326, - 20350, - 20372, - 20392, - 20415, - 20435, - 20460, - 20484, - 20510, - 20535, - 20558, - 20579, - 20603, - 20622, - 20644, - 20664, - 20687, - 20706, - 20728, - 20748, - 20771, - 20790, - 20814, - 20837, - 20862, - 20886, - 20908, - 20928, - 20951, - 20971, - 20996, - 21020, - 21046, - 21071, - 21094, - 21115, - 21139, + 18745, + 18761, + 18782, + 18806, + 18822, + 18841, + 18861, + 18887, + 18911, + 18927, + 18947, + 18970, + 18993, + 19025, + 19044, + 19066, + 19086, + 19109, + 19128, + 19150, + 19170, + 19193, + 19212, + 19236, + 19259, + 19284, + 19308, + 19330, + 19350, + 19373, + 19393, + 19418, + 19442, + 19468, + 19493, + 19516, + 19537, + 19561, + 19580, + 19602, + 19622, + 19645, + 19664, + 19686, + 19706, + 19729, + 19748, + 19772, + 19795, + 19820, + 19844, + 19866, + 19886, + 19909, + 19929, + 19954, + 19978, + 20004, + 20029, + 20052, + 20073, + 20097, + 20116, + 20138, + 20158, + 20181, + 20200, + 20222, + 20242, + 20265, + 20284, + 20308, + 20331, + 20356, + 20380, + 20402, + 20422, + 20445, + 20465, + 20490, + 20514, + 20540, + 20565, + 20588, + 20609, + 20633, + 20652, + 20674, + 20694, + 20717, + 20736, + 20758, + 20778, + 20801, + 20820, + 20844, + 20867, + 20892, + 20916, + 20938, + 20958, + 20981, + 21001, + 21026, + 21050, + 21076, + 21101, + 21124, + 21145, 21169, - 21198, - 21229, + 21199, + 21228, 21259, - 21285, - 21314, - 21340, - 21369, - 21397, - 21428, - 21456, - 21487, - 21515, - 21546, - 21574, - 21605, - 21631, - 21660, - 21686, - 21715, - 21743, - 21774, - 21802, - 21833, - 21861, - 21892, - 21920, - 21951, - 21977, - 22006, - 22032, - 22061, - 22089, - 22120, - 22148, - 22179, - 22207, - 22238, - 22266, - 22297, - 22320, - 22344, - 22362, - 22391, - 22408, - 22428, - 22449, - 22464, - 22483, - 22496, - 22510, - 22527, - 22544, + 21289, + 21315, + 21344, + 21370, + 21399, + 21427, + 21458, + 21486, + 21517, + 21545, + 21576, + 21604, + 21635, + 21661, + 21690, + 21716, + 21745, + 21773, + 21804, + 21832, + 21863, + 21891, + 21922, + 21950, + 21981, + 22007, + 22036, + 22062, + 22091, + 22119, + 22150, + 22178, + 22209, + 22237, + 22268, + 22296, + 22327, + 22350, + 22374, + 22392, + 22421, + 22438, + 22458, + 22479, + 22494, + 22513, + 22526, + 22540, 22557, - 22581, - 22603, - 22636, - 22679, - 22696, - 22710, - 22733, - 22759, - 22776, - 22790, - 22810, - 22831, - 22851, - 22873, - 22896, - 22917, - 22927, - 22943, - 22960, - 22978, - 23003, - 23024, - 23046, - 23077, - 23097, - 23112, + 22574, + 22587, + 22611, + 22633, + 22666, + 22709, + 22726, + 22740, + 22763, + 22789, + 22806, + 22820, + 22840, + 22861, + 22881, + 22903, + 22926, + 22947, + 22957, + 22973, + 22990, + 23008, + 23033, + 23054, + 23076, + 23107, 23127, - 23155, - 23173, - 23195, - 23214, - 23236, - 23253, - 23282, - 23302, - 23316, - 23338, - 23352, - 23374, - 23386, - 23406, - 23437, - 23459, - 23497, - 23526, - 23566, - 23597, - 23623, - 23635, - 23650, - 23667, - 23686, - 23701, - 23717, - 23732, - 23748, - 23763, - 23779, - 23794, - 23810, - 23823, - 23836, - 23860, - 23873, - 23897, - 23920, - 23936, - 23953, - 23969, - 23987, - 24006, - 24023, - 24038, + 23142, + 23157, + 23185, + 23203, + 23225, + 23244, + 23266, + 23283, + 23312, + 23332, + 23346, + 23368, + 23382, + 23404, + 23416, + 23436, + 23467, + 23489, + 23527, + 23556, + 23596, + 23627, + 23653, + 23665, + 23680, + 23697, + 23716, + 23731, + 23747, + 23762, + 23778, + 23793, + 23809, + 23824, + 23840, + 23853, + 23866, + 23890, + 23903, + 23927, + 23950, + 23966, + 23983, + 23999, + 24017, + 24036, 24053, - 24079, - 24094, - 24120, - 24136, - 24152, - 24168, - 24185, - 24204, - 24220, - 24239, - 24260, - 24284, - 24304, - 24324, - 24344, - 24371, - 24391, - 24414, - 24435, - 24459, - 24479, - 24502, - 24524, - 24549, - 24572, - 24598, - 24619, - 24643, - 24668, - 24687, - 24709, - 24728, - 24750, + 24068, + 24083, + 24109, + 24124, + 24150, + 24166, + 24182, + 24198, + 24215, + 24234, + 24250, + 24269, + 24290, + 24314, + 24334, + 24354, + 24374, + 24401, + 24421, + 24444, + 24465, + 24489, + 24509, + 24532, + 24554, + 24579, + 24602, + 24628, + 24649, + 24673, + 24698, + 24717, + 24739, + 24758, 24780, - 24813, - 24832, - 24854, + 24810, + 24843, + 24862, 24884, - 24917, - 24937, - 24960, - 24980, - 25003, - 25023, - 25046, - 25060, + 24914, + 24947, + 24967, + 24990, + 25010, + 25033, + 25053, + 25076, 25090, - 25121, - 25149, - 25167, + 25120, + 25151, 25179, - 25192, - 25204, - 25217, - 25229, - 25246, - 25262, - 25280, - 25297, + 25197, + 25209, + 25222, + 25234, + 25247, + 25259, + 25276, + 25292, 25310, - 25323, - 25341, - 25358, - 25377, - 25395, - 25409, - 25421, - 25434, - 25446, - 25459, - 25471, - 25488, - 25504, - 25522, - 25539, + 25327, + 25340, + 25353, + 25371, + 25388, + 25407, + 25425, + 25439, + 25451, + 25464, + 25476, + 25489, + 25501, + 25518, + 25534, 25552, - 25565, - 25583, - 25600, - 25619, - 25637, - 25651, - 25663, - 25676, - 25688, - 25701, - 25713, - 25730, - 25746, - 25764, - 25781, + 25569, + 25582, + 25595, + 25613, + 25630, + 25649, + 25667, + 25681, + 25693, + 25706, + 25718, + 25731, + 25743, + 25760, + 25776, 25794, - 25807, - 25825, - 25842, - 25861, - 25879, - 25893, - 25905, - 25918, - 25930, - 25943, - 25955, - 25972, - 25988, - 26006, - 26023, + 25811, + 25824, + 25837, + 25855, + 25872, + 25891, + 25909, + 25923, + 25935, + 25948, + 25960, + 25973, + 25985, + 26002, + 26018, 26036, - 26049, - 26067, - 26084, - 26103, - 26121, - 26135, - 26157, - 26180, - 26202, - 26226, - 26249, - 26268, - 26287, - 26308, - 26329, - 26350, - 26371, - 26390, - 26409, - 26430, - 26451, - 26472, - 26493, - 26512, - 26531, - 26552, - 26573, - 26594, - 26615, - 26639, - 26655, - 26672, - 26686, - 26705, - 26727, - 26740, - 26759, - 26781, - 26803, - 26821, - 26847, - 26876, - 26903, - 26929, - 26956, - 26983, - 27011, - 27044, - 27072, - 27103, - 27130, - 27161, - 27189, - 27225, - 27254, - 27291, - 27322, - 27358, - 27394, - 27429, - 27465, - 27501, - 27537, - 27573, - 27608, - 27645, - 27671, - 27698, - 27727, - 27744, - 27762, - 27779, - 27797, - 27814, - 27832, - 27849, - 27867, - 27884, - 27902, - 27919, - 27937, - 27954, - 27972, - 27989, - 28007, - 28024, - 28042, - 28060, - 28077, - 28095, - 28112, - 28130, - 28148, - 28167, - 28186, - 28205, - 28224, - 28244, - 28264, - 28284, - 28301, - 28319, - 28338, - 28357, - 28376, - 28398, - 28420, - 28445, - 28466, - 28489, - 28507, - 28526, - 28545, - 28565, - 28583, - 28602, - 28621, - 28641, - 28659, - 28678, - 28697, - 28717, - 28736, - 28754, - 28773, - 28792, - 28812, - 28831, - 28851, - 28871, - 28893, - 28917, - 28940, - 28958, - 28977, - 28999, - 29022, - 29046, - 29069, - 29094, - 29118, - 29136, - 29155, - 29177, - 29200, - 29223, - 29247, - 29265, - 29284, - 29306, - 29329, - 29352, - 29376, - 29394, - 29413, - 29435, - 29458, - 29481, - 29505, - 29527, - 29551, - 29574, - 29593, - 29613, - 29632, - 29652, - 29671, - 29691, - 29710, - 29730, - 29752, - 29775, - 29792, + 26053, + 26066, + 26079, + 26097, + 26114, + 26133, + 26151, + 26165, + 26187, + 26210, + 26232, + 26256, + 26279, + 26298, + 26317, + 26338, + 26359, + 26380, + 26401, + 26420, + 26439, + 26460, + 26481, + 26502, + 26523, + 26542, + 26561, + 26582, + 26603, + 26624, + 26645, + 26669, + 26685, + 26702, + 26716, + 26735, + 26757, + 26770, + 26789, + 26811, + 26833, + 26851, + 26877, + 26906, + 26933, + 26959, + 26986, + 27013, + 27041, + 27074, + 27102, + 27133, + 27160, + 27191, + 27219, + 27255, + 27284, + 27321, + 27352, + 27388, + 27424, + 27459, + 27495, + 27531, + 27567, + 27603, + 27638, + 27675, + 27701, + 27728, + 27757, + 27774, + 27792, + 27809, + 27827, + 27844, + 27862, + 27879, + 27897, + 27914, + 27932, + 27949, + 27967, + 27984, + 28002, + 28019, + 28037, + 28054, + 28072, + 28090, + 28107, + 28125, + 28142, + 28160, + 28178, + 28197, + 28216, + 28235, + 28254, + 28274, + 28294, + 28314, + 28331, + 28349, + 28368, + 28387, + 28406, + 28428, + 28450, + 28475, + 28496, + 28519, + 28537, + 28556, + 28575, + 28595, + 28613, + 28632, + 28651, + 28671, + 28689, + 28708, + 28727, + 28747, + 28766, + 28784, + 28803, + 28822, + 28842, + 28861, + 28881, + 28901, + 28923, + 28947, + 28970, + 28988, + 29007, + 29029, + 29052, + 29076, + 29099, + 29124, + 29148, + 29166, + 29185, + 29207, + 29230, + 29253, + 29277, + 29295, + 29314, + 29336, + 29359, + 29382, + 29406, + 29424, + 29443, + 29465, + 29488, + 29511, + 29535, + 29557, + 29581, + 29604, + 29623, + 29643, + 29662, + 29682, + 29701, + 29721, + 29740, + 29760, + 29782, 29805, - 29819, - 29832, - 29846, - 29859, - 29873, - 29884, - 29901, - 29920, - 29940, - 29967, - 29987, - 29998, - 30018, - 30034, + 29822, + 29835, + 29849, + 29862, + 29876, + 29889, + 29903, + 29914, + 29931, + 29950, + 29970, + 29997, + 30017, + 30028, + 30048, + 30064, }; EntryPoints = new IntPtr[EntryPointNameOffsets.Length]; } @@ -3348,7 +3350,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendEquationSeparateiARB")] [CLSCompliant(false)] - public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.OpenGL4.All modeRGB, OpenTK.Graphics.OpenGL4.All modeAlpha) { throw new BindingsNotRewrittenException(); } + public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.OpenGL4.BlendEquationModeExt modeRGB, OpenTK.Graphics.OpenGL4.BlendEquationModeExt modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Set the RGB blend equation and the alpha blend equation separately @@ -3364,7 +3366,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendEquationSeparateiARB")] [CLSCompliant(false)] - public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.OpenGL4.All modeRGB, OpenTK.Graphics.OpenGL4.All modeAlpha) { throw new BindingsNotRewrittenException(); } + public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.OpenGL4.BlendEquationModeExt modeRGB, OpenTK.Graphics.OpenGL4.BlendEquationModeExt modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Specify pixel arithmetic @@ -3380,7 +3382,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendFunciARB")] [CLSCompliant(false)] - public static void BlendFunc(Int32 buf, OpenTK.Graphics.OpenGL4.All src, OpenTK.Graphics.OpenGL4.All dst) { throw new BindingsNotRewrittenException(); } + public static void BlendFunc(Int32 buf, OpenTK.Graphics.OpenGL4.BlendingFactor src, OpenTK.Graphics.OpenGL4.BlendingFactor dst) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Specify pixel arithmetic @@ -3396,7 +3398,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendFunciARB")] [CLSCompliant(false)] - public static void BlendFunc(UInt32 buf, OpenTK.Graphics.OpenGL4.All src, OpenTK.Graphics.OpenGL4.All dst) { throw new BindingsNotRewrittenException(); } + public static void BlendFunc(UInt32 buf, OpenTK.Graphics.OpenGL4.BlendingFactor src, OpenTK.Graphics.OpenGL4.BlendingFactor dst) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Specify pixel arithmetic for RGB and alpha components separately @@ -3418,7 +3420,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendFuncSeparateiARB")] [CLSCompliant(false)] - public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.OpenGL4.All srcRGB, OpenTK.Graphics.OpenGL4.All dstRGB, OpenTK.Graphics.OpenGL4.All srcAlpha, OpenTK.Graphics.OpenGL4.All dstAlpha) { throw new BindingsNotRewrittenException(); } + public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.OpenGL4.BlendingFactor srcRGB, OpenTK.Graphics.OpenGL4.BlendingFactor dstRGB, OpenTK.Graphics.OpenGL4.BlendingFactor srcAlpha, OpenTK.Graphics.OpenGL4.BlendingFactor dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Specify pixel arithmetic for RGB and alpha components separately @@ -3440,7 +3442,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendFuncSeparateiARB")] [CLSCompliant(false)] - public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.OpenGL4.All srcRGB, OpenTK.Graphics.OpenGL4.All dstRGB, OpenTK.Graphics.OpenGL4.All srcAlpha, OpenTK.Graphics.OpenGL4.All dstAlpha) { throw new BindingsNotRewrittenException(); } + public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.OpenGL4.BlendingFactor srcRGB, OpenTK.Graphics.OpenGL4.BlendingFactor dstRGB, OpenTK.Graphics.OpenGL4.BlendingFactor srcAlpha, OpenTK.Graphics.OpenGL4.BlendingFactor dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_buffer] /// @@ -3654,7 +3656,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageControlARB")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.DebugSource source, OpenTK.Graphics.OpenGL4.DebugType type, OpenTK.Graphics.OpenGL4.DebugSeverity severity, Int32 count, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Control the reporting of debug messages in a debug context @@ -3679,7 +3681,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageControlARB")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.DebugSource source, OpenTK.Graphics.OpenGL4.DebugType type, OpenTK.Graphics.OpenGL4.DebugSeverity severity, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Control the reporting of debug messages in a debug context @@ -3704,7 +3706,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageControlARB")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL4.DebugSource source, OpenTK.Graphics.OpenGL4.DebugType type, OpenTK.Graphics.OpenGL4.DebugSeverity severity, Int32 count, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Control the reporting of debug messages in a debug context @@ -3729,7 +3731,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageControlARB")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.DebugSource source, OpenTK.Graphics.OpenGL4.DebugType type, OpenTK.Graphics.OpenGL4.DebugSeverity severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Control the reporting of debug messages in a debug context @@ -3754,7 +3756,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageControlARB")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.DebugSource source, OpenTK.Graphics.OpenGL4.DebugType type, OpenTK.Graphics.OpenGL4.DebugSeverity severity, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Control the reporting of debug messages in a debug context @@ -3779,7 +3781,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageControlARB")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL4.DebugSource source, OpenTK.Graphics.OpenGL4.DebugType type, OpenTK.Graphics.OpenGL4.DebugSeverity severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Inject an application-supplied message into the debug message queue @@ -3804,7 +3806,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageInsertARB")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, Int32 id, OpenTK.Graphics.OpenGL4.All severity, Int32 length, [CountAttribute(Parameter = "length")] String buf) { throw new BindingsNotRewrittenException(); } + public static void DebugMessageInsert(OpenTK.Graphics.OpenGL4.DebugSource source, OpenTK.Graphics.OpenGL4.DebugType type, Int32 id, OpenTK.Graphics.OpenGL4.DebugSeverity severity, Int32 length, [CountAttribute(Parameter = "length")] String buf) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Inject an application-supplied message into the debug message queue @@ -3829,7 +3831,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageInsertARB")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, UInt32 id, OpenTK.Graphics.OpenGL4.All severity, Int32 length, [CountAttribute(Parameter = "length")] String buf) { throw new BindingsNotRewrittenException(); } + public static void DebugMessageInsert(OpenTK.Graphics.OpenGL4.DebugSource source, OpenTK.Graphics.OpenGL4.DebugType type, UInt32 id, OpenTK.Graphics.OpenGL4.DebugSeverity severity, Int32 length, [CountAttribute(Parameter = "length")] String buf) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -4004,7 +4006,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.FramebufferTarget target, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -4013,7 +4015,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.FramebufferTarget target, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -4022,7 +4024,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.FramebufferTarget target, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -4031,7 +4033,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.FramebufferTarget target, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -4040,7 +4042,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.FramebufferTarget target, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -4049,7 +4051,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.FramebufferTarget target, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_geometry_shader4] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -4182,7 +4184,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSource[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Retrieve messages from the debug message log @@ -4213,7 +4215,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.DebugSource sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Retrieve messages from the debug message log @@ -4244,7 +4246,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSource* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Retrieve messages from the debug message log @@ -4275,7 +4277,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSource[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Retrieve messages from the debug message log @@ -4306,7 +4308,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.DebugSource sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Retrieve messages from the debug message log @@ -4337,11 +4339,11 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSource* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetGraphicsResetStatusARB")] - public static OpenTK.Graphics.OpenGL4.All GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.OpenGL4.GraphicsResetStatus GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -4351,7 +4353,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetImageHandleARB")] [CLSCompliant(false)] - public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL4.All format) { throw new BindingsNotRewrittenException(); } + public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL4.PixelFormat format) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -4361,7 +4363,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetImageHandleARB")] [CLSCompliant(false)] - public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL4.All format) { throw new BindingsNotRewrittenException(); } + public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL4.PixelFormat format) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -4417,7 +4419,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnColorTableARB")] - public static void GetnColorTable(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr table) { throw new BindingsNotRewrittenException(); } + public static void GetnColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr table) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4427,7 +4429,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnColorTableARB")] [CLSCompliant(false)] - public static void GetnColorTable(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] table) + public static void GetnColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] table) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -4439,7 +4441,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnColorTableARB")] [CLSCompliant(false)] - public static void GetnColorTable(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] table) + public static void GetnColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] table) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -4451,7 +4453,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnColorTableARB")] [CLSCompliant(false)] - public static void GetnColorTable(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] table) + public static void GetnColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] table) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -4462,7 +4464,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnColorTableARB")] - public static void GetnColorTable(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 table) + public static void GetnColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 table) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -4472,7 +4474,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnCompressedTexImageARB")] - public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 lod, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr img) { throw new BindingsNotRewrittenException(); } + public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr img) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4481,7 +4483,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnCompressedTexImageARB")] [CLSCompliant(false)] - public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T3[] img) + public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T3[] img) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -4492,7 +4494,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnCompressedTexImageARB")] [CLSCompliant(false)] - public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T3[,] img) + public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T3[,] img) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -4503,7 +4505,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnCompressedTexImageARB")] [CLSCompliant(false)] - public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T3[,,] img) + public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T3[,,] img) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -4513,7 +4515,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnCompressedTexImageARB")] - public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T3 img) + public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T3 img) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -4524,7 +4526,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnConvolutionFilterARB")] - public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr image) { throw new BindingsNotRewrittenException(); } + public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4534,7 +4536,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnConvolutionFilterARB")] [CLSCompliant(false)] - public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] image) + public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] image) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -4546,7 +4548,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnConvolutionFilterARB")] [CLSCompliant(false)] - public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] image) + public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] image) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -4558,7 +4560,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnConvolutionFilterARB")] [CLSCompliant(false)] - public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] image) + public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] image) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -4569,7 +4571,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnConvolutionFilterARB")] - public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 image) + public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 image) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -4581,7 +4583,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnHistogramARB")] - public static void GetnHistogram(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr values) { throw new BindingsNotRewrittenException(); } + public static void GetnHistogram(OpenTK.Graphics.OpenGL4.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4592,7 +4594,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnHistogramARB")] [CLSCompliant(false)] - public static void GetnHistogram(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[] values) + public static void GetnHistogram(OpenTK.Graphics.OpenGL4.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[] values) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -4605,7 +4607,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnHistogramARB")] [CLSCompliant(false)] - public static void GetnHistogram(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[,] values) + public static void GetnHistogram(OpenTK.Graphics.OpenGL4.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[,] values) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -4618,7 +4620,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnHistogramARB")] [CLSCompliant(false)] - public static void GetnHistogram(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[,,] values) + public static void GetnHistogram(OpenTK.Graphics.OpenGL4.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[,,] values) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -4630,7 +4632,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnHistogramARB")] - public static void GetnHistogram(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T5 values) + public static void GetnHistogram(OpenTK.Graphics.OpenGL4.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T5 values) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -4641,7 +4643,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapdvARB")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double[] v) { throw new BindingsNotRewrittenException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL4.MapTarget target, OpenTK.Graphics.OpenGL4.MapQuery query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4650,7 +4652,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapdvARB")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Double v) { throw new BindingsNotRewrittenException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL4.MapTarget target, OpenTK.Graphics.OpenGL4.MapQuery query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Double v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4659,7 +4661,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapdvARB")] [CLSCompliant(false)] - public static unsafe void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double* v) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetnMap(OpenTK.Graphics.OpenGL4.MapTarget target, OpenTK.Graphics.OpenGL4.MapQuery query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4668,7 +4670,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapfvARB")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] v) { throw new BindingsNotRewrittenException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL4.MapTarget target, OpenTK.Graphics.OpenGL4.MapQuery query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4677,7 +4679,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapfvARB")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single v) { throw new BindingsNotRewrittenException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL4.MapTarget target, OpenTK.Graphics.OpenGL4.MapQuery query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4686,7 +4688,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapfvARB")] [CLSCompliant(false)] - public static unsafe void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* v) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetnMap(OpenTK.Graphics.OpenGL4.MapTarget target, OpenTK.Graphics.OpenGL4.MapQuery query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4695,7 +4697,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapivARB")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] v) { throw new BindingsNotRewrittenException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL4.MapTarget target, OpenTK.Graphics.OpenGL4.MapQuery query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4704,7 +4706,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapivARB")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 v) { throw new BindingsNotRewrittenException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL4.MapTarget target, OpenTK.Graphics.OpenGL4.MapQuery query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4713,7 +4715,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMapivARB")] [CLSCompliant(false)] - public static unsafe void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* v) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetnMap(OpenTK.Graphics.OpenGL4.MapTarget target, OpenTK.Graphics.OpenGL4.MapQuery query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4723,7 +4725,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMinmaxARB")] - public static void GetnMinmax(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr values) { throw new BindingsNotRewrittenException(); } + public static void GetnMinmax(OpenTK.Graphics.OpenGL4.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4734,7 +4736,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMinmaxARB")] [CLSCompliant(false)] - public static void GetnMinmax(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[] values) + public static void GetnMinmax(OpenTK.Graphics.OpenGL4.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[] values) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -4747,7 +4749,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMinmaxARB")] [CLSCompliant(false)] - public static void GetnMinmax(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[,] values) + public static void GetnMinmax(OpenTK.Graphics.OpenGL4.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[,] values) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -4760,7 +4762,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMinmaxARB")] [CLSCompliant(false)] - public static void GetnMinmax(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[,,] values) + public static void GetnMinmax(OpenTK.Graphics.OpenGL4.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[,,] values) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -4772,7 +4774,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMinmaxARB")] - public static void GetnMinmax(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T5 values) + public static void GetnMinmax(OpenTK.Graphics.OpenGL4.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T5 values) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -4782,7 +4784,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapfvARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] values) { throw new BindingsNotRewrittenException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.PixelMap map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4790,7 +4792,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapfvARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single values) { throw new BindingsNotRewrittenException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.PixelMap map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4798,7 +4800,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapfvARB")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* values) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.PixelMap map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4806,7 +4808,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new BindingsNotRewrittenException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.PixelMap map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4814,7 +4816,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new BindingsNotRewrittenException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.PixelMap map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4822,7 +4824,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.PixelMap map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4830,7 +4832,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32[] values) { throw new BindingsNotRewrittenException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.PixelMap map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4838,7 +4840,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out UInt32 values) { throw new BindingsNotRewrittenException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.PixelMap map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out UInt32 values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4846,7 +4848,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32* values) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.PixelMap map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32* values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4854,7 +4856,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int16[] values) { throw new BindingsNotRewrittenException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.PixelMap map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int16[] values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4862,7 +4864,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int16 values) { throw new BindingsNotRewrittenException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.PixelMap map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int16 values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4870,7 +4872,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int16* values) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.PixelMap map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int16* values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4878,7 +4880,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt16[] values) { throw new BindingsNotRewrittenException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.PixelMap map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt16[] values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4886,7 +4888,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out UInt16 values) { throw new BindingsNotRewrittenException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.PixelMap map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out UInt16 values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4894,7 +4896,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt16* values) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.PixelMap map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt16* values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPolygonStippleARB")] @@ -4932,7 +4934,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: columnBufSize] /// [length: 0] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnSeparableFilterARB")] - public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 rowBufSize, [OutAttribute, CountAttribute(Parameter = "rowBufSize")] IntPtr row, Int32 columnBufSize, [OutAttribute, CountAttribute(Parameter = "columnBufSize")] IntPtr column, [OutAttribute, CountAttribute(Count = 0)] IntPtr span) { throw new BindingsNotRewrittenException(); } + public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL4.SeparableTargetExt target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 rowBufSize, [OutAttribute, CountAttribute(Parameter = "rowBufSize")] IntPtr row, Int32 columnBufSize, [OutAttribute, CountAttribute(Parameter = "columnBufSize")] IntPtr column, [OutAttribute, CountAttribute(Count = 0)] IntPtr span) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4945,7 +4947,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 0] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnSeparableFilterARB")] [CLSCompliant(false)] - public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 rowBufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "rowBufSize")] T4[] row, Int32 columnBufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "columnBufSize")] T6[] column, [InAttribute, OutAttribute, CountAttribute(Count = 0)] T7[] span) + public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL4.SeparableTargetExt target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 rowBufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "rowBufSize")] T4[] row, Int32 columnBufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "columnBufSize")] T6[] column, [InAttribute, OutAttribute, CountAttribute(Count = 0)] T7[] span) where T4 : struct where T6 : struct where T7 : struct @@ -4962,7 +4964,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 0] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnSeparableFilterARB")] [CLSCompliant(false)] - public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 rowBufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "rowBufSize")] T4[,] row, Int32 columnBufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "columnBufSize")] T6[,] column, [InAttribute, OutAttribute, CountAttribute(Count = 0)] T7[,] span) + public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL4.SeparableTargetExt target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 rowBufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "rowBufSize")] T4[,] row, Int32 columnBufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "columnBufSize")] T6[,] column, [InAttribute, OutAttribute, CountAttribute(Count = 0)] T7[,] span) where T4 : struct where T6 : struct where T7 : struct @@ -4979,7 +4981,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 0] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnSeparableFilterARB")] [CLSCompliant(false)] - public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 rowBufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "rowBufSize")] T4[,,] row, Int32 columnBufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "columnBufSize")] T6[,,] column, [InAttribute, OutAttribute, CountAttribute(Count = 0)] T7[,,] span) + public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL4.SeparableTargetExt target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 rowBufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "rowBufSize")] T4[,,] row, Int32 columnBufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "columnBufSize")] T6[,,] column, [InAttribute, OutAttribute, CountAttribute(Count = 0)] T7[,,] span) where T4 : struct where T6 : struct where T7 : struct @@ -4995,7 +4997,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: columnBufSize] /// [length: 0] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnSeparableFilterARB")] - public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 rowBufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "rowBufSize")] ref T4 row, Int32 columnBufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "columnBufSize")] ref T6 column, [InAttribute, OutAttribute, CountAttribute(Count = 0)] ref T7 span) + public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL4.SeparableTargetExt target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 rowBufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "rowBufSize")] ref T4 row, Int32 columnBufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "columnBufSize")] ref T6 column, [InAttribute, OutAttribute, CountAttribute(Count = 0)] ref T7 span) where T4 : struct where T6 : struct where T7 : struct @@ -5009,7 +5011,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnTexImageARB")] - public static void GetnTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 level, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr img) { throw new BindingsNotRewrittenException(); } + public static void GetnTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr img) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5020,7 +5022,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnTexImageARB")] [CLSCompliant(false)] - public static void GetnTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 level, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[] img) + public static void GetnTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[] img) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -5033,7 +5035,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnTexImageARB")] [CLSCompliant(false)] - public static void GetnTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 level, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[,] img) + public static void GetnTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[,] img) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -5046,7 +5048,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnTexImageARB")] [CLSCompliant(false)] - public static void GetnTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 level, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[,,] img) + public static void GetnTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T5[,,] img) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -5058,7 +5060,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnTexImageARB")] - public static void GetnTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 level, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T5 img) + public static void GetnTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T5 img) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -5715,7 +5717,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_indirect_parameters", Version = "", EntryPoint = "glMultiDrawElementsIndirectCountARB")] - public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } + public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.DrawElementsType type, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -5726,7 +5728,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_indirect_parameters", Version = "", EntryPoint = "glMultiDrawElementsIndirectCountARB")] [CLSCompliant(false)] - public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) + public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T2[] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -5739,7 +5741,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_indirect_parameters", Version = "", EntryPoint = "glMultiDrawElementsIndirectCountARB")] [CLSCompliant(false)] - public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[,] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) + public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T2[,] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -5752,7 +5754,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_indirect_parameters", Version = "", EntryPoint = "glMultiDrawElementsIndirectCountARB")] [CLSCompliant(false)] - public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[,,] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) + public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T2[,,] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -5764,7 +5766,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_indirect_parameters", Version = "", EntryPoint = "glMultiDrawElementsIndirectCountARB")] - public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] ref T2 indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) + public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] ref T2 indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -7132,7 +7134,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_texture_buffer_object", Version = "", EntryPoint = "glTexBufferARB")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.All internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } + public static void TexBuffer(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_buffer_object] /// Attach the storage for a buffer object to the active buffer texture @@ -7148,7 +7150,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_texture_buffer_object", Version = "", EntryPoint = "glTexBufferARB")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.All internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } + public static void TexBuffer(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_texture] /// @@ -9270,7 +9272,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies how the red, green, blue, and alpha destination blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha. ConstantColor, OneMinusConstantColor, ConstantAlpha, and OneMinusConstantAlpha. The initial value is Zero. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glBlendFunc")] - public static void BlendFunc(OpenTK.Graphics.OpenGL4.BlendingFactorSrc sfactor, OpenTK.Graphics.OpenGL4.BlendingFactorDest dfactor) { throw new BindingsNotRewrittenException(); } + public static void BlendFunc(OpenTK.Graphics.OpenGL4.BlendingFactor sfactor, OpenTK.Graphics.OpenGL4.BlendingFactor dfactor) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify pixel arithmetic @@ -10056,14 +10058,14 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCheckNamedFramebufferStatus")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All CheckNamedFramebufferStatus(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.OpenGL4.FramebufferStatus CheckNamedFramebufferStatus(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCheckNamedFramebufferStatus")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All CheckNamedFramebufferStatus(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.OpenGL4.FramebufferStatus CheckNamedFramebufferStatus(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify whether data read via glReadPixels should be clamped @@ -10105,7 +10107,7 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a memory location storing the data to be replicated into the buffer's data store. /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferData")] - public static void ClearBufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } + public static void ClearBufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill a buffer object's data store with a fixed value @@ -10127,7 +10129,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferData")] [CLSCompliant(false)] - public static void ClearBufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) + public static void ClearBufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -10151,7 +10153,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferData")] [CLSCompliant(false)] - public static void ClearBufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) + public static void ClearBufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -10175,7 +10177,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferData")] [CLSCompliant(false)] - public static void ClearBufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) + public static void ClearBufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -10198,7 +10200,7 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a memory location storing the data to be replicated into the buffer's data store. /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferData")] - public static void ClearBufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) + public static void ClearBufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -10341,7 +10343,7 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a memory location storing the data to be replicated into the buffer's data store. /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] - public static void ClearBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } + public static void ClearBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -10369,7 +10371,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] [CLSCompliant(false)] - public static void ClearBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) + public static void ClearBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -10399,7 +10401,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] [CLSCompliant(false)] - public static void ClearBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) + public static void ClearBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -10429,7 +10431,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] [CLSCompliant(false)] - public static void ClearBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) + public static void ClearBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -10458,7 +10460,7 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a memory location storing the data to be replicated into the buffer's data store. /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] - public static void ClearBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) + public static void ClearBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -10487,7 +10489,7 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a memory location storing the data to be replicated into the buffer's data store. /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] - public static void ClearBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } + public static void ClearBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -10515,7 +10517,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] [CLSCompliant(false)] - public static void ClearBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) + public static void ClearBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -10545,7 +10547,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] [CLSCompliant(false)] - public static void ClearBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) + public static void ClearBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -10575,7 +10577,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] [CLSCompliant(false)] - public static void ClearBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) + public static void ClearBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -10604,7 +10606,7 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a memory location storing the data to be replicated into the buffer's data store. /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] - public static void ClearBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) + public static void ClearBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -10700,7 +10702,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferData")] [CLSCompliant(false)] - public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, IntPtr data) { throw new BindingsNotRewrittenException(); } + public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10710,7 +10712,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferData")] [CLSCompliant(false)] - public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T4[] data) + public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T4[] data) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -10722,7 +10724,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferData")] [CLSCompliant(false)] - public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T4[,] data) + public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T4[,] data) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -10734,7 +10736,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferData")] [CLSCompliant(false)] - public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T4[,,] data) + public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T4[,,] data) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -10746,7 +10748,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferData")] [CLSCompliant(false)] - public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] ref T4 data) + public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] ref T4 data) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -10758,7 +10760,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferData")] [CLSCompliant(false)] - public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, IntPtr data) { throw new BindingsNotRewrittenException(); } + public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10768,7 +10770,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferData")] [CLSCompliant(false)] - public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T4[] data) + public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T4[] data) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -10780,7 +10782,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferData")] [CLSCompliant(false)] - public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T4[,] data) + public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T4[,] data) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -10792,7 +10794,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferData")] [CLSCompliant(false)] - public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T4[,,] data) + public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T4[,,] data) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -10804,7 +10806,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferData")] [CLSCompliant(false)] - public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] ref T4 data) + public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] ref T4 data) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -10818,7 +10820,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, IntPtr data) { throw new BindingsNotRewrittenException(); } + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10830,7 +10832,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T6[] data) + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T6[] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -10844,7 +10846,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T6[,] data) + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T6[,] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -10858,7 +10860,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T6[,,] data) + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T6[,,] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -10872,7 +10874,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] ref T6 data) + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] ref T6 data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -10886,7 +10888,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, IntPtr data) { throw new BindingsNotRewrittenException(); } + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10898,7 +10900,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T6[] data) + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T6[] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -10912,7 +10914,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T6[,] data) + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T6[,] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -10926,7 +10928,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T6[,,] data) + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T6[,,] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -10940,7 +10942,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] ref T6 data) + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] ref T6 data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -10954,7 +10956,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, IntPtr data) { throw new BindingsNotRewrittenException(); } + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10966,7 +10968,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T6[] data) + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T6[] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -10980,7 +10982,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T6[,] data) + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T6[,] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -10994,7 +10996,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T6[,,] data) + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T6[,,] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -11008,7 +11010,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] ref T6 data) + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] ref T6 data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -11022,7 +11024,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, IntPtr data) { throw new BindingsNotRewrittenException(); } + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11034,7 +11036,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T6[] data) + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T6[] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -11048,7 +11050,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T6[,] data) + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T6[,] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -11062,7 +11064,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T6[,,] data) + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] T6[,,] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -11076,7 +11078,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] ref T6 data) + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] ref T6 data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -12205,7 +12207,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Pointer to a one-dimensional array of pixel data that is processed to build the color table. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTable")] - public static void ColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr table) { throw new BindingsNotRewrittenException(); } + public static void ColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr table) { throw new BindingsNotRewrittenException(); } /// /// Define a color lookup table @@ -12230,7 +12232,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTable")] [CLSCompliant(false)] - public static void ColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[] table) + public static void ColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[] table) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -12257,7 +12259,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTable")] [CLSCompliant(false)] - public static void ColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,] table) + public static void ColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,] table) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -12284,7 +12286,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTable")] [CLSCompliant(false)] - public static void ColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,,] table) + public static void ColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,,] table) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -12310,7 +12312,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Pointer to a one-dimensional array of pixel data that is processed to build the color table. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTable")] - public static void ColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T5 table) + public static void ColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T5 table) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -12328,7 +12330,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTableParameterfv")] [CLSCompliant(false)] - public static void ColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } + public static void ColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.ColorTableParameterPNameSgi pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// Set color lookup table parameters @@ -12344,7 +12346,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTableParameterfv")] [CLSCompliant(false)] - public static void ColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] ref Single @params) { throw new BindingsNotRewrittenException(); } + public static void ColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.ColorTableParameterPNameSgi pname, [CountAttribute(Computed = "pname")] ref Single @params) { throw new BindingsNotRewrittenException(); } /// /// Set color lookup table parameters @@ -12360,7 +12362,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTableParameterfv")] [CLSCompliant(false)] - public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.ColorTableParameterPNameSgi pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// Set color lookup table parameters @@ -12376,7 +12378,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTableParameteriv")] [CLSCompliant(false)] - public static void ColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void ColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.ColorTableParameterPNameSgi pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// Set color lookup table parameters @@ -12392,7 +12394,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTableParameteriv")] [CLSCompliant(false)] - public static void ColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void ColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.ColorTableParameterPNameSgi pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// Set color lookup table parameters @@ -12408,7 +12410,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTableParameteriv")] [CLSCompliant(false)] - public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.ColorTableParameterPNameSgi pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Compiles a shader object @@ -12455,7 +12457,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage1D")] - public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } + public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture image in a compressed format @@ -12483,7 +12485,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage1D")] [CLSCompliant(false)] - public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T6[] data) + public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T6[] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -12513,7 +12515,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage1D")] [CLSCompliant(false)] - public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T6[,] data) + public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T6[,] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -12543,7 +12545,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage1D")] [CLSCompliant(false)] - public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T6[,,] data) + public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T6[,,] data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -12572,7 +12574,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage1D")] - public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T6 data) + public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T6 data) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -12604,7 +12606,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage2D")] - public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } + public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture image in a compressed format @@ -12635,7 +12637,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage2D")] [CLSCompliant(false)] - public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] data) + public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] data) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -12668,7 +12670,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage2D")] [CLSCompliant(false)] - public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] data) + public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] data) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -12701,7 +12703,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage2D")] [CLSCompliant(false)] - public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] data) + public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] data) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -12733,7 +12735,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage2D")] - public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 data) + public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 data) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -12768,7 +12770,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage3D")] - public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } + public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture image in a compressed format @@ -12802,7 +12804,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage3D")] [CLSCompliant(false)] - public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] data) + public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -12838,7 +12840,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage3D")] [CLSCompliant(false)] - public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] data) + public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -12874,7 +12876,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage3D")] [CLSCompliant(false)] - public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] data) + public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -12909,7 +12911,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage3D")] - public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 data) + public static void CompressedTexImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -13931,7 +13933,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Pointer to a one-dimensional array of pixel data that is processed to build the convolution filter kernel. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter1D")] - public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr image) { throw new BindingsNotRewrittenException(); } + public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr image) { throw new BindingsNotRewrittenException(); } /// /// Define a one-dimensional convolution filter @@ -13956,7 +13958,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter1D")] [CLSCompliant(false)] - public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[] image) + public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[] image) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -13983,7 +13985,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter1D")] [CLSCompliant(false)] - public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,] image) + public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,] image) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -14010,7 +14012,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter1D")] [CLSCompliant(false)] - public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,,] image) + public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T5[,,] image) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -14036,7 +14038,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Pointer to a one-dimensional array of pixel data that is processed to build the convolution filter kernel. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter1D")] - public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T5 image) + public static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T5 image) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -14065,7 +14067,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Pointer to a two-dimensional array of pixel data that is processed to build the convolution filter kernel. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter2D")] - public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr image) { throw new BindingsNotRewrittenException(); } + public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr image) { throw new BindingsNotRewrittenException(); } /// /// Define a two-dimensional convolution filter @@ -14093,7 +14095,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter2D")] [CLSCompliant(false)] - public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[] image) + public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[] image) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -14123,7 +14125,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter2D")] [CLSCompliant(false)] - public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,] image) + public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,] image) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -14153,7 +14155,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter2D")] [CLSCompliant(false)] - public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,,] image) + public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,,] image) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -14182,7 +14184,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Pointer to a two-dimensional array of pixel data that is processed to build the convolution filter kernel. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter2D")] - public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T6 image) + public static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T6 image) where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -14199,7 +14201,7 @@ namespace OpenTK.Graphics.OpenGL4 /// The parameter value. Must be one of Reduce, ConstantBorder, ReplicateBorder. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionParameterf")] - public static void ConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameter pname, Single @params) { throw new BindingsNotRewrittenException(); } + public static void ConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameterExt pname, Single @params) { throw new BindingsNotRewrittenException(); } /// /// Set convolution parameters @@ -14215,7 +14217,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionParameterfv")] [CLSCompliant(false)] - public static void ConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } + public static void ConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameterExt pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// Set convolution parameters @@ -14231,7 +14233,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionParameterfv")] [CLSCompliant(false)] - public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameterExt pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// Set convolution parameters @@ -14246,7 +14248,7 @@ namespace OpenTK.Graphics.OpenGL4 /// The parameter value. Must be one of Reduce, ConstantBorder, ReplicateBorder. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionParameteri")] - public static void ConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameter pname, Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void ConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameterExt pname, Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// Set convolution parameters @@ -14262,7 +14264,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionParameteriv")] [CLSCompliant(false)] - public static void ConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void ConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameterExt pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// Set convolution parameters @@ -14278,7 +14280,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionParameteriv")] [CLSCompliant(false)] - public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameterExt pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_copy_buffer|VERSION_3_1] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -14362,7 +14364,7 @@ namespace OpenTK.Graphics.OpenGL4 /// The width of the pixel rectangle. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glCopyColorTable")] - public static void CopyColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } + public static void CopyColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// /// Copy pixels into a one-dimensional convolution filter @@ -14383,7 +14385,7 @@ namespace OpenTK.Graphics.OpenGL4 /// The width of the pixel array to copy. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glCopyConvolutionFilter1D")] - public static void CopyConvolutionFilter1D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } + public static void CopyConvolutionFilter1D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// /// Copy pixels into a two-dimensional convolution filter @@ -14407,7 +14409,7 @@ namespace OpenTK.Graphics.OpenGL4 /// The height of the pixel array to copy. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glCopyConvolutionFilter2D")] - public static void CopyConvolutionFilter2D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + public static void CopyConvolutionFilter2D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_copy_image|VERSION_4_3] /// Perform a raw data copy between two images @@ -14578,7 +14580,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Must be 0. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glCopyTexImage1D")] - public static void CopyTexImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new BindingsNotRewrittenException(); } + public static void CopyTexImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Copy pixels into a 2D texture image @@ -14608,7 +14610,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Must be 0. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glCopyTexImage2D")] - public static void CopyTexImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } + public static void CopyTexImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Copy a one-dimensional texture subimage @@ -14775,87 +14777,87 @@ namespace OpenTK.Graphics.OpenGL4 /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateBuffers")] [CLSCompliant(false)] - public static void CreateBuffers(Int32 n, [OutAttribute] Int32[] buffers) { throw new BindingsNotRewrittenException(); } + public static void CreateBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateBuffers")] [CLSCompliant(false)] - public static void CreateBuffers(Int32 n, [OutAttribute] out Int32 buffers) { throw new BindingsNotRewrittenException(); } + public static void CreateBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateBuffers")] [CLSCompliant(false)] - public static unsafe void CreateBuffers(Int32 n, [OutAttribute] Int32* buffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateBuffers")] [CLSCompliant(false)] - public static void CreateBuffers(Int32 n, [OutAttribute] UInt32[] buffers) { throw new BindingsNotRewrittenException(); } + public static void CreateBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateBuffers")] [CLSCompliant(false)] - public static void CreateBuffers(Int32 n, [OutAttribute] out UInt32 buffers) { throw new BindingsNotRewrittenException(); } + public static void CreateBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateBuffers")] [CLSCompliant(false)] - public static unsafe void CreateBuffers(Int32 n, [OutAttribute] UInt32* buffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateFramebuffers")] [CLSCompliant(false)] - public static void CreateFramebuffers(Int32 n, [OutAttribute] Int32[] framebuffers) { throw new BindingsNotRewrittenException(); } + public static void CreateFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateFramebuffers")] [CLSCompliant(false)] - public static void CreateFramebuffers(Int32 n, [OutAttribute] out Int32 framebuffers) { throw new BindingsNotRewrittenException(); } + public static void CreateFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateFramebuffers")] [CLSCompliant(false)] - public static unsafe void CreateFramebuffers(Int32 n, [OutAttribute] Int32* framebuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateFramebuffers")] [CLSCompliant(false)] - public static void CreateFramebuffers(Int32 n, [OutAttribute] UInt32[] framebuffers) { throw new BindingsNotRewrittenException(); } + public static void CreateFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateFramebuffers")] [CLSCompliant(false)] - public static void CreateFramebuffers(Int32 n, [OutAttribute] out UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } + public static void CreateFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateFramebuffers")] [CLSCompliant(false)] - public static unsafe void CreateFramebuffers(Int32 n, [OutAttribute] UInt32* framebuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Creates a program object @@ -14865,177 +14867,177 @@ namespace OpenTK.Graphics.OpenGL4 /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateProgramPipelines")] [CLSCompliant(false)] - public static void CreateProgramPipelines(Int32 n, [OutAttribute] Int32[] pipelines) { throw new BindingsNotRewrittenException(); } + public static void CreateProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateProgramPipelines")] [CLSCompliant(false)] - public static void CreateProgramPipelines(Int32 n, [OutAttribute] out Int32 pipelines) { throw new BindingsNotRewrittenException(); } + public static void CreateProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateProgramPipelines")] [CLSCompliant(false)] - public static unsafe void CreateProgramPipelines(Int32 n, [OutAttribute] Int32* pipelines) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateProgramPipelines")] [CLSCompliant(false)] - public static void CreateProgramPipelines(Int32 n, [OutAttribute] UInt32[] pipelines) { throw new BindingsNotRewrittenException(); } + public static void CreateProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateProgramPipelines")] [CLSCompliant(false)] - public static void CreateProgramPipelines(Int32 n, [OutAttribute] out UInt32 pipelines) { throw new BindingsNotRewrittenException(); } + public static void CreateProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateProgramPipelines")] [CLSCompliant(false)] - public static unsafe void CreateProgramPipelines(Int32 n, [OutAttribute] UInt32* pipelines) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateQueries")] [CLSCompliant(false)] - public static void CreateQueries(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 n, [OutAttribute] Int32[] ids) { throw new BindingsNotRewrittenException(); } + public static void CreateQueries(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateQueries")] [CLSCompliant(false)] - public static void CreateQueries(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 n, [OutAttribute] out Int32 ids) { throw new BindingsNotRewrittenException(); } + public static void CreateQueries(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateQueries")] [CLSCompliant(false)] - public static unsafe void CreateQueries(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 n, [OutAttribute] Int32* ids) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateQueries(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateQueries")] [CLSCompliant(false)] - public static void CreateQueries(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 n, [OutAttribute] UInt32[] ids) { throw new BindingsNotRewrittenException(); } + public static void CreateQueries(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateQueries")] [CLSCompliant(false)] - public static void CreateQueries(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 n, [OutAttribute] out UInt32 ids) { throw new BindingsNotRewrittenException(); } + public static void CreateQueries(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateQueries")] [CLSCompliant(false)] - public static unsafe void CreateQueries(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 n, [OutAttribute] UInt32* ids) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateQueries(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateRenderbuffers")] [CLSCompliant(false)] - public static void CreateRenderbuffers(Int32 n, [OutAttribute] Int32[] renderbuffers) { throw new BindingsNotRewrittenException(); } + public static void CreateRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateRenderbuffers")] [CLSCompliant(false)] - public static void CreateRenderbuffers(Int32 n, [OutAttribute] out Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } + public static void CreateRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateRenderbuffers")] [CLSCompliant(false)] - public static unsafe void CreateRenderbuffers(Int32 n, [OutAttribute] Int32* renderbuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateRenderbuffers")] [CLSCompliant(false)] - public static void CreateRenderbuffers(Int32 n, [OutAttribute] UInt32[] renderbuffers) { throw new BindingsNotRewrittenException(); } + public static void CreateRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateRenderbuffers")] [CLSCompliant(false)] - public static void CreateRenderbuffers(Int32 n, [OutAttribute] out UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } + public static void CreateRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateRenderbuffers")] [CLSCompliant(false)] - public static unsafe void CreateRenderbuffers(Int32 n, [OutAttribute] UInt32* renderbuffers) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateSamplers")] [CLSCompliant(false)] - public static void CreateSamplers(Int32 n, [OutAttribute] Int32[] samplers) { throw new BindingsNotRewrittenException(); } + public static void CreateSamplers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateSamplers")] [CLSCompliant(false)] - public static void CreateSamplers(Int32 n, [OutAttribute] out Int32 samplers) { throw new BindingsNotRewrittenException(); } + public static void CreateSamplers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateSamplers")] [CLSCompliant(false)] - public static unsafe void CreateSamplers(Int32 n, [OutAttribute] Int32* samplers) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateSamplers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateSamplers")] [CLSCompliant(false)] - public static void CreateSamplers(Int32 n, [OutAttribute] UInt32[] samplers) { throw new BindingsNotRewrittenException(); } + public static void CreateSamplers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateSamplers")] [CLSCompliant(false)] - public static void CreateSamplers(Int32 n, [OutAttribute] out UInt32 samplers) { throw new BindingsNotRewrittenException(); } + public static void CreateSamplers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateSamplers")] [CLSCompliant(false)] - public static unsafe void CreateSamplers(Int32 n, [OutAttribute] UInt32* samplers) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateSamplers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Creates a shader object @@ -15064,134 +15066,134 @@ namespace OpenTK.Graphics.OpenGL4 /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTextures")] [CLSCompliant(false)] - public static void CreateTextures(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 n, [OutAttribute] Int32[] textures) { throw new BindingsNotRewrittenException(); } + public static void CreateTextures(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTextures")] [CLSCompliant(false)] - public static void CreateTextures(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 n, [OutAttribute] out Int32 textures) { throw new BindingsNotRewrittenException(); } + public static void CreateTextures(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTextures")] [CLSCompliant(false)] - public static unsafe void CreateTextures(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 n, [OutAttribute] Int32* textures) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateTextures(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTextures")] [CLSCompliant(false)] - public static void CreateTextures(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 n, [OutAttribute] UInt32[] textures) { throw new BindingsNotRewrittenException(); } + public static void CreateTextures(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTextures")] [CLSCompliant(false)] - public static void CreateTextures(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 n, [OutAttribute] out UInt32 textures) { throw new BindingsNotRewrittenException(); } + public static void CreateTextures(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTextures")] [CLSCompliant(false)] - public static unsafe void CreateTextures(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 n, [OutAttribute] UInt32* textures) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateTextures(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTransformFeedbacks")] [CLSCompliant(false)] - public static void CreateTransformFeedbacks(Int32 n, [OutAttribute] Int32[] ids) { throw new BindingsNotRewrittenException(); } + public static void CreateTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTransformFeedbacks")] [CLSCompliant(false)] - public static void CreateTransformFeedbacks(Int32 n, [OutAttribute] out Int32 ids) { throw new BindingsNotRewrittenException(); } + public static void CreateTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void CreateTransformFeedbacks(Int32 n, [OutAttribute] Int32* ids) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTransformFeedbacks")] [CLSCompliant(false)] - public static void CreateTransformFeedbacks(Int32 n, [OutAttribute] UInt32[] ids) { throw new BindingsNotRewrittenException(); } + public static void CreateTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTransformFeedbacks")] [CLSCompliant(false)] - public static void CreateTransformFeedbacks(Int32 n, [OutAttribute] out UInt32 ids) { throw new BindingsNotRewrittenException(); } + public static void CreateTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void CreateTransformFeedbacks(Int32 n, [OutAttribute] UInt32* ids) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateVertexArrays")] [CLSCompliant(false)] - public static void CreateVertexArrays(Int32 n, [OutAttribute] Int32[] arrays) { throw new BindingsNotRewrittenException(); } + public static void CreateVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateVertexArrays")] [CLSCompliant(false)] - public static void CreateVertexArrays(Int32 n, [OutAttribute] out Int32 arrays) { throw new BindingsNotRewrittenException(); } + public static void CreateVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateVertexArrays")] [CLSCompliant(false)] - public static unsafe void CreateVertexArrays(Int32 n, [OutAttribute] Int32* arrays) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateVertexArrays")] [CLSCompliant(false)] - public static void CreateVertexArrays(Int32 n, [OutAttribute] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } + public static void CreateVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateVertexArrays")] [CLSCompliant(false)] - public static void CreateVertexArrays(Int32 n, [OutAttribute] out UInt32 arrays) { throw new BindingsNotRewrittenException(); } + public static void CreateVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// - /// + /// [length: n] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateVertexArrays")] [CLSCompliant(false)] - public static unsafe void CreateVertexArrays(Int32 n, [OutAttribute] UInt32* arrays) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify whether front- or back-facing facets can be culled @@ -17130,7 +17132,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of a structure containing the draw parameters. /// [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawElementsIndirect")] - public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, IntPtr indirect) { throw new BindingsNotRewrittenException(); } + public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.DrawElementsType type, IntPtr indirect) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render indexed primitives from array data, taking parameters from memory @@ -17146,7 +17148,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawElementsIndirect")] [CLSCompliant(false)] - public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[] indirect) + public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T2[] indirect) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -17164,7 +17166,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawElementsIndirect")] [CLSCompliant(false)] - public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[,] indirect) + public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T2[,] indirect) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -17182,7 +17184,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawElementsIndirect")] [CLSCompliant(false)] - public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[,,] indirect) + public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T2[,,] indirect) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -17199,7 +17201,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of a structure containing the draw parameters. /// [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawElementsIndirect")] - public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] ref T2 indirect) + public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] ref T2 indirect) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -21682,7 +21684,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTableParameterfv")] [CLSCompliant(false)] - public static void GetColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.GetColorTableParameterPNameSgi pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get color lookup table parameters @@ -21698,7 +21700,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTableParameterfv")] [CLSCompliant(false)] - public static void GetColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.GetColorTableParameterPNameSgi pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// /// Get color lookup table parameters @@ -21714,7 +21716,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTableParameterfv")] [CLSCompliant(false)] - public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.GetColorTableParameterPNameSgi pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// Get color lookup table parameters @@ -21730,7 +21732,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTableParameteriv")] [CLSCompliant(false)] - public static void GetColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.GetColorTableParameterPNameSgi pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get color lookup table parameters @@ -21746,7 +21748,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTableParameteriv")] [CLSCompliant(false)] - public static void GetColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.GetColorTableParameterPNameSgi pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// Get color lookup table parameters @@ -21762,7 +21764,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTableParameteriv")] [CLSCompliant(false)] - public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.GetColorTableParameterPNameSgi pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Return a compressed texture image @@ -22237,7 +22239,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionParameterfv")] [CLSCompliant(false)] - public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameterExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get convolution parameters @@ -22253,7 +22255,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionParameterfv")] [CLSCompliant(false)] - public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } + public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameterExt pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// /// Get convolution parameters @@ -22269,7 +22271,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionParameterfv")] [CLSCompliant(false)] - public static unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameterExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// Get convolution parameters @@ -22285,7 +22287,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionParameteriv")] [CLSCompliant(false)] - public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameterExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get convolution parameters @@ -22301,7 +22303,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionParameteriv")] [CLSCompliant(false)] - public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameterExt pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// Get convolution parameters @@ -22317,7 +22319,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionParameteriv")] [CLSCompliant(false)] - public static unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameterExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve messages from the debug message log @@ -22841,7 +22843,7 @@ namespace OpenTK.Graphics.OpenGL4 /// A pointer to storage for the returned histogram table. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogram")] - public static void GetHistogram(OpenTK.Graphics.OpenGL4.HistogramTarget target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values) { throw new BindingsNotRewrittenException(); } + public static void GetHistogram(OpenTK.Graphics.OpenGL4.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values) { throw new BindingsNotRewrittenException(); } /// /// Get histogram table @@ -22863,7 +22865,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogram")] [CLSCompliant(false)] - public static void GetHistogram(OpenTK.Graphics.OpenGL4.HistogramTarget target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[] values) + public static void GetHistogram(OpenTK.Graphics.OpenGL4.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[] values) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -22887,7 +22889,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogram")] [CLSCompliant(false)] - public static void GetHistogram(OpenTK.Graphics.OpenGL4.HistogramTarget target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[,] values) + public static void GetHistogram(OpenTK.Graphics.OpenGL4.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[,] values) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -22911,7 +22913,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogram")] [CLSCompliant(false)] - public static void GetHistogram(OpenTK.Graphics.OpenGL4.HistogramTarget target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[,,] values) + public static void GetHistogram(OpenTK.Graphics.OpenGL4.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[,,] values) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -22934,7 +22936,7 @@ namespace OpenTK.Graphics.OpenGL4 /// A pointer to storage for the returned histogram table. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogram")] - public static void GetHistogram(OpenTK.Graphics.OpenGL4.HistogramTarget target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T4 values) + public static void GetHistogram(OpenTK.Graphics.OpenGL4.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T4 values) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -22952,7 +22954,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogramParameterfv")] [CLSCompliant(false)] - public static void GetHistogramParameter(OpenTK.Graphics.OpenGL4.HistogramTarget target, OpenTK.Graphics.OpenGL4.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetHistogramParameter(OpenTK.Graphics.OpenGL4.HistogramTargetExt target, OpenTK.Graphics.OpenGL4.GetHistogramParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get histogram parameters @@ -22968,7 +22970,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogramParameterfv")] [CLSCompliant(false)] - public static void GetHistogramParameter(OpenTK.Graphics.OpenGL4.HistogramTarget target, OpenTK.Graphics.OpenGL4.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } + public static void GetHistogramParameter(OpenTK.Graphics.OpenGL4.HistogramTargetExt target, OpenTK.Graphics.OpenGL4.GetHistogramParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// /// Get histogram parameters @@ -22984,7 +22986,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogramParameterfv")] [CLSCompliant(false)] - public static unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL4.HistogramTarget target, OpenTK.Graphics.OpenGL4.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL4.HistogramTargetExt target, OpenTK.Graphics.OpenGL4.GetHistogramParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// Get histogram parameters @@ -23000,7 +23002,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogramParameteriv")] [CLSCompliant(false)] - public static void GetHistogramParameter(OpenTK.Graphics.OpenGL4.HistogramTarget target, OpenTK.Graphics.OpenGL4.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetHistogramParameter(OpenTK.Graphics.OpenGL4.HistogramTargetExt target, OpenTK.Graphics.OpenGL4.GetHistogramParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get histogram parameters @@ -23016,7 +23018,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogramParameteriv")] [CLSCompliant(false)] - public static void GetHistogramParameter(OpenTK.Graphics.OpenGL4.HistogramTarget target, OpenTK.Graphics.OpenGL4.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetHistogramParameter(OpenTK.Graphics.OpenGL4.HistogramTargetExt target, OpenTK.Graphics.OpenGL4.GetHistogramParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// Get histogram parameters @@ -23032,7 +23034,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogramParameteriv")] [CLSCompliant(false)] - public static unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL4.HistogramTarget target, OpenTK.Graphics.OpenGL4.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL4.HistogramTargetExt target, OpenTK.Graphics.OpenGL4.GetHistogramParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// @@ -23335,7 +23337,7 @@ namespace OpenTK.Graphics.OpenGL4 /// A pointer to storage for the returned values. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmax")] - public static void GetMinmax(OpenTK.Graphics.OpenGL4.MinmaxTarget target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values) { throw new BindingsNotRewrittenException(); } + public static void GetMinmax(OpenTK.Graphics.OpenGL4.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values) { throw new BindingsNotRewrittenException(); } /// /// Get minimum and maximum pixel values @@ -23357,7 +23359,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmax")] [CLSCompliant(false)] - public static void GetMinmax(OpenTK.Graphics.OpenGL4.MinmaxTarget target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[] values) + public static void GetMinmax(OpenTK.Graphics.OpenGL4.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[] values) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -23381,7 +23383,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmax")] [CLSCompliant(false)] - public static void GetMinmax(OpenTK.Graphics.OpenGL4.MinmaxTarget target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[,] values) + public static void GetMinmax(OpenTK.Graphics.OpenGL4.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[,] values) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -23405,7 +23407,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmax")] [CLSCompliant(false)] - public static void GetMinmax(OpenTK.Graphics.OpenGL4.MinmaxTarget target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[,,] values) + public static void GetMinmax(OpenTK.Graphics.OpenGL4.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[,,] values) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -23428,7 +23430,7 @@ namespace OpenTK.Graphics.OpenGL4 /// A pointer to storage for the returned values. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmax")] - public static void GetMinmax(OpenTK.Graphics.OpenGL4.MinmaxTarget target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T4 values) + public static void GetMinmax(OpenTK.Graphics.OpenGL4.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T4 values) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -23446,7 +23448,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmaxParameterfv")] [CLSCompliant(false)] - public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL4.MinmaxTarget target, OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL4.MinmaxTargetExt target, OpenTK.Graphics.OpenGL4.GetMinmaxParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get minmax parameters @@ -23462,7 +23464,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmaxParameterfv")] [CLSCompliant(false)] - public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL4.MinmaxTarget target, OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } + public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL4.MinmaxTargetExt target, OpenTK.Graphics.OpenGL4.GetMinmaxParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// /// Get minmax parameters @@ -23478,7 +23480,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmaxParameterfv")] [CLSCompliant(false)] - public static unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL4.MinmaxTarget target, OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL4.MinmaxTargetExt target, OpenTK.Graphics.OpenGL4.GetMinmaxParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// Get minmax parameters @@ -23494,7 +23496,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmaxParameteriv")] [CLSCompliant(false)] - public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL4.MinmaxTarget target, OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL4.MinmaxTargetExt target, OpenTK.Graphics.OpenGL4.GetMinmaxParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get minmax parameters @@ -23510,7 +23512,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmaxParameteriv")] [CLSCompliant(false)] - public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL4.MinmaxTarget target, OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL4.MinmaxTargetExt target, OpenTK.Graphics.OpenGL4.GetMinmaxParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// Get minmax parameters @@ -23526,7 +23528,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmaxParameteriv")] [CLSCompliant(false)] - public static unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL4.MinmaxTarget target, OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL4.MinmaxTargetExt target, OpenTK.Graphics.OpenGL4.GetMinmaxParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Retrieve the location of a sample @@ -24185,7 +24187,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnColorTable")] - public static void GetnColorTable(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute] IntPtr table) { throw new BindingsNotRewrittenException(); } + public static void GetnColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [OutAttribute] IntPtr table) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24195,7 +24197,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnColorTable")] [CLSCompliant(false)] - public static void GetnColorTable(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T4[] table) + public static void GetnColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T4[] table) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -24207,7 +24209,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnColorTable")] [CLSCompliant(false)] - public static void GetnColorTable(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T4[,] table) + public static void GetnColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T4[,] table) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -24219,7 +24221,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnColorTable")] [CLSCompliant(false)] - public static void GetnColorTable(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T4[,,] table) + public static void GetnColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T4[,,] table) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -24230,7 +24232,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnColorTable")] - public static void GetnColorTable(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] ref T4 table) + public static void GetnColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] ref T4 table) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -24240,7 +24242,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnCompressedTexImage")] - public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 lod, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } + public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24249,7 +24251,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnCompressedTexImage")] [CLSCompliant(false)] - public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute] T3[] pixels) + public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute] T3[] pixels) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -24260,7 +24262,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnCompressedTexImage")] [CLSCompliant(false)] - public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute] T3[,] pixels) + public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute] T3[,] pixels) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -24271,7 +24273,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnCompressedTexImage")] [CLSCompliant(false)] - public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute] T3[,,] pixels) + public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute] T3[,,] pixels) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -24281,7 +24283,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnCompressedTexImage")] - public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute] ref T3 pixels) + public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute] ref T3 pixels) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -24292,7 +24294,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnConvolutionFilter")] - public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute] IntPtr image) { throw new BindingsNotRewrittenException(); } + public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [OutAttribute] IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24302,7 +24304,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnConvolutionFilter")] [CLSCompliant(false)] - public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T4[] image) + public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T4[] image) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -24314,7 +24316,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnConvolutionFilter")] [CLSCompliant(false)] - public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T4[,] image) + public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T4[,] image) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -24326,7 +24328,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnConvolutionFilter")] [CLSCompliant(false)] - public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T4[,,] image) + public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T4[,,] image) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -24337,7 +24339,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnConvolutionFilter")] - public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] ref T4 image) + public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] ref T4 image) where T4 : struct { throw new BindingsNotRewrittenException(); } @@ -24349,7 +24351,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnHistogram")] - public static void GetnHistogram(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute] IntPtr values) { throw new BindingsNotRewrittenException(); } + public static void GetnHistogram(OpenTK.Graphics.OpenGL4.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [OutAttribute] IntPtr values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24360,7 +24362,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnHistogram")] [CLSCompliant(false)] - public static void GetnHistogram(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T5[] values) + public static void GetnHistogram(OpenTK.Graphics.OpenGL4.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[] values) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -24373,7 +24375,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnHistogram")] [CLSCompliant(false)] - public static void GetnHistogram(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T5[,] values) + public static void GetnHistogram(OpenTK.Graphics.OpenGL4.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[,] values) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -24386,7 +24388,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnHistogram")] [CLSCompliant(false)] - public static void GetnHistogram(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T5[,,] values) + public static void GetnHistogram(OpenTK.Graphics.OpenGL4.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[,,] values) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -24398,7 +24400,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnHistogram")] - public static void GetnHistogram(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] ref T5 values) + public static void GetnHistogram(OpenTK.Graphics.OpenGL4.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] ref T5 values) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -24409,7 +24411,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapdv")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] Double[] v) { throw new BindingsNotRewrittenException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL4.MapTarget target, OpenTK.Graphics.OpenGL4.MapQuery query, Int32 bufSize, [OutAttribute] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24418,7 +24420,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapdv")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] out Double v) { throw new BindingsNotRewrittenException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL4.MapTarget target, OpenTK.Graphics.OpenGL4.MapQuery query, Int32 bufSize, [OutAttribute] out Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24427,7 +24429,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapdv")] [CLSCompliant(false)] - public static unsafe void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] Double* v) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetnMap(OpenTK.Graphics.OpenGL4.MapTarget target, OpenTK.Graphics.OpenGL4.MapQuery query, Int32 bufSize, [OutAttribute] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24436,7 +24438,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapfv")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] Single[] v) { throw new BindingsNotRewrittenException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL4.MapTarget target, OpenTK.Graphics.OpenGL4.MapQuery query, Int32 bufSize, [OutAttribute] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24445,7 +24447,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapfv")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] out Single v) { throw new BindingsNotRewrittenException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL4.MapTarget target, OpenTK.Graphics.OpenGL4.MapQuery query, Int32 bufSize, [OutAttribute] out Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24454,7 +24456,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapfv")] [CLSCompliant(false)] - public static unsafe void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] Single* v) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetnMap(OpenTK.Graphics.OpenGL4.MapTarget target, OpenTK.Graphics.OpenGL4.MapQuery query, Int32 bufSize, [OutAttribute] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24463,7 +24465,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapiv")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] Int32[] v) { throw new BindingsNotRewrittenException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL4.MapTarget target, OpenTK.Graphics.OpenGL4.MapQuery query, Int32 bufSize, [OutAttribute] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24472,7 +24474,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapiv")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] out Int32 v) { throw new BindingsNotRewrittenException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL4.MapTarget target, OpenTK.Graphics.OpenGL4.MapQuery query, Int32 bufSize, [OutAttribute] out Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24481,7 +24483,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapiv")] [CLSCompliant(false)] - public static unsafe void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] Int32* v) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetnMap(OpenTK.Graphics.OpenGL4.MapTarget target, OpenTK.Graphics.OpenGL4.MapQuery query, Int32 bufSize, [OutAttribute] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24491,7 +24493,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMinmax")] - public static void GetnMinmax(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute] IntPtr values) { throw new BindingsNotRewrittenException(); } + public static void GetnMinmax(OpenTK.Graphics.OpenGL4.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [OutAttribute] IntPtr values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24502,7 +24504,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMinmax")] [CLSCompliant(false)] - public static void GetnMinmax(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T5[] values) + public static void GetnMinmax(OpenTK.Graphics.OpenGL4.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[] values) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -24515,7 +24517,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMinmax")] [CLSCompliant(false)] - public static void GetnMinmax(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T5[,] values) + public static void GetnMinmax(OpenTK.Graphics.OpenGL4.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[,] values) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -24528,7 +24530,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMinmax")] [CLSCompliant(false)] - public static void GetnMinmax(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T5[,,] values) + public static void GetnMinmax(OpenTK.Graphics.OpenGL4.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[,,] values) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -24540,7 +24542,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMinmax")] - public static void GetnMinmax(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] ref T5 values) + public static void GetnMinmax(OpenTK.Graphics.OpenGL4.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] ref T5 values) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -24550,7 +24552,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapfv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] Single[] values) { throw new BindingsNotRewrittenException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.PixelMap map, Int32 bufSize, [OutAttribute] Single[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24558,7 +24560,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapfv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] out Single values) { throw new BindingsNotRewrittenException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.PixelMap map, Int32 bufSize, [OutAttribute] out Single values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24566,7 +24568,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapfv")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] Single* values) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.PixelMap map, Int32 bufSize, [OutAttribute] Single* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24574,7 +24576,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapuiv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] Int32[] values) { throw new BindingsNotRewrittenException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.PixelMap map, Int32 bufSize, [OutAttribute] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24582,7 +24584,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapuiv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] out Int32 values) { throw new BindingsNotRewrittenException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.PixelMap map, Int32 bufSize, [OutAttribute] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24590,7 +24592,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapuiv")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] Int32* values) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.PixelMap map, Int32 bufSize, [OutAttribute] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24598,7 +24600,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapuiv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] UInt32[] values) { throw new BindingsNotRewrittenException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.PixelMap map, Int32 bufSize, [OutAttribute] UInt32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24606,7 +24608,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapuiv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] out UInt32 values) { throw new BindingsNotRewrittenException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.PixelMap map, Int32 bufSize, [OutAttribute] out UInt32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24614,7 +24616,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapuiv")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] UInt32* values) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.PixelMap map, Int32 bufSize, [OutAttribute] UInt32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24622,7 +24624,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapusv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] Int16[] values) { throw new BindingsNotRewrittenException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.PixelMap map, Int32 bufSize, [OutAttribute] Int16[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24630,7 +24632,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapusv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] out Int16 values) { throw new BindingsNotRewrittenException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.PixelMap map, Int32 bufSize, [OutAttribute] out Int16 values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24638,7 +24640,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapusv")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] Int16* values) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.PixelMap map, Int32 bufSize, [OutAttribute] Int16* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24646,7 +24648,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapusv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] UInt16[] values) { throw new BindingsNotRewrittenException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.PixelMap map, Int32 bufSize, [OutAttribute] UInt16[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24654,7 +24656,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapusv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] out UInt16 values) { throw new BindingsNotRewrittenException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.PixelMap map, Int32 bufSize, [OutAttribute] out UInt16 values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24662,7 +24664,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapusv")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] UInt16* values) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.PixelMap map, Int32 bufSize, [OutAttribute] UInt16* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPolygonStipple")] @@ -24700,7 +24702,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnSeparableFilter")] - public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 rowBufSize, [OutAttribute] IntPtr row, Int32 columnBufSize, [OutAttribute] IntPtr column, [OutAttribute] IntPtr span) { throw new BindingsNotRewrittenException(); } + public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL4.SeparableTargetExt target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 rowBufSize, [OutAttribute] IntPtr row, Int32 columnBufSize, [OutAttribute] IntPtr column, [OutAttribute] IntPtr span) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24713,7 +24715,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnSeparableFilter")] [CLSCompliant(false)] - public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 rowBufSize, [InAttribute, OutAttribute] T4[] row, Int32 columnBufSize, [InAttribute, OutAttribute] T6[] column, [InAttribute, OutAttribute] T7[] span) + public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL4.SeparableTargetExt target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 rowBufSize, [InAttribute, OutAttribute] T4[] row, Int32 columnBufSize, [InAttribute, OutAttribute] T6[] column, [InAttribute, OutAttribute] T7[] span) where T4 : struct where T6 : struct where T7 : struct @@ -24730,7 +24732,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnSeparableFilter")] [CLSCompliant(false)] - public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 rowBufSize, [InAttribute, OutAttribute] T4[,] row, Int32 columnBufSize, [InAttribute, OutAttribute] T6[,] column, [InAttribute, OutAttribute] T7[,] span) + public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL4.SeparableTargetExt target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 rowBufSize, [InAttribute, OutAttribute] T4[,] row, Int32 columnBufSize, [InAttribute, OutAttribute] T6[,] column, [InAttribute, OutAttribute] T7[,] span) where T4 : struct where T6 : struct where T7 : struct @@ -24747,7 +24749,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnSeparableFilter")] [CLSCompliant(false)] - public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 rowBufSize, [InAttribute, OutAttribute] T4[,,] row, Int32 columnBufSize, [InAttribute, OutAttribute] T6[,,] column, [InAttribute, OutAttribute] T7[,,] span) + public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL4.SeparableTargetExt target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 rowBufSize, [InAttribute, OutAttribute] T4[,,] row, Int32 columnBufSize, [InAttribute, OutAttribute] T6[,,] column, [InAttribute, OutAttribute] T7[,,] span) where T4 : struct where T6 : struct where T7 : struct @@ -24763,7 +24765,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnSeparableFilter")] - public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 rowBufSize, [InAttribute, OutAttribute] ref T4 row, Int32 columnBufSize, [InAttribute, OutAttribute] ref T6 column, [InAttribute, OutAttribute] ref T7 span) + public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL4.SeparableTargetExt target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 rowBufSize, [InAttribute, OutAttribute] ref T4 row, Int32 columnBufSize, [InAttribute, OutAttribute] ref T6 column, [InAttribute, OutAttribute] ref T7 span) where T4 : struct where T6 : struct where T7 : struct @@ -24777,7 +24779,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnTexImage")] - public static void GetnTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 level, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } + public static void GetnTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24788,7 +24790,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnTexImage")] [CLSCompliant(false)] - public static void GetnTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 level, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T5[] pixels) + public static void GetnTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[] pixels) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -24801,7 +24803,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnTexImage")] [CLSCompliant(false)] - public static void GetnTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 level, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T5[,] pixels) + public static void GetnTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[,] pixels) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -24814,7 +24816,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnTexImage")] [CLSCompliant(false)] - public static void GetnTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 level, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] T5[,,] pixels) + public static void GetnTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[,,] pixels) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -24826,7 +24828,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnTexImage")] - public static void GetnTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 level, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] ref T5 pixels) + public static void GetnTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] ref T5 pixels) where T5 : struct { throw new BindingsNotRewrittenException(); } @@ -26953,7 +26955,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetQueryBufferObjecti64v")] [CLSCompliant(false)] - public static void GetQueryBufferObject(Int32 id, Int32 buffer, OpenTK.Graphics.OpenGL4.All pname, IntPtr offset) { throw new BindingsNotRewrittenException(); } + public static void GetQueryBufferObject(Int32 id, Int32 buffer, OpenTK.Graphics.OpenGL4.QueryObjectParameterName pname, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -26962,7 +26964,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetQueryBufferObjecti64v")] [CLSCompliant(false)] - public static void GetQueryBufferObject(UInt32 id, UInt32 buffer, OpenTK.Graphics.OpenGL4.All pname, IntPtr offset) { throw new BindingsNotRewrittenException(); } + public static void GetQueryBufferObject(UInt32 id, UInt32 buffer, OpenTK.Graphics.OpenGL4.QueryObjectParameterName pname, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Return parameters of an indexed query object target @@ -27564,7 +27566,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] [CLSCompliant(false)] - public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -27572,7 +27574,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] [CLSCompliant(false)] - public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -27580,7 +27582,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -27588,7 +27590,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -27596,7 +27598,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -27604,7 +27606,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -27612,7 +27614,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIuiv")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -27620,7 +27622,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIuiv")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -27628,7 +27630,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIuiv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -27748,7 +27750,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Pointer to storage for the span filter image (currently unused). /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetSeparableFilter")] - public static void GetSeparableFilter(OpenTK.Graphics.OpenGL4.SeparableTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr row, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr column, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr span) { throw new BindingsNotRewrittenException(); } + public static void GetSeparableFilter(OpenTK.Graphics.OpenGL4.SeparableTargetExt target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr row, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr column, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr span) { throw new BindingsNotRewrittenException(); } /// /// Get separable convolution filter kernel images @@ -27773,7 +27775,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetSeparableFilter")] [CLSCompliant(false)] - public static void GetSeparableFilter(OpenTK.Graphics.OpenGL4.SeparableTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[] column, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T5[] span) + public static void GetSeparableFilter(OpenTK.Graphics.OpenGL4.SeparableTargetExt target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[] column, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T5[] span) where T3 : struct where T4 : struct where T5 : struct @@ -27802,7 +27804,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetSeparableFilter")] [CLSCompliant(false)] - public static void GetSeparableFilter(OpenTK.Graphics.OpenGL4.SeparableTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[,] column, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T5[,] span) + public static void GetSeparableFilter(OpenTK.Graphics.OpenGL4.SeparableTargetExt target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[,] column, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T5[,] span) where T3 : struct where T4 : struct where T5 : struct @@ -27831,7 +27833,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetSeparableFilter")] [CLSCompliant(false)] - public static void GetSeparableFilter(OpenTK.Graphics.OpenGL4.SeparableTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,,] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[,,] column, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T5[,,] span) + public static void GetSeparableFilter(OpenTK.Graphics.OpenGL4.SeparableTargetExt target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,,] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T4[,,] column, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T5[,,] span) where T3 : struct where T4 : struct where T5 : struct @@ -27859,7 +27861,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Pointer to storage for the span filter image (currently unused). /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetSeparableFilter")] - public static void GetSeparableFilter(OpenTK.Graphics.OpenGL4.SeparableTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T3 row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T4 column, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T5 span) + public static void GetSeparableFilter(OpenTK.Graphics.OpenGL4.SeparableTargetExt target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T3 row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T4 column, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T5 span) where T3 : struct where T4 : struct where T5 : struct @@ -28997,7 +28999,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIiv")] [CLSCompliant(false)] - public static void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29005,7 +29007,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIiv")] [CLSCompliant(false)] - public static void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29013,7 +29015,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIiv")] [CLSCompliant(false)] - public static unsafe void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29021,7 +29023,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIiv")] [CLSCompliant(false)] - public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29029,7 +29031,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIiv")] [CLSCompliant(false)] - public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29037,7 +29039,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIiv")] [CLSCompliant(false)] - public static unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29045,7 +29047,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIuiv")] [CLSCompliant(false)] - public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29053,7 +29055,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIuiv")] [CLSCompliant(false)] - public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29061,7 +29063,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIuiv")] [CLSCompliant(false)] - public static unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -30875,7 +30877,7 @@ namespace OpenTK.Graphics.OpenGL4 /// If True, pixels will be consumed by the histogramming process and no drawing or texture loading will take place. If False, pixels will proceed to the minmax process after histogramming. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glHistogram")] - public static void Histogram(OpenTK.Graphics.OpenGL4.HistogramTarget target, Int32 width, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, bool sink) { throw new BindingsNotRewrittenException(); } + public static void Histogram(OpenTK.Graphics.OpenGL4.HistogramTargetExt target, Int32 width, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, bool sink) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate the content of a buffer object's data store @@ -31728,7 +31730,7 @@ namespace OpenTK.Graphics.OpenGL4 /// If True, pixels will be consumed by the minmax process and no drawing or texture loading will take place. If False, pixels will proceed to the final conversion process after minmax. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glMinmax")] - public static void Minmax(OpenTK.Graphics.OpenGL4.MinmaxTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, bool sink) { throw new BindingsNotRewrittenException(); } + public static void Minmax(OpenTK.Graphics.OpenGL4.MinmaxTargetExt target, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, bool sink) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specifies minimum rate at which sample shaing takes place @@ -38009,7 +38011,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Must be Histogram. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glResetHistogram")] - public static void ResetHistogram(OpenTK.Graphics.OpenGL4.HistogramTarget target) { throw new BindingsNotRewrittenException(); } + public static void ResetHistogram(OpenTK.Graphics.OpenGL4.HistogramTargetExt target) { throw new BindingsNotRewrittenException(); } /// /// Reset minmax table entries to initial values @@ -38018,7 +38020,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Must be Minmax. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glResetMinmax")] - public static void ResetMinmax(OpenTK.Graphics.OpenGL4.MinmaxTarget target) { throw new BindingsNotRewrittenException(); } + public static void ResetMinmax(OpenTK.Graphics.OpenGL4.MinmaxTargetExt target) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Resume transform feedback operations @@ -38620,7 +38622,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Pointer to a one-dimensional array of pixel data that is processed to build the column filter kernel. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glSeparableFilter2D")] - public static void SeparableFilter2D(OpenTK.Graphics.OpenGL4.SeparableTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "target,format,type,width")] IntPtr row, [CountAttribute(Computed = "target,format,type,height")] IntPtr column) { throw new BindingsNotRewrittenException(); } + public static void SeparableFilter2D(OpenTK.Graphics.OpenGL4.SeparableTargetExt target, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "target,format,type,width")] IntPtr row, [CountAttribute(Computed = "target,format,type,height")] IntPtr column) { throw new BindingsNotRewrittenException(); } /// /// Define a separable two-dimensional convolution filter @@ -38651,7 +38653,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glSeparableFilter2D")] [CLSCompliant(false)] - public static void SeparableFilter2D(OpenTK.Graphics.OpenGL4.SeparableTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,width")] T6[] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] T7[] column) + public static void SeparableFilter2D(OpenTK.Graphics.OpenGL4.SeparableTargetExt target, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,width")] T6[] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] T7[] column) where T6 : struct where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -38685,7 +38687,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glSeparableFilter2D")] [CLSCompliant(false)] - public static void SeparableFilter2D(OpenTK.Graphics.OpenGL4.SeparableTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,width")] T6[,] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] T7[,] column) + public static void SeparableFilter2D(OpenTK.Graphics.OpenGL4.SeparableTargetExt target, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,width")] T6[,] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] T7[,] column) where T6 : struct where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -38719,7 +38721,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glSeparableFilter2D")] [CLSCompliant(false)] - public static void SeparableFilter2D(OpenTK.Graphics.OpenGL4.SeparableTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,width")] T6[,,] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] T7[,,] column) + public static void SeparableFilter2D(OpenTK.Graphics.OpenGL4.SeparableTargetExt target, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,width")] T6[,,] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] T7[,,] column) where T6 : struct where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -38752,7 +38754,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Pointer to a one-dimensional array of pixel data that is processed to build the column filter kernel. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glSeparableFilter2D")] - public static void SeparableFilter2D(OpenTK.Graphics.OpenGL4.SeparableTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,width")] ref T6 row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] ref T7 column) + public static void SeparableFilter2D(OpenTK.Graphics.OpenGL4.SeparableTargetExt target, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,width")] ref T6 row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] ref T7 column) where T6 : struct where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -41545,7 +41547,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIiv")] [CLSCompliant(false)] - public static void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.All pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41553,7 +41555,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIiv")] [CLSCompliant(false)] - public static void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.All pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41561,7 +41563,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIiv")] [CLSCompliant(false)] - public static unsafe void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.All pname, Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41569,7 +41571,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIiv")] [CLSCompliant(false)] - public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41577,7 +41579,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIiv")] [CLSCompliant(false)] - public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41585,7 +41587,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIiv")] [CLSCompliant(false)] - public static unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41593,7 +41595,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIuiv")] [CLSCompliant(false)] - public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, UInt32[] @params) { throw new BindingsNotRewrittenException(); } + public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41601,7 +41603,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIuiv")] [CLSCompliant(false)] - public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, ref UInt32 @params) { throw new BindingsNotRewrittenException(); } + public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41609,7 +41611,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIuiv")] [CLSCompliant(false)] - public static unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, UInt32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44182,7 +44184,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayAttribLFormat")] [CLSCompliant(false)] - public static void VertexArrayAttribLFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } + public static void VertexArrayAttribLFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribType type, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44192,7 +44194,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayAttribLFormat")] [CLSCompliant(false)] - public static void VertexArrayAttribLFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.All type, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } + public static void VertexArrayAttribLFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribType type, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -47871,14 +47873,14 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCheckNamedFramebufferStatusEXT")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All CheckNamedFramebufferStatus(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.OpenGL4.FramebufferStatus CheckNamedFramebufferStatus(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCheckNamedFramebufferStatusEXT")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All CheckNamedFramebufferStatus(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.OpenGL4.FramebufferStatus CheckNamedFramebufferStatus(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48993,7 +48995,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage1DEXT")] - public static void CompressedMultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } + public static void CompressedMultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49006,7 +49008,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage1DEXT")] [CLSCompliant(false)] - public static void CompressedMultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] bits) + public static void CompressedMultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] bits) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -49021,7 +49023,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage1DEXT")] [CLSCompliant(false)] - public static void CompressedMultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] bits) + public static void CompressedMultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] bits) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -49036,7 +49038,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage1DEXT")] [CLSCompliant(false)] - public static void CompressedMultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] bits) + public static void CompressedMultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] bits) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -49050,7 +49052,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage1DEXT")] - public static void CompressedMultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 bits) + public static void CompressedMultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 bits) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -49065,7 +49067,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage2DEXT")] - public static void CompressedMultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } + public static void CompressedMultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49079,7 +49081,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage2DEXT")] [CLSCompliant(false)] - public static void CompressedMultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] bits) + public static void CompressedMultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] bits) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -49095,7 +49097,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage2DEXT")] [CLSCompliant(false)] - public static void CompressedMultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] bits) + public static void CompressedMultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] bits) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -49111,7 +49113,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage2DEXT")] [CLSCompliant(false)] - public static void CompressedMultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] bits) + public static void CompressedMultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] bits) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -49126,7 +49128,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage2DEXT")] - public static void CompressedMultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 bits) + public static void CompressedMultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 bits) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -49142,7 +49144,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage3DEXT")] - public static void CompressedMultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } + public static void CompressedMultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49157,7 +49159,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage3DEXT")] [CLSCompliant(false)] - public static void CompressedMultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[] bits) + public static void CompressedMultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[] bits) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -49174,7 +49176,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage3DEXT")] [CLSCompliant(false)] - public static void CompressedMultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,] bits) + public static void CompressedMultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,] bits) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -49191,7 +49193,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage3DEXT")] [CLSCompliant(false)] - public static void CompressedMultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,,] bits) + public static void CompressedMultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,,] bits) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -49207,7 +49209,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage3DEXT")] - public static void CompressedMultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T9 bits) + public static void CompressedMultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T9 bits) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -49465,7 +49467,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage1DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } + public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49478,7 +49480,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage1DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] bits) + public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] bits) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -49493,7 +49495,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage1DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] bits) + public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] bits) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -49508,7 +49510,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage1DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] bits) + public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] bits) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -49523,7 +49525,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage1DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 bits) + public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 bits) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -49538,7 +49540,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage1DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } + public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49551,7 +49553,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage1DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] bits) + public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] bits) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -49566,7 +49568,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage1DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] bits) + public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] bits) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -49581,7 +49583,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage1DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] bits) + public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] bits) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -49596,7 +49598,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage1DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 bits) + public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 bits) where T7 : struct { throw new BindingsNotRewrittenException(); } @@ -49612,7 +49614,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage2DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } + public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49626,7 +49628,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage2DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] bits) + public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] bits) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -49642,7 +49644,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage2DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] bits) + public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] bits) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -49658,7 +49660,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage2DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] bits) + public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] bits) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -49674,7 +49676,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage2DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 bits) + public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 bits) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -49690,7 +49692,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage2DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } + public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49704,7 +49706,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage2DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] bits) + public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] bits) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -49720,7 +49722,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage2DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] bits) + public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] bits) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -49736,7 +49738,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage2DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] bits) + public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] bits) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -49752,7 +49754,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage2DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 bits) + public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 bits) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -49769,7 +49771,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage3DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } + public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49784,7 +49786,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage3DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[] bits) + public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[] bits) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -49801,7 +49803,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage3DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,] bits) + public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,] bits) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -49818,7 +49820,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage3DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,,] bits) + public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,,] bits) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -49835,7 +49837,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage3DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T9 bits) + public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T9 bits) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -49852,7 +49854,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage3DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } + public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49867,7 +49869,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage3DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[] bits) + public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[] bits) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -49884,7 +49886,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage3DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,] bits) + public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,] bits) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -49901,7 +49903,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage3DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,,] bits) + public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,,] bits) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -49918,7 +49920,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage3DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T9 bits) + public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T9 bits) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -50430,7 +50432,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyMultiTexImage1DEXT")] - public static void CopyMultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new BindingsNotRewrittenException(); } + public static void CopyMultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50443,7 +50445,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyMultiTexImage2DEXT")] - public static void CopyMultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } + public static void CopyMultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50494,7 +50496,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureImage1DEXT")] [CLSCompliant(false)] - public static void CopyTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new BindingsNotRewrittenException(); } + public static void CopyTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50507,7 +50509,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureImage1DEXT")] [CLSCompliant(false)] - public static void CopyTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new BindingsNotRewrittenException(); } + public static void CopyTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50521,7 +50523,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureImage2DEXT")] [CLSCompliant(false)] - public static void CopyTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } + public static void CopyTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50535,7 +50537,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureImage2DEXT")] [CLSCompliant(false)] - public static void CopyTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } + public static void CopyTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50629,7 +50631,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the number of source code strings in the array strings. /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glCreateShaderProgramEXT")] - public static Int32 CreateShaderProgram(OpenTK.Graphics.OpenGL4.All type, String @string) { throw new BindingsNotRewrittenException(); } + public static Int32 CreateShaderProgram(OpenTK.Graphics.OpenGL4.ShaderType type, String @string) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Create a stand-alone program from an array of null-terminated source code strings @@ -50644,7 +50646,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array of pointers to source code strings from which to create the program object. /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glCreateShaderProgramvEXT")] - public static Int32 CreateShaderProgram(OpenTK.Graphics.OpenGL4.All type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new BindingsNotRewrittenException(); } + public static Int32 CreateShaderProgram(OpenTK.Graphics.OpenGL4.ShaderType type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -51245,7 +51247,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] [CLSCompliant(false)] - public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new BindingsNotRewrittenException(); } + public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL4.BufferTargetArb target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51253,7 +51255,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] [CLSCompliant(false)] - public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new BindingsNotRewrittenException(); } + public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL4.BufferTargetArb target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51261,7 +51263,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetBooleanIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetBooleanIndexed(OpenTK.Graphics.OpenGL4.BufferTargetArb target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51269,7 +51271,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] [CLSCompliant(false)] - public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new BindingsNotRewrittenException(); } + public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL4.BufferTargetArb target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51277,7 +51279,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] [CLSCompliant(false)] - public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new BindingsNotRewrittenException(); } + public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL4.BufferTargetArb target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51285,7 +51287,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetBooleanIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetBooleanIndexed(OpenTK.Graphics.OpenGL4.BufferTargetArb target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51450,7 +51452,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoublei_vEXT")] [CLSCompliant(false)] - public static void GetDouble(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL4.TypeEnum pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51458,7 +51460,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoublei_vEXT")] [CLSCompliant(false)] - public static void GetDouble(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL4.TypeEnum pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51466,7 +51468,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoublei_vEXT")] [CLSCompliant(false)] - public static unsafe void GetDouble(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetDouble(OpenTK.Graphics.OpenGL4.TypeEnum pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51474,7 +51476,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoublei_vEXT")] [CLSCompliant(false)] - public static void GetDouble(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL4.TypeEnum pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51482,7 +51484,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoublei_vEXT")] [CLSCompliant(false)] - public static void GetDouble(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL4.TypeEnum pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51490,7 +51492,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoublei_vEXT")] [CLSCompliant(false)] - public static unsafe void GetDouble(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetDouble(OpenTK.Graphics.OpenGL4.TypeEnum pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51498,7 +51500,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] [CLSCompliant(false)] - public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Double[] data) { throw new BindingsNotRewrittenException(); } + public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL4.TypeEnum target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Double[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51506,7 +51508,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] [CLSCompliant(false)] - public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Double data) { throw new BindingsNotRewrittenException(); } + public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL4.TypeEnum target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Double data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51514,7 +51516,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetDoubleIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Double* data) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetDoubleIndexed(OpenTK.Graphics.OpenGL4.TypeEnum target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Double* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51522,7 +51524,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] [CLSCompliant(false)] - public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Double[] data) { throw new BindingsNotRewrittenException(); } + public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL4.TypeEnum target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Double[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51530,7 +51532,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] [CLSCompliant(false)] - public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Double data) { throw new BindingsNotRewrittenException(); } + public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL4.TypeEnum target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Double data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51538,7 +51540,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetDoubleIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Double* data) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetDoubleIndexed(OpenTK.Graphics.OpenGL4.TypeEnum target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Double* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51546,7 +51548,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloati_vEXT")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL4.TypeEnum pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51554,7 +51556,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloati_vEXT")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL4.TypeEnum pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51562,7 +51564,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloati_vEXT")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetFloat(OpenTK.Graphics.OpenGL4.TypeEnum pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51570,7 +51572,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloati_vEXT")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL4.TypeEnum pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51578,7 +51580,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloati_vEXT")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL4.TypeEnum pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51586,7 +51588,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloati_vEXT")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetFloat(OpenTK.Graphics.OpenGL4.TypeEnum pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51594,7 +51596,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] [CLSCompliant(false)] - public static void GetFloatIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } + public static void GetFloatIndexed(OpenTK.Graphics.OpenGL4.TypeEnum target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51602,7 +51604,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] [CLSCompliant(false)] - public static void GetFloatIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } + public static void GetFloatIndexed(OpenTK.Graphics.OpenGL4.TypeEnum target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51610,7 +51612,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetFloatIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetFloatIndexed(OpenTK.Graphics.OpenGL4.TypeEnum target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51618,7 +51620,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] [CLSCompliant(false)] - public static void GetFloatIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } + public static void GetFloatIndexed(OpenTK.Graphics.OpenGL4.TypeEnum target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51626,7 +51628,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] [CLSCompliant(false)] - public static void GetFloatIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } + public static void GetFloatIndexed(OpenTK.Graphics.OpenGL4.TypeEnum target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51634,7 +51636,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetFloatIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetFloatIndexed(OpenTK.Graphics.OpenGL4.TypeEnum target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Retrieve a named parameter from a framebuffer @@ -51650,7 +51652,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.GetFramebufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Retrieve a named parameter from a framebuffer @@ -51666,7 +51668,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.GetFramebufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Retrieve a named parameter from a framebuffer @@ -51682,7 +51684,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.GetFramebufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Retrieve a named parameter from a framebuffer @@ -51698,7 +51700,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.GetFramebufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Retrieve a named parameter from a framebuffer @@ -51714,7 +51716,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.GetFramebufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Retrieve a named parameter from a framebuffer @@ -51730,7 +51732,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.GetFramebufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52667,7 +52669,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferAttachmentParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52676,7 +52678,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferAttachmentParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52685,7 +52687,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferAttachmentParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52694,7 +52696,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferAttachmentParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52703,7 +52705,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferAttachmentParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52712,7 +52714,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferAttachmentParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52720,7 +52722,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.GetFramebufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52728,7 +52730,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.GetFramebufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52736,7 +52738,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.GetFramebufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52744,7 +52746,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.GetFramebufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52752,7 +52754,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.GetFramebufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52760,7 +52762,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.GetFramebufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52769,7 +52771,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramivEXT")] [CLSCompliant(false)] - public static void GetNamedProgram(Int32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.ProgramProperty pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetNamedProgram(Int32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.ProgramPropertyArb pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52778,7 +52780,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedProgram(Int32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.ProgramProperty pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetNamedProgram(Int32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.ProgramPropertyArb pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52787,7 +52789,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramivEXT")] [CLSCompliant(false)] - public static void GetNamedProgram(UInt32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.ProgramProperty pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetNamedProgram(UInt32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.ProgramPropertyArb pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52796,7 +52798,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedProgram(UInt32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.ProgramProperty pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetNamedProgram(UInt32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.ProgramPropertyArb pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53235,7 +53237,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointeri_vEXT")] [CLSCompliant(false)] - public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } + public static void GetPointer(OpenTK.Graphics.OpenGL4.TypeEnum pname, Int32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53243,7 +53245,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointeri_vEXT")] [CLSCompliant(false)] - public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) + public static void GetPointer(OpenTK.Graphics.OpenGL4.TypeEnum pname, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -53253,7 +53255,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointeri_vEXT")] [CLSCompliant(false)] - public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) + public static void GetPointer(OpenTK.Graphics.OpenGL4.TypeEnum pname, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -53263,7 +53265,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointeri_vEXT")] [CLSCompliant(false)] - public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) + public static void GetPointer(OpenTK.Graphics.OpenGL4.TypeEnum pname, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -53273,7 +53275,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointeri_vEXT")] [CLSCompliant(false)] - public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) + public static void GetPointer(OpenTK.Graphics.OpenGL4.TypeEnum pname, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -53283,7 +53285,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointeri_vEXT")] [CLSCompliant(false)] - public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } + public static void GetPointer(OpenTK.Graphics.OpenGL4.TypeEnum pname, UInt32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53291,7 +53293,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointeri_vEXT")] [CLSCompliant(false)] - public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) + public static void GetPointer(OpenTK.Graphics.OpenGL4.TypeEnum pname, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -53301,7 +53303,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointeri_vEXT")] [CLSCompliant(false)] - public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) + public static void GetPointer(OpenTK.Graphics.OpenGL4.TypeEnum pname, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -53311,7 +53313,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointeri_vEXT")] [CLSCompliant(false)] - public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) + public static void GetPointer(OpenTK.Graphics.OpenGL4.TypeEnum pname, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -53321,7 +53323,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointeri_vEXT")] [CLSCompliant(false)] - public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) + public static void GetPointer(OpenTK.Graphics.OpenGL4.TypeEnum pname, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -53331,7 +53333,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointerIndexedvEXT")] [CLSCompliant(false)] - public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr data) { throw new BindingsNotRewrittenException(); } + public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.TypeEnum target, Int32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53339,7 +53341,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointerIndexedvEXT")] [CLSCompliant(false)] - public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] data) + public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.TypeEnum target, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] data) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -53349,7 +53351,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointerIndexedvEXT")] [CLSCompliant(false)] - public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] data) + public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.TypeEnum target, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] data) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -53359,7 +53361,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointerIndexedvEXT")] [CLSCompliant(false)] - public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] data) + public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.TypeEnum target, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] data) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -53369,7 +53371,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointerIndexedvEXT")] [CLSCompliant(false)] - public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 data) + public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.TypeEnum target, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 data) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -53379,7 +53381,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointerIndexedvEXT")] [CLSCompliant(false)] - public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr data) { throw new BindingsNotRewrittenException(); } + public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.TypeEnum target, UInt32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53387,7 +53389,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointerIndexedvEXT")] [CLSCompliant(false)] - public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] data) + public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.TypeEnum target, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] data) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -53397,7 +53399,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointerIndexedvEXT")] [CLSCompliant(false)] - public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] data) + public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.TypeEnum target, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] data) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -53407,7 +53409,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointerIndexedvEXT")] [CLSCompliant(false)] - public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] data) + public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.TypeEnum target, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] data) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -53417,7 +53419,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointerIndexedvEXT")] [CLSCompliant(false)] - public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 data) + public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.TypeEnum target, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 data) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -53511,7 +53513,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL4.PipelineParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -53527,7 +53529,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL4.PipelineParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -53543,7 +53545,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL4.PipelineParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -53559,7 +53561,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL4.PipelineParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -53575,7 +53577,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL4.PipelineParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -53591,7 +53593,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL4.PipelineParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54035,7 +54037,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayInteger(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } + public static void GetVertexArrayInteger(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.VertexArrayPName pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54044,7 +54046,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayInteger(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } + public static void GetVertexArrayInteger(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.VertexArrayPName pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54053,7 +54055,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegeri_vEXT")] [CLSCompliant(false)] - public static unsafe void GetVertexArrayInteger(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetVertexArrayInteger(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.VertexArrayPName pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54062,7 +54064,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayInteger(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } + public static void GetVertexArrayInteger(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.VertexArrayPName pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54071,7 +54073,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayInteger(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } + public static void GetVertexArrayInteger(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.VertexArrayPName pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54080,7 +54082,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegeri_vEXT")] [CLSCompliant(false)] - public static unsafe void GetVertexArrayInteger(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetVertexArrayInteger(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.VertexArrayPName pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54088,7 +54090,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayInteger(Int32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } + public static void GetVertexArrayInteger(Int32 vaobj, OpenTK.Graphics.OpenGL4.VertexArrayPName pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54096,7 +54098,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayInteger(Int32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } + public static void GetVertexArrayInteger(Int32 vaobj, OpenTK.Graphics.OpenGL4.VertexArrayPName pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54104,7 +54106,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegervEXT")] [CLSCompliant(false)] - public static unsafe void GetVertexArrayInteger(Int32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetVertexArrayInteger(Int32 vaobj, OpenTK.Graphics.OpenGL4.VertexArrayPName pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54112,7 +54114,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayInteger(UInt32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } + public static void GetVertexArrayInteger(UInt32 vaobj, OpenTK.Graphics.OpenGL4.VertexArrayPName pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54120,7 +54122,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayInteger(UInt32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } + public static void GetVertexArrayInteger(UInt32 vaobj, OpenTK.Graphics.OpenGL4.VertexArrayPName pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54128,7 +54130,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegervEXT")] [CLSCompliant(false)] - public static unsafe void GetVertexArrayInteger(UInt32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetVertexArrayInteger(UInt32 vaobj, OpenTK.Graphics.OpenGL4.VertexArrayPName pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54137,7 +54139,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] IntPtr param) { throw new BindingsNotRewrittenException(); } + public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.VertexArrayPName pname, [OutAttribute] IntPtr param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54146,7 +54148,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute] T3[] param) + public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.VertexArrayPName pname, [InAttribute, OutAttribute] T3[] param) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -54157,7 +54159,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute] T3[,] param) + public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.VertexArrayPName pname, [InAttribute, OutAttribute] T3[,] param) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -54168,7 +54170,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute] T3[,,] param) + public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.VertexArrayPName pname, [InAttribute, OutAttribute] T3[,,] param) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -54179,7 +54181,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute] ref T3 param) + public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.VertexArrayPName pname, [InAttribute, OutAttribute] ref T3 param) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -54190,7 +54192,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] IntPtr param) { throw new BindingsNotRewrittenException(); } + public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.VertexArrayPName pname, [OutAttribute] IntPtr param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54199,7 +54201,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute] T3[] param) + public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.VertexArrayPName pname, [InAttribute, OutAttribute] T3[] param) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -54210,7 +54212,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute] T3[,] param) + public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.VertexArrayPName pname, [InAttribute, OutAttribute] T3[,] param) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -54221,7 +54223,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute] T3[,,] param) + public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.VertexArrayPName pname, [InAttribute, OutAttribute] T3[,,] param) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -54232,7 +54234,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute] ref T3 param) + public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.VertexArrayPName pname, [InAttribute, OutAttribute] ref T3 param) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -54242,7 +54244,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr param) { throw new BindingsNotRewrittenException(); } + public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL4.VertexArrayPName pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54250,7 +54252,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] param) + public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL4.VertexArrayPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] param) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -54260,7 +54262,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] param) + public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL4.VertexArrayPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] param) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -54270,7 +54272,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] param) + public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL4.VertexArrayPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] param) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -54280,7 +54282,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 param) + public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL4.VertexArrayPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 param) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -54290,7 +54292,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr param) { throw new BindingsNotRewrittenException(); } + public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL4.VertexArrayPName pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54298,7 +54300,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] param) + public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL4.VertexArrayPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] param) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -54308,7 +54310,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] param) + public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL4.VertexArrayPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] param) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -54318,7 +54320,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] param) + public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL4.VertexArrayPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] param) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -54328,7 +54330,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 param) + public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL4.VertexArrayPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 param) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -54456,7 +54458,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static IntPtr MapNamedBufferRange(UInt32 buffer, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL4.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// /// @@ -54464,183 +54466,183 @@ namespace OpenTK.Graphics.OpenGL4 /// /// /// - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixFrustumEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixFrustumEXT")] public static void MatrixFrustum(OpenTK.Graphics.OpenGL4.MatrixMode mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoaddEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixLoaddEXT")] [CLSCompliant(false)] public static void MatrixLoad(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoaddEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixLoaddEXT")] [CLSCompliant(false)] public static void MatrixLoad(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoaddEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixLoaddEXT")] [CLSCompliant(false)] public static unsafe void MatrixLoad(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadfEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadfEXT")] [CLSCompliant(false)] public static void MatrixLoad(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadfEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadfEXT")] [CLSCompliant(false)] public static void MatrixLoad(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadfEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadfEXT")] [CLSCompliant(false)] public static unsafe void MatrixLoad(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadIdentityEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadIdentityEXT")] public static void MatrixLoadIdentity(OpenTK.Graphics.OpenGL4.MatrixMode mode) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] [CLSCompliant(false)] public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] [CLSCompliant(false)] public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] [CLSCompliant(false)] public static unsafe void MatrixLoadTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] [CLSCompliant(false)] public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] [CLSCompliant(false)] public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] [CLSCompliant(false)] public static unsafe void MatrixLoadTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultdEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixMultdEXT")] [CLSCompliant(false)] public static void MatrixMult(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultdEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixMultdEXT")] [CLSCompliant(false)] public static void MatrixMult(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultdEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixMultdEXT")] [CLSCompliant(false)] public static unsafe void MatrixMult(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultfEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixMultfEXT")] [CLSCompliant(false)] public static void MatrixMult(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultfEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixMultfEXT")] [CLSCompliant(false)] public static void MatrixMult(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultfEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixMultfEXT")] [CLSCompliant(false)] public static unsafe void MatrixMult(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] [CLSCompliant(false)] public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] [CLSCompliant(false)] public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] [CLSCompliant(false)] public static unsafe void MatrixMultTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] [CLSCompliant(false)] public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] [CLSCompliant(false)] public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// [length: 16] - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] [CLSCompliant(false)] public static unsafe void MatrixMultTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// /// @@ -54648,67 +54650,67 @@ namespace OpenTK.Graphics.OpenGL4 /// /// /// - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixOrthoEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixOrthoEXT")] public static void MatrixOrtho(OpenTK.Graphics.OpenGL4.MatrixMode mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixPopEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixPopEXT")] public static void MatrixPop(OpenTK.Graphics.OpenGL4.MatrixMode mode) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixPushEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixPushEXT")] public static void MatrixPush(OpenTK.Graphics.OpenGL4.MatrixMode mode) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// /// /// /// - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixRotatedEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixRotatedEXT")] public static void MatrixRotate(OpenTK.Graphics.OpenGL4.MatrixMode mode, Double angle, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// /// /// /// - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixRotatefEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixRotatefEXT")] public static void MatrixRotate(OpenTK.Graphics.OpenGL4.MatrixMode mode, Single angle, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// /// /// - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixScaledEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixScaledEXT")] public static void MatrixScale(OpenTK.Graphics.OpenGL4.MatrixMode mode, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// /// /// - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixScalefEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixScalefEXT")] public static void MatrixScale(OpenTK.Graphics.OpenGL4.MatrixMode mode, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// /// /// - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixTranslatedEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixTranslatedEXT")] public static void MatrixTranslate(OpenTK.Graphics.OpenGL4.MatrixMode mode, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } - /// [requires: EXT_direct_state_access] + /// [requires: EXT_direct_state_access|NV_path_rendering] /// /// /// /// - [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixTranslatefEXT")] + [AutoGenerated(Category = "EXT_direct_state_access|NV_path_rendering", Version = "", EntryPoint = "glMatrixTranslatefEXT")] public static void MatrixTranslate(OpenTK.Graphics.OpenGL4.MatrixMode mode, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] @@ -54718,7 +54720,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexBufferEXT")] [CLSCompliant(false)] - public static void MultiTexBuffer(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.All internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } + public static void MultiTexBuffer(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TypeEnum internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54727,7 +54729,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexBufferEXT")] [CLSCompliant(false)] - public static void MultiTexBuffer(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.All internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } + public static void MultiTexBuffer(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TypeEnum internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54935,7 +54937,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage1DEXT")] - public static void MultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } + public static void MultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54949,7 +54951,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage1DEXT")] [CLSCompliant(false)] - public static void MultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[] pixels) + public static void MultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[] pixels) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -54965,7 +54967,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage1DEXT")] [CLSCompliant(false)] - public static void MultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,] pixels) + public static void MultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,] pixels) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -54981,7 +54983,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage1DEXT")] [CLSCompliant(false)] - public static void MultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,,] pixels) + public static void MultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,,] pixels) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -54996,7 +54998,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage1DEXT")] - public static void MultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T8 pixels) + public static void MultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T8 pixels) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -55012,7 +55014,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage2DEXT")] - public static void MultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } + public static void MultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55027,7 +55029,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage2DEXT")] [CLSCompliant(false)] - public static void MultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) + public static void MultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -55044,7 +55046,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage2DEXT")] [CLSCompliant(false)] - public static void MultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) + public static void MultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -55061,7 +55063,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage2DEXT")] [CLSCompliant(false)] - public static void MultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) + public static void MultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -55077,7 +55079,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage2DEXT")] - public static void MultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) + public static void MultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -55094,7 +55096,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage3DEXT")] - public static void MultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } + public static void MultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55110,7 +55112,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage3DEXT")] [CLSCompliant(false)] - public static void MultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) + public static void MultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -55128,7 +55130,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage3DEXT")] [CLSCompliant(false)] - public static void MultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) + public static void MultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -55146,7 +55148,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage3DEXT")] [CLSCompliant(false)] - public static void MultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) + public static void MultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -55163,7 +55165,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage3DEXT")] - public static void MultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) + public static void MultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -57736,7 +57738,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageMultisampleCoverageEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorageMultisampleCoverage(Int32 renderbuffer, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + public static void NamedRenderbufferStorageMultisampleCoverage(Int32 renderbuffer, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57747,7 +57749,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageMultisampleCoverageEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorageMultisampleCoverage(UInt32 renderbuffer, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + public static void NamedRenderbufferStorageMultisampleCoverage(UInt32 renderbuffer, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61235,7 +61237,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] [CLSCompliant(false)] - public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } + public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61249,7 +61251,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] [CLSCompliant(false)] - public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[] pixels) + public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[] pixels) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -61265,7 +61267,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] [CLSCompliant(false)] - public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,] pixels) + public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,] pixels) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -61281,7 +61283,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] [CLSCompliant(false)] - public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,,] pixels) + public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,,] pixels) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -61297,7 +61299,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] [CLSCompliant(false)] - public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T8 pixels) + public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T8 pixels) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -61313,7 +61315,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] [CLSCompliant(false)] - public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } + public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61327,7 +61329,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] [CLSCompliant(false)] - public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[] pixels) + public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[] pixels) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -61343,7 +61345,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] [CLSCompliant(false)] - public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,] pixels) + public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,] pixels) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -61359,7 +61361,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] [CLSCompliant(false)] - public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,,] pixels) + public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,,] pixels) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -61375,7 +61377,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] [CLSCompliant(false)] - public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T8 pixels) + public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T8 pixels) where T8 : struct { throw new BindingsNotRewrittenException(); } @@ -61392,7 +61394,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] [CLSCompliant(false)] - public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } + public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61407,7 +61409,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] [CLSCompliant(false)] - public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) + public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -61424,7 +61426,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] [CLSCompliant(false)] - public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) + public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -61441,7 +61443,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] [CLSCompliant(false)] - public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) + public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -61458,7 +61460,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] [CLSCompliant(false)] - public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) + public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -61475,7 +61477,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] [CLSCompliant(false)] - public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } + public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61490,7 +61492,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] [CLSCompliant(false)] - public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) + public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -61507,7 +61509,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] [CLSCompliant(false)] - public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) + public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -61524,7 +61526,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] [CLSCompliant(false)] - public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) + public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -61541,7 +61543,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] [CLSCompliant(false)] - public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) + public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) where T9 : struct { throw new BindingsNotRewrittenException(); } @@ -61559,7 +61561,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] [CLSCompliant(false)] - public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } + public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61575,7 +61577,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] [CLSCompliant(false)] - public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) + public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -61593,7 +61595,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] [CLSCompliant(false)] - public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) + public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -61611,7 +61613,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] [CLSCompliant(false)] - public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) + public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -61629,7 +61631,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] [CLSCompliant(false)] - public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) + public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -61647,7 +61649,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] [CLSCompliant(false)] - public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } + public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61663,7 +61665,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] [CLSCompliant(false)] - public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) + public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -61681,7 +61683,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] [CLSCompliant(false)] - public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) + public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -61699,7 +61701,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] [CLSCompliant(false)] - public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) + public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -61717,7 +61719,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] [CLSCompliant(false)] - public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) + public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct { throw new BindingsNotRewrittenException(); } @@ -62720,7 +62722,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseProgramStagesEXT")] [CLSCompliant(false)] - public static void UseProgramStages(Int32 pipeline, Int32 stages, Int32 program) { throw new BindingsNotRewrittenException(); } + public static void UseProgramStages(Int32 pipeline, OpenTK.Graphics.OpenGL4.UseProgramStageMask stages, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind stages of a program object to a program pipeline @@ -62736,7 +62738,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseProgramStagesEXT")] [CLSCompliant(false)] - public static void UseProgramStages(UInt32 pipeline, UInt32 stages, UInt32 program) { throw new BindingsNotRewrittenException(); } + public static void UseProgramStages(UInt32 pipeline, OpenTK.Graphics.OpenGL4.UseProgramStageMask stages, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -63044,7 +63046,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribIOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribIOffset(Int32 vaobj, Int32 buffer, Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } + public static void VertexArrayVertexAttribIOffset(Int32 vaobj, Int32 buffer, Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribEnum type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -63056,7 +63058,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribIOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribIOffset(UInt32 vaobj, UInt32 buffer, UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } + public static void VertexArrayVertexAttribIOffset(UInt32 vaobj, UInt32 buffer, UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribEnum type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -64033,7 +64035,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.DebugSource source, OpenTK.Graphics.OpenGL4.DebugType type, OpenTK.Graphics.OpenGL4.DebugSeverity severity, Int32 count, Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -64058,7 +64060,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.DebugSource source, OpenTK.Graphics.OpenGL4.DebugType type, OpenTK.Graphics.OpenGL4.DebugSeverity severity, Int32 count, ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -64083,7 +64085,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL4.DebugSource source, OpenTK.Graphics.OpenGL4.DebugType type, OpenTK.Graphics.OpenGL4.DebugSeverity severity, Int32 count, Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -64108,7 +64110,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.DebugSource source, OpenTK.Graphics.OpenGL4.DebugType type, OpenTK.Graphics.OpenGL4.DebugSeverity severity, Int32 count, UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -64133,7 +64135,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.DebugSource source, OpenTK.Graphics.OpenGL4.DebugType type, OpenTK.Graphics.OpenGL4.DebugSeverity severity, Int32 count, ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -64158,7 +64160,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL4.DebugSource source, OpenTK.Graphics.OpenGL4.DebugType type, OpenTK.Graphics.OpenGL4.DebugSeverity severity, Int32 count, UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Inject an application-supplied message into the debug message queue @@ -64183,7 +64185,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, Int32 id, OpenTK.Graphics.OpenGL4.All severity, Int32 length, String buf) { throw new BindingsNotRewrittenException(); } + public static void DebugMessageInsert(OpenTK.Graphics.OpenGL4.DebugSource source, OpenTK.Graphics.OpenGL4.DebugType type, Int32 id, OpenTK.Graphics.OpenGL4.DebugSeverity severity, Int32 length, String buf) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Inject an application-supplied message into the debug message queue @@ -64208,7 +64210,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, UInt32 id, OpenTK.Graphics.OpenGL4.All severity, Int32 length, String buf) { throw new BindingsNotRewrittenException(); } + public static void DebugMessageInsert(OpenTK.Graphics.OpenGL4.DebugSource source, OpenTK.Graphics.OpenGL4.DebugType type, UInt32 id, OpenTK.Graphics.OpenGL4.DebugSeverity severity, Int32 length, String buf) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -64239,7 +64241,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSource[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -64270,7 +64272,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.DebugSource sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -64301,7 +64303,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSource* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -64332,7 +64334,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSource[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -64363,7 +64365,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.DebugSource sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -64394,11 +64396,11 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSource* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetGraphicsResetStatusKHR")] - public static OpenTK.Graphics.OpenGL4.All GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.OpenGL4.GraphicsResetStatus GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -65022,24 +65024,17 @@ namespace OpenTK.Graphics.OpenGL4 where T1 : struct { throw new BindingsNotRewrittenException(); } - /// [requires: KHR_debug] - /// Label a named object identified within a namespace - /// - /// - /// The namespace from which the name of the object is allocated. - /// - /// - /// The name of the object to label. - /// - /// - /// The length of the label to be used for the object. - /// - /// - /// The address of a string containing the label to assign to the object. - /// - [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] + /// [requires: KHR_parallel_shader_compile] + /// + [AutoGenerated(Category = "KHR_parallel_shader_compile", Version = "", EntryPoint = "glMaxShaderCompilerThreadsKHR")] [CLSCompliant(false)] - public static void ObjectLabel(OpenTK.Graphics.OpenGL4.All identifier, Int32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } + public static void MaxShaderCompilerThreads(Int32 count) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_parallel_shader_compile] + /// + [AutoGenerated(Category = "KHR_parallel_shader_compile", Version = "", EntryPoint = "glMaxShaderCompilerThreadsKHR")] + [CLSCompliant(false)] + public static void MaxShaderCompilerThreads(UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a named object identified within a namespace @@ -65058,7 +65053,26 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] [CLSCompliant(false)] - public static void ObjectLabel(OpenTK.Graphics.OpenGL4.All identifier, UInt32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } + public static void ObjectLabel(OpenTK.Graphics.OpenGL4.ObjectIdentifier identifier, Int32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } + + /// [requires: KHR_debug] + /// Label a named object identified within a namespace + /// + /// + /// The namespace from which the name of the object is allocated. + /// + /// + /// The name of the object to label. + /// + /// + /// The length of the label to be used for the object. + /// + /// + /// The address of a string containing the label to assign to the object. + /// + [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] + [CLSCompliant(false)] + public static void ObjectLabel(OpenTK.Graphics.OpenGL4.ObjectIdentifier identifier, UInt32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -65169,7 +65183,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroupKHR")] [CLSCompliant(false)] - public static void PushDebugGroup(OpenTK.Graphics.OpenGL4.All source, Int32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } + public static void PushDebugGroup(OpenTK.Graphics.OpenGL4.DebugSource source, Int32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Push a named debug group into the command stream @@ -65188,7 +65202,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroupKHR")] [CLSCompliant(false)] - public static void PushDebugGroup(OpenTK.Graphics.OpenGL4.All source, UInt32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } + public static void PushDebugGroup(OpenTK.Graphics.OpenGL4.DebugSource source, UInt32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -65276,7 +65290,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNV")] [CLSCompliant(false)] - public static void BeginConditionalRender(Int32 id, OpenTK.Graphics.OpenGL4.All mode) { throw new BindingsNotRewrittenException(); } + public static void BeginConditionalRender(Int32 id, OpenTK.Graphics.OpenGL4.TypeEnum mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conditional_render] /// Start conditional rendering @@ -65289,7 +65303,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNV")] [CLSCompliant(false)] - public static void BeginConditionalRender(UInt32 id, OpenTK.Graphics.OpenGL4.All mode) { throw new BindingsNotRewrittenException(); } + public static void BeginConditionalRender(UInt32 id, OpenTK.Graphics.OpenGL4.TypeEnum mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_blend_equation_advanced] [AutoGenerated(Category = "NV_blend_equation_advanced", Version = "", EntryPoint = "glBlendBarrierNV")] @@ -65415,24 +65429,24 @@ namespace OpenTK.Graphics.OpenGL4 /// [requires: NV_framebuffer_mixed_samples] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static void CoverageModulationTable(Int32 n, Single[] v) { throw new BindingsNotRewrittenException(); } + public static void CoverageModulationTable(Int32 n, [CountAttribute(Parameter = "n")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static void CoverageModulationTable(Int32 n, ref Single v) { throw new BindingsNotRewrittenException(); } + public static void CoverageModulationTable(Int32 n, [CountAttribute(Parameter = "n")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static unsafe void CoverageModulationTable(Int32 n, Single* v) { throw new BindingsNotRewrittenException(); } + public static unsafe void CoverageModulationTable(Int32 n, [CountAttribute(Parameter = "n")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65444,7 +65458,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65456,7 +65470,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65468,7 +65482,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65480,7 +65494,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65492,7 +65506,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65504,7 +65518,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65516,7 +65530,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -65530,7 +65544,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -65544,7 +65558,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -65558,7 +65572,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -65572,7 +65586,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -65586,7 +65600,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -65600,7 +65614,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -65614,7 +65628,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -65628,7 +65642,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -65642,7 +65656,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -65656,7 +65670,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -65670,7 +65684,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -65684,7 +65698,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -65698,7 +65712,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -65712,7 +65726,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -65726,7 +65740,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -65740,7 +65754,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -65754,7 +65768,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -65768,7 +65782,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -65782,7 +65796,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -65796,7 +65810,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -65810,7 +65824,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -65824,7 +65838,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -65838,7 +65852,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -65847,14 +65861,14 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] [CLSCompliant(false)] - public static void CoverFillPath(Int32 path, OpenTK.Graphics.OpenGL4.All coverMode) { throw new BindingsNotRewrittenException(); } + public static void CoverFillPath(Int32 path, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] [CLSCompliant(false)] - public static void CoverFillPath(UInt32 path, OpenTK.Graphics.OpenGL4.All coverMode) { throw new BindingsNotRewrittenException(); } + public static void CoverFillPath(UInt32 path, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65866,7 +65880,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65878,7 +65892,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65890,7 +65904,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65902,7 +65916,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65914,7 +65928,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65926,7 +65940,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65938,7 +65952,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -65952,7 +65966,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -65966,7 +65980,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -65980,7 +65994,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -65994,7 +66008,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -66008,7 +66022,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -66022,7 +66036,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -66036,7 +66050,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -66050,7 +66064,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -66064,7 +66078,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -66078,7 +66092,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -66092,7 +66106,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -66106,7 +66120,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -66120,7 +66134,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -66134,7 +66148,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -66148,7 +66162,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -66162,7 +66176,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -66176,7 +66190,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -66190,7 +66204,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -66204,7 +66218,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -66218,7 +66232,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -66232,7 +66246,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -66246,7 +66260,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -66260,7 +66274,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -66269,152 +66283,152 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathNV")] [CLSCompliant(false)] - public static void CoverStrokePath(Int32 path, OpenTK.Graphics.OpenGL4.All coverMode) { throw new BindingsNotRewrittenException(); } + public static void CoverStrokePath(Int32 path, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathNV")] [CLSCompliant(false)] - public static void CoverStrokePath(UInt32 path, OpenTK.Graphics.OpenGL4.All coverMode) { throw new BindingsNotRewrittenException(); } + public static void CoverStrokePath(UInt32 path, OpenTK.Graphics.OpenGL4.PathCoverMode coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateCommandListsNV")] [CLSCompliant(false)] - public static void CreateCommandLists(Int32 n, [OutAttribute] Int32[] lists) { throw new BindingsNotRewrittenException(); } + public static void CreateCommandLists(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateCommandListsNV")] [CLSCompliant(false)] - public static void CreateCommandLists(Int32 n, [OutAttribute] out Int32 lists) { throw new BindingsNotRewrittenException(); } + public static void CreateCommandLists(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateCommandListsNV")] [CLSCompliant(false)] - public static unsafe void CreateCommandLists(Int32 n, [OutAttribute] Int32* lists) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateCommandLists(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateCommandListsNV")] [CLSCompliant(false)] - public static void CreateCommandLists(Int32 n, [OutAttribute] UInt32[] lists) { throw new BindingsNotRewrittenException(); } + public static void CreateCommandLists(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateCommandListsNV")] [CLSCompliant(false)] - public static void CreateCommandLists(Int32 n, [OutAttribute] out UInt32 lists) { throw new BindingsNotRewrittenException(); } + public static void CreateCommandLists(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateCommandListsNV")] [CLSCompliant(false)] - public static unsafe void CreateCommandLists(Int32 n, [OutAttribute] UInt32* lists) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateCommandLists(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateStatesNV")] [CLSCompliant(false)] - public static void CreateStates(Int32 n, [OutAttribute] Int32[] states) { throw new BindingsNotRewrittenException(); } + public static void CreateStates(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateStatesNV")] [CLSCompliant(false)] - public static void CreateStates(Int32 n, [OutAttribute] out Int32 states) { throw new BindingsNotRewrittenException(); } + public static void CreateStates(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateStatesNV")] [CLSCompliant(false)] - public static unsafe void CreateStates(Int32 n, [OutAttribute] Int32* states) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateStates(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateStatesNV")] [CLSCompliant(false)] - public static void CreateStates(Int32 n, [OutAttribute] UInt32[] states) { throw new BindingsNotRewrittenException(); } + public static void CreateStates(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateStatesNV")] [CLSCompliant(false)] - public static void CreateStates(Int32 n, [OutAttribute] out UInt32 states) { throw new BindingsNotRewrittenException(); } + public static void CreateStates(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateStatesNV")] [CLSCompliant(false)] - public static unsafe void CreateStates(Int32 n, [OutAttribute] UInt32* states) { throw new BindingsNotRewrittenException(); } + public static unsafe void CreateStates(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static void DeleteCommandList(Int32 lists) { throw new BindingsNotRewrittenException(); } + public static void DeleteCommandList([CountAttribute(Parameter = "n")] Int32 lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static void DeleteCommandList(UInt32 lists) { throw new BindingsNotRewrittenException(); } + public static void DeleteCommandList([CountAttribute(Parameter = "n")] UInt32 lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static void DeleteCommandLists(Int32 n, Int32[] lists) { throw new BindingsNotRewrittenException(); } + public static void DeleteCommandLists(Int32 n, [CountAttribute(Parameter = "n")] Int32[] lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static void DeleteCommandLists(Int32 n, ref Int32 lists) { throw new BindingsNotRewrittenException(); } + public static void DeleteCommandLists(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static unsafe void DeleteCommandLists(Int32 n, Int32* lists) { throw new BindingsNotRewrittenException(); } + public static unsafe void DeleteCommandLists(Int32 n, [CountAttribute(Parameter = "n")] Int32* lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static void DeleteCommandLists(Int32 n, UInt32[] lists) { throw new BindingsNotRewrittenException(); } + public static void DeleteCommandLists(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static void DeleteCommandLists(Int32 n, ref UInt32 lists) { throw new BindingsNotRewrittenException(); } + public static void DeleteCommandLists(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static unsafe void DeleteCommandLists(Int32 n, UInt32* lists) { throw new BindingsNotRewrittenException(); } + public static unsafe void DeleteCommandLists(Int32 n, [CountAttribute(Parameter = "n")] UInt32* lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66431,58 +66445,58 @@ namespace OpenTK.Graphics.OpenGL4 public static void DeletePath(UInt32 path, Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static void DeleteState(Int32 states) { throw new BindingsNotRewrittenException(); } + public static void DeleteState([CountAttribute(Parameter = "n")] Int32 states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static void DeleteState(UInt32 states) { throw new BindingsNotRewrittenException(); } + public static void DeleteState([CountAttribute(Parameter = "n")] UInt32 states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static void DeleteStates(Int32 n, Int32[] states) { throw new BindingsNotRewrittenException(); } + public static void DeleteStates(Int32 n, [CountAttribute(Parameter = "n")] Int32[] states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static void DeleteStates(Int32 n, ref Int32 states) { throw new BindingsNotRewrittenException(); } + public static void DeleteStates(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static unsafe void DeleteStates(Int32 n, Int32* states) { throw new BindingsNotRewrittenException(); } + public static unsafe void DeleteStates(Int32 n, [CountAttribute(Parameter = "n")] Int32* states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static void DeleteStates(Int32 n, UInt32[] states) { throw new BindingsNotRewrittenException(); } + public static void DeleteStates(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static void DeleteStates(Int32 n, ref UInt32 states) { throw new BindingsNotRewrittenException(); } + public static void DeleteStates(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// - /// + /// [length: n] [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static unsafe void DeleteStates(Int32 n, UInt32* states) { throw new BindingsNotRewrittenException(); } + public static unsafe void DeleteStates(Int32 n, [CountAttribute(Parameter = "n")] UInt32* states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66790,7 +66804,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.FramebufferTarget target, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -66799,7 +66813,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.FramebufferTarget target, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -66808,7 +66822,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.FramebufferTarget target, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -66817,7 +66831,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.FramebufferTarget target, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -66826,7 +66840,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.FramebufferTarget target, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -66835,7 +66849,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.FramebufferTarget target, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66856,7 +66870,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL4.BufferTargetArb target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Return parameters of a buffer object @@ -66872,7 +66886,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL4.BufferTargetArb target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Return parameters of a buffer object @@ -66888,7 +66902,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetBufferParameterui64vNV")] [CLSCompliant(false)] - public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL4.BufferTargetArb target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Return parameters of a buffer object @@ -66904,7 +66918,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL4.BufferTargetArb target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Return parameters of a buffer object @@ -66920,7 +66934,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL4.BufferTargetArb target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Return parameters of a buffer object @@ -66936,7 +66950,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetBufferParameterui64vNV")] [CLSCompliant(false)] - public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL4.BufferTargetArb target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66986,7 +67000,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetImageHandleNV")] [CLSCompliant(false)] - public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL4.All format) { throw new BindingsNotRewrittenException(); } + public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL4.PixelFormat format) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -66996,7 +67010,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetImageHandleNV")] [CLSCompliant(false)] - public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL4.All format) { throw new BindingsNotRewrittenException(); } + public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL4.PixelFormat format) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -67103,7 +67117,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] - public static void GetInternalformatSample(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All internalformat, Int32 samples, OpenTK.Graphics.OpenGL4.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetInternalformatSample(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 samples, OpenTK.Graphics.OpenGL4.InternalFormatPName pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_internalformat_sample_query] /// @@ -67114,7 +67128,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] - public static void GetInternalformatSample(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All internalformat, Int32 samples, OpenTK.Graphics.OpenGL4.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } + public static void GetInternalformatSample(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 samples, OpenTK.Graphics.OpenGL4.InternalFormatPName pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_internalformat_sample_query] /// @@ -67125,7 +67139,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] - public static unsafe void GetInternalformatSample(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All internalformat, Int32 samples, OpenTK.Graphics.OpenGL4.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetInternalformatSample(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 samples, OpenTK.Graphics.OpenGL4.InternalFormatPName pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -67235,7 +67249,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } + public static void GetPathColorGen(OpenTK.Graphics.OpenGL4.PathColor color, OpenTK.Graphics.OpenGL4.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67243,7 +67257,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } + public static void GetPathColorGen(OpenTK.Graphics.OpenGL4.PathColor color, OpenTK.Graphics.OpenGL4.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67251,7 +67265,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPathColorGen(OpenTK.Graphics.OpenGL4.PathColor color, OpenTK.Graphics.OpenGL4.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67259,7 +67273,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } + public static void GetPathColorGen(OpenTK.Graphics.OpenGL4.PathColor color, OpenTK.Graphics.OpenGL4.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67267,7 +67281,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } + public static void GetPathColorGen(OpenTK.Graphics.OpenGL4.PathColor color, OpenTK.Graphics.OpenGL4.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67275,7 +67289,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] - public static unsafe void GetPathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPathColorGen(OpenTK.Graphics.OpenGL4.PathColor color, OpenTK.Graphics.OpenGL4.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67463,7 +67477,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } + public static void GetPathMetricRange(OpenTK.Graphics.OpenGL4.PathMetricMask metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67473,7 +67487,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } + public static void GetPathMetricRange(OpenTK.Graphics.OpenGL4.PathMetricMask metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67483,7 +67497,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPathMetricRange(OpenTK.Graphics.OpenGL4.PathMetricMask metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67493,7 +67507,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } + public static void GetPathMetricRange(OpenTK.Graphics.OpenGL4.PathMetricMask metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67503,7 +67517,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } + public static void GetPathMetricRange(OpenTK.Graphics.OpenGL4.PathMetricMask metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67513,7 +67527,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPathMetricRange(OpenTK.Graphics.OpenGL4.PathMetricMask metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67525,7 +67539,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } + public static void GetPathMetric(OpenTK.Graphics.OpenGL4.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67537,7 +67551,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } + public static void GetPathMetric(OpenTK.Graphics.OpenGL4.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67549,7 +67563,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPathMetric(OpenTK.Graphics.OpenGL4.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67561,7 +67575,43 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + public static void GetPathMetric(OpenTK.Graphics.OpenGL4.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.OpenGL4.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static unsafe void GetPathMetric(OpenTK.Graphics.OpenGL4.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } + + /// [requires: NV_path_rendering] + /// + /// + /// + /// [length: COMPSIZE(numPaths,pathNameType,paths)] + /// + /// + /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] + [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] + [CLSCompliant(false)] + public static void GetPathMetric(OpenTK.Graphics.OpenGL4.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -67575,7 +67625,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + public static void GetPathMetric(OpenTK.Graphics.OpenGL4.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -67589,7 +67639,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + public static unsafe void GetPathMetric(OpenTK.Graphics.OpenGL4.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -67603,7 +67653,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + public static void GetPathMetric(OpenTK.Graphics.OpenGL4.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -67617,7 +67667,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + public static void GetPathMetric(OpenTK.Graphics.OpenGL4.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -67631,7 +67681,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + public static unsafe void GetPathMetric(OpenTK.Graphics.OpenGL4.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -67645,7 +67695,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + public static void GetPathMetric(OpenTK.Graphics.OpenGL4.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -67659,7 +67709,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + public static void GetPathMetric(OpenTK.Graphics.OpenGL4.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -67673,7 +67723,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + public static unsafe void GetPathMetric(OpenTK.Graphics.OpenGL4.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -67687,7 +67737,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + public static void GetPathMetric(OpenTK.Graphics.OpenGL4.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -67701,7 +67751,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + public static void GetPathMetric(OpenTK.Graphics.OpenGL4.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -67715,7 +67765,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + public static unsafe void GetPathMetric(OpenTK.Graphics.OpenGL4.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -67729,43 +67779,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } - - /// [requires: NV_path_rendering] - /// - /// - /// - /// [length: COMPSIZE(numPaths,pathNameType,paths)] - /// - /// - /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] - [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] - [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } - - /// [requires: NV_path_rendering] - /// - /// - /// - /// [length: COMPSIZE(numPaths,pathNameType,paths)] - /// - /// - /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] - [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] - [CLSCompliant(false)] - public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } - - /// [requires: NV_path_rendering] - /// - /// - /// - /// [length: COMPSIZE(numPaths,pathNameType,paths)] - /// - /// - /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] - [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] - [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + public static void GetPathMetric(OpenTK.Graphics.OpenGL4.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -67779,7 +67793,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + public static void GetPathMetric(OpenTK.Graphics.OpenGL4.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -67793,7 +67807,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + public static unsafe void GetPathMetric(OpenTK.Graphics.OpenGL4.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -67807,7 +67821,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + public static void GetPathMetric(OpenTK.Graphics.OpenGL4.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -67821,7 +67835,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + public static void GetPathMetric(OpenTK.Graphics.OpenGL4.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -67835,7 +67849,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + public static unsafe void GetPathMetric(OpenTK.Graphics.OpenGL4.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -67849,7 +67863,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + public static void GetPathMetric(OpenTK.Graphics.OpenGL4.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -67863,7 +67877,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + public static void GetPathMetric(OpenTK.Graphics.OpenGL4.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -67877,7 +67891,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + public static unsafe void GetPathMetric(OpenTK.Graphics.OpenGL4.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -67891,7 +67905,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) + public static void GetPathMetric(OpenTK.Graphics.OpenGL4.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -67905,7 +67919,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) + public static void GetPathMetric(OpenTK.Graphics.OpenGL4.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -67919,7 +67933,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) + public static unsafe void GetPathMetric(OpenTK.Graphics.OpenGL4.PathMetricMask metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -67929,7 +67943,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL4.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67937,7 +67951,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new BindingsNotRewrittenException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL4.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67945,7 +67959,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL4.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67953,7 +67967,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67961,7 +67975,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new BindingsNotRewrittenException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67969,7 +67983,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67977,7 +67991,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new BindingsNotRewrittenException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL4.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67985,7 +67999,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new BindingsNotRewrittenException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL4.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67993,7 +68007,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL4.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68001,7 +68015,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new BindingsNotRewrittenException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68009,7 +68023,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new BindingsNotRewrittenException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68017,7 +68031,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.PathParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68031,7 +68045,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new BindingsNotRewrittenException(); } + public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68045,7 +68059,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new BindingsNotRewrittenException(); } + public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68059,7 +68073,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68073,7 +68087,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new BindingsNotRewrittenException(); } + public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68087,7 +68101,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new BindingsNotRewrittenException(); } + public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68101,7 +68115,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68115,7 +68129,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) + public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -68131,7 +68145,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) + public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -68147,7 +68161,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) + public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -68163,7 +68177,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) + public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -68179,7 +68193,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) + public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -68195,7 +68209,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) + public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -68211,7 +68225,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) + public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -68227,7 +68241,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) + public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -68243,7 +68257,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) + public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -68259,7 +68273,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) + public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -68275,7 +68289,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) + public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -68291,7 +68305,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) + public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -68307,7 +68321,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) + public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -68323,7 +68337,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) + public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -68339,7 +68353,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) + public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -68355,7 +68369,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) + public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -68371,7 +68385,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) + public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -68387,7 +68401,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) + public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -68403,7 +68417,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) + public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -68419,7 +68433,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) + public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -68435,7 +68449,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) + public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -68451,7 +68465,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) + public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -68467,7 +68481,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) + public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -68483,7 +68497,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) + public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.PathListMode pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -68493,7 +68507,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } + public static void GetPathTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL4.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68501,7 +68515,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } + public static void GetPathTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL4.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68509,7 +68523,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL4.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68517,7 +68531,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } + public static void GetPathTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL4.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68525,7 +68539,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } + public static void GetPathTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL4.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68533,7 +68547,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static unsafe void GetPathTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL4.PathGenMode pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -68552,7 +68566,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.All programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.OpenGL4.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.OpenGL4.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -68571,7 +68585,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.All programInterface, Int32 index, Int32 propCount, ref OpenTK.Graphics.OpenGL4.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } + public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 propCount, ref OpenTK.Graphics.OpenGL4.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -68590,7 +68604,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.All programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.OpenGL4.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.OpenGL4.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -68609,7 +68623,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL4.All programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.OpenGL4.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.OpenGL4.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -68628,7 +68642,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL4.All programInterface, UInt32 index, Int32 propCount, ref OpenTK.Graphics.OpenGL4.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 propCount, ref OpenTK.Graphics.OpenGL4.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -68647,12 +68661,12 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL4.All programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.OpenGL4.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.OpenGL4.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glGetStageIndexNV")] - public static Int16 GetStageIndex(OpenTK.Graphics.OpenGL4.All shadertype) { throw new BindingsNotRewrittenException(); } + public static Int16 GetStageIndex(OpenTK.Graphics.OpenGL4.ShaderType shadertype) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -68830,7 +68844,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLi64vNV")] [CLSCompliant(false)] - public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribEnum pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -68838,7 +68852,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLi64vNV")] [CLSCompliant(false)] - public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } + public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribEnum pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -68846,7 +68860,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLi64vNV")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribEnum pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -68854,7 +68868,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLi64vNV")] [CLSCompliant(false)] - public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribEnum pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -68862,7 +68876,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLi64vNV")] [CLSCompliant(false)] - public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribEnum pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -68870,7 +68884,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLi64vNV")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribEnum pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -68878,7 +68892,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLui64vNV")] [CLSCompliant(false)] - public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribEnum pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -68886,7 +68900,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLui64vNV")] [CLSCompliant(false)] - public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribEnum pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -68894,7 +68908,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLui64vNV")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } + public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribEnum pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [length: COMPSIZE(name)] @@ -69783,7 +69797,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "NV_bindless_multi_draw_indirect_count", Version = "", EntryPoint = "glMultiDrawElementsIndirectBindlessCountNV")] - public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, IntPtr indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) { throw new BindingsNotRewrittenException(); } + public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.DrawElementsType type, IntPtr indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -69795,7 +69809,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_bindless_multi_draw_indirect_count", Version = "", EntryPoint = "glMultiDrawElementsIndirectBindlessCountNV")] [CLSCompliant(false)] - public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[] indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) + public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T2[] indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -69809,7 +69823,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_bindless_multi_draw_indirect_count", Version = "", EntryPoint = "glMultiDrawElementsIndirectBindlessCountNV")] [CLSCompliant(false)] - public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[,] indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) + public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T2[,] indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -69823,7 +69837,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_bindless_multi_draw_indirect_count", Version = "", EntryPoint = "glMultiDrawElementsIndirectBindlessCountNV")] [CLSCompliant(false)] - public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[,,] indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) + public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T2[,,] indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -69836,7 +69850,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "NV_bindless_multi_draw_indirect_count", Version = "", EntryPoint = "glMultiDrawElementsIndirectBindlessCountNV")] - public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] ref T2 indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) + public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] ref T2 indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -69848,7 +69862,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "NV_bindless_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectBindlessNV")] - public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, IntPtr indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) { throw new BindingsNotRewrittenException(); } + public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.DrawElementsType type, IntPtr indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -69859,7 +69873,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_bindless_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectBindlessNV")] [CLSCompliant(false)] - public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) + public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T2[] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -69872,7 +69886,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_bindless_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectBindlessNV")] [CLSCompliant(false)] - public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[,] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) + public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T2[,] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -69885,7 +69899,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_bindless_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectBindlessNV")] [CLSCompliant(false)] - public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[,,] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) + public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] T2[,,] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -69897,7 +69911,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "NV_bindless_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectBindlessNV")] - public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] ref T2 indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) + public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute] ref T2 indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -69968,7 +69982,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(genMode,colorFormat)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] - public static void PathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All genMode, OpenTK.Graphics.OpenGL4.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single[] coeffs) { throw new BindingsNotRewrittenException(); } + public static void PathColorGen(OpenTK.Graphics.OpenGL4.PathColor color, OpenTK.Graphics.OpenGL4.PathGenMode genMode, OpenTK.Graphics.OpenGL4.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -69977,7 +69991,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(genMode,colorFormat)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] - public static void PathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All genMode, OpenTK.Graphics.OpenGL4.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] ref Single coeffs) { throw new BindingsNotRewrittenException(); } + public static void PathColorGen(OpenTK.Graphics.OpenGL4.PathColor color, OpenTK.Graphics.OpenGL4.PathGenMode genMode, OpenTK.Graphics.OpenGL4.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -69986,7 +70000,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(genMode,colorFormat)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] - public static unsafe void PathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All genMode, OpenTK.Graphics.OpenGL4.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single* coeffs) { throw new BindingsNotRewrittenException(); } + public static unsafe void PathColorGen(OpenTK.Graphics.OpenGL4.PathColor color, OpenTK.Graphics.OpenGL4.PathGenMode genMode, OpenTK.Graphics.OpenGL4.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70528,7 +70542,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathFogGenNV")] - public static void PathFogGen(OpenTK.Graphics.OpenGL4.All genMode) { throw new BindingsNotRewrittenException(); } + public static void PathFogGen(OpenTK.Graphics.OpenGL4.PathGenMode genMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70541,7 +70555,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontName, OpenTK.Graphics.OpenGL4.PathFontStyle fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70554,7 +70568,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T2[] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) + public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T2[] fontName, OpenTK.Graphics.OpenGL4.PathFontStyle fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -70569,7 +70583,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T2[,] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) + public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T2[,] fontName, OpenTK.Graphics.OpenGL4.PathFontStyle fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -70584,7 +70598,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) + public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, OpenTK.Graphics.OpenGL4.PathFontStyle fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -70599,7 +70613,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] ref T2 fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) + public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] ref T2 fontName, OpenTK.Graphics.OpenGL4.PathFontStyle fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -70614,7 +70628,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontName, OpenTK.Graphics.OpenGL4.PathFontStyle fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70627,7 +70641,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T2[] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T2[] fontName, OpenTK.Graphics.OpenGL4.PathFontStyle fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -70642,7 +70656,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T2[,] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T2[,] fontName, OpenTK.Graphics.OpenGL4.PathFontStyle fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -70657,7 +70671,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, OpenTK.Graphics.OpenGL4.PathFontStyle fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -70672,7 +70686,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] ref T2 fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] ref T2 fontName, OpenTK.Graphics.OpenGL4.PathFontStyle fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -70685,7 +70699,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontName, OpenTK.Graphics.OpenGL4.PathFontStyle fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70696,7 +70710,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) { throw new BindingsNotRewrittenException(); } + public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontName, OpenTK.Graphics.OpenGL4.PathFontStyle fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70707,7 +70721,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T1[] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) + public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T1[] fontName, OpenTK.Graphics.OpenGL4.PathFontStyle fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct { throw new BindingsNotRewrittenException(); } @@ -70720,7 +70734,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T1[] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) + public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T1[] fontName, OpenTK.Graphics.OpenGL4.PathFontStyle fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct { throw new BindingsNotRewrittenException(); } @@ -70733,7 +70747,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T1[,] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) + public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T1[,] fontName, OpenTK.Graphics.OpenGL4.PathFontStyle fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct { throw new BindingsNotRewrittenException(); } @@ -70746,7 +70760,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T1[,] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) + public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T1[,] fontName, OpenTK.Graphics.OpenGL4.PathFontStyle fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct { throw new BindingsNotRewrittenException(); } @@ -70759,7 +70773,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) + public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, OpenTK.Graphics.OpenGL4.PathFontStyle fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct { throw new BindingsNotRewrittenException(); } @@ -70772,7 +70786,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) + public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, OpenTK.Graphics.OpenGL4.PathFontStyle fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct { throw new BindingsNotRewrittenException(); } @@ -70785,7 +70799,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] ref T1 fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) + public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] ref T1 fontName, OpenTK.Graphics.OpenGL4.PathFontStyle fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct { throw new BindingsNotRewrittenException(); } @@ -70798,7 +70812,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] ref T1 fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) + public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] ref T1 fontName, OpenTK.Graphics.OpenGL4.PathFontStyle fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct { throw new BindingsNotRewrittenException(); } @@ -70814,7 +70828,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL4.PathFontTarget fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, OpenTK.Graphics.OpenGL4.PathFontStyle fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70828,7 +70842,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL4.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, OpenTK.Graphics.OpenGL4.PathFontStyle fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -70844,7 +70858,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL4.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, OpenTK.Graphics.OpenGL4.PathFontStyle fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -70860,7 +70874,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL4.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, OpenTK.Graphics.OpenGL4.PathFontStyle fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -70876,7 +70890,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL4.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, OpenTK.Graphics.OpenGL4.PathFontStyle fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -70892,7 +70906,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.PathFontTarget fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, OpenTK.Graphics.OpenGL4.PathFontStyle fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70906,7 +70920,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, OpenTK.Graphics.OpenGL4.PathFontStyle fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -70922,7 +70936,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, OpenTK.Graphics.OpenGL4.PathFontStyle fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -70938,7 +70952,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, OpenTK.Graphics.OpenGL4.PathFontStyle fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -70954,7 +70968,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, OpenTK.Graphics.OpenGL4.PathFontStyle fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -70971,7 +70985,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL4.PathFontTarget fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, OpenTK.Graphics.OpenGL4.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.PathElementType type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.OpenGL4.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70986,7 +71000,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL4.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, OpenTK.Graphics.OpenGL4.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.PathElementType type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.OpenGL4.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -71004,7 +71018,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL4.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, OpenTK.Graphics.OpenGL4.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.PathElementType type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.OpenGL4.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -71022,7 +71036,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL4.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, OpenTK.Graphics.OpenGL4.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.PathElementType type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.OpenGL4.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -71040,7 +71054,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL4.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, OpenTK.Graphics.OpenGL4.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.PathElementType type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.OpenGL4.PathHandleMissingGlyphs handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -71058,7 +71072,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.PathFontTarget fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, OpenTK.Graphics.OpenGL4.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.PathElementType type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.OpenGL4.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71073,7 +71087,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, OpenTK.Graphics.OpenGL4.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.PathElementType type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.OpenGL4.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -71091,7 +71105,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, OpenTK.Graphics.OpenGL4.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.PathElementType type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.OpenGL4.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -71109,7 +71123,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, OpenTK.Graphics.OpenGL4.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.PathElementType type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.OpenGL4.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -71127,7 +71141,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.PathFontTarget fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, OpenTK.Graphics.OpenGL4.PathFontStyle fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.PathElementType type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.OpenGL4.PathHandleMissingGlyphs handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct { throw new BindingsNotRewrittenException(); } @@ -71450,7 +71464,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, Single value) { throw new BindingsNotRewrittenException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL4.PathParameter pname, Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71458,7 +71472,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, Single value) { throw new BindingsNotRewrittenException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.PathParameter pname, Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71466,7 +71480,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL4.PathParameter pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71474,7 +71488,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } + public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.OpenGL4.PathParameter pname, [CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71482,7 +71496,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.PathParameter pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71490,7 +71504,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } + public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.PathParameter pname, [CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71498,7 +71512,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameteriNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL4.PathParameter pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71506,7 +71520,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameteriNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.PathParameter pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71514,7 +71528,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL4.PathParameter pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71522,7 +71536,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } + public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.OpenGL4.PathParameter pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71530,7 +71544,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.PathParameter pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71538,7 +71552,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } + public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.PathParameter pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71569,7 +71583,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] - public static void PathString(Int32 path, OpenTK.Graphics.OpenGL4.All format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new BindingsNotRewrittenException(); } + public static void PathString(Int32 path, OpenTK.Graphics.OpenGL4.PathStringFormat format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71578,7 +71592,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] - public static void PathString(Int32 path, OpenTK.Graphics.OpenGL4.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] pathString) + public static void PathString(Int32 path, OpenTK.Graphics.OpenGL4.PathStringFormat format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] pathString) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -71589,7 +71603,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] - public static void PathString(Int32 path, OpenTK.Graphics.OpenGL4.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] pathString) + public static void PathString(Int32 path, OpenTK.Graphics.OpenGL4.PathStringFormat format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] pathString) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -71600,7 +71614,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] - public static void PathString(Int32 path, OpenTK.Graphics.OpenGL4.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] pathString) + public static void PathString(Int32 path, OpenTK.Graphics.OpenGL4.PathStringFormat format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] pathString) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -71611,7 +71625,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] - public static void PathString(Int32 path, OpenTK.Graphics.OpenGL4.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 pathString) + public static void PathString(Int32 path, OpenTK.Graphics.OpenGL4.PathStringFormat format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 pathString) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -71622,7 +71636,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] - public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL4.All format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new BindingsNotRewrittenException(); } + public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL4.PathStringFormat format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71631,7 +71645,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] - public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL4.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] pathString) + public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL4.PathStringFormat format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] pathString) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -71642,7 +71656,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] - public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL4.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] pathString) + public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL4.PathStringFormat format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] pathString) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -71653,7 +71667,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] - public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL4.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] pathString) + public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL4.PathStringFormat format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] pathString) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -71664,7 +71678,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] - public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL4.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 pathString) + public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL4.PathStringFormat format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 pathString) where T3 : struct { throw new BindingsNotRewrittenException(); } @@ -72229,7 +72243,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(genMode,components)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] - public static void PathTexGen(OpenTK.Graphics.OpenGL4.All texCoordSet, OpenTK.Graphics.OpenGL4.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single[] coeffs) { throw new BindingsNotRewrittenException(); } + public static void PathTexGen(OpenTK.Graphics.OpenGL4.PathColor texCoordSet, OpenTK.Graphics.OpenGL4.PathGenMode genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72238,7 +72252,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(genMode,components)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] - public static void PathTexGen(OpenTK.Graphics.OpenGL4.All texCoordSet, OpenTK.Graphics.OpenGL4.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] ref Single coeffs) { throw new BindingsNotRewrittenException(); } + public static void PathTexGen(OpenTK.Graphics.OpenGL4.PathColor texCoordSet, OpenTK.Graphics.OpenGL4.PathGenMode genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72247,7 +72261,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(genMode,components)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] - public static unsafe void PathTexGen(OpenTK.Graphics.OpenGL4.All texCoordSet, OpenTK.Graphics.OpenGL4.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single* coeffs) { throw new BindingsNotRewrittenException(); } + public static unsafe void PathTexGen(OpenTK.Graphics.OpenGL4.PathColor texCoordSet, OpenTK.Graphics.OpenGL4.PathGenMode genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73515,7 +73529,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "NV_framebuffer_multisample_coverage", Version = "", EntryPoint = "glRenderbufferStorageMultisampleCoverageNV")] - public static void RenderbufferStorageMultisampleCoverage(OpenTK.Graphics.OpenGL4.RenderbufferTarget target, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } + public static void RenderbufferStorageMultisampleCoverage(OpenTK.Graphics.OpenGL4.RenderbufferTarget target, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.OpenGL4.InternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glResolveDepthValuesNV")] @@ -73526,7 +73540,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glSecondaryColorFormatNV")] - public static void SecondaryColorFormat(Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new BindingsNotRewrittenException(); } + public static void SecondaryColorFormat(Int32 size, OpenTK.Graphics.OpenGL4.ColorPointerType type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// @@ -73577,7 +73591,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73590,7 +73604,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73603,7 +73617,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73616,7 +73630,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73629,7 +73643,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73642,7 +73656,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73655,7 +73669,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -73670,7 +73684,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -73685,7 +73699,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -73700,7 +73714,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -73715,7 +73729,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -73730,7 +73744,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -73745,7 +73759,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -73760,7 +73774,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -73775,7 +73789,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -73790,7 +73804,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -73805,7 +73819,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -73820,7 +73834,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -73835,7 +73849,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -73850,7 +73864,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -73865,7 +73879,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -73880,7 +73894,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -73895,7 +73909,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -73910,7 +73924,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -73925,7 +73939,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -73940,7 +73954,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -73955,7 +73969,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.PathFillMode fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -73970,7 +73984,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -73985,7 +73999,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -74000,7 +74014,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.PathFillMode fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -74010,7 +74024,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathNV")] [CLSCompliant(false)] - public static void StencilFillPath(Int32 path, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask) { throw new BindingsNotRewrittenException(); } + public static void StencilFillPath(Int32 path, OpenTK.Graphics.OpenGL4.PathFillMode fillMode, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74018,7 +74032,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathNV")] [CLSCompliant(false)] - public static void StencilFillPath(UInt32 path, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask) { throw new BindingsNotRewrittenException(); } + public static void StencilFillPath(UInt32 path, OpenTK.Graphics.OpenGL4.PathFillMode fillMode, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74031,7 +74045,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74044,7 +74058,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74057,7 +74071,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74070,7 +74084,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74083,7 +74097,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74096,7 +74110,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74109,7 +74123,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -74124,7 +74138,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -74139,7 +74153,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -74154,7 +74168,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -74169,7 +74183,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -74184,7 +74198,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -74199,7 +74213,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -74214,7 +74228,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -74229,7 +74243,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -74244,7 +74258,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -74259,7 +74273,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -74274,7 +74288,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -74289,7 +74303,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -74304,7 +74318,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -74319,7 +74333,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -74334,7 +74348,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -74349,7 +74363,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -74364,7 +74378,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -74379,7 +74393,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -74394,7 +74408,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -74409,7 +74423,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -74424,7 +74438,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -74439,7 +74453,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -74454,7 +74468,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.PathElementType pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct { throw new BindingsNotRewrittenException(); } @@ -75478,7 +75492,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75487,7 +75501,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75496,7 +75510,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static unsafe void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + public static unsafe void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75505,7 +75519,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } + public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75514,7 +75528,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } + public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75523,7 +75537,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static unsafe void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } + public static unsafe void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.OpenGL4.PathTransformType transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -76610,7 +76624,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribLFormatNV")] [CLSCompliant(false)] - public static void VertexAttribLFormat(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new BindingsNotRewrittenException(); } + public static void VertexAttribLFormat(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribType type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -76619,14 +76633,14 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribLFormatNV")] [CLSCompliant(false)] - public static void VertexAttribLFormat(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new BindingsNotRewrittenException(); } + public static void VertexAttribLFormat(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribType type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// /// /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glVertexFormatNV")] - public static void VertexFormat(Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new BindingsNotRewrittenException(); } + public static void VertexFormat(Int32 size, OpenTK.Graphics.OpenGL4.VertexPointerType type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_clip_space_w_scaling] /// @@ -76788,7 +76802,7 @@ namespace OpenTK.Graphics.OpenGL4 [Slot(491)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetPerfMonitorGroupStringAMD(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr groupString); - [Slot(1011)] + [Slot(1012)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glSelectPerfMonitorCountersAMD(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32* counterList); [Slot(42)] @@ -76962,157 +76976,157 @@ namespace OpenTK.Graphics.OpenGL4 [Slot(689)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMaxShaderCompilerThreadsARB(UInt32 count); - [Slot(694)] + [Slot(695)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMinSampleShadingARB(Single value); - [Slot(700)] + [Slot(701)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiDrawArraysIndirectCountARB(System.Int32 mode, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride); - [Slot(707)] + [Slot(708)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiDrawElementsIndirectCountARB(System.Int32 mode, System.Int32 type, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride); - [Slot(743)] + [Slot(744)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glNamedBufferPageCommitmentARB(UInt32 buffer, IntPtr offset, IntPtr size, bool commit); - [Slot(757)] + [Slot(758)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glNamedFramebufferSampleLocationsfvARB(UInt32 framebuffer, UInt32 start, Int32 count, Single* v); - [Slot(784)] + [Slot(785)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glNamedStringARB(System.Int32 type, Int32 namelen, [CountAttribute(Parameter = "namelen")] IntPtr name, Int32 stringlen, [CountAttribute(Parameter = "stringlen")] IntPtr @string); - [Slot(831)] + [Slot(832)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPrimitiveBoundingBoxARB(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW); - [Slot(835)] + [Slot(836)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramParameteriARB(UInt32 program, System.Int32 pname, Int32 value); - [Slot(847)] + [Slot(848)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform1i64ARB(UInt32 program, Int32 location, Int64 x); - [Slot(849)] + [Slot(850)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform1i64vARB(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value); - [Slot(855)] + [Slot(856)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform1ui64ARB(UInt32 program, Int32 location, UInt64 x); - [Slot(857)] + [Slot(858)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform1ui64vARB(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value); - [Slot(871)] + [Slot(872)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform2i64ARB(UInt32 program, Int32 location, Int64 x, Int64 y); - [Slot(873)] + [Slot(874)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform2i64vARB(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value); - [Slot(879)] + [Slot(880)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform2ui64ARB(UInt32 program, Int32 location, UInt64 x, UInt64 y); - [Slot(881)] + [Slot(882)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform2ui64vARB(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value); - [Slot(895)] + [Slot(896)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform3i64ARB(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z); - [Slot(897)] + [Slot(898)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform3i64vARB(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value); - [Slot(903)] + [Slot(904)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform3ui64ARB(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z); - [Slot(905)] + [Slot(906)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform3ui64vARB(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value); - [Slot(919)] + [Slot(920)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform4i64ARB(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w); - [Slot(921)] + [Slot(922)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform4i64vARB(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value); - [Slot(927)] + [Slot(928)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform4ui64ARB(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w); - [Slot(929)] + [Slot(930)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform4ui64vARB(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value); - [Slot(934)] + [Slot(935)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniformHandleui64ARB(UInt32 program, Int32 location, UInt64 value); - [Slot(936)] + [Slot(937)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformHandleui64vARB(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values); - [Slot(985)] + [Slot(986)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glReadnPixelsARB(Int32 x, Int32 y, Int32 width, Int32 height, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data); - [Slot(1019)] + [Slot(1020)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glSpecializeShaderARB(UInt32 shader, IntPtr pEntryPoint, UInt32 numSpecializationConstants, UInt32* pConstantIndex, UInt32* pConstantValue); - [Slot(1037)] + [Slot(1038)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexBufferARB(System.Int32 target, System.Int32 internalformat, UInt32 buffer); - [Slot(1053)] + [Slot(1054)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexPageCommitmentARB(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit); - [Slot(1117)] + [Slot(1118)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform1i64ARB(Int32 location, Int64 x); - [Slot(1119)] + [Slot(1120)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform1i64vARB(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value); - [Slot(1123)] + [Slot(1124)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform1ui64ARB(Int32 location, UInt64 x); - [Slot(1125)] + [Slot(1126)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform1ui64vARB(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value); - [Slot(1133)] + [Slot(1134)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform2i64ARB(Int32 location, Int64 x, Int64 y); - [Slot(1135)] + [Slot(1136)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform2i64vARB(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value); - [Slot(1139)] + [Slot(1140)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform2ui64ARB(Int32 location, UInt64 x, UInt64 y); - [Slot(1141)] + [Slot(1142)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform2ui64vARB(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value); - [Slot(1149)] + [Slot(1150)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform3i64ARB(Int32 location, Int64 x, Int64 y, Int64 z); - [Slot(1151)] + [Slot(1152)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform3i64vARB(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value); - [Slot(1155)] + [Slot(1156)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform3ui64ARB(Int32 location, UInt64 x, UInt64 y, UInt64 z); - [Slot(1157)] + [Slot(1158)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform3ui64vARB(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value); - [Slot(1165)] + [Slot(1166)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform4i64ARB(Int32 location, Int64 x, Int64 y, Int64 z, Int64 w); - [Slot(1167)] + [Slot(1168)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform4i64vARB(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value); - [Slot(1171)] + [Slot(1172)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform4ui64ARB(Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w); - [Slot(1173)] + [Slot(1174)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform4ui64vARB(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value); - [Slot(1177)] + [Slot(1178)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniformHandleui64ARB(Int32 location, UInt64 value); - [Slot(1179)] + [Slot(1180)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniformHandleui64vARB(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value); - [Slot(1277)] + [Slot(1278)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribDivisorARB(UInt32 index, UInt32 divisor); - [Slot(1307)] + [Slot(1308)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribL1ui64ARB(UInt32 index, UInt64 x); - [Slot(1309)] + [Slot(1310)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttribL1ui64vARB(UInt32 index, UInt64* v); [Slot(4)] @@ -77444,25 +77458,25 @@ namespace OpenTK.Graphics.OpenGL4 private static extern void glCopyTextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height); [Slot(165)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glCreateBuffers(Int32 n, [OutAttribute] UInt32* buffers); + private static extern unsafe void glCreateBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* buffers); [Slot(167)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glCreateFramebuffers(Int32 n, [OutAttribute] UInt32* framebuffers); + private static extern unsafe void glCreateFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* framebuffers); [Slot(169)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int32 glCreateProgram(); [Slot(170)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glCreateProgramPipelines(Int32 n, [OutAttribute] UInt32* pipelines); + private static extern unsafe void glCreateProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines); [Slot(171)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glCreateQueries(System.Int32 target, Int32 n, [OutAttribute] UInt32* ids); + private static extern unsafe void glCreateQueries(System.Int32 target, Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids); [Slot(172)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glCreateRenderbuffers(Int32 n, [OutAttribute] UInt32* renderbuffers); + private static extern unsafe void glCreateRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers); [Slot(173)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glCreateSamplers(Int32 n, [OutAttribute] UInt32* samplers); + private static extern unsafe void glCreateSamplers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* samplers); [Slot(174)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern Int32 glCreateShader(System.Int32 type); @@ -77471,13 +77485,13 @@ namespace OpenTK.Graphics.OpenGL4 private static extern Int32 glCreateShaderProgramv(System.Int32 type, Int32 count, [CountAttribute(Parameter = "count")] IntPtr strings); [Slot(180)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glCreateTextures(System.Int32 target, Int32 n, [OutAttribute] UInt32* textures); + private static extern unsafe void glCreateTextures(System.Int32 target, Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* textures); [Slot(181)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glCreateTransformFeedbacks(Int32 n, [OutAttribute] UInt32* ids); + private static extern unsafe void glCreateTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids); [Slot(182)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glCreateVertexArrays(Int32 n, [OutAttribute] UInt32* arrays); + private static extern unsafe void glCreateVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays); [Slot(183)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glCullFace(System.Int32 mode); @@ -78261,1045 +78275,1045 @@ namespace OpenTK.Graphics.OpenGL4 [Slot(662)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern IntPtr glMapNamedBufferRange(UInt32 buffer, IntPtr offset, IntPtr length, System.Int32 access); - [Slot(690)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMemoryBarrier(System.Int32 barriers); [Slot(691)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMemoryBarrierByRegion(System.Int32 barriers); + private static extern void glMemoryBarrier(System.Int32 barriers); [Slot(692)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMinmax(System.Int32 target, System.Int32 internalformat, bool sink); + private static extern void glMemoryBarrierByRegion(System.Int32 barriers); [Slot(693)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMinSampleShading(Single value); - [Slot(695)] + private static extern void glMinmax(System.Int32 target, System.Int32 internalformat, bool sink); + [Slot(694)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiDrawArrays(System.Int32 mode, [CountAttribute(Computed = "count")] Int32* first, [CountAttribute(Computed = "drawcount")] Int32* count, Int32 drawcount); + private static extern void glMinSampleShading(Single value); [Slot(696)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMultiDrawArrays(System.Int32 mode, [CountAttribute(Computed = "count")] Int32* first, [CountAttribute(Computed = "drawcount")] Int32* count, Int32 drawcount); + [Slot(697)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiDrawArraysIndirect(System.Int32 mode, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride); - [Slot(699)] + [Slot(700)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiDrawArraysIndirectCount(System.Int32 mode, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride); - [Slot(701)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiDrawElements(System.Int32 mode, [CountAttribute(Computed = "drawcount")] Int32* count, System.Int32 type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount); [Slot(702)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiDrawElementsBaseVertex(System.Int32 mode, [CountAttribute(Computed = "drawcount")] Int32* count, System.Int32 type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex); + private static extern unsafe void glMultiDrawElements(System.Int32 mode, [CountAttribute(Computed = "drawcount")] Int32* count, System.Int32 type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount); [Slot(703)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glMultiDrawElementsBaseVertex(System.Int32 mode, [CountAttribute(Computed = "drawcount")] Int32* count, System.Int32 type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex); + [Slot(704)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiDrawElementsIndirect(System.Int32 mode, System.Int32 type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride); - [Slot(706)] + [Slot(707)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiDrawElementsIndirectCount(System.Int32 mode, System.Int32 type, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride); - [Slot(709)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexCoordP1ui(System.Int32 texture, System.Int32 type, UInt32 coords); [Slot(710)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiTexCoordP1uiv(System.Int32 texture, System.Int32 type, [CountAttribute(Count = 1)] UInt32* coords); + private static extern void glMultiTexCoordP1ui(System.Int32 texture, System.Int32 type, UInt32 coords); [Slot(711)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexCoordP2ui(System.Int32 texture, System.Int32 type, UInt32 coords); + private static extern unsafe void glMultiTexCoordP1uiv(System.Int32 texture, System.Int32 type, [CountAttribute(Count = 1)] UInt32* coords); [Slot(712)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiTexCoordP2uiv(System.Int32 texture, System.Int32 type, [CountAttribute(Count = 1)] UInt32* coords); + private static extern void glMultiTexCoordP2ui(System.Int32 texture, System.Int32 type, UInt32 coords); [Slot(713)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexCoordP3ui(System.Int32 texture, System.Int32 type, UInt32 coords); + private static extern unsafe void glMultiTexCoordP2uiv(System.Int32 texture, System.Int32 type, [CountAttribute(Count = 1)] UInt32* coords); [Slot(714)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiTexCoordP3uiv(System.Int32 texture, System.Int32 type, [CountAttribute(Count = 1)] UInt32* coords); + private static extern void glMultiTexCoordP3ui(System.Int32 texture, System.Int32 type, UInt32 coords); [Slot(715)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexCoordP4ui(System.Int32 texture, System.Int32 type, UInt32 coords); + private static extern unsafe void glMultiTexCoordP3uiv(System.Int32 texture, System.Int32 type, [CountAttribute(Count = 1)] UInt32* coords); [Slot(716)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMultiTexCoordP4ui(System.Int32 texture, System.Int32 type, UInt32 coords); + [Slot(717)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMultiTexCoordP4uiv(System.Int32 texture, System.Int32 type, [CountAttribute(Count = 1)] UInt32* coords); - [Slot(741)] + [Slot(742)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glNamedBufferData(UInt32 buffer, IntPtr size, IntPtr data, System.Int32 usage); - [Slot(745)] + [Slot(746)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glNamedBufferStorage(UInt32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, System.Int32 flags); - [Slot(747)] + [Slot(748)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data); - [Slot(750)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedFramebufferDrawBuffer(UInt32 framebuffer, System.Int32 buf); [Slot(751)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glNamedFramebufferDrawBuffers(UInt32 framebuffer, Int32 n, System.Int32* bufs); + private static extern void glNamedFramebufferDrawBuffer(UInt32 framebuffer, System.Int32 buf); [Slot(752)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedFramebufferParameteri(UInt32 framebuffer, System.Int32 pname, Int32 param); - [Slot(754)] + private static extern unsafe void glNamedFramebufferDrawBuffers(UInt32 framebuffer, Int32 n, System.Int32* bufs); + [Slot(753)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedFramebufferReadBuffer(UInt32 framebuffer, System.Int32 src); + private static extern void glNamedFramebufferParameteri(UInt32 framebuffer, System.Int32 pname, Int32 param); [Slot(755)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNamedFramebufferReadBuffer(UInt32 framebuffer, System.Int32 src); + [Slot(756)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glNamedFramebufferRenderbuffer(UInt32 framebuffer, System.Int32 attachment, System.Int32 renderbuffertarget, UInt32 renderbuffer); - [Slot(759)] + [Slot(760)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glNamedFramebufferTexture(UInt32 framebuffer, System.Int32 attachment, UInt32 texture, Int32 level); - [Slot(765)] + [Slot(766)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glNamedFramebufferTextureLayer(UInt32 framebuffer, System.Int32 attachment, UInt32 texture, Int32 level, Int32 layer); - [Slot(779)] + [Slot(780)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glNamedRenderbufferStorage(UInt32 renderbuffer, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(781)] + [Slot(782)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glNamedRenderbufferStorageMultisample(UInt32 renderbuffer, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(786)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNormalP3ui(System.Int32 type, UInt32 coords); [Slot(787)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glNormalP3uiv(System.Int32 type, [CountAttribute(Count = 1)] UInt32* coords); + private static extern void glNormalP3ui(System.Int32 type, UInt32 coords); [Slot(788)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glNormalP3uiv(System.Int32 type, [CountAttribute(Count = 1)] UInt32* coords); + [Slot(789)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glObjectLabel(System.Int32 identifier, UInt32 name, Int32 length, [CountAttribute(Computed = "label,length")] IntPtr label); - [Slot(790)] + [Slot(791)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glObjectPtrLabel(IntPtr ptr, Int32 length, [CountAttribute(Computed = "label,length")] IntPtr label); - [Slot(792)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPatchParameterfv(System.Int32 pname, [CountAttribute(Computed = "pname")] Single* values); [Slot(793)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPatchParameteri(System.Int32 pname, Int32 value); - [Slot(815)] + private static extern unsafe void glPatchParameterfv(System.Int32 pname, [CountAttribute(Computed = "pname")] Single* values); + [Slot(794)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPauseTransformFeedback(); + private static extern void glPatchParameteri(System.Int32 pname, Int32 value); [Slot(816)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPixelStoref(System.Int32 pname, Single param); + private static extern void glPauseTransformFeedback(); [Slot(817)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPixelStorei(System.Int32 pname, Int32 param); - [Slot(819)] + private static extern void glPixelStoref(System.Int32 pname, Single param); + [Slot(818)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPointParameterf(System.Int32 pname, Single param); + private static extern void glPixelStorei(System.Int32 pname, Int32 param); [Slot(820)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPointParameterfv(System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); + private static extern void glPointParameterf(System.Int32 pname, Single param); [Slot(821)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPointParameteri(System.Int32 pname, Int32 param); + private static extern unsafe void glPointParameterfv(System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); [Slot(822)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPointParameteriv(System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + private static extern void glPointParameteri(System.Int32 pname, Int32 param); [Slot(823)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPointSize(Single size); + private static extern unsafe void glPointParameteriv(System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); [Slot(824)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPolygonMode(System.Int32 face, System.Int32 mode); + private static extern void glPointSize(Single size); [Slot(825)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPolygonOffset(Single factor, Single units); + private static extern void glPolygonMode(System.Int32 face, System.Int32 mode); [Slot(826)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPolygonOffset(Single factor, Single units); + [Slot(827)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPolygonOffsetClamp(Single factor, Single units, Single clamp); - [Slot(828)] + [Slot(829)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPopDebugGroup(); - [Slot(832)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPrimitiveRestartIndex(UInt32 index); [Slot(833)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramBinary(UInt32 program, System.Int32 binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length); + private static extern void glPrimitiveRestartIndex(UInt32 index); [Slot(834)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramBinary(UInt32 program, System.Int32 binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length); + [Slot(835)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramParameteri(UInt32 program, System.Int32 pname, Int32 value); - [Slot(838)] + [Slot(839)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform1d(UInt32 program, Int32 location, Double v0); - [Slot(840)] + [Slot(841)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform1dv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double* value); - [Slot(842)] + [Slot(843)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform1f(UInt32 program, Int32 location, Single v0); - [Slot(844)] + [Slot(845)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform1fv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value); - [Slot(846)] + [Slot(847)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform1i(UInt32 program, Int32 location, Int32 v0); - [Slot(852)] + [Slot(853)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform1iv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value); - [Slot(854)] + [Slot(855)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform1ui(UInt32 program, Int32 location, UInt32 v0); - [Slot(860)] + [Slot(861)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform1uiv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32* value); - [Slot(862)] + [Slot(863)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform2d(UInt32 program, Int32 location, Double v0, Double v1); - [Slot(864)] + [Slot(865)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform2dv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value); - [Slot(866)] + [Slot(867)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform2f(UInt32 program, Int32 location, Single v0, Single v1); - [Slot(868)] + [Slot(869)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform2fv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value); - [Slot(870)] + [Slot(871)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform2i(UInt32 program, Int32 location, Int32 v0, Int32 v1); - [Slot(876)] + [Slot(877)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform2iv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value); - [Slot(878)] + [Slot(879)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform2ui(UInt32 program, Int32 location, UInt32 v0, UInt32 v1); - [Slot(884)] + [Slot(885)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform2uiv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value); - [Slot(886)] + [Slot(887)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform3d(UInt32 program, Int32 location, Double v0, Double v1, Double v2); - [Slot(888)] + [Slot(889)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform3dv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value); - [Slot(890)] + [Slot(891)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform3f(UInt32 program, Int32 location, Single v0, Single v1, Single v2); - [Slot(892)] + [Slot(893)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform3fv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value); - [Slot(894)] + [Slot(895)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform3i(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2); - [Slot(900)] + [Slot(901)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform3iv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value); - [Slot(902)] + [Slot(903)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform3ui(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2); - [Slot(908)] + [Slot(909)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform3uiv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value); - [Slot(910)] + [Slot(911)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform4d(UInt32 program, Int32 location, Double v0, Double v1, Double v2, Double v3); - [Slot(912)] + [Slot(913)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform4dv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value); - [Slot(914)] + [Slot(915)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform4f(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3); - [Slot(916)] + [Slot(917)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform4fv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value); - [Slot(918)] + [Slot(919)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform4i(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3); - [Slot(924)] + [Slot(925)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform4iv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value); - [Slot(926)] + [Slot(927)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform4ui(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3); - [Slot(932)] + [Slot(933)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform4uiv(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value); - [Slot(938)] + [Slot(939)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix2dv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value); - [Slot(940)] + [Slot(941)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix2fv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value); - [Slot(942)] + [Slot(943)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix2x3dv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value); - [Slot(944)] + [Slot(945)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix2x3fv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); - [Slot(946)] + [Slot(947)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix2x4dv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value); - [Slot(948)] + [Slot(949)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix2x4fv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); - [Slot(950)] + [Slot(951)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix3dv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value); - [Slot(952)] + [Slot(953)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix3fv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value); - [Slot(954)] + [Slot(955)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix3x2dv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value); - [Slot(956)] + [Slot(957)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix3x2fv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); - [Slot(958)] + [Slot(959)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix3x4dv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value); - [Slot(960)] + [Slot(961)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix3x4fv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); - [Slot(962)] + [Slot(963)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix4dv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value); - [Slot(964)] + [Slot(965)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix4fv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value); - [Slot(966)] + [Slot(967)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix4x2dv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value); - [Slot(968)] + [Slot(969)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix4x2fv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); - [Slot(970)] + [Slot(971)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix4x3dv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value); - [Slot(972)] + [Slot(973)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix4x3fv(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); - [Slot(976)] + [Slot(977)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProvokingVertex(System.Int32 mode); - [Slot(978)] + [Slot(979)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPushDebugGroup(System.Int32 source, UInt32 id, Int32 length, [CountAttribute(Computed = "message,length")] IntPtr message); - [Slot(981)] + [Slot(982)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glQueryCounter(UInt32 id, System.Int32 target); - [Slot(983)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glReadBuffer(System.Int32 src); [Slot(984)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute] IntPtr data); - [Slot(987)] + private static extern void glReadBuffer(System.Int32 src); + [Slot(985)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, System.Int32 format, System.Int32 type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); + private static extern void glReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute] IntPtr data); [Slot(988)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glReleaseShaderCompiler(); + private static extern void glReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, System.Int32 format, System.Int32 type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); [Slot(989)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRenderbufferStorage(System.Int32 target, System.Int32 internalformat, Int32 width, Int32 height); + private static extern void glReleaseShaderCompiler(); [Slot(990)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glRenderbufferStorageMultisample(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(992)] + private static extern void glRenderbufferStorage(System.Int32 target, System.Int32 internalformat, Int32 width, Int32 height); + [Slot(991)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glResetHistogram(System.Int32 target); + private static extern void glRenderbufferStorageMultisample(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height); [Slot(993)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glResetMinmax(System.Int32 target); - [Slot(995)] + private static extern void glResetHistogram(System.Int32 target); + [Slot(994)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glResumeTransformFeedback(); + private static extern void glResetMinmax(System.Int32 target); [Slot(996)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSampleCoverage(Single value, bool invert); + private static extern void glResumeTransformFeedback(); [Slot(997)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSampleMaski(UInt32 maskNumber, UInt32 mask); + private static extern void glSampleCoverage(Single value, bool invert); [Slot(998)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSamplerParameterf(UInt32 sampler, System.Int32 pname, Single param); + private static extern void glSampleMaski(UInt32 maskNumber, UInt32 mask); [Slot(999)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glSamplerParameterfv(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* param); + private static extern void glSamplerParameterf(UInt32 sampler, System.Int32 pname, Single param); [Slot(1000)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSamplerParameteri(UInt32 sampler, System.Int32 pname, Int32 param); + private static extern unsafe void glSamplerParameterfv(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* param); [Slot(1001)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glSamplerParameterIiv(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* param); + private static extern void glSamplerParameteri(UInt32 sampler, System.Int32 pname, Int32 param); [Slot(1002)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glSamplerParameterIuiv(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] UInt32* param); + private static extern unsafe void glSamplerParameterIiv(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* param); [Slot(1003)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glSamplerParameteriv(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* param); + private static extern unsafe void glSamplerParameterIuiv(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] UInt32* param); [Slot(1004)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glScissor(Int32 x, Int32 y, Int32 width, Int32 height); + private static extern unsafe void glSamplerParameteriv(UInt32 sampler, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* param); [Slot(1005)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glScissorArrayv(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v); + private static extern void glScissor(Int32 x, Int32 y, Int32 width, Int32 height); [Slot(1006)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glScissorIndexed(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height); + private static extern unsafe void glScissorArrayv(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v); [Slot(1007)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glScissorIndexedv(UInt32 index, [CountAttribute(Count = 4)] Int32* v); - [Slot(1009)] + private static extern void glScissorIndexed(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height); + [Slot(1008)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSecondaryColorP3ui(System.Int32 type, UInt32 color); + private static extern unsafe void glScissorIndexedv(UInt32 index, [CountAttribute(Count = 4)] Int32* v); [Slot(1010)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glSecondaryColorP3uiv(System.Int32 type, [CountAttribute(Count = 1)] UInt32* color); - [Slot(1012)] + private static extern void glSecondaryColorP3ui(System.Int32 type, UInt32 color); + [Slot(1011)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSeparableFilter2D(System.Int32 target, System.Int32 internalformat, Int32 width, Int32 height, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "target,format,type,width")] IntPtr row, [CountAttribute(Computed = "target,format,type,height")] IntPtr column); + private static extern unsafe void glSecondaryColorP3uiv(System.Int32 type, [CountAttribute(Count = 1)] UInt32* color); [Slot(1013)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, System.Int32 binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length); + private static extern void glSeparableFilter2D(System.Int32 target, System.Int32 internalformat, Int32 width, Int32 height, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "target,format,type,width")] IntPtr row, [CountAttribute(Computed = "target,format,type,height")] IntPtr column); [Slot(1014)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] IntPtr @string, [CountAttribute(Parameter = "count")] Int32* length); + private static extern unsafe void glShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, System.Int32 binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length); [Slot(1015)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] IntPtr @string, [CountAttribute(Parameter = "count")] Int32* length); + [Slot(1016)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glShaderStorageBlockBinding(UInt32 program, UInt32 storageBlockIndex, UInt32 storageBlockBinding); - [Slot(1018)] + [Slot(1019)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glSpecializeShader(UInt32 shader, IntPtr pEntryPoint, UInt32 numSpecializationConstants, UInt32* pConstantIndex, UInt32* pConstantValue); - [Slot(1023)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilFunc(System.Int32 func, Int32 @ref, UInt32 mask); [Slot(1024)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilFuncSeparate(System.Int32 face, System.Int32 func, Int32 @ref, UInt32 mask); + private static extern void glStencilFunc(System.Int32 func, Int32 @ref, UInt32 mask); [Slot(1025)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilMask(UInt32 mask); + private static extern void glStencilFuncSeparate(System.Int32 face, System.Int32 func, Int32 @ref, UInt32 mask); [Slot(1026)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilMaskSeparate(System.Int32 face, UInt32 mask); + private static extern void glStencilMask(UInt32 mask); [Slot(1027)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilOp(System.Int32 fail, System.Int32 zfail, System.Int32 zpass); + private static extern void glStencilMaskSeparate(System.Int32 face, UInt32 mask); [Slot(1028)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glStencilOp(System.Int32 fail, System.Int32 zfail, System.Int32 zpass); + [Slot(1029)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glStencilOpSeparate(System.Int32 face, System.Int32 sfail, System.Int32 dpfail, System.Int32 dppass); - [Slot(1036)] + [Slot(1037)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexBuffer(System.Int32 target, System.Int32 internalformat, UInt32 buffer); - [Slot(1038)] + [Slot(1039)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexBufferRange(System.Int32 target, System.Int32 internalformat, UInt32 buffer, IntPtr offset, IntPtr size); - [Slot(1040)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexCoordP1ui(System.Int32 type, UInt32 coords); [Slot(1041)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexCoordP1uiv(System.Int32 type, [CountAttribute(Count = 1)] UInt32* coords); + private static extern void glTexCoordP1ui(System.Int32 type, UInt32 coords); [Slot(1042)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexCoordP2ui(System.Int32 type, UInt32 coords); + private static extern unsafe void glTexCoordP1uiv(System.Int32 type, [CountAttribute(Count = 1)] UInt32* coords); [Slot(1043)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexCoordP2uiv(System.Int32 type, [CountAttribute(Count = 1)] UInt32* coords); + private static extern void glTexCoordP2ui(System.Int32 type, UInt32 coords); [Slot(1044)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexCoordP3ui(System.Int32 type, UInt32 coords); + private static extern unsafe void glTexCoordP2uiv(System.Int32 type, [CountAttribute(Count = 1)] UInt32* coords); [Slot(1045)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexCoordP3uiv(System.Int32 type, [CountAttribute(Count = 1)] UInt32* coords); + private static extern void glTexCoordP3ui(System.Int32 type, UInt32 coords); [Slot(1046)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexCoordP4ui(System.Int32 type, UInt32 coords); + private static extern unsafe void glTexCoordP3uiv(System.Int32 type, [CountAttribute(Count = 1)] UInt32* coords); [Slot(1047)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexCoordP4uiv(System.Int32 type, [CountAttribute(Count = 1)] UInt32* coords); + private static extern void glTexCoordP4ui(System.Int32 type, UInt32 coords); [Slot(1048)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexImage1D(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels); + private static extern unsafe void glTexCoordP4uiv(System.Int32 type, [CountAttribute(Count = 1)] UInt32* coords); [Slot(1049)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexImage2D(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); + private static extern void glTexImage1D(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels); [Slot(1050)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexImage2DMultisample(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height, bool fixedsamplelocations); + private static extern void glTexImage2D(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); [Slot(1051)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexImage3D(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels); + private static extern void glTexImage2DMultisample(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height, bool fixedsamplelocations); [Slot(1052)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexImage3DMultisample(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations); - [Slot(1054)] + private static extern void glTexImage3D(System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels); + [Slot(1053)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexParameterf(System.Int32 target, System.Int32 pname, Single param); + private static extern void glTexImage3DMultisample(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations); [Slot(1055)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexParameterfv(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); + private static extern void glTexParameterf(System.Int32 target, System.Int32 pname, Single param); [Slot(1056)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexParameteri(System.Int32 target, System.Int32 pname, Int32 param); + private static extern unsafe void glTexParameterfv(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); [Slot(1057)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexParameterIiv(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + private static extern void glTexParameteri(System.Int32 target, System.Int32 pname, Int32 param); [Slot(1058)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexParameterIuiv(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] UInt32* @params); + private static extern unsafe void glTexParameterIiv(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); [Slot(1059)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTexParameteriv(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + private static extern unsafe void glTexParameterIuiv(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] UInt32* @params); [Slot(1060)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexStorage1D(System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width); + private static extern unsafe void glTexParameteriv(System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); [Slot(1061)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexStorage2D(System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height); + private static extern void glTexStorage1D(System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width); [Slot(1062)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexStorage2DMultisample(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height, bool fixedsamplelocations); + private static extern void glTexStorage2D(System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height); [Slot(1063)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexStorage3D(System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth); + private static extern void glTexStorage2DMultisample(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height, bool fixedsamplelocations); [Slot(1064)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexStorage3DMultisample(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations); + private static extern void glTexStorage3D(System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth); [Slot(1065)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexSubImage1D(System.Int32 target, Int32 level, Int32 xoffset, Int32 width, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels); + private static extern void glTexStorage3DMultisample(System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations); [Slot(1066)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexSubImage2D(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); + private static extern void glTexSubImage1D(System.Int32 target, Int32 level, Int32 xoffset, Int32 width, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels); [Slot(1067)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTexSubImage3D(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels); + private static extern void glTexSubImage2D(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); [Slot(1068)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTexSubImage3D(System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels); + [Slot(1069)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureBarrier(); - [Slot(1070)] + [Slot(1071)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureBuffer(UInt32 texture, System.Int32 internalformat, UInt32 buffer); - [Slot(1072)] + [Slot(1073)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureBufferRange(UInt32 texture, System.Int32 internalformat, UInt32 buffer, IntPtr offset, IntPtr size); - [Slot(1078)] + [Slot(1079)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureParameterf(UInt32 texture, System.Int32 pname, Single param); - [Slot(1080)] + [Slot(1081)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTextureParameterfv(UInt32 texture, System.Int32 pname, Single* param); - [Slot(1082)] + [Slot(1083)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureParameteri(UInt32 texture, System.Int32 pname, Int32 param); - [Slot(1084)] + [Slot(1085)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTextureParameterIiv(UInt32 texture, System.Int32 pname, Int32* @params); - [Slot(1086)] + [Slot(1087)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTextureParameterIuiv(UInt32 texture, System.Int32 pname, UInt32* @params); - [Slot(1088)] + [Slot(1089)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTextureParameteriv(UInt32 texture, System.Int32 pname, Int32* param); - [Slot(1091)] + [Slot(1092)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureStorage1D(UInt32 texture, Int32 levels, System.Int32 internalformat, Int32 width); - [Slot(1093)] + [Slot(1094)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureStorage2D(UInt32 texture, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(1095)] + [Slot(1096)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureStorage2DMultisample(UInt32 texture, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height, bool fixedsamplelocations); - [Slot(1097)] + [Slot(1098)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureStorage3D(UInt32 texture, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth); - [Slot(1099)] + [Slot(1100)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureStorage3DMultisample(UInt32 texture, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations); - [Slot(1101)] + [Slot(1102)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, System.Int32 format, System.Int32 type, IntPtr pixels); - [Slot(1103)] + [Slot(1104)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, System.Int32 format, System.Int32 type, IntPtr pixels); - [Slot(1105)] + [Slot(1106)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, System.Int32 format, System.Int32 type, IntPtr pixels); - [Slot(1107)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureView(UInt32 texture, System.Int32 target, UInt32 origtexture, System.Int32 internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers); [Slot(1108)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTransformFeedbackBufferBase(UInt32 xfb, UInt32 index, UInt32 buffer); + private static extern void glTextureView(UInt32 texture, System.Int32 target, UInt32 origtexture, System.Int32 internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers); [Slot(1109)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTransformFeedbackBufferRange(UInt32 xfb, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size); + private static extern void glTransformFeedbackBufferBase(UInt32 xfb, UInt32 index, UInt32 buffer); [Slot(1110)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] IntPtr varyings, System.Int32 bufferMode); - [Slot(1112)] + private static extern void glTransformFeedbackBufferRange(UInt32 xfb, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size); + [Slot(1111)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform1d(Int32 location, Double x); + private static extern void glTransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] IntPtr varyings, System.Int32 bufferMode); [Slot(1113)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform1dv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Double* value); + private static extern void glUniform1d(Int32 location, Double x); [Slot(1114)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform1f(Int32 location, Single v0); + private static extern unsafe void glUniform1dv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Double* value); [Slot(1115)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform1fv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single* value); + private static extern void glUniform1f(Int32 location, Single v0); [Slot(1116)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform1i(Int32 location, Int32 v0); - [Slot(1121)] + private static extern unsafe void glUniform1fv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single* value); + [Slot(1117)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform1iv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32* value); + private static extern void glUniform1i(Int32 location, Int32 v0); [Slot(1122)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform1ui(Int32 location, UInt32 v0); - [Slot(1127)] + private static extern unsafe void glUniform1iv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32* value); + [Slot(1123)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform1uiv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32* value); + private static extern void glUniform1ui(Int32 location, UInt32 v0); [Slot(1128)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform2d(Int32 location, Double x, Double y); + private static extern unsafe void glUniform1uiv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32* value); [Slot(1129)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform2dv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value); + private static extern void glUniform2d(Int32 location, Double x, Double y); [Slot(1130)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform2f(Int32 location, Single v0, Single v1); + private static extern unsafe void glUniform2dv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value); [Slot(1131)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform2fv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value); + private static extern void glUniform2f(Int32 location, Single v0, Single v1); [Slot(1132)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform2i(Int32 location, Int32 v0, Int32 v1); - [Slot(1137)] + private static extern unsafe void glUniform2fv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value); + [Slot(1133)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform2iv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value); + private static extern void glUniform2i(Int32 location, Int32 v0, Int32 v1); [Slot(1138)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform2ui(Int32 location, UInt32 v0, UInt32 v1); - [Slot(1143)] + private static extern unsafe void glUniform2iv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value); + [Slot(1139)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform2uiv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value); + private static extern void glUniform2ui(Int32 location, UInt32 v0, UInt32 v1); [Slot(1144)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform3d(Int32 location, Double x, Double y, Double z); + private static extern unsafe void glUniform2uiv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value); [Slot(1145)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform3dv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value); + private static extern void glUniform3d(Int32 location, Double x, Double y, Double z); [Slot(1146)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform3f(Int32 location, Single v0, Single v1, Single v2); + private static extern unsafe void glUniform3dv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value); [Slot(1147)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform3fv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value); + private static extern void glUniform3f(Int32 location, Single v0, Single v1, Single v2); [Slot(1148)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform3i(Int32 location, Int32 v0, Int32 v1, Int32 v2); - [Slot(1153)] + private static extern unsafe void glUniform3fv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value); + [Slot(1149)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform3iv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value); + private static extern void glUniform3i(Int32 location, Int32 v0, Int32 v1, Int32 v2); [Slot(1154)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform3ui(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2); - [Slot(1159)] + private static extern unsafe void glUniform3iv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value); + [Slot(1155)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform3uiv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value); + private static extern void glUniform3ui(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2); [Slot(1160)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform4d(Int32 location, Double x, Double y, Double z, Double w); + private static extern unsafe void glUniform3uiv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value); [Slot(1161)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform4dv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value); + private static extern void glUniform4d(Int32 location, Double x, Double y, Double z, Double w); [Slot(1162)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform4f(Int32 location, Single v0, Single v1, Single v2, Single v3); + private static extern unsafe void glUniform4dv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value); [Slot(1163)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform4fv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value); + private static extern void glUniform4f(Int32 location, Single v0, Single v1, Single v2, Single v3); [Slot(1164)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform4i(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3); - [Slot(1169)] + private static extern unsafe void glUniform4fv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value); + [Slot(1165)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform4iv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value); + private static extern void glUniform4i(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3); [Slot(1170)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniform4ui(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3); - [Slot(1175)] + private static extern unsafe void glUniform4iv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value); + [Slot(1171)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniform4uiv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value); + private static extern void glUniform4ui(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3); [Slot(1176)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniformBlockBinding(UInt32 program, UInt32 uniformBlockIndex, UInt32 uniformBlockBinding); - [Slot(1181)] + private static extern unsafe void glUniform4uiv(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value); + [Slot(1177)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix2dv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value); + private static extern void glUniformBlockBinding(UInt32 program, UInt32 uniformBlockIndex, UInt32 uniformBlockBinding); [Slot(1182)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix2fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value); + private static extern unsafe void glUniformMatrix2dv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value); [Slot(1183)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix2x3dv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value); + private static extern unsafe void glUniformMatrix2fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value); [Slot(1184)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix2x3fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); + private static extern unsafe void glUniformMatrix2x3dv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value); [Slot(1185)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix2x4dv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value); + private static extern unsafe void glUniformMatrix2x3fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); [Slot(1186)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix2x4fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); + private static extern unsafe void glUniformMatrix2x4dv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value); [Slot(1187)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix3dv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value); + private static extern unsafe void glUniformMatrix2x4fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); [Slot(1188)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix3fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value); + private static extern unsafe void glUniformMatrix3dv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value); [Slot(1189)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix3x2dv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value); + private static extern unsafe void glUniformMatrix3fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value); [Slot(1190)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix3x2fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); + private static extern unsafe void glUniformMatrix3x2dv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value); [Slot(1191)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix3x4dv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value); + private static extern unsafe void glUniformMatrix3x2fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); [Slot(1192)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix3x4fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); + private static extern unsafe void glUniformMatrix3x4dv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value); [Slot(1193)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix4dv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value); + private static extern unsafe void glUniformMatrix3x4fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); [Slot(1194)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix4fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value); + private static extern unsafe void glUniformMatrix4dv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value); [Slot(1195)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix4x2dv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value); + private static extern unsafe void glUniformMatrix4fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value); [Slot(1196)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix4x2fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); + private static extern unsafe void glUniformMatrix4x2dv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value); [Slot(1197)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix4x3dv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value); + private static extern unsafe void glUniformMatrix4x2fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); [Slot(1198)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformMatrix4x3fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); + private static extern unsafe void glUniformMatrix4x3dv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value); [Slot(1199)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glUniformSubroutinesuiv(System.Int32 shadertype, Int32 count, [CountAttribute(Parameter = "count")] UInt32* indices); - [Slot(1202)] + private static extern unsafe void glUniformMatrix4x3fv(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); + [Slot(1200)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glUnmapBuffer(System.Int32 target); + private static extern unsafe void glUniformSubroutinesuiv(System.Int32 shadertype, Int32 count, [CountAttribute(Parameter = "count")] UInt32* indices); [Slot(1203)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern byte glUnmapNamedBuffer(UInt32 buffer); - [Slot(1205)] + private static extern byte glUnmapBuffer(System.Int32 target); + [Slot(1204)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUseProgram(UInt32 program); + private static extern byte glUnmapNamedBuffer(UInt32 buffer); [Slot(1206)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUseProgramStages(UInt32 pipeline, System.Int32 stages, UInt32 program); - [Slot(1209)] + private static extern void glUseProgram(UInt32 program); + [Slot(1207)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glValidateProgram(UInt32 program); + private static extern void glUseProgramStages(UInt32 pipeline, System.Int32 stages, UInt32 program); [Slot(1210)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glValidateProgramPipeline(UInt32 pipeline); - [Slot(1212)] + private static extern void glValidateProgram(UInt32 program); + [Slot(1211)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayAttribBinding(UInt32 vaobj, UInt32 attribindex, UInt32 bindingindex); + private static extern void glValidateProgramPipeline(UInt32 pipeline); [Slot(1213)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayAttribFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, System.Int32 type, bool normalized, UInt32 relativeoffset); + private static extern void glVertexArrayAttribBinding(UInt32 vaobj, UInt32 attribindex, UInt32 bindingindex); [Slot(1214)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayAttribIFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, System.Int32 type, UInt32 relativeoffset); + private static extern void glVertexArrayAttribFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, System.Int32 type, bool normalized, UInt32 relativeoffset); [Slot(1215)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayAttribLFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, System.Int32 type, UInt32 relativeoffset); + private static extern void glVertexArrayAttribIFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, System.Int32 type, UInt32 relativeoffset); [Slot(1216)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexArrayAttribLFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, System.Int32 type, UInt32 relativeoffset); + [Slot(1217)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexArrayBindingDivisor(UInt32 vaobj, UInt32 bindingindex, UInt32 divisor); - [Slot(1220)] + [Slot(1221)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexArrayElementBuffer(UInt32 vaobj, UInt32 buffer); - [Slot(1236)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayVertexBuffer(UInt32 vaobj, UInt32 bindingindex, UInt32 buffer, IntPtr offset, Int32 stride); [Slot(1237)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexArrayVertexBuffers(UInt32 vaobj, UInt32 first, Int32 count, UInt32* buffers, IntPtr* offsets, Int32* strides); - [Slot(1239)] + private static extern void glVertexArrayVertexBuffer(UInt32 vaobj, UInt32 bindingindex, UInt32 buffer, IntPtr offset, Int32 stride); + [Slot(1238)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttrib1d(UInt32 index, Double x); + private static extern unsafe void glVertexArrayVertexBuffers(UInt32 vaobj, UInt32 first, Int32 count, UInt32* buffers, IntPtr* offsets, Int32* strides); [Slot(1240)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib1dv(UInt32 index, [CountAttribute(Count = 1)] Double* v); + private static extern void glVertexAttrib1d(UInt32 index, Double x); [Slot(1241)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttrib1f(UInt32 index, Single x); + private static extern unsafe void glVertexAttrib1dv(UInt32 index, [CountAttribute(Count = 1)] Double* v); [Slot(1242)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib1fv(UInt32 index, [CountAttribute(Count = 1)] Single* v); + private static extern void glVertexAttrib1f(UInt32 index, Single x); [Slot(1243)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttrib1s(UInt32 index, Int16 x); + private static extern unsafe void glVertexAttrib1fv(UInt32 index, [CountAttribute(Count = 1)] Single* v); [Slot(1244)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib1sv(UInt32 index, [CountAttribute(Count = 1)] Int16* v); + private static extern void glVertexAttrib1s(UInt32 index, Int16 x); [Slot(1245)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttrib2d(UInt32 index, Double x, Double y); + private static extern unsafe void glVertexAttrib1sv(UInt32 index, [CountAttribute(Count = 1)] Int16* v); [Slot(1246)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib2dv(UInt32 index, [CountAttribute(Count = 2)] Double* v); + private static extern void glVertexAttrib2d(UInt32 index, Double x, Double y); [Slot(1247)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttrib2f(UInt32 index, Single x, Single y); + private static extern unsafe void glVertexAttrib2dv(UInt32 index, [CountAttribute(Count = 2)] Double* v); [Slot(1248)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib2fv(UInt32 index, [CountAttribute(Count = 2)] Single* v); + private static extern void glVertexAttrib2f(UInt32 index, Single x, Single y); [Slot(1249)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttrib2s(UInt32 index, Int16 x, Int16 y); + private static extern unsafe void glVertexAttrib2fv(UInt32 index, [CountAttribute(Count = 2)] Single* v); [Slot(1250)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib2sv(UInt32 index, [CountAttribute(Count = 2)] Int16* v); + private static extern void glVertexAttrib2s(UInt32 index, Int16 x, Int16 y); [Slot(1251)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttrib3d(UInt32 index, Double x, Double y, Double z); + private static extern unsafe void glVertexAttrib2sv(UInt32 index, [CountAttribute(Count = 2)] Int16* v); [Slot(1252)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib3dv(UInt32 index, [CountAttribute(Count = 3)] Double* v); + private static extern void glVertexAttrib3d(UInt32 index, Double x, Double y, Double z); [Slot(1253)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttrib3f(UInt32 index, Single x, Single y, Single z); + private static extern unsafe void glVertexAttrib3dv(UInt32 index, [CountAttribute(Count = 3)] Double* v); [Slot(1254)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib3fv(UInt32 index, [CountAttribute(Count = 3)] Single* v); + private static extern void glVertexAttrib3f(UInt32 index, Single x, Single y, Single z); [Slot(1255)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttrib3s(UInt32 index, Int16 x, Int16 y, Int16 z); + private static extern unsafe void glVertexAttrib3fv(UInt32 index, [CountAttribute(Count = 3)] Single* v); [Slot(1256)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib3sv(UInt32 index, [CountAttribute(Count = 3)] Int16* v); + private static extern void glVertexAttrib3s(UInt32 index, Int16 x, Int16 y, Int16 z); [Slot(1257)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib4bv(UInt32 index, [CountAttribute(Count = 4)] SByte* v); + private static extern unsafe void glVertexAttrib3sv(UInt32 index, [CountAttribute(Count = 3)] Int16* v); [Slot(1258)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttrib4d(UInt32 index, Double x, Double y, Double z, Double w); + private static extern unsafe void glVertexAttrib4bv(UInt32 index, [CountAttribute(Count = 4)] SByte* v); [Slot(1259)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib4dv(UInt32 index, [CountAttribute(Count = 4)] Double* v); + private static extern void glVertexAttrib4d(UInt32 index, Double x, Double y, Double z, Double w); [Slot(1260)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttrib4f(UInt32 index, Single x, Single y, Single z, Single w); + private static extern unsafe void glVertexAttrib4dv(UInt32 index, [CountAttribute(Count = 4)] Double* v); [Slot(1261)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib4fv(UInt32 index, [CountAttribute(Count = 4)] Single* v); + private static extern void glVertexAttrib4f(UInt32 index, Single x, Single y, Single z, Single w); [Slot(1262)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib4iv(UInt32 index, [CountAttribute(Count = 4)] Int32* v); + private static extern unsafe void glVertexAttrib4fv(UInt32 index, [CountAttribute(Count = 4)] Single* v); [Slot(1263)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib4Nbv(UInt32 index, [CountAttribute(Count = 4)] SByte* v); + private static extern unsafe void glVertexAttrib4iv(UInt32 index, [CountAttribute(Count = 4)] Int32* v); [Slot(1264)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib4Niv(UInt32 index, [CountAttribute(Count = 4)] Int32* v); + private static extern unsafe void glVertexAttrib4Nbv(UInt32 index, [CountAttribute(Count = 4)] SByte* v); [Slot(1265)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib4Nsv(UInt32 index, [CountAttribute(Count = 4)] Int16* v); + private static extern unsafe void glVertexAttrib4Niv(UInt32 index, [CountAttribute(Count = 4)] Int32* v); [Slot(1266)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttrib4Nub(UInt32 index, Byte x, Byte y, Byte z, Byte w); + private static extern unsafe void glVertexAttrib4Nsv(UInt32 index, [CountAttribute(Count = 4)] Int16* v); [Slot(1267)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib4Nubv(UInt32 index, [CountAttribute(Count = 4)] Byte* v); + private static extern void glVertexAttrib4Nub(UInt32 index, Byte x, Byte y, Byte z, Byte w); [Slot(1268)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib4Nuiv(UInt32 index, [CountAttribute(Count = 4)] UInt32* v); + private static extern unsafe void glVertexAttrib4Nubv(UInt32 index, [CountAttribute(Count = 4)] Byte* v); [Slot(1269)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib4Nusv(UInt32 index, [CountAttribute(Count = 4)] UInt16* v); + private static extern unsafe void glVertexAttrib4Nuiv(UInt32 index, [CountAttribute(Count = 4)] UInt32* v); [Slot(1270)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttrib4s(UInt32 index, Int16 x, Int16 y, Int16 z, Int16 w); + private static extern unsafe void glVertexAttrib4Nusv(UInt32 index, [CountAttribute(Count = 4)] UInt16* v); [Slot(1271)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib4sv(UInt32 index, [CountAttribute(Count = 4)] Int16* v); + private static extern void glVertexAttrib4s(UInt32 index, Int16 x, Int16 y, Int16 z, Int16 w); [Slot(1272)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib4ubv(UInt32 index, [CountAttribute(Count = 4)] Byte* v); + private static extern unsafe void glVertexAttrib4sv(UInt32 index, [CountAttribute(Count = 4)] Int16* v); [Slot(1273)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib4uiv(UInt32 index, [CountAttribute(Count = 4)] UInt32* v); + private static extern unsafe void glVertexAttrib4ubv(UInt32 index, [CountAttribute(Count = 4)] Byte* v); [Slot(1274)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttrib4usv(UInt32 index, [CountAttribute(Count = 4)] UInt16* v); + private static extern unsafe void glVertexAttrib4uiv(UInt32 index, [CountAttribute(Count = 4)] UInt32* v); [Slot(1275)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribBinding(UInt32 attribindex, UInt32 bindingindex); + private static extern unsafe void glVertexAttrib4usv(UInt32 index, [CountAttribute(Count = 4)] UInt16* v); [Slot(1276)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribBinding(UInt32 attribindex, UInt32 bindingindex); + [Slot(1277)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribDivisor(UInt32 index, UInt32 divisor); - [Slot(1278)] + [Slot(1279)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribFormat(UInt32 attribindex, Int32 size, System.Int32 type, bool normalized, UInt32 relativeoffset); - [Slot(1280)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribI1i(UInt32 index, Int32 x); [Slot(1281)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribI1iv(UInt32 index, [CountAttribute(Count = 1)] Int32* v); + private static extern void glVertexAttribI1i(UInt32 index, Int32 x); [Slot(1282)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribI1ui(UInt32 index, UInt32 x); + private static extern unsafe void glVertexAttribI1iv(UInt32 index, [CountAttribute(Count = 1)] Int32* v); [Slot(1283)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribI1uiv(UInt32 index, [CountAttribute(Count = 1)] UInt32* v); + private static extern void glVertexAttribI1ui(UInt32 index, UInt32 x); [Slot(1284)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribI2i(UInt32 index, Int32 x, Int32 y); + private static extern unsafe void glVertexAttribI1uiv(UInt32 index, [CountAttribute(Count = 1)] UInt32* v); [Slot(1285)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribI2iv(UInt32 index, [CountAttribute(Count = 2)] Int32* v); + private static extern void glVertexAttribI2i(UInt32 index, Int32 x, Int32 y); [Slot(1286)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribI2ui(UInt32 index, UInt32 x, UInt32 y); + private static extern unsafe void glVertexAttribI2iv(UInt32 index, [CountAttribute(Count = 2)] Int32* v); [Slot(1287)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribI2uiv(UInt32 index, [CountAttribute(Count = 2)] UInt32* v); + private static extern void glVertexAttribI2ui(UInt32 index, UInt32 x, UInt32 y); [Slot(1288)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribI3i(UInt32 index, Int32 x, Int32 y, Int32 z); + private static extern unsafe void glVertexAttribI2uiv(UInt32 index, [CountAttribute(Count = 2)] UInt32* v); [Slot(1289)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribI3iv(UInt32 index, [CountAttribute(Count = 3)] Int32* v); + private static extern void glVertexAttribI3i(UInt32 index, Int32 x, Int32 y, Int32 z); [Slot(1290)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribI3ui(UInt32 index, UInt32 x, UInt32 y, UInt32 z); + private static extern unsafe void glVertexAttribI3iv(UInt32 index, [CountAttribute(Count = 3)] Int32* v); [Slot(1291)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribI3uiv(UInt32 index, [CountAttribute(Count = 3)] UInt32* v); + private static extern void glVertexAttribI3ui(UInt32 index, UInt32 x, UInt32 y, UInt32 z); [Slot(1292)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribI4bv(UInt32 index, [CountAttribute(Count = 4)] SByte* v); + private static extern unsafe void glVertexAttribI3uiv(UInt32 index, [CountAttribute(Count = 3)] UInt32* v); [Slot(1293)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribI4i(UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w); + private static extern unsafe void glVertexAttribI4bv(UInt32 index, [CountAttribute(Count = 4)] SByte* v); [Slot(1294)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribI4iv(UInt32 index, [CountAttribute(Count = 4)] Int32* v); + private static extern void glVertexAttribI4i(UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w); [Slot(1295)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribI4sv(UInt32 index, [CountAttribute(Count = 4)] Int16* v); + private static extern unsafe void glVertexAttribI4iv(UInt32 index, [CountAttribute(Count = 4)] Int32* v); [Slot(1296)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribI4ubv(UInt32 index, [CountAttribute(Count = 4)] Byte* v); + private static extern unsafe void glVertexAttribI4sv(UInt32 index, [CountAttribute(Count = 4)] Int16* v); [Slot(1297)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribI4ui(UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w); + private static extern unsafe void glVertexAttribI4ubv(UInt32 index, [CountAttribute(Count = 4)] Byte* v); [Slot(1298)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribI4uiv(UInt32 index, [CountAttribute(Count = 4)] UInt32* v); + private static extern void glVertexAttribI4ui(UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w); [Slot(1299)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribI4usv(UInt32 index, [CountAttribute(Count = 4)] UInt16* v); + private static extern unsafe void glVertexAttribI4uiv(UInt32 index, [CountAttribute(Count = 4)] UInt32* v); [Slot(1300)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribIFormat(UInt32 attribindex, Int32 size, System.Int32 type, UInt32 relativeoffset); - [Slot(1302)] + private static extern unsafe void glVertexAttribI4usv(UInt32 index, [CountAttribute(Count = 4)] UInt16* v); + [Slot(1301)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribIPointer(UInt32 index, Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer); + private static extern void glVertexAttribIFormat(UInt32 attribindex, Int32 size, System.Int32 type, UInt32 relativeoffset); [Slot(1303)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribL1d(UInt32 index, Double x); + private static extern void glVertexAttribIPointer(UInt32 index, Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer); [Slot(1304)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribL1dv(UInt32 index, [CountAttribute(Count = 1)] Double* v); - [Slot(1311)] + private static extern void glVertexAttribL1d(UInt32 index, Double x); + [Slot(1305)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribL2d(UInt32 index, Double x, Double y); + private static extern unsafe void glVertexAttribL1dv(UInt32 index, [CountAttribute(Count = 1)] Double* v); [Slot(1312)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribL2dv(UInt32 index, [CountAttribute(Count = 2)] Double* v); - [Slot(1317)] + private static extern void glVertexAttribL2d(UInt32 index, Double x, Double y); + [Slot(1313)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribL3d(UInt32 index, Double x, Double y, Double z); + private static extern unsafe void glVertexAttribL2dv(UInt32 index, [CountAttribute(Count = 2)] Double* v); [Slot(1318)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribL3dv(UInt32 index, [CountAttribute(Count = 3)] Double* v); - [Slot(1323)] + private static extern void glVertexAttribL3d(UInt32 index, Double x, Double y, Double z); + [Slot(1319)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribL4d(UInt32 index, Double x, Double y, Double z, Double w); + private static extern unsafe void glVertexAttribL3dv(UInt32 index, [CountAttribute(Count = 3)] Double* v); [Slot(1324)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribL4d(UInt32 index, Double x, Double y, Double z, Double w); + [Slot(1325)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttribL4dv(UInt32 index, [CountAttribute(Count = 4)] Double* v); - [Slot(1329)] + [Slot(1330)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribLFormat(UInt32 attribindex, Int32 size, System.Int32 type, UInt32 relativeoffset); - [Slot(1331)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribLPointer(UInt32 index, Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Parameter = "size")] IntPtr pointer); [Slot(1332)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribP1ui(UInt32 index, System.Int32 type, bool normalized, UInt32 value); + private static extern void glVertexAttribLPointer(UInt32 index, Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Parameter = "size")] IntPtr pointer); [Slot(1333)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribP1uiv(UInt32 index, System.Int32 type, bool normalized, [CountAttribute(Count = 1)] UInt32* value); + private static extern void glVertexAttribP1ui(UInt32 index, System.Int32 type, bool normalized, UInt32 value); [Slot(1334)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribP2ui(UInt32 index, System.Int32 type, bool normalized, UInt32 value); + private static extern unsafe void glVertexAttribP1uiv(UInt32 index, System.Int32 type, bool normalized, [CountAttribute(Count = 1)] UInt32* value); [Slot(1335)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribP2uiv(UInt32 index, System.Int32 type, bool normalized, [CountAttribute(Count = 1)] UInt32* value); + private static extern void glVertexAttribP2ui(UInt32 index, System.Int32 type, bool normalized, UInt32 value); [Slot(1336)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribP3ui(UInt32 index, System.Int32 type, bool normalized, UInt32 value); + private static extern unsafe void glVertexAttribP2uiv(UInt32 index, System.Int32 type, bool normalized, [CountAttribute(Count = 1)] UInt32* value); [Slot(1337)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribP3uiv(UInt32 index, System.Int32 type, bool normalized, [CountAttribute(Count = 1)] UInt32* value); + private static extern void glVertexAttribP3ui(UInt32 index, System.Int32 type, bool normalized, UInt32 value); [Slot(1338)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribP4ui(UInt32 index, System.Int32 type, bool normalized, UInt32 value); + private static extern unsafe void glVertexAttribP3uiv(UInt32 index, System.Int32 type, bool normalized, [CountAttribute(Count = 1)] UInt32* value); [Slot(1339)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribP4uiv(UInt32 index, System.Int32 type, bool normalized, [CountAttribute(Count = 1)] UInt32* value); + private static extern void glVertexAttribP4ui(UInt32 index, System.Int32 type, bool normalized, UInt32 value); [Slot(1340)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribPointer(UInt32 index, Int32 size, System.Int32 type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer); + private static extern unsafe void glVertexAttribP4uiv(UInt32 index, System.Int32 type, bool normalized, [CountAttribute(Count = 1)] UInt32* value); [Slot(1341)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexBindingDivisor(UInt32 bindingindex, UInt32 divisor); - [Slot(1343)] + private static extern void glVertexAttribPointer(UInt32 index, Int32 size, System.Int32 type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer); + [Slot(1342)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexP2ui(System.Int32 type, UInt32 value); + private static extern void glVertexBindingDivisor(UInt32 bindingindex, UInt32 divisor); [Slot(1344)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexP2uiv(System.Int32 type, [CountAttribute(Count = 1)] UInt32* value); + private static extern void glVertexP2ui(System.Int32 type, UInt32 value); [Slot(1345)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexP3ui(System.Int32 type, UInt32 value); + private static extern unsafe void glVertexP2uiv(System.Int32 type, [CountAttribute(Count = 1)] UInt32* value); [Slot(1346)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexP3uiv(System.Int32 type, [CountAttribute(Count = 1)] UInt32* value); + private static extern void glVertexP3ui(System.Int32 type, UInt32 value); [Slot(1347)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexP4ui(System.Int32 type, UInt32 value); + private static extern unsafe void glVertexP3uiv(System.Int32 type, [CountAttribute(Count = 1)] UInt32* value); [Slot(1348)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexP4uiv(System.Int32 type, [CountAttribute(Count = 1)] UInt32* value); + private static extern void glVertexP4ui(System.Int32 type, UInt32 value); [Slot(1349)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glViewport(Int32 x, Int32 y, Int32 width, Int32 height); + private static extern unsafe void glVertexP4uiv(System.Int32 type, [CountAttribute(Count = 1)] UInt32* value); [Slot(1350)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glViewportArrayv(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v); + private static extern void glViewport(Int32 x, Int32 y, Int32 width, Int32 height); [Slot(1351)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glViewportIndexedf(UInt32 index, Single x, Single y, Single w, Single h); + private static extern unsafe void glViewportArrayv(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v); [Slot(1352)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glViewportIndexedf(UInt32 index, Single x, Single y, Single w, Single h); + [Slot(1353)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glViewportIndexedfv(UInt32 index, [CountAttribute(Count = 4)] Single* v); - [Slot(1355)] + [Slot(1356)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glWaitSync(IntPtr sync, System.Int32 flags, UInt64 timeout); [Slot(0)] @@ -79680,466 +79694,466 @@ namespace OpenTK.Graphics.OpenGL4 [Slot(688)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMatrixTranslatefEXT(System.Int32 mode, Single x, Single y, Single z); - [Slot(708)] + [Slot(709)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiTexBufferEXT(System.Int32 texunit, System.Int32 target, System.Int32 internalformat, UInt32 buffer); - [Slot(717)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexCoordPointerEXT(System.Int32 texunit, Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer); [Slot(718)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexEnvfEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, Single param); + private static extern void glMultiTexCoordPointerEXT(System.Int32 texunit, Int32 size, System.Int32 type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer); [Slot(719)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiTexEnvfvEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); + private static extern void glMultiTexEnvfEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, Single param); [Slot(720)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexEnviEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, Int32 param); + private static extern unsafe void glMultiTexEnvfvEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); [Slot(721)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiTexEnvivEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + private static extern void glMultiTexEnviEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, Int32 param); [Slot(722)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexGendEXT(System.Int32 texunit, System.Int32 coord, System.Int32 pname, Double param); + private static extern unsafe void glMultiTexEnvivEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); [Slot(723)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiTexGendvEXT(System.Int32 texunit, System.Int32 coord, System.Int32 pname, [CountAttribute(Computed = "pname")] Double* @params); + private static extern void glMultiTexGendEXT(System.Int32 texunit, System.Int32 coord, System.Int32 pname, Double param); [Slot(724)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexGenfEXT(System.Int32 texunit, System.Int32 coord, System.Int32 pname, Single param); + private static extern unsafe void glMultiTexGendvEXT(System.Int32 texunit, System.Int32 coord, System.Int32 pname, [CountAttribute(Computed = "pname")] Double* @params); [Slot(725)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiTexGenfvEXT(System.Int32 texunit, System.Int32 coord, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); + private static extern void glMultiTexGenfEXT(System.Int32 texunit, System.Int32 coord, System.Int32 pname, Single param); [Slot(726)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexGeniEXT(System.Int32 texunit, System.Int32 coord, System.Int32 pname, Int32 param); + private static extern unsafe void glMultiTexGenfvEXT(System.Int32 texunit, System.Int32 coord, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); [Slot(727)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiTexGenivEXT(System.Int32 texunit, System.Int32 coord, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + private static extern void glMultiTexGeniEXT(System.Int32 texunit, System.Int32 coord, System.Int32 pname, Int32 param); [Slot(728)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexImage1DEXT(System.Int32 texunit, System.Int32 target, Int32 level, Int32 internalformat, Int32 width, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels); + private static extern unsafe void glMultiTexGenivEXT(System.Int32 texunit, System.Int32 coord, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); [Slot(729)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexImage2DEXT(System.Int32 texunit, System.Int32 target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); + private static extern void glMultiTexImage1DEXT(System.Int32 texunit, System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels); [Slot(730)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexImage3DEXT(System.Int32 texunit, System.Int32 target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels); + private static extern void glMultiTexImage2DEXT(System.Int32 texunit, System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); [Slot(731)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexParameterfEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, Single param); + private static extern void glMultiTexImage3DEXT(System.Int32 texunit, System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels); [Slot(732)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiTexParameterfvEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); + private static extern void glMultiTexParameterfEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, Single param); [Slot(733)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexParameteriEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, Int32 param); + private static extern unsafe void glMultiTexParameterfvEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); [Slot(734)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiTexParameterIivEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + private static extern void glMultiTexParameteriEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, Int32 param); [Slot(735)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiTexParameterIuivEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] UInt32* @params); + private static extern unsafe void glMultiTexParameterIivEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); [Slot(736)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glMultiTexParameterivEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + private static extern unsafe void glMultiTexParameterIuivEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] UInt32* @params); [Slot(737)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexRenderbufferEXT(System.Int32 texunit, System.Int32 target, UInt32 renderbuffer); + private static extern unsafe void glMultiTexParameterivEXT(System.Int32 texunit, System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); [Slot(738)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexSubImage1DEXT(System.Int32 texunit, System.Int32 target, Int32 level, Int32 xoffset, Int32 width, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels); + private static extern void glMultiTexRenderbufferEXT(System.Int32 texunit, System.Int32 target, UInt32 renderbuffer); [Slot(739)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiTexSubImage2DEXT(System.Int32 texunit, System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); + private static extern void glMultiTexSubImage1DEXT(System.Int32 texunit, System.Int32 target, Int32 level, Int32 xoffset, Int32 width, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels); [Slot(740)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMultiTexSubImage2DEXT(System.Int32 texunit, System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); + [Slot(741)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiTexSubImage3DEXT(System.Int32 texunit, System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels); - [Slot(742)] + [Slot(743)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glNamedBufferDataEXT(UInt32 buffer, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data, System.Int32 usage); - [Slot(744)] + [Slot(745)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glNamedBufferPageCommitmentEXT(UInt32 buffer, IntPtr offset, IntPtr size, bool commit); - [Slot(746)] + [Slot(747)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glNamedBufferStorageEXT(UInt32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, System.Int32 flags); - [Slot(748)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedBufferSubDataEXT(UInt32 buffer, IntPtr offset, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data); [Slot(749)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNamedBufferSubDataEXT(UInt32 buffer, IntPtr offset, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data); + [Slot(750)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glNamedCopyBufferSubDataEXT(UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size); - [Slot(753)] + [Slot(754)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glNamedFramebufferParameteriEXT(UInt32 framebuffer, System.Int32 pname, Int32 param); - [Slot(756)] + [Slot(757)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glNamedFramebufferRenderbufferEXT(UInt32 framebuffer, System.Int32 attachment, System.Int32 renderbuffertarget, UInt32 renderbuffer); - [Slot(760)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedFramebufferTexture1DEXT(UInt32 framebuffer, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level); [Slot(761)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedFramebufferTexture2DEXT(UInt32 framebuffer, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level); + private static extern void glNamedFramebufferTexture1DEXT(UInt32 framebuffer, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level); [Slot(762)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedFramebufferTexture3DEXT(UInt32 framebuffer, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level, Int32 zoffset); + private static extern void glNamedFramebufferTexture2DEXT(UInt32 framebuffer, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level); [Slot(763)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedFramebufferTextureEXT(UInt32 framebuffer, System.Int32 attachment, UInt32 texture, Int32 level); + private static extern void glNamedFramebufferTexture3DEXT(UInt32 framebuffer, System.Int32 attachment, System.Int32 textarget, UInt32 texture, Int32 level, Int32 zoffset); [Slot(764)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedFramebufferTextureFaceEXT(UInt32 framebuffer, System.Int32 attachment, UInt32 texture, Int32 level, System.Int32 face); - [Slot(766)] + private static extern void glNamedFramebufferTextureEXT(UInt32 framebuffer, System.Int32 attachment, UInt32 texture, Int32 level); + [Slot(765)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedFramebufferTextureLayerEXT(UInt32 framebuffer, System.Int32 attachment, UInt32 texture, Int32 level, Int32 layer); + private static extern void glNamedFramebufferTextureFaceEXT(UInt32 framebuffer, System.Int32 attachment, UInt32 texture, Int32 level, System.Int32 face); [Slot(767)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedProgramLocalParameter4dEXT(UInt32 program, System.Int32 target, UInt32 index, Double x, Double y, Double z, Double w); + private static extern void glNamedFramebufferTextureLayerEXT(UInt32 framebuffer, System.Int32 attachment, UInt32 texture, Int32 level, Int32 layer); [Slot(768)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glNamedProgramLocalParameter4dvEXT(UInt32 program, System.Int32 target, UInt32 index, [CountAttribute(Count = 4)] Double* @params); + private static extern void glNamedProgramLocalParameter4dEXT(UInt32 program, System.Int32 target, UInt32 index, Double x, Double y, Double z, Double w); [Slot(769)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedProgramLocalParameter4fEXT(UInt32 program, System.Int32 target, UInt32 index, Single x, Single y, Single z, Single w); + private static extern unsafe void glNamedProgramLocalParameter4dvEXT(UInt32 program, System.Int32 target, UInt32 index, [CountAttribute(Count = 4)] Double* @params); [Slot(770)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glNamedProgramLocalParameter4fvEXT(UInt32 program, System.Int32 target, UInt32 index, [CountAttribute(Count = 4)] Single* @params); + private static extern void glNamedProgramLocalParameter4fEXT(UInt32 program, System.Int32 target, UInt32 index, Single x, Single y, Single z, Single w); [Slot(771)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedProgramLocalParameterI4iEXT(UInt32 program, System.Int32 target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w); + private static extern unsafe void glNamedProgramLocalParameter4fvEXT(UInt32 program, System.Int32 target, UInt32 index, [CountAttribute(Count = 4)] Single* @params); [Slot(772)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glNamedProgramLocalParameterI4ivEXT(UInt32 program, System.Int32 target, UInt32 index, [CountAttribute(Count = 4)] Int32* @params); + private static extern void glNamedProgramLocalParameterI4iEXT(UInt32 program, System.Int32 target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w); [Slot(773)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedProgramLocalParameterI4uiEXT(UInt32 program, System.Int32 target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w); + private static extern unsafe void glNamedProgramLocalParameterI4ivEXT(UInt32 program, System.Int32 target, UInt32 index, [CountAttribute(Count = 4)] Int32* @params); [Slot(774)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glNamedProgramLocalParameterI4uivEXT(UInt32 program, System.Int32 target, UInt32 index, [CountAttribute(Count = 4)] UInt32* @params); + private static extern void glNamedProgramLocalParameterI4uiEXT(UInt32 program, System.Int32 target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w); [Slot(775)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glNamedProgramLocalParameters4fvEXT(UInt32 program, System.Int32 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* @params); + private static extern unsafe void glNamedProgramLocalParameterI4uivEXT(UInt32 program, System.Int32 target, UInt32 index, [CountAttribute(Count = 4)] UInt32* @params); [Slot(776)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glNamedProgramLocalParametersI4ivEXT(UInt32 program, System.Int32 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* @params); + private static extern unsafe void glNamedProgramLocalParameters4fvEXT(UInt32 program, System.Int32 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* @params); [Slot(777)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glNamedProgramLocalParametersI4uivEXT(UInt32 program, System.Int32 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* @params); + private static extern unsafe void glNamedProgramLocalParametersI4ivEXT(UInt32 program, System.Int32 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* @params); [Slot(778)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glNamedProgramLocalParametersI4uivEXT(UInt32 program, System.Int32 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* @params); + [Slot(779)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glNamedProgramStringEXT(UInt32 program, System.Int32 target, System.Int32 format, Int32 len, [CountAttribute(Parameter = "len")] IntPtr @string); - [Slot(780)] + [Slot(781)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glNamedRenderbufferStorageEXT(UInt32 renderbuffer, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(782)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glNamedRenderbufferStorageMultisampleCoverageEXT(UInt32 renderbuffer, Int32 coverageSamples, Int32 colorSamples, System.Int32 internalformat, Int32 width, Int32 height); [Slot(783)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glNamedRenderbufferStorageMultisampleCoverageEXT(UInt32 renderbuffer, Int32 coverageSamples, Int32 colorSamples, System.Int32 internalformat, Int32 width, Int32 height); + [Slot(784)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glNamedRenderbufferStorageMultisampleEXT(UInt32 renderbuffer, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(827)] + [Slot(828)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPolygonOffsetClampEXT(Single factor, Single units, Single clamp); - [Slot(830)] + [Slot(831)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPopGroupMarkerEXT(); - [Slot(836)] + [Slot(837)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramParameteriEXT(UInt32 program, System.Int32 pname, Int32 value); - [Slot(839)] + [Slot(840)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform1dEXT(UInt32 program, Int32 location, Double x); - [Slot(841)] + [Slot(842)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform1dvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double* value); - [Slot(843)] + [Slot(844)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform1fEXT(UInt32 program, Int32 location, Single v0); - [Slot(845)] + [Slot(846)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform1fvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value); - [Slot(851)] + [Slot(852)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform1iEXT(UInt32 program, Int32 location, Int32 v0); - [Slot(853)] + [Slot(854)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform1ivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value); - [Slot(859)] + [Slot(860)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform1uiEXT(UInt32 program, Int32 location, UInt32 v0); - [Slot(861)] + [Slot(862)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform1uivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32* value); - [Slot(863)] + [Slot(864)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform2dEXT(UInt32 program, Int32 location, Double x, Double y); - [Slot(865)] + [Slot(866)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform2dvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value); - [Slot(867)] + [Slot(868)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform2fEXT(UInt32 program, Int32 location, Single v0, Single v1); - [Slot(869)] + [Slot(870)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform2fvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value); - [Slot(875)] + [Slot(876)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform2iEXT(UInt32 program, Int32 location, Int32 v0, Int32 v1); - [Slot(877)] + [Slot(878)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform2ivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value); - [Slot(883)] + [Slot(884)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform2uiEXT(UInt32 program, Int32 location, UInt32 v0, UInt32 v1); - [Slot(885)] + [Slot(886)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform2uivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value); - [Slot(887)] + [Slot(888)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform3dEXT(UInt32 program, Int32 location, Double x, Double y, Double z); - [Slot(889)] + [Slot(890)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform3dvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value); - [Slot(891)] + [Slot(892)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform3fEXT(UInt32 program, Int32 location, Single v0, Single v1, Single v2); - [Slot(893)] + [Slot(894)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform3fvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value); - [Slot(899)] + [Slot(900)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform3iEXT(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2); - [Slot(901)] + [Slot(902)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform3ivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value); - [Slot(907)] + [Slot(908)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform3uiEXT(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2); - [Slot(909)] + [Slot(910)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform3uivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value); - [Slot(911)] + [Slot(912)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform4dEXT(UInt32 program, Int32 location, Double x, Double y, Double z, Double w); - [Slot(913)] + [Slot(914)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform4dvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value); - [Slot(915)] + [Slot(916)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform4fEXT(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3); - [Slot(917)] + [Slot(918)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform4fvEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value); - [Slot(923)] + [Slot(924)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform4iEXT(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3); - [Slot(925)] + [Slot(926)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform4ivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value); - [Slot(931)] + [Slot(932)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform4uiEXT(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3); - [Slot(933)] + [Slot(934)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform4uivEXT(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value); - [Slot(939)] + [Slot(940)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix2dvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value); - [Slot(941)] + [Slot(942)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix2fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value); - [Slot(943)] + [Slot(944)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix2x3dvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value); - [Slot(945)] + [Slot(946)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix2x3fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); - [Slot(947)] + [Slot(948)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix2x4dvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value); - [Slot(949)] + [Slot(950)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix2x4fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); - [Slot(951)] + [Slot(952)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix3dvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value); - [Slot(953)] + [Slot(954)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix3fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value); - [Slot(955)] + [Slot(956)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix3x2dvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value); - [Slot(957)] + [Slot(958)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix3x2fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value); - [Slot(959)] + [Slot(960)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix3x4dvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value); - [Slot(961)] + [Slot(962)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix3x4fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); - [Slot(963)] + [Slot(964)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix4dvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value); - [Slot(965)] + [Slot(966)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix4fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value); - [Slot(967)] + [Slot(968)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix4x2dvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value); - [Slot(969)] + [Slot(970)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix4x2fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value); - [Slot(971)] + [Slot(972)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix4x3dvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value); - [Slot(973)] + [Slot(974)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformMatrix4x3fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value); - [Slot(977)] + [Slot(978)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPushClientAttribDefaultEXT(System.Int32 mask); - [Slot(980)] + [Slot(981)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPushGroupMarkerEXT(Int32 length, IntPtr marker); - [Slot(982)] + [Slot(983)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glRasterSamplesEXT(UInt32 samples, bool fixedsamplelocations); - [Slot(1071)] + [Slot(1072)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureBufferEXT(UInt32 texture, System.Int32 target, System.Int32 internalformat, UInt32 buffer); - [Slot(1073)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureBufferRangeEXT(UInt32 texture, System.Int32 target, System.Int32 internalformat, UInt32 buffer, IntPtr offset, IntPtr size); [Slot(1074)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureImage1DEXT(UInt32 texture, System.Int32 target, Int32 level, Int32 internalformat, Int32 width, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels); + private static extern void glTextureBufferRangeEXT(UInt32 texture, System.Int32 target, System.Int32 internalformat, UInt32 buffer, IntPtr offset, IntPtr size); [Slot(1075)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureImage2DEXT(UInt32 texture, System.Int32 target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); + private static extern void glTextureImage1DEXT(UInt32 texture, System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels); [Slot(1076)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glTextureImage3DEXT(UInt32 texture, System.Int32 target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels); + private static extern void glTextureImage2DEXT(UInt32 texture, System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); [Slot(1077)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glTextureImage3DEXT(UInt32 texture, System.Int32 target, Int32 level, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels); + [Slot(1078)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexturePageCommitmentEXT(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit); - [Slot(1079)] + [Slot(1080)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureParameterfEXT(UInt32 texture, System.Int32 target, System.Int32 pname, Single param); - [Slot(1081)] + [Slot(1082)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTextureParameterfvEXT(UInt32 texture, System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* @params); - [Slot(1083)] + [Slot(1084)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureParameteriEXT(UInt32 texture, System.Int32 target, System.Int32 pname, Int32 param); - [Slot(1085)] + [Slot(1086)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTextureParameterIivEXT(UInt32 texture, System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); - [Slot(1087)] + [Slot(1088)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTextureParameterIuivEXT(UInt32 texture, System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] UInt32* @params); - [Slot(1089)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glTextureParameterivEXT(UInt32 texture, System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); [Slot(1090)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern unsafe void glTextureParameterivEXT(UInt32 texture, System.Int32 target, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* @params); + [Slot(1091)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureRenderbufferEXT(UInt32 texture, System.Int32 target, UInt32 renderbuffer); - [Slot(1092)] + [Slot(1093)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureStorage1DEXT(UInt32 texture, System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width); - [Slot(1094)] + [Slot(1095)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureStorage2DEXT(UInt32 texture, System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(1096)] + [Slot(1097)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureStorage2DMultisampleEXT(UInt32 texture, System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height, bool fixedsamplelocations); - [Slot(1098)] + [Slot(1099)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureStorage3DEXT(UInt32 texture, System.Int32 target, Int32 levels, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth); - [Slot(1100)] + [Slot(1101)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureStorage3DMultisampleEXT(UInt32 texture, System.Int32 target, Int32 samples, System.Int32 internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations); - [Slot(1102)] + [Slot(1103)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureSubImage1DEXT(UInt32 texture, System.Int32 target, Int32 level, Int32 xoffset, Int32 width, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels); - [Slot(1104)] + [Slot(1105)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureSubImage2DEXT(UInt32 texture, System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels); - [Slot(1106)] + [Slot(1107)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureSubImage3DEXT(UInt32 texture, System.Int32 target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, System.Int32 format, System.Int32 type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels); - [Slot(1204)] + [Slot(1205)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern byte glUnmapNamedBufferEXT(UInt32 buffer); - [Slot(1207)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUseProgramStagesEXT(UInt32 pipeline, UInt32 stages, UInt32 program); [Slot(1208)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glUseProgramStagesEXT(UInt32 pipeline, System.Int32 stages, UInt32 program); + [Slot(1209)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUseShaderProgramEXT(System.Int32 type, UInt32 program); - [Slot(1211)] + [Slot(1212)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glValidateProgramPipelineEXT(UInt32 pipeline); - [Slot(1217)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayBindVertexBufferEXT(UInt32 vaobj, UInt32 bindingindex, UInt32 buffer, IntPtr offset, Int32 stride); [Slot(1218)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayColorOffsetEXT(UInt32 vaobj, UInt32 buffer, Int32 size, System.Int32 type, Int32 stride, IntPtr offset); + private static extern void glVertexArrayBindVertexBufferEXT(UInt32 vaobj, UInt32 bindingindex, UInt32 buffer, IntPtr offset, Int32 stride); [Slot(1219)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayEdgeFlagOffsetEXT(UInt32 vaobj, UInt32 buffer, Int32 stride, IntPtr offset); - [Slot(1221)] + private static extern void glVertexArrayColorOffsetEXT(UInt32 vaobj, UInt32 buffer, Int32 size, System.Int32 type, Int32 stride, IntPtr offset); + [Slot(1220)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayFogCoordOffsetEXT(UInt32 vaobj, UInt32 buffer, System.Int32 type, Int32 stride, IntPtr offset); + private static extern void glVertexArrayEdgeFlagOffsetEXT(UInt32 vaobj, UInt32 buffer, Int32 stride, IntPtr offset); [Slot(1222)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayIndexOffsetEXT(UInt32 vaobj, UInt32 buffer, System.Int32 type, Int32 stride, IntPtr offset); + private static extern void glVertexArrayFogCoordOffsetEXT(UInt32 vaobj, UInt32 buffer, System.Int32 type, Int32 stride, IntPtr offset); [Slot(1223)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayMultiTexCoordOffsetEXT(UInt32 vaobj, UInt32 buffer, System.Int32 texunit, Int32 size, System.Int32 type, Int32 stride, IntPtr offset); + private static extern void glVertexArrayIndexOffsetEXT(UInt32 vaobj, UInt32 buffer, System.Int32 type, Int32 stride, IntPtr offset); [Slot(1224)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayNormalOffsetEXT(UInt32 vaobj, UInt32 buffer, System.Int32 type, Int32 stride, IntPtr offset); + private static extern void glVertexArrayMultiTexCoordOffsetEXT(UInt32 vaobj, UInt32 buffer, System.Int32 texunit, Int32 size, System.Int32 type, Int32 stride, IntPtr offset); [Slot(1225)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArraySecondaryColorOffsetEXT(UInt32 vaobj, UInt32 buffer, Int32 size, System.Int32 type, Int32 stride, IntPtr offset); + private static extern void glVertexArrayNormalOffsetEXT(UInt32 vaobj, UInt32 buffer, System.Int32 type, Int32 stride, IntPtr offset); [Slot(1226)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayTexCoordOffsetEXT(UInt32 vaobj, UInt32 buffer, Int32 size, System.Int32 type, Int32 stride, IntPtr offset); + private static extern void glVertexArraySecondaryColorOffsetEXT(UInt32 vaobj, UInt32 buffer, Int32 size, System.Int32 type, Int32 stride, IntPtr offset); [Slot(1227)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayVertexAttribBindingEXT(UInt32 vaobj, UInt32 attribindex, UInt32 bindingindex); + private static extern void glVertexArrayTexCoordOffsetEXT(UInt32 vaobj, UInt32 buffer, Int32 size, System.Int32 type, Int32 stride, IntPtr offset); [Slot(1228)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayVertexAttribDivisorEXT(UInt32 vaobj, UInt32 index, UInt32 divisor); + private static extern void glVertexArrayVertexAttribBindingEXT(UInt32 vaobj, UInt32 attribindex, UInt32 bindingindex); [Slot(1229)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayVertexAttribFormatEXT(UInt32 vaobj, UInt32 attribindex, Int32 size, System.Int32 type, bool normalized, UInt32 relativeoffset); + private static extern void glVertexArrayVertexAttribDivisorEXT(UInt32 vaobj, UInt32 index, UInt32 divisor); [Slot(1230)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayVertexAttribIFormatEXT(UInt32 vaobj, UInt32 attribindex, Int32 size, System.Int32 type, UInt32 relativeoffset); + private static extern void glVertexArrayVertexAttribFormatEXT(UInt32 vaobj, UInt32 attribindex, Int32 size, System.Int32 type, bool normalized, UInt32 relativeoffset); [Slot(1231)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayVertexAttribIOffsetEXT(UInt32 vaobj, UInt32 buffer, UInt32 index, Int32 size, System.Int32 type, Int32 stride, IntPtr offset); + private static extern void glVertexArrayVertexAttribIFormatEXT(UInt32 vaobj, UInt32 attribindex, Int32 size, System.Int32 type, UInt32 relativeoffset); [Slot(1232)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayVertexAttribLFormatEXT(UInt32 vaobj, UInt32 attribindex, Int32 size, System.Int32 type, UInt32 relativeoffset); + private static extern void glVertexArrayVertexAttribIOffsetEXT(UInt32 vaobj, UInt32 buffer, UInt32 index, Int32 size, System.Int32 type, Int32 stride, IntPtr offset); [Slot(1233)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayVertexAttribLOffsetEXT(UInt32 vaobj, UInt32 buffer, UInt32 index, Int32 size, System.Int32 type, Int32 stride, IntPtr offset); + private static extern void glVertexArrayVertexAttribLFormatEXT(UInt32 vaobj, UInt32 attribindex, Int32 size, System.Int32 type, UInt32 relativeoffset); [Slot(1234)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexArrayVertexAttribOffsetEXT(UInt32 vaobj, UInt32 buffer, UInt32 index, Int32 size, System.Int32 type, bool normalized, Int32 stride, IntPtr offset); + private static extern void glVertexArrayVertexAttribLOffsetEXT(UInt32 vaobj, UInt32 buffer, UInt32 index, Int32 size, System.Int32 type, Int32 stride, IntPtr offset); [Slot(1235)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexArrayVertexAttribOffsetEXT(UInt32 vaobj, UInt32 buffer, UInt32 index, Int32 size, System.Int32 type, bool normalized, Int32 stride, IntPtr offset); + [Slot(1236)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexArrayVertexBindingDivisorEXT(UInt32 vaobj, UInt32 bindingindex, UInt32 divisor); - [Slot(1238)] + [Slot(1239)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexArrayVertexOffsetEXT(UInt32 vaobj, UInt32 buffer, Int32 size, System.Int32 type, Int32 stride, IntPtr offset); - [Slot(1358)] + [Slot(1359)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glWindowRectanglesEXT(System.Int32 mode, Int32 count, [CountAttribute(Computed = "count")] Int32* box); [Slot(9)] @@ -80208,19 +80222,22 @@ namespace OpenTK.Graphics.OpenGL4 [Slot(498)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glGetPointervKHR(System.Int32 pname, [OutAttribute] IntPtr @params); - [Slot(789)] + [Slot(690)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMaxShaderCompilerThreadsKHR(UInt32 count); + [Slot(790)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glObjectLabelKHR(System.Int32 identifier, UInt32 name, Int32 length, IntPtr label); - [Slot(791)] + [Slot(792)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glObjectPtrLabelKHR(IntPtr ptr, Int32 length, IntPtr label); - [Slot(829)] + [Slot(830)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPopDebugGroupKHR(); - [Slot(979)] + [Slot(980)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glPushDebugGroupKHR(System.Int32 source, UInt32 id, Int32 length, IntPtr message); - [Slot(986)] + [Slot(987)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glReadnPixelsKHR(Int32 x, Int32 y, Int32 width, Int32 height, System.Int32 format, System.Int32 type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data); [Slot(7)] @@ -80261,7 +80278,7 @@ namespace OpenTK.Graphics.OpenGL4 private static extern void glCoverageModulationNV(System.Int32 components); [Slot(160)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glCoverageModulationTableNV(Int32 n, Single* v); + private static extern unsafe void glCoverageModulationTableNV(Int32 n, [CountAttribute(Parameter = "n")] Single* v); [Slot(161)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glCoverFillPathInstancedNV(Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, System.Int32 coverMode, System.Int32 transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues); @@ -80276,19 +80293,19 @@ namespace OpenTK.Graphics.OpenGL4 private static extern void glCoverStrokePathNV(UInt32 path, System.Int32 coverMode); [Slot(166)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glCreateCommandListsNV(Int32 n, [OutAttribute] UInt32* lists); + private static extern unsafe void glCreateCommandListsNV(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* lists); [Slot(178)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glCreateStatesNV(Int32 n, [OutAttribute] UInt32* states); + private static extern unsafe void glCreateStatesNV(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* states); [Slot(194)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glDeleteCommandListsNV(Int32 n, UInt32* lists); + private static extern unsafe void glDeleteCommandListsNV(Int32 n, [CountAttribute(Parameter = "n")] UInt32* lists); [Slot(197)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glDeletePathsNV(UInt32 path, Int32 range); [Slot(207)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glDeleteStatesNV(Int32 n, UInt32* states); + private static extern unsafe void glDeleteStatesNV(Int32 n, [CountAttribute(Parameter = "n")] UInt32* states); [Slot(239)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glDrawCommandsAddressNV(System.Int32 primitiveMode, UInt64* indirects, Int32* sizes, UInt32 count); @@ -80366,10 +80383,10 @@ namespace OpenTK.Graphics.OpenGL4 private static extern Single glGetPathLengthNV(UInt32 path, Int32 startSegment, Int32 numSegments); [Slot(478)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathMetricRangeNV(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics); + private static extern unsafe void glGetPathMetricRangeNV(System.Int32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics); [Slot(479)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glGetPathMetricsNV(UInt32 metricQueryMask, Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics); + private static extern unsafe void glGetPathMetricsNV(System.Int32 metricQueryMask, Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics); [Slot(480)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glGetPathParameterfvNV(UInt32 path, System.Int32 pname, [OutAttribute, CountAttribute(Count = 4)] Single* value); @@ -80490,337 +80507,337 @@ namespace OpenTK.Graphics.OpenGL4 [Slot(677)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glMatrixMultTranspose3x3fNV(System.Int32 matrixMode, Single* m); - [Slot(697)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiDrawArraysIndirectBindlessCountNV(System.Int32 mode, IntPtr indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount); [Slot(698)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiDrawArraysIndirectBindlessNV(System.Int32 mode, IntPtr indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount); - [Slot(704)] + private static extern void glMultiDrawArraysIndirectBindlessCountNV(System.Int32 mode, IntPtr indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount); + [Slot(699)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glMultiDrawElementsIndirectBindlessCountNV(System.Int32 mode, System.Int32 type, IntPtr indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount); + private static extern void glMultiDrawArraysIndirectBindlessNV(System.Int32 mode, IntPtr indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount); [Slot(705)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glMultiDrawElementsIndirectBindlessCountNV(System.Int32 mode, System.Int32 type, IntPtr indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount); + [Slot(706)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glMultiDrawElementsIndirectBindlessNV(System.Int32 mode, System.Int32 type, IntPtr indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount); - [Slot(758)] + [Slot(759)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glNamedFramebufferSampleLocationsfvNV(UInt32 framebuffer, UInt32 start, Int32 count, Single* v); - [Slot(785)] + [Slot(786)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glNormalFormatNV(System.Int32 type, Int32 stride); - [Slot(794)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPathColorGenNV(System.Int32 color, System.Int32 genMode, System.Int32 colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single* coeffs); [Slot(795)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPathCommandsNV(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, System.Int32 coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords); + private static extern unsafe void glPathColorGenNV(System.Int32 color, System.Int32 genMode, System.Int32 colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single* coeffs); [Slot(796)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathCoordsNV(UInt32 path, Int32 numCoords, System.Int32 coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords); + private static extern unsafe void glPathCommandsNV(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, System.Int32 coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords); [Slot(797)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathCoverDepthFuncNV(System.Int32 func); + private static extern void glPathCoordsNV(UInt32 path, Int32 numCoords, System.Int32 coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords); [Slot(798)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPathDashArrayNV(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray); + private static extern void glPathCoverDepthFuncNV(System.Int32 func); [Slot(799)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathFogGenNV(System.Int32 genMode); + private static extern unsafe void glPathDashArrayNV(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray); [Slot(800)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern System.Int32 glPathGlyphIndexArrayNV(UInt32 firstPathName, System.Int32 fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale); + private static extern void glPathFogGenNV(System.Int32 genMode); [Slot(801)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern System.Int32 glPathGlyphIndexRangeNV(System.Int32 fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount); + private static extern System.Int32 glPathGlyphIndexArrayNV(UInt32 firstPathName, System.Int32 fontTarget, IntPtr fontName, System.Int32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale); [Slot(802)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathGlyphRangeNV(UInt32 firstPathName, System.Int32 fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, System.Int32 handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale); + private static extern System.Int32 glPathGlyphIndexRangeNV(System.Int32 fontTarget, IntPtr fontName, System.Int32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount); [Slot(803)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathGlyphsNV(UInt32 firstPathName, System.Int32 fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, Int32 numGlyphs, System.Int32 type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, System.Int32 handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale); + private static extern void glPathGlyphRangeNV(UInt32 firstPathName, System.Int32 fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, System.Int32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, System.Int32 handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale); [Slot(804)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern System.Int32 glPathMemoryGlyphIndexArrayNV(UInt32 firstPathName, System.Int32 fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale); + private static extern void glPathGlyphsNV(UInt32 firstPathName, System.Int32 fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, System.Int32 fontStyle, Int32 numGlyphs, System.Int32 type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, System.Int32 handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale); [Slot(805)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathParameterfNV(UInt32 path, System.Int32 pname, Single value); + private static extern System.Int32 glPathMemoryGlyphIndexArrayNV(UInt32 firstPathName, System.Int32 fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale); [Slot(806)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPathParameterfvNV(UInt32 path, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* value); + private static extern void glPathParameterfNV(UInt32 path, System.Int32 pname, Single value); [Slot(807)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathParameteriNV(UInt32 path, System.Int32 pname, Int32 value); + private static extern unsafe void glPathParameterfvNV(UInt32 path, System.Int32 pname, [CountAttribute(Computed = "pname")] Single* value); [Slot(808)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPathParameterivNV(UInt32 path, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* value); + private static extern void glPathParameteriNV(UInt32 path, System.Int32 pname, Int32 value); [Slot(809)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathStencilDepthOffsetNV(Single factor, Single units); + private static extern unsafe void glPathParameterivNV(UInt32 path, System.Int32 pname, [CountAttribute(Computed = "pname")] Int32* value); [Slot(810)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathStencilFuncNV(System.Int32 func, Int32 @ref, UInt32 mask); + private static extern void glPathStencilDepthOffsetNV(Single factor, Single units); [Slot(811)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathStringNV(UInt32 path, System.Int32 format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString); + private static extern void glPathStencilFuncNV(System.Int32 func, Int32 @ref, UInt32 mask); [Slot(812)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glPathSubCommandsNV(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, System.Int32 coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords); + private static extern void glPathStringNV(UInt32 path, System.Int32 format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString); [Slot(813)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glPathSubCoordsNV(UInt32 path, Int32 coordStart, Int32 numCoords, System.Int32 coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords); + private static extern unsafe void glPathSubCommandsNV(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, System.Int32 coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords); [Slot(814)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glPathSubCoordsNV(UInt32 path, Int32 coordStart, Int32 numCoords, System.Int32 coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords); + [Slot(815)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glPathTexGenNV(System.Int32 texCoordSet, System.Int32 genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single* coeffs); - [Slot(818)] + [Slot(819)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe byte glPointAlongPathNV(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY); - [Slot(837)] + [Slot(838)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramPathFragmentInputGenNV(UInt32 program, Int32 location, System.Int32 genMode, Int32 components, Single* coeffs); - [Slot(848)] + [Slot(849)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform1i64NV(UInt32 program, Int32 location, Int64 x); - [Slot(850)] + [Slot(851)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform1i64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value); - [Slot(856)] + [Slot(857)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform1ui64NV(UInt32 program, Int32 location, UInt64 x); - [Slot(858)] + [Slot(859)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform1ui64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value); - [Slot(872)] + [Slot(873)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform2i64NV(UInt32 program, Int32 location, Int64 x, Int64 y); - [Slot(874)] + [Slot(875)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform2i64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value); - [Slot(880)] + [Slot(881)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform2ui64NV(UInt32 program, Int32 location, UInt64 x, UInt64 y); - [Slot(882)] + [Slot(883)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform2ui64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value); - [Slot(896)] + [Slot(897)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform3i64NV(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z); - [Slot(898)] + [Slot(899)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform3i64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value); - [Slot(904)] + [Slot(905)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform3ui64NV(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z); - [Slot(906)] + [Slot(907)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform3ui64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value); - [Slot(920)] + [Slot(921)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform4i64NV(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w); - [Slot(922)] + [Slot(923)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform4i64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value); - [Slot(928)] + [Slot(929)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniform4ui64NV(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w); - [Slot(930)] + [Slot(931)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniform4ui64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value); - [Slot(935)] + [Slot(936)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glProgramUniformHandleui64NV(UInt32 program, Int32 location, UInt64 value); - [Slot(937)] + [Slot(938)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformHandleui64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values); - [Slot(974)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glProgramUniformui64NV(UInt32 program, Int32 location, UInt64 value); [Slot(975)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glProgramUniformui64NV(UInt32 program, Int32 location, UInt64 value); + [Slot(976)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glProgramUniformui64vNV(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value); - [Slot(991)] + [Slot(992)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glRenderbufferStorageMultisampleCoverageNV(System.Int32 target, Int32 coverageSamples, Int32 colorSamples, System.Int32 internalformat, Int32 width, Int32 height); - [Slot(994)] + [Slot(995)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glResolveDepthValuesNV(); - [Slot(1008)] + [Slot(1009)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glSecondaryColorFormatNV(Int32 size, System.Int32 type, Int32 stride); - [Slot(1016)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSignalVkFenceNV(UInt64 vkFence); [Slot(1017)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glSignalVkSemaphoreNV(UInt64 vkSemaphore); - [Slot(1020)] + private static extern void glSignalVkFenceNV(UInt64 vkFence); + [Slot(1018)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStateCaptureNV(UInt32 state, System.Int32 mode); + private static extern void glSignalVkSemaphoreNV(UInt64 vkSemaphore); [Slot(1021)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glStencilFillPathInstancedNV(Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, System.Int32 fillMode, UInt32 mask, System.Int32 transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues); + private static extern void glStateCaptureNV(UInt32 state, System.Int32 mode); [Slot(1022)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilFillPathNV(UInt32 path, System.Int32 fillMode, UInt32 mask); - [Slot(1029)] + private static extern unsafe void glStencilFillPathInstancedNV(Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, System.Int32 fillMode, UInt32 mask, System.Int32 transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues); + [Slot(1023)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glStencilStrokePathInstancedNV(Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, System.Int32 transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues); + private static extern void glStencilFillPathNV(UInt32 path, System.Int32 fillMode, UInt32 mask); [Slot(1030)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilStrokePathNV(UInt32 path, Int32 reference, UInt32 mask); + private static extern unsafe void glStencilStrokePathInstancedNV(Int32 numPaths, System.Int32 pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, System.Int32 transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues); [Slot(1031)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glStencilThenCoverFillPathInstancedNV(Int32 numPaths, System.Int32 pathNameType, IntPtr paths, UInt32 pathBase, System.Int32 fillMode, UInt32 mask, System.Int32 coverMode, System.Int32 transformType, Single* transformValues); + private static extern void glStencilStrokePathNV(UInt32 path, Int32 reference, UInt32 mask); [Slot(1032)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilThenCoverFillPathNV(UInt32 path, System.Int32 fillMode, UInt32 mask, System.Int32 coverMode); + private static extern unsafe void glStencilThenCoverFillPathInstancedNV(Int32 numPaths, System.Int32 pathNameType, IntPtr paths, UInt32 pathBase, System.Int32 fillMode, UInt32 mask, System.Int32 coverMode, System.Int32 transformType, Single* transformValues); [Slot(1033)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glStencilThenCoverStrokePathInstancedNV(Int32 numPaths, System.Int32 pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, System.Int32 coverMode, System.Int32 transformType, Single* transformValues); + private static extern void glStencilThenCoverFillPathNV(UInt32 path, System.Int32 fillMode, UInt32 mask, System.Int32 coverMode); [Slot(1034)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glStencilThenCoverStrokePathNV(UInt32 path, Int32 reference, UInt32 mask, System.Int32 coverMode); + private static extern unsafe void glStencilThenCoverStrokePathInstancedNV(Int32 numPaths, System.Int32 pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, System.Int32 coverMode, System.Int32 transformType, Single* transformValues); [Slot(1035)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glStencilThenCoverStrokePathNV(UInt32 path, Int32 reference, UInt32 mask, System.Int32 coverMode); + [Slot(1036)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glSubpixelPrecisionBiasNV(UInt32 xbits, UInt32 ybits); - [Slot(1039)] + [Slot(1040)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTexCoordFormatNV(Int32 size, System.Int32 type, Int32 stride); - [Slot(1069)] + [Slot(1070)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glTextureBarrierNV(); - [Slot(1111)] + [Slot(1112)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glTransformPathNV(UInt32 resultPath, UInt32 srcPath, System.Int32 transformType, [CountAttribute(Computed = "transformType")] Single* transformValues); - [Slot(1118)] + [Slot(1119)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform1i64NV(Int32 location, Int64 x); - [Slot(1120)] + [Slot(1121)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform1i64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value); - [Slot(1124)] + [Slot(1125)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform1ui64NV(Int32 location, UInt64 x); - [Slot(1126)] + [Slot(1127)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform1ui64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value); - [Slot(1134)] + [Slot(1135)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform2i64NV(Int32 location, Int64 x, Int64 y); - [Slot(1136)] + [Slot(1137)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform2i64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value); - [Slot(1140)] + [Slot(1141)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform2ui64NV(Int32 location, UInt64 x, UInt64 y); - [Slot(1142)] + [Slot(1143)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform2ui64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value); - [Slot(1150)] + [Slot(1151)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform3i64NV(Int32 location, Int64 x, Int64 y, Int64 z); - [Slot(1152)] + [Slot(1153)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform3i64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value); - [Slot(1156)] + [Slot(1157)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform3ui64NV(Int32 location, UInt64 x, UInt64 y, UInt64 z); - [Slot(1158)] + [Slot(1159)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform3ui64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value); - [Slot(1166)] + [Slot(1167)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform4i64NV(Int32 location, Int64 x, Int64 y, Int64 z, Int64 w); - [Slot(1168)] + [Slot(1169)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform4i64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value); - [Slot(1172)] + [Slot(1173)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniform4ui64NV(Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w); - [Slot(1174)] + [Slot(1175)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniform4ui64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value); - [Slot(1178)] + [Slot(1179)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glUniformHandleui64NV(Int32 location, UInt64 value); - [Slot(1180)] + [Slot(1181)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniformHandleui64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value); - [Slot(1200)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glUniformui64NV(Int32 location, UInt64 value); [Slot(1201)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glUniformui64NV(Int32 location, UInt64 value); + [Slot(1202)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glUniformui64vNV(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value); - [Slot(1279)] + [Slot(1280)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribFormatNV(UInt32 index, Int32 size, System.Int32 type, bool normalized, Int32 stride); - [Slot(1301)] + [Slot(1302)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribIFormatNV(UInt32 index, Int32 size, System.Int32 type, Int32 stride); - [Slot(1305)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribL1i64NV(UInt32 index, Int64 x); [Slot(1306)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribL1i64NV(UInt32 index, Int64 x); + [Slot(1307)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttribL1i64vNV(UInt32 index, [CountAttribute(Count = 1)] Int64* v); - [Slot(1308)] + [Slot(1309)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribL1ui64NV(UInt32 index, UInt64 x); - [Slot(1310)] + [Slot(1311)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttribL1ui64vNV(UInt32 index, [CountAttribute(Count = 1)] UInt64* v); - [Slot(1313)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribL2i64NV(UInt32 index, Int64 x, Int64 y); [Slot(1314)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribL2i64vNV(UInt32 index, [CountAttribute(Count = 2)] Int64* v); + private static extern void glVertexAttribL2i64NV(UInt32 index, Int64 x, Int64 y); [Slot(1315)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribL2ui64NV(UInt32 index, UInt64 x, UInt64 y); + private static extern unsafe void glVertexAttribL2i64vNV(UInt32 index, [CountAttribute(Count = 2)] Int64* v); [Slot(1316)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribL2ui64vNV(UInt32 index, [CountAttribute(Count = 2)] UInt64* v); - [Slot(1319)] + private static extern void glVertexAttribL2ui64NV(UInt32 index, UInt64 x, UInt64 y); + [Slot(1317)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribL3i64NV(UInt32 index, Int64 x, Int64 y, Int64 z); + private static extern unsafe void glVertexAttribL2ui64vNV(UInt32 index, [CountAttribute(Count = 2)] UInt64* v); [Slot(1320)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribL3i64vNV(UInt32 index, [CountAttribute(Count = 3)] Int64* v); + private static extern void glVertexAttribL3i64NV(UInt32 index, Int64 x, Int64 y, Int64 z); [Slot(1321)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribL3ui64NV(UInt32 index, UInt64 x, UInt64 y, UInt64 z); + private static extern unsafe void glVertexAttribL3i64vNV(UInt32 index, [CountAttribute(Count = 3)] Int64* v); [Slot(1322)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribL3ui64vNV(UInt32 index, [CountAttribute(Count = 3)] UInt64* v); - [Slot(1325)] + private static extern void glVertexAttribL3ui64NV(UInt32 index, UInt64 x, UInt64 y, UInt64 z); + [Slot(1323)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribL4i64NV(UInt32 index, Int64 x, Int64 y, Int64 z, Int64 w); + private static extern unsafe void glVertexAttribL3ui64vNV(UInt32 index, [CountAttribute(Count = 3)] UInt64* v); [Slot(1326)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern unsafe void glVertexAttribL4i64vNV(UInt32 index, [CountAttribute(Count = 4)] Int64* v); + private static extern void glVertexAttribL4i64NV(UInt32 index, Int64 x, Int64 y, Int64 z, Int64 w); [Slot(1327)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glVertexAttribL4ui64NV(UInt32 index, UInt64 x, UInt64 y, UInt64 z, UInt64 w); + private static extern unsafe void glVertexAttribL4i64vNV(UInt32 index, [CountAttribute(Count = 4)] Int64* v); [Slot(1328)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glVertexAttribL4ui64NV(UInt32 index, UInt64 x, UInt64 y, UInt64 z, UInt64 w); + [Slot(1329)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glVertexAttribL4ui64vNV(UInt32 index, [CountAttribute(Count = 4)] UInt64* v); - [Slot(1330)] + [Slot(1331)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexAttribLFormatNV(UInt32 index, Int32 size, System.Int32 type, Int32 stride); - [Slot(1342)] + [Slot(1343)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glVertexFormatNV(Int32 size, System.Int32 type, Int32 stride); - [Slot(1353)] - [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] - private static extern void glViewportPositionWScaleNV(UInt32 index, Single xcoeff, Single ycoeff); [Slot(1354)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] + private static extern void glViewportPositionWScaleNV(UInt32 index, Single xcoeff, Single ycoeff); + [Slot(1355)] + [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glViewportSwizzleNV(UInt32 index, System.Int32 swizzlex, System.Int32 swizzley, System.Int32 swizzlez, System.Int32 swizzlew); - [Slot(1356)] + [Slot(1357)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern void glWaitVkSemaphoreNV(UInt64 vkSemaphore); - [Slot(1357)] + [Slot(1358)] [DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)] private static extern unsafe void glWeightPathsNV(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights); [Slot(300)] diff --git a/src/OpenTK/Graphics/OpenGL4/GL4Enums.cs b/src/OpenTK/Graphics/OpenGL4/GL4Enums.cs index 4e739124..9997a491 100644 --- a/src/OpenTK/Graphics/OpenGL4/GL4Enums.cs +++ b/src/OpenTK/Graphics/OpenGL4/GL4Enums.cs @@ -720,7 +720,7 @@ namespace OpenTK.Graphics.OpenGL4 } /// - /// Used in GL.Amd.GetPerfMonitorCounterData, GL.Amd.GetPerfMonitorCounterInfo and 174 other functions + /// Used in GL.Amd.GetPerfMonitorCounterData, GL.Amd.GetPerfMonitorCounterInfo and 75 other functions /// public enum All : int { @@ -765,6 +765,10 @@ namespace OpenTK.Graphics.OpenGL4 /// PerfquerySingleContextIntel = ((int)0x00000000), /// + /// Original was GL_COLOR_BUFFER_BIT0_QCOM = 0x00000001 + /// + ColorBufferBit0Qcom = ((int)0x00000001), + /// /// Original was GL_CONTEXT_CORE_PROFILE_BIT = 0x00000001 /// ContextCoreProfileBit = ((int)0x00000001), @@ -785,6 +789,14 @@ namespace OpenTK.Graphics.OpenGL4 /// SyncFlushCommandsBit = ((int)0x00000001), /// + /// Original was GL_SYNC_FLUSH_COMMANDS_BIT_APPLE = 0x00000001 + /// + SyncFlushCommandsBitApple = ((int)0x00000001), + /// + /// Original was GL_TEXTURE_STORAGE_SPARSE_BIT_AMD = 0x00000001 + /// + TextureStorageSparseBitAmd = ((int)0x00000001), + /// /// Original was GL_VERTEX_ATTRIB_ARRAY_BARRIER_BIT = 0x00000001 /// VertexAttribArrayBarrierBit = ((int)0x00000001), @@ -801,6 +813,10 @@ namespace OpenTK.Graphics.OpenGL4 /// VertexShaderBitExt = ((int)0x00000001), /// + /// Original was GL_COLOR_BUFFER_BIT1_QCOM = 0x00000002 + /// + ColorBufferBit1Qcom = ((int)0x00000002), + /// /// Original was GL_CONTEXT_COMPATIBILITY_PROFILE_BIT = 0x00000002 /// ContextCompatibilityProfileBit = ((int)0x00000002), @@ -833,6 +849,10 @@ namespace OpenTK.Graphics.OpenGL4 /// QueryDepthFailEventBitAmd = ((int)0x00000002), /// + /// Original was GL_COLOR_BUFFER_BIT2_QCOM = 0x00000004 + /// + ColorBufferBit2Qcom = ((int)0x00000004), + /// /// Original was GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT = 0x00000004 /// ContextFlagRobustAccessBit = ((int)0x00000004), @@ -849,6 +869,10 @@ namespace OpenTK.Graphics.OpenGL4 /// GeometryShaderBitExt = ((int)0x00000004), /// + /// Original was GL_GEOMETRY_SHADER_BIT_OES = 0x00000004 + /// + GeometryShaderBitOes = ((int)0x00000004), + /// /// Original was GL_GL_UNIFORM_BARRIER_BIT = 0x00000004 /// GlUniformBarrierBit = ((int)0x00000004), @@ -865,6 +889,10 @@ namespace OpenTK.Graphics.OpenGL4 /// UniformBarrierBitExt = ((int)0x00000004), /// + /// Original was GL_COLOR_BUFFER_BIT3_QCOM = 0x00000008 + /// + ColorBufferBit3Qcom = ((int)0x00000008), + /// /// Original was GL_CONTEXT_FLAG_NO_ERROR_BIT = 0x00000008 /// ContextFlagNoErrorBit = ((int)0x00000008), @@ -889,6 +917,10 @@ namespace OpenTK.Graphics.OpenGL4 /// TessControlShaderBitExt = ((int)0x00000008), /// + /// Original was GL_TESS_CONTROL_SHADER_BIT_OES = 0x00000008 + /// + TessControlShaderBitOes = ((int)0x00000008), + /// /// Original was GL_TEXTURE_FETCH_BARRIER_BIT = 0x00000008 /// TextureFetchBarrierBit = ((int)0x00000008), @@ -897,6 +929,10 @@ namespace OpenTK.Graphics.OpenGL4 /// TextureFetchBarrierBitExt = ((int)0x00000008), /// + /// Original was GL_COLOR_BUFFER_BIT4_QCOM = 0x00000010 + /// + ColorBufferBit4Qcom = ((int)0x00000010), + /// /// Original was GL_CONTEXT_FLAG_PROTECTED_CONTENT_BIT_EXT = 0x00000010 /// ContextFlagProtectedContentBitExt = ((int)0x00000010), @@ -913,6 +949,14 @@ namespace OpenTK.Graphics.OpenGL4 /// TessEvaluationShaderBitExt = ((int)0x00000010), /// + /// Original was GL_TESS_EVALUATION_SHADER_BIT_OES = 0x00000010 + /// + TessEvaluationShaderBitOes = ((int)0x00000010), + /// + /// Original was GL_COLOR_BUFFER_BIT5_QCOM = 0x00000020 + /// + ColorBufferBit5Qcom = ((int)0x00000020), + /// /// Original was GL_COMPUTE_SHADER_BIT = 0x00000020 /// ComputeShaderBit = ((int)0x00000020), @@ -929,6 +973,10 @@ namespace OpenTK.Graphics.OpenGL4 /// ShaderImageAccessBarrierBitExt = ((int)0x00000020), /// + /// Original was GL_COLOR_BUFFER_BIT6_QCOM = 0x00000040 + /// + ColorBufferBit6Qcom = ((int)0x00000040), + /// /// Original was GL_COMMAND_BARRIER_BIT = 0x00000040 /// CommandBarrierBit = ((int)0x00000040), @@ -937,6 +985,10 @@ namespace OpenTK.Graphics.OpenGL4 /// CommandBarrierBitExt = ((int)0x00000040), /// + /// Original was GL_COLOR_BUFFER_BIT7_QCOM = 0x00000080 + /// + ColorBufferBit7Qcom = ((int)0x00000080), + /// /// Original was GL_PIXEL_BUFFER_BARRIER_BIT = 0x00000080 /// PixelBufferBarrierBit = ((int)0x00000080), @@ -949,6 +1001,10 @@ namespace OpenTK.Graphics.OpenGL4 /// DepthBufferBit = ((int)0x00000100), /// + /// Original was GL_DEPTH_BUFFER_BIT0_QCOM = 0x00000100 + /// + DepthBufferBit0Qcom = ((int)0x00000100), + /// /// Original was GL_TEXTURE_UPDATE_BARRIER_BIT = 0x00000100 /// TextureUpdateBarrierBit = ((int)0x00000100), @@ -969,6 +1025,14 @@ namespace OpenTK.Graphics.OpenGL4 /// BufferUpdateBarrierBitExt = ((int)0x00000200), /// + /// Original was GL_DEPTH_BUFFER_BIT1_QCOM = 0x00000200 + /// + DepthBufferBit1Qcom = ((int)0x00000200), + /// + /// Original was GL_DEPTH_BUFFER_BIT2_QCOM = 0x00000400 + /// + DepthBufferBit2Qcom = ((int)0x00000400), + /// /// Original was GL_FRAMEBUFFER_BARRIER_BIT = 0x00000400 /// FramebufferBarrierBit = ((int)0x00000400), @@ -985,6 +1049,10 @@ namespace OpenTK.Graphics.OpenGL4 /// StencilBufferBit = ((int)0x00000400), /// + /// Original was GL_DEPTH_BUFFER_BIT3_QCOM = 0x00000800 + /// + DepthBufferBit3Qcom = ((int)0x00000800), + /// /// Original was GL_TRANSFORM_FEEDBACK_BARRIER_BIT = 0x00000800 /// TransformFeedbackBarrierBit = ((int)0x00000800), @@ -1001,10 +1069,18 @@ namespace OpenTK.Graphics.OpenGL4 /// AtomicCounterBarrierBitExt = ((int)0x00001000), /// + /// Original was GL_DEPTH_BUFFER_BIT4_QCOM = 0x00001000 + /// + DepthBufferBit4Qcom = ((int)0x00001000), + /// /// Original was GL_GL_ATOMIC_COUNTER_BARRIER_BIT = 0x00001000 /// GlAtomicCounterBarrierBit = ((int)0x00001000), /// + /// Original was GL_DEPTH_BUFFER_BIT5_QCOM = 0x00002000 + /// + DepthBufferBit5Qcom = ((int)0x00002000), + /// /// Original was GL_SHADER_STORAGE_BARRIER_BIT = 0x00002000 /// ShaderStorageBarrierBit = ((int)0x00002000), @@ -1013,14 +1089,26 @@ namespace OpenTK.Graphics.OpenGL4 /// ClientMappedBufferBarrierBit = ((int)0x00004000), /// + /// Original was GL_CLIENT_MAPPED_BUFFER_BARRIER_BIT_EXT = 0x00004000 + /// + ClientMappedBufferBarrierBitExt = ((int)0x00004000), + /// /// Original was GL_COLOR_BUFFER_BIT = 0x00004000 /// ColorBufferBit = ((int)0x00004000), /// + /// Original was GL_DEPTH_BUFFER_BIT6_QCOM = 0x00004000 + /// + DepthBufferBit6Qcom = ((int)0x00004000), + /// /// Original was GL_COVERAGE_BUFFER_BIT_NV = 0x00008000 /// CoverageBufferBitNv = ((int)0x00008000), /// + /// Original was GL_DEPTH_BUFFER_BIT7_QCOM = 0x00008000 + /// + DepthBufferBit7Qcom = ((int)0x00008000), + /// /// Original was GL_QUERY_BUFFER_BARRIER_BIT = 0x00008000 /// QueryBufferBarrierBit = ((int)0x00008000), @@ -1045,6 +1133,10 @@ namespace OpenTK.Graphics.OpenGL4 /// FontXMinBoundsBitNv = ((int)0x00010000), /// + /// Original was GL_STENCIL_BUFFER_BIT0_QCOM = 0x00010000 + /// + StencilBufferBit0Qcom = ((int)0x00010000), + /// /// Original was GL_DRAW_ELEMENTS_COMMAND_NV = 0x0002 /// DrawElementsCommandNv = ((int)0x0002), @@ -1065,6 +1157,10 @@ namespace OpenTK.Graphics.OpenGL4 /// FontYMinBoundsBitNv = ((int)0x00020000), /// + /// Original was GL_STENCIL_BUFFER_BIT1_QCOM = 0x00020000 + /// + StencilBufferBit1Qcom = ((int)0x00020000), + /// /// Original was GL_DRAW_ARRAYS_COMMAND_NV = 0x0003 /// DrawArraysCommandNv = ((int)0x0003), @@ -1093,6 +1189,10 @@ namespace OpenTK.Graphics.OpenGL4 /// FontXMaxBoundsBitNv = ((int)0x00040000), /// + /// Original was GL_STENCIL_BUFFER_BIT2_QCOM = 0x00040000 + /// + StencilBufferBit2Qcom = ((int)0x00040000), + /// /// Original was GL_DRAW_ARRAYS_STRIP_COMMAND_NV = 0x0005 /// DrawArraysStripCommandNv = ((int)0x0005), @@ -1141,6 +1241,10 @@ namespace OpenTK.Graphics.OpenGL4 /// FontYMaxBoundsBitNv = ((int)0x00080000), /// + /// Original was GL_STENCIL_BUFFER_BIT3_QCOM = 0x00080000 + /// + StencilBufferBit3Qcom = ((int)0x00080000), + /// /// Original was GL_ATTRIBUTE_ADDRESS_COMMAND_NV = 0x0009 /// AttributeAddressCommandNv = ((int)0x0009), @@ -1245,6 +1349,10 @@ namespace OpenTK.Graphics.OpenGL4 /// FontUnitsPerEmBitNv = ((int)0x00100000), /// + /// Original was GL_STENCIL_BUFFER_BIT4_QCOM = 0x00100000 + /// + StencilBufferBit4Qcom = ((int)0x00100000), + /// /// Original was GL_SCISSOR_COMMAND_NV = 0x0011 /// ScissorCommandNv = ((int)0x0011), @@ -1265,22 +1373,42 @@ namespace OpenTK.Graphics.OpenGL4 /// FontAscenderBitNv = ((int)0x00200000), /// + /// Original was GL_STENCIL_BUFFER_BIT5_QCOM = 0x00200000 + /// + StencilBufferBit5Qcom = ((int)0x00200000), + /// /// Original was GL_MAP_PERSISTENT_BIT = 0x0040 /// MapPersistentBit = ((int)0x0040), /// + /// Original was GL_MAP_PERSISTENT_BIT_EXT = 0x0040 + /// + MapPersistentBitExt = ((int)0x0040), + /// /// Original was GL_FONT_DESCENDER_BIT_NV = 0x00400000 /// FontDescenderBitNv = ((int)0x00400000), /// + /// Original was GL_STENCIL_BUFFER_BIT6_QCOM = 0x00400000 + /// + StencilBufferBit6Qcom = ((int)0x00400000), + /// /// Original was GL_MAP_COHERENT_BIT = 0x0080 /// MapCoherentBit = ((int)0x0080), /// + /// Original was GL_MAP_COHERENT_BIT_EXT = 0x0080 + /// + MapCoherentBitExt = ((int)0x0080), + /// /// Original was GL_FONT_HEIGHT_BIT_NV = 0x00800000 /// FontHeightBitNv = ((int)0x00800000), /// + /// Original was GL_STENCIL_BUFFER_BIT7_QCOM = 0x00800000 + /// + StencilBufferBit7Qcom = ((int)0x00800000), + /// /// Original was GL_BOLD_BIT_NV = 0x01 /// BoldBitNv = ((int)0x01), @@ -1293,10 +1421,18 @@ namespace OpenTK.Graphics.OpenGL4 /// DynamicStorageBit = ((int)0x0100), /// + /// Original was GL_DYNAMIC_STORAGE_BIT_EXT = 0x0100 + /// + DynamicStorageBitExt = ((int)0x0100), + /// /// Original was GL_FONT_MAX_ADVANCE_WIDTH_BIT_NV = 0x01000000 /// FontMaxAdvanceWidthBitNv = ((int)0x01000000), /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT0_QCOM = 0x01000000 + /// + MultisampleBufferBit0Qcom = ((int)0x01000000), + /// /// Original was GL_ADD = 0x0104 /// Add = ((int)0x0104), @@ -1317,6 +1453,10 @@ namespace OpenTK.Graphics.OpenGL4 /// ClientStorageBit = ((int)0x0200), /// + /// Original was GL_CLIENT_STORAGE_BIT_EXT = 0x0200 + /// + ClientStorageBitExt = ((int)0x0200), + /// /// Original was GL_NEVER = 0x0200 /// Never = ((int)0x0200), @@ -1325,6 +1465,10 @@ namespace OpenTK.Graphics.OpenGL4 /// FontMaxAdvanceHeightBitNv = ((int)0x02000000), /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT1_QCOM = 0x02000000 + /// + MultisampleBufferBit1Qcom = ((int)0x02000000), + /// /// Original was GL_LESS = 0x0201 /// Less = ((int)0x0201), @@ -1413,6 +1557,10 @@ namespace OpenTK.Graphics.OpenGL4 /// FontUnderlinePositionBitNv = ((int)0x04000000), /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT2_QCOM = 0x04000000 + /// + MultisampleBufferBit2Qcom = ((int)0x04000000), + /// /// Original was GL_FRONT_RIGHT = 0x0401 /// FrontRight = ((int)0x0401), @@ -1533,10 +1681,22 @@ namespace OpenTK.Graphics.OpenGL4 /// VerticalLineToNv = ((int)0x08), /// + /// Original was GL_LGPU_SEPARATE_STORAGE_BIT_NVX = 0x0800 + /// + LgpuSeparateStorageBitNvx = ((int)0x0800), + /// + /// Original was GL_PER_GPU_STORAGE_BIT_NV = 0x0800 + /// + PerGpuStorageBitNv = ((int)0x0800), + /// /// Original was GL_FONT_UNDERLINE_THICKNESS_BIT_NV = 0x08000000 /// FontUnderlineThicknessBitNv = ((int)0x08000000), /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT3_QCOM = 0x08000000 + /// + MultisampleBufferBit3Qcom = ((int)0x08000000), + /// /// Original was GL_RELATIVE_VERTICAL_LINE_TO_NV = 0x09 /// RelativeVerticalLineToNv = ((int)0x09), @@ -1553,6 +1713,18 @@ namespace OpenTK.Graphics.OpenGL4 /// QuadraticCurveToNv = ((int)0x0A), /// + /// Original was GL_COEFF = 0x0A00 + /// + Coeff = ((int)0x0A00), + /// + /// Original was GL_ORDER = 0x0A01 + /// + Order = ((int)0x0A01), + /// + /// Original was GL_DOMAIN = 0x0A02 + /// + Domain = ((int)0x0A02), + /// /// Original was GL_RELATIVE_QUADRATIC_CURVE_TO_NV = 0x0B /// RelativeQuadraticCurveToNv = ((int)0x0B), @@ -2197,10 +2369,18 @@ namespace OpenTK.Graphics.OpenGL4 /// FontHasKerningBitNv = ((int)0x10000000), /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT4_QCOM = 0x10000000 + /// + MultisampleBufferBit4Qcom = ((int)0x10000000), + /// /// Original was GL_TEXTURE_HEIGHT = 0x1001 /// TextureHeight = ((int)0x1001), /// + /// Original was GL_TEXTURE_COMPONENTS = 0x1003 + /// + TextureComponents = ((int)0x1003), + /// /// Original was GL_TEXTURE_INTERNAL_FORMAT = 0x1003 /// TextureInternalFormat = ((int)0x1003), @@ -2213,6 +2393,10 @@ namespace OpenTK.Graphics.OpenGL4 /// TextureBorderColorNv = ((int)0x1004), /// + /// Original was GL_TEXTURE_BORDER = 0x1005 + /// + TextureBorder = ((int)0x1005), + /// /// Original was GL_TEXTURE_TARGET = 0x1006 /// TextureTarget = ((int)0x1006), @@ -2689,14 +2873,26 @@ namespace OpenTK.Graphics.OpenGL4 /// MultisampleBitExt = ((int)0x20000000), /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT5_QCOM = 0x20000000 + /// + MultisampleBufferBit5Qcom = ((int)0x20000000), + /// /// Original was GL_MODULATE = 0x2100 /// Modulate = ((int)0x2100), /// + /// Original was GL_EYE_LINEAR = 0x2400 + /// + EyeLinear = ((int)0x2400), + /// /// Original was GL_EYE_LINEAR_NV = 0x2400 /// EyeLinearNv = ((int)0x2400), /// + /// Original was GL_OBJECT_LINEAR = 0x2401 + /// + ObjectLinear = ((int)0x2401), + /// /// Original was GL_OBJECT_LINEAR_NV = 0x2401 /// ObjectLinearNv = ((int)0x2401), @@ -2825,6 +3021,10 @@ namespace OpenTK.Graphics.OpenGL4 /// Light0 = ((int)0x4000), /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT6_QCOM = 0x40000000 + /// + MultisampleBufferBit6Qcom = ((int)0x40000000), + /// /// Original was GL_LIGHT1 = 0x4001 /// Light1 = ((int)0x4001), @@ -2861,38 +3061,26 @@ namespace OpenTK.Graphics.OpenGL4 /// AbgrExt = ((int)0x8000), /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT7_QCOM = 0x80000000 + /// + MultisampleBufferBit7Qcom = unchecked((int)0x80000000), + /// /// Original was GL_CONSTANT_COLOR = 0x8001 /// ConstantColor = ((int)0x8001), /// - /// Original was GL_CONSTANT_COLOR_EXT = 0x8001 - /// - ConstantColorExt = ((int)0x8001), - /// /// Original was GL_ONE_MINUS_CONSTANT_COLOR = 0x8002 /// OneMinusConstantColor = ((int)0x8002), /// - /// Original was GL_ONE_MINUS_CONSTANT_COLOR_EXT = 0x8002 - /// - OneMinusConstantColorExt = ((int)0x8002), - /// /// Original was GL_CONSTANT_ALPHA = 0x8003 /// ConstantAlpha = ((int)0x8003), /// - /// Original was GL_CONSTANT_ALPHA_EXT = 0x8003 - /// - ConstantAlphaExt = ((int)0x8003), - /// /// Original was GL_ONE_MINUS_CONSTANT_ALPHA = 0x8004 /// OneMinusConstantAlpha = ((int)0x8004), /// - /// Original was GL_ONE_MINUS_CONSTANT_ALPHA_EXT = 0x8004 - /// - OneMinusConstantAlphaExt = ((int)0x8004), - /// /// Original was GL_BLEND_COLOR = 0x8005 /// BlendColor = ((int)0x8005), @@ -3309,26 +3497,54 @@ namespace OpenTK.Graphics.OpenGL4 /// Rgb4 = ((int)0x804F), /// + /// Original was GL_RGB4_EXT = 0x804F + /// + Rgb4Ext = ((int)0x804F), + /// /// Original was GL_RGB5 = 0x8050 /// Rgb5 = ((int)0x8050), /// + /// Original was GL_RGB5_EXT = 0x8050 + /// + Rgb5Ext = ((int)0x8050), + /// /// Original was GL_RGB8 = 0x8051 /// Rgb8 = ((int)0x8051), /// + /// Original was GL_RGB8_EXT = 0x8051 + /// + Rgb8Ext = ((int)0x8051), + /// + /// Original was GL_RGB8_OES = 0x8051 + /// + Rgb8Oes = ((int)0x8051), + /// /// Original was GL_RGB10 = 0x8052 /// Rgb10 = ((int)0x8052), /// + /// Original was GL_RGB10_EXT = 0x8052 + /// + Rgb10Ext = ((int)0x8052), + /// /// Original was GL_RGB12 = 0x8053 /// Rgb12 = ((int)0x8053), /// + /// Original was GL_RGB12_EXT = 0x8053 + /// + Rgb12Ext = ((int)0x8053), + /// /// Original was GL_RGB16 = 0x8054 /// Rgb16 = ((int)0x8054), /// + /// Original was GL_RGB16_EXT = 0x8054 + /// + Rgb16Ext = ((int)0x8054), + /// /// Original was GL_RGBA2 = 0x8055 /// Rgba2 = ((int)0x8055), @@ -3337,26 +3553,62 @@ namespace OpenTK.Graphics.OpenGL4 /// Rgba4 = ((int)0x8056), /// + /// Original was GL_RGBA4_EXT = 0x8056 + /// + Rgba4Ext = ((int)0x8056), + /// + /// Original was GL_RGBA4_OES = 0x8056 + /// + Rgba4Oes = ((int)0x8056), + /// /// Original was GL_RGB5_A1 = 0x8057 /// Rgb5A1 = ((int)0x8057), /// + /// Original was GL_RGB5_A1_EXT = 0x8057 + /// + Rgb5A1Ext = ((int)0x8057), + /// + /// Original was GL_RGB5_A1_OES = 0x8057 + /// + Rgb5A1Oes = ((int)0x8057), + /// /// Original was GL_RGBA8 = 0x8058 /// Rgba8 = ((int)0x8058), /// + /// Original was GL_RGBA8_EXT = 0x8058 + /// + Rgba8Ext = ((int)0x8058), + /// + /// Original was GL_RGBA8_OES = 0x8058 + /// + Rgba8Oes = ((int)0x8058), + /// /// Original was GL_RGB10_A2 = 0x8059 /// Rgb10A2 = ((int)0x8059), /// + /// Original was GL_RGB10_A2_EXT = 0x8059 + /// + Rgb10A2Ext = ((int)0x8059), + /// /// Original was GL_RGBA12 = 0x805A /// Rgba12 = ((int)0x805A), /// + /// Original was GL_RGBA12_EXT = 0x805A + /// + Rgba12Ext = ((int)0x805A), + /// /// Original was GL_RGBA16 = 0x805B /// Rgba16 = ((int)0x805B), /// + /// Original was GL_RGBA16_EXT = 0x805B + /// + Rgba16Ext = ((int)0x805B), + /// /// Original was GL_TEXTURE_RED_SIZE = 0x805C /// TextureRedSize = ((int)0x805C), @@ -3373,6 +3625,14 @@ namespace OpenTK.Graphics.OpenGL4 /// TextureAlphaSize = ((int)0x805F), /// + /// Original was GL_TEXTURE_LUMINANCE_SIZE = 0x8060 + /// + TextureLuminanceSize = ((int)0x8060), + /// + /// Original was GL_TEXTURE_INTENSITY_SIZE = 0x8061 + /// + TextureIntensitySize = ((int)0x8061), + /// /// Original was GL_REPLACE_EXT = 0x8062 /// ReplaceExt = ((int)0x8062), @@ -3405,6 +3665,10 @@ namespace OpenTK.Graphics.OpenGL4 /// TexturePriorityExt = ((int)0x8066), /// + /// Original was GL_TEXTURE_RESIDENT = 0x8067 + /// + TextureResident = ((int)0x8067), + /// /// Original was GL_TEXTURE_BINDING_1D = 0x8068 /// TextureBinding1D = ((int)0x8068), @@ -4569,6 +4833,14 @@ namespace OpenTK.Graphics.OpenGL4 /// DepthComponent16 = ((int)0x81A5), /// + /// Original was GL_DEPTH_COMPONENT16_ARB = 0x81A5 + /// + DepthComponent16Arb = ((int)0x81A5), + /// + /// Original was GL_DEPTH_COMPONENT16_OES = 0x81A5 + /// + DepthComponent16Oes = ((int)0x81A5), + /// /// Original was GL_DEPTH_COMPONENT16_SGIX = 0x81A5 /// DepthComponent16Sgix = ((int)0x81A5), @@ -4577,6 +4849,14 @@ namespace OpenTK.Graphics.OpenGL4 /// DepthComponent24 = ((int)0x81A6), /// + /// Original was GL_DEPTH_COMPONENT24_ARB = 0x81A6 + /// + DepthComponent24Arb = ((int)0x81A6), + /// + /// Original was GL_DEPTH_COMPONENT24_OES = 0x81A6 + /// + DepthComponent24Oes = ((int)0x81A6), + /// /// Original was GL_DEPTH_COMPONENT24_SGIX = 0x81A6 /// DepthComponent24Sgix = ((int)0x81A6), @@ -4585,6 +4865,14 @@ namespace OpenTK.Graphics.OpenGL4 /// DepthComponent32 = ((int)0x81A7), /// + /// Original was GL_DEPTH_COMPONENT32_ARB = 0x81A7 + /// + DepthComponent32Arb = ((int)0x81A7), + /// + /// Original was GL_DEPTH_COMPONENT32_OES = 0x81A7 + /// + DepthComponent32Oes = ((int)0x81A7), + /// /// Original was GL_DEPTH_COMPONENT32_SGIX = 0x81A7 /// DepthComponent32Sgix = ((int)0x81A7), @@ -4753,34 +5041,66 @@ namespace OpenTK.Graphics.OpenGL4 /// R8 = ((int)0x8229), /// + /// Original was GL_R8_EXT = 0x8229 + /// + R8Ext = ((int)0x8229), + /// /// Original was GL_R16 = 0x822A /// R16 = ((int)0x822A), /// + /// Original was GL_R16_EXT = 0x822A + /// + R16Ext = ((int)0x822A), + /// /// Original was GL_RG8 = 0x822B /// Rg8 = ((int)0x822B), /// + /// Original was GL_RG8_EXT = 0x822B + /// + Rg8Ext = ((int)0x822B), + /// /// Original was GL_RG16 = 0x822C /// Rg16 = ((int)0x822C), /// + /// Original was GL_RG16_EXT = 0x822C + /// + Rg16Ext = ((int)0x822C), + /// /// Original was GL_R16F = 0x822D /// R16f = ((int)0x822D), /// + /// Original was GL_R16F_EXT = 0x822D + /// + R16fExt = ((int)0x822D), + /// /// Original was GL_R32F = 0x822E /// R32f = ((int)0x822E), /// + /// Original was GL_R32F_EXT = 0x822E + /// + R32fExt = ((int)0x822E), + /// /// Original was GL_RG16F = 0x822F /// Rg16f = ((int)0x822F), /// + /// Original was GL_RG16F_EXT = 0x822F + /// + Rg16fExt = ((int)0x822F), + /// /// Original was GL_RG32F = 0x8230 /// Rg32f = ((int)0x8230), /// + /// Original was GL_RG32F_EXT = 0x8230 + /// + Rg32fExt = ((int)0x8230), + /// /// Original was GL_R8I = 0x8231 /// R8i = ((int)0x8231), @@ -6521,6 +6841,18 @@ namespace OpenTK.Graphics.OpenGL4 /// DepthStencil = ((int)0x84F9), /// + /// Original was GL_DEPTH_STENCIL_EXT = 0x84F9 + /// + DepthStencilExt = ((int)0x84F9), + /// + /// Original was GL_DEPTH_STENCIL_NV = 0x84F9 + /// + DepthStencilNv = ((int)0x84F9), + /// + /// Original was GL_DEPTH_STENCIL_OES = 0x84F9 + /// + DepthStencilOes = ((int)0x84F9), + /// /// Original was GL_UNSIGNED_INT_24_8 = 0x84FA /// UnsignedInt248 = ((int)0x84FA), @@ -6865,6 +7197,10 @@ namespace OpenTK.Graphics.OpenGL4 /// VertexAttribArrayLong = ((int)0x874E), /// + /// Original was GL_DEPTH_STENCIL_MESA = 0x8750 + /// + DepthStencilMesa = ((int)0x8750), + /// /// Original was GL_BUFFER_SIZE = 0x8764 /// BufferSize = ((int)0x8764), @@ -6953,6 +7289,14 @@ namespace OpenTK.Graphics.OpenGL4 /// Rgba32f = ((int)0x8814), /// + /// Original was GL_RGBA32F_ARB = 0x8814 + /// + Rgba32fArb = ((int)0x8814), + /// + /// Original was GL_RGBA32F_EXT = 0x8814 + /// + Rgba32fExt = ((int)0x8814), + /// /// Original was GL_RGB32F = 0x8815 /// Rgb32f = ((int)0x8815), @@ -6961,10 +7305,26 @@ namespace OpenTK.Graphics.OpenGL4 /// Rgba16f = ((int)0x881A), /// + /// Original was GL_RGBA16F_ARB = 0x881A + /// + Rgba16fArb = ((int)0x881A), + /// + /// Original was GL_RGBA16F_EXT = 0x881A + /// + Rgba16fExt = ((int)0x881A), + /// /// Original was GL_RGB16F = 0x881B /// Rgb16f = ((int)0x881B), /// + /// Original was GL_RGB16F_ARB = 0x881B + /// + Rgb16fArb = ((int)0x881B), + /// + /// Original was GL_RGB16F_EXT = 0x881B + /// + Rgb16fExt = ((int)0x881B), + /// /// Original was GL_RGBA_FLOAT_MODE = 0x8820 /// RgbaFloatMode = ((int)0x8820), @@ -7509,6 +7869,14 @@ namespace OpenTK.Graphics.OpenGL4 /// Depth24Stencil8 = ((int)0x88F0), /// + /// Original was GL_DEPTH24_STENCIL8_EXT = 0x88F0 + /// + Depth24Stencil8Ext = ((int)0x88F0), + /// + /// Original was GL_DEPTH24_STENCIL8_OES = 0x88F0 + /// + Depth24Stencil8Oes = ((int)0x88F0), + /// /// Original was GL_TEXTURE_STENCIL_SIZE = 0x88F1 /// TextureStencilSize = ((int)0x88F1), @@ -7593,6 +7961,50 @@ namespace OpenTK.Graphics.OpenGL4 /// FixedOnly = ((int)0x891D), /// + /// Original was GL_MOV_ATI = 0x8961 + /// + MovAti = ((int)0x8961), + /// + /// Original was GL_ADD_ATI = 0x8963 + /// + AddAti = ((int)0x8963), + /// + /// Original was GL_MUL_ATI = 0x8964 + /// + MulAti = ((int)0x8964), + /// + /// Original was GL_SUB_ATI = 0x8965 + /// + SubAti = ((int)0x8965), + /// + /// Original was GL_DOT3_ATI = 0x8966 + /// + Dot3Ati = ((int)0x8966), + /// + /// Original was GL_DOT4_ATI = 0x8967 + /// + Dot4Ati = ((int)0x8967), + /// + /// Original was GL_MAD_ATI = 0x8968 + /// + MadAti = ((int)0x8968), + /// + /// Original was GL_LERP_ATI = 0x8969 + /// + LerpAti = ((int)0x8969), + /// + /// Original was GL_CND_ATI = 0x896A + /// + CndAti = ((int)0x896A), + /// + /// Original was GL_CND0_ATI = 0x896B + /// + Cnd0Ati = ((int)0x896B), + /// + /// Original was GL_DOT2_ADD_ATI = 0x896C + /// + Dot2AddAti = ((int)0x896C), + /// /// Original was GL_PACK_RESAMPLE_OML = 0x8984 /// PackResampleOml = ((int)0x8984), @@ -7757,10 +8169,18 @@ namespace OpenTK.Graphics.OpenGL4 /// FragmentShader = ((int)0x8B30), /// + /// Original was GL_FRAGMENT_SHADER_ARB = 0x8B30 + /// + FragmentShaderArb = ((int)0x8B30), + /// /// Original was GL_VERTEX_SHADER = 0x8B31 /// VertexShader = ((int)0x8B31), /// + /// Original was GL_VERTEX_SHADER_ARB = 0x8B31 + /// + VertexShaderArb = ((int)0x8B31), + /// /// Original was GL_PROGRAM_OBJECT_EXT = 0x8B40 /// ProgramObjectExt = ((int)0x8B40), @@ -7801,110 +8221,226 @@ namespace OpenTK.Graphics.OpenGL4 /// FloatVec2 = ((int)0x8B50), /// + /// Original was GL_FLOAT_VEC2_ARB = 0x8B50 + /// + FloatVec2Arb = ((int)0x8B50), + /// /// Original was GL_FLOAT_VEC3 = 0x8B51 /// FloatVec3 = ((int)0x8B51), /// + /// Original was GL_FLOAT_VEC3_ARB = 0x8B51 + /// + FloatVec3Arb = ((int)0x8B51), + /// /// Original was GL_FLOAT_VEC4 = 0x8B52 /// FloatVec4 = ((int)0x8B52), /// + /// Original was GL_FLOAT_VEC4_ARB = 0x8B52 + /// + FloatVec4Arb = ((int)0x8B52), + /// /// Original was GL_INT_VEC2 = 0x8B53 /// IntVec2 = ((int)0x8B53), /// + /// Original was GL_INT_VEC2_ARB = 0x8B53 + /// + IntVec2Arb = ((int)0x8B53), + /// /// Original was GL_INT_VEC3 = 0x8B54 /// IntVec3 = ((int)0x8B54), /// + /// Original was GL_INT_VEC3_ARB = 0x8B54 + /// + IntVec3Arb = ((int)0x8B54), + /// /// Original was GL_INT_VEC4 = 0x8B55 /// IntVec4 = ((int)0x8B55), /// + /// Original was GL_INT_VEC4_ARB = 0x8B55 + /// + IntVec4Arb = ((int)0x8B55), + /// /// Original was GL_BOOL = 0x8B56 /// Bool = ((int)0x8B56), /// + /// Original was GL_BOOL_ARB = 0x8B56 + /// + BoolArb = ((int)0x8B56), + /// /// Original was GL_BOOL_VEC2 = 0x8B57 /// BoolVec2 = ((int)0x8B57), /// + /// Original was GL_BOOL_VEC2_ARB = 0x8B57 + /// + BoolVec2Arb = ((int)0x8B57), + /// /// Original was GL_BOOL_VEC3 = 0x8B58 /// BoolVec3 = ((int)0x8B58), /// + /// Original was GL_BOOL_VEC3_ARB = 0x8B58 + /// + BoolVec3Arb = ((int)0x8B58), + /// /// Original was GL_BOOL_VEC4 = 0x8B59 /// BoolVec4 = ((int)0x8B59), /// + /// Original was GL_BOOL_VEC4_ARB = 0x8B59 + /// + BoolVec4Arb = ((int)0x8B59), + /// /// Original was GL_FLOAT_MAT2 = 0x8B5A /// FloatMat2 = ((int)0x8B5A), /// + /// Original was GL_FLOAT_MAT2_ARB = 0x8B5A + /// + FloatMat2Arb = ((int)0x8B5A), + /// /// Original was GL_FLOAT_MAT3 = 0x8B5B /// FloatMat3 = ((int)0x8B5B), /// + /// Original was GL_FLOAT_MAT3_ARB = 0x8B5B + /// + FloatMat3Arb = ((int)0x8B5B), + /// /// Original was GL_FLOAT_MAT4 = 0x8B5C /// FloatMat4 = ((int)0x8B5C), /// + /// Original was GL_FLOAT_MAT4_ARB = 0x8B5C + /// + FloatMat4Arb = ((int)0x8B5C), + /// /// Original was GL_SAMPLER_1D = 0x8B5D /// Sampler1D = ((int)0x8B5D), /// + /// Original was GL_SAMPLER_1D_ARB = 0x8B5D + /// + Sampler1DArb = ((int)0x8B5D), + /// /// Original was GL_SAMPLER_2D = 0x8B5E /// Sampler2D = ((int)0x8B5E), /// + /// Original was GL_SAMPLER_2D_ARB = 0x8B5E + /// + Sampler2DArb = ((int)0x8B5E), + /// /// Original was GL_SAMPLER_3D = 0x8B5F /// Sampler3D = ((int)0x8B5F), /// + /// Original was GL_SAMPLER_3D_ARB = 0x8B5F + /// + Sampler3DArb = ((int)0x8B5F), + /// + /// Original was GL_SAMPLER_3D_OES = 0x8B5F + /// + Sampler3DOes = ((int)0x8B5F), + /// /// Original was GL_SAMPLER_CUBE = 0x8B60 /// SamplerCube = ((int)0x8B60), /// + /// Original was GL_SAMPLER_CUBE_ARB = 0x8B60 + /// + SamplerCubeArb = ((int)0x8B60), + /// /// Original was GL_SAMPLER_1D_SHADOW = 0x8B61 /// Sampler1DShadow = ((int)0x8B61), /// + /// Original was GL_SAMPLER_1D_SHADOW_ARB = 0x8B61 + /// + Sampler1DShadowArb = ((int)0x8B61), + /// /// Original was GL_SAMPLER_2D_SHADOW = 0x8B62 /// Sampler2DShadow = ((int)0x8B62), /// + /// Original was GL_SAMPLER_2D_SHADOW_ARB = 0x8B62 + /// + Sampler2DShadowArb = ((int)0x8B62), + /// + /// Original was GL_SAMPLER_2D_SHADOW_EXT = 0x8B62 + /// + Sampler2DShadowExt = ((int)0x8B62), + /// /// Original was GL_SAMPLER_2D_RECT = 0x8B63 /// Sampler2DRect = ((int)0x8B63), /// + /// Original was GL_SAMPLER_2D_RECT_ARB = 0x8B63 + /// + Sampler2DRectArb = ((int)0x8B63), + /// /// Original was GL_SAMPLER_2D_RECT_SHADOW = 0x8B64 /// Sampler2DRectShadow = ((int)0x8B64), /// + /// Original was GL_SAMPLER_2D_RECT_SHADOW_ARB = 0x8B64 + /// + Sampler2DRectShadowArb = ((int)0x8B64), + /// /// Original was GL_FLOAT_MAT2x3 = 0x8B65 /// FloatMat2x3 = ((int)0x8B65), /// + /// Original was GL_FLOAT_MAT2x3_NV = 0x8B65 + /// + FloatMat2x3Nv = ((int)0x8B65), + /// /// Original was GL_FLOAT_MAT2x4 = 0x8B66 /// FloatMat2x4 = ((int)0x8B66), /// + /// Original was GL_FLOAT_MAT2x4_NV = 0x8B66 + /// + FloatMat2x4Nv = ((int)0x8B66), + /// /// Original was GL_FLOAT_MAT3x2 = 0x8B67 /// FloatMat3x2 = ((int)0x8B67), /// + /// Original was GL_FLOAT_MAT3x2_NV = 0x8B67 + /// + FloatMat3x2Nv = ((int)0x8B67), + /// /// Original was GL_FLOAT_MAT3x4 = 0x8B68 /// FloatMat3x4 = ((int)0x8B68), /// + /// Original was GL_FLOAT_MAT3x4_NV = 0x8B68 + /// + FloatMat3x4Nv = ((int)0x8B68), + /// /// Original was GL_FLOAT_MAT4x2 = 0x8B69 /// FloatMat4x2 = ((int)0x8B69), /// + /// Original was GL_FLOAT_MAT4x2_NV = 0x8B69 + /// + FloatMat4x2Nv = ((int)0x8B69), + /// /// Original was GL_FLOAT_MAT4x3 = 0x8B6A /// FloatMat4x3 = ((int)0x8B6A), /// + /// Original was GL_FLOAT_MAT4x3_NV = 0x8B6A + /// + FloatMat4x3Nv = ((int)0x8B6A), + /// /// Original was GL_DELETE_STATUS = 0x8B80 /// DeleteStatus = ((int)0x8B80), @@ -8141,6 +8677,14 @@ namespace OpenTK.Graphics.OpenGL4 /// R11fG11fB10f = ((int)0x8C3A), /// + /// Original was GL_R11F_G11F_B10F_APPLE = 0x8C3A + /// + R11fG11fB10fApple = ((int)0x8C3A), + /// + /// Original was GL_R11F_G11F_B10F_EXT = 0x8C3A + /// + R11fG11fB10fExt = ((int)0x8C3A), + /// /// Original was GL_UNSIGNED_INT_10F_11F_11F_REV = 0x8C3B /// UnsignedInt10F11F11FRev = ((int)0x8C3B), @@ -8149,6 +8693,14 @@ namespace OpenTK.Graphics.OpenGL4 /// Rgb9E5 = ((int)0x8C3D), /// + /// Original was GL_RGB9_E5_APPLE = 0x8C3D + /// + Rgb9E5Apple = ((int)0x8C3D), + /// + /// Original was GL_RGB9_E5_EXT = 0x8C3D + /// + Rgb9E5Ext = ((int)0x8C3D), + /// /// Original was GL_UNSIGNED_INT_5_9_9_9_REV = 0x8C3E /// UnsignedInt5999Rev = ((int)0x8C3E), @@ -8161,18 +8713,38 @@ namespace OpenTK.Graphics.OpenGL4 /// Srgb = ((int)0x8C40), /// + /// Original was GL_SRGB_EXT = 0x8C40 + /// + SrgbExt = ((int)0x8C40), + /// /// Original was GL_SRGB8 = 0x8C41 /// Srgb8 = ((int)0x8C41), /// + /// Original was GL_SRGB8_EXT = 0x8C41 + /// + Srgb8Ext = ((int)0x8C41), + /// + /// Original was GL_SRGB8_NV = 0x8C41 + /// + Srgb8Nv = ((int)0x8C41), + /// /// Original was GL_SRGB_ALPHA = 0x8C42 /// SrgbAlpha = ((int)0x8C42), /// + /// Original was GL_SRGB_ALPHA_EXT = 0x8C42 + /// + SrgbAlphaExt = ((int)0x8C42), + /// /// Original was GL_SRGB8_ALPHA8 = 0x8C43 /// Srgb8Alpha8 = ((int)0x8C43), /// + /// Original was GL_SRGB8_ALPHA8_EXT = 0x8C43 + /// + Srgb8Alpha8Ext = ((int)0x8C43), + /// /// Original was GL_SLUMINANCE_ALPHA = 0x8C44 /// SluminanceAlpha = ((int)0x8C44), @@ -8457,6 +9029,10 @@ namespace OpenTK.Graphics.OpenGL4 /// MaxColorAttachmentsExt = ((int)0x8CDF), /// + /// Original was GL_MAX_COLOR_ATTACHMENTS_NV = 0x8CDF + /// + MaxColorAttachmentsNv = ((int)0x8CDF), + /// /// Original was GL_COLOR_ATTACHMENT0 = 0x8CE0 /// ColorAttachment0 = ((int)0x8CE0), @@ -8465,6 +9041,14 @@ namespace OpenTK.Graphics.OpenGL4 /// ColorAttachment0Ext = ((int)0x8CE0), /// + /// Original was GL_COLOR_ATTACHMENT0_NV = 0x8CE0 + /// + ColorAttachment0Nv = ((int)0x8CE0), + /// + /// Original was GL_COLOR_ATTACHMENT0_OES = 0x8CE0 + /// + ColorAttachment0Oes = ((int)0x8CE0), + /// /// Original was GL_COLOR_ATTACHMENT1 = 0x8CE1 /// ColorAttachment1 = ((int)0x8CE1), @@ -8473,6 +9057,10 @@ namespace OpenTK.Graphics.OpenGL4 /// ColorAttachment1Ext = ((int)0x8CE1), /// + /// Original was GL_COLOR_ATTACHMENT1_NV = 0x8CE1 + /// + ColorAttachment1Nv = ((int)0x8CE1), + /// /// Original was GL_COLOR_ATTACHMENT2 = 0x8CE2 /// ColorAttachment2 = ((int)0x8CE2), @@ -8481,6 +9069,10 @@ namespace OpenTK.Graphics.OpenGL4 /// ColorAttachment2Ext = ((int)0x8CE2), /// + /// Original was GL_COLOR_ATTACHMENT2_NV = 0x8CE2 + /// + ColorAttachment2Nv = ((int)0x8CE2), + /// /// Original was GL_COLOR_ATTACHMENT3 = 0x8CE3 /// ColorAttachment3 = ((int)0x8CE3), @@ -8489,6 +9081,10 @@ namespace OpenTK.Graphics.OpenGL4 /// ColorAttachment3Ext = ((int)0x8CE3), /// + /// Original was GL_COLOR_ATTACHMENT3_NV = 0x8CE3 + /// + ColorAttachment3Nv = ((int)0x8CE3), + /// /// Original was GL_COLOR_ATTACHMENT4 = 0x8CE4 /// ColorAttachment4 = ((int)0x8CE4), @@ -8497,6 +9093,10 @@ namespace OpenTK.Graphics.OpenGL4 /// ColorAttachment4Ext = ((int)0x8CE4), /// + /// Original was GL_COLOR_ATTACHMENT4_NV = 0x8CE4 + /// + ColorAttachment4Nv = ((int)0x8CE4), + /// /// Original was GL_COLOR_ATTACHMENT5 = 0x8CE5 /// ColorAttachment5 = ((int)0x8CE5), @@ -8505,6 +9105,10 @@ namespace OpenTK.Graphics.OpenGL4 /// ColorAttachment5Ext = ((int)0x8CE5), /// + /// Original was GL_COLOR_ATTACHMENT5_NV = 0x8CE5 + /// + ColorAttachment5Nv = ((int)0x8CE5), + /// /// Original was GL_COLOR_ATTACHMENT6 = 0x8CE6 /// ColorAttachment6 = ((int)0x8CE6), @@ -8513,6 +9117,10 @@ namespace OpenTK.Graphics.OpenGL4 /// ColorAttachment6Ext = ((int)0x8CE6), /// + /// Original was GL_COLOR_ATTACHMENT6_NV = 0x8CE6 + /// + ColorAttachment6Nv = ((int)0x8CE6), + /// /// Original was GL_COLOR_ATTACHMENT7 = 0x8CE7 /// ColorAttachment7 = ((int)0x8CE7), @@ -8521,6 +9129,10 @@ namespace OpenTK.Graphics.OpenGL4 /// ColorAttachment7Ext = ((int)0x8CE7), /// + /// Original was GL_COLOR_ATTACHMENT7_NV = 0x8CE7 + /// + ColorAttachment7Nv = ((int)0x8CE7), + /// /// Original was GL_COLOR_ATTACHMENT8 = 0x8CE8 /// ColorAttachment8 = ((int)0x8CE8), @@ -8529,6 +9141,10 @@ namespace OpenTK.Graphics.OpenGL4 /// ColorAttachment8Ext = ((int)0x8CE8), /// + /// Original was GL_COLOR_ATTACHMENT8_NV = 0x8CE8 + /// + ColorAttachment8Nv = ((int)0x8CE8), + /// /// Original was GL_COLOR_ATTACHMENT9 = 0x8CE9 /// ColorAttachment9 = ((int)0x8CE9), @@ -8537,6 +9153,10 @@ namespace OpenTK.Graphics.OpenGL4 /// ColorAttachment9Ext = ((int)0x8CE9), /// + /// Original was GL_COLOR_ATTACHMENT9_NV = 0x8CE9 + /// + ColorAttachment9Nv = ((int)0x8CE9), + /// /// Original was GL_COLOR_ATTACHMENT10 = 0x8CEA /// ColorAttachment10 = ((int)0x8CEA), @@ -8545,6 +9165,10 @@ namespace OpenTK.Graphics.OpenGL4 /// ColorAttachment10Ext = ((int)0x8CEA), /// + /// Original was GL_COLOR_ATTACHMENT10_NV = 0x8CEA + /// + ColorAttachment10Nv = ((int)0x8CEA), + /// /// Original was GL_COLOR_ATTACHMENT11 = 0x8CEB /// ColorAttachment11 = ((int)0x8CEB), @@ -8553,6 +9177,10 @@ namespace OpenTK.Graphics.OpenGL4 /// ColorAttachment11Ext = ((int)0x8CEB), /// + /// Original was GL_COLOR_ATTACHMENT11_NV = 0x8CEB + /// + ColorAttachment11Nv = ((int)0x8CEB), + /// /// Original was GL_COLOR_ATTACHMENT12 = 0x8CEC /// ColorAttachment12 = ((int)0x8CEC), @@ -8561,6 +9189,10 @@ namespace OpenTK.Graphics.OpenGL4 /// ColorAttachment12Ext = ((int)0x8CEC), /// + /// Original was GL_COLOR_ATTACHMENT12_NV = 0x8CEC + /// + ColorAttachment12Nv = ((int)0x8CEC), + /// /// Original was GL_COLOR_ATTACHMENT13 = 0x8CED /// ColorAttachment13 = ((int)0x8CED), @@ -8569,6 +9201,10 @@ namespace OpenTK.Graphics.OpenGL4 /// ColorAttachment13Ext = ((int)0x8CED), /// + /// Original was GL_COLOR_ATTACHMENT13_NV = 0x8CED + /// + ColorAttachment13Nv = ((int)0x8CED), + /// /// Original was GL_COLOR_ATTACHMENT14 = 0x8CEE /// ColorAttachment14 = ((int)0x8CEE), @@ -8577,6 +9213,10 @@ namespace OpenTK.Graphics.OpenGL4 /// ColorAttachment14Ext = ((int)0x8CEE), /// + /// Original was GL_COLOR_ATTACHMENT14_NV = 0x8CEE + /// + ColorAttachment14Nv = ((int)0x8CEE), + /// /// Original was GL_COLOR_ATTACHMENT15 = 0x8CEF /// ColorAttachment15 = ((int)0x8CEF), @@ -8585,6 +9225,10 @@ namespace OpenTK.Graphics.OpenGL4 /// ColorAttachment15Ext = ((int)0x8CEF), /// + /// Original was GL_COLOR_ATTACHMENT15_NV = 0x8CEF + /// + ColorAttachment15Nv = ((int)0x8CEF), + /// /// Original was GL_COLOR_ATTACHMENT16 = 0x8CF0 /// ColorAttachment16 = ((int)0x8CF0), @@ -8657,6 +9301,10 @@ namespace OpenTK.Graphics.OpenGL4 /// DepthAttachmentExt = ((int)0x8D00), /// + /// Original was GL_DEPTH_ATTACHMENT_OES = 0x8D00 + /// + DepthAttachmentOes = ((int)0x8D00), + /// /// Original was GL_STENCIL_ATTACHMENT = 0x8D20 /// StencilAttachment = ((int)0x8D20), @@ -8917,6 +9565,14 @@ namespace OpenTK.Graphics.OpenGL4 /// FramebufferIncompleteLayerCountArb = ((int)0x8DA9), /// + /// Original was GL_DEPTH_COMPONENT32F_NV = 0x8DAB + /// + DepthComponent32fNv = ((int)0x8DAB), + /// + /// Original was GL_DEPTH32F_STENCIL8_NV = 0x8DAC + /// + Depth32fStencil8Nv = ((int)0x8DAC), + /// /// Original was GL_FLOAT_32_UNSIGNED_INT_24_8_REV = 0x8DAD /// Float32UnsignedInt248Rev = ((int)0x8DAD), @@ -8933,10 +9589,18 @@ namespace OpenTK.Graphics.OpenGL4 /// CompressedRedRgtc1 = ((int)0x8DBB), /// + /// Original was GL_COMPRESSED_RED_RGTC1_EXT = 0x8DBB + /// + CompressedRedRgtc1Ext = ((int)0x8DBB), + /// /// Original was GL_COMPRESSED_SIGNED_RED_RGTC1 = 0x8DBC /// CompressedSignedRedRgtc1 = ((int)0x8DBC), /// + /// Original was GL_COMPRESSED_SIGNED_RED_RGTC1_EXT = 0x8DBC + /// + CompressedSignedRedRgtc1Ext = ((int)0x8DBC), + /// /// Original was GL_COMPRESSED_RG_RGTC2 = 0x8DBD /// CompressedRgRgtc2 = ((int)0x8DBD), @@ -9801,14 +10465,26 @@ namespace OpenTK.Graphics.OpenGL4 /// R16Snorm = ((int)0x8F98), /// + /// Original was GL_R16_SNORM_EXT = 0x8F98 + /// + R16SnormExt = ((int)0x8F98), + /// /// Original was GL_RG16_SNORM = 0x8F99 /// Rg16Snorm = ((int)0x8F99), /// + /// Original was GL_RG16_SNORM_EXT = 0x8F99 + /// + Rg16SnormExt = ((int)0x8F99), + /// /// Original was GL_RGB16_SNORM = 0x8F9A /// Rgb16Snorm = ((int)0x8F9A), /// + /// Original was GL_RGB16_SNORM_EXT = 0x8F9A + /// + Rgb16SnormExt = ((int)0x8F9A), + /// /// Original was GL_RGBA16_SNORM = 0x8F9B /// Rgba16Snorm = ((int)0x8F9B), @@ -10969,10 +11645,18 @@ namespace OpenTK.Graphics.OpenGL4 /// MaxShaderCompilerThreadsArb = ((int)0x91B0), /// + /// Original was GL_MAX_SHADER_COMPILER_THREADS_KHR = 0x91B0 + /// + MaxShaderCompilerThreadsKhr = ((int)0x91B0), + /// /// Original was GL_COMPLETION_STATUS_ARB = 0x91B1 /// CompletionStatusArb = ((int)0x91B1), /// + /// Original was GL_COMPLETION_STATUS_KHR = 0x91B1 + /// + CompletionStatusKhr = ((int)0x91B1), + /// /// Original was GL_COMPUTE_SHADER = 0x91B9 /// ComputeShader = ((int)0x91B9), @@ -12145,6 +12829,14 @@ namespace OpenTK.Graphics.OpenGL4 /// PerfqueryGpaExtendedCountersIntel = ((int)0x9500), /// + /// Original was GL_LAYOUT_DEPTH_READ_ONLY_STENCIL_ATTACHMENT_EXT = 0x9530 + /// + LayoutDepthReadOnlyStencilAttachmentExt = ((int)0x9530), + /// + /// Original was GL_LAYOUT_DEPTH_ATTACHMENT_STENCIL_READ_ONLY_EXT = 0x9531 + /// + LayoutDepthAttachmentStencilReadOnlyExt = ((int)0x9531), + /// /// Original was GL_CONSERVATIVE_RASTER_MODE_NV = 0x954D /// ConservativeRasterModeNv = ((int)0x954D), @@ -12157,6 +12849,10 @@ namespace OpenTK.Graphics.OpenGL4 /// ConservativeRasterModePreSnapTrianglesNv = ((int)0x954F), /// + /// Original was GL_CONSERVATIVE_RASTER_MODE_PRE_SNAP_NV = 0x9550 + /// + ConservativeRasterModePreSnapNv = ((int)0x9550), + /// /// Original was GL_SHADER_BINARY_FORMAT_SPIR_V = 0x9551 /// ShaderBinaryFormatSpirV = ((int)0x9551), @@ -17669,6 +18365,53 @@ namespace OpenTK.Graphics.OpenGL4 AtomicCounterBufferReferencedByFragmentShader = ((int)0x92CB), } + /// + /// Not used directly. + /// + public enum AtomicCounterBufferPName : int + { + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_COMPUTE_SHADER = 0x90ED + /// + AtomicCounterBufferReferencedByComputeShader = ((int)0x90ED), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_BINDING = 0x92C1 + /// + AtomicCounterBufferBinding = ((int)0x92C1), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_DATA_SIZE = 0x92C4 + /// + AtomicCounterBufferDataSize = ((int)0x92C4), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTERS = 0x92C5 + /// + AtomicCounterBufferActiveAtomicCounters = ((int)0x92C5), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTER_INDICES = 0x92C6 + /// + AtomicCounterBufferActiveAtomicCounterIndices = ((int)0x92C6), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_VERTEX_SHADER = 0x92C7 + /// + AtomicCounterBufferReferencedByVertexShader = ((int)0x92C7), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_CONTROL_SHADER = 0x92C8 + /// + AtomicCounterBufferReferencedByTessControlShader = ((int)0x92C8), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_EVALUATION_SHADER = 0x92C9 + /// + AtomicCounterBufferReferencedByTessEvaluationShader = ((int)0x92C9), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_GEOMETRY_SHADER = 0x92CA + /// + AtomicCounterBufferReferencedByGeometryShader = ((int)0x92CA), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_FRAGMENT_SHADER = 0x92CB + /// + AtomicCounterBufferReferencedByFragmentShader = ((int)0x92CB), + } + /// /// Not used directly. /// @@ -17705,6 +18448,237 @@ namespace OpenTK.Graphics.OpenGL4 MultisampleBitExt = ((int)0x20000000), } + /// + /// Not used directly. + /// + public enum AttributeType : int + { + /// + /// Original was GL_FLOAT_VEC2 = 0x8B50 + /// + FloatVec2 = ((int)0x8B50), + /// + /// Original was GL_FLOAT_VEC2_ARB = 0x8B50 + /// + FloatVec2Arb = ((int)0x8B50), + /// + /// Original was GL_FLOAT_VEC3 = 0x8B51 + /// + FloatVec3 = ((int)0x8B51), + /// + /// Original was GL_FLOAT_VEC3_ARB = 0x8B51 + /// + FloatVec3Arb = ((int)0x8B51), + /// + /// Original was GL_FLOAT_VEC4 = 0x8B52 + /// + FloatVec4 = ((int)0x8B52), + /// + /// Original was GL_FLOAT_VEC4_ARB = 0x8B52 + /// + FloatVec4Arb = ((int)0x8B52), + /// + /// Original was GL_INT_VEC2 = 0x8B53 + /// + IntVec2 = ((int)0x8B53), + /// + /// Original was GL_INT_VEC2_ARB = 0x8B53 + /// + IntVec2Arb = ((int)0x8B53), + /// + /// Original was GL_INT_VEC3 = 0x8B54 + /// + IntVec3 = ((int)0x8B54), + /// + /// Original was GL_INT_VEC3_ARB = 0x8B54 + /// + IntVec3Arb = ((int)0x8B54), + /// + /// Original was GL_INT_VEC4 = 0x8B55 + /// + IntVec4 = ((int)0x8B55), + /// + /// Original was GL_INT_VEC4_ARB = 0x8B55 + /// + IntVec4Arb = ((int)0x8B55), + /// + /// Original was GL_BOOL = 0x8B56 + /// + Bool = ((int)0x8B56), + /// + /// Original was GL_BOOL_ARB = 0x8B56 + /// + BoolArb = ((int)0x8B56), + /// + /// Original was GL_BOOL_VEC2 = 0x8B57 + /// + BoolVec2 = ((int)0x8B57), + /// + /// Original was GL_BOOL_VEC2_ARB = 0x8B57 + /// + BoolVec2Arb = ((int)0x8B57), + /// + /// Original was GL_BOOL_VEC3 = 0x8B58 + /// + BoolVec3 = ((int)0x8B58), + /// + /// Original was GL_BOOL_VEC3_ARB = 0x8B58 + /// + BoolVec3Arb = ((int)0x8B58), + /// + /// Original was GL_BOOL_VEC4 = 0x8B59 + /// + BoolVec4 = ((int)0x8B59), + /// + /// Original was GL_BOOL_VEC4_ARB = 0x8B59 + /// + BoolVec4Arb = ((int)0x8B59), + /// + /// Original was GL_FLOAT_MAT2 = 0x8B5A + /// + FloatMat2 = ((int)0x8B5A), + /// + /// Original was GL_FLOAT_MAT2_ARB = 0x8B5A + /// + FloatMat2Arb = ((int)0x8B5A), + /// + /// Original was GL_FLOAT_MAT3 = 0x8B5B + /// + FloatMat3 = ((int)0x8B5B), + /// + /// Original was GL_FLOAT_MAT3_ARB = 0x8B5B + /// + FloatMat3Arb = ((int)0x8B5B), + /// + /// Original was GL_FLOAT_MAT4 = 0x8B5C + /// + FloatMat4 = ((int)0x8B5C), + /// + /// Original was GL_FLOAT_MAT4_ARB = 0x8B5C + /// + FloatMat4Arb = ((int)0x8B5C), + /// + /// Original was GL_SAMPLER_1D = 0x8B5D + /// + Sampler1D = ((int)0x8B5D), + /// + /// Original was GL_SAMPLER_1D_ARB = 0x8B5D + /// + Sampler1DArb = ((int)0x8B5D), + /// + /// Original was GL_SAMPLER_2D = 0x8B5E + /// + Sampler2D = ((int)0x8B5E), + /// + /// Original was GL_SAMPLER_2D_ARB = 0x8B5E + /// + Sampler2DArb = ((int)0x8B5E), + /// + /// Original was GL_SAMPLER_3D = 0x8B5F + /// + Sampler3D = ((int)0x8B5F), + /// + /// Original was GL_SAMPLER_3D_ARB = 0x8B5F + /// + Sampler3DArb = ((int)0x8B5F), + /// + /// Original was GL_SAMPLER_3D_OES = 0x8B5F + /// + Sampler3DOes = ((int)0x8B5F), + /// + /// Original was GL_SAMPLER_CUBE = 0x8B60 + /// + SamplerCube = ((int)0x8B60), + /// + /// Original was GL_SAMPLER_CUBE_ARB = 0x8B60 + /// + SamplerCubeArb = ((int)0x8B60), + /// + /// Original was GL_SAMPLER_1D_SHADOW = 0x8B61 + /// + Sampler1DShadow = ((int)0x8B61), + /// + /// Original was GL_SAMPLER_1D_SHADOW_ARB = 0x8B61 + /// + Sampler1DShadowArb = ((int)0x8B61), + /// + /// Original was GL_SAMPLER_2D_SHADOW = 0x8B62 + /// + Sampler2DShadow = ((int)0x8B62), + /// + /// Original was GL_SAMPLER_2D_SHADOW_ARB = 0x8B62 + /// + Sampler2DShadowArb = ((int)0x8B62), + /// + /// Original was GL_SAMPLER_2D_SHADOW_EXT = 0x8B62 + /// + Sampler2DShadowExt = ((int)0x8B62), + /// + /// Original was GL_SAMPLER_2D_RECT = 0x8B63 + /// + Sampler2DRect = ((int)0x8B63), + /// + /// Original was GL_SAMPLER_2D_RECT_ARB = 0x8B63 + /// + Sampler2DRectArb = ((int)0x8B63), + /// + /// Original was GL_SAMPLER_2D_RECT_SHADOW = 0x8B64 + /// + Sampler2DRectShadow = ((int)0x8B64), + /// + /// Original was GL_SAMPLER_2D_RECT_SHADOW_ARB = 0x8B64 + /// + Sampler2DRectShadowArb = ((int)0x8B64), + /// + /// Original was GL_FLOAT_MAT2x3 = 0x8B65 + /// + FloatMat2x3 = ((int)0x8B65), + /// + /// Original was GL_FLOAT_MAT2x3_NV = 0x8B65 + /// + FloatMat2x3Nv = ((int)0x8B65), + /// + /// Original was GL_FLOAT_MAT2x4 = 0x8B66 + /// + FloatMat2x4 = ((int)0x8B66), + /// + /// Original was GL_FLOAT_MAT2x4_NV = 0x8B66 + /// + FloatMat2x4Nv = ((int)0x8B66), + /// + /// Original was GL_FLOAT_MAT3x2 = 0x8B67 + /// + FloatMat3x2 = ((int)0x8B67), + /// + /// Original was GL_FLOAT_MAT3x2_NV = 0x8B67 + /// + FloatMat3x2Nv = ((int)0x8B67), + /// + /// Original was GL_FLOAT_MAT3x4 = 0x8B68 + /// + FloatMat3x4 = ((int)0x8B68), + /// + /// Original was GL_FLOAT_MAT3x4_NV = 0x8B68 + /// + FloatMat3x4Nv = ((int)0x8B68), + /// + /// Original was GL_FLOAT_MAT4x2 = 0x8B69 + /// + FloatMat4x2 = ((int)0x8B69), + /// + /// Original was GL_FLOAT_MAT4x2_NV = 0x8B69 + /// + FloatMat4x2Nv = ((int)0x8B69), + /// + /// Original was GL_FLOAT_MAT4x3 = 0x8B6A + /// + FloatMat4x3 = ((int)0x8B6A), + /// + /// Original was GL_FLOAT_MAT4x3_NV = 0x8B6A + /// + FloatMat4x3Nv = ((int)0x8B6A), + } + /// /// Not used directly. /// @@ -17798,6 +18772,17 @@ namespace OpenTK.Graphics.OpenGL4 { } + /// + /// Not used directly. + /// + public enum BindTransformFeedbackTarget : int + { + /// + /// Original was GL_TRANSFORM_FEEDBACK = 0x8E22 + /// + TransformFeedback = ((int)0x8E22), + } + /// /// Used in GL.Arb.BlendEquation, GL.BlendEquation and 1 other function /// @@ -17826,10 +18811,14 @@ namespace OpenTK.Graphics.OpenGL4 } /// - /// Not used directly. + /// Used in GL.Arb.BlendEquationSeparate /// public enum BlendEquationModeExt : int { + /// + /// Original was GL_FUNC_ADD = 0x8006 + /// + FuncAdd = ((int)0x8006), /// /// Original was GL_FUNC_ADD_EXT = 0x8006 /// @@ -17843,10 +18832,18 @@ namespace OpenTK.Graphics.OpenGL4 /// MaxExt = ((int)0x8008), /// + /// Original was GL_FUNC_SUBTRACT = 0x800A + /// + FuncSubtract = ((int)0x800A), + /// /// Original was GL_FUNC_SUBTRACT_EXT = 0x800A /// FuncSubtractExt = ((int)0x800A), /// + /// Original was GL_FUNC_REVERSE_SUBTRACT = 0x800B + /// + FuncReverseSubtract = ((int)0x800B), + /// /// Original was GL_FUNC_REVERSE_SUBTRACT_EXT = 0x800B /// FuncReverseSubtractExt = ((int)0x800B), @@ -17860,6 +18857,81 @@ namespace OpenTK.Graphics.OpenGL4 AlphaMaxSgix = ((int)0x8321), } + /// + /// Used in GL.Arb.BlendFunc, GL.Arb.BlendFuncSeparate and 1 other function + /// + public enum BlendingFactor : int + { + /// + /// Original was GL_ZERO = 0 + /// + Zero = ((int)0), + /// + /// Original was GL_SRC_COLOR = 0x0300 + /// + SrcColor = ((int)0x0300), + /// + /// Original was GL_ONE_MINUS_SRC_COLOR = 0x0301 + /// + OneMinusSrcColor = ((int)0x0301), + /// + /// Original was GL_SRC_ALPHA = 0x0302 + /// + SrcAlpha = ((int)0x0302), + /// + /// Original was GL_ONE_MINUS_SRC_ALPHA = 0x0303 + /// + OneMinusSrcAlpha = ((int)0x0303), + /// + /// Original was GL_DST_ALPHA = 0x0304 + /// + DstAlpha = ((int)0x0304), + /// + /// Original was GL_ONE_MINUS_DST_ALPHA = 0x0305 + /// + OneMinusDstAlpha = ((int)0x0305), + /// + /// Original was GL_DST_COLOR = 0x0306 + /// + DstColor = ((int)0x0306), + /// + /// Original was GL_ONE_MINUS_DST_COLOR = 0x0307 + /// + OneMinusDstColor = ((int)0x0307), + /// + /// Original was GL_SRC_ALPHA_SATURATE = 0x0308 + /// + SrcAlphaSaturate = ((int)0x0308), + /// + /// Original was GL_CONSTANT_COLOR = 0x8001 + /// + ConstantColor = ((int)0x8001), + /// + /// Original was GL_ONE_MINUS_CONSTANT_COLOR = 0x8002 + /// + OneMinusConstantColor = ((int)0x8002), + /// + /// Original was GL_CONSTANT_ALPHA = 0x8003 + /// + ConstantAlpha = ((int)0x8003), + /// + /// Original was GL_ONE_MINUS_CONSTANT_ALPHA = 0x8004 + /// + OneMinusConstantAlpha = ((int)0x8004), + /// + /// Original was GL_SRC1_ALPHA = 0x8589 + /// + Src1Alpha = ((int)0x8589), + /// + /// Original was GL_SRC1_COLOR = 0x88F9 + /// + Src1Color = ((int)0x88F9), + /// + /// Original was GL_ONE = 1 + /// + One = ((int)1), + } + /// /// Used in GL.BlendFunc, GL.BlendFuncSeparate /// @@ -17910,34 +18982,18 @@ namespace OpenTK.Graphics.OpenGL4 /// ConstantColor = ((int)0x8001), /// - /// Original was GL_CONSTANT_COLOR_EXT = 0x8001 - /// - ConstantColorExt = ((int)0x8001), - /// /// Original was GL_ONE_MINUS_CONSTANT_COLOR = 0x8002 /// OneMinusConstantColor = ((int)0x8002), /// - /// Original was GL_ONE_MINUS_CONSTANT_COLOR_EXT = 0x8002 - /// - OneMinusConstantColorExt = ((int)0x8002), - /// /// Original was GL_CONSTANT_ALPHA = 0x8003 /// ConstantAlpha = ((int)0x8003), /// - /// Original was GL_CONSTANT_ALPHA_EXT = 0x8003 - /// - ConstantAlphaExt = ((int)0x8003), - /// /// Original was GL_ONE_MINUS_CONSTANT_ALPHA = 0x8004 /// OneMinusConstantAlpha = ((int)0x8004), /// - /// Original was GL_ONE_MINUS_CONSTANT_ALPHA_EXT = 0x8004 - /// - OneMinusConstantAlphaExt = ((int)0x8004), - /// /// Original was GL_SRC1_ALPHA = 0x8589 /// Src1Alpha = ((int)0x8589), @@ -18009,34 +19065,18 @@ namespace OpenTK.Graphics.OpenGL4 /// ConstantColor = ((int)0x8001), /// - /// Original was GL_CONSTANT_COLOR_EXT = 0x8001 - /// - ConstantColorExt = ((int)0x8001), - /// /// Original was GL_ONE_MINUS_CONSTANT_COLOR = 0x8002 /// OneMinusConstantColor = ((int)0x8002), /// - /// Original was GL_ONE_MINUS_CONSTANT_COLOR_EXT = 0x8002 - /// - OneMinusConstantColorExt = ((int)0x8002), - /// /// Original was GL_CONSTANT_ALPHA = 0x8003 /// ConstantAlpha = ((int)0x8003), /// - /// Original was GL_CONSTANT_ALPHA_EXT = 0x8003 - /// - ConstantAlphaExt = ((int)0x8003), - /// /// Original was GL_ONE_MINUS_CONSTANT_ALPHA = 0x8004 /// OneMinusConstantAlpha = ((int)0x8004), /// - /// Original was GL_ONE_MINUS_CONSTANT_ALPHA_EXT = 0x8004 - /// - OneMinusConstantAlphaExt = ((int)0x8004), - /// /// Original was GL_SRC1_ALPHA = 0x8589 /// Src1Alpha = ((int)0x8589), @@ -18088,6 +19128,25 @@ namespace OpenTK.Graphics.OpenGL4 True = ((int)1), } + /// + /// Not used directly. + /// + public enum Buffer : int + { + /// + /// Original was GL_COLOR = 0x1800 + /// + Color = ((int)0x1800), + /// + /// Original was GL_DEPTH = 0x1801 + /// + Depth = ((int)0x1801), + /// + /// Original was GL_STENCIL = 0x1802 + /// + Stencil = ((int)0x1802), + } + /// /// Used in GL.MapBuffer, GL.MapNamedBuffer and 1 other function /// @@ -18137,33 +19196,200 @@ namespace OpenTK.Graphics.OpenGL4 /// MapReadBit = ((int)0x0001), /// + /// Original was GL_MAP_READ_BIT_EXT = 0x0001 + /// + MapReadBitExt = ((int)0x0001), + /// /// Original was GL_MAP_WRITE_BIT = 0x0002 /// MapWriteBit = ((int)0x0002), /// + /// Original was GL_MAP_WRITE_BIT_EXT = 0x0002 + /// + MapWriteBitExt = ((int)0x0002), + /// /// Original was GL_MAP_INVALIDATE_RANGE_BIT = 0x0004 /// MapInvalidateRangeBit = ((int)0x0004), /// + /// Original was GL_MAP_INVALIDATE_RANGE_BIT_EXT = 0x0004 + /// + MapInvalidateRangeBitExt = ((int)0x0004), + /// /// Original was GL_MAP_INVALIDATE_BUFFER_BIT = 0x0008 /// MapInvalidateBufferBit = ((int)0x0008), /// + /// Original was GL_MAP_INVALIDATE_BUFFER_BIT_EXT = 0x0008 + /// + MapInvalidateBufferBitExt = ((int)0x0008), + /// /// Original was GL_MAP_FLUSH_EXPLICIT_BIT = 0x0010 /// MapFlushExplicitBit = ((int)0x0010), /// + /// Original was GL_MAP_FLUSH_EXPLICIT_BIT_EXT = 0x0010 + /// + MapFlushExplicitBitExt = ((int)0x0010), + /// /// Original was GL_MAP_UNSYNCHRONIZED_BIT = 0x0020 /// MapUnsynchronizedBit = ((int)0x0020), /// + /// Original was GL_MAP_UNSYNCHRONIZED_BIT_EXT = 0x0020 + /// + MapUnsynchronizedBitExt = ((int)0x0020), + /// /// Original was GL_MAP_PERSISTENT_BIT = 0x0040 /// MapPersistentBit = ((int)0x0040), /// + /// Original was GL_MAP_PERSISTENT_BIT_EXT = 0x0040 + /// + MapPersistentBitExt = ((int)0x0040), + /// /// Original was GL_MAP_COHERENT_BIT = 0x0080 /// MapCoherentBit = ((int)0x0080), + /// + /// Original was GL_MAP_COHERENT_BIT_EXT = 0x0080 + /// + MapCoherentBitExt = ((int)0x0080), + } + + /// + /// Not used directly. + /// + public enum BufferBitQCOM : int + { + /// + /// Original was GL_COLOR_BUFFER_BIT0_QCOM = 0x00000001 + /// + ColorBufferBit0Qcom = ((int)0x00000001), + /// + /// Original was GL_COLOR_BUFFER_BIT1_QCOM = 0x00000002 + /// + ColorBufferBit1Qcom = ((int)0x00000002), + /// + /// Original was GL_COLOR_BUFFER_BIT2_QCOM = 0x00000004 + /// + ColorBufferBit2Qcom = ((int)0x00000004), + /// + /// Original was GL_COLOR_BUFFER_BIT3_QCOM = 0x00000008 + /// + ColorBufferBit3Qcom = ((int)0x00000008), + /// + /// Original was GL_COLOR_BUFFER_BIT4_QCOM = 0x00000010 + /// + ColorBufferBit4Qcom = ((int)0x00000010), + /// + /// Original was GL_COLOR_BUFFER_BIT5_QCOM = 0x00000020 + /// + ColorBufferBit5Qcom = ((int)0x00000020), + /// + /// Original was GL_COLOR_BUFFER_BIT6_QCOM = 0x00000040 + /// + ColorBufferBit6Qcom = ((int)0x00000040), + /// + /// Original was GL_COLOR_BUFFER_BIT7_QCOM = 0x00000080 + /// + ColorBufferBit7Qcom = ((int)0x00000080), + /// + /// Original was GL_DEPTH_BUFFER_BIT0_QCOM = 0x00000100 + /// + DepthBufferBit0Qcom = ((int)0x00000100), + /// + /// Original was GL_DEPTH_BUFFER_BIT1_QCOM = 0x00000200 + /// + DepthBufferBit1Qcom = ((int)0x00000200), + /// + /// Original was GL_DEPTH_BUFFER_BIT2_QCOM = 0x00000400 + /// + DepthBufferBit2Qcom = ((int)0x00000400), + /// + /// Original was GL_DEPTH_BUFFER_BIT3_QCOM = 0x00000800 + /// + DepthBufferBit3Qcom = ((int)0x00000800), + /// + /// Original was GL_DEPTH_BUFFER_BIT4_QCOM = 0x00001000 + /// + DepthBufferBit4Qcom = ((int)0x00001000), + /// + /// Original was GL_DEPTH_BUFFER_BIT5_QCOM = 0x00002000 + /// + DepthBufferBit5Qcom = ((int)0x00002000), + /// + /// Original was GL_DEPTH_BUFFER_BIT6_QCOM = 0x00004000 + /// + DepthBufferBit6Qcom = ((int)0x00004000), + /// + /// Original was GL_DEPTH_BUFFER_BIT7_QCOM = 0x00008000 + /// + DepthBufferBit7Qcom = ((int)0x00008000), + /// + /// Original was GL_STENCIL_BUFFER_BIT0_QCOM = 0x00010000 + /// + StencilBufferBit0Qcom = ((int)0x00010000), + /// + /// Original was GL_STENCIL_BUFFER_BIT1_QCOM = 0x00020000 + /// + StencilBufferBit1Qcom = ((int)0x00020000), + /// + /// Original was GL_STENCIL_BUFFER_BIT2_QCOM = 0x00040000 + /// + StencilBufferBit2Qcom = ((int)0x00040000), + /// + /// Original was GL_STENCIL_BUFFER_BIT3_QCOM = 0x00080000 + /// + StencilBufferBit3Qcom = ((int)0x00080000), + /// + /// Original was GL_STENCIL_BUFFER_BIT4_QCOM = 0x00100000 + /// + StencilBufferBit4Qcom = ((int)0x00100000), + /// + /// Original was GL_STENCIL_BUFFER_BIT5_QCOM = 0x00200000 + /// + StencilBufferBit5Qcom = ((int)0x00200000), + /// + /// Original was GL_STENCIL_BUFFER_BIT6_QCOM = 0x00400000 + /// + StencilBufferBit6Qcom = ((int)0x00400000), + /// + /// Original was GL_STENCIL_BUFFER_BIT7_QCOM = 0x00800000 + /// + StencilBufferBit7Qcom = ((int)0x00800000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT0_QCOM = 0x01000000 + /// + MultisampleBufferBit0Qcom = ((int)0x01000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT1_QCOM = 0x02000000 + /// + MultisampleBufferBit1Qcom = ((int)0x02000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT2_QCOM = 0x04000000 + /// + MultisampleBufferBit2Qcom = ((int)0x04000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT3_QCOM = 0x08000000 + /// + MultisampleBufferBit3Qcom = ((int)0x08000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT4_QCOM = 0x10000000 + /// + MultisampleBufferBit4Qcom = ((int)0x10000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT5_QCOM = 0x20000000 + /// + MultisampleBufferBit5Qcom = ((int)0x20000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT6_QCOM = 0x40000000 + /// + MultisampleBufferBit6Qcom = ((int)0x40000000), + /// + /// Original was GL_MULTISAMPLE_BUFFER_BIT7_QCOM = 0x80000000 + /// + MultisampleBufferBit7Qcom = unchecked((int)0x80000000), } /// @@ -18319,6 +19545,69 @@ namespace OpenTK.Graphics.OpenGL4 ClientStorageBit = ((int)0x0200), } + /// + /// Not used directly. + /// + public enum BufferStorageTarget : int + { + /// + /// Original was GL_ARRAY_BUFFER = 0x8892 + /// + ArrayBuffer = ((int)0x8892), + /// + /// Original was GL_ELEMENT_ARRAY_BUFFER = 0x8893 + /// + ElementArrayBuffer = ((int)0x8893), + /// + /// Original was GL_PIXEL_PACK_BUFFER = 0x88EB + /// + PixelPackBuffer = ((int)0x88EB), + /// + /// Original was GL_PIXEL_UNPACK_BUFFER = 0x88EC + /// + PixelUnpackBuffer = ((int)0x88EC), + /// + /// Original was GL_UNIFORM_BUFFER = 0x8A11 + /// + UniformBuffer = ((int)0x8A11), + /// + /// Original was GL_TEXTURE_BUFFER = 0x8C2A + /// + TextureBuffer = ((int)0x8C2A), + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER = 0x8C8E + /// + TransformFeedbackBuffer = ((int)0x8C8E), + /// + /// Original was GL_COPY_READ_BUFFER = 0x8F36 + /// + CopyReadBuffer = ((int)0x8F36), + /// + /// Original was GL_COPY_WRITE_BUFFER = 0x8F37 + /// + CopyWriteBuffer = ((int)0x8F37), + /// + /// Original was GL_DRAW_INDIRECT_BUFFER = 0x8F3F + /// + DrawIndirectBuffer = ((int)0x8F3F), + /// + /// Original was GL_SHADER_STORAGE_BUFFER = 0x90D2 + /// + ShaderStorageBuffer = ((int)0x90D2), + /// + /// Original was GL_DISPATCH_INDIRECT_BUFFER = 0x90EE + /// + DispatchIndirectBuffer = ((int)0x90EE), + /// + /// Original was GL_QUERY_BUFFER = 0x9192 + /// + QueryBuffer = ((int)0x9192), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER = 0x92C0 + /// + AtomicCounterBuffer = ((int)0x92C0), + } + /// /// Used in GL.BindBuffer, GL.BufferData and 12 other functions /// @@ -18383,7 +19672,7 @@ namespace OpenTK.Graphics.OpenGL4 } /// - /// Not used directly. + /// Used in GL.Ext.GetBooleanIndexed, GL.NV.GetBufferParameter /// public enum BufferTargetArb : int { @@ -18531,6 +19820,25 @@ namespace OpenTK.Graphics.OpenGL4 DynamicCopy = ((int)0x88EA), } + /// + /// Not used directly. + /// + public enum CheckFramebufferStatusTarget : int + { + /// + /// Original was GL_READ_FRAMEBUFFER = 0x8CA8 + /// + ReadFramebuffer = ((int)0x8CA8), + /// + /// Original was GL_DRAW_FRAMEBUFFER = 0x8CA9 + /// + DrawFramebuffer = ((int)0x8CA9), + /// + /// Original was GL_FRAMEBUFFER = 0x8D40 + /// + Framebuffer = ((int)0x8D40), + } + /// /// Used in GL.ClampColor /// @@ -18661,6 +19969,36 @@ namespace OpenTK.Graphics.OpenGL4 { } + /// + /// Not used directly. + /// + public enum ClipControlDepth : int + { + /// + /// Original was GL_NEGATIVE_ONE_TO_ONE = 0x935E + /// + NegativeOneToOne = ((int)0x935E), + /// + /// Original was GL_ZERO_TO_ONE = 0x935F + /// + ZeroToOne = ((int)0x935F), + } + + /// + /// Not used directly. + /// + public enum ClipControlOrigin : int + { + /// + /// Original was GL_LOWER_LEFT = 0x8CA1 + /// + LowerLeft = ((int)0x8CA1), + /// + /// Original was GL_UPPER_LEFT = 0x8CA2 + /// + UpperLeft = ((int)0x8CA2), + } + /// /// Used in GL.ClipControl /// @@ -18730,6 +20068,181 @@ namespace OpenTK.Graphics.OpenGL4 ClipDistance7 = ((int)0x3007), } + /// + /// Not used directly. + /// + public enum ColorBuffer : int + { + /// + /// Original was GL_NONE = 0 + /// + None = ((int)0), + /// + /// Original was GL_FRONT_LEFT = 0x0400 + /// + FrontLeft = ((int)0x0400), + /// + /// Original was GL_FRONT_RIGHT = 0x0401 + /// + FrontRight = ((int)0x0401), + /// + /// Original was GL_BACK_LEFT = 0x0402 + /// + BackLeft = ((int)0x0402), + /// + /// Original was GL_BACK_RIGHT = 0x0403 + /// + BackRight = ((int)0x0403), + /// + /// Original was GL_FRONT = 0x0404 + /// + Front = ((int)0x0404), + /// + /// Original was GL_BACK = 0x0405 + /// + Back = ((int)0x0405), + /// + /// Original was GL_LEFT = 0x0406 + /// + Left = ((int)0x0406), + /// + /// Original was GL_RIGHT = 0x0407 + /// + Right = ((int)0x0407), + /// + /// Original was GL_FRONT_AND_BACK = 0x0408 + /// + FrontAndBack = ((int)0x0408), + /// + /// Original was GL_COLOR_ATTACHMENT0 = 0x8CE0 + /// + ColorAttachment0 = ((int)0x8CE0), + /// + /// Original was GL_COLOR_ATTACHMENT1 = 0x8CE1 + /// + ColorAttachment1 = ((int)0x8CE1), + /// + /// Original was GL_COLOR_ATTACHMENT2 = 0x8CE2 + /// + ColorAttachment2 = ((int)0x8CE2), + /// + /// Original was GL_COLOR_ATTACHMENT3 = 0x8CE3 + /// + ColorAttachment3 = ((int)0x8CE3), + /// + /// Original was GL_COLOR_ATTACHMENT4 = 0x8CE4 + /// + ColorAttachment4 = ((int)0x8CE4), + /// + /// Original was GL_COLOR_ATTACHMENT5 = 0x8CE5 + /// + ColorAttachment5 = ((int)0x8CE5), + /// + /// Original was GL_COLOR_ATTACHMENT6 = 0x8CE6 + /// + ColorAttachment6 = ((int)0x8CE6), + /// + /// Original was GL_COLOR_ATTACHMENT7 = 0x8CE7 + /// + ColorAttachment7 = ((int)0x8CE7), + /// + /// Original was GL_COLOR_ATTACHMENT8 = 0x8CE8 + /// + ColorAttachment8 = ((int)0x8CE8), + /// + /// Original was GL_COLOR_ATTACHMENT9 = 0x8CE9 + /// + ColorAttachment9 = ((int)0x8CE9), + /// + /// Original was GL_COLOR_ATTACHMENT10 = 0x8CEA + /// + ColorAttachment10 = ((int)0x8CEA), + /// + /// Original was GL_COLOR_ATTACHMENT11 = 0x8CEB + /// + ColorAttachment11 = ((int)0x8CEB), + /// + /// Original was GL_COLOR_ATTACHMENT12 = 0x8CEC + /// + ColorAttachment12 = ((int)0x8CEC), + /// + /// Original was GL_COLOR_ATTACHMENT13 = 0x8CED + /// + ColorAttachment13 = ((int)0x8CED), + /// + /// Original was GL_COLOR_ATTACHMENT14 = 0x8CEE + /// + ColorAttachment14 = ((int)0x8CEE), + /// + /// Original was GL_COLOR_ATTACHMENT15 = 0x8CEF + /// + ColorAttachment15 = ((int)0x8CEF), + /// + /// Original was GL_COLOR_ATTACHMENT16 = 0x8CF0 + /// + ColorAttachment16 = ((int)0x8CF0), + /// + /// Original was GL_COLOR_ATTACHMENT17 = 0x8CF1 + /// + ColorAttachment17 = ((int)0x8CF1), + /// + /// Original was GL_COLOR_ATTACHMENT18 = 0x8CF2 + /// + ColorAttachment18 = ((int)0x8CF2), + /// + /// Original was GL_COLOR_ATTACHMENT19 = 0x8CF3 + /// + ColorAttachment19 = ((int)0x8CF3), + /// + /// Original was GL_COLOR_ATTACHMENT20 = 0x8CF4 + /// + ColorAttachment20 = ((int)0x8CF4), + /// + /// Original was GL_COLOR_ATTACHMENT21 = 0x8CF5 + /// + ColorAttachment21 = ((int)0x8CF5), + /// + /// Original was GL_COLOR_ATTACHMENT22 = 0x8CF6 + /// + ColorAttachment22 = ((int)0x8CF6), + /// + /// Original was GL_COLOR_ATTACHMENT23 = 0x8CF7 + /// + ColorAttachment23 = ((int)0x8CF7), + /// + /// Original was GL_COLOR_ATTACHMENT24 = 0x8CF8 + /// + ColorAttachment24 = ((int)0x8CF8), + /// + /// Original was GL_COLOR_ATTACHMENT25 = 0x8CF9 + /// + ColorAttachment25 = ((int)0x8CF9), + /// + /// Original was GL_COLOR_ATTACHMENT26 = 0x8CFA + /// + ColorAttachment26 = ((int)0x8CFA), + /// + /// Original was GL_COLOR_ATTACHMENT27 = 0x8CFB + /// + ColorAttachment27 = ((int)0x8CFB), + /// + /// Original was GL_COLOR_ATTACHMENT28 = 0x8CFC + /// + ColorAttachment28 = ((int)0x8CFC), + /// + /// Original was GL_COLOR_ATTACHMENT29 = 0x8CFD + /// + ColorAttachment29 = ((int)0x8CFD), + /// + /// Original was GL_COLOR_ATTACHMENT30 = 0x8CFE + /// + ColorAttachment30 = ((int)0x8CFE), + /// + /// Original was GL_COLOR_ATTACHMENT31 = 0x8CFF + /// + ColorAttachment31 = ((int)0x8CFF), + } + /// /// Not used directly. /// @@ -18757,7 +20270,7 @@ namespace OpenTK.Graphics.OpenGL4 } /// - /// Used in GL.Ext.VertexArrayColorOffset, GL.Ext.VertexArraySecondaryColorOffset + /// Used in GL.Ext.VertexArrayColorOffset, GL.Ext.VertexArraySecondaryColorOffset and 1 other function /// public enum ColorPointerType : int { @@ -18808,7 +20321,7 @@ namespace OpenTK.Graphics.OpenGL4 } /// - /// Used in GL.ColorTableParameter + /// Not used directly. /// public enum ColorTableParameterPName : int { @@ -18823,7 +20336,7 @@ namespace OpenTK.Graphics.OpenGL4 } /// - /// Not used directly. + /// Used in GL.ColorTableParameter /// public enum ColorTableParameterPNameSgi : int { @@ -18846,7 +20359,7 @@ namespace OpenTK.Graphics.OpenGL4 } /// - /// Used in GL.ColorSubTable, GL.ColorTable and 5 other functions + /// Used in GL.Arb.GetnColorTable, GL.ColorSubTable and 7 other functions /// public enum ColorTableTarget : int { @@ -18997,10 +20510,22 @@ namespace OpenTK.Graphics.OpenGL4 /// ContextFlagDebugBitKhr = ((int)0x00000002), /// + /// Original was GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT = 0x00000004 + /// + ContextFlagRobustAccessBit = ((int)0x00000004), + /// /// Original was GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT_ARB = 0x00000004 /// ContextFlagRobustAccessBitArb = ((int)0x00000004), /// + /// Original was GL_CONTEXT_FLAG_NO_ERROR_BIT = 0x00000008 + /// + ContextFlagNoErrorBit = ((int)0x00000008), + /// + /// Original was GL_CONTEXT_FLAG_NO_ERROR_BIT_KHR = 0x00000008 + /// + ContextFlagNoErrorBitKhr = ((int)0x00000008), + /// /// Original was GL_CONTEXT_FLAG_PROTECTED_CONTENT_BIT_EXT = 0x00000010 /// ContextFlagProtectedContentBitExt = ((int)0x00000010), @@ -19038,7 +20563,7 @@ namespace OpenTK.Graphics.OpenGL4 } /// - /// Used in GL.ConvolutionParameter + /// Not used directly. /// public enum ConvolutionParameter : int { @@ -19057,7 +20582,7 @@ namespace OpenTK.Graphics.OpenGL4 } /// - /// Not used directly. + /// Used in GL.ConvolutionParameter, GL.GetConvolutionParameter /// public enum ConvolutionParameterExt : int { @@ -19107,7 +20632,7 @@ namespace OpenTK.Graphics.OpenGL4 } /// - /// Used in GL.ConvolutionFilter1D, GL.ConvolutionFilter2D and 5 other functions + /// Used in GL.Arb.GetnConvolutionFilter, GL.ConvolutionFilter1D and 7 other functions /// public enum ConvolutionTarget : int { @@ -19148,6 +20673,69 @@ namespace OpenTK.Graphics.OpenGL4 Convolution2DExt = ((int)0x8011), } + /// + /// Not used directly. + /// + public enum CopyBufferSubDataTarget : int + { + /// + /// Original was GL_ARRAY_BUFFER = 0x8892 + /// + ArrayBuffer = ((int)0x8892), + /// + /// Original was GL_ELEMENT_ARRAY_BUFFER = 0x8893 + /// + ElementArrayBuffer = ((int)0x8893), + /// + /// Original was GL_PIXEL_PACK_BUFFER = 0x88EB + /// + PixelPackBuffer = ((int)0x88EB), + /// + /// Original was GL_PIXEL_UNPACK_BUFFER = 0x88EC + /// + PixelUnpackBuffer = ((int)0x88EC), + /// + /// Original was GL_UNIFORM_BUFFER = 0x8A11 + /// + UniformBuffer = ((int)0x8A11), + /// + /// Original was GL_TEXTURE_BUFFER = 0x8C2A + /// + TextureBuffer = ((int)0x8C2A), + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER = 0x8C8E + /// + TransformFeedbackBuffer = ((int)0x8C8E), + /// + /// Original was GL_COPY_READ_BUFFER = 0x8F36 + /// + CopyReadBuffer = ((int)0x8F36), + /// + /// Original was GL_COPY_WRITE_BUFFER = 0x8F37 + /// + CopyWriteBuffer = ((int)0x8F37), + /// + /// Original was GL_DRAW_INDIRECT_BUFFER = 0x8F3F + /// + DrawIndirectBuffer = ((int)0x8F3F), + /// + /// Original was GL_SHADER_STORAGE_BUFFER = 0x90D2 + /// + ShaderStorageBuffer = ((int)0x90D2), + /// + /// Original was GL_DISPATCH_INDIRECT_BUFFER = 0x90EE + /// + DispatchIndirectBuffer = ((int)0x90EE), + /// + /// Original was GL_QUERY_BUFFER = 0x9192 + /// + QueryBuffer = ((int)0x9192), + /// + /// Original was GL_ATOMIC_COUNTER_BUFFER = 0x92C0 + /// + AtomicCounterBuffer = ((int)0x92C0), + } + /// /// Used in GL.CullFace /// @@ -19175,10 +20763,14 @@ namespace OpenTK.Graphics.OpenGL4 } /// - /// Used in GL.DebugMessageInsert, GL.GetDebugMessageLog + /// Used in GL.Arb.DebugMessageControl, GL.Arb.DebugMessageInsert and 6 other functions /// public enum DebugSeverity : int { + /// + /// Original was GL_DONT_CARE = 0x1100 + /// + DontCare = ((int)0x1100), /// /// Original was GL_DEBUG_SEVERITY_NOTIFICATION = 0x826B /// @@ -19225,10 +20817,14 @@ namespace OpenTK.Graphics.OpenGL4 } /// - /// Used in GL.GetDebugMessageLog + /// Used in GL.Arb.DebugMessageControl, GL.Arb.DebugMessageInsert and 6 other functions /// public enum DebugSource : int { + /// + /// Original was GL_DONT_CARE = 0x1100 + /// + DontCare = ((int)0x1100), /// /// Original was GL_DEBUG_SOURCE_API = 0x8246 /// @@ -19306,10 +20902,14 @@ namespace OpenTK.Graphics.OpenGL4 } /// - /// Used in GL.DebugMessageInsert, GL.GetDebugMessageLog + /// Used in GL.Arb.DebugMessageControl, GL.Arb.DebugMessageInsert and 6 other functions /// public enum DebugType : int { + /// + /// Original was GL_DONT_CARE = 0x1100 + /// + DontCare = ((int)0x1100), /// /// Original was GL_DEBUG_TYPE_ERROR = 0x824C /// @@ -19657,7 +21257,7 @@ namespace OpenTK.Graphics.OpenGL4 } /// - /// Used in GL.Arb.DrawElementsInstanced, GL.DrawElements and 11 other functions + /// Used in GL.Arb.DrawElementsInstanced, GL.Arb.MultiDrawElementsIndirectCount and 15 other functions /// public enum DrawElementsType : int { @@ -20525,6 +22125,33 @@ namespace OpenTK.Graphics.OpenGL4 FogCoordSrc = ((int)0x8450), } + /// + /// Not used directly. + /// + public enum FogPName : int + { + /// + /// Original was GL_FOG_INDEX = 0x0B61 + /// + FogIndex = ((int)0x0B61), + /// + /// Original was GL_FOG_DENSITY = 0x0B62 + /// + FogDensity = ((int)0x0B62), + /// + /// Original was GL_FOG_START = 0x0B63 + /// + FogStart = ((int)0x0B63), + /// + /// Original was GL_FOG_END = 0x0B64 + /// + FogEnd = ((int)0x0B64), + /// + /// Original was GL_FOG_MODE = 0x0B65 + /// + FogMode = ((int)0x0B65), + } + /// /// Used in GL.Ext.VertexArrayFogCoordOffset /// @@ -20605,6 +22232,57 @@ namespace OpenTK.Graphics.OpenGL4 FragmentLightModelNormalInterpolationSgix = ((int)0x840B), } + /// + /// Not used directly. + /// + public enum FragmentOpAti : int + { + /// + /// Original was GL_MOV_ATI = 0x8961 + /// + MovAti = ((int)0x8961), + /// + /// Original was GL_ADD_ATI = 0x8963 + /// + AddAti = ((int)0x8963), + /// + /// Original was GL_MUL_ATI = 0x8964 + /// + MulAti = ((int)0x8964), + /// + /// Original was GL_SUB_ATI = 0x8965 + /// + SubAti = ((int)0x8965), + /// + /// Original was GL_DOT3_ATI = 0x8966 + /// + Dot3Ati = ((int)0x8966), + /// + /// Original was GL_DOT4_ATI = 0x8967 + /// + Dot4Ati = ((int)0x8967), + /// + /// Original was GL_MAD_ATI = 0x8968 + /// + MadAti = ((int)0x8968), + /// + /// Original was GL_LERP_ATI = 0x8969 + /// + LerpAti = ((int)0x8969), + /// + /// Original was GL_CND_ATI = 0x896A + /// + CndAti = ((int)0x896A), + /// + /// Original was GL_CND0_ATI = 0x896B + /// + Cnd0Ati = ((int)0x896B), + /// + /// Original was GL_DOT2_ADD_ATI = 0x896C + /// + Dot2AddAti = ((int)0x896C), + } + /// /// Used in GL.Arb.FramebufferTexture, GL.Arb.FramebufferTextureFace and 25 other functions /// @@ -20659,6 +22337,18 @@ namespace OpenTK.Graphics.OpenGL4 /// DepthStencilAttachment = ((int)0x821A), /// + /// Original was GL_MAX_COLOR_ATTACHMENTS = 0x8CDF + /// + MaxColorAttachments = ((int)0x8CDF), + /// + /// Original was GL_MAX_COLOR_ATTACHMENTS_EXT = 0x8CDF + /// + MaxColorAttachmentsExt = ((int)0x8CDF), + /// + /// Original was GL_MAX_COLOR_ATTACHMENTS_NV = 0x8CDF + /// + MaxColorAttachmentsNv = ((int)0x8CDF), + /// /// Original was GL_COLOR_ATTACHMENT0 = 0x8CE0 /// ColorAttachment0 = ((int)0x8CE0), @@ -20667,6 +22357,14 @@ namespace OpenTK.Graphics.OpenGL4 /// ColorAttachment0Ext = ((int)0x8CE0), /// + /// Original was GL_COLOR_ATTACHMENT0_NV = 0x8CE0 + /// + ColorAttachment0Nv = ((int)0x8CE0), + /// + /// Original was GL_COLOR_ATTACHMENT0_OES = 0x8CE0 + /// + ColorAttachment0Oes = ((int)0x8CE0), + /// /// Original was GL_COLOR_ATTACHMENT1 = 0x8CE1 /// ColorAttachment1 = ((int)0x8CE1), @@ -20675,6 +22373,10 @@ namespace OpenTK.Graphics.OpenGL4 /// ColorAttachment1Ext = ((int)0x8CE1), /// + /// Original was GL_COLOR_ATTACHMENT1_NV = 0x8CE1 + /// + ColorAttachment1Nv = ((int)0x8CE1), + /// /// Original was GL_COLOR_ATTACHMENT2 = 0x8CE2 /// ColorAttachment2 = ((int)0x8CE2), @@ -20683,6 +22385,10 @@ namespace OpenTK.Graphics.OpenGL4 /// ColorAttachment2Ext = ((int)0x8CE2), /// + /// Original was GL_COLOR_ATTACHMENT2_NV = 0x8CE2 + /// + ColorAttachment2Nv = ((int)0x8CE2), + /// /// Original was GL_COLOR_ATTACHMENT3 = 0x8CE3 /// ColorAttachment3 = ((int)0x8CE3), @@ -20691,6 +22397,10 @@ namespace OpenTK.Graphics.OpenGL4 /// ColorAttachment3Ext = ((int)0x8CE3), /// + /// Original was GL_COLOR_ATTACHMENT3_NV = 0x8CE3 + /// + ColorAttachment3Nv = ((int)0x8CE3), + /// /// Original was GL_COLOR_ATTACHMENT4 = 0x8CE4 /// ColorAttachment4 = ((int)0x8CE4), @@ -20699,6 +22409,10 @@ namespace OpenTK.Graphics.OpenGL4 /// ColorAttachment4Ext = ((int)0x8CE4), /// + /// Original was GL_COLOR_ATTACHMENT4_NV = 0x8CE4 + /// + ColorAttachment4Nv = ((int)0x8CE4), + /// /// Original was GL_COLOR_ATTACHMENT5 = 0x8CE5 /// ColorAttachment5 = ((int)0x8CE5), @@ -20707,6 +22421,10 @@ namespace OpenTK.Graphics.OpenGL4 /// ColorAttachment5Ext = ((int)0x8CE5), /// + /// Original was GL_COLOR_ATTACHMENT5_NV = 0x8CE5 + /// + ColorAttachment5Nv = ((int)0x8CE5), + /// /// Original was GL_COLOR_ATTACHMENT6 = 0x8CE6 /// ColorAttachment6 = ((int)0x8CE6), @@ -20715,6 +22433,10 @@ namespace OpenTK.Graphics.OpenGL4 /// ColorAttachment6Ext = ((int)0x8CE6), /// + /// Original was GL_COLOR_ATTACHMENT6_NV = 0x8CE6 + /// + ColorAttachment6Nv = ((int)0x8CE6), + /// /// Original was GL_COLOR_ATTACHMENT7 = 0x8CE7 /// ColorAttachment7 = ((int)0x8CE7), @@ -20723,6 +22445,10 @@ namespace OpenTK.Graphics.OpenGL4 /// ColorAttachment7Ext = ((int)0x8CE7), /// + /// Original was GL_COLOR_ATTACHMENT7_NV = 0x8CE7 + /// + ColorAttachment7Nv = ((int)0x8CE7), + /// /// Original was GL_COLOR_ATTACHMENT8 = 0x8CE8 /// ColorAttachment8 = ((int)0x8CE8), @@ -20731,6 +22457,10 @@ namespace OpenTK.Graphics.OpenGL4 /// ColorAttachment8Ext = ((int)0x8CE8), /// + /// Original was GL_COLOR_ATTACHMENT8_NV = 0x8CE8 + /// + ColorAttachment8Nv = ((int)0x8CE8), + /// /// Original was GL_COLOR_ATTACHMENT9 = 0x8CE9 /// ColorAttachment9 = ((int)0x8CE9), @@ -20739,6 +22469,10 @@ namespace OpenTK.Graphics.OpenGL4 /// ColorAttachment9Ext = ((int)0x8CE9), /// + /// Original was GL_COLOR_ATTACHMENT9_NV = 0x8CE9 + /// + ColorAttachment9Nv = ((int)0x8CE9), + /// /// Original was GL_COLOR_ATTACHMENT10 = 0x8CEA /// ColorAttachment10 = ((int)0x8CEA), @@ -20747,6 +22481,10 @@ namespace OpenTK.Graphics.OpenGL4 /// ColorAttachment10Ext = ((int)0x8CEA), /// + /// Original was GL_COLOR_ATTACHMENT10_NV = 0x8CEA + /// + ColorAttachment10Nv = ((int)0x8CEA), + /// /// Original was GL_COLOR_ATTACHMENT11 = 0x8CEB /// ColorAttachment11 = ((int)0x8CEB), @@ -20755,6 +22493,10 @@ namespace OpenTK.Graphics.OpenGL4 /// ColorAttachment11Ext = ((int)0x8CEB), /// + /// Original was GL_COLOR_ATTACHMENT11_NV = 0x8CEB + /// + ColorAttachment11Nv = ((int)0x8CEB), + /// /// Original was GL_COLOR_ATTACHMENT12 = 0x8CEC /// ColorAttachment12 = ((int)0x8CEC), @@ -20763,6 +22505,10 @@ namespace OpenTK.Graphics.OpenGL4 /// ColorAttachment12Ext = ((int)0x8CEC), /// + /// Original was GL_COLOR_ATTACHMENT12_NV = 0x8CEC + /// + ColorAttachment12Nv = ((int)0x8CEC), + /// /// Original was GL_COLOR_ATTACHMENT13 = 0x8CED /// ColorAttachment13 = ((int)0x8CED), @@ -20771,6 +22517,10 @@ namespace OpenTK.Graphics.OpenGL4 /// ColorAttachment13Ext = ((int)0x8CED), /// + /// Original was GL_COLOR_ATTACHMENT13_NV = 0x8CED + /// + ColorAttachment13Nv = ((int)0x8CED), + /// /// Original was GL_COLOR_ATTACHMENT14 = 0x8CEE /// ColorAttachment14 = ((int)0x8CEE), @@ -20779,6 +22529,10 @@ namespace OpenTK.Graphics.OpenGL4 /// ColorAttachment14Ext = ((int)0x8CEE), /// + /// Original was GL_COLOR_ATTACHMENT14_NV = 0x8CEE + /// + ColorAttachment14Nv = ((int)0x8CEE), + /// /// Original was GL_COLOR_ATTACHMENT15 = 0x8CEF /// ColorAttachment15 = ((int)0x8CEF), @@ -20787,6 +22541,74 @@ namespace OpenTK.Graphics.OpenGL4 /// ColorAttachment15Ext = ((int)0x8CEF), /// + /// Original was GL_COLOR_ATTACHMENT15_NV = 0x8CEF + /// + ColorAttachment15Nv = ((int)0x8CEF), + /// + /// Original was GL_COLOR_ATTACHMENT16 = 0x8CF0 + /// + ColorAttachment16 = ((int)0x8CF0), + /// + /// Original was GL_COLOR_ATTACHMENT17 = 0x8CF1 + /// + ColorAttachment17 = ((int)0x8CF1), + /// + /// Original was GL_COLOR_ATTACHMENT18 = 0x8CF2 + /// + ColorAttachment18 = ((int)0x8CF2), + /// + /// Original was GL_COLOR_ATTACHMENT19 = 0x8CF3 + /// + ColorAttachment19 = ((int)0x8CF3), + /// + /// Original was GL_COLOR_ATTACHMENT20 = 0x8CF4 + /// + ColorAttachment20 = ((int)0x8CF4), + /// + /// Original was GL_COLOR_ATTACHMENT21 = 0x8CF5 + /// + ColorAttachment21 = ((int)0x8CF5), + /// + /// Original was GL_COLOR_ATTACHMENT22 = 0x8CF6 + /// + ColorAttachment22 = ((int)0x8CF6), + /// + /// Original was GL_COLOR_ATTACHMENT23 = 0x8CF7 + /// + ColorAttachment23 = ((int)0x8CF7), + /// + /// Original was GL_COLOR_ATTACHMENT24 = 0x8CF8 + /// + ColorAttachment24 = ((int)0x8CF8), + /// + /// Original was GL_COLOR_ATTACHMENT25 = 0x8CF9 + /// + ColorAttachment25 = ((int)0x8CF9), + /// + /// Original was GL_COLOR_ATTACHMENT26 = 0x8CFA + /// + ColorAttachment26 = ((int)0x8CFA), + /// + /// Original was GL_COLOR_ATTACHMENT27 = 0x8CFB + /// + ColorAttachment27 = ((int)0x8CFB), + /// + /// Original was GL_COLOR_ATTACHMENT28 = 0x8CFC + /// + ColorAttachment28 = ((int)0x8CFC), + /// + /// Original was GL_COLOR_ATTACHMENT29 = 0x8CFD + /// + ColorAttachment29 = ((int)0x8CFD), + /// + /// Original was GL_COLOR_ATTACHMENT30 = 0x8CFE + /// + ColorAttachment30 = ((int)0x8CFE), + /// + /// Original was GL_COLOR_ATTACHMENT31 = 0x8CFF + /// + ColorAttachment31 = ((int)0x8CFF), + /// /// Original was GL_DEPTH_ATTACHMENT = 0x8D00 /// DepthAttachment = ((int)0x8D00), @@ -20795,6 +22617,10 @@ namespace OpenTK.Graphics.OpenGL4 /// DepthAttachmentExt = ((int)0x8D00), /// + /// Original was GL_DEPTH_ATTACHMENT_OES = 0x8D00 + /// + DepthAttachmentOes = ((int)0x8D00), + /// /// Original was GL_STENCIL_ATTACHMENT = 0x8D20 /// StencilAttachment = ((int)0x8D20), @@ -20850,6 +22676,65 @@ namespace OpenTK.Graphics.OpenGL4 Renderbuffer = ((int)0x8D41), } + /// + /// Used in GL.Ext.GetNamedFramebufferAttachmentParameter + /// + public enum FramebufferAttachmentParameterName : int + { + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING = 0x8210 + /// + FramebufferAttachmentColorEncoding = ((int)0x8210), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE = 0x8211 + /// + FramebufferAttachmentComponentType = ((int)0x8211), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_RED_SIZE = 0x8212 + /// + FramebufferAttachmentRedSize = ((int)0x8212), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_GREEN_SIZE = 0x8213 + /// + FramebufferAttachmentGreenSize = ((int)0x8213), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_BLUE_SIZE = 0x8214 + /// + FramebufferAttachmentBlueSize = ((int)0x8214), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE = 0x8215 + /// + FramebufferAttachmentAlphaSize = ((int)0x8215), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE = 0x8216 + /// + FramebufferAttachmentDepthSize = ((int)0x8216), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE = 0x8217 + /// + FramebufferAttachmentStencilSize = ((int)0x8217), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME = 0x8CD1 + /// + FramebufferAttachmentObjectName = ((int)0x8CD1), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL = 0x8CD2 + /// + FramebufferAttachmentTextureLevel = ((int)0x8CD2), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE = 0x8CD3 + /// + FramebufferAttachmentTextureCubeMapFace = ((int)0x8CD3), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER = 0x8CD4 + /// + FramebufferAttachmentTextureLayer = ((int)0x8CD4), + /// + /// Original was GL_FRAMEBUFFER_ATTACHMENT_LAYERED = 0x8DA7 + /// + FramebufferAttachmentLayered = ((int)0x8DA7), + } + /// /// Used in GL.FramebufferParameter, GL.GetFramebufferParameter and 3 other functions /// @@ -21048,10 +22933,73 @@ namespace OpenTK.Graphics.OpenGL4 /// Original was GL_FRAMEBUFFER_ATTACHMENT_LAYERED = 0x8DA7 /// FramebufferAttachmentLayered = ((int)0x8DA7), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_WIDTH = 0x9310 + /// + FramebufferDefaultWidth = ((int)0x9310), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_HEIGHT = 0x9311 + /// + FramebufferDefaultHeight = ((int)0x9311), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_LAYERS = 0x9312 + /// + FramebufferDefaultLayers = ((int)0x9312), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_SAMPLES = 0x9313 + /// + FramebufferDefaultSamples = ((int)0x9313), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_FIXED_SAMPLE_LOCATIONS = 0x9314 + /// + FramebufferDefaultFixedSampleLocations = ((int)0x9314), } /// - /// Used in GL.Arb.FramebufferTexture, GL.Arb.FramebufferTextureFace and 17 other functions + /// Not used directly. + /// + public enum FramebufferStatus : int + { + /// + /// Original was GL_FRAMEBUFFER_UNDEFINED = 0x8219 + /// + FramebufferUndefined = ((int)0x8219), + /// + /// Original was GL_FRAMEBUFFER_COMPLETE = 0x8CD5 + /// + FramebufferComplete = ((int)0x8CD5), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT = 0x8CD6 + /// + FramebufferIncompleteAttachment = ((int)0x8CD6), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT = 0x8CD7 + /// + FramebufferIncompleteMissingAttachment = ((int)0x8CD7), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER = 0x8CDB + /// + FramebufferIncompleteDrawBuffer = ((int)0x8CDB), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER = 0x8CDC + /// + FramebufferIncompleteReadBuffer = ((int)0x8CDC), + /// + /// Original was GL_FRAMEBUFFER_UNSUPPORTED = 0x8CDD + /// + FramebufferUnsupported = ((int)0x8CDD), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE = 0x8D56 + /// + FramebufferIncompleteMultisample = ((int)0x8D56), + /// + /// Original was GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS = 0x8DA8 + /// + FramebufferIncompleteLayerTargets = ((int)0x8DA8), + } + + /// + /// Used in GL.Arb.FramebufferSampleLocations, GL.Arb.FramebufferTexture and 19 other functions /// public enum FramebufferTarget : int { @@ -21132,7 +23080,7 @@ namespace OpenTK.Graphics.OpenGL4 } /// - /// Used in GL.GetColorTableParameter + /// Not used directly. /// public enum GetColorTableParameterPName : int { @@ -21179,47 +23127,87 @@ namespace OpenTK.Graphics.OpenGL4 } /// - /// Not used directly. + /// Used in GL.GetColorTableParameter /// public enum GetColorTableParameterPNameSgi : int { + /// + /// Original was GL_COLOR_TABLE_SCALE = 0x80D6 + /// + ColorTableScale = ((int)0x80D6), /// /// Original was GL_COLOR_TABLE_SCALE_SGI = 0x80D6 /// ColorTableScaleSgi = ((int)0x80D6), /// + /// Original was GL_COLOR_TABLE_BIAS = 0x80D7 + /// + ColorTableBias = ((int)0x80D7), + /// /// Original was GL_COLOR_TABLE_BIAS_SGI = 0x80D7 /// ColorTableBiasSgi = ((int)0x80D7), /// + /// Original was GL_COLOR_TABLE_FORMAT = 0x80D8 + /// + ColorTableFormat = ((int)0x80D8), + /// /// Original was GL_COLOR_TABLE_FORMAT_SGI = 0x80D8 /// ColorTableFormatSgi = ((int)0x80D8), /// + /// Original was GL_COLOR_TABLE_WIDTH = 0x80D9 + /// + ColorTableWidth = ((int)0x80D9), + /// /// Original was GL_COLOR_TABLE_WIDTH_SGI = 0x80D9 /// ColorTableWidthSgi = ((int)0x80D9), /// + /// Original was GL_COLOR_TABLE_RED_SIZE = 0x80DA + /// + ColorTableRedSize = ((int)0x80DA), + /// /// Original was GL_COLOR_TABLE_RED_SIZE_SGI = 0x80DA /// ColorTableRedSizeSgi = ((int)0x80DA), /// + /// Original was GL_COLOR_TABLE_GREEN_SIZE = 0x80DB + /// + ColorTableGreenSize = ((int)0x80DB), + /// /// Original was GL_COLOR_TABLE_GREEN_SIZE_SGI = 0x80DB /// ColorTableGreenSizeSgi = ((int)0x80DB), /// + /// Original was GL_COLOR_TABLE_BLUE_SIZE = 0x80DC + /// + ColorTableBlueSize = ((int)0x80DC), + /// /// Original was GL_COLOR_TABLE_BLUE_SIZE_SGI = 0x80DC /// ColorTableBlueSizeSgi = ((int)0x80DC), /// + /// Original was GL_COLOR_TABLE_ALPHA_SIZE = 0x80DD + /// + ColorTableAlphaSize = ((int)0x80DD), + /// /// Original was GL_COLOR_TABLE_ALPHA_SIZE_SGI = 0x80DD /// ColorTableAlphaSizeSgi = ((int)0x80DD), /// + /// Original was GL_COLOR_TABLE_LUMINANCE_SIZE = 0x80DE + /// + ColorTableLuminanceSize = ((int)0x80DE), + /// /// Original was GL_COLOR_TABLE_LUMINANCE_SIZE_SGI = 0x80DE /// ColorTableLuminanceSizeSgi = ((int)0x80DE), /// + /// Original was GL_COLOR_TABLE_INTENSITY_SIZE = 0x80DF + /// + ColorTableIntensitySize = ((int)0x80DF), + /// /// Original was GL_COLOR_TABLE_INTENSITY_SIZE_SGI = 0x80DF /// ColorTableIntensitySizeSgi = ((int)0x80DF), @@ -21230,42 +23218,78 @@ namespace OpenTK.Graphics.OpenGL4 /// public enum GetConvolutionParameter : int { + /// + /// Original was GL_CONVOLUTION_BORDER_MODE = 0x8013 + /// + ConvolutionBorderMode = ((int)0x8013), /// /// Original was GL_CONVOLUTION_BORDER_MODE_EXT = 0x8013 /// ConvolutionBorderModeExt = ((int)0x8013), /// + /// Original was GL_CONVOLUTION_FILTER_SCALE = 0x8014 + /// + ConvolutionFilterScale = ((int)0x8014), + /// /// Original was GL_CONVOLUTION_FILTER_SCALE_EXT = 0x8014 /// ConvolutionFilterScaleExt = ((int)0x8014), /// + /// Original was GL_CONVOLUTION_FILTER_BIAS = 0x8015 + /// + ConvolutionFilterBias = ((int)0x8015), + /// /// Original was GL_CONVOLUTION_FILTER_BIAS_EXT = 0x8015 /// ConvolutionFilterBiasExt = ((int)0x8015), /// + /// Original was GL_CONVOLUTION_FORMAT = 0x8017 + /// + ConvolutionFormat = ((int)0x8017), + /// /// Original was GL_CONVOLUTION_FORMAT_EXT = 0x8017 /// ConvolutionFormatExt = ((int)0x8017), /// + /// Original was GL_CONVOLUTION_WIDTH = 0x8018 + /// + ConvolutionWidth = ((int)0x8018), + /// /// Original was GL_CONVOLUTION_WIDTH_EXT = 0x8018 /// ConvolutionWidthExt = ((int)0x8018), /// + /// Original was GL_CONVOLUTION_HEIGHT = 0x8019 + /// + ConvolutionHeight = ((int)0x8019), + /// /// Original was GL_CONVOLUTION_HEIGHT_EXT = 0x8019 /// ConvolutionHeightExt = ((int)0x8019), /// + /// Original was GL_MAX_CONVOLUTION_WIDTH = 0x801A + /// + MaxConvolutionWidth = ((int)0x801A), + /// /// Original was GL_MAX_CONVOLUTION_WIDTH_EXT = 0x801A /// MaxConvolutionWidthExt = ((int)0x801A), /// + /// Original was GL_MAX_CONVOLUTION_HEIGHT = 0x801B + /// + MaxConvolutionHeight = ((int)0x801B), + /// /// Original was GL_MAX_CONVOLUTION_HEIGHT_EXT = 0x801B /// MaxConvolutionHeightExt = ((int)0x801B), + /// + /// Original was GL_CONVOLUTION_BORDER_COLOR = 0x8154 + /// + ConvolutionBorderColor = ((int)0x8154), } /// - /// Used in GL.GetConvolutionParameter + /// Not used directly. /// public enum GetConvolutionParameterPName : int { @@ -21308,7 +23332,58 @@ namespace OpenTK.Graphics.OpenGL4 } /// - /// Used in GL.GetHistogramParameter + /// Used in GL.Ext.GetFramebufferParameter, GL.Ext.GetNamedFramebufferParameter + /// + public enum GetFramebufferParameter : int + { + /// + /// Original was GL_DOUBLEBUFFER = 0x0C32 + /// + Doublebuffer = ((int)0x0C32), + /// + /// Original was GL_STEREO = 0x0C33 + /// + Stereo = ((int)0x0C33), + /// + /// Original was GL_SAMPLE_BUFFERS = 0x80A8 + /// + SampleBuffers = ((int)0x80A8), + /// + /// Original was GL_SAMPLES = 0x80A9 + /// + Samples = ((int)0x80A9), + /// + /// Original was GL_IMPLEMENTATION_COLOR_READ_TYPE = 0x8B9A + /// + ImplementationColorReadType = ((int)0x8B9A), + /// + /// Original was GL_IMPLEMENTATION_COLOR_READ_FORMAT = 0x8B9B + /// + ImplementationColorReadFormat = ((int)0x8B9B), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_WIDTH = 0x9310 + /// + FramebufferDefaultWidth = ((int)0x9310), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_HEIGHT = 0x9311 + /// + FramebufferDefaultHeight = ((int)0x9311), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_LAYERS = 0x9312 + /// + FramebufferDefaultLayers = ((int)0x9312), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_SAMPLES = 0x9313 + /// + FramebufferDefaultSamples = ((int)0x9313), + /// + /// Original was GL_FRAMEBUFFER_DEFAULT_FIXED_SAMPLE_LOCATIONS = 0x9314 + /// + FramebufferDefaultFixedSampleLocations = ((int)0x9314), + } + + /// + /// Not used directly. /// public enum GetHistogramParameterPName : int { @@ -21347,39 +23422,71 @@ namespace OpenTK.Graphics.OpenGL4 } /// - /// Not used directly. + /// Used in GL.GetHistogramParameter /// public enum GetHistogramParameterPNameExt : int { + /// + /// Original was GL_HISTOGRAM_WIDTH = 0x8026 + /// + HistogramWidth = ((int)0x8026), /// /// Original was GL_HISTOGRAM_WIDTH_EXT = 0x8026 /// HistogramWidthExt = ((int)0x8026), /// + /// Original was GL_HISTOGRAM_FORMAT = 0x8027 + /// + HistogramFormat = ((int)0x8027), + /// /// Original was GL_HISTOGRAM_FORMAT_EXT = 0x8027 /// HistogramFormatExt = ((int)0x8027), /// + /// Original was GL_HISTOGRAM_RED_SIZE = 0x8028 + /// + HistogramRedSize = ((int)0x8028), + /// /// Original was GL_HISTOGRAM_RED_SIZE_EXT = 0x8028 /// HistogramRedSizeExt = ((int)0x8028), /// + /// Original was GL_HISTOGRAM_GREEN_SIZE = 0x8029 + /// + HistogramGreenSize = ((int)0x8029), + /// /// Original was GL_HISTOGRAM_GREEN_SIZE_EXT = 0x8029 /// HistogramGreenSizeExt = ((int)0x8029), /// + /// Original was GL_HISTOGRAM_BLUE_SIZE = 0x802A + /// + HistogramBlueSize = ((int)0x802A), + /// /// Original was GL_HISTOGRAM_BLUE_SIZE_EXT = 0x802A /// HistogramBlueSizeExt = ((int)0x802A), /// + /// Original was GL_HISTOGRAM_ALPHA_SIZE = 0x802B + /// + HistogramAlphaSize = ((int)0x802B), + /// /// Original was GL_HISTOGRAM_ALPHA_SIZE_EXT = 0x802B /// HistogramAlphaSizeExt = ((int)0x802B), /// + /// Original was GL_HISTOGRAM_LUMINANCE_SIZE = 0x802C + /// + HistogramLuminanceSize = ((int)0x802C), + /// /// Original was GL_HISTOGRAM_LUMINANCE_SIZE_EXT = 0x802C /// HistogramLuminanceSizeExt = ((int)0x802C), /// + /// Original was GL_HISTOGRAM_SINK = 0x802D + /// + HistogramSink = ((int)0x802D), + /// /// Original was GL_HISTOGRAM_SINK_EXT = 0x802D /// HistogramSinkExt = ((int)0x802D), @@ -21480,7 +23587,7 @@ namespace OpenTK.Graphics.OpenGL4 } /// - /// Used in GL.GetMinmaxParameter + /// Not used directly. /// public enum GetMinmaxParameterPName : int { @@ -21495,7 +23602,7 @@ namespace OpenTK.Graphics.OpenGL4 } /// - /// Not used directly. + /// Used in GL.GetMinmaxParameter /// public enum GetMinmaxParameterPNameExt : int { @@ -23608,6 +25715,14 @@ namespace OpenTK.Graphics.OpenGL4 /// InstrumentBufferPointerSgix = ((int)0x8180), /// + /// Original was GL_DEBUG_CALLBACK_FUNCTION = 0x8244 + /// + DebugCallbackFunction = ((int)0x8244), + /// + /// Original was GL_DEBUG_CALLBACK_USER_PARAM = 0x8245 + /// + DebugCallbackUserParam = ((int)0x8245), + /// /// Original was GL_FOG_COORD_ARRAY_POINTER = 0x8456 /// FogCoordArrayPointer = ((int)0x8456), @@ -23771,7 +25886,7 @@ namespace OpenTK.Graphics.OpenGL4 } /// - /// Used in GL.GetTexLevelParameter, GL.GetTexParameter and 9 other functions + /// Used in GL.GetTexLevelParameter, GL.GetTexParameter and 10 other functions /// public enum GetTextureParameter : int { @@ -24117,6 +26232,29 @@ namespace OpenTK.Graphics.OpenGL4 TextureImmutableFormat = ((int)0x912F), } + /// + /// Not used directly. + /// + public enum GraphicsResetStatus : int + { + /// + /// Original was GL_NO_ERROR = 0 + /// + NoError = ((int)0), + /// + /// Original was GL_GUILTY_CONTEXT_RESET = 0x8253 + /// + GuiltyContextReset = ((int)0x8253), + /// + /// Original was GL_INNOCENT_CONTEXT_RESET = 0x8254 + /// + InnocentContextReset = ((int)0x8254), + /// + /// Original was GL_UNKNOWN_CONTEXT_RESET = 0x8255 + /// + UnknownContextReset = ((int)0x8255), + } + /// /// Used in GL.Hint /// @@ -24348,7 +26486,7 @@ namespace OpenTK.Graphics.OpenGL4 } /// - /// Used in GL.GetHistogram, GL.GetHistogramParameter and 2 other functions + /// Not used directly. /// public enum HistogramTarget : int { @@ -24363,7 +26501,7 @@ namespace OpenTK.Graphics.OpenGL4 } /// - /// Not used directly. + /// Used in GL.Arb.GetnHistogram, GL.GetHistogram and 4 other functions /// public enum HistogramTargetExt : int { @@ -24591,10 +26729,30 @@ namespace OpenTK.Graphics.OpenGL4 } /// - /// Not used directly. + /// Used in GL.Arb.TexBuffer, GL.ColorTable and 32 other functions /// public enum InternalFormat : int { + /// + /// Original was GL_DEPTH_COMPONENT = 0x1902 + /// + DepthComponent = ((int)0x1902), + /// + /// Original was GL_RED = 0x1903 + /// + Red = ((int)0x1903), + /// + /// Original was GL_RED_EXT = 0x1903 + /// + RedExt = ((int)0x1903), + /// + /// Original was GL_RGB = 0x1907 + /// + Rgb = ((int)0x1907), + /// + /// Original was GL_RGBA = 0x1908 + /// + Rgba = ((int)0x1908), /// /// Original was GL_R3_G3_B2 = 0x2A10 /// @@ -24608,54 +26766,114 @@ namespace OpenTK.Graphics.OpenGL4 /// Rgb4 = ((int)0x804F), /// + /// Original was GL_RGB4_EXT = 0x804F + /// + Rgb4Ext = ((int)0x804F), + /// /// Original was GL_RGB5 = 0x8050 /// Rgb5 = ((int)0x8050), /// + /// Original was GL_RGB5_EXT = 0x8050 + /// + Rgb5Ext = ((int)0x8050), + /// /// Original was GL_RGB8 = 0x8051 /// Rgb8 = ((int)0x8051), /// + /// Original was GL_RGB8_EXT = 0x8051 + /// + Rgb8Ext = ((int)0x8051), + /// + /// Original was GL_RGB8_OES = 0x8051 + /// + Rgb8Oes = ((int)0x8051), + /// /// Original was GL_RGB10 = 0x8052 /// Rgb10 = ((int)0x8052), /// + /// Original was GL_RGB10_EXT = 0x8052 + /// + Rgb10Ext = ((int)0x8052), + /// /// Original was GL_RGB12 = 0x8053 /// Rgb12 = ((int)0x8053), /// + /// Original was GL_RGB12_EXT = 0x8053 + /// + Rgb12Ext = ((int)0x8053), + /// /// Original was GL_RGB16 = 0x8054 /// Rgb16 = ((int)0x8054), /// - /// Original was GL_RGBA2 = 0x8055 + /// Original was GL_RGB16_EXT = 0x8054 /// - Rgba2 = ((int)0x8055), + Rgb16Ext = ((int)0x8054), /// /// Original was GL_RGBA4 = 0x8056 /// Rgba4 = ((int)0x8056), /// + /// Original was GL_RGBA4_EXT = 0x8056 + /// + Rgba4Ext = ((int)0x8056), + /// + /// Original was GL_RGBA4_OES = 0x8056 + /// + Rgba4Oes = ((int)0x8056), + /// /// Original was GL_RGB5_A1 = 0x8057 /// Rgb5A1 = ((int)0x8057), /// + /// Original was GL_RGB5_A1_EXT = 0x8057 + /// + Rgb5A1Ext = ((int)0x8057), + /// + /// Original was GL_RGB5_A1_OES = 0x8057 + /// + Rgb5A1Oes = ((int)0x8057), + /// /// Original was GL_RGBA8 = 0x8058 /// Rgba8 = ((int)0x8058), /// + /// Original was GL_RGBA8_EXT = 0x8058 + /// + Rgba8Ext = ((int)0x8058), + /// + /// Original was GL_RGBA8_OES = 0x8058 + /// + Rgba8Oes = ((int)0x8058), + /// /// Original was GL_RGB10_A2 = 0x8059 /// Rgb10A2 = ((int)0x8059), /// + /// Original was GL_RGB10_A2_EXT = 0x8059 + /// + Rgb10A2Ext = ((int)0x8059), + /// /// Original was GL_RGBA12 = 0x805A /// Rgba12 = ((int)0x805A), /// + /// Original was GL_RGBA12_EXT = 0x805A + /// + Rgba12Ext = ((int)0x805A), + /// /// Original was GL_RGBA16 = 0x805B /// Rgba16 = ((int)0x805B), /// + /// Original was GL_RGBA16_EXT = 0x805B + /// + Rgba16Ext = ((int)0x805B), + /// /// Original was GL_DUAL_ALPHA4_SGIS = 0x8110 /// DualAlpha4Sgis = ((int)0x8110), @@ -24736,17 +26954,533 @@ namespace OpenTK.Graphics.OpenGL4 /// QuadIntensity8Sgis = ((int)0x8123), /// + /// Original was GL_DEPTH_COMPONENT16 = 0x81A5 + /// + DepthComponent16 = ((int)0x81A5), + /// + /// Original was GL_DEPTH_COMPONENT16_ARB = 0x81A5 + /// + DepthComponent16Arb = ((int)0x81A5), + /// + /// Original was GL_DEPTH_COMPONENT16_OES = 0x81A5 + /// + DepthComponent16Oes = ((int)0x81A5), + /// /// Original was GL_DEPTH_COMPONENT16_SGIX = 0x81A5 /// DepthComponent16Sgix = ((int)0x81A5), /// + /// Original was GL_DEPTH_COMPONENT24_ARB = 0x81A6 + /// + DepthComponent24Arb = ((int)0x81A6), + /// + /// Original was GL_DEPTH_COMPONENT24_OES = 0x81A6 + /// + DepthComponent24Oes = ((int)0x81A6), + /// /// Original was GL_DEPTH_COMPONENT24_SGIX = 0x81A6 /// DepthComponent24Sgix = ((int)0x81A6), /// + /// Original was GL_DEPTH_COMPONENT32_ARB = 0x81A7 + /// + DepthComponent32Arb = ((int)0x81A7), + /// + /// Original was GL_DEPTH_COMPONENT32_OES = 0x81A7 + /// + DepthComponent32Oes = ((int)0x81A7), + /// /// Original was GL_DEPTH_COMPONENT32_SGIX = 0x81A7 /// DepthComponent32Sgix = ((int)0x81A7), + /// + /// Original was GL_COMPRESSED_RED = 0x8225 + /// + CompressedRed = ((int)0x8225), + /// + /// Original was GL_COMPRESSED_RG = 0x8226 + /// + CompressedRg = ((int)0x8226), + /// + /// Original was GL_RG = 0x8227 + /// + Rg = ((int)0x8227), + /// + /// Original was GL_R8 = 0x8229 + /// + R8 = ((int)0x8229), + /// + /// Original was GL_R8_EXT = 0x8229 + /// + R8Ext = ((int)0x8229), + /// + /// Original was GL_R16 = 0x822A + /// + R16 = ((int)0x822A), + /// + /// Original was GL_R16_EXT = 0x822A + /// + R16Ext = ((int)0x822A), + /// + /// Original was GL_RG8 = 0x822B + /// + Rg8 = ((int)0x822B), + /// + /// Original was GL_RG8_EXT = 0x822B + /// + Rg8Ext = ((int)0x822B), + /// + /// Original was GL_RG16 = 0x822C + /// + Rg16 = ((int)0x822C), + /// + /// Original was GL_RG16_EXT = 0x822C + /// + Rg16Ext = ((int)0x822C), + /// + /// Original was GL_R16F = 0x822D + /// + R16f = ((int)0x822D), + /// + /// Original was GL_R16F_EXT = 0x822D + /// + R16fExt = ((int)0x822D), + /// + /// Original was GL_R32F = 0x822E + /// + R32f = ((int)0x822E), + /// + /// Original was GL_R32F_EXT = 0x822E + /// + R32fExt = ((int)0x822E), + /// + /// Original was GL_RG16F = 0x822F + /// + Rg16f = ((int)0x822F), + /// + /// Original was GL_RG16F_EXT = 0x822F + /// + Rg16fExt = ((int)0x822F), + /// + /// Original was GL_RG32F = 0x8230 + /// + Rg32f = ((int)0x8230), + /// + /// Original was GL_RG32F_EXT = 0x8230 + /// + Rg32fExt = ((int)0x8230), + /// + /// Original was GL_R8I = 0x8231 + /// + R8i = ((int)0x8231), + /// + /// Original was GL_R8UI = 0x8232 + /// + R8ui = ((int)0x8232), + /// + /// Original was GL_R16I = 0x8233 + /// + R16i = ((int)0x8233), + /// + /// Original was GL_R16UI = 0x8234 + /// + R16ui = ((int)0x8234), + /// + /// Original was GL_R32I = 0x8235 + /// + R32i = ((int)0x8235), + /// + /// Original was GL_R32UI = 0x8236 + /// + R32ui = ((int)0x8236), + /// + /// Original was GL_RG8I = 0x8237 + /// + Rg8i = ((int)0x8237), + /// + /// Original was GL_RG8UI = 0x8238 + /// + Rg8ui = ((int)0x8238), + /// + /// Original was GL_RG16I = 0x8239 + /// + Rg16i = ((int)0x8239), + /// + /// Original was GL_RG16UI = 0x823A + /// + Rg16ui = ((int)0x823A), + /// + /// Original was GL_RG32I = 0x823B + /// + Rg32i = ((int)0x823B), + /// + /// Original was GL_RG32UI = 0x823C + /// + Rg32ui = ((int)0x823C), + /// + /// Original was GL_COMPRESSED_RGB_S3TC_DXT1_EXT = 0x83F0 + /// + CompressedRgbS3tcDxt1Ext = ((int)0x83F0), + /// + /// Original was GL_COMPRESSED_RGBA_S3TC_DXT1_EXT = 0x83F1 + /// + CompressedRgbaS3tcDxt1Ext = ((int)0x83F1), + /// + /// Original was GL_COMPRESSED_RGBA_S3TC_DXT3_EXT = 0x83F2 + /// + CompressedRgbaS3tcDxt3Ext = ((int)0x83F2), + /// + /// Original was GL_COMPRESSED_RGBA_S3TC_DXT5_EXT = 0x83F3 + /// + CompressedRgbaS3tcDxt5Ext = ((int)0x83F3), + /// + /// Original was GL_COMPRESSED_RGB = 0x84ED + /// + CompressedRgb = ((int)0x84ED), + /// + /// Original was GL_COMPRESSED_RGBA = 0x84EE + /// + CompressedRgba = ((int)0x84EE), + /// + /// Original was GL_DEPTH_STENCIL = 0x84F9 + /// + DepthStencil = ((int)0x84F9), + /// + /// Original was GL_DEPTH_STENCIL_EXT = 0x84F9 + /// + DepthStencilExt = ((int)0x84F9), + /// + /// Original was GL_DEPTH_STENCIL_NV = 0x84F9 + /// + DepthStencilNv = ((int)0x84F9), + /// + /// Original was GL_DEPTH_STENCIL_OES = 0x84F9 + /// + DepthStencilOes = ((int)0x84F9), + /// + /// Original was GL_DEPTH_STENCIL_MESA = 0x8750 + /// + DepthStencilMesa = ((int)0x8750), + /// + /// Original was GL_RGBA32F = 0x8814 + /// + Rgba32f = ((int)0x8814), + /// + /// Original was GL_RGBA32F_ARB = 0x8814 + /// + Rgba32fArb = ((int)0x8814), + /// + /// Original was GL_RGBA32F_EXT = 0x8814 + /// + Rgba32fExt = ((int)0x8814), + /// + /// Original was GL_RGBA16F = 0x881A + /// + Rgba16f = ((int)0x881A), + /// + /// Original was GL_RGBA16F_ARB = 0x881A + /// + Rgba16fArb = ((int)0x881A), + /// + /// Original was GL_RGBA16F_EXT = 0x881A + /// + Rgba16fExt = ((int)0x881A), + /// + /// Original was GL_RGB16F = 0x881B + /// + Rgb16f = ((int)0x881B), + /// + /// Original was GL_RGB16F_ARB = 0x881B + /// + Rgb16fArb = ((int)0x881B), + /// + /// Original was GL_RGB16F_EXT = 0x881B + /// + Rgb16fExt = ((int)0x881B), + /// + /// Original was GL_DEPTH24_STENCIL8 = 0x88F0 + /// + Depth24Stencil8 = ((int)0x88F0), + /// + /// Original was GL_DEPTH24_STENCIL8_EXT = 0x88F0 + /// + Depth24Stencil8Ext = ((int)0x88F0), + /// + /// Original was GL_DEPTH24_STENCIL8_OES = 0x88F0 + /// + Depth24Stencil8Oes = ((int)0x88F0), + /// + /// Original was GL_R11F_G11F_B10F = 0x8C3A + /// + R11fG11fB10f = ((int)0x8C3A), + /// + /// Original was GL_R11F_G11F_B10F_APPLE = 0x8C3A + /// + R11fG11fB10fApple = ((int)0x8C3A), + /// + /// Original was GL_R11F_G11F_B10F_EXT = 0x8C3A + /// + R11fG11fB10fExt = ((int)0x8C3A), + /// + /// Original was GL_RGB9_E5 = 0x8C3D + /// + Rgb9E5 = ((int)0x8C3D), + /// + /// Original was GL_RGB9_E5_APPLE = 0x8C3D + /// + Rgb9E5Apple = ((int)0x8C3D), + /// + /// Original was GL_RGB9_E5_EXT = 0x8C3D + /// + Rgb9E5Ext = ((int)0x8C3D), + /// + /// Original was GL_SRGB = 0x8C40 + /// + Srgb = ((int)0x8C40), + /// + /// Original was GL_SRGB_EXT = 0x8C40 + /// + SrgbExt = ((int)0x8C40), + /// + /// Original was GL_SRGB8 = 0x8C41 + /// + Srgb8 = ((int)0x8C41), + /// + /// Original was GL_SRGB8_EXT = 0x8C41 + /// + Srgb8Ext = ((int)0x8C41), + /// + /// Original was GL_SRGB8_NV = 0x8C41 + /// + Srgb8Nv = ((int)0x8C41), + /// + /// Original was GL_SRGB_ALPHA = 0x8C42 + /// + SrgbAlpha = ((int)0x8C42), + /// + /// Original was GL_SRGB_ALPHA_EXT = 0x8C42 + /// + SrgbAlphaExt = ((int)0x8C42), + /// + /// Original was GL_SRGB8_ALPHA8 = 0x8C43 + /// + Srgb8Alpha8 = ((int)0x8C43), + /// + /// Original was GL_SRGB8_ALPHA8_EXT = 0x8C43 + /// + Srgb8Alpha8Ext = ((int)0x8C43), + /// + /// Original was GL_COMPRESSED_SRGB = 0x8C48 + /// + CompressedSrgb = ((int)0x8C48), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA = 0x8C49 + /// + CompressedSrgbAlpha = ((int)0x8C49), + /// + /// Original was GL_COMPRESSED_SRGB_S3TC_DXT1_EXT = 0x8C4C + /// + CompressedSrgbS3tcDxt1Ext = ((int)0x8C4C), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT = 0x8C4D + /// + CompressedSrgbAlphaS3tcDxt1Ext = ((int)0x8C4D), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT = 0x8C4E + /// + CompressedSrgbAlphaS3tcDxt3Ext = ((int)0x8C4E), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT = 0x8C4F + /// + CompressedSrgbAlphaS3tcDxt5Ext = ((int)0x8C4F), + /// + /// Original was GL_DEPTH_COMPONENT32F = 0x8CAC + /// + DepthComponent32f = ((int)0x8CAC), + /// + /// Original was GL_DEPTH32F_STENCIL8 = 0x8CAD + /// + Depth32fStencil8 = ((int)0x8CAD), + /// + /// Original was GL_RGBA32UI = 0x8D70 + /// + Rgba32ui = ((int)0x8D70), + /// + /// Original was GL_RGB32UI = 0x8D71 + /// + Rgb32ui = ((int)0x8D71), + /// + /// Original was GL_RGBA16UI = 0x8D76 + /// + Rgba16ui = ((int)0x8D76), + /// + /// Original was GL_RGB16UI = 0x8D77 + /// + Rgb16ui = ((int)0x8D77), + /// + /// Original was GL_RGBA8UI = 0x8D7C + /// + Rgba8ui = ((int)0x8D7C), + /// + /// Original was GL_RGB8UI = 0x8D7D + /// + Rgb8ui = ((int)0x8D7D), + /// + /// Original was GL_RGBA32I = 0x8D82 + /// + Rgba32i = ((int)0x8D82), + /// + /// Original was GL_RGB32I = 0x8D83 + /// + Rgb32i = ((int)0x8D83), + /// + /// Original was GL_RGBA16I = 0x8D88 + /// + Rgba16i = ((int)0x8D88), + /// + /// Original was GL_RGB16I = 0x8D89 + /// + Rgb16i = ((int)0x8D89), + /// + /// Original was GL_RGBA8I = 0x8D8E + /// + Rgba8i = ((int)0x8D8E), + /// + /// Original was GL_RGB8I = 0x8D8F + /// + Rgb8i = ((int)0x8D8F), + /// + /// Original was GL_DEPTH_COMPONENT32F_NV = 0x8DAB + /// + DepthComponent32fNv = ((int)0x8DAB), + /// + /// Original was GL_DEPTH32F_STENCIL8_NV = 0x8DAC + /// + Depth32fStencil8Nv = ((int)0x8DAC), + /// + /// Original was GL_COMPRESSED_RED_RGTC1 = 0x8DBB + /// + CompressedRedRgtc1 = ((int)0x8DBB), + /// + /// Original was GL_COMPRESSED_RED_RGTC1_EXT = 0x8DBB + /// + CompressedRedRgtc1Ext = ((int)0x8DBB), + /// + /// Original was GL_COMPRESSED_SIGNED_RED_RGTC1 = 0x8DBC + /// + CompressedSignedRedRgtc1 = ((int)0x8DBC), + /// + /// Original was GL_COMPRESSED_SIGNED_RED_RGTC1_EXT = 0x8DBC + /// + CompressedSignedRedRgtc1Ext = ((int)0x8DBC), + /// + /// Original was GL_COMPRESSED_RG_RGTC2 = 0x8DBD + /// + CompressedRgRgtc2 = ((int)0x8DBD), + /// + /// Original was GL_COMPRESSED_SIGNED_RG_RGTC2 = 0x8DBE + /// + CompressedSignedRgRgtc2 = ((int)0x8DBE), + /// + /// Original was GL_COMPRESSED_RGBA_BPTC_UNORM = 0x8E8C + /// + CompressedRgbaBptcUnorm = ((int)0x8E8C), + /// + /// Original was GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM = 0x8E8D + /// + CompressedSrgbAlphaBptcUnorm = ((int)0x8E8D), + /// + /// Original was GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT = 0x8E8E + /// + CompressedRgbBptcSignedFloat = ((int)0x8E8E), + /// + /// Original was GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT = 0x8E8F + /// + CompressedRgbBptcUnsignedFloat = ((int)0x8E8F), + /// + /// Original was GL_R8_SNORM = 0x8F94 + /// + R8Snorm = ((int)0x8F94), + /// + /// Original was GL_RG8_SNORM = 0x8F95 + /// + Rg8Snorm = ((int)0x8F95), + /// + /// Original was GL_RGB8_SNORM = 0x8F96 + /// + Rgb8Snorm = ((int)0x8F96), + /// + /// Original was GL_RGBA8_SNORM = 0x8F97 + /// + Rgba8Snorm = ((int)0x8F97), + /// + /// Original was GL_R16_SNORM = 0x8F98 + /// + R16Snorm = ((int)0x8F98), + /// + /// Original was GL_R16_SNORM_EXT = 0x8F98 + /// + R16SnormExt = ((int)0x8F98), + /// + /// Original was GL_RG16_SNORM = 0x8F99 + /// + Rg16Snorm = ((int)0x8F99), + /// + /// Original was GL_RG16_SNORM_EXT = 0x8F99 + /// + Rg16SnormExt = ((int)0x8F99), + /// + /// Original was GL_RGB16_SNORM = 0x8F9A + /// + Rgb16Snorm = ((int)0x8F9A), + /// + /// Original was GL_RGB16_SNORM_EXT = 0x8F9A + /// + Rgb16SnormExt = ((int)0x8F9A), + /// + /// Original was GL_RGB10_A2UI = 0x906F + /// + Rgb10A2ui = ((int)0x906F), + /// + /// Original was GL_COMPRESSED_R11_EAC = 0x9270 + /// + CompressedR11Eac = ((int)0x9270), + /// + /// Original was GL_COMPRESSED_SIGNED_R11_EAC = 0x9271 + /// + CompressedSignedR11Eac = ((int)0x9271), + /// + /// Original was GL_COMPRESSED_RG11_EAC = 0x9272 + /// + CompressedRg11Eac = ((int)0x9272), + /// + /// Original was GL_COMPRESSED_SIGNED_RG11_EAC = 0x9273 + /// + CompressedSignedRg11Eac = ((int)0x9273), + /// + /// Original was GL_COMPRESSED_RGB8_ETC2 = 0x9274 + /// + CompressedRgb8Etc2 = ((int)0x9274), + /// + /// Original was GL_COMPRESSED_SRGB8_ETC2 = 0x9275 + /// + CompressedSrgb8Etc2 = ((int)0x9275), + /// + /// Original was GL_COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2 = 0x9276 + /// + CompressedRgb8PunchthroughAlpha1Etc2 = ((int)0x9276), + /// + /// Original was GL_COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2 = 0x9277 + /// + CompressedSrgb8PunchthroughAlpha1Etc2 = ((int)0x9277), + /// + /// Original was GL_COMPRESSED_RGBA8_ETC2_EAC = 0x9278 + /// + CompressedRgba8Etc2Eac = ((int)0x9278), + /// + /// Original was GL_COMPRESSED_SRGB8_ALPHA8_ETC2_EAC = 0x9279 + /// + CompressedSrgb8Alpha8Etc2Eac = ((int)0x9279), } /// @@ -25040,6 +27774,293 @@ namespace OpenTK.Graphics.OpenGL4 NumSampleCounts = ((int)0x9380), } + /// + /// Used in GL.NV.GetInternalformatSample + /// + public enum InternalFormatPName : int + { + /// + /// Original was GL_SAMPLES = 0x80A9 + /// + Samples = ((int)0x80A9), + /// + /// Original was GL_INTERNALFORMAT_SUPPORTED = 0x826F + /// + InternalformatSupported = ((int)0x826F), + /// + /// Original was GL_INTERNALFORMAT_PREFERRED = 0x8270 + /// + InternalformatPreferred = ((int)0x8270), + /// + /// Original was GL_INTERNALFORMAT_RED_SIZE = 0x8271 + /// + InternalformatRedSize = ((int)0x8271), + /// + /// Original was GL_INTERNALFORMAT_GREEN_SIZE = 0x8272 + /// + InternalformatGreenSize = ((int)0x8272), + /// + /// Original was GL_INTERNALFORMAT_BLUE_SIZE = 0x8273 + /// + InternalformatBlueSize = ((int)0x8273), + /// + /// Original was GL_INTERNALFORMAT_ALPHA_SIZE = 0x8274 + /// + InternalformatAlphaSize = ((int)0x8274), + /// + /// Original was GL_INTERNALFORMAT_DEPTH_SIZE = 0x8275 + /// + InternalformatDepthSize = ((int)0x8275), + /// + /// Original was GL_INTERNALFORMAT_STENCIL_SIZE = 0x8276 + /// + InternalformatStencilSize = ((int)0x8276), + /// + /// Original was GL_INTERNALFORMAT_SHARED_SIZE = 0x8277 + /// + InternalformatSharedSize = ((int)0x8277), + /// + /// Original was GL_INTERNALFORMAT_RED_TYPE = 0x8278 + /// + InternalformatRedType = ((int)0x8278), + /// + /// Original was GL_INTERNALFORMAT_GREEN_TYPE = 0x8279 + /// + InternalformatGreenType = ((int)0x8279), + /// + /// Original was GL_INTERNALFORMAT_BLUE_TYPE = 0x827A + /// + InternalformatBlueType = ((int)0x827A), + /// + /// Original was GL_INTERNALFORMAT_ALPHA_TYPE = 0x827B + /// + InternalformatAlphaType = ((int)0x827B), + /// + /// Original was GL_INTERNALFORMAT_DEPTH_TYPE = 0x827C + /// + InternalformatDepthType = ((int)0x827C), + /// + /// Original was GL_INTERNALFORMAT_STENCIL_TYPE = 0x827D + /// + InternalformatStencilType = ((int)0x827D), + /// + /// Original was GL_MAX_WIDTH = 0x827E + /// + MaxWidth = ((int)0x827E), + /// + /// Original was GL_MAX_HEIGHT = 0x827F + /// + MaxHeight = ((int)0x827F), + /// + /// Original was GL_MAX_DEPTH = 0x8280 + /// + MaxDepth = ((int)0x8280), + /// + /// Original was GL_MAX_LAYERS = 0x8281 + /// + MaxLayers = ((int)0x8281), + /// + /// Original was GL_COLOR_COMPONENTS = 0x8283 + /// + ColorComponents = ((int)0x8283), + /// + /// Original was GL_COLOR_RENDERABLE = 0x8286 + /// + ColorRenderable = ((int)0x8286), + /// + /// Original was GL_DEPTH_RENDERABLE = 0x8287 + /// + DepthRenderable = ((int)0x8287), + /// + /// Original was GL_STENCIL_RENDERABLE = 0x8288 + /// + StencilRenderable = ((int)0x8288), + /// + /// Original was GL_FRAMEBUFFER_RENDERABLE = 0x8289 + /// + FramebufferRenderable = ((int)0x8289), + /// + /// Original was GL_FRAMEBUFFER_RENDERABLE_LAYERED = 0x828A + /// + FramebufferRenderableLayered = ((int)0x828A), + /// + /// Original was GL_FRAMEBUFFER_BLEND = 0x828B + /// + FramebufferBlend = ((int)0x828B), + /// + /// Original was GL_READ_PIXELS = 0x828C + /// + ReadPixels = ((int)0x828C), + /// + /// Original was GL_READ_PIXELS_FORMAT = 0x828D + /// + ReadPixelsFormat = ((int)0x828D), + /// + /// Original was GL_READ_PIXELS_TYPE = 0x828E + /// + ReadPixelsType = ((int)0x828E), + /// + /// Original was GL_TEXTURE_IMAGE_FORMAT = 0x828F + /// + TextureImageFormat = ((int)0x828F), + /// + /// Original was GL_TEXTURE_IMAGE_TYPE = 0x8290 + /// + TextureImageType = ((int)0x8290), + /// + /// Original was GL_GET_TEXTURE_IMAGE_FORMAT = 0x8291 + /// + GetTextureImageFormat = ((int)0x8291), + /// + /// Original was GL_GET_TEXTURE_IMAGE_TYPE = 0x8292 + /// + GetTextureImageType = ((int)0x8292), + /// + /// Original was GL_MIPMAP = 0x8293 + /// + Mipmap = ((int)0x8293), + /// + /// Original was GL_AUTO_GENERATE_MIPMAP = 0x8295 + /// + AutoGenerateMipmap = ((int)0x8295), + /// + /// Original was GL_COLOR_ENCODING = 0x8296 + /// + ColorEncoding = ((int)0x8296), + /// + /// Original was GL_SRGB_READ = 0x8297 + /// + SrgbRead = ((int)0x8297), + /// + /// Original was GL_SRGB_WRITE = 0x8298 + /// + SrgbWrite = ((int)0x8298), + /// + /// Original was GL_FILTER = 0x829A + /// + Filter = ((int)0x829A), + /// + /// Original was GL_VERTEX_TEXTURE = 0x829B + /// + VertexTexture = ((int)0x829B), + /// + /// Original was GL_TESS_CONTROL_TEXTURE = 0x829C + /// + TessControlTexture = ((int)0x829C), + /// + /// Original was GL_TESS_EVALUATION_TEXTURE = 0x829D + /// + TessEvaluationTexture = ((int)0x829D), + /// + /// Original was GL_GEOMETRY_TEXTURE = 0x829E + /// + GeometryTexture = ((int)0x829E), + /// + /// Original was GL_FRAGMENT_TEXTURE = 0x829F + /// + FragmentTexture = ((int)0x829F), + /// + /// Original was GL_COMPUTE_TEXTURE = 0x82A0 + /// + ComputeTexture = ((int)0x82A0), + /// + /// Original was GL_TEXTURE_SHADOW = 0x82A1 + /// + TextureShadow = ((int)0x82A1), + /// + /// Original was GL_TEXTURE_GATHER = 0x82A2 + /// + TextureGather = ((int)0x82A2), + /// + /// Original was GL_TEXTURE_GATHER_SHADOW = 0x82A3 + /// + TextureGatherShadow = ((int)0x82A3), + /// + /// Original was GL_SHADER_IMAGE_LOAD = 0x82A4 + /// + ShaderImageLoad = ((int)0x82A4), + /// + /// Original was GL_SHADER_IMAGE_STORE = 0x82A5 + /// + ShaderImageStore = ((int)0x82A5), + /// + /// Original was GL_SHADER_IMAGE_ATOMIC = 0x82A6 + /// + ShaderImageAtomic = ((int)0x82A6), + /// + /// Original was GL_IMAGE_TEXEL_SIZE = 0x82A7 + /// + ImageTexelSize = ((int)0x82A7), + /// + /// Original was GL_IMAGE_COMPATIBILITY_CLASS = 0x82A8 + /// + ImageCompatibilityClass = ((int)0x82A8), + /// + /// Original was GL_IMAGE_PIXEL_FORMAT = 0x82A9 + /// + ImagePixelFormat = ((int)0x82A9), + /// + /// Original was GL_IMAGE_PIXEL_TYPE = 0x82AA + /// + ImagePixelType = ((int)0x82AA), + /// + /// Original was GL_SIMULTANEOUS_TEXTURE_AND_DEPTH_TEST = 0x82AC + /// + SimultaneousTextureAndDepthTest = ((int)0x82AC), + /// + /// Original was GL_SIMULTANEOUS_TEXTURE_AND_STENCIL_TEST = 0x82AD + /// + SimultaneousTextureAndStencilTest = ((int)0x82AD), + /// + /// Original was GL_SIMULTANEOUS_TEXTURE_AND_DEPTH_WRITE = 0x82AE + /// + SimultaneousTextureAndDepthWrite = ((int)0x82AE), + /// + /// Original was GL_SIMULTANEOUS_TEXTURE_AND_STENCIL_WRITE = 0x82AF + /// + SimultaneousTextureAndStencilWrite = ((int)0x82AF), + /// + /// Original was GL_TEXTURE_COMPRESSED_BLOCK_WIDTH = 0x82B1 + /// + TextureCompressedBlockWidth = ((int)0x82B1), + /// + /// Original was GL_TEXTURE_COMPRESSED_BLOCK_HEIGHT = 0x82B2 + /// + TextureCompressedBlockHeight = ((int)0x82B2), + /// + /// Original was GL_TEXTURE_COMPRESSED_BLOCK_SIZE = 0x82B3 + /// + TextureCompressedBlockSize = ((int)0x82B3), + /// + /// Original was GL_CLEAR_BUFFER = 0x82B4 + /// + ClearBuffer = ((int)0x82B4), + /// + /// Original was GL_TEXTURE_VIEW = 0x82B5 + /// + TextureView = ((int)0x82B5), + /// + /// Original was GL_VIEW_COMPATIBILITY_CLASS = 0x82B6 + /// + ViewCompatibilityClass = ((int)0x82B6), + /// + /// Original was GL_TEXTURE_COMPRESSED = 0x86A1 + /// + TextureCompressed = ((int)0x86A1), + /// + /// Original was GL_IMAGE_FORMAT_COMPATIBILITY_TYPE = 0x90C7 + /// + ImageFormatCompatibilityType = ((int)0x90C7), + /// + /// Original was GL_CLEAR_TEXTURE = 0x9365 + /// + ClearTexture = ((int)0x9365), + /// + /// Original was GL_NUM_SAMPLE_COUNTS = 0x9380 + /// + NumSampleCounts = ((int)0x9380), + } + /// /// Not used directly. /// @@ -25491,6 +28512,21 @@ namespace OpenTK.Graphics.OpenGL4 ContextFlagNoErrorBitKhr = ((int)0x00000008), } + /// + /// Not used directly. + /// + public enum KhrParallelShaderCompile : int + { + /// + /// Original was GL_MAX_SHADER_COMPILER_THREADS_KHR = 0x91B0 + /// + MaxShaderCompilerThreadsKhr = ((int)0x91B0), + /// + /// Original was GL_COMPLETION_STATUS_KHR = 0x91B1 + /// + CompletionStatusKhr = ((int)0x91B1), + } + /// /// Not used directly. /// @@ -26167,21 +29203,68 @@ namespace OpenTK.Graphics.OpenGL4 /// MapPersistentBit = ((int)0x0040), /// + /// Original was GL_MAP_PERSISTENT_BIT_EXT = 0x0040 + /// + MapPersistentBitExt = ((int)0x0040), + /// /// Original was GL_MAP_COHERENT_BIT = 0x0080 /// MapCoherentBit = ((int)0x0080), /// + /// Original was GL_MAP_COHERENT_BIT_EXT = 0x0080 + /// + MapCoherentBitExt = ((int)0x0080), + /// /// Original was GL_DYNAMIC_STORAGE_BIT = 0x0100 /// DynamicStorageBit = ((int)0x0100), /// + /// Original was GL_DYNAMIC_STORAGE_BIT_EXT = 0x0100 + /// + DynamicStorageBitExt = ((int)0x0100), + /// /// Original was GL_CLIENT_STORAGE_BIT = 0x0200 /// ClientStorageBit = ((int)0x0200), + /// + /// Original was GL_CLIENT_STORAGE_BIT_EXT = 0x0200 + /// + ClientStorageBitExt = ((int)0x0200), + /// + /// Original was GL_SPARSE_STORAGE_BIT_ARB = 0x0400 + /// + SparseStorageBitArb = ((int)0x0400), + /// + /// Original was GL_LGPU_SEPARATE_STORAGE_BIT_NVX = 0x0800 + /// + LgpuSeparateStorageBitNvx = ((int)0x0800), + /// + /// Original was GL_PER_GPU_STORAGE_BIT_NV = 0x0800 + /// + PerGpuStorageBitNv = ((int)0x0800), } /// - /// Not used directly. + /// Used in GL.Arb.GetnMap, GL.GetnMap + /// + public enum MapQuery : int + { + /// + /// Original was GL_COEFF = 0x0A00 + /// + Coeff = ((int)0x0A00), + /// + /// Original was GL_ORDER = 0x0A01 + /// + Order = ((int)0x0A01), + /// + /// Original was GL_DOMAIN = 0x0A02 + /// + Domain = ((int)0x0A02), + } + + /// + /// Used in GL.Arb.GetnMap, GL.GetnMap /// public enum MapTarget : int { @@ -26680,6 +29763,10 @@ namespace OpenTK.Graphics.OpenGL4 /// ClientMappedBufferBarrierBit = ((int)0x00004000), /// + /// Original was GL_CLIENT_MAPPED_BUFFER_BARRIER_BIT_EXT = 0x00004000 + /// + ClientMappedBufferBarrierBitExt = ((int)0x00004000), + /// /// Original was GL_QUERY_BUFFER_BARRIER_BIT = 0x00008000 /// QueryBufferBarrierBit = ((int)0x00008000), @@ -26774,7 +29861,7 @@ namespace OpenTK.Graphics.OpenGL4 } /// - /// Used in GL.GetMinmax, GL.GetMinmaxParameter and 2 other functions + /// Not used directly. /// public enum MinmaxTarget : int { @@ -26785,7 +29872,7 @@ namespace OpenTK.Graphics.OpenGL4 } /// - /// Not used directly. + /// Used in GL.Arb.GetnMinmax, GL.GetMinmax and 4 other functions /// public enum MinmaxTargetExt : int { @@ -27263,6 +30350,17 @@ namespace OpenTK.Graphics.OpenGL4 ConservativeRasterDilateGranularityNv = ((int)0x937B), } + /// + /// Not used directly. + /// + public enum NvConservativeRasterPreSnap : int + { + /// + /// Original was GL_CONSERVATIVE_RASTER_MODE_PRE_SNAP_NV = 0x9550 + /// + ConservativeRasterModePreSnapNv = ((int)0x9550), + } + /// /// Not used directly. /// @@ -27282,6 +30380,13 @@ namespace OpenTK.Graphics.OpenGL4 ConservativeRasterModePreSnapTrianglesNv = ((int)0x954F), } + /// + /// Not used directly. + /// + public enum NvConservativeRasterUnderestimation : int + { + } + /// /// Not used directly. /// @@ -28613,6 +31718,57 @@ namespace OpenTK.Graphics.OpenGL4 ViewportSwizzleWNv = ((int)0x935B), } + /// + /// Used in GL.Khr.ObjectLabel + /// + public enum ObjectIdentifier : int + { + /// + /// Original was GL_TEXTURE = 0x1702 + /// + Texture = ((int)0x1702), + /// + /// Original was GL_VERTEX_ARRAY = 0x8074 + /// + VertexArray = ((int)0x8074), + /// + /// Original was GL_BUFFER = 0x82E0 + /// + Buffer = ((int)0x82E0), + /// + /// Original was GL_SHADER = 0x82E1 + /// + Shader = ((int)0x82E1), + /// + /// Original was GL_PROGRAM = 0x82E2 + /// + Program = ((int)0x82E2), + /// + /// Original was GL_QUERY = 0x82E3 + /// + Query = ((int)0x82E3), + /// + /// Original was GL_PROGRAM_PIPELINE = 0x82E4 + /// + ProgramPipeline = ((int)0x82E4), + /// + /// Original was GL_SAMPLER = 0x82E6 + /// + Sampler = ((int)0x82E6), + /// + /// Original was GL_FRAMEBUFFER = 0x8D40 + /// + Framebuffer = ((int)0x8D40), + /// + /// Original was GL_RENDERBUFFER = 0x8D41 + /// + Renderbuffer = ((int)0x8D41), + /// + /// Original was GL_TRANSFORM_FEEDBACK = 0x8E22 + /// + TransformFeedback = ((int)0x8E22), + } + /// /// Used in GL.GetObjectLabel, GL.ObjectLabel /// @@ -28763,6 +31919,488 @@ namespace OpenTK.Graphics.OpenGL4 PatchVertices = ((int)0x8E72), } + /// + /// Not used directly. + /// + public enum PatchParameterName : int + { + /// + /// Original was GL_PATCH_VERTICES = 0x8E72 + /// + PatchVertices = ((int)0x8E72), + /// + /// Original was GL_PATCH_DEFAULT_INNER_LEVEL = 0x8E73 + /// + PatchDefaultInnerLevel = ((int)0x8E73), + /// + /// Original was GL_PATCH_DEFAULT_OUTER_LEVEL = 0x8E74 + /// + PatchDefaultOuterLevel = ((int)0x8E74), + } + + /// + /// Used in GL.NV.GetPathColorGen, GL.NV.PathColorGen and 1 other function + /// + public enum PathColor : int + { + /// + /// Original was GL_PRIMARY_COLOR_NV = 0x852C + /// + PrimaryColorNv = ((int)0x852C), + /// + /// Original was GL_SECONDARY_COLOR_NV = 0x852D + /// + SecondaryColorNv = ((int)0x852D), + /// + /// Original was GL_PRIMARY_COLOR = 0x8577 + /// + PrimaryColor = ((int)0x8577), + } + + /// + /// Used in GL.NV.CoverFillPathInstanced, GL.NV.CoverFillPath and 2 other functions + /// + public enum PathCoverMode : int + { + /// + /// Original was GL_PATH_FILL_COVER_MODE_NV = 0x9082 + /// + PathFillCoverModeNv = ((int)0x9082), + /// + /// Original was GL_CONVEX_HULL_NV = 0x908B + /// + ConvexHullNv = ((int)0x908B), + /// + /// Original was GL_BOUNDING_BOX_NV = 0x908D + /// + BoundingBoxNv = ((int)0x908D), + /// + /// Original was GL_BOUNDING_BOX_OF_BOUNDING_BOXES_NV = 0x909C + /// + BoundingBoxOfBoundingBoxesNv = ((int)0x909C), + } + + /// + /// Used in GL.NV.CoverFillPathInstanced, GL.NV.CoverStrokePathInstanced and 5 other functions + /// + public enum PathElementType : int + { + /// + /// Original was GL_UTF8_NV = 0x909A + /// + Utf8Nv = ((int)0x909A), + /// + /// Original was GL_UTF16_NV = 0x909B + /// + Utf16Nv = ((int)0x909B), + } + + /// + /// Used in GL.NV.StencilFillPathInstanced, GL.NV.StencilFillPath + /// + public enum PathFillMode : int + { + /// + /// Original was GL_INVERT = 0x150A + /// + Invert = ((int)0x150A), + /// + /// Original was GL_PATH_FILL_MODE_NV = 0x9080 + /// + PathFillModeNv = ((int)0x9080), + /// + /// Original was GL_COUNT_UP_NV = 0x9088 + /// + CountUpNv = ((int)0x9088), + /// + /// Original was GL_COUNT_DOWN_NV = 0x9089 + /// + CountDownNv = ((int)0x9089), + } + + /// + /// Used in GL.NV.PathGlyphIndexArray, GL.NV.PathGlyphIndexRange and 2 other functions + /// + public enum PathFontStyle : int + { + /// + /// Original was GL_NONE = 0 + /// + None = ((int)0), + /// + /// Original was GL_BOLD_BIT_NV = 0x01 + /// + BoldBitNv = ((int)0x01), + /// + /// Original was GL_ITALIC_BIT_NV = 0x02 + /// + ItalicBitNv = ((int)0x02), + } + + /// + /// Used in GL.NV.PathGlyphRange, GL.NV.PathGlyph + /// + public enum PathFontTarget : int + { + /// + /// Original was GL_STANDARD_FONT_NAME_NV = 0x9072 + /// + StandardFontNameNv = ((int)0x9072), + /// + /// Original was GL_SYSTEM_FONT_NAME_NV = 0x9073 + /// + SystemFontNameNv = ((int)0x9073), + /// + /// Original was GL_FILE_NAME_NV = 0x9074 + /// + FileNameNv = ((int)0x9074), + } + + /// + /// Used in GL.NV.GetPathColorGen, GL.NV.GetPathTexGen and 3 other functions + /// + public enum PathGenMode : int + { + /// + /// Original was GL_NONE = 0 + /// + None = ((int)0), + /// + /// Original was GL_PATH_OBJECT_BOUNDING_BOX_NV = 0x908A + /// + PathObjectBoundingBoxNv = ((int)0x908A), + } + + /// + /// Used in GL.NV.PathGlyphRange, GL.NV.PathGlyph + /// + public enum PathHandleMissingGlyphs : int + { + /// + /// Original was GL_SKIP_MISSING_GLYPH_NV = 0x90A9 + /// + SkipMissingGlyphNv = ((int)0x90A9), + /// + /// Original was GL_USE_MISSING_GLYPH_NV = 0x90AA + /// + UseMissingGlyphNv = ((int)0x90AA), + } + + /// + /// Used in GL.NV.GetPathSpacing + /// + public enum PathListMode : int + { + /// + /// Original was GL_ACCUM_ADJACENT_PAIRS_NV = 0x90AD + /// + AccumAdjacentPairsNv = ((int)0x90AD), + /// + /// Original was GL_ADJACENT_PAIRS_NV = 0x90AE + /// + AdjacentPairsNv = ((int)0x90AE), + /// + /// Original was GL_FIRST_TO_REST_NV = 0x90AF + /// + FirstToRestNv = ((int)0x90AF), + } + + /// + /// Used in GL.NV.GetPathMetricRange, GL.NV.GetPathMetric + /// + [Flags] + public enum PathMetricMask : int + { + /// + /// Original was GL_FONT_X_MIN_BOUNDS_BIT_NV = 0x00010000 + /// + FontXMinBoundsBitNv = ((int)0x00010000), + /// + /// Original was GL_FONT_Y_MIN_BOUNDS_BIT_NV = 0x00020000 + /// + FontYMinBoundsBitNv = ((int)0x00020000), + /// + /// Original was GL_FONT_X_MAX_BOUNDS_BIT_NV = 0x00040000 + /// + FontXMaxBoundsBitNv = ((int)0x00040000), + /// + /// Original was GL_FONT_Y_MAX_BOUNDS_BIT_NV = 0x00080000 + /// + FontYMaxBoundsBitNv = ((int)0x00080000), + /// + /// Original was GL_FONT_UNITS_PER_EM_BIT_NV = 0x00100000 + /// + FontUnitsPerEmBitNv = ((int)0x00100000), + /// + /// Original was GL_FONT_ASCENDER_BIT_NV = 0x00200000 + /// + FontAscenderBitNv = ((int)0x00200000), + /// + /// Original was GL_FONT_DESCENDER_BIT_NV = 0x00400000 + /// + FontDescenderBitNv = ((int)0x00400000), + /// + /// Original was GL_FONT_HEIGHT_BIT_NV = 0x00800000 + /// + FontHeightBitNv = ((int)0x00800000), + /// + /// Original was GL_GLYPH_WIDTH_BIT_NV = 0x01 + /// + GlyphWidthBitNv = ((int)0x01), + /// + /// Original was GL_FONT_MAX_ADVANCE_WIDTH_BIT_NV = 0x01000000 + /// + FontMaxAdvanceWidthBitNv = ((int)0x01000000), + /// + /// Original was GL_GLYPH_HEIGHT_BIT_NV = 0x02 + /// + GlyphHeightBitNv = ((int)0x02), + /// + /// Original was GL_FONT_MAX_ADVANCE_HEIGHT_BIT_NV = 0x02000000 + /// + FontMaxAdvanceHeightBitNv = ((int)0x02000000), + /// + /// Original was GL_GLYPH_HORIZONTAL_BEARING_X_BIT_NV = 0x04 + /// + GlyphHorizontalBearingXBitNv = ((int)0x04), + /// + /// Original was GL_FONT_UNDERLINE_POSITION_BIT_NV = 0x04000000 + /// + FontUnderlinePositionBitNv = ((int)0x04000000), + /// + /// Original was GL_GLYPH_HORIZONTAL_BEARING_Y_BIT_NV = 0x08 + /// + GlyphHorizontalBearingYBitNv = ((int)0x08), + /// + /// Original was GL_FONT_UNDERLINE_THICKNESS_BIT_NV = 0x08000000 + /// + FontUnderlineThicknessBitNv = ((int)0x08000000), + /// + /// Original was GL_GLYPH_HORIZONTAL_BEARING_ADVANCE_BIT_NV = 0x10 + /// + GlyphHorizontalBearingAdvanceBitNv = ((int)0x10), + /// + /// Original was GL_GLYPH_HAS_KERNING_BIT_NV = 0x100 + /// + GlyphHasKerningBitNv = ((int)0x100), + /// + /// Original was GL_FONT_HAS_KERNING_BIT_NV = 0x10000000 + /// + FontHasKerningBitNv = ((int)0x10000000), + /// + /// Original was GL_GLYPH_VERTICAL_BEARING_X_BIT_NV = 0x20 + /// + GlyphVerticalBearingXBitNv = ((int)0x20), + /// + /// Original was GL_FONT_NUM_GLYPH_INDICES_BIT_NV = 0x20000000 + /// + FontNumGlyphIndicesBitNv = ((int)0x20000000), + /// + /// Original was GL_GLYPH_VERTICAL_BEARING_Y_BIT_NV = 0x40 + /// + GlyphVerticalBearingYBitNv = ((int)0x40), + /// + /// Original was GL_GLYPH_VERTICAL_BEARING_ADVANCE_BIT_NV = 0x80 + /// + GlyphVerticalBearingAdvanceBitNv = ((int)0x80), + } + + /// + /// Used in GL.NV.GetPathParameter, GL.NV.PathParameter + /// + public enum PathParameter : int + { + /// + /// Original was GL_PATH_STROKE_WIDTH_NV = 0x9075 + /// + PathStrokeWidthNv = ((int)0x9075), + /// + /// Original was GL_PATH_END_CAPS_NV = 0x9076 + /// + PathEndCapsNv = ((int)0x9076), + /// + /// Original was GL_PATH_INITIAL_END_CAP_NV = 0x9077 + /// + PathInitialEndCapNv = ((int)0x9077), + /// + /// Original was GL_PATH_TERMINAL_END_CAP_NV = 0x9078 + /// + PathTerminalEndCapNv = ((int)0x9078), + /// + /// Original was GL_PATH_JOIN_STYLE_NV = 0x9079 + /// + PathJoinStyleNv = ((int)0x9079), + /// + /// Original was GL_PATH_MITER_LIMIT_NV = 0x907A + /// + PathMiterLimitNv = ((int)0x907A), + /// + /// Original was GL_PATH_DASH_CAPS_NV = 0x907B + /// + PathDashCapsNv = ((int)0x907B), + /// + /// Original was GL_PATH_INITIAL_DASH_CAP_NV = 0x907C + /// + PathInitialDashCapNv = ((int)0x907C), + /// + /// Original was GL_PATH_TERMINAL_DASH_CAP_NV = 0x907D + /// + PathTerminalDashCapNv = ((int)0x907D), + /// + /// Original was GL_PATH_DASH_OFFSET_NV = 0x907E + /// + PathDashOffsetNv = ((int)0x907E), + /// + /// Original was GL_PATH_CLIENT_LENGTH_NV = 0x907F + /// + PathClientLengthNv = ((int)0x907F), + /// + /// Original was GL_PATH_FILL_MODE_NV = 0x9080 + /// + PathFillModeNv = ((int)0x9080), + /// + /// Original was GL_PATH_FILL_MASK_NV = 0x9081 + /// + PathFillMaskNv = ((int)0x9081), + /// + /// Original was GL_PATH_FILL_COVER_MODE_NV = 0x9082 + /// + PathFillCoverModeNv = ((int)0x9082), + /// + /// Original was GL_PATH_STROKE_COVER_MODE_NV = 0x9083 + /// + PathStrokeCoverModeNv = ((int)0x9083), + /// + /// Original was GL_PATH_STROKE_MASK_NV = 0x9084 + /// + PathStrokeMaskNv = ((int)0x9084), + /// + /// Original was GL_PATH_OBJECT_BOUNDING_BOX_NV = 0x908A + /// + PathObjectBoundingBoxNv = ((int)0x908A), + /// + /// Original was GL_PATH_COMMAND_COUNT_NV = 0x909D + /// + PathCommandCountNv = ((int)0x909D), + /// + /// Original was GL_PATH_COORD_COUNT_NV = 0x909E + /// + PathCoordCountNv = ((int)0x909E), + /// + /// Original was GL_PATH_DASH_ARRAY_COUNT_NV = 0x909F + /// + PathDashArrayCountNv = ((int)0x909F), + /// + /// Original was GL_PATH_COMPUTED_LENGTH_NV = 0x90A0 + /// + PathComputedLengthNv = ((int)0x90A0), + /// + /// Original was GL_PATH_FILL_BOUNDING_BOX_NV = 0x90A1 + /// + PathFillBoundingBoxNv = ((int)0x90A1), + /// + /// Original was GL_PATH_STROKE_BOUNDING_BOX_NV = 0x90A2 + /// + PathStrokeBoundingBoxNv = ((int)0x90A2), + /// + /// Original was GL_PATH_DASH_OFFSET_RESET_NV = 0x90B4 + /// + PathDashOffsetResetNv = ((int)0x90B4), + } + + /// + /// Used in GL.NV.PathString + /// + public enum PathStringFormat : int + { + /// + /// Original was GL_PATH_FORMAT_SVG_NV = 0x9070 + /// + PathFormatSvgNv = ((int)0x9070), + /// + /// Original was GL_PATH_FORMAT_PS_NV = 0x9071 + /// + PathFormatPsNv = ((int)0x9071), + } + + /// + /// Used in GL.NV.CoverFillPathInstanced, GL.NV.CoverStrokePathInstanced and 4 other functions + /// + public enum PathTransformType : int + { + /// + /// Original was GL_NONE = 0 + /// + None = ((int)0), + /// + /// Original was GL_TRANSLATE_X_NV = 0x908E + /// + TranslateXNv = ((int)0x908E), + /// + /// Original was GL_TRANSLATE_Y_NV = 0x908F + /// + TranslateYNv = ((int)0x908F), + /// + /// Original was GL_TRANSLATE_2D_NV = 0x9090 + /// + Translate2DNv = ((int)0x9090), + /// + /// Original was GL_TRANSLATE_3D_NV = 0x9091 + /// + Translate3DNv = ((int)0x9091), + /// + /// Original was GL_AFFINE_2D_NV = 0x9092 + /// + Affine2DNv = ((int)0x9092), + /// + /// Original was GL_AFFINE_3D_NV = 0x9094 + /// + Affine3DNv = ((int)0x9094), + /// + /// Original was GL_TRANSPOSE_AFFINE_2D_NV = 0x9096 + /// + TransposeAffine2DNv = ((int)0x9096), + /// + /// Original was GL_TRANSPOSE_AFFINE_3D_NV = 0x9098 + /// + TransposeAffine3DNv = ((int)0x9098), + } + + /// + /// Used in GL.Ext.GetProgramPipeline + /// + public enum PipelineParameterName : int + { + /// + /// Original was GL_ACTIVE_PROGRAM = 0x8259 + /// + ActiveProgram = ((int)0x8259), + /// + /// Original was GL_FRAGMENT_SHADER = 0x8B30 + /// + FragmentShader = ((int)0x8B30), + /// + /// Original was GL_VERTEX_SHADER = 0x8B31 + /// + VertexShader = ((int)0x8B31), + /// + /// Original was GL_INFO_LOG_LENGTH = 0x8B84 + /// + InfoLogLength = ((int)0x8B84), + /// + /// Original was GL_GEOMETRY_SHADER = 0x8DD9 + /// + GeometryShader = ((int)0x8DD9), + /// + /// Original was GL_TESS_EVALUATION_SHADER = 0x8E87 + /// + TessEvaluationShader = ((int)0x8E87), + /// + /// Original was GL_TESS_CONTROL_SHADER = 0x8E88 + /// + TessControlShader = ((int)0x8E88), + } + /// /// Not used directly. /// @@ -28795,7 +32433,7 @@ namespace OpenTK.Graphics.OpenGL4 } /// - /// Used in GL.Arb.ReadnPixels, GL.ClearBufferData and 58 other functions + /// Used in GL.Arb.GetImageHandle, GL.Arb.GetnColorTable and 72 other functions /// public enum PixelFormat : int { @@ -28950,7 +32588,7 @@ namespace OpenTK.Graphics.OpenGL4 } /// - /// Used in GL.ClearBufferData, GL.ClearBufferSubData and 28 other functions + /// Used in GL.ClearBufferData, GL.ClearBufferSubData and 12 other functions /// public enum PixelInternalFormat : int { @@ -29561,7 +33199,7 @@ namespace OpenTK.Graphics.OpenGL4 } /// - /// Not used directly. + /// Used in GL.Arb.GetnPixelMap, GL.GetnPixelMap /// public enum PixelMap : int { @@ -30090,7 +33728,7 @@ namespace OpenTK.Graphics.OpenGL4 } /// - /// Used in GL.Arb.ReadnPixels, GL.ClearTexImage and 42 other functions + /// Used in GL.Arb.GetnColorTable, GL.Arb.GetnConvolutionFilter and 58 other functions /// public enum PixelType : int { @@ -30332,6 +33970,37 @@ namespace OpenTK.Graphics.OpenGL4 Fill = ((int)0x1B02), } + /// + /// Not used directly. + /// + public enum PrecisionType : int + { + /// + /// Original was GL_LOW_FLOAT = 0x8DF0 + /// + LowFloat = ((int)0x8DF0), + /// + /// Original was GL_MEDIUM_FLOAT = 0x8DF1 + /// + MediumFloat = ((int)0x8DF1), + /// + /// Original was GL_HIGH_FLOAT = 0x8DF2 + /// + HighFloat = ((int)0x8DF2), + /// + /// Original was GL_LOW_INT = 0x8DF3 + /// + LowInt = ((int)0x8DF3), + /// + /// Original was GL_MEDIUM_INT = 0x8DF4 + /// + MediumInt = ((int)0x8DF4), + /// + /// Original was GL_HIGH_INT = 0x8DF5 + /// + HighInt = ((int)0x8DF5), + } + /// /// Used in GL.Arb.DrawArraysInstanced, GL.Arb.DrawElementsInstanced and 32 other functions /// @@ -30432,7 +34101,7 @@ namespace OpenTK.Graphics.OpenGL4 } /// - /// Used in GL.GetProgramInterface, GL.GetProgramResourceIndex and 4 other functions + /// Used in GL.GetProgramInterface, GL.GetProgramResourceIndex and 5 other functions /// public enum ProgramInterface : int { @@ -30545,6 +34214,29 @@ namespace OpenTK.Graphics.OpenGL4 MaxNumCompatibleSubroutines = ((int)0x92F8), } + /// + /// Not used directly. + /// + public enum ProgramInterfacePName : int + { + /// + /// Original was GL_ACTIVE_RESOURCES = 0x92F5 + /// + ActiveResources = ((int)0x92F5), + /// + /// Original was GL_MAX_NAME_LENGTH = 0x92F6 + /// + MaxNameLength = ((int)0x92F6), + /// + /// Original was GL_MAX_NUM_ACTIVE_VARIABLES = 0x92F7 + /// + MaxNumActiveVariables = ((int)0x92F7), + /// + /// Original was GL_MAX_NUM_COMPATIBLE_SUBROUTINES = 0x92F8 + /// + MaxNumCompatibleSubroutines = ((int)0x92F8), + } + /// /// Not used directly. /// @@ -30734,7 +34426,7 @@ namespace OpenTK.Graphics.OpenGL4 } /// - /// Used in GL.GetProgramResource, GL.Ext.GetNamedProgram + /// Used in GL.GetProgramResource /// public enum ProgramProperty : int { @@ -30852,6 +34544,93 @@ namespace OpenTK.Graphics.OpenGL4 TransformFeedbackBufferStride = ((int)0x934C), } + /// + /// Used in GL.Ext.GetNamedProgram + /// + public enum ProgramPropertyArb : int + { + /// + /// Original was GL_COMPUTE_WORK_GROUP_SIZE = 0x8267 + /// + ComputeWorkGroupSize = ((int)0x8267), + /// + /// Original was GL_PROGRAM_BINARY_LENGTH = 0x8741 + /// + ProgramBinaryLength = ((int)0x8741), + /// + /// Original was GL_GEOMETRY_VERTICES_OUT = 0x8916 + /// + GeometryVerticesOut = ((int)0x8916), + /// + /// Original was GL_GEOMETRY_INPUT_TYPE = 0x8917 + /// + GeometryInputType = ((int)0x8917), + /// + /// Original was GL_GEOMETRY_OUTPUT_TYPE = 0x8918 + /// + GeometryOutputType = ((int)0x8918), + /// + /// Original was GL_ACTIVE_UNIFORM_BLOCK_MAX_NAME_LENGTH = 0x8A35 + /// + ActiveUniformBlockMaxNameLength = ((int)0x8A35), + /// + /// Original was GL_ACTIVE_UNIFORM_BLOCKS = 0x8A36 + /// + ActiveUniformBlocks = ((int)0x8A36), + /// + /// Original was GL_DELETE_STATUS = 0x8B80 + /// + DeleteStatus = ((int)0x8B80), + /// + /// Original was GL_LINK_STATUS = 0x8B82 + /// + LinkStatus = ((int)0x8B82), + /// + /// Original was GL_VALIDATE_STATUS = 0x8B83 + /// + ValidateStatus = ((int)0x8B83), + /// + /// Original was GL_INFO_LOG_LENGTH = 0x8B84 + /// + InfoLogLength = ((int)0x8B84), + /// + /// Original was GL_ATTACHED_SHADERS = 0x8B85 + /// + AttachedShaders = ((int)0x8B85), + /// + /// Original was GL_ACTIVE_UNIFORMS = 0x8B86 + /// + ActiveUniforms = ((int)0x8B86), + /// + /// Original was GL_ACTIVE_UNIFORM_MAX_LENGTH = 0x8B87 + /// + ActiveUniformMaxLength = ((int)0x8B87), + /// + /// Original was GL_ACTIVE_ATTRIBUTES = 0x8B89 + /// + ActiveAttributes = ((int)0x8B89), + /// + /// Original was GL_ACTIVE_ATTRIBUTE_MAX_LENGTH = 0x8B8A + /// + ActiveAttributeMaxLength = ((int)0x8B8A), + /// + /// Original was GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH = 0x8C76 + /// + TransformFeedbackVaryingMaxLength = ((int)0x8C76), + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER_MODE = 0x8C7F + /// + TransformFeedbackBufferMode = ((int)0x8C7F), + /// + /// Original was GL_TRANSFORM_FEEDBACK_VARYINGS = 0x8C83 + /// + TransformFeedbackVaryings = ((int)0x8C83), + /// + /// Original was GL_ACTIVE_ATOMIC_COUNTER_BUFFERS = 0x92D9 + /// + ActiveAtomicCounterBuffers = ((int)0x92D9), + } + /// /// Used in GL.UseProgramStages /// @@ -30915,6 +34694,33 @@ namespace OpenTK.Graphics.OpenGL4 ActiveSubroutineUniformMaxLength = ((int)0x8E49), } + /// + /// Not used directly. + /// + public enum ProgramStagePName : int + { + /// + /// Original was GL_ACTIVE_SUBROUTINES = 0x8DE5 + /// + ActiveSubroutines = ((int)0x8DE5), + /// + /// Original was GL_ACTIVE_SUBROUTINE_UNIFORMS = 0x8DE6 + /// + ActiveSubroutineUniforms = ((int)0x8DE6), + /// + /// Original was GL_ACTIVE_SUBROUTINE_UNIFORM_LOCATIONS = 0x8E47 + /// + ActiveSubroutineUniformLocations = ((int)0x8E47), + /// + /// Original was GL_ACTIVE_SUBROUTINE_MAX_LENGTH = 0x8E48 + /// + ActiveSubroutineMaxLength = ((int)0x8E48), + /// + /// Original was GL_ACTIVE_SUBROUTINE_UNIFORM_MAX_LENGTH = 0x8E49 + /// + ActiveSubroutineUniformMaxLength = ((int)0x8E49), + } + /// /// Used in GL.ProvokingVertex /// @@ -30941,6 +34747,44 @@ namespace OpenTK.Graphics.OpenGL4 Timestamp = ((int)0x8E28), } + /// + /// Used in GL.GetQueryBufferObject + /// + public enum QueryObjectParameterName : int + { + /// + /// Original was GL_QUERY_TARGET = 0x82EA + /// + QueryTarget = ((int)0x82EA), + /// + /// Original was GL_QUERY_RESULT = 0x8866 + /// + QueryResult = ((int)0x8866), + /// + /// Original was GL_QUERY_RESULT_AVAILABLE = 0x8867 + /// + QueryResultAvailable = ((int)0x8867), + /// + /// Original was GL_QUERY_RESULT_NO_WAIT = 0x9194 + /// + QueryResultNoWait = ((int)0x9194), + } + + /// + /// Not used directly. + /// + public enum QueryParameterName : int + { + /// + /// Original was GL_QUERY_COUNTER_BITS = 0x8864 + /// + QueryCounterBits = ((int)0x8864), + /// + /// Original was GL_CURRENT_QUERY = 0x8865 + /// + CurrentQuery = ((int)0x8865), + } + /// /// Used in GL.BeginQuery, GL.BeginQueryIndexed and 5 other functions /// @@ -31637,40 +35481,40 @@ namespace OpenTK.Graphics.OpenGL4 } /// - /// Used in GL.GetSamplerParameter, GL.SamplerParameter and 1 other function + /// Used in GL.GetSamplerParameter, GL.GetSamplerParameterI and 2 other functions /// public enum SamplerParameterName : int { /// - /// Original was GL_TextureBorderColor = 0x1004 + /// Original was GL_TEXTURE_BORDER_COLOR = 0x1004 /// TextureBorderColor = ((int)0x1004), /// - /// Original was GL_TextureMagFilter = 0x2800 + /// Original was GL_TEXTURE_MAG_FILTER = 0x2800 /// TextureMagFilter = ((int)0x2800), /// - /// Original was GL_TextureMinFilter = 0x2801 + /// Original was GL_TEXTURE_MIN_FILTER = 0x2801 /// TextureMinFilter = ((int)0x2801), /// - /// Original was GL_TextureWrapS = 0x2802 + /// Original was GL_TEXTURE_WRAP_S = 0x2802 /// TextureWrapS = ((int)0x2802), /// - /// Original was GL_TextureWrapT = 0x2803 + /// Original was GL_TEXTURE_WRAP_T = 0x2803 /// TextureWrapT = ((int)0x2803), /// - /// Original was GL_TextureWrapR = 0x8072 + /// Original was GL_TEXTURE_WRAP_R = 0x8072 /// TextureWrapR = ((int)0x8072), /// - /// Original was GL_TextureMinLod = 0x813A + /// Original was GL_TEXTURE_MIN_LOD = 0x813A /// TextureMinLod = ((int)0x813A), /// - /// Original was GL_TextureMaxLod = 0x813B + /// Original was GL_TEXTURE_MAX_LOD = 0x813B /// TextureMaxLod = ((int)0x813B), /// @@ -31682,11 +35526,11 @@ namespace OpenTK.Graphics.OpenGL4 /// TextureLodBias = ((int)0x8501), /// - /// Original was GL_TextureCompareMode = 0x884C + /// Original was GL_TEXTURE_COMPARE_MODE = 0x884C /// TextureCompareMode = ((int)0x884C), /// - /// Original was GL_TextureCompareFunc = 0x884D + /// Original was GL_TEXTURE_COMPARE_FUNC = 0x884D /// TextureCompareFunc = ((int)0x884D), } @@ -31703,7 +35547,7 @@ namespace OpenTK.Graphics.OpenGL4 } /// - /// Used in GL.GetSeparableFilter, GL.SeparableFilter2D + /// Not used directly. /// public enum SeparableTarget : int { @@ -31714,7 +35558,7 @@ namespace OpenTK.Graphics.OpenGL4 } /// - /// Not used directly. + /// Used in GL.Arb.GetnSeparableFilter, GL.GetnSeparableFilter and 2 other functions /// public enum SeparableTargetExt : int { @@ -31810,6 +35654,33 @@ namespace OpenTK.Graphics.OpenGL4 ShaderSourceLength = ((int)0x8B88), } + /// + /// Not used directly. + /// + public enum ShaderParameterName : int + { + /// + /// Original was GL_SHADER_TYPE = 0x8B4F + /// + ShaderType = ((int)0x8B4F), + /// + /// Original was GL_DELETE_STATUS = 0x8B80 + /// + DeleteStatus = ((int)0x8B80), + /// + /// Original was GL_COMPILE_STATUS = 0x8B81 + /// + CompileStatus = ((int)0x8B81), + /// + /// Original was GL_INFO_LOG_LENGTH = 0x8B84 + /// + InfoLogLength = ((int)0x8B84), + /// + /// Original was GL_SHADER_SOURCE_LENGTH = 0x8B88 + /// + ShaderSourceLength = ((int)0x8B88), + } + /// /// Used in GL.GetShaderPrecisionFormat /// @@ -31842,7 +35713,7 @@ namespace OpenTK.Graphics.OpenGL4 } /// - /// Used in GL.CreateShader, GL.CreateShaderProgram and 9 other functions + /// Used in GL.CreateShader, GL.CreateShaderProgram and 11 other functions /// public enum ShaderType : int { @@ -31851,10 +35722,18 @@ namespace OpenTK.Graphics.OpenGL4 /// FragmentShader = ((int)0x8B30), /// + /// Original was GL_FRAGMENT_SHADER_ARB = 0x8B30 + /// + FragmentShaderArb = ((int)0x8B30), + /// /// Original was GL_VERTEX_SHADER = 0x8B31 /// VertexShader = ((int)0x8B31), /// + /// Original was GL_VERTEX_SHADER_ARB = 0x8B31 + /// + VertexShaderArb = ((int)0x8B31), + /// /// Original was GL_GEOMETRY_SHADER = 0x8DD9 /// GeometryShader = ((int)0x8DD9), @@ -32164,6 +36043,29 @@ namespace OpenTK.Graphics.OpenGL4 ShadingLanguageVersion = ((int)0x8B8C), } + /// + /// Not used directly. + /// + public enum SubroutineParameterName : int + { + /// + /// Original was GL_UNIFORM_SIZE = 0x8A38 + /// + UniformSize = ((int)0x8A38), + /// + /// Original was GL_UNIFORM_NAME_LENGTH = 0x8A39 + /// + UniformNameLength = ((int)0x8A39), + /// + /// Original was GL_NUM_COMPATIBLE_SUBROUTINES = 0x8E4A + /// + NumCompatibleSubroutines = ((int)0x8E4A), + /// + /// Original was GL_COMPATIBLE_SUBROUTINES = 0x8E4B + /// + CompatibleSubroutines = ((int)0x8E4B), + } + /// /// Used in GL.FenceSync /// @@ -32175,6 +36077,22 @@ namespace OpenTK.Graphics.OpenGL4 SyncGpuCommandsComplete = ((int)0x9117), } + /// + /// Not used directly. + /// + [Flags] + public enum SyncObjectMask : int + { + /// + /// Original was GL_SYNC_FLUSH_COMMANDS_BIT = 0x00000001 + /// + SyncFlushCommandsBit = ((int)0x00000001), + /// + /// Original was GL_SYNC_FLUSH_COMMANDS_BIT_APPLE = 0x00000001 + /// + SyncFlushCommandsBitApple = ((int)0x00000001), + } + /// /// Used in GL.GetSync /// @@ -32198,6 +36116,29 @@ namespace OpenTK.Graphics.OpenGL4 SyncFlags = ((int)0x9115), } + /// + /// Not used directly. + /// + public enum SyncStatus : int + { + /// + /// Original was GL_ALREADY_SIGNALED = 0x911A + /// + AlreadySignaled = ((int)0x911A), + /// + /// Original was GL_TIMEOUT_EXPIRED = 0x911B + /// + TimeoutExpired = ((int)0x911B), + /// + /// Original was GL_CONDITION_SATISFIED = 0x911C + /// + ConditionSatisfied = ((int)0x911C), + /// + /// Original was GL_WAIT_FAILED = 0x911D + /// + WaitFailed = ((int)0x911D), + } + /// /// Used in GL.Ext.MultiTexCoordPointer, GL.Ext.VertexArrayMultiTexCoordOffset and 1 other function /// @@ -32696,6 +36637,14 @@ namespace OpenTK.Graphics.OpenGL4 /// public enum TextureGenMode : int { + /// + /// Original was GL_EYE_LINEAR = 0x2400 + /// + EyeLinear = ((int)0x2400), + /// + /// Original was GL_OBJECT_LINEAR = 0x2401 + /// + ObjectLinear = ((int)0x2401), /// /// Original was GL_EYE_DISTANCE_TO_POINT_SGIS = 0x81F0 /// @@ -32750,6 +36699,14 @@ namespace OpenTK.Graphics.OpenGL4 /// public enum TextureLayout : int { + /// + /// Original was GL_LAYOUT_DEPTH_READ_ONLY_STENCIL_ATTACHMENT_EXT = 0x9530 + /// + LayoutDepthReadOnlyStencilAttachmentExt = ((int)0x9530), + /// + /// Original was GL_LAYOUT_DEPTH_ATTACHMENT_STENCIL_READ_ONLY_EXT = 0x9531 + /// + LayoutDepthAttachmentStencilReadOnlyExt = ((int)0x9531), /// /// Original was GL_LAYOUT_GENERAL_EXT = 0x958D /// @@ -32899,15 +36856,39 @@ namespace OpenTK.Graphics.OpenGL4 } /// - /// Used in GL.TexParameter, GL.TexParameterI and 5 other functions + /// Used in GL.TexParameter, GL.TexParameterI and 6 other functions /// public enum TextureParameterName : int { + /// + /// Original was GL_TEXTURE_WIDTH = 0x1000 + /// + TextureWidth = ((int)0x1000), + /// + /// Original was GL_TEXTURE_HEIGHT = 0x1001 + /// + TextureHeight = ((int)0x1001), + /// + /// Original was GL_TEXTURE_COMPONENTS = 0x1003 + /// + TextureComponents = ((int)0x1003), + /// + /// Original was GL_TEXTURE_INTERNAL_FORMAT = 0x1003 + /// + TextureInternalFormat = ((int)0x1003), /// /// Original was GL_TEXTURE_BORDER_COLOR = 0x1004 /// TextureBorderColor = ((int)0x1004), /// + /// Original was GL_TEXTURE_BORDER_COLOR_NV = 0x1004 + /// + TextureBorderColorNv = ((int)0x1004), + /// + /// Original was GL_TEXTURE_BORDER = 0x1005 + /// + TextureBorder = ((int)0x1005), + /// /// Original was GL_TEXTURE_MAG_FILTER = 0x2800 /// TextureMagFilter = ((int)0x2800), @@ -32924,6 +36905,30 @@ namespace OpenTK.Graphics.OpenGL4 /// TextureWrapT = ((int)0x2803), /// + /// Original was GL_TEXTURE_RED_SIZE = 0x805C + /// + TextureRedSize = ((int)0x805C), + /// + /// Original was GL_TEXTURE_GREEN_SIZE = 0x805D + /// + TextureGreenSize = ((int)0x805D), + /// + /// Original was GL_TEXTURE_BLUE_SIZE = 0x805E + /// + TextureBlueSize = ((int)0x805E), + /// + /// Original was GL_TEXTURE_ALPHA_SIZE = 0x805F + /// + TextureAlphaSize = ((int)0x805F), + /// + /// Original was GL_TEXTURE_LUMINANCE_SIZE = 0x8060 + /// + TextureLuminanceSize = ((int)0x8060), + /// + /// Original was GL_TEXTURE_INTENSITY_SIZE = 0x8061 + /// + TextureIntensitySize = ((int)0x8061), + /// /// Original was GL_TEXTURE_PRIORITY = 0x8066 /// TexturePriority = ((int)0x8066), @@ -32932,10 +36937,18 @@ namespace OpenTK.Graphics.OpenGL4 /// TexturePriorityExt = ((int)0x8066), /// + /// Original was GL_TEXTURE_RESIDENT = 0x8067 + /// + TextureResident = ((int)0x8067), + /// /// Original was GL_TEXTURE_DEPTH = 0x8071 /// TextureDepth = ((int)0x8071), /// + /// Original was GL_TEXTURE_DEPTH_EXT = 0x8071 + /// + TextureDepthExt = ((int)0x8071), + /// /// Original was GL_TEXTURE_WRAP_R = 0x8072 /// TextureWrapR = ((int)0x8072), @@ -32956,6 +36969,14 @@ namespace OpenTK.Graphics.OpenGL4 /// DetailTextureModeSgis = ((int)0x809B), /// + /// Original was GL_DETAIL_TEXTURE_FUNC_POINTS_SGIS = 0x809C + /// + DetailTextureFuncPointsSgis = ((int)0x809C), + /// + /// Original was GL_SHARPEN_TEXTURE_FUNC_POINTS_SGIS = 0x80B0 + /// + SharpenTextureFuncPointsSgis = ((int)0x80B0), + /// /// Original was GL_SHADOW_AMBIENT_SGIX = 0x80BF /// ShadowAmbientSgix = ((int)0x80BF), @@ -32980,6 +37001,10 @@ namespace OpenTK.Graphics.OpenGL4 /// ClampToEdge = ((int)0x812F), /// + /// Original was GL_TEXTURE_4DSIZE_SGIS = 0x8136 + /// + Texture4DsizeSgis = ((int)0x8136), + /// /// Original was GL_TEXTURE_WRAP_Q_SGIS = 0x8137 /// TextureWrapQSgis = ((int)0x8137), @@ -32988,18 +37013,38 @@ namespace OpenTK.Graphics.OpenGL4 /// TextureMinLod = ((int)0x813A), /// + /// Original was GL_TEXTURE_MIN_LOD_SGIS = 0x813A + /// + TextureMinLodSgis = ((int)0x813A), + /// /// Original was GL_TEXTURE_MAX_LOD = 0x813B /// TextureMaxLod = ((int)0x813B), /// + /// Original was GL_TEXTURE_MAX_LOD_SGIS = 0x813B + /// + TextureMaxLodSgis = ((int)0x813B), + /// /// Original was GL_TEXTURE_BASE_LEVEL = 0x813C /// TextureBaseLevel = ((int)0x813C), /// + /// Original was GL_TEXTURE_BASE_LEVEL_SGIS = 0x813C + /// + TextureBaseLevelSgis = ((int)0x813C), + /// /// Original was GL_TEXTURE_MAX_LEVEL = 0x813D /// TextureMaxLevel = ((int)0x813D), /// + /// Original was GL_TEXTURE_MAX_LEVEL_SGIS = 0x813D + /// + TextureMaxLevelSgis = ((int)0x813D), + /// + /// Original was GL_TEXTURE_FILTER4_SIZE_SGIS = 0x8147 + /// + TextureFilter4SizeSgis = ((int)0x8147), + /// /// Original was GL_TEXTURE_CLIPMAP_CENTER_SGIX = 0x8171 /// TextureClipmapCenterSgix = ((int)0x8171), @@ -33056,6 +37101,18 @@ namespace OpenTK.Graphics.OpenGL4 /// TextureCompareSgix = ((int)0x819A), /// + /// Original was GL_TEXTURE_COMPARE_OPERATOR_SGIX = 0x819B + /// + TextureCompareOperatorSgix = ((int)0x819B), + /// + /// Original was GL_TEXTURE_LEQUAL_R_SGIX = 0x819C + /// + TextureLequalRSgix = ((int)0x819C), + /// + /// Original was GL_TEXTURE_GEQUAL_R_SGIX = 0x819D + /// + TextureGequalRSgix = ((int)0x819D), + /// /// Original was GL_TEXTURE_MAX_CLAMP_S_SGIX = 0x8369 /// TextureMaxClampSSgix = ((int)0x8369), @@ -33114,7 +37171,19 @@ namespace OpenTK.Graphics.OpenGL4 } /// - /// Used in GL.Arb.FramebufferTextureFace, GL.Arb.TexBuffer and 91 other functions + /// Not used directly. + /// + [Flags] + public enum TextureStorageMaskAmd : int + { + /// + /// Original was GL_TEXTURE_STORAGE_SPARSE_BIT_AMD = 0x00000001 + /// + TextureStorageSparseBitAmd = ((int)0x00000001), + } + + /// + /// Used in GL.Arb.FramebufferTextureFace, GL.Arb.GetnCompressedTexImage and 96 other functions /// public enum TextureTarget : int { @@ -33665,6 +37734,33 @@ namespace OpenTK.Graphics.OpenGL4 TransformFeedbackActive = ((int)0x8E24), } + /// + /// Not used directly. + /// + public enum TransformFeedbackPName : int + { + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER_START = 0x8C84 + /// + TransformFeedbackBufferStart = ((int)0x8C84), + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER_SIZE = 0x8C85 + /// + TransformFeedbackBufferSize = ((int)0x8C85), + /// + /// Original was GL_TRANSFORM_FEEDBACK_BUFFER_BINDING = 0x8C8F + /// + TransformFeedbackBufferBinding = ((int)0x8C8F), + /// + /// Original was GL_TRANSFORM_FEEDBACK_PAUSED = 0x8E23 + /// + TransformFeedbackPaused = ((int)0x8E23), + /// + /// Original was GL_TRANSFORM_FEEDBACK_ACTIVE = 0x8E24 + /// + TransformFeedbackActive = ((int)0x8E24), + } + /// /// Used in GL.BeginTransformFeedback /// @@ -33838,9 +37934,126 @@ namespace OpenTK.Graphics.OpenGL4 DoubleVec4 = ((int)0x8FFE), } + /// + /// Used in GL.Ext.GetDouble, GL.Ext.GetDoubleIndexed and 6 other functions + /// + public enum TypeEnum : int + { + /// + /// Original was GL_QUERY_WAIT = 0x8E13 + /// + QueryWait = ((int)0x8E13), + /// + /// Original was GL_QUERY_NO_WAIT = 0x8E14 + /// + QueryNoWait = ((int)0x8E14), + /// + /// Original was GL_QUERY_BY_REGION_WAIT = 0x8E15 + /// + QueryByRegionWait = ((int)0x8E15), + /// + /// Original was GL_QUERY_BY_REGION_NO_WAIT = 0x8E16 + /// + QueryByRegionNoWait = ((int)0x8E16), + } + /// /// Not used directly. /// + public enum UniformBlockPName : int + { + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_CONTROL_SHADER = 0x84F0 + /// + UniformBlockReferencedByTessControlShader = ((int)0x84F0), + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_EVALUATION_SHADER = 0x84F1 + /// + UniformBlockReferencedByTessEvaluationShader = ((int)0x84F1), + /// + /// Original was GL_UNIFORM_BLOCK_BINDING = 0x8A3F + /// + UniformBlockBinding = ((int)0x8A3F), + /// + /// Original was GL_UNIFORM_BLOCK_DATA_SIZE = 0x8A40 + /// + UniformBlockDataSize = ((int)0x8A40), + /// + /// Original was GL_UNIFORM_BLOCK_NAME_LENGTH = 0x8A41 + /// + UniformBlockNameLength = ((int)0x8A41), + /// + /// Original was GL_UNIFORM_BLOCK_ACTIVE_UNIFORMS = 0x8A42 + /// + UniformBlockActiveUniforms = ((int)0x8A42), + /// + /// Original was GL_UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES = 0x8A43 + /// + UniformBlockActiveUniformIndices = ((int)0x8A43), + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER = 0x8A44 + /// + UniformBlockReferencedByVertexShader = ((int)0x8A44), + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_GEOMETRY_SHADER = 0x8A45 + /// + UniformBlockReferencedByGeometryShader = ((int)0x8A45), + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER = 0x8A46 + /// + UniformBlockReferencedByFragmentShader = ((int)0x8A46), + /// + /// Original was GL_UNIFORM_BLOCK_REFERENCED_BY_COMPUTE_SHADER = 0x90EC + /// + UniformBlockReferencedByComputeShader = ((int)0x90EC), + } + + /// + /// Not used directly. + /// + public enum UniformPName : int + { + /// + /// Original was GL_UNIFORM_TYPE = 0x8A37 + /// + UniformType = ((int)0x8A37), + /// + /// Original was GL_UNIFORM_SIZE = 0x8A38 + /// + UniformSize = ((int)0x8A38), + /// + /// Original was GL_UNIFORM_NAME_LENGTH = 0x8A39 + /// + UniformNameLength = ((int)0x8A39), + /// + /// Original was GL_UNIFORM_BLOCK_INDEX = 0x8A3A + /// + UniformBlockIndex = ((int)0x8A3A), + /// + /// Original was GL_UNIFORM_OFFSET = 0x8A3B + /// + UniformOffset = ((int)0x8A3B), + /// + /// Original was GL_UNIFORM_ARRAY_STRIDE = 0x8A3C + /// + UniformArrayStride = ((int)0x8A3C), + /// + /// Original was GL_UNIFORM_MATRIX_STRIDE = 0x8A3D + /// + UniformMatrixStride = ((int)0x8A3D), + /// + /// Original was GL_UNIFORM_IS_ROW_MAJOR = 0x8A3E + /// + UniformIsRowMajor = ((int)0x8A3E), + /// + /// Original was GL_UNIFORM_ATOMIC_COUNTER_BUFFER_INDEX = 0x92DA + /// + UniformAtomicCounterBufferIndex = ((int)0x92DA), + } + + /// + /// Used in GL.Ext.UseProgramStages + /// [Flags] public enum UseProgramStageMask : int { @@ -33869,6 +38082,10 @@ namespace OpenTK.Graphics.OpenGL4 /// GeometryShaderBitExt = ((int)0x00000004), /// + /// Original was GL_GEOMETRY_SHADER_BIT_OES = 0x00000004 + /// + GeometryShaderBitOes = ((int)0x00000004), + /// /// Original was GL_TESS_CONTROL_SHADER_BIT = 0x00000008 /// TessControlShaderBit = ((int)0x00000008), @@ -33877,6 +38094,10 @@ namespace OpenTK.Graphics.OpenGL4 /// TessControlShaderBitExt = ((int)0x00000008), /// + /// Original was GL_TESS_CONTROL_SHADER_BIT_OES = 0x00000008 + /// + TessControlShaderBitOes = ((int)0x00000008), + /// /// Original was GL_TESS_EVALUATION_SHADER_BIT = 0x00000010 /// TessEvaluationShaderBit = ((int)0x00000010), @@ -33885,6 +38106,10 @@ namespace OpenTK.Graphics.OpenGL4 /// TessEvaluationShaderBitExt = ((int)0x00000010), /// + /// Original was GL_TESS_EVALUATION_SHADER_BIT_OES = 0x00000010 + /// + TessEvaluationShaderBitOes = ((int)0x00000010), + /// /// Original was GL_COMPUTE_SHADER_BIT = 0x00000020 /// ComputeShaderBit = ((int)0x00000020), @@ -35128,6 +39353,10 @@ namespace OpenTK.Graphics.OpenGL4 /// OneMinusConstantAlpha = ((int)0x8004), /// + /// Original was GL_BLEND_COLOR = 0x8005 + /// + BlendColor = ((int)0x8005), + /// /// Original was GL_FUNC_ADD = 0x8006 /// FuncAdd = ((int)0x8006), @@ -35140,6 +39369,10 @@ namespace OpenTK.Graphics.OpenGL4 /// Max = ((int)0x8008), /// + /// Original was GL_BLEND_EQUATION = 0x8009 + /// + BlendEquation = ((int)0x8009), + /// /// Original was GL_FUNC_SUBTRACT = 0x800A /// FuncSubtract = ((int)0x800A), @@ -39668,6 +43901,49 @@ namespace OpenTK.Graphics.OpenGL4 ElementArrayBufferBinding = ((int)0x8895), } + /// + /// Used in GL.Ext.GetVertexArrayInteger, GL.Ext.GetVertexArrayPointer + /// + public enum VertexArrayPName : int + { + /// + /// Original was GL_VERTEX_ATTRIB_RELATIVE_OFFSET = 0x82D5 + /// + VertexAttribRelativeOffset = ((int)0x82D5), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_ENABLED = 0x8622 + /// + VertexAttribArrayEnabled = ((int)0x8622), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_SIZE = 0x8623 + /// + VertexAttribArraySize = ((int)0x8623), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_STRIDE = 0x8624 + /// + VertexAttribArrayStride = ((int)0x8624), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_TYPE = 0x8625 + /// + VertexAttribArrayType = ((int)0x8625), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_LONG = 0x874E + /// + VertexAttribArrayLong = ((int)0x874E), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_NORMALIZED = 0x886A + /// + VertexAttribArrayNormalized = ((int)0x886A), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_INTEGER = 0x88FD + /// + VertexAttribArrayInteger = ((int)0x88FD), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_DIVISOR = 0x88FE + /// + VertexAttribArrayDivisor = ((int)0x88FE), + } + /// /// Used in GL.VertexAttribLFormat, GL.VertexAttribLPointer /// @@ -39690,6 +43966,49 @@ namespace OpenTK.Graphics.OpenGL4 Double = ((int)0x140A), } + /// + /// Used in GL.Ext.VertexArrayVertexAttribIOffset, GL.NV.GetVertexAttribL + /// + public enum VertexAttribEnum : int + { + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_ENABLED = 0x8622 + /// + VertexAttribArrayEnabled = ((int)0x8622), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_SIZE = 0x8623 + /// + VertexAttribArraySize = ((int)0x8623), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_STRIDE = 0x8624 + /// + VertexAttribArrayStride = ((int)0x8624), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_TYPE = 0x8625 + /// + VertexAttribArrayType = ((int)0x8625), + /// + /// Original was GL_CURRENT_VERTEX_ATTRIB = 0x8626 + /// + CurrentVertexAttrib = ((int)0x8626), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_NORMALIZED = 0x886A + /// + VertexAttribArrayNormalized = ((int)0x886A), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING = 0x889F + /// + VertexAttribArrayBufferBinding = ((int)0x889F), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_INTEGER = 0x88FD + /// + VertexAttribArrayInteger = ((int)0x88FD), + /// + /// Original was GL_VERTEX_ATTRIB_ARRAY_DIVISOR = 0x88FE + /// + VertexAttribArrayDivisor = ((int)0x88FE), + } + /// /// Used in GL.VertexAttribIFormat, GL.VertexAttribIPointer /// @@ -39898,6 +44217,10 @@ namespace OpenTK.Graphics.OpenGL4 /// UnsignedInt2101010Rev = ((int)0x8368), /// + /// Original was GL_UNSIGNED_INT_10F_11F_11F_REV = 0x8C3B + /// + UnsignedInt10F11F11FRev = ((int)0x8C3B), + /// /// Original was GL_INT_2_10_10_10_REV = 0x8D9F /// Int2101010Rev = ((int)0x8D9F), @@ -39943,7 +44266,7 @@ namespace OpenTK.Graphics.OpenGL4 } /// - /// Used in GL.VertexArrayAttribFormat, GL.VertexArrayAttribIFormat and 1 other function + /// Used in GL.VertexArrayAttribFormat, GL.VertexArrayAttribIFormat and 3 other functions /// public enum VertexAttribType : int { @@ -39992,13 +44315,103 @@ namespace OpenTK.Graphics.OpenGL4 /// UnsignedInt2101010Rev = ((int)0x8368), /// + /// Original was GL_UNSIGNED_INT_10F_11F_11F_REV = 0x8C3B + /// + UnsignedInt10F11F11FRev = ((int)0x8C3B), + /// /// Original was GL_INT_2_10_10_10_REV = 0x8D9F /// Int2101010Rev = ((int)0x8D9F), } /// - /// Used in GL.Ext.VertexArrayVertexOffset + /// Not used directly. + /// + public enum VertexBufferObjectParameter : int + { + /// + /// Original was GL_BUFFER_IMMUTABLE_STORAGE = 0x821F + /// + BufferImmutableStorage = ((int)0x821F), + /// + /// Original was GL_BUFFER_STORAGE_FLAGS = 0x8220 + /// + BufferStorageFlags = ((int)0x8220), + /// + /// Original was GL_BUFFER_SIZE = 0x8764 + /// + BufferSize = ((int)0x8764), + /// + /// Original was GL_BUFFER_USAGE = 0x8765 + /// + BufferUsage = ((int)0x8765), + /// + /// Original was GL_BUFFER_ACCESS = 0x88BB + /// + BufferAccess = ((int)0x88BB), + /// + /// Original was GL_BUFFER_MAPPED = 0x88BC + /// + BufferMapped = ((int)0x88BC), + /// + /// Original was GL_BUFFER_ACCESS_FLAGS = 0x911F + /// + BufferAccessFlags = ((int)0x911F), + /// + /// Original was GL_BUFFER_MAP_LENGTH = 0x9120 + /// + BufferMapLength = ((int)0x9120), + /// + /// Original was GL_BUFFER_MAP_OFFSET = 0x9121 + /// + BufferMapOffset = ((int)0x9121), + } + + /// + /// Not used directly. + /// + public enum VertexBufferObjectUsage : int + { + /// + /// Original was GL_STREAM_DRAW = 0x88E0 + /// + StreamDraw = ((int)0x88E0), + /// + /// Original was GL_STREAM_READ = 0x88E1 + /// + StreamRead = ((int)0x88E1), + /// + /// Original was GL_STREAM_COPY = 0x88E2 + /// + StreamCopy = ((int)0x88E2), + /// + /// Original was GL_STATIC_DRAW = 0x88E4 + /// + StaticDraw = ((int)0x88E4), + /// + /// Original was GL_STATIC_READ = 0x88E5 + /// + StaticRead = ((int)0x88E5), + /// + /// Original was GL_STATIC_COPY = 0x88E6 + /// + StaticCopy = ((int)0x88E6), + /// + /// Original was GL_DYNAMIC_DRAW = 0x88E8 + /// + DynamicDraw = ((int)0x88E8), + /// + /// Original was GL_DYNAMIC_READ = 0x88E9 + /// + DynamicRead = ((int)0x88E9), + /// + /// Original was GL_DYNAMIC_COPY = 0x88EA + /// + DynamicCopy = ((int)0x88EA), + } + + /// + /// Used in GL.Ext.VertexArrayVertexOffset, GL.NV.VertexFormat /// public enum VertexPointerType : int { @@ -40032,6 +44445,21 @@ namespace OpenTK.Graphics.OpenGL4 Int2101010Rev = ((int)0x8D9F), } + /// + /// Not used directly. + /// + public enum VertexProvokingMode : int + { + /// + /// Original was GL_FIRST_VERTEX_CONVENTION = 0x8E4D + /// + FirstVertexConvention = ((int)0x8E4D), + /// + /// Original was GL_LAST_VERTEX_CONVENTION = 0x8E4E + /// + LastVertexConvention = ((int)0x8E4E), + } + /// /// Used in GL.FenceSync, GL.WaitSync /// From e72432fe014bd0f1ec1336a3c4ce30ca5d2a7ccf Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Tue, 26 Dec 2017 18:42:20 +0000 Subject: [PATCH 90/91] Remove Test.API.Desktop --- OpenTK.sln | 7 - .../Test.API.Desktop/Test.API.Desktop.csproj | 47 - tests/Test.API.Desktop/api.cs | 156186 --------------- 3 files changed, 156240 deletions(-) delete mode 100644 tests/Test.API.Desktop/Test.API.Desktop.csproj delete mode 100644 tests/Test.API.Desktop/api.cs diff --git a/OpenTK.sln b/OpenTK.sln index 36f4ca74..62f6849b 100644 --- a/OpenTK.sln +++ b/OpenTK.sln @@ -21,8 +21,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OpenTK.GLWidget", "src\Open EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{1857BB8E-1A35-4EBF-9F6D-685F11DC025B}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Test.API.Desktop", "tests\Test.API.Desktop\Test.API.Desktop.csproj", "{C4DDD20F-CB4E-43F4-A75C-4A3D668E1F99}" -EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".paket", ".paket", "{F1A57014-71CE-4032-A652-01B7E35E14DB}" ProjectSection(SolutionItems) = preProject paket.dependencies = paket.dependencies @@ -78,10 +76,6 @@ Global {A625BE87-0000-0000-0000-000000000000}.Debug|Any CPU.Build.0 = Debug|Any CPU {A625BE87-0000-0000-0000-000000000000}.Release|Any CPU.ActiveCfg = Release|Any CPU {A625BE87-0000-0000-0000-000000000000}.Release|Any CPU.Build.0 = Release|Any CPU - {C4DDD20F-CB4E-43F4-A75C-4A3D668E1F99}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {C4DDD20F-CB4E-43F4-A75C-4A3D668E1F99}.Debug|Any CPU.Build.0 = Debug|Any CPU - {C4DDD20F-CB4E-43F4-A75C-4A3D668E1F99}.Release|Any CPU.ActiveCfg = Release|Any CPU - {C4DDD20F-CB4E-43F4-A75C-4A3D668E1F99}.Release|Any CPU.Build.0 = Release|Any CPU {6801C263-ADDA-4A7B-979D-649BCB5A1DF7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {6801C263-ADDA-4A7B-979D-649BCB5A1DF7}.Debug|Any CPU.Build.0 = Debug|Any CPU {6801C263-ADDA-4A7B-979D-649BCB5A1DF7}.Release|Any CPU.ActiveCfg = Release|Any CPU @@ -95,7 +89,6 @@ Global HideSolutionNode = FALSE EndGlobalSection GlobalSection(NestedProjects) = preSolution - {C4DDD20F-CB4E-43F4-A75C-4A3D668E1F99} = {1857BB8E-1A35-4EBF-9F6D-685F11DC025B} {6801C263-ADDA-4A7B-979D-649BCB5A1DF7} = {1857BB8E-1A35-4EBF-9F6D-685F11DC025B} {522D9279-3ED6-475F-867A-6AE69A53C24A} = {1857BB8E-1A35-4EBF-9F6D-685F11DC025B} EndGlobalSection diff --git a/tests/Test.API.Desktop/Test.API.Desktop.csproj b/tests/Test.API.Desktop/Test.API.Desktop.csproj deleted file mode 100644 index 1d9e0d89..00000000 --- a/tests/Test.API.Desktop/Test.API.Desktop.csproj +++ /dev/null @@ -1,47 +0,0 @@ - - - - Debug - AnyCPU - 8.0.30703 - 2.0 - {C4DDD20F-CB4E-43F4-A75C-4A3D668E1F99} - Exe - Test.API.Desktop - Test.API.Desktop - v2.0 - - - true - full - false - ..\..\..\Binaries\Tests\Debug - DEBUG; - prompt - 4 - false - true - - - full - true - ..\..\..\Binaries\Tests\Release - prompt - 4 - false - true - - - - - {A37A7E14-0000-0000-0000-000000000000} - OpenTK - - - - - - - - - \ No newline at end of file diff --git a/tests/Test.API.Desktop/api.cs b/tests/Test.API.Desktop/api.cs deleted file mode 100644 index 173d3569..00000000 --- a/tests/Test.API.Desktop/api.cs +++ /dev/null @@ -1,156186 +0,0 @@ -#pragma warning disable 219,612,618,1720 -class Test { -public static void Main() { } -static void Test_AccumOp_19316() { - var _Accum = OpenTK.Graphics.OpenGL.AccumOp.Accum; - var _Load = OpenTK.Graphics.OpenGL.AccumOp.Load; - var _Return = OpenTK.Graphics.OpenGL.AccumOp.Return; - var _Mult = OpenTK.Graphics.OpenGL.AccumOp.Mult; - var _Add = OpenTK.Graphics.OpenGL.AccumOp.Add; -} -static void Test_ActiveAttribType_19317() { - var _None = OpenTK.Graphics.OpenGL.ActiveAttribType.None; - var _Int = OpenTK.Graphics.OpenGL.ActiveAttribType.Int; - var _UnsignedInt = OpenTK.Graphics.OpenGL.ActiveAttribType.UnsignedInt; - var _Float = OpenTK.Graphics.OpenGL.ActiveAttribType.Float; - var _Double = OpenTK.Graphics.OpenGL.ActiveAttribType.Double; - var _FloatVec2 = OpenTK.Graphics.OpenGL.ActiveAttribType.FloatVec2; - var _FloatVec3 = OpenTK.Graphics.OpenGL.ActiveAttribType.FloatVec3; - var _FloatVec4 = OpenTK.Graphics.OpenGL.ActiveAttribType.FloatVec4; - var _IntVec2 = OpenTK.Graphics.OpenGL.ActiveAttribType.IntVec2; - var _IntVec3 = OpenTK.Graphics.OpenGL.ActiveAttribType.IntVec3; - var _IntVec4 = OpenTK.Graphics.OpenGL.ActiveAttribType.IntVec4; - var _FloatMat2 = OpenTK.Graphics.OpenGL.ActiveAttribType.FloatMat2; - var _FloatMat3 = OpenTK.Graphics.OpenGL.ActiveAttribType.FloatMat3; - var _FloatMat4 = OpenTK.Graphics.OpenGL.ActiveAttribType.FloatMat4; - var _FloatMat2x3 = OpenTK.Graphics.OpenGL.ActiveAttribType.FloatMat2x3; - var _FloatMat2x4 = OpenTK.Graphics.OpenGL.ActiveAttribType.FloatMat2x4; - var _FloatMat3x2 = OpenTK.Graphics.OpenGL.ActiveAttribType.FloatMat3x2; - var _FloatMat3x4 = OpenTK.Graphics.OpenGL.ActiveAttribType.FloatMat3x4; - var _FloatMat4x2 = OpenTK.Graphics.OpenGL.ActiveAttribType.FloatMat4x2; - var _FloatMat4x3 = OpenTK.Graphics.OpenGL.ActiveAttribType.FloatMat4x3; - var _UnsignedIntVec2 = OpenTK.Graphics.OpenGL.ActiveAttribType.UnsignedIntVec2; - var _UnsignedIntVec3 = OpenTK.Graphics.OpenGL.ActiveAttribType.UnsignedIntVec3; - var _UnsignedIntVec4 = OpenTK.Graphics.OpenGL.ActiveAttribType.UnsignedIntVec4; - var _DoubleMat2 = OpenTK.Graphics.OpenGL.ActiveAttribType.DoubleMat2; - var _DoubleMat3 = OpenTK.Graphics.OpenGL.ActiveAttribType.DoubleMat3; - var _DoubleMat4 = OpenTK.Graphics.OpenGL.ActiveAttribType.DoubleMat4; - var _DoubleMat2x3 = OpenTK.Graphics.OpenGL.ActiveAttribType.DoubleMat2x3; - var _DoubleMat2x4 = OpenTK.Graphics.OpenGL.ActiveAttribType.DoubleMat2x4; - var _DoubleMat3x2 = OpenTK.Graphics.OpenGL.ActiveAttribType.DoubleMat3x2; - var _DoubleMat3x4 = OpenTK.Graphics.OpenGL.ActiveAttribType.DoubleMat3x4; - var _DoubleMat4x2 = OpenTK.Graphics.OpenGL.ActiveAttribType.DoubleMat4x2; - var _DoubleMat4x3 = OpenTK.Graphics.OpenGL.ActiveAttribType.DoubleMat4x3; - var _DoubleVec2 = OpenTK.Graphics.OpenGL.ActiveAttribType.DoubleVec2; - var _DoubleVec3 = OpenTK.Graphics.OpenGL.ActiveAttribType.DoubleVec3; - var _DoubleVec4 = OpenTK.Graphics.OpenGL.ActiveAttribType.DoubleVec4; -} -static void Test_ActiveSubroutineUniformParameter_19318() { - var _UniformSize = OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter.UniformSize; - var _UniformNameLength = OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter.UniformNameLength; - var _NumCompatibleSubroutines = OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter.NumCompatibleSubroutines; - var _CompatibleSubroutines = OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter.CompatibleSubroutines; -} -static void Test_ActiveUniformBlockParameter_19319() { - var _UniformBlockReferencedByTessControlShader = OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter.UniformBlockReferencedByTessControlShader; - var _UniformBlockReferencedByTessEvaluationShader = OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter.UniformBlockReferencedByTessEvaluationShader; - var _UniformBlockBinding = OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter.UniformBlockBinding; - var _UniformBlockDataSize = OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter.UniformBlockDataSize; - var _UniformBlockNameLength = OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter.UniformBlockNameLength; - var _UniformBlockActiveUniforms = OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter.UniformBlockActiveUniforms; - var _UniformBlockActiveUniformIndices = OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter.UniformBlockActiveUniformIndices; - var _UniformBlockReferencedByVertexShader = OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter.UniformBlockReferencedByVertexShader; - var _UniformBlockReferencedByGeometryShader = OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter.UniformBlockReferencedByGeometryShader; - var _UniformBlockReferencedByFragmentShader = OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter.UniformBlockReferencedByFragmentShader; - var _UniformBlockReferencedByComputeShader = OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter.UniformBlockReferencedByComputeShader; -} -static void Test_ActiveUniformParameter_19320() { - var _UniformType = OpenTK.Graphics.OpenGL.ActiveUniformParameter.UniformType; - var _UniformSize = OpenTK.Graphics.OpenGL.ActiveUniformParameter.UniformSize; - var _UniformNameLength = OpenTK.Graphics.OpenGL.ActiveUniformParameter.UniformNameLength; - var _UniformBlockIndex = OpenTK.Graphics.OpenGL.ActiveUniformParameter.UniformBlockIndex; - var _UniformOffset = OpenTK.Graphics.OpenGL.ActiveUniformParameter.UniformOffset; - var _UniformArrayStride = OpenTK.Graphics.OpenGL.ActiveUniformParameter.UniformArrayStride; - var _UniformMatrixStride = OpenTK.Graphics.OpenGL.ActiveUniformParameter.UniformMatrixStride; - var _UniformIsRowMajor = OpenTK.Graphics.OpenGL.ActiveUniformParameter.UniformIsRowMajor; - var _UniformAtomicCounterBufferIndex = OpenTK.Graphics.OpenGL.ActiveUniformParameter.UniformAtomicCounterBufferIndex; -} -static void Test_ActiveUniformType_19321() { - var _Int = OpenTK.Graphics.OpenGL.ActiveUniformType.Int; - var _UnsignedInt = OpenTK.Graphics.OpenGL.ActiveUniformType.UnsignedInt; - var _Float = OpenTK.Graphics.OpenGL.ActiveUniformType.Float; - var _Double = OpenTK.Graphics.OpenGL.ActiveUniformType.Double; - var _FloatVec2 = OpenTK.Graphics.OpenGL.ActiveUniformType.FloatVec2; - var _FloatVec3 = OpenTK.Graphics.OpenGL.ActiveUniformType.FloatVec3; - var _FloatVec4 = OpenTK.Graphics.OpenGL.ActiveUniformType.FloatVec4; - var _IntVec2 = OpenTK.Graphics.OpenGL.ActiveUniformType.IntVec2; - var _IntVec3 = OpenTK.Graphics.OpenGL.ActiveUniformType.IntVec3; - var _IntVec4 = OpenTK.Graphics.OpenGL.ActiveUniformType.IntVec4; - var _Bool = OpenTK.Graphics.OpenGL.ActiveUniformType.Bool; - var _BoolVec2 = OpenTK.Graphics.OpenGL.ActiveUniformType.BoolVec2; - var _BoolVec3 = OpenTK.Graphics.OpenGL.ActiveUniformType.BoolVec3; - var _BoolVec4 = OpenTK.Graphics.OpenGL.ActiveUniformType.BoolVec4; - var _FloatMat2 = OpenTK.Graphics.OpenGL.ActiveUniformType.FloatMat2; - var _FloatMat3 = OpenTK.Graphics.OpenGL.ActiveUniformType.FloatMat3; - var _FloatMat4 = OpenTK.Graphics.OpenGL.ActiveUniformType.FloatMat4; - var _Sampler1D = OpenTK.Graphics.OpenGL.ActiveUniformType.Sampler1D; - var _Sampler2D = OpenTK.Graphics.OpenGL.ActiveUniformType.Sampler2D; - var _Sampler3D = OpenTK.Graphics.OpenGL.ActiveUniformType.Sampler3D; - var _SamplerCube = OpenTK.Graphics.OpenGL.ActiveUniformType.SamplerCube; - var _Sampler1DShadow = OpenTK.Graphics.OpenGL.ActiveUniformType.Sampler1DShadow; - var _Sampler2DShadow = OpenTK.Graphics.OpenGL.ActiveUniformType.Sampler2DShadow; - var _Sampler2DRect = OpenTK.Graphics.OpenGL.ActiveUniformType.Sampler2DRect; - var _Sampler2DRectShadow = OpenTK.Graphics.OpenGL.ActiveUniformType.Sampler2DRectShadow; - var _FloatMat2x3 = OpenTK.Graphics.OpenGL.ActiveUniformType.FloatMat2x3; - var _FloatMat2x4 = OpenTK.Graphics.OpenGL.ActiveUniformType.FloatMat2x4; - var _FloatMat3x2 = OpenTK.Graphics.OpenGL.ActiveUniformType.FloatMat3x2; - var _FloatMat3x4 = OpenTK.Graphics.OpenGL.ActiveUniformType.FloatMat3x4; - var _FloatMat4x2 = OpenTK.Graphics.OpenGL.ActiveUniformType.FloatMat4x2; - var _FloatMat4x3 = OpenTK.Graphics.OpenGL.ActiveUniformType.FloatMat4x3; - var _Sampler1DArray = OpenTK.Graphics.OpenGL.ActiveUniformType.Sampler1DArray; - var _Sampler2DArray = OpenTK.Graphics.OpenGL.ActiveUniformType.Sampler2DArray; - var _SamplerBuffer = OpenTK.Graphics.OpenGL.ActiveUniformType.SamplerBuffer; - var _Sampler1DArrayShadow = OpenTK.Graphics.OpenGL.ActiveUniformType.Sampler1DArrayShadow; - var _Sampler2DArrayShadow = OpenTK.Graphics.OpenGL.ActiveUniformType.Sampler2DArrayShadow; - var _SamplerCubeShadow = OpenTK.Graphics.OpenGL.ActiveUniformType.SamplerCubeShadow; - var _UnsignedIntVec2 = OpenTK.Graphics.OpenGL.ActiveUniformType.UnsignedIntVec2; - var _UnsignedIntVec3 = OpenTK.Graphics.OpenGL.ActiveUniformType.UnsignedIntVec3; - var _UnsignedIntVec4 = OpenTK.Graphics.OpenGL.ActiveUniformType.UnsignedIntVec4; - var _IntSampler1D = OpenTK.Graphics.OpenGL.ActiveUniformType.IntSampler1D; - var _IntSampler2D = OpenTK.Graphics.OpenGL.ActiveUniformType.IntSampler2D; - var _IntSampler3D = OpenTK.Graphics.OpenGL.ActiveUniformType.IntSampler3D; - var _IntSamplerCube = OpenTK.Graphics.OpenGL.ActiveUniformType.IntSamplerCube; - var _IntSampler2DRect = OpenTK.Graphics.OpenGL.ActiveUniformType.IntSampler2DRect; - var _IntSampler1DArray = OpenTK.Graphics.OpenGL.ActiveUniformType.IntSampler1DArray; - var _IntSampler2DArray = OpenTK.Graphics.OpenGL.ActiveUniformType.IntSampler2DArray; - var _IntSamplerBuffer = OpenTK.Graphics.OpenGL.ActiveUniformType.IntSamplerBuffer; - var _UnsignedIntSampler1D = OpenTK.Graphics.OpenGL.ActiveUniformType.UnsignedIntSampler1D; - var _UnsignedIntSampler2D = OpenTK.Graphics.OpenGL.ActiveUniformType.UnsignedIntSampler2D; - var _UnsignedIntSampler3D = OpenTK.Graphics.OpenGL.ActiveUniformType.UnsignedIntSampler3D; - var _UnsignedIntSamplerCube = OpenTK.Graphics.OpenGL.ActiveUniformType.UnsignedIntSamplerCube; - var _UnsignedIntSampler2DRect = OpenTK.Graphics.OpenGL.ActiveUniformType.UnsignedIntSampler2DRect; - var _UnsignedIntSampler1DArray = OpenTK.Graphics.OpenGL.ActiveUniformType.UnsignedIntSampler1DArray; - var _UnsignedIntSampler2DArray = OpenTK.Graphics.OpenGL.ActiveUniformType.UnsignedIntSampler2DArray; - var _UnsignedIntSamplerBuffer = OpenTK.Graphics.OpenGL.ActiveUniformType.UnsignedIntSamplerBuffer; - var _DoubleVec2 = OpenTK.Graphics.OpenGL.ActiveUniformType.DoubleVec2; - var _DoubleVec3 = OpenTK.Graphics.OpenGL.ActiveUniformType.DoubleVec3; - var _DoubleVec4 = OpenTK.Graphics.OpenGL.ActiveUniformType.DoubleVec4; - var _SamplerCubeMapArray = OpenTK.Graphics.OpenGL.ActiveUniformType.SamplerCubeMapArray; - var _SamplerCubeMapArrayShadow = OpenTK.Graphics.OpenGL.ActiveUniformType.SamplerCubeMapArrayShadow; - var _IntSamplerCubeMapArray = OpenTK.Graphics.OpenGL.ActiveUniformType.IntSamplerCubeMapArray; - var _UnsignedIntSamplerCubeMapArray = OpenTK.Graphics.OpenGL.ActiveUniformType.UnsignedIntSamplerCubeMapArray; - var _Image1D = OpenTK.Graphics.OpenGL.ActiveUniformType.Image1D; - var _Image2D = OpenTK.Graphics.OpenGL.ActiveUniformType.Image2D; - var _Image3D = OpenTK.Graphics.OpenGL.ActiveUniformType.Image3D; - var _Image2DRect = OpenTK.Graphics.OpenGL.ActiveUniformType.Image2DRect; - var _ImageCube = OpenTK.Graphics.OpenGL.ActiveUniformType.ImageCube; - var _ImageBuffer = OpenTK.Graphics.OpenGL.ActiveUniformType.ImageBuffer; - var _Image1DArray = OpenTK.Graphics.OpenGL.ActiveUniformType.Image1DArray; - var _Image2DArray = OpenTK.Graphics.OpenGL.ActiveUniformType.Image2DArray; - var _ImageCubeMapArray = OpenTK.Graphics.OpenGL.ActiveUniformType.ImageCubeMapArray; - var _Image2DMultisample = OpenTK.Graphics.OpenGL.ActiveUniformType.Image2DMultisample; - var _Image2DMultisampleArray = OpenTK.Graphics.OpenGL.ActiveUniformType.Image2DMultisampleArray; - var _IntImage1D = OpenTK.Graphics.OpenGL.ActiveUniformType.IntImage1D; - var _IntImage2D = OpenTK.Graphics.OpenGL.ActiveUniformType.IntImage2D; - var _IntImage3D = OpenTK.Graphics.OpenGL.ActiveUniformType.IntImage3D; - var _IntImage2DRect = OpenTK.Graphics.OpenGL.ActiveUniformType.IntImage2DRect; - var _IntImageCube = OpenTK.Graphics.OpenGL.ActiveUniformType.IntImageCube; - var _IntImageBuffer = OpenTK.Graphics.OpenGL.ActiveUniformType.IntImageBuffer; - var _IntImage1DArray = OpenTK.Graphics.OpenGL.ActiveUniformType.IntImage1DArray; - var _IntImage2DArray = OpenTK.Graphics.OpenGL.ActiveUniformType.IntImage2DArray; - var _IntImageCubeMapArray = OpenTK.Graphics.OpenGL.ActiveUniformType.IntImageCubeMapArray; - var _IntImage2DMultisample = OpenTK.Graphics.OpenGL.ActiveUniformType.IntImage2DMultisample; - var _IntImage2DMultisampleArray = OpenTK.Graphics.OpenGL.ActiveUniformType.IntImage2DMultisampleArray; - var _UnsignedIntImage1D = OpenTK.Graphics.OpenGL.ActiveUniformType.UnsignedIntImage1D; - var _UnsignedIntImage2D = OpenTK.Graphics.OpenGL.ActiveUniformType.UnsignedIntImage2D; - var _UnsignedIntImage3D = OpenTK.Graphics.OpenGL.ActiveUniformType.UnsignedIntImage3D; - var _UnsignedIntImage2DRect = OpenTK.Graphics.OpenGL.ActiveUniformType.UnsignedIntImage2DRect; - var _UnsignedIntImageCube = OpenTK.Graphics.OpenGL.ActiveUniformType.UnsignedIntImageCube; - var _UnsignedIntImageBuffer = OpenTK.Graphics.OpenGL.ActiveUniformType.UnsignedIntImageBuffer; - var _UnsignedIntImage1DArray = OpenTK.Graphics.OpenGL.ActiveUniformType.UnsignedIntImage1DArray; - var _UnsignedIntImage2DArray = OpenTK.Graphics.OpenGL.ActiveUniformType.UnsignedIntImage2DArray; - var _UnsignedIntImageCubeMapArray = OpenTK.Graphics.OpenGL.ActiveUniformType.UnsignedIntImageCubeMapArray; - var _UnsignedIntImage2DMultisample = OpenTK.Graphics.OpenGL.ActiveUniformType.UnsignedIntImage2DMultisample; - var _UnsignedIntImage2DMultisampleArray = OpenTK.Graphics.OpenGL.ActiveUniformType.UnsignedIntImage2DMultisampleArray; - var _Sampler2DMultisample = OpenTK.Graphics.OpenGL.ActiveUniformType.Sampler2DMultisample; - var _IntSampler2DMultisample = OpenTK.Graphics.OpenGL.ActiveUniformType.IntSampler2DMultisample; - var _UnsignedIntSampler2DMultisample = OpenTK.Graphics.OpenGL.ActiveUniformType.UnsignedIntSampler2DMultisample; - var _Sampler2DMultisampleArray = OpenTK.Graphics.OpenGL.ActiveUniformType.Sampler2DMultisampleArray; - var _IntSampler2DMultisampleArray = OpenTK.Graphics.OpenGL.ActiveUniformType.IntSampler2DMultisampleArray; - var _UnsignedIntSampler2DMultisampleArray = OpenTK.Graphics.OpenGL.ActiveUniformType.UnsignedIntSampler2DMultisampleArray; - var _UnsignedIntAtomicCounter = OpenTK.Graphics.OpenGL.ActiveUniformType.UnsignedIntAtomicCounter; -} -static void Test_All_19322() { - var _False = OpenTK.Graphics.OpenGL.All.False; - var _LayoutDefaultIntel = OpenTK.Graphics.OpenGL.All.LayoutDefaultIntel; - var _NoError = OpenTK.Graphics.OpenGL.All.NoError; - var _None = OpenTK.Graphics.OpenGL.All.None; - var _NoneOes = OpenTK.Graphics.OpenGL.All.NoneOes; - var _Zero = OpenTK.Graphics.OpenGL.All.Zero; - var _ClosePathNv = OpenTK.Graphics.OpenGL.All.ClosePathNv; - var _Points = OpenTK.Graphics.OpenGL.All.Points; - var _PerfquerySingleContextIntel = OpenTK.Graphics.OpenGL.All.PerfquerySingleContextIntel; - var _ClientPixelStoreBit = OpenTK.Graphics.OpenGL.All.ClientPixelStoreBit; - var _ContextCoreProfileBit = OpenTK.Graphics.OpenGL.All.ContextCoreProfileBit; - var _ContextFlagForwardCompatibleBit = OpenTK.Graphics.OpenGL.All.ContextFlagForwardCompatibleBit; - var _CurrentBit = OpenTK.Graphics.OpenGL.All.CurrentBit; - var _Gl2XBitAti = OpenTK.Graphics.OpenGL.All.Gl2XBitAti; - var _PerfqueryGlobalContextIntel = OpenTK.Graphics.OpenGL.All.PerfqueryGlobalContextIntel; - var _QueryDepthPassEventBitAmd = OpenTK.Graphics.OpenGL.All.QueryDepthPassEventBitAmd; - var _RedBitAti = OpenTK.Graphics.OpenGL.All.RedBitAti; - var _SyncFlushCommandsBit = OpenTK.Graphics.OpenGL.All.SyncFlushCommandsBit; - var _TextureDeformationBitSgix = OpenTK.Graphics.OpenGL.All.TextureDeformationBitSgix; - var _TextureStorageSparseBitAmd = OpenTK.Graphics.OpenGL.All.TextureStorageSparseBitAmd; - var _VertexAttribArrayBarrierBit = OpenTK.Graphics.OpenGL.All.VertexAttribArrayBarrierBit; - var _VertexAttribArrayBarrierBitExt = OpenTK.Graphics.OpenGL.All.VertexAttribArrayBarrierBitExt; - var _VertexShaderBit = OpenTK.Graphics.OpenGL.All.VertexShaderBit; - var _VertexShaderBitExt = OpenTK.Graphics.OpenGL.All.VertexShaderBitExt; - var _ClientVertexArrayBit = OpenTK.Graphics.OpenGL.All.ClientVertexArrayBit; - var _CompBitAti = OpenTK.Graphics.OpenGL.All.CompBitAti; - var _ContextCompatibilityProfileBit = OpenTK.Graphics.OpenGL.All.ContextCompatibilityProfileBit; - var _ContextFlagDebugBit = OpenTK.Graphics.OpenGL.All.ContextFlagDebugBit; - var _ContextFlagDebugBitKhr = OpenTK.Graphics.OpenGL.All.ContextFlagDebugBitKhr; - var _ElementArrayBarrierBit = OpenTK.Graphics.OpenGL.All.ElementArrayBarrierBit; - var _ElementArrayBarrierBitExt = OpenTK.Graphics.OpenGL.All.ElementArrayBarrierBitExt; - var _FragmentShaderBit = OpenTK.Graphics.OpenGL.All.FragmentShaderBit; - var _FragmentShaderBitExt = OpenTK.Graphics.OpenGL.All.FragmentShaderBitExt; - var _GeometryDeformationBitSgix = OpenTK.Graphics.OpenGL.All.GeometryDeformationBitSgix; - var _Gl4XBitAti = OpenTK.Graphics.OpenGL.All.Gl4XBitAti; - var _GreenBitAti = OpenTK.Graphics.OpenGL.All.GreenBitAti; - var _PointBit = OpenTK.Graphics.OpenGL.All.PointBit; - var _QueryDepthFailEventBitAmd = OpenTK.Graphics.OpenGL.All.QueryDepthFailEventBitAmd; - var _BlueBitAti = OpenTK.Graphics.OpenGL.All.BlueBitAti; - var _ContextFlagRobustAccessBitArb = OpenTK.Graphics.OpenGL.All.ContextFlagRobustAccessBitArb; - var _GeometryShaderBit = OpenTK.Graphics.OpenGL.All.GeometryShaderBit; - var _GeometryShaderBitExt = OpenTK.Graphics.OpenGL.All.GeometryShaderBitExt; - var _Gl8XBitAti = OpenTK.Graphics.OpenGL.All.Gl8XBitAti; - var _LineBit = OpenTK.Graphics.OpenGL.All.LineBit; - var _NegateBitAti = OpenTK.Graphics.OpenGL.All.NegateBitAti; - var _QueryStencilFailEventBitAmd = OpenTK.Graphics.OpenGL.All.QueryStencilFailEventBitAmd; - var _UniformBarrierBit = OpenTK.Graphics.OpenGL.All.UniformBarrierBit; - var _UniformBarrierBitExt = OpenTK.Graphics.OpenGL.All.UniformBarrierBitExt; - var _Vertex23BitPgi = OpenTK.Graphics.OpenGL.All.Vertex23BitPgi; - var _BiasBitAti = OpenTK.Graphics.OpenGL.All.BiasBitAti; - var _HalfBitAti = OpenTK.Graphics.OpenGL.All.HalfBitAti; - var _PolygonBit = OpenTK.Graphics.OpenGL.All.PolygonBit; - var _QueryDepthBoundsFailEventBitAmd = OpenTK.Graphics.OpenGL.All.QueryDepthBoundsFailEventBitAmd; - var _TessControlShaderBit = OpenTK.Graphics.OpenGL.All.TessControlShaderBit; - var _TessControlShaderBitExt = OpenTK.Graphics.OpenGL.All.TessControlShaderBitExt; - var _TextureFetchBarrierBit = OpenTK.Graphics.OpenGL.All.TextureFetchBarrierBit; - var _TextureFetchBarrierBitExt = OpenTK.Graphics.OpenGL.All.TextureFetchBarrierBitExt; - var _Vertex4BitPgi = OpenTK.Graphics.OpenGL.All.Vertex4BitPgi; - var _PolygonStippleBit = OpenTK.Graphics.OpenGL.All.PolygonStippleBit; - var _QuarterBitAti = OpenTK.Graphics.OpenGL.All.QuarterBitAti; - var _ShaderGlobalAccessBarrierBitNv = OpenTK.Graphics.OpenGL.All.ShaderGlobalAccessBarrierBitNv; - var _TessEvaluationShaderBit = OpenTK.Graphics.OpenGL.All.TessEvaluationShaderBit; - var _TessEvaluationShaderBitExt = OpenTK.Graphics.OpenGL.All.TessEvaluationShaderBitExt; - var _ComputeShaderBit = OpenTK.Graphics.OpenGL.All.ComputeShaderBit; - var _EighthBitAti = OpenTK.Graphics.OpenGL.All.EighthBitAti; - var _PixelModeBit = OpenTK.Graphics.OpenGL.All.PixelModeBit; - var _ShaderImageAccessBarrierBit = OpenTK.Graphics.OpenGL.All.ShaderImageAccessBarrierBit; - var _ShaderImageAccessBarrierBitExt = OpenTK.Graphics.OpenGL.All.ShaderImageAccessBarrierBitExt; - var _CommandBarrierBit = OpenTK.Graphics.OpenGL.All.CommandBarrierBit; - var _CommandBarrierBitExt = OpenTK.Graphics.OpenGL.All.CommandBarrierBitExt; - var _LightingBit = OpenTK.Graphics.OpenGL.All.LightingBit; - var _SaturateBitAti = OpenTK.Graphics.OpenGL.All.SaturateBitAti; - var _FogBit = OpenTK.Graphics.OpenGL.All.FogBit; - var _PixelBufferBarrierBit = OpenTK.Graphics.OpenGL.All.PixelBufferBarrierBit; - var _PixelBufferBarrierBitExt = OpenTK.Graphics.OpenGL.All.PixelBufferBarrierBitExt; - var _DepthBufferBit = OpenTK.Graphics.OpenGL.All.DepthBufferBit; - var _TextureUpdateBarrierBit = OpenTK.Graphics.OpenGL.All.TextureUpdateBarrierBit; - var _TextureUpdateBarrierBitExt = OpenTK.Graphics.OpenGL.All.TextureUpdateBarrierBitExt; - var _AccumBufferBit = OpenTK.Graphics.OpenGL.All.AccumBufferBit; - var _BufferUpdateBarrierBit = OpenTK.Graphics.OpenGL.All.BufferUpdateBarrierBit; - var _BufferUpdateBarrierBitExt = OpenTK.Graphics.OpenGL.All.BufferUpdateBarrierBitExt; - var _FramebufferBarrierBit = OpenTK.Graphics.OpenGL.All.FramebufferBarrierBit; - var _FramebufferBarrierBitExt = OpenTK.Graphics.OpenGL.All.FramebufferBarrierBitExt; - var _StencilBufferBit = OpenTK.Graphics.OpenGL.All.StencilBufferBit; - var _TransformFeedbackBarrierBit = OpenTK.Graphics.OpenGL.All.TransformFeedbackBarrierBit; - var _TransformFeedbackBarrierBitExt = OpenTK.Graphics.OpenGL.All.TransformFeedbackBarrierBitExt; - var _ViewportBit = OpenTK.Graphics.OpenGL.All.ViewportBit; - var _AtomicCounterBarrierBit = OpenTK.Graphics.OpenGL.All.AtomicCounterBarrierBit; - var _AtomicCounterBarrierBitExt = OpenTK.Graphics.OpenGL.All.AtomicCounterBarrierBitExt; - var _TransformBit = OpenTK.Graphics.OpenGL.All.TransformBit; - var _EnableBit = OpenTK.Graphics.OpenGL.All.EnableBit; - var _ShaderStorageBarrierBit = OpenTK.Graphics.OpenGL.All.ShaderStorageBarrierBit; - var _ClientMappedBufferBarrierBit = OpenTK.Graphics.OpenGL.All.ClientMappedBufferBarrierBit; - var _ColorBufferBit = OpenTK.Graphics.OpenGL.All.ColorBufferBit; - var _CoverageBufferBitNv = OpenTK.Graphics.OpenGL.All.CoverageBufferBitNv; - var _HintBit = OpenTK.Graphics.OpenGL.All.HintBit; - var _QueryBufferBarrierBit = OpenTK.Graphics.OpenGL.All.QueryBufferBarrierBit; - var _Lines = OpenTK.Graphics.OpenGL.All.Lines; - var _MapReadBit = OpenTK.Graphics.OpenGL.All.MapReadBit; - var _MapReadBitExt = OpenTK.Graphics.OpenGL.All.MapReadBitExt; - var _RestartSun = OpenTK.Graphics.OpenGL.All.RestartSun; - var _Color3BitPgi = OpenTK.Graphics.OpenGL.All.Color3BitPgi; - var _EvalBit = OpenTK.Graphics.OpenGL.All.EvalBit; - var _FontXMinBoundsBitNv = OpenTK.Graphics.OpenGL.All.FontXMinBoundsBitNv; - var _LineLoop = OpenTK.Graphics.OpenGL.All.LineLoop; - var _MapWriteBit = OpenTK.Graphics.OpenGL.All.MapWriteBit; - var _MapWriteBitExt = OpenTK.Graphics.OpenGL.All.MapWriteBitExt; - var _ReplaceMiddleSun = OpenTK.Graphics.OpenGL.All.ReplaceMiddleSun; - var _Color4BitPgi = OpenTK.Graphics.OpenGL.All.Color4BitPgi; - var _FontYMinBoundsBitNv = OpenTK.Graphics.OpenGL.All.FontYMinBoundsBitNv; - var _ListBit = OpenTK.Graphics.OpenGL.All.ListBit; - var _LineStrip = OpenTK.Graphics.OpenGL.All.LineStrip; - var _ReplaceOldestSun = OpenTK.Graphics.OpenGL.All.ReplaceOldestSun; - var _MapInvalidateRangeBit = OpenTK.Graphics.OpenGL.All.MapInvalidateRangeBit; - var _MapInvalidateRangeBitExt = OpenTK.Graphics.OpenGL.All.MapInvalidateRangeBitExt; - var _Triangles = OpenTK.Graphics.OpenGL.All.Triangles; - var _EdgeflagBitPgi = OpenTK.Graphics.OpenGL.All.EdgeflagBitPgi; - var _FontXMaxBoundsBitNv = OpenTK.Graphics.OpenGL.All.FontXMaxBoundsBitNv; - var _TextureBit = OpenTK.Graphics.OpenGL.All.TextureBit; - var _TriangleStrip = OpenTK.Graphics.OpenGL.All.TriangleStrip; - var _TriangleFan = OpenTK.Graphics.OpenGL.All.TriangleFan; - var _Quads = OpenTK.Graphics.OpenGL.All.Quads; - var _QuadsExt = OpenTK.Graphics.OpenGL.All.QuadsExt; - var _MapInvalidateBufferBit = OpenTK.Graphics.OpenGL.All.MapInvalidateBufferBit; - var _MapInvalidateBufferBitExt = OpenTK.Graphics.OpenGL.All.MapInvalidateBufferBitExt; - var _QuadStrip = OpenTK.Graphics.OpenGL.All.QuadStrip; - var _FontYMaxBoundsBitNv = OpenTK.Graphics.OpenGL.All.FontYMaxBoundsBitNv; - var _IndexBitPgi = OpenTK.Graphics.OpenGL.All.IndexBitPgi; - var _ScissorBit = OpenTK.Graphics.OpenGL.All.ScissorBit; - var _Polygon = OpenTK.Graphics.OpenGL.All.Polygon; - var _LinesAdjacency = OpenTK.Graphics.OpenGL.All.LinesAdjacency; - var _LinesAdjacencyArb = OpenTK.Graphics.OpenGL.All.LinesAdjacencyArb; - var _LinesAdjacencyExt = OpenTK.Graphics.OpenGL.All.LinesAdjacencyExt; - var _LineStripAdjacency = OpenTK.Graphics.OpenGL.All.LineStripAdjacency; - var _LineStripAdjacencyArb = OpenTK.Graphics.OpenGL.All.LineStripAdjacencyArb; - var _LineStripAdjacencyExt = OpenTK.Graphics.OpenGL.All.LineStripAdjacencyExt; - var _TrianglesAdjacency = OpenTK.Graphics.OpenGL.All.TrianglesAdjacency; - var _TrianglesAdjacencyArb = OpenTK.Graphics.OpenGL.All.TrianglesAdjacencyArb; - var _TrianglesAdjacencyExt = OpenTK.Graphics.OpenGL.All.TrianglesAdjacencyExt; - var _TriangleStripAdjacency = OpenTK.Graphics.OpenGL.All.TriangleStripAdjacency; - var _TriangleStripAdjacencyArb = OpenTK.Graphics.OpenGL.All.TriangleStripAdjacencyArb; - var _TriangleStripAdjacencyExt = OpenTK.Graphics.OpenGL.All.TriangleStripAdjacencyExt; - var _Patches = OpenTK.Graphics.OpenGL.All.Patches; - var _PatchesExt = OpenTK.Graphics.OpenGL.All.PatchesExt; - var _MapFlushExplicitBit = OpenTK.Graphics.OpenGL.All.MapFlushExplicitBit; - var _MapFlushExplicitBitExt = OpenTK.Graphics.OpenGL.All.MapFlushExplicitBitExt; - var _FontUnitsPerEmBitNv = OpenTK.Graphics.OpenGL.All.FontUnitsPerEmBitNv; - var _MatAmbientBitPgi = OpenTK.Graphics.OpenGL.All.MatAmbientBitPgi; - var _MapUnsynchronizedBit = OpenTK.Graphics.OpenGL.All.MapUnsynchronizedBit; - var _MapUnsynchronizedBitExt = OpenTK.Graphics.OpenGL.All.MapUnsynchronizedBitExt; - var _FontAscenderBitNv = OpenTK.Graphics.OpenGL.All.FontAscenderBitNv; - var _MatAmbientAndDiffuseBitPgi = OpenTK.Graphics.OpenGL.All.MatAmbientAndDiffuseBitPgi; - var _MapPersistentBit = OpenTK.Graphics.OpenGL.All.MapPersistentBit; - var _FontDescenderBitNv = OpenTK.Graphics.OpenGL.All.FontDescenderBitNv; - var _MatDiffuseBitPgi = OpenTK.Graphics.OpenGL.All.MatDiffuseBitPgi; - var _MapCoherentBit = OpenTK.Graphics.OpenGL.All.MapCoherentBit; - var _FontHeightBitNv = OpenTK.Graphics.OpenGL.All.FontHeightBitNv; - var _MatEmissionBitPgi = OpenTK.Graphics.OpenGL.All.MatEmissionBitPgi; - var _BoldBitNv = OpenTK.Graphics.OpenGL.All.BoldBitNv; - var _GlyphWidthBitNv = OpenTK.Graphics.OpenGL.All.GlyphWidthBitNv; - var _Accum = OpenTK.Graphics.OpenGL.All.Accum; - var _DynamicStorageBit = OpenTK.Graphics.OpenGL.All.DynamicStorageBit; - var _FontMaxAdvanceWidthBitNv = OpenTK.Graphics.OpenGL.All.FontMaxAdvanceWidthBitNv; - var _MatColorIndexesBitPgi = OpenTK.Graphics.OpenGL.All.MatColorIndexesBitPgi; - var _Load = OpenTK.Graphics.OpenGL.All.Load; - var _Return = OpenTK.Graphics.OpenGL.All.Return; - var _Mult = OpenTK.Graphics.OpenGL.All.Mult; - var _Add = OpenTK.Graphics.OpenGL.All.Add; - var _GlyphHeightBitNv = OpenTK.Graphics.OpenGL.All.GlyphHeightBitNv; - var _ItalicBitNv = OpenTK.Graphics.OpenGL.All.ItalicBitNv; - var _MoveToNv = OpenTK.Graphics.OpenGL.All.MoveToNv; - var _ClientStorageBit = OpenTK.Graphics.OpenGL.All.ClientStorageBit; - var _Never = OpenTK.Graphics.OpenGL.All.Never; - var _FontMaxAdvanceHeightBitNv = OpenTK.Graphics.OpenGL.All.FontMaxAdvanceHeightBitNv; - var _MatShininessBitPgi = OpenTK.Graphics.OpenGL.All.MatShininessBitPgi; - var _Less = OpenTK.Graphics.OpenGL.All.Less; - var _Equal = OpenTK.Graphics.OpenGL.All.Equal; - var _Lequal = OpenTK.Graphics.OpenGL.All.Lequal; - var _Greater = OpenTK.Graphics.OpenGL.All.Greater; - var _Notequal = OpenTK.Graphics.OpenGL.All.Notequal; - var _Gequal = OpenTK.Graphics.OpenGL.All.Gequal; - var _Always = OpenTK.Graphics.OpenGL.All.Always; - var _RelativeMoveToNv = OpenTK.Graphics.OpenGL.All.RelativeMoveToNv; - var _SrcColor = OpenTK.Graphics.OpenGL.All.SrcColor; - var _OneMinusSrcColor = OpenTK.Graphics.OpenGL.All.OneMinusSrcColor; - var _SrcAlpha = OpenTK.Graphics.OpenGL.All.SrcAlpha; - var _OneMinusSrcAlpha = OpenTK.Graphics.OpenGL.All.OneMinusSrcAlpha; - var _DstAlpha = OpenTK.Graphics.OpenGL.All.DstAlpha; - var _OneMinusDstAlpha = OpenTK.Graphics.OpenGL.All.OneMinusDstAlpha; - var _DstColor = OpenTK.Graphics.OpenGL.All.DstColor; - var _OneMinusDstColor = OpenTK.Graphics.OpenGL.All.OneMinusDstColor; - var _SrcAlphaSaturate = OpenTK.Graphics.OpenGL.All.SrcAlphaSaturate; - var _GlyphHorizontalBearingXBitNv = OpenTK.Graphics.OpenGL.All.GlyphHorizontalBearingXBitNv; - var _LineToNv = OpenTK.Graphics.OpenGL.All.LineToNv; - var _FrontLeft = OpenTK.Graphics.OpenGL.All.FrontLeft; - var _FontUnderlinePositionBitNv = OpenTK.Graphics.OpenGL.All.FontUnderlinePositionBitNv; - var _MatSpecularBitPgi = OpenTK.Graphics.OpenGL.All.MatSpecularBitPgi; - var _FrontRight = OpenTK.Graphics.OpenGL.All.FrontRight; - var _BackLeft = OpenTK.Graphics.OpenGL.All.BackLeft; - var _BackRight = OpenTK.Graphics.OpenGL.All.BackRight; - var _Front = OpenTK.Graphics.OpenGL.All.Front; - var _Back = OpenTK.Graphics.OpenGL.All.Back; - var _Left = OpenTK.Graphics.OpenGL.All.Left; - var _Right = OpenTK.Graphics.OpenGL.All.Right; - var _FrontAndBack = OpenTK.Graphics.OpenGL.All.FrontAndBack; - var _Aux0 = OpenTK.Graphics.OpenGL.All.Aux0; - var _Aux1 = OpenTK.Graphics.OpenGL.All.Aux1; - var _Aux2 = OpenTK.Graphics.OpenGL.All.Aux2; - var _Aux3 = OpenTK.Graphics.OpenGL.All.Aux3; - var _RelativeLineToNv = OpenTK.Graphics.OpenGL.All.RelativeLineToNv; - var _InvalidEnum = OpenTK.Graphics.OpenGL.All.InvalidEnum; - var _InvalidValue = OpenTK.Graphics.OpenGL.All.InvalidValue; - var _InvalidOperation = OpenTK.Graphics.OpenGL.All.InvalidOperation; - var _StackOverflow = OpenTK.Graphics.OpenGL.All.StackOverflow; - var _StackOverflowKhr = OpenTK.Graphics.OpenGL.All.StackOverflowKhr; - var _StackUnderflow = OpenTK.Graphics.OpenGL.All.StackUnderflow; - var _StackUnderflowKhr = OpenTK.Graphics.OpenGL.All.StackUnderflowKhr; - var _OutOfMemory = OpenTK.Graphics.OpenGL.All.OutOfMemory; - var _InvalidFramebufferOperation = OpenTK.Graphics.OpenGL.All.InvalidFramebufferOperation; - var _InvalidFramebufferOperationExt = OpenTK.Graphics.OpenGL.All.InvalidFramebufferOperationExt; - var _InvalidFramebufferOperationOes = OpenTK.Graphics.OpenGL.All.InvalidFramebufferOperationOes; - var _HorizontalLineToNv = OpenTK.Graphics.OpenGL.All.HorizontalLineToNv; - var _Gl2D = OpenTK.Graphics.OpenGL.All.Gl2D; - var _Gl3D = OpenTK.Graphics.OpenGL.All.Gl3D; - var _Gl3DColor = OpenTK.Graphics.OpenGL.All.Gl3DColor; - var _Gl3DColorTexture = OpenTK.Graphics.OpenGL.All.Gl3DColorTexture; - var _Gl4DColorTexture = OpenTK.Graphics.OpenGL.All.Gl4DColorTexture; - var _RelativeHorizontalLineToNv = OpenTK.Graphics.OpenGL.All.RelativeHorizontalLineToNv; - var _PassThroughToken = OpenTK.Graphics.OpenGL.All.PassThroughToken; - var _PointToken = OpenTK.Graphics.OpenGL.All.PointToken; - var _LineToken = OpenTK.Graphics.OpenGL.All.LineToken; - var _PolygonToken = OpenTK.Graphics.OpenGL.All.PolygonToken; - var _BitmapToken = OpenTK.Graphics.OpenGL.All.BitmapToken; - var _DrawPixelToken = OpenTK.Graphics.OpenGL.All.DrawPixelToken; - var _CopyPixelToken = OpenTK.Graphics.OpenGL.All.CopyPixelToken; - var _LineResetToken = OpenTK.Graphics.OpenGL.All.LineResetToken; - var _GlyphHorizontalBearingYBitNv = OpenTK.Graphics.OpenGL.All.GlyphHorizontalBearingYBitNv; - var _VerticalLineToNv = OpenTK.Graphics.OpenGL.All.VerticalLineToNv; - var _Exp = OpenTK.Graphics.OpenGL.All.Exp; - var _FontUnderlineThicknessBitNv = OpenTK.Graphics.OpenGL.All.FontUnderlineThicknessBitNv; - var _NormalBitPgi = OpenTK.Graphics.OpenGL.All.NormalBitPgi; - var _Exp2 = OpenTK.Graphics.OpenGL.All.Exp2; - var _RelativeVerticalLineToNv = OpenTK.Graphics.OpenGL.All.RelativeVerticalLineToNv; - var _Cw = OpenTK.Graphics.OpenGL.All.Cw; - var _Ccw = OpenTK.Graphics.OpenGL.All.Ccw; - var _QuadraticCurveToNv = OpenTK.Graphics.OpenGL.All.QuadraticCurveToNv; - var _Coeff = OpenTK.Graphics.OpenGL.All.Coeff; - var _Order = OpenTK.Graphics.OpenGL.All.Order; - var _Domain = OpenTK.Graphics.OpenGL.All.Domain; - var _RelativeQuadraticCurveToNv = OpenTK.Graphics.OpenGL.All.RelativeQuadraticCurveToNv; - var _CurrentColor = OpenTK.Graphics.OpenGL.All.CurrentColor; - var _CurrentIndex = OpenTK.Graphics.OpenGL.All.CurrentIndex; - var _CurrentNormal = OpenTK.Graphics.OpenGL.All.CurrentNormal; - var _CurrentTextureCoords = OpenTK.Graphics.OpenGL.All.CurrentTextureCoords; - var _CurrentRasterColor = OpenTK.Graphics.OpenGL.All.CurrentRasterColor; - var _CurrentRasterIndex = OpenTK.Graphics.OpenGL.All.CurrentRasterIndex; - var _CurrentRasterTextureCoords = OpenTK.Graphics.OpenGL.All.CurrentRasterTextureCoords; - var _CurrentRasterPosition = OpenTK.Graphics.OpenGL.All.CurrentRasterPosition; - var _CurrentRasterPositionValid = OpenTK.Graphics.OpenGL.All.CurrentRasterPositionValid; - var _CurrentRasterDistance = OpenTK.Graphics.OpenGL.All.CurrentRasterDistance; - var _PointSmooth = OpenTK.Graphics.OpenGL.All.PointSmooth; - var _PointSize = OpenTK.Graphics.OpenGL.All.PointSize; - var _PointSizeRange = OpenTK.Graphics.OpenGL.All.PointSizeRange; - var _SmoothPointSizeRange = OpenTK.Graphics.OpenGL.All.SmoothPointSizeRange; - var _PointSizeGranularity = OpenTK.Graphics.OpenGL.All.PointSizeGranularity; - var _SmoothPointSizeGranularity = OpenTK.Graphics.OpenGL.All.SmoothPointSizeGranularity; - var _LineSmooth = OpenTK.Graphics.OpenGL.All.LineSmooth; - var _LineWidth = OpenTK.Graphics.OpenGL.All.LineWidth; - var _LineWidthRange = OpenTK.Graphics.OpenGL.All.LineWidthRange; - var _SmoothLineWidthRange = OpenTK.Graphics.OpenGL.All.SmoothLineWidthRange; - var _LineWidthGranularity = OpenTK.Graphics.OpenGL.All.LineWidthGranularity; - var _SmoothLineWidthGranularity = OpenTK.Graphics.OpenGL.All.SmoothLineWidthGranularity; - var _LineStipple = OpenTK.Graphics.OpenGL.All.LineStipple; - var _LineStipplePattern = OpenTK.Graphics.OpenGL.All.LineStipplePattern; - var _LineStippleRepeat = OpenTK.Graphics.OpenGL.All.LineStippleRepeat; - var _ListMode = OpenTK.Graphics.OpenGL.All.ListMode; - var _MaxListNesting = OpenTK.Graphics.OpenGL.All.MaxListNesting; - var _ListBase = OpenTK.Graphics.OpenGL.All.ListBase; - var _ListIndex = OpenTK.Graphics.OpenGL.All.ListIndex; - var _PolygonMode = OpenTK.Graphics.OpenGL.All.PolygonMode; - var _PolygonSmooth = OpenTK.Graphics.OpenGL.All.PolygonSmooth; - var _PolygonStipple = OpenTK.Graphics.OpenGL.All.PolygonStipple; - var _EdgeFlag = OpenTK.Graphics.OpenGL.All.EdgeFlag; - var _CullFace = OpenTK.Graphics.OpenGL.All.CullFace; - var _CullFaceMode = OpenTK.Graphics.OpenGL.All.CullFaceMode; - var _FrontFace = OpenTK.Graphics.OpenGL.All.FrontFace; - var _Lighting = OpenTK.Graphics.OpenGL.All.Lighting; - var _LightModelLocalViewer = OpenTK.Graphics.OpenGL.All.LightModelLocalViewer; - var _LightModelTwoSide = OpenTK.Graphics.OpenGL.All.LightModelTwoSide; - var _LightModelAmbient = OpenTK.Graphics.OpenGL.All.LightModelAmbient; - var _ShadeModel = OpenTK.Graphics.OpenGL.All.ShadeModel; - var _ColorMaterialFace = OpenTK.Graphics.OpenGL.All.ColorMaterialFace; - var _ColorMaterialParameter = OpenTK.Graphics.OpenGL.All.ColorMaterialParameter; - var _ColorMaterial = OpenTK.Graphics.OpenGL.All.ColorMaterial; - var _Fog = OpenTK.Graphics.OpenGL.All.Fog; - var _FogIndex = OpenTK.Graphics.OpenGL.All.FogIndex; - var _FogDensity = OpenTK.Graphics.OpenGL.All.FogDensity; - var _FogStart = OpenTK.Graphics.OpenGL.All.FogStart; - var _FogEnd = OpenTK.Graphics.OpenGL.All.FogEnd; - var _FogMode = OpenTK.Graphics.OpenGL.All.FogMode; - var _FogColor = OpenTK.Graphics.OpenGL.All.FogColor; - var _DepthRange = OpenTK.Graphics.OpenGL.All.DepthRange; - var _DepthTest = OpenTK.Graphics.OpenGL.All.DepthTest; - var _DepthWritemask = OpenTK.Graphics.OpenGL.All.DepthWritemask; - var _DepthClearValue = OpenTK.Graphics.OpenGL.All.DepthClearValue; - var _DepthFunc = OpenTK.Graphics.OpenGL.All.DepthFunc; - var _AccumClearValue = OpenTK.Graphics.OpenGL.All.AccumClearValue; - var _StencilTest = OpenTK.Graphics.OpenGL.All.StencilTest; - var _StencilClearValue = OpenTK.Graphics.OpenGL.All.StencilClearValue; - var _StencilFunc = OpenTK.Graphics.OpenGL.All.StencilFunc; - var _StencilValueMask = OpenTK.Graphics.OpenGL.All.StencilValueMask; - var _StencilFail = OpenTK.Graphics.OpenGL.All.StencilFail; - var _StencilPassDepthFail = OpenTK.Graphics.OpenGL.All.StencilPassDepthFail; - var _StencilPassDepthPass = OpenTK.Graphics.OpenGL.All.StencilPassDepthPass; - var _StencilRef = OpenTK.Graphics.OpenGL.All.StencilRef; - var _StencilWritemask = OpenTK.Graphics.OpenGL.All.StencilWritemask; - var _MatrixMode = OpenTK.Graphics.OpenGL.All.MatrixMode; - var _Normalize = OpenTK.Graphics.OpenGL.All.Normalize; - var _Viewport = OpenTK.Graphics.OpenGL.All.Viewport; - var _Modelview0StackDepthExt = OpenTK.Graphics.OpenGL.All.Modelview0StackDepthExt; - var _ModelviewStackDepth = OpenTK.Graphics.OpenGL.All.ModelviewStackDepth; - var _ProjectionStackDepth = OpenTK.Graphics.OpenGL.All.ProjectionStackDepth; - var _TextureStackDepth = OpenTK.Graphics.OpenGL.All.TextureStackDepth; - var _Modelview0MatrixExt = OpenTK.Graphics.OpenGL.All.Modelview0MatrixExt; - var _ModelviewMatrix = OpenTK.Graphics.OpenGL.All.ModelviewMatrix; - var _ProjectionMatrix = OpenTK.Graphics.OpenGL.All.ProjectionMatrix; - var _TextureMatrix = OpenTK.Graphics.OpenGL.All.TextureMatrix; - var _AttribStackDepth = OpenTK.Graphics.OpenGL.All.AttribStackDepth; - var _ClientAttribStackDepth = OpenTK.Graphics.OpenGL.All.ClientAttribStackDepth; - var _AlphaTest = OpenTK.Graphics.OpenGL.All.AlphaTest; - var _AlphaTestQcom = OpenTK.Graphics.OpenGL.All.AlphaTestQcom; - var _AlphaTestFunc = OpenTK.Graphics.OpenGL.All.AlphaTestFunc; - var _AlphaTestFuncQcom = OpenTK.Graphics.OpenGL.All.AlphaTestFuncQcom; - var _AlphaTestRef = OpenTK.Graphics.OpenGL.All.AlphaTestRef; - var _AlphaTestRefQcom = OpenTK.Graphics.OpenGL.All.AlphaTestRefQcom; - var _Dither = OpenTK.Graphics.OpenGL.All.Dither; - var _BlendDst = OpenTK.Graphics.OpenGL.All.BlendDst; - var _BlendSrc = OpenTK.Graphics.OpenGL.All.BlendSrc; - var _Blend = OpenTK.Graphics.OpenGL.All.Blend; - var _LogicOpMode = OpenTK.Graphics.OpenGL.All.LogicOpMode; - var _IndexLogicOp = OpenTK.Graphics.OpenGL.All.IndexLogicOp; - var _LogicOp = OpenTK.Graphics.OpenGL.All.LogicOp; - var _ColorLogicOp = OpenTK.Graphics.OpenGL.All.ColorLogicOp; - var _CubicCurveToNv = OpenTK.Graphics.OpenGL.All.CubicCurveToNv; - var _AuxBuffers = OpenTK.Graphics.OpenGL.All.AuxBuffers; - var _DrawBuffer = OpenTK.Graphics.OpenGL.All.DrawBuffer; - var _DrawBufferExt = OpenTK.Graphics.OpenGL.All.DrawBufferExt; - var _ReadBuffer = OpenTK.Graphics.OpenGL.All.ReadBuffer; - var _ReadBufferExt = OpenTK.Graphics.OpenGL.All.ReadBufferExt; - var _ReadBufferNv = OpenTK.Graphics.OpenGL.All.ReadBufferNv; - var _ScissorBox = OpenTK.Graphics.OpenGL.All.ScissorBox; - var _ScissorTest = OpenTK.Graphics.OpenGL.All.ScissorTest; - var _IndexClearValue = OpenTK.Graphics.OpenGL.All.IndexClearValue; - var _IndexWritemask = OpenTK.Graphics.OpenGL.All.IndexWritemask; - var _ColorClearValue = OpenTK.Graphics.OpenGL.All.ColorClearValue; - var _ColorWritemask = OpenTK.Graphics.OpenGL.All.ColorWritemask; - var _IndexMode = OpenTK.Graphics.OpenGL.All.IndexMode; - var _RgbaMode = OpenTK.Graphics.OpenGL.All.RgbaMode; - var _Doublebuffer = OpenTK.Graphics.OpenGL.All.Doublebuffer; - var _Stereo = OpenTK.Graphics.OpenGL.All.Stereo; - var _RenderMode = OpenTK.Graphics.OpenGL.All.RenderMode; - var _PerspectiveCorrectionHint = OpenTK.Graphics.OpenGL.All.PerspectiveCorrectionHint; - var _PointSmoothHint = OpenTK.Graphics.OpenGL.All.PointSmoothHint; - var _LineSmoothHint = OpenTK.Graphics.OpenGL.All.LineSmoothHint; - var _PolygonSmoothHint = OpenTK.Graphics.OpenGL.All.PolygonSmoothHint; - var _FogHint = OpenTK.Graphics.OpenGL.All.FogHint; - var _TextureGenS = OpenTK.Graphics.OpenGL.All.TextureGenS; - var _TextureGenT = OpenTK.Graphics.OpenGL.All.TextureGenT; - var _TextureGenR = OpenTK.Graphics.OpenGL.All.TextureGenR; - var _TextureGenQ = OpenTK.Graphics.OpenGL.All.TextureGenQ; - var _PixelMapIToI = OpenTK.Graphics.OpenGL.All.PixelMapIToI; - var _PixelMapSToS = OpenTK.Graphics.OpenGL.All.PixelMapSToS; - var _PixelMapIToR = OpenTK.Graphics.OpenGL.All.PixelMapIToR; - var _PixelMapIToG = OpenTK.Graphics.OpenGL.All.PixelMapIToG; - var _PixelMapIToB = OpenTK.Graphics.OpenGL.All.PixelMapIToB; - var _PixelMapIToA = OpenTK.Graphics.OpenGL.All.PixelMapIToA; - var _PixelMapRToR = OpenTK.Graphics.OpenGL.All.PixelMapRToR; - var _PixelMapGToG = OpenTK.Graphics.OpenGL.All.PixelMapGToG; - var _PixelMapBToB = OpenTK.Graphics.OpenGL.All.PixelMapBToB; - var _PixelMapAToA = OpenTK.Graphics.OpenGL.All.PixelMapAToA; - var _PixelMapIToISize = OpenTK.Graphics.OpenGL.All.PixelMapIToISize; - var _PixelMapSToSSize = OpenTK.Graphics.OpenGL.All.PixelMapSToSSize; - var _PixelMapIToRSize = OpenTK.Graphics.OpenGL.All.PixelMapIToRSize; - var _PixelMapIToGSize = OpenTK.Graphics.OpenGL.All.PixelMapIToGSize; - var _PixelMapIToBSize = OpenTK.Graphics.OpenGL.All.PixelMapIToBSize; - var _PixelMapIToASize = OpenTK.Graphics.OpenGL.All.PixelMapIToASize; - var _PixelMapRToRSize = OpenTK.Graphics.OpenGL.All.PixelMapRToRSize; - var _PixelMapGToGSize = OpenTK.Graphics.OpenGL.All.PixelMapGToGSize; - var _PixelMapBToBSize = OpenTK.Graphics.OpenGL.All.PixelMapBToBSize; - var _PixelMapAToASize = OpenTK.Graphics.OpenGL.All.PixelMapAToASize; - var _UnpackSwapBytes = OpenTK.Graphics.OpenGL.All.UnpackSwapBytes; - var _UnpackLsbFirst = OpenTK.Graphics.OpenGL.All.UnpackLsbFirst; - var _UnpackRowLength = OpenTK.Graphics.OpenGL.All.UnpackRowLength; - var _UnpackRowLengthExt = OpenTK.Graphics.OpenGL.All.UnpackRowLengthExt; - var _UnpackSkipRows = OpenTK.Graphics.OpenGL.All.UnpackSkipRows; - var _UnpackSkipRowsExt = OpenTK.Graphics.OpenGL.All.UnpackSkipRowsExt; - var _UnpackSkipPixels = OpenTK.Graphics.OpenGL.All.UnpackSkipPixels; - var _UnpackSkipPixelsExt = OpenTK.Graphics.OpenGL.All.UnpackSkipPixelsExt; - var _UnpackAlignment = OpenTK.Graphics.OpenGL.All.UnpackAlignment; - var _RelativeCubicCurveToNv = OpenTK.Graphics.OpenGL.All.RelativeCubicCurveToNv; - var _PackSwapBytes = OpenTK.Graphics.OpenGL.All.PackSwapBytes; - var _PackLsbFirst = OpenTK.Graphics.OpenGL.All.PackLsbFirst; - var _PackRowLength = OpenTK.Graphics.OpenGL.All.PackRowLength; - var _PackSkipRows = OpenTK.Graphics.OpenGL.All.PackSkipRows; - var _PackSkipPixels = OpenTK.Graphics.OpenGL.All.PackSkipPixels; - var _PackAlignment = OpenTK.Graphics.OpenGL.All.PackAlignment; - var _MapColor = OpenTK.Graphics.OpenGL.All.MapColor; - var _MapStencil = OpenTK.Graphics.OpenGL.All.MapStencil; - var _IndexShift = OpenTK.Graphics.OpenGL.All.IndexShift; - var _IndexOffset = OpenTK.Graphics.OpenGL.All.IndexOffset; - var _RedScale = OpenTK.Graphics.OpenGL.All.RedScale; - var _RedBias = OpenTK.Graphics.OpenGL.All.RedBias; - var _ZoomX = OpenTK.Graphics.OpenGL.All.ZoomX; - var _ZoomY = OpenTK.Graphics.OpenGL.All.ZoomY; - var _GreenScale = OpenTK.Graphics.OpenGL.All.GreenScale; - var _GreenBias = OpenTK.Graphics.OpenGL.All.GreenBias; - var _BlueScale = OpenTK.Graphics.OpenGL.All.BlueScale; - var _BlueBias = OpenTK.Graphics.OpenGL.All.BlueBias; - var _AlphaScale = OpenTK.Graphics.OpenGL.All.AlphaScale; - var _AlphaBias = OpenTK.Graphics.OpenGL.All.AlphaBias; - var _DepthScale = OpenTK.Graphics.OpenGL.All.DepthScale; - var _DepthBias = OpenTK.Graphics.OpenGL.All.DepthBias; - var _MaxEvalOrder = OpenTK.Graphics.OpenGL.All.MaxEvalOrder; - var _MaxLights = OpenTK.Graphics.OpenGL.All.MaxLights; - var _MaxClipDistances = OpenTK.Graphics.OpenGL.All.MaxClipDistances; - var _MaxClipPlanes = OpenTK.Graphics.OpenGL.All.MaxClipPlanes; - var _MaxTextureSize = OpenTK.Graphics.OpenGL.All.MaxTextureSize; - var _MaxPixelMapTable = OpenTK.Graphics.OpenGL.All.MaxPixelMapTable; - var _MaxAttribStackDepth = OpenTK.Graphics.OpenGL.All.MaxAttribStackDepth; - var _MaxModelviewStackDepth = OpenTK.Graphics.OpenGL.All.MaxModelviewStackDepth; - var _MaxNameStackDepth = OpenTK.Graphics.OpenGL.All.MaxNameStackDepth; - var _MaxProjectionStackDepth = OpenTK.Graphics.OpenGL.All.MaxProjectionStackDepth; - var _MaxTextureStackDepth = OpenTK.Graphics.OpenGL.All.MaxTextureStackDepth; - var _MaxViewportDims = OpenTK.Graphics.OpenGL.All.MaxViewportDims; - var _MaxClientAttribStackDepth = OpenTK.Graphics.OpenGL.All.MaxClientAttribStackDepth; - var _SubpixelBits = OpenTK.Graphics.OpenGL.All.SubpixelBits; - var _IndexBits = OpenTK.Graphics.OpenGL.All.IndexBits; - var _RedBits = OpenTK.Graphics.OpenGL.All.RedBits; - var _GreenBits = OpenTK.Graphics.OpenGL.All.GreenBits; - var _BlueBits = OpenTK.Graphics.OpenGL.All.BlueBits; - var _AlphaBits = OpenTK.Graphics.OpenGL.All.AlphaBits; - var _DepthBits = OpenTK.Graphics.OpenGL.All.DepthBits; - var _StencilBits = OpenTK.Graphics.OpenGL.All.StencilBits; - var _AccumRedBits = OpenTK.Graphics.OpenGL.All.AccumRedBits; - var _AccumGreenBits = OpenTK.Graphics.OpenGL.All.AccumGreenBits; - var _AccumBlueBits = OpenTK.Graphics.OpenGL.All.AccumBlueBits; - var _AccumAlphaBits = OpenTK.Graphics.OpenGL.All.AccumAlphaBits; - var _NameStackDepth = OpenTK.Graphics.OpenGL.All.NameStackDepth; - var _AutoNormal = OpenTK.Graphics.OpenGL.All.AutoNormal; - var _Map1Color4 = OpenTK.Graphics.OpenGL.All.Map1Color4; - var _Map1Index = OpenTK.Graphics.OpenGL.All.Map1Index; - var _Map1Normal = OpenTK.Graphics.OpenGL.All.Map1Normal; - var _Map1TextureCoord1 = OpenTK.Graphics.OpenGL.All.Map1TextureCoord1; - var _Map1TextureCoord2 = OpenTK.Graphics.OpenGL.All.Map1TextureCoord2; - var _Map1TextureCoord3 = OpenTK.Graphics.OpenGL.All.Map1TextureCoord3; - var _Map1TextureCoord4 = OpenTK.Graphics.OpenGL.All.Map1TextureCoord4; - var _Map1Vertex3 = OpenTK.Graphics.OpenGL.All.Map1Vertex3; - var _Map1Vertex4 = OpenTK.Graphics.OpenGL.All.Map1Vertex4; - var _Map2Color4 = OpenTK.Graphics.OpenGL.All.Map2Color4; - var _Map2Index = OpenTK.Graphics.OpenGL.All.Map2Index; - var _Map2Normal = OpenTK.Graphics.OpenGL.All.Map2Normal; - var _Map2TextureCoord1 = OpenTK.Graphics.OpenGL.All.Map2TextureCoord1; - var _Map2TextureCoord2 = OpenTK.Graphics.OpenGL.All.Map2TextureCoord2; - var _Map2TextureCoord3 = OpenTK.Graphics.OpenGL.All.Map2TextureCoord3; - var _Map2TextureCoord4 = OpenTK.Graphics.OpenGL.All.Map2TextureCoord4; - var _Map2Vertex3 = OpenTK.Graphics.OpenGL.All.Map2Vertex3; - var _Map2Vertex4 = OpenTK.Graphics.OpenGL.All.Map2Vertex4; - var _Map1GridDomain = OpenTK.Graphics.OpenGL.All.Map1GridDomain; - var _Map1GridSegments = OpenTK.Graphics.OpenGL.All.Map1GridSegments; - var _Map2GridDomain = OpenTK.Graphics.OpenGL.All.Map2GridDomain; - var _Map2GridSegments = OpenTK.Graphics.OpenGL.All.Map2GridSegments; - var _Texture1D = OpenTK.Graphics.OpenGL.All.Texture1D; - var _Texture2D = OpenTK.Graphics.OpenGL.All.Texture2D; - var _FeedbackBufferPointer = OpenTK.Graphics.OpenGL.All.FeedbackBufferPointer; - var _FeedbackBufferSize = OpenTK.Graphics.OpenGL.All.FeedbackBufferSize; - var _FeedbackBufferType = OpenTK.Graphics.OpenGL.All.FeedbackBufferType; - var _SelectionBufferPointer = OpenTK.Graphics.OpenGL.All.SelectionBufferPointer; - var _SelectionBufferSize = OpenTK.Graphics.OpenGL.All.SelectionBufferSize; - var _SmoothQuadraticCurveToNv = OpenTK.Graphics.OpenGL.All.SmoothQuadraticCurveToNv; - var _RelativeSmoothQuadraticCurveToNv = OpenTK.Graphics.OpenGL.All.RelativeSmoothQuadraticCurveToNv; - var _GlyphHorizontalBearingAdvanceBitNv = OpenTK.Graphics.OpenGL.All.GlyphHorizontalBearingAdvanceBitNv; - var _SmoothCubicCurveToNv = OpenTK.Graphics.OpenGL.All.SmoothCubicCurveToNv; - var _GlyphHasKerningBitNv = OpenTK.Graphics.OpenGL.All.GlyphHasKerningBitNv; - var _TextureWidth = OpenTK.Graphics.OpenGL.All.TextureWidth; - var _FontHasKerningBitNv = OpenTK.Graphics.OpenGL.All.FontHasKerningBitNv; - var _Texcoord1BitPgi = OpenTK.Graphics.OpenGL.All.Texcoord1BitPgi; - var _TextureHeight = OpenTK.Graphics.OpenGL.All.TextureHeight; - var _TextureComponents = OpenTK.Graphics.OpenGL.All.TextureComponents; - var _TextureInternalFormat = OpenTK.Graphics.OpenGL.All.TextureInternalFormat; - var _TextureBorderColor = OpenTK.Graphics.OpenGL.All.TextureBorderColor; - var _TextureBorderColorNv = OpenTK.Graphics.OpenGL.All.TextureBorderColorNv; - var _TextureBorder = OpenTK.Graphics.OpenGL.All.TextureBorder; - var _RelativeSmoothCubicCurveToNv = OpenTK.Graphics.OpenGL.All.RelativeSmoothCubicCurveToNv; - var _DontCare = OpenTK.Graphics.OpenGL.All.DontCare; - var _Fastest = OpenTK.Graphics.OpenGL.All.Fastest; - var _Nicest = OpenTK.Graphics.OpenGL.All.Nicest; - var _SmallCcwArcToNv = OpenTK.Graphics.OpenGL.All.SmallCcwArcToNv; - var _Ambient = OpenTK.Graphics.OpenGL.All.Ambient; - var _Diffuse = OpenTK.Graphics.OpenGL.All.Diffuse; - var _Specular = OpenTK.Graphics.OpenGL.All.Specular; - var _Position = OpenTK.Graphics.OpenGL.All.Position; - var _SpotDirection = OpenTK.Graphics.OpenGL.All.SpotDirection; - var _SpotExponent = OpenTK.Graphics.OpenGL.All.SpotExponent; - var _SpotCutoff = OpenTK.Graphics.OpenGL.All.SpotCutoff; - var _ConstantAttenuation = OpenTK.Graphics.OpenGL.All.ConstantAttenuation; - var _LinearAttenuation = OpenTK.Graphics.OpenGL.All.LinearAttenuation; - var _QuadraticAttenuation = OpenTK.Graphics.OpenGL.All.QuadraticAttenuation; - var _RelativeSmallCcwArcToNv = OpenTK.Graphics.OpenGL.All.RelativeSmallCcwArcToNv; - var _Compile = OpenTK.Graphics.OpenGL.All.Compile; - var _CompileAndExecute = OpenTK.Graphics.OpenGL.All.CompileAndExecute; - var _SmallCwArcToNv = OpenTK.Graphics.OpenGL.All.SmallCwArcToNv; - var _Byte = OpenTK.Graphics.OpenGL.All.Byte; - var _UnsignedByte = OpenTK.Graphics.OpenGL.All.UnsignedByte; - var _Short = OpenTK.Graphics.OpenGL.All.Short; - var _UnsignedShort = OpenTK.Graphics.OpenGL.All.UnsignedShort; - var _Int = OpenTK.Graphics.OpenGL.All.Int; - var _UnsignedInt = OpenTK.Graphics.OpenGL.All.UnsignedInt; - var _Float = OpenTK.Graphics.OpenGL.All.Float; - var _Gl2Bytes = OpenTK.Graphics.OpenGL.All.Gl2Bytes; - var _Gl3Bytes = OpenTK.Graphics.OpenGL.All.Gl3Bytes; - var _Gl4Bytes = OpenTK.Graphics.OpenGL.All.Gl4Bytes; - var _Double = OpenTK.Graphics.OpenGL.All.Double; - var _HalfApple = OpenTK.Graphics.OpenGL.All.HalfApple; - var _HalfFloat = OpenTK.Graphics.OpenGL.All.HalfFloat; - var _HalfFloatArb = OpenTK.Graphics.OpenGL.All.HalfFloatArb; - var _HalfFloatNv = OpenTK.Graphics.OpenGL.All.HalfFloatNv; - var _Fixed = OpenTK.Graphics.OpenGL.All.Fixed; - var _FixedOes = OpenTK.Graphics.OpenGL.All.FixedOes; - var _Int64Nv = OpenTK.Graphics.OpenGL.All.Int64Nv; - var _UnsignedInt64Arb = OpenTK.Graphics.OpenGL.All.UnsignedInt64Arb; - var _UnsignedInt64Nv = OpenTK.Graphics.OpenGL.All.UnsignedInt64Nv; - var _RelativeSmallCwArcToNv = OpenTK.Graphics.OpenGL.All.RelativeSmallCwArcToNv; - var _Clear = OpenTK.Graphics.OpenGL.All.Clear; - var _And = OpenTK.Graphics.OpenGL.All.And; - var _AndReverse = OpenTK.Graphics.OpenGL.All.AndReverse; - var _Copy = OpenTK.Graphics.OpenGL.All.Copy; - var _AndInverted = OpenTK.Graphics.OpenGL.All.AndInverted; - var _Noop = OpenTK.Graphics.OpenGL.All.Noop; - var _Xor = OpenTK.Graphics.OpenGL.All.Xor; - var _XorNv = OpenTK.Graphics.OpenGL.All.XorNv; - var _Or = OpenTK.Graphics.OpenGL.All.Or; - var _Nor = OpenTK.Graphics.OpenGL.All.Nor; - var _Equiv = OpenTK.Graphics.OpenGL.All.Equiv; - var _Invert = OpenTK.Graphics.OpenGL.All.Invert; - var _OrReverse = OpenTK.Graphics.OpenGL.All.OrReverse; - var _CopyInverted = OpenTK.Graphics.OpenGL.All.CopyInverted; - var _OrInverted = OpenTK.Graphics.OpenGL.All.OrInverted; - var _Nand = OpenTK.Graphics.OpenGL.All.Nand; - var _Set = OpenTK.Graphics.OpenGL.All.Set; - var _LargeCcwArcToNv = OpenTK.Graphics.OpenGL.All.LargeCcwArcToNv; - var _Emission = OpenTK.Graphics.OpenGL.All.Emission; - var _Shininess = OpenTK.Graphics.OpenGL.All.Shininess; - var _AmbientAndDiffuse = OpenTK.Graphics.OpenGL.All.AmbientAndDiffuse; - var _ColorIndexes = OpenTK.Graphics.OpenGL.All.ColorIndexes; - var _RelativeLargeCcwArcToNv = OpenTK.Graphics.OpenGL.All.RelativeLargeCcwArcToNv; - var _Modelview = OpenTK.Graphics.OpenGL.All.Modelview; - var _Modelview0Arb = OpenTK.Graphics.OpenGL.All.Modelview0Arb; - var _Modelview0Ext = OpenTK.Graphics.OpenGL.All.Modelview0Ext; - var _Projection = OpenTK.Graphics.OpenGL.All.Projection; - var _Texture = OpenTK.Graphics.OpenGL.All.Texture; - var _LargeCwArcToNv = OpenTK.Graphics.OpenGL.All.LargeCwArcToNv; - var _Color = OpenTK.Graphics.OpenGL.All.Color; - var _ColorExt = OpenTK.Graphics.OpenGL.All.ColorExt; - var _Depth = OpenTK.Graphics.OpenGL.All.Depth; - var _DepthExt = OpenTK.Graphics.OpenGL.All.DepthExt; - var _Stencil = OpenTK.Graphics.OpenGL.All.Stencil; - var _StencilExt = OpenTK.Graphics.OpenGL.All.StencilExt; - var _RelativeLargeCwArcToNv = OpenTK.Graphics.OpenGL.All.RelativeLargeCwArcToNv; - var _ColorIndex = OpenTK.Graphics.OpenGL.All.ColorIndex; - var _StencilIndex = OpenTK.Graphics.OpenGL.All.StencilIndex; - var _DepthComponent = OpenTK.Graphics.OpenGL.All.DepthComponent; - var _Red = OpenTK.Graphics.OpenGL.All.Red; - var _RedExt = OpenTK.Graphics.OpenGL.All.RedExt; - var _RedNv = OpenTK.Graphics.OpenGL.All.RedNv; - var _Green = OpenTK.Graphics.OpenGL.All.Green; - var _GreenNv = OpenTK.Graphics.OpenGL.All.GreenNv; - var _Blue = OpenTK.Graphics.OpenGL.All.Blue; - var _BlueNv = OpenTK.Graphics.OpenGL.All.BlueNv; - var _Alpha = OpenTK.Graphics.OpenGL.All.Alpha; - var _Rgb = OpenTK.Graphics.OpenGL.All.Rgb; - var _Rgba = OpenTK.Graphics.OpenGL.All.Rgba; - var _Luminance = OpenTK.Graphics.OpenGL.All.Luminance; - var _LuminanceAlpha = OpenTK.Graphics.OpenGL.All.LuminanceAlpha; - var _RasterPositionUnclippedIbm = OpenTK.Graphics.OpenGL.All.RasterPositionUnclippedIbm; - var _Bitmap = OpenTK.Graphics.OpenGL.All.Bitmap; - var _PreferDoublebufferHintPgi = OpenTK.Graphics.OpenGL.All.PreferDoublebufferHintPgi; - var _ConserveMemoryHintPgi = OpenTK.Graphics.OpenGL.All.ConserveMemoryHintPgi; - var _ReclaimMemoryHintPgi = OpenTK.Graphics.OpenGL.All.ReclaimMemoryHintPgi; - var _NativeGraphicsHandlePgi = OpenTK.Graphics.OpenGL.All.NativeGraphicsHandlePgi; - var _NativeGraphicsBeginHintPgi = OpenTK.Graphics.OpenGL.All.NativeGraphicsBeginHintPgi; - var _NativeGraphicsEndHintPgi = OpenTK.Graphics.OpenGL.All.NativeGraphicsEndHintPgi; - var _AlwaysFastHintPgi = OpenTK.Graphics.OpenGL.All.AlwaysFastHintPgi; - var _AlwaysSoftHintPgi = OpenTK.Graphics.OpenGL.All.AlwaysSoftHintPgi; - var _AllowDrawObjHintPgi = OpenTK.Graphics.OpenGL.All.AllowDrawObjHintPgi; - var _AllowDrawWinHintPgi = OpenTK.Graphics.OpenGL.All.AllowDrawWinHintPgi; - var _AllowDrawFrgHintPgi = OpenTK.Graphics.OpenGL.All.AllowDrawFrgHintPgi; - var _AllowDrawMemHintPgi = OpenTK.Graphics.OpenGL.All.AllowDrawMemHintPgi; - var _StrictDepthfuncHintPgi = OpenTK.Graphics.OpenGL.All.StrictDepthfuncHintPgi; - var _StrictLightingHintPgi = OpenTK.Graphics.OpenGL.All.StrictLightingHintPgi; - var _StrictScissorHintPgi = OpenTK.Graphics.OpenGL.All.StrictScissorHintPgi; - var _FullStippleHintPgi = OpenTK.Graphics.OpenGL.All.FullStippleHintPgi; - var _ClipNearHintPgi = OpenTK.Graphics.OpenGL.All.ClipNearHintPgi; - var _ClipFarHintPgi = OpenTK.Graphics.OpenGL.All.ClipFarHintPgi; - var _WideLineHintPgi = OpenTK.Graphics.OpenGL.All.WideLineHintPgi; - var _BackNormalsHintPgi = OpenTK.Graphics.OpenGL.All.BackNormalsHintPgi; - var _VertexDataHintPgi = OpenTK.Graphics.OpenGL.All.VertexDataHintPgi; - var _VertexConsistentHintPgi = OpenTK.Graphics.OpenGL.All.VertexConsistentHintPgi; - var _MaterialSideHintPgi = OpenTK.Graphics.OpenGL.All.MaterialSideHintPgi; - var _MaxVertexHintPgi = OpenTK.Graphics.OpenGL.All.MaxVertexHintPgi; - var _Point = OpenTK.Graphics.OpenGL.All.Point; - var _Line = OpenTK.Graphics.OpenGL.All.Line; - var _Fill = OpenTK.Graphics.OpenGL.All.Fill; - var _Render = OpenTK.Graphics.OpenGL.All.Render; - var _Feedback = OpenTK.Graphics.OpenGL.All.Feedback; - var _Select = OpenTK.Graphics.OpenGL.All.Select; - var _Flat = OpenTK.Graphics.OpenGL.All.Flat; - var _Smooth = OpenTK.Graphics.OpenGL.All.Smooth; - var _Keep = OpenTK.Graphics.OpenGL.All.Keep; - var _Replace = OpenTK.Graphics.OpenGL.All.Replace; - var _Incr = OpenTK.Graphics.OpenGL.All.Incr; - var _Decr = OpenTK.Graphics.OpenGL.All.Decr; - var _Vendor = OpenTK.Graphics.OpenGL.All.Vendor; - var _Renderer = OpenTK.Graphics.OpenGL.All.Renderer; - var _Version = OpenTK.Graphics.OpenGL.All.Version; - var _Extensions = OpenTK.Graphics.OpenGL.All.Extensions; - var _GlyphVerticalBearingXBitNv = OpenTK.Graphics.OpenGL.All.GlyphVerticalBearingXBitNv; - var _S = OpenTK.Graphics.OpenGL.All.S; - var _MultisampleBit = OpenTK.Graphics.OpenGL.All.MultisampleBit; - var _MultisampleBit3Dfx = OpenTK.Graphics.OpenGL.All.MultisampleBit3Dfx; - var _MultisampleBitArb = OpenTK.Graphics.OpenGL.All.MultisampleBitArb; - var _MultisampleBitExt = OpenTK.Graphics.OpenGL.All.MultisampleBitExt; - var _Texcoord2BitPgi = OpenTK.Graphics.OpenGL.All.Texcoord2BitPgi; - var _T = OpenTK.Graphics.OpenGL.All.T; - var _R = OpenTK.Graphics.OpenGL.All.R; - var _Q = OpenTK.Graphics.OpenGL.All.Q; - var _Modulate = OpenTK.Graphics.OpenGL.All.Modulate; - var _Decal = OpenTK.Graphics.OpenGL.All.Decal; - var _TextureEnvMode = OpenTK.Graphics.OpenGL.All.TextureEnvMode; - var _TextureEnvColor = OpenTK.Graphics.OpenGL.All.TextureEnvColor; - var _TextureEnv = OpenTK.Graphics.OpenGL.All.TextureEnv; - var _EyeLinear = OpenTK.Graphics.OpenGL.All.EyeLinear; - var _ObjectLinear = OpenTK.Graphics.OpenGL.All.ObjectLinear; - var _SphereMap = OpenTK.Graphics.OpenGL.All.SphereMap; - var _TextureGenMode = OpenTK.Graphics.OpenGL.All.TextureGenMode; - var _ObjectPlane = OpenTK.Graphics.OpenGL.All.ObjectPlane; - var _EyePlane = OpenTK.Graphics.OpenGL.All.EyePlane; - var _Nearest = OpenTK.Graphics.OpenGL.All.Nearest; - var _Linear = OpenTK.Graphics.OpenGL.All.Linear; - var _NearestMipmapNearest = OpenTK.Graphics.OpenGL.All.NearestMipmapNearest; - var _LinearMipmapNearest = OpenTK.Graphics.OpenGL.All.LinearMipmapNearest; - var _NearestMipmapLinear = OpenTK.Graphics.OpenGL.All.NearestMipmapLinear; - var _LinearMipmapLinear = OpenTK.Graphics.OpenGL.All.LinearMipmapLinear; - var _TextureMagFilter = OpenTK.Graphics.OpenGL.All.TextureMagFilter; - var _TextureMinFilter = OpenTK.Graphics.OpenGL.All.TextureMinFilter; - var _TextureWrapS = OpenTK.Graphics.OpenGL.All.TextureWrapS; - var _TextureWrapT = OpenTK.Graphics.OpenGL.All.TextureWrapT; - var _Clamp = OpenTK.Graphics.OpenGL.All.Clamp; - var _Repeat = OpenTK.Graphics.OpenGL.All.Repeat; - var _PolygonOffsetUnits = OpenTK.Graphics.OpenGL.All.PolygonOffsetUnits; - var _PolygonOffsetPoint = OpenTK.Graphics.OpenGL.All.PolygonOffsetPoint; - var _PolygonOffsetLine = OpenTK.Graphics.OpenGL.All.PolygonOffsetLine; - var _R3G3B2 = OpenTK.Graphics.OpenGL.All.R3G3B2; - var _V2f = OpenTK.Graphics.OpenGL.All.V2f; - var _V3f = OpenTK.Graphics.OpenGL.All.V3f; - var _C4ubV2f = OpenTK.Graphics.OpenGL.All.C4ubV2f; - var _C4ubV3f = OpenTK.Graphics.OpenGL.All.C4ubV3f; - var _C3fV3f = OpenTK.Graphics.OpenGL.All.C3fV3f; - var _N3fV3f = OpenTK.Graphics.OpenGL.All.N3fV3f; - var _C4fN3fV3f = OpenTK.Graphics.OpenGL.All.C4fN3fV3f; - var _T2fV3f = OpenTK.Graphics.OpenGL.All.T2fV3f; - var _T4fV4f = OpenTK.Graphics.OpenGL.All.T4fV4f; - var _T2fC4ubV3f = OpenTK.Graphics.OpenGL.All.T2fC4ubV3f; - var _T2fC3fV3f = OpenTK.Graphics.OpenGL.All.T2fC3fV3f; - var _T2fN3fV3f = OpenTK.Graphics.OpenGL.All.T2fN3fV3f; - var _T2fC4fN3fV3f = OpenTK.Graphics.OpenGL.All.T2fC4fN3fV3f; - var _T4fC4fN3fV4f = OpenTK.Graphics.OpenGL.All.T4fC4fN3fV4f; - var _ClipDistance0 = OpenTK.Graphics.OpenGL.All.ClipDistance0; - var _ClipPlane0 = OpenTK.Graphics.OpenGL.All.ClipPlane0; - var _ClipDistance1 = OpenTK.Graphics.OpenGL.All.ClipDistance1; - var _ClipPlane1 = OpenTK.Graphics.OpenGL.All.ClipPlane1; - var _ClipDistance2 = OpenTK.Graphics.OpenGL.All.ClipDistance2; - var _ClipPlane2 = OpenTK.Graphics.OpenGL.All.ClipPlane2; - var _ClipDistance3 = OpenTK.Graphics.OpenGL.All.ClipDistance3; - var _ClipPlane3 = OpenTK.Graphics.OpenGL.All.ClipPlane3; - var _ClipDistance4 = OpenTK.Graphics.OpenGL.All.ClipDistance4; - var _ClipPlane4 = OpenTK.Graphics.OpenGL.All.ClipPlane4; - var _ClipDistance5 = OpenTK.Graphics.OpenGL.All.ClipDistance5; - var _ClipPlane5 = OpenTK.Graphics.OpenGL.All.ClipPlane5; - var _ClipDistance6 = OpenTK.Graphics.OpenGL.All.ClipDistance6; - var _ClipDistance7 = OpenTK.Graphics.OpenGL.All.ClipDistance7; - var _GlyphVerticalBearingYBitNv = OpenTK.Graphics.OpenGL.All.GlyphVerticalBearingYBitNv; - var _Light0 = OpenTK.Graphics.OpenGL.All.Light0; - var _Texcoord3BitPgi = OpenTK.Graphics.OpenGL.All.Texcoord3BitPgi; - var _Light1 = OpenTK.Graphics.OpenGL.All.Light1; - var _Light2 = OpenTK.Graphics.OpenGL.All.Light2; - var _Light3 = OpenTK.Graphics.OpenGL.All.Light3; - var _Light4 = OpenTK.Graphics.OpenGL.All.Light4; - var _Light5 = OpenTK.Graphics.OpenGL.All.Light5; - var _Light6 = OpenTK.Graphics.OpenGL.All.Light6; - var _Light7 = OpenTK.Graphics.OpenGL.All.Light7; - var _GlyphVerticalBearingAdvanceBitNv = OpenTK.Graphics.OpenGL.All.GlyphVerticalBearingAdvanceBitNv; - var _AbgrExt = OpenTK.Graphics.OpenGL.All.AbgrExt; - var _Texcoord4BitPgi = OpenTK.Graphics.OpenGL.All.Texcoord4BitPgi; - var _ConstantColor = OpenTK.Graphics.OpenGL.All.ConstantColor; - var _ConstantColorExt = OpenTK.Graphics.OpenGL.All.ConstantColorExt; - var _OneMinusConstantColor = OpenTK.Graphics.OpenGL.All.OneMinusConstantColor; - var _OneMinusConstantColorExt = OpenTK.Graphics.OpenGL.All.OneMinusConstantColorExt; - var _ConstantAlpha = OpenTK.Graphics.OpenGL.All.ConstantAlpha; - var _ConstantAlphaExt = OpenTK.Graphics.OpenGL.All.ConstantAlphaExt; - var _OneMinusConstantAlpha = OpenTK.Graphics.OpenGL.All.OneMinusConstantAlpha; - var _OneMinusConstantAlphaExt = OpenTK.Graphics.OpenGL.All.OneMinusConstantAlphaExt; - var _BlendColor = OpenTK.Graphics.OpenGL.All.BlendColor; - var _BlendColorExt = OpenTK.Graphics.OpenGL.All.BlendColorExt; - var _FuncAdd = OpenTK.Graphics.OpenGL.All.FuncAdd; - var _FuncAddExt = OpenTK.Graphics.OpenGL.All.FuncAddExt; - var _Min = OpenTK.Graphics.OpenGL.All.Min; - var _MinExt = OpenTK.Graphics.OpenGL.All.MinExt; - var _Max = OpenTK.Graphics.OpenGL.All.Max; - var _MaxExt = OpenTK.Graphics.OpenGL.All.MaxExt; - var _BlendEquation = OpenTK.Graphics.OpenGL.All.BlendEquation; - var _BlendEquationExt = OpenTK.Graphics.OpenGL.All.BlendEquationExt; - var _BlendEquationRgb = OpenTK.Graphics.OpenGL.All.BlendEquationRgb; - var _BlendEquationRgbExt = OpenTK.Graphics.OpenGL.All.BlendEquationRgbExt; - var _FuncSubtract = OpenTK.Graphics.OpenGL.All.FuncSubtract; - var _FuncSubtractExt = OpenTK.Graphics.OpenGL.All.FuncSubtractExt; - var _FuncReverseSubtract = OpenTK.Graphics.OpenGL.All.FuncReverseSubtract; - var _FuncReverseSubtractExt = OpenTK.Graphics.OpenGL.All.FuncReverseSubtractExt; - var _CmykExt = OpenTK.Graphics.OpenGL.All.CmykExt; - var _CmykaExt = OpenTK.Graphics.OpenGL.All.CmykaExt; - var _PackCmykHintExt = OpenTK.Graphics.OpenGL.All.PackCmykHintExt; - var _UnpackCmykHintExt = OpenTK.Graphics.OpenGL.All.UnpackCmykHintExt; - var _Convolution1D = OpenTK.Graphics.OpenGL.All.Convolution1D; - var _Convolution1DExt = OpenTK.Graphics.OpenGL.All.Convolution1DExt; - var _Convolution2D = OpenTK.Graphics.OpenGL.All.Convolution2D; - var _Convolution2DExt = OpenTK.Graphics.OpenGL.All.Convolution2DExt; - var _Separable2D = OpenTK.Graphics.OpenGL.All.Separable2D; - var _Separable2DExt = OpenTK.Graphics.OpenGL.All.Separable2DExt; - var _ConvolutionBorderMode = OpenTK.Graphics.OpenGL.All.ConvolutionBorderMode; - var _ConvolutionBorderModeExt = OpenTK.Graphics.OpenGL.All.ConvolutionBorderModeExt; - var _ConvolutionFilterScale = OpenTK.Graphics.OpenGL.All.ConvolutionFilterScale; - var _ConvolutionFilterScaleExt = OpenTK.Graphics.OpenGL.All.ConvolutionFilterScaleExt; - var _ConvolutionFilterBias = OpenTK.Graphics.OpenGL.All.ConvolutionFilterBias; - var _ConvolutionFilterBiasExt = OpenTK.Graphics.OpenGL.All.ConvolutionFilterBiasExt; - var _Reduce = OpenTK.Graphics.OpenGL.All.Reduce; - var _ReduceExt = OpenTK.Graphics.OpenGL.All.ReduceExt; - var _ConvolutionFormat = OpenTK.Graphics.OpenGL.All.ConvolutionFormat; - var _ConvolutionFormatExt = OpenTK.Graphics.OpenGL.All.ConvolutionFormatExt; - var _ConvolutionWidth = OpenTK.Graphics.OpenGL.All.ConvolutionWidth; - var _ConvolutionWidthExt = OpenTK.Graphics.OpenGL.All.ConvolutionWidthExt; - var _ConvolutionHeight = OpenTK.Graphics.OpenGL.All.ConvolutionHeight; - var _ConvolutionHeightExt = OpenTK.Graphics.OpenGL.All.ConvolutionHeightExt; - var _MaxConvolutionWidth = OpenTK.Graphics.OpenGL.All.MaxConvolutionWidth; - var _MaxConvolutionWidthExt = OpenTK.Graphics.OpenGL.All.MaxConvolutionWidthExt; - var _MaxConvolutionHeight = OpenTK.Graphics.OpenGL.All.MaxConvolutionHeight; - var _MaxConvolutionHeightExt = OpenTK.Graphics.OpenGL.All.MaxConvolutionHeightExt; - var _PostConvolutionRedScale = OpenTK.Graphics.OpenGL.All.PostConvolutionRedScale; - var _PostConvolutionRedScaleExt = OpenTK.Graphics.OpenGL.All.PostConvolutionRedScaleExt; - var _PostConvolutionGreenScale = OpenTK.Graphics.OpenGL.All.PostConvolutionGreenScale; - var _PostConvolutionGreenScaleExt = OpenTK.Graphics.OpenGL.All.PostConvolutionGreenScaleExt; - var _PostConvolutionBlueScale = OpenTK.Graphics.OpenGL.All.PostConvolutionBlueScale; - var _PostConvolutionBlueScaleExt = OpenTK.Graphics.OpenGL.All.PostConvolutionBlueScaleExt; - var _PostConvolutionAlphaScale = OpenTK.Graphics.OpenGL.All.PostConvolutionAlphaScale; - var _PostConvolutionAlphaScaleExt = OpenTK.Graphics.OpenGL.All.PostConvolutionAlphaScaleExt; - var _PostConvolutionRedBias = OpenTK.Graphics.OpenGL.All.PostConvolutionRedBias; - var _PostConvolutionRedBiasExt = OpenTK.Graphics.OpenGL.All.PostConvolutionRedBiasExt; - var _PostConvolutionGreenBias = OpenTK.Graphics.OpenGL.All.PostConvolutionGreenBias; - var _PostConvolutionGreenBiasExt = OpenTK.Graphics.OpenGL.All.PostConvolutionGreenBiasExt; - var _PostConvolutionBlueBias = OpenTK.Graphics.OpenGL.All.PostConvolutionBlueBias; - var _PostConvolutionBlueBiasExt = OpenTK.Graphics.OpenGL.All.PostConvolutionBlueBiasExt; - var _PostConvolutionAlphaBias = OpenTK.Graphics.OpenGL.All.PostConvolutionAlphaBias; - var _PostConvolutionAlphaBiasExt = OpenTK.Graphics.OpenGL.All.PostConvolutionAlphaBiasExt; - var _Histogram = OpenTK.Graphics.OpenGL.All.Histogram; - var _HistogramExt = OpenTK.Graphics.OpenGL.All.HistogramExt; - var _ProxyHistogram = OpenTK.Graphics.OpenGL.All.ProxyHistogram; - var _ProxyHistogramExt = OpenTK.Graphics.OpenGL.All.ProxyHistogramExt; - var _HistogramWidth = OpenTK.Graphics.OpenGL.All.HistogramWidth; - var _HistogramWidthExt = OpenTK.Graphics.OpenGL.All.HistogramWidthExt; - var _HistogramFormat = OpenTK.Graphics.OpenGL.All.HistogramFormat; - var _HistogramFormatExt = OpenTK.Graphics.OpenGL.All.HistogramFormatExt; - var _HistogramRedSize = OpenTK.Graphics.OpenGL.All.HistogramRedSize; - var _HistogramRedSizeExt = OpenTK.Graphics.OpenGL.All.HistogramRedSizeExt; - var _HistogramGreenSize = OpenTK.Graphics.OpenGL.All.HistogramGreenSize; - var _HistogramGreenSizeExt = OpenTK.Graphics.OpenGL.All.HistogramGreenSizeExt; - var _HistogramBlueSize = OpenTK.Graphics.OpenGL.All.HistogramBlueSize; - var _HistogramBlueSizeExt = OpenTK.Graphics.OpenGL.All.HistogramBlueSizeExt; - var _HistogramAlphaSize = OpenTK.Graphics.OpenGL.All.HistogramAlphaSize; - var _HistogramAlphaSizeExt = OpenTK.Graphics.OpenGL.All.HistogramAlphaSizeExt; - var _HistogramLuminanceSize = OpenTK.Graphics.OpenGL.All.HistogramLuminanceSize; - var _HistogramLuminanceSizeExt = OpenTK.Graphics.OpenGL.All.HistogramLuminanceSizeExt; - var _HistogramSink = OpenTK.Graphics.OpenGL.All.HistogramSink; - var _HistogramSinkExt = OpenTK.Graphics.OpenGL.All.HistogramSinkExt; - var _Minmax = OpenTK.Graphics.OpenGL.All.Minmax; - var _MinmaxExt = OpenTK.Graphics.OpenGL.All.MinmaxExt; - var _MinmaxFormat = OpenTK.Graphics.OpenGL.All.MinmaxFormat; - var _MinmaxFormatExt = OpenTK.Graphics.OpenGL.All.MinmaxFormatExt; - var _MinmaxSink = OpenTK.Graphics.OpenGL.All.MinmaxSink; - var _MinmaxSinkExt = OpenTK.Graphics.OpenGL.All.MinmaxSinkExt; - var _TableTooLarge = OpenTK.Graphics.OpenGL.All.TableTooLarge; - var _TableTooLargeExt = OpenTK.Graphics.OpenGL.All.TableTooLargeExt; - var _UnsignedByte332 = OpenTK.Graphics.OpenGL.All.UnsignedByte332; - var _UnsignedByte332Ext = OpenTK.Graphics.OpenGL.All.UnsignedByte332Ext; - var _UnsignedShort4444 = OpenTK.Graphics.OpenGL.All.UnsignedShort4444; - var _UnsignedShort4444Ext = OpenTK.Graphics.OpenGL.All.UnsignedShort4444Ext; - var _UnsignedShort5551 = OpenTK.Graphics.OpenGL.All.UnsignedShort5551; - var _UnsignedShort5551Ext = OpenTK.Graphics.OpenGL.All.UnsignedShort5551Ext; - var _UnsignedInt8888 = OpenTK.Graphics.OpenGL.All.UnsignedInt8888; - var _UnsignedInt8888Ext = OpenTK.Graphics.OpenGL.All.UnsignedInt8888Ext; - var _UnsignedInt1010102 = OpenTK.Graphics.OpenGL.All.UnsignedInt1010102; - var _UnsignedInt1010102Ext = OpenTK.Graphics.OpenGL.All.UnsignedInt1010102Ext; - var _PolygonOffsetExt = OpenTK.Graphics.OpenGL.All.PolygonOffsetExt; - var _PolygonOffsetFill = OpenTK.Graphics.OpenGL.All.PolygonOffsetFill; - var _PolygonOffsetFactor = OpenTK.Graphics.OpenGL.All.PolygonOffsetFactor; - var _PolygonOffsetFactorExt = OpenTK.Graphics.OpenGL.All.PolygonOffsetFactorExt; - var _PolygonOffsetBiasExt = OpenTK.Graphics.OpenGL.All.PolygonOffsetBiasExt; - var _RescaleNormal = OpenTK.Graphics.OpenGL.All.RescaleNormal; - var _RescaleNormalExt = OpenTK.Graphics.OpenGL.All.RescaleNormalExt; - var _Alpha4 = OpenTK.Graphics.OpenGL.All.Alpha4; - var _Alpha4Ext = OpenTK.Graphics.OpenGL.All.Alpha4Ext; - var _Alpha8 = OpenTK.Graphics.OpenGL.All.Alpha8; - var _Alpha8Ext = OpenTK.Graphics.OpenGL.All.Alpha8Ext; - var _Alpha12 = OpenTK.Graphics.OpenGL.All.Alpha12; - var _Alpha12Ext = OpenTK.Graphics.OpenGL.All.Alpha12Ext; - var _Alpha16 = OpenTK.Graphics.OpenGL.All.Alpha16; - var _Alpha16Ext = OpenTK.Graphics.OpenGL.All.Alpha16Ext; - var _Luminance4 = OpenTK.Graphics.OpenGL.All.Luminance4; - var _Luminance4Ext = OpenTK.Graphics.OpenGL.All.Luminance4Ext; - var _Luminance8 = OpenTK.Graphics.OpenGL.All.Luminance8; - var _Luminance8Ext = OpenTK.Graphics.OpenGL.All.Luminance8Ext; - var _Luminance12 = OpenTK.Graphics.OpenGL.All.Luminance12; - var _Luminance12Ext = OpenTK.Graphics.OpenGL.All.Luminance12Ext; - var _Luminance16 = OpenTK.Graphics.OpenGL.All.Luminance16; - var _Luminance16Ext = OpenTK.Graphics.OpenGL.All.Luminance16Ext; - var _Luminance4Alpha4 = OpenTK.Graphics.OpenGL.All.Luminance4Alpha4; - var _Luminance4Alpha4Ext = OpenTK.Graphics.OpenGL.All.Luminance4Alpha4Ext; - var _Luminance6Alpha2 = OpenTK.Graphics.OpenGL.All.Luminance6Alpha2; - var _Luminance6Alpha2Ext = OpenTK.Graphics.OpenGL.All.Luminance6Alpha2Ext; - var _Luminance8Alpha8 = OpenTK.Graphics.OpenGL.All.Luminance8Alpha8; - var _Luminance8Alpha8Ext = OpenTK.Graphics.OpenGL.All.Luminance8Alpha8Ext; - var _Luminance12Alpha4 = OpenTK.Graphics.OpenGL.All.Luminance12Alpha4; - var _Luminance12Alpha4Ext = OpenTK.Graphics.OpenGL.All.Luminance12Alpha4Ext; - var _Luminance12Alpha12 = OpenTK.Graphics.OpenGL.All.Luminance12Alpha12; - var _Luminance12Alpha12Ext = OpenTK.Graphics.OpenGL.All.Luminance12Alpha12Ext; - var _Luminance16Alpha16 = OpenTK.Graphics.OpenGL.All.Luminance16Alpha16; - var _Luminance16Alpha16Ext = OpenTK.Graphics.OpenGL.All.Luminance16Alpha16Ext; - var _Intensity = OpenTK.Graphics.OpenGL.All.Intensity; - var _IntensityExt = OpenTK.Graphics.OpenGL.All.IntensityExt; - var _Intensity4 = OpenTK.Graphics.OpenGL.All.Intensity4; - var _Intensity4Ext = OpenTK.Graphics.OpenGL.All.Intensity4Ext; - var _Intensity8 = OpenTK.Graphics.OpenGL.All.Intensity8; - var _Intensity8Ext = OpenTK.Graphics.OpenGL.All.Intensity8Ext; - var _Intensity12 = OpenTK.Graphics.OpenGL.All.Intensity12; - var _Intensity12Ext = OpenTK.Graphics.OpenGL.All.Intensity12Ext; - var _Intensity16 = OpenTK.Graphics.OpenGL.All.Intensity16; - var _Intensity16Ext = OpenTK.Graphics.OpenGL.All.Intensity16Ext; - var _Rgb2Ext = OpenTK.Graphics.OpenGL.All.Rgb2Ext; - var _Rgb4 = OpenTK.Graphics.OpenGL.All.Rgb4; - var _Rgb4Ext = OpenTK.Graphics.OpenGL.All.Rgb4Ext; - var _Rgb5 = OpenTK.Graphics.OpenGL.All.Rgb5; - var _Rgb5Ext = OpenTK.Graphics.OpenGL.All.Rgb5Ext; - var _Rgb8 = OpenTK.Graphics.OpenGL.All.Rgb8; - var _Rgb8Ext = OpenTK.Graphics.OpenGL.All.Rgb8Ext; - var _Rgb10 = OpenTK.Graphics.OpenGL.All.Rgb10; - var _Rgb10Ext = OpenTK.Graphics.OpenGL.All.Rgb10Ext; - var _Rgb12 = OpenTK.Graphics.OpenGL.All.Rgb12; - var _Rgb12Ext = OpenTK.Graphics.OpenGL.All.Rgb12Ext; - var _Rgb16 = OpenTK.Graphics.OpenGL.All.Rgb16; - var _Rgb16Ext = OpenTK.Graphics.OpenGL.All.Rgb16Ext; - var _Rgba2 = OpenTK.Graphics.OpenGL.All.Rgba2; - var _Rgba2Ext = OpenTK.Graphics.OpenGL.All.Rgba2Ext; - var _Rgba4 = OpenTK.Graphics.OpenGL.All.Rgba4; - var _Rgba4Ext = OpenTK.Graphics.OpenGL.All.Rgba4Ext; - var _Rgb5A1 = OpenTK.Graphics.OpenGL.All.Rgb5A1; - var _Rgb5A1Ext = OpenTK.Graphics.OpenGL.All.Rgb5A1Ext; - var _Rgba8 = OpenTK.Graphics.OpenGL.All.Rgba8; - var _Rgba8Ext = OpenTK.Graphics.OpenGL.All.Rgba8Ext; - var _Rgb10A2 = OpenTK.Graphics.OpenGL.All.Rgb10A2; - var _Rgb10A2Ext = OpenTK.Graphics.OpenGL.All.Rgb10A2Ext; - var _Rgba12 = OpenTK.Graphics.OpenGL.All.Rgba12; - var _Rgba12Ext = OpenTK.Graphics.OpenGL.All.Rgba12Ext; - var _Rgba16 = OpenTK.Graphics.OpenGL.All.Rgba16; - var _Rgba16Ext = OpenTK.Graphics.OpenGL.All.Rgba16Ext; - var _TextureRedSize = OpenTK.Graphics.OpenGL.All.TextureRedSize; - var _TextureRedSizeExt = OpenTK.Graphics.OpenGL.All.TextureRedSizeExt; - var _TextureGreenSize = OpenTK.Graphics.OpenGL.All.TextureGreenSize; - var _TextureGreenSizeExt = OpenTK.Graphics.OpenGL.All.TextureGreenSizeExt; - var _TextureBlueSize = OpenTK.Graphics.OpenGL.All.TextureBlueSize; - var _TextureBlueSizeExt = OpenTK.Graphics.OpenGL.All.TextureBlueSizeExt; - var _TextureAlphaSize = OpenTK.Graphics.OpenGL.All.TextureAlphaSize; - var _TextureAlphaSizeExt = OpenTK.Graphics.OpenGL.All.TextureAlphaSizeExt; - var _TextureLuminanceSize = OpenTK.Graphics.OpenGL.All.TextureLuminanceSize; - var _TextureLuminanceSizeExt = OpenTK.Graphics.OpenGL.All.TextureLuminanceSizeExt; - var _TextureIntensitySize = OpenTK.Graphics.OpenGL.All.TextureIntensitySize; - var _TextureIntensitySizeExt = OpenTK.Graphics.OpenGL.All.TextureIntensitySizeExt; - var _ReplaceExt = OpenTK.Graphics.OpenGL.All.ReplaceExt; - var _ProxyTexture1D = OpenTK.Graphics.OpenGL.All.ProxyTexture1D; - var _ProxyTexture1DExt = OpenTK.Graphics.OpenGL.All.ProxyTexture1DExt; - var _ProxyTexture2D = OpenTK.Graphics.OpenGL.All.ProxyTexture2D; - var _ProxyTexture2DExt = OpenTK.Graphics.OpenGL.All.ProxyTexture2DExt; - var _TextureTooLargeExt = OpenTK.Graphics.OpenGL.All.TextureTooLargeExt; - var _TexturePriority = OpenTK.Graphics.OpenGL.All.TexturePriority; - var _TexturePriorityExt = OpenTK.Graphics.OpenGL.All.TexturePriorityExt; - var _TextureResident = OpenTK.Graphics.OpenGL.All.TextureResident; - var _TextureResidentExt = OpenTK.Graphics.OpenGL.All.TextureResidentExt; - var _Texture1DBindingExt = OpenTK.Graphics.OpenGL.All.Texture1DBindingExt; - var _TextureBinding1D = OpenTK.Graphics.OpenGL.All.TextureBinding1D; - var _Texture2DBindingExt = OpenTK.Graphics.OpenGL.All.Texture2DBindingExt; - var _TextureBinding2D = OpenTK.Graphics.OpenGL.All.TextureBinding2D; - var _Texture3DBindingExt = OpenTK.Graphics.OpenGL.All.Texture3DBindingExt; - var _TextureBinding3D = OpenTK.Graphics.OpenGL.All.TextureBinding3D; - var _PackSkipImages = OpenTK.Graphics.OpenGL.All.PackSkipImages; - var _PackSkipImagesExt = OpenTK.Graphics.OpenGL.All.PackSkipImagesExt; - var _PackImageHeight = OpenTK.Graphics.OpenGL.All.PackImageHeight; - var _PackImageHeightExt = OpenTK.Graphics.OpenGL.All.PackImageHeightExt; - var _UnpackSkipImages = OpenTK.Graphics.OpenGL.All.UnpackSkipImages; - var _UnpackSkipImagesExt = OpenTK.Graphics.OpenGL.All.UnpackSkipImagesExt; - var _UnpackImageHeight = OpenTK.Graphics.OpenGL.All.UnpackImageHeight; - var _UnpackImageHeightExt = OpenTK.Graphics.OpenGL.All.UnpackImageHeightExt; - var _Texture3D = OpenTK.Graphics.OpenGL.All.Texture3D; - var _Texture3DExt = OpenTK.Graphics.OpenGL.All.Texture3DExt; - var _Texture3DOes = OpenTK.Graphics.OpenGL.All.Texture3DOes; - var _ProxyTexture3D = OpenTK.Graphics.OpenGL.All.ProxyTexture3D; - var _ProxyTexture3DExt = OpenTK.Graphics.OpenGL.All.ProxyTexture3DExt; - var _TextureDepth = OpenTK.Graphics.OpenGL.All.TextureDepth; - var _TextureDepthExt = OpenTK.Graphics.OpenGL.All.TextureDepthExt; - var _TextureWrapR = OpenTK.Graphics.OpenGL.All.TextureWrapR; - var _TextureWrapRExt = OpenTK.Graphics.OpenGL.All.TextureWrapRExt; - var _TextureWrapROes = OpenTK.Graphics.OpenGL.All.TextureWrapROes; - var _Max3DTextureSize = OpenTK.Graphics.OpenGL.All.Max3DTextureSize; - var _Max3DTextureSizeExt = OpenTK.Graphics.OpenGL.All.Max3DTextureSizeExt; - var _VertexArray = OpenTK.Graphics.OpenGL.All.VertexArray; - var _VertexArrayExt = OpenTK.Graphics.OpenGL.All.VertexArrayExt; - var _VertexArrayKhr = OpenTK.Graphics.OpenGL.All.VertexArrayKhr; - var _NormalArray = OpenTK.Graphics.OpenGL.All.NormalArray; - var _NormalArrayExt = OpenTK.Graphics.OpenGL.All.NormalArrayExt; - var _ColorArray = OpenTK.Graphics.OpenGL.All.ColorArray; - var _ColorArrayExt = OpenTK.Graphics.OpenGL.All.ColorArrayExt; - var _IndexArray = OpenTK.Graphics.OpenGL.All.IndexArray; - var _IndexArrayExt = OpenTK.Graphics.OpenGL.All.IndexArrayExt; - var _TextureCoordArray = OpenTK.Graphics.OpenGL.All.TextureCoordArray; - var _TextureCoordArrayExt = OpenTK.Graphics.OpenGL.All.TextureCoordArrayExt; - var _EdgeFlagArray = OpenTK.Graphics.OpenGL.All.EdgeFlagArray; - var _EdgeFlagArrayExt = OpenTK.Graphics.OpenGL.All.EdgeFlagArrayExt; - var _VertexArraySize = OpenTK.Graphics.OpenGL.All.VertexArraySize; - var _VertexArraySizeExt = OpenTK.Graphics.OpenGL.All.VertexArraySizeExt; - var _VertexArrayType = OpenTK.Graphics.OpenGL.All.VertexArrayType; - var _VertexArrayTypeExt = OpenTK.Graphics.OpenGL.All.VertexArrayTypeExt; - var _VertexArrayStride = OpenTK.Graphics.OpenGL.All.VertexArrayStride; - var _VertexArrayStrideExt = OpenTK.Graphics.OpenGL.All.VertexArrayStrideExt; - var _VertexArrayCountExt = OpenTK.Graphics.OpenGL.All.VertexArrayCountExt; - var _NormalArrayType = OpenTK.Graphics.OpenGL.All.NormalArrayType; - var _NormalArrayTypeExt = OpenTK.Graphics.OpenGL.All.NormalArrayTypeExt; - var _NormalArrayStride = OpenTK.Graphics.OpenGL.All.NormalArrayStride; - var _NormalArrayStrideExt = OpenTK.Graphics.OpenGL.All.NormalArrayStrideExt; - var _NormalArrayCountExt = OpenTK.Graphics.OpenGL.All.NormalArrayCountExt; - var _ColorArraySize = OpenTK.Graphics.OpenGL.All.ColorArraySize; - var _ColorArraySizeExt = OpenTK.Graphics.OpenGL.All.ColorArraySizeExt; - var _ColorArrayType = OpenTK.Graphics.OpenGL.All.ColorArrayType; - var _ColorArrayTypeExt = OpenTK.Graphics.OpenGL.All.ColorArrayTypeExt; - var _ColorArrayStride = OpenTK.Graphics.OpenGL.All.ColorArrayStride; - var _ColorArrayStrideExt = OpenTK.Graphics.OpenGL.All.ColorArrayStrideExt; - var _ColorArrayCountExt = OpenTK.Graphics.OpenGL.All.ColorArrayCountExt; - var _IndexArrayType = OpenTK.Graphics.OpenGL.All.IndexArrayType; - var _IndexArrayTypeExt = OpenTK.Graphics.OpenGL.All.IndexArrayTypeExt; - var _IndexArrayStride = OpenTK.Graphics.OpenGL.All.IndexArrayStride; - var _IndexArrayStrideExt = OpenTK.Graphics.OpenGL.All.IndexArrayStrideExt; - var _IndexArrayCountExt = OpenTK.Graphics.OpenGL.All.IndexArrayCountExt; - var _TextureCoordArraySize = OpenTK.Graphics.OpenGL.All.TextureCoordArraySize; - var _TextureCoordArraySizeExt = OpenTK.Graphics.OpenGL.All.TextureCoordArraySizeExt; - var _TextureCoordArrayType = OpenTK.Graphics.OpenGL.All.TextureCoordArrayType; - var _TextureCoordArrayTypeExt = OpenTK.Graphics.OpenGL.All.TextureCoordArrayTypeExt; - var _TextureCoordArrayStride = OpenTK.Graphics.OpenGL.All.TextureCoordArrayStride; - var _TextureCoordArrayStrideExt = OpenTK.Graphics.OpenGL.All.TextureCoordArrayStrideExt; - var _TextureCoordArrayCountExt = OpenTK.Graphics.OpenGL.All.TextureCoordArrayCountExt; - var _EdgeFlagArrayStride = OpenTK.Graphics.OpenGL.All.EdgeFlagArrayStride; - var _EdgeFlagArrayStrideExt = OpenTK.Graphics.OpenGL.All.EdgeFlagArrayStrideExt; - var _EdgeFlagArrayCountExt = OpenTK.Graphics.OpenGL.All.EdgeFlagArrayCountExt; - var _VertexArrayPointer = OpenTK.Graphics.OpenGL.All.VertexArrayPointer; - var _VertexArrayPointerExt = OpenTK.Graphics.OpenGL.All.VertexArrayPointerExt; - var _NormalArrayPointer = OpenTK.Graphics.OpenGL.All.NormalArrayPointer; - var _NormalArrayPointerExt = OpenTK.Graphics.OpenGL.All.NormalArrayPointerExt; - var _ColorArrayPointer = OpenTK.Graphics.OpenGL.All.ColorArrayPointer; - var _ColorArrayPointerExt = OpenTK.Graphics.OpenGL.All.ColorArrayPointerExt; - var _IndexArrayPointer = OpenTK.Graphics.OpenGL.All.IndexArrayPointer; - var _IndexArrayPointerExt = OpenTK.Graphics.OpenGL.All.IndexArrayPointerExt; - var _TextureCoordArrayPointer = OpenTK.Graphics.OpenGL.All.TextureCoordArrayPointer; - var _TextureCoordArrayPointerExt = OpenTK.Graphics.OpenGL.All.TextureCoordArrayPointerExt; - var _EdgeFlagArrayPointer = OpenTK.Graphics.OpenGL.All.EdgeFlagArrayPointer; - var _EdgeFlagArrayPointerExt = OpenTK.Graphics.OpenGL.All.EdgeFlagArrayPointerExt; - var _InterlaceSgix = OpenTK.Graphics.OpenGL.All.InterlaceSgix; - var _DetailTexture2DSgis = OpenTK.Graphics.OpenGL.All.DetailTexture2DSgis; - var _DetailTexture2DBindingSgis = OpenTK.Graphics.OpenGL.All.DetailTexture2DBindingSgis; - var _LinearDetailSgis = OpenTK.Graphics.OpenGL.All.LinearDetailSgis; - var _LinearDetailAlphaSgis = OpenTK.Graphics.OpenGL.All.LinearDetailAlphaSgis; - var _LinearDetailColorSgis = OpenTK.Graphics.OpenGL.All.LinearDetailColorSgis; - var _DetailTextureLevelSgis = OpenTK.Graphics.OpenGL.All.DetailTextureLevelSgis; - var _DetailTextureModeSgis = OpenTK.Graphics.OpenGL.All.DetailTextureModeSgis; - var _DetailTextureFuncPointsSgis = OpenTK.Graphics.OpenGL.All.DetailTextureFuncPointsSgis; - var _Multisample = OpenTK.Graphics.OpenGL.All.Multisample; - var _MultisampleArb = OpenTK.Graphics.OpenGL.All.MultisampleArb; - var _MultisampleExt = OpenTK.Graphics.OpenGL.All.MultisampleExt; - var _MultisampleSgis = OpenTK.Graphics.OpenGL.All.MultisampleSgis; - var _SampleAlphaToCoverage = OpenTK.Graphics.OpenGL.All.SampleAlphaToCoverage; - var _SampleAlphaToCoverageArb = OpenTK.Graphics.OpenGL.All.SampleAlphaToCoverageArb; - var _SampleAlphaToMaskExt = OpenTK.Graphics.OpenGL.All.SampleAlphaToMaskExt; - var _SampleAlphaToMaskSgis = OpenTK.Graphics.OpenGL.All.SampleAlphaToMaskSgis; - var _SampleAlphaToOne = OpenTK.Graphics.OpenGL.All.SampleAlphaToOne; - var _SampleAlphaToOneArb = OpenTK.Graphics.OpenGL.All.SampleAlphaToOneArb; - var _SampleAlphaToOneExt = OpenTK.Graphics.OpenGL.All.SampleAlphaToOneExt; - var _SampleAlphaToOneSgis = OpenTK.Graphics.OpenGL.All.SampleAlphaToOneSgis; - var _SampleCoverage = OpenTK.Graphics.OpenGL.All.SampleCoverage; - var _SampleCoverageArb = OpenTK.Graphics.OpenGL.All.SampleCoverageArb; - var _SampleMaskExt = OpenTK.Graphics.OpenGL.All.SampleMaskExt; - var _SampleMaskSgis = OpenTK.Graphics.OpenGL.All.SampleMaskSgis; - var _Gl1PassExt = OpenTK.Graphics.OpenGL.All.Gl1PassExt; - var _Gl1PassSgis = OpenTK.Graphics.OpenGL.All.Gl1PassSgis; - var _Gl2Pass0Ext = OpenTK.Graphics.OpenGL.All.Gl2Pass0Ext; - var _Gl2Pass0Sgis = OpenTK.Graphics.OpenGL.All.Gl2Pass0Sgis; - var _Gl2Pass1Ext = OpenTK.Graphics.OpenGL.All.Gl2Pass1Ext; - var _Gl2Pass1Sgis = OpenTK.Graphics.OpenGL.All.Gl2Pass1Sgis; - var _Gl4Pass0Ext = OpenTK.Graphics.OpenGL.All.Gl4Pass0Ext; - var _Gl4Pass0Sgis = OpenTK.Graphics.OpenGL.All.Gl4Pass0Sgis; - var _Gl4Pass1Ext = OpenTK.Graphics.OpenGL.All.Gl4Pass1Ext; - var _Gl4Pass1Sgis = OpenTK.Graphics.OpenGL.All.Gl4Pass1Sgis; - var _Gl4Pass2Ext = OpenTK.Graphics.OpenGL.All.Gl4Pass2Ext; - var _Gl4Pass2Sgis = OpenTK.Graphics.OpenGL.All.Gl4Pass2Sgis; - var _Gl4Pass3Ext = OpenTK.Graphics.OpenGL.All.Gl4Pass3Ext; - var _Gl4Pass3Sgis = OpenTK.Graphics.OpenGL.All.Gl4Pass3Sgis; - var _SampleBuffers = OpenTK.Graphics.OpenGL.All.SampleBuffers; - var _SampleBuffersArb = OpenTK.Graphics.OpenGL.All.SampleBuffersArb; - var _SampleBuffersExt = OpenTK.Graphics.OpenGL.All.SampleBuffersExt; - var _SampleBuffersSgis = OpenTK.Graphics.OpenGL.All.SampleBuffersSgis; - var _Samples = OpenTK.Graphics.OpenGL.All.Samples; - var _SamplesArb = OpenTK.Graphics.OpenGL.All.SamplesArb; - var _SamplesExt = OpenTK.Graphics.OpenGL.All.SamplesExt; - var _SamplesSgis = OpenTK.Graphics.OpenGL.All.SamplesSgis; - var _SampleCoverageValue = OpenTK.Graphics.OpenGL.All.SampleCoverageValue; - var _SampleCoverageValueArb = OpenTK.Graphics.OpenGL.All.SampleCoverageValueArb; - var _SampleMaskValueExt = OpenTK.Graphics.OpenGL.All.SampleMaskValueExt; - var _SampleMaskValueSgis = OpenTK.Graphics.OpenGL.All.SampleMaskValueSgis; - var _SampleCoverageInvert = OpenTK.Graphics.OpenGL.All.SampleCoverageInvert; - var _SampleCoverageInvertArb = OpenTK.Graphics.OpenGL.All.SampleCoverageInvertArb; - var _SampleMaskInvertExt = OpenTK.Graphics.OpenGL.All.SampleMaskInvertExt; - var _SampleMaskInvertSgis = OpenTK.Graphics.OpenGL.All.SampleMaskInvertSgis; - var _SamplePatternExt = OpenTK.Graphics.OpenGL.All.SamplePatternExt; - var _SamplePatternSgis = OpenTK.Graphics.OpenGL.All.SamplePatternSgis; - var _LinearSharpenSgis = OpenTK.Graphics.OpenGL.All.LinearSharpenSgis; - var _LinearSharpenAlphaSgis = OpenTK.Graphics.OpenGL.All.LinearSharpenAlphaSgis; - var _LinearSharpenColorSgis = OpenTK.Graphics.OpenGL.All.LinearSharpenColorSgis; - var _SharpenTextureFuncPointsSgis = OpenTK.Graphics.OpenGL.All.SharpenTextureFuncPointsSgis; - var _ColorMatrix = OpenTK.Graphics.OpenGL.All.ColorMatrix; - var _ColorMatrixSgi = OpenTK.Graphics.OpenGL.All.ColorMatrixSgi; - var _ColorMatrixStackDepth = OpenTK.Graphics.OpenGL.All.ColorMatrixStackDepth; - var _ColorMatrixStackDepthSgi = OpenTK.Graphics.OpenGL.All.ColorMatrixStackDepthSgi; - var _MaxColorMatrixStackDepth = OpenTK.Graphics.OpenGL.All.MaxColorMatrixStackDepth; - var _MaxColorMatrixStackDepthSgi = OpenTK.Graphics.OpenGL.All.MaxColorMatrixStackDepthSgi; - var _PostColorMatrixRedScale = OpenTK.Graphics.OpenGL.All.PostColorMatrixRedScale; - var _PostColorMatrixRedScaleSgi = OpenTK.Graphics.OpenGL.All.PostColorMatrixRedScaleSgi; - var _PostColorMatrixGreenScale = OpenTK.Graphics.OpenGL.All.PostColorMatrixGreenScale; - var _PostColorMatrixGreenScaleSgi = OpenTK.Graphics.OpenGL.All.PostColorMatrixGreenScaleSgi; - var _PostColorMatrixBlueScale = OpenTK.Graphics.OpenGL.All.PostColorMatrixBlueScale; - var _PostColorMatrixBlueScaleSgi = OpenTK.Graphics.OpenGL.All.PostColorMatrixBlueScaleSgi; - var _PostColorMatrixAlphaScale = OpenTK.Graphics.OpenGL.All.PostColorMatrixAlphaScale; - var _PostColorMatrixAlphaScaleSgi = OpenTK.Graphics.OpenGL.All.PostColorMatrixAlphaScaleSgi; - var _PostColorMatrixRedBias = OpenTK.Graphics.OpenGL.All.PostColorMatrixRedBias; - var _PostColorMatrixRedBiasSgi = OpenTK.Graphics.OpenGL.All.PostColorMatrixRedBiasSgi; - var _PostColorMatrixGreenBias = OpenTK.Graphics.OpenGL.All.PostColorMatrixGreenBias; - var _PostColorMatrixGreenBiasSgi = OpenTK.Graphics.OpenGL.All.PostColorMatrixGreenBiasSgi; - var _PostColorMatrixBlueBias = OpenTK.Graphics.OpenGL.All.PostColorMatrixBlueBias; - var _PostColorMatrixBlueBiasSgi = OpenTK.Graphics.OpenGL.All.PostColorMatrixBlueBiasSgi; - var _PostColorMatrixAlphaBias = OpenTK.Graphics.OpenGL.All.PostColorMatrixAlphaBias; - var _PostColorMatrixAlphaBiasSgi = OpenTK.Graphics.OpenGL.All.PostColorMatrixAlphaBiasSgi; - var _TextureColorTableSgi = OpenTK.Graphics.OpenGL.All.TextureColorTableSgi; - var _ProxyTextureColorTableSgi = OpenTK.Graphics.OpenGL.All.ProxyTextureColorTableSgi; - var _TextureEnvBiasSgix = OpenTK.Graphics.OpenGL.All.TextureEnvBiasSgix; - var _ShadowAmbientSgix = OpenTK.Graphics.OpenGL.All.ShadowAmbientSgix; - var _TextureCompareFailValue = OpenTK.Graphics.OpenGL.All.TextureCompareFailValue; - var _TextureCompareFailValueArb = OpenTK.Graphics.OpenGL.All.TextureCompareFailValueArb; - var _BlendDstRgb = OpenTK.Graphics.OpenGL.All.BlendDstRgb; - var _BlendDstRgbExt = OpenTK.Graphics.OpenGL.All.BlendDstRgbExt; - var _BlendSrcRgb = OpenTK.Graphics.OpenGL.All.BlendSrcRgb; - var _BlendSrcRgbExt = OpenTK.Graphics.OpenGL.All.BlendSrcRgbExt; - var _BlendDstAlpha = OpenTK.Graphics.OpenGL.All.BlendDstAlpha; - var _BlendDstAlphaExt = OpenTK.Graphics.OpenGL.All.BlendDstAlphaExt; - var _BlendSrcAlpha = OpenTK.Graphics.OpenGL.All.BlendSrcAlpha; - var _BlendSrcAlphaExt = OpenTK.Graphics.OpenGL.All.BlendSrcAlphaExt; - var _Gl422Ext = OpenTK.Graphics.OpenGL.All.Gl422Ext; - var _Gl422RevExt = OpenTK.Graphics.OpenGL.All.Gl422RevExt; - var _Gl422AverageExt = OpenTK.Graphics.OpenGL.All.Gl422AverageExt; - var _Gl422RevAverageExt = OpenTK.Graphics.OpenGL.All.Gl422RevAverageExt; - var _ColorTable = OpenTK.Graphics.OpenGL.All.ColorTable; - var _ColorTableSgi = OpenTK.Graphics.OpenGL.All.ColorTableSgi; - var _PostConvolutionColorTable = OpenTK.Graphics.OpenGL.All.PostConvolutionColorTable; - var _PostConvolutionColorTableSgi = OpenTK.Graphics.OpenGL.All.PostConvolutionColorTableSgi; - var _PostColorMatrixColorTable = OpenTK.Graphics.OpenGL.All.PostColorMatrixColorTable; - var _PostColorMatrixColorTableSgi = OpenTK.Graphics.OpenGL.All.PostColorMatrixColorTableSgi; - var _ProxyColorTable = OpenTK.Graphics.OpenGL.All.ProxyColorTable; - var _ProxyColorTableSgi = OpenTK.Graphics.OpenGL.All.ProxyColorTableSgi; - var _ProxyPostConvolutionColorTable = OpenTK.Graphics.OpenGL.All.ProxyPostConvolutionColorTable; - var _ProxyPostConvolutionColorTableSgi = OpenTK.Graphics.OpenGL.All.ProxyPostConvolutionColorTableSgi; - var _ProxyPostColorMatrixColorTable = OpenTK.Graphics.OpenGL.All.ProxyPostColorMatrixColorTable; - var _ProxyPostColorMatrixColorTableSgi = OpenTK.Graphics.OpenGL.All.ProxyPostColorMatrixColorTableSgi; - var _ColorTableScale = OpenTK.Graphics.OpenGL.All.ColorTableScale; - var _ColorTableScaleSgi = OpenTK.Graphics.OpenGL.All.ColorTableScaleSgi; - var _ColorTableBias = OpenTK.Graphics.OpenGL.All.ColorTableBias; - var _ColorTableBiasSgi = OpenTK.Graphics.OpenGL.All.ColorTableBiasSgi; - var _ColorTableFormat = OpenTK.Graphics.OpenGL.All.ColorTableFormat; - var _ColorTableFormatSgi = OpenTK.Graphics.OpenGL.All.ColorTableFormatSgi; - var _ColorTableWidth = OpenTK.Graphics.OpenGL.All.ColorTableWidth; - var _ColorTableWidthSgi = OpenTK.Graphics.OpenGL.All.ColorTableWidthSgi; - var _ColorTableRedSize = OpenTK.Graphics.OpenGL.All.ColorTableRedSize; - var _ColorTableRedSizeSgi = OpenTK.Graphics.OpenGL.All.ColorTableRedSizeSgi; - var _ColorTableGreenSize = OpenTK.Graphics.OpenGL.All.ColorTableGreenSize; - var _ColorTableGreenSizeSgi = OpenTK.Graphics.OpenGL.All.ColorTableGreenSizeSgi; - var _ColorTableBlueSize = OpenTK.Graphics.OpenGL.All.ColorTableBlueSize; - var _ColorTableBlueSizeSgi = OpenTK.Graphics.OpenGL.All.ColorTableBlueSizeSgi; - var _ColorTableAlphaSize = OpenTK.Graphics.OpenGL.All.ColorTableAlphaSize; - var _ColorTableAlphaSizeSgi = OpenTK.Graphics.OpenGL.All.ColorTableAlphaSizeSgi; - var _ColorTableLuminanceSize = OpenTK.Graphics.OpenGL.All.ColorTableLuminanceSize; - var _ColorTableLuminanceSizeSgi = OpenTK.Graphics.OpenGL.All.ColorTableLuminanceSizeSgi; - var _ColorTableIntensitySize = OpenTK.Graphics.OpenGL.All.ColorTableIntensitySize; - var _ColorTableIntensitySizeSgi = OpenTK.Graphics.OpenGL.All.ColorTableIntensitySizeSgi; - var _Bgr = OpenTK.Graphics.OpenGL.All.Bgr; - var _BgrExt = OpenTK.Graphics.OpenGL.All.BgrExt; - var _Bgra = OpenTK.Graphics.OpenGL.All.Bgra; - var _BgraExt = OpenTK.Graphics.OpenGL.All.BgraExt; - var _ColorIndex1Ext = OpenTK.Graphics.OpenGL.All.ColorIndex1Ext; - var _ColorIndex2Ext = OpenTK.Graphics.OpenGL.All.ColorIndex2Ext; - var _ColorIndex4Ext = OpenTK.Graphics.OpenGL.All.ColorIndex4Ext; - var _ColorIndex8Ext = OpenTK.Graphics.OpenGL.All.ColorIndex8Ext; - var _ColorIndex12Ext = OpenTK.Graphics.OpenGL.All.ColorIndex12Ext; - var _ColorIndex16Ext = OpenTK.Graphics.OpenGL.All.ColorIndex16Ext; - var _MaxElementsVertices = OpenTK.Graphics.OpenGL.All.MaxElementsVertices; - var _MaxElementsVerticesExt = OpenTK.Graphics.OpenGL.All.MaxElementsVerticesExt; - var _MaxElementsIndices = OpenTK.Graphics.OpenGL.All.MaxElementsIndices; - var _MaxElementsIndicesExt = OpenTK.Graphics.OpenGL.All.MaxElementsIndicesExt; - var _PhongWin = OpenTK.Graphics.OpenGL.All.PhongWin; - var _PhongHintWin = OpenTK.Graphics.OpenGL.All.PhongHintWin; - var _FogSpecularTextureWin = OpenTK.Graphics.OpenGL.All.FogSpecularTextureWin; - var _TextureIndexSizeExt = OpenTK.Graphics.OpenGL.All.TextureIndexSizeExt; - var _ParameterBufferArb = OpenTK.Graphics.OpenGL.All.ParameterBufferArb; - var _ParameterBufferBindingArb = OpenTK.Graphics.OpenGL.All.ParameterBufferBindingArb; - var _ClipVolumeClippingHintExt = OpenTK.Graphics.OpenGL.All.ClipVolumeClippingHintExt; - var _DualAlpha4Sgis = OpenTK.Graphics.OpenGL.All.DualAlpha4Sgis; - var _DualAlpha8Sgis = OpenTK.Graphics.OpenGL.All.DualAlpha8Sgis; - var _DualAlpha12Sgis = OpenTK.Graphics.OpenGL.All.DualAlpha12Sgis; - var _DualAlpha16Sgis = OpenTK.Graphics.OpenGL.All.DualAlpha16Sgis; - var _DualLuminance4Sgis = OpenTK.Graphics.OpenGL.All.DualLuminance4Sgis; - var _DualLuminance8Sgis = OpenTK.Graphics.OpenGL.All.DualLuminance8Sgis; - var _DualLuminance12Sgis = OpenTK.Graphics.OpenGL.All.DualLuminance12Sgis; - var _DualLuminance16Sgis = OpenTK.Graphics.OpenGL.All.DualLuminance16Sgis; - var _DualIntensity4Sgis = OpenTK.Graphics.OpenGL.All.DualIntensity4Sgis; - var _DualIntensity8Sgis = OpenTK.Graphics.OpenGL.All.DualIntensity8Sgis; - var _DualIntensity12Sgis = OpenTK.Graphics.OpenGL.All.DualIntensity12Sgis; - var _DualIntensity16Sgis = OpenTK.Graphics.OpenGL.All.DualIntensity16Sgis; - var _DualLuminanceAlpha4Sgis = OpenTK.Graphics.OpenGL.All.DualLuminanceAlpha4Sgis; - var _DualLuminanceAlpha8Sgis = OpenTK.Graphics.OpenGL.All.DualLuminanceAlpha8Sgis; - var _QuadAlpha4Sgis = OpenTK.Graphics.OpenGL.All.QuadAlpha4Sgis; - var _QuadAlpha8Sgis = OpenTK.Graphics.OpenGL.All.QuadAlpha8Sgis; - var _QuadLuminance4Sgis = OpenTK.Graphics.OpenGL.All.QuadLuminance4Sgis; - var _QuadLuminance8Sgis = OpenTK.Graphics.OpenGL.All.QuadLuminance8Sgis; - var _QuadIntensity4Sgis = OpenTK.Graphics.OpenGL.All.QuadIntensity4Sgis; - var _QuadIntensity8Sgis = OpenTK.Graphics.OpenGL.All.QuadIntensity8Sgis; - var _DualTextureSelectSgis = OpenTK.Graphics.OpenGL.All.DualTextureSelectSgis; - var _QuadTextureSelectSgis = OpenTK.Graphics.OpenGL.All.QuadTextureSelectSgis; - var _PointSizeMin = OpenTK.Graphics.OpenGL.All.PointSizeMin; - var _PointSizeMinArb = OpenTK.Graphics.OpenGL.All.PointSizeMinArb; - var _PointSizeMinExt = OpenTK.Graphics.OpenGL.All.PointSizeMinExt; - var _PointSizeMinSgis = OpenTK.Graphics.OpenGL.All.PointSizeMinSgis; - var _PointSizeMax = OpenTK.Graphics.OpenGL.All.PointSizeMax; - var _PointSizeMaxArb = OpenTK.Graphics.OpenGL.All.PointSizeMaxArb; - var _PointSizeMaxExt = OpenTK.Graphics.OpenGL.All.PointSizeMaxExt; - var _PointSizeMaxSgis = OpenTK.Graphics.OpenGL.All.PointSizeMaxSgis; - var _PointFadeThresholdSize = OpenTK.Graphics.OpenGL.All.PointFadeThresholdSize; - var _PointFadeThresholdSizeArb = OpenTK.Graphics.OpenGL.All.PointFadeThresholdSizeArb; - var _PointFadeThresholdSizeExt = OpenTK.Graphics.OpenGL.All.PointFadeThresholdSizeExt; - var _PointFadeThresholdSizeSgis = OpenTK.Graphics.OpenGL.All.PointFadeThresholdSizeSgis; - var _DistanceAttenuationExt = OpenTK.Graphics.OpenGL.All.DistanceAttenuationExt; - var _DistanceAttenuationSgis = OpenTK.Graphics.OpenGL.All.DistanceAttenuationSgis; - var _PointDistanceAttenuation = OpenTK.Graphics.OpenGL.All.PointDistanceAttenuation; - var _PointDistanceAttenuationArb = OpenTK.Graphics.OpenGL.All.PointDistanceAttenuationArb; - var _FogFuncSgis = OpenTK.Graphics.OpenGL.All.FogFuncSgis; - var _FogFuncPointsSgis = OpenTK.Graphics.OpenGL.All.FogFuncPointsSgis; - var _MaxFogFuncPointsSgis = OpenTK.Graphics.OpenGL.All.MaxFogFuncPointsSgis; - var _ClampToBorder = OpenTK.Graphics.OpenGL.All.ClampToBorder; - var _ClampToBorderArb = OpenTK.Graphics.OpenGL.All.ClampToBorderArb; - var _ClampToBorderNv = OpenTK.Graphics.OpenGL.All.ClampToBorderNv; - var _ClampToBorderSgis = OpenTK.Graphics.OpenGL.All.ClampToBorderSgis; - var _TextureMultiBufferHintSgix = OpenTK.Graphics.OpenGL.All.TextureMultiBufferHintSgix; - var _ClampToEdge = OpenTK.Graphics.OpenGL.All.ClampToEdge; - var _ClampToEdgeSgis = OpenTK.Graphics.OpenGL.All.ClampToEdgeSgis; - var _PackSkipVolumesSgis = OpenTK.Graphics.OpenGL.All.PackSkipVolumesSgis; - var _PackImageDepthSgis = OpenTK.Graphics.OpenGL.All.PackImageDepthSgis; - var _UnpackSkipVolumesSgis = OpenTK.Graphics.OpenGL.All.UnpackSkipVolumesSgis; - var _UnpackImageDepthSgis = OpenTK.Graphics.OpenGL.All.UnpackImageDepthSgis; - var _Texture4DSgis = OpenTK.Graphics.OpenGL.All.Texture4DSgis; - var _ProxyTexture4DSgis = OpenTK.Graphics.OpenGL.All.ProxyTexture4DSgis; - var _Texture4DsizeSgis = OpenTK.Graphics.OpenGL.All.Texture4DsizeSgis; - var _TextureWrapQSgis = OpenTK.Graphics.OpenGL.All.TextureWrapQSgis; - var _Max4DTextureSizeSgis = OpenTK.Graphics.OpenGL.All.Max4DTextureSizeSgis; - var _PixelTexGenSgix = OpenTK.Graphics.OpenGL.All.PixelTexGenSgix; - var _TextureMinLod = OpenTK.Graphics.OpenGL.All.TextureMinLod; - var _TextureMinLodSgis = OpenTK.Graphics.OpenGL.All.TextureMinLodSgis; - var _TextureMaxLod = OpenTK.Graphics.OpenGL.All.TextureMaxLod; - var _TextureMaxLodSgis = OpenTK.Graphics.OpenGL.All.TextureMaxLodSgis; - var _TextureBaseLevel = OpenTK.Graphics.OpenGL.All.TextureBaseLevel; - var _TextureBaseLevelSgis = OpenTK.Graphics.OpenGL.All.TextureBaseLevelSgis; - var _TextureMaxLevel = OpenTK.Graphics.OpenGL.All.TextureMaxLevel; - var _TextureMaxLevelSgis = OpenTK.Graphics.OpenGL.All.TextureMaxLevelSgis; - var _PixelTileBestAlignmentSgix = OpenTK.Graphics.OpenGL.All.PixelTileBestAlignmentSgix; - var _PixelTileCacheIncrementSgix = OpenTK.Graphics.OpenGL.All.PixelTileCacheIncrementSgix; - var _PixelTileWidthSgix = OpenTK.Graphics.OpenGL.All.PixelTileWidthSgix; - var _PixelTileHeightSgix = OpenTK.Graphics.OpenGL.All.PixelTileHeightSgix; - var _PixelTileGridWidthSgix = OpenTK.Graphics.OpenGL.All.PixelTileGridWidthSgix; - var _PixelTileGridHeightSgix = OpenTK.Graphics.OpenGL.All.PixelTileGridHeightSgix; - var _PixelTileGridDepthSgix = OpenTK.Graphics.OpenGL.All.PixelTileGridDepthSgix; - var _PixelTileCacheSizeSgix = OpenTK.Graphics.OpenGL.All.PixelTileCacheSizeSgix; - var _Filter4Sgis = OpenTK.Graphics.OpenGL.All.Filter4Sgis; - var _TextureFilter4SizeSgis = OpenTK.Graphics.OpenGL.All.TextureFilter4SizeSgis; - var _SpriteSgix = OpenTK.Graphics.OpenGL.All.SpriteSgix; - var _SpriteModeSgix = OpenTK.Graphics.OpenGL.All.SpriteModeSgix; - var _SpriteAxisSgix = OpenTK.Graphics.OpenGL.All.SpriteAxisSgix; - var _SpriteTranslationSgix = OpenTK.Graphics.OpenGL.All.SpriteTranslationSgix; - var _SpriteAxialSgix = OpenTK.Graphics.OpenGL.All.SpriteAxialSgix; - var _SpriteObjectAlignedSgix = OpenTK.Graphics.OpenGL.All.SpriteObjectAlignedSgix; - var _SpriteEyeAlignedSgix = OpenTK.Graphics.OpenGL.All.SpriteEyeAlignedSgix; - var _Texture4DBindingSgis = OpenTK.Graphics.OpenGL.All.Texture4DBindingSgis; - var _IgnoreBorderHp = OpenTK.Graphics.OpenGL.All.IgnoreBorderHp; - var _ConstantBorder = OpenTK.Graphics.OpenGL.All.ConstantBorder; - var _ConstantBorderHp = OpenTK.Graphics.OpenGL.All.ConstantBorderHp; - var _ReplicateBorder = OpenTK.Graphics.OpenGL.All.ReplicateBorder; - var _ReplicateBorderHp = OpenTK.Graphics.OpenGL.All.ReplicateBorderHp; - var _ConvolutionBorderColor = OpenTK.Graphics.OpenGL.All.ConvolutionBorderColor; - var _ConvolutionBorderColorHp = OpenTK.Graphics.OpenGL.All.ConvolutionBorderColorHp; - var _ImageScaleXHp = OpenTK.Graphics.OpenGL.All.ImageScaleXHp; - var _ImageScaleYHp = OpenTK.Graphics.OpenGL.All.ImageScaleYHp; - var _ImageTranslateXHp = OpenTK.Graphics.OpenGL.All.ImageTranslateXHp; - var _ImageTranslateYHp = OpenTK.Graphics.OpenGL.All.ImageTranslateYHp; - var _ImageRotateAngleHp = OpenTK.Graphics.OpenGL.All.ImageRotateAngleHp; - var _ImageRotateOriginXHp = OpenTK.Graphics.OpenGL.All.ImageRotateOriginXHp; - var _ImageRotateOriginYHp = OpenTK.Graphics.OpenGL.All.ImageRotateOriginYHp; - var _ImageMagFilterHp = OpenTK.Graphics.OpenGL.All.ImageMagFilterHp; - var _ImageMinFilterHp = OpenTK.Graphics.OpenGL.All.ImageMinFilterHp; - var _ImageCubicWeightHp = OpenTK.Graphics.OpenGL.All.ImageCubicWeightHp; - var _CubicHp = OpenTK.Graphics.OpenGL.All.CubicHp; - var _AverageHp = OpenTK.Graphics.OpenGL.All.AverageHp; - var _ImageTransform2DHp = OpenTK.Graphics.OpenGL.All.ImageTransform2DHp; - var _PostImageTransformColorTableHp = OpenTK.Graphics.OpenGL.All.PostImageTransformColorTableHp; - var _ProxyPostImageTransformColorTableHp = OpenTK.Graphics.OpenGL.All.ProxyPostImageTransformColorTableHp; - var _OcclusionTestHp = OpenTK.Graphics.OpenGL.All.OcclusionTestHp; - var _OcclusionTestResultHp = OpenTK.Graphics.OpenGL.All.OcclusionTestResultHp; - var _TextureLightingModeHp = OpenTK.Graphics.OpenGL.All.TextureLightingModeHp; - var _TexturePostSpecularHp = OpenTK.Graphics.OpenGL.All.TexturePostSpecularHp; - var _TexturePreSpecularHp = OpenTK.Graphics.OpenGL.All.TexturePreSpecularHp; - var _LinearClipmapLinearSgix = OpenTK.Graphics.OpenGL.All.LinearClipmapLinearSgix; - var _TextureClipmapCenterSgix = OpenTK.Graphics.OpenGL.All.TextureClipmapCenterSgix; - var _TextureClipmapFrameSgix = OpenTK.Graphics.OpenGL.All.TextureClipmapFrameSgix; - var _TextureClipmapOffsetSgix = OpenTK.Graphics.OpenGL.All.TextureClipmapOffsetSgix; - var _TextureClipmapVirtualDepthSgix = OpenTK.Graphics.OpenGL.All.TextureClipmapVirtualDepthSgix; - var _TextureClipmapLodOffsetSgix = OpenTK.Graphics.OpenGL.All.TextureClipmapLodOffsetSgix; - var _TextureClipmapDepthSgix = OpenTK.Graphics.OpenGL.All.TextureClipmapDepthSgix; - var _MaxClipmapDepthSgix = OpenTK.Graphics.OpenGL.All.MaxClipmapDepthSgix; - var _MaxClipmapVirtualDepthSgix = OpenTK.Graphics.OpenGL.All.MaxClipmapVirtualDepthSgix; - var _PostTextureFilterBiasSgix = OpenTK.Graphics.OpenGL.All.PostTextureFilterBiasSgix; - var _PostTextureFilterScaleSgix = OpenTK.Graphics.OpenGL.All.PostTextureFilterScaleSgix; - var _PostTextureFilterBiasRangeSgix = OpenTK.Graphics.OpenGL.All.PostTextureFilterBiasRangeSgix; - var _PostTextureFilterScaleRangeSgix = OpenTK.Graphics.OpenGL.All.PostTextureFilterScaleRangeSgix; - var _ReferencePlaneSgix = OpenTK.Graphics.OpenGL.All.ReferencePlaneSgix; - var _ReferencePlaneEquationSgix = OpenTK.Graphics.OpenGL.All.ReferencePlaneEquationSgix; - var _IrInstrument1Sgix = OpenTK.Graphics.OpenGL.All.IrInstrument1Sgix; - var _InstrumentBufferPointerSgix = OpenTK.Graphics.OpenGL.All.InstrumentBufferPointerSgix; - var _InstrumentMeasurementsSgix = OpenTK.Graphics.OpenGL.All.InstrumentMeasurementsSgix; - var _ListPrioritySgix = OpenTK.Graphics.OpenGL.All.ListPrioritySgix; - var _CalligraphicFragmentSgix = OpenTK.Graphics.OpenGL.All.CalligraphicFragmentSgix; - var _PixelTexGenQCeilingSgix = OpenTK.Graphics.OpenGL.All.PixelTexGenQCeilingSgix; - var _PixelTexGenQRoundSgix = OpenTK.Graphics.OpenGL.All.PixelTexGenQRoundSgix; - var _PixelTexGenQFloorSgix = OpenTK.Graphics.OpenGL.All.PixelTexGenQFloorSgix; - var _PixelTexGenAlphaReplaceSgix = OpenTK.Graphics.OpenGL.All.PixelTexGenAlphaReplaceSgix; - var _PixelTexGenAlphaNoReplaceSgix = OpenTK.Graphics.OpenGL.All.PixelTexGenAlphaNoReplaceSgix; - var _PixelTexGenAlphaLsSgix = OpenTK.Graphics.OpenGL.All.PixelTexGenAlphaLsSgix; - var _PixelTexGenAlphaMsSgix = OpenTK.Graphics.OpenGL.All.PixelTexGenAlphaMsSgix; - var _FramezoomSgix = OpenTK.Graphics.OpenGL.All.FramezoomSgix; - var _FramezoomFactorSgix = OpenTK.Graphics.OpenGL.All.FramezoomFactorSgix; - var _MaxFramezoomFactorSgix = OpenTK.Graphics.OpenGL.All.MaxFramezoomFactorSgix; - var _TextureLodBiasSSgix = OpenTK.Graphics.OpenGL.All.TextureLodBiasSSgix; - var _TextureLodBiasTSgix = OpenTK.Graphics.OpenGL.All.TextureLodBiasTSgix; - var _TextureLodBiasRSgix = OpenTK.Graphics.OpenGL.All.TextureLodBiasRSgix; - var _GenerateMipmap = OpenTK.Graphics.OpenGL.All.GenerateMipmap; - var _GenerateMipmapSgis = OpenTK.Graphics.OpenGL.All.GenerateMipmapSgis; - var _GenerateMipmapHint = OpenTK.Graphics.OpenGL.All.GenerateMipmapHint; - var _GenerateMipmapHintSgis = OpenTK.Graphics.OpenGL.All.GenerateMipmapHintSgis; - var _GeometryDeformationSgix = OpenTK.Graphics.OpenGL.All.GeometryDeformationSgix; - var _TextureDeformationSgix = OpenTK.Graphics.OpenGL.All.TextureDeformationSgix; - var _DeformationsMaskSgix = OpenTK.Graphics.OpenGL.All.DeformationsMaskSgix; - var _MaxDeformationOrderSgix = OpenTK.Graphics.OpenGL.All.MaxDeformationOrderSgix; - var _FogOffsetSgix = OpenTK.Graphics.OpenGL.All.FogOffsetSgix; - var _FogOffsetValueSgix = OpenTK.Graphics.OpenGL.All.FogOffsetValueSgix; - var _TextureCompareSgix = OpenTK.Graphics.OpenGL.All.TextureCompareSgix; - var _TextureCompareOperatorSgix = OpenTK.Graphics.OpenGL.All.TextureCompareOperatorSgix; - var _TextureLequalRSgix = OpenTK.Graphics.OpenGL.All.TextureLequalRSgix; - var _TextureGequalRSgix = OpenTK.Graphics.OpenGL.All.TextureGequalRSgix; - var _DepthComponent16 = OpenTK.Graphics.OpenGL.All.DepthComponent16; - var _DepthComponent16Arb = OpenTK.Graphics.OpenGL.All.DepthComponent16Arb; - var _DepthComponent16Sgix = OpenTK.Graphics.OpenGL.All.DepthComponent16Sgix; - var _DepthComponent24 = OpenTK.Graphics.OpenGL.All.DepthComponent24; - var _DepthComponent24Arb = OpenTK.Graphics.OpenGL.All.DepthComponent24Arb; - var _DepthComponent24Sgix = OpenTK.Graphics.OpenGL.All.DepthComponent24Sgix; - var _DepthComponent32 = OpenTK.Graphics.OpenGL.All.DepthComponent32; - var _DepthComponent32Arb = OpenTK.Graphics.OpenGL.All.DepthComponent32Arb; - var _DepthComponent32Sgix = OpenTK.Graphics.OpenGL.All.DepthComponent32Sgix; - var _ArrayElementLockFirstExt = OpenTK.Graphics.OpenGL.All.ArrayElementLockFirstExt; - var _ArrayElementLockCountExt = OpenTK.Graphics.OpenGL.All.ArrayElementLockCountExt; - var _CullVertexExt = OpenTK.Graphics.OpenGL.All.CullVertexExt; - var _CullVertexEyePositionExt = OpenTK.Graphics.OpenGL.All.CullVertexEyePositionExt; - var _CullVertexObjectPositionExt = OpenTK.Graphics.OpenGL.All.CullVertexObjectPositionExt; - var _IuiV2fExt = OpenTK.Graphics.OpenGL.All.IuiV2fExt; - var _IuiV3fExt = OpenTK.Graphics.OpenGL.All.IuiV3fExt; - var _IuiN3fV2fExt = OpenTK.Graphics.OpenGL.All.IuiN3fV2fExt; - var _IuiN3fV3fExt = OpenTK.Graphics.OpenGL.All.IuiN3fV3fExt; - var _T2fIuiV2fExt = OpenTK.Graphics.OpenGL.All.T2fIuiV2fExt; - var _T2fIuiV3fExt = OpenTK.Graphics.OpenGL.All.T2fIuiV3fExt; - var _T2fIuiN3fV2fExt = OpenTK.Graphics.OpenGL.All.T2fIuiN3fV2fExt; - var _T2fIuiN3fV3fExt = OpenTK.Graphics.OpenGL.All.T2fIuiN3fV3fExt; - var _IndexTestExt = OpenTK.Graphics.OpenGL.All.IndexTestExt; - var _IndexTestFuncExt = OpenTK.Graphics.OpenGL.All.IndexTestFuncExt; - var _IndexTestRefExt = OpenTK.Graphics.OpenGL.All.IndexTestRefExt; - var _IndexMaterialExt = OpenTK.Graphics.OpenGL.All.IndexMaterialExt; - var _IndexMaterialParameterExt = OpenTK.Graphics.OpenGL.All.IndexMaterialParameterExt; - var _IndexMaterialFaceExt = OpenTK.Graphics.OpenGL.All.IndexMaterialFaceExt; - var _Ycrcb422Sgix = OpenTK.Graphics.OpenGL.All.Ycrcb422Sgix; - var _Ycrcb444Sgix = OpenTK.Graphics.OpenGL.All.Ycrcb444Sgix; - var _WrapBorderSun = OpenTK.Graphics.OpenGL.All.WrapBorderSun; - var _UnpackConstantDataSunx = OpenTK.Graphics.OpenGL.All.UnpackConstantDataSunx; - var _TextureConstantDataSunx = OpenTK.Graphics.OpenGL.All.TextureConstantDataSunx; - var _TriangleListSun = OpenTK.Graphics.OpenGL.All.TriangleListSun; - var _ReplacementCodeSun = OpenTK.Graphics.OpenGL.All.ReplacementCodeSun; - var _GlobalAlphaSun = OpenTK.Graphics.OpenGL.All.GlobalAlphaSun; - var _GlobalAlphaFactorSun = OpenTK.Graphics.OpenGL.All.GlobalAlphaFactorSun; - var _TextureColorWritemaskSgis = OpenTK.Graphics.OpenGL.All.TextureColorWritemaskSgis; - var _EyeDistanceToPointSgis = OpenTK.Graphics.OpenGL.All.EyeDistanceToPointSgis; - var _ObjectDistanceToPointSgis = OpenTK.Graphics.OpenGL.All.ObjectDistanceToPointSgis; - var _EyeDistanceToLineSgis = OpenTK.Graphics.OpenGL.All.EyeDistanceToLineSgis; - var _ObjectDistanceToLineSgis = OpenTK.Graphics.OpenGL.All.ObjectDistanceToLineSgis; - var _EyePointSgis = OpenTK.Graphics.OpenGL.All.EyePointSgis; - var _ObjectPointSgis = OpenTK.Graphics.OpenGL.All.ObjectPointSgis; - var _EyeLineSgis = OpenTK.Graphics.OpenGL.All.EyeLineSgis; - var _ObjectLineSgis = OpenTK.Graphics.OpenGL.All.ObjectLineSgis; - var _LightModelColorControl = OpenTK.Graphics.OpenGL.All.LightModelColorControl; - var _LightModelColorControlExt = OpenTK.Graphics.OpenGL.All.LightModelColorControlExt; - var _SingleColor = OpenTK.Graphics.OpenGL.All.SingleColor; - var _SingleColorExt = OpenTK.Graphics.OpenGL.All.SingleColorExt; - var _SeparateSpecularColor = OpenTK.Graphics.OpenGL.All.SeparateSpecularColor; - var _SeparateSpecularColorExt = OpenTK.Graphics.OpenGL.All.SeparateSpecularColorExt; - var _SharedTexturePaletteExt = OpenTK.Graphics.OpenGL.All.SharedTexturePaletteExt; - var _TextFragmentShaderAti = OpenTK.Graphics.OpenGL.All.TextFragmentShaderAti; - var _FramebufferAttachmentColorEncoding = OpenTK.Graphics.OpenGL.All.FramebufferAttachmentColorEncoding; - var _FramebufferAttachmentComponentType = OpenTK.Graphics.OpenGL.All.FramebufferAttachmentComponentType; - var _FramebufferAttachmentRedSize = OpenTK.Graphics.OpenGL.All.FramebufferAttachmentRedSize; - var _FramebufferAttachmentGreenSize = OpenTK.Graphics.OpenGL.All.FramebufferAttachmentGreenSize; - var _FramebufferAttachmentBlueSize = OpenTK.Graphics.OpenGL.All.FramebufferAttachmentBlueSize; - var _FramebufferAttachmentAlphaSize = OpenTK.Graphics.OpenGL.All.FramebufferAttachmentAlphaSize; - var _FramebufferAttachmentDepthSize = OpenTK.Graphics.OpenGL.All.FramebufferAttachmentDepthSize; - var _FramebufferAttachmentStencilSize = OpenTK.Graphics.OpenGL.All.FramebufferAttachmentStencilSize; - var _FramebufferDefault = OpenTK.Graphics.OpenGL.All.FramebufferDefault; - var _FramebufferUndefined = OpenTK.Graphics.OpenGL.All.FramebufferUndefined; - var _DepthStencilAttachment = OpenTK.Graphics.OpenGL.All.DepthStencilAttachment; - var _MajorVersion = OpenTK.Graphics.OpenGL.All.MajorVersion; - var _MinorVersion = OpenTK.Graphics.OpenGL.All.MinorVersion; - var _NumExtensions = OpenTK.Graphics.OpenGL.All.NumExtensions; - var _ContextFlags = OpenTK.Graphics.OpenGL.All.ContextFlags; - var _BufferImmutableStorage = OpenTK.Graphics.OpenGL.All.BufferImmutableStorage; - var _BufferStorageFlags = OpenTK.Graphics.OpenGL.All.BufferStorageFlags; - var _PrimitiveRestartForPatchesSupported = OpenTK.Graphics.OpenGL.All.PrimitiveRestartForPatchesSupported; - var _Index = OpenTK.Graphics.OpenGL.All.Index; - var _CompressedRed = OpenTK.Graphics.OpenGL.All.CompressedRed; - var _CompressedRg = OpenTK.Graphics.OpenGL.All.CompressedRg; - var _Rg = OpenTK.Graphics.OpenGL.All.Rg; - var _RgInteger = OpenTK.Graphics.OpenGL.All.RgInteger; - var _R8 = OpenTK.Graphics.OpenGL.All.R8; - var _R16 = OpenTK.Graphics.OpenGL.All.R16; - var _Rg8 = OpenTK.Graphics.OpenGL.All.Rg8; - var _Rg16 = OpenTK.Graphics.OpenGL.All.Rg16; - var _R16f = OpenTK.Graphics.OpenGL.All.R16f; - var _R32f = OpenTK.Graphics.OpenGL.All.R32f; - var _Rg16f = OpenTK.Graphics.OpenGL.All.Rg16f; - var _Rg32f = OpenTK.Graphics.OpenGL.All.Rg32f; - var _R8i = OpenTK.Graphics.OpenGL.All.R8i; - var _R8ui = OpenTK.Graphics.OpenGL.All.R8ui; - var _R16i = OpenTK.Graphics.OpenGL.All.R16i; - var _R16ui = OpenTK.Graphics.OpenGL.All.R16ui; - var _R32i = OpenTK.Graphics.OpenGL.All.R32i; - var _R32ui = OpenTK.Graphics.OpenGL.All.R32ui; - var _Rg8i = OpenTK.Graphics.OpenGL.All.Rg8i; - var _Rg8ui = OpenTK.Graphics.OpenGL.All.Rg8ui; - var _Rg16i = OpenTK.Graphics.OpenGL.All.Rg16i; - var _Rg16ui = OpenTK.Graphics.OpenGL.All.Rg16ui; - var _Rg32i = OpenTK.Graphics.OpenGL.All.Rg32i; - var _Rg32ui = OpenTK.Graphics.OpenGL.All.Rg32ui; - var _SyncClEventArb = OpenTK.Graphics.OpenGL.All.SyncClEventArb; - var _SyncClEventCompleteArb = OpenTK.Graphics.OpenGL.All.SyncClEventCompleteArb; - var _DebugOutputSynchronous = OpenTK.Graphics.OpenGL.All.DebugOutputSynchronous; - var _DebugOutputSynchronousArb = OpenTK.Graphics.OpenGL.All.DebugOutputSynchronousArb; - var _DebugOutputSynchronousKhr = OpenTK.Graphics.OpenGL.All.DebugOutputSynchronousKhr; - var _DebugNextLoggedMessageLength = OpenTK.Graphics.OpenGL.All.DebugNextLoggedMessageLength; - var _DebugNextLoggedMessageLengthArb = OpenTK.Graphics.OpenGL.All.DebugNextLoggedMessageLengthArb; - var _DebugNextLoggedMessageLengthKhr = OpenTK.Graphics.OpenGL.All.DebugNextLoggedMessageLengthKhr; - var _DebugCallbackFunction = OpenTK.Graphics.OpenGL.All.DebugCallbackFunction; - var _DebugCallbackFunctionArb = OpenTK.Graphics.OpenGL.All.DebugCallbackFunctionArb; - var _DebugCallbackFunctionKhr = OpenTK.Graphics.OpenGL.All.DebugCallbackFunctionKhr; - var _DebugCallbackUserParam = OpenTK.Graphics.OpenGL.All.DebugCallbackUserParam; - var _DebugCallbackUserParamArb = OpenTK.Graphics.OpenGL.All.DebugCallbackUserParamArb; - var _DebugCallbackUserParamKhr = OpenTK.Graphics.OpenGL.All.DebugCallbackUserParamKhr; - var _DebugSourceApi = OpenTK.Graphics.OpenGL.All.DebugSourceApi; - var _DebugSourceApiArb = OpenTK.Graphics.OpenGL.All.DebugSourceApiArb; - var _DebugSourceApiKhr = OpenTK.Graphics.OpenGL.All.DebugSourceApiKhr; - var _DebugSourceWindowSystem = OpenTK.Graphics.OpenGL.All.DebugSourceWindowSystem; - var _DebugSourceWindowSystemArb = OpenTK.Graphics.OpenGL.All.DebugSourceWindowSystemArb; - var _DebugSourceWindowSystemKhr = OpenTK.Graphics.OpenGL.All.DebugSourceWindowSystemKhr; - var _DebugSourceShaderCompiler = OpenTK.Graphics.OpenGL.All.DebugSourceShaderCompiler; - var _DebugSourceShaderCompilerArb = OpenTK.Graphics.OpenGL.All.DebugSourceShaderCompilerArb; - var _DebugSourceShaderCompilerKhr = OpenTK.Graphics.OpenGL.All.DebugSourceShaderCompilerKhr; - var _DebugSourceThirdParty = OpenTK.Graphics.OpenGL.All.DebugSourceThirdParty; - var _DebugSourceThirdPartyArb = OpenTK.Graphics.OpenGL.All.DebugSourceThirdPartyArb; - var _DebugSourceThirdPartyKhr = OpenTK.Graphics.OpenGL.All.DebugSourceThirdPartyKhr; - var _DebugSourceApplication = OpenTK.Graphics.OpenGL.All.DebugSourceApplication; - var _DebugSourceApplicationArb = OpenTK.Graphics.OpenGL.All.DebugSourceApplicationArb; - var _DebugSourceApplicationKhr = OpenTK.Graphics.OpenGL.All.DebugSourceApplicationKhr; - var _DebugSourceOther = OpenTK.Graphics.OpenGL.All.DebugSourceOther; - var _DebugSourceOtherArb = OpenTK.Graphics.OpenGL.All.DebugSourceOtherArb; - var _DebugSourceOtherKhr = OpenTK.Graphics.OpenGL.All.DebugSourceOtherKhr; - var _DebugTypeError = OpenTK.Graphics.OpenGL.All.DebugTypeError; - var _DebugTypeErrorArb = OpenTK.Graphics.OpenGL.All.DebugTypeErrorArb; - var _DebugTypeErrorKhr = OpenTK.Graphics.OpenGL.All.DebugTypeErrorKhr; - var _DebugTypeDeprecatedBehavior = OpenTK.Graphics.OpenGL.All.DebugTypeDeprecatedBehavior; - var _DebugTypeDeprecatedBehaviorArb = OpenTK.Graphics.OpenGL.All.DebugTypeDeprecatedBehaviorArb; - var _DebugTypeDeprecatedBehaviorKhr = OpenTK.Graphics.OpenGL.All.DebugTypeDeprecatedBehaviorKhr; - var _DebugTypeUndefinedBehavior = OpenTK.Graphics.OpenGL.All.DebugTypeUndefinedBehavior; - var _DebugTypeUndefinedBehaviorArb = OpenTK.Graphics.OpenGL.All.DebugTypeUndefinedBehaviorArb; - var _DebugTypeUndefinedBehaviorKhr = OpenTK.Graphics.OpenGL.All.DebugTypeUndefinedBehaviorKhr; - var _DebugTypePortability = OpenTK.Graphics.OpenGL.All.DebugTypePortability; - var _DebugTypePortabilityArb = OpenTK.Graphics.OpenGL.All.DebugTypePortabilityArb; - var _DebugTypePortabilityKhr = OpenTK.Graphics.OpenGL.All.DebugTypePortabilityKhr; - var _DebugTypePerformance = OpenTK.Graphics.OpenGL.All.DebugTypePerformance; - var _DebugTypePerformanceArb = OpenTK.Graphics.OpenGL.All.DebugTypePerformanceArb; - var _DebugTypePerformanceKhr = OpenTK.Graphics.OpenGL.All.DebugTypePerformanceKhr; - var _DebugTypeOther = OpenTK.Graphics.OpenGL.All.DebugTypeOther; - var _DebugTypeOtherArb = OpenTK.Graphics.OpenGL.All.DebugTypeOtherArb; - var _DebugTypeOtherKhr = OpenTK.Graphics.OpenGL.All.DebugTypeOtherKhr; - var _LoseContextOnResetArb = OpenTK.Graphics.OpenGL.All.LoseContextOnResetArb; - var _GuiltyContextResetArb = OpenTK.Graphics.OpenGL.All.GuiltyContextResetArb; - var _InnocentContextResetArb = OpenTK.Graphics.OpenGL.All.InnocentContextResetArb; - var _UnknownContextResetArb = OpenTK.Graphics.OpenGL.All.UnknownContextResetArb; - var _ResetNotificationStrategyArb = OpenTK.Graphics.OpenGL.All.ResetNotificationStrategyArb; - var _ProgramBinaryRetrievableHint = OpenTK.Graphics.OpenGL.All.ProgramBinaryRetrievableHint; - var _ProgramSeparable = OpenTK.Graphics.OpenGL.All.ProgramSeparable; - var _ProgramSeparableExt = OpenTK.Graphics.OpenGL.All.ProgramSeparableExt; - var _ActiveProgram = OpenTK.Graphics.OpenGL.All.ActiveProgram; - var _ProgramPipelineBinding = OpenTK.Graphics.OpenGL.All.ProgramPipelineBinding; - var _ProgramPipelineBindingExt = OpenTK.Graphics.OpenGL.All.ProgramPipelineBindingExt; - var _MaxViewports = OpenTK.Graphics.OpenGL.All.MaxViewports; - var _ViewportSubpixelBits = OpenTK.Graphics.OpenGL.All.ViewportSubpixelBits; - var _ViewportBoundsRange = OpenTK.Graphics.OpenGL.All.ViewportBoundsRange; - var _LayerProvokingVertex = OpenTK.Graphics.OpenGL.All.LayerProvokingVertex; - var _ViewportIndexProvokingVertex = OpenTK.Graphics.OpenGL.All.ViewportIndexProvokingVertex; - var _UndefinedVertex = OpenTK.Graphics.OpenGL.All.UndefinedVertex; - var _NoResetNotificationArb = OpenTK.Graphics.OpenGL.All.NoResetNotificationArb; - var _MaxComputeSharedMemorySize = OpenTK.Graphics.OpenGL.All.MaxComputeSharedMemorySize; - var _MaxComputeUniformComponents = OpenTK.Graphics.OpenGL.All.MaxComputeUniformComponents; - var _MaxComputeAtomicCounterBuffers = OpenTK.Graphics.OpenGL.All.MaxComputeAtomicCounterBuffers; - var _MaxComputeAtomicCounters = OpenTK.Graphics.OpenGL.All.MaxComputeAtomicCounters; - var _MaxCombinedComputeUniformComponents = OpenTK.Graphics.OpenGL.All.MaxCombinedComputeUniformComponents; - var _ComputeWorkGroupSize = OpenTK.Graphics.OpenGL.All.ComputeWorkGroupSize; - var _DebugTypeMarker = OpenTK.Graphics.OpenGL.All.DebugTypeMarker; - var _DebugTypeMarkerKhr = OpenTK.Graphics.OpenGL.All.DebugTypeMarkerKhr; - var _DebugTypePushGroup = OpenTK.Graphics.OpenGL.All.DebugTypePushGroup; - var _DebugTypePushGroupKhr = OpenTK.Graphics.OpenGL.All.DebugTypePushGroupKhr; - var _DebugTypePopGroup = OpenTK.Graphics.OpenGL.All.DebugTypePopGroup; - var _DebugTypePopGroupKhr = OpenTK.Graphics.OpenGL.All.DebugTypePopGroupKhr; - var _DebugSeverityNotification = OpenTK.Graphics.OpenGL.All.DebugSeverityNotification; - var _DebugSeverityNotificationKhr = OpenTK.Graphics.OpenGL.All.DebugSeverityNotificationKhr; - var _MaxDebugGroupStackDepth = OpenTK.Graphics.OpenGL.All.MaxDebugGroupStackDepth; - var _MaxDebugGroupStackDepthKhr = OpenTK.Graphics.OpenGL.All.MaxDebugGroupStackDepthKhr; - var _DebugGroupStackDepth = OpenTK.Graphics.OpenGL.All.DebugGroupStackDepth; - var _DebugGroupStackDepthKhr = OpenTK.Graphics.OpenGL.All.DebugGroupStackDepthKhr; - var _MaxUniformLocations = OpenTK.Graphics.OpenGL.All.MaxUniformLocations; - var _InternalformatSupported = OpenTK.Graphics.OpenGL.All.InternalformatSupported; - var _InternalformatPreferred = OpenTK.Graphics.OpenGL.All.InternalformatPreferred; - var _InternalformatRedSize = OpenTK.Graphics.OpenGL.All.InternalformatRedSize; - var _InternalformatGreenSize = OpenTK.Graphics.OpenGL.All.InternalformatGreenSize; - var _InternalformatBlueSize = OpenTK.Graphics.OpenGL.All.InternalformatBlueSize; - var _InternalformatAlphaSize = OpenTK.Graphics.OpenGL.All.InternalformatAlphaSize; - var _InternalformatDepthSize = OpenTK.Graphics.OpenGL.All.InternalformatDepthSize; - var _InternalformatStencilSize = OpenTK.Graphics.OpenGL.All.InternalformatStencilSize; - var _InternalformatSharedSize = OpenTK.Graphics.OpenGL.All.InternalformatSharedSize; - var _InternalformatRedType = OpenTK.Graphics.OpenGL.All.InternalformatRedType; - var _InternalformatGreenType = OpenTK.Graphics.OpenGL.All.InternalformatGreenType; - var _InternalformatBlueType = OpenTK.Graphics.OpenGL.All.InternalformatBlueType; - var _InternalformatAlphaType = OpenTK.Graphics.OpenGL.All.InternalformatAlphaType; - var _InternalformatDepthType = OpenTK.Graphics.OpenGL.All.InternalformatDepthType; - var _InternalformatStencilType = OpenTK.Graphics.OpenGL.All.InternalformatStencilType; - var _MaxWidth = OpenTK.Graphics.OpenGL.All.MaxWidth; - var _MaxHeight = OpenTK.Graphics.OpenGL.All.MaxHeight; - var _MaxDepth = OpenTK.Graphics.OpenGL.All.MaxDepth; - var _MaxLayers = OpenTK.Graphics.OpenGL.All.MaxLayers; - var _MaxCombinedDimensions = OpenTK.Graphics.OpenGL.All.MaxCombinedDimensions; - var _ColorComponents = OpenTK.Graphics.OpenGL.All.ColorComponents; - var _DepthComponents = OpenTK.Graphics.OpenGL.All.DepthComponents; - var _StencilComponents = OpenTK.Graphics.OpenGL.All.StencilComponents; - var _ColorRenderable = OpenTK.Graphics.OpenGL.All.ColorRenderable; - var _DepthRenderable = OpenTK.Graphics.OpenGL.All.DepthRenderable; - var _StencilRenderable = OpenTK.Graphics.OpenGL.All.StencilRenderable; - var _FramebufferRenderable = OpenTK.Graphics.OpenGL.All.FramebufferRenderable; - var _FramebufferRenderableLayered = OpenTK.Graphics.OpenGL.All.FramebufferRenderableLayered; - var _FramebufferBlend = OpenTK.Graphics.OpenGL.All.FramebufferBlend; - var _ReadPixels = OpenTK.Graphics.OpenGL.All.ReadPixels; - var _ReadPixelsFormat = OpenTK.Graphics.OpenGL.All.ReadPixelsFormat; - var _ReadPixelsType = OpenTK.Graphics.OpenGL.All.ReadPixelsType; - var _TextureImageFormat = OpenTK.Graphics.OpenGL.All.TextureImageFormat; - var _TextureImageType = OpenTK.Graphics.OpenGL.All.TextureImageType; - var _GetTextureImageFormat = OpenTK.Graphics.OpenGL.All.GetTextureImageFormat; - var _GetTextureImageType = OpenTK.Graphics.OpenGL.All.GetTextureImageType; - var _Mipmap = OpenTK.Graphics.OpenGL.All.Mipmap; - var _ManualGenerateMipmap = OpenTK.Graphics.OpenGL.All.ManualGenerateMipmap; - var _AutoGenerateMipmap = OpenTK.Graphics.OpenGL.All.AutoGenerateMipmap; - var _ColorEncoding = OpenTK.Graphics.OpenGL.All.ColorEncoding; - var _SrgbRead = OpenTK.Graphics.OpenGL.All.SrgbRead; - var _SrgbWrite = OpenTK.Graphics.OpenGL.All.SrgbWrite; - var _SrgbDecodeArb = OpenTK.Graphics.OpenGL.All.SrgbDecodeArb; - var _Filter = OpenTK.Graphics.OpenGL.All.Filter; - var _VertexTexture = OpenTK.Graphics.OpenGL.All.VertexTexture; - var _TessControlTexture = OpenTK.Graphics.OpenGL.All.TessControlTexture; - var _TessEvaluationTexture = OpenTK.Graphics.OpenGL.All.TessEvaluationTexture; - var _GeometryTexture = OpenTK.Graphics.OpenGL.All.GeometryTexture; - var _FragmentTexture = OpenTK.Graphics.OpenGL.All.FragmentTexture; - var _ComputeTexture = OpenTK.Graphics.OpenGL.All.ComputeTexture; - var _TextureShadow = OpenTK.Graphics.OpenGL.All.TextureShadow; - var _TextureGather = OpenTK.Graphics.OpenGL.All.TextureGather; - var _TextureGatherShadow = OpenTK.Graphics.OpenGL.All.TextureGatherShadow; - var _ShaderImageLoad = OpenTK.Graphics.OpenGL.All.ShaderImageLoad; - var _ShaderImageStore = OpenTK.Graphics.OpenGL.All.ShaderImageStore; - var _ShaderImageAtomic = OpenTK.Graphics.OpenGL.All.ShaderImageAtomic; - var _ImageTexelSize = OpenTK.Graphics.OpenGL.All.ImageTexelSize; - var _ImageCompatibilityClass = OpenTK.Graphics.OpenGL.All.ImageCompatibilityClass; - var _ImagePixelFormat = OpenTK.Graphics.OpenGL.All.ImagePixelFormat; - var _ImagePixelType = OpenTK.Graphics.OpenGL.All.ImagePixelType; - var _SimultaneousTextureAndDepthTest = OpenTK.Graphics.OpenGL.All.SimultaneousTextureAndDepthTest; - var _SimultaneousTextureAndStencilTest = OpenTK.Graphics.OpenGL.All.SimultaneousTextureAndStencilTest; - var _SimultaneousTextureAndDepthWrite = OpenTK.Graphics.OpenGL.All.SimultaneousTextureAndDepthWrite; - var _SimultaneousTextureAndStencilWrite = OpenTK.Graphics.OpenGL.All.SimultaneousTextureAndStencilWrite; - var _TextureCompressedBlockWidth = OpenTK.Graphics.OpenGL.All.TextureCompressedBlockWidth; - var _TextureCompressedBlockHeight = OpenTK.Graphics.OpenGL.All.TextureCompressedBlockHeight; - var _TextureCompressedBlockSize = OpenTK.Graphics.OpenGL.All.TextureCompressedBlockSize; - var _ClearBuffer = OpenTK.Graphics.OpenGL.All.ClearBuffer; - var _TextureView = OpenTK.Graphics.OpenGL.All.TextureView; - var _ViewCompatibilityClass = OpenTK.Graphics.OpenGL.All.ViewCompatibilityClass; - var _FullSupport = OpenTK.Graphics.OpenGL.All.FullSupport; - var _CaveatSupport = OpenTK.Graphics.OpenGL.All.CaveatSupport; - var _ImageClass4X32 = OpenTK.Graphics.OpenGL.All.ImageClass4X32; - var _ImageClass2X32 = OpenTK.Graphics.OpenGL.All.ImageClass2X32; - var _ImageClass1X32 = OpenTK.Graphics.OpenGL.All.ImageClass1X32; - var _ImageClass4X16 = OpenTK.Graphics.OpenGL.All.ImageClass4X16; - var _ImageClass2X16 = OpenTK.Graphics.OpenGL.All.ImageClass2X16; - var _ImageClass1X16 = OpenTK.Graphics.OpenGL.All.ImageClass1X16; - var _ImageClass4X8 = OpenTK.Graphics.OpenGL.All.ImageClass4X8; - var _ImageClass2X8 = OpenTK.Graphics.OpenGL.All.ImageClass2X8; - var _ImageClass1X8 = OpenTK.Graphics.OpenGL.All.ImageClass1X8; - var _ImageClass111110 = OpenTK.Graphics.OpenGL.All.ImageClass111110; - var _ImageClass1010102 = OpenTK.Graphics.OpenGL.All.ImageClass1010102; - var _ViewClass128Bits = OpenTK.Graphics.OpenGL.All.ViewClass128Bits; - var _ViewClass96Bits = OpenTK.Graphics.OpenGL.All.ViewClass96Bits; - var _ViewClass64Bits = OpenTK.Graphics.OpenGL.All.ViewClass64Bits; - var _ViewClass48Bits = OpenTK.Graphics.OpenGL.All.ViewClass48Bits; - var _ViewClass32Bits = OpenTK.Graphics.OpenGL.All.ViewClass32Bits; - var _ViewClass24Bits = OpenTK.Graphics.OpenGL.All.ViewClass24Bits; - var _ViewClass16Bits = OpenTK.Graphics.OpenGL.All.ViewClass16Bits; - var _ViewClass8Bits = OpenTK.Graphics.OpenGL.All.ViewClass8Bits; - var _ViewClassS3tcDxt1Rgb = OpenTK.Graphics.OpenGL.All.ViewClassS3tcDxt1Rgb; - var _ViewClassS3tcDxt1Rgba = OpenTK.Graphics.OpenGL.All.ViewClassS3tcDxt1Rgba; - var _ViewClassS3tcDxt3Rgba = OpenTK.Graphics.OpenGL.All.ViewClassS3tcDxt3Rgba; - var _ViewClassS3tcDxt5Rgba = OpenTK.Graphics.OpenGL.All.ViewClassS3tcDxt5Rgba; - var _ViewClassRgtc1Red = OpenTK.Graphics.OpenGL.All.ViewClassRgtc1Red; - var _ViewClassRgtc2Rg = OpenTK.Graphics.OpenGL.All.ViewClassRgtc2Rg; - var _ViewClassBptcUnorm = OpenTK.Graphics.OpenGL.All.ViewClassBptcUnorm; - var _ViewClassBptcFloat = OpenTK.Graphics.OpenGL.All.ViewClassBptcFloat; - var _VertexAttribBinding = OpenTK.Graphics.OpenGL.All.VertexAttribBinding; - var _VertexAttribRelativeOffset = OpenTK.Graphics.OpenGL.All.VertexAttribRelativeOffset; - var _VertexBindingDivisor = OpenTK.Graphics.OpenGL.All.VertexBindingDivisor; - var _VertexBindingOffset = OpenTK.Graphics.OpenGL.All.VertexBindingOffset; - var _VertexBindingStride = OpenTK.Graphics.OpenGL.All.VertexBindingStride; - var _MaxVertexAttribRelativeOffset = OpenTK.Graphics.OpenGL.All.MaxVertexAttribRelativeOffset; - var _MaxVertexAttribBindings = OpenTK.Graphics.OpenGL.All.MaxVertexAttribBindings; - var _TextureViewMinLevel = OpenTK.Graphics.OpenGL.All.TextureViewMinLevel; - var _TextureViewNumLevels = OpenTK.Graphics.OpenGL.All.TextureViewNumLevels; - var _TextureViewMinLayer = OpenTK.Graphics.OpenGL.All.TextureViewMinLayer; - var _TextureViewNumLayers = OpenTK.Graphics.OpenGL.All.TextureViewNumLayers; - var _TextureImmutableLevels = OpenTK.Graphics.OpenGL.All.TextureImmutableLevels; - var _Buffer = OpenTK.Graphics.OpenGL.All.Buffer; - var _BufferKhr = OpenTK.Graphics.OpenGL.All.BufferKhr; - var _Shader = OpenTK.Graphics.OpenGL.All.Shader; - var _ShaderKhr = OpenTK.Graphics.OpenGL.All.ShaderKhr; - var _Program = OpenTK.Graphics.OpenGL.All.Program; - var _ProgramKhr = OpenTK.Graphics.OpenGL.All.ProgramKhr; - var _Query = OpenTK.Graphics.OpenGL.All.Query; - var _QueryKhr = OpenTK.Graphics.OpenGL.All.QueryKhr; - var _ProgramPipeline = OpenTK.Graphics.OpenGL.All.ProgramPipeline; - var _MaxVertexAttribStride = OpenTK.Graphics.OpenGL.All.MaxVertexAttribStride; - var _Sampler = OpenTK.Graphics.OpenGL.All.Sampler; - var _SamplerKhr = OpenTK.Graphics.OpenGL.All.SamplerKhr; - var _DisplayList = OpenTK.Graphics.OpenGL.All.DisplayList; - var _MaxLabelLength = OpenTK.Graphics.OpenGL.All.MaxLabelLength; - var _MaxLabelLengthKhr = OpenTK.Graphics.OpenGL.All.MaxLabelLengthKhr; - var _NumShadingLanguageVersions = OpenTK.Graphics.OpenGL.All.NumShadingLanguageVersions; - var _ConvolutionHintSgix = OpenTK.Graphics.OpenGL.All.ConvolutionHintSgix; - var _YcrcbSgix = OpenTK.Graphics.OpenGL.All.YcrcbSgix; - var _YcrcbaSgix = OpenTK.Graphics.OpenGL.All.YcrcbaSgix; - var _AlphaMinSgix = OpenTK.Graphics.OpenGL.All.AlphaMinSgix; - var _AlphaMaxSgix = OpenTK.Graphics.OpenGL.All.AlphaMaxSgix; - var _ScalebiasHintSgix = OpenTK.Graphics.OpenGL.All.ScalebiasHintSgix; - var _AsyncMarkerSgix = OpenTK.Graphics.OpenGL.All.AsyncMarkerSgix; - var _PixelTexGenModeSgix = OpenTK.Graphics.OpenGL.All.PixelTexGenModeSgix; - var _AsyncHistogramSgix = OpenTK.Graphics.OpenGL.All.AsyncHistogramSgix; - var _MaxAsyncHistogramSgix = OpenTK.Graphics.OpenGL.All.MaxAsyncHistogramSgix; - var _PixelTransform2DExt = OpenTK.Graphics.OpenGL.All.PixelTransform2DExt; - var _PixelMagFilterExt = OpenTK.Graphics.OpenGL.All.PixelMagFilterExt; - var _PixelMinFilterExt = OpenTK.Graphics.OpenGL.All.PixelMinFilterExt; - var _PixelCubicWeightExt = OpenTK.Graphics.OpenGL.All.PixelCubicWeightExt; - var _CubicExt = OpenTK.Graphics.OpenGL.All.CubicExt; - var _AverageExt = OpenTK.Graphics.OpenGL.All.AverageExt; - var _PixelTransform2DStackDepthExt = OpenTK.Graphics.OpenGL.All.PixelTransform2DStackDepthExt; - var _MaxPixelTransform2DStackDepthExt = OpenTK.Graphics.OpenGL.All.MaxPixelTransform2DStackDepthExt; - var _PixelTransform2DMatrixExt = OpenTK.Graphics.OpenGL.All.PixelTransform2DMatrixExt; - var _FragmentMaterialExt = OpenTK.Graphics.OpenGL.All.FragmentMaterialExt; - var _FragmentNormalExt = OpenTK.Graphics.OpenGL.All.FragmentNormalExt; - var _FragmentColorExt = OpenTK.Graphics.OpenGL.All.FragmentColorExt; - var _AttenuationExt = OpenTK.Graphics.OpenGL.All.AttenuationExt; - var _ShadowAttenuationExt = OpenTK.Graphics.OpenGL.All.ShadowAttenuationExt; - var _TextureApplicationModeExt = OpenTK.Graphics.OpenGL.All.TextureApplicationModeExt; - var _TextureLightExt = OpenTK.Graphics.OpenGL.All.TextureLightExt; - var _TextureMaterialFaceExt = OpenTK.Graphics.OpenGL.All.TextureMaterialFaceExt; - var _TextureMaterialParameterExt = OpenTK.Graphics.OpenGL.All.TextureMaterialParameterExt; - var _PixelTextureSgis = OpenTK.Graphics.OpenGL.All.PixelTextureSgis; - var _PixelFragmentRgbSourceSgis = OpenTK.Graphics.OpenGL.All.PixelFragmentRgbSourceSgis; - var _PixelFragmentAlphaSourceSgis = OpenTK.Graphics.OpenGL.All.PixelFragmentAlphaSourceSgis; - var _PixelGroupColorSgis = OpenTK.Graphics.OpenGL.All.PixelGroupColorSgis; - var _LineQualityHintSgix = OpenTK.Graphics.OpenGL.All.LineQualityHintSgix; - var _AsyncTexImageSgix = OpenTK.Graphics.OpenGL.All.AsyncTexImageSgix; - var _AsyncDrawPixelsSgix = OpenTK.Graphics.OpenGL.All.AsyncDrawPixelsSgix; - var _AsyncReadPixelsSgix = OpenTK.Graphics.OpenGL.All.AsyncReadPixelsSgix; - var _MaxAsyncTexImageSgix = OpenTK.Graphics.OpenGL.All.MaxAsyncTexImageSgix; - var _MaxAsyncDrawPixelsSgix = OpenTK.Graphics.OpenGL.All.MaxAsyncDrawPixelsSgix; - var _MaxAsyncReadPixelsSgix = OpenTK.Graphics.OpenGL.All.MaxAsyncReadPixelsSgix; - var _UnsignedByte233Rev = OpenTK.Graphics.OpenGL.All.UnsignedByte233Rev; - var _UnsignedByte233Reversed = OpenTK.Graphics.OpenGL.All.UnsignedByte233Reversed; - var _UnsignedShort565 = OpenTK.Graphics.OpenGL.All.UnsignedShort565; - var _UnsignedShort565Rev = OpenTK.Graphics.OpenGL.All.UnsignedShort565Rev; - var _UnsignedShort565Reversed = OpenTK.Graphics.OpenGL.All.UnsignedShort565Reversed; - var _UnsignedShort4444Rev = OpenTK.Graphics.OpenGL.All.UnsignedShort4444Rev; - var _UnsignedShort4444Reversed = OpenTK.Graphics.OpenGL.All.UnsignedShort4444Reversed; - var _UnsignedShort1555Rev = OpenTK.Graphics.OpenGL.All.UnsignedShort1555Rev; - var _UnsignedShort1555Reversed = OpenTK.Graphics.OpenGL.All.UnsignedShort1555Reversed; - var _UnsignedInt8888Rev = OpenTK.Graphics.OpenGL.All.UnsignedInt8888Rev; - var _UnsignedInt8888Reversed = OpenTK.Graphics.OpenGL.All.UnsignedInt8888Reversed; - var _UnsignedInt2101010Rev = OpenTK.Graphics.OpenGL.All.UnsignedInt2101010Rev; - var _UnsignedInt2101010Reversed = OpenTK.Graphics.OpenGL.All.UnsignedInt2101010Reversed; - var _TextureMaxClampSSgix = OpenTK.Graphics.OpenGL.All.TextureMaxClampSSgix; - var _TextureMaxClampTSgix = OpenTK.Graphics.OpenGL.All.TextureMaxClampTSgix; - var _TextureMaxClampRSgix = OpenTK.Graphics.OpenGL.All.TextureMaxClampRSgix; - var _MirroredRepeat = OpenTK.Graphics.OpenGL.All.MirroredRepeat; - var _MirroredRepeatArb = OpenTK.Graphics.OpenGL.All.MirroredRepeatArb; - var _MirroredRepeatIbm = OpenTK.Graphics.OpenGL.All.MirroredRepeatIbm; - var _RgbS3tc = OpenTK.Graphics.OpenGL.All.RgbS3tc; - var _Rgb4S3tc = OpenTK.Graphics.OpenGL.All.Rgb4S3tc; - var _RgbaS3tc = OpenTK.Graphics.OpenGL.All.RgbaS3tc; - var _Rgba4S3tc = OpenTK.Graphics.OpenGL.All.Rgba4S3tc; - var _RgbaDxt5S3tc = OpenTK.Graphics.OpenGL.All.RgbaDxt5S3tc; - var _Rgba4Dxt5S3tc = OpenTK.Graphics.OpenGL.All.Rgba4Dxt5S3tc; - var _VertexPreclipSgix = OpenTK.Graphics.OpenGL.All.VertexPreclipSgix; - var _VertexPreclipHintSgix = OpenTK.Graphics.OpenGL.All.VertexPreclipHintSgix; - var _CompressedRgbS3tcDxt1Ext = OpenTK.Graphics.OpenGL.All.CompressedRgbS3tcDxt1Ext; - var _CompressedRgbaS3tcDxt1Ext = OpenTK.Graphics.OpenGL.All.CompressedRgbaS3tcDxt1Ext; - var _CompressedRgbaS3tcDxt3Ext = OpenTK.Graphics.OpenGL.All.CompressedRgbaS3tcDxt3Ext; - var _CompressedRgbaS3tcDxt5Ext = OpenTK.Graphics.OpenGL.All.CompressedRgbaS3tcDxt5Ext; - var _ParallelArraysIntel = OpenTK.Graphics.OpenGL.All.ParallelArraysIntel; - var _VertexArrayParallelPointersIntel = OpenTK.Graphics.OpenGL.All.VertexArrayParallelPointersIntel; - var _NormalArrayParallelPointersIntel = OpenTK.Graphics.OpenGL.All.NormalArrayParallelPointersIntel; - var _ColorArrayParallelPointersIntel = OpenTK.Graphics.OpenGL.All.ColorArrayParallelPointersIntel; - var _TextureCoordArrayParallelPointersIntel = OpenTK.Graphics.OpenGL.All.TextureCoordArrayParallelPointersIntel; - var _PerfqueryDonotFlushIntel = OpenTK.Graphics.OpenGL.All.PerfqueryDonotFlushIntel; - var _PerfqueryFlushIntel = OpenTK.Graphics.OpenGL.All.PerfqueryFlushIntel; - var _PerfqueryWaitIntel = OpenTK.Graphics.OpenGL.All.PerfqueryWaitIntel; - var _TextureMemoryLayoutIntel = OpenTK.Graphics.OpenGL.All.TextureMemoryLayoutIntel; - var _FragmentLightingSgix = OpenTK.Graphics.OpenGL.All.FragmentLightingSgix; - var _FragmentColorMaterialSgix = OpenTK.Graphics.OpenGL.All.FragmentColorMaterialSgix; - var _FragmentColorMaterialFaceSgix = OpenTK.Graphics.OpenGL.All.FragmentColorMaterialFaceSgix; - var _FragmentColorMaterialParameterSgix = OpenTK.Graphics.OpenGL.All.FragmentColorMaterialParameterSgix; - var _MaxFragmentLightsSgix = OpenTK.Graphics.OpenGL.All.MaxFragmentLightsSgix; - var _MaxActiveLightsSgix = OpenTK.Graphics.OpenGL.All.MaxActiveLightsSgix; - var _CurrentRasterNormalSgix = OpenTK.Graphics.OpenGL.All.CurrentRasterNormalSgix; - var _LightEnvModeSgix = OpenTK.Graphics.OpenGL.All.LightEnvModeSgix; - var _FragmentLightModelLocalViewerSgix = OpenTK.Graphics.OpenGL.All.FragmentLightModelLocalViewerSgix; - var _FragmentLightModelTwoSideSgix = OpenTK.Graphics.OpenGL.All.FragmentLightModelTwoSideSgix; - var _FragmentLightModelAmbientSgix = OpenTK.Graphics.OpenGL.All.FragmentLightModelAmbientSgix; - var _FragmentLightModelNormalInterpolationSgix = OpenTK.Graphics.OpenGL.All.FragmentLightModelNormalInterpolationSgix; - var _FragmentLight0Sgix = OpenTK.Graphics.OpenGL.All.FragmentLight0Sgix; - var _FragmentLight1Sgix = OpenTK.Graphics.OpenGL.All.FragmentLight1Sgix; - var _FragmentLight2Sgix = OpenTK.Graphics.OpenGL.All.FragmentLight2Sgix; - var _FragmentLight3Sgix = OpenTK.Graphics.OpenGL.All.FragmentLight3Sgix; - var _FragmentLight4Sgix = OpenTK.Graphics.OpenGL.All.FragmentLight4Sgix; - var _FragmentLight5Sgix = OpenTK.Graphics.OpenGL.All.FragmentLight5Sgix; - var _FragmentLight6Sgix = OpenTK.Graphics.OpenGL.All.FragmentLight6Sgix; - var _FragmentLight7Sgix = OpenTK.Graphics.OpenGL.All.FragmentLight7Sgix; - var _PackResampleSgix = OpenTK.Graphics.OpenGL.All.PackResampleSgix; - var _UnpackResampleSgix = OpenTK.Graphics.OpenGL.All.UnpackResampleSgix; - var _ResampleReplicateSgix = OpenTK.Graphics.OpenGL.All.ResampleReplicateSgix; - var _ResampleZeroFillSgix = OpenTK.Graphics.OpenGL.All.ResampleZeroFillSgix; - var _ResampleDecimateSgix = OpenTK.Graphics.OpenGL.All.ResampleDecimateSgix; - var _TangentArrayExt = OpenTK.Graphics.OpenGL.All.TangentArrayExt; - var _BinormalArrayExt = OpenTK.Graphics.OpenGL.All.BinormalArrayExt; - var _CurrentTangentExt = OpenTK.Graphics.OpenGL.All.CurrentTangentExt; - var _CurrentBinormalExt = OpenTK.Graphics.OpenGL.All.CurrentBinormalExt; - var _TangentArrayTypeExt = OpenTK.Graphics.OpenGL.All.TangentArrayTypeExt; - var _TangentArrayStrideExt = OpenTK.Graphics.OpenGL.All.TangentArrayStrideExt; - var _BinormalArrayTypeExt = OpenTK.Graphics.OpenGL.All.BinormalArrayTypeExt; - var _BinormalArrayStrideExt = OpenTK.Graphics.OpenGL.All.BinormalArrayStrideExt; - var _TangentArrayPointerExt = OpenTK.Graphics.OpenGL.All.TangentArrayPointerExt; - var _BinormalArrayPointerExt = OpenTK.Graphics.OpenGL.All.BinormalArrayPointerExt; - var _Map1TangentExt = OpenTK.Graphics.OpenGL.All.Map1TangentExt; - var _Map2TangentExt = OpenTK.Graphics.OpenGL.All.Map2TangentExt; - var _Map1BinormalExt = OpenTK.Graphics.OpenGL.All.Map1BinormalExt; - var _Map2BinormalExt = OpenTK.Graphics.OpenGL.All.Map2BinormalExt; - var _NearestClipmapNearestSgix = OpenTK.Graphics.OpenGL.All.NearestClipmapNearestSgix; - var _NearestClipmapLinearSgix = OpenTK.Graphics.OpenGL.All.NearestClipmapLinearSgix; - var _LinearClipmapNearestSgix = OpenTK.Graphics.OpenGL.All.LinearClipmapNearestSgix; - var _FogCoordinateSource = OpenTK.Graphics.OpenGL.All.FogCoordinateSource; - var _FogCoordinateSourceExt = OpenTK.Graphics.OpenGL.All.FogCoordinateSourceExt; - var _FogCoordSrc = OpenTK.Graphics.OpenGL.All.FogCoordSrc; - var _FogCoord = OpenTK.Graphics.OpenGL.All.FogCoord; - var _FogCoordinate = OpenTK.Graphics.OpenGL.All.FogCoordinate; - var _FogCoordinateExt = OpenTK.Graphics.OpenGL.All.FogCoordinateExt; - var _FragmentDepth = OpenTK.Graphics.OpenGL.All.FragmentDepth; - var _FragmentDepthExt = OpenTK.Graphics.OpenGL.All.FragmentDepthExt; - var _CurrentFogCoord = OpenTK.Graphics.OpenGL.All.CurrentFogCoord; - var _CurrentFogCoordinate = OpenTK.Graphics.OpenGL.All.CurrentFogCoordinate; - var _CurrentFogCoordinateExt = OpenTK.Graphics.OpenGL.All.CurrentFogCoordinateExt; - var _FogCoordArrayType = OpenTK.Graphics.OpenGL.All.FogCoordArrayType; - var _FogCoordinateArrayType = OpenTK.Graphics.OpenGL.All.FogCoordinateArrayType; - var _FogCoordinateArrayTypeExt = OpenTK.Graphics.OpenGL.All.FogCoordinateArrayTypeExt; - var _FogCoordArrayStride = OpenTK.Graphics.OpenGL.All.FogCoordArrayStride; - var _FogCoordinateArrayStride = OpenTK.Graphics.OpenGL.All.FogCoordinateArrayStride; - var _FogCoordinateArrayStrideExt = OpenTK.Graphics.OpenGL.All.FogCoordinateArrayStrideExt; - var _FogCoordArrayPointer = OpenTK.Graphics.OpenGL.All.FogCoordArrayPointer; - var _FogCoordinateArrayPointer = OpenTK.Graphics.OpenGL.All.FogCoordinateArrayPointer; - var _FogCoordinateArrayPointerExt = OpenTK.Graphics.OpenGL.All.FogCoordinateArrayPointerExt; - var _FogCoordArray = OpenTK.Graphics.OpenGL.All.FogCoordArray; - var _FogCoordinateArray = OpenTK.Graphics.OpenGL.All.FogCoordinateArray; - var _FogCoordinateArrayExt = OpenTK.Graphics.OpenGL.All.FogCoordinateArrayExt; - var _ColorSum = OpenTK.Graphics.OpenGL.All.ColorSum; - var _ColorSumArb = OpenTK.Graphics.OpenGL.All.ColorSumArb; - var _ColorSumExt = OpenTK.Graphics.OpenGL.All.ColorSumExt; - var _CurrentSecondaryColor = OpenTK.Graphics.OpenGL.All.CurrentSecondaryColor; - var _CurrentSecondaryColorExt = OpenTK.Graphics.OpenGL.All.CurrentSecondaryColorExt; - var _SecondaryColorArraySize = OpenTK.Graphics.OpenGL.All.SecondaryColorArraySize; - var _SecondaryColorArraySizeExt = OpenTK.Graphics.OpenGL.All.SecondaryColorArraySizeExt; - var _SecondaryColorArrayType = OpenTK.Graphics.OpenGL.All.SecondaryColorArrayType; - var _SecondaryColorArrayTypeExt = OpenTK.Graphics.OpenGL.All.SecondaryColorArrayTypeExt; - var _SecondaryColorArrayStride = OpenTK.Graphics.OpenGL.All.SecondaryColorArrayStride; - var _SecondaryColorArrayStrideExt = OpenTK.Graphics.OpenGL.All.SecondaryColorArrayStrideExt; - var _SecondaryColorArrayPointer = OpenTK.Graphics.OpenGL.All.SecondaryColorArrayPointer; - var _SecondaryColorArrayPointerExt = OpenTK.Graphics.OpenGL.All.SecondaryColorArrayPointerExt; - var _SecondaryColorArray = OpenTK.Graphics.OpenGL.All.SecondaryColorArray; - var _SecondaryColorArrayExt = OpenTK.Graphics.OpenGL.All.SecondaryColorArrayExt; - var _CurrentRasterSecondaryColor = OpenTK.Graphics.OpenGL.All.CurrentRasterSecondaryColor; - var _RgbIccSgix = OpenTK.Graphics.OpenGL.All.RgbIccSgix; - var _RgbaIccSgix = OpenTK.Graphics.OpenGL.All.RgbaIccSgix; - var _AlphaIccSgix = OpenTK.Graphics.OpenGL.All.AlphaIccSgix; - var _LuminanceIccSgix = OpenTK.Graphics.OpenGL.All.LuminanceIccSgix; - var _IntensityIccSgix = OpenTK.Graphics.OpenGL.All.IntensityIccSgix; - var _LuminanceAlphaIccSgix = OpenTK.Graphics.OpenGL.All.LuminanceAlphaIccSgix; - var _R5G6B5IccSgix = OpenTK.Graphics.OpenGL.All.R5G6B5IccSgix; - var _R5G6B5A8IccSgix = OpenTK.Graphics.OpenGL.All.R5G6B5A8IccSgix; - var _Alpha16IccSgix = OpenTK.Graphics.OpenGL.All.Alpha16IccSgix; - var _Luminance16IccSgix = OpenTK.Graphics.OpenGL.All.Luminance16IccSgix; - var _Intensity16IccSgix = OpenTK.Graphics.OpenGL.All.Intensity16IccSgix; - var _Luminance16Alpha8IccSgix = OpenTK.Graphics.OpenGL.All.Luminance16Alpha8IccSgix; - var _AliasedPointSizeRange = OpenTK.Graphics.OpenGL.All.AliasedPointSizeRange; - var _AliasedLineWidthRange = OpenTK.Graphics.OpenGL.All.AliasedLineWidthRange; - var _ScreenCoordinatesRend = OpenTK.Graphics.OpenGL.All.ScreenCoordinatesRend; - var _InvertedScreenWRend = OpenTK.Graphics.OpenGL.All.InvertedScreenWRend; - var _Texture0 = OpenTK.Graphics.OpenGL.All.Texture0; - var _Texture0Arb = OpenTK.Graphics.OpenGL.All.Texture0Arb; - var _Texture1 = OpenTK.Graphics.OpenGL.All.Texture1; - var _Texture1Arb = OpenTK.Graphics.OpenGL.All.Texture1Arb; - var _Texture2 = OpenTK.Graphics.OpenGL.All.Texture2; - var _Texture2Arb = OpenTK.Graphics.OpenGL.All.Texture2Arb; - var _Texture3 = OpenTK.Graphics.OpenGL.All.Texture3; - var _Texture3Arb = OpenTK.Graphics.OpenGL.All.Texture3Arb; - var _Texture4 = OpenTK.Graphics.OpenGL.All.Texture4; - var _Texture4Arb = OpenTK.Graphics.OpenGL.All.Texture4Arb; - var _Texture5 = OpenTK.Graphics.OpenGL.All.Texture5; - var _Texture5Arb = OpenTK.Graphics.OpenGL.All.Texture5Arb; - var _Texture6 = OpenTK.Graphics.OpenGL.All.Texture6; - var _Texture6Arb = OpenTK.Graphics.OpenGL.All.Texture6Arb; - var _Texture7 = OpenTK.Graphics.OpenGL.All.Texture7; - var _Texture7Arb = OpenTK.Graphics.OpenGL.All.Texture7Arb; - var _Texture8 = OpenTK.Graphics.OpenGL.All.Texture8; - var _Texture8Arb = OpenTK.Graphics.OpenGL.All.Texture8Arb; - var _Texture9 = OpenTK.Graphics.OpenGL.All.Texture9; - var _Texture9Arb = OpenTK.Graphics.OpenGL.All.Texture9Arb; - var _Texture10 = OpenTK.Graphics.OpenGL.All.Texture10; - var _Texture10Arb = OpenTK.Graphics.OpenGL.All.Texture10Arb; - var _Texture11 = OpenTK.Graphics.OpenGL.All.Texture11; - var _Texture11Arb = OpenTK.Graphics.OpenGL.All.Texture11Arb; - var _Texture12 = OpenTK.Graphics.OpenGL.All.Texture12; - var _Texture12Arb = OpenTK.Graphics.OpenGL.All.Texture12Arb; - var _Texture13 = OpenTK.Graphics.OpenGL.All.Texture13; - var _Texture13Arb = OpenTK.Graphics.OpenGL.All.Texture13Arb; - var _Texture14 = OpenTK.Graphics.OpenGL.All.Texture14; - var _Texture14Arb = OpenTK.Graphics.OpenGL.All.Texture14Arb; - var _Texture15 = OpenTK.Graphics.OpenGL.All.Texture15; - var _Texture15Arb = OpenTK.Graphics.OpenGL.All.Texture15Arb; - var _Texture16 = OpenTK.Graphics.OpenGL.All.Texture16; - var _Texture16Arb = OpenTK.Graphics.OpenGL.All.Texture16Arb; - var _Texture17 = OpenTK.Graphics.OpenGL.All.Texture17; - var _Texture17Arb = OpenTK.Graphics.OpenGL.All.Texture17Arb; - var _Texture18 = OpenTK.Graphics.OpenGL.All.Texture18; - var _Texture18Arb = OpenTK.Graphics.OpenGL.All.Texture18Arb; - var _Texture19 = OpenTK.Graphics.OpenGL.All.Texture19; - var _Texture19Arb = OpenTK.Graphics.OpenGL.All.Texture19Arb; - var _Texture20 = OpenTK.Graphics.OpenGL.All.Texture20; - var _Texture20Arb = OpenTK.Graphics.OpenGL.All.Texture20Arb; - var _Texture21 = OpenTK.Graphics.OpenGL.All.Texture21; - var _Texture21Arb = OpenTK.Graphics.OpenGL.All.Texture21Arb; - var _Texture22 = OpenTK.Graphics.OpenGL.All.Texture22; - var _Texture22Arb = OpenTK.Graphics.OpenGL.All.Texture22Arb; - var _Texture23 = OpenTK.Graphics.OpenGL.All.Texture23; - var _Texture23Arb = OpenTK.Graphics.OpenGL.All.Texture23Arb; - var _Texture24 = OpenTK.Graphics.OpenGL.All.Texture24; - var _Texture24Arb = OpenTK.Graphics.OpenGL.All.Texture24Arb; - var _Texture25 = OpenTK.Graphics.OpenGL.All.Texture25; - var _Texture25Arb = OpenTK.Graphics.OpenGL.All.Texture25Arb; - var _Texture26 = OpenTK.Graphics.OpenGL.All.Texture26; - var _Texture26Arb = OpenTK.Graphics.OpenGL.All.Texture26Arb; - var _Texture27 = OpenTK.Graphics.OpenGL.All.Texture27; - var _Texture27Arb = OpenTK.Graphics.OpenGL.All.Texture27Arb; - var _Texture28 = OpenTK.Graphics.OpenGL.All.Texture28; - var _Texture28Arb = OpenTK.Graphics.OpenGL.All.Texture28Arb; - var _Texture29 = OpenTK.Graphics.OpenGL.All.Texture29; - var _Texture29Arb = OpenTK.Graphics.OpenGL.All.Texture29Arb; - var _Texture30 = OpenTK.Graphics.OpenGL.All.Texture30; - var _Texture30Arb = OpenTK.Graphics.OpenGL.All.Texture30Arb; - var _Texture31 = OpenTK.Graphics.OpenGL.All.Texture31; - var _Texture31Arb = OpenTK.Graphics.OpenGL.All.Texture31Arb; - var _ActiveTexture = OpenTK.Graphics.OpenGL.All.ActiveTexture; - var _ActiveTextureArb = OpenTK.Graphics.OpenGL.All.ActiveTextureArb; - var _ClientActiveTexture = OpenTK.Graphics.OpenGL.All.ClientActiveTexture; - var _ClientActiveTextureArb = OpenTK.Graphics.OpenGL.All.ClientActiveTextureArb; - var _MaxTextureUnits = OpenTK.Graphics.OpenGL.All.MaxTextureUnits; - var _MaxTextureUnitsArb = OpenTK.Graphics.OpenGL.All.MaxTextureUnitsArb; - var _TransposeModelviewMatrix = OpenTK.Graphics.OpenGL.All.TransposeModelviewMatrix; - var _TransposeModelviewMatrixArb = OpenTK.Graphics.OpenGL.All.TransposeModelviewMatrixArb; - var _TransposeProjectionMatrix = OpenTK.Graphics.OpenGL.All.TransposeProjectionMatrix; - var _TransposeProjectionMatrixArb = OpenTK.Graphics.OpenGL.All.TransposeProjectionMatrixArb; - var _TransposeTextureMatrix = OpenTK.Graphics.OpenGL.All.TransposeTextureMatrix; - var _TransposeTextureMatrixArb = OpenTK.Graphics.OpenGL.All.TransposeTextureMatrixArb; - var _TransposeColorMatrix = OpenTK.Graphics.OpenGL.All.TransposeColorMatrix; - var _TransposeColorMatrixArb = OpenTK.Graphics.OpenGL.All.TransposeColorMatrixArb; - var _Subtract = OpenTK.Graphics.OpenGL.All.Subtract; - var _SubtractArb = OpenTK.Graphics.OpenGL.All.SubtractArb; - var _MaxRenderbufferSize = OpenTK.Graphics.OpenGL.All.MaxRenderbufferSize; - var _MaxRenderbufferSizeExt = OpenTK.Graphics.OpenGL.All.MaxRenderbufferSizeExt; - var _CompressedAlpha = OpenTK.Graphics.OpenGL.All.CompressedAlpha; - var _CompressedAlphaArb = OpenTK.Graphics.OpenGL.All.CompressedAlphaArb; - var _CompressedLuminance = OpenTK.Graphics.OpenGL.All.CompressedLuminance; - var _CompressedLuminanceArb = OpenTK.Graphics.OpenGL.All.CompressedLuminanceArb; - var _CompressedLuminanceAlpha = OpenTK.Graphics.OpenGL.All.CompressedLuminanceAlpha; - var _CompressedLuminanceAlphaArb = OpenTK.Graphics.OpenGL.All.CompressedLuminanceAlphaArb; - var _CompressedIntensity = OpenTK.Graphics.OpenGL.All.CompressedIntensity; - var _CompressedIntensityArb = OpenTK.Graphics.OpenGL.All.CompressedIntensityArb; - var _CompressedRgb = OpenTK.Graphics.OpenGL.All.CompressedRgb; - var _CompressedRgbArb = OpenTK.Graphics.OpenGL.All.CompressedRgbArb; - var _CompressedRgba = OpenTK.Graphics.OpenGL.All.CompressedRgba; - var _CompressedRgbaArb = OpenTK.Graphics.OpenGL.All.CompressedRgbaArb; - var _TextureCompressionHint = OpenTK.Graphics.OpenGL.All.TextureCompressionHint; - var _TextureCompressionHintArb = OpenTK.Graphics.OpenGL.All.TextureCompressionHintArb; - var _UniformBlockReferencedByTessControlShader = OpenTK.Graphics.OpenGL.All.UniformBlockReferencedByTessControlShader; - var _UniformBlockReferencedByTessEvaluationShader = OpenTK.Graphics.OpenGL.All.UniformBlockReferencedByTessEvaluationShader; - var _AllCompletedNv = OpenTK.Graphics.OpenGL.All.AllCompletedNv; - var _FenceStatusNv = OpenTK.Graphics.OpenGL.All.FenceStatusNv; - var _FenceConditionNv = OpenTK.Graphics.OpenGL.All.FenceConditionNv; - var _TextureRectangle = OpenTK.Graphics.OpenGL.All.TextureRectangle; - var _TextureRectangleArb = OpenTK.Graphics.OpenGL.All.TextureRectangleArb; - var _TextureRectangleNv = OpenTK.Graphics.OpenGL.All.TextureRectangleNv; - var _TextureBindingRectangle = OpenTK.Graphics.OpenGL.All.TextureBindingRectangle; - var _TextureBindingRectangleArb = OpenTK.Graphics.OpenGL.All.TextureBindingRectangleArb; - var _TextureBindingRectangleNv = OpenTK.Graphics.OpenGL.All.TextureBindingRectangleNv; - var _ProxyTextureRectangle = OpenTK.Graphics.OpenGL.All.ProxyTextureRectangle; - var _ProxyTextureRectangleArb = OpenTK.Graphics.OpenGL.All.ProxyTextureRectangleArb; - var _ProxyTextureRectangleNv = OpenTK.Graphics.OpenGL.All.ProxyTextureRectangleNv; - var _MaxRectangleTextureSize = OpenTK.Graphics.OpenGL.All.MaxRectangleTextureSize; - var _MaxRectangleTextureSizeArb = OpenTK.Graphics.OpenGL.All.MaxRectangleTextureSizeArb; - var _MaxRectangleTextureSizeNv = OpenTK.Graphics.OpenGL.All.MaxRectangleTextureSizeNv; - var _DepthStencil = OpenTK.Graphics.OpenGL.All.DepthStencil; - var _DepthStencilExt = OpenTK.Graphics.OpenGL.All.DepthStencilExt; - var _DepthStencilNv = OpenTK.Graphics.OpenGL.All.DepthStencilNv; - var _UnsignedInt248 = OpenTK.Graphics.OpenGL.All.UnsignedInt248; - var _UnsignedInt248Ext = OpenTK.Graphics.OpenGL.All.UnsignedInt248Ext; - var _UnsignedInt248Nv = OpenTK.Graphics.OpenGL.All.UnsignedInt248Nv; - var _MaxTextureLodBias = OpenTK.Graphics.OpenGL.All.MaxTextureLodBias; - var _MaxTextureLodBiasExt = OpenTK.Graphics.OpenGL.All.MaxTextureLodBiasExt; - var _TextureMaxAnisotropyExt = OpenTK.Graphics.OpenGL.All.TextureMaxAnisotropyExt; - var _MaxTextureMaxAnisotropyExt = OpenTK.Graphics.OpenGL.All.MaxTextureMaxAnisotropyExt; - var _TextureFilterControl = OpenTK.Graphics.OpenGL.All.TextureFilterControl; - var _TextureFilterControlExt = OpenTK.Graphics.OpenGL.All.TextureFilterControlExt; - var _TextureLodBias = OpenTK.Graphics.OpenGL.All.TextureLodBias; - var _TextureLodBiasExt = OpenTK.Graphics.OpenGL.All.TextureLodBiasExt; - var _Modelview1StackDepthExt = OpenTK.Graphics.OpenGL.All.Modelview1StackDepthExt; - var _Combine4Nv = OpenTK.Graphics.OpenGL.All.Combine4Nv; - var _MaxShininessNv = OpenTK.Graphics.OpenGL.All.MaxShininessNv; - var _MaxSpotExponentNv = OpenTK.Graphics.OpenGL.All.MaxSpotExponentNv; - var _Modelview1MatrixExt = OpenTK.Graphics.OpenGL.All.Modelview1MatrixExt; - var _IncrWrap = OpenTK.Graphics.OpenGL.All.IncrWrap; - var _IncrWrapExt = OpenTK.Graphics.OpenGL.All.IncrWrapExt; - var _DecrWrap = OpenTK.Graphics.OpenGL.All.DecrWrap; - var _DecrWrapExt = OpenTK.Graphics.OpenGL.All.DecrWrapExt; - var _VertexWeightingExt = OpenTK.Graphics.OpenGL.All.VertexWeightingExt; - var _Modelview1Arb = OpenTK.Graphics.OpenGL.All.Modelview1Arb; - var _Modelview1Ext = OpenTK.Graphics.OpenGL.All.Modelview1Ext; - var _CurrentVertexWeightExt = OpenTK.Graphics.OpenGL.All.CurrentVertexWeightExt; - var _VertexWeightArrayExt = OpenTK.Graphics.OpenGL.All.VertexWeightArrayExt; - var _VertexWeightArraySizeExt = OpenTK.Graphics.OpenGL.All.VertexWeightArraySizeExt; - var _VertexWeightArrayTypeExt = OpenTK.Graphics.OpenGL.All.VertexWeightArrayTypeExt; - var _VertexWeightArrayStrideExt = OpenTK.Graphics.OpenGL.All.VertexWeightArrayStrideExt; - var _VertexWeightArrayPointerExt = OpenTK.Graphics.OpenGL.All.VertexWeightArrayPointerExt; - var _NormalMap = OpenTK.Graphics.OpenGL.All.NormalMap; - var _NormalMapArb = OpenTK.Graphics.OpenGL.All.NormalMapArb; - var _NormalMapExt = OpenTK.Graphics.OpenGL.All.NormalMapExt; - var _NormalMapNv = OpenTK.Graphics.OpenGL.All.NormalMapNv; - var _ReflectionMap = OpenTK.Graphics.OpenGL.All.ReflectionMap; - var _ReflectionMapArb = OpenTK.Graphics.OpenGL.All.ReflectionMapArb; - var _ReflectionMapExt = OpenTK.Graphics.OpenGL.All.ReflectionMapExt; - var _ReflectionMapNv = OpenTK.Graphics.OpenGL.All.ReflectionMapNv; - var _TextureCubeMap = OpenTK.Graphics.OpenGL.All.TextureCubeMap; - var _TextureCubeMapArb = OpenTK.Graphics.OpenGL.All.TextureCubeMapArb; - var _TextureCubeMapExt = OpenTK.Graphics.OpenGL.All.TextureCubeMapExt; - var _TextureBindingCubeMap = OpenTK.Graphics.OpenGL.All.TextureBindingCubeMap; - var _TextureBindingCubeMapArb = OpenTK.Graphics.OpenGL.All.TextureBindingCubeMapArb; - var _TextureBindingCubeMapExt = OpenTK.Graphics.OpenGL.All.TextureBindingCubeMapExt; - var _TextureCubeMapPositiveX = OpenTK.Graphics.OpenGL.All.TextureCubeMapPositiveX; - var _TextureCubeMapPositiveXArb = OpenTK.Graphics.OpenGL.All.TextureCubeMapPositiveXArb; - var _TextureCubeMapPositiveXExt = OpenTK.Graphics.OpenGL.All.TextureCubeMapPositiveXExt; - var _TextureCubeMapNegativeX = OpenTK.Graphics.OpenGL.All.TextureCubeMapNegativeX; - var _TextureCubeMapNegativeXArb = OpenTK.Graphics.OpenGL.All.TextureCubeMapNegativeXArb; - var _TextureCubeMapNegativeXExt = OpenTK.Graphics.OpenGL.All.TextureCubeMapNegativeXExt; - var _TextureCubeMapPositiveY = OpenTK.Graphics.OpenGL.All.TextureCubeMapPositiveY; - var _TextureCubeMapPositiveYArb = OpenTK.Graphics.OpenGL.All.TextureCubeMapPositiveYArb; - var _TextureCubeMapPositiveYExt = OpenTK.Graphics.OpenGL.All.TextureCubeMapPositiveYExt; - var _TextureCubeMapNegativeY = OpenTK.Graphics.OpenGL.All.TextureCubeMapNegativeY; - var _TextureCubeMapNegativeYArb = OpenTK.Graphics.OpenGL.All.TextureCubeMapNegativeYArb; - var _TextureCubeMapNegativeYExt = OpenTK.Graphics.OpenGL.All.TextureCubeMapNegativeYExt; - var _TextureCubeMapPositiveZ = OpenTK.Graphics.OpenGL.All.TextureCubeMapPositiveZ; - var _TextureCubeMapPositiveZArb = OpenTK.Graphics.OpenGL.All.TextureCubeMapPositiveZArb; - var _TextureCubeMapPositiveZExt = OpenTK.Graphics.OpenGL.All.TextureCubeMapPositiveZExt; - var _TextureCubeMapNegativeZ = OpenTK.Graphics.OpenGL.All.TextureCubeMapNegativeZ; - var _TextureCubeMapNegativeZArb = OpenTK.Graphics.OpenGL.All.TextureCubeMapNegativeZArb; - var _TextureCubeMapNegativeZExt = OpenTK.Graphics.OpenGL.All.TextureCubeMapNegativeZExt; - var _ProxyTextureCubeMap = OpenTK.Graphics.OpenGL.All.ProxyTextureCubeMap; - var _ProxyTextureCubeMapArb = OpenTK.Graphics.OpenGL.All.ProxyTextureCubeMapArb; - var _ProxyTextureCubeMapExt = OpenTK.Graphics.OpenGL.All.ProxyTextureCubeMapExt; - var _MaxCubeMapTextureSize = OpenTK.Graphics.OpenGL.All.MaxCubeMapTextureSize; - var _MaxCubeMapTextureSizeArb = OpenTK.Graphics.OpenGL.All.MaxCubeMapTextureSizeArb; - var _MaxCubeMapTextureSizeExt = OpenTK.Graphics.OpenGL.All.MaxCubeMapTextureSizeExt; - var _VertexArrayRangeApple = OpenTK.Graphics.OpenGL.All.VertexArrayRangeApple; - var _VertexArrayRangeNv = OpenTK.Graphics.OpenGL.All.VertexArrayRangeNv; - var _VertexArrayRangeLengthApple = OpenTK.Graphics.OpenGL.All.VertexArrayRangeLengthApple; - var _VertexArrayRangeLengthNv = OpenTK.Graphics.OpenGL.All.VertexArrayRangeLengthNv; - var _VertexArrayRangeValidNv = OpenTK.Graphics.OpenGL.All.VertexArrayRangeValidNv; - var _VertexArrayStorageHintApple = OpenTK.Graphics.OpenGL.All.VertexArrayStorageHintApple; - var _MaxVertexArrayRangeElementNv = OpenTK.Graphics.OpenGL.All.MaxVertexArrayRangeElementNv; - var _VertexArrayRangePointerApple = OpenTK.Graphics.OpenGL.All.VertexArrayRangePointerApple; - var _VertexArrayRangePointerNv = OpenTK.Graphics.OpenGL.All.VertexArrayRangePointerNv; - var _RegisterCombinersNv = OpenTK.Graphics.OpenGL.All.RegisterCombinersNv; - var _VariableANv = OpenTK.Graphics.OpenGL.All.VariableANv; - var _VariableBNv = OpenTK.Graphics.OpenGL.All.VariableBNv; - var _VariableCNv = OpenTK.Graphics.OpenGL.All.VariableCNv; - var _VariableDNv = OpenTK.Graphics.OpenGL.All.VariableDNv; - var _VariableENv = OpenTK.Graphics.OpenGL.All.VariableENv; - var _VariableFNv = OpenTK.Graphics.OpenGL.All.VariableFNv; - var _VariableGNv = OpenTK.Graphics.OpenGL.All.VariableGNv; - var _ConstantColor0Nv = OpenTK.Graphics.OpenGL.All.ConstantColor0Nv; - var _ConstantColor1Nv = OpenTK.Graphics.OpenGL.All.ConstantColor1Nv; - var _PrimaryColorNv = OpenTK.Graphics.OpenGL.All.PrimaryColorNv; - var _SecondaryColorNv = OpenTK.Graphics.OpenGL.All.SecondaryColorNv; - var _Spare0Nv = OpenTK.Graphics.OpenGL.All.Spare0Nv; - var _Spare1Nv = OpenTK.Graphics.OpenGL.All.Spare1Nv; - var _DiscardNv = OpenTK.Graphics.OpenGL.All.DiscardNv; - var _ETimesFNv = OpenTK.Graphics.OpenGL.All.ETimesFNv; - var _Spare0PlusSecondaryColorNv = OpenTK.Graphics.OpenGL.All.Spare0PlusSecondaryColorNv; - var _VertexArrayRangeWithoutFlushNv = OpenTK.Graphics.OpenGL.All.VertexArrayRangeWithoutFlushNv; - var _MultisampleFilterHintNv = OpenTK.Graphics.OpenGL.All.MultisampleFilterHintNv; - var _PerStageConstantsNv = OpenTK.Graphics.OpenGL.All.PerStageConstantsNv; - var _UnsignedIdentityNv = OpenTK.Graphics.OpenGL.All.UnsignedIdentityNv; - var _UnsignedInvertNv = OpenTK.Graphics.OpenGL.All.UnsignedInvertNv; - var _ExpandNormalNv = OpenTK.Graphics.OpenGL.All.ExpandNormalNv; - var _ExpandNegateNv = OpenTK.Graphics.OpenGL.All.ExpandNegateNv; - var _HalfBiasNormalNv = OpenTK.Graphics.OpenGL.All.HalfBiasNormalNv; - var _HalfBiasNegateNv = OpenTK.Graphics.OpenGL.All.HalfBiasNegateNv; - var _SignedIdentityNv = OpenTK.Graphics.OpenGL.All.SignedIdentityNv; - var _SignedNegateNv = OpenTK.Graphics.OpenGL.All.SignedNegateNv; - var _ScaleByTwoNv = OpenTK.Graphics.OpenGL.All.ScaleByTwoNv; - var _ScaleByFourNv = OpenTK.Graphics.OpenGL.All.ScaleByFourNv; - var _ScaleByOneHalfNv = OpenTK.Graphics.OpenGL.All.ScaleByOneHalfNv; - var _BiasByNegativeOneHalfNv = OpenTK.Graphics.OpenGL.All.BiasByNegativeOneHalfNv; - var _CombinerInputNv = OpenTK.Graphics.OpenGL.All.CombinerInputNv; - var _CombinerMappingNv = OpenTK.Graphics.OpenGL.All.CombinerMappingNv; - var _CombinerComponentUsageNv = OpenTK.Graphics.OpenGL.All.CombinerComponentUsageNv; - var _CombinerAbDotProductNv = OpenTK.Graphics.OpenGL.All.CombinerAbDotProductNv; - var _CombinerCdDotProductNv = OpenTK.Graphics.OpenGL.All.CombinerCdDotProductNv; - var _CombinerMuxSumNv = OpenTK.Graphics.OpenGL.All.CombinerMuxSumNv; - var _CombinerScaleNv = OpenTK.Graphics.OpenGL.All.CombinerScaleNv; - var _CombinerBiasNv = OpenTK.Graphics.OpenGL.All.CombinerBiasNv; - var _CombinerAbOutputNv = OpenTK.Graphics.OpenGL.All.CombinerAbOutputNv; - var _CombinerCdOutputNv = OpenTK.Graphics.OpenGL.All.CombinerCdOutputNv; - var _CombinerSumOutputNv = OpenTK.Graphics.OpenGL.All.CombinerSumOutputNv; - var _MaxGeneralCombinersNv = OpenTK.Graphics.OpenGL.All.MaxGeneralCombinersNv; - var _NumGeneralCombinersNv = OpenTK.Graphics.OpenGL.All.NumGeneralCombinersNv; - var _ColorSumClampNv = OpenTK.Graphics.OpenGL.All.ColorSumClampNv; - var _Combiner0Nv = OpenTK.Graphics.OpenGL.All.Combiner0Nv; - var _Combiner1Nv = OpenTK.Graphics.OpenGL.All.Combiner1Nv; - var _Combiner2Nv = OpenTK.Graphics.OpenGL.All.Combiner2Nv; - var _Combiner3Nv = OpenTK.Graphics.OpenGL.All.Combiner3Nv; - var _Combiner4Nv = OpenTK.Graphics.OpenGL.All.Combiner4Nv; - var _Combiner5Nv = OpenTK.Graphics.OpenGL.All.Combiner5Nv; - var _Combiner6Nv = OpenTK.Graphics.OpenGL.All.Combiner6Nv; - var _Combiner7Nv = OpenTK.Graphics.OpenGL.All.Combiner7Nv; - var _PrimitiveRestartNv = OpenTK.Graphics.OpenGL.All.PrimitiveRestartNv; - var _PrimitiveRestartIndexNv = OpenTK.Graphics.OpenGL.All.PrimitiveRestartIndexNv; - var _FogDistanceModeNv = OpenTK.Graphics.OpenGL.All.FogDistanceModeNv; - var _EyeRadialNv = OpenTK.Graphics.OpenGL.All.EyeRadialNv; - var _EyePlaneAbsoluteNv = OpenTK.Graphics.OpenGL.All.EyePlaneAbsoluteNv; - var _EmbossLightNv = OpenTK.Graphics.OpenGL.All.EmbossLightNv; - var _EmbossConstantNv = OpenTK.Graphics.OpenGL.All.EmbossConstantNv; - var _EmbossMapNv = OpenTK.Graphics.OpenGL.All.EmbossMapNv; - var _RedMinClampIngr = OpenTK.Graphics.OpenGL.All.RedMinClampIngr; - var _GreenMinClampIngr = OpenTK.Graphics.OpenGL.All.GreenMinClampIngr; - var _BlueMinClampIngr = OpenTK.Graphics.OpenGL.All.BlueMinClampIngr; - var _AlphaMinClampIngr = OpenTK.Graphics.OpenGL.All.AlphaMinClampIngr; - var _RedMaxClampIngr = OpenTK.Graphics.OpenGL.All.RedMaxClampIngr; - var _GreenMaxClampIngr = OpenTK.Graphics.OpenGL.All.GreenMaxClampIngr; - var _BlueMaxClampIngr = OpenTK.Graphics.OpenGL.All.BlueMaxClampIngr; - var _AlphaMaxClampIngr = OpenTK.Graphics.OpenGL.All.AlphaMaxClampIngr; - var _InterlaceReadIngr = OpenTK.Graphics.OpenGL.All.InterlaceReadIngr; - var _Combine = OpenTK.Graphics.OpenGL.All.Combine; - var _CombineArb = OpenTK.Graphics.OpenGL.All.CombineArb; - var _CombineExt = OpenTK.Graphics.OpenGL.All.CombineExt; - var _CombineRgb = OpenTK.Graphics.OpenGL.All.CombineRgb; - var _CombineRgbArb = OpenTK.Graphics.OpenGL.All.CombineRgbArb; - var _CombineRgbExt = OpenTK.Graphics.OpenGL.All.CombineRgbExt; - var _CombineAlpha = OpenTK.Graphics.OpenGL.All.CombineAlpha; - var _CombineAlphaArb = OpenTK.Graphics.OpenGL.All.CombineAlphaArb; - var _CombineAlphaExt = OpenTK.Graphics.OpenGL.All.CombineAlphaExt; - var _RgbScale = OpenTK.Graphics.OpenGL.All.RgbScale; - var _RgbScaleArb = OpenTK.Graphics.OpenGL.All.RgbScaleArb; - var _RgbScaleExt = OpenTK.Graphics.OpenGL.All.RgbScaleExt; - var _AddSigned = OpenTK.Graphics.OpenGL.All.AddSigned; - var _AddSignedArb = OpenTK.Graphics.OpenGL.All.AddSignedArb; - var _AddSignedExt = OpenTK.Graphics.OpenGL.All.AddSignedExt; - var _Interpolate = OpenTK.Graphics.OpenGL.All.Interpolate; - var _InterpolateArb = OpenTK.Graphics.OpenGL.All.InterpolateArb; - var _InterpolateExt = OpenTK.Graphics.OpenGL.All.InterpolateExt; - var _Constant = OpenTK.Graphics.OpenGL.All.Constant; - var _ConstantArb = OpenTK.Graphics.OpenGL.All.ConstantArb; - var _ConstantExt = OpenTK.Graphics.OpenGL.All.ConstantExt; - var _PrimaryColor = OpenTK.Graphics.OpenGL.All.PrimaryColor; - var _PrimaryColorArb = OpenTK.Graphics.OpenGL.All.PrimaryColorArb; - var _PrimaryColorExt = OpenTK.Graphics.OpenGL.All.PrimaryColorExt; - var _Previous = OpenTK.Graphics.OpenGL.All.Previous; - var _PreviousArb = OpenTK.Graphics.OpenGL.All.PreviousArb; - var _PreviousExt = OpenTK.Graphics.OpenGL.All.PreviousExt; - var _Source0Rgb = OpenTK.Graphics.OpenGL.All.Source0Rgb; - var _Source0RgbArb = OpenTK.Graphics.OpenGL.All.Source0RgbArb; - var _Source0RgbExt = OpenTK.Graphics.OpenGL.All.Source0RgbExt; - var _Src0Rgb = OpenTK.Graphics.OpenGL.All.Src0Rgb; - var _Source1Rgb = OpenTK.Graphics.OpenGL.All.Source1Rgb; - var _Source1RgbArb = OpenTK.Graphics.OpenGL.All.Source1RgbArb; - var _Source1RgbExt = OpenTK.Graphics.OpenGL.All.Source1RgbExt; - var _Src1Rgb = OpenTK.Graphics.OpenGL.All.Src1Rgb; - var _Source2Rgb = OpenTK.Graphics.OpenGL.All.Source2Rgb; - var _Source2RgbArb = OpenTK.Graphics.OpenGL.All.Source2RgbArb; - var _Source2RgbExt = OpenTK.Graphics.OpenGL.All.Source2RgbExt; - var _Src2Rgb = OpenTK.Graphics.OpenGL.All.Src2Rgb; - var _Source3RgbNv = OpenTK.Graphics.OpenGL.All.Source3RgbNv; - var _Source0Alpha = OpenTK.Graphics.OpenGL.All.Source0Alpha; - var _Source0AlphaArb = OpenTK.Graphics.OpenGL.All.Source0AlphaArb; - var _Source0AlphaExt = OpenTK.Graphics.OpenGL.All.Source0AlphaExt; - var _Src0Alpha = OpenTK.Graphics.OpenGL.All.Src0Alpha; - var _Source1Alpha = OpenTK.Graphics.OpenGL.All.Source1Alpha; - var _Source1AlphaArb = OpenTK.Graphics.OpenGL.All.Source1AlphaArb; - var _Source1AlphaExt = OpenTK.Graphics.OpenGL.All.Source1AlphaExt; - var _Src1Alpha = OpenTK.Graphics.OpenGL.All.Src1Alpha; - var _Source2Alpha = OpenTK.Graphics.OpenGL.All.Source2Alpha; - var _Source2AlphaArb = OpenTK.Graphics.OpenGL.All.Source2AlphaArb; - var _Source2AlphaExt = OpenTK.Graphics.OpenGL.All.Source2AlphaExt; - var _Src2Alpha = OpenTK.Graphics.OpenGL.All.Src2Alpha; - var _Source3AlphaNv = OpenTK.Graphics.OpenGL.All.Source3AlphaNv; - var _Operand0Rgb = OpenTK.Graphics.OpenGL.All.Operand0Rgb; - var _Operand0RgbArb = OpenTK.Graphics.OpenGL.All.Operand0RgbArb; - var _Operand0RgbExt = OpenTK.Graphics.OpenGL.All.Operand0RgbExt; - var _Operand1Rgb = OpenTK.Graphics.OpenGL.All.Operand1Rgb; - var _Operand1RgbArb = OpenTK.Graphics.OpenGL.All.Operand1RgbArb; - var _Operand1RgbExt = OpenTK.Graphics.OpenGL.All.Operand1RgbExt; - var _Operand2Rgb = OpenTK.Graphics.OpenGL.All.Operand2Rgb; - var _Operand2RgbArb = OpenTK.Graphics.OpenGL.All.Operand2RgbArb; - var _Operand2RgbExt = OpenTK.Graphics.OpenGL.All.Operand2RgbExt; - var _Operand3RgbNv = OpenTK.Graphics.OpenGL.All.Operand3RgbNv; - var _Operand0Alpha = OpenTK.Graphics.OpenGL.All.Operand0Alpha; - var _Operand0AlphaArb = OpenTK.Graphics.OpenGL.All.Operand0AlphaArb; - var _Operand0AlphaExt = OpenTK.Graphics.OpenGL.All.Operand0AlphaExt; - var _Operand1Alpha = OpenTK.Graphics.OpenGL.All.Operand1Alpha; - var _Operand1AlphaArb = OpenTK.Graphics.OpenGL.All.Operand1AlphaArb; - var _Operand1AlphaExt = OpenTK.Graphics.OpenGL.All.Operand1AlphaExt; - var _Operand2Alpha = OpenTK.Graphics.OpenGL.All.Operand2Alpha; - var _Operand2AlphaArb = OpenTK.Graphics.OpenGL.All.Operand2AlphaArb; - var _Operand2AlphaExt = OpenTK.Graphics.OpenGL.All.Operand2AlphaExt; - var _Operand3AlphaNv = OpenTK.Graphics.OpenGL.All.Operand3AlphaNv; - var _PackSubsampleRateSgix = OpenTK.Graphics.OpenGL.All.PackSubsampleRateSgix; - var _UnpackSubsampleRateSgix = OpenTK.Graphics.OpenGL.All.UnpackSubsampleRateSgix; - var _PixelSubsample4444Sgix = OpenTK.Graphics.OpenGL.All.PixelSubsample4444Sgix; - var _PixelSubsample2424Sgix = OpenTK.Graphics.OpenGL.All.PixelSubsample2424Sgix; - var _PixelSubsample4242Sgix = OpenTK.Graphics.OpenGL.All.PixelSubsample4242Sgix; - var _PerturbExt = OpenTK.Graphics.OpenGL.All.PerturbExt; - var _TextureNormalExt = OpenTK.Graphics.OpenGL.All.TextureNormalExt; - var _LightModelSpecularVectorApple = OpenTK.Graphics.OpenGL.All.LightModelSpecularVectorApple; - var _TransformHintApple = OpenTK.Graphics.OpenGL.All.TransformHintApple; - var _UnpackClientStorageApple = OpenTK.Graphics.OpenGL.All.UnpackClientStorageApple; - var _BufferObjectApple = OpenTK.Graphics.OpenGL.All.BufferObjectApple; - var _StorageClientApple = OpenTK.Graphics.OpenGL.All.StorageClientApple; - var _VertexArrayBinding = OpenTK.Graphics.OpenGL.All.VertexArrayBinding; - var _VertexArrayBindingApple = OpenTK.Graphics.OpenGL.All.VertexArrayBindingApple; - var _TextureRangeLengthApple = OpenTK.Graphics.OpenGL.All.TextureRangeLengthApple; - var _TextureRangePointerApple = OpenTK.Graphics.OpenGL.All.TextureRangePointerApple; - var _Ycbcr422Apple = OpenTK.Graphics.OpenGL.All.Ycbcr422Apple; - var _UnsignedShort88Apple = OpenTK.Graphics.OpenGL.All.UnsignedShort88Apple; - var _UnsignedShort88Mesa = OpenTK.Graphics.OpenGL.All.UnsignedShort88Mesa; - var _UnsignedShort88RevApple = OpenTK.Graphics.OpenGL.All.UnsignedShort88RevApple; - var _UnsignedShort88RevMesa = OpenTK.Graphics.OpenGL.All.UnsignedShort88RevMesa; - var _TextureStorageHintApple = OpenTK.Graphics.OpenGL.All.TextureStorageHintApple; - var _StoragePrivateApple = OpenTK.Graphics.OpenGL.All.StoragePrivateApple; - var _StorageCachedApple = OpenTK.Graphics.OpenGL.All.StorageCachedApple; - var _StorageSharedApple = OpenTK.Graphics.OpenGL.All.StorageSharedApple; - var _ReplacementCodeArraySun = OpenTK.Graphics.OpenGL.All.ReplacementCodeArraySun; - var _ReplacementCodeArrayTypeSun = OpenTK.Graphics.OpenGL.All.ReplacementCodeArrayTypeSun; - var _ReplacementCodeArrayStrideSun = OpenTK.Graphics.OpenGL.All.ReplacementCodeArrayStrideSun; - var _ReplacementCodeArrayPointerSun = OpenTK.Graphics.OpenGL.All.ReplacementCodeArrayPointerSun; - var _R1uiV3fSun = OpenTK.Graphics.OpenGL.All.R1uiV3fSun; - var _R1uiC4ubV3fSun = OpenTK.Graphics.OpenGL.All.R1uiC4ubV3fSun; - var _R1uiC3fV3fSun = OpenTK.Graphics.OpenGL.All.R1uiC3fV3fSun; - var _R1uiN3fV3fSun = OpenTK.Graphics.OpenGL.All.R1uiN3fV3fSun; - var _R1uiC4fN3fV3fSun = OpenTK.Graphics.OpenGL.All.R1uiC4fN3fV3fSun; - var _R1uiT2fV3fSun = OpenTK.Graphics.OpenGL.All.R1uiT2fV3fSun; - var _R1uiT2fN3fV3fSun = OpenTK.Graphics.OpenGL.All.R1uiT2fN3fV3fSun; - var _R1uiT2fC4fN3fV3fSun = OpenTK.Graphics.OpenGL.All.R1uiT2fC4fN3fV3fSun; - var _SliceAccumSun = OpenTK.Graphics.OpenGL.All.SliceAccumSun; - var _QuadMeshSun = OpenTK.Graphics.OpenGL.All.QuadMeshSun; - var _TriangleMeshSun = OpenTK.Graphics.OpenGL.All.TriangleMeshSun; - var _VertexProgram = OpenTK.Graphics.OpenGL.All.VertexProgram; - var _VertexProgramArb = OpenTK.Graphics.OpenGL.All.VertexProgramArb; - var _VertexProgramNv = OpenTK.Graphics.OpenGL.All.VertexProgramNv; - var _VertexStateProgramNv = OpenTK.Graphics.OpenGL.All.VertexStateProgramNv; - var _ArrayEnabled = OpenTK.Graphics.OpenGL.All.ArrayEnabled; - var _VertexAttribArrayEnabled = OpenTK.Graphics.OpenGL.All.VertexAttribArrayEnabled; - var _VertexAttribArrayEnabledArb = OpenTK.Graphics.OpenGL.All.VertexAttribArrayEnabledArb; - var _AttribArraySizeNv = OpenTK.Graphics.OpenGL.All.AttribArraySizeNv; - var _VertexAttribArraySize = OpenTK.Graphics.OpenGL.All.VertexAttribArraySize; - var _VertexAttribArraySizeArb = OpenTK.Graphics.OpenGL.All.VertexAttribArraySizeArb; - var _AttribArrayStrideNv = OpenTK.Graphics.OpenGL.All.AttribArrayStrideNv; - var _VertexAttribArrayStride = OpenTK.Graphics.OpenGL.All.VertexAttribArrayStride; - var _VertexAttribArrayStrideArb = OpenTK.Graphics.OpenGL.All.VertexAttribArrayStrideArb; - var _ArrayType = OpenTK.Graphics.OpenGL.All.ArrayType; - var _AttribArrayTypeNv = OpenTK.Graphics.OpenGL.All.AttribArrayTypeNv; - var _VertexAttribArrayType = OpenTK.Graphics.OpenGL.All.VertexAttribArrayType; - var _VertexAttribArrayTypeArb = OpenTK.Graphics.OpenGL.All.VertexAttribArrayTypeArb; - var _CurrentAttribNv = OpenTK.Graphics.OpenGL.All.CurrentAttribNv; - var _CurrentVertexAttrib = OpenTK.Graphics.OpenGL.All.CurrentVertexAttrib; - var _CurrentVertexAttribArb = OpenTK.Graphics.OpenGL.All.CurrentVertexAttribArb; - var _ProgramLength = OpenTK.Graphics.OpenGL.All.ProgramLength; - var _ProgramLengthArb = OpenTK.Graphics.OpenGL.All.ProgramLengthArb; - var _ProgramLengthNv = OpenTK.Graphics.OpenGL.All.ProgramLengthNv; - var _ProgramString = OpenTK.Graphics.OpenGL.All.ProgramString; - var _ProgramStringArb = OpenTK.Graphics.OpenGL.All.ProgramStringArb; - var _ProgramStringNv = OpenTK.Graphics.OpenGL.All.ProgramStringNv; - var _ModelviewProjectionNv = OpenTK.Graphics.OpenGL.All.ModelviewProjectionNv; - var _IdentityNv = OpenTK.Graphics.OpenGL.All.IdentityNv; - var _InverseNv = OpenTK.Graphics.OpenGL.All.InverseNv; - var _TransposeNv = OpenTK.Graphics.OpenGL.All.TransposeNv; - var _InverseTransposeNv = OpenTK.Graphics.OpenGL.All.InverseTransposeNv; - var _MaxProgramMatrixStackDepthArb = OpenTK.Graphics.OpenGL.All.MaxProgramMatrixStackDepthArb; - var _MaxTrackMatrixStackDepthNv = OpenTK.Graphics.OpenGL.All.MaxTrackMatrixStackDepthNv; - var _MaxProgramMatricesArb = OpenTK.Graphics.OpenGL.All.MaxProgramMatricesArb; - var _MaxTrackMatricesNv = OpenTK.Graphics.OpenGL.All.MaxTrackMatricesNv; - var _Matrix0Nv = OpenTK.Graphics.OpenGL.All.Matrix0Nv; - var _Matrix1Nv = OpenTK.Graphics.OpenGL.All.Matrix1Nv; - var _Matrix2Nv = OpenTK.Graphics.OpenGL.All.Matrix2Nv; - var _Matrix3Nv = OpenTK.Graphics.OpenGL.All.Matrix3Nv; - var _Matrix4Nv = OpenTK.Graphics.OpenGL.All.Matrix4Nv; - var _Matrix5Nv = OpenTK.Graphics.OpenGL.All.Matrix5Nv; - var _Matrix6Nv = OpenTK.Graphics.OpenGL.All.Matrix6Nv; - var _Matrix7Nv = OpenTK.Graphics.OpenGL.All.Matrix7Nv; - var _CurrentMatrixStackDepthArb = OpenTK.Graphics.OpenGL.All.CurrentMatrixStackDepthArb; - var _CurrentMatrixStackDepthNv = OpenTK.Graphics.OpenGL.All.CurrentMatrixStackDepthNv; - var _CurrentMatrixArb = OpenTK.Graphics.OpenGL.All.CurrentMatrixArb; - var _CurrentMatrixNv = OpenTK.Graphics.OpenGL.All.CurrentMatrixNv; - var _ProgramPointSize = OpenTK.Graphics.OpenGL.All.ProgramPointSize; - var _ProgramPointSizeArb = OpenTK.Graphics.OpenGL.All.ProgramPointSizeArb; - var _ProgramPointSizeExt = OpenTK.Graphics.OpenGL.All.ProgramPointSizeExt; - var _VertexProgramPointSize = OpenTK.Graphics.OpenGL.All.VertexProgramPointSize; - var _VertexProgramPointSizeArb = OpenTK.Graphics.OpenGL.All.VertexProgramPointSizeArb; - var _VertexProgramPointSizeNv = OpenTK.Graphics.OpenGL.All.VertexProgramPointSizeNv; - var _VertexProgramTwoSide = OpenTK.Graphics.OpenGL.All.VertexProgramTwoSide; - var _VertexProgramTwoSideArb = OpenTK.Graphics.OpenGL.All.VertexProgramTwoSideArb; - var _VertexProgramTwoSideNv = OpenTK.Graphics.OpenGL.All.VertexProgramTwoSideNv; - var _ProgramParameterNv = OpenTK.Graphics.OpenGL.All.ProgramParameterNv; - var _ArrayPointer = OpenTK.Graphics.OpenGL.All.ArrayPointer; - var _AttribArrayPointerNv = OpenTK.Graphics.OpenGL.All.AttribArrayPointerNv; - var _VertexAttribArrayPointer = OpenTK.Graphics.OpenGL.All.VertexAttribArrayPointer; - var _VertexAttribArrayPointerArb = OpenTK.Graphics.OpenGL.All.VertexAttribArrayPointerArb; - var _ProgramTargetNv = OpenTK.Graphics.OpenGL.All.ProgramTargetNv; - var _ProgramResidentNv = OpenTK.Graphics.OpenGL.All.ProgramResidentNv; - var _TrackMatrixNv = OpenTK.Graphics.OpenGL.All.TrackMatrixNv; - var _TrackMatrixTransformNv = OpenTK.Graphics.OpenGL.All.TrackMatrixTransformNv; - var _VertexProgramBindingNv = OpenTK.Graphics.OpenGL.All.VertexProgramBindingNv; - var _ProgramErrorPositionArb = OpenTK.Graphics.OpenGL.All.ProgramErrorPositionArb; - var _ProgramErrorPositionNv = OpenTK.Graphics.OpenGL.All.ProgramErrorPositionNv; - var _OffsetTextureRectangleNv = OpenTK.Graphics.OpenGL.All.OffsetTextureRectangleNv; - var _OffsetTextureRectangleScaleNv = OpenTK.Graphics.OpenGL.All.OffsetTextureRectangleScaleNv; - var _DotProductTextureRectangleNv = OpenTK.Graphics.OpenGL.All.DotProductTextureRectangleNv; - var _DepthClamp = OpenTK.Graphics.OpenGL.All.DepthClamp; - var _DepthClampNv = OpenTK.Graphics.OpenGL.All.DepthClampNv; - var _VertexAttribArray0Nv = OpenTK.Graphics.OpenGL.All.VertexAttribArray0Nv; - var _VertexAttribArray1Nv = OpenTK.Graphics.OpenGL.All.VertexAttribArray1Nv; - var _VertexAttribArray2Nv = OpenTK.Graphics.OpenGL.All.VertexAttribArray2Nv; - var _VertexAttribArray3Nv = OpenTK.Graphics.OpenGL.All.VertexAttribArray3Nv; - var _VertexAttribArray4Nv = OpenTK.Graphics.OpenGL.All.VertexAttribArray4Nv; - var _VertexAttribArray5Nv = OpenTK.Graphics.OpenGL.All.VertexAttribArray5Nv; - var _VertexAttribArray6Nv = OpenTK.Graphics.OpenGL.All.VertexAttribArray6Nv; - var _VertexAttribArray7Nv = OpenTK.Graphics.OpenGL.All.VertexAttribArray7Nv; - var _VertexAttribArray8Nv = OpenTK.Graphics.OpenGL.All.VertexAttribArray8Nv; - var _VertexAttribArray9Nv = OpenTK.Graphics.OpenGL.All.VertexAttribArray9Nv; - var _VertexAttribArray10Nv = OpenTK.Graphics.OpenGL.All.VertexAttribArray10Nv; - var _VertexAttribArray11Nv = OpenTK.Graphics.OpenGL.All.VertexAttribArray11Nv; - var _VertexAttribArray12Nv = OpenTK.Graphics.OpenGL.All.VertexAttribArray12Nv; - var _VertexAttribArray13Nv = OpenTK.Graphics.OpenGL.All.VertexAttribArray13Nv; - var _VertexAttribArray14Nv = OpenTK.Graphics.OpenGL.All.VertexAttribArray14Nv; - var _VertexAttribArray15Nv = OpenTK.Graphics.OpenGL.All.VertexAttribArray15Nv; - var _Map1VertexAttrib04Nv = OpenTK.Graphics.OpenGL.All.Map1VertexAttrib04Nv; - var _Map1VertexAttrib14Nv = OpenTK.Graphics.OpenGL.All.Map1VertexAttrib14Nv; - var _Map1VertexAttrib24Nv = OpenTK.Graphics.OpenGL.All.Map1VertexAttrib24Nv; - var _Map1VertexAttrib34Nv = OpenTK.Graphics.OpenGL.All.Map1VertexAttrib34Nv; - var _Map1VertexAttrib44Nv = OpenTK.Graphics.OpenGL.All.Map1VertexAttrib44Nv; - var _Map1VertexAttrib54Nv = OpenTK.Graphics.OpenGL.All.Map1VertexAttrib54Nv; - var _Map1VertexAttrib64Nv = OpenTK.Graphics.OpenGL.All.Map1VertexAttrib64Nv; - var _Map1VertexAttrib74Nv = OpenTK.Graphics.OpenGL.All.Map1VertexAttrib74Nv; - var _Map1VertexAttrib84Nv = OpenTK.Graphics.OpenGL.All.Map1VertexAttrib84Nv; - var _Map1VertexAttrib94Nv = OpenTK.Graphics.OpenGL.All.Map1VertexAttrib94Nv; - var _Map1VertexAttrib104Nv = OpenTK.Graphics.OpenGL.All.Map1VertexAttrib104Nv; - var _Map1VertexAttrib114Nv = OpenTK.Graphics.OpenGL.All.Map1VertexAttrib114Nv; - var _Map1VertexAttrib124Nv = OpenTK.Graphics.OpenGL.All.Map1VertexAttrib124Nv; - var _Map1VertexAttrib134Nv = OpenTK.Graphics.OpenGL.All.Map1VertexAttrib134Nv; - var _Map1VertexAttrib144Nv = OpenTK.Graphics.OpenGL.All.Map1VertexAttrib144Nv; - var _Map1VertexAttrib154Nv = OpenTK.Graphics.OpenGL.All.Map1VertexAttrib154Nv; - var _Map2VertexAttrib04Nv = OpenTK.Graphics.OpenGL.All.Map2VertexAttrib04Nv; - var _Map2VertexAttrib14Nv = OpenTK.Graphics.OpenGL.All.Map2VertexAttrib14Nv; - var _Map2VertexAttrib24Nv = OpenTK.Graphics.OpenGL.All.Map2VertexAttrib24Nv; - var _Map2VertexAttrib34Nv = OpenTK.Graphics.OpenGL.All.Map2VertexAttrib34Nv; - var _Map2VertexAttrib44Nv = OpenTK.Graphics.OpenGL.All.Map2VertexAttrib44Nv; - var _Map2VertexAttrib54Nv = OpenTK.Graphics.OpenGL.All.Map2VertexAttrib54Nv; - var _Map2VertexAttrib64Nv = OpenTK.Graphics.OpenGL.All.Map2VertexAttrib64Nv; - var _Map2VertexAttrib74Nv = OpenTK.Graphics.OpenGL.All.Map2VertexAttrib74Nv; - var _ProgramBinding = OpenTK.Graphics.OpenGL.All.ProgramBinding; - var _ProgramBindingArb = OpenTK.Graphics.OpenGL.All.ProgramBindingArb; - var _Map2VertexAttrib84Nv = OpenTK.Graphics.OpenGL.All.Map2VertexAttrib84Nv; - var _Map2VertexAttrib94Nv = OpenTK.Graphics.OpenGL.All.Map2VertexAttrib94Nv; - var _Map2VertexAttrib104Nv = OpenTK.Graphics.OpenGL.All.Map2VertexAttrib104Nv; - var _Map2VertexAttrib114Nv = OpenTK.Graphics.OpenGL.All.Map2VertexAttrib114Nv; - var _Map2VertexAttrib124Nv = OpenTK.Graphics.OpenGL.All.Map2VertexAttrib124Nv; - var _Map2VertexAttrib134Nv = OpenTK.Graphics.OpenGL.All.Map2VertexAttrib134Nv; - var _Map2VertexAttrib144Nv = OpenTK.Graphics.OpenGL.All.Map2VertexAttrib144Nv; - var _Map2VertexAttrib154Nv = OpenTK.Graphics.OpenGL.All.Map2VertexAttrib154Nv; - var _TextureCompressedImageSize = OpenTK.Graphics.OpenGL.All.TextureCompressedImageSize; - var _TextureCompressedImageSizeArb = OpenTK.Graphics.OpenGL.All.TextureCompressedImageSizeArb; - var _TextureCompressed = OpenTK.Graphics.OpenGL.All.TextureCompressed; - var _TextureCompressedArb = OpenTK.Graphics.OpenGL.All.TextureCompressedArb; - var _NumCompressedTextureFormats = OpenTK.Graphics.OpenGL.All.NumCompressedTextureFormats; - var _NumCompressedTextureFormatsArb = OpenTK.Graphics.OpenGL.All.NumCompressedTextureFormatsArb; - var _CompressedTextureFormats = OpenTK.Graphics.OpenGL.All.CompressedTextureFormats; - var _CompressedTextureFormatsArb = OpenTK.Graphics.OpenGL.All.CompressedTextureFormatsArb; - var _MaxVertexUnitsArb = OpenTK.Graphics.OpenGL.All.MaxVertexUnitsArb; - var _ActiveVertexUnitsArb = OpenTK.Graphics.OpenGL.All.ActiveVertexUnitsArb; - var _WeightSumUnityArb = OpenTK.Graphics.OpenGL.All.WeightSumUnityArb; - var _VertexBlendArb = OpenTK.Graphics.OpenGL.All.VertexBlendArb; - var _CurrentWeightArb = OpenTK.Graphics.OpenGL.All.CurrentWeightArb; - var _WeightArrayTypeArb = OpenTK.Graphics.OpenGL.All.WeightArrayTypeArb; - var _WeightArrayStrideArb = OpenTK.Graphics.OpenGL.All.WeightArrayStrideArb; - var _WeightArraySizeArb = OpenTK.Graphics.OpenGL.All.WeightArraySizeArb; - var _WeightArrayPointerArb = OpenTK.Graphics.OpenGL.All.WeightArrayPointerArb; - var _WeightArrayArb = OpenTK.Graphics.OpenGL.All.WeightArrayArb; - var _Dot3Rgb = OpenTK.Graphics.OpenGL.All.Dot3Rgb; - var _Dot3RgbArb = OpenTK.Graphics.OpenGL.All.Dot3RgbArb; - var _Dot3Rgba = OpenTK.Graphics.OpenGL.All.Dot3Rgba; - var _Dot3RgbaArb = OpenTK.Graphics.OpenGL.All.Dot3RgbaArb; - var _CompressedRgbFxt13Dfx = OpenTK.Graphics.OpenGL.All.CompressedRgbFxt13Dfx; - var _CompressedRgbaFxt13Dfx = OpenTK.Graphics.OpenGL.All.CompressedRgbaFxt13Dfx; - var _Multisample3Dfx = OpenTK.Graphics.OpenGL.All.Multisample3Dfx; - var _SampleBuffers3Dfx = OpenTK.Graphics.OpenGL.All.SampleBuffers3Dfx; - var _Samples3Dfx = OpenTK.Graphics.OpenGL.All.Samples3Dfx; - var _Eval2DNv = OpenTK.Graphics.OpenGL.All.Eval2DNv; - var _EvalTriangular2DNv = OpenTK.Graphics.OpenGL.All.EvalTriangular2DNv; - var _MapTessellationNv = OpenTK.Graphics.OpenGL.All.MapTessellationNv; - var _MapAttribUOrderNv = OpenTK.Graphics.OpenGL.All.MapAttribUOrderNv; - var _MapAttribVOrderNv = OpenTK.Graphics.OpenGL.All.MapAttribVOrderNv; - var _EvalFractionalTessellationNv = OpenTK.Graphics.OpenGL.All.EvalFractionalTessellationNv; - var _EvalVertexAttrib0Nv = OpenTK.Graphics.OpenGL.All.EvalVertexAttrib0Nv; - var _EvalVertexAttrib1Nv = OpenTK.Graphics.OpenGL.All.EvalVertexAttrib1Nv; - var _EvalVertexAttrib2Nv = OpenTK.Graphics.OpenGL.All.EvalVertexAttrib2Nv; - var _EvalVertexAttrib3Nv = OpenTK.Graphics.OpenGL.All.EvalVertexAttrib3Nv; - var _EvalVertexAttrib4Nv = OpenTK.Graphics.OpenGL.All.EvalVertexAttrib4Nv; - var _EvalVertexAttrib5Nv = OpenTK.Graphics.OpenGL.All.EvalVertexAttrib5Nv; - var _EvalVertexAttrib6Nv = OpenTK.Graphics.OpenGL.All.EvalVertexAttrib6Nv; - var _EvalVertexAttrib7Nv = OpenTK.Graphics.OpenGL.All.EvalVertexAttrib7Nv; - var _EvalVertexAttrib8Nv = OpenTK.Graphics.OpenGL.All.EvalVertexAttrib8Nv; - var _EvalVertexAttrib9Nv = OpenTK.Graphics.OpenGL.All.EvalVertexAttrib9Nv; - var _EvalVertexAttrib10Nv = OpenTK.Graphics.OpenGL.All.EvalVertexAttrib10Nv; - var _EvalVertexAttrib11Nv = OpenTK.Graphics.OpenGL.All.EvalVertexAttrib11Nv; - var _EvalVertexAttrib12Nv = OpenTK.Graphics.OpenGL.All.EvalVertexAttrib12Nv; - var _EvalVertexAttrib13Nv = OpenTK.Graphics.OpenGL.All.EvalVertexAttrib13Nv; - var _EvalVertexAttrib14Nv = OpenTK.Graphics.OpenGL.All.EvalVertexAttrib14Nv; - var _EvalVertexAttrib15Nv = OpenTK.Graphics.OpenGL.All.EvalVertexAttrib15Nv; - var _MaxMapTessellationNv = OpenTK.Graphics.OpenGL.All.MaxMapTessellationNv; - var _MaxRationalEvalOrderNv = OpenTK.Graphics.OpenGL.All.MaxRationalEvalOrderNv; - var _MaxProgramPatchAttribsNv = OpenTK.Graphics.OpenGL.All.MaxProgramPatchAttribsNv; - var _RgbaUnsignedDotProductMappingNv = OpenTK.Graphics.OpenGL.All.RgbaUnsignedDotProductMappingNv; - var _UnsignedIntS8S888Nv = OpenTK.Graphics.OpenGL.All.UnsignedIntS8S888Nv; - var _UnsignedInt88S8S8RevNv = OpenTK.Graphics.OpenGL.All.UnsignedInt88S8S8RevNv; - var _DsdtMagIntensityNv = OpenTK.Graphics.OpenGL.All.DsdtMagIntensityNv; - var _ShaderConsistentNv = OpenTK.Graphics.OpenGL.All.ShaderConsistentNv; - var _TextureShaderNv = OpenTK.Graphics.OpenGL.All.TextureShaderNv; - var _ShaderOperationNv = OpenTK.Graphics.OpenGL.All.ShaderOperationNv; - var _CullModesNv = OpenTK.Graphics.OpenGL.All.CullModesNv; - var _OffsetTexture2DMatrixNv = OpenTK.Graphics.OpenGL.All.OffsetTexture2DMatrixNv; - var _OffsetTextureMatrixNv = OpenTK.Graphics.OpenGL.All.OffsetTextureMatrixNv; - var _OffsetTexture2DScaleNv = OpenTK.Graphics.OpenGL.All.OffsetTexture2DScaleNv; - var _OffsetTextureScaleNv = OpenTK.Graphics.OpenGL.All.OffsetTextureScaleNv; - var _OffsetTexture2DBiasNv = OpenTK.Graphics.OpenGL.All.OffsetTexture2DBiasNv; - var _OffsetTextureBiasNv = OpenTK.Graphics.OpenGL.All.OffsetTextureBiasNv; - var _PreviousTextureInputNv = OpenTK.Graphics.OpenGL.All.PreviousTextureInputNv; - var _ConstEyeNv = OpenTK.Graphics.OpenGL.All.ConstEyeNv; - var _PassThroughNv = OpenTK.Graphics.OpenGL.All.PassThroughNv; - var _CullFragmentNv = OpenTK.Graphics.OpenGL.All.CullFragmentNv; - var _OffsetTexture2DNv = OpenTK.Graphics.OpenGL.All.OffsetTexture2DNv; - var _DependentArTexture2DNv = OpenTK.Graphics.OpenGL.All.DependentArTexture2DNv; - var _DependentGbTexture2DNv = OpenTK.Graphics.OpenGL.All.DependentGbTexture2DNv; - var _SurfaceStateNv = OpenTK.Graphics.OpenGL.All.SurfaceStateNv; - var _DotProductNv = OpenTK.Graphics.OpenGL.All.DotProductNv; - var _DotProductDepthReplaceNv = OpenTK.Graphics.OpenGL.All.DotProductDepthReplaceNv; - var _DotProductTexture2DNv = OpenTK.Graphics.OpenGL.All.DotProductTexture2DNv; - var _DotProductTexture3DNv = OpenTK.Graphics.OpenGL.All.DotProductTexture3DNv; - var _DotProductTextureCubeMapNv = OpenTK.Graphics.OpenGL.All.DotProductTextureCubeMapNv; - var _DotProductDiffuseCubeMapNv = OpenTK.Graphics.OpenGL.All.DotProductDiffuseCubeMapNv; - var _DotProductReflectCubeMapNv = OpenTK.Graphics.OpenGL.All.DotProductReflectCubeMapNv; - var _DotProductConstEyeReflectCubeMapNv = OpenTK.Graphics.OpenGL.All.DotProductConstEyeReflectCubeMapNv; - var _HiloNv = OpenTK.Graphics.OpenGL.All.HiloNv; - var _DsdtNv = OpenTK.Graphics.OpenGL.All.DsdtNv; - var _DsdtMagNv = OpenTK.Graphics.OpenGL.All.DsdtMagNv; - var _DsdtMagVibNv = OpenTK.Graphics.OpenGL.All.DsdtMagVibNv; - var _Hilo16Nv = OpenTK.Graphics.OpenGL.All.Hilo16Nv; - var _SignedHiloNv = OpenTK.Graphics.OpenGL.All.SignedHiloNv; - var _SignedHilo16Nv = OpenTK.Graphics.OpenGL.All.SignedHilo16Nv; - var _SignedRgbaNv = OpenTK.Graphics.OpenGL.All.SignedRgbaNv; - var _SignedRgba8Nv = OpenTK.Graphics.OpenGL.All.SignedRgba8Nv; - var _SurfaceRegisteredNv = OpenTK.Graphics.OpenGL.All.SurfaceRegisteredNv; - var _SignedRgbNv = OpenTK.Graphics.OpenGL.All.SignedRgbNv; - var _SignedRgb8Nv = OpenTK.Graphics.OpenGL.All.SignedRgb8Nv; - var _SurfaceMappedNv = OpenTK.Graphics.OpenGL.All.SurfaceMappedNv; - var _SignedLuminanceNv = OpenTK.Graphics.OpenGL.All.SignedLuminanceNv; - var _SignedLuminance8Nv = OpenTK.Graphics.OpenGL.All.SignedLuminance8Nv; - var _SignedLuminanceAlphaNv = OpenTK.Graphics.OpenGL.All.SignedLuminanceAlphaNv; - var _SignedLuminance8Alpha8Nv = OpenTK.Graphics.OpenGL.All.SignedLuminance8Alpha8Nv; - var _SignedAlphaNv = OpenTK.Graphics.OpenGL.All.SignedAlphaNv; - var _SignedAlpha8Nv = OpenTK.Graphics.OpenGL.All.SignedAlpha8Nv; - var _SignedIntensityNv = OpenTK.Graphics.OpenGL.All.SignedIntensityNv; - var _SignedIntensity8Nv = OpenTK.Graphics.OpenGL.All.SignedIntensity8Nv; - var _Dsdt8Nv = OpenTK.Graphics.OpenGL.All.Dsdt8Nv; - var _Dsdt8Mag8Nv = OpenTK.Graphics.OpenGL.All.Dsdt8Mag8Nv; - var _Dsdt8Mag8Intensity8Nv = OpenTK.Graphics.OpenGL.All.Dsdt8Mag8Intensity8Nv; - var _SignedRgbUnsignedAlphaNv = OpenTK.Graphics.OpenGL.All.SignedRgbUnsignedAlphaNv; - var _SignedRgb8UnsignedAlpha8Nv = OpenTK.Graphics.OpenGL.All.SignedRgb8UnsignedAlpha8Nv; - var _HiScaleNv = OpenTK.Graphics.OpenGL.All.HiScaleNv; - var _LoScaleNv = OpenTK.Graphics.OpenGL.All.LoScaleNv; - var _DsScaleNv = OpenTK.Graphics.OpenGL.All.DsScaleNv; - var _DtScaleNv = OpenTK.Graphics.OpenGL.All.DtScaleNv; - var _MagnitudeScaleNv = OpenTK.Graphics.OpenGL.All.MagnitudeScaleNv; - var _VibranceScaleNv = OpenTK.Graphics.OpenGL.All.VibranceScaleNv; - var _HiBiasNv = OpenTK.Graphics.OpenGL.All.HiBiasNv; - var _LoBiasNv = OpenTK.Graphics.OpenGL.All.LoBiasNv; - var _DsBiasNv = OpenTK.Graphics.OpenGL.All.DsBiasNv; - var _DtBiasNv = OpenTK.Graphics.OpenGL.All.DtBiasNv; - var _MagnitudeBiasNv = OpenTK.Graphics.OpenGL.All.MagnitudeBiasNv; - var _VibranceBiasNv = OpenTK.Graphics.OpenGL.All.VibranceBiasNv; - var _TextureBorderValuesNv = OpenTK.Graphics.OpenGL.All.TextureBorderValuesNv; - var _TextureHiSizeNv = OpenTK.Graphics.OpenGL.All.TextureHiSizeNv; - var _TextureLoSizeNv = OpenTK.Graphics.OpenGL.All.TextureLoSizeNv; - var _TextureDsSizeNv = OpenTK.Graphics.OpenGL.All.TextureDsSizeNv; - var _TextureDtSizeNv = OpenTK.Graphics.OpenGL.All.TextureDtSizeNv; - var _TextureMagSizeNv = OpenTK.Graphics.OpenGL.All.TextureMagSizeNv; - var _Modelview2Arb = OpenTK.Graphics.OpenGL.All.Modelview2Arb; - var _Modelview3Arb = OpenTK.Graphics.OpenGL.All.Modelview3Arb; - var _Modelview4Arb = OpenTK.Graphics.OpenGL.All.Modelview4Arb; - var _Modelview5Arb = OpenTK.Graphics.OpenGL.All.Modelview5Arb; - var _Modelview6Arb = OpenTK.Graphics.OpenGL.All.Modelview6Arb; - var _Modelview7Arb = OpenTK.Graphics.OpenGL.All.Modelview7Arb; - var _Modelview8Arb = OpenTK.Graphics.OpenGL.All.Modelview8Arb; - var _Modelview9Arb = OpenTK.Graphics.OpenGL.All.Modelview9Arb; - var _Modelview10Arb = OpenTK.Graphics.OpenGL.All.Modelview10Arb; - var _Modelview11Arb = OpenTK.Graphics.OpenGL.All.Modelview11Arb; - var _Modelview12Arb = OpenTK.Graphics.OpenGL.All.Modelview12Arb; - var _Modelview13Arb = OpenTK.Graphics.OpenGL.All.Modelview13Arb; - var _Modelview14Arb = OpenTK.Graphics.OpenGL.All.Modelview14Arb; - var _Modelview15Arb = OpenTK.Graphics.OpenGL.All.Modelview15Arb; - var _Modelview16Arb = OpenTK.Graphics.OpenGL.All.Modelview16Arb; - var _Modelview17Arb = OpenTK.Graphics.OpenGL.All.Modelview17Arb; - var _Modelview18Arb = OpenTK.Graphics.OpenGL.All.Modelview18Arb; - var _Modelview19Arb = OpenTK.Graphics.OpenGL.All.Modelview19Arb; - var _Modelview20Arb = OpenTK.Graphics.OpenGL.All.Modelview20Arb; - var _Modelview21Arb = OpenTK.Graphics.OpenGL.All.Modelview21Arb; - var _Modelview22Arb = OpenTK.Graphics.OpenGL.All.Modelview22Arb; - var _Modelview23Arb = OpenTK.Graphics.OpenGL.All.Modelview23Arb; - var _Modelview24Arb = OpenTK.Graphics.OpenGL.All.Modelview24Arb; - var _Modelview25Arb = OpenTK.Graphics.OpenGL.All.Modelview25Arb; - var _Modelview26Arb = OpenTK.Graphics.OpenGL.All.Modelview26Arb; - var _Modelview27Arb = OpenTK.Graphics.OpenGL.All.Modelview27Arb; - var _Modelview28Arb = OpenTK.Graphics.OpenGL.All.Modelview28Arb; - var _Modelview29Arb = OpenTK.Graphics.OpenGL.All.Modelview29Arb; - var _Modelview30Arb = OpenTK.Graphics.OpenGL.All.Modelview30Arb; - var _Modelview31Arb = OpenTK.Graphics.OpenGL.All.Modelview31Arb; - var _Dot3RgbExt = OpenTK.Graphics.OpenGL.All.Dot3RgbExt; - var _Dot3RgbaExt = OpenTK.Graphics.OpenGL.All.Dot3RgbaExt; - var _ProgramBinaryLength = OpenTK.Graphics.OpenGL.All.ProgramBinaryLength; - var _MirrorClampAti = OpenTK.Graphics.OpenGL.All.MirrorClampAti; - var _MirrorClampExt = OpenTK.Graphics.OpenGL.All.MirrorClampExt; - var _MirrorClampToEdge = OpenTK.Graphics.OpenGL.All.MirrorClampToEdge; - var _MirrorClampToEdgeAti = OpenTK.Graphics.OpenGL.All.MirrorClampToEdgeAti; - var _MirrorClampToEdgeExt = OpenTK.Graphics.OpenGL.All.MirrorClampToEdgeExt; - var _ModulateAddAti = OpenTK.Graphics.OpenGL.All.ModulateAddAti; - var _ModulateSignedAddAti = OpenTK.Graphics.OpenGL.All.ModulateSignedAddAti; - var _ModulateSubtractAti = OpenTK.Graphics.OpenGL.All.ModulateSubtractAti; - var _SetAmd = OpenTK.Graphics.OpenGL.All.SetAmd; - var _ReplaceValueAmd = OpenTK.Graphics.OpenGL.All.ReplaceValueAmd; - var _StencilOpValueAmd = OpenTK.Graphics.OpenGL.All.StencilOpValueAmd; - var _StencilBackOpValueAmd = OpenTK.Graphics.OpenGL.All.StencilBackOpValueAmd; - var _VertexAttribArrayLong = OpenTK.Graphics.OpenGL.All.VertexAttribArrayLong; - var _OcclusionQueryEventMaskAmd = OpenTK.Graphics.OpenGL.All.OcclusionQueryEventMaskAmd; - var _YcbcrMesa = OpenTK.Graphics.OpenGL.All.YcbcrMesa; - var _PackInvertMesa = OpenTK.Graphics.OpenGL.All.PackInvertMesa; - var _Texture1DStackMesax = OpenTK.Graphics.OpenGL.All.Texture1DStackMesax; - var _Texture2DStackMesax = OpenTK.Graphics.OpenGL.All.Texture2DStackMesax; - var _ProxyTexture1DStackMesax = OpenTK.Graphics.OpenGL.All.ProxyTexture1DStackMesax; - var _ProxyTexture2DStackMesax = OpenTK.Graphics.OpenGL.All.ProxyTexture2DStackMesax; - var _Texture1DStackBindingMesax = OpenTK.Graphics.OpenGL.All.Texture1DStackBindingMesax; - var _Texture2DStackBindingMesax = OpenTK.Graphics.OpenGL.All.Texture2DStackBindingMesax; - var _StaticAti = OpenTK.Graphics.OpenGL.All.StaticAti; - var _DynamicAti = OpenTK.Graphics.OpenGL.All.DynamicAti; - var _PreserveAti = OpenTK.Graphics.OpenGL.All.PreserveAti; - var _DiscardAti = OpenTK.Graphics.OpenGL.All.DiscardAti; - var _BufferSize = OpenTK.Graphics.OpenGL.All.BufferSize; - var _BufferSizeArb = OpenTK.Graphics.OpenGL.All.BufferSizeArb; - var _ObjectBufferSizeAti = OpenTK.Graphics.OpenGL.All.ObjectBufferSizeAti; - var _BufferUsage = OpenTK.Graphics.OpenGL.All.BufferUsage; - var _BufferUsageArb = OpenTK.Graphics.OpenGL.All.BufferUsageArb; - var _ObjectBufferUsageAti = OpenTK.Graphics.OpenGL.All.ObjectBufferUsageAti; - var _ArrayObjectBufferAti = OpenTK.Graphics.OpenGL.All.ArrayObjectBufferAti; - var _ArrayObjectOffsetAti = OpenTK.Graphics.OpenGL.All.ArrayObjectOffsetAti; - var _ElementArrayAti = OpenTK.Graphics.OpenGL.All.ElementArrayAti; - var _ElementArrayTypeAti = OpenTK.Graphics.OpenGL.All.ElementArrayTypeAti; - var _ElementArrayPointerAti = OpenTK.Graphics.OpenGL.All.ElementArrayPointerAti; - var _MaxVertexStreamsAti = OpenTK.Graphics.OpenGL.All.MaxVertexStreamsAti; - var _VertexStream0Ati = OpenTK.Graphics.OpenGL.All.VertexStream0Ati; - var _VertexStream1Ati = OpenTK.Graphics.OpenGL.All.VertexStream1Ati; - var _VertexStream2Ati = OpenTK.Graphics.OpenGL.All.VertexStream2Ati; - var _VertexStream3Ati = OpenTK.Graphics.OpenGL.All.VertexStream3Ati; - var _VertexStream4Ati = OpenTK.Graphics.OpenGL.All.VertexStream4Ati; - var _VertexStream5Ati = OpenTK.Graphics.OpenGL.All.VertexStream5Ati; - var _VertexStream6Ati = OpenTK.Graphics.OpenGL.All.VertexStream6Ati; - var _VertexStream7Ati = OpenTK.Graphics.OpenGL.All.VertexStream7Ati; - var _VertexSourceAti = OpenTK.Graphics.OpenGL.All.VertexSourceAti; - var _BumpRotMatrixAti = OpenTK.Graphics.OpenGL.All.BumpRotMatrixAti; - var _BumpRotMatrixSizeAti = OpenTK.Graphics.OpenGL.All.BumpRotMatrixSizeAti; - var _BumpNumTexUnitsAti = OpenTK.Graphics.OpenGL.All.BumpNumTexUnitsAti; - var _BumpTexUnitsAti = OpenTK.Graphics.OpenGL.All.BumpTexUnitsAti; - var _DudvAti = OpenTK.Graphics.OpenGL.All.DudvAti; - var _Du8Dv8Ati = OpenTK.Graphics.OpenGL.All.Du8Dv8Ati; - var _BumpEnvmapAti = OpenTK.Graphics.OpenGL.All.BumpEnvmapAti; - var _BumpTargetAti = OpenTK.Graphics.OpenGL.All.BumpTargetAti; - var _VertexShaderExt = OpenTK.Graphics.OpenGL.All.VertexShaderExt; - var _VertexShaderBindingExt = OpenTK.Graphics.OpenGL.All.VertexShaderBindingExt; - var _OpIndexExt = OpenTK.Graphics.OpenGL.All.OpIndexExt; - var _OpNegateExt = OpenTK.Graphics.OpenGL.All.OpNegateExt; - var _OpDot3Ext = OpenTK.Graphics.OpenGL.All.OpDot3Ext; - var _OpDot4Ext = OpenTK.Graphics.OpenGL.All.OpDot4Ext; - var _OpMulExt = OpenTK.Graphics.OpenGL.All.OpMulExt; - var _OpAddExt = OpenTK.Graphics.OpenGL.All.OpAddExt; - var _OpMaddExt = OpenTK.Graphics.OpenGL.All.OpMaddExt; - var _OpFracExt = OpenTK.Graphics.OpenGL.All.OpFracExt; - var _OpMaxExt = OpenTK.Graphics.OpenGL.All.OpMaxExt; - var _OpMinExt = OpenTK.Graphics.OpenGL.All.OpMinExt; - var _OpSetGeExt = OpenTK.Graphics.OpenGL.All.OpSetGeExt; - var _OpSetLtExt = OpenTK.Graphics.OpenGL.All.OpSetLtExt; - var _OpClampExt = OpenTK.Graphics.OpenGL.All.OpClampExt; - var _OpFloorExt = OpenTK.Graphics.OpenGL.All.OpFloorExt; - var _OpRoundExt = OpenTK.Graphics.OpenGL.All.OpRoundExt; - var _OpExpBase2Ext = OpenTK.Graphics.OpenGL.All.OpExpBase2Ext; - var _OpLogBase2Ext = OpenTK.Graphics.OpenGL.All.OpLogBase2Ext; - var _OpPowerExt = OpenTK.Graphics.OpenGL.All.OpPowerExt; - var _OpRecipExt = OpenTK.Graphics.OpenGL.All.OpRecipExt; - var _OpRecipSqrtExt = OpenTK.Graphics.OpenGL.All.OpRecipSqrtExt; - var _OpSubExt = OpenTK.Graphics.OpenGL.All.OpSubExt; - var _OpCrossProductExt = OpenTK.Graphics.OpenGL.All.OpCrossProductExt; - var _OpMultiplyMatrixExt = OpenTK.Graphics.OpenGL.All.OpMultiplyMatrixExt; - var _OpMovExt = OpenTK.Graphics.OpenGL.All.OpMovExt; - var _OutputVertexExt = OpenTK.Graphics.OpenGL.All.OutputVertexExt; - var _OutputColor0Ext = OpenTK.Graphics.OpenGL.All.OutputColor0Ext; - var _OutputColor1Ext = OpenTK.Graphics.OpenGL.All.OutputColor1Ext; - var _OutputTextureCoord0Ext = OpenTK.Graphics.OpenGL.All.OutputTextureCoord0Ext; - var _OutputTextureCoord1Ext = OpenTK.Graphics.OpenGL.All.OutputTextureCoord1Ext; - var _OutputTextureCoord2Ext = OpenTK.Graphics.OpenGL.All.OutputTextureCoord2Ext; - var _OutputTextureCoord3Ext = OpenTK.Graphics.OpenGL.All.OutputTextureCoord3Ext; - var _OutputTextureCoord4Ext = OpenTK.Graphics.OpenGL.All.OutputTextureCoord4Ext; - var _OutputTextureCoord5Ext = OpenTK.Graphics.OpenGL.All.OutputTextureCoord5Ext; - var _OutputTextureCoord6Ext = OpenTK.Graphics.OpenGL.All.OutputTextureCoord6Ext; - var _OutputTextureCoord7Ext = OpenTK.Graphics.OpenGL.All.OutputTextureCoord7Ext; - var _OutputTextureCoord8Ext = OpenTK.Graphics.OpenGL.All.OutputTextureCoord8Ext; - var _OutputTextureCoord9Ext = OpenTK.Graphics.OpenGL.All.OutputTextureCoord9Ext; - var _OutputTextureCoord10Ext = OpenTK.Graphics.OpenGL.All.OutputTextureCoord10Ext; - var _OutputTextureCoord11Ext = OpenTK.Graphics.OpenGL.All.OutputTextureCoord11Ext; - var _OutputTextureCoord12Ext = OpenTK.Graphics.OpenGL.All.OutputTextureCoord12Ext; - var _OutputTextureCoord13Ext = OpenTK.Graphics.OpenGL.All.OutputTextureCoord13Ext; - var _OutputTextureCoord14Ext = OpenTK.Graphics.OpenGL.All.OutputTextureCoord14Ext; - var _OutputTextureCoord15Ext = OpenTK.Graphics.OpenGL.All.OutputTextureCoord15Ext; - var _OutputTextureCoord16Ext = OpenTK.Graphics.OpenGL.All.OutputTextureCoord16Ext; - var _OutputTextureCoord17Ext = OpenTK.Graphics.OpenGL.All.OutputTextureCoord17Ext; - var _OutputTextureCoord18Ext = OpenTK.Graphics.OpenGL.All.OutputTextureCoord18Ext; - var _OutputTextureCoord19Ext = OpenTK.Graphics.OpenGL.All.OutputTextureCoord19Ext; - var _OutputTextureCoord20Ext = OpenTK.Graphics.OpenGL.All.OutputTextureCoord20Ext; - var _OutputTextureCoord21Ext = OpenTK.Graphics.OpenGL.All.OutputTextureCoord21Ext; - var _OutputTextureCoord22Ext = OpenTK.Graphics.OpenGL.All.OutputTextureCoord22Ext; - var _OutputTextureCoord23Ext = OpenTK.Graphics.OpenGL.All.OutputTextureCoord23Ext; - var _OutputTextureCoord24Ext = OpenTK.Graphics.OpenGL.All.OutputTextureCoord24Ext; - var _OutputTextureCoord25Ext = OpenTK.Graphics.OpenGL.All.OutputTextureCoord25Ext; - var _OutputTextureCoord26Ext = OpenTK.Graphics.OpenGL.All.OutputTextureCoord26Ext; - var _OutputTextureCoord27Ext = OpenTK.Graphics.OpenGL.All.OutputTextureCoord27Ext; - var _OutputTextureCoord28Ext = OpenTK.Graphics.OpenGL.All.OutputTextureCoord28Ext; - var _OutputTextureCoord29Ext = OpenTK.Graphics.OpenGL.All.OutputTextureCoord29Ext; - var _OutputTextureCoord30Ext = OpenTK.Graphics.OpenGL.All.OutputTextureCoord30Ext; - var _OutputTextureCoord31Ext = OpenTK.Graphics.OpenGL.All.OutputTextureCoord31Ext; - var _OutputFogExt = OpenTK.Graphics.OpenGL.All.OutputFogExt; - var _ScalarExt = OpenTK.Graphics.OpenGL.All.ScalarExt; - var _VectorExt = OpenTK.Graphics.OpenGL.All.VectorExt; - var _MatrixExt = OpenTK.Graphics.OpenGL.All.MatrixExt; - var _VariantExt = OpenTK.Graphics.OpenGL.All.VariantExt; - var _InvariantExt = OpenTK.Graphics.OpenGL.All.InvariantExt; - var _LocalConstantExt = OpenTK.Graphics.OpenGL.All.LocalConstantExt; - var _LocalExt = OpenTK.Graphics.OpenGL.All.LocalExt; - var _MaxVertexShaderInstructionsExt = OpenTK.Graphics.OpenGL.All.MaxVertexShaderInstructionsExt; - var _MaxVertexShaderVariantsExt = OpenTK.Graphics.OpenGL.All.MaxVertexShaderVariantsExt; - var _MaxVertexShaderInvariantsExt = OpenTK.Graphics.OpenGL.All.MaxVertexShaderInvariantsExt; - var _MaxVertexShaderLocalConstantsExt = OpenTK.Graphics.OpenGL.All.MaxVertexShaderLocalConstantsExt; - var _MaxVertexShaderLocalsExt = OpenTK.Graphics.OpenGL.All.MaxVertexShaderLocalsExt; - var _MaxOptimizedVertexShaderInstructionsExt = OpenTK.Graphics.OpenGL.All.MaxOptimizedVertexShaderInstructionsExt; - var _MaxOptimizedVertexShaderVariantsExt = OpenTK.Graphics.OpenGL.All.MaxOptimizedVertexShaderVariantsExt; - var _MaxOptimizedVertexShaderLocalConstantsExt = OpenTK.Graphics.OpenGL.All.MaxOptimizedVertexShaderLocalConstantsExt; - var _MaxOptimizedVertexShaderInvariantsExt = OpenTK.Graphics.OpenGL.All.MaxOptimizedVertexShaderInvariantsExt; - var _MaxOptimizedVertexShaderLocalsExt = OpenTK.Graphics.OpenGL.All.MaxOptimizedVertexShaderLocalsExt; - var _VertexShaderInstructionsExt = OpenTK.Graphics.OpenGL.All.VertexShaderInstructionsExt; - var _VertexShaderVariantsExt = OpenTK.Graphics.OpenGL.All.VertexShaderVariantsExt; - var _VertexShaderInvariantsExt = OpenTK.Graphics.OpenGL.All.VertexShaderInvariantsExt; - var _VertexShaderLocalConstantsExt = OpenTK.Graphics.OpenGL.All.VertexShaderLocalConstantsExt; - var _VertexShaderLocalsExt = OpenTK.Graphics.OpenGL.All.VertexShaderLocalsExt; - var _VertexShaderOptimizedExt = OpenTK.Graphics.OpenGL.All.VertexShaderOptimizedExt; - var _XExt = OpenTK.Graphics.OpenGL.All.XExt; - var _YExt = OpenTK.Graphics.OpenGL.All.YExt; - var _ZExt = OpenTK.Graphics.OpenGL.All.ZExt; - var _WExt = OpenTK.Graphics.OpenGL.All.WExt; - var _NegativeXExt = OpenTK.Graphics.OpenGL.All.NegativeXExt; - var _NegativeYExt = OpenTK.Graphics.OpenGL.All.NegativeYExt; - var _NegativeZExt = OpenTK.Graphics.OpenGL.All.NegativeZExt; - var _NegativeWExt = OpenTK.Graphics.OpenGL.All.NegativeWExt; - var _ZeroExt = OpenTK.Graphics.OpenGL.All.ZeroExt; - var _OneExt = OpenTK.Graphics.OpenGL.All.OneExt; - var _NegativeOneExt = OpenTK.Graphics.OpenGL.All.NegativeOneExt; - var _NormalizedRangeExt = OpenTK.Graphics.OpenGL.All.NormalizedRangeExt; - var _FullRangeExt = OpenTK.Graphics.OpenGL.All.FullRangeExt; - var _CurrentVertexExt = OpenTK.Graphics.OpenGL.All.CurrentVertexExt; - var _MvpMatrixExt = OpenTK.Graphics.OpenGL.All.MvpMatrixExt; - var _VariantValueExt = OpenTK.Graphics.OpenGL.All.VariantValueExt; - var _VariantDatatypeExt = OpenTK.Graphics.OpenGL.All.VariantDatatypeExt; - var _VariantArrayStrideExt = OpenTK.Graphics.OpenGL.All.VariantArrayStrideExt; - var _VariantArrayTypeExt = OpenTK.Graphics.OpenGL.All.VariantArrayTypeExt; - var _VariantArrayExt = OpenTK.Graphics.OpenGL.All.VariantArrayExt; - var _VariantArrayPointerExt = OpenTK.Graphics.OpenGL.All.VariantArrayPointerExt; - var _InvariantValueExt = OpenTK.Graphics.OpenGL.All.InvariantValueExt; - var _InvariantDatatypeExt = OpenTK.Graphics.OpenGL.All.InvariantDatatypeExt; - var _LocalConstantValueExt = OpenTK.Graphics.OpenGL.All.LocalConstantValueExt; - var _LocalConstantDatatypeExt = OpenTK.Graphics.OpenGL.All.LocalConstantDatatypeExt; - var _PnTrianglesAti = OpenTK.Graphics.OpenGL.All.PnTrianglesAti; - var _MaxPnTrianglesTesselationLevelAti = OpenTK.Graphics.OpenGL.All.MaxPnTrianglesTesselationLevelAti; - var _PnTrianglesPointModeAti = OpenTK.Graphics.OpenGL.All.PnTrianglesPointModeAti; - var _PnTrianglesNormalModeAti = OpenTK.Graphics.OpenGL.All.PnTrianglesNormalModeAti; - var _PnTrianglesTesselationLevelAti = OpenTK.Graphics.OpenGL.All.PnTrianglesTesselationLevelAti; - var _PnTrianglesPointModeLinearAti = OpenTK.Graphics.OpenGL.All.PnTrianglesPointModeLinearAti; - var _PnTrianglesPointModeCubicAti = OpenTK.Graphics.OpenGL.All.PnTrianglesPointModeCubicAti; - var _PnTrianglesNormalModeLinearAti = OpenTK.Graphics.OpenGL.All.PnTrianglesNormalModeLinearAti; - var _PnTrianglesNormalModeQuadraticAti = OpenTK.Graphics.OpenGL.All.PnTrianglesNormalModeQuadraticAti; - var _VboFreeMemoryAti = OpenTK.Graphics.OpenGL.All.VboFreeMemoryAti; - var _TextureFreeMemoryAti = OpenTK.Graphics.OpenGL.All.TextureFreeMemoryAti; - var _RenderbufferFreeMemoryAti = OpenTK.Graphics.OpenGL.All.RenderbufferFreeMemoryAti; - var _NumProgramBinaryFormats = OpenTK.Graphics.OpenGL.All.NumProgramBinaryFormats; - var _ProgramBinaryFormats = OpenTK.Graphics.OpenGL.All.ProgramBinaryFormats; - var _StencilBackFunc = OpenTK.Graphics.OpenGL.All.StencilBackFunc; - var _StencilBackFuncAti = OpenTK.Graphics.OpenGL.All.StencilBackFuncAti; - var _StencilBackFail = OpenTK.Graphics.OpenGL.All.StencilBackFail; - var _StencilBackFailAti = OpenTK.Graphics.OpenGL.All.StencilBackFailAti; - var _StencilBackPassDepthFail = OpenTK.Graphics.OpenGL.All.StencilBackPassDepthFail; - var _StencilBackPassDepthFailAti = OpenTK.Graphics.OpenGL.All.StencilBackPassDepthFailAti; - var _StencilBackPassDepthPass = OpenTK.Graphics.OpenGL.All.StencilBackPassDepthPass; - var _StencilBackPassDepthPassAti = OpenTK.Graphics.OpenGL.All.StencilBackPassDepthPassAti; - var _FragmentProgram = OpenTK.Graphics.OpenGL.All.FragmentProgram; - var _FragmentProgramArb = OpenTK.Graphics.OpenGL.All.FragmentProgramArb; - var _ProgramAluInstructionsArb = OpenTK.Graphics.OpenGL.All.ProgramAluInstructionsArb; - var _ProgramTexInstructionsArb = OpenTK.Graphics.OpenGL.All.ProgramTexInstructionsArb; - var _ProgramTexIndirectionsArb = OpenTK.Graphics.OpenGL.All.ProgramTexIndirectionsArb; - var _ProgramNativeAluInstructionsArb = OpenTK.Graphics.OpenGL.All.ProgramNativeAluInstructionsArb; - var _ProgramNativeTexInstructionsArb = OpenTK.Graphics.OpenGL.All.ProgramNativeTexInstructionsArb; - var _ProgramNativeTexIndirectionsArb = OpenTK.Graphics.OpenGL.All.ProgramNativeTexIndirectionsArb; - var _MaxProgramAluInstructionsArb = OpenTK.Graphics.OpenGL.All.MaxProgramAluInstructionsArb; - var _MaxProgramTexInstructionsArb = OpenTK.Graphics.OpenGL.All.MaxProgramTexInstructionsArb; - var _MaxProgramTexIndirectionsArb = OpenTK.Graphics.OpenGL.All.MaxProgramTexIndirectionsArb; - var _MaxProgramNativeAluInstructionsArb = OpenTK.Graphics.OpenGL.All.MaxProgramNativeAluInstructionsArb; - var _MaxProgramNativeTexInstructionsArb = OpenTK.Graphics.OpenGL.All.MaxProgramNativeTexInstructionsArb; - var _MaxProgramNativeTexIndirectionsArb = OpenTK.Graphics.OpenGL.All.MaxProgramNativeTexIndirectionsArb; - var _Rgba32f = OpenTK.Graphics.OpenGL.All.Rgba32f; - var _Rgba32fArb = OpenTK.Graphics.OpenGL.All.Rgba32fArb; - var _RgbaFloat32Apple = OpenTK.Graphics.OpenGL.All.RgbaFloat32Apple; - var _RgbaFloat32Ati = OpenTK.Graphics.OpenGL.All.RgbaFloat32Ati; - var _Rgb32f = OpenTK.Graphics.OpenGL.All.Rgb32f; - var _Rgb32fArb = OpenTK.Graphics.OpenGL.All.Rgb32fArb; - var _RgbFloat32Apple = OpenTK.Graphics.OpenGL.All.RgbFloat32Apple; - var _RgbFloat32Ati = OpenTK.Graphics.OpenGL.All.RgbFloat32Ati; - var _Alpha32fArb = OpenTK.Graphics.OpenGL.All.Alpha32fArb; - var _AlphaFloat32Apple = OpenTK.Graphics.OpenGL.All.AlphaFloat32Apple; - var _AlphaFloat32Ati = OpenTK.Graphics.OpenGL.All.AlphaFloat32Ati; - var _Intensity32fArb = OpenTK.Graphics.OpenGL.All.Intensity32fArb; - var _IntensityFloat32Apple = OpenTK.Graphics.OpenGL.All.IntensityFloat32Apple; - var _IntensityFloat32Ati = OpenTK.Graphics.OpenGL.All.IntensityFloat32Ati; - var _Luminance32fArb = OpenTK.Graphics.OpenGL.All.Luminance32fArb; - var _LuminanceFloat32Apple = OpenTK.Graphics.OpenGL.All.LuminanceFloat32Apple; - var _LuminanceFloat32Ati = OpenTK.Graphics.OpenGL.All.LuminanceFloat32Ati; - var _LuminanceAlpha32fArb = OpenTK.Graphics.OpenGL.All.LuminanceAlpha32fArb; - var _LuminanceAlphaFloat32Apple = OpenTK.Graphics.OpenGL.All.LuminanceAlphaFloat32Apple; - var _LuminanceAlphaFloat32Ati = OpenTK.Graphics.OpenGL.All.LuminanceAlphaFloat32Ati; - var _Rgba16f = OpenTK.Graphics.OpenGL.All.Rgba16f; - var _Rgba16fArb = OpenTK.Graphics.OpenGL.All.Rgba16fArb; - var _RgbaFloat16Apple = OpenTK.Graphics.OpenGL.All.RgbaFloat16Apple; - var _RgbaFloat16Ati = OpenTK.Graphics.OpenGL.All.RgbaFloat16Ati; - var _Rgb16f = OpenTK.Graphics.OpenGL.All.Rgb16f; - var _Rgb16fArb = OpenTK.Graphics.OpenGL.All.Rgb16fArb; - var _RgbFloat16Apple = OpenTK.Graphics.OpenGL.All.RgbFloat16Apple; - var _RgbFloat16Ati = OpenTK.Graphics.OpenGL.All.RgbFloat16Ati; - var _Alpha16fArb = OpenTK.Graphics.OpenGL.All.Alpha16fArb; - var _AlphaFloat16Apple = OpenTK.Graphics.OpenGL.All.AlphaFloat16Apple; - var _AlphaFloat16Ati = OpenTK.Graphics.OpenGL.All.AlphaFloat16Ati; - var _Intensity16fArb = OpenTK.Graphics.OpenGL.All.Intensity16fArb; - var _IntensityFloat16Apple = OpenTK.Graphics.OpenGL.All.IntensityFloat16Apple; - var _IntensityFloat16Ati = OpenTK.Graphics.OpenGL.All.IntensityFloat16Ati; - var _Luminance16fArb = OpenTK.Graphics.OpenGL.All.Luminance16fArb; - var _LuminanceFloat16Apple = OpenTK.Graphics.OpenGL.All.LuminanceFloat16Apple; - var _LuminanceFloat16Ati = OpenTK.Graphics.OpenGL.All.LuminanceFloat16Ati; - var _LuminanceAlpha16fArb = OpenTK.Graphics.OpenGL.All.LuminanceAlpha16fArb; - var _LuminanceAlphaFloat16Apple = OpenTK.Graphics.OpenGL.All.LuminanceAlphaFloat16Apple; - var _LuminanceAlphaFloat16Ati = OpenTK.Graphics.OpenGL.All.LuminanceAlphaFloat16Ati; - var _RgbaFloatMode = OpenTK.Graphics.OpenGL.All.RgbaFloatMode; - var _RgbaFloatModeArb = OpenTK.Graphics.OpenGL.All.RgbaFloatModeArb; - var _RgbaFloatModeAti = OpenTK.Graphics.OpenGL.All.RgbaFloatModeAti; - var _MaxDrawBuffers = OpenTK.Graphics.OpenGL.All.MaxDrawBuffers; - var _MaxDrawBuffersArb = OpenTK.Graphics.OpenGL.All.MaxDrawBuffersArb; - var _MaxDrawBuffersAti = OpenTK.Graphics.OpenGL.All.MaxDrawBuffersAti; - var _DrawBuffer0 = OpenTK.Graphics.OpenGL.All.DrawBuffer0; - var _DrawBuffer0Arb = OpenTK.Graphics.OpenGL.All.DrawBuffer0Arb; - var _DrawBuffer0Ati = OpenTK.Graphics.OpenGL.All.DrawBuffer0Ati; - var _DrawBuffer1 = OpenTK.Graphics.OpenGL.All.DrawBuffer1; - var _DrawBuffer1Arb = OpenTK.Graphics.OpenGL.All.DrawBuffer1Arb; - var _DrawBuffer1Ati = OpenTK.Graphics.OpenGL.All.DrawBuffer1Ati; - var _DrawBuffer2 = OpenTK.Graphics.OpenGL.All.DrawBuffer2; - var _DrawBuffer2Arb = OpenTK.Graphics.OpenGL.All.DrawBuffer2Arb; - var _DrawBuffer2Ati = OpenTK.Graphics.OpenGL.All.DrawBuffer2Ati; - var _DrawBuffer3 = OpenTK.Graphics.OpenGL.All.DrawBuffer3; - var _DrawBuffer3Arb = OpenTK.Graphics.OpenGL.All.DrawBuffer3Arb; - var _DrawBuffer3Ati = OpenTK.Graphics.OpenGL.All.DrawBuffer3Ati; - var _DrawBuffer4 = OpenTK.Graphics.OpenGL.All.DrawBuffer4; - var _DrawBuffer4Arb = OpenTK.Graphics.OpenGL.All.DrawBuffer4Arb; - var _DrawBuffer4Ati = OpenTK.Graphics.OpenGL.All.DrawBuffer4Ati; - var _DrawBuffer5 = OpenTK.Graphics.OpenGL.All.DrawBuffer5; - var _DrawBuffer5Arb = OpenTK.Graphics.OpenGL.All.DrawBuffer5Arb; - var _DrawBuffer5Ati = OpenTK.Graphics.OpenGL.All.DrawBuffer5Ati; - var _DrawBuffer6 = OpenTK.Graphics.OpenGL.All.DrawBuffer6; - var _DrawBuffer6Arb = OpenTK.Graphics.OpenGL.All.DrawBuffer6Arb; - var _DrawBuffer6Ati = OpenTK.Graphics.OpenGL.All.DrawBuffer6Ati; - var _DrawBuffer7 = OpenTK.Graphics.OpenGL.All.DrawBuffer7; - var _DrawBuffer7Arb = OpenTK.Graphics.OpenGL.All.DrawBuffer7Arb; - var _DrawBuffer7Ati = OpenTK.Graphics.OpenGL.All.DrawBuffer7Ati; - var _DrawBuffer8 = OpenTK.Graphics.OpenGL.All.DrawBuffer8; - var _DrawBuffer8Arb = OpenTK.Graphics.OpenGL.All.DrawBuffer8Arb; - var _DrawBuffer8Ati = OpenTK.Graphics.OpenGL.All.DrawBuffer8Ati; - var _DrawBuffer9 = OpenTK.Graphics.OpenGL.All.DrawBuffer9; - var _DrawBuffer9Arb = OpenTK.Graphics.OpenGL.All.DrawBuffer9Arb; - var _DrawBuffer9Ati = OpenTK.Graphics.OpenGL.All.DrawBuffer9Ati; - var _DrawBuffer10 = OpenTK.Graphics.OpenGL.All.DrawBuffer10; - var _DrawBuffer10Arb = OpenTK.Graphics.OpenGL.All.DrawBuffer10Arb; - var _DrawBuffer10Ati = OpenTK.Graphics.OpenGL.All.DrawBuffer10Ati; - var _DrawBuffer11 = OpenTK.Graphics.OpenGL.All.DrawBuffer11; - var _DrawBuffer11Arb = OpenTK.Graphics.OpenGL.All.DrawBuffer11Arb; - var _DrawBuffer11Ati = OpenTK.Graphics.OpenGL.All.DrawBuffer11Ati; - var _DrawBuffer12 = OpenTK.Graphics.OpenGL.All.DrawBuffer12; - var _DrawBuffer12Arb = OpenTK.Graphics.OpenGL.All.DrawBuffer12Arb; - var _DrawBuffer12Ati = OpenTK.Graphics.OpenGL.All.DrawBuffer12Ati; - var _DrawBuffer13 = OpenTK.Graphics.OpenGL.All.DrawBuffer13; - var _DrawBuffer13Arb = OpenTK.Graphics.OpenGL.All.DrawBuffer13Arb; - var _DrawBuffer13Ati = OpenTK.Graphics.OpenGL.All.DrawBuffer13Ati; - var _DrawBuffer14 = OpenTK.Graphics.OpenGL.All.DrawBuffer14; - var _DrawBuffer14Arb = OpenTK.Graphics.OpenGL.All.DrawBuffer14Arb; - var _DrawBuffer14Ati = OpenTK.Graphics.OpenGL.All.DrawBuffer14Ati; - var _DrawBuffer15 = OpenTK.Graphics.OpenGL.All.DrawBuffer15; - var _DrawBuffer15Arb = OpenTK.Graphics.OpenGL.All.DrawBuffer15Arb; - var _DrawBuffer15Ati = OpenTK.Graphics.OpenGL.All.DrawBuffer15Ati; - var _ColorClearUnclampedValueAti = OpenTK.Graphics.OpenGL.All.ColorClearUnclampedValueAti; - var _BlendEquationAlpha = OpenTK.Graphics.OpenGL.All.BlendEquationAlpha; - var _BlendEquationAlphaExt = OpenTK.Graphics.OpenGL.All.BlendEquationAlphaExt; - var _SubsampleDistanceAmd = OpenTK.Graphics.OpenGL.All.SubsampleDistanceAmd; - var _MatrixPaletteArb = OpenTK.Graphics.OpenGL.All.MatrixPaletteArb; - var _MaxMatrixPaletteStackDepthArb = OpenTK.Graphics.OpenGL.All.MaxMatrixPaletteStackDepthArb; - var _MaxPaletteMatricesArb = OpenTK.Graphics.OpenGL.All.MaxPaletteMatricesArb; - var _CurrentPaletteMatrixArb = OpenTK.Graphics.OpenGL.All.CurrentPaletteMatrixArb; - var _MatrixIndexArrayArb = OpenTK.Graphics.OpenGL.All.MatrixIndexArrayArb; - var _CurrentMatrixIndexArb = OpenTK.Graphics.OpenGL.All.CurrentMatrixIndexArb; - var _MatrixIndexArraySizeArb = OpenTK.Graphics.OpenGL.All.MatrixIndexArraySizeArb; - var _MatrixIndexArrayTypeArb = OpenTK.Graphics.OpenGL.All.MatrixIndexArrayTypeArb; - var _MatrixIndexArrayStrideArb = OpenTK.Graphics.OpenGL.All.MatrixIndexArrayStrideArb; - var _MatrixIndexArrayPointerArb = OpenTK.Graphics.OpenGL.All.MatrixIndexArrayPointerArb; - var _TextureDepthSize = OpenTK.Graphics.OpenGL.All.TextureDepthSize; - var _TextureDepthSizeArb = OpenTK.Graphics.OpenGL.All.TextureDepthSizeArb; - var _DepthTextureMode = OpenTK.Graphics.OpenGL.All.DepthTextureMode; - var _DepthTextureModeArb = OpenTK.Graphics.OpenGL.All.DepthTextureModeArb; - var _TextureCompareMode = OpenTK.Graphics.OpenGL.All.TextureCompareMode; - var _TextureCompareModeArb = OpenTK.Graphics.OpenGL.All.TextureCompareModeArb; - var _TextureCompareFunc = OpenTK.Graphics.OpenGL.All.TextureCompareFunc; - var _TextureCompareFuncArb = OpenTK.Graphics.OpenGL.All.TextureCompareFuncArb; - var _CompareRefDepthToTextureExt = OpenTK.Graphics.OpenGL.All.CompareRefDepthToTextureExt; - var _CompareRefToTexture = OpenTK.Graphics.OpenGL.All.CompareRefToTexture; - var _CompareRToTexture = OpenTK.Graphics.OpenGL.All.CompareRToTexture; - var _CompareRToTextureArb = OpenTK.Graphics.OpenGL.All.CompareRToTextureArb; - var _TextureCubeMapSeamless = OpenTK.Graphics.OpenGL.All.TextureCubeMapSeamless; - var _OffsetProjectiveTexture2DNv = OpenTK.Graphics.OpenGL.All.OffsetProjectiveTexture2DNv; - var _OffsetProjectiveTexture2DScaleNv = OpenTK.Graphics.OpenGL.All.OffsetProjectiveTexture2DScaleNv; - var _OffsetProjectiveTextureRectangleNv = OpenTK.Graphics.OpenGL.All.OffsetProjectiveTextureRectangleNv; - var _OffsetProjectiveTextureRectangleScaleNv = OpenTK.Graphics.OpenGL.All.OffsetProjectiveTextureRectangleScaleNv; - var _OffsetHiloTexture2DNv = OpenTK.Graphics.OpenGL.All.OffsetHiloTexture2DNv; - var _OffsetHiloTextureRectangleNv = OpenTK.Graphics.OpenGL.All.OffsetHiloTextureRectangleNv; - var _OffsetHiloProjectiveTexture2DNv = OpenTK.Graphics.OpenGL.All.OffsetHiloProjectiveTexture2DNv; - var _OffsetHiloProjectiveTextureRectangleNv = OpenTK.Graphics.OpenGL.All.OffsetHiloProjectiveTextureRectangleNv; - var _DependentHiloTexture2DNv = OpenTK.Graphics.OpenGL.All.DependentHiloTexture2DNv; - var _DependentRgbTexture3DNv = OpenTK.Graphics.OpenGL.All.DependentRgbTexture3DNv; - var _DependentRgbTextureCubeMapNv = OpenTK.Graphics.OpenGL.All.DependentRgbTextureCubeMapNv; - var _DotProductPassThroughNv = OpenTK.Graphics.OpenGL.All.DotProductPassThroughNv; - var _DotProductTexture1DNv = OpenTK.Graphics.OpenGL.All.DotProductTexture1DNv; - var _DotProductAffineDepthReplaceNv = OpenTK.Graphics.OpenGL.All.DotProductAffineDepthReplaceNv; - var _Hilo8Nv = OpenTK.Graphics.OpenGL.All.Hilo8Nv; - var _SignedHilo8Nv = OpenTK.Graphics.OpenGL.All.SignedHilo8Nv; - var _ForceBlueToOneNv = OpenTK.Graphics.OpenGL.All.ForceBlueToOneNv; - var _PointSprite = OpenTK.Graphics.OpenGL.All.PointSprite; - var _PointSpriteArb = OpenTK.Graphics.OpenGL.All.PointSpriteArb; - var _PointSpriteNv = OpenTK.Graphics.OpenGL.All.PointSpriteNv; - var _CoordReplace = OpenTK.Graphics.OpenGL.All.CoordReplace; - var _CoordReplaceArb = OpenTK.Graphics.OpenGL.All.CoordReplaceArb; - var _CoordReplaceNv = OpenTK.Graphics.OpenGL.All.CoordReplaceNv; - var _PointSpriteRModeNv = OpenTK.Graphics.OpenGL.All.PointSpriteRModeNv; - var _PixelCounterBitsNv = OpenTK.Graphics.OpenGL.All.PixelCounterBitsNv; - var _QueryCounterBits = OpenTK.Graphics.OpenGL.All.QueryCounterBits; - var _QueryCounterBitsArb = OpenTK.Graphics.OpenGL.All.QueryCounterBitsArb; - var _CurrentOcclusionQueryIdNv = OpenTK.Graphics.OpenGL.All.CurrentOcclusionQueryIdNv; - var _CurrentQuery = OpenTK.Graphics.OpenGL.All.CurrentQuery; - var _CurrentQueryArb = OpenTK.Graphics.OpenGL.All.CurrentQueryArb; - var _PixelCountNv = OpenTK.Graphics.OpenGL.All.PixelCountNv; - var _QueryResult = OpenTK.Graphics.OpenGL.All.QueryResult; - var _QueryResultArb = OpenTK.Graphics.OpenGL.All.QueryResultArb; - var _PixelCountAvailableNv = OpenTK.Graphics.OpenGL.All.PixelCountAvailableNv; - var _QueryResultAvailable = OpenTK.Graphics.OpenGL.All.QueryResultAvailable; - var _QueryResultAvailableArb = OpenTK.Graphics.OpenGL.All.QueryResultAvailableArb; - var _MaxFragmentProgramLocalParametersNv = OpenTK.Graphics.OpenGL.All.MaxFragmentProgramLocalParametersNv; - var _MaxVertexAttribs = OpenTK.Graphics.OpenGL.All.MaxVertexAttribs; - var _MaxVertexAttribsArb = OpenTK.Graphics.OpenGL.All.MaxVertexAttribsArb; - var _ArrayNormalized = OpenTK.Graphics.OpenGL.All.ArrayNormalized; - var _VertexAttribArrayNormalized = OpenTK.Graphics.OpenGL.All.VertexAttribArrayNormalized; - var _VertexAttribArrayNormalizedArb = OpenTK.Graphics.OpenGL.All.VertexAttribArrayNormalizedArb; - var _MaxTessControlInputComponents = OpenTK.Graphics.OpenGL.All.MaxTessControlInputComponents; - var _MaxTessEvaluationInputComponents = OpenTK.Graphics.OpenGL.All.MaxTessEvaluationInputComponents; - var _DepthStencilToRgbaNv = OpenTK.Graphics.OpenGL.All.DepthStencilToRgbaNv; - var _DepthStencilToBgraNv = OpenTK.Graphics.OpenGL.All.DepthStencilToBgraNv; - var _FragmentProgramNv = OpenTK.Graphics.OpenGL.All.FragmentProgramNv; - var _MaxTextureCoords = OpenTK.Graphics.OpenGL.All.MaxTextureCoords; - var _MaxTextureCoordsArb = OpenTK.Graphics.OpenGL.All.MaxTextureCoordsArb; - var _MaxTextureCoordsNv = OpenTK.Graphics.OpenGL.All.MaxTextureCoordsNv; - var _MaxTextureImageUnits = OpenTK.Graphics.OpenGL.All.MaxTextureImageUnits; - var _MaxTextureImageUnitsArb = OpenTK.Graphics.OpenGL.All.MaxTextureImageUnitsArb; - var _MaxTextureImageUnitsNv = OpenTK.Graphics.OpenGL.All.MaxTextureImageUnitsNv; - var _FragmentProgramBindingNv = OpenTK.Graphics.OpenGL.All.FragmentProgramBindingNv; - var _ProgramErrorStringArb = OpenTK.Graphics.OpenGL.All.ProgramErrorStringArb; - var _ProgramErrorStringNv = OpenTK.Graphics.OpenGL.All.ProgramErrorStringNv; - var _ProgramFormatAsciiArb = OpenTK.Graphics.OpenGL.All.ProgramFormatAsciiArb; - var _ProgramFormat = OpenTK.Graphics.OpenGL.All.ProgramFormat; - var _ProgramFormatArb = OpenTK.Graphics.OpenGL.All.ProgramFormatArb; - var _WritePixelDataRangeNv = OpenTK.Graphics.OpenGL.All.WritePixelDataRangeNv; - var _ReadPixelDataRangeNv = OpenTK.Graphics.OpenGL.All.ReadPixelDataRangeNv; - var _WritePixelDataRangeLengthNv = OpenTK.Graphics.OpenGL.All.WritePixelDataRangeLengthNv; - var _ReadPixelDataRangeLengthNv = OpenTK.Graphics.OpenGL.All.ReadPixelDataRangeLengthNv; - var _WritePixelDataRangePointerNv = OpenTK.Graphics.OpenGL.All.WritePixelDataRangePointerNv; - var _ReadPixelDataRangePointerNv = OpenTK.Graphics.OpenGL.All.ReadPixelDataRangePointerNv; - var _GeometryShaderInvocations = OpenTK.Graphics.OpenGL.All.GeometryShaderInvocations; - var _FloatRNv = OpenTK.Graphics.OpenGL.All.FloatRNv; - var _FloatRgNv = OpenTK.Graphics.OpenGL.All.FloatRgNv; - var _FloatRgbNv = OpenTK.Graphics.OpenGL.All.FloatRgbNv; - var _FloatRgbaNv = OpenTK.Graphics.OpenGL.All.FloatRgbaNv; - var _FloatR16Nv = OpenTK.Graphics.OpenGL.All.FloatR16Nv; - var _FloatR32Nv = OpenTK.Graphics.OpenGL.All.FloatR32Nv; - var _FloatRg16Nv = OpenTK.Graphics.OpenGL.All.FloatRg16Nv; - var _FloatRg32Nv = OpenTK.Graphics.OpenGL.All.FloatRg32Nv; - var _FloatRgb16Nv = OpenTK.Graphics.OpenGL.All.FloatRgb16Nv; - var _FloatRgb32Nv = OpenTK.Graphics.OpenGL.All.FloatRgb32Nv; - var _FloatRgba16Nv = OpenTK.Graphics.OpenGL.All.FloatRgba16Nv; - var _FloatRgba32Nv = OpenTK.Graphics.OpenGL.All.FloatRgba32Nv; - var _TextureFloatComponentsNv = OpenTK.Graphics.OpenGL.All.TextureFloatComponentsNv; - var _FloatClearColorValueNv = OpenTK.Graphics.OpenGL.All.FloatClearColorValueNv; - var _FloatRgbaModeNv = OpenTK.Graphics.OpenGL.All.FloatRgbaModeNv; - var _TextureUnsignedRemapModeNv = OpenTK.Graphics.OpenGL.All.TextureUnsignedRemapModeNv; - var _DepthBoundsTestExt = OpenTK.Graphics.OpenGL.All.DepthBoundsTestExt; - var _DepthBoundsExt = OpenTK.Graphics.OpenGL.All.DepthBoundsExt; - var _ArrayBuffer = OpenTK.Graphics.OpenGL.All.ArrayBuffer; - var _ArrayBufferArb = OpenTK.Graphics.OpenGL.All.ArrayBufferArb; - var _ElementArrayBuffer = OpenTK.Graphics.OpenGL.All.ElementArrayBuffer; - var _ElementArrayBufferArb = OpenTK.Graphics.OpenGL.All.ElementArrayBufferArb; - var _ArrayBufferBinding = OpenTK.Graphics.OpenGL.All.ArrayBufferBinding; - var _ArrayBufferBindingArb = OpenTK.Graphics.OpenGL.All.ArrayBufferBindingArb; - var _ElementArrayBufferBinding = OpenTK.Graphics.OpenGL.All.ElementArrayBufferBinding; - var _ElementArrayBufferBindingArb = OpenTK.Graphics.OpenGL.All.ElementArrayBufferBindingArb; - var _VertexArrayBufferBinding = OpenTK.Graphics.OpenGL.All.VertexArrayBufferBinding; - var _VertexArrayBufferBindingArb = OpenTK.Graphics.OpenGL.All.VertexArrayBufferBindingArb; - var _NormalArrayBufferBinding = OpenTK.Graphics.OpenGL.All.NormalArrayBufferBinding; - var _NormalArrayBufferBindingArb = OpenTK.Graphics.OpenGL.All.NormalArrayBufferBindingArb; - var _ColorArrayBufferBinding = OpenTK.Graphics.OpenGL.All.ColorArrayBufferBinding; - var _ColorArrayBufferBindingArb = OpenTK.Graphics.OpenGL.All.ColorArrayBufferBindingArb; - var _IndexArrayBufferBinding = OpenTK.Graphics.OpenGL.All.IndexArrayBufferBinding; - var _IndexArrayBufferBindingArb = OpenTK.Graphics.OpenGL.All.IndexArrayBufferBindingArb; - var _TextureCoordArrayBufferBinding = OpenTK.Graphics.OpenGL.All.TextureCoordArrayBufferBinding; - var _TextureCoordArrayBufferBindingArb = OpenTK.Graphics.OpenGL.All.TextureCoordArrayBufferBindingArb; - var _EdgeFlagArrayBufferBinding = OpenTK.Graphics.OpenGL.All.EdgeFlagArrayBufferBinding; - var _EdgeFlagArrayBufferBindingArb = OpenTK.Graphics.OpenGL.All.EdgeFlagArrayBufferBindingArb; - var _SecondaryColorArrayBufferBinding = OpenTK.Graphics.OpenGL.All.SecondaryColorArrayBufferBinding; - var _SecondaryColorArrayBufferBindingArb = OpenTK.Graphics.OpenGL.All.SecondaryColorArrayBufferBindingArb; - var _FogCoordArrayBufferBinding = OpenTK.Graphics.OpenGL.All.FogCoordArrayBufferBinding; - var _FogCoordinateArrayBufferBinding = OpenTK.Graphics.OpenGL.All.FogCoordinateArrayBufferBinding; - var _FogCoordinateArrayBufferBindingArb = OpenTK.Graphics.OpenGL.All.FogCoordinateArrayBufferBindingArb; - var _WeightArrayBufferBinding = OpenTK.Graphics.OpenGL.All.WeightArrayBufferBinding; - var _WeightArrayBufferBindingArb = OpenTK.Graphics.OpenGL.All.WeightArrayBufferBindingArb; - var _VertexAttribArrayBufferBinding = OpenTK.Graphics.OpenGL.All.VertexAttribArrayBufferBinding; - var _VertexAttribArrayBufferBindingArb = OpenTK.Graphics.OpenGL.All.VertexAttribArrayBufferBindingArb; - var _ProgramInstruction = OpenTK.Graphics.OpenGL.All.ProgramInstruction; - var _ProgramInstructionsArb = OpenTK.Graphics.OpenGL.All.ProgramInstructionsArb; - var _MaxProgramInstructions = OpenTK.Graphics.OpenGL.All.MaxProgramInstructions; - var _MaxProgramInstructionsArb = OpenTK.Graphics.OpenGL.All.MaxProgramInstructionsArb; - var _ProgramNativeInstructions = OpenTK.Graphics.OpenGL.All.ProgramNativeInstructions; - var _ProgramNativeInstructionsArb = OpenTK.Graphics.OpenGL.All.ProgramNativeInstructionsArb; - var _MaxProgramNativeInstructions = OpenTK.Graphics.OpenGL.All.MaxProgramNativeInstructions; - var _MaxProgramNativeInstructionsArb = OpenTK.Graphics.OpenGL.All.MaxProgramNativeInstructionsArb; - var _ProgramTemporaries = OpenTK.Graphics.OpenGL.All.ProgramTemporaries; - var _ProgramTemporariesArb = OpenTK.Graphics.OpenGL.All.ProgramTemporariesArb; - var _MaxProgramTemporaries = OpenTK.Graphics.OpenGL.All.MaxProgramTemporaries; - var _MaxProgramTemporariesArb = OpenTK.Graphics.OpenGL.All.MaxProgramTemporariesArb; - var _ProgramNativeTemporaries = OpenTK.Graphics.OpenGL.All.ProgramNativeTemporaries; - var _ProgramNativeTemporariesArb = OpenTK.Graphics.OpenGL.All.ProgramNativeTemporariesArb; - var _MaxProgramNativeTemporaries = OpenTK.Graphics.OpenGL.All.MaxProgramNativeTemporaries; - var _MaxProgramNativeTemporariesArb = OpenTK.Graphics.OpenGL.All.MaxProgramNativeTemporariesArb; - var _ProgramParameters = OpenTK.Graphics.OpenGL.All.ProgramParameters; - var _ProgramParametersArb = OpenTK.Graphics.OpenGL.All.ProgramParametersArb; - var _MaxProgramParameters = OpenTK.Graphics.OpenGL.All.MaxProgramParameters; - var _MaxProgramParametersArb = OpenTK.Graphics.OpenGL.All.MaxProgramParametersArb; - var _ProgramNativeParameters = OpenTK.Graphics.OpenGL.All.ProgramNativeParameters; - var _ProgramNativeParametersArb = OpenTK.Graphics.OpenGL.All.ProgramNativeParametersArb; - var _MaxProgramNativeParameters = OpenTK.Graphics.OpenGL.All.MaxProgramNativeParameters; - var _MaxProgramNativeParametersArb = OpenTK.Graphics.OpenGL.All.MaxProgramNativeParametersArb; - var _ProgramAttribs = OpenTK.Graphics.OpenGL.All.ProgramAttribs; - var _ProgramAttribsArb = OpenTK.Graphics.OpenGL.All.ProgramAttribsArb; - var _MaxProgramAttribs = OpenTK.Graphics.OpenGL.All.MaxProgramAttribs; - var _MaxProgramAttribsArb = OpenTK.Graphics.OpenGL.All.MaxProgramAttribsArb; - var _ProgramNativeAttribs = OpenTK.Graphics.OpenGL.All.ProgramNativeAttribs; - var _ProgramNativeAttribsArb = OpenTK.Graphics.OpenGL.All.ProgramNativeAttribsArb; - var _MaxProgramNativeAttribs = OpenTK.Graphics.OpenGL.All.MaxProgramNativeAttribs; - var _MaxProgramNativeAttribsArb = OpenTK.Graphics.OpenGL.All.MaxProgramNativeAttribsArb; - var _ProgramAddressRegisters = OpenTK.Graphics.OpenGL.All.ProgramAddressRegisters; - var _ProgramAddressRegistersArb = OpenTK.Graphics.OpenGL.All.ProgramAddressRegistersArb; - var _MaxProgramAddressRegisters = OpenTK.Graphics.OpenGL.All.MaxProgramAddressRegisters; - var _MaxProgramAddressRegistersArb = OpenTK.Graphics.OpenGL.All.MaxProgramAddressRegistersArb; - var _ProgramNativeAddressRegisters = OpenTK.Graphics.OpenGL.All.ProgramNativeAddressRegisters; - var _ProgramNativeAddressRegistersArb = OpenTK.Graphics.OpenGL.All.ProgramNativeAddressRegistersArb; - var _MaxProgramNativeAddressRegisters = OpenTK.Graphics.OpenGL.All.MaxProgramNativeAddressRegisters; - var _MaxProgramNativeAddressRegistersArb = OpenTK.Graphics.OpenGL.All.MaxProgramNativeAddressRegistersArb; - var _MaxProgramLocalParameters = OpenTK.Graphics.OpenGL.All.MaxProgramLocalParameters; - var _MaxProgramLocalParametersArb = OpenTK.Graphics.OpenGL.All.MaxProgramLocalParametersArb; - var _MaxProgramEnvParameters = OpenTK.Graphics.OpenGL.All.MaxProgramEnvParameters; - var _MaxProgramEnvParametersArb = OpenTK.Graphics.OpenGL.All.MaxProgramEnvParametersArb; - var _ProgramUnderNativeLimits = OpenTK.Graphics.OpenGL.All.ProgramUnderNativeLimits; - var _ProgramUnderNativeLimitsArb = OpenTK.Graphics.OpenGL.All.ProgramUnderNativeLimitsArb; - var _TransposeCurrentMatrixArb = OpenTK.Graphics.OpenGL.All.TransposeCurrentMatrixArb; - var _ReadOnly = OpenTK.Graphics.OpenGL.All.ReadOnly; - var _ReadOnlyArb = OpenTK.Graphics.OpenGL.All.ReadOnlyArb; - var _WriteOnly = OpenTK.Graphics.OpenGL.All.WriteOnly; - var _WriteOnlyArb = OpenTK.Graphics.OpenGL.All.WriteOnlyArb; - var _ReadWrite = OpenTK.Graphics.OpenGL.All.ReadWrite; - var _ReadWriteArb = OpenTK.Graphics.OpenGL.All.ReadWriteArb; - var _BufferAccess = OpenTK.Graphics.OpenGL.All.BufferAccess; - var _BufferAccessArb = OpenTK.Graphics.OpenGL.All.BufferAccessArb; - var _BufferMapped = OpenTK.Graphics.OpenGL.All.BufferMapped; - var _BufferMappedArb = OpenTK.Graphics.OpenGL.All.BufferMappedArb; - var _BufferMapPointer = OpenTK.Graphics.OpenGL.All.BufferMapPointer; - var _BufferMapPointerArb = OpenTK.Graphics.OpenGL.All.BufferMapPointerArb; - var _WriteDiscardNv = OpenTK.Graphics.OpenGL.All.WriteDiscardNv; - var _TimeElapsed = OpenTK.Graphics.OpenGL.All.TimeElapsed; - var _TimeElapsedExt = OpenTK.Graphics.OpenGL.All.TimeElapsedExt; - var _Matrix0 = OpenTK.Graphics.OpenGL.All.Matrix0; - var _Matrix0Arb = OpenTK.Graphics.OpenGL.All.Matrix0Arb; - var _Matrix1 = OpenTK.Graphics.OpenGL.All.Matrix1; - var _Matrix1Arb = OpenTK.Graphics.OpenGL.All.Matrix1Arb; - var _Matrix2 = OpenTK.Graphics.OpenGL.All.Matrix2; - var _Matrix2Arb = OpenTK.Graphics.OpenGL.All.Matrix2Arb; - var _Matrix3 = OpenTK.Graphics.OpenGL.All.Matrix3; - var _Matrix3Arb = OpenTK.Graphics.OpenGL.All.Matrix3Arb; - var _Matrix4 = OpenTK.Graphics.OpenGL.All.Matrix4; - var _Matrix4Arb = OpenTK.Graphics.OpenGL.All.Matrix4Arb; - var _Matrix5 = OpenTK.Graphics.OpenGL.All.Matrix5; - var _Matrix5Arb = OpenTK.Graphics.OpenGL.All.Matrix5Arb; - var _Matrix6 = OpenTK.Graphics.OpenGL.All.Matrix6; - var _Matrix6Arb = OpenTK.Graphics.OpenGL.All.Matrix6Arb; - var _Matrix7 = OpenTK.Graphics.OpenGL.All.Matrix7; - var _Matrix7Arb = OpenTK.Graphics.OpenGL.All.Matrix7Arb; - var _Matrix8 = OpenTK.Graphics.OpenGL.All.Matrix8; - var _Matrix8Arb = OpenTK.Graphics.OpenGL.All.Matrix8Arb; - var _Matrix9 = OpenTK.Graphics.OpenGL.All.Matrix9; - var _Matrix9Arb = OpenTK.Graphics.OpenGL.All.Matrix9Arb; - var _Matrix10 = OpenTK.Graphics.OpenGL.All.Matrix10; - var _Matrix10Arb = OpenTK.Graphics.OpenGL.All.Matrix10Arb; - var _Matrix11 = OpenTK.Graphics.OpenGL.All.Matrix11; - var _Matrix11Arb = OpenTK.Graphics.OpenGL.All.Matrix11Arb; - var _Matrix12 = OpenTK.Graphics.OpenGL.All.Matrix12; - var _Matrix12Arb = OpenTK.Graphics.OpenGL.All.Matrix12Arb; - var _Matrix13 = OpenTK.Graphics.OpenGL.All.Matrix13; - var _Matrix13Arb = OpenTK.Graphics.OpenGL.All.Matrix13Arb; - var _Matrix14 = OpenTK.Graphics.OpenGL.All.Matrix14; - var _Matrix14Arb = OpenTK.Graphics.OpenGL.All.Matrix14Arb; - var _Matrix15 = OpenTK.Graphics.OpenGL.All.Matrix15; - var _Matrix15Arb = OpenTK.Graphics.OpenGL.All.Matrix15Arb; - var _Matrix16 = OpenTK.Graphics.OpenGL.All.Matrix16; - var _Matrix16Arb = OpenTK.Graphics.OpenGL.All.Matrix16Arb; - var _Matrix17 = OpenTK.Graphics.OpenGL.All.Matrix17; - var _Matrix17Arb = OpenTK.Graphics.OpenGL.All.Matrix17Arb; - var _Matrix18 = OpenTK.Graphics.OpenGL.All.Matrix18; - var _Matrix18Arb = OpenTK.Graphics.OpenGL.All.Matrix18Arb; - var _Matrix19 = OpenTK.Graphics.OpenGL.All.Matrix19; - var _Matrix19Arb = OpenTK.Graphics.OpenGL.All.Matrix19Arb; - var _Matrix20 = OpenTK.Graphics.OpenGL.All.Matrix20; - var _Matrix20Arb = OpenTK.Graphics.OpenGL.All.Matrix20Arb; - var _Matrix21 = OpenTK.Graphics.OpenGL.All.Matrix21; - var _Matrix21Arb = OpenTK.Graphics.OpenGL.All.Matrix21Arb; - var _Matrix22 = OpenTK.Graphics.OpenGL.All.Matrix22; - var _Matrix22Arb = OpenTK.Graphics.OpenGL.All.Matrix22Arb; - var _Matrix23 = OpenTK.Graphics.OpenGL.All.Matrix23; - var _Matrix23Arb = OpenTK.Graphics.OpenGL.All.Matrix23Arb; - var _Matrix24 = OpenTK.Graphics.OpenGL.All.Matrix24; - var _Matrix24Arb = OpenTK.Graphics.OpenGL.All.Matrix24Arb; - var _Matrix25 = OpenTK.Graphics.OpenGL.All.Matrix25; - var _Matrix25Arb = OpenTK.Graphics.OpenGL.All.Matrix25Arb; - var _Matrix26 = OpenTK.Graphics.OpenGL.All.Matrix26; - var _Matrix26Arb = OpenTK.Graphics.OpenGL.All.Matrix26Arb; - var _Matrix27 = OpenTK.Graphics.OpenGL.All.Matrix27; - var _Matrix27Arb = OpenTK.Graphics.OpenGL.All.Matrix27Arb; - var _Matrix28 = OpenTK.Graphics.OpenGL.All.Matrix28; - var _Matrix28Arb = OpenTK.Graphics.OpenGL.All.Matrix28Arb; - var _Matrix29 = OpenTK.Graphics.OpenGL.All.Matrix29; - var _Matrix29Arb = OpenTK.Graphics.OpenGL.All.Matrix29Arb; - var _Matrix30 = OpenTK.Graphics.OpenGL.All.Matrix30; - var _Matrix30Arb = OpenTK.Graphics.OpenGL.All.Matrix30Arb; - var _Matrix31 = OpenTK.Graphics.OpenGL.All.Matrix31; - var _Matrix31Arb = OpenTK.Graphics.OpenGL.All.Matrix31Arb; - var _StreamDraw = OpenTK.Graphics.OpenGL.All.StreamDraw; - var _StreamDrawArb = OpenTK.Graphics.OpenGL.All.StreamDrawArb; - var _StreamRead = OpenTK.Graphics.OpenGL.All.StreamRead; - var _StreamReadArb = OpenTK.Graphics.OpenGL.All.StreamReadArb; - var _StreamCopy = OpenTK.Graphics.OpenGL.All.StreamCopy; - var _StreamCopyArb = OpenTK.Graphics.OpenGL.All.StreamCopyArb; - var _StaticDraw = OpenTK.Graphics.OpenGL.All.StaticDraw; - var _StaticDrawArb = OpenTK.Graphics.OpenGL.All.StaticDrawArb; - var _StaticRead = OpenTK.Graphics.OpenGL.All.StaticRead; - var _StaticReadArb = OpenTK.Graphics.OpenGL.All.StaticReadArb; - var _StaticCopy = OpenTK.Graphics.OpenGL.All.StaticCopy; - var _StaticCopyArb = OpenTK.Graphics.OpenGL.All.StaticCopyArb; - var _DynamicDraw = OpenTK.Graphics.OpenGL.All.DynamicDraw; - var _DynamicDrawArb = OpenTK.Graphics.OpenGL.All.DynamicDrawArb; - var _DynamicRead = OpenTK.Graphics.OpenGL.All.DynamicRead; - var _DynamicReadArb = OpenTK.Graphics.OpenGL.All.DynamicReadArb; - var _DynamicCopy = OpenTK.Graphics.OpenGL.All.DynamicCopy; - var _DynamicCopyArb = OpenTK.Graphics.OpenGL.All.DynamicCopyArb; - var _PixelPackBuffer = OpenTK.Graphics.OpenGL.All.PixelPackBuffer; - var _PixelPackBufferArb = OpenTK.Graphics.OpenGL.All.PixelPackBufferArb; - var _PixelPackBufferExt = OpenTK.Graphics.OpenGL.All.PixelPackBufferExt; - var _PixelUnpackBuffer = OpenTK.Graphics.OpenGL.All.PixelUnpackBuffer; - var _PixelUnpackBufferArb = OpenTK.Graphics.OpenGL.All.PixelUnpackBufferArb; - var _PixelUnpackBufferExt = OpenTK.Graphics.OpenGL.All.PixelUnpackBufferExt; - var _PixelPackBufferBinding = OpenTK.Graphics.OpenGL.All.PixelPackBufferBinding; - var _PixelPackBufferBindingArb = OpenTK.Graphics.OpenGL.All.PixelPackBufferBindingArb; - var _PixelPackBufferBindingExt = OpenTK.Graphics.OpenGL.All.PixelPackBufferBindingExt; - var _PixelUnpackBufferBinding = OpenTK.Graphics.OpenGL.All.PixelUnpackBufferBinding; - var _PixelUnpackBufferBindingArb = OpenTK.Graphics.OpenGL.All.PixelUnpackBufferBindingArb; - var _PixelUnpackBufferBindingExt = OpenTK.Graphics.OpenGL.All.PixelUnpackBufferBindingExt; - var _Depth24Stencil8 = OpenTK.Graphics.OpenGL.All.Depth24Stencil8; - var _Depth24Stencil8Ext = OpenTK.Graphics.OpenGL.All.Depth24Stencil8Ext; - var _TextureStencilSize = OpenTK.Graphics.OpenGL.All.TextureStencilSize; - var _TextureStencilSizeExt = OpenTK.Graphics.OpenGL.All.TextureStencilSizeExt; - var _StencilTagBitsExt = OpenTK.Graphics.OpenGL.All.StencilTagBitsExt; - var _StencilClearTagValueExt = OpenTK.Graphics.OpenGL.All.StencilClearTagValueExt; - var _MaxProgramExecInstructionsNv = OpenTK.Graphics.OpenGL.All.MaxProgramExecInstructionsNv; - var _MaxProgramCallDepthNv = OpenTK.Graphics.OpenGL.All.MaxProgramCallDepthNv; - var _MaxProgramIfDepthNv = OpenTK.Graphics.OpenGL.All.MaxProgramIfDepthNv; - var _MaxProgramLoopDepthNv = OpenTK.Graphics.OpenGL.All.MaxProgramLoopDepthNv; - var _MaxProgramLoopCountNv = OpenTK.Graphics.OpenGL.All.MaxProgramLoopCountNv; - var _Src1Color = OpenTK.Graphics.OpenGL.All.Src1Color; - var _OneMinusSrc1Color = OpenTK.Graphics.OpenGL.All.OneMinusSrc1Color; - var _OneMinusSrc1Alpha = OpenTK.Graphics.OpenGL.All.OneMinusSrc1Alpha; - var _MaxDualSourceDrawBuffers = OpenTK.Graphics.OpenGL.All.MaxDualSourceDrawBuffers; - var _VertexAttribArrayInteger = OpenTK.Graphics.OpenGL.All.VertexAttribArrayInteger; - var _VertexAttribArrayIntegerExt = OpenTK.Graphics.OpenGL.All.VertexAttribArrayIntegerExt; - var _VertexAttribArrayIntegerNv = OpenTK.Graphics.OpenGL.All.VertexAttribArrayIntegerNv; - var _ArrayDivisor = OpenTK.Graphics.OpenGL.All.ArrayDivisor; - var _VertexAttribArrayDivisor = OpenTK.Graphics.OpenGL.All.VertexAttribArrayDivisor; - var _VertexAttribArrayDivisorArb = OpenTK.Graphics.OpenGL.All.VertexAttribArrayDivisorArb; - var _MaxArrayTextureLayers = OpenTK.Graphics.OpenGL.All.MaxArrayTextureLayers; - var _MaxArrayTextureLayersExt = OpenTK.Graphics.OpenGL.All.MaxArrayTextureLayersExt; - var _MinProgramTexelOffset = OpenTK.Graphics.OpenGL.All.MinProgramTexelOffset; - var _MinProgramTexelOffsetExt = OpenTK.Graphics.OpenGL.All.MinProgramTexelOffsetExt; - var _MinProgramTexelOffsetNv = OpenTK.Graphics.OpenGL.All.MinProgramTexelOffsetNv; - var _MaxProgramTexelOffset = OpenTK.Graphics.OpenGL.All.MaxProgramTexelOffset; - var _MaxProgramTexelOffsetExt = OpenTK.Graphics.OpenGL.All.MaxProgramTexelOffsetExt; - var _MaxProgramTexelOffsetNv = OpenTK.Graphics.OpenGL.All.MaxProgramTexelOffsetNv; - var _ProgramAttribComponentsNv = OpenTK.Graphics.OpenGL.All.ProgramAttribComponentsNv; - var _ProgramResultComponentsNv = OpenTK.Graphics.OpenGL.All.ProgramResultComponentsNv; - var _MaxProgramAttribComponentsNv = OpenTK.Graphics.OpenGL.All.MaxProgramAttribComponentsNv; - var _MaxProgramResultComponentsNv = OpenTK.Graphics.OpenGL.All.MaxProgramResultComponentsNv; - var _StencilTestTwoSideExt = OpenTK.Graphics.OpenGL.All.StencilTestTwoSideExt; - var _ActiveStencilFaceExt = OpenTK.Graphics.OpenGL.All.ActiveStencilFaceExt; - var _MirrorClampToBorderExt = OpenTK.Graphics.OpenGL.All.MirrorClampToBorderExt; - var _SamplesPassed = OpenTK.Graphics.OpenGL.All.SamplesPassed; - var _SamplesPassedArb = OpenTK.Graphics.OpenGL.All.SamplesPassedArb; - var _GeometryVerticesOut = OpenTK.Graphics.OpenGL.All.GeometryVerticesOut; - var _GeometryInputType = OpenTK.Graphics.OpenGL.All.GeometryInputType; - var _GeometryOutputType = OpenTK.Graphics.OpenGL.All.GeometryOutputType; - var _SamplerBinding = OpenTK.Graphics.OpenGL.All.SamplerBinding; - var _ClampVertexColor = OpenTK.Graphics.OpenGL.All.ClampVertexColor; - var _ClampVertexColorArb = OpenTK.Graphics.OpenGL.All.ClampVertexColorArb; - var _ClampFragmentColor = OpenTK.Graphics.OpenGL.All.ClampFragmentColor; - var _ClampFragmentColorArb = OpenTK.Graphics.OpenGL.All.ClampFragmentColorArb; - var _ClampReadColor = OpenTK.Graphics.OpenGL.All.ClampReadColor; - var _ClampReadColorArb = OpenTK.Graphics.OpenGL.All.ClampReadColorArb; - var _FixedOnly = OpenTK.Graphics.OpenGL.All.FixedOnly; - var _FixedOnlyArb = OpenTK.Graphics.OpenGL.All.FixedOnlyArb; - var _TessControlProgramNv = OpenTK.Graphics.OpenGL.All.TessControlProgramNv; - var _TessEvaluationProgramNv = OpenTK.Graphics.OpenGL.All.TessEvaluationProgramNv; - var _FragmentShaderAti = OpenTK.Graphics.OpenGL.All.FragmentShaderAti; - var _Reg0Ati = OpenTK.Graphics.OpenGL.All.Reg0Ati; - var _Reg1Ati = OpenTK.Graphics.OpenGL.All.Reg1Ati; - var _Reg2Ati = OpenTK.Graphics.OpenGL.All.Reg2Ati; - var _Reg3Ati = OpenTK.Graphics.OpenGL.All.Reg3Ati; - var _Reg4Ati = OpenTK.Graphics.OpenGL.All.Reg4Ati; - var _Reg5Ati = OpenTK.Graphics.OpenGL.All.Reg5Ati; - var _Reg6Ati = OpenTK.Graphics.OpenGL.All.Reg6Ati; - var _Reg7Ati = OpenTK.Graphics.OpenGL.All.Reg7Ati; - var _Reg8Ati = OpenTK.Graphics.OpenGL.All.Reg8Ati; - var _Reg9Ati = OpenTK.Graphics.OpenGL.All.Reg9Ati; - var _Reg10Ati = OpenTK.Graphics.OpenGL.All.Reg10Ati; - var _Reg11Ati = OpenTK.Graphics.OpenGL.All.Reg11Ati; - var _Reg12Ati = OpenTK.Graphics.OpenGL.All.Reg12Ati; - var _Reg13Ati = OpenTK.Graphics.OpenGL.All.Reg13Ati; - var _Reg14Ati = OpenTK.Graphics.OpenGL.All.Reg14Ati; - var _Reg15Ati = OpenTK.Graphics.OpenGL.All.Reg15Ati; - var _Reg16Ati = OpenTK.Graphics.OpenGL.All.Reg16Ati; - var _Reg17Ati = OpenTK.Graphics.OpenGL.All.Reg17Ati; - var _Reg18Ati = OpenTK.Graphics.OpenGL.All.Reg18Ati; - var _Reg19Ati = OpenTK.Graphics.OpenGL.All.Reg19Ati; - var _Reg20Ati = OpenTK.Graphics.OpenGL.All.Reg20Ati; - var _Reg21Ati = OpenTK.Graphics.OpenGL.All.Reg21Ati; - var _Reg22Ati = OpenTK.Graphics.OpenGL.All.Reg22Ati; - var _Reg23Ati = OpenTK.Graphics.OpenGL.All.Reg23Ati; - var _Reg24Ati = OpenTK.Graphics.OpenGL.All.Reg24Ati; - var _Reg25Ati = OpenTK.Graphics.OpenGL.All.Reg25Ati; - var _Reg26Ati = OpenTK.Graphics.OpenGL.All.Reg26Ati; - var _Reg27Ati = OpenTK.Graphics.OpenGL.All.Reg27Ati; - var _Reg28Ati = OpenTK.Graphics.OpenGL.All.Reg28Ati; - var _Reg29Ati = OpenTK.Graphics.OpenGL.All.Reg29Ati; - var _Reg30Ati = OpenTK.Graphics.OpenGL.All.Reg30Ati; - var _Reg31Ati = OpenTK.Graphics.OpenGL.All.Reg31Ati; - var _Con0Ati = OpenTK.Graphics.OpenGL.All.Con0Ati; - var _Con1Ati = OpenTK.Graphics.OpenGL.All.Con1Ati; - var _Con2Ati = OpenTK.Graphics.OpenGL.All.Con2Ati; - var _Con3Ati = OpenTK.Graphics.OpenGL.All.Con3Ati; - var _Con4Ati = OpenTK.Graphics.OpenGL.All.Con4Ati; - var _Con5Ati = OpenTK.Graphics.OpenGL.All.Con5Ati; - var _Con6Ati = OpenTK.Graphics.OpenGL.All.Con6Ati; - var _Con7Ati = OpenTK.Graphics.OpenGL.All.Con7Ati; - var _Con8Ati = OpenTK.Graphics.OpenGL.All.Con8Ati; - var _Con9Ati = OpenTK.Graphics.OpenGL.All.Con9Ati; - var _Con10Ati = OpenTK.Graphics.OpenGL.All.Con10Ati; - var _Con11Ati = OpenTK.Graphics.OpenGL.All.Con11Ati; - var _Con12Ati = OpenTK.Graphics.OpenGL.All.Con12Ati; - var _Con13Ati = OpenTK.Graphics.OpenGL.All.Con13Ati; - var _Con14Ati = OpenTK.Graphics.OpenGL.All.Con14Ati; - var _Con15Ati = OpenTK.Graphics.OpenGL.All.Con15Ati; - var _Con16Ati = OpenTK.Graphics.OpenGL.All.Con16Ati; - var _Con17Ati = OpenTK.Graphics.OpenGL.All.Con17Ati; - var _Con18Ati = OpenTK.Graphics.OpenGL.All.Con18Ati; - var _Con19Ati = OpenTK.Graphics.OpenGL.All.Con19Ati; - var _Con20Ati = OpenTK.Graphics.OpenGL.All.Con20Ati; - var _Con21Ati = OpenTK.Graphics.OpenGL.All.Con21Ati; - var _Con22Ati = OpenTK.Graphics.OpenGL.All.Con22Ati; - var _Con23Ati = OpenTK.Graphics.OpenGL.All.Con23Ati; - var _Con24Ati = OpenTK.Graphics.OpenGL.All.Con24Ati; - var _Con25Ati = OpenTK.Graphics.OpenGL.All.Con25Ati; - var _Con26Ati = OpenTK.Graphics.OpenGL.All.Con26Ati; - var _Con27Ati = OpenTK.Graphics.OpenGL.All.Con27Ati; - var _Con28Ati = OpenTK.Graphics.OpenGL.All.Con28Ati; - var _Con29Ati = OpenTK.Graphics.OpenGL.All.Con29Ati; - var _Con30Ati = OpenTK.Graphics.OpenGL.All.Con30Ati; - var _Con31Ati = OpenTK.Graphics.OpenGL.All.Con31Ati; - var _MovAti = OpenTK.Graphics.OpenGL.All.MovAti; - var _AddAti = OpenTK.Graphics.OpenGL.All.AddAti; - var _MulAti = OpenTK.Graphics.OpenGL.All.MulAti; - var _SubAti = OpenTK.Graphics.OpenGL.All.SubAti; - var _Dot3Ati = OpenTK.Graphics.OpenGL.All.Dot3Ati; - var _Dot4Ati = OpenTK.Graphics.OpenGL.All.Dot4Ati; - var _MadAti = OpenTK.Graphics.OpenGL.All.MadAti; - var _LerpAti = OpenTK.Graphics.OpenGL.All.LerpAti; - var _CndAti = OpenTK.Graphics.OpenGL.All.CndAti; - var _Cnd0Ati = OpenTK.Graphics.OpenGL.All.Cnd0Ati; - var _Dot2AddAti = OpenTK.Graphics.OpenGL.All.Dot2AddAti; - var _SecondaryInterpolatorAti = OpenTK.Graphics.OpenGL.All.SecondaryInterpolatorAti; - var _NumFragmentRegistersAti = OpenTK.Graphics.OpenGL.All.NumFragmentRegistersAti; - var _NumFragmentConstantsAti = OpenTK.Graphics.OpenGL.All.NumFragmentConstantsAti; - var _NumPassesAti = OpenTK.Graphics.OpenGL.All.NumPassesAti; - var _NumInstructionsPerPassAti = OpenTK.Graphics.OpenGL.All.NumInstructionsPerPassAti; - var _NumInstructionsTotalAti = OpenTK.Graphics.OpenGL.All.NumInstructionsTotalAti; - var _NumInputInterpolatorComponentsAti = OpenTK.Graphics.OpenGL.All.NumInputInterpolatorComponentsAti; - var _NumLoopbackComponentsAti = OpenTK.Graphics.OpenGL.All.NumLoopbackComponentsAti; - var _ColorAlphaPairingAti = OpenTK.Graphics.OpenGL.All.ColorAlphaPairingAti; - var _SwizzleStrAti = OpenTK.Graphics.OpenGL.All.SwizzleStrAti; - var _SwizzleStqAti = OpenTK.Graphics.OpenGL.All.SwizzleStqAti; - var _SwizzleStrDrAti = OpenTK.Graphics.OpenGL.All.SwizzleStrDrAti; - var _SwizzleStqDqAti = OpenTK.Graphics.OpenGL.All.SwizzleStqDqAti; - var _SwizzleStrqAti = OpenTK.Graphics.OpenGL.All.SwizzleStrqAti; - var _SwizzleStrqDqAti = OpenTK.Graphics.OpenGL.All.SwizzleStrqDqAti; - var _InterlaceOml = OpenTK.Graphics.OpenGL.All.InterlaceOml; - var _InterlaceReadOml = OpenTK.Graphics.OpenGL.All.InterlaceReadOml; - var _FormatSubsample2424Oml = OpenTK.Graphics.OpenGL.All.FormatSubsample2424Oml; - var _FormatSubsample244244Oml = OpenTK.Graphics.OpenGL.All.FormatSubsample244244Oml; - var _PackResampleOml = OpenTK.Graphics.OpenGL.All.PackResampleOml; - var _UnpackResampleOml = OpenTK.Graphics.OpenGL.All.UnpackResampleOml; - var _ResampleReplicateOml = OpenTK.Graphics.OpenGL.All.ResampleReplicateOml; - var _ResampleZeroFillOml = OpenTK.Graphics.OpenGL.All.ResampleZeroFillOml; - var _ResampleAverageOml = OpenTK.Graphics.OpenGL.All.ResampleAverageOml; - var _ResampleDecimateOml = OpenTK.Graphics.OpenGL.All.ResampleDecimateOml; - var _VertexAttribMap1Apple = OpenTK.Graphics.OpenGL.All.VertexAttribMap1Apple; - var _VertexAttribMap2Apple = OpenTK.Graphics.OpenGL.All.VertexAttribMap2Apple; - var _VertexAttribMap1SizeApple = OpenTK.Graphics.OpenGL.All.VertexAttribMap1SizeApple; - var _VertexAttribMap1CoeffApple = OpenTK.Graphics.OpenGL.All.VertexAttribMap1CoeffApple; - var _VertexAttribMap1OrderApple = OpenTK.Graphics.OpenGL.All.VertexAttribMap1OrderApple; - var _VertexAttribMap1DomainApple = OpenTK.Graphics.OpenGL.All.VertexAttribMap1DomainApple; - var _VertexAttribMap2SizeApple = OpenTK.Graphics.OpenGL.All.VertexAttribMap2SizeApple; - var _VertexAttribMap2CoeffApple = OpenTK.Graphics.OpenGL.All.VertexAttribMap2CoeffApple; - var _VertexAttribMap2OrderApple = OpenTK.Graphics.OpenGL.All.VertexAttribMap2OrderApple; - var _VertexAttribMap2DomainApple = OpenTK.Graphics.OpenGL.All.VertexAttribMap2DomainApple; - var _DrawPixelsApple = OpenTK.Graphics.OpenGL.All.DrawPixelsApple; - var _FenceApple = OpenTK.Graphics.OpenGL.All.FenceApple; - var _ElementArrayApple = OpenTK.Graphics.OpenGL.All.ElementArrayApple; - var _ElementArrayTypeApple = OpenTK.Graphics.OpenGL.All.ElementArrayTypeApple; - var _ElementArrayPointerApple = OpenTK.Graphics.OpenGL.All.ElementArrayPointerApple; - var _ColorFloatApple = OpenTK.Graphics.OpenGL.All.ColorFloatApple; - var _UniformBuffer = OpenTK.Graphics.OpenGL.All.UniformBuffer; - var _BufferSerializedModifyApple = OpenTK.Graphics.OpenGL.All.BufferSerializedModifyApple; - var _BufferFlushingUnmapApple = OpenTK.Graphics.OpenGL.All.BufferFlushingUnmapApple; - var _AuxDepthStencilApple = OpenTK.Graphics.OpenGL.All.AuxDepthStencilApple; - var _PackRowBytesApple = OpenTK.Graphics.OpenGL.All.PackRowBytesApple; - var _UnpackRowBytesApple = OpenTK.Graphics.OpenGL.All.UnpackRowBytesApple; - var _ReleasedApple = OpenTK.Graphics.OpenGL.All.ReleasedApple; - var _VolatileApple = OpenTK.Graphics.OpenGL.All.VolatileApple; - var _RetainedApple = OpenTK.Graphics.OpenGL.All.RetainedApple; - var _UndefinedApple = OpenTK.Graphics.OpenGL.All.UndefinedApple; - var _PurgeableApple = OpenTK.Graphics.OpenGL.All.PurgeableApple; - var _Rgb422Apple = OpenTK.Graphics.OpenGL.All.Rgb422Apple; - var _UniformBufferBinding = OpenTK.Graphics.OpenGL.All.UniformBufferBinding; - var _UniformBufferStart = OpenTK.Graphics.OpenGL.All.UniformBufferStart; - var _UniformBufferSize = OpenTK.Graphics.OpenGL.All.UniformBufferSize; - var _MaxVertexUniformBlocks = OpenTK.Graphics.OpenGL.All.MaxVertexUniformBlocks; - var _MaxGeometryUniformBlocks = OpenTK.Graphics.OpenGL.All.MaxGeometryUniformBlocks; - var _MaxFragmentUniformBlocks = OpenTK.Graphics.OpenGL.All.MaxFragmentUniformBlocks; - var _MaxCombinedUniformBlocks = OpenTK.Graphics.OpenGL.All.MaxCombinedUniformBlocks; - var _MaxUniformBufferBindings = OpenTK.Graphics.OpenGL.All.MaxUniformBufferBindings; - var _MaxUniformBlockSize = OpenTK.Graphics.OpenGL.All.MaxUniformBlockSize; - var _MaxCombinedVertexUniformComponents = OpenTK.Graphics.OpenGL.All.MaxCombinedVertexUniformComponents; - var _MaxCombinedGeometryUniformComponents = OpenTK.Graphics.OpenGL.All.MaxCombinedGeometryUniformComponents; - var _MaxCombinedFragmentUniformComponents = OpenTK.Graphics.OpenGL.All.MaxCombinedFragmentUniformComponents; - var _UniformBufferOffsetAlignment = OpenTK.Graphics.OpenGL.All.UniformBufferOffsetAlignment; - var _ActiveUniformBlockMaxNameLength = OpenTK.Graphics.OpenGL.All.ActiveUniformBlockMaxNameLength; - var _ActiveUniformBlocks = OpenTK.Graphics.OpenGL.All.ActiveUniformBlocks; - var _UniformType = OpenTK.Graphics.OpenGL.All.UniformType; - var _UniformSize = OpenTK.Graphics.OpenGL.All.UniformSize; - var _UniformNameLength = OpenTK.Graphics.OpenGL.All.UniformNameLength; - var _UniformBlockIndex = OpenTK.Graphics.OpenGL.All.UniformBlockIndex; - var _UniformOffset = OpenTK.Graphics.OpenGL.All.UniformOffset; - var _UniformArrayStride = OpenTK.Graphics.OpenGL.All.UniformArrayStride; - var _UniformMatrixStride = OpenTK.Graphics.OpenGL.All.UniformMatrixStride; - var _UniformIsRowMajor = OpenTK.Graphics.OpenGL.All.UniformIsRowMajor; - var _UniformBlockBinding = OpenTK.Graphics.OpenGL.All.UniformBlockBinding; - var _UniformBlockDataSize = OpenTK.Graphics.OpenGL.All.UniformBlockDataSize; - var _UniformBlockNameLength = OpenTK.Graphics.OpenGL.All.UniformBlockNameLength; - var _UniformBlockActiveUniforms = OpenTK.Graphics.OpenGL.All.UniformBlockActiveUniforms; - var _UniformBlockActiveUniformIndices = OpenTK.Graphics.OpenGL.All.UniformBlockActiveUniformIndices; - var _UniformBlockReferencedByVertexShader = OpenTK.Graphics.OpenGL.All.UniformBlockReferencedByVertexShader; - var _UniformBlockReferencedByGeometryShader = OpenTK.Graphics.OpenGL.All.UniformBlockReferencedByGeometryShader; - var _UniformBlockReferencedByFragmentShader = OpenTK.Graphics.OpenGL.All.UniformBlockReferencedByFragmentShader; - var _TextureSrgbDecodeExt = OpenTK.Graphics.OpenGL.All.TextureSrgbDecodeExt; - var _DecodeExt = OpenTK.Graphics.OpenGL.All.DecodeExt; - var _SkipDecodeExt = OpenTK.Graphics.OpenGL.All.SkipDecodeExt; - var _ProgramPipelineObjectExt = OpenTK.Graphics.OpenGL.All.ProgramPipelineObjectExt; - var _RgbRaw422Apple = OpenTK.Graphics.OpenGL.All.RgbRaw422Apple; - var _FragmentShader = OpenTK.Graphics.OpenGL.All.FragmentShader; - var _FragmentShaderArb = OpenTK.Graphics.OpenGL.All.FragmentShaderArb; - var _VertexShader = OpenTK.Graphics.OpenGL.All.VertexShader; - var _VertexShaderArb = OpenTK.Graphics.OpenGL.All.VertexShaderArb; - var _ProgramObjectArb = OpenTK.Graphics.OpenGL.All.ProgramObjectArb; - var _ProgramObjectExt = OpenTK.Graphics.OpenGL.All.ProgramObjectExt; - var _ShaderObjectArb = OpenTK.Graphics.OpenGL.All.ShaderObjectArb; - var _ShaderObjectExt = OpenTK.Graphics.OpenGL.All.ShaderObjectExt; - var _MaxFragmentUniformComponents = OpenTK.Graphics.OpenGL.All.MaxFragmentUniformComponents; - var _MaxFragmentUniformComponentsArb = OpenTK.Graphics.OpenGL.All.MaxFragmentUniformComponentsArb; - var _MaxVertexUniformComponents = OpenTK.Graphics.OpenGL.All.MaxVertexUniformComponents; - var _MaxVertexUniformComponentsArb = OpenTK.Graphics.OpenGL.All.MaxVertexUniformComponentsArb; - var _MaxVaryingComponents = OpenTK.Graphics.OpenGL.All.MaxVaryingComponents; - var _MaxVaryingComponentsExt = OpenTK.Graphics.OpenGL.All.MaxVaryingComponentsExt; - var _MaxVaryingFloats = OpenTK.Graphics.OpenGL.All.MaxVaryingFloats; - var _MaxVaryingFloatsArb = OpenTK.Graphics.OpenGL.All.MaxVaryingFloatsArb; - var _MaxVertexTextureImageUnits = OpenTK.Graphics.OpenGL.All.MaxVertexTextureImageUnits; - var _MaxVertexTextureImageUnitsArb = OpenTK.Graphics.OpenGL.All.MaxVertexTextureImageUnitsArb; - var _MaxCombinedTextureImageUnits = OpenTK.Graphics.OpenGL.All.MaxCombinedTextureImageUnits; - var _MaxCombinedTextureImageUnitsArb = OpenTK.Graphics.OpenGL.All.MaxCombinedTextureImageUnitsArb; - var _ObjectTypeArb = OpenTK.Graphics.OpenGL.All.ObjectTypeArb; - var _ObjectSubtypeArb = OpenTK.Graphics.OpenGL.All.ObjectSubtypeArb; - var _ShaderType = OpenTK.Graphics.OpenGL.All.ShaderType; - var _FloatVec2 = OpenTK.Graphics.OpenGL.All.FloatVec2; - var _FloatVec2Arb = OpenTK.Graphics.OpenGL.All.FloatVec2Arb; - var _FloatVec3 = OpenTK.Graphics.OpenGL.All.FloatVec3; - var _FloatVec3Arb = OpenTK.Graphics.OpenGL.All.FloatVec3Arb; - var _FloatVec4 = OpenTK.Graphics.OpenGL.All.FloatVec4; - var _FloatVec4Arb = OpenTK.Graphics.OpenGL.All.FloatVec4Arb; - var _IntVec2 = OpenTK.Graphics.OpenGL.All.IntVec2; - var _IntVec2Arb = OpenTK.Graphics.OpenGL.All.IntVec2Arb; - var _IntVec3 = OpenTK.Graphics.OpenGL.All.IntVec3; - var _IntVec3Arb = OpenTK.Graphics.OpenGL.All.IntVec3Arb; - var _IntVec4 = OpenTK.Graphics.OpenGL.All.IntVec4; - var _IntVec4Arb = OpenTK.Graphics.OpenGL.All.IntVec4Arb; - var _Bool = OpenTK.Graphics.OpenGL.All.Bool; - var _BoolArb = OpenTK.Graphics.OpenGL.All.BoolArb; - var _BoolVec2 = OpenTK.Graphics.OpenGL.All.BoolVec2; - var _BoolVec2Arb = OpenTK.Graphics.OpenGL.All.BoolVec2Arb; - var _BoolVec3 = OpenTK.Graphics.OpenGL.All.BoolVec3; - var _BoolVec3Arb = OpenTK.Graphics.OpenGL.All.BoolVec3Arb; - var _BoolVec4 = OpenTK.Graphics.OpenGL.All.BoolVec4; - var _BoolVec4Arb = OpenTK.Graphics.OpenGL.All.BoolVec4Arb; - var _FloatMat2 = OpenTK.Graphics.OpenGL.All.FloatMat2; - var _FloatMat2Arb = OpenTK.Graphics.OpenGL.All.FloatMat2Arb; - var _FloatMat3 = OpenTK.Graphics.OpenGL.All.FloatMat3; - var _FloatMat3Arb = OpenTK.Graphics.OpenGL.All.FloatMat3Arb; - var _FloatMat4 = OpenTK.Graphics.OpenGL.All.FloatMat4; - var _FloatMat4Arb = OpenTK.Graphics.OpenGL.All.FloatMat4Arb; - var _Sampler1D = OpenTK.Graphics.OpenGL.All.Sampler1D; - var _Sampler1DArb = OpenTK.Graphics.OpenGL.All.Sampler1DArb; - var _Sampler2D = OpenTK.Graphics.OpenGL.All.Sampler2D; - var _Sampler2DArb = OpenTK.Graphics.OpenGL.All.Sampler2DArb; - var _Sampler3D = OpenTK.Graphics.OpenGL.All.Sampler3D; - var _Sampler3DArb = OpenTK.Graphics.OpenGL.All.Sampler3DArb; - var _SamplerCube = OpenTK.Graphics.OpenGL.All.SamplerCube; - var _SamplerCubeArb = OpenTK.Graphics.OpenGL.All.SamplerCubeArb; - var _Sampler1DShadow = OpenTK.Graphics.OpenGL.All.Sampler1DShadow; - var _Sampler1DShadowArb = OpenTK.Graphics.OpenGL.All.Sampler1DShadowArb; - var _Sampler2DShadow = OpenTK.Graphics.OpenGL.All.Sampler2DShadow; - var _Sampler2DShadowArb = OpenTK.Graphics.OpenGL.All.Sampler2DShadowArb; - var _Sampler2DRect = OpenTK.Graphics.OpenGL.All.Sampler2DRect; - var _Sampler2DRectArb = OpenTK.Graphics.OpenGL.All.Sampler2DRectArb; - var _Sampler2DRectShadow = OpenTK.Graphics.OpenGL.All.Sampler2DRectShadow; - var _Sampler2DRectShadowArb = OpenTK.Graphics.OpenGL.All.Sampler2DRectShadowArb; - var _FloatMat2x3 = OpenTK.Graphics.OpenGL.All.FloatMat2x3; - var _FloatMat2x4 = OpenTK.Graphics.OpenGL.All.FloatMat2x4; - var _FloatMat3x2 = OpenTK.Graphics.OpenGL.All.FloatMat3x2; - var _FloatMat3x4 = OpenTK.Graphics.OpenGL.All.FloatMat3x4; - var _FloatMat4x2 = OpenTK.Graphics.OpenGL.All.FloatMat4x2; - var _FloatMat4x3 = OpenTK.Graphics.OpenGL.All.FloatMat4x3; - var _DeleteStatus = OpenTK.Graphics.OpenGL.All.DeleteStatus; - var _ObjectDeleteStatusArb = OpenTK.Graphics.OpenGL.All.ObjectDeleteStatusArb; - var _CompileStatus = OpenTK.Graphics.OpenGL.All.CompileStatus; - var _ObjectCompileStatusArb = OpenTK.Graphics.OpenGL.All.ObjectCompileStatusArb; - var _LinkStatus = OpenTK.Graphics.OpenGL.All.LinkStatus; - var _ObjectLinkStatusArb = OpenTK.Graphics.OpenGL.All.ObjectLinkStatusArb; - var _ObjectValidateStatusArb = OpenTK.Graphics.OpenGL.All.ObjectValidateStatusArb; - var _ValidateStatus = OpenTK.Graphics.OpenGL.All.ValidateStatus; - var _InfoLogLength = OpenTK.Graphics.OpenGL.All.InfoLogLength; - var _ObjectInfoLogLengthArb = OpenTK.Graphics.OpenGL.All.ObjectInfoLogLengthArb; - var _AttachedShaders = OpenTK.Graphics.OpenGL.All.AttachedShaders; - var _ObjectAttachedObjectsArb = OpenTK.Graphics.OpenGL.All.ObjectAttachedObjectsArb; - var _ActiveUniforms = OpenTK.Graphics.OpenGL.All.ActiveUniforms; - var _ObjectActiveUniformsArb = OpenTK.Graphics.OpenGL.All.ObjectActiveUniformsArb; - var _ActiveUniformMaxLength = OpenTK.Graphics.OpenGL.All.ActiveUniformMaxLength; - var _ObjectActiveUniformMaxLengthArb = OpenTK.Graphics.OpenGL.All.ObjectActiveUniformMaxLengthArb; - var _ObjectShaderSourceLengthArb = OpenTK.Graphics.OpenGL.All.ObjectShaderSourceLengthArb; - var _ShaderSourceLength = OpenTK.Graphics.OpenGL.All.ShaderSourceLength; - var _ActiveAttributes = OpenTK.Graphics.OpenGL.All.ActiveAttributes; - var _ObjectActiveAttributesArb = OpenTK.Graphics.OpenGL.All.ObjectActiveAttributesArb; - var _ActiveAttributeMaxLength = OpenTK.Graphics.OpenGL.All.ActiveAttributeMaxLength; - var _ObjectActiveAttributeMaxLengthArb = OpenTK.Graphics.OpenGL.All.ObjectActiveAttributeMaxLengthArb; - var _FragmentShaderDerivativeHint = OpenTK.Graphics.OpenGL.All.FragmentShaderDerivativeHint; - var _FragmentShaderDerivativeHintArb = OpenTK.Graphics.OpenGL.All.FragmentShaderDerivativeHintArb; - var _FragmentShaderDerivativeHintOes = OpenTK.Graphics.OpenGL.All.FragmentShaderDerivativeHintOes; - var _ShadingLanguageVersion = OpenTK.Graphics.OpenGL.All.ShadingLanguageVersion; - var _ShadingLanguageVersionArb = OpenTK.Graphics.OpenGL.All.ShadingLanguageVersionArb; - var _ActiveProgramExt = OpenTK.Graphics.OpenGL.All.ActiveProgramExt; - var _CurrentProgram = OpenTK.Graphics.OpenGL.All.CurrentProgram; - var _Palette4Rgb8Oes = OpenTK.Graphics.OpenGL.All.Palette4Rgb8Oes; - var _Palette4Rgba8Oes = OpenTK.Graphics.OpenGL.All.Palette4Rgba8Oes; - var _Palette4R5G6B5Oes = OpenTK.Graphics.OpenGL.All.Palette4R5G6B5Oes; - var _Palette4Rgba4Oes = OpenTK.Graphics.OpenGL.All.Palette4Rgba4Oes; - var _Palette4Rgb5A1Oes = OpenTK.Graphics.OpenGL.All.Palette4Rgb5A1Oes; - var _Palette8Rgb8Oes = OpenTK.Graphics.OpenGL.All.Palette8Rgb8Oes; - var _Palette8Rgba8Oes = OpenTK.Graphics.OpenGL.All.Palette8Rgba8Oes; - var _Palette8R5G6B5Oes = OpenTK.Graphics.OpenGL.All.Palette8R5G6B5Oes; - var _Palette8Rgba4Oes = OpenTK.Graphics.OpenGL.All.Palette8Rgba4Oes; - var _Palette8Rgb5A1Oes = OpenTK.Graphics.OpenGL.All.Palette8Rgb5A1Oes; - var _ImplementationColorReadType = OpenTK.Graphics.OpenGL.All.ImplementationColorReadType; - var _ImplementationColorReadTypeOes = OpenTK.Graphics.OpenGL.All.ImplementationColorReadTypeOes; - var _ImplementationColorReadFormat = OpenTK.Graphics.OpenGL.All.ImplementationColorReadFormat; - var _ImplementationColorReadFormatOes = OpenTK.Graphics.OpenGL.All.ImplementationColorReadFormatOes; - var _CounterTypeAmd = OpenTK.Graphics.OpenGL.All.CounterTypeAmd; - var _CounterRangeAmd = OpenTK.Graphics.OpenGL.All.CounterRangeAmd; - var _UnsignedInt64Amd = OpenTK.Graphics.OpenGL.All.UnsignedInt64Amd; - var _PercentageAmd = OpenTK.Graphics.OpenGL.All.PercentageAmd; - var _PerfmonResultAvailableAmd = OpenTK.Graphics.OpenGL.All.PerfmonResultAvailableAmd; - var _PerfmonResultSizeAmd = OpenTK.Graphics.OpenGL.All.PerfmonResultSizeAmd; - var _PerfmonResultAmd = OpenTK.Graphics.OpenGL.All.PerfmonResultAmd; - var _TextureRedType = OpenTK.Graphics.OpenGL.All.TextureRedType; - var _TextureRedTypeArb = OpenTK.Graphics.OpenGL.All.TextureRedTypeArb; - var _TextureGreenType = OpenTK.Graphics.OpenGL.All.TextureGreenType; - var _TextureGreenTypeArb = OpenTK.Graphics.OpenGL.All.TextureGreenTypeArb; - var _TextureBlueType = OpenTK.Graphics.OpenGL.All.TextureBlueType; - var _TextureBlueTypeArb = OpenTK.Graphics.OpenGL.All.TextureBlueTypeArb; - var _TextureAlphaType = OpenTK.Graphics.OpenGL.All.TextureAlphaType; - var _TextureAlphaTypeArb = OpenTK.Graphics.OpenGL.All.TextureAlphaTypeArb; - var _TextureLuminanceType = OpenTK.Graphics.OpenGL.All.TextureLuminanceType; - var _TextureLuminanceTypeArb = OpenTK.Graphics.OpenGL.All.TextureLuminanceTypeArb; - var _TextureIntensityType = OpenTK.Graphics.OpenGL.All.TextureIntensityType; - var _TextureIntensityTypeArb = OpenTK.Graphics.OpenGL.All.TextureIntensityTypeArb; - var _TextureDepthType = OpenTK.Graphics.OpenGL.All.TextureDepthType; - var _TextureDepthTypeArb = OpenTK.Graphics.OpenGL.All.TextureDepthTypeArb; - var _UnsignedNormalized = OpenTK.Graphics.OpenGL.All.UnsignedNormalized; - var _UnsignedNormalizedArb = OpenTK.Graphics.OpenGL.All.UnsignedNormalizedArb; - var _Texture1DArray = OpenTK.Graphics.OpenGL.All.Texture1DArray; - var _Texture1DArrayExt = OpenTK.Graphics.OpenGL.All.Texture1DArrayExt; - var _ProxyTexture1DArray = OpenTK.Graphics.OpenGL.All.ProxyTexture1DArray; - var _ProxyTexture1DArrayExt = OpenTK.Graphics.OpenGL.All.ProxyTexture1DArrayExt; - var _Texture2DArray = OpenTK.Graphics.OpenGL.All.Texture2DArray; - var _Texture2DArrayExt = OpenTK.Graphics.OpenGL.All.Texture2DArrayExt; - var _ProxyTexture2DArray = OpenTK.Graphics.OpenGL.All.ProxyTexture2DArray; - var _ProxyTexture2DArrayExt = OpenTK.Graphics.OpenGL.All.ProxyTexture2DArrayExt; - var _TextureBinding1DArray = OpenTK.Graphics.OpenGL.All.TextureBinding1DArray; - var _TextureBinding1DArrayExt = OpenTK.Graphics.OpenGL.All.TextureBinding1DArrayExt; - var _TextureBinding2DArray = OpenTK.Graphics.OpenGL.All.TextureBinding2DArray; - var _TextureBinding2DArrayExt = OpenTK.Graphics.OpenGL.All.TextureBinding2DArrayExt; - var _GeometryProgramNv = OpenTK.Graphics.OpenGL.All.GeometryProgramNv; - var _MaxProgramOutputVerticesNv = OpenTK.Graphics.OpenGL.All.MaxProgramOutputVerticesNv; - var _MaxProgramTotalOutputComponentsNv = OpenTK.Graphics.OpenGL.All.MaxProgramTotalOutputComponentsNv; - var _MaxGeometryTextureImageUnits = OpenTK.Graphics.OpenGL.All.MaxGeometryTextureImageUnits; - var _MaxGeometryTextureImageUnitsArb = OpenTK.Graphics.OpenGL.All.MaxGeometryTextureImageUnitsArb; - var _MaxGeometryTextureImageUnitsExt = OpenTK.Graphics.OpenGL.All.MaxGeometryTextureImageUnitsExt; - var _TextureBuffer = OpenTK.Graphics.OpenGL.All.TextureBuffer; - var _TextureBufferArb = OpenTK.Graphics.OpenGL.All.TextureBufferArb; - var _TextureBufferBinding = OpenTK.Graphics.OpenGL.All.TextureBufferBinding; - var _TextureBufferExt = OpenTK.Graphics.OpenGL.All.TextureBufferExt; - var _MaxTextureBufferSize = OpenTK.Graphics.OpenGL.All.MaxTextureBufferSize; - var _MaxTextureBufferSizeArb = OpenTK.Graphics.OpenGL.All.MaxTextureBufferSizeArb; - var _MaxTextureBufferSizeExt = OpenTK.Graphics.OpenGL.All.MaxTextureBufferSizeExt; - var _TextureBindingBuffer = OpenTK.Graphics.OpenGL.All.TextureBindingBuffer; - var _TextureBindingBufferArb = OpenTK.Graphics.OpenGL.All.TextureBindingBufferArb; - var _TextureBindingBufferExt = OpenTK.Graphics.OpenGL.All.TextureBindingBufferExt; - var _TextureBufferDataStoreBinding = OpenTK.Graphics.OpenGL.All.TextureBufferDataStoreBinding; - var _TextureBufferDataStoreBindingArb = OpenTK.Graphics.OpenGL.All.TextureBufferDataStoreBindingArb; - var _TextureBufferDataStoreBindingExt = OpenTK.Graphics.OpenGL.All.TextureBufferDataStoreBindingExt; - var _TextureBufferFormatArb = OpenTK.Graphics.OpenGL.All.TextureBufferFormatArb; - var _TextureBufferFormatExt = OpenTK.Graphics.OpenGL.All.TextureBufferFormatExt; - var _AnySamplesPassed = OpenTK.Graphics.OpenGL.All.AnySamplesPassed; - var _SampleShading = OpenTK.Graphics.OpenGL.All.SampleShading; - var _SampleShadingArb = OpenTK.Graphics.OpenGL.All.SampleShadingArb; - var _MinSampleShadingValue = OpenTK.Graphics.OpenGL.All.MinSampleShadingValue; - var _MinSampleShadingValueArb = OpenTK.Graphics.OpenGL.All.MinSampleShadingValueArb; - var _R11fG11fB10f = OpenTK.Graphics.OpenGL.All.R11fG11fB10f; - var _R11fG11fB10fExt = OpenTK.Graphics.OpenGL.All.R11fG11fB10fExt; - var _UnsignedInt10F11F11FRev = OpenTK.Graphics.OpenGL.All.UnsignedInt10F11F11FRev; - var _UnsignedInt10F11F11FRevExt = OpenTK.Graphics.OpenGL.All.UnsignedInt10F11F11FRevExt; - var _RgbaSignedComponentsExt = OpenTK.Graphics.OpenGL.All.RgbaSignedComponentsExt; - var _Rgb9E5 = OpenTK.Graphics.OpenGL.All.Rgb9E5; - var _Rgb9E5Ext = OpenTK.Graphics.OpenGL.All.Rgb9E5Ext; - var _UnsignedInt5999Rev = OpenTK.Graphics.OpenGL.All.UnsignedInt5999Rev; - var _UnsignedInt5999RevExt = OpenTK.Graphics.OpenGL.All.UnsignedInt5999RevExt; - var _TextureSharedSize = OpenTK.Graphics.OpenGL.All.TextureSharedSize; - var _TextureSharedSizeExt = OpenTK.Graphics.OpenGL.All.TextureSharedSizeExt; - var _Srgb = OpenTK.Graphics.OpenGL.All.Srgb; - var _SrgbExt = OpenTK.Graphics.OpenGL.All.SrgbExt; - var _Srgb8 = OpenTK.Graphics.OpenGL.All.Srgb8; - var _Srgb8Ext = OpenTK.Graphics.OpenGL.All.Srgb8Ext; - var _SrgbAlpha = OpenTK.Graphics.OpenGL.All.SrgbAlpha; - var _SrgbAlphaExt = OpenTK.Graphics.OpenGL.All.SrgbAlphaExt; - var _Srgb8Alpha8 = OpenTK.Graphics.OpenGL.All.Srgb8Alpha8; - var _Srgb8Alpha8Ext = OpenTK.Graphics.OpenGL.All.Srgb8Alpha8Ext; - var _SluminanceAlpha = OpenTK.Graphics.OpenGL.All.SluminanceAlpha; - var _SluminanceAlphaExt = OpenTK.Graphics.OpenGL.All.SluminanceAlphaExt; - var _Sluminance8Alpha8 = OpenTK.Graphics.OpenGL.All.Sluminance8Alpha8; - var _Sluminance8Alpha8Ext = OpenTK.Graphics.OpenGL.All.Sluminance8Alpha8Ext; - var _Sluminance = OpenTK.Graphics.OpenGL.All.Sluminance; - var _SluminanceExt = OpenTK.Graphics.OpenGL.All.SluminanceExt; - var _Sluminance8 = OpenTK.Graphics.OpenGL.All.Sluminance8; - var _Sluminance8Ext = OpenTK.Graphics.OpenGL.All.Sluminance8Ext; - var _CompressedSrgb = OpenTK.Graphics.OpenGL.All.CompressedSrgb; - var _CompressedSrgbExt = OpenTK.Graphics.OpenGL.All.CompressedSrgbExt; - var _CompressedSrgbAlpha = OpenTK.Graphics.OpenGL.All.CompressedSrgbAlpha; - var _CompressedSrgbAlphaExt = OpenTK.Graphics.OpenGL.All.CompressedSrgbAlphaExt; - var _CompressedSluminance = OpenTK.Graphics.OpenGL.All.CompressedSluminance; - var _CompressedSluminanceExt = OpenTK.Graphics.OpenGL.All.CompressedSluminanceExt; - var _CompressedSluminanceAlpha = OpenTK.Graphics.OpenGL.All.CompressedSluminanceAlpha; - var _CompressedSluminanceAlphaExt = OpenTK.Graphics.OpenGL.All.CompressedSluminanceAlphaExt; - var _CompressedSrgbS3tcDxt1Ext = OpenTK.Graphics.OpenGL.All.CompressedSrgbS3tcDxt1Ext; - var _CompressedSrgbAlphaS3tcDxt1Ext = OpenTK.Graphics.OpenGL.All.CompressedSrgbAlphaS3tcDxt1Ext; - var _CompressedSrgbAlphaS3tcDxt3Ext = OpenTK.Graphics.OpenGL.All.CompressedSrgbAlphaS3tcDxt3Ext; - var _CompressedSrgbAlphaS3tcDxt5Ext = OpenTK.Graphics.OpenGL.All.CompressedSrgbAlphaS3tcDxt5Ext; - var _CompressedLuminanceLatc1Ext = OpenTK.Graphics.OpenGL.All.CompressedLuminanceLatc1Ext; - var _CompressedSignedLuminanceLatc1Ext = OpenTK.Graphics.OpenGL.All.CompressedSignedLuminanceLatc1Ext; - var _CompressedLuminanceAlphaLatc2Ext = OpenTK.Graphics.OpenGL.All.CompressedLuminanceAlphaLatc2Ext; - var _CompressedSignedLuminanceAlphaLatc2Ext = OpenTK.Graphics.OpenGL.All.CompressedSignedLuminanceAlphaLatc2Ext; - var _TessControlProgramParameterBufferNv = OpenTK.Graphics.OpenGL.All.TessControlProgramParameterBufferNv; - var _TessEvaluationProgramParameterBufferNv = OpenTK.Graphics.OpenGL.All.TessEvaluationProgramParameterBufferNv; - var _TransformFeedbackVaryingMaxLength = OpenTK.Graphics.OpenGL.All.TransformFeedbackVaryingMaxLength; - var _TransformFeedbackVaryingMaxLengthExt = OpenTK.Graphics.OpenGL.All.TransformFeedbackVaryingMaxLengthExt; - var _BackPrimaryColorNv = OpenTK.Graphics.OpenGL.All.BackPrimaryColorNv; - var _BackSecondaryColorNv = OpenTK.Graphics.OpenGL.All.BackSecondaryColorNv; - var _TextureCoordNv = OpenTK.Graphics.OpenGL.All.TextureCoordNv; - var _ClipDistanceNv = OpenTK.Graphics.OpenGL.All.ClipDistanceNv; - var _VertexIdNv = OpenTK.Graphics.OpenGL.All.VertexIdNv; - var _PrimitiveIdNv = OpenTK.Graphics.OpenGL.All.PrimitiveIdNv; - var _GenericAttribNv = OpenTK.Graphics.OpenGL.All.GenericAttribNv; - var _TransformFeedbackAttribsNv = OpenTK.Graphics.OpenGL.All.TransformFeedbackAttribsNv; - var _TransformFeedbackBufferMode = OpenTK.Graphics.OpenGL.All.TransformFeedbackBufferMode; - var _TransformFeedbackBufferModeExt = OpenTK.Graphics.OpenGL.All.TransformFeedbackBufferModeExt; - var _TransformFeedbackBufferModeNv = OpenTK.Graphics.OpenGL.All.TransformFeedbackBufferModeNv; - var _MaxTransformFeedbackSeparateComponents = OpenTK.Graphics.OpenGL.All.MaxTransformFeedbackSeparateComponents; - var _MaxTransformFeedbackSeparateComponentsExt = OpenTK.Graphics.OpenGL.All.MaxTransformFeedbackSeparateComponentsExt; - var _MaxTransformFeedbackSeparateComponentsNv = OpenTK.Graphics.OpenGL.All.MaxTransformFeedbackSeparateComponentsNv; - var _ActiveVaryingsNv = OpenTK.Graphics.OpenGL.All.ActiveVaryingsNv; - var _ActiveVaryingMaxLengthNv = OpenTK.Graphics.OpenGL.All.ActiveVaryingMaxLengthNv; - var _TransformFeedbackVaryings = OpenTK.Graphics.OpenGL.All.TransformFeedbackVaryings; - var _TransformFeedbackVaryingsExt = OpenTK.Graphics.OpenGL.All.TransformFeedbackVaryingsExt; - var _TransformFeedbackVaryingsNv = OpenTK.Graphics.OpenGL.All.TransformFeedbackVaryingsNv; - var _TransformFeedbackBufferStart = OpenTK.Graphics.OpenGL.All.TransformFeedbackBufferStart; - var _TransformFeedbackBufferStartExt = OpenTK.Graphics.OpenGL.All.TransformFeedbackBufferStartExt; - var _TransformFeedbackBufferStartNv = OpenTK.Graphics.OpenGL.All.TransformFeedbackBufferStartNv; - var _TransformFeedbackBufferSize = OpenTK.Graphics.OpenGL.All.TransformFeedbackBufferSize; - var _TransformFeedbackBufferSizeExt = OpenTK.Graphics.OpenGL.All.TransformFeedbackBufferSizeExt; - var _TransformFeedbackBufferSizeNv = OpenTK.Graphics.OpenGL.All.TransformFeedbackBufferSizeNv; - var _TransformFeedbackRecordNv = OpenTK.Graphics.OpenGL.All.TransformFeedbackRecordNv; - var _PrimitivesGenerated = OpenTK.Graphics.OpenGL.All.PrimitivesGenerated; - var _PrimitivesGeneratedExt = OpenTK.Graphics.OpenGL.All.PrimitivesGeneratedExt; - var _PrimitivesGeneratedNv = OpenTK.Graphics.OpenGL.All.PrimitivesGeneratedNv; - var _TransformFeedbackPrimitivesWritten = OpenTK.Graphics.OpenGL.All.TransformFeedbackPrimitivesWritten; - var _TransformFeedbackPrimitivesWrittenExt = OpenTK.Graphics.OpenGL.All.TransformFeedbackPrimitivesWrittenExt; - var _TransformFeedbackPrimitivesWrittenNv = OpenTK.Graphics.OpenGL.All.TransformFeedbackPrimitivesWrittenNv; - var _RasterizerDiscard = OpenTK.Graphics.OpenGL.All.RasterizerDiscard; - var _RasterizerDiscardExt = OpenTK.Graphics.OpenGL.All.RasterizerDiscardExt; - var _RasterizerDiscardNv = OpenTK.Graphics.OpenGL.All.RasterizerDiscardNv; - var _MaxTransformFeedbackInterleavedComponents = OpenTK.Graphics.OpenGL.All.MaxTransformFeedbackInterleavedComponents; - var _MaxTransformFeedbackInterleavedComponentsExt = OpenTK.Graphics.OpenGL.All.MaxTransformFeedbackInterleavedComponentsExt; - var _MaxTransformFeedbackInterleavedComponentsNv = OpenTK.Graphics.OpenGL.All.MaxTransformFeedbackInterleavedComponentsNv; - var _MaxTransformFeedbackSeparateAttribs = OpenTK.Graphics.OpenGL.All.MaxTransformFeedbackSeparateAttribs; - var _MaxTransformFeedbackSeparateAttribsExt = OpenTK.Graphics.OpenGL.All.MaxTransformFeedbackSeparateAttribsExt; - var _MaxTransformFeedbackSeparateAttribsNv = OpenTK.Graphics.OpenGL.All.MaxTransformFeedbackSeparateAttribsNv; - var _InterleavedAttribs = OpenTK.Graphics.OpenGL.All.InterleavedAttribs; - var _InterleavedAttribsExt = OpenTK.Graphics.OpenGL.All.InterleavedAttribsExt; - var _InterleavedAttribsNv = OpenTK.Graphics.OpenGL.All.InterleavedAttribsNv; - var _SeparateAttribs = OpenTK.Graphics.OpenGL.All.SeparateAttribs; - var _SeparateAttribsExt = OpenTK.Graphics.OpenGL.All.SeparateAttribsExt; - var _SeparateAttribsNv = OpenTK.Graphics.OpenGL.All.SeparateAttribsNv; - var _TransformFeedbackBuffer = OpenTK.Graphics.OpenGL.All.TransformFeedbackBuffer; - var _TransformFeedbackBufferExt = OpenTK.Graphics.OpenGL.All.TransformFeedbackBufferExt; - var _TransformFeedbackBufferNv = OpenTK.Graphics.OpenGL.All.TransformFeedbackBufferNv; - var _TransformFeedbackBufferBinding = OpenTK.Graphics.OpenGL.All.TransformFeedbackBufferBinding; - var _TransformFeedbackBufferBindingExt = OpenTK.Graphics.OpenGL.All.TransformFeedbackBufferBindingExt; - var _TransformFeedbackBufferBindingNv = OpenTK.Graphics.OpenGL.All.TransformFeedbackBufferBindingNv; - var _PointSpriteCoordOrigin = OpenTK.Graphics.OpenGL.All.PointSpriteCoordOrigin; - var _LowerLeft = OpenTK.Graphics.OpenGL.All.LowerLeft; - var _UpperLeft = OpenTK.Graphics.OpenGL.All.UpperLeft; - var _StencilBackRef = OpenTK.Graphics.OpenGL.All.StencilBackRef; - var _StencilBackValueMask = OpenTK.Graphics.OpenGL.All.StencilBackValueMask; - var _StencilBackWritemask = OpenTK.Graphics.OpenGL.All.StencilBackWritemask; - var _DrawFramebufferBinding = OpenTK.Graphics.OpenGL.All.DrawFramebufferBinding; - var _DrawFramebufferBindingExt = OpenTK.Graphics.OpenGL.All.DrawFramebufferBindingExt; - var _FramebufferBinding = OpenTK.Graphics.OpenGL.All.FramebufferBinding; - var _FramebufferBindingExt = OpenTK.Graphics.OpenGL.All.FramebufferBindingExt; - var _RenderbufferBinding = OpenTK.Graphics.OpenGL.All.RenderbufferBinding; - var _RenderbufferBindingExt = OpenTK.Graphics.OpenGL.All.RenderbufferBindingExt; - var _ReadFramebuffer = OpenTK.Graphics.OpenGL.All.ReadFramebuffer; - var _ReadFramebufferExt = OpenTK.Graphics.OpenGL.All.ReadFramebufferExt; - var _DrawFramebuffer = OpenTK.Graphics.OpenGL.All.DrawFramebuffer; - var _DrawFramebufferExt = OpenTK.Graphics.OpenGL.All.DrawFramebufferExt; - var _ReadFramebufferBinding = OpenTK.Graphics.OpenGL.All.ReadFramebufferBinding; - var _ReadFramebufferBindingExt = OpenTK.Graphics.OpenGL.All.ReadFramebufferBindingExt; - var _RenderbufferCoverageSamplesNv = OpenTK.Graphics.OpenGL.All.RenderbufferCoverageSamplesNv; - var _RenderbufferSamples = OpenTK.Graphics.OpenGL.All.RenderbufferSamples; - var _RenderbufferSamplesExt = OpenTK.Graphics.OpenGL.All.RenderbufferSamplesExt; - var _DepthComponent32f = OpenTK.Graphics.OpenGL.All.DepthComponent32f; - var _Depth32fStencil8 = OpenTK.Graphics.OpenGL.All.Depth32fStencil8; - var _FramebufferAttachmentObjectType = OpenTK.Graphics.OpenGL.All.FramebufferAttachmentObjectType; - var _FramebufferAttachmentObjectTypeExt = OpenTK.Graphics.OpenGL.All.FramebufferAttachmentObjectTypeExt; - var _FramebufferAttachmentObjectName = OpenTK.Graphics.OpenGL.All.FramebufferAttachmentObjectName; - var _FramebufferAttachmentObjectNameExt = OpenTK.Graphics.OpenGL.All.FramebufferAttachmentObjectNameExt; - var _FramebufferAttachmentTextureLevel = OpenTK.Graphics.OpenGL.All.FramebufferAttachmentTextureLevel; - var _FramebufferAttachmentTextureLevelExt = OpenTK.Graphics.OpenGL.All.FramebufferAttachmentTextureLevelExt; - var _FramebufferAttachmentTextureCubeMapFace = OpenTK.Graphics.OpenGL.All.FramebufferAttachmentTextureCubeMapFace; - var _FramebufferAttachmentTextureCubeMapFaceExt = OpenTK.Graphics.OpenGL.All.FramebufferAttachmentTextureCubeMapFaceExt; - var _FramebufferAttachmentTexture3DZoffsetExt = OpenTK.Graphics.OpenGL.All.FramebufferAttachmentTexture3DZoffsetExt; - var _FramebufferAttachmentTextureLayer = OpenTK.Graphics.OpenGL.All.FramebufferAttachmentTextureLayer; - var _FramebufferAttachmentTextureLayerExt = OpenTK.Graphics.OpenGL.All.FramebufferAttachmentTextureLayerExt; - var _FramebufferComplete = OpenTK.Graphics.OpenGL.All.FramebufferComplete; - var _FramebufferCompleteExt = OpenTK.Graphics.OpenGL.All.FramebufferCompleteExt; - var _FramebufferIncompleteAttachment = OpenTK.Graphics.OpenGL.All.FramebufferIncompleteAttachment; - var _FramebufferIncompleteAttachmentExt = OpenTK.Graphics.OpenGL.All.FramebufferIncompleteAttachmentExt; - var _FramebufferIncompleteMissingAttachment = OpenTK.Graphics.OpenGL.All.FramebufferIncompleteMissingAttachment; - var _FramebufferIncompleteMissingAttachmentExt = OpenTK.Graphics.OpenGL.All.FramebufferIncompleteMissingAttachmentExt; - var _FramebufferIncompleteDimensionsExt = OpenTK.Graphics.OpenGL.All.FramebufferIncompleteDimensionsExt; - var _FramebufferIncompleteFormatsExt = OpenTK.Graphics.OpenGL.All.FramebufferIncompleteFormatsExt; - var _FramebufferIncompleteDrawBuffer = OpenTK.Graphics.OpenGL.All.FramebufferIncompleteDrawBuffer; - var _FramebufferIncompleteDrawBufferExt = OpenTK.Graphics.OpenGL.All.FramebufferIncompleteDrawBufferExt; - var _FramebufferIncompleteReadBuffer = OpenTK.Graphics.OpenGL.All.FramebufferIncompleteReadBuffer; - var _FramebufferIncompleteReadBufferExt = OpenTK.Graphics.OpenGL.All.FramebufferIncompleteReadBufferExt; - var _FramebufferUnsupported = OpenTK.Graphics.OpenGL.All.FramebufferUnsupported; - var _FramebufferUnsupportedExt = OpenTK.Graphics.OpenGL.All.FramebufferUnsupportedExt; - var _MaxColorAttachments = OpenTK.Graphics.OpenGL.All.MaxColorAttachments; - var _MaxColorAttachmentsExt = OpenTK.Graphics.OpenGL.All.MaxColorAttachmentsExt; - var _ColorAttachment0 = OpenTK.Graphics.OpenGL.All.ColorAttachment0; - var _ColorAttachment0Ext = OpenTK.Graphics.OpenGL.All.ColorAttachment0Ext; - var _ColorAttachment1 = OpenTK.Graphics.OpenGL.All.ColorAttachment1; - var _ColorAttachment1Ext = OpenTK.Graphics.OpenGL.All.ColorAttachment1Ext; - var _ColorAttachment2 = OpenTK.Graphics.OpenGL.All.ColorAttachment2; - var _ColorAttachment2Ext = OpenTK.Graphics.OpenGL.All.ColorAttachment2Ext; - var _ColorAttachment3 = OpenTK.Graphics.OpenGL.All.ColorAttachment3; - var _ColorAttachment3Ext = OpenTK.Graphics.OpenGL.All.ColorAttachment3Ext; - var _ColorAttachment4 = OpenTK.Graphics.OpenGL.All.ColorAttachment4; - var _ColorAttachment4Ext = OpenTK.Graphics.OpenGL.All.ColorAttachment4Ext; - var _ColorAttachment5 = OpenTK.Graphics.OpenGL.All.ColorAttachment5; - var _ColorAttachment5Ext = OpenTK.Graphics.OpenGL.All.ColorAttachment5Ext; - var _ColorAttachment6 = OpenTK.Graphics.OpenGL.All.ColorAttachment6; - var _ColorAttachment6Ext = OpenTK.Graphics.OpenGL.All.ColorAttachment6Ext; - var _ColorAttachment7 = OpenTK.Graphics.OpenGL.All.ColorAttachment7; - var _ColorAttachment7Ext = OpenTK.Graphics.OpenGL.All.ColorAttachment7Ext; - var _ColorAttachment8 = OpenTK.Graphics.OpenGL.All.ColorAttachment8; - var _ColorAttachment8Ext = OpenTK.Graphics.OpenGL.All.ColorAttachment8Ext; - var _ColorAttachment9 = OpenTK.Graphics.OpenGL.All.ColorAttachment9; - var _ColorAttachment9Ext = OpenTK.Graphics.OpenGL.All.ColorAttachment9Ext; - var _ColorAttachment10 = OpenTK.Graphics.OpenGL.All.ColorAttachment10; - var _ColorAttachment10Ext = OpenTK.Graphics.OpenGL.All.ColorAttachment10Ext; - var _ColorAttachment11 = OpenTK.Graphics.OpenGL.All.ColorAttachment11; - var _ColorAttachment11Ext = OpenTK.Graphics.OpenGL.All.ColorAttachment11Ext; - var _ColorAttachment12 = OpenTK.Graphics.OpenGL.All.ColorAttachment12; - var _ColorAttachment12Ext = OpenTK.Graphics.OpenGL.All.ColorAttachment12Ext; - var _ColorAttachment13 = OpenTK.Graphics.OpenGL.All.ColorAttachment13; - var _ColorAttachment13Ext = OpenTK.Graphics.OpenGL.All.ColorAttachment13Ext; - var _ColorAttachment14 = OpenTK.Graphics.OpenGL.All.ColorAttachment14; - var _ColorAttachment14Ext = OpenTK.Graphics.OpenGL.All.ColorAttachment14Ext; - var _ColorAttachment15 = OpenTK.Graphics.OpenGL.All.ColorAttachment15; - var _ColorAttachment15Ext = OpenTK.Graphics.OpenGL.All.ColorAttachment15Ext; - var _DepthAttachment = OpenTK.Graphics.OpenGL.All.DepthAttachment; - var _DepthAttachmentExt = OpenTK.Graphics.OpenGL.All.DepthAttachmentExt; - var _StencilAttachment = OpenTK.Graphics.OpenGL.All.StencilAttachment; - var _StencilAttachmentExt = OpenTK.Graphics.OpenGL.All.StencilAttachmentExt; - var _Framebuffer = OpenTK.Graphics.OpenGL.All.Framebuffer; - var _FramebufferExt = OpenTK.Graphics.OpenGL.All.FramebufferExt; - var _Renderbuffer = OpenTK.Graphics.OpenGL.All.Renderbuffer; - var _RenderbufferExt = OpenTK.Graphics.OpenGL.All.RenderbufferExt; - var _RenderbufferWidth = OpenTK.Graphics.OpenGL.All.RenderbufferWidth; - var _RenderbufferWidthExt = OpenTK.Graphics.OpenGL.All.RenderbufferWidthExt; - var _RenderbufferHeight = OpenTK.Graphics.OpenGL.All.RenderbufferHeight; - var _RenderbufferHeightExt = OpenTK.Graphics.OpenGL.All.RenderbufferHeightExt; - var _RenderbufferInternalFormat = OpenTK.Graphics.OpenGL.All.RenderbufferInternalFormat; - var _RenderbufferInternalFormatExt = OpenTK.Graphics.OpenGL.All.RenderbufferInternalFormatExt; - var _StencilIndex1 = OpenTK.Graphics.OpenGL.All.StencilIndex1; - var _StencilIndex1Ext = OpenTK.Graphics.OpenGL.All.StencilIndex1Ext; - var _StencilIndex4 = OpenTK.Graphics.OpenGL.All.StencilIndex4; - var _StencilIndex4Ext = OpenTK.Graphics.OpenGL.All.StencilIndex4Ext; - var _StencilIndex8 = OpenTK.Graphics.OpenGL.All.StencilIndex8; - var _StencilIndex8Ext = OpenTK.Graphics.OpenGL.All.StencilIndex8Ext; - var _StencilIndex16 = OpenTK.Graphics.OpenGL.All.StencilIndex16; - var _StencilIndex16Ext = OpenTK.Graphics.OpenGL.All.StencilIndex16Ext; - var _RenderbufferRedSize = OpenTK.Graphics.OpenGL.All.RenderbufferRedSize; - var _RenderbufferRedSizeExt = OpenTK.Graphics.OpenGL.All.RenderbufferRedSizeExt; - var _RenderbufferGreenSize = OpenTK.Graphics.OpenGL.All.RenderbufferGreenSize; - var _RenderbufferGreenSizeExt = OpenTK.Graphics.OpenGL.All.RenderbufferGreenSizeExt; - var _RenderbufferBlueSize = OpenTK.Graphics.OpenGL.All.RenderbufferBlueSize; - var _RenderbufferBlueSizeExt = OpenTK.Graphics.OpenGL.All.RenderbufferBlueSizeExt; - var _RenderbufferAlphaSize = OpenTK.Graphics.OpenGL.All.RenderbufferAlphaSize; - var _RenderbufferAlphaSizeExt = OpenTK.Graphics.OpenGL.All.RenderbufferAlphaSizeExt; - var _RenderbufferDepthSize = OpenTK.Graphics.OpenGL.All.RenderbufferDepthSize; - var _RenderbufferDepthSizeExt = OpenTK.Graphics.OpenGL.All.RenderbufferDepthSizeExt; - var _RenderbufferStencilSize = OpenTK.Graphics.OpenGL.All.RenderbufferStencilSize; - var _RenderbufferStencilSizeExt = OpenTK.Graphics.OpenGL.All.RenderbufferStencilSizeExt; - var _FramebufferIncompleteMultisample = OpenTK.Graphics.OpenGL.All.FramebufferIncompleteMultisample; - var _FramebufferIncompleteMultisampleExt = OpenTK.Graphics.OpenGL.All.FramebufferIncompleteMultisampleExt; - var _MaxSamples = OpenTK.Graphics.OpenGL.All.MaxSamples; - var _MaxSamplesExt = OpenTK.Graphics.OpenGL.All.MaxSamplesExt; - var _Rgb565 = OpenTK.Graphics.OpenGL.All.Rgb565; - var _PrimitiveRestartFixedIndex = OpenTK.Graphics.OpenGL.All.PrimitiveRestartFixedIndex; - var _AnySamplesPassedConservative = OpenTK.Graphics.OpenGL.All.AnySamplesPassedConservative; - var _MaxElementIndex = OpenTK.Graphics.OpenGL.All.MaxElementIndex; - var _Rgba32ui = OpenTK.Graphics.OpenGL.All.Rgba32ui; - var _Rgba32uiExt = OpenTK.Graphics.OpenGL.All.Rgba32uiExt; - var _Rgb32ui = OpenTK.Graphics.OpenGL.All.Rgb32ui; - var _Rgb32uiExt = OpenTK.Graphics.OpenGL.All.Rgb32uiExt; - var _Alpha32uiExt = OpenTK.Graphics.OpenGL.All.Alpha32uiExt; - var _Intensity32uiExt = OpenTK.Graphics.OpenGL.All.Intensity32uiExt; - var _Luminance32uiExt = OpenTK.Graphics.OpenGL.All.Luminance32uiExt; - var _LuminanceAlpha32uiExt = OpenTK.Graphics.OpenGL.All.LuminanceAlpha32uiExt; - var _Rgba16ui = OpenTK.Graphics.OpenGL.All.Rgba16ui; - var _Rgba16uiExt = OpenTK.Graphics.OpenGL.All.Rgba16uiExt; - var _Rgb16ui = OpenTK.Graphics.OpenGL.All.Rgb16ui; - var _Rgb16uiExt = OpenTK.Graphics.OpenGL.All.Rgb16uiExt; - var _Alpha16uiExt = OpenTK.Graphics.OpenGL.All.Alpha16uiExt; - var _Intensity16uiExt = OpenTK.Graphics.OpenGL.All.Intensity16uiExt; - var _Luminance16uiExt = OpenTK.Graphics.OpenGL.All.Luminance16uiExt; - var _LuminanceAlpha16uiExt = OpenTK.Graphics.OpenGL.All.LuminanceAlpha16uiExt; - var _Rgba8ui = OpenTK.Graphics.OpenGL.All.Rgba8ui; - var _Rgba8uiExt = OpenTK.Graphics.OpenGL.All.Rgba8uiExt; - var _Rgb8ui = OpenTK.Graphics.OpenGL.All.Rgb8ui; - var _Rgb8uiExt = OpenTK.Graphics.OpenGL.All.Rgb8uiExt; - var _Alpha8uiExt = OpenTK.Graphics.OpenGL.All.Alpha8uiExt; - var _Intensity8uiExt = OpenTK.Graphics.OpenGL.All.Intensity8uiExt; - var _Luminance8uiExt = OpenTK.Graphics.OpenGL.All.Luminance8uiExt; - var _LuminanceAlpha8uiExt = OpenTK.Graphics.OpenGL.All.LuminanceAlpha8uiExt; - var _Rgba32i = OpenTK.Graphics.OpenGL.All.Rgba32i; - var _Rgba32iExt = OpenTK.Graphics.OpenGL.All.Rgba32iExt; - var _Rgb32i = OpenTK.Graphics.OpenGL.All.Rgb32i; - var _Rgb32iExt = OpenTK.Graphics.OpenGL.All.Rgb32iExt; - var _Alpha32iExt = OpenTK.Graphics.OpenGL.All.Alpha32iExt; - var _Intensity32iExt = OpenTK.Graphics.OpenGL.All.Intensity32iExt; - var _Luminance32iExt = OpenTK.Graphics.OpenGL.All.Luminance32iExt; - var _LuminanceAlpha32iExt = OpenTK.Graphics.OpenGL.All.LuminanceAlpha32iExt; - var _Rgba16i = OpenTK.Graphics.OpenGL.All.Rgba16i; - var _Rgba16iExt = OpenTK.Graphics.OpenGL.All.Rgba16iExt; - var _Rgb16i = OpenTK.Graphics.OpenGL.All.Rgb16i; - var _Rgb16iExt = OpenTK.Graphics.OpenGL.All.Rgb16iExt; - var _Alpha16iExt = OpenTK.Graphics.OpenGL.All.Alpha16iExt; - var _Intensity16iExt = OpenTK.Graphics.OpenGL.All.Intensity16iExt; - var _Luminance16iExt = OpenTK.Graphics.OpenGL.All.Luminance16iExt; - var _LuminanceAlpha16iExt = OpenTK.Graphics.OpenGL.All.LuminanceAlpha16iExt; - var _Rgba8i = OpenTK.Graphics.OpenGL.All.Rgba8i; - var _Rgba8iExt = OpenTK.Graphics.OpenGL.All.Rgba8iExt; - var _Rgb8i = OpenTK.Graphics.OpenGL.All.Rgb8i; - var _Rgb8iExt = OpenTK.Graphics.OpenGL.All.Rgb8iExt; - var _Alpha8iExt = OpenTK.Graphics.OpenGL.All.Alpha8iExt; - var _Intensity8iExt = OpenTK.Graphics.OpenGL.All.Intensity8iExt; - var _Luminance8iExt = OpenTK.Graphics.OpenGL.All.Luminance8iExt; - var _LuminanceAlpha8iExt = OpenTK.Graphics.OpenGL.All.LuminanceAlpha8iExt; - var _RedInteger = OpenTK.Graphics.OpenGL.All.RedInteger; - var _RedIntegerExt = OpenTK.Graphics.OpenGL.All.RedIntegerExt; - var _GreenInteger = OpenTK.Graphics.OpenGL.All.GreenInteger; - var _GreenIntegerExt = OpenTK.Graphics.OpenGL.All.GreenIntegerExt; - var _BlueInteger = OpenTK.Graphics.OpenGL.All.BlueInteger; - var _BlueIntegerExt = OpenTK.Graphics.OpenGL.All.BlueIntegerExt; - var _AlphaInteger = OpenTK.Graphics.OpenGL.All.AlphaInteger; - var _AlphaIntegerExt = OpenTK.Graphics.OpenGL.All.AlphaIntegerExt; - var _RgbInteger = OpenTK.Graphics.OpenGL.All.RgbInteger; - var _RgbIntegerExt = OpenTK.Graphics.OpenGL.All.RgbIntegerExt; - var _RgbaInteger = OpenTK.Graphics.OpenGL.All.RgbaInteger; - var _RgbaIntegerExt = OpenTK.Graphics.OpenGL.All.RgbaIntegerExt; - var _BgrInteger = OpenTK.Graphics.OpenGL.All.BgrInteger; - var _BgrIntegerExt = OpenTK.Graphics.OpenGL.All.BgrIntegerExt; - var _BgraInteger = OpenTK.Graphics.OpenGL.All.BgraInteger; - var _BgraIntegerExt = OpenTK.Graphics.OpenGL.All.BgraIntegerExt; - var _LuminanceIntegerExt = OpenTK.Graphics.OpenGL.All.LuminanceIntegerExt; - var _LuminanceAlphaIntegerExt = OpenTK.Graphics.OpenGL.All.LuminanceAlphaIntegerExt; - var _RgbaIntegerModeExt = OpenTK.Graphics.OpenGL.All.RgbaIntegerModeExt; - var _Int2101010Rev = OpenTK.Graphics.OpenGL.All.Int2101010Rev; - var _MaxProgramParameterBufferBindingsNv = OpenTK.Graphics.OpenGL.All.MaxProgramParameterBufferBindingsNv; - var _MaxProgramParameterBufferSizeNv = OpenTK.Graphics.OpenGL.All.MaxProgramParameterBufferSizeNv; - var _VertexProgramParameterBufferNv = OpenTK.Graphics.OpenGL.All.VertexProgramParameterBufferNv; - var _GeometryProgramParameterBufferNv = OpenTK.Graphics.OpenGL.All.GeometryProgramParameterBufferNv; - var _FragmentProgramParameterBufferNv = OpenTK.Graphics.OpenGL.All.FragmentProgramParameterBufferNv; - var _MaxProgramGenericAttribsNv = OpenTK.Graphics.OpenGL.All.MaxProgramGenericAttribsNv; - var _MaxProgramGenericResultsNv = OpenTK.Graphics.OpenGL.All.MaxProgramGenericResultsNv; - var _FramebufferAttachmentLayered = OpenTK.Graphics.OpenGL.All.FramebufferAttachmentLayered; - var _FramebufferAttachmentLayeredArb = OpenTK.Graphics.OpenGL.All.FramebufferAttachmentLayeredArb; - var _FramebufferAttachmentLayeredExt = OpenTK.Graphics.OpenGL.All.FramebufferAttachmentLayeredExt; - var _FramebufferIncompleteLayerTargets = OpenTK.Graphics.OpenGL.All.FramebufferIncompleteLayerTargets; - var _FramebufferIncompleteLayerTargetsArb = OpenTK.Graphics.OpenGL.All.FramebufferIncompleteLayerTargetsArb; - var _FramebufferIncompleteLayerTargetsExt = OpenTK.Graphics.OpenGL.All.FramebufferIncompleteLayerTargetsExt; - var _FramebufferIncompleteLayerCount = OpenTK.Graphics.OpenGL.All.FramebufferIncompleteLayerCount; - var _FramebufferIncompleteLayerCountArb = OpenTK.Graphics.OpenGL.All.FramebufferIncompleteLayerCountArb; - var _FramebufferIncompleteLayerCountExt = OpenTK.Graphics.OpenGL.All.FramebufferIncompleteLayerCountExt; - var _LayerNv = OpenTK.Graphics.OpenGL.All.LayerNv; - var _DepthComponent32fNv = OpenTK.Graphics.OpenGL.All.DepthComponent32fNv; - var _Depth32fStencil8Nv = OpenTK.Graphics.OpenGL.All.Depth32fStencil8Nv; - var _Float32UnsignedInt248Rev = OpenTK.Graphics.OpenGL.All.Float32UnsignedInt248Rev; - var _Float32UnsignedInt248RevNv = OpenTK.Graphics.OpenGL.All.Float32UnsignedInt248RevNv; - var _ShaderIncludeArb = OpenTK.Graphics.OpenGL.All.ShaderIncludeArb; - var _DepthBufferFloatModeNv = OpenTK.Graphics.OpenGL.All.DepthBufferFloatModeNv; - var _FramebufferSrgb = OpenTK.Graphics.OpenGL.All.FramebufferSrgb; - var _FramebufferSrgbExt = OpenTK.Graphics.OpenGL.All.FramebufferSrgbExt; - var _FramebufferSrgbCapableExt = OpenTK.Graphics.OpenGL.All.FramebufferSrgbCapableExt; - var _CompressedRedRgtc1 = OpenTK.Graphics.OpenGL.All.CompressedRedRgtc1; - var _CompressedRedRgtc1Ext = OpenTK.Graphics.OpenGL.All.CompressedRedRgtc1Ext; - var _CompressedSignedRedRgtc1 = OpenTK.Graphics.OpenGL.All.CompressedSignedRedRgtc1; - var _CompressedSignedRedRgtc1Ext = OpenTK.Graphics.OpenGL.All.CompressedSignedRedRgtc1Ext; - var _CompressedRedGreenRgtc2Ext = OpenTK.Graphics.OpenGL.All.CompressedRedGreenRgtc2Ext; - var _CompressedRgRgtc2 = OpenTK.Graphics.OpenGL.All.CompressedRgRgtc2; - var _CompressedSignedRedGreenRgtc2Ext = OpenTK.Graphics.OpenGL.All.CompressedSignedRedGreenRgtc2Ext; - var _CompressedSignedRgRgtc2 = OpenTK.Graphics.OpenGL.All.CompressedSignedRgRgtc2; - var _Sampler1DArray = OpenTK.Graphics.OpenGL.All.Sampler1DArray; - var _Sampler1DArrayExt = OpenTK.Graphics.OpenGL.All.Sampler1DArrayExt; - var _Sampler2DArray = OpenTK.Graphics.OpenGL.All.Sampler2DArray; - var _Sampler2DArrayExt = OpenTK.Graphics.OpenGL.All.Sampler2DArrayExt; - var _SamplerBuffer = OpenTK.Graphics.OpenGL.All.SamplerBuffer; - var _SamplerBufferExt = OpenTK.Graphics.OpenGL.All.SamplerBufferExt; - var _Sampler1DArrayShadow = OpenTK.Graphics.OpenGL.All.Sampler1DArrayShadow; - var _Sampler1DArrayShadowExt = OpenTK.Graphics.OpenGL.All.Sampler1DArrayShadowExt; - var _Sampler2DArrayShadow = OpenTK.Graphics.OpenGL.All.Sampler2DArrayShadow; - var _Sampler2DArrayShadowExt = OpenTK.Graphics.OpenGL.All.Sampler2DArrayShadowExt; - var _SamplerCubeShadow = OpenTK.Graphics.OpenGL.All.SamplerCubeShadow; - var _SamplerCubeShadowExt = OpenTK.Graphics.OpenGL.All.SamplerCubeShadowExt; - var _UnsignedIntVec2 = OpenTK.Graphics.OpenGL.All.UnsignedIntVec2; - var _UnsignedIntVec2Ext = OpenTK.Graphics.OpenGL.All.UnsignedIntVec2Ext; - var _UnsignedIntVec3 = OpenTK.Graphics.OpenGL.All.UnsignedIntVec3; - var _UnsignedIntVec3Ext = OpenTK.Graphics.OpenGL.All.UnsignedIntVec3Ext; - var _UnsignedIntVec4 = OpenTK.Graphics.OpenGL.All.UnsignedIntVec4; - var _UnsignedIntVec4Ext = OpenTK.Graphics.OpenGL.All.UnsignedIntVec4Ext; - var _IntSampler1D = OpenTK.Graphics.OpenGL.All.IntSampler1D; - var _IntSampler1DExt = OpenTK.Graphics.OpenGL.All.IntSampler1DExt; - var _IntSampler2D = OpenTK.Graphics.OpenGL.All.IntSampler2D; - var _IntSampler2DExt = OpenTK.Graphics.OpenGL.All.IntSampler2DExt; - var _IntSampler3D = OpenTK.Graphics.OpenGL.All.IntSampler3D; - var _IntSampler3DExt = OpenTK.Graphics.OpenGL.All.IntSampler3DExt; - var _IntSamplerCube = OpenTK.Graphics.OpenGL.All.IntSamplerCube; - var _IntSamplerCubeExt = OpenTK.Graphics.OpenGL.All.IntSamplerCubeExt; - var _IntSampler2DRect = OpenTK.Graphics.OpenGL.All.IntSampler2DRect; - var _IntSampler2DRectExt = OpenTK.Graphics.OpenGL.All.IntSampler2DRectExt; - var _IntSampler1DArray = OpenTK.Graphics.OpenGL.All.IntSampler1DArray; - var _IntSampler1DArrayExt = OpenTK.Graphics.OpenGL.All.IntSampler1DArrayExt; - var _IntSampler2DArray = OpenTK.Graphics.OpenGL.All.IntSampler2DArray; - var _IntSampler2DArrayExt = OpenTK.Graphics.OpenGL.All.IntSampler2DArrayExt; - var _IntSamplerBuffer = OpenTK.Graphics.OpenGL.All.IntSamplerBuffer; - var _IntSamplerBufferExt = OpenTK.Graphics.OpenGL.All.IntSamplerBufferExt; - var _UnsignedIntSampler1D = OpenTK.Graphics.OpenGL.All.UnsignedIntSampler1D; - var _UnsignedIntSampler1DExt = OpenTK.Graphics.OpenGL.All.UnsignedIntSampler1DExt; - var _UnsignedIntSampler2D = OpenTK.Graphics.OpenGL.All.UnsignedIntSampler2D; - var _UnsignedIntSampler2DExt = OpenTK.Graphics.OpenGL.All.UnsignedIntSampler2DExt; - var _UnsignedIntSampler3D = OpenTK.Graphics.OpenGL.All.UnsignedIntSampler3D; - var _UnsignedIntSampler3DExt = OpenTK.Graphics.OpenGL.All.UnsignedIntSampler3DExt; - var _UnsignedIntSamplerCube = OpenTK.Graphics.OpenGL.All.UnsignedIntSamplerCube; - var _UnsignedIntSamplerCubeExt = OpenTK.Graphics.OpenGL.All.UnsignedIntSamplerCubeExt; - var _UnsignedIntSampler2DRect = OpenTK.Graphics.OpenGL.All.UnsignedIntSampler2DRect; - var _UnsignedIntSampler2DRectExt = OpenTK.Graphics.OpenGL.All.UnsignedIntSampler2DRectExt; - var _UnsignedIntSampler1DArray = OpenTK.Graphics.OpenGL.All.UnsignedIntSampler1DArray; - var _UnsignedIntSampler1DArrayExt = OpenTK.Graphics.OpenGL.All.UnsignedIntSampler1DArrayExt; - var _UnsignedIntSampler2DArray = OpenTK.Graphics.OpenGL.All.UnsignedIntSampler2DArray; - var _UnsignedIntSampler2DArrayExt = OpenTK.Graphics.OpenGL.All.UnsignedIntSampler2DArrayExt; - var _UnsignedIntSamplerBuffer = OpenTK.Graphics.OpenGL.All.UnsignedIntSamplerBuffer; - var _UnsignedIntSamplerBufferExt = OpenTK.Graphics.OpenGL.All.UnsignedIntSamplerBufferExt; - var _GeometryShader = OpenTK.Graphics.OpenGL.All.GeometryShader; - var _GeometryShaderArb = OpenTK.Graphics.OpenGL.All.GeometryShaderArb; - var _GeometryShaderExt = OpenTK.Graphics.OpenGL.All.GeometryShaderExt; - var _GeometryVerticesOutArb = OpenTK.Graphics.OpenGL.All.GeometryVerticesOutArb; - var _GeometryVerticesOutExt = OpenTK.Graphics.OpenGL.All.GeometryVerticesOutExt; - var _GeometryInputTypeArb = OpenTK.Graphics.OpenGL.All.GeometryInputTypeArb; - var _GeometryInputTypeExt = OpenTK.Graphics.OpenGL.All.GeometryInputTypeExt; - var _GeometryOutputTypeArb = OpenTK.Graphics.OpenGL.All.GeometryOutputTypeArb; - var _GeometryOutputTypeExt = OpenTK.Graphics.OpenGL.All.GeometryOutputTypeExt; - var _MaxGeometryVaryingComponents = OpenTK.Graphics.OpenGL.All.MaxGeometryVaryingComponents; - var _MaxGeometryVaryingComponentsArb = OpenTK.Graphics.OpenGL.All.MaxGeometryVaryingComponentsArb; - var _MaxGeometryVaryingComponentsExt = OpenTK.Graphics.OpenGL.All.MaxGeometryVaryingComponentsExt; - var _MaxVertexVaryingComponents = OpenTK.Graphics.OpenGL.All.MaxVertexVaryingComponents; - var _MaxVertexVaryingComponentsArb = OpenTK.Graphics.OpenGL.All.MaxVertexVaryingComponentsArb; - var _MaxVertexVaryingComponentsExt = OpenTK.Graphics.OpenGL.All.MaxVertexVaryingComponentsExt; - var _MaxGeometryUniformComponents = OpenTK.Graphics.OpenGL.All.MaxGeometryUniformComponents; - var _MaxGeometryUniformComponentsArb = OpenTK.Graphics.OpenGL.All.MaxGeometryUniformComponentsArb; - var _MaxGeometryUniformComponentsExt = OpenTK.Graphics.OpenGL.All.MaxGeometryUniformComponentsExt; - var _MaxGeometryOutputVertices = OpenTK.Graphics.OpenGL.All.MaxGeometryOutputVertices; - var _MaxGeometryOutputVerticesArb = OpenTK.Graphics.OpenGL.All.MaxGeometryOutputVerticesArb; - var _MaxGeometryOutputVerticesExt = OpenTK.Graphics.OpenGL.All.MaxGeometryOutputVerticesExt; - var _MaxGeometryTotalOutputComponents = OpenTK.Graphics.OpenGL.All.MaxGeometryTotalOutputComponents; - var _MaxGeometryTotalOutputComponentsArb = OpenTK.Graphics.OpenGL.All.MaxGeometryTotalOutputComponentsArb; - var _MaxGeometryTotalOutputComponentsExt = OpenTK.Graphics.OpenGL.All.MaxGeometryTotalOutputComponentsExt; - var _MaxVertexBindableUniformsExt = OpenTK.Graphics.OpenGL.All.MaxVertexBindableUniformsExt; - var _MaxFragmentBindableUniformsExt = OpenTK.Graphics.OpenGL.All.MaxFragmentBindableUniformsExt; - var _MaxGeometryBindableUniformsExt = OpenTK.Graphics.OpenGL.All.MaxGeometryBindableUniformsExt; - var _ActiveSubroutines = OpenTK.Graphics.OpenGL.All.ActiveSubroutines; - var _ActiveSubroutineUniforms = OpenTK.Graphics.OpenGL.All.ActiveSubroutineUniforms; - var _MaxSubroutines = OpenTK.Graphics.OpenGL.All.MaxSubroutines; - var _MaxSubroutineUniformLocations = OpenTK.Graphics.OpenGL.All.MaxSubroutineUniformLocations; - var _NamedStringLengthArb = OpenTK.Graphics.OpenGL.All.NamedStringLengthArb; - var _NamedStringTypeArb = OpenTK.Graphics.OpenGL.All.NamedStringTypeArb; - var _MaxBindableUniformSizeExt = OpenTK.Graphics.OpenGL.All.MaxBindableUniformSizeExt; - var _UniformBufferExt = OpenTK.Graphics.OpenGL.All.UniformBufferExt; - var _UniformBufferBindingExt = OpenTK.Graphics.OpenGL.All.UniformBufferBindingExt; - var _LowFloat = OpenTK.Graphics.OpenGL.All.LowFloat; - var _MediumFloat = OpenTK.Graphics.OpenGL.All.MediumFloat; - var _HighFloat = OpenTK.Graphics.OpenGL.All.HighFloat; - var _LowInt = OpenTK.Graphics.OpenGL.All.LowInt; - var _MediumInt = OpenTK.Graphics.OpenGL.All.MediumInt; - var _HighInt = OpenTK.Graphics.OpenGL.All.HighInt; - var _ShaderBinaryFormats = OpenTK.Graphics.OpenGL.All.ShaderBinaryFormats; - var _NumShaderBinaryFormats = OpenTK.Graphics.OpenGL.All.NumShaderBinaryFormats; - var _ShaderCompiler = OpenTK.Graphics.OpenGL.All.ShaderCompiler; - var _MaxVertexUniformVectors = OpenTK.Graphics.OpenGL.All.MaxVertexUniformVectors; - var _MaxVaryingVectors = OpenTK.Graphics.OpenGL.All.MaxVaryingVectors; - var _MaxFragmentUniformVectors = OpenTK.Graphics.OpenGL.All.MaxFragmentUniformVectors; - var _RenderbufferColorSamplesNv = OpenTK.Graphics.OpenGL.All.RenderbufferColorSamplesNv; - var _MaxMultisampleCoverageModesNv = OpenTK.Graphics.OpenGL.All.MaxMultisampleCoverageModesNv; - var _MultisampleCoverageModesNv = OpenTK.Graphics.OpenGL.All.MultisampleCoverageModesNv; - var _QueryWait = OpenTK.Graphics.OpenGL.All.QueryWait; - var _QueryWaitNv = OpenTK.Graphics.OpenGL.All.QueryWaitNv; - var _QueryNoWait = OpenTK.Graphics.OpenGL.All.QueryNoWait; - var _QueryNoWaitNv = OpenTK.Graphics.OpenGL.All.QueryNoWaitNv; - var _QueryByRegionWait = OpenTK.Graphics.OpenGL.All.QueryByRegionWait; - var _QueryByRegionWaitNv = OpenTK.Graphics.OpenGL.All.QueryByRegionWaitNv; - var _QueryByRegionNoWait = OpenTK.Graphics.OpenGL.All.QueryByRegionNoWait; - var _QueryByRegionNoWaitNv = OpenTK.Graphics.OpenGL.All.QueryByRegionNoWaitNv; - var _MaxCombinedTessControlUniformComponents = OpenTK.Graphics.OpenGL.All.MaxCombinedTessControlUniformComponents; - var _MaxCombinedTessEvaluationUniformComponents = OpenTK.Graphics.OpenGL.All.MaxCombinedTessEvaluationUniformComponents; - var _ColorSamplesNv = OpenTK.Graphics.OpenGL.All.ColorSamplesNv; - var _TransformFeedback = OpenTK.Graphics.OpenGL.All.TransformFeedback; - var _TransformFeedbackNv = OpenTK.Graphics.OpenGL.All.TransformFeedbackNv; - var _TransformFeedbackBufferPaused = OpenTK.Graphics.OpenGL.All.TransformFeedbackBufferPaused; - var _TransformFeedbackBufferPausedNv = OpenTK.Graphics.OpenGL.All.TransformFeedbackBufferPausedNv; - var _TransformFeedbackPaused = OpenTK.Graphics.OpenGL.All.TransformFeedbackPaused; - var _TransformFeedbackActive = OpenTK.Graphics.OpenGL.All.TransformFeedbackActive; - var _TransformFeedbackBufferActive = OpenTK.Graphics.OpenGL.All.TransformFeedbackBufferActive; - var _TransformFeedbackBufferActiveNv = OpenTK.Graphics.OpenGL.All.TransformFeedbackBufferActiveNv; - var _TransformFeedbackBinding = OpenTK.Graphics.OpenGL.All.TransformFeedbackBinding; - var _TransformFeedbackBindingNv = OpenTK.Graphics.OpenGL.All.TransformFeedbackBindingNv; - var _FrameNv = OpenTK.Graphics.OpenGL.All.FrameNv; - var _FieldsNv = OpenTK.Graphics.OpenGL.All.FieldsNv; - var _CurrentTimeNv = OpenTK.Graphics.OpenGL.All.CurrentTimeNv; - var _Timestamp = OpenTK.Graphics.OpenGL.All.Timestamp; - var _NumFillStreamsNv = OpenTK.Graphics.OpenGL.All.NumFillStreamsNv; - var _PresentTimeNv = OpenTK.Graphics.OpenGL.All.PresentTimeNv; - var _PresentDurationNv = OpenTK.Graphics.OpenGL.All.PresentDurationNv; - var _ProgramMatrixExt = OpenTK.Graphics.OpenGL.All.ProgramMatrixExt; - var _TransposeProgramMatrixExt = OpenTK.Graphics.OpenGL.All.TransposeProgramMatrixExt; - var _ProgramMatrixStackDepthExt = OpenTK.Graphics.OpenGL.All.ProgramMatrixStackDepthExt; - var _TextureSwizzleR = OpenTK.Graphics.OpenGL.All.TextureSwizzleR; - var _TextureSwizzleRExt = OpenTK.Graphics.OpenGL.All.TextureSwizzleRExt; - var _TextureSwizzleG = OpenTK.Graphics.OpenGL.All.TextureSwizzleG; - var _TextureSwizzleGExt = OpenTK.Graphics.OpenGL.All.TextureSwizzleGExt; - var _TextureSwizzleB = OpenTK.Graphics.OpenGL.All.TextureSwizzleB; - var _TextureSwizzleBExt = OpenTK.Graphics.OpenGL.All.TextureSwizzleBExt; - var _TextureSwizzleA = OpenTK.Graphics.OpenGL.All.TextureSwizzleA; - var _TextureSwizzleAExt = OpenTK.Graphics.OpenGL.All.TextureSwizzleAExt; - var _TextureSwizzleRgba = OpenTK.Graphics.OpenGL.All.TextureSwizzleRgba; - var _TextureSwizzleRgbaExt = OpenTK.Graphics.OpenGL.All.TextureSwizzleRgbaExt; - var _ActiveSubroutineUniformLocations = OpenTK.Graphics.OpenGL.All.ActiveSubroutineUniformLocations; - var _ActiveSubroutineMaxLength = OpenTK.Graphics.OpenGL.All.ActiveSubroutineMaxLength; - var _ActiveSubroutineUniformMaxLength = OpenTK.Graphics.OpenGL.All.ActiveSubroutineUniformMaxLength; - var _NumCompatibleSubroutines = OpenTK.Graphics.OpenGL.All.NumCompatibleSubroutines; - var _CompatibleSubroutines = OpenTK.Graphics.OpenGL.All.CompatibleSubroutines; - var _QuadsFollowProvokingVertexConvention = OpenTK.Graphics.OpenGL.All.QuadsFollowProvokingVertexConvention; - var _QuadsFollowProvokingVertexConventionExt = OpenTK.Graphics.OpenGL.All.QuadsFollowProvokingVertexConventionExt; - var _FirstVertexConvention = OpenTK.Graphics.OpenGL.All.FirstVertexConvention; - var _FirstVertexConventionExt = OpenTK.Graphics.OpenGL.All.FirstVertexConventionExt; - var _LastVertexConvention = OpenTK.Graphics.OpenGL.All.LastVertexConvention; - var _LastVertexConventionExt = OpenTK.Graphics.OpenGL.All.LastVertexConventionExt; - var _ProvokingVertex = OpenTK.Graphics.OpenGL.All.ProvokingVertex; - var _ProvokingVertexExt = OpenTK.Graphics.OpenGL.All.ProvokingVertexExt; - var _SamplePosition = OpenTK.Graphics.OpenGL.All.SamplePosition; - var _SamplePositionNv = OpenTK.Graphics.OpenGL.All.SamplePositionNv; - var _SampleMask = OpenTK.Graphics.OpenGL.All.SampleMask; - var _SampleMaskNv = OpenTK.Graphics.OpenGL.All.SampleMaskNv; - var _SampleMaskValue = OpenTK.Graphics.OpenGL.All.SampleMaskValue; - var _SampleMaskValueNv = OpenTK.Graphics.OpenGL.All.SampleMaskValueNv; - var _TextureBindingRenderbufferNv = OpenTK.Graphics.OpenGL.All.TextureBindingRenderbufferNv; - var _TextureRenderbufferDataStoreBindingNv = OpenTK.Graphics.OpenGL.All.TextureRenderbufferDataStoreBindingNv; - var _TextureRenderbufferNv = OpenTK.Graphics.OpenGL.All.TextureRenderbufferNv; - var _SamplerRenderbufferNv = OpenTK.Graphics.OpenGL.All.SamplerRenderbufferNv; - var _IntSamplerRenderbufferNv = OpenTK.Graphics.OpenGL.All.IntSamplerRenderbufferNv; - var _UnsignedIntSamplerRenderbufferNv = OpenTK.Graphics.OpenGL.All.UnsignedIntSamplerRenderbufferNv; - var _MaxSampleMaskWords = OpenTK.Graphics.OpenGL.All.MaxSampleMaskWords; - var _MaxSampleMaskWordsNv = OpenTK.Graphics.OpenGL.All.MaxSampleMaskWordsNv; - var _MaxGeometryProgramInvocationsNv = OpenTK.Graphics.OpenGL.All.MaxGeometryProgramInvocationsNv; - var _MaxGeometryShaderInvocations = OpenTK.Graphics.OpenGL.All.MaxGeometryShaderInvocations; - var _MinFragmentInterpolationOffset = OpenTK.Graphics.OpenGL.All.MinFragmentInterpolationOffset; - var _MinFragmentInterpolationOffsetNv = OpenTK.Graphics.OpenGL.All.MinFragmentInterpolationOffsetNv; - var _MaxFragmentInterpolationOffset = OpenTK.Graphics.OpenGL.All.MaxFragmentInterpolationOffset; - var _MaxFragmentInterpolationOffsetNv = OpenTK.Graphics.OpenGL.All.MaxFragmentInterpolationOffsetNv; - var _FragmentInterpolationOffsetBits = OpenTK.Graphics.OpenGL.All.FragmentInterpolationOffsetBits; - var _FragmentProgramInterpolationOffsetBitsNv = OpenTK.Graphics.OpenGL.All.FragmentProgramInterpolationOffsetBitsNv; - var _MinProgramTextureGatherOffset = OpenTK.Graphics.OpenGL.All.MinProgramTextureGatherOffset; - var _MinProgramTextureGatherOffsetArb = OpenTK.Graphics.OpenGL.All.MinProgramTextureGatherOffsetArb; - var _MinProgramTextureGatherOffsetNv = OpenTK.Graphics.OpenGL.All.MinProgramTextureGatherOffsetNv; - var _MaxProgramTextureGatherOffset = OpenTK.Graphics.OpenGL.All.MaxProgramTextureGatherOffset; - var _MaxProgramTextureGatherOffsetArb = OpenTK.Graphics.OpenGL.All.MaxProgramTextureGatherOffsetArb; - var _MaxProgramTextureGatherOffsetNv = OpenTK.Graphics.OpenGL.All.MaxProgramTextureGatherOffsetNv; - var _MaxTransformFeedbackBuffers = OpenTK.Graphics.OpenGL.All.MaxTransformFeedbackBuffers; - var _MaxVertexStreams = OpenTK.Graphics.OpenGL.All.MaxVertexStreams; - var _PatchVertices = OpenTK.Graphics.OpenGL.All.PatchVertices; - var _PatchDefaultInnerLevel = OpenTK.Graphics.OpenGL.All.PatchDefaultInnerLevel; - var _PatchDefaultOuterLevel = OpenTK.Graphics.OpenGL.All.PatchDefaultOuterLevel; - var _TessControlOutputVertices = OpenTK.Graphics.OpenGL.All.TessControlOutputVertices; - var _TessGenMode = OpenTK.Graphics.OpenGL.All.TessGenMode; - var _TessGenSpacing = OpenTK.Graphics.OpenGL.All.TessGenSpacing; - var _TessGenVertexOrder = OpenTK.Graphics.OpenGL.All.TessGenVertexOrder; - var _TessGenPointMode = OpenTK.Graphics.OpenGL.All.TessGenPointMode; - var _Isolines = OpenTK.Graphics.OpenGL.All.Isolines; - var _FractionalOdd = OpenTK.Graphics.OpenGL.All.FractionalOdd; - var _FractionalEven = OpenTK.Graphics.OpenGL.All.FractionalEven; - var _MaxPatchVertices = OpenTK.Graphics.OpenGL.All.MaxPatchVertices; - var _MaxTessGenLevel = OpenTK.Graphics.OpenGL.All.MaxTessGenLevel; - var _MaxTessControlUniformComponents = OpenTK.Graphics.OpenGL.All.MaxTessControlUniformComponents; - var _MaxTessEvaluationUniformComponents = OpenTK.Graphics.OpenGL.All.MaxTessEvaluationUniformComponents; - var _MaxTessControlTextureImageUnits = OpenTK.Graphics.OpenGL.All.MaxTessControlTextureImageUnits; - var _MaxTessEvaluationTextureImageUnits = OpenTK.Graphics.OpenGL.All.MaxTessEvaluationTextureImageUnits; - var _MaxTessControlOutputComponents = OpenTK.Graphics.OpenGL.All.MaxTessControlOutputComponents; - var _MaxTessPatchComponents = OpenTK.Graphics.OpenGL.All.MaxTessPatchComponents; - var _MaxTessControlTotalOutputComponents = OpenTK.Graphics.OpenGL.All.MaxTessControlTotalOutputComponents; - var _MaxTessEvaluationOutputComponents = OpenTK.Graphics.OpenGL.All.MaxTessEvaluationOutputComponents; - var _TessEvaluationShader = OpenTK.Graphics.OpenGL.All.TessEvaluationShader; - var _TessControlShader = OpenTK.Graphics.OpenGL.All.TessControlShader; - var _MaxTessControlUniformBlocks = OpenTK.Graphics.OpenGL.All.MaxTessControlUniformBlocks; - var _MaxTessEvaluationUniformBlocks = OpenTK.Graphics.OpenGL.All.MaxTessEvaluationUniformBlocks; - var _CompressedRgbaBptcUnorm = OpenTK.Graphics.OpenGL.All.CompressedRgbaBptcUnorm; - var _CompressedRgbaBptcUnormArb = OpenTK.Graphics.OpenGL.All.CompressedRgbaBptcUnormArb; - var _CompressedSrgbAlphaBptcUnorm = OpenTK.Graphics.OpenGL.All.CompressedSrgbAlphaBptcUnorm; - var _CompressedSrgbAlphaBptcUnormArb = OpenTK.Graphics.OpenGL.All.CompressedSrgbAlphaBptcUnormArb; - var _CompressedRgbBptcSignedFloat = OpenTK.Graphics.OpenGL.All.CompressedRgbBptcSignedFloat; - var _CompressedRgbBptcSignedFloatArb = OpenTK.Graphics.OpenGL.All.CompressedRgbBptcSignedFloatArb; - var _CompressedRgbBptcUnsignedFloat = OpenTK.Graphics.OpenGL.All.CompressedRgbBptcUnsignedFloat; - var _CompressedRgbBptcUnsignedFloatArb = OpenTK.Graphics.OpenGL.All.CompressedRgbBptcUnsignedFloatArb; - var _BufferGpuAddressNv = OpenTK.Graphics.OpenGL.All.BufferGpuAddressNv; - var _VertexAttribArrayUnifiedNv = OpenTK.Graphics.OpenGL.All.VertexAttribArrayUnifiedNv; - var _ElementArrayUnifiedNv = OpenTK.Graphics.OpenGL.All.ElementArrayUnifiedNv; - var _VertexAttribArrayAddressNv = OpenTK.Graphics.OpenGL.All.VertexAttribArrayAddressNv; - var _VertexArrayAddressNv = OpenTK.Graphics.OpenGL.All.VertexArrayAddressNv; - var _NormalArrayAddressNv = OpenTK.Graphics.OpenGL.All.NormalArrayAddressNv; - var _ColorArrayAddressNv = OpenTK.Graphics.OpenGL.All.ColorArrayAddressNv; - var _IndexArrayAddressNv = OpenTK.Graphics.OpenGL.All.IndexArrayAddressNv; - var _TextureCoordArrayAddressNv = OpenTK.Graphics.OpenGL.All.TextureCoordArrayAddressNv; - var _EdgeFlagArrayAddressNv = OpenTK.Graphics.OpenGL.All.EdgeFlagArrayAddressNv; - var _SecondaryColorArrayAddressNv = OpenTK.Graphics.OpenGL.All.SecondaryColorArrayAddressNv; - var _FogCoordArrayAddressNv = OpenTK.Graphics.OpenGL.All.FogCoordArrayAddressNv; - var _ElementArrayAddressNv = OpenTK.Graphics.OpenGL.All.ElementArrayAddressNv; - var _VertexAttribArrayLengthNv = OpenTK.Graphics.OpenGL.All.VertexAttribArrayLengthNv; - var _VertexArrayLengthNv = OpenTK.Graphics.OpenGL.All.VertexArrayLengthNv; - var _NormalArrayLengthNv = OpenTK.Graphics.OpenGL.All.NormalArrayLengthNv; - var _ColorArrayLengthNv = OpenTK.Graphics.OpenGL.All.ColorArrayLengthNv; - var _IndexArrayLengthNv = OpenTK.Graphics.OpenGL.All.IndexArrayLengthNv; - var _TextureCoordArrayLengthNv = OpenTK.Graphics.OpenGL.All.TextureCoordArrayLengthNv; - var _EdgeFlagArrayLengthNv = OpenTK.Graphics.OpenGL.All.EdgeFlagArrayLengthNv; - var _SecondaryColorArrayLengthNv = OpenTK.Graphics.OpenGL.All.SecondaryColorArrayLengthNv; - var _FogCoordArrayLengthNv = OpenTK.Graphics.OpenGL.All.FogCoordArrayLengthNv; - var _ElementArrayLengthNv = OpenTK.Graphics.OpenGL.All.ElementArrayLengthNv; - var _GpuAddressNv = OpenTK.Graphics.OpenGL.All.GpuAddressNv; - var _MaxShaderBufferAddressNv = OpenTK.Graphics.OpenGL.All.MaxShaderBufferAddressNv; - var _CopyReadBuffer = OpenTK.Graphics.OpenGL.All.CopyReadBuffer; - var _CopyReadBufferBinding = OpenTK.Graphics.OpenGL.All.CopyReadBufferBinding; - var _CopyWriteBuffer = OpenTK.Graphics.OpenGL.All.CopyWriteBuffer; - var _CopyWriteBufferBinding = OpenTK.Graphics.OpenGL.All.CopyWriteBufferBinding; - var _MaxImageUnits = OpenTK.Graphics.OpenGL.All.MaxImageUnits; - var _MaxImageUnitsExt = OpenTK.Graphics.OpenGL.All.MaxImageUnitsExt; - var _MaxCombinedImageUnitsAndFragmentOutputs = OpenTK.Graphics.OpenGL.All.MaxCombinedImageUnitsAndFragmentOutputs; - var _MaxCombinedImageUnitsAndFragmentOutputsExt = OpenTK.Graphics.OpenGL.All.MaxCombinedImageUnitsAndFragmentOutputsExt; - var _MaxCombinedShaderOutputResources = OpenTK.Graphics.OpenGL.All.MaxCombinedShaderOutputResources; - var _ImageBindingName = OpenTK.Graphics.OpenGL.All.ImageBindingName; - var _ImageBindingNameExt = OpenTK.Graphics.OpenGL.All.ImageBindingNameExt; - var _ImageBindingLevel = OpenTK.Graphics.OpenGL.All.ImageBindingLevel; - var _ImageBindingLevelExt = OpenTK.Graphics.OpenGL.All.ImageBindingLevelExt; - var _ImageBindingLayered = OpenTK.Graphics.OpenGL.All.ImageBindingLayered; - var _ImageBindingLayeredExt = OpenTK.Graphics.OpenGL.All.ImageBindingLayeredExt; - var _ImageBindingLayer = OpenTK.Graphics.OpenGL.All.ImageBindingLayer; - var _ImageBindingLayerExt = OpenTK.Graphics.OpenGL.All.ImageBindingLayerExt; - var _ImageBindingAccess = OpenTK.Graphics.OpenGL.All.ImageBindingAccess; - var _ImageBindingAccessExt = OpenTK.Graphics.OpenGL.All.ImageBindingAccessExt; - var _DrawIndirectBuffer = OpenTK.Graphics.OpenGL.All.DrawIndirectBuffer; - var _DrawIndirectUnifiedNv = OpenTK.Graphics.OpenGL.All.DrawIndirectUnifiedNv; - var _DrawIndirectAddressNv = OpenTK.Graphics.OpenGL.All.DrawIndirectAddressNv; - var _DrawIndirectLengthNv = OpenTK.Graphics.OpenGL.All.DrawIndirectLengthNv; - var _DrawIndirectBufferBinding = OpenTK.Graphics.OpenGL.All.DrawIndirectBufferBinding; - var _MaxProgramSubroutineParametersNv = OpenTK.Graphics.OpenGL.All.MaxProgramSubroutineParametersNv; - var _MaxProgramSubroutineNumNv = OpenTK.Graphics.OpenGL.All.MaxProgramSubroutineNumNv; - var _DoubleMat2 = OpenTK.Graphics.OpenGL.All.DoubleMat2; - var _DoubleMat2Ext = OpenTK.Graphics.OpenGL.All.DoubleMat2Ext; - var _DoubleMat3 = OpenTK.Graphics.OpenGL.All.DoubleMat3; - var _DoubleMat3Ext = OpenTK.Graphics.OpenGL.All.DoubleMat3Ext; - var _DoubleMat4 = OpenTK.Graphics.OpenGL.All.DoubleMat4; - var _DoubleMat4Ext = OpenTK.Graphics.OpenGL.All.DoubleMat4Ext; - var _DoubleMat2x3 = OpenTK.Graphics.OpenGL.All.DoubleMat2x3; - var _DoubleMat2x3Ext = OpenTK.Graphics.OpenGL.All.DoubleMat2x3Ext; - var _DoubleMat2x4 = OpenTK.Graphics.OpenGL.All.DoubleMat2x4; - var _DoubleMat2x4Ext = OpenTK.Graphics.OpenGL.All.DoubleMat2x4Ext; - var _DoubleMat3x2 = OpenTK.Graphics.OpenGL.All.DoubleMat3x2; - var _DoubleMat3x2Ext = OpenTK.Graphics.OpenGL.All.DoubleMat3x2Ext; - var _DoubleMat3x4 = OpenTK.Graphics.OpenGL.All.DoubleMat3x4; - var _DoubleMat3x4Ext = OpenTK.Graphics.OpenGL.All.DoubleMat3x4Ext; - var _DoubleMat4x2 = OpenTK.Graphics.OpenGL.All.DoubleMat4x2; - var _DoubleMat4x2Ext = OpenTK.Graphics.OpenGL.All.DoubleMat4x2Ext; - var _DoubleMat4x3 = OpenTK.Graphics.OpenGL.All.DoubleMat4x3; - var _DoubleMat4x3Ext = OpenTK.Graphics.OpenGL.All.DoubleMat4x3Ext; - var _VertexBindingBuffer = OpenTK.Graphics.OpenGL.All.VertexBindingBuffer; - var _RedSnorm = OpenTK.Graphics.OpenGL.All.RedSnorm; - var _RgSnorm = OpenTK.Graphics.OpenGL.All.RgSnorm; - var _RgbSnorm = OpenTK.Graphics.OpenGL.All.RgbSnorm; - var _RgbaSnorm = OpenTK.Graphics.OpenGL.All.RgbaSnorm; - var _R8Snorm = OpenTK.Graphics.OpenGL.All.R8Snorm; - var _Rg8Snorm = OpenTK.Graphics.OpenGL.All.Rg8Snorm; - var _Rgb8Snorm = OpenTK.Graphics.OpenGL.All.Rgb8Snorm; - var _Rgba8Snorm = OpenTK.Graphics.OpenGL.All.Rgba8Snorm; - var _R16Snorm = OpenTK.Graphics.OpenGL.All.R16Snorm; - var _Rg16Snorm = OpenTK.Graphics.OpenGL.All.Rg16Snorm; - var _Rgb16Snorm = OpenTK.Graphics.OpenGL.All.Rgb16Snorm; - var _Rgba16Snorm = OpenTK.Graphics.OpenGL.All.Rgba16Snorm; - var _SignedNormalized = OpenTK.Graphics.OpenGL.All.SignedNormalized; - var _PrimitiveRestart = OpenTK.Graphics.OpenGL.All.PrimitiveRestart; - var _PrimitiveRestartIndex = OpenTK.Graphics.OpenGL.All.PrimitiveRestartIndex; - var _MaxProgramTextureGatherComponentsArb = OpenTK.Graphics.OpenGL.All.MaxProgramTextureGatherComponentsArb; - var _BinningControlHintQcom = OpenTK.Graphics.OpenGL.All.BinningControlHintQcom; - var _Int8Nv = OpenTK.Graphics.OpenGL.All.Int8Nv; - var _Int8Vec2Nv = OpenTK.Graphics.OpenGL.All.Int8Vec2Nv; - var _Int8Vec3Nv = OpenTK.Graphics.OpenGL.All.Int8Vec3Nv; - var _Int8Vec4Nv = OpenTK.Graphics.OpenGL.All.Int8Vec4Nv; - var _Int16Nv = OpenTK.Graphics.OpenGL.All.Int16Nv; - var _Int16Vec2Nv = OpenTK.Graphics.OpenGL.All.Int16Vec2Nv; - var _Int16Vec3Nv = OpenTK.Graphics.OpenGL.All.Int16Vec3Nv; - var _Int16Vec4Nv = OpenTK.Graphics.OpenGL.All.Int16Vec4Nv; - var _Int64Vec2Nv = OpenTK.Graphics.OpenGL.All.Int64Vec2Nv; - var _Int64Vec3Nv = OpenTK.Graphics.OpenGL.All.Int64Vec3Nv; - var _Int64Vec4Nv = OpenTK.Graphics.OpenGL.All.Int64Vec4Nv; - var _UnsignedInt8Nv = OpenTK.Graphics.OpenGL.All.UnsignedInt8Nv; - var _UnsignedInt8Vec2Nv = OpenTK.Graphics.OpenGL.All.UnsignedInt8Vec2Nv; - var _UnsignedInt8Vec3Nv = OpenTK.Graphics.OpenGL.All.UnsignedInt8Vec3Nv; - var _UnsignedInt8Vec4Nv = OpenTK.Graphics.OpenGL.All.UnsignedInt8Vec4Nv; - var _UnsignedInt16Nv = OpenTK.Graphics.OpenGL.All.UnsignedInt16Nv; - var _UnsignedInt16Vec2Nv = OpenTK.Graphics.OpenGL.All.UnsignedInt16Vec2Nv; - var _UnsignedInt16Vec3Nv = OpenTK.Graphics.OpenGL.All.UnsignedInt16Vec3Nv; - var _UnsignedInt16Vec4Nv = OpenTK.Graphics.OpenGL.All.UnsignedInt16Vec4Nv; - var _UnsignedInt64Vec2Nv = OpenTK.Graphics.OpenGL.All.UnsignedInt64Vec2Nv; - var _UnsignedInt64Vec3Nv = OpenTK.Graphics.OpenGL.All.UnsignedInt64Vec3Nv; - var _UnsignedInt64Vec4Nv = OpenTK.Graphics.OpenGL.All.UnsignedInt64Vec4Nv; - var _Float16Nv = OpenTK.Graphics.OpenGL.All.Float16Nv; - var _Float16Vec2Nv = OpenTK.Graphics.OpenGL.All.Float16Vec2Nv; - var _Float16Vec3Nv = OpenTK.Graphics.OpenGL.All.Float16Vec3Nv; - var _Float16Vec4Nv = OpenTK.Graphics.OpenGL.All.Float16Vec4Nv; - var _DoubleVec2 = OpenTK.Graphics.OpenGL.All.DoubleVec2; - var _DoubleVec2Ext = OpenTK.Graphics.OpenGL.All.DoubleVec2Ext; - var _DoubleVec3 = OpenTK.Graphics.OpenGL.All.DoubleVec3; - var _DoubleVec3Ext = OpenTK.Graphics.OpenGL.All.DoubleVec3Ext; - var _DoubleVec4 = OpenTK.Graphics.OpenGL.All.DoubleVec4; - var _DoubleVec4Ext = OpenTK.Graphics.OpenGL.All.DoubleVec4Ext; - var _SamplerBufferAmd = OpenTK.Graphics.OpenGL.All.SamplerBufferAmd; - var _IntSamplerBufferAmd = OpenTK.Graphics.OpenGL.All.IntSamplerBufferAmd; - var _UnsignedIntSamplerBufferAmd = OpenTK.Graphics.OpenGL.All.UnsignedIntSamplerBufferAmd; - var _TessellationModeAmd = OpenTK.Graphics.OpenGL.All.TessellationModeAmd; - var _TessellationFactorAmd = OpenTK.Graphics.OpenGL.All.TessellationFactorAmd; - var _DiscreteAmd = OpenTK.Graphics.OpenGL.All.DiscreteAmd; - var _ContinuousAmd = OpenTK.Graphics.OpenGL.All.ContinuousAmd; - var _TextureCubeMapArray = OpenTK.Graphics.OpenGL.All.TextureCubeMapArray; - var _TextureCubeMapArrayArb = OpenTK.Graphics.OpenGL.All.TextureCubeMapArrayArb; - var _TextureBindingCubeMapArray = OpenTK.Graphics.OpenGL.All.TextureBindingCubeMapArray; - var _TextureBindingCubeMapArrayArb = OpenTK.Graphics.OpenGL.All.TextureBindingCubeMapArrayArb; - var _ProxyTextureCubeMapArray = OpenTK.Graphics.OpenGL.All.ProxyTextureCubeMapArray; - var _ProxyTextureCubeMapArrayArb = OpenTK.Graphics.OpenGL.All.ProxyTextureCubeMapArrayArb; - var _SamplerCubeMapArray = OpenTK.Graphics.OpenGL.All.SamplerCubeMapArray; - var _SamplerCubeMapArrayArb = OpenTK.Graphics.OpenGL.All.SamplerCubeMapArrayArb; - var _SamplerCubeMapArrayShadow = OpenTK.Graphics.OpenGL.All.SamplerCubeMapArrayShadow; - var _SamplerCubeMapArrayShadowArb = OpenTK.Graphics.OpenGL.All.SamplerCubeMapArrayShadowArb; - var _IntSamplerCubeMapArray = OpenTK.Graphics.OpenGL.All.IntSamplerCubeMapArray; - var _IntSamplerCubeMapArrayArb = OpenTK.Graphics.OpenGL.All.IntSamplerCubeMapArrayArb; - var _UnsignedIntSamplerCubeMapArray = OpenTK.Graphics.OpenGL.All.UnsignedIntSamplerCubeMapArray; - var _UnsignedIntSamplerCubeMapArrayArb = OpenTK.Graphics.OpenGL.All.UnsignedIntSamplerCubeMapArrayArb; - var _AlphaSnorm = OpenTK.Graphics.OpenGL.All.AlphaSnorm; - var _LuminanceSnorm = OpenTK.Graphics.OpenGL.All.LuminanceSnorm; - var _LuminanceAlphaSnorm = OpenTK.Graphics.OpenGL.All.LuminanceAlphaSnorm; - var _IntensitySnorm = OpenTK.Graphics.OpenGL.All.IntensitySnorm; - var _Alpha8Snorm = OpenTK.Graphics.OpenGL.All.Alpha8Snorm; - var _Luminance8Snorm = OpenTK.Graphics.OpenGL.All.Luminance8Snorm; - var _Luminance8Alpha8Snorm = OpenTK.Graphics.OpenGL.All.Luminance8Alpha8Snorm; - var _Intensity8Snorm = OpenTK.Graphics.OpenGL.All.Intensity8Snorm; - var _Alpha16Snorm = OpenTK.Graphics.OpenGL.All.Alpha16Snorm; - var _Luminance16Snorm = OpenTK.Graphics.OpenGL.All.Luminance16Snorm; - var _Luminance16Alpha16Snorm = OpenTK.Graphics.OpenGL.All.Luminance16Alpha16Snorm; - var _Intensity16Snorm = OpenTK.Graphics.OpenGL.All.Intensity16Snorm; - var _FactorMinAmd = OpenTK.Graphics.OpenGL.All.FactorMinAmd; - var _FactorMaxAmd = OpenTK.Graphics.OpenGL.All.FactorMaxAmd; - var _DepthClampNearAmd = OpenTK.Graphics.OpenGL.All.DepthClampNearAmd; - var _DepthClampFarAmd = OpenTK.Graphics.OpenGL.All.DepthClampFarAmd; - var _VideoBufferNv = OpenTK.Graphics.OpenGL.All.VideoBufferNv; - var _VideoBufferBindingNv = OpenTK.Graphics.OpenGL.All.VideoBufferBindingNv; - var _FieldUpperNv = OpenTK.Graphics.OpenGL.All.FieldUpperNv; - var _FieldLowerNv = OpenTK.Graphics.OpenGL.All.FieldLowerNv; - var _NumVideoCaptureStreamsNv = OpenTK.Graphics.OpenGL.All.NumVideoCaptureStreamsNv; - var _NextVideoCaptureBufferStatusNv = OpenTK.Graphics.OpenGL.All.NextVideoCaptureBufferStatusNv; - var _VideoCaptureTo422SupportedNv = OpenTK.Graphics.OpenGL.All.VideoCaptureTo422SupportedNv; - var _LastVideoCaptureStatusNv = OpenTK.Graphics.OpenGL.All.LastVideoCaptureStatusNv; - var _VideoBufferPitchNv = OpenTK.Graphics.OpenGL.All.VideoBufferPitchNv; - var _VideoColorConversionMatrixNv = OpenTK.Graphics.OpenGL.All.VideoColorConversionMatrixNv; - var _VideoColorConversionMaxNv = OpenTK.Graphics.OpenGL.All.VideoColorConversionMaxNv; - var _VideoColorConversionMinNv = OpenTK.Graphics.OpenGL.All.VideoColorConversionMinNv; - var _VideoColorConversionOffsetNv = OpenTK.Graphics.OpenGL.All.VideoColorConversionOffsetNv; - var _VideoBufferInternalFormatNv = OpenTK.Graphics.OpenGL.All.VideoBufferInternalFormatNv; - var _PartialSuccessNv = OpenTK.Graphics.OpenGL.All.PartialSuccessNv; - var _SuccessNv = OpenTK.Graphics.OpenGL.All.SuccessNv; - var _FailureNv = OpenTK.Graphics.OpenGL.All.FailureNv; - var _Ycbycr8422Nv = OpenTK.Graphics.OpenGL.All.Ycbycr8422Nv; - var _Ycbaycr8A4224Nv = OpenTK.Graphics.OpenGL.All.Ycbaycr8A4224Nv; - var _Z6y10z6cb10z6y10z6cr10422Nv = OpenTK.Graphics.OpenGL.All.Z6y10z6cb10z6y10z6cr10422Nv; - var _Z6y10z6cb10z6A10z6y10z6cr10z6A104224Nv = OpenTK.Graphics.OpenGL.All.Z6y10z6cb10z6A10z6y10z6cr10z6A104224Nv; - var _Z4y12z4cb12z4y12z4cr12422Nv = OpenTK.Graphics.OpenGL.All.Z4y12z4cb12z4y12z4cr12422Nv; - var _Z4y12z4cb12z4A12z4y12z4cr12z4A124224Nv = OpenTK.Graphics.OpenGL.All.Z4y12z4cb12z4A12z4y12z4cr12z4A124224Nv; - var _Z4y12z4cb12z4cr12444Nv = OpenTK.Graphics.OpenGL.All.Z4y12z4cb12z4cr12444Nv; - var _VideoCaptureFrameWidthNv = OpenTK.Graphics.OpenGL.All.VideoCaptureFrameWidthNv; - var _VideoCaptureFrameHeightNv = OpenTK.Graphics.OpenGL.All.VideoCaptureFrameHeightNv; - var _VideoCaptureFieldUpperHeightNv = OpenTK.Graphics.OpenGL.All.VideoCaptureFieldUpperHeightNv; - var _VideoCaptureFieldLowerHeightNv = OpenTK.Graphics.OpenGL.All.VideoCaptureFieldLowerHeightNv; - var _VideoCaptureSurfaceOriginNv = OpenTK.Graphics.OpenGL.All.VideoCaptureSurfaceOriginNv; - var _TextureCoverageSamplesNv = OpenTK.Graphics.OpenGL.All.TextureCoverageSamplesNv; - var _TextureColorSamplesNv = OpenTK.Graphics.OpenGL.All.TextureColorSamplesNv; - var _GpuMemoryInfoDedicatedVidmemNvx = OpenTK.Graphics.OpenGL.All.GpuMemoryInfoDedicatedVidmemNvx; - var _GpuMemoryInfoTotalAvailableMemoryNvx = OpenTK.Graphics.OpenGL.All.GpuMemoryInfoTotalAvailableMemoryNvx; - var _GpuMemoryInfoCurrentAvailableVidmemNvx = OpenTK.Graphics.OpenGL.All.GpuMemoryInfoCurrentAvailableVidmemNvx; - var _GpuMemoryInfoEvictionCountNvx = OpenTK.Graphics.OpenGL.All.GpuMemoryInfoEvictionCountNvx; - var _GpuMemoryInfoEvictedMemoryNvx = OpenTK.Graphics.OpenGL.All.GpuMemoryInfoEvictedMemoryNvx; - var _Image1D = OpenTK.Graphics.OpenGL.All.Image1D; - var _Image1DExt = OpenTK.Graphics.OpenGL.All.Image1DExt; - var _Image2D = OpenTK.Graphics.OpenGL.All.Image2D; - var _Image2DExt = OpenTK.Graphics.OpenGL.All.Image2DExt; - var _Image3D = OpenTK.Graphics.OpenGL.All.Image3D; - var _Image3DExt = OpenTK.Graphics.OpenGL.All.Image3DExt; - var _Image2DRect = OpenTK.Graphics.OpenGL.All.Image2DRect; - var _Image2DRectExt = OpenTK.Graphics.OpenGL.All.Image2DRectExt; - var _ImageCube = OpenTK.Graphics.OpenGL.All.ImageCube; - var _ImageCubeExt = OpenTK.Graphics.OpenGL.All.ImageCubeExt; - var _ImageBuffer = OpenTK.Graphics.OpenGL.All.ImageBuffer; - var _ImageBufferExt = OpenTK.Graphics.OpenGL.All.ImageBufferExt; - var _Image1DArray = OpenTK.Graphics.OpenGL.All.Image1DArray; - var _Image1DArrayExt = OpenTK.Graphics.OpenGL.All.Image1DArrayExt; - var _Image2DArray = OpenTK.Graphics.OpenGL.All.Image2DArray; - var _Image2DArrayExt = OpenTK.Graphics.OpenGL.All.Image2DArrayExt; - var _ImageCubeMapArray = OpenTK.Graphics.OpenGL.All.ImageCubeMapArray; - var _ImageCubeMapArrayExt = OpenTK.Graphics.OpenGL.All.ImageCubeMapArrayExt; - var _Image2DMultisample = OpenTK.Graphics.OpenGL.All.Image2DMultisample; - var _Image2DMultisampleExt = OpenTK.Graphics.OpenGL.All.Image2DMultisampleExt; - var _Image2DMultisampleArray = OpenTK.Graphics.OpenGL.All.Image2DMultisampleArray; - var _Image2DMultisampleArrayExt = OpenTK.Graphics.OpenGL.All.Image2DMultisampleArrayExt; - var _IntImage1D = OpenTK.Graphics.OpenGL.All.IntImage1D; - var _IntImage1DExt = OpenTK.Graphics.OpenGL.All.IntImage1DExt; - var _IntImage2D = OpenTK.Graphics.OpenGL.All.IntImage2D; - var _IntImage2DExt = OpenTK.Graphics.OpenGL.All.IntImage2DExt; - var _IntImage3D = OpenTK.Graphics.OpenGL.All.IntImage3D; - var _IntImage3DExt = OpenTK.Graphics.OpenGL.All.IntImage3DExt; - var _IntImage2DRect = OpenTK.Graphics.OpenGL.All.IntImage2DRect; - var _IntImage2DRectExt = OpenTK.Graphics.OpenGL.All.IntImage2DRectExt; - var _IntImageCube = OpenTK.Graphics.OpenGL.All.IntImageCube; - var _IntImageCubeExt = OpenTK.Graphics.OpenGL.All.IntImageCubeExt; - var _IntImageBuffer = OpenTK.Graphics.OpenGL.All.IntImageBuffer; - var _IntImageBufferExt = OpenTK.Graphics.OpenGL.All.IntImageBufferExt; - var _IntImage1DArray = OpenTK.Graphics.OpenGL.All.IntImage1DArray; - var _IntImage1DArrayExt = OpenTK.Graphics.OpenGL.All.IntImage1DArrayExt; - var _IntImage2DArray = OpenTK.Graphics.OpenGL.All.IntImage2DArray; - var _IntImage2DArrayExt = OpenTK.Graphics.OpenGL.All.IntImage2DArrayExt; - var _IntImageCubeMapArray = OpenTK.Graphics.OpenGL.All.IntImageCubeMapArray; - var _IntImageCubeMapArrayExt = OpenTK.Graphics.OpenGL.All.IntImageCubeMapArrayExt; - var _IntImage2DMultisample = OpenTK.Graphics.OpenGL.All.IntImage2DMultisample; - var _IntImage2DMultisampleExt = OpenTK.Graphics.OpenGL.All.IntImage2DMultisampleExt; - var _IntImage2DMultisampleArray = OpenTK.Graphics.OpenGL.All.IntImage2DMultisampleArray; - var _IntImage2DMultisampleArrayExt = OpenTK.Graphics.OpenGL.All.IntImage2DMultisampleArrayExt; - var _UnsignedIntImage1D = OpenTK.Graphics.OpenGL.All.UnsignedIntImage1D; - var _UnsignedIntImage1DExt = OpenTK.Graphics.OpenGL.All.UnsignedIntImage1DExt; - var _UnsignedIntImage2D = OpenTK.Graphics.OpenGL.All.UnsignedIntImage2D; - var _UnsignedIntImage2DExt = OpenTK.Graphics.OpenGL.All.UnsignedIntImage2DExt; - var _UnsignedIntImage3D = OpenTK.Graphics.OpenGL.All.UnsignedIntImage3D; - var _UnsignedIntImage3DExt = OpenTK.Graphics.OpenGL.All.UnsignedIntImage3DExt; - var _UnsignedIntImage2DRect = OpenTK.Graphics.OpenGL.All.UnsignedIntImage2DRect; - var _UnsignedIntImage2DRectExt = OpenTK.Graphics.OpenGL.All.UnsignedIntImage2DRectExt; - var _UnsignedIntImageCube = OpenTK.Graphics.OpenGL.All.UnsignedIntImageCube; - var _UnsignedIntImageCubeExt = OpenTK.Graphics.OpenGL.All.UnsignedIntImageCubeExt; - var _UnsignedIntImageBuffer = OpenTK.Graphics.OpenGL.All.UnsignedIntImageBuffer; - var _UnsignedIntImageBufferExt = OpenTK.Graphics.OpenGL.All.UnsignedIntImageBufferExt; - var _UnsignedIntImage1DArray = OpenTK.Graphics.OpenGL.All.UnsignedIntImage1DArray; - var _UnsignedIntImage1DArrayExt = OpenTK.Graphics.OpenGL.All.UnsignedIntImage1DArrayExt; - var _UnsignedIntImage2DArray = OpenTK.Graphics.OpenGL.All.UnsignedIntImage2DArray; - var _UnsignedIntImage2DArrayExt = OpenTK.Graphics.OpenGL.All.UnsignedIntImage2DArrayExt; - var _UnsignedIntImageCubeMapArray = OpenTK.Graphics.OpenGL.All.UnsignedIntImageCubeMapArray; - var _UnsignedIntImageCubeMapArrayExt = OpenTK.Graphics.OpenGL.All.UnsignedIntImageCubeMapArrayExt; - var _UnsignedIntImage2DMultisample = OpenTK.Graphics.OpenGL.All.UnsignedIntImage2DMultisample; - var _UnsignedIntImage2DMultisampleExt = OpenTK.Graphics.OpenGL.All.UnsignedIntImage2DMultisampleExt; - var _UnsignedIntImage2DMultisampleArray = OpenTK.Graphics.OpenGL.All.UnsignedIntImage2DMultisampleArray; - var _UnsignedIntImage2DMultisampleArrayExt = OpenTK.Graphics.OpenGL.All.UnsignedIntImage2DMultisampleArrayExt; - var _MaxImageSamples = OpenTK.Graphics.OpenGL.All.MaxImageSamples; - var _MaxImageSamplesExt = OpenTK.Graphics.OpenGL.All.MaxImageSamplesExt; - var _ImageBindingFormat = OpenTK.Graphics.OpenGL.All.ImageBindingFormat; - var _ImageBindingFormatExt = OpenTK.Graphics.OpenGL.All.ImageBindingFormatExt; - var _Rgb10A2ui = OpenTK.Graphics.OpenGL.All.Rgb10A2ui; - var _PathFormatSvgNv = OpenTK.Graphics.OpenGL.All.PathFormatSvgNv; - var _PathFormatPsNv = OpenTK.Graphics.OpenGL.All.PathFormatPsNv; - var _StandardFontNameNv = OpenTK.Graphics.OpenGL.All.StandardFontNameNv; - var _SystemFontNameNv = OpenTK.Graphics.OpenGL.All.SystemFontNameNv; - var _FileNameNv = OpenTK.Graphics.OpenGL.All.FileNameNv; - var _PathStrokeWidthNv = OpenTK.Graphics.OpenGL.All.PathStrokeWidthNv; - var _PathEndCapsNv = OpenTK.Graphics.OpenGL.All.PathEndCapsNv; - var _PathInitialEndCapNv = OpenTK.Graphics.OpenGL.All.PathInitialEndCapNv; - var _PathTerminalEndCapNv = OpenTK.Graphics.OpenGL.All.PathTerminalEndCapNv; - var _PathJoinStyleNv = OpenTK.Graphics.OpenGL.All.PathJoinStyleNv; - var _PathMiterLimitNv = OpenTK.Graphics.OpenGL.All.PathMiterLimitNv; - var _PathDashCapsNv = OpenTK.Graphics.OpenGL.All.PathDashCapsNv; - var _PathInitialDashCapNv = OpenTK.Graphics.OpenGL.All.PathInitialDashCapNv; - var _PathTerminalDashCapNv = OpenTK.Graphics.OpenGL.All.PathTerminalDashCapNv; - var _PathDashOffsetNv = OpenTK.Graphics.OpenGL.All.PathDashOffsetNv; - var _PathClientLengthNv = OpenTK.Graphics.OpenGL.All.PathClientLengthNv; - var _PathFillModeNv = OpenTK.Graphics.OpenGL.All.PathFillModeNv; - var _PathFillMaskNv = OpenTK.Graphics.OpenGL.All.PathFillMaskNv; - var _PathFillCoverModeNv = OpenTK.Graphics.OpenGL.All.PathFillCoverModeNv; - var _PathStrokeCoverModeNv = OpenTK.Graphics.OpenGL.All.PathStrokeCoverModeNv; - var _PathStrokeMaskNv = OpenTK.Graphics.OpenGL.All.PathStrokeMaskNv; - var _CountUpNv = OpenTK.Graphics.OpenGL.All.CountUpNv; - var _CountDownNv = OpenTK.Graphics.OpenGL.All.CountDownNv; - var _PathObjectBoundingBoxNv = OpenTK.Graphics.OpenGL.All.PathObjectBoundingBoxNv; - var _ConvexHullNv = OpenTK.Graphics.OpenGL.All.ConvexHullNv; - var _BoundingBoxNv = OpenTK.Graphics.OpenGL.All.BoundingBoxNv; - var _TranslateXNv = OpenTK.Graphics.OpenGL.All.TranslateXNv; - var _TranslateYNv = OpenTK.Graphics.OpenGL.All.TranslateYNv; - var _Translate2DNv = OpenTK.Graphics.OpenGL.All.Translate2DNv; - var _Translate3DNv = OpenTK.Graphics.OpenGL.All.Translate3DNv; - var _Affine2DNv = OpenTK.Graphics.OpenGL.All.Affine2DNv; - var _Affine3DNv = OpenTK.Graphics.OpenGL.All.Affine3DNv; - var _TransposeAffine2DNv = OpenTK.Graphics.OpenGL.All.TransposeAffine2DNv; - var _TransposeAffine3DNv = OpenTK.Graphics.OpenGL.All.TransposeAffine3DNv; - var _Utf8Nv = OpenTK.Graphics.OpenGL.All.Utf8Nv; - var _Utf16Nv = OpenTK.Graphics.OpenGL.All.Utf16Nv; - var _BoundingBoxOfBoundingBoxesNv = OpenTK.Graphics.OpenGL.All.BoundingBoxOfBoundingBoxesNv; - var _PathCommandCountNv = OpenTK.Graphics.OpenGL.All.PathCommandCountNv; - var _PathCoordCountNv = OpenTK.Graphics.OpenGL.All.PathCoordCountNv; - var _PathDashArrayCountNv = OpenTK.Graphics.OpenGL.All.PathDashArrayCountNv; - var _PathComputedLengthNv = OpenTK.Graphics.OpenGL.All.PathComputedLengthNv; - var _PathFillBoundingBoxNv = OpenTK.Graphics.OpenGL.All.PathFillBoundingBoxNv; - var _PathStrokeBoundingBoxNv = OpenTK.Graphics.OpenGL.All.PathStrokeBoundingBoxNv; - var _SquareNv = OpenTK.Graphics.OpenGL.All.SquareNv; - var _RoundNv = OpenTK.Graphics.OpenGL.All.RoundNv; - var _TriangularNv = OpenTK.Graphics.OpenGL.All.TriangularNv; - var _BevelNv = OpenTK.Graphics.OpenGL.All.BevelNv; - var _MiterRevertNv = OpenTK.Graphics.OpenGL.All.MiterRevertNv; - var _MiterTruncateNv = OpenTK.Graphics.OpenGL.All.MiterTruncateNv; - var _SkipMissingGlyphNv = OpenTK.Graphics.OpenGL.All.SkipMissingGlyphNv; - var _UseMissingGlyphNv = OpenTK.Graphics.OpenGL.All.UseMissingGlyphNv; - var _PathErrorPositionNv = OpenTK.Graphics.OpenGL.All.PathErrorPositionNv; - var _PathFogGenModeNv = OpenTK.Graphics.OpenGL.All.PathFogGenModeNv; - var _AccumAdjacentPairsNv = OpenTK.Graphics.OpenGL.All.AccumAdjacentPairsNv; - var _AdjacentPairsNv = OpenTK.Graphics.OpenGL.All.AdjacentPairsNv; - var _FirstToRestNv = OpenTK.Graphics.OpenGL.All.FirstToRestNv; - var _PathGenModeNv = OpenTK.Graphics.OpenGL.All.PathGenModeNv; - var _PathGenCoeffNv = OpenTK.Graphics.OpenGL.All.PathGenCoeffNv; - var _PathGenColorFormatNv = OpenTK.Graphics.OpenGL.All.PathGenColorFormatNv; - var _PathGenComponentsNv = OpenTK.Graphics.OpenGL.All.PathGenComponentsNv; - var _PathDashOffsetResetNv = OpenTK.Graphics.OpenGL.All.PathDashOffsetResetNv; - var _MoveToResetsNv = OpenTK.Graphics.OpenGL.All.MoveToResetsNv; - var _MoveToContinuesNv = OpenTK.Graphics.OpenGL.All.MoveToContinuesNv; - var _PathStencilFuncNv = OpenTK.Graphics.OpenGL.All.PathStencilFuncNv; - var _PathStencilRefNv = OpenTK.Graphics.OpenGL.All.PathStencilRefNv; - var _PathStencilValueMaskNv = OpenTK.Graphics.OpenGL.All.PathStencilValueMaskNv; - var _ScaledResolveFastestExt = OpenTK.Graphics.OpenGL.All.ScaledResolveFastestExt; - var _ScaledResolveNicestExt = OpenTK.Graphics.OpenGL.All.ScaledResolveNicestExt; - var _MinMapBufferAlignment = OpenTK.Graphics.OpenGL.All.MinMapBufferAlignment; - var _PathStencilDepthOffsetFactorNv = OpenTK.Graphics.OpenGL.All.PathStencilDepthOffsetFactorNv; - var _PathStencilDepthOffsetUnitsNv = OpenTK.Graphics.OpenGL.All.PathStencilDepthOffsetUnitsNv; - var _PathCoverDepthFuncNv = OpenTK.Graphics.OpenGL.All.PathCoverDepthFuncNv; - var _ImageFormatCompatibilityType = OpenTK.Graphics.OpenGL.All.ImageFormatCompatibilityType; - var _ImageFormatCompatibilityBySize = OpenTK.Graphics.OpenGL.All.ImageFormatCompatibilityBySize; - var _ImageFormatCompatibilityByClass = OpenTK.Graphics.OpenGL.All.ImageFormatCompatibilityByClass; - var _MaxVertexImageUniforms = OpenTK.Graphics.OpenGL.All.MaxVertexImageUniforms; - var _MaxTessControlImageUniforms = OpenTK.Graphics.OpenGL.All.MaxTessControlImageUniforms; - var _MaxTessEvaluationImageUniforms = OpenTK.Graphics.OpenGL.All.MaxTessEvaluationImageUniforms; - var _MaxGeometryImageUniforms = OpenTK.Graphics.OpenGL.All.MaxGeometryImageUniforms; - var _MaxFragmentImageUniforms = OpenTK.Graphics.OpenGL.All.MaxFragmentImageUniforms; - var _MaxCombinedImageUniforms = OpenTK.Graphics.OpenGL.All.MaxCombinedImageUniforms; - var _MaxDeep3DTextureWidthHeightNv = OpenTK.Graphics.OpenGL.All.MaxDeep3DTextureWidthHeightNv; - var _MaxDeep3DTextureDepthNv = OpenTK.Graphics.OpenGL.All.MaxDeep3DTextureDepthNv; - var _ShaderStorageBuffer = OpenTK.Graphics.OpenGL.All.ShaderStorageBuffer; - var _ShaderStorageBufferBinding = OpenTK.Graphics.OpenGL.All.ShaderStorageBufferBinding; - var _ShaderStorageBufferStart = OpenTK.Graphics.OpenGL.All.ShaderStorageBufferStart; - var _ShaderStorageBufferSize = OpenTK.Graphics.OpenGL.All.ShaderStorageBufferSize; - var _MaxVertexShaderStorageBlocks = OpenTK.Graphics.OpenGL.All.MaxVertexShaderStorageBlocks; - var _MaxGeometryShaderStorageBlocks = OpenTK.Graphics.OpenGL.All.MaxGeometryShaderStorageBlocks; - var _MaxTessControlShaderStorageBlocks = OpenTK.Graphics.OpenGL.All.MaxTessControlShaderStorageBlocks; - var _MaxTessEvaluationShaderStorageBlocks = OpenTK.Graphics.OpenGL.All.MaxTessEvaluationShaderStorageBlocks; - var _MaxFragmentShaderStorageBlocks = OpenTK.Graphics.OpenGL.All.MaxFragmentShaderStorageBlocks; - var _MaxComputeShaderStorageBlocks = OpenTK.Graphics.OpenGL.All.MaxComputeShaderStorageBlocks; - var _MaxCombinedShaderStorageBlocks = OpenTK.Graphics.OpenGL.All.MaxCombinedShaderStorageBlocks; - var _MaxShaderStorageBufferBindings = OpenTK.Graphics.OpenGL.All.MaxShaderStorageBufferBindings; - var _MaxShaderStorageBlockSize = OpenTK.Graphics.OpenGL.All.MaxShaderStorageBlockSize; - var _ShaderStorageBufferOffsetAlignment = OpenTK.Graphics.OpenGL.All.ShaderStorageBufferOffsetAlignment; - var _SyncX11FenceExt = OpenTK.Graphics.OpenGL.All.SyncX11FenceExt; - var _DepthStencilTextureMode = OpenTK.Graphics.OpenGL.All.DepthStencilTextureMode; - var _MaxComputeFixedGroupInvocationsArb = OpenTK.Graphics.OpenGL.All.MaxComputeFixedGroupInvocationsArb; - var _MaxComputeWorkGroupInvocations = OpenTK.Graphics.OpenGL.All.MaxComputeWorkGroupInvocations; - var _UniformBlockReferencedByComputeShader = OpenTK.Graphics.OpenGL.All.UniformBlockReferencedByComputeShader; - var _AtomicCounterBufferReferencedByComputeShader = OpenTK.Graphics.OpenGL.All.AtomicCounterBufferReferencedByComputeShader; - var _DispatchIndirectBuffer = OpenTK.Graphics.OpenGL.All.DispatchIndirectBuffer; - var _DispatchIndirectBufferBinding = OpenTK.Graphics.OpenGL.All.DispatchIndirectBufferBinding; - var _ComputeProgramNv = OpenTK.Graphics.OpenGL.All.ComputeProgramNv; - var _ComputeProgramParameterBufferNv = OpenTK.Graphics.OpenGL.All.ComputeProgramParameterBufferNv; - var _Texture2DMultisample = OpenTK.Graphics.OpenGL.All.Texture2DMultisample; - var _ProxyTexture2DMultisample = OpenTK.Graphics.OpenGL.All.ProxyTexture2DMultisample; - var _Texture2DMultisampleArray = OpenTK.Graphics.OpenGL.All.Texture2DMultisampleArray; - var _ProxyTexture2DMultisampleArray = OpenTK.Graphics.OpenGL.All.ProxyTexture2DMultisampleArray; - var _TextureBinding2DMultisample = OpenTK.Graphics.OpenGL.All.TextureBinding2DMultisample; - var _TextureBinding2DMultisampleArray = OpenTK.Graphics.OpenGL.All.TextureBinding2DMultisampleArray; - var _TextureSamples = OpenTK.Graphics.OpenGL.All.TextureSamples; - var _TextureFixedSampleLocations = OpenTK.Graphics.OpenGL.All.TextureFixedSampleLocations; - var _Sampler2DMultisample = OpenTK.Graphics.OpenGL.All.Sampler2DMultisample; - var _IntSampler2DMultisample = OpenTK.Graphics.OpenGL.All.IntSampler2DMultisample; - var _UnsignedIntSampler2DMultisample = OpenTK.Graphics.OpenGL.All.UnsignedIntSampler2DMultisample; - var _Sampler2DMultisampleArray = OpenTK.Graphics.OpenGL.All.Sampler2DMultisampleArray; - var _IntSampler2DMultisampleArray = OpenTK.Graphics.OpenGL.All.IntSampler2DMultisampleArray; - var _UnsignedIntSampler2DMultisampleArray = OpenTK.Graphics.OpenGL.All.UnsignedIntSampler2DMultisampleArray; - var _MaxColorTextureSamples = OpenTK.Graphics.OpenGL.All.MaxColorTextureSamples; - var _MaxDepthTextureSamples = OpenTK.Graphics.OpenGL.All.MaxDepthTextureSamples; - var _MaxIntegerSamples = OpenTK.Graphics.OpenGL.All.MaxIntegerSamples; - var _MaxServerWaitTimeout = OpenTK.Graphics.OpenGL.All.MaxServerWaitTimeout; - var _ObjectType = OpenTK.Graphics.OpenGL.All.ObjectType; - var _SyncCondition = OpenTK.Graphics.OpenGL.All.SyncCondition; - var _SyncStatus = OpenTK.Graphics.OpenGL.All.SyncStatus; - var _SyncFlags = OpenTK.Graphics.OpenGL.All.SyncFlags; - var _SyncFence = OpenTK.Graphics.OpenGL.All.SyncFence; - var _SyncGpuCommandsComplete = OpenTK.Graphics.OpenGL.All.SyncGpuCommandsComplete; - var _Unsignaled = OpenTK.Graphics.OpenGL.All.Unsignaled; - var _Signaled = OpenTK.Graphics.OpenGL.All.Signaled; - var _AlreadySignaled = OpenTK.Graphics.OpenGL.All.AlreadySignaled; - var _TimeoutExpired = OpenTK.Graphics.OpenGL.All.TimeoutExpired; - var _ConditionSatisfied = OpenTK.Graphics.OpenGL.All.ConditionSatisfied; - var _WaitFailed = OpenTK.Graphics.OpenGL.All.WaitFailed; - var _BufferAccessFlags = OpenTK.Graphics.OpenGL.All.BufferAccessFlags; - var _BufferMapLength = OpenTK.Graphics.OpenGL.All.BufferMapLength; - var _BufferMapOffset = OpenTK.Graphics.OpenGL.All.BufferMapOffset; - var _MaxVertexOutputComponents = OpenTK.Graphics.OpenGL.All.MaxVertexOutputComponents; - var _MaxGeometryInputComponents = OpenTK.Graphics.OpenGL.All.MaxGeometryInputComponents; - var _MaxGeometryOutputComponents = OpenTK.Graphics.OpenGL.All.MaxGeometryOutputComponents; - var _MaxFragmentInputComponents = OpenTK.Graphics.OpenGL.All.MaxFragmentInputComponents; - var _ContextProfileMask = OpenTK.Graphics.OpenGL.All.ContextProfileMask; - var _UnpackCompressedBlockWidth = OpenTK.Graphics.OpenGL.All.UnpackCompressedBlockWidth; - var _UnpackCompressedBlockHeight = OpenTK.Graphics.OpenGL.All.UnpackCompressedBlockHeight; - var _UnpackCompressedBlockDepth = OpenTK.Graphics.OpenGL.All.UnpackCompressedBlockDepth; - var _UnpackCompressedBlockSize = OpenTK.Graphics.OpenGL.All.UnpackCompressedBlockSize; - var _PackCompressedBlockWidth = OpenTK.Graphics.OpenGL.All.PackCompressedBlockWidth; - var _PackCompressedBlockHeight = OpenTK.Graphics.OpenGL.All.PackCompressedBlockHeight; - var _PackCompressedBlockDepth = OpenTK.Graphics.OpenGL.All.PackCompressedBlockDepth; - var _PackCompressedBlockSize = OpenTK.Graphics.OpenGL.All.PackCompressedBlockSize; - var _TextureImmutableFormat = OpenTK.Graphics.OpenGL.All.TextureImmutableFormat; - var _MaxDebugMessageLength = OpenTK.Graphics.OpenGL.All.MaxDebugMessageLength; - var _MaxDebugMessageLengthAmd = OpenTK.Graphics.OpenGL.All.MaxDebugMessageLengthAmd; - var _MaxDebugMessageLengthArb = OpenTK.Graphics.OpenGL.All.MaxDebugMessageLengthArb; - var _MaxDebugMessageLengthKhr = OpenTK.Graphics.OpenGL.All.MaxDebugMessageLengthKhr; - var _MaxDebugLoggedMessages = OpenTK.Graphics.OpenGL.All.MaxDebugLoggedMessages; - var _MaxDebugLoggedMessagesAmd = OpenTK.Graphics.OpenGL.All.MaxDebugLoggedMessagesAmd; - var _MaxDebugLoggedMessagesArb = OpenTK.Graphics.OpenGL.All.MaxDebugLoggedMessagesArb; - var _MaxDebugLoggedMessagesKhr = OpenTK.Graphics.OpenGL.All.MaxDebugLoggedMessagesKhr; - var _DebugLoggedMessages = OpenTK.Graphics.OpenGL.All.DebugLoggedMessages; - var _DebugLoggedMessagesAmd = OpenTK.Graphics.OpenGL.All.DebugLoggedMessagesAmd; - var _DebugLoggedMessagesArb = OpenTK.Graphics.OpenGL.All.DebugLoggedMessagesArb; - var _DebugLoggedMessagesKhr = OpenTK.Graphics.OpenGL.All.DebugLoggedMessagesKhr; - var _DebugSeverityHigh = OpenTK.Graphics.OpenGL.All.DebugSeverityHigh; - var _DebugSeverityHighAmd = OpenTK.Graphics.OpenGL.All.DebugSeverityHighAmd; - var _DebugSeverityHighArb = OpenTK.Graphics.OpenGL.All.DebugSeverityHighArb; - var _DebugSeverityHighKhr = OpenTK.Graphics.OpenGL.All.DebugSeverityHighKhr; - var _DebugSeverityMedium = OpenTK.Graphics.OpenGL.All.DebugSeverityMedium; - var _DebugSeverityMediumAmd = OpenTK.Graphics.OpenGL.All.DebugSeverityMediumAmd; - var _DebugSeverityMediumArb = OpenTK.Graphics.OpenGL.All.DebugSeverityMediumArb; - var _DebugSeverityMediumKhr = OpenTK.Graphics.OpenGL.All.DebugSeverityMediumKhr; - var _DebugSeverityLow = OpenTK.Graphics.OpenGL.All.DebugSeverityLow; - var _DebugSeverityLowAmd = OpenTK.Graphics.OpenGL.All.DebugSeverityLowAmd; - var _DebugSeverityLowArb = OpenTK.Graphics.OpenGL.All.DebugSeverityLowArb; - var _DebugSeverityLowKhr = OpenTK.Graphics.OpenGL.All.DebugSeverityLowKhr; - var _DebugCategoryApiErrorAmd = OpenTK.Graphics.OpenGL.All.DebugCategoryApiErrorAmd; - var _DebugCategoryWindowSystemAmd = OpenTK.Graphics.OpenGL.All.DebugCategoryWindowSystemAmd; - var _DebugCategoryDeprecationAmd = OpenTK.Graphics.OpenGL.All.DebugCategoryDeprecationAmd; - var _DebugCategoryUndefinedBehaviorAmd = OpenTK.Graphics.OpenGL.All.DebugCategoryUndefinedBehaviorAmd; - var _DebugCategoryPerformanceAmd = OpenTK.Graphics.OpenGL.All.DebugCategoryPerformanceAmd; - var _DebugCategoryShaderCompilerAmd = OpenTK.Graphics.OpenGL.All.DebugCategoryShaderCompilerAmd; - var _DebugCategoryApplicationAmd = OpenTK.Graphics.OpenGL.All.DebugCategoryApplicationAmd; - var _DebugCategoryOtherAmd = OpenTK.Graphics.OpenGL.All.DebugCategoryOtherAmd; - var _BufferObjectExt = OpenTK.Graphics.OpenGL.All.BufferObjectExt; - var _DataBufferAmd = OpenTK.Graphics.OpenGL.All.DataBufferAmd; - var _PerformanceMonitorAmd = OpenTK.Graphics.OpenGL.All.PerformanceMonitorAmd; - var _QueryObjectAmd = OpenTK.Graphics.OpenGL.All.QueryObjectAmd; - var _QueryObjectExt = OpenTK.Graphics.OpenGL.All.QueryObjectExt; - var _VertexArrayObjectAmd = OpenTK.Graphics.OpenGL.All.VertexArrayObjectAmd; - var _VertexArrayObjectExt = OpenTK.Graphics.OpenGL.All.VertexArrayObjectExt; - var _SamplerObjectAmd = OpenTK.Graphics.OpenGL.All.SamplerObjectAmd; - var _ExternalVirtualMemoryBufferAmd = OpenTK.Graphics.OpenGL.All.ExternalVirtualMemoryBufferAmd; - var _QueryBuffer = OpenTK.Graphics.OpenGL.All.QueryBuffer; - var _QueryBufferAmd = OpenTK.Graphics.OpenGL.All.QueryBufferAmd; - var _QueryBufferBinding = OpenTK.Graphics.OpenGL.All.QueryBufferBinding; - var _QueryBufferBindingAmd = OpenTK.Graphics.OpenGL.All.QueryBufferBindingAmd; - var _QueryResultNoWait = OpenTK.Graphics.OpenGL.All.QueryResultNoWait; - var _QueryResultNoWaitAmd = OpenTK.Graphics.OpenGL.All.QueryResultNoWaitAmd; - var _VirtualPageSizeXAmd = OpenTK.Graphics.OpenGL.All.VirtualPageSizeXAmd; - var _VirtualPageSizeXArb = OpenTK.Graphics.OpenGL.All.VirtualPageSizeXArb; - var _VirtualPageSizeYAmd = OpenTK.Graphics.OpenGL.All.VirtualPageSizeYAmd; - var _VirtualPageSizeYArb = OpenTK.Graphics.OpenGL.All.VirtualPageSizeYArb; - var _VirtualPageSizeZAmd = OpenTK.Graphics.OpenGL.All.VirtualPageSizeZAmd; - var _VirtualPageSizeZArb = OpenTK.Graphics.OpenGL.All.VirtualPageSizeZArb; - var _MaxSparseTextureSizeAmd = OpenTK.Graphics.OpenGL.All.MaxSparseTextureSizeAmd; - var _MaxSparseTextureSizeArb = OpenTK.Graphics.OpenGL.All.MaxSparseTextureSizeArb; - var _MaxSparse3DTextureSizeAmd = OpenTK.Graphics.OpenGL.All.MaxSparse3DTextureSizeAmd; - var _MaxSparse3DTextureSizeArb = OpenTK.Graphics.OpenGL.All.MaxSparse3DTextureSizeArb; - var _MaxSparseArrayTextureLayers = OpenTK.Graphics.OpenGL.All.MaxSparseArrayTextureLayers; - var _MaxSparseArrayTextureLayersArb = OpenTK.Graphics.OpenGL.All.MaxSparseArrayTextureLayersArb; - var _MinSparseLevelAmd = OpenTK.Graphics.OpenGL.All.MinSparseLevelAmd; - var _MinSparseLevelArb = OpenTK.Graphics.OpenGL.All.MinSparseLevelArb; - var _MinLodWarningAmd = OpenTK.Graphics.OpenGL.All.MinLodWarningAmd; - var _TextureBufferOffset = OpenTK.Graphics.OpenGL.All.TextureBufferOffset; - var _TextureBufferSize = OpenTK.Graphics.OpenGL.All.TextureBufferSize; - var _TextureBufferOffsetAlignment = OpenTK.Graphics.OpenGL.All.TextureBufferOffsetAlignment; - var _StreamRasterizationAmd = OpenTK.Graphics.OpenGL.All.StreamRasterizationAmd; - var _VertexElementSwizzleAmd = OpenTK.Graphics.OpenGL.All.VertexElementSwizzleAmd; - var _VertexIdSwizzleAmd = OpenTK.Graphics.OpenGL.All.VertexIdSwizzleAmd; - var _TextureSparseArb = OpenTK.Graphics.OpenGL.All.TextureSparseArb; - var _VirtualPageSizeIndexArb = OpenTK.Graphics.OpenGL.All.VirtualPageSizeIndexArb; - var _NumVirtualPageSizesArb = OpenTK.Graphics.OpenGL.All.NumVirtualPageSizesArb; - var _SparseTextureFullArrayCubeMipmapsArb = OpenTK.Graphics.OpenGL.All.SparseTextureFullArrayCubeMipmapsArb; - var _ComputeShader = OpenTK.Graphics.OpenGL.All.ComputeShader; - var _MaxComputeUniformBlocks = OpenTK.Graphics.OpenGL.All.MaxComputeUniformBlocks; - var _MaxComputeTextureImageUnits = OpenTK.Graphics.OpenGL.All.MaxComputeTextureImageUnits; - var _MaxComputeImageUniforms = OpenTK.Graphics.OpenGL.All.MaxComputeImageUniforms; - var _MaxComputeWorkGroupCount = OpenTK.Graphics.OpenGL.All.MaxComputeWorkGroupCount; - var _MaxComputeFixedGroupSizeArb = OpenTK.Graphics.OpenGL.All.MaxComputeFixedGroupSizeArb; - var _MaxComputeWorkGroupSize = OpenTK.Graphics.OpenGL.All.MaxComputeWorkGroupSize; - var _CompressedR11Eac = OpenTK.Graphics.OpenGL.All.CompressedR11Eac; - var _CompressedSignedR11Eac = OpenTK.Graphics.OpenGL.All.CompressedSignedR11Eac; - var _CompressedRg11Eac = OpenTK.Graphics.OpenGL.All.CompressedRg11Eac; - var _CompressedSignedRg11Eac = OpenTK.Graphics.OpenGL.All.CompressedSignedRg11Eac; - var _CompressedRgb8Etc2 = OpenTK.Graphics.OpenGL.All.CompressedRgb8Etc2; - var _CompressedSrgb8Etc2 = OpenTK.Graphics.OpenGL.All.CompressedSrgb8Etc2; - var _CompressedRgb8PunchthroughAlpha1Etc2 = OpenTK.Graphics.OpenGL.All.CompressedRgb8PunchthroughAlpha1Etc2; - var _CompressedSrgb8PunchthroughAlpha1Etc2 = OpenTK.Graphics.OpenGL.All.CompressedSrgb8PunchthroughAlpha1Etc2; - var _CompressedRgba8Etc2Eac = OpenTK.Graphics.OpenGL.All.CompressedRgba8Etc2Eac; - var _CompressedSrgb8Alpha8Etc2Eac = OpenTK.Graphics.OpenGL.All.CompressedSrgb8Alpha8Etc2Eac; - var _BlendPremultipliedSrcNv = OpenTK.Graphics.OpenGL.All.BlendPremultipliedSrcNv; - var _BlendOverlapNv = OpenTK.Graphics.OpenGL.All.BlendOverlapNv; - var _UncorrelatedNv = OpenTK.Graphics.OpenGL.All.UncorrelatedNv; - var _DisjointNv = OpenTK.Graphics.OpenGL.All.DisjointNv; - var _ConjointNv = OpenTK.Graphics.OpenGL.All.ConjointNv; - var _BlendAdvancedCoherentNv = OpenTK.Graphics.OpenGL.All.BlendAdvancedCoherentNv; - var _SrcNv = OpenTK.Graphics.OpenGL.All.SrcNv; - var _DstNv = OpenTK.Graphics.OpenGL.All.DstNv; - var _SrcOverNv = OpenTK.Graphics.OpenGL.All.SrcOverNv; - var _DstOverNv = OpenTK.Graphics.OpenGL.All.DstOverNv; - var _SrcInNv = OpenTK.Graphics.OpenGL.All.SrcInNv; - var _DstInNv = OpenTK.Graphics.OpenGL.All.DstInNv; - var _SrcOutNv = OpenTK.Graphics.OpenGL.All.SrcOutNv; - var _DstOutNv = OpenTK.Graphics.OpenGL.All.DstOutNv; - var _SrcAtopNv = OpenTK.Graphics.OpenGL.All.SrcAtopNv; - var _DstAtopNv = OpenTK.Graphics.OpenGL.All.DstAtopNv; - var _PlusNv = OpenTK.Graphics.OpenGL.All.PlusNv; - var _PlusDarkerNv = OpenTK.Graphics.OpenGL.All.PlusDarkerNv; - var _MultiplyNv = OpenTK.Graphics.OpenGL.All.MultiplyNv; - var _ScreenNv = OpenTK.Graphics.OpenGL.All.ScreenNv; - var _OverlayNv = OpenTK.Graphics.OpenGL.All.OverlayNv; - var _DarkenNv = OpenTK.Graphics.OpenGL.All.DarkenNv; - var _LightenNv = OpenTK.Graphics.OpenGL.All.LightenNv; - var _ColordodgeNv = OpenTK.Graphics.OpenGL.All.ColordodgeNv; - var _ColorburnNv = OpenTK.Graphics.OpenGL.All.ColorburnNv; - var _HardlightNv = OpenTK.Graphics.OpenGL.All.HardlightNv; - var _SoftlightNv = OpenTK.Graphics.OpenGL.All.SoftlightNv; - var _DifferenceNv = OpenTK.Graphics.OpenGL.All.DifferenceNv; - var _MinusNv = OpenTK.Graphics.OpenGL.All.MinusNv; - var _ExclusionNv = OpenTK.Graphics.OpenGL.All.ExclusionNv; - var _ContrastNv = OpenTK.Graphics.OpenGL.All.ContrastNv; - var _InvertRgbNv = OpenTK.Graphics.OpenGL.All.InvertRgbNv; - var _LineardodgeNv = OpenTK.Graphics.OpenGL.All.LineardodgeNv; - var _LinearburnNv = OpenTK.Graphics.OpenGL.All.LinearburnNv; - var _VividlightNv = OpenTK.Graphics.OpenGL.All.VividlightNv; - var _LinearlightNv = OpenTK.Graphics.OpenGL.All.LinearlightNv; - var _PinlightNv = OpenTK.Graphics.OpenGL.All.PinlightNv; - var _HardmixNv = OpenTK.Graphics.OpenGL.All.HardmixNv; - var _HslHueNv = OpenTK.Graphics.OpenGL.All.HslHueNv; - var _HslSaturationNv = OpenTK.Graphics.OpenGL.All.HslSaturationNv; - var _HslColorNv = OpenTK.Graphics.OpenGL.All.HslColorNv; - var _HslLuminosityNv = OpenTK.Graphics.OpenGL.All.HslLuminosityNv; - var _PlusClampedNv = OpenTK.Graphics.OpenGL.All.PlusClampedNv; - var _PlusClampedAlphaNv = OpenTK.Graphics.OpenGL.All.PlusClampedAlphaNv; - var _MinusClampedNv = OpenTK.Graphics.OpenGL.All.MinusClampedNv; - var _InvertOvgNv = OpenTK.Graphics.OpenGL.All.InvertOvgNv; - var _AtomicCounterBuffer = OpenTK.Graphics.OpenGL.All.AtomicCounterBuffer; - var _AtomicCounterBufferBinding = OpenTK.Graphics.OpenGL.All.AtomicCounterBufferBinding; - var _AtomicCounterBufferStart = OpenTK.Graphics.OpenGL.All.AtomicCounterBufferStart; - var _AtomicCounterBufferSize = OpenTK.Graphics.OpenGL.All.AtomicCounterBufferSize; - var _AtomicCounterBufferDataSize = OpenTK.Graphics.OpenGL.All.AtomicCounterBufferDataSize; - var _AtomicCounterBufferActiveAtomicCounters = OpenTK.Graphics.OpenGL.All.AtomicCounterBufferActiveAtomicCounters; - var _AtomicCounterBufferActiveAtomicCounterIndices = OpenTK.Graphics.OpenGL.All.AtomicCounterBufferActiveAtomicCounterIndices; - var _AtomicCounterBufferReferencedByVertexShader = OpenTK.Graphics.OpenGL.All.AtomicCounterBufferReferencedByVertexShader; - var _AtomicCounterBufferReferencedByTessControlShader = OpenTK.Graphics.OpenGL.All.AtomicCounterBufferReferencedByTessControlShader; - var _AtomicCounterBufferReferencedByTessEvaluationShader = OpenTK.Graphics.OpenGL.All.AtomicCounterBufferReferencedByTessEvaluationShader; - var _AtomicCounterBufferReferencedByGeometryShader = OpenTK.Graphics.OpenGL.All.AtomicCounterBufferReferencedByGeometryShader; - var _AtomicCounterBufferReferencedByFragmentShader = OpenTK.Graphics.OpenGL.All.AtomicCounterBufferReferencedByFragmentShader; - var _MaxVertexAtomicCounterBuffers = OpenTK.Graphics.OpenGL.All.MaxVertexAtomicCounterBuffers; - var _MaxTessControlAtomicCounterBuffers = OpenTK.Graphics.OpenGL.All.MaxTessControlAtomicCounterBuffers; - var _MaxTessEvaluationAtomicCounterBuffers = OpenTK.Graphics.OpenGL.All.MaxTessEvaluationAtomicCounterBuffers; - var _MaxGeometryAtomicCounterBuffers = OpenTK.Graphics.OpenGL.All.MaxGeometryAtomicCounterBuffers; - var _MaxFragmentAtomicCounterBuffers = OpenTK.Graphics.OpenGL.All.MaxFragmentAtomicCounterBuffers; - var _MaxCombinedAtomicCounterBuffers = OpenTK.Graphics.OpenGL.All.MaxCombinedAtomicCounterBuffers; - var _MaxVertexAtomicCounters = OpenTK.Graphics.OpenGL.All.MaxVertexAtomicCounters; - var _MaxTessControlAtomicCounters = OpenTK.Graphics.OpenGL.All.MaxTessControlAtomicCounters; - var _MaxTessEvaluationAtomicCounters = OpenTK.Graphics.OpenGL.All.MaxTessEvaluationAtomicCounters; - var _MaxGeometryAtomicCounters = OpenTK.Graphics.OpenGL.All.MaxGeometryAtomicCounters; - var _MaxFragmentAtomicCounters = OpenTK.Graphics.OpenGL.All.MaxFragmentAtomicCounters; - var _MaxCombinedAtomicCounters = OpenTK.Graphics.OpenGL.All.MaxCombinedAtomicCounters; - var _MaxAtomicCounterBufferSize = OpenTK.Graphics.OpenGL.All.MaxAtomicCounterBufferSize; - var _ActiveAtomicCounterBuffers = OpenTK.Graphics.OpenGL.All.ActiveAtomicCounterBuffers; - var _UniformAtomicCounterBufferIndex = OpenTK.Graphics.OpenGL.All.UniformAtomicCounterBufferIndex; - var _UnsignedIntAtomicCounter = OpenTK.Graphics.OpenGL.All.UnsignedIntAtomicCounter; - var _MaxAtomicCounterBufferBindings = OpenTK.Graphics.OpenGL.All.MaxAtomicCounterBufferBindings; - var _DebugOutput = OpenTK.Graphics.OpenGL.All.DebugOutput; - var _DebugOutputKhr = OpenTK.Graphics.OpenGL.All.DebugOutputKhr; - var _Uniform = OpenTK.Graphics.OpenGL.All.Uniform; - var _UniformBlock = OpenTK.Graphics.OpenGL.All.UniformBlock; - var _ProgramInput = OpenTK.Graphics.OpenGL.All.ProgramInput; - var _ProgramOutput = OpenTK.Graphics.OpenGL.All.ProgramOutput; - var _BufferVariable = OpenTK.Graphics.OpenGL.All.BufferVariable; - var _ShaderStorageBlock = OpenTK.Graphics.OpenGL.All.ShaderStorageBlock; - var _IsPerPatch = OpenTK.Graphics.OpenGL.All.IsPerPatch; - var _VertexSubroutine = OpenTK.Graphics.OpenGL.All.VertexSubroutine; - var _TessControlSubroutine = OpenTK.Graphics.OpenGL.All.TessControlSubroutine; - var _TessEvaluationSubroutine = OpenTK.Graphics.OpenGL.All.TessEvaluationSubroutine; - var _GeometrySubroutine = OpenTK.Graphics.OpenGL.All.GeometrySubroutine; - var _FragmentSubroutine = OpenTK.Graphics.OpenGL.All.FragmentSubroutine; - var _ComputeSubroutine = OpenTK.Graphics.OpenGL.All.ComputeSubroutine; - var _VertexSubroutineUniform = OpenTK.Graphics.OpenGL.All.VertexSubroutineUniform; - var _TessControlSubroutineUniform = OpenTK.Graphics.OpenGL.All.TessControlSubroutineUniform; - var _TessEvaluationSubroutineUniform = OpenTK.Graphics.OpenGL.All.TessEvaluationSubroutineUniform; - var _GeometrySubroutineUniform = OpenTK.Graphics.OpenGL.All.GeometrySubroutineUniform; - var _FragmentSubroutineUniform = OpenTK.Graphics.OpenGL.All.FragmentSubroutineUniform; - var _ComputeSubroutineUniform = OpenTK.Graphics.OpenGL.All.ComputeSubroutineUniform; - var _TransformFeedbackVarying = OpenTK.Graphics.OpenGL.All.TransformFeedbackVarying; - var _ActiveResources = OpenTK.Graphics.OpenGL.All.ActiveResources; - var _MaxNameLength = OpenTK.Graphics.OpenGL.All.MaxNameLength; - var _MaxNumActiveVariables = OpenTK.Graphics.OpenGL.All.MaxNumActiveVariables; - var _MaxNumCompatibleSubroutines = OpenTK.Graphics.OpenGL.All.MaxNumCompatibleSubroutines; - var _NameLength = OpenTK.Graphics.OpenGL.All.NameLength; - var _Type = OpenTK.Graphics.OpenGL.All.Type; - var _ArraySize = OpenTK.Graphics.OpenGL.All.ArraySize; - var _Offset = OpenTK.Graphics.OpenGL.All.Offset; - var _BlockIndex = OpenTK.Graphics.OpenGL.All.BlockIndex; - var _ArrayStride = OpenTK.Graphics.OpenGL.All.ArrayStride; - var _MatrixStride = OpenTK.Graphics.OpenGL.All.MatrixStride; - var _IsRowMajor = OpenTK.Graphics.OpenGL.All.IsRowMajor; - var _AtomicCounterBufferIndex = OpenTK.Graphics.OpenGL.All.AtomicCounterBufferIndex; - var _BufferBinding = OpenTK.Graphics.OpenGL.All.BufferBinding; - var _BufferDataSize = OpenTK.Graphics.OpenGL.All.BufferDataSize; - var _NumActiveVariables = OpenTK.Graphics.OpenGL.All.NumActiveVariables; - var _ActiveVariables = OpenTK.Graphics.OpenGL.All.ActiveVariables; - var _ReferencedByVertexShader = OpenTK.Graphics.OpenGL.All.ReferencedByVertexShader; - var _ReferencedByTessControlShader = OpenTK.Graphics.OpenGL.All.ReferencedByTessControlShader; - var _ReferencedByTessEvaluationShader = OpenTK.Graphics.OpenGL.All.ReferencedByTessEvaluationShader; - var _ReferencedByGeometryShader = OpenTK.Graphics.OpenGL.All.ReferencedByGeometryShader; - var _ReferencedByFragmentShader = OpenTK.Graphics.OpenGL.All.ReferencedByFragmentShader; - var _ReferencedByComputeShader = OpenTK.Graphics.OpenGL.All.ReferencedByComputeShader; - var _TopLevelArraySize = OpenTK.Graphics.OpenGL.All.TopLevelArraySize; - var _TopLevelArrayStride = OpenTK.Graphics.OpenGL.All.TopLevelArrayStride; - var _Location = OpenTK.Graphics.OpenGL.All.Location; - var _LocationIndex = OpenTK.Graphics.OpenGL.All.LocationIndex; - var _FramebufferDefaultWidth = OpenTK.Graphics.OpenGL.All.FramebufferDefaultWidth; - var _FramebufferDefaultHeight = OpenTK.Graphics.OpenGL.All.FramebufferDefaultHeight; - var _FramebufferDefaultLayers = OpenTK.Graphics.OpenGL.All.FramebufferDefaultLayers; - var _FramebufferDefaultSamples = OpenTK.Graphics.OpenGL.All.FramebufferDefaultSamples; - var _FramebufferDefaultFixedSampleLocations = OpenTK.Graphics.OpenGL.All.FramebufferDefaultFixedSampleLocations; - var _MaxFramebufferWidth = OpenTK.Graphics.OpenGL.All.MaxFramebufferWidth; - var _MaxFramebufferHeight = OpenTK.Graphics.OpenGL.All.MaxFramebufferHeight; - var _MaxFramebufferLayers = OpenTK.Graphics.OpenGL.All.MaxFramebufferLayers; - var _MaxFramebufferSamples = OpenTK.Graphics.OpenGL.All.MaxFramebufferSamples; - var _WarpSizeNv = OpenTK.Graphics.OpenGL.All.WarpSizeNv; - var _WarpsPerSmNv = OpenTK.Graphics.OpenGL.All.WarpsPerSmNv; - var _SmCountNv = OpenTK.Graphics.OpenGL.All.SmCountNv; - var _MaxComputeVariableGroupInvocationsArb = OpenTK.Graphics.OpenGL.All.MaxComputeVariableGroupInvocationsArb; - var _MaxComputeVariableGroupSizeArb = OpenTK.Graphics.OpenGL.All.MaxComputeVariableGroupSizeArb; - var _LocationComponent = OpenTK.Graphics.OpenGL.All.LocationComponent; - var _TransformFeedbackBufferIndex = OpenTK.Graphics.OpenGL.All.TransformFeedbackBufferIndex; - var _TransformFeedbackBufferStride = OpenTK.Graphics.OpenGL.All.TransformFeedbackBufferStride; - var _ClearTexture = OpenTK.Graphics.OpenGL.All.ClearTexture; - var _NumSampleCounts = OpenTK.Graphics.OpenGL.All.NumSampleCounts; - var _CompressedRgbaAstc4X4Khr = OpenTK.Graphics.OpenGL.All.CompressedRgbaAstc4X4Khr; - var _CompressedRgbaAstc5X4Khr = OpenTK.Graphics.OpenGL.All.CompressedRgbaAstc5X4Khr; - var _CompressedRgbaAstc5X5Khr = OpenTK.Graphics.OpenGL.All.CompressedRgbaAstc5X5Khr; - var _CompressedRgbaAstc6X5Khr = OpenTK.Graphics.OpenGL.All.CompressedRgbaAstc6X5Khr; - var _CompressedRgbaAstc6X6Khr = OpenTK.Graphics.OpenGL.All.CompressedRgbaAstc6X6Khr; - var _CompressedRgbaAstc8X5Khr = OpenTK.Graphics.OpenGL.All.CompressedRgbaAstc8X5Khr; - var _CompressedRgbaAstc8X6Khr = OpenTK.Graphics.OpenGL.All.CompressedRgbaAstc8X6Khr; - var _CompressedRgbaAstc8X8Khr = OpenTK.Graphics.OpenGL.All.CompressedRgbaAstc8X8Khr; - var _CompressedRgbaAstc10X5Khr = OpenTK.Graphics.OpenGL.All.CompressedRgbaAstc10X5Khr; - var _CompressedRgbaAstc10X6Khr = OpenTK.Graphics.OpenGL.All.CompressedRgbaAstc10X6Khr; - var _CompressedRgbaAstc10X8Khr = OpenTK.Graphics.OpenGL.All.CompressedRgbaAstc10X8Khr; - var _CompressedRgbaAstc10X10Khr = OpenTK.Graphics.OpenGL.All.CompressedRgbaAstc10X10Khr; - var _CompressedRgbaAstc12X10Khr = OpenTK.Graphics.OpenGL.All.CompressedRgbaAstc12X10Khr; - var _CompressedRgbaAstc12X12Khr = OpenTK.Graphics.OpenGL.All.CompressedRgbaAstc12X12Khr; - var _CompressedSrgb8Alpha8Astc4X4Khr = OpenTK.Graphics.OpenGL.All.CompressedSrgb8Alpha8Astc4X4Khr; - var _CompressedSrgb8Alpha8Astc5X4Khr = OpenTK.Graphics.OpenGL.All.CompressedSrgb8Alpha8Astc5X4Khr; - var _CompressedSrgb8Alpha8Astc5X5Khr = OpenTK.Graphics.OpenGL.All.CompressedSrgb8Alpha8Astc5X5Khr; - var _CompressedSrgb8Alpha8Astc6X5Khr = OpenTK.Graphics.OpenGL.All.CompressedSrgb8Alpha8Astc6X5Khr; - var _CompressedSrgb8Alpha8Astc6X6Khr = OpenTK.Graphics.OpenGL.All.CompressedSrgb8Alpha8Astc6X6Khr; - var _CompressedSrgb8Alpha8Astc8X5Khr = OpenTK.Graphics.OpenGL.All.CompressedSrgb8Alpha8Astc8X5Khr; - var _CompressedSrgb8Alpha8Astc8X6Khr = OpenTK.Graphics.OpenGL.All.CompressedSrgb8Alpha8Astc8X6Khr; - var _CompressedSrgb8Alpha8Astc8X8Khr = OpenTK.Graphics.OpenGL.All.CompressedSrgb8Alpha8Astc8X8Khr; - var _CompressedSrgb8Alpha8Astc10X5Khr = OpenTK.Graphics.OpenGL.All.CompressedSrgb8Alpha8Astc10X5Khr; - var _CompressedSrgb8Alpha8Astc10X6Khr = OpenTK.Graphics.OpenGL.All.CompressedSrgb8Alpha8Astc10X6Khr; - var _CompressedSrgb8Alpha8Astc10X8Khr = OpenTK.Graphics.OpenGL.All.CompressedSrgb8Alpha8Astc10X8Khr; - var _CompressedSrgb8Alpha8Astc10X10Khr = OpenTK.Graphics.OpenGL.All.CompressedSrgb8Alpha8Astc10X10Khr; - var _CompressedSrgb8Alpha8Astc12X10Khr = OpenTK.Graphics.OpenGL.All.CompressedSrgb8Alpha8Astc12X10Khr; - var _CompressedSrgb8Alpha8Astc12X12Khr = OpenTK.Graphics.OpenGL.All.CompressedSrgb8Alpha8Astc12X12Khr; - var _PerfqueryCounterEventIntel = OpenTK.Graphics.OpenGL.All.PerfqueryCounterEventIntel; - var _PerfqueryCounterDurationNormIntel = OpenTK.Graphics.OpenGL.All.PerfqueryCounterDurationNormIntel; - var _PerfqueryCounterDurationRawIntel = OpenTK.Graphics.OpenGL.All.PerfqueryCounterDurationRawIntel; - var _PerfqueryCounterThroughputIntel = OpenTK.Graphics.OpenGL.All.PerfqueryCounterThroughputIntel; - var _PerfqueryCounterRawIntel = OpenTK.Graphics.OpenGL.All.PerfqueryCounterRawIntel; - var _PerfqueryCounterTimestampIntel = OpenTK.Graphics.OpenGL.All.PerfqueryCounterTimestampIntel; - var _PerfqueryCounterDataUint32Intel = OpenTK.Graphics.OpenGL.All.PerfqueryCounterDataUint32Intel; - var _PerfqueryCounterDataUint64Intel = OpenTK.Graphics.OpenGL.All.PerfqueryCounterDataUint64Intel; - var _PerfqueryCounterDataFloatIntel = OpenTK.Graphics.OpenGL.All.PerfqueryCounterDataFloatIntel; - var _PerfqueryCounterDataDoubleIntel = OpenTK.Graphics.OpenGL.All.PerfqueryCounterDataDoubleIntel; - var _PerfqueryCounterDataBool32Intel = OpenTK.Graphics.OpenGL.All.PerfqueryCounterDataBool32Intel; - var _PerfqueryQueryNameLengthMaxIntel = OpenTK.Graphics.OpenGL.All.PerfqueryQueryNameLengthMaxIntel; - var _PerfqueryCounterNameLengthMaxIntel = OpenTK.Graphics.OpenGL.All.PerfqueryCounterNameLengthMaxIntel; - var _PerfqueryCounterDescLengthMaxIntel = OpenTK.Graphics.OpenGL.All.PerfqueryCounterDescLengthMaxIntel; - var _PerfqueryGpaExtendedCountersIntel = OpenTK.Graphics.OpenGL.All.PerfqueryGpaExtendedCountersIntel; - var _RestartPathNv = OpenTK.Graphics.OpenGL.All.RestartPathNv; - var _DupFirstCubicCurveToNv = OpenTK.Graphics.OpenGL.All.DupFirstCubicCurveToNv; - var _DupLastCubicCurveToNv = OpenTK.Graphics.OpenGL.All.DupLastCubicCurveToNv; - var _RectNv = OpenTK.Graphics.OpenGL.All.RectNv; - var _CircularCcwArcToNv = OpenTK.Graphics.OpenGL.All.CircularCcwArcToNv; - var _CircularCwArcToNv = OpenTK.Graphics.OpenGL.All.CircularCwArcToNv; - var _CircularTangentArcToNv = OpenTK.Graphics.OpenGL.All.CircularTangentArcToNv; - var _ArcToNv = OpenTK.Graphics.OpenGL.All.ArcToNv; - var _RelativeArcToNv = OpenTK.Graphics.OpenGL.All.RelativeArcToNv; - var _AllAttribBits = OpenTK.Graphics.OpenGL.All.AllAttribBits; - var _AllBarrierBits = OpenTK.Graphics.OpenGL.All.AllBarrierBits; - var _AllBarrierBitsExt = OpenTK.Graphics.OpenGL.All.AllBarrierBitsExt; - var _AllShaderBits = OpenTK.Graphics.OpenGL.All.AllShaderBits; - var _AllShaderBitsExt = OpenTK.Graphics.OpenGL.All.AllShaderBitsExt; - var _ClientAllAttribBits = OpenTK.Graphics.OpenGL.All.ClientAllAttribBits; - var _InvalidIndex = OpenTK.Graphics.OpenGL.All.InvalidIndex; - var _QueryAllEventBitsAmd = OpenTK.Graphics.OpenGL.All.QueryAllEventBitsAmd; - var _TimeoutIgnored = OpenTK.Graphics.OpenGL.All.TimeoutIgnored; - var _LayoutLinearIntel = OpenTK.Graphics.OpenGL.All.LayoutLinearIntel; - var _One = OpenTK.Graphics.OpenGL.All.One; - var _True = OpenTK.Graphics.OpenGL.All.True; - var _CullVertexIbm = OpenTK.Graphics.OpenGL.All.CullVertexIbm; - var _AllStaticDataIbm = OpenTK.Graphics.OpenGL.All.AllStaticDataIbm; - var _StaticVertexArrayIbm = OpenTK.Graphics.OpenGL.All.StaticVertexArrayIbm; - var _VertexArrayListIbm = OpenTK.Graphics.OpenGL.All.VertexArrayListIbm; - var _NormalArrayListIbm = OpenTK.Graphics.OpenGL.All.NormalArrayListIbm; - var _ColorArrayListIbm = OpenTK.Graphics.OpenGL.All.ColorArrayListIbm; - var _IndexArrayListIbm = OpenTK.Graphics.OpenGL.All.IndexArrayListIbm; - var _TextureCoordArrayListIbm = OpenTK.Graphics.OpenGL.All.TextureCoordArrayListIbm; - var _EdgeFlagArrayListIbm = OpenTK.Graphics.OpenGL.All.EdgeFlagArrayListIbm; - var _FogCoordinateArrayListIbm = OpenTK.Graphics.OpenGL.All.FogCoordinateArrayListIbm; - var _SecondaryColorArrayListIbm = OpenTK.Graphics.OpenGL.All.SecondaryColorArrayListIbm; - var _VertexArrayListStrideIbm = OpenTK.Graphics.OpenGL.All.VertexArrayListStrideIbm; - var _NormalArrayListStrideIbm = OpenTK.Graphics.OpenGL.All.NormalArrayListStrideIbm; - var _ColorArrayListStrideIbm = OpenTK.Graphics.OpenGL.All.ColorArrayListStrideIbm; - var _IndexArrayListStrideIbm = OpenTK.Graphics.OpenGL.All.IndexArrayListStrideIbm; - var _TextureCoordArrayListStrideIbm = OpenTK.Graphics.OpenGL.All.TextureCoordArrayListStrideIbm; - var _EdgeFlagArrayListStrideIbm = OpenTK.Graphics.OpenGL.All.EdgeFlagArrayListStrideIbm; - var _FogCoordinateArrayListStrideIbm = OpenTK.Graphics.OpenGL.All.FogCoordinateArrayListStrideIbm; - var _SecondaryColorArrayListStrideIbm = OpenTK.Graphics.OpenGL.All.SecondaryColorArrayListStrideIbm; - var _LayoutLinearCpuCachedIntel = OpenTK.Graphics.OpenGL.All.LayoutLinearCpuCachedIntel; - var _Two = OpenTK.Graphics.OpenGL.All.Two; - var _NextBufferNv = OpenTK.Graphics.OpenGL.All.NextBufferNv; - var _Three = OpenTK.Graphics.OpenGL.All.Three; - var _SkipComponents4Nv = OpenTK.Graphics.OpenGL.All.SkipComponents4Nv; - var _Four = OpenTK.Graphics.OpenGL.All.Four; - var _SkipComponents3Nv = OpenTK.Graphics.OpenGL.All.SkipComponents3Nv; - var _SkipComponents2Nv = OpenTK.Graphics.OpenGL.All.SkipComponents2Nv; - var _SkipComponents1Nv = OpenTK.Graphics.OpenGL.All.SkipComponents1Nv; -} -static void Test_AlphaFunction_19323() { - var _Never = OpenTK.Graphics.OpenGL.AlphaFunction.Never; - var _Less = OpenTK.Graphics.OpenGL.AlphaFunction.Less; - var _Equal = OpenTK.Graphics.OpenGL.AlphaFunction.Equal; - var _Lequal = OpenTK.Graphics.OpenGL.AlphaFunction.Lequal; - var _Greater = OpenTK.Graphics.OpenGL.AlphaFunction.Greater; - var _Notequal = OpenTK.Graphics.OpenGL.AlphaFunction.Notequal; - var _Gequal = OpenTK.Graphics.OpenGL.AlphaFunction.Gequal; - var _Always = OpenTK.Graphics.OpenGL.AlphaFunction.Always; -} -static void Test_AmdBlendMinmaxFactor_19324() { - var _FactorMinAmd = OpenTK.Graphics.OpenGL.AmdBlendMinmaxFactor.FactorMinAmd; - var _FactorMaxAmd = OpenTK.Graphics.OpenGL.AmdBlendMinmaxFactor.FactorMaxAmd; -} -static void Test_AmdConservativeDepth_19325() { -} -static void Test_AmdDebugOutput_19326() { - var _MaxDebugMessageLengthAmd = OpenTK.Graphics.OpenGL.AmdDebugOutput.MaxDebugMessageLengthAmd; - var _MaxDebugLoggedMessagesAmd = OpenTK.Graphics.OpenGL.AmdDebugOutput.MaxDebugLoggedMessagesAmd; - var _DebugLoggedMessagesAmd = OpenTK.Graphics.OpenGL.AmdDebugOutput.DebugLoggedMessagesAmd; - var _DebugSeverityHighAmd = OpenTK.Graphics.OpenGL.AmdDebugOutput.DebugSeverityHighAmd; - var _DebugSeverityMediumAmd = OpenTK.Graphics.OpenGL.AmdDebugOutput.DebugSeverityMediumAmd; - var _DebugSeverityLowAmd = OpenTK.Graphics.OpenGL.AmdDebugOutput.DebugSeverityLowAmd; - var _DebugCategoryApiErrorAmd = OpenTK.Graphics.OpenGL.AmdDebugOutput.DebugCategoryApiErrorAmd; - var _DebugCategoryWindowSystemAmd = OpenTK.Graphics.OpenGL.AmdDebugOutput.DebugCategoryWindowSystemAmd; - var _DebugCategoryDeprecationAmd = OpenTK.Graphics.OpenGL.AmdDebugOutput.DebugCategoryDeprecationAmd; - var _DebugCategoryUndefinedBehaviorAmd = OpenTK.Graphics.OpenGL.AmdDebugOutput.DebugCategoryUndefinedBehaviorAmd; - var _DebugCategoryPerformanceAmd = OpenTK.Graphics.OpenGL.AmdDebugOutput.DebugCategoryPerformanceAmd; - var _DebugCategoryShaderCompilerAmd = OpenTK.Graphics.OpenGL.AmdDebugOutput.DebugCategoryShaderCompilerAmd; - var _DebugCategoryApplicationAmd = OpenTK.Graphics.OpenGL.AmdDebugOutput.DebugCategoryApplicationAmd; - var _DebugCategoryOtherAmd = OpenTK.Graphics.OpenGL.AmdDebugOutput.DebugCategoryOtherAmd; -} -static void Test_AmdDepthClampSeparate_19327() { - var _DepthClampNearAmd = OpenTK.Graphics.OpenGL.AmdDepthClampSeparate.DepthClampNearAmd; - var _DepthClampFarAmd = OpenTK.Graphics.OpenGL.AmdDepthClampSeparate.DepthClampFarAmd; -} -static void Test_AmdDrawBuffersBlend_19328() { -} -static void Test_AmdGcnShader_19329() { -} -static void Test_AmdGpuShaderInt64_19330() { - var _Int64Nv = OpenTK.Graphics.OpenGL.AmdGpuShaderInt64.Int64Nv; - var _UnsignedInt64Nv = OpenTK.Graphics.OpenGL.AmdGpuShaderInt64.UnsignedInt64Nv; - var _Int8Nv = OpenTK.Graphics.OpenGL.AmdGpuShaderInt64.Int8Nv; - var _Int8Vec2Nv = OpenTK.Graphics.OpenGL.AmdGpuShaderInt64.Int8Vec2Nv; - var _Int8Vec3Nv = OpenTK.Graphics.OpenGL.AmdGpuShaderInt64.Int8Vec3Nv; - var _Int8Vec4Nv = OpenTK.Graphics.OpenGL.AmdGpuShaderInt64.Int8Vec4Nv; - var _Int16Nv = OpenTK.Graphics.OpenGL.AmdGpuShaderInt64.Int16Nv; - var _Int16Vec2Nv = OpenTK.Graphics.OpenGL.AmdGpuShaderInt64.Int16Vec2Nv; - var _Int16Vec3Nv = OpenTK.Graphics.OpenGL.AmdGpuShaderInt64.Int16Vec3Nv; - var _Int16Vec4Nv = OpenTK.Graphics.OpenGL.AmdGpuShaderInt64.Int16Vec4Nv; - var _Int64Vec2Nv = OpenTK.Graphics.OpenGL.AmdGpuShaderInt64.Int64Vec2Nv; - var _Int64Vec3Nv = OpenTK.Graphics.OpenGL.AmdGpuShaderInt64.Int64Vec3Nv; - var _Int64Vec4Nv = OpenTK.Graphics.OpenGL.AmdGpuShaderInt64.Int64Vec4Nv; - var _UnsignedInt8Nv = OpenTK.Graphics.OpenGL.AmdGpuShaderInt64.UnsignedInt8Nv; - var _UnsignedInt8Vec2Nv = OpenTK.Graphics.OpenGL.AmdGpuShaderInt64.UnsignedInt8Vec2Nv; - var _UnsignedInt8Vec3Nv = OpenTK.Graphics.OpenGL.AmdGpuShaderInt64.UnsignedInt8Vec3Nv; - var _UnsignedInt8Vec4Nv = OpenTK.Graphics.OpenGL.AmdGpuShaderInt64.UnsignedInt8Vec4Nv; - var _UnsignedInt16Nv = OpenTK.Graphics.OpenGL.AmdGpuShaderInt64.UnsignedInt16Nv; - var _UnsignedInt16Vec2Nv = OpenTK.Graphics.OpenGL.AmdGpuShaderInt64.UnsignedInt16Vec2Nv; - var _UnsignedInt16Vec3Nv = OpenTK.Graphics.OpenGL.AmdGpuShaderInt64.UnsignedInt16Vec3Nv; - var _UnsignedInt16Vec4Nv = OpenTK.Graphics.OpenGL.AmdGpuShaderInt64.UnsignedInt16Vec4Nv; - var _UnsignedInt64Vec2Nv = OpenTK.Graphics.OpenGL.AmdGpuShaderInt64.UnsignedInt64Vec2Nv; - var _UnsignedInt64Vec3Nv = OpenTK.Graphics.OpenGL.AmdGpuShaderInt64.UnsignedInt64Vec3Nv; - var _UnsignedInt64Vec4Nv = OpenTK.Graphics.OpenGL.AmdGpuShaderInt64.UnsignedInt64Vec4Nv; - var _Float16Nv = OpenTK.Graphics.OpenGL.AmdGpuShaderInt64.Float16Nv; - var _Float16Vec2Nv = OpenTK.Graphics.OpenGL.AmdGpuShaderInt64.Float16Vec2Nv; - var _Float16Vec3Nv = OpenTK.Graphics.OpenGL.AmdGpuShaderInt64.Float16Vec3Nv; - var _Float16Vec4Nv = OpenTK.Graphics.OpenGL.AmdGpuShaderInt64.Float16Vec4Nv; -} -static void Test_AmdInterleavedElements_19331() { - var _Red = OpenTK.Graphics.OpenGL.AmdInterleavedElements.Red; - var _Green = OpenTK.Graphics.OpenGL.AmdInterleavedElements.Green; - var _Blue = OpenTK.Graphics.OpenGL.AmdInterleavedElements.Blue; - var _Alpha = OpenTK.Graphics.OpenGL.AmdInterleavedElements.Alpha; - var _Rg8ui = OpenTK.Graphics.OpenGL.AmdInterleavedElements.Rg8ui; - var _Rg16ui = OpenTK.Graphics.OpenGL.AmdInterleavedElements.Rg16ui; - var _Rgba8ui = OpenTK.Graphics.OpenGL.AmdInterleavedElements.Rgba8ui; - var _VertexElementSwizzleAmd = OpenTK.Graphics.OpenGL.AmdInterleavedElements.VertexElementSwizzleAmd; - var _VertexIdSwizzleAmd = OpenTK.Graphics.OpenGL.AmdInterleavedElements.VertexIdSwizzleAmd; -} -static void Test_AmdMultiDrawIndirect_19332() { -} -static void Test_AmdNameGenDelete_19333() { - var _DataBufferAmd = OpenTK.Graphics.OpenGL.AmdNameGenDelete.DataBufferAmd; - var _PerformanceMonitorAmd = OpenTK.Graphics.OpenGL.AmdNameGenDelete.PerformanceMonitorAmd; - var _QueryObjectAmd = OpenTK.Graphics.OpenGL.AmdNameGenDelete.QueryObjectAmd; - var _VertexArrayObjectAmd = OpenTK.Graphics.OpenGL.AmdNameGenDelete.VertexArrayObjectAmd; - var _SamplerObjectAmd = OpenTK.Graphics.OpenGL.AmdNameGenDelete.SamplerObjectAmd; -} -static void Test_AmdOcclusionQueryEvent_19334() { - var _QueryDepthPassEventBitAmd = OpenTK.Graphics.OpenGL.AmdOcclusionQueryEvent.QueryDepthPassEventBitAmd; - var _QueryDepthFailEventBitAmd = OpenTK.Graphics.OpenGL.AmdOcclusionQueryEvent.QueryDepthFailEventBitAmd; - var _QueryStencilFailEventBitAmd = OpenTK.Graphics.OpenGL.AmdOcclusionQueryEvent.QueryStencilFailEventBitAmd; - var _QueryDepthBoundsFailEventBitAmd = OpenTK.Graphics.OpenGL.AmdOcclusionQueryEvent.QueryDepthBoundsFailEventBitAmd; - var _OcclusionQueryEventMaskAmd = OpenTK.Graphics.OpenGL.AmdOcclusionQueryEvent.OcclusionQueryEventMaskAmd; - var _QueryAllEventBitsAmd = OpenTK.Graphics.OpenGL.AmdOcclusionQueryEvent.QueryAllEventBitsAmd; -} -static void Test_AmdPerformanceMonitor_19335() { - var _CounterTypeAmd = OpenTK.Graphics.OpenGL.AmdPerformanceMonitor.CounterTypeAmd; - var _CounterRangeAmd = OpenTK.Graphics.OpenGL.AmdPerformanceMonitor.CounterRangeAmd; - var _UnsignedInt64Amd = OpenTK.Graphics.OpenGL.AmdPerformanceMonitor.UnsignedInt64Amd; - var _PercentageAmd = OpenTK.Graphics.OpenGL.AmdPerformanceMonitor.PercentageAmd; - var _PerfmonResultAvailableAmd = OpenTK.Graphics.OpenGL.AmdPerformanceMonitor.PerfmonResultAvailableAmd; - var _PerfmonResultSizeAmd = OpenTK.Graphics.OpenGL.AmdPerformanceMonitor.PerfmonResultSizeAmd; - var _PerfmonResultAmd = OpenTK.Graphics.OpenGL.AmdPerformanceMonitor.PerfmonResultAmd; -} -static void Test_AmdPinnedMemory_19336() { - var _ExternalVirtualMemoryBufferAmd = OpenTK.Graphics.OpenGL.AmdPinnedMemory.ExternalVirtualMemoryBufferAmd; -} -static void Test_AmdQueryBufferObject_19337() { - var _QueryBufferAmd = OpenTK.Graphics.OpenGL.AmdQueryBufferObject.QueryBufferAmd; - var _QueryBufferBindingAmd = OpenTK.Graphics.OpenGL.AmdQueryBufferObject.QueryBufferBindingAmd; - var _QueryResultNoWaitAmd = OpenTK.Graphics.OpenGL.AmdQueryBufferObject.QueryResultNoWaitAmd; -} -static void Test_AmdSamplePositions_19338() { - var _SubsampleDistanceAmd = OpenTK.Graphics.OpenGL.AmdSamplePositions.SubsampleDistanceAmd; -} -static void Test_AmdSeamlessCubemapPerTexture_19339() { - var _TextureCubeMapSeamless = OpenTK.Graphics.OpenGL.AmdSeamlessCubemapPerTexture.TextureCubeMapSeamless; -} -static void Test_AmdShaderAtomicCounterOps_19340() { -} -static void Test_AmdShaderStencilExport_19341() { -} -static void Test_AmdShaderTrinaryMinmax_19342() { -} -static void Test_AmdSparseTexture_19343() { - var _TextureStorageSparseBitAmd = OpenTK.Graphics.OpenGL.AmdSparseTexture.TextureStorageSparseBitAmd; - var _VirtualPageSizeXAmd = OpenTK.Graphics.OpenGL.AmdSparseTexture.VirtualPageSizeXAmd; - var _VirtualPageSizeYAmd = OpenTK.Graphics.OpenGL.AmdSparseTexture.VirtualPageSizeYAmd; - var _VirtualPageSizeZAmd = OpenTK.Graphics.OpenGL.AmdSparseTexture.VirtualPageSizeZAmd; - var _MaxSparseTextureSizeAmd = OpenTK.Graphics.OpenGL.AmdSparseTexture.MaxSparseTextureSizeAmd; - var _MaxSparse3DTextureSizeAmd = OpenTK.Graphics.OpenGL.AmdSparseTexture.MaxSparse3DTextureSizeAmd; - var _MaxSparseArrayTextureLayers = OpenTK.Graphics.OpenGL.AmdSparseTexture.MaxSparseArrayTextureLayers; - var _MinSparseLevelAmd = OpenTK.Graphics.OpenGL.AmdSparseTexture.MinSparseLevelAmd; - var _MinLodWarningAmd = OpenTK.Graphics.OpenGL.AmdSparseTexture.MinLodWarningAmd; -} -static void Test_AmdStencilOperationExtended_19344() { - var _SetAmd = OpenTK.Graphics.OpenGL.AmdStencilOperationExtended.SetAmd; - var _ReplaceValueAmd = OpenTK.Graphics.OpenGL.AmdStencilOperationExtended.ReplaceValueAmd; - var _StencilOpValueAmd = OpenTK.Graphics.OpenGL.AmdStencilOperationExtended.StencilOpValueAmd; - var _StencilBackOpValueAmd = OpenTK.Graphics.OpenGL.AmdStencilOperationExtended.StencilBackOpValueAmd; -} -static void Test_AmdTextureTexture4_19345() { -} -static void Test_AmdTransformFeedback3LinesTriangles_19346() { -} -static void Test_AmdTransformFeedback4_19347() { - var _StreamRasterizationAmd = OpenTK.Graphics.OpenGL.AmdTransformFeedback4.StreamRasterizationAmd; -} -static void Test_AmdVertexShaderLayer_19348() { -} -static void Test_AmdVertexShaderTesselator_19349() { - var _SamplerBufferAmd = OpenTK.Graphics.OpenGL.AmdVertexShaderTesselator.SamplerBufferAmd; - var _IntSamplerBufferAmd = OpenTK.Graphics.OpenGL.AmdVertexShaderTesselator.IntSamplerBufferAmd; - var _UnsignedIntSamplerBufferAmd = OpenTK.Graphics.OpenGL.AmdVertexShaderTesselator.UnsignedIntSamplerBufferAmd; - var _TessellationModeAmd = OpenTK.Graphics.OpenGL.AmdVertexShaderTesselator.TessellationModeAmd; - var _TessellationFactorAmd = OpenTK.Graphics.OpenGL.AmdVertexShaderTesselator.TessellationFactorAmd; - var _DiscreteAmd = OpenTK.Graphics.OpenGL.AmdVertexShaderTesselator.DiscreteAmd; - var _ContinuousAmd = OpenTK.Graphics.OpenGL.AmdVertexShaderTesselator.ContinuousAmd; -} -static void Test_AmdVertexShaderTessellator_19350() { - var _SamplerBufferAmd = OpenTK.Graphics.OpenGL.AmdVertexShaderTessellator.SamplerBufferAmd; - var _IntSamplerBufferAmd = OpenTK.Graphics.OpenGL.AmdVertexShaderTessellator.IntSamplerBufferAmd; - var _UnsignedIntSamplerBufferAmd = OpenTK.Graphics.OpenGL.AmdVertexShaderTessellator.UnsignedIntSamplerBufferAmd; - var _TessellationModeAmd = OpenTK.Graphics.OpenGL.AmdVertexShaderTessellator.TessellationModeAmd; - var _TessellationFactorAmd = OpenTK.Graphics.OpenGL.AmdVertexShaderTessellator.TessellationFactorAmd; - var _DiscreteAmd = OpenTK.Graphics.OpenGL.AmdVertexShaderTessellator.DiscreteAmd; - var _ContinuousAmd = OpenTK.Graphics.OpenGL.AmdVertexShaderTessellator.ContinuousAmd; -} -static void Test_AmdVertexShaderViewportIndex_19351() { -} -static void Test_AppleAuxDepthStencil_19352() { - var _AuxDepthStencilApple = OpenTK.Graphics.OpenGL.AppleAuxDepthStencil.AuxDepthStencilApple; -} -static void Test_AppleClientStorage_19353() { - var _UnpackClientStorageApple = OpenTK.Graphics.OpenGL.AppleClientStorage.UnpackClientStorageApple; -} -static void Test_AppleElementArray_19354() { - var _ElementArrayApple = OpenTK.Graphics.OpenGL.AppleElementArray.ElementArrayApple; - var _ElementArrayTypeApple = OpenTK.Graphics.OpenGL.AppleElementArray.ElementArrayTypeApple; - var _ElementArrayPointerApple = OpenTK.Graphics.OpenGL.AppleElementArray.ElementArrayPointerApple; -} -static void Test_AppleFence_19355() { - var _DrawPixelsApple = OpenTK.Graphics.OpenGL.AppleFence.DrawPixelsApple; - var _FenceApple = OpenTK.Graphics.OpenGL.AppleFence.FenceApple; -} -static void Test_AppleFloatPixels_19356() { - var _HalfApple = OpenTK.Graphics.OpenGL.AppleFloatPixels.HalfApple; - var _RgbaFloat32Apple = OpenTK.Graphics.OpenGL.AppleFloatPixels.RgbaFloat32Apple; - var _RgbFloat32Apple = OpenTK.Graphics.OpenGL.AppleFloatPixels.RgbFloat32Apple; - var _AlphaFloat32Apple = OpenTK.Graphics.OpenGL.AppleFloatPixels.AlphaFloat32Apple; - var _IntensityFloat32Apple = OpenTK.Graphics.OpenGL.AppleFloatPixels.IntensityFloat32Apple; - var _LuminanceFloat32Apple = OpenTK.Graphics.OpenGL.AppleFloatPixels.LuminanceFloat32Apple; - var _LuminanceAlphaFloat32Apple = OpenTK.Graphics.OpenGL.AppleFloatPixels.LuminanceAlphaFloat32Apple; - var _RgbaFloat16Apple = OpenTK.Graphics.OpenGL.AppleFloatPixels.RgbaFloat16Apple; - var _RgbFloat16Apple = OpenTK.Graphics.OpenGL.AppleFloatPixels.RgbFloat16Apple; - var _AlphaFloat16Apple = OpenTK.Graphics.OpenGL.AppleFloatPixels.AlphaFloat16Apple; - var _IntensityFloat16Apple = OpenTK.Graphics.OpenGL.AppleFloatPixels.IntensityFloat16Apple; - var _LuminanceFloat16Apple = OpenTK.Graphics.OpenGL.AppleFloatPixels.LuminanceFloat16Apple; - var _LuminanceAlphaFloat16Apple = OpenTK.Graphics.OpenGL.AppleFloatPixels.LuminanceAlphaFloat16Apple; - var _ColorFloatApple = OpenTK.Graphics.OpenGL.AppleFloatPixels.ColorFloatApple; -} -static void Test_AppleFlushBufferRange_19357() { - var _BufferSerializedModifyApple = OpenTK.Graphics.OpenGL.AppleFlushBufferRange.BufferSerializedModifyApple; - var _BufferFlushingUnmapApple = OpenTK.Graphics.OpenGL.AppleFlushBufferRange.BufferFlushingUnmapApple; -} -static void Test_AppleObjectPurgeable_19358() { - var _BufferObjectApple = OpenTK.Graphics.OpenGL.AppleObjectPurgeable.BufferObjectApple; - var _ReleasedApple = OpenTK.Graphics.OpenGL.AppleObjectPurgeable.ReleasedApple; - var _VolatileApple = OpenTK.Graphics.OpenGL.AppleObjectPurgeable.VolatileApple; - var _RetainedApple = OpenTK.Graphics.OpenGL.AppleObjectPurgeable.RetainedApple; - var _UndefinedApple = OpenTK.Graphics.OpenGL.AppleObjectPurgeable.UndefinedApple; - var _PurgeableApple = OpenTK.Graphics.OpenGL.AppleObjectPurgeable.PurgeableApple; -} -static void Test_AppleRgb422_19359() { - var _UnsignedShort88Apple = OpenTK.Graphics.OpenGL.AppleRgb422.UnsignedShort88Apple; - var _UnsignedShort88RevApple = OpenTK.Graphics.OpenGL.AppleRgb422.UnsignedShort88RevApple; - var _Rgb422Apple = OpenTK.Graphics.OpenGL.AppleRgb422.Rgb422Apple; - var _RgbRaw422Apple = OpenTK.Graphics.OpenGL.AppleRgb422.RgbRaw422Apple; -} -static void Test_AppleRowBytes_19360() { - var _PackRowBytesApple = OpenTK.Graphics.OpenGL.AppleRowBytes.PackRowBytesApple; - var _UnpackRowBytesApple = OpenTK.Graphics.OpenGL.AppleRowBytes.UnpackRowBytesApple; -} -static void Test_AppleSpecularVector_19361() { - var _LightModelSpecularVectorApple = OpenTK.Graphics.OpenGL.AppleSpecularVector.LightModelSpecularVectorApple; -} -static void Test_AppleTextureRange_19362() { - var _TextureRangeLengthApple = OpenTK.Graphics.OpenGL.AppleTextureRange.TextureRangeLengthApple; - var _TextureRangePointerApple = OpenTK.Graphics.OpenGL.AppleTextureRange.TextureRangePointerApple; - var _TextureStorageHintApple = OpenTK.Graphics.OpenGL.AppleTextureRange.TextureStorageHintApple; - var _StoragePrivateApple = OpenTK.Graphics.OpenGL.AppleTextureRange.StoragePrivateApple; - var _StorageCachedApple = OpenTK.Graphics.OpenGL.AppleTextureRange.StorageCachedApple; - var _StorageSharedApple = OpenTK.Graphics.OpenGL.AppleTextureRange.StorageSharedApple; -} -static void Test_AppleTransformHint_19363() { - var _TransformHintApple = OpenTK.Graphics.OpenGL.AppleTransformHint.TransformHintApple; -} -static void Test_AppleVertexArrayObject_19364() { - var _VertexArrayBindingApple = OpenTK.Graphics.OpenGL.AppleVertexArrayObject.VertexArrayBindingApple; -} -static void Test_AppleVertexArrayRange_19365() { - var _VertexArrayRangeApple = OpenTK.Graphics.OpenGL.AppleVertexArrayRange.VertexArrayRangeApple; - var _VertexArrayRangeLengthApple = OpenTK.Graphics.OpenGL.AppleVertexArrayRange.VertexArrayRangeLengthApple; - var _VertexArrayStorageHintApple = OpenTK.Graphics.OpenGL.AppleVertexArrayRange.VertexArrayStorageHintApple; - var _VertexArrayRangePointerApple = OpenTK.Graphics.OpenGL.AppleVertexArrayRange.VertexArrayRangePointerApple; - var _StorageClientApple = OpenTK.Graphics.OpenGL.AppleVertexArrayRange.StorageClientApple; - var _StorageCachedApple = OpenTK.Graphics.OpenGL.AppleVertexArrayRange.StorageCachedApple; - var _StorageSharedApple = OpenTK.Graphics.OpenGL.AppleVertexArrayRange.StorageSharedApple; -} -static void Test_AppleVertexProgramEvaluators_19366() { - var _VertexAttribMap1Apple = OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators.VertexAttribMap1Apple; - var _VertexAttribMap2Apple = OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators.VertexAttribMap2Apple; - var _VertexAttribMap1SizeApple = OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators.VertexAttribMap1SizeApple; - var _VertexAttribMap1CoeffApple = OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators.VertexAttribMap1CoeffApple; - var _VertexAttribMap1OrderApple = OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators.VertexAttribMap1OrderApple; - var _VertexAttribMap1DomainApple = OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators.VertexAttribMap1DomainApple; - var _VertexAttribMap2SizeApple = OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators.VertexAttribMap2SizeApple; - var _VertexAttribMap2CoeffApple = OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators.VertexAttribMap2CoeffApple; - var _VertexAttribMap2OrderApple = OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators.VertexAttribMap2OrderApple; - var _VertexAttribMap2DomainApple = OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators.VertexAttribMap2DomainApple; -} -static void Test_AppleYcbcr422_19367() { - var _Ycbcr422Apple = OpenTK.Graphics.OpenGL.AppleYcbcr422.Ycbcr422Apple; - var _UnsignedShort88Apple = OpenTK.Graphics.OpenGL.AppleYcbcr422.UnsignedShort88Apple; - var _UnsignedShort88RevApple = OpenTK.Graphics.OpenGL.AppleYcbcr422.UnsignedShort88RevApple; -} -static void Test_ArbArraysOfArrays_19368() { -} -static void Test_ArbBaseInstance_19369() { -} -static void Test_ArbBindlessTexture_19370() { - var _UnsignedInt64Arb = OpenTK.Graphics.OpenGL.ArbBindlessTexture.UnsignedInt64Arb; -} -static void Test_ArbBlendFuncExtended_19371() { - var _Src1Alpha = OpenTK.Graphics.OpenGL.ArbBlendFuncExtended.Src1Alpha; - var _Src1Color = OpenTK.Graphics.OpenGL.ArbBlendFuncExtended.Src1Color; - var _OneMinusSrc1Color = OpenTK.Graphics.OpenGL.ArbBlendFuncExtended.OneMinusSrc1Color; - var _OneMinusSrc1Alpha = OpenTK.Graphics.OpenGL.ArbBlendFuncExtended.OneMinusSrc1Alpha; - var _MaxDualSourceDrawBuffers = OpenTK.Graphics.OpenGL.ArbBlendFuncExtended.MaxDualSourceDrawBuffers; -} -static void Test_ArbBufferStorage_19372() { - var _ClientMappedBufferBarrierBit = OpenTK.Graphics.OpenGL.ArbBufferStorage.ClientMappedBufferBarrierBit; - var _MapReadBit = OpenTK.Graphics.OpenGL.ArbBufferStorage.MapReadBit; - var _MapWriteBit = OpenTK.Graphics.OpenGL.ArbBufferStorage.MapWriteBit; - var _MapPersistentBit = OpenTK.Graphics.OpenGL.ArbBufferStorage.MapPersistentBit; - var _MapCoherentBit = OpenTK.Graphics.OpenGL.ArbBufferStorage.MapCoherentBit; - var _DynamicStorageBit = OpenTK.Graphics.OpenGL.ArbBufferStorage.DynamicStorageBit; - var _ClientStorageBit = OpenTK.Graphics.OpenGL.ArbBufferStorage.ClientStorageBit; - var _BufferImmutableStorage = OpenTK.Graphics.OpenGL.ArbBufferStorage.BufferImmutableStorage; - var _BufferStorageFlags = OpenTK.Graphics.OpenGL.ArbBufferStorage.BufferStorageFlags; -} -static void Test_ArbClearBufferObject_19373() { -} -static void Test_ArbClearTexture_19374() { - var _ClearTexture = OpenTK.Graphics.OpenGL.ArbClearTexture.ClearTexture; -} -static void Test_ArbClEvent_19375() { - var _SyncClEventArb = OpenTK.Graphics.OpenGL.ArbClEvent.SyncClEventArb; - var _SyncClEventCompleteArb = OpenTK.Graphics.OpenGL.ArbClEvent.SyncClEventCompleteArb; -} -static void Test_ArbColorBufferFloat_19376() { - var _RgbaFloatModeArb = OpenTK.Graphics.OpenGL.ArbColorBufferFloat.RgbaFloatModeArb; - var _ClampVertexColorArb = OpenTK.Graphics.OpenGL.ArbColorBufferFloat.ClampVertexColorArb; - var _ClampFragmentColorArb = OpenTK.Graphics.OpenGL.ArbColorBufferFloat.ClampFragmentColorArb; - var _ClampReadColorArb = OpenTK.Graphics.OpenGL.ArbColorBufferFloat.ClampReadColorArb; - var _FixedOnlyArb = OpenTK.Graphics.OpenGL.ArbColorBufferFloat.FixedOnlyArb; -} -static void Test_ArbCompatibility_19377() { -} -static void Test_ArbCompressedTexturePixelStorage_19378() { - var _UnpackCompressedBlockWidth = OpenTK.Graphics.OpenGL.ArbCompressedTexturePixelStorage.UnpackCompressedBlockWidth; - var _UnpackCompressedBlockHeight = OpenTK.Graphics.OpenGL.ArbCompressedTexturePixelStorage.UnpackCompressedBlockHeight; - var _UnpackCompressedBlockDepth = OpenTK.Graphics.OpenGL.ArbCompressedTexturePixelStorage.UnpackCompressedBlockDepth; - var _UnpackCompressedBlockSize = OpenTK.Graphics.OpenGL.ArbCompressedTexturePixelStorage.UnpackCompressedBlockSize; - var _PackCompressedBlockWidth = OpenTK.Graphics.OpenGL.ArbCompressedTexturePixelStorage.PackCompressedBlockWidth; - var _PackCompressedBlockHeight = OpenTK.Graphics.OpenGL.ArbCompressedTexturePixelStorage.PackCompressedBlockHeight; - var _PackCompressedBlockDepth = OpenTK.Graphics.OpenGL.ArbCompressedTexturePixelStorage.PackCompressedBlockDepth; - var _PackCompressedBlockSize = OpenTK.Graphics.OpenGL.ArbCompressedTexturePixelStorage.PackCompressedBlockSize; -} -static void Test_ArbComputeShader_19379() { - var _ComputeShaderBit = OpenTK.Graphics.OpenGL.ArbComputeShader.ComputeShaderBit; - var _MaxComputeSharedMemorySize = OpenTK.Graphics.OpenGL.ArbComputeShader.MaxComputeSharedMemorySize; - var _MaxComputeUniformComponents = OpenTK.Graphics.OpenGL.ArbComputeShader.MaxComputeUniformComponents; - var _MaxComputeAtomicCounterBuffers = OpenTK.Graphics.OpenGL.ArbComputeShader.MaxComputeAtomicCounterBuffers; - var _MaxComputeAtomicCounters = OpenTK.Graphics.OpenGL.ArbComputeShader.MaxComputeAtomicCounters; - var _MaxCombinedComputeUniformComponents = OpenTK.Graphics.OpenGL.ArbComputeShader.MaxCombinedComputeUniformComponents; - var _ComputeWorkGroupSize = OpenTK.Graphics.OpenGL.ArbComputeShader.ComputeWorkGroupSize; - var _MaxComputeWorkGroupInvocations = OpenTK.Graphics.OpenGL.ArbComputeShader.MaxComputeWorkGroupInvocations; - var _UniformBlockReferencedByComputeShader = OpenTK.Graphics.OpenGL.ArbComputeShader.UniformBlockReferencedByComputeShader; - var _AtomicCounterBufferReferencedByComputeShader = OpenTK.Graphics.OpenGL.ArbComputeShader.AtomicCounterBufferReferencedByComputeShader; - var _DispatchIndirectBuffer = OpenTK.Graphics.OpenGL.ArbComputeShader.DispatchIndirectBuffer; - var _DispatchIndirectBufferBinding = OpenTK.Graphics.OpenGL.ArbComputeShader.DispatchIndirectBufferBinding; - var _ComputeShader = OpenTK.Graphics.OpenGL.ArbComputeShader.ComputeShader; - var _MaxComputeUniformBlocks = OpenTK.Graphics.OpenGL.ArbComputeShader.MaxComputeUniformBlocks; - var _MaxComputeTextureImageUnits = OpenTK.Graphics.OpenGL.ArbComputeShader.MaxComputeTextureImageUnits; - var _MaxComputeImageUniforms = OpenTK.Graphics.OpenGL.ArbComputeShader.MaxComputeImageUniforms; - var _MaxComputeWorkGroupCount = OpenTK.Graphics.OpenGL.ArbComputeShader.MaxComputeWorkGroupCount; - var _MaxComputeWorkGroupSize = OpenTK.Graphics.OpenGL.ArbComputeShader.MaxComputeWorkGroupSize; -} -static void Test_ArbComputeVariableGroupSize_19380() { - var _MaxComputeFixedGroupInvocationsArb = OpenTK.Graphics.OpenGL.ArbComputeVariableGroupSize.MaxComputeFixedGroupInvocationsArb; - var _MaxComputeFixedGroupSizeArb = OpenTK.Graphics.OpenGL.ArbComputeVariableGroupSize.MaxComputeFixedGroupSizeArb; - var _MaxComputeVariableGroupInvocationsArb = OpenTK.Graphics.OpenGL.ArbComputeVariableGroupSize.MaxComputeVariableGroupInvocationsArb; - var _MaxComputeVariableGroupSizeArb = OpenTK.Graphics.OpenGL.ArbComputeVariableGroupSize.MaxComputeVariableGroupSizeArb; -} -static void Test_ArbConservativeDepth_19381() { -} -static void Test_ArbCopyBuffer_19382() { - var _CopyReadBuffer = OpenTK.Graphics.OpenGL.ArbCopyBuffer.CopyReadBuffer; - var _CopyReadBufferBinding = OpenTK.Graphics.OpenGL.ArbCopyBuffer.CopyReadBufferBinding; - var _CopyWriteBuffer = OpenTK.Graphics.OpenGL.ArbCopyBuffer.CopyWriteBuffer; - var _CopyWriteBufferBinding = OpenTK.Graphics.OpenGL.ArbCopyBuffer.CopyWriteBufferBinding; -} -static void Test_ArbCopyImage_19383() { -} -static void Test_ArbDebugOutput_19384() { - var _DebugOutputSynchronousArb = OpenTK.Graphics.OpenGL.ArbDebugOutput.DebugOutputSynchronousArb; - var _DebugNextLoggedMessageLengthArb = OpenTK.Graphics.OpenGL.ArbDebugOutput.DebugNextLoggedMessageLengthArb; - var _DebugCallbackFunctionArb = OpenTK.Graphics.OpenGL.ArbDebugOutput.DebugCallbackFunctionArb; - var _DebugCallbackUserParamArb = OpenTK.Graphics.OpenGL.ArbDebugOutput.DebugCallbackUserParamArb; - var _DebugSourceApiArb = OpenTK.Graphics.OpenGL.ArbDebugOutput.DebugSourceApiArb; - var _DebugSourceWindowSystemArb = OpenTK.Graphics.OpenGL.ArbDebugOutput.DebugSourceWindowSystemArb; - var _DebugSourceShaderCompilerArb = OpenTK.Graphics.OpenGL.ArbDebugOutput.DebugSourceShaderCompilerArb; - var _DebugSourceThirdPartyArb = OpenTK.Graphics.OpenGL.ArbDebugOutput.DebugSourceThirdPartyArb; - var _DebugSourceApplicationArb = OpenTK.Graphics.OpenGL.ArbDebugOutput.DebugSourceApplicationArb; - var _DebugSourceOtherArb = OpenTK.Graphics.OpenGL.ArbDebugOutput.DebugSourceOtherArb; - var _DebugTypeErrorArb = OpenTK.Graphics.OpenGL.ArbDebugOutput.DebugTypeErrorArb; - var _DebugTypeDeprecatedBehaviorArb = OpenTK.Graphics.OpenGL.ArbDebugOutput.DebugTypeDeprecatedBehaviorArb; - var _DebugTypeUndefinedBehaviorArb = OpenTK.Graphics.OpenGL.ArbDebugOutput.DebugTypeUndefinedBehaviorArb; - var _DebugTypePortabilityArb = OpenTK.Graphics.OpenGL.ArbDebugOutput.DebugTypePortabilityArb; - var _DebugTypePerformanceArb = OpenTK.Graphics.OpenGL.ArbDebugOutput.DebugTypePerformanceArb; - var _DebugTypeOtherArb = OpenTK.Graphics.OpenGL.ArbDebugOutput.DebugTypeOtherArb; - var _MaxDebugMessageLengthArb = OpenTK.Graphics.OpenGL.ArbDebugOutput.MaxDebugMessageLengthArb; - var _MaxDebugLoggedMessagesArb = OpenTK.Graphics.OpenGL.ArbDebugOutput.MaxDebugLoggedMessagesArb; - var _DebugLoggedMessagesArb = OpenTK.Graphics.OpenGL.ArbDebugOutput.DebugLoggedMessagesArb; - var _DebugSeverityHighArb = OpenTK.Graphics.OpenGL.ArbDebugOutput.DebugSeverityHighArb; - var _DebugSeverityMediumArb = OpenTK.Graphics.OpenGL.ArbDebugOutput.DebugSeverityMediumArb; - var _DebugSeverityLowArb = OpenTK.Graphics.OpenGL.ArbDebugOutput.DebugSeverityLowArb; -} -static void Test_ArbDepthBufferFloat_19385() { - var _DepthComponent32f = OpenTK.Graphics.OpenGL.ArbDepthBufferFloat.DepthComponent32f; - var _Depth32fStencil8 = OpenTK.Graphics.OpenGL.ArbDepthBufferFloat.Depth32fStencil8; - var _Float32UnsignedInt248Rev = OpenTK.Graphics.OpenGL.ArbDepthBufferFloat.Float32UnsignedInt248Rev; -} -static void Test_ArbDepthClamp_19386() { - var _DepthClamp = OpenTK.Graphics.OpenGL.ArbDepthClamp.DepthClamp; -} -static void Test_ArbDepthTexture_19387() { - var _DepthComponent16Arb = OpenTK.Graphics.OpenGL.ArbDepthTexture.DepthComponent16Arb; - var _DepthComponent24Arb = OpenTK.Graphics.OpenGL.ArbDepthTexture.DepthComponent24Arb; - var _DepthComponent32Arb = OpenTK.Graphics.OpenGL.ArbDepthTexture.DepthComponent32Arb; - var _TextureDepthSizeArb = OpenTK.Graphics.OpenGL.ArbDepthTexture.TextureDepthSizeArb; - var _DepthTextureModeArb = OpenTK.Graphics.OpenGL.ArbDepthTexture.DepthTextureModeArb; -} -static void Test_ArbDrawBuffers_19388() { - var _MaxDrawBuffersArb = OpenTK.Graphics.OpenGL.ArbDrawBuffers.MaxDrawBuffersArb; - var _DrawBuffer0Arb = OpenTK.Graphics.OpenGL.ArbDrawBuffers.DrawBuffer0Arb; - var _DrawBuffer1Arb = OpenTK.Graphics.OpenGL.ArbDrawBuffers.DrawBuffer1Arb; - var _DrawBuffer2Arb = OpenTK.Graphics.OpenGL.ArbDrawBuffers.DrawBuffer2Arb; - var _DrawBuffer3Arb = OpenTK.Graphics.OpenGL.ArbDrawBuffers.DrawBuffer3Arb; - var _DrawBuffer4Arb = OpenTK.Graphics.OpenGL.ArbDrawBuffers.DrawBuffer4Arb; - var _DrawBuffer5Arb = OpenTK.Graphics.OpenGL.ArbDrawBuffers.DrawBuffer5Arb; - var _DrawBuffer6Arb = OpenTK.Graphics.OpenGL.ArbDrawBuffers.DrawBuffer6Arb; - var _DrawBuffer7Arb = OpenTK.Graphics.OpenGL.ArbDrawBuffers.DrawBuffer7Arb; - var _DrawBuffer8Arb = OpenTK.Graphics.OpenGL.ArbDrawBuffers.DrawBuffer8Arb; - var _DrawBuffer9Arb = OpenTK.Graphics.OpenGL.ArbDrawBuffers.DrawBuffer9Arb; - var _DrawBuffer10Arb = OpenTK.Graphics.OpenGL.ArbDrawBuffers.DrawBuffer10Arb; - var _DrawBuffer11Arb = OpenTK.Graphics.OpenGL.ArbDrawBuffers.DrawBuffer11Arb; - var _DrawBuffer12Arb = OpenTK.Graphics.OpenGL.ArbDrawBuffers.DrawBuffer12Arb; - var _DrawBuffer13Arb = OpenTK.Graphics.OpenGL.ArbDrawBuffers.DrawBuffer13Arb; - var _DrawBuffer14Arb = OpenTK.Graphics.OpenGL.ArbDrawBuffers.DrawBuffer14Arb; - var _DrawBuffer15Arb = OpenTK.Graphics.OpenGL.ArbDrawBuffers.DrawBuffer15Arb; -} -static void Test_ArbDrawBuffersBlend_19389() { -} -static void Test_ArbDrawElementsBaseVertex_19390() { -} -static void Test_ArbDrawIndirect_19391() { - var _DrawIndirectBuffer = OpenTK.Graphics.OpenGL.ArbDrawIndirect.DrawIndirectBuffer; - var _DrawIndirectBufferBinding = OpenTK.Graphics.OpenGL.ArbDrawIndirect.DrawIndirectBufferBinding; -} -static void Test_ArbDrawInstanced_19392() { -} -static void Test_ArbEnhancedLayouts_19393() { - var _TransformFeedbackBuffer = OpenTK.Graphics.OpenGL.ArbEnhancedLayouts.TransformFeedbackBuffer; - var _LocationComponent = OpenTK.Graphics.OpenGL.ArbEnhancedLayouts.LocationComponent; - var _TransformFeedbackBufferIndex = OpenTK.Graphics.OpenGL.ArbEnhancedLayouts.TransformFeedbackBufferIndex; - var _TransformFeedbackBufferStride = OpenTK.Graphics.OpenGL.ArbEnhancedLayouts.TransformFeedbackBufferStride; -} -static void Test_ArbEs2Compatibility_19394() { - var _Fixed = OpenTK.Graphics.OpenGL.ArbEs2Compatibility.Fixed; - var _ImplementationColorReadType = OpenTK.Graphics.OpenGL.ArbEs2Compatibility.ImplementationColorReadType; - var _ImplementationColorReadFormat = OpenTK.Graphics.OpenGL.ArbEs2Compatibility.ImplementationColorReadFormat; - var _Rgb565 = OpenTK.Graphics.OpenGL.ArbEs2Compatibility.Rgb565; - var _LowFloat = OpenTK.Graphics.OpenGL.ArbEs2Compatibility.LowFloat; - var _MediumFloat = OpenTK.Graphics.OpenGL.ArbEs2Compatibility.MediumFloat; - var _HighFloat = OpenTK.Graphics.OpenGL.ArbEs2Compatibility.HighFloat; - var _LowInt = OpenTK.Graphics.OpenGL.ArbEs2Compatibility.LowInt; - var _MediumInt = OpenTK.Graphics.OpenGL.ArbEs2Compatibility.MediumInt; - var _HighInt = OpenTK.Graphics.OpenGL.ArbEs2Compatibility.HighInt; - var _ShaderBinaryFormats = OpenTK.Graphics.OpenGL.ArbEs2Compatibility.ShaderBinaryFormats; - var _NumShaderBinaryFormats = OpenTK.Graphics.OpenGL.ArbEs2Compatibility.NumShaderBinaryFormats; - var _ShaderCompiler = OpenTK.Graphics.OpenGL.ArbEs2Compatibility.ShaderCompiler; - var _MaxVertexUniformVectors = OpenTK.Graphics.OpenGL.ArbEs2Compatibility.MaxVertexUniformVectors; - var _MaxVaryingVectors = OpenTK.Graphics.OpenGL.ArbEs2Compatibility.MaxVaryingVectors; - var _MaxFragmentUniformVectors = OpenTK.Graphics.OpenGL.ArbEs2Compatibility.MaxFragmentUniformVectors; -} -static void Test_ArbEs3Compatibility_19395() { - var _PrimitiveRestartFixedIndex = OpenTK.Graphics.OpenGL.ArbEs3Compatibility.PrimitiveRestartFixedIndex; - var _AnySamplesPassedConservative = OpenTK.Graphics.OpenGL.ArbEs3Compatibility.AnySamplesPassedConservative; - var _MaxElementIndex = OpenTK.Graphics.OpenGL.ArbEs3Compatibility.MaxElementIndex; - var _CompressedR11Eac = OpenTK.Graphics.OpenGL.ArbEs3Compatibility.CompressedR11Eac; - var _CompressedSignedR11Eac = OpenTK.Graphics.OpenGL.ArbEs3Compatibility.CompressedSignedR11Eac; - var _CompressedRg11Eac = OpenTK.Graphics.OpenGL.ArbEs3Compatibility.CompressedRg11Eac; - var _CompressedSignedRg11Eac = OpenTK.Graphics.OpenGL.ArbEs3Compatibility.CompressedSignedRg11Eac; - var _CompressedRgb8Etc2 = OpenTK.Graphics.OpenGL.ArbEs3Compatibility.CompressedRgb8Etc2; - var _CompressedSrgb8Etc2 = OpenTK.Graphics.OpenGL.ArbEs3Compatibility.CompressedSrgb8Etc2; - var _CompressedRgb8PunchthroughAlpha1Etc2 = OpenTK.Graphics.OpenGL.ArbEs3Compatibility.CompressedRgb8PunchthroughAlpha1Etc2; - var _CompressedSrgb8PunchthroughAlpha1Etc2 = OpenTK.Graphics.OpenGL.ArbEs3Compatibility.CompressedSrgb8PunchthroughAlpha1Etc2; - var _CompressedRgba8Etc2Eac = OpenTK.Graphics.OpenGL.ArbEs3Compatibility.CompressedRgba8Etc2Eac; - var _CompressedSrgb8Alpha8Etc2Eac = OpenTK.Graphics.OpenGL.ArbEs3Compatibility.CompressedSrgb8Alpha8Etc2Eac; -} -static void Test_ArbExplicitAttribLocation_19396() { -} -static void Test_ArbExplicitUniformLocation_19397() { - var _MaxUniformLocations = OpenTK.Graphics.OpenGL.ArbExplicitUniformLocation.MaxUniformLocations; -} -static void Test_ArbFragmentCoordConventions_19398() { -} -static void Test_ArbFragmentLayerViewport_19399() { -} -static void Test_ArbFragmentProgram_19400() { - var _ProgramLengthArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.ProgramLengthArb; - var _ProgramStringArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.ProgramStringArb; - var _MaxProgramMatrixStackDepthArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.MaxProgramMatrixStackDepthArb; - var _MaxProgramMatricesArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.MaxProgramMatricesArb; - var _CurrentMatrixStackDepthArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.CurrentMatrixStackDepthArb; - var _CurrentMatrixArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.CurrentMatrixArb; - var _ProgramErrorPositionArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.ProgramErrorPositionArb; - var _ProgramBindingArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.ProgramBindingArb; - var _FragmentProgramArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.FragmentProgramArb; - var _ProgramAluInstructionsArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.ProgramAluInstructionsArb; - var _ProgramTexInstructionsArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.ProgramTexInstructionsArb; - var _ProgramTexIndirectionsArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.ProgramTexIndirectionsArb; - var _ProgramNativeAluInstructionsArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.ProgramNativeAluInstructionsArb; - var _ProgramNativeTexInstructionsArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.ProgramNativeTexInstructionsArb; - var _ProgramNativeTexIndirectionsArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.ProgramNativeTexIndirectionsArb; - var _MaxProgramAluInstructionsArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.MaxProgramAluInstructionsArb; - var _MaxProgramTexInstructionsArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.MaxProgramTexInstructionsArb; - var _MaxProgramTexIndirectionsArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.MaxProgramTexIndirectionsArb; - var _MaxProgramNativeAluInstructionsArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.MaxProgramNativeAluInstructionsArb; - var _MaxProgramNativeTexInstructionsArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.MaxProgramNativeTexInstructionsArb; - var _MaxProgramNativeTexIndirectionsArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.MaxProgramNativeTexIndirectionsArb; - var _MaxTextureCoordsArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.MaxTextureCoordsArb; - var _MaxTextureImageUnitsArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.MaxTextureImageUnitsArb; - var _ProgramErrorStringArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.ProgramErrorStringArb; - var _ProgramFormatAsciiArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.ProgramFormatAsciiArb; - var _ProgramFormatArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.ProgramFormatArb; - var _ProgramInstructionsArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.ProgramInstructionsArb; - var _MaxProgramInstructionsArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.MaxProgramInstructionsArb; - var _ProgramNativeInstructionsArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.ProgramNativeInstructionsArb; - var _MaxProgramNativeInstructionsArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.MaxProgramNativeInstructionsArb; - var _ProgramTemporariesArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.ProgramTemporariesArb; - var _MaxProgramTemporariesArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.MaxProgramTemporariesArb; - var _ProgramNativeTemporariesArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.ProgramNativeTemporariesArb; - var _MaxProgramNativeTemporariesArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.MaxProgramNativeTemporariesArb; - var _ProgramParametersArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.ProgramParametersArb; - var _MaxProgramParametersArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.MaxProgramParametersArb; - var _ProgramNativeParametersArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.ProgramNativeParametersArb; - var _MaxProgramNativeParametersArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.MaxProgramNativeParametersArb; - var _ProgramAttribsArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.ProgramAttribsArb; - var _MaxProgramAttribsArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.MaxProgramAttribsArb; - var _ProgramNativeAttribsArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.ProgramNativeAttribsArb; - var _MaxProgramNativeAttribsArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.MaxProgramNativeAttribsArb; - var _MaxProgramLocalParametersArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.MaxProgramLocalParametersArb; - var _MaxProgramEnvParametersArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.MaxProgramEnvParametersArb; - var _ProgramUnderNativeLimitsArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.ProgramUnderNativeLimitsArb; - var _TransposeCurrentMatrixArb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.TransposeCurrentMatrixArb; - var _Matrix0Arb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.Matrix0Arb; - var _Matrix1Arb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.Matrix1Arb; - var _Matrix2Arb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.Matrix2Arb; - var _Matrix3Arb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.Matrix3Arb; - var _Matrix4Arb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.Matrix4Arb; - var _Matrix5Arb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.Matrix5Arb; - var _Matrix6Arb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.Matrix6Arb; - var _Matrix7Arb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.Matrix7Arb; - var _Matrix8Arb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.Matrix8Arb; - var _Matrix9Arb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.Matrix9Arb; - var _Matrix10Arb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.Matrix10Arb; - var _Matrix11Arb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.Matrix11Arb; - var _Matrix12Arb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.Matrix12Arb; - var _Matrix13Arb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.Matrix13Arb; - var _Matrix14Arb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.Matrix14Arb; - var _Matrix15Arb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.Matrix15Arb; - var _Matrix16Arb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.Matrix16Arb; - var _Matrix17Arb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.Matrix17Arb; - var _Matrix18Arb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.Matrix18Arb; - var _Matrix19Arb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.Matrix19Arb; - var _Matrix20Arb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.Matrix20Arb; - var _Matrix21Arb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.Matrix21Arb; - var _Matrix22Arb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.Matrix22Arb; - var _Matrix23Arb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.Matrix23Arb; - var _Matrix24Arb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.Matrix24Arb; - var _Matrix25Arb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.Matrix25Arb; - var _Matrix26Arb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.Matrix26Arb; - var _Matrix27Arb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.Matrix27Arb; - var _Matrix28Arb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.Matrix28Arb; - var _Matrix29Arb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.Matrix29Arb; - var _Matrix30Arb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.Matrix30Arb; - var _Matrix31Arb = OpenTK.Graphics.OpenGL.ArbFragmentProgram.Matrix31Arb; -} -static void Test_ArbFragmentProgramShadow_19401() { -} -static void Test_ArbFragmentShader_19402() { - var _FragmentShaderArb = OpenTK.Graphics.OpenGL.ArbFragmentShader.FragmentShaderArb; - var _MaxFragmentUniformComponentsArb = OpenTK.Graphics.OpenGL.ArbFragmentShader.MaxFragmentUniformComponentsArb; - var _FragmentShaderDerivativeHintArb = OpenTK.Graphics.OpenGL.ArbFragmentShader.FragmentShaderDerivativeHintArb; -} -static void Test_ArbFramebufferNoAttachments_19403() { - var _FramebufferDefaultWidth = OpenTK.Graphics.OpenGL.ArbFramebufferNoAttachments.FramebufferDefaultWidth; - var _FramebufferDefaultHeight = OpenTK.Graphics.OpenGL.ArbFramebufferNoAttachments.FramebufferDefaultHeight; - var _FramebufferDefaultLayers = OpenTK.Graphics.OpenGL.ArbFramebufferNoAttachments.FramebufferDefaultLayers; - var _FramebufferDefaultSamples = OpenTK.Graphics.OpenGL.ArbFramebufferNoAttachments.FramebufferDefaultSamples; - var _FramebufferDefaultFixedSampleLocations = OpenTK.Graphics.OpenGL.ArbFramebufferNoAttachments.FramebufferDefaultFixedSampleLocations; - var _MaxFramebufferWidth = OpenTK.Graphics.OpenGL.ArbFramebufferNoAttachments.MaxFramebufferWidth; - var _MaxFramebufferHeight = OpenTK.Graphics.OpenGL.ArbFramebufferNoAttachments.MaxFramebufferHeight; - var _MaxFramebufferLayers = OpenTK.Graphics.OpenGL.ArbFramebufferNoAttachments.MaxFramebufferLayers; - var _MaxFramebufferSamples = OpenTK.Graphics.OpenGL.ArbFramebufferNoAttachments.MaxFramebufferSamples; -} -static void Test_ArbFramebufferObject_19404() { - var _InvalidFramebufferOperation = OpenTK.Graphics.OpenGL.ArbFramebufferObject.InvalidFramebufferOperation; - var _FramebufferAttachmentColorEncoding = OpenTK.Graphics.OpenGL.ArbFramebufferObject.FramebufferAttachmentColorEncoding; - var _FramebufferAttachmentComponentType = OpenTK.Graphics.OpenGL.ArbFramebufferObject.FramebufferAttachmentComponentType; - var _FramebufferAttachmentRedSize = OpenTK.Graphics.OpenGL.ArbFramebufferObject.FramebufferAttachmentRedSize; - var _FramebufferAttachmentGreenSize = OpenTK.Graphics.OpenGL.ArbFramebufferObject.FramebufferAttachmentGreenSize; - var _FramebufferAttachmentBlueSize = OpenTK.Graphics.OpenGL.ArbFramebufferObject.FramebufferAttachmentBlueSize; - var _FramebufferAttachmentAlphaSize = OpenTK.Graphics.OpenGL.ArbFramebufferObject.FramebufferAttachmentAlphaSize; - var _FramebufferAttachmentDepthSize = OpenTK.Graphics.OpenGL.ArbFramebufferObject.FramebufferAttachmentDepthSize; - var _FramebufferAttachmentStencilSize = OpenTK.Graphics.OpenGL.ArbFramebufferObject.FramebufferAttachmentStencilSize; - var _FramebufferDefault = OpenTK.Graphics.OpenGL.ArbFramebufferObject.FramebufferDefault; - var _FramebufferUndefined = OpenTK.Graphics.OpenGL.ArbFramebufferObject.FramebufferUndefined; - var _DepthStencilAttachment = OpenTK.Graphics.OpenGL.ArbFramebufferObject.DepthStencilAttachment; - var _Index = OpenTK.Graphics.OpenGL.ArbFramebufferObject.Index; - var _MaxRenderbufferSize = OpenTK.Graphics.OpenGL.ArbFramebufferObject.MaxRenderbufferSize; - var _DepthStencil = OpenTK.Graphics.OpenGL.ArbFramebufferObject.DepthStencil; - var _UnsignedInt248 = OpenTK.Graphics.OpenGL.ArbFramebufferObject.UnsignedInt248; - var _Depth24Stencil8 = OpenTK.Graphics.OpenGL.ArbFramebufferObject.Depth24Stencil8; - var _TextureStencilSize = OpenTK.Graphics.OpenGL.ArbFramebufferObject.TextureStencilSize; - var _TextureRedType = OpenTK.Graphics.OpenGL.ArbFramebufferObject.TextureRedType; - var _TextureGreenType = OpenTK.Graphics.OpenGL.ArbFramebufferObject.TextureGreenType; - var _TextureBlueType = OpenTK.Graphics.OpenGL.ArbFramebufferObject.TextureBlueType; - var _TextureAlphaType = OpenTK.Graphics.OpenGL.ArbFramebufferObject.TextureAlphaType; - var _TextureLuminanceType = OpenTK.Graphics.OpenGL.ArbFramebufferObject.TextureLuminanceType; - var _TextureIntensityType = OpenTK.Graphics.OpenGL.ArbFramebufferObject.TextureIntensityType; - var _TextureDepthType = OpenTK.Graphics.OpenGL.ArbFramebufferObject.TextureDepthType; - var _UnsignedNormalized = OpenTK.Graphics.OpenGL.ArbFramebufferObject.UnsignedNormalized; - var _DrawFramebufferBinding = OpenTK.Graphics.OpenGL.ArbFramebufferObject.DrawFramebufferBinding; - var _FramebufferBinding = OpenTK.Graphics.OpenGL.ArbFramebufferObject.FramebufferBinding; - var _RenderbufferBinding = OpenTK.Graphics.OpenGL.ArbFramebufferObject.RenderbufferBinding; - var _ReadFramebuffer = OpenTK.Graphics.OpenGL.ArbFramebufferObject.ReadFramebuffer; - var _DrawFramebuffer = OpenTK.Graphics.OpenGL.ArbFramebufferObject.DrawFramebuffer; - var _ReadFramebufferBinding = OpenTK.Graphics.OpenGL.ArbFramebufferObject.ReadFramebufferBinding; - var _RenderbufferSamples = OpenTK.Graphics.OpenGL.ArbFramebufferObject.RenderbufferSamples; - var _FramebufferAttachmentObjectType = OpenTK.Graphics.OpenGL.ArbFramebufferObject.FramebufferAttachmentObjectType; - var _FramebufferAttachmentObjectName = OpenTK.Graphics.OpenGL.ArbFramebufferObject.FramebufferAttachmentObjectName; - var _FramebufferAttachmentTextureLevel = OpenTK.Graphics.OpenGL.ArbFramebufferObject.FramebufferAttachmentTextureLevel; - var _FramebufferAttachmentTextureCubeMapFace = OpenTK.Graphics.OpenGL.ArbFramebufferObject.FramebufferAttachmentTextureCubeMapFace; - var _FramebufferAttachmentTextureLayer = OpenTK.Graphics.OpenGL.ArbFramebufferObject.FramebufferAttachmentTextureLayer; - var _FramebufferComplete = OpenTK.Graphics.OpenGL.ArbFramebufferObject.FramebufferComplete; - var _FramebufferIncompleteAttachment = OpenTK.Graphics.OpenGL.ArbFramebufferObject.FramebufferIncompleteAttachment; - var _FramebufferIncompleteMissingAttachment = OpenTK.Graphics.OpenGL.ArbFramebufferObject.FramebufferIncompleteMissingAttachment; - var _FramebufferIncompleteDrawBuffer = OpenTK.Graphics.OpenGL.ArbFramebufferObject.FramebufferIncompleteDrawBuffer; - var _FramebufferIncompleteReadBuffer = OpenTK.Graphics.OpenGL.ArbFramebufferObject.FramebufferIncompleteReadBuffer; - var _FramebufferUnsupported = OpenTK.Graphics.OpenGL.ArbFramebufferObject.FramebufferUnsupported; - var _MaxColorAttachments = OpenTK.Graphics.OpenGL.ArbFramebufferObject.MaxColorAttachments; - var _ColorAttachment0 = OpenTK.Graphics.OpenGL.ArbFramebufferObject.ColorAttachment0; - var _ColorAttachment1 = OpenTK.Graphics.OpenGL.ArbFramebufferObject.ColorAttachment1; - var _ColorAttachment2 = OpenTK.Graphics.OpenGL.ArbFramebufferObject.ColorAttachment2; - var _ColorAttachment3 = OpenTK.Graphics.OpenGL.ArbFramebufferObject.ColorAttachment3; - var _ColorAttachment4 = OpenTK.Graphics.OpenGL.ArbFramebufferObject.ColorAttachment4; - var _ColorAttachment5 = OpenTK.Graphics.OpenGL.ArbFramebufferObject.ColorAttachment5; - var _ColorAttachment6 = OpenTK.Graphics.OpenGL.ArbFramebufferObject.ColorAttachment6; - var _ColorAttachment7 = OpenTK.Graphics.OpenGL.ArbFramebufferObject.ColorAttachment7; - var _ColorAttachment8 = OpenTK.Graphics.OpenGL.ArbFramebufferObject.ColorAttachment8; - var _ColorAttachment9 = OpenTK.Graphics.OpenGL.ArbFramebufferObject.ColorAttachment9; - var _ColorAttachment10 = OpenTK.Graphics.OpenGL.ArbFramebufferObject.ColorAttachment10; - var _ColorAttachment11 = OpenTK.Graphics.OpenGL.ArbFramebufferObject.ColorAttachment11; - var _ColorAttachment12 = OpenTK.Graphics.OpenGL.ArbFramebufferObject.ColorAttachment12; - var _ColorAttachment13 = OpenTK.Graphics.OpenGL.ArbFramebufferObject.ColorAttachment13; - var _ColorAttachment14 = OpenTK.Graphics.OpenGL.ArbFramebufferObject.ColorAttachment14; - var _ColorAttachment15 = OpenTK.Graphics.OpenGL.ArbFramebufferObject.ColorAttachment15; - var _DepthAttachment = OpenTK.Graphics.OpenGL.ArbFramebufferObject.DepthAttachment; - var _StencilAttachment = OpenTK.Graphics.OpenGL.ArbFramebufferObject.StencilAttachment; - var _Framebuffer = OpenTK.Graphics.OpenGL.ArbFramebufferObject.Framebuffer; - var _Renderbuffer = OpenTK.Graphics.OpenGL.ArbFramebufferObject.Renderbuffer; - var _RenderbufferWidth = OpenTK.Graphics.OpenGL.ArbFramebufferObject.RenderbufferWidth; - var _RenderbufferHeight = OpenTK.Graphics.OpenGL.ArbFramebufferObject.RenderbufferHeight; - var _RenderbufferInternalFormat = OpenTK.Graphics.OpenGL.ArbFramebufferObject.RenderbufferInternalFormat; - var _StencilIndex1 = OpenTK.Graphics.OpenGL.ArbFramebufferObject.StencilIndex1; - var _StencilIndex4 = OpenTK.Graphics.OpenGL.ArbFramebufferObject.StencilIndex4; - var _StencilIndex8 = OpenTK.Graphics.OpenGL.ArbFramebufferObject.StencilIndex8; - var _StencilIndex16 = OpenTK.Graphics.OpenGL.ArbFramebufferObject.StencilIndex16; - var _RenderbufferRedSize = OpenTK.Graphics.OpenGL.ArbFramebufferObject.RenderbufferRedSize; - var _RenderbufferGreenSize = OpenTK.Graphics.OpenGL.ArbFramebufferObject.RenderbufferGreenSize; - var _RenderbufferBlueSize = OpenTK.Graphics.OpenGL.ArbFramebufferObject.RenderbufferBlueSize; - var _RenderbufferAlphaSize = OpenTK.Graphics.OpenGL.ArbFramebufferObject.RenderbufferAlphaSize; - var _RenderbufferDepthSize = OpenTK.Graphics.OpenGL.ArbFramebufferObject.RenderbufferDepthSize; - var _RenderbufferStencilSize = OpenTK.Graphics.OpenGL.ArbFramebufferObject.RenderbufferStencilSize; - var _FramebufferIncompleteMultisample = OpenTK.Graphics.OpenGL.ArbFramebufferObject.FramebufferIncompleteMultisample; - var _MaxSamples = OpenTK.Graphics.OpenGL.ArbFramebufferObject.MaxSamples; -} -static void Test_ArbFramebufferSrgb_19405() { - var _FramebufferSrgb = OpenTK.Graphics.OpenGL.ArbFramebufferSrgb.FramebufferSrgb; -} -static void Test_ArbGeometryShader4_19406() { - var _LinesAdjacencyArb = OpenTK.Graphics.OpenGL.ArbGeometryShader4.LinesAdjacencyArb; - var _LineStripAdjacencyArb = OpenTK.Graphics.OpenGL.ArbGeometryShader4.LineStripAdjacencyArb; - var _TrianglesAdjacencyArb = OpenTK.Graphics.OpenGL.ArbGeometryShader4.TrianglesAdjacencyArb; - var _TriangleStripAdjacencyArb = OpenTK.Graphics.OpenGL.ArbGeometryShader4.TriangleStripAdjacencyArb; - var _ProgramPointSizeArb = OpenTK.Graphics.OpenGL.ArbGeometryShader4.ProgramPointSizeArb; - var _MaxVaryingComponents = OpenTK.Graphics.OpenGL.ArbGeometryShader4.MaxVaryingComponents; - var _MaxGeometryTextureImageUnitsArb = OpenTK.Graphics.OpenGL.ArbGeometryShader4.MaxGeometryTextureImageUnitsArb; - var _FramebufferAttachmentTextureLayer = OpenTK.Graphics.OpenGL.ArbGeometryShader4.FramebufferAttachmentTextureLayer; - var _FramebufferAttachmentLayeredArb = OpenTK.Graphics.OpenGL.ArbGeometryShader4.FramebufferAttachmentLayeredArb; - var _FramebufferIncompleteLayerTargetsArb = OpenTK.Graphics.OpenGL.ArbGeometryShader4.FramebufferIncompleteLayerTargetsArb; - var _FramebufferIncompleteLayerCountArb = OpenTK.Graphics.OpenGL.ArbGeometryShader4.FramebufferIncompleteLayerCountArb; - var _GeometryShaderArb = OpenTK.Graphics.OpenGL.ArbGeometryShader4.GeometryShaderArb; - var _GeometryVerticesOutArb = OpenTK.Graphics.OpenGL.ArbGeometryShader4.GeometryVerticesOutArb; - var _GeometryInputTypeArb = OpenTK.Graphics.OpenGL.ArbGeometryShader4.GeometryInputTypeArb; - var _GeometryOutputTypeArb = OpenTK.Graphics.OpenGL.ArbGeometryShader4.GeometryOutputTypeArb; - var _MaxGeometryVaryingComponentsArb = OpenTK.Graphics.OpenGL.ArbGeometryShader4.MaxGeometryVaryingComponentsArb; - var _MaxVertexVaryingComponentsArb = OpenTK.Graphics.OpenGL.ArbGeometryShader4.MaxVertexVaryingComponentsArb; - var _MaxGeometryUniformComponentsArb = OpenTK.Graphics.OpenGL.ArbGeometryShader4.MaxGeometryUniformComponentsArb; - var _MaxGeometryOutputVerticesArb = OpenTK.Graphics.OpenGL.ArbGeometryShader4.MaxGeometryOutputVerticesArb; - var _MaxGeometryTotalOutputComponentsArb = OpenTK.Graphics.OpenGL.ArbGeometryShader4.MaxGeometryTotalOutputComponentsArb; -} -static void Test_ArbGetProgramBinary_19407() { - var _ProgramBinaryRetrievableHint = OpenTK.Graphics.OpenGL.ArbGetProgramBinary.ProgramBinaryRetrievableHint; - var _ProgramBinaryLength = OpenTK.Graphics.OpenGL.ArbGetProgramBinary.ProgramBinaryLength; - var _NumProgramBinaryFormats = OpenTK.Graphics.OpenGL.ArbGetProgramBinary.NumProgramBinaryFormats; - var _ProgramBinaryFormats = OpenTK.Graphics.OpenGL.ArbGetProgramBinary.ProgramBinaryFormats; -} -static void Test_ArbGpuShader5_19408() { - var _GeometryShaderInvocations = OpenTK.Graphics.OpenGL.ArbGpuShader5.GeometryShaderInvocations; - var _MaxGeometryShaderInvocations = OpenTK.Graphics.OpenGL.ArbGpuShader5.MaxGeometryShaderInvocations; - var _MinFragmentInterpolationOffset = OpenTK.Graphics.OpenGL.ArbGpuShader5.MinFragmentInterpolationOffset; - var _MaxFragmentInterpolationOffset = OpenTK.Graphics.OpenGL.ArbGpuShader5.MaxFragmentInterpolationOffset; - var _FragmentInterpolationOffsetBits = OpenTK.Graphics.OpenGL.ArbGpuShader5.FragmentInterpolationOffsetBits; - var _MaxVertexStreams = OpenTK.Graphics.OpenGL.ArbGpuShader5.MaxVertexStreams; -} -static void Test_ArbGpuShaderFp64_19409() { - var _Double = OpenTK.Graphics.OpenGL.ArbGpuShaderFp64.Double; - var _DoubleMat2 = OpenTK.Graphics.OpenGL.ArbGpuShaderFp64.DoubleMat2; - var _DoubleMat3 = OpenTK.Graphics.OpenGL.ArbGpuShaderFp64.DoubleMat3; - var _DoubleMat4 = OpenTK.Graphics.OpenGL.ArbGpuShaderFp64.DoubleMat4; - var _DoubleMat2x3 = OpenTK.Graphics.OpenGL.ArbGpuShaderFp64.DoubleMat2x3; - var _DoubleMat2x4 = OpenTK.Graphics.OpenGL.ArbGpuShaderFp64.DoubleMat2x4; - var _DoubleMat3x2 = OpenTK.Graphics.OpenGL.ArbGpuShaderFp64.DoubleMat3x2; - var _DoubleMat3x4 = OpenTK.Graphics.OpenGL.ArbGpuShaderFp64.DoubleMat3x4; - var _DoubleMat4x2 = OpenTK.Graphics.OpenGL.ArbGpuShaderFp64.DoubleMat4x2; - var _DoubleMat4x3 = OpenTK.Graphics.OpenGL.ArbGpuShaderFp64.DoubleMat4x3; - var _DoubleVec2 = OpenTK.Graphics.OpenGL.ArbGpuShaderFp64.DoubleVec2; - var _DoubleVec3 = OpenTK.Graphics.OpenGL.ArbGpuShaderFp64.DoubleVec3; - var _DoubleVec4 = OpenTK.Graphics.OpenGL.ArbGpuShaderFp64.DoubleVec4; -} -static void Test_ArbHalfFloatPixel_19410() { - var _HalfFloatArb = OpenTK.Graphics.OpenGL.ArbHalfFloatPixel.HalfFloatArb; -} -static void Test_ArbHalfFloatVertex_19411() { - var _HalfFloat = OpenTK.Graphics.OpenGL.ArbHalfFloatVertex.HalfFloat; -} -static void Test_ArbImaging_19412() { - var _ConstantColor = OpenTK.Graphics.OpenGL.ArbImaging.ConstantColor; - var _OneMinusConstantColor = OpenTK.Graphics.OpenGL.ArbImaging.OneMinusConstantColor; - var _ConstantAlpha = OpenTK.Graphics.OpenGL.ArbImaging.ConstantAlpha; - var _OneMinusConstantAlpha = OpenTK.Graphics.OpenGL.ArbImaging.OneMinusConstantAlpha; - var _BlendColor = OpenTK.Graphics.OpenGL.ArbImaging.BlendColor; - var _FuncAdd = OpenTK.Graphics.OpenGL.ArbImaging.FuncAdd; - var _Min = OpenTK.Graphics.OpenGL.ArbImaging.Min; - var _Max = OpenTK.Graphics.OpenGL.ArbImaging.Max; - var _BlendEquation = OpenTK.Graphics.OpenGL.ArbImaging.BlendEquation; - var _FuncSubtract = OpenTK.Graphics.OpenGL.ArbImaging.FuncSubtract; - var _FuncReverseSubtract = OpenTK.Graphics.OpenGL.ArbImaging.FuncReverseSubtract; - var _Convolution1D = OpenTK.Graphics.OpenGL.ArbImaging.Convolution1D; - var _Convolution2D = OpenTK.Graphics.OpenGL.ArbImaging.Convolution2D; - var _Separable2D = OpenTK.Graphics.OpenGL.ArbImaging.Separable2D; - var _ConvolutionBorderMode = OpenTK.Graphics.OpenGL.ArbImaging.ConvolutionBorderMode; - var _ConvolutionFilterScale = OpenTK.Graphics.OpenGL.ArbImaging.ConvolutionFilterScale; - var _ConvolutionFilterBias = OpenTK.Graphics.OpenGL.ArbImaging.ConvolutionFilterBias; - var _Reduce = OpenTK.Graphics.OpenGL.ArbImaging.Reduce; - var _ConvolutionFormat = OpenTK.Graphics.OpenGL.ArbImaging.ConvolutionFormat; - var _ConvolutionWidth = OpenTK.Graphics.OpenGL.ArbImaging.ConvolutionWidth; - var _ConvolutionHeight = OpenTK.Graphics.OpenGL.ArbImaging.ConvolutionHeight; - var _MaxConvolutionWidth = OpenTK.Graphics.OpenGL.ArbImaging.MaxConvolutionWidth; - var _MaxConvolutionHeight = OpenTK.Graphics.OpenGL.ArbImaging.MaxConvolutionHeight; - var _PostConvolutionRedScale = OpenTK.Graphics.OpenGL.ArbImaging.PostConvolutionRedScale; - var _PostConvolutionGreenScale = OpenTK.Graphics.OpenGL.ArbImaging.PostConvolutionGreenScale; - var _PostConvolutionBlueScale = OpenTK.Graphics.OpenGL.ArbImaging.PostConvolutionBlueScale; - var _PostConvolutionAlphaScale = OpenTK.Graphics.OpenGL.ArbImaging.PostConvolutionAlphaScale; - var _PostConvolutionRedBias = OpenTK.Graphics.OpenGL.ArbImaging.PostConvolutionRedBias; - var _PostConvolutionGreenBias = OpenTK.Graphics.OpenGL.ArbImaging.PostConvolutionGreenBias; - var _PostConvolutionBlueBias = OpenTK.Graphics.OpenGL.ArbImaging.PostConvolutionBlueBias; - var _PostConvolutionAlphaBias = OpenTK.Graphics.OpenGL.ArbImaging.PostConvolutionAlphaBias; - var _Histogram = OpenTK.Graphics.OpenGL.ArbImaging.Histogram; - var _ProxyHistogram = OpenTK.Graphics.OpenGL.ArbImaging.ProxyHistogram; - var _HistogramWidth = OpenTK.Graphics.OpenGL.ArbImaging.HistogramWidth; - var _HistogramFormat = OpenTK.Graphics.OpenGL.ArbImaging.HistogramFormat; - var _HistogramRedSize = OpenTK.Graphics.OpenGL.ArbImaging.HistogramRedSize; - var _HistogramGreenSize = OpenTK.Graphics.OpenGL.ArbImaging.HistogramGreenSize; - var _HistogramBlueSize = OpenTK.Graphics.OpenGL.ArbImaging.HistogramBlueSize; - var _HistogramAlphaSize = OpenTK.Graphics.OpenGL.ArbImaging.HistogramAlphaSize; - var _HistogramLuminanceSize = OpenTK.Graphics.OpenGL.ArbImaging.HistogramLuminanceSize; - var _HistogramSink = OpenTK.Graphics.OpenGL.ArbImaging.HistogramSink; - var _Minmax = OpenTK.Graphics.OpenGL.ArbImaging.Minmax; - var _MinmaxFormat = OpenTK.Graphics.OpenGL.ArbImaging.MinmaxFormat; - var _MinmaxSink = OpenTK.Graphics.OpenGL.ArbImaging.MinmaxSink; - var _TableTooLarge = OpenTK.Graphics.OpenGL.ArbImaging.TableTooLarge; - var _ColorMatrix = OpenTK.Graphics.OpenGL.ArbImaging.ColorMatrix; - var _ColorMatrixStackDepth = OpenTK.Graphics.OpenGL.ArbImaging.ColorMatrixStackDepth; - var _MaxColorMatrixStackDepth = OpenTK.Graphics.OpenGL.ArbImaging.MaxColorMatrixStackDepth; - var _PostColorMatrixRedScale = OpenTK.Graphics.OpenGL.ArbImaging.PostColorMatrixRedScale; - var _PostColorMatrixGreenScale = OpenTK.Graphics.OpenGL.ArbImaging.PostColorMatrixGreenScale; - var _PostColorMatrixBlueScale = OpenTK.Graphics.OpenGL.ArbImaging.PostColorMatrixBlueScale; - var _PostColorMatrixAlphaScale = OpenTK.Graphics.OpenGL.ArbImaging.PostColorMatrixAlphaScale; - var _PostColorMatrixRedBias = OpenTK.Graphics.OpenGL.ArbImaging.PostColorMatrixRedBias; - var _PostColorMatrixGreenBias = OpenTK.Graphics.OpenGL.ArbImaging.PostColorMatrixGreenBias; - var _PostColorMatrixBlueBias = OpenTK.Graphics.OpenGL.ArbImaging.PostColorMatrixBlueBias; - var _PostColorMatrixAlphaBias = OpenTK.Graphics.OpenGL.ArbImaging.PostColorMatrixAlphaBias; - var _ColorTable = OpenTK.Graphics.OpenGL.ArbImaging.ColorTable; - var _PostConvolutionColorTable = OpenTK.Graphics.OpenGL.ArbImaging.PostConvolutionColorTable; - var _PostColorMatrixColorTable = OpenTK.Graphics.OpenGL.ArbImaging.PostColorMatrixColorTable; - var _ProxyColorTable = OpenTK.Graphics.OpenGL.ArbImaging.ProxyColorTable; - var _ProxyPostConvolutionColorTable = OpenTK.Graphics.OpenGL.ArbImaging.ProxyPostConvolutionColorTable; - var _ProxyPostColorMatrixColorTable = OpenTK.Graphics.OpenGL.ArbImaging.ProxyPostColorMatrixColorTable; - var _ColorTableScale = OpenTK.Graphics.OpenGL.ArbImaging.ColorTableScale; - var _ColorTableBias = OpenTK.Graphics.OpenGL.ArbImaging.ColorTableBias; - var _ColorTableFormat = OpenTK.Graphics.OpenGL.ArbImaging.ColorTableFormat; - var _ColorTableWidth = OpenTK.Graphics.OpenGL.ArbImaging.ColorTableWidth; - var _ColorTableRedSize = OpenTK.Graphics.OpenGL.ArbImaging.ColorTableRedSize; - var _ColorTableGreenSize = OpenTK.Graphics.OpenGL.ArbImaging.ColorTableGreenSize; - var _ColorTableBlueSize = OpenTK.Graphics.OpenGL.ArbImaging.ColorTableBlueSize; - var _ColorTableAlphaSize = OpenTK.Graphics.OpenGL.ArbImaging.ColorTableAlphaSize; - var _ColorTableLuminanceSize = OpenTK.Graphics.OpenGL.ArbImaging.ColorTableLuminanceSize; - var _ColorTableIntensitySize = OpenTK.Graphics.OpenGL.ArbImaging.ColorTableIntensitySize; - var _ConstantBorder = OpenTK.Graphics.OpenGL.ArbImaging.ConstantBorder; - var _ReplicateBorder = OpenTK.Graphics.OpenGL.ArbImaging.ReplicateBorder; - var _ConvolutionBorderColor = OpenTK.Graphics.OpenGL.ArbImaging.ConvolutionBorderColor; -} -static void Test_ArbIndirectParameters_19413() { - var _ParameterBufferArb = OpenTK.Graphics.OpenGL.ArbIndirectParameters.ParameterBufferArb; - var _ParameterBufferBindingArb = OpenTK.Graphics.OpenGL.ArbIndirectParameters.ParameterBufferBindingArb; -} -static void Test_ArbInstancedArrays_19414() { - var _VertexAttribArrayDivisorArb = OpenTK.Graphics.OpenGL.ArbInstancedArrays.VertexAttribArrayDivisorArb; -} -static void Test_ArbInternalformatQuery_19415() { - var _NumSampleCounts = OpenTK.Graphics.OpenGL.ArbInternalformatQuery.NumSampleCounts; -} -static void Test_ArbInternalformatQuery2_19416() { - var _Texture1D = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.Texture1D; - var _Texture2D = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.Texture2D; - var _Texture3D = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.Texture3D; - var _Samples = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.Samples; - var _InternalformatSupported = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.InternalformatSupported; - var _InternalformatPreferred = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.InternalformatPreferred; - var _InternalformatRedSize = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.InternalformatRedSize; - var _InternalformatGreenSize = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.InternalformatGreenSize; - var _InternalformatBlueSize = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.InternalformatBlueSize; - var _InternalformatAlphaSize = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.InternalformatAlphaSize; - var _InternalformatDepthSize = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.InternalformatDepthSize; - var _InternalformatStencilSize = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.InternalformatStencilSize; - var _InternalformatSharedSize = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.InternalformatSharedSize; - var _InternalformatRedType = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.InternalformatRedType; - var _InternalformatGreenType = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.InternalformatGreenType; - var _InternalformatBlueType = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.InternalformatBlueType; - var _InternalformatAlphaType = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.InternalformatAlphaType; - var _InternalformatDepthType = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.InternalformatDepthType; - var _InternalformatStencilType = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.InternalformatStencilType; - var _MaxWidth = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.MaxWidth; - var _MaxHeight = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.MaxHeight; - var _MaxDepth = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.MaxDepth; - var _MaxLayers = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.MaxLayers; - var _MaxCombinedDimensions = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.MaxCombinedDimensions; - var _ColorComponents = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ColorComponents; - var _DepthComponents = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.DepthComponents; - var _StencilComponents = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.StencilComponents; - var _ColorRenderable = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ColorRenderable; - var _DepthRenderable = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.DepthRenderable; - var _StencilRenderable = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.StencilRenderable; - var _FramebufferRenderable = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.FramebufferRenderable; - var _FramebufferRenderableLayered = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.FramebufferRenderableLayered; - var _FramebufferBlend = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.FramebufferBlend; - var _ReadPixels = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ReadPixels; - var _ReadPixelsFormat = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ReadPixelsFormat; - var _ReadPixelsType = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ReadPixelsType; - var _TextureImageFormat = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.TextureImageFormat; - var _TextureImageType = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.TextureImageType; - var _GetTextureImageFormat = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.GetTextureImageFormat; - var _GetTextureImageType = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.GetTextureImageType; - var _Mipmap = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.Mipmap; - var _ManualGenerateMipmap = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ManualGenerateMipmap; - var _AutoGenerateMipmap = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.AutoGenerateMipmap; - var _ColorEncoding = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ColorEncoding; - var _SrgbRead = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.SrgbRead; - var _SrgbWrite = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.SrgbWrite; - var _SrgbDecodeArb = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.SrgbDecodeArb; - var _Filter = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.Filter; - var _VertexTexture = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.VertexTexture; - var _TessControlTexture = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.TessControlTexture; - var _TessEvaluationTexture = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.TessEvaluationTexture; - var _GeometryTexture = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.GeometryTexture; - var _FragmentTexture = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.FragmentTexture; - var _ComputeTexture = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ComputeTexture; - var _TextureShadow = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.TextureShadow; - var _TextureGather = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.TextureGather; - var _TextureGatherShadow = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.TextureGatherShadow; - var _ShaderImageLoad = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ShaderImageLoad; - var _ShaderImageStore = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ShaderImageStore; - var _ShaderImageAtomic = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ShaderImageAtomic; - var _ImageTexelSize = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ImageTexelSize; - var _ImageCompatibilityClass = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ImageCompatibilityClass; - var _ImagePixelFormat = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ImagePixelFormat; - var _ImagePixelType = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ImagePixelType; - var _SimultaneousTextureAndDepthTest = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.SimultaneousTextureAndDepthTest; - var _SimultaneousTextureAndStencilTest = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.SimultaneousTextureAndStencilTest; - var _SimultaneousTextureAndDepthWrite = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.SimultaneousTextureAndDepthWrite; - var _SimultaneousTextureAndStencilWrite = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.SimultaneousTextureAndStencilWrite; - var _TextureCompressedBlockWidth = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.TextureCompressedBlockWidth; - var _TextureCompressedBlockHeight = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.TextureCompressedBlockHeight; - var _TextureCompressedBlockSize = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.TextureCompressedBlockSize; - var _ClearBuffer = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ClearBuffer; - var _TextureView = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.TextureView; - var _ViewCompatibilityClass = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ViewCompatibilityClass; - var _FullSupport = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.FullSupport; - var _CaveatSupport = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.CaveatSupport; - var _ImageClass4X32 = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ImageClass4X32; - var _ImageClass2X32 = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ImageClass2X32; - var _ImageClass1X32 = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ImageClass1X32; - var _ImageClass4X16 = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ImageClass4X16; - var _ImageClass2X16 = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ImageClass2X16; - var _ImageClass1X16 = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ImageClass1X16; - var _ImageClass4X8 = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ImageClass4X8; - var _ImageClass2X8 = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ImageClass2X8; - var _ImageClass1X8 = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ImageClass1X8; - var _ImageClass111110 = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ImageClass111110; - var _ImageClass1010102 = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ImageClass1010102; - var _ViewClass128Bits = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ViewClass128Bits; - var _ViewClass96Bits = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ViewClass96Bits; - var _ViewClass64Bits = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ViewClass64Bits; - var _ViewClass48Bits = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ViewClass48Bits; - var _ViewClass32Bits = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ViewClass32Bits; - var _ViewClass24Bits = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ViewClass24Bits; - var _ViewClass16Bits = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ViewClass16Bits; - var _ViewClass8Bits = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ViewClass8Bits; - var _ViewClassS3tcDxt1Rgb = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ViewClassS3tcDxt1Rgb; - var _ViewClassS3tcDxt1Rgba = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ViewClassS3tcDxt1Rgba; - var _ViewClassS3tcDxt3Rgba = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ViewClassS3tcDxt3Rgba; - var _ViewClassS3tcDxt5Rgba = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ViewClassS3tcDxt5Rgba; - var _ViewClassRgtc1Red = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ViewClassRgtc1Red; - var _ViewClassRgtc2Rg = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ViewClassRgtc2Rg; - var _ViewClassBptcUnorm = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ViewClassBptcUnorm; - var _ViewClassBptcFloat = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ViewClassBptcFloat; - var _TextureRectangle = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.TextureRectangle; - var _TextureCubeMap = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.TextureCubeMap; - var _TextureCompressed = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.TextureCompressed; - var _Texture1DArray = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.Texture1DArray; - var _Texture2DArray = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.Texture2DArray; - var _TextureBuffer = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.TextureBuffer; - var _Renderbuffer = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.Renderbuffer; - var _TextureCubeMapArray = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.TextureCubeMapArray; - var _ImageFormatCompatibilityType = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.ImageFormatCompatibilityType; - var _Texture2DMultisample = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.Texture2DMultisample; - var _Texture2DMultisampleArray = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.Texture2DMultisampleArray; - var _NumSampleCounts = OpenTK.Graphics.OpenGL.ArbInternalformatQuery2.NumSampleCounts; -} -static void Test_ArbInvalidateSubdata_19417() { -} -static void Test_ArbMapBufferAlignment_19418() { - var _MinMapBufferAlignment = OpenTK.Graphics.OpenGL.ArbMapBufferAlignment.MinMapBufferAlignment; -} -static void Test_ArbMapBufferRange_19419() { - var _MapReadBit = OpenTK.Graphics.OpenGL.ArbMapBufferRange.MapReadBit; - var _MapWriteBit = OpenTK.Graphics.OpenGL.ArbMapBufferRange.MapWriteBit; - var _MapInvalidateRangeBit = OpenTK.Graphics.OpenGL.ArbMapBufferRange.MapInvalidateRangeBit; - var _MapInvalidateBufferBit = OpenTK.Graphics.OpenGL.ArbMapBufferRange.MapInvalidateBufferBit; - var _MapFlushExplicitBit = OpenTK.Graphics.OpenGL.ArbMapBufferRange.MapFlushExplicitBit; - var _MapUnsynchronizedBit = OpenTK.Graphics.OpenGL.ArbMapBufferRange.MapUnsynchronizedBit; -} -static void Test_ArbMatrixPalette_19420() { - var _MatrixPaletteArb = OpenTK.Graphics.OpenGL.ArbMatrixPalette.MatrixPaletteArb; - var _MaxMatrixPaletteStackDepthArb = OpenTK.Graphics.OpenGL.ArbMatrixPalette.MaxMatrixPaletteStackDepthArb; - var _MaxPaletteMatricesArb = OpenTK.Graphics.OpenGL.ArbMatrixPalette.MaxPaletteMatricesArb; - var _CurrentPaletteMatrixArb = OpenTK.Graphics.OpenGL.ArbMatrixPalette.CurrentPaletteMatrixArb; - var _MatrixIndexArrayArb = OpenTK.Graphics.OpenGL.ArbMatrixPalette.MatrixIndexArrayArb; - var _CurrentMatrixIndexArb = OpenTK.Graphics.OpenGL.ArbMatrixPalette.CurrentMatrixIndexArb; - var _MatrixIndexArraySizeArb = OpenTK.Graphics.OpenGL.ArbMatrixPalette.MatrixIndexArraySizeArb; - var _MatrixIndexArrayTypeArb = OpenTK.Graphics.OpenGL.ArbMatrixPalette.MatrixIndexArrayTypeArb; - var _MatrixIndexArrayStrideArb = OpenTK.Graphics.OpenGL.ArbMatrixPalette.MatrixIndexArrayStrideArb; - var _MatrixIndexArrayPointerArb = OpenTK.Graphics.OpenGL.ArbMatrixPalette.MatrixIndexArrayPointerArb; -} -static void Test_ArbMultiBind_19421() { -} -static void Test_ArbMultiDrawIndirect_19422() { -} -static void Test_ArbMultisample_19423() { - var _MultisampleBitArb = OpenTK.Graphics.OpenGL.ArbMultisample.MultisampleBitArb; - var _MultisampleArb = OpenTK.Graphics.OpenGL.ArbMultisample.MultisampleArb; - var _SampleAlphaToCoverageArb = OpenTK.Graphics.OpenGL.ArbMultisample.SampleAlphaToCoverageArb; - var _SampleAlphaToOneArb = OpenTK.Graphics.OpenGL.ArbMultisample.SampleAlphaToOneArb; - var _SampleCoverageArb = OpenTK.Graphics.OpenGL.ArbMultisample.SampleCoverageArb; - var _SampleBuffersArb = OpenTK.Graphics.OpenGL.ArbMultisample.SampleBuffersArb; - var _SamplesArb = OpenTK.Graphics.OpenGL.ArbMultisample.SamplesArb; - var _SampleCoverageValueArb = OpenTK.Graphics.OpenGL.ArbMultisample.SampleCoverageValueArb; - var _SampleCoverageInvertArb = OpenTK.Graphics.OpenGL.ArbMultisample.SampleCoverageInvertArb; -} -static void Test_ArbMultitexture_19424() { - var _Texture0Arb = OpenTK.Graphics.OpenGL.ArbMultitexture.Texture0Arb; - var _Texture1Arb = OpenTK.Graphics.OpenGL.ArbMultitexture.Texture1Arb; - var _Texture2Arb = OpenTK.Graphics.OpenGL.ArbMultitexture.Texture2Arb; - var _Texture3Arb = OpenTK.Graphics.OpenGL.ArbMultitexture.Texture3Arb; - var _Texture4Arb = OpenTK.Graphics.OpenGL.ArbMultitexture.Texture4Arb; - var _Texture5Arb = OpenTK.Graphics.OpenGL.ArbMultitexture.Texture5Arb; - var _Texture6Arb = OpenTK.Graphics.OpenGL.ArbMultitexture.Texture6Arb; - var _Texture7Arb = OpenTK.Graphics.OpenGL.ArbMultitexture.Texture7Arb; - var _Texture8Arb = OpenTK.Graphics.OpenGL.ArbMultitexture.Texture8Arb; - var _Texture9Arb = OpenTK.Graphics.OpenGL.ArbMultitexture.Texture9Arb; - var _Texture10Arb = OpenTK.Graphics.OpenGL.ArbMultitexture.Texture10Arb; - var _Texture11Arb = OpenTK.Graphics.OpenGL.ArbMultitexture.Texture11Arb; - var _Texture12Arb = OpenTK.Graphics.OpenGL.ArbMultitexture.Texture12Arb; - var _Texture13Arb = OpenTK.Graphics.OpenGL.ArbMultitexture.Texture13Arb; - var _Texture14Arb = OpenTK.Graphics.OpenGL.ArbMultitexture.Texture14Arb; - var _Texture15Arb = OpenTK.Graphics.OpenGL.ArbMultitexture.Texture15Arb; - var _Texture16Arb = OpenTK.Graphics.OpenGL.ArbMultitexture.Texture16Arb; - var _Texture17Arb = OpenTK.Graphics.OpenGL.ArbMultitexture.Texture17Arb; - var _Texture18Arb = OpenTK.Graphics.OpenGL.ArbMultitexture.Texture18Arb; - var _Texture19Arb = OpenTK.Graphics.OpenGL.ArbMultitexture.Texture19Arb; - var _Texture20Arb = OpenTK.Graphics.OpenGL.ArbMultitexture.Texture20Arb; - var _Texture21Arb = OpenTK.Graphics.OpenGL.ArbMultitexture.Texture21Arb; - var _Texture22Arb = OpenTK.Graphics.OpenGL.ArbMultitexture.Texture22Arb; - var _Texture23Arb = OpenTK.Graphics.OpenGL.ArbMultitexture.Texture23Arb; - var _Texture24Arb = OpenTK.Graphics.OpenGL.ArbMultitexture.Texture24Arb; - var _Texture25Arb = OpenTK.Graphics.OpenGL.ArbMultitexture.Texture25Arb; - var _Texture26Arb = OpenTK.Graphics.OpenGL.ArbMultitexture.Texture26Arb; - var _Texture27Arb = OpenTK.Graphics.OpenGL.ArbMultitexture.Texture27Arb; - var _Texture28Arb = OpenTK.Graphics.OpenGL.ArbMultitexture.Texture28Arb; - var _Texture29Arb = OpenTK.Graphics.OpenGL.ArbMultitexture.Texture29Arb; - var _Texture30Arb = OpenTK.Graphics.OpenGL.ArbMultitexture.Texture30Arb; - var _Texture31Arb = OpenTK.Graphics.OpenGL.ArbMultitexture.Texture31Arb; - var _ActiveTextureArb = OpenTK.Graphics.OpenGL.ArbMultitexture.ActiveTextureArb; - var _ClientActiveTextureArb = OpenTK.Graphics.OpenGL.ArbMultitexture.ClientActiveTextureArb; - var _MaxTextureUnitsArb = OpenTK.Graphics.OpenGL.ArbMultitexture.MaxTextureUnitsArb; -} -static void Test_ArbOcclusionQuery_19425() { - var _QueryCounterBitsArb = OpenTK.Graphics.OpenGL.ArbOcclusionQuery.QueryCounterBitsArb; - var _CurrentQueryArb = OpenTK.Graphics.OpenGL.ArbOcclusionQuery.CurrentQueryArb; - var _QueryResultArb = OpenTK.Graphics.OpenGL.ArbOcclusionQuery.QueryResultArb; - var _QueryResultAvailableArb = OpenTK.Graphics.OpenGL.ArbOcclusionQuery.QueryResultAvailableArb; - var _SamplesPassedArb = OpenTK.Graphics.OpenGL.ArbOcclusionQuery.SamplesPassedArb; -} -static void Test_ArbOcclusionQuery2_19426() { - var _AnySamplesPassed = OpenTK.Graphics.OpenGL.ArbOcclusionQuery2.AnySamplesPassed; -} -static void Test_ArbPixelBufferObject_19427() { - var _PixelPackBufferArb = OpenTK.Graphics.OpenGL.ArbPixelBufferObject.PixelPackBufferArb; - var _PixelUnpackBufferArb = OpenTK.Graphics.OpenGL.ArbPixelBufferObject.PixelUnpackBufferArb; - var _PixelPackBufferBindingArb = OpenTK.Graphics.OpenGL.ArbPixelBufferObject.PixelPackBufferBindingArb; - var _PixelUnpackBufferBindingArb = OpenTK.Graphics.OpenGL.ArbPixelBufferObject.PixelUnpackBufferBindingArb; -} -static void Test_ArbPointParameters_19428() { - var _PointSizeMinArb = OpenTK.Graphics.OpenGL.ArbPointParameters.PointSizeMinArb; - var _PointSizeMaxArb = OpenTK.Graphics.OpenGL.ArbPointParameters.PointSizeMaxArb; - var _PointFadeThresholdSizeArb = OpenTK.Graphics.OpenGL.ArbPointParameters.PointFadeThresholdSizeArb; - var _PointDistanceAttenuationArb = OpenTK.Graphics.OpenGL.ArbPointParameters.PointDistanceAttenuationArb; -} -static void Test_ArbPointSprite_19429() { - var _PointSpriteArb = OpenTK.Graphics.OpenGL.ArbPointSprite.PointSpriteArb; - var _CoordReplaceArb = OpenTK.Graphics.OpenGL.ArbPointSprite.CoordReplaceArb; -} -static void Test_ArbProgramInterfaceQuery_19430() { - var _NumCompatibleSubroutines = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.NumCompatibleSubroutines; - var _CompatibleSubroutines = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.CompatibleSubroutines; - var _AtomicCounterBuffer = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.AtomicCounterBuffer; - var _Uniform = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.Uniform; - var _UniformBlock = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.UniformBlock; - var _ProgramInput = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.ProgramInput; - var _ProgramOutput = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.ProgramOutput; - var _BufferVariable = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.BufferVariable; - var _ShaderStorageBlock = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.ShaderStorageBlock; - var _IsPerPatch = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.IsPerPatch; - var _VertexSubroutine = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.VertexSubroutine; - var _TessControlSubroutine = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.TessControlSubroutine; - var _TessEvaluationSubroutine = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.TessEvaluationSubroutine; - var _GeometrySubroutine = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.GeometrySubroutine; - var _FragmentSubroutine = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.FragmentSubroutine; - var _ComputeSubroutine = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.ComputeSubroutine; - var _VertexSubroutineUniform = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.VertexSubroutineUniform; - var _TessControlSubroutineUniform = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.TessControlSubroutineUniform; - var _TessEvaluationSubroutineUniform = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.TessEvaluationSubroutineUniform; - var _GeometrySubroutineUniform = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.GeometrySubroutineUniform; - var _FragmentSubroutineUniform = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.FragmentSubroutineUniform; - var _ComputeSubroutineUniform = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.ComputeSubroutineUniform; - var _TransformFeedbackVarying = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.TransformFeedbackVarying; - var _ActiveResources = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.ActiveResources; - var _MaxNameLength = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.MaxNameLength; - var _MaxNumActiveVariables = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.MaxNumActiveVariables; - var _MaxNumCompatibleSubroutines = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.MaxNumCompatibleSubroutines; - var _NameLength = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.NameLength; - var _Type = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.Type; - var _ArraySize = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.ArraySize; - var _Offset = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.Offset; - var _BlockIndex = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.BlockIndex; - var _ArrayStride = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.ArrayStride; - var _MatrixStride = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.MatrixStride; - var _IsRowMajor = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.IsRowMajor; - var _AtomicCounterBufferIndex = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.AtomicCounterBufferIndex; - var _BufferBinding = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.BufferBinding; - var _BufferDataSize = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.BufferDataSize; - var _NumActiveVariables = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.NumActiveVariables; - var _ActiveVariables = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.ActiveVariables; - var _ReferencedByVertexShader = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.ReferencedByVertexShader; - var _ReferencedByTessControlShader = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.ReferencedByTessControlShader; - var _ReferencedByTessEvaluationShader = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.ReferencedByTessEvaluationShader; - var _ReferencedByGeometryShader = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.ReferencedByGeometryShader; - var _ReferencedByFragmentShader = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.ReferencedByFragmentShader; - var _ReferencedByComputeShader = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.ReferencedByComputeShader; - var _TopLevelArraySize = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.TopLevelArraySize; - var _TopLevelArrayStride = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.TopLevelArrayStride; - var _Location = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.Location; - var _LocationIndex = OpenTK.Graphics.OpenGL.ArbProgramInterfaceQuery.LocationIndex; -} -static void Test_ArbProvokingVertex_19431() { - var _QuadsFollowProvokingVertexConvention = OpenTK.Graphics.OpenGL.ArbProvokingVertex.QuadsFollowProvokingVertexConvention; - var _FirstVertexConvention = OpenTK.Graphics.OpenGL.ArbProvokingVertex.FirstVertexConvention; - var _LastVertexConvention = OpenTK.Graphics.OpenGL.ArbProvokingVertex.LastVertexConvention; - var _ProvokingVertex = OpenTK.Graphics.OpenGL.ArbProvokingVertex.ProvokingVertex; -} -static void Test_ArbQueryBufferObject_19432() { - var _QueryBufferBarrierBit = OpenTK.Graphics.OpenGL.ArbQueryBufferObject.QueryBufferBarrierBit; - var _QueryBuffer = OpenTK.Graphics.OpenGL.ArbQueryBufferObject.QueryBuffer; - var _QueryBufferBinding = OpenTK.Graphics.OpenGL.ArbQueryBufferObject.QueryBufferBinding; - var _QueryResultNoWait = OpenTK.Graphics.OpenGL.ArbQueryBufferObject.QueryResultNoWait; -} -static void Test_ArbRobustBufferAccessBehavior_19433() { -} -static void Test_ArbRobustness_19434() { - var _NoError = OpenTK.Graphics.OpenGL.ArbRobustness.NoError; - var _ContextFlagRobustAccessBitArb = OpenTK.Graphics.OpenGL.ArbRobustness.ContextFlagRobustAccessBitArb; - var _LoseContextOnResetArb = OpenTK.Graphics.OpenGL.ArbRobustness.LoseContextOnResetArb; - var _GuiltyContextResetArb = OpenTK.Graphics.OpenGL.ArbRobustness.GuiltyContextResetArb; - var _InnocentContextResetArb = OpenTK.Graphics.OpenGL.ArbRobustness.InnocentContextResetArb; - var _UnknownContextResetArb = OpenTK.Graphics.OpenGL.ArbRobustness.UnknownContextResetArb; - var _ResetNotificationStrategyArb = OpenTK.Graphics.OpenGL.ArbRobustness.ResetNotificationStrategyArb; - var _NoResetNotificationArb = OpenTK.Graphics.OpenGL.ArbRobustness.NoResetNotificationArb; -} -static void Test_ArbRobustnessIsolation_19435() { -} -static void Test_ArbSamplerObjects_19436() { - var _SamplerBinding = OpenTK.Graphics.OpenGL.ArbSamplerObjects.SamplerBinding; -} -static void Test_ArbSampleShading_19437() { - var _SampleShadingArb = OpenTK.Graphics.OpenGL.ArbSampleShading.SampleShadingArb; - var _MinSampleShadingValueArb = OpenTK.Graphics.OpenGL.ArbSampleShading.MinSampleShadingValueArb; -} -static void Test_ArbSeamlessCubeMap_19438() { - var _TextureCubeMapSeamless = OpenTK.Graphics.OpenGL.ArbSeamlessCubeMap.TextureCubeMapSeamless; -} -static void Test_ArbSeamlessCubemapPerTexture_19439() { - var _TextureCubeMapSeamless = OpenTK.Graphics.OpenGL.ArbSeamlessCubemapPerTexture.TextureCubeMapSeamless; -} -static void Test_ArbSeparateShaderObjects_19440() { - var _VertexShaderBit = OpenTK.Graphics.OpenGL.ArbSeparateShaderObjects.VertexShaderBit; - var _FragmentShaderBit = OpenTK.Graphics.OpenGL.ArbSeparateShaderObjects.FragmentShaderBit; - var _GeometryShaderBit = OpenTK.Graphics.OpenGL.ArbSeparateShaderObjects.GeometryShaderBit; - var _TessControlShaderBit = OpenTK.Graphics.OpenGL.ArbSeparateShaderObjects.TessControlShaderBit; - var _TessEvaluationShaderBit = OpenTK.Graphics.OpenGL.ArbSeparateShaderObjects.TessEvaluationShaderBit; - var _ProgramSeparable = OpenTK.Graphics.OpenGL.ArbSeparateShaderObjects.ProgramSeparable; - var _ActiveProgram = OpenTK.Graphics.OpenGL.ArbSeparateShaderObjects.ActiveProgram; - var _ProgramPipelineBinding = OpenTK.Graphics.OpenGL.ArbSeparateShaderObjects.ProgramPipelineBinding; - var _AllShaderBits = OpenTK.Graphics.OpenGL.ArbSeparateShaderObjects.AllShaderBits; -} -static void Test_ArbShaderAtomicCounters_19441() { - var _AtomicCounterBuffer = OpenTK.Graphics.OpenGL.ArbShaderAtomicCounters.AtomicCounterBuffer; - var _AtomicCounterBufferBinding = OpenTK.Graphics.OpenGL.ArbShaderAtomicCounters.AtomicCounterBufferBinding; - var _AtomicCounterBufferStart = OpenTK.Graphics.OpenGL.ArbShaderAtomicCounters.AtomicCounterBufferStart; - var _AtomicCounterBufferSize = OpenTK.Graphics.OpenGL.ArbShaderAtomicCounters.AtomicCounterBufferSize; - var _AtomicCounterBufferDataSize = OpenTK.Graphics.OpenGL.ArbShaderAtomicCounters.AtomicCounterBufferDataSize; - var _AtomicCounterBufferActiveAtomicCounters = OpenTK.Graphics.OpenGL.ArbShaderAtomicCounters.AtomicCounterBufferActiveAtomicCounters; - var _AtomicCounterBufferActiveAtomicCounterIndices = OpenTK.Graphics.OpenGL.ArbShaderAtomicCounters.AtomicCounterBufferActiveAtomicCounterIndices; - var _AtomicCounterBufferReferencedByVertexShader = OpenTK.Graphics.OpenGL.ArbShaderAtomicCounters.AtomicCounterBufferReferencedByVertexShader; - var _AtomicCounterBufferReferencedByTessControlShader = OpenTK.Graphics.OpenGL.ArbShaderAtomicCounters.AtomicCounterBufferReferencedByTessControlShader; - var _AtomicCounterBufferReferencedByTessEvaluationShader = OpenTK.Graphics.OpenGL.ArbShaderAtomicCounters.AtomicCounterBufferReferencedByTessEvaluationShader; - var _AtomicCounterBufferReferencedByGeometryShader = OpenTK.Graphics.OpenGL.ArbShaderAtomicCounters.AtomicCounterBufferReferencedByGeometryShader; - var _AtomicCounterBufferReferencedByFragmentShader = OpenTK.Graphics.OpenGL.ArbShaderAtomicCounters.AtomicCounterBufferReferencedByFragmentShader; - var _MaxVertexAtomicCounterBuffers = OpenTK.Graphics.OpenGL.ArbShaderAtomicCounters.MaxVertexAtomicCounterBuffers; - var _MaxTessControlAtomicCounterBuffers = OpenTK.Graphics.OpenGL.ArbShaderAtomicCounters.MaxTessControlAtomicCounterBuffers; - var _MaxTessEvaluationAtomicCounterBuffers = OpenTK.Graphics.OpenGL.ArbShaderAtomicCounters.MaxTessEvaluationAtomicCounterBuffers; - var _MaxGeometryAtomicCounterBuffers = OpenTK.Graphics.OpenGL.ArbShaderAtomicCounters.MaxGeometryAtomicCounterBuffers; - var _MaxFragmentAtomicCounterBuffers = OpenTK.Graphics.OpenGL.ArbShaderAtomicCounters.MaxFragmentAtomicCounterBuffers; - var _MaxCombinedAtomicCounterBuffers = OpenTK.Graphics.OpenGL.ArbShaderAtomicCounters.MaxCombinedAtomicCounterBuffers; - var _MaxVertexAtomicCounters = OpenTK.Graphics.OpenGL.ArbShaderAtomicCounters.MaxVertexAtomicCounters; - var _MaxTessControlAtomicCounters = OpenTK.Graphics.OpenGL.ArbShaderAtomicCounters.MaxTessControlAtomicCounters; - var _MaxTessEvaluationAtomicCounters = OpenTK.Graphics.OpenGL.ArbShaderAtomicCounters.MaxTessEvaluationAtomicCounters; - var _MaxGeometryAtomicCounters = OpenTK.Graphics.OpenGL.ArbShaderAtomicCounters.MaxGeometryAtomicCounters; - var _MaxFragmentAtomicCounters = OpenTK.Graphics.OpenGL.ArbShaderAtomicCounters.MaxFragmentAtomicCounters; - var _MaxCombinedAtomicCounters = OpenTK.Graphics.OpenGL.ArbShaderAtomicCounters.MaxCombinedAtomicCounters; - var _MaxAtomicCounterBufferSize = OpenTK.Graphics.OpenGL.ArbShaderAtomicCounters.MaxAtomicCounterBufferSize; - var _ActiveAtomicCounterBuffers = OpenTK.Graphics.OpenGL.ArbShaderAtomicCounters.ActiveAtomicCounterBuffers; - var _UniformAtomicCounterBufferIndex = OpenTK.Graphics.OpenGL.ArbShaderAtomicCounters.UniformAtomicCounterBufferIndex; - var _UnsignedIntAtomicCounter = OpenTK.Graphics.OpenGL.ArbShaderAtomicCounters.UnsignedIntAtomicCounter; - var _MaxAtomicCounterBufferBindings = OpenTK.Graphics.OpenGL.ArbShaderAtomicCounters.MaxAtomicCounterBufferBindings; -} -static void Test_ArbShaderBitEncoding_19442() { -} -static void Test_ArbShaderDrawParameters_19443() { -} -static void Test_ArbShaderGroupVote_19444() { -} -static void Test_ArbShaderImageLoadStore_19445() { - var _VertexAttribArrayBarrierBit = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.VertexAttribArrayBarrierBit; - var _ElementArrayBarrierBit = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.ElementArrayBarrierBit; - var _UniformBarrierBit = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.UniformBarrierBit; - var _TextureFetchBarrierBit = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.TextureFetchBarrierBit; - var _ShaderImageAccessBarrierBit = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.ShaderImageAccessBarrierBit; - var _CommandBarrierBit = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.CommandBarrierBit; - var _PixelBufferBarrierBit = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.PixelBufferBarrierBit; - var _TextureUpdateBarrierBit = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.TextureUpdateBarrierBit; - var _BufferUpdateBarrierBit = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.BufferUpdateBarrierBit; - var _FramebufferBarrierBit = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.FramebufferBarrierBit; - var _TransformFeedbackBarrierBit = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.TransformFeedbackBarrierBit; - var _AtomicCounterBarrierBit = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.AtomicCounterBarrierBit; - var _MaxImageUnits = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.MaxImageUnits; - var _MaxCombinedImageUnitsAndFragmentOutputs = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.MaxCombinedImageUnitsAndFragmentOutputs; - var _ImageBindingName = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.ImageBindingName; - var _ImageBindingLevel = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.ImageBindingLevel; - var _ImageBindingLayered = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.ImageBindingLayered; - var _ImageBindingLayer = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.ImageBindingLayer; - var _ImageBindingAccess = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.ImageBindingAccess; - var _Image1D = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.Image1D; - var _Image2D = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.Image2D; - var _Image3D = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.Image3D; - var _Image2DRect = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.Image2DRect; - var _ImageCube = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.ImageCube; - var _ImageBuffer = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.ImageBuffer; - var _Image1DArray = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.Image1DArray; - var _Image2DArray = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.Image2DArray; - var _ImageCubeMapArray = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.ImageCubeMapArray; - var _Image2DMultisample = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.Image2DMultisample; - var _Image2DMultisampleArray = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.Image2DMultisampleArray; - var _IntImage1D = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.IntImage1D; - var _IntImage2D = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.IntImage2D; - var _IntImage3D = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.IntImage3D; - var _IntImage2DRect = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.IntImage2DRect; - var _IntImageCube = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.IntImageCube; - var _IntImageBuffer = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.IntImageBuffer; - var _IntImage1DArray = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.IntImage1DArray; - var _IntImage2DArray = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.IntImage2DArray; - var _IntImageCubeMapArray = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.IntImageCubeMapArray; - var _IntImage2DMultisample = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.IntImage2DMultisample; - var _IntImage2DMultisampleArray = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.IntImage2DMultisampleArray; - var _UnsignedIntImage1D = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.UnsignedIntImage1D; - var _UnsignedIntImage2D = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.UnsignedIntImage2D; - var _UnsignedIntImage3D = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.UnsignedIntImage3D; - var _UnsignedIntImage2DRect = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.UnsignedIntImage2DRect; - var _UnsignedIntImageCube = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.UnsignedIntImageCube; - var _UnsignedIntImageBuffer = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.UnsignedIntImageBuffer; - var _UnsignedIntImage1DArray = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.UnsignedIntImage1DArray; - var _UnsignedIntImage2DArray = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.UnsignedIntImage2DArray; - var _UnsignedIntImageCubeMapArray = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.UnsignedIntImageCubeMapArray; - var _UnsignedIntImage2DMultisample = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.UnsignedIntImage2DMultisample; - var _UnsignedIntImage2DMultisampleArray = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.UnsignedIntImage2DMultisampleArray; - var _MaxImageSamples = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.MaxImageSamples; - var _ImageBindingFormat = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.ImageBindingFormat; - var _ImageFormatCompatibilityType = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.ImageFormatCompatibilityType; - var _ImageFormatCompatibilityBySize = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.ImageFormatCompatibilityBySize; - var _ImageFormatCompatibilityByClass = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.ImageFormatCompatibilityByClass; - var _MaxVertexImageUniforms = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.MaxVertexImageUniforms; - var _MaxTessControlImageUniforms = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.MaxTessControlImageUniforms; - var _MaxTessEvaluationImageUniforms = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.MaxTessEvaluationImageUniforms; - var _MaxGeometryImageUniforms = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.MaxGeometryImageUniforms; - var _MaxFragmentImageUniforms = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.MaxFragmentImageUniforms; - var _MaxCombinedImageUniforms = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.MaxCombinedImageUniforms; - var _AllBarrierBits = OpenTK.Graphics.OpenGL.ArbShaderImageLoadStore.AllBarrierBits; -} -static void Test_ArbShaderImageSize_19446() { -} -static void Test_ArbShaderObjects_19447() { - var _ProgramObjectArb = OpenTK.Graphics.OpenGL.ArbShaderObjects.ProgramObjectArb; - var _ShaderObjectArb = OpenTK.Graphics.OpenGL.ArbShaderObjects.ShaderObjectArb; - var _ObjectTypeArb = OpenTK.Graphics.OpenGL.ArbShaderObjects.ObjectTypeArb; - var _ObjectSubtypeArb = OpenTK.Graphics.OpenGL.ArbShaderObjects.ObjectSubtypeArb; - var _FloatVec2Arb = OpenTK.Graphics.OpenGL.ArbShaderObjects.FloatVec2Arb; - var _FloatVec3Arb = OpenTK.Graphics.OpenGL.ArbShaderObjects.FloatVec3Arb; - var _FloatVec4Arb = OpenTK.Graphics.OpenGL.ArbShaderObjects.FloatVec4Arb; - var _IntVec2Arb = OpenTK.Graphics.OpenGL.ArbShaderObjects.IntVec2Arb; - var _IntVec3Arb = OpenTK.Graphics.OpenGL.ArbShaderObjects.IntVec3Arb; - var _IntVec4Arb = OpenTK.Graphics.OpenGL.ArbShaderObjects.IntVec4Arb; - var _BoolArb = OpenTK.Graphics.OpenGL.ArbShaderObjects.BoolArb; - var _BoolVec2Arb = OpenTK.Graphics.OpenGL.ArbShaderObjects.BoolVec2Arb; - var _BoolVec3Arb = OpenTK.Graphics.OpenGL.ArbShaderObjects.BoolVec3Arb; - var _BoolVec4Arb = OpenTK.Graphics.OpenGL.ArbShaderObjects.BoolVec4Arb; - var _FloatMat2Arb = OpenTK.Graphics.OpenGL.ArbShaderObjects.FloatMat2Arb; - var _FloatMat3Arb = OpenTK.Graphics.OpenGL.ArbShaderObjects.FloatMat3Arb; - var _FloatMat4Arb = OpenTK.Graphics.OpenGL.ArbShaderObjects.FloatMat4Arb; - var _Sampler1DArb = OpenTK.Graphics.OpenGL.ArbShaderObjects.Sampler1DArb; - var _Sampler2DArb = OpenTK.Graphics.OpenGL.ArbShaderObjects.Sampler2DArb; - var _Sampler3DArb = OpenTK.Graphics.OpenGL.ArbShaderObjects.Sampler3DArb; - var _SamplerCubeArb = OpenTK.Graphics.OpenGL.ArbShaderObjects.SamplerCubeArb; - var _Sampler1DShadowArb = OpenTK.Graphics.OpenGL.ArbShaderObjects.Sampler1DShadowArb; - var _Sampler2DShadowArb = OpenTK.Graphics.OpenGL.ArbShaderObjects.Sampler2DShadowArb; - var _Sampler2DRectArb = OpenTK.Graphics.OpenGL.ArbShaderObjects.Sampler2DRectArb; - var _Sampler2DRectShadowArb = OpenTK.Graphics.OpenGL.ArbShaderObjects.Sampler2DRectShadowArb; - var _ObjectDeleteStatusArb = OpenTK.Graphics.OpenGL.ArbShaderObjects.ObjectDeleteStatusArb; - var _ObjectCompileStatusArb = OpenTK.Graphics.OpenGL.ArbShaderObjects.ObjectCompileStatusArb; - var _ObjectLinkStatusArb = OpenTK.Graphics.OpenGL.ArbShaderObjects.ObjectLinkStatusArb; - var _ObjectValidateStatusArb = OpenTK.Graphics.OpenGL.ArbShaderObjects.ObjectValidateStatusArb; - var _ObjectInfoLogLengthArb = OpenTK.Graphics.OpenGL.ArbShaderObjects.ObjectInfoLogLengthArb; - var _ObjectAttachedObjectsArb = OpenTK.Graphics.OpenGL.ArbShaderObjects.ObjectAttachedObjectsArb; - var _ObjectActiveUniformsArb = OpenTK.Graphics.OpenGL.ArbShaderObjects.ObjectActiveUniformsArb; - var _ObjectActiveUniformMaxLengthArb = OpenTK.Graphics.OpenGL.ArbShaderObjects.ObjectActiveUniformMaxLengthArb; - var _ObjectShaderSourceLengthArb = OpenTK.Graphics.OpenGL.ArbShaderObjects.ObjectShaderSourceLengthArb; -} -static void Test_ArbShaderPrecision_19448() { -} -static void Test_ArbShaderStencilExport_19449() { -} -static void Test_ArbShaderStorageBufferObject_19450() { - var _ShaderStorageBarrierBit = OpenTK.Graphics.OpenGL.ArbShaderStorageBufferObject.ShaderStorageBarrierBit; - var _MaxCombinedImageUnitsAndFragmentOutputs = OpenTK.Graphics.OpenGL.ArbShaderStorageBufferObject.MaxCombinedImageUnitsAndFragmentOutputs; - var _MaxCombinedShaderOutputResources = OpenTK.Graphics.OpenGL.ArbShaderStorageBufferObject.MaxCombinedShaderOutputResources; - var _ShaderStorageBuffer = OpenTK.Graphics.OpenGL.ArbShaderStorageBufferObject.ShaderStorageBuffer; - var _ShaderStorageBufferBinding = OpenTK.Graphics.OpenGL.ArbShaderStorageBufferObject.ShaderStorageBufferBinding; - var _ShaderStorageBufferStart = OpenTK.Graphics.OpenGL.ArbShaderStorageBufferObject.ShaderStorageBufferStart; - var _ShaderStorageBufferSize = OpenTK.Graphics.OpenGL.ArbShaderStorageBufferObject.ShaderStorageBufferSize; - var _MaxVertexShaderStorageBlocks = OpenTK.Graphics.OpenGL.ArbShaderStorageBufferObject.MaxVertexShaderStorageBlocks; - var _MaxGeometryShaderStorageBlocks = OpenTK.Graphics.OpenGL.ArbShaderStorageBufferObject.MaxGeometryShaderStorageBlocks; - var _MaxTessControlShaderStorageBlocks = OpenTK.Graphics.OpenGL.ArbShaderStorageBufferObject.MaxTessControlShaderStorageBlocks; - var _MaxTessEvaluationShaderStorageBlocks = OpenTK.Graphics.OpenGL.ArbShaderStorageBufferObject.MaxTessEvaluationShaderStorageBlocks; - var _MaxFragmentShaderStorageBlocks = OpenTK.Graphics.OpenGL.ArbShaderStorageBufferObject.MaxFragmentShaderStorageBlocks; - var _MaxComputeShaderStorageBlocks = OpenTK.Graphics.OpenGL.ArbShaderStorageBufferObject.MaxComputeShaderStorageBlocks; - var _MaxCombinedShaderStorageBlocks = OpenTK.Graphics.OpenGL.ArbShaderStorageBufferObject.MaxCombinedShaderStorageBlocks; - var _MaxShaderStorageBufferBindings = OpenTK.Graphics.OpenGL.ArbShaderStorageBufferObject.MaxShaderStorageBufferBindings; - var _MaxShaderStorageBlockSize = OpenTK.Graphics.OpenGL.ArbShaderStorageBufferObject.MaxShaderStorageBlockSize; - var _ShaderStorageBufferOffsetAlignment = OpenTK.Graphics.OpenGL.ArbShaderStorageBufferObject.ShaderStorageBufferOffsetAlignment; -} -static void Test_ArbShaderSubroutine_19451() { - var _UniformSize = OpenTK.Graphics.OpenGL.ArbShaderSubroutine.UniformSize; - var _UniformNameLength = OpenTK.Graphics.OpenGL.ArbShaderSubroutine.UniformNameLength; - var _ActiveSubroutines = OpenTK.Graphics.OpenGL.ArbShaderSubroutine.ActiveSubroutines; - var _ActiveSubroutineUniforms = OpenTK.Graphics.OpenGL.ArbShaderSubroutine.ActiveSubroutineUniforms; - var _MaxSubroutines = OpenTK.Graphics.OpenGL.ArbShaderSubroutine.MaxSubroutines; - var _MaxSubroutineUniformLocations = OpenTK.Graphics.OpenGL.ArbShaderSubroutine.MaxSubroutineUniformLocations; - var _ActiveSubroutineUniformLocations = OpenTK.Graphics.OpenGL.ArbShaderSubroutine.ActiveSubroutineUniformLocations; - var _ActiveSubroutineMaxLength = OpenTK.Graphics.OpenGL.ArbShaderSubroutine.ActiveSubroutineMaxLength; - var _ActiveSubroutineUniformMaxLength = OpenTK.Graphics.OpenGL.ArbShaderSubroutine.ActiveSubroutineUniformMaxLength; - var _NumCompatibleSubroutines = OpenTK.Graphics.OpenGL.ArbShaderSubroutine.NumCompatibleSubroutines; - var _CompatibleSubroutines = OpenTK.Graphics.OpenGL.ArbShaderSubroutine.CompatibleSubroutines; -} -static void Test_ArbShaderTextureLod_19452() { -} -static void Test_ArbShadingLanguage100_19453() { - var _ShadingLanguageVersionArb = OpenTK.Graphics.OpenGL.ArbShadingLanguage100.ShadingLanguageVersionArb; -} -static void Test_ArbShadingLanguage420pack_19454() { -} -static void Test_ArbShadingLanguageInclude_19455() { - var _ShaderIncludeArb = OpenTK.Graphics.OpenGL.ArbShadingLanguageInclude.ShaderIncludeArb; - var _NamedStringLengthArb = OpenTK.Graphics.OpenGL.ArbShadingLanguageInclude.NamedStringLengthArb; - var _NamedStringTypeArb = OpenTK.Graphics.OpenGL.ArbShadingLanguageInclude.NamedStringTypeArb; -} -static void Test_ArbShadingLanguagePacking_19456() { -} -static void Test_ArbShadow_19457() { - var _TextureCompareModeArb = OpenTK.Graphics.OpenGL.ArbShadow.TextureCompareModeArb; - var _TextureCompareFuncArb = OpenTK.Graphics.OpenGL.ArbShadow.TextureCompareFuncArb; - var _CompareRToTextureArb = OpenTK.Graphics.OpenGL.ArbShadow.CompareRToTextureArb; -} -static void Test_ArbShadowAmbient_19458() { - var _TextureCompareFailValueArb = OpenTK.Graphics.OpenGL.ArbShadowAmbient.TextureCompareFailValueArb; -} -static void Test_ArbSparseTexture_19459() { - var _VirtualPageSizeXArb = OpenTK.Graphics.OpenGL.ArbSparseTexture.VirtualPageSizeXArb; - var _VirtualPageSizeYArb = OpenTK.Graphics.OpenGL.ArbSparseTexture.VirtualPageSizeYArb; - var _VirtualPageSizeZArb = OpenTK.Graphics.OpenGL.ArbSparseTexture.VirtualPageSizeZArb; - var _MaxSparseTextureSizeArb = OpenTK.Graphics.OpenGL.ArbSparseTexture.MaxSparseTextureSizeArb; - var _MaxSparse3DTextureSizeArb = OpenTK.Graphics.OpenGL.ArbSparseTexture.MaxSparse3DTextureSizeArb; - var _MaxSparseArrayTextureLayersArb = OpenTK.Graphics.OpenGL.ArbSparseTexture.MaxSparseArrayTextureLayersArb; - var _MinSparseLevelArb = OpenTK.Graphics.OpenGL.ArbSparseTexture.MinSparseLevelArb; - var _TextureSparseArb = OpenTK.Graphics.OpenGL.ArbSparseTexture.TextureSparseArb; - var _VirtualPageSizeIndexArb = OpenTK.Graphics.OpenGL.ArbSparseTexture.VirtualPageSizeIndexArb; - var _NumVirtualPageSizesArb = OpenTK.Graphics.OpenGL.ArbSparseTexture.NumVirtualPageSizesArb; - var _SparseTextureFullArrayCubeMipmapsArb = OpenTK.Graphics.OpenGL.ArbSparseTexture.SparseTextureFullArrayCubeMipmapsArb; -} -static void Test_ArbStencilTexturing_19460() { - var _DepthStencilTextureMode = OpenTK.Graphics.OpenGL.ArbStencilTexturing.DepthStencilTextureMode; -} -static void Test_ArbSync_19461() { - var _SyncFlushCommandsBit = OpenTK.Graphics.OpenGL.ArbSync.SyncFlushCommandsBit; - var _MaxServerWaitTimeout = OpenTK.Graphics.OpenGL.ArbSync.MaxServerWaitTimeout; - var _ObjectType = OpenTK.Graphics.OpenGL.ArbSync.ObjectType; - var _SyncCondition = OpenTK.Graphics.OpenGL.ArbSync.SyncCondition; - var _SyncStatus = OpenTK.Graphics.OpenGL.ArbSync.SyncStatus; - var _SyncFlags = OpenTK.Graphics.OpenGL.ArbSync.SyncFlags; - var _SyncFence = OpenTK.Graphics.OpenGL.ArbSync.SyncFence; - var _SyncGpuCommandsComplete = OpenTK.Graphics.OpenGL.ArbSync.SyncGpuCommandsComplete; - var _Unsignaled = OpenTK.Graphics.OpenGL.ArbSync.Unsignaled; - var _Signaled = OpenTK.Graphics.OpenGL.ArbSync.Signaled; - var _AlreadySignaled = OpenTK.Graphics.OpenGL.ArbSync.AlreadySignaled; - var _TimeoutExpired = OpenTK.Graphics.OpenGL.ArbSync.TimeoutExpired; - var _ConditionSatisfied = OpenTK.Graphics.OpenGL.ArbSync.ConditionSatisfied; - var _WaitFailed = OpenTK.Graphics.OpenGL.ArbSync.WaitFailed; - var _TimeoutIgnored = OpenTK.Graphics.OpenGL.ArbSync.TimeoutIgnored; -} -static void Test_ArbTessellationShader_19462() { - var _Triangles = OpenTK.Graphics.OpenGL.ArbTessellationShader.Triangles; - var _Quads = OpenTK.Graphics.OpenGL.ArbTessellationShader.Quads; - var _Patches = OpenTK.Graphics.OpenGL.ArbTessellationShader.Patches; - var _Equal = OpenTK.Graphics.OpenGL.ArbTessellationShader.Equal; - var _Cw = OpenTK.Graphics.OpenGL.ArbTessellationShader.Cw; - var _Ccw = OpenTK.Graphics.OpenGL.ArbTessellationShader.Ccw; - var _UniformBlockReferencedByTessControlShader = OpenTK.Graphics.OpenGL.ArbTessellationShader.UniformBlockReferencedByTessControlShader; - var _UniformBlockReferencedByTessEvaluationShader = OpenTK.Graphics.OpenGL.ArbTessellationShader.UniformBlockReferencedByTessEvaluationShader; - var _MaxTessControlInputComponents = OpenTK.Graphics.OpenGL.ArbTessellationShader.MaxTessControlInputComponents; - var _MaxTessEvaluationInputComponents = OpenTK.Graphics.OpenGL.ArbTessellationShader.MaxTessEvaluationInputComponents; - var _MaxCombinedTessControlUniformComponents = OpenTK.Graphics.OpenGL.ArbTessellationShader.MaxCombinedTessControlUniformComponents; - var _MaxCombinedTessEvaluationUniformComponents = OpenTK.Graphics.OpenGL.ArbTessellationShader.MaxCombinedTessEvaluationUniformComponents; - var _PatchVertices = OpenTK.Graphics.OpenGL.ArbTessellationShader.PatchVertices; - var _PatchDefaultInnerLevel = OpenTK.Graphics.OpenGL.ArbTessellationShader.PatchDefaultInnerLevel; - var _PatchDefaultOuterLevel = OpenTK.Graphics.OpenGL.ArbTessellationShader.PatchDefaultOuterLevel; - var _TessControlOutputVertices = OpenTK.Graphics.OpenGL.ArbTessellationShader.TessControlOutputVertices; - var _TessGenMode = OpenTK.Graphics.OpenGL.ArbTessellationShader.TessGenMode; - var _TessGenSpacing = OpenTK.Graphics.OpenGL.ArbTessellationShader.TessGenSpacing; - var _TessGenVertexOrder = OpenTK.Graphics.OpenGL.ArbTessellationShader.TessGenVertexOrder; - var _TessGenPointMode = OpenTK.Graphics.OpenGL.ArbTessellationShader.TessGenPointMode; - var _Isolines = OpenTK.Graphics.OpenGL.ArbTessellationShader.Isolines; - var _FractionalOdd = OpenTK.Graphics.OpenGL.ArbTessellationShader.FractionalOdd; - var _FractionalEven = OpenTK.Graphics.OpenGL.ArbTessellationShader.FractionalEven; - var _MaxPatchVertices = OpenTK.Graphics.OpenGL.ArbTessellationShader.MaxPatchVertices; - var _MaxTessGenLevel = OpenTK.Graphics.OpenGL.ArbTessellationShader.MaxTessGenLevel; - var _MaxTessControlUniformComponents = OpenTK.Graphics.OpenGL.ArbTessellationShader.MaxTessControlUniformComponents; - var _MaxTessEvaluationUniformComponents = OpenTK.Graphics.OpenGL.ArbTessellationShader.MaxTessEvaluationUniformComponents; - var _MaxTessControlTextureImageUnits = OpenTK.Graphics.OpenGL.ArbTessellationShader.MaxTessControlTextureImageUnits; - var _MaxTessEvaluationTextureImageUnits = OpenTK.Graphics.OpenGL.ArbTessellationShader.MaxTessEvaluationTextureImageUnits; - var _MaxTessControlOutputComponents = OpenTK.Graphics.OpenGL.ArbTessellationShader.MaxTessControlOutputComponents; - var _MaxTessPatchComponents = OpenTK.Graphics.OpenGL.ArbTessellationShader.MaxTessPatchComponents; - var _MaxTessControlTotalOutputComponents = OpenTK.Graphics.OpenGL.ArbTessellationShader.MaxTessControlTotalOutputComponents; - var _MaxTessEvaluationOutputComponents = OpenTK.Graphics.OpenGL.ArbTessellationShader.MaxTessEvaluationOutputComponents; - var _TessEvaluationShader = OpenTK.Graphics.OpenGL.ArbTessellationShader.TessEvaluationShader; - var _TessControlShader = OpenTK.Graphics.OpenGL.ArbTessellationShader.TessControlShader; - var _MaxTessControlUniformBlocks = OpenTK.Graphics.OpenGL.ArbTessellationShader.MaxTessControlUniformBlocks; - var _MaxTessEvaluationUniformBlocks = OpenTK.Graphics.OpenGL.ArbTessellationShader.MaxTessEvaluationUniformBlocks; -} -static void Test_ArbTextureBorderClamp_19463() { - var _ClampToBorderArb = OpenTK.Graphics.OpenGL.ArbTextureBorderClamp.ClampToBorderArb; -} -static void Test_ArbTextureBufferObject_19464() { - var _TextureBufferArb = OpenTK.Graphics.OpenGL.ArbTextureBufferObject.TextureBufferArb; - var _MaxTextureBufferSizeArb = OpenTK.Graphics.OpenGL.ArbTextureBufferObject.MaxTextureBufferSizeArb; - var _TextureBindingBufferArb = OpenTK.Graphics.OpenGL.ArbTextureBufferObject.TextureBindingBufferArb; - var _TextureBufferDataStoreBindingArb = OpenTK.Graphics.OpenGL.ArbTextureBufferObject.TextureBufferDataStoreBindingArb; - var _TextureBufferFormatArb = OpenTK.Graphics.OpenGL.ArbTextureBufferObject.TextureBufferFormatArb; -} -static void Test_ArbTextureBufferObjectRgb32_19465() { - var _Rgb32f = OpenTK.Graphics.OpenGL.ArbTextureBufferObjectRgb32.Rgb32f; - var _Rgb32ui = OpenTK.Graphics.OpenGL.ArbTextureBufferObjectRgb32.Rgb32ui; - var _Rgb32i = OpenTK.Graphics.OpenGL.ArbTextureBufferObjectRgb32.Rgb32i; -} -static void Test_ArbTextureBufferRange_19466() { - var _TextureBufferOffset = OpenTK.Graphics.OpenGL.ArbTextureBufferRange.TextureBufferOffset; - var _TextureBufferSize = OpenTK.Graphics.OpenGL.ArbTextureBufferRange.TextureBufferSize; - var _TextureBufferOffsetAlignment = OpenTK.Graphics.OpenGL.ArbTextureBufferRange.TextureBufferOffsetAlignment; -} -static void Test_ArbTextureCompression_19467() { - var _CompressedAlphaArb = OpenTK.Graphics.OpenGL.ArbTextureCompression.CompressedAlphaArb; - var _CompressedLuminanceArb = OpenTK.Graphics.OpenGL.ArbTextureCompression.CompressedLuminanceArb; - var _CompressedLuminanceAlphaArb = OpenTK.Graphics.OpenGL.ArbTextureCompression.CompressedLuminanceAlphaArb; - var _CompressedIntensityArb = OpenTK.Graphics.OpenGL.ArbTextureCompression.CompressedIntensityArb; - var _CompressedRgbArb = OpenTK.Graphics.OpenGL.ArbTextureCompression.CompressedRgbArb; - var _CompressedRgbaArb = OpenTK.Graphics.OpenGL.ArbTextureCompression.CompressedRgbaArb; - var _TextureCompressionHintArb = OpenTK.Graphics.OpenGL.ArbTextureCompression.TextureCompressionHintArb; - var _TextureCompressedImageSizeArb = OpenTK.Graphics.OpenGL.ArbTextureCompression.TextureCompressedImageSizeArb; - var _TextureCompressedArb = OpenTK.Graphics.OpenGL.ArbTextureCompression.TextureCompressedArb; - var _NumCompressedTextureFormatsArb = OpenTK.Graphics.OpenGL.ArbTextureCompression.NumCompressedTextureFormatsArb; - var _CompressedTextureFormatsArb = OpenTK.Graphics.OpenGL.ArbTextureCompression.CompressedTextureFormatsArb; -} -static void Test_ArbTextureCompressionBptc_19468() { - var _CompressedRgbaBptcUnormArb = OpenTK.Graphics.OpenGL.ArbTextureCompressionBptc.CompressedRgbaBptcUnormArb; - var _CompressedSrgbAlphaBptcUnormArb = OpenTK.Graphics.OpenGL.ArbTextureCompressionBptc.CompressedSrgbAlphaBptcUnormArb; - var _CompressedRgbBptcSignedFloatArb = OpenTK.Graphics.OpenGL.ArbTextureCompressionBptc.CompressedRgbBptcSignedFloatArb; - var _CompressedRgbBptcUnsignedFloatArb = OpenTK.Graphics.OpenGL.ArbTextureCompressionBptc.CompressedRgbBptcUnsignedFloatArb; -} -static void Test_ArbTextureCompressionRgtc_19469() { - var _CompressedRedRgtc1 = OpenTK.Graphics.OpenGL.ArbTextureCompressionRgtc.CompressedRedRgtc1; - var _CompressedSignedRedRgtc1 = OpenTK.Graphics.OpenGL.ArbTextureCompressionRgtc.CompressedSignedRedRgtc1; - var _CompressedRgRgtc2 = OpenTK.Graphics.OpenGL.ArbTextureCompressionRgtc.CompressedRgRgtc2; - var _CompressedSignedRgRgtc2 = OpenTK.Graphics.OpenGL.ArbTextureCompressionRgtc.CompressedSignedRgRgtc2; -} -static void Test_ArbTextureCubeMap_19470() { - var _NormalMapArb = OpenTK.Graphics.OpenGL.ArbTextureCubeMap.NormalMapArb; - var _ReflectionMapArb = OpenTK.Graphics.OpenGL.ArbTextureCubeMap.ReflectionMapArb; - var _TextureCubeMapArb = OpenTK.Graphics.OpenGL.ArbTextureCubeMap.TextureCubeMapArb; - var _TextureBindingCubeMapArb = OpenTK.Graphics.OpenGL.ArbTextureCubeMap.TextureBindingCubeMapArb; - var _TextureCubeMapPositiveXArb = OpenTK.Graphics.OpenGL.ArbTextureCubeMap.TextureCubeMapPositiveXArb; - var _TextureCubeMapNegativeXArb = OpenTK.Graphics.OpenGL.ArbTextureCubeMap.TextureCubeMapNegativeXArb; - var _TextureCubeMapPositiveYArb = OpenTK.Graphics.OpenGL.ArbTextureCubeMap.TextureCubeMapPositiveYArb; - var _TextureCubeMapNegativeYArb = OpenTK.Graphics.OpenGL.ArbTextureCubeMap.TextureCubeMapNegativeYArb; - var _TextureCubeMapPositiveZArb = OpenTK.Graphics.OpenGL.ArbTextureCubeMap.TextureCubeMapPositiveZArb; - var _TextureCubeMapNegativeZArb = OpenTK.Graphics.OpenGL.ArbTextureCubeMap.TextureCubeMapNegativeZArb; - var _ProxyTextureCubeMapArb = OpenTK.Graphics.OpenGL.ArbTextureCubeMap.ProxyTextureCubeMapArb; - var _MaxCubeMapTextureSizeArb = OpenTK.Graphics.OpenGL.ArbTextureCubeMap.MaxCubeMapTextureSizeArb; -} -static void Test_ArbTextureCubeMapArray_19471() { - var _TextureCubeMapArrayArb = OpenTK.Graphics.OpenGL.ArbTextureCubeMapArray.TextureCubeMapArrayArb; - var _TextureBindingCubeMapArrayArb = OpenTK.Graphics.OpenGL.ArbTextureCubeMapArray.TextureBindingCubeMapArrayArb; - var _ProxyTextureCubeMapArrayArb = OpenTK.Graphics.OpenGL.ArbTextureCubeMapArray.ProxyTextureCubeMapArrayArb; - var _SamplerCubeMapArrayArb = OpenTK.Graphics.OpenGL.ArbTextureCubeMapArray.SamplerCubeMapArrayArb; - var _SamplerCubeMapArrayShadowArb = OpenTK.Graphics.OpenGL.ArbTextureCubeMapArray.SamplerCubeMapArrayShadowArb; - var _IntSamplerCubeMapArrayArb = OpenTK.Graphics.OpenGL.ArbTextureCubeMapArray.IntSamplerCubeMapArrayArb; - var _UnsignedIntSamplerCubeMapArrayArb = OpenTK.Graphics.OpenGL.ArbTextureCubeMapArray.UnsignedIntSamplerCubeMapArrayArb; -} -static void Test_ArbTextureEnvAdd_19472() { -} -static void Test_ArbTextureEnvCombine_19473() { - var _SubtractArb = OpenTK.Graphics.OpenGL.ArbTextureEnvCombine.SubtractArb; - var _CombineArb = OpenTK.Graphics.OpenGL.ArbTextureEnvCombine.CombineArb; - var _CombineRgbArb = OpenTK.Graphics.OpenGL.ArbTextureEnvCombine.CombineRgbArb; - var _CombineAlphaArb = OpenTK.Graphics.OpenGL.ArbTextureEnvCombine.CombineAlphaArb; - var _RgbScaleArb = OpenTK.Graphics.OpenGL.ArbTextureEnvCombine.RgbScaleArb; - var _AddSignedArb = OpenTK.Graphics.OpenGL.ArbTextureEnvCombine.AddSignedArb; - var _InterpolateArb = OpenTK.Graphics.OpenGL.ArbTextureEnvCombine.InterpolateArb; - var _ConstantArb = OpenTK.Graphics.OpenGL.ArbTextureEnvCombine.ConstantArb; - var _PrimaryColorArb = OpenTK.Graphics.OpenGL.ArbTextureEnvCombine.PrimaryColorArb; - var _PreviousArb = OpenTK.Graphics.OpenGL.ArbTextureEnvCombine.PreviousArb; - var _Source0RgbArb = OpenTK.Graphics.OpenGL.ArbTextureEnvCombine.Source0RgbArb; - var _Source1RgbArb = OpenTK.Graphics.OpenGL.ArbTextureEnvCombine.Source1RgbArb; - var _Source2RgbArb = OpenTK.Graphics.OpenGL.ArbTextureEnvCombine.Source2RgbArb; - var _Source0AlphaArb = OpenTK.Graphics.OpenGL.ArbTextureEnvCombine.Source0AlphaArb; - var _Source1AlphaArb = OpenTK.Graphics.OpenGL.ArbTextureEnvCombine.Source1AlphaArb; - var _Source2AlphaArb = OpenTK.Graphics.OpenGL.ArbTextureEnvCombine.Source2AlphaArb; - var _Operand0RgbArb = OpenTK.Graphics.OpenGL.ArbTextureEnvCombine.Operand0RgbArb; - var _Operand1RgbArb = OpenTK.Graphics.OpenGL.ArbTextureEnvCombine.Operand1RgbArb; - var _Operand2RgbArb = OpenTK.Graphics.OpenGL.ArbTextureEnvCombine.Operand2RgbArb; - var _Operand0AlphaArb = OpenTK.Graphics.OpenGL.ArbTextureEnvCombine.Operand0AlphaArb; - var _Operand1AlphaArb = OpenTK.Graphics.OpenGL.ArbTextureEnvCombine.Operand1AlphaArb; - var _Operand2AlphaArb = OpenTK.Graphics.OpenGL.ArbTextureEnvCombine.Operand2AlphaArb; -} -static void Test_ArbTextureEnvCrossbar_19474() { -} -static void Test_ArbTextureEnvDot3_19475() { - var _Dot3RgbArb = OpenTK.Graphics.OpenGL.ArbTextureEnvDot3.Dot3RgbArb; - var _Dot3RgbaArb = OpenTK.Graphics.OpenGL.ArbTextureEnvDot3.Dot3RgbaArb; -} -static void Test_ArbTextureFloat_19476() { - var _Rgba32fArb = OpenTK.Graphics.OpenGL.ArbTextureFloat.Rgba32fArb; - var _Rgb32fArb = OpenTK.Graphics.OpenGL.ArbTextureFloat.Rgb32fArb; - var _Alpha32fArb = OpenTK.Graphics.OpenGL.ArbTextureFloat.Alpha32fArb; - var _Intensity32fArb = OpenTK.Graphics.OpenGL.ArbTextureFloat.Intensity32fArb; - var _Luminance32fArb = OpenTK.Graphics.OpenGL.ArbTextureFloat.Luminance32fArb; - var _LuminanceAlpha32fArb = OpenTK.Graphics.OpenGL.ArbTextureFloat.LuminanceAlpha32fArb; - var _Rgba16fArb = OpenTK.Graphics.OpenGL.ArbTextureFloat.Rgba16fArb; - var _Rgb16fArb = OpenTK.Graphics.OpenGL.ArbTextureFloat.Rgb16fArb; - var _Alpha16fArb = OpenTK.Graphics.OpenGL.ArbTextureFloat.Alpha16fArb; - var _Intensity16fArb = OpenTK.Graphics.OpenGL.ArbTextureFloat.Intensity16fArb; - var _Luminance16fArb = OpenTK.Graphics.OpenGL.ArbTextureFloat.Luminance16fArb; - var _LuminanceAlpha16fArb = OpenTK.Graphics.OpenGL.ArbTextureFloat.LuminanceAlpha16fArb; - var _TextureRedTypeArb = OpenTK.Graphics.OpenGL.ArbTextureFloat.TextureRedTypeArb; - var _TextureGreenTypeArb = OpenTK.Graphics.OpenGL.ArbTextureFloat.TextureGreenTypeArb; - var _TextureBlueTypeArb = OpenTK.Graphics.OpenGL.ArbTextureFloat.TextureBlueTypeArb; - var _TextureAlphaTypeArb = OpenTK.Graphics.OpenGL.ArbTextureFloat.TextureAlphaTypeArb; - var _TextureLuminanceTypeArb = OpenTK.Graphics.OpenGL.ArbTextureFloat.TextureLuminanceTypeArb; - var _TextureIntensityTypeArb = OpenTK.Graphics.OpenGL.ArbTextureFloat.TextureIntensityTypeArb; - var _TextureDepthTypeArb = OpenTK.Graphics.OpenGL.ArbTextureFloat.TextureDepthTypeArb; - var _UnsignedNormalizedArb = OpenTK.Graphics.OpenGL.ArbTextureFloat.UnsignedNormalizedArb; -} -static void Test_ArbTextureGather_19477() { - var _MinProgramTextureGatherOffsetArb = OpenTK.Graphics.OpenGL.ArbTextureGather.MinProgramTextureGatherOffsetArb; - var _MaxProgramTextureGatherOffsetArb = OpenTK.Graphics.OpenGL.ArbTextureGather.MaxProgramTextureGatherOffsetArb; - var _MaxProgramTextureGatherComponentsArb = OpenTK.Graphics.OpenGL.ArbTextureGather.MaxProgramTextureGatherComponentsArb; -} -static void Test_ArbTextureMirrorClampToEdge_19478() { - var _MirrorClampToEdge = OpenTK.Graphics.OpenGL.ArbTextureMirrorClampToEdge.MirrorClampToEdge; -} -static void Test_ArbTextureMirroredRepeat_19479() { - var _MirroredRepeatArb = OpenTK.Graphics.OpenGL.ArbTextureMirroredRepeat.MirroredRepeatArb; -} -static void Test_ArbTextureMultisample_19480() { - var _SamplePosition = OpenTK.Graphics.OpenGL.ArbTextureMultisample.SamplePosition; - var _SampleMask = OpenTK.Graphics.OpenGL.ArbTextureMultisample.SampleMask; - var _SampleMaskValue = OpenTK.Graphics.OpenGL.ArbTextureMultisample.SampleMaskValue; - var _MaxSampleMaskWords = OpenTK.Graphics.OpenGL.ArbTextureMultisample.MaxSampleMaskWords; - var _Texture2DMultisample = OpenTK.Graphics.OpenGL.ArbTextureMultisample.Texture2DMultisample; - var _ProxyTexture2DMultisample = OpenTK.Graphics.OpenGL.ArbTextureMultisample.ProxyTexture2DMultisample; - var _Texture2DMultisampleArray = OpenTK.Graphics.OpenGL.ArbTextureMultisample.Texture2DMultisampleArray; - var _ProxyTexture2DMultisampleArray = OpenTK.Graphics.OpenGL.ArbTextureMultisample.ProxyTexture2DMultisampleArray; - var _TextureBinding2DMultisample = OpenTK.Graphics.OpenGL.ArbTextureMultisample.TextureBinding2DMultisample; - var _TextureBinding2DMultisampleArray = OpenTK.Graphics.OpenGL.ArbTextureMultisample.TextureBinding2DMultisampleArray; - var _TextureSamples = OpenTK.Graphics.OpenGL.ArbTextureMultisample.TextureSamples; - var _TextureFixedSampleLocations = OpenTK.Graphics.OpenGL.ArbTextureMultisample.TextureFixedSampleLocations; - var _Sampler2DMultisample = OpenTK.Graphics.OpenGL.ArbTextureMultisample.Sampler2DMultisample; - var _IntSampler2DMultisample = OpenTK.Graphics.OpenGL.ArbTextureMultisample.IntSampler2DMultisample; - var _UnsignedIntSampler2DMultisample = OpenTK.Graphics.OpenGL.ArbTextureMultisample.UnsignedIntSampler2DMultisample; - var _Sampler2DMultisampleArray = OpenTK.Graphics.OpenGL.ArbTextureMultisample.Sampler2DMultisampleArray; - var _IntSampler2DMultisampleArray = OpenTK.Graphics.OpenGL.ArbTextureMultisample.IntSampler2DMultisampleArray; - var _UnsignedIntSampler2DMultisampleArray = OpenTK.Graphics.OpenGL.ArbTextureMultisample.UnsignedIntSampler2DMultisampleArray; - var _MaxColorTextureSamples = OpenTK.Graphics.OpenGL.ArbTextureMultisample.MaxColorTextureSamples; - var _MaxDepthTextureSamples = OpenTK.Graphics.OpenGL.ArbTextureMultisample.MaxDepthTextureSamples; - var _MaxIntegerSamples = OpenTK.Graphics.OpenGL.ArbTextureMultisample.MaxIntegerSamples; -} -static void Test_ArbTextureNonPowerOfTwo_19481() { -} -static void Test_ArbTextureQueryLevels_19482() { -} -static void Test_ArbTextureQueryLod_19483() { -} -static void Test_ArbTextureRectangle_19484() { - var _TextureRectangleArb = OpenTK.Graphics.OpenGL.ArbTextureRectangle.TextureRectangleArb; - var _TextureBindingRectangleArb = OpenTK.Graphics.OpenGL.ArbTextureRectangle.TextureBindingRectangleArb; - var _ProxyTextureRectangleArb = OpenTK.Graphics.OpenGL.ArbTextureRectangle.ProxyTextureRectangleArb; - var _MaxRectangleTextureSizeArb = OpenTK.Graphics.OpenGL.ArbTextureRectangle.MaxRectangleTextureSizeArb; -} -static void Test_ArbTextureRg_19485() { - var _Rg = OpenTK.Graphics.OpenGL.ArbTextureRg.Rg; - var _RgInteger = OpenTK.Graphics.OpenGL.ArbTextureRg.RgInteger; - var _R8 = OpenTK.Graphics.OpenGL.ArbTextureRg.R8; - var _R16 = OpenTK.Graphics.OpenGL.ArbTextureRg.R16; - var _Rg8 = OpenTK.Graphics.OpenGL.ArbTextureRg.Rg8; - var _Rg16 = OpenTK.Graphics.OpenGL.ArbTextureRg.Rg16; - var _R16f = OpenTK.Graphics.OpenGL.ArbTextureRg.R16f; - var _R32f = OpenTK.Graphics.OpenGL.ArbTextureRg.R32f; - var _Rg16f = OpenTK.Graphics.OpenGL.ArbTextureRg.Rg16f; - var _Rg32f = OpenTK.Graphics.OpenGL.ArbTextureRg.Rg32f; - var _R8i = OpenTK.Graphics.OpenGL.ArbTextureRg.R8i; - var _R8ui = OpenTK.Graphics.OpenGL.ArbTextureRg.R8ui; - var _R16i = OpenTK.Graphics.OpenGL.ArbTextureRg.R16i; - var _R16ui = OpenTK.Graphics.OpenGL.ArbTextureRg.R16ui; - var _R32i = OpenTK.Graphics.OpenGL.ArbTextureRg.R32i; - var _R32ui = OpenTK.Graphics.OpenGL.ArbTextureRg.R32ui; - var _Rg8i = OpenTK.Graphics.OpenGL.ArbTextureRg.Rg8i; - var _Rg8ui = OpenTK.Graphics.OpenGL.ArbTextureRg.Rg8ui; - var _Rg16i = OpenTK.Graphics.OpenGL.ArbTextureRg.Rg16i; - var _Rg16ui = OpenTK.Graphics.OpenGL.ArbTextureRg.Rg16ui; - var _Rg32i = OpenTK.Graphics.OpenGL.ArbTextureRg.Rg32i; - var _Rg32ui = OpenTK.Graphics.OpenGL.ArbTextureRg.Rg32ui; -} -static void Test_ArbTextureRgb10A2ui_19486() { - var _Rgb10A2ui = OpenTK.Graphics.OpenGL.ArbTextureRgb10A2ui.Rgb10A2ui; -} -static void Test_ArbTextureStencil8_19487() { - var _StencilIndex = OpenTK.Graphics.OpenGL.ArbTextureStencil8.StencilIndex; - var _StencilIndex8 = OpenTK.Graphics.OpenGL.ArbTextureStencil8.StencilIndex8; -} -static void Test_ArbTextureStorage_19488() { - var _TextureImmutableFormat = OpenTK.Graphics.OpenGL.ArbTextureStorage.TextureImmutableFormat; -} -static void Test_ArbTextureStorageMultisample_19489() { -} -static void Test_ArbTextureSwizzle_19490() { - var _TextureSwizzleR = OpenTK.Graphics.OpenGL.ArbTextureSwizzle.TextureSwizzleR; - var _TextureSwizzleG = OpenTK.Graphics.OpenGL.ArbTextureSwizzle.TextureSwizzleG; - var _TextureSwizzleB = OpenTK.Graphics.OpenGL.ArbTextureSwizzle.TextureSwizzleB; - var _TextureSwizzleA = OpenTK.Graphics.OpenGL.ArbTextureSwizzle.TextureSwizzleA; - var _TextureSwizzleRgba = OpenTK.Graphics.OpenGL.ArbTextureSwizzle.TextureSwizzleRgba; -} -static void Test_ArbTextureView_19491() { - var _TextureViewMinLevel = OpenTK.Graphics.OpenGL.ArbTextureView.TextureViewMinLevel; - var _TextureViewNumLevels = OpenTK.Graphics.OpenGL.ArbTextureView.TextureViewNumLevels; - var _TextureViewMinLayer = OpenTK.Graphics.OpenGL.ArbTextureView.TextureViewMinLayer; - var _TextureViewNumLayers = OpenTK.Graphics.OpenGL.ArbTextureView.TextureViewNumLayers; - var _TextureImmutableLevels = OpenTK.Graphics.OpenGL.ArbTextureView.TextureImmutableLevels; -} -static void Test_ArbTimerQuery_19492() { - var _TimeElapsed = OpenTK.Graphics.OpenGL.ArbTimerQuery.TimeElapsed; - var _Timestamp = OpenTK.Graphics.OpenGL.ArbTimerQuery.Timestamp; -} -static void Test_ArbTransformFeedback2_19493() { - var _TransformFeedback = OpenTK.Graphics.OpenGL.ArbTransformFeedback2.TransformFeedback; - var _TransformFeedbackBufferPaused = OpenTK.Graphics.OpenGL.ArbTransformFeedback2.TransformFeedbackBufferPaused; - var _TransformFeedbackPaused = OpenTK.Graphics.OpenGL.ArbTransformFeedback2.TransformFeedbackPaused; - var _TransformFeedbackActive = OpenTK.Graphics.OpenGL.ArbTransformFeedback2.TransformFeedbackActive; - var _TransformFeedbackBufferActive = OpenTK.Graphics.OpenGL.ArbTransformFeedback2.TransformFeedbackBufferActive; - var _TransformFeedbackBinding = OpenTK.Graphics.OpenGL.ArbTransformFeedback2.TransformFeedbackBinding; -} -static void Test_ArbTransformFeedback3_19494() { - var _MaxTransformFeedbackBuffers = OpenTK.Graphics.OpenGL.ArbTransformFeedback3.MaxTransformFeedbackBuffers; - var _MaxVertexStreams = OpenTK.Graphics.OpenGL.ArbTransformFeedback3.MaxVertexStreams; -} -static void Test_ArbTransformFeedbackInstanced_19495() { -} -static void Test_ArbTransposeMatrix_19496() { - var _TransposeModelviewMatrixArb = OpenTK.Graphics.OpenGL.ArbTransposeMatrix.TransposeModelviewMatrixArb; - var _TransposeProjectionMatrixArb = OpenTK.Graphics.OpenGL.ArbTransposeMatrix.TransposeProjectionMatrixArb; - var _TransposeTextureMatrixArb = OpenTK.Graphics.OpenGL.ArbTransposeMatrix.TransposeTextureMatrixArb; - var _TransposeColorMatrixArb = OpenTK.Graphics.OpenGL.ArbTransposeMatrix.TransposeColorMatrixArb; -} -static void Test_ArbUniformBufferObject_19497() { - var _UniformBuffer = OpenTK.Graphics.OpenGL.ArbUniformBufferObject.UniformBuffer; - var _UniformBufferBinding = OpenTK.Graphics.OpenGL.ArbUniformBufferObject.UniformBufferBinding; - var _UniformBufferStart = OpenTK.Graphics.OpenGL.ArbUniformBufferObject.UniformBufferStart; - var _UniformBufferSize = OpenTK.Graphics.OpenGL.ArbUniformBufferObject.UniformBufferSize; - var _MaxVertexUniformBlocks = OpenTK.Graphics.OpenGL.ArbUniformBufferObject.MaxVertexUniformBlocks; - var _MaxGeometryUniformBlocks = OpenTK.Graphics.OpenGL.ArbUniformBufferObject.MaxGeometryUniformBlocks; - var _MaxFragmentUniformBlocks = OpenTK.Graphics.OpenGL.ArbUniformBufferObject.MaxFragmentUniformBlocks; - var _MaxCombinedUniformBlocks = OpenTK.Graphics.OpenGL.ArbUniformBufferObject.MaxCombinedUniformBlocks; - var _MaxUniformBufferBindings = OpenTK.Graphics.OpenGL.ArbUniformBufferObject.MaxUniformBufferBindings; - var _MaxUniformBlockSize = OpenTK.Graphics.OpenGL.ArbUniformBufferObject.MaxUniformBlockSize; - var _MaxCombinedVertexUniformComponents = OpenTK.Graphics.OpenGL.ArbUniformBufferObject.MaxCombinedVertexUniformComponents; - var _MaxCombinedGeometryUniformComponents = OpenTK.Graphics.OpenGL.ArbUniformBufferObject.MaxCombinedGeometryUniformComponents; - var _MaxCombinedFragmentUniformComponents = OpenTK.Graphics.OpenGL.ArbUniformBufferObject.MaxCombinedFragmentUniformComponents; - var _UniformBufferOffsetAlignment = OpenTK.Graphics.OpenGL.ArbUniformBufferObject.UniformBufferOffsetAlignment; - var _ActiveUniformBlockMaxNameLength = OpenTK.Graphics.OpenGL.ArbUniformBufferObject.ActiveUniformBlockMaxNameLength; - var _ActiveUniformBlocks = OpenTK.Graphics.OpenGL.ArbUniformBufferObject.ActiveUniformBlocks; - var _UniformType = OpenTK.Graphics.OpenGL.ArbUniformBufferObject.UniformType; - var _UniformSize = OpenTK.Graphics.OpenGL.ArbUniformBufferObject.UniformSize; - var _UniformNameLength = OpenTK.Graphics.OpenGL.ArbUniformBufferObject.UniformNameLength; - var _UniformBlockIndex = OpenTK.Graphics.OpenGL.ArbUniformBufferObject.UniformBlockIndex; - var _UniformOffset = OpenTK.Graphics.OpenGL.ArbUniformBufferObject.UniformOffset; - var _UniformArrayStride = OpenTK.Graphics.OpenGL.ArbUniformBufferObject.UniformArrayStride; - var _UniformMatrixStride = OpenTK.Graphics.OpenGL.ArbUniformBufferObject.UniformMatrixStride; - var _UniformIsRowMajor = OpenTK.Graphics.OpenGL.ArbUniformBufferObject.UniformIsRowMajor; - var _UniformBlockBinding = OpenTK.Graphics.OpenGL.ArbUniformBufferObject.UniformBlockBinding; - var _UniformBlockDataSize = OpenTK.Graphics.OpenGL.ArbUniformBufferObject.UniformBlockDataSize; - var _UniformBlockNameLength = OpenTK.Graphics.OpenGL.ArbUniformBufferObject.UniformBlockNameLength; - var _UniformBlockActiveUniforms = OpenTK.Graphics.OpenGL.ArbUniformBufferObject.UniformBlockActiveUniforms; - var _UniformBlockActiveUniformIndices = OpenTK.Graphics.OpenGL.ArbUniformBufferObject.UniformBlockActiveUniformIndices; - var _UniformBlockReferencedByVertexShader = OpenTK.Graphics.OpenGL.ArbUniformBufferObject.UniformBlockReferencedByVertexShader; - var _UniformBlockReferencedByGeometryShader = OpenTK.Graphics.OpenGL.ArbUniformBufferObject.UniformBlockReferencedByGeometryShader; - var _UniformBlockReferencedByFragmentShader = OpenTK.Graphics.OpenGL.ArbUniformBufferObject.UniformBlockReferencedByFragmentShader; - var _InvalidIndex = OpenTK.Graphics.OpenGL.ArbUniformBufferObject.InvalidIndex; -} -static void Test_ArbVertexArrayBgra_19498() { - var _Bgra = OpenTK.Graphics.OpenGL.ArbVertexArrayBgra.Bgra; -} -static void Test_ArbVertexArrayObject_19499() { - var _VertexArrayBinding = OpenTK.Graphics.OpenGL.ArbVertexArrayObject.VertexArrayBinding; -} -static void Test_ArbVertexAttrib64bit_19500() { - var _Rgb32i = OpenTK.Graphics.OpenGL.ArbVertexAttrib64bit.Rgb32i; - var _DoubleMat2 = OpenTK.Graphics.OpenGL.ArbVertexAttrib64bit.DoubleMat2; - var _DoubleMat3 = OpenTK.Graphics.OpenGL.ArbVertexAttrib64bit.DoubleMat3; - var _DoubleMat4 = OpenTK.Graphics.OpenGL.ArbVertexAttrib64bit.DoubleMat4; - var _DoubleMat2x3 = OpenTK.Graphics.OpenGL.ArbVertexAttrib64bit.DoubleMat2x3; - var _DoubleMat2x4 = OpenTK.Graphics.OpenGL.ArbVertexAttrib64bit.DoubleMat2x4; - var _DoubleMat3x2 = OpenTK.Graphics.OpenGL.ArbVertexAttrib64bit.DoubleMat3x2; - var _DoubleMat3x4 = OpenTK.Graphics.OpenGL.ArbVertexAttrib64bit.DoubleMat3x4; - var _DoubleMat4x2 = OpenTK.Graphics.OpenGL.ArbVertexAttrib64bit.DoubleMat4x2; - var _DoubleMat4x3 = OpenTK.Graphics.OpenGL.ArbVertexAttrib64bit.DoubleMat4x3; - var _DoubleVec2 = OpenTK.Graphics.OpenGL.ArbVertexAttrib64bit.DoubleVec2; - var _DoubleVec3 = OpenTK.Graphics.OpenGL.ArbVertexAttrib64bit.DoubleVec3; - var _DoubleVec4 = OpenTK.Graphics.OpenGL.ArbVertexAttrib64bit.DoubleVec4; -} -static void Test_ArbVertexAttribBinding_19501() { - var _VertexAttribBinding = OpenTK.Graphics.OpenGL.ArbVertexAttribBinding.VertexAttribBinding; - var _VertexAttribRelativeOffset = OpenTK.Graphics.OpenGL.ArbVertexAttribBinding.VertexAttribRelativeOffset; - var _VertexBindingDivisor = OpenTK.Graphics.OpenGL.ArbVertexAttribBinding.VertexBindingDivisor; - var _VertexBindingOffset = OpenTK.Graphics.OpenGL.ArbVertexAttribBinding.VertexBindingOffset; - var _VertexBindingStride = OpenTK.Graphics.OpenGL.ArbVertexAttribBinding.VertexBindingStride; - var _MaxVertexAttribRelativeOffset = OpenTK.Graphics.OpenGL.ArbVertexAttribBinding.MaxVertexAttribRelativeOffset; - var _MaxVertexAttribBindings = OpenTK.Graphics.OpenGL.ArbVertexAttribBinding.MaxVertexAttribBindings; -} -static void Test_ArbVertexBlend_19502() { - var _Modelview0Arb = OpenTK.Graphics.OpenGL.ArbVertexBlend.Modelview0Arb; - var _Modelview1Arb = OpenTK.Graphics.OpenGL.ArbVertexBlend.Modelview1Arb; - var _MaxVertexUnitsArb = OpenTK.Graphics.OpenGL.ArbVertexBlend.MaxVertexUnitsArb; - var _ActiveVertexUnitsArb = OpenTK.Graphics.OpenGL.ArbVertexBlend.ActiveVertexUnitsArb; - var _WeightSumUnityArb = OpenTK.Graphics.OpenGL.ArbVertexBlend.WeightSumUnityArb; - var _VertexBlendArb = OpenTK.Graphics.OpenGL.ArbVertexBlend.VertexBlendArb; - var _CurrentWeightArb = OpenTK.Graphics.OpenGL.ArbVertexBlend.CurrentWeightArb; - var _WeightArrayTypeArb = OpenTK.Graphics.OpenGL.ArbVertexBlend.WeightArrayTypeArb; - var _WeightArrayStrideArb = OpenTK.Graphics.OpenGL.ArbVertexBlend.WeightArrayStrideArb; - var _WeightArraySizeArb = OpenTK.Graphics.OpenGL.ArbVertexBlend.WeightArraySizeArb; - var _WeightArrayPointerArb = OpenTK.Graphics.OpenGL.ArbVertexBlend.WeightArrayPointerArb; - var _WeightArrayArb = OpenTK.Graphics.OpenGL.ArbVertexBlend.WeightArrayArb; - var _Modelview2Arb = OpenTK.Graphics.OpenGL.ArbVertexBlend.Modelview2Arb; - var _Modelview3Arb = OpenTK.Graphics.OpenGL.ArbVertexBlend.Modelview3Arb; - var _Modelview4Arb = OpenTK.Graphics.OpenGL.ArbVertexBlend.Modelview4Arb; - var _Modelview5Arb = OpenTK.Graphics.OpenGL.ArbVertexBlend.Modelview5Arb; - var _Modelview6Arb = OpenTK.Graphics.OpenGL.ArbVertexBlend.Modelview6Arb; - var _Modelview7Arb = OpenTK.Graphics.OpenGL.ArbVertexBlend.Modelview7Arb; - var _Modelview8Arb = OpenTK.Graphics.OpenGL.ArbVertexBlend.Modelview8Arb; - var _Modelview9Arb = OpenTK.Graphics.OpenGL.ArbVertexBlend.Modelview9Arb; - var _Modelview10Arb = OpenTK.Graphics.OpenGL.ArbVertexBlend.Modelview10Arb; - var _Modelview11Arb = OpenTK.Graphics.OpenGL.ArbVertexBlend.Modelview11Arb; - var _Modelview12Arb = OpenTK.Graphics.OpenGL.ArbVertexBlend.Modelview12Arb; - var _Modelview13Arb = OpenTK.Graphics.OpenGL.ArbVertexBlend.Modelview13Arb; - var _Modelview14Arb = OpenTK.Graphics.OpenGL.ArbVertexBlend.Modelview14Arb; - var _Modelview15Arb = OpenTK.Graphics.OpenGL.ArbVertexBlend.Modelview15Arb; - var _Modelview16Arb = OpenTK.Graphics.OpenGL.ArbVertexBlend.Modelview16Arb; - var _Modelview17Arb = OpenTK.Graphics.OpenGL.ArbVertexBlend.Modelview17Arb; - var _Modelview18Arb = OpenTK.Graphics.OpenGL.ArbVertexBlend.Modelview18Arb; - var _Modelview19Arb = OpenTK.Graphics.OpenGL.ArbVertexBlend.Modelview19Arb; - var _Modelview20Arb = OpenTK.Graphics.OpenGL.ArbVertexBlend.Modelview20Arb; - var _Modelview21Arb = OpenTK.Graphics.OpenGL.ArbVertexBlend.Modelview21Arb; - var _Modelview22Arb = OpenTK.Graphics.OpenGL.ArbVertexBlend.Modelview22Arb; - var _Modelview23Arb = OpenTK.Graphics.OpenGL.ArbVertexBlend.Modelview23Arb; - var _Modelview24Arb = OpenTK.Graphics.OpenGL.ArbVertexBlend.Modelview24Arb; - var _Modelview25Arb = OpenTK.Graphics.OpenGL.ArbVertexBlend.Modelview25Arb; - var _Modelview26Arb = OpenTK.Graphics.OpenGL.ArbVertexBlend.Modelview26Arb; - var _Modelview27Arb = OpenTK.Graphics.OpenGL.ArbVertexBlend.Modelview27Arb; - var _Modelview28Arb = OpenTK.Graphics.OpenGL.ArbVertexBlend.Modelview28Arb; - var _Modelview29Arb = OpenTK.Graphics.OpenGL.ArbVertexBlend.Modelview29Arb; - var _Modelview30Arb = OpenTK.Graphics.OpenGL.ArbVertexBlend.Modelview30Arb; - var _Modelview31Arb = OpenTK.Graphics.OpenGL.ArbVertexBlend.Modelview31Arb; -} -static void Test_ArbVertexBufferObject_19503() { - var _BufferSizeArb = OpenTK.Graphics.OpenGL.ArbVertexBufferObject.BufferSizeArb; - var _BufferUsageArb = OpenTK.Graphics.OpenGL.ArbVertexBufferObject.BufferUsageArb; - var _ArrayBufferArb = OpenTK.Graphics.OpenGL.ArbVertexBufferObject.ArrayBufferArb; - var _ElementArrayBufferArb = OpenTK.Graphics.OpenGL.ArbVertexBufferObject.ElementArrayBufferArb; - var _ArrayBufferBindingArb = OpenTK.Graphics.OpenGL.ArbVertexBufferObject.ArrayBufferBindingArb; - var _ElementArrayBufferBindingArb = OpenTK.Graphics.OpenGL.ArbVertexBufferObject.ElementArrayBufferBindingArb; - var _VertexArrayBufferBindingArb = OpenTK.Graphics.OpenGL.ArbVertexBufferObject.VertexArrayBufferBindingArb; - var _NormalArrayBufferBindingArb = OpenTK.Graphics.OpenGL.ArbVertexBufferObject.NormalArrayBufferBindingArb; - var _ColorArrayBufferBindingArb = OpenTK.Graphics.OpenGL.ArbVertexBufferObject.ColorArrayBufferBindingArb; - var _IndexArrayBufferBindingArb = OpenTK.Graphics.OpenGL.ArbVertexBufferObject.IndexArrayBufferBindingArb; - var _TextureCoordArrayBufferBindingArb = OpenTK.Graphics.OpenGL.ArbVertexBufferObject.TextureCoordArrayBufferBindingArb; - var _EdgeFlagArrayBufferBindingArb = OpenTK.Graphics.OpenGL.ArbVertexBufferObject.EdgeFlagArrayBufferBindingArb; - var _SecondaryColorArrayBufferBindingArb = OpenTK.Graphics.OpenGL.ArbVertexBufferObject.SecondaryColorArrayBufferBindingArb; - var _FogCoordinateArrayBufferBindingArb = OpenTK.Graphics.OpenGL.ArbVertexBufferObject.FogCoordinateArrayBufferBindingArb; - var _WeightArrayBufferBindingArb = OpenTK.Graphics.OpenGL.ArbVertexBufferObject.WeightArrayBufferBindingArb; - var _VertexAttribArrayBufferBindingArb = OpenTK.Graphics.OpenGL.ArbVertexBufferObject.VertexAttribArrayBufferBindingArb; - var _ReadOnlyArb = OpenTK.Graphics.OpenGL.ArbVertexBufferObject.ReadOnlyArb; - var _WriteOnlyArb = OpenTK.Graphics.OpenGL.ArbVertexBufferObject.WriteOnlyArb; - var _ReadWriteArb = OpenTK.Graphics.OpenGL.ArbVertexBufferObject.ReadWriteArb; - var _BufferAccessArb = OpenTK.Graphics.OpenGL.ArbVertexBufferObject.BufferAccessArb; - var _BufferMappedArb = OpenTK.Graphics.OpenGL.ArbVertexBufferObject.BufferMappedArb; - var _BufferMapPointerArb = OpenTK.Graphics.OpenGL.ArbVertexBufferObject.BufferMapPointerArb; - var _StreamDrawArb = OpenTK.Graphics.OpenGL.ArbVertexBufferObject.StreamDrawArb; - var _StreamReadArb = OpenTK.Graphics.OpenGL.ArbVertexBufferObject.StreamReadArb; - var _StreamCopyArb = OpenTK.Graphics.OpenGL.ArbVertexBufferObject.StreamCopyArb; - var _StaticDrawArb = OpenTK.Graphics.OpenGL.ArbVertexBufferObject.StaticDrawArb; - var _StaticReadArb = OpenTK.Graphics.OpenGL.ArbVertexBufferObject.StaticReadArb; - var _StaticCopyArb = OpenTK.Graphics.OpenGL.ArbVertexBufferObject.StaticCopyArb; - var _DynamicDrawArb = OpenTK.Graphics.OpenGL.ArbVertexBufferObject.DynamicDrawArb; - var _DynamicReadArb = OpenTK.Graphics.OpenGL.ArbVertexBufferObject.DynamicReadArb; - var _DynamicCopyArb = OpenTK.Graphics.OpenGL.ArbVertexBufferObject.DynamicCopyArb; -} -static void Test_ArbVertexProgram_19504() { - var _ColorSumArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.ColorSumArb; - var _VertexProgramArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.VertexProgramArb; - var _VertexAttribArrayEnabledArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.VertexAttribArrayEnabledArb; - var _VertexAttribArraySizeArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.VertexAttribArraySizeArb; - var _VertexAttribArrayStrideArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.VertexAttribArrayStrideArb; - var _VertexAttribArrayTypeArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.VertexAttribArrayTypeArb; - var _CurrentVertexAttribArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.CurrentVertexAttribArb; - var _ProgramLengthArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.ProgramLengthArb; - var _ProgramStringArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.ProgramStringArb; - var _MaxProgramMatrixStackDepthArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.MaxProgramMatrixStackDepthArb; - var _MaxProgramMatricesArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.MaxProgramMatricesArb; - var _CurrentMatrixStackDepthArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.CurrentMatrixStackDepthArb; - var _CurrentMatrixArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.CurrentMatrixArb; - var _VertexProgramPointSizeArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.VertexProgramPointSizeArb; - var _VertexProgramTwoSideArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.VertexProgramTwoSideArb; - var _VertexAttribArrayPointerArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.VertexAttribArrayPointerArb; - var _ProgramErrorPositionArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.ProgramErrorPositionArb; - var _ProgramBindingArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.ProgramBindingArb; - var _MaxVertexAttribsArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.MaxVertexAttribsArb; - var _VertexAttribArrayNormalizedArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.VertexAttribArrayNormalizedArb; - var _ProgramErrorStringArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.ProgramErrorStringArb; - var _ProgramFormatAsciiArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.ProgramFormatAsciiArb; - var _ProgramFormatArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.ProgramFormatArb; - var _ProgramInstructionsArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.ProgramInstructionsArb; - var _MaxProgramInstructionsArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.MaxProgramInstructionsArb; - var _ProgramNativeInstructionsArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.ProgramNativeInstructionsArb; - var _MaxProgramNativeInstructionsArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.MaxProgramNativeInstructionsArb; - var _ProgramTemporariesArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.ProgramTemporariesArb; - var _MaxProgramTemporariesArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.MaxProgramTemporariesArb; - var _ProgramNativeTemporariesArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.ProgramNativeTemporariesArb; - var _MaxProgramNativeTemporariesArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.MaxProgramNativeTemporariesArb; - var _ProgramParametersArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.ProgramParametersArb; - var _MaxProgramParametersArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.MaxProgramParametersArb; - var _ProgramNativeParametersArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.ProgramNativeParametersArb; - var _MaxProgramNativeParametersArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.MaxProgramNativeParametersArb; - var _ProgramAttribsArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.ProgramAttribsArb; - var _MaxProgramAttribsArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.MaxProgramAttribsArb; - var _ProgramNativeAttribsArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.ProgramNativeAttribsArb; - var _MaxProgramNativeAttribsArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.MaxProgramNativeAttribsArb; - var _ProgramAddressRegistersArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.ProgramAddressRegistersArb; - var _MaxProgramAddressRegistersArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.MaxProgramAddressRegistersArb; - var _ProgramNativeAddressRegistersArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.ProgramNativeAddressRegistersArb; - var _MaxProgramNativeAddressRegistersArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.MaxProgramNativeAddressRegistersArb; - var _MaxProgramLocalParametersArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.MaxProgramLocalParametersArb; - var _MaxProgramEnvParametersArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.MaxProgramEnvParametersArb; - var _ProgramUnderNativeLimitsArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.ProgramUnderNativeLimitsArb; - var _TransposeCurrentMatrixArb = OpenTK.Graphics.OpenGL.ArbVertexProgram.TransposeCurrentMatrixArb; - var _Matrix0Arb = OpenTK.Graphics.OpenGL.ArbVertexProgram.Matrix0Arb; - var _Matrix1Arb = OpenTK.Graphics.OpenGL.ArbVertexProgram.Matrix1Arb; - var _Matrix2Arb = OpenTK.Graphics.OpenGL.ArbVertexProgram.Matrix2Arb; - var _Matrix3Arb = OpenTK.Graphics.OpenGL.ArbVertexProgram.Matrix3Arb; - var _Matrix4Arb = OpenTK.Graphics.OpenGL.ArbVertexProgram.Matrix4Arb; - var _Matrix5Arb = OpenTK.Graphics.OpenGL.ArbVertexProgram.Matrix5Arb; - var _Matrix6Arb = OpenTK.Graphics.OpenGL.ArbVertexProgram.Matrix6Arb; - var _Matrix7Arb = OpenTK.Graphics.OpenGL.ArbVertexProgram.Matrix7Arb; - var _Matrix8Arb = OpenTK.Graphics.OpenGL.ArbVertexProgram.Matrix8Arb; - var _Matrix9Arb = OpenTK.Graphics.OpenGL.ArbVertexProgram.Matrix9Arb; - var _Matrix10Arb = OpenTK.Graphics.OpenGL.ArbVertexProgram.Matrix10Arb; - var _Matrix11Arb = OpenTK.Graphics.OpenGL.ArbVertexProgram.Matrix11Arb; - var _Matrix12Arb = OpenTK.Graphics.OpenGL.ArbVertexProgram.Matrix12Arb; - var _Matrix13Arb = OpenTK.Graphics.OpenGL.ArbVertexProgram.Matrix13Arb; - var _Matrix14Arb = OpenTK.Graphics.OpenGL.ArbVertexProgram.Matrix14Arb; - var _Matrix15Arb = OpenTK.Graphics.OpenGL.ArbVertexProgram.Matrix15Arb; - var _Matrix16Arb = OpenTK.Graphics.OpenGL.ArbVertexProgram.Matrix16Arb; - var _Matrix17Arb = OpenTK.Graphics.OpenGL.ArbVertexProgram.Matrix17Arb; - var _Matrix18Arb = OpenTK.Graphics.OpenGL.ArbVertexProgram.Matrix18Arb; - var _Matrix19Arb = OpenTK.Graphics.OpenGL.ArbVertexProgram.Matrix19Arb; - var _Matrix20Arb = OpenTK.Graphics.OpenGL.ArbVertexProgram.Matrix20Arb; - var _Matrix21Arb = OpenTK.Graphics.OpenGL.ArbVertexProgram.Matrix21Arb; - var _Matrix22Arb = OpenTK.Graphics.OpenGL.ArbVertexProgram.Matrix22Arb; - var _Matrix23Arb = OpenTK.Graphics.OpenGL.ArbVertexProgram.Matrix23Arb; - var _Matrix24Arb = OpenTK.Graphics.OpenGL.ArbVertexProgram.Matrix24Arb; - var _Matrix25Arb = OpenTK.Graphics.OpenGL.ArbVertexProgram.Matrix25Arb; - var _Matrix26Arb = OpenTK.Graphics.OpenGL.ArbVertexProgram.Matrix26Arb; - var _Matrix27Arb = OpenTK.Graphics.OpenGL.ArbVertexProgram.Matrix27Arb; - var _Matrix28Arb = OpenTK.Graphics.OpenGL.ArbVertexProgram.Matrix28Arb; - var _Matrix29Arb = OpenTK.Graphics.OpenGL.ArbVertexProgram.Matrix29Arb; - var _Matrix30Arb = OpenTK.Graphics.OpenGL.ArbVertexProgram.Matrix30Arb; - var _Matrix31Arb = OpenTK.Graphics.OpenGL.ArbVertexProgram.Matrix31Arb; -} -static void Test_ArbVertexShader_19505() { - var _Float = OpenTK.Graphics.OpenGL.ArbVertexShader.Float; - var _VertexAttribArrayEnabledArb = OpenTK.Graphics.OpenGL.ArbVertexShader.VertexAttribArrayEnabledArb; - var _VertexAttribArraySizeArb = OpenTK.Graphics.OpenGL.ArbVertexShader.VertexAttribArraySizeArb; - var _VertexAttribArrayStrideArb = OpenTK.Graphics.OpenGL.ArbVertexShader.VertexAttribArrayStrideArb; - var _VertexAttribArrayTypeArb = OpenTK.Graphics.OpenGL.ArbVertexShader.VertexAttribArrayTypeArb; - var _CurrentVertexAttribArb = OpenTK.Graphics.OpenGL.ArbVertexShader.CurrentVertexAttribArb; - var _VertexProgramPointSizeArb = OpenTK.Graphics.OpenGL.ArbVertexShader.VertexProgramPointSizeArb; - var _VertexProgramTwoSideArb = OpenTK.Graphics.OpenGL.ArbVertexShader.VertexProgramTwoSideArb; - var _VertexAttribArrayPointerArb = OpenTK.Graphics.OpenGL.ArbVertexShader.VertexAttribArrayPointerArb; - var _MaxVertexAttribsArb = OpenTK.Graphics.OpenGL.ArbVertexShader.MaxVertexAttribsArb; - var _VertexAttribArrayNormalizedArb = OpenTK.Graphics.OpenGL.ArbVertexShader.VertexAttribArrayNormalizedArb; - var _MaxTextureCoordsArb = OpenTK.Graphics.OpenGL.ArbVertexShader.MaxTextureCoordsArb; - var _MaxTextureImageUnitsArb = OpenTK.Graphics.OpenGL.ArbVertexShader.MaxTextureImageUnitsArb; - var _VertexShaderArb = OpenTK.Graphics.OpenGL.ArbVertexShader.VertexShaderArb; - var _MaxVertexUniformComponentsArb = OpenTK.Graphics.OpenGL.ArbVertexShader.MaxVertexUniformComponentsArb; - var _MaxVaryingFloatsArb = OpenTK.Graphics.OpenGL.ArbVertexShader.MaxVaryingFloatsArb; - var _MaxVertexTextureImageUnitsArb = OpenTK.Graphics.OpenGL.ArbVertexShader.MaxVertexTextureImageUnitsArb; - var _MaxCombinedTextureImageUnitsArb = OpenTK.Graphics.OpenGL.ArbVertexShader.MaxCombinedTextureImageUnitsArb; - var _FloatVec2Arb = OpenTK.Graphics.OpenGL.ArbVertexShader.FloatVec2Arb; - var _FloatVec3Arb = OpenTK.Graphics.OpenGL.ArbVertexShader.FloatVec3Arb; - var _FloatVec4Arb = OpenTK.Graphics.OpenGL.ArbVertexShader.FloatVec4Arb; - var _FloatMat2Arb = OpenTK.Graphics.OpenGL.ArbVertexShader.FloatMat2Arb; - var _FloatMat3Arb = OpenTK.Graphics.OpenGL.ArbVertexShader.FloatMat3Arb; - var _FloatMat4Arb = OpenTK.Graphics.OpenGL.ArbVertexShader.FloatMat4Arb; - var _ObjectActiveAttributesArb = OpenTK.Graphics.OpenGL.ArbVertexShader.ObjectActiveAttributesArb; - var _ObjectActiveAttributeMaxLengthArb = OpenTK.Graphics.OpenGL.ArbVertexShader.ObjectActiveAttributeMaxLengthArb; -} -static void Test_ArbVertexType10f11f11fRev_19506() { - var _UnsignedInt10F11F11FRev = OpenTK.Graphics.OpenGL.ArbVertexType10f11f11fRev.UnsignedInt10F11F11FRev; -} -static void Test_ArbVertexType2101010Rev_19507() { - var _UnsignedInt2101010Rev = OpenTK.Graphics.OpenGL.ArbVertexType2101010Rev.UnsignedInt2101010Rev; - var _Int2101010Rev = OpenTK.Graphics.OpenGL.ArbVertexType2101010Rev.Int2101010Rev; -} -static void Test_ArbViewportArray_19508() { - var _DepthRange = OpenTK.Graphics.OpenGL.ArbViewportArray.DepthRange; - var _Viewport = OpenTK.Graphics.OpenGL.ArbViewportArray.Viewport; - var _ScissorBox = OpenTK.Graphics.OpenGL.ArbViewportArray.ScissorBox; - var _ScissorTest = OpenTK.Graphics.OpenGL.ArbViewportArray.ScissorTest; - var _MaxViewports = OpenTK.Graphics.OpenGL.ArbViewportArray.MaxViewports; - var _ViewportSubpixelBits = OpenTK.Graphics.OpenGL.ArbViewportArray.ViewportSubpixelBits; - var _ViewportBoundsRange = OpenTK.Graphics.OpenGL.ArbViewportArray.ViewportBoundsRange; - var _LayerProvokingVertex = OpenTK.Graphics.OpenGL.ArbViewportArray.LayerProvokingVertex; - var _ViewportIndexProvokingVertex = OpenTK.Graphics.OpenGL.ArbViewportArray.ViewportIndexProvokingVertex; - var _UndefinedVertex = OpenTK.Graphics.OpenGL.ArbViewportArray.UndefinedVertex; - var _FirstVertexConvention = OpenTK.Graphics.OpenGL.ArbViewportArray.FirstVertexConvention; - var _LastVertexConvention = OpenTK.Graphics.OpenGL.ArbViewportArray.LastVertexConvention; - var _ProvokingVertex = OpenTK.Graphics.OpenGL.ArbViewportArray.ProvokingVertex; -} -static void Test_ArbWindowPos_19509() { -} -static void Test_ArrayCap_19510() { - var _VertexArray = OpenTK.Graphics.OpenGL.ArrayCap.VertexArray; - var _NormalArray = OpenTK.Graphics.OpenGL.ArrayCap.NormalArray; - var _ColorArray = OpenTK.Graphics.OpenGL.ArrayCap.ColorArray; - var _IndexArray = OpenTK.Graphics.OpenGL.ArrayCap.IndexArray; - var _TextureCoordArray = OpenTK.Graphics.OpenGL.ArrayCap.TextureCoordArray; - var _EdgeFlagArray = OpenTK.Graphics.OpenGL.ArrayCap.EdgeFlagArray; - var _FogCoordArray = OpenTK.Graphics.OpenGL.ArrayCap.FogCoordArray; - var _SecondaryColorArray = OpenTK.Graphics.OpenGL.ArrayCap.SecondaryColorArray; -} -static void Test_AssemblyProgramFormatArb_19511() { - var _ProgramFormatAsciiArb = OpenTK.Graphics.OpenGL.AssemblyProgramFormatArb.ProgramFormatAsciiArb; -} -static void Test_AssemblyProgramParameterArb_19512() { - var _ProgramBinaryRetrievableHint = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.ProgramBinaryRetrievableHint; - var _ProgramSeparable = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.ProgramSeparable; - var _ProgramLength = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.ProgramLength; - var _ProgramBinding = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.ProgramBinding; - var _ProgramAluInstructionsArb = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.ProgramAluInstructionsArb; - var _ProgramTexInstructionsArb = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.ProgramTexInstructionsArb; - var _ProgramTexIndirectionsArb = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.ProgramTexIndirectionsArb; - var _ProgramNativeAluInstructionsArb = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.ProgramNativeAluInstructionsArb; - var _ProgramNativeTexInstructionsArb = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.ProgramNativeTexInstructionsArb; - var _ProgramNativeTexIndirectionsArb = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.ProgramNativeTexIndirectionsArb; - var _MaxProgramAluInstructionsArb = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.MaxProgramAluInstructionsArb; - var _MaxProgramTexInstructionsArb = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.MaxProgramTexInstructionsArb; - var _MaxProgramTexIndirectionsArb = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.MaxProgramTexIndirectionsArb; - var _MaxProgramNativeAluInstructionsArb = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.MaxProgramNativeAluInstructionsArb; - var _MaxProgramNativeTexInstructionsArb = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.MaxProgramNativeTexInstructionsArb; - var _MaxProgramNativeTexIndirectionsArb = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.MaxProgramNativeTexIndirectionsArb; - var _ProgramFormat = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.ProgramFormat; - var _ProgramInstruction = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.ProgramInstruction; - var _MaxProgramInstructions = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.MaxProgramInstructions; - var _ProgramNativeInstructions = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.ProgramNativeInstructions; - var _MaxProgramNativeInstructions = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.MaxProgramNativeInstructions; - var _ProgramTemporaries = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.ProgramTemporaries; - var _MaxProgramTemporaries = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.MaxProgramTemporaries; - var _ProgramNativeTemporaries = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.ProgramNativeTemporaries; - var _MaxProgramNativeTemporaries = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.MaxProgramNativeTemporaries; - var _ProgramParameters = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.ProgramParameters; - var _MaxProgramParameters = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.MaxProgramParameters; - var _ProgramNativeParameters = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.ProgramNativeParameters; - var _MaxProgramNativeParameters = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.MaxProgramNativeParameters; - var _ProgramAttribs = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.ProgramAttribs; - var _MaxProgramAttribs = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.MaxProgramAttribs; - var _ProgramNativeAttribs = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.ProgramNativeAttribs; - var _MaxProgramNativeAttribs = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.MaxProgramNativeAttribs; - var _ProgramAddressRegisters = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.ProgramAddressRegisters; - var _MaxProgramAddressRegisters = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.MaxProgramAddressRegisters; - var _ProgramNativeAddressRegisters = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.ProgramNativeAddressRegisters; - var _MaxProgramNativeAddressRegisters = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.MaxProgramNativeAddressRegisters; - var _MaxProgramLocalParameters = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.MaxProgramLocalParameters; - var _MaxProgramEnvParameters = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.MaxProgramEnvParameters; - var _ProgramUnderNativeLimits = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.ProgramUnderNativeLimits; - var _GeometryVerticesOut = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.GeometryVerticesOut; - var _GeometryInputType = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.GeometryInputType; - var _GeometryOutputType = OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb.GeometryOutputType; -} -static void Test_AssemblyProgramStringParameterArb_19513() { - var _ProgramString = OpenTK.Graphics.OpenGL.AssemblyProgramStringParameterArb.ProgramString; -} -static void Test_AssemblyProgramTargetArb_19514() { - var _VertexProgram = OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb.VertexProgram; - var _FragmentProgram = OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb.FragmentProgram; - var _GeometryProgramNv = OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb.GeometryProgramNv; -} -static void Test_AtiDrawBuffers_19515() { - var _MaxDrawBuffersAti = OpenTK.Graphics.OpenGL.AtiDrawBuffers.MaxDrawBuffersAti; - var _DrawBuffer0Ati = OpenTK.Graphics.OpenGL.AtiDrawBuffers.DrawBuffer0Ati; - var _DrawBuffer1Ati = OpenTK.Graphics.OpenGL.AtiDrawBuffers.DrawBuffer1Ati; - var _DrawBuffer2Ati = OpenTK.Graphics.OpenGL.AtiDrawBuffers.DrawBuffer2Ati; - var _DrawBuffer3Ati = OpenTK.Graphics.OpenGL.AtiDrawBuffers.DrawBuffer3Ati; - var _DrawBuffer4Ati = OpenTK.Graphics.OpenGL.AtiDrawBuffers.DrawBuffer4Ati; - var _DrawBuffer5Ati = OpenTK.Graphics.OpenGL.AtiDrawBuffers.DrawBuffer5Ati; - var _DrawBuffer6Ati = OpenTK.Graphics.OpenGL.AtiDrawBuffers.DrawBuffer6Ati; - var _DrawBuffer7Ati = OpenTK.Graphics.OpenGL.AtiDrawBuffers.DrawBuffer7Ati; - var _DrawBuffer8Ati = OpenTK.Graphics.OpenGL.AtiDrawBuffers.DrawBuffer8Ati; - var _DrawBuffer9Ati = OpenTK.Graphics.OpenGL.AtiDrawBuffers.DrawBuffer9Ati; - var _DrawBuffer10Ati = OpenTK.Graphics.OpenGL.AtiDrawBuffers.DrawBuffer10Ati; - var _DrawBuffer11Ati = OpenTK.Graphics.OpenGL.AtiDrawBuffers.DrawBuffer11Ati; - var _DrawBuffer12Ati = OpenTK.Graphics.OpenGL.AtiDrawBuffers.DrawBuffer12Ati; - var _DrawBuffer13Ati = OpenTK.Graphics.OpenGL.AtiDrawBuffers.DrawBuffer13Ati; - var _DrawBuffer14Ati = OpenTK.Graphics.OpenGL.AtiDrawBuffers.DrawBuffer14Ati; - var _DrawBuffer15Ati = OpenTK.Graphics.OpenGL.AtiDrawBuffers.DrawBuffer15Ati; -} -static void Test_AtiElementArray_19516() { - var _ElementArrayAti = OpenTK.Graphics.OpenGL.AtiElementArray.ElementArrayAti; - var _ElementArrayTypeAti = OpenTK.Graphics.OpenGL.AtiElementArray.ElementArrayTypeAti; - var _ElementArrayPointerAti = OpenTK.Graphics.OpenGL.AtiElementArray.ElementArrayPointerAti; -} -static void Test_AtiEnvmapBumpmap_19517() { - var _BumpRotMatrixAti = OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap.BumpRotMatrixAti; - var _BumpRotMatrixSizeAti = OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap.BumpRotMatrixSizeAti; - var _BumpNumTexUnitsAti = OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap.BumpNumTexUnitsAti; - var _BumpTexUnitsAti = OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap.BumpTexUnitsAti; - var _DudvAti = OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap.DudvAti; - var _Du8Dv8Ati = OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap.Du8Dv8Ati; - var _BumpEnvmapAti = OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap.BumpEnvmapAti; - var _BumpTargetAti = OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap.BumpTargetAti; -} -static void Test_AtiFragmentShader_19518() { - var _Gl2XBitAti = OpenTK.Graphics.OpenGL.AtiFragmentShader.Gl2XBitAti; - var _RedBitAti = OpenTK.Graphics.OpenGL.AtiFragmentShader.RedBitAti; - var _CompBitAti = OpenTK.Graphics.OpenGL.AtiFragmentShader.CompBitAti; - var _Gl4XBitAti = OpenTK.Graphics.OpenGL.AtiFragmentShader.Gl4XBitAti; - var _GreenBitAti = OpenTK.Graphics.OpenGL.AtiFragmentShader.GreenBitAti; - var _BlueBitAti = OpenTK.Graphics.OpenGL.AtiFragmentShader.BlueBitAti; - var _Gl8XBitAti = OpenTK.Graphics.OpenGL.AtiFragmentShader.Gl8XBitAti; - var _NegateBitAti = OpenTK.Graphics.OpenGL.AtiFragmentShader.NegateBitAti; - var _BiasBitAti = OpenTK.Graphics.OpenGL.AtiFragmentShader.BiasBitAti; - var _HalfBitAti = OpenTK.Graphics.OpenGL.AtiFragmentShader.HalfBitAti; - var _QuarterBitAti = OpenTK.Graphics.OpenGL.AtiFragmentShader.QuarterBitAti; - var _EighthBitAti = OpenTK.Graphics.OpenGL.AtiFragmentShader.EighthBitAti; - var _SaturateBitAti = OpenTK.Graphics.OpenGL.AtiFragmentShader.SaturateBitAti; - var _FragmentShaderAti = OpenTK.Graphics.OpenGL.AtiFragmentShader.FragmentShaderAti; - var _Reg0Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Reg0Ati; - var _Reg1Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Reg1Ati; - var _Reg2Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Reg2Ati; - var _Reg3Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Reg3Ati; - var _Reg4Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Reg4Ati; - var _Reg5Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Reg5Ati; - var _Reg6Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Reg6Ati; - var _Reg7Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Reg7Ati; - var _Reg8Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Reg8Ati; - var _Reg9Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Reg9Ati; - var _Reg10Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Reg10Ati; - var _Reg11Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Reg11Ati; - var _Reg12Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Reg12Ati; - var _Reg13Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Reg13Ati; - var _Reg14Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Reg14Ati; - var _Reg15Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Reg15Ati; - var _Reg16Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Reg16Ati; - var _Reg17Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Reg17Ati; - var _Reg18Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Reg18Ati; - var _Reg19Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Reg19Ati; - var _Reg20Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Reg20Ati; - var _Reg21Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Reg21Ati; - var _Reg22Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Reg22Ati; - var _Reg23Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Reg23Ati; - var _Reg24Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Reg24Ati; - var _Reg25Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Reg25Ati; - var _Reg26Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Reg26Ati; - var _Reg27Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Reg27Ati; - var _Reg28Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Reg28Ati; - var _Reg29Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Reg29Ati; - var _Reg30Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Reg30Ati; - var _Reg31Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Reg31Ati; - var _Con0Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Con0Ati; - var _Con1Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Con1Ati; - var _Con2Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Con2Ati; - var _Con3Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Con3Ati; - var _Con4Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Con4Ati; - var _Con5Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Con5Ati; - var _Con6Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Con6Ati; - var _Con7Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Con7Ati; - var _Con8Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Con8Ati; - var _Con9Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Con9Ati; - var _Con10Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Con10Ati; - var _Con11Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Con11Ati; - var _Con12Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Con12Ati; - var _Con13Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Con13Ati; - var _Con14Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Con14Ati; - var _Con15Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Con15Ati; - var _Con16Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Con16Ati; - var _Con17Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Con17Ati; - var _Con18Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Con18Ati; - var _Con19Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Con19Ati; - var _Con20Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Con20Ati; - var _Con21Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Con21Ati; - var _Con22Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Con22Ati; - var _Con23Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Con23Ati; - var _Con24Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Con24Ati; - var _Con25Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Con25Ati; - var _Con26Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Con26Ati; - var _Con27Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Con27Ati; - var _Con28Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Con28Ati; - var _Con29Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Con29Ati; - var _Con30Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Con30Ati; - var _Con31Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Con31Ati; - var _MovAti = OpenTK.Graphics.OpenGL.AtiFragmentShader.MovAti; - var _AddAti = OpenTK.Graphics.OpenGL.AtiFragmentShader.AddAti; - var _MulAti = OpenTK.Graphics.OpenGL.AtiFragmentShader.MulAti; - var _SubAti = OpenTK.Graphics.OpenGL.AtiFragmentShader.SubAti; - var _Dot3Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Dot3Ati; - var _Dot4Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Dot4Ati; - var _MadAti = OpenTK.Graphics.OpenGL.AtiFragmentShader.MadAti; - var _LerpAti = OpenTK.Graphics.OpenGL.AtiFragmentShader.LerpAti; - var _CndAti = OpenTK.Graphics.OpenGL.AtiFragmentShader.CndAti; - var _Cnd0Ati = OpenTK.Graphics.OpenGL.AtiFragmentShader.Cnd0Ati; - var _Dot2AddAti = OpenTK.Graphics.OpenGL.AtiFragmentShader.Dot2AddAti; - var _SecondaryInterpolatorAti = OpenTK.Graphics.OpenGL.AtiFragmentShader.SecondaryInterpolatorAti; - var _NumFragmentRegistersAti = OpenTK.Graphics.OpenGL.AtiFragmentShader.NumFragmentRegistersAti; - var _NumFragmentConstantsAti = OpenTK.Graphics.OpenGL.AtiFragmentShader.NumFragmentConstantsAti; - var _NumPassesAti = OpenTK.Graphics.OpenGL.AtiFragmentShader.NumPassesAti; - var _NumInstructionsPerPassAti = OpenTK.Graphics.OpenGL.AtiFragmentShader.NumInstructionsPerPassAti; - var _NumInstructionsTotalAti = OpenTK.Graphics.OpenGL.AtiFragmentShader.NumInstructionsTotalAti; - var _NumInputInterpolatorComponentsAti = OpenTK.Graphics.OpenGL.AtiFragmentShader.NumInputInterpolatorComponentsAti; - var _NumLoopbackComponentsAti = OpenTK.Graphics.OpenGL.AtiFragmentShader.NumLoopbackComponentsAti; - var _ColorAlphaPairingAti = OpenTK.Graphics.OpenGL.AtiFragmentShader.ColorAlphaPairingAti; - var _SwizzleStrAti = OpenTK.Graphics.OpenGL.AtiFragmentShader.SwizzleStrAti; - var _SwizzleStqAti = OpenTK.Graphics.OpenGL.AtiFragmentShader.SwizzleStqAti; - var _SwizzleStrDrAti = OpenTK.Graphics.OpenGL.AtiFragmentShader.SwizzleStrDrAti; - var _SwizzleStqDqAti = OpenTK.Graphics.OpenGL.AtiFragmentShader.SwizzleStqDqAti; - var _SwizzleStrqAti = OpenTK.Graphics.OpenGL.AtiFragmentShader.SwizzleStrqAti; - var _SwizzleStrqDqAti = OpenTK.Graphics.OpenGL.AtiFragmentShader.SwizzleStrqDqAti; -} -static void Test_AtiMapObjectBuffer_19519() { -} -static void Test_AtiMeminfo_19520() { - var _VboFreeMemoryAti = OpenTK.Graphics.OpenGL.AtiMeminfo.VboFreeMemoryAti; - var _TextureFreeMemoryAti = OpenTK.Graphics.OpenGL.AtiMeminfo.TextureFreeMemoryAti; - var _RenderbufferFreeMemoryAti = OpenTK.Graphics.OpenGL.AtiMeminfo.RenderbufferFreeMemoryAti; -} -static void Test_AtiPixelFormatFloat_19521() { - var _RgbaFloatModeAti = OpenTK.Graphics.OpenGL.AtiPixelFormatFloat.RgbaFloatModeAti; - var _ColorClearUnclampedValueAti = OpenTK.Graphics.OpenGL.AtiPixelFormatFloat.ColorClearUnclampedValueAti; -} -static void Test_AtiPnTriangles_19522() { - var _PnTrianglesAti = OpenTK.Graphics.OpenGL.AtiPnTriangles.PnTrianglesAti; - var _MaxPnTrianglesTesselationLevelAti = OpenTK.Graphics.OpenGL.AtiPnTriangles.MaxPnTrianglesTesselationLevelAti; - var _PnTrianglesPointModeAti = OpenTK.Graphics.OpenGL.AtiPnTriangles.PnTrianglesPointModeAti; - var _PnTrianglesNormalModeAti = OpenTK.Graphics.OpenGL.AtiPnTriangles.PnTrianglesNormalModeAti; - var _PnTrianglesTesselationLevelAti = OpenTK.Graphics.OpenGL.AtiPnTriangles.PnTrianglesTesselationLevelAti; - var _PnTrianglesPointModeLinearAti = OpenTK.Graphics.OpenGL.AtiPnTriangles.PnTrianglesPointModeLinearAti; - var _PnTrianglesPointModeCubicAti = OpenTK.Graphics.OpenGL.AtiPnTriangles.PnTrianglesPointModeCubicAti; - var _PnTrianglesNormalModeLinearAti = OpenTK.Graphics.OpenGL.AtiPnTriangles.PnTrianglesNormalModeLinearAti; - var _PnTrianglesNormalModeQuadraticAti = OpenTK.Graphics.OpenGL.AtiPnTriangles.PnTrianglesNormalModeQuadraticAti; -} -static void Test_AtiSeparateStencil_19523() { - var _StencilBackFuncAti = OpenTK.Graphics.OpenGL.AtiSeparateStencil.StencilBackFuncAti; - var _StencilBackFailAti = OpenTK.Graphics.OpenGL.AtiSeparateStencil.StencilBackFailAti; - var _StencilBackPassDepthFailAti = OpenTK.Graphics.OpenGL.AtiSeparateStencil.StencilBackPassDepthFailAti; - var _StencilBackPassDepthPassAti = OpenTK.Graphics.OpenGL.AtiSeparateStencil.StencilBackPassDepthPassAti; -} -static void Test_AtiTextFragmentShader_19524() { - var _TextFragmentShaderAti = OpenTK.Graphics.OpenGL.AtiTextFragmentShader.TextFragmentShaderAti; -} -static void Test_AtiTextureEnvCombine3_19525() { - var _ModulateAddAti = OpenTK.Graphics.OpenGL.AtiTextureEnvCombine3.ModulateAddAti; - var _ModulateSignedAddAti = OpenTK.Graphics.OpenGL.AtiTextureEnvCombine3.ModulateSignedAddAti; - var _ModulateSubtractAti = OpenTK.Graphics.OpenGL.AtiTextureEnvCombine3.ModulateSubtractAti; -} -static void Test_AtiTextureFloat_19526() { - var _RgbaFloat32Ati = OpenTK.Graphics.OpenGL.AtiTextureFloat.RgbaFloat32Ati; - var _RgbFloat32Ati = OpenTK.Graphics.OpenGL.AtiTextureFloat.RgbFloat32Ati; - var _AlphaFloat32Ati = OpenTK.Graphics.OpenGL.AtiTextureFloat.AlphaFloat32Ati; - var _IntensityFloat32Ati = OpenTK.Graphics.OpenGL.AtiTextureFloat.IntensityFloat32Ati; - var _LuminanceFloat32Ati = OpenTK.Graphics.OpenGL.AtiTextureFloat.LuminanceFloat32Ati; - var _LuminanceAlphaFloat32Ati = OpenTK.Graphics.OpenGL.AtiTextureFloat.LuminanceAlphaFloat32Ati; - var _RgbaFloat16Ati = OpenTK.Graphics.OpenGL.AtiTextureFloat.RgbaFloat16Ati; - var _RgbFloat16Ati = OpenTK.Graphics.OpenGL.AtiTextureFloat.RgbFloat16Ati; - var _AlphaFloat16Ati = OpenTK.Graphics.OpenGL.AtiTextureFloat.AlphaFloat16Ati; - var _IntensityFloat16Ati = OpenTK.Graphics.OpenGL.AtiTextureFloat.IntensityFloat16Ati; - var _LuminanceFloat16Ati = OpenTK.Graphics.OpenGL.AtiTextureFloat.LuminanceFloat16Ati; - var _LuminanceAlphaFloat16Ati = OpenTK.Graphics.OpenGL.AtiTextureFloat.LuminanceAlphaFloat16Ati; -} -static void Test_AtiTextureMirrorOnce_19527() { - var _MirrorClampAti = OpenTK.Graphics.OpenGL.AtiTextureMirrorOnce.MirrorClampAti; - var _MirrorClampToEdgeAti = OpenTK.Graphics.OpenGL.AtiTextureMirrorOnce.MirrorClampToEdgeAti; -} -static void Test_AtiVertexArrayObject_19528() { - var _StaticAti = OpenTK.Graphics.OpenGL.AtiVertexArrayObject.StaticAti; - var _DynamicAti = OpenTK.Graphics.OpenGL.AtiVertexArrayObject.DynamicAti; - var _PreserveAti = OpenTK.Graphics.OpenGL.AtiVertexArrayObject.PreserveAti; - var _DiscardAti = OpenTK.Graphics.OpenGL.AtiVertexArrayObject.DiscardAti; - var _ObjectBufferSizeAti = OpenTK.Graphics.OpenGL.AtiVertexArrayObject.ObjectBufferSizeAti; - var _ObjectBufferUsageAti = OpenTK.Graphics.OpenGL.AtiVertexArrayObject.ObjectBufferUsageAti; - var _ArrayObjectBufferAti = OpenTK.Graphics.OpenGL.AtiVertexArrayObject.ArrayObjectBufferAti; - var _ArrayObjectOffsetAti = OpenTK.Graphics.OpenGL.AtiVertexArrayObject.ArrayObjectOffsetAti; -} -static void Test_AtiVertexAttribArrayObject_19529() { -} -static void Test_AtiVertexStreams_19530() { - var _MaxVertexStreamsAti = OpenTK.Graphics.OpenGL.AtiVertexStreams.MaxVertexStreamsAti; - var _VertexStream0Ati = OpenTK.Graphics.OpenGL.AtiVertexStreams.VertexStream0Ati; - var _VertexStream1Ati = OpenTK.Graphics.OpenGL.AtiVertexStreams.VertexStream1Ati; - var _VertexStream2Ati = OpenTK.Graphics.OpenGL.AtiVertexStreams.VertexStream2Ati; - var _VertexStream3Ati = OpenTK.Graphics.OpenGL.AtiVertexStreams.VertexStream3Ati; - var _VertexStream4Ati = OpenTK.Graphics.OpenGL.AtiVertexStreams.VertexStream4Ati; - var _VertexStream5Ati = OpenTK.Graphics.OpenGL.AtiVertexStreams.VertexStream5Ati; - var _VertexStream6Ati = OpenTK.Graphics.OpenGL.AtiVertexStreams.VertexStream6Ati; - var _VertexStream7Ati = OpenTK.Graphics.OpenGL.AtiVertexStreams.VertexStream7Ati; - var _VertexSourceAti = OpenTK.Graphics.OpenGL.AtiVertexStreams.VertexSourceAti; -} -static void Test_AtomicCounterBufferParameter_19531() { - var _AtomicCounterBufferReferencedByComputeShader = OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter.AtomicCounterBufferReferencedByComputeShader; - var _AtomicCounterBufferBinding = OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter.AtomicCounterBufferBinding; - var _AtomicCounterBufferDataSize = OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter.AtomicCounterBufferDataSize; - var _AtomicCounterBufferActiveAtomicCounters = OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter.AtomicCounterBufferActiveAtomicCounters; - var _AtomicCounterBufferActiveAtomicCounterIndices = OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter.AtomicCounterBufferActiveAtomicCounterIndices; - var _AtomicCounterBufferReferencedByVertexShader = OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter.AtomicCounterBufferReferencedByVertexShader; - var _AtomicCounterBufferReferencedByTessControlShader = OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter.AtomicCounterBufferReferencedByTessControlShader; - var _AtomicCounterBufferReferencedByTessEvaluationShader = OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter.AtomicCounterBufferReferencedByTessEvaluationShader; - var _AtomicCounterBufferReferencedByGeometryShader = OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter.AtomicCounterBufferReferencedByGeometryShader; - var _AtomicCounterBufferReferencedByFragmentShader = OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter.AtomicCounterBufferReferencedByFragmentShader; -} -static void Test_AttribMask_19532() { - var _CurrentBit = OpenTK.Graphics.OpenGL.AttribMask.CurrentBit; - var _PointBit = OpenTK.Graphics.OpenGL.AttribMask.PointBit; - var _LineBit = OpenTK.Graphics.OpenGL.AttribMask.LineBit; - var _PolygonBit = OpenTK.Graphics.OpenGL.AttribMask.PolygonBit; - var _PolygonStippleBit = OpenTK.Graphics.OpenGL.AttribMask.PolygonStippleBit; - var _PixelModeBit = OpenTK.Graphics.OpenGL.AttribMask.PixelModeBit; - var _LightingBit = OpenTK.Graphics.OpenGL.AttribMask.LightingBit; - var _FogBit = OpenTK.Graphics.OpenGL.AttribMask.FogBit; - var _DepthBufferBit = OpenTK.Graphics.OpenGL.AttribMask.DepthBufferBit; - var _AccumBufferBit = OpenTK.Graphics.OpenGL.AttribMask.AccumBufferBit; - var _StencilBufferBit = OpenTK.Graphics.OpenGL.AttribMask.StencilBufferBit; - var _ViewportBit = OpenTK.Graphics.OpenGL.AttribMask.ViewportBit; - var _TransformBit = OpenTK.Graphics.OpenGL.AttribMask.TransformBit; - var _EnableBit = OpenTK.Graphics.OpenGL.AttribMask.EnableBit; - var _ColorBufferBit = OpenTK.Graphics.OpenGL.AttribMask.ColorBufferBit; - var _HintBit = OpenTK.Graphics.OpenGL.AttribMask.HintBit; - var _EvalBit = OpenTK.Graphics.OpenGL.AttribMask.EvalBit; - var _ListBit = OpenTK.Graphics.OpenGL.AttribMask.ListBit; - var _TextureBit = OpenTK.Graphics.OpenGL.AttribMask.TextureBit; - var _ScissorBit = OpenTK.Graphics.OpenGL.AttribMask.ScissorBit; - var _MultisampleBit = OpenTK.Graphics.OpenGL.AttribMask.MultisampleBit; - var _MultisampleBit3Dfx = OpenTK.Graphics.OpenGL.AttribMask.MultisampleBit3Dfx; - var _MultisampleBitArb = OpenTK.Graphics.OpenGL.AttribMask.MultisampleBitArb; - var _MultisampleBitExt = OpenTK.Graphics.OpenGL.AttribMask.MultisampleBitExt; - var _AllAttribBits = OpenTK.Graphics.OpenGL.AttribMask.AllAttribBits; -} -static void Test_BeginFeedbackMode_19533() { - var _Points = OpenTK.Graphics.OpenGL.BeginFeedbackMode.Points; - var _Lines = OpenTK.Graphics.OpenGL.BeginFeedbackMode.Lines; - var _Triangles = OpenTK.Graphics.OpenGL.BeginFeedbackMode.Triangles; -} -static void Test_BeginMode_19534() { - var _Points = OpenTK.Graphics.OpenGL.BeginMode.Points; - var _Lines = OpenTK.Graphics.OpenGL.BeginMode.Lines; - var _LineLoop = OpenTK.Graphics.OpenGL.BeginMode.LineLoop; - var _LineStrip = OpenTK.Graphics.OpenGL.BeginMode.LineStrip; - var _Triangles = OpenTK.Graphics.OpenGL.BeginMode.Triangles; - var _TriangleStrip = OpenTK.Graphics.OpenGL.BeginMode.TriangleStrip; - var _TriangleFan = OpenTK.Graphics.OpenGL.BeginMode.TriangleFan; - var _Quads = OpenTK.Graphics.OpenGL.BeginMode.Quads; - var _QuadStrip = OpenTK.Graphics.OpenGL.BeginMode.QuadStrip; - var _Polygon = OpenTK.Graphics.OpenGL.BeginMode.Polygon; - var _Patches = OpenTK.Graphics.OpenGL.BeginMode.Patches; - var _LinesAdjacency = OpenTK.Graphics.OpenGL.BeginMode.LinesAdjacency; - var _LineStripAdjacency = OpenTK.Graphics.OpenGL.BeginMode.LineStripAdjacency; - var _TrianglesAdjacency = OpenTK.Graphics.OpenGL.BeginMode.TrianglesAdjacency; - var _TriangleStripAdjacency = OpenTK.Graphics.OpenGL.BeginMode.TriangleStripAdjacency; -} -static void Test_BinaryFormat_19535() { -} -static void Test_BlendEquationMode_19536() { - var _FuncAdd = OpenTK.Graphics.OpenGL.BlendEquationMode.FuncAdd; - var _Min = OpenTK.Graphics.OpenGL.BlendEquationMode.Min; - var _Max = OpenTK.Graphics.OpenGL.BlendEquationMode.Max; - var _FuncSubtract = OpenTK.Graphics.OpenGL.BlendEquationMode.FuncSubtract; - var _FuncReverseSubtract = OpenTK.Graphics.OpenGL.BlendEquationMode.FuncReverseSubtract; -} -static void Test_BlendEquationModeExt_19537() { - var _LogicOp = OpenTK.Graphics.OpenGL.BlendEquationModeExt.LogicOp; - var _FuncAddExt = OpenTK.Graphics.OpenGL.BlendEquationModeExt.FuncAddExt; - var _MinExt = OpenTK.Graphics.OpenGL.BlendEquationModeExt.MinExt; - var _MaxExt = OpenTK.Graphics.OpenGL.BlendEquationModeExt.MaxExt; - var _FuncSubtractExt = OpenTK.Graphics.OpenGL.BlendEquationModeExt.FuncSubtractExt; - var _FuncReverseSubtractExt = OpenTK.Graphics.OpenGL.BlendEquationModeExt.FuncReverseSubtractExt; - var _AlphaMinSgix = OpenTK.Graphics.OpenGL.BlendEquationModeExt.AlphaMinSgix; - var _AlphaMaxSgix = OpenTK.Graphics.OpenGL.BlendEquationModeExt.AlphaMaxSgix; -} -static void Test_BlendingFactorDest_19538() { - var _Zero = OpenTK.Graphics.OpenGL.BlendingFactorDest.Zero; - var _SrcColor = OpenTK.Graphics.OpenGL.BlendingFactorDest.SrcColor; - var _OneMinusSrcColor = OpenTK.Graphics.OpenGL.BlendingFactorDest.OneMinusSrcColor; - var _SrcAlpha = OpenTK.Graphics.OpenGL.BlendingFactorDest.SrcAlpha; - var _OneMinusSrcAlpha = OpenTK.Graphics.OpenGL.BlendingFactorDest.OneMinusSrcAlpha; - var _DstAlpha = OpenTK.Graphics.OpenGL.BlendingFactorDest.DstAlpha; - var _OneMinusDstAlpha = OpenTK.Graphics.OpenGL.BlendingFactorDest.OneMinusDstAlpha; - var _DstColor = OpenTK.Graphics.OpenGL.BlendingFactorDest.DstColor; - var _OneMinusDstColor = OpenTK.Graphics.OpenGL.BlendingFactorDest.OneMinusDstColor; - var _SrcAlphaSaturate = OpenTK.Graphics.OpenGL.BlendingFactorDest.SrcAlphaSaturate; - var _ConstantColor = OpenTK.Graphics.OpenGL.BlendingFactorDest.ConstantColor; - var _ConstantColorExt = OpenTK.Graphics.OpenGL.BlendingFactorDest.ConstantColorExt; - var _OneMinusConstantColor = OpenTK.Graphics.OpenGL.BlendingFactorDest.OneMinusConstantColor; - var _OneMinusConstantColorExt = OpenTK.Graphics.OpenGL.BlendingFactorDest.OneMinusConstantColorExt; - var _ConstantAlpha = OpenTK.Graphics.OpenGL.BlendingFactorDest.ConstantAlpha; - var _ConstantAlphaExt = OpenTK.Graphics.OpenGL.BlendingFactorDest.ConstantAlphaExt; - var _OneMinusConstantAlpha = OpenTK.Graphics.OpenGL.BlendingFactorDest.OneMinusConstantAlpha; - var _OneMinusConstantAlphaExt = OpenTK.Graphics.OpenGL.BlendingFactorDest.OneMinusConstantAlphaExt; - var _Src1Alpha = OpenTK.Graphics.OpenGL.BlendingFactorDest.Src1Alpha; - var _Src1Color = OpenTK.Graphics.OpenGL.BlendingFactorDest.Src1Color; - var _OneMinusSrc1Color = OpenTK.Graphics.OpenGL.BlendingFactorDest.OneMinusSrc1Color; - var _OneMinusSrc1Alpha = OpenTK.Graphics.OpenGL.BlendingFactorDest.OneMinusSrc1Alpha; - var _One = OpenTK.Graphics.OpenGL.BlendingFactorDest.One; -} -static void Test_BlendingFactorSrc_19539() { - var _Zero = OpenTK.Graphics.OpenGL.BlendingFactorSrc.Zero; - var _SrcColor = OpenTK.Graphics.OpenGL.BlendingFactorSrc.SrcColor; - var _OneMinusSrcColor = OpenTK.Graphics.OpenGL.BlendingFactorSrc.OneMinusSrcColor; - var _SrcAlpha = OpenTK.Graphics.OpenGL.BlendingFactorSrc.SrcAlpha; - var _OneMinusSrcAlpha = OpenTK.Graphics.OpenGL.BlendingFactorSrc.OneMinusSrcAlpha; - var _DstAlpha = OpenTK.Graphics.OpenGL.BlendingFactorSrc.DstAlpha; - var _OneMinusDstAlpha = OpenTK.Graphics.OpenGL.BlendingFactorSrc.OneMinusDstAlpha; - var _DstColor = OpenTK.Graphics.OpenGL.BlendingFactorSrc.DstColor; - var _OneMinusDstColor = OpenTK.Graphics.OpenGL.BlendingFactorSrc.OneMinusDstColor; - var _SrcAlphaSaturate = OpenTK.Graphics.OpenGL.BlendingFactorSrc.SrcAlphaSaturate; - var _ConstantColor = OpenTK.Graphics.OpenGL.BlendingFactorSrc.ConstantColor; - var _ConstantColorExt = OpenTK.Graphics.OpenGL.BlendingFactorSrc.ConstantColorExt; - var _OneMinusConstantColor = OpenTK.Graphics.OpenGL.BlendingFactorSrc.OneMinusConstantColor; - var _OneMinusConstantColorExt = OpenTK.Graphics.OpenGL.BlendingFactorSrc.OneMinusConstantColorExt; - var _ConstantAlpha = OpenTK.Graphics.OpenGL.BlendingFactorSrc.ConstantAlpha; - var _ConstantAlphaExt = OpenTK.Graphics.OpenGL.BlendingFactorSrc.ConstantAlphaExt; - var _OneMinusConstantAlpha = OpenTK.Graphics.OpenGL.BlendingFactorSrc.OneMinusConstantAlpha; - var _OneMinusConstantAlphaExt = OpenTK.Graphics.OpenGL.BlendingFactorSrc.OneMinusConstantAlphaExt; - var _Src1Alpha = OpenTK.Graphics.OpenGL.BlendingFactorSrc.Src1Alpha; - var _Src1Color = OpenTK.Graphics.OpenGL.BlendingFactorSrc.Src1Color; - var _OneMinusSrc1Color = OpenTK.Graphics.OpenGL.BlendingFactorSrc.OneMinusSrc1Color; - var _OneMinusSrc1Alpha = OpenTK.Graphics.OpenGL.BlendingFactorSrc.OneMinusSrc1Alpha; - var _One = OpenTK.Graphics.OpenGL.BlendingFactorSrc.One; -} -static void Test_BlitFramebufferFilter_19540() { - var _Nearest = OpenTK.Graphics.OpenGL.BlitFramebufferFilter.Nearest; - var _Linear = OpenTK.Graphics.OpenGL.BlitFramebufferFilter.Linear; -} -static void Test_Boolean_19541() { - var _False = OpenTK.Graphics.OpenGL.Boolean.False; - var _True = OpenTK.Graphics.OpenGL.Boolean.True; -} -static void Test_BufferAccess_19542() { - var _ReadOnly = OpenTK.Graphics.OpenGL.BufferAccess.ReadOnly; - var _WriteOnly = OpenTK.Graphics.OpenGL.BufferAccess.WriteOnly; - var _ReadWrite = OpenTK.Graphics.OpenGL.BufferAccess.ReadWrite; -} -static void Test_BufferAccessArb_19543() { - var _ReadOnly = OpenTK.Graphics.OpenGL.BufferAccessArb.ReadOnly; - var _WriteOnly = OpenTK.Graphics.OpenGL.BufferAccessArb.WriteOnly; - var _ReadWrite = OpenTK.Graphics.OpenGL.BufferAccessArb.ReadWrite; -} -static void Test_BufferAccessMask_19544() { - var _MapReadBit = OpenTK.Graphics.OpenGL.BufferAccessMask.MapReadBit; - var _MapWriteBit = OpenTK.Graphics.OpenGL.BufferAccessMask.MapWriteBit; - var _MapInvalidateRangeBit = OpenTK.Graphics.OpenGL.BufferAccessMask.MapInvalidateRangeBit; - var _MapInvalidateBufferBit = OpenTK.Graphics.OpenGL.BufferAccessMask.MapInvalidateBufferBit; - var _MapFlushExplicitBit = OpenTK.Graphics.OpenGL.BufferAccessMask.MapFlushExplicitBit; - var _MapUnsynchronizedBit = OpenTK.Graphics.OpenGL.BufferAccessMask.MapUnsynchronizedBit; - var _MapPersistentBit = OpenTK.Graphics.OpenGL.BufferAccessMask.MapPersistentBit; - var _MapCoherentBit = OpenTK.Graphics.OpenGL.BufferAccessMask.MapCoherentBit; -} -static void Test_BufferParameterApple_19545() { - var _BufferSerializedModifyApple = OpenTK.Graphics.OpenGL.BufferParameterApple.BufferSerializedModifyApple; - var _BufferFlushingUnmapApple = OpenTK.Graphics.OpenGL.BufferParameterApple.BufferFlushingUnmapApple; -} -static void Test_BufferParameterName_19546() { - var _BufferImmutableStorage = OpenTK.Graphics.OpenGL.BufferParameterName.BufferImmutableStorage; - var _BufferSize = OpenTK.Graphics.OpenGL.BufferParameterName.BufferSize; - var _BufferUsage = OpenTK.Graphics.OpenGL.BufferParameterName.BufferUsage; - var _BufferAccess = OpenTK.Graphics.OpenGL.BufferParameterName.BufferAccess; - var _BufferMapped = OpenTK.Graphics.OpenGL.BufferParameterName.BufferMapped; - var _BufferAccessFlags = OpenTK.Graphics.OpenGL.BufferParameterName.BufferAccessFlags; - var _BufferMapLength = OpenTK.Graphics.OpenGL.BufferParameterName.BufferMapLength; - var _BufferMapOffset = OpenTK.Graphics.OpenGL.BufferParameterName.BufferMapOffset; -} -static void Test_BufferParameterNameArb_19547() { - var _BufferSize = OpenTK.Graphics.OpenGL.BufferParameterNameArb.BufferSize; - var _BufferUsage = OpenTK.Graphics.OpenGL.BufferParameterNameArb.BufferUsage; - var _BufferAccess = OpenTK.Graphics.OpenGL.BufferParameterNameArb.BufferAccess; - var _BufferMapped = OpenTK.Graphics.OpenGL.BufferParameterNameArb.BufferMapped; -} -static void Test_BufferPointer_19548() { - var _BufferMapPointer = OpenTK.Graphics.OpenGL.BufferPointer.BufferMapPointer; -} -static void Test_BufferPointerNameArb_19549() { - var _BufferMapPointer = OpenTK.Graphics.OpenGL.BufferPointerNameArb.BufferMapPointer; -} -static void Test_BufferRangeTarget_19550() { - var _UniformBuffer = OpenTK.Graphics.OpenGL.BufferRangeTarget.UniformBuffer; - var _TransformFeedbackBuffer = OpenTK.Graphics.OpenGL.BufferRangeTarget.TransformFeedbackBuffer; - var _ShaderStorageBuffer = OpenTK.Graphics.OpenGL.BufferRangeTarget.ShaderStorageBuffer; - var _AtomicCounterBuffer = OpenTK.Graphics.OpenGL.BufferRangeTarget.AtomicCounterBuffer; -} -static void Test_BufferStorageFlags_19551() { - var _MapReadBit = OpenTK.Graphics.OpenGL.BufferStorageFlags.MapReadBit; - var _MapWriteBit = OpenTK.Graphics.OpenGL.BufferStorageFlags.MapWriteBit; - var _MapPersistentBit = OpenTK.Graphics.OpenGL.BufferStorageFlags.MapPersistentBit; - var _MapCoherentBit = OpenTK.Graphics.OpenGL.BufferStorageFlags.MapCoherentBit; - var _DynamicStorageBit = OpenTK.Graphics.OpenGL.BufferStorageFlags.DynamicStorageBit; - var _ClientStorageBit = OpenTK.Graphics.OpenGL.BufferStorageFlags.ClientStorageBit; -} -static void Test_BufferTarget_19552() { - var _ArrayBuffer = OpenTK.Graphics.OpenGL.BufferTarget.ArrayBuffer; - var _ElementArrayBuffer = OpenTK.Graphics.OpenGL.BufferTarget.ElementArrayBuffer; - var _PixelPackBuffer = OpenTK.Graphics.OpenGL.BufferTarget.PixelPackBuffer; - var _PixelUnpackBuffer = OpenTK.Graphics.OpenGL.BufferTarget.PixelUnpackBuffer; - var _UniformBuffer = OpenTK.Graphics.OpenGL.BufferTarget.UniformBuffer; - var _TextureBuffer = OpenTK.Graphics.OpenGL.BufferTarget.TextureBuffer; - var _TransformFeedbackBuffer = OpenTK.Graphics.OpenGL.BufferTarget.TransformFeedbackBuffer; - var _CopyReadBuffer = OpenTK.Graphics.OpenGL.BufferTarget.CopyReadBuffer; - var _CopyWriteBuffer = OpenTK.Graphics.OpenGL.BufferTarget.CopyWriteBuffer; - var _DrawIndirectBuffer = OpenTK.Graphics.OpenGL.BufferTarget.DrawIndirectBuffer; - var _ShaderStorageBuffer = OpenTK.Graphics.OpenGL.BufferTarget.ShaderStorageBuffer; - var _DispatchIndirectBuffer = OpenTK.Graphics.OpenGL.BufferTarget.DispatchIndirectBuffer; - var _QueryBuffer = OpenTK.Graphics.OpenGL.BufferTarget.QueryBuffer; - var _AtomicCounterBuffer = OpenTK.Graphics.OpenGL.BufferTarget.AtomicCounterBuffer; -} -static void Test_BufferTargetArb_19553() { - var _ArrayBuffer = OpenTK.Graphics.OpenGL.BufferTargetArb.ArrayBuffer; - var _ElementArrayBuffer = OpenTK.Graphics.OpenGL.BufferTargetArb.ElementArrayBuffer; - var _TextureBuffer = OpenTK.Graphics.OpenGL.BufferTargetArb.TextureBuffer; -} -static void Test_BufferUsageArb_19554() { - var _StreamDraw = OpenTK.Graphics.OpenGL.BufferUsageArb.StreamDraw; - var _StreamRead = OpenTK.Graphics.OpenGL.BufferUsageArb.StreamRead; - var _StreamCopy = OpenTK.Graphics.OpenGL.BufferUsageArb.StreamCopy; - var _StaticDraw = OpenTK.Graphics.OpenGL.BufferUsageArb.StaticDraw; - var _StaticRead = OpenTK.Graphics.OpenGL.BufferUsageArb.StaticRead; - var _StaticCopy = OpenTK.Graphics.OpenGL.BufferUsageArb.StaticCopy; - var _DynamicDraw = OpenTK.Graphics.OpenGL.BufferUsageArb.DynamicDraw; - var _DynamicRead = OpenTK.Graphics.OpenGL.BufferUsageArb.DynamicRead; - var _DynamicCopy = OpenTK.Graphics.OpenGL.BufferUsageArb.DynamicCopy; -} -static void Test_BufferUsageHint_19555() { - var _StreamDraw = OpenTK.Graphics.OpenGL.BufferUsageHint.StreamDraw; - var _StreamRead = OpenTK.Graphics.OpenGL.BufferUsageHint.StreamRead; - var _StreamCopy = OpenTK.Graphics.OpenGL.BufferUsageHint.StreamCopy; - var _StaticDraw = OpenTK.Graphics.OpenGL.BufferUsageHint.StaticDraw; - var _StaticRead = OpenTK.Graphics.OpenGL.BufferUsageHint.StaticRead; - var _StaticCopy = OpenTK.Graphics.OpenGL.BufferUsageHint.StaticCopy; - var _DynamicDraw = OpenTK.Graphics.OpenGL.BufferUsageHint.DynamicDraw; - var _DynamicRead = OpenTK.Graphics.OpenGL.BufferUsageHint.DynamicRead; - var _DynamicCopy = OpenTK.Graphics.OpenGL.BufferUsageHint.DynamicCopy; -} -static void Test_ClampColorMode_19556() { - var _False = OpenTK.Graphics.OpenGL.ClampColorMode.False; - var _FixedOnly = OpenTK.Graphics.OpenGL.ClampColorMode.FixedOnly; - var _True = OpenTK.Graphics.OpenGL.ClampColorMode.True; -} -static void Test_ClampColorTarget_19557() { - var _ClampVertexColor = OpenTK.Graphics.OpenGL.ClampColorTarget.ClampVertexColor; - var _ClampFragmentColor = OpenTK.Graphics.OpenGL.ClampColorTarget.ClampFragmentColor; - var _ClampReadColor = OpenTK.Graphics.OpenGL.ClampColorTarget.ClampReadColor; -} -static void Test_ClearBuffer_19558() { - var _Color = OpenTK.Graphics.OpenGL.ClearBuffer.Color; - var _Depth = OpenTK.Graphics.OpenGL.ClearBuffer.Depth; - var _Stencil = OpenTK.Graphics.OpenGL.ClearBuffer.Stencil; -} -static void Test_ClearBufferCombined_19559() { - var _DepthStencil = OpenTK.Graphics.OpenGL.ClearBufferCombined.DepthStencil; -} -static void Test_ClearBufferMask_19560() { - var _None = OpenTK.Graphics.OpenGL.ClearBufferMask.None; - var _DepthBufferBit = OpenTK.Graphics.OpenGL.ClearBufferMask.DepthBufferBit; - var _AccumBufferBit = OpenTK.Graphics.OpenGL.ClearBufferMask.AccumBufferBit; - var _StencilBufferBit = OpenTK.Graphics.OpenGL.ClearBufferMask.StencilBufferBit; - var _ColorBufferBit = OpenTK.Graphics.OpenGL.ClearBufferMask.ColorBufferBit; - var _CoverageBufferBitNv = OpenTK.Graphics.OpenGL.ClearBufferMask.CoverageBufferBitNv; -} -static void Test_ClientAttribMask_19561() { - var _ClientPixelStoreBit = OpenTK.Graphics.OpenGL.ClientAttribMask.ClientPixelStoreBit; - var _ClientVertexArrayBit = OpenTK.Graphics.OpenGL.ClientAttribMask.ClientVertexArrayBit; - var _ClientAllAttribBits = OpenTK.Graphics.OpenGL.ClientAttribMask.ClientAllAttribBits; -} -static void Test_ClientWaitSyncFlags_19562() { - var _None = OpenTK.Graphics.OpenGL.ClientWaitSyncFlags.None; - var _SyncFlushCommandsBit = OpenTK.Graphics.OpenGL.ClientWaitSyncFlags.SyncFlushCommandsBit; -} -static void Test_ClipPlaneName_19563() { - var _ClipDistance0 = OpenTK.Graphics.OpenGL.ClipPlaneName.ClipDistance0; - var _ClipPlane0 = OpenTK.Graphics.OpenGL.ClipPlaneName.ClipPlane0; - var _ClipDistance1 = OpenTK.Graphics.OpenGL.ClipPlaneName.ClipDistance1; - var _ClipPlane1 = OpenTK.Graphics.OpenGL.ClipPlaneName.ClipPlane1; - var _ClipDistance2 = OpenTK.Graphics.OpenGL.ClipPlaneName.ClipDistance2; - var _ClipPlane2 = OpenTK.Graphics.OpenGL.ClipPlaneName.ClipPlane2; - var _ClipDistance3 = OpenTK.Graphics.OpenGL.ClipPlaneName.ClipDistance3; - var _ClipPlane3 = OpenTK.Graphics.OpenGL.ClipPlaneName.ClipPlane3; - var _ClipDistance4 = OpenTK.Graphics.OpenGL.ClipPlaneName.ClipDistance4; - var _ClipPlane4 = OpenTK.Graphics.OpenGL.ClipPlaneName.ClipPlane4; - var _ClipDistance5 = OpenTK.Graphics.OpenGL.ClipPlaneName.ClipDistance5; - var _ClipPlane5 = OpenTK.Graphics.OpenGL.ClipPlaneName.ClipPlane5; - var _ClipDistance6 = OpenTK.Graphics.OpenGL.ClipPlaneName.ClipDistance6; - var _ClipDistance7 = OpenTK.Graphics.OpenGL.ClipPlaneName.ClipDistance7; -} -static void Test_ColorMaterialFace_19564() { - var _Front = OpenTK.Graphics.OpenGL.ColorMaterialFace.Front; - var _Back = OpenTK.Graphics.OpenGL.ColorMaterialFace.Back; - var _FrontAndBack = OpenTK.Graphics.OpenGL.ColorMaterialFace.FrontAndBack; -} -static void Test_ColorMaterialParameter_19565() { - var _Ambient = OpenTK.Graphics.OpenGL.ColorMaterialParameter.Ambient; - var _Diffuse = OpenTK.Graphics.OpenGL.ColorMaterialParameter.Diffuse; - var _Specular = OpenTK.Graphics.OpenGL.ColorMaterialParameter.Specular; - var _Emission = OpenTK.Graphics.OpenGL.ColorMaterialParameter.Emission; - var _AmbientAndDiffuse = OpenTK.Graphics.OpenGL.ColorMaterialParameter.AmbientAndDiffuse; -} -static void Test_ColorPointerType_19566() { - var _Byte = OpenTK.Graphics.OpenGL.ColorPointerType.Byte; - var _UnsignedByte = OpenTK.Graphics.OpenGL.ColorPointerType.UnsignedByte; - var _Short = OpenTK.Graphics.OpenGL.ColorPointerType.Short; - var _UnsignedShort = OpenTK.Graphics.OpenGL.ColorPointerType.UnsignedShort; - var _Int = OpenTK.Graphics.OpenGL.ColorPointerType.Int; - var _UnsignedInt = OpenTK.Graphics.OpenGL.ColorPointerType.UnsignedInt; - var _Float = OpenTK.Graphics.OpenGL.ColorPointerType.Float; - var _Double = OpenTK.Graphics.OpenGL.ColorPointerType.Double; - var _HalfFloat = OpenTK.Graphics.OpenGL.ColorPointerType.HalfFloat; - var _UnsignedInt2101010Rev = OpenTK.Graphics.OpenGL.ColorPointerType.UnsignedInt2101010Rev; - var _Int2101010Rev = OpenTK.Graphics.OpenGL.ColorPointerType.Int2101010Rev; -} -static void Test_ColorTableParameterPName_19567() { - var _ColorTableScale = OpenTK.Graphics.OpenGL.ColorTableParameterPName.ColorTableScale; - var _ColorTableBias = OpenTK.Graphics.OpenGL.ColorTableParameterPName.ColorTableBias; -} -static void Test_ColorTableParameterPNameSgi_19568() { - var _ColorTableScale = OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi.ColorTableScale; - var _ColorTableScaleSgi = OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi.ColorTableScaleSgi; - var _ColorTableBias = OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi.ColorTableBias; - var _ColorTableBiasSgi = OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi.ColorTableBiasSgi; -} -static void Test_ColorTableTarget_19569() { - var _ColorTable = OpenTK.Graphics.OpenGL.ColorTableTarget.ColorTable; - var _PostConvolutionColorTable = OpenTK.Graphics.OpenGL.ColorTableTarget.PostConvolutionColorTable; - var _PostColorMatrixColorTable = OpenTK.Graphics.OpenGL.ColorTableTarget.PostColorMatrixColorTable; - var _ProxyColorTable = OpenTK.Graphics.OpenGL.ColorTableTarget.ProxyColorTable; - var _ProxyPostConvolutionColorTable = OpenTK.Graphics.OpenGL.ColorTableTarget.ProxyPostConvolutionColorTable; - var _ProxyPostColorMatrixColorTable = OpenTK.Graphics.OpenGL.ColorTableTarget.ProxyPostColorMatrixColorTable; -} -static void Test_ColorTableTargetSgi_19570() { - var _TextureColorTableSgi = OpenTK.Graphics.OpenGL.ColorTableTargetSgi.TextureColorTableSgi; - var _ProxyTextureColorTableSgi = OpenTK.Graphics.OpenGL.ColorTableTargetSgi.ProxyTextureColorTableSgi; - var _ColorTable = OpenTK.Graphics.OpenGL.ColorTableTargetSgi.ColorTable; - var _ColorTableSgi = OpenTK.Graphics.OpenGL.ColorTableTargetSgi.ColorTableSgi; - var _PostConvolutionColorTable = OpenTK.Graphics.OpenGL.ColorTableTargetSgi.PostConvolutionColorTable; - var _PostConvolutionColorTableSgi = OpenTK.Graphics.OpenGL.ColorTableTargetSgi.PostConvolutionColorTableSgi; - var _PostColorMatrixColorTable = OpenTK.Graphics.OpenGL.ColorTableTargetSgi.PostColorMatrixColorTable; - var _PostColorMatrixColorTableSgi = OpenTK.Graphics.OpenGL.ColorTableTargetSgi.PostColorMatrixColorTableSgi; - var _ProxyColorTable = OpenTK.Graphics.OpenGL.ColorTableTargetSgi.ProxyColorTable; - var _ProxyColorTableSgi = OpenTK.Graphics.OpenGL.ColorTableTargetSgi.ProxyColorTableSgi; - var _ProxyPostConvolutionColorTable = OpenTK.Graphics.OpenGL.ColorTableTargetSgi.ProxyPostConvolutionColorTable; - var _ProxyPostConvolutionColorTableSgi = OpenTK.Graphics.OpenGL.ColorTableTargetSgi.ProxyPostConvolutionColorTableSgi; - var _ProxyPostColorMatrixColorTable = OpenTK.Graphics.OpenGL.ColorTableTargetSgi.ProxyPostColorMatrixColorTable; - var _ProxyPostColorMatrixColorTableSgi = OpenTK.Graphics.OpenGL.ColorTableTargetSgi.ProxyPostColorMatrixColorTableSgi; -} -static void Test_ConditionalRenderType_19571() { - var _QueryWait = OpenTK.Graphics.OpenGL.ConditionalRenderType.QueryWait; - var _QueryNoWait = OpenTK.Graphics.OpenGL.ConditionalRenderType.QueryNoWait; - var _QueryByRegionWait = OpenTK.Graphics.OpenGL.ConditionalRenderType.QueryByRegionWait; - var _QueryByRegionNoWait = OpenTK.Graphics.OpenGL.ConditionalRenderType.QueryByRegionNoWait; -} -static void Test_ContextFlagMask_19572() { - var _ContextFlagForwardCompatibleBit = OpenTK.Graphics.OpenGL.ContextFlagMask.ContextFlagForwardCompatibleBit; - var _ContextFlagDebugBit = OpenTK.Graphics.OpenGL.ContextFlagMask.ContextFlagDebugBit; - var _ContextFlagDebugBitKhr = OpenTK.Graphics.OpenGL.ContextFlagMask.ContextFlagDebugBitKhr; - var _ContextFlagRobustAccessBitArb = OpenTK.Graphics.OpenGL.ContextFlagMask.ContextFlagRobustAccessBitArb; -} -static void Test_ContextProfileMask_19573() { - var _ContextCoreProfileBit = OpenTK.Graphics.OpenGL.ContextProfileMask.ContextCoreProfileBit; - var _ContextCompatibilityProfileBit = OpenTK.Graphics.OpenGL.ContextProfileMask.ContextCompatibilityProfileBit; -} -static void Test_ConvolutionBorderModeExt_19574() { - var _Reduce = OpenTK.Graphics.OpenGL.ConvolutionBorderModeExt.Reduce; - var _ReduceExt = OpenTK.Graphics.OpenGL.ConvolutionBorderModeExt.ReduceExt; -} -static void Test_ConvolutionParameter_19575() { - var _ConvolutionBorderMode = OpenTK.Graphics.OpenGL.ConvolutionParameter.ConvolutionBorderMode; - var _ConvolutionFilterScale = OpenTK.Graphics.OpenGL.ConvolutionParameter.ConvolutionFilterScale; - var _ConvolutionFilterBias = OpenTK.Graphics.OpenGL.ConvolutionParameter.ConvolutionFilterBias; -} -static void Test_ConvolutionParameterExt_19576() { - var _ConvolutionBorderMode = OpenTK.Graphics.OpenGL.ConvolutionParameterExt.ConvolutionBorderMode; - var _ConvolutionBorderModeExt = OpenTK.Graphics.OpenGL.ConvolutionParameterExt.ConvolutionBorderModeExt; - var _ConvolutionFilterScale = OpenTK.Graphics.OpenGL.ConvolutionParameterExt.ConvolutionFilterScale; - var _ConvolutionFilterScaleExt = OpenTK.Graphics.OpenGL.ConvolutionParameterExt.ConvolutionFilterScaleExt; - var _ConvolutionFilterBias = OpenTK.Graphics.OpenGL.ConvolutionParameterExt.ConvolutionFilterBias; - var _ConvolutionFilterBiasExt = OpenTK.Graphics.OpenGL.ConvolutionParameterExt.ConvolutionFilterBiasExt; -} -static void Test_ConvolutionParameterValue_19577() { - var _Reduce = OpenTK.Graphics.OpenGL.ConvolutionParameterValue.Reduce; - var _ConstantBorder = OpenTK.Graphics.OpenGL.ConvolutionParameterValue.ConstantBorder; - var _ReplicateBorder = OpenTK.Graphics.OpenGL.ConvolutionParameterValue.ReplicateBorder; -} -static void Test_ConvolutionTarget_19578() { - var _Convolution1D = OpenTK.Graphics.OpenGL.ConvolutionTarget.Convolution1D; - var _Convolution2D = OpenTK.Graphics.OpenGL.ConvolutionTarget.Convolution2D; - var _Separable2D = OpenTK.Graphics.OpenGL.ConvolutionTarget.Separable2D; -} -static void Test_ConvolutionTargetExt_19579() { - var _Convolution1D = OpenTK.Graphics.OpenGL.ConvolutionTargetExt.Convolution1D; - var _Convolution1DExt = OpenTK.Graphics.OpenGL.ConvolutionTargetExt.Convolution1DExt; - var _Convolution2D = OpenTK.Graphics.OpenGL.ConvolutionTargetExt.Convolution2D; - var _Convolution2DExt = OpenTK.Graphics.OpenGL.ConvolutionTargetExt.Convolution2DExt; -} -static void Test_CullFaceMode_19580() { - var _Front = OpenTK.Graphics.OpenGL.CullFaceMode.Front; - var _Back = OpenTK.Graphics.OpenGL.CullFaceMode.Back; - var _FrontAndBack = OpenTK.Graphics.OpenGL.CullFaceMode.FrontAndBack; -} -static void Test_DataType_19581() { -} -static void Test_DebugSeverity_19582() { - var _DebugSeverityNotification = OpenTK.Graphics.OpenGL.DebugSeverity.DebugSeverityNotification; - var _DebugSeverityHigh = OpenTK.Graphics.OpenGL.DebugSeverity.DebugSeverityHigh; - var _DebugSeverityMedium = OpenTK.Graphics.OpenGL.DebugSeverity.DebugSeverityMedium; - var _DebugSeverityLow = OpenTK.Graphics.OpenGL.DebugSeverity.DebugSeverityLow; -} -static void Test_DebugSeverityControl_19583() { - var _DontCare = OpenTK.Graphics.OpenGL.DebugSeverityControl.DontCare; - var _DebugSeverityNotification = OpenTK.Graphics.OpenGL.DebugSeverityControl.DebugSeverityNotification; - var _DebugSeverityHigh = OpenTK.Graphics.OpenGL.DebugSeverityControl.DebugSeverityHigh; - var _DebugSeverityMedium = OpenTK.Graphics.OpenGL.DebugSeverityControl.DebugSeverityMedium; - var _DebugSeverityLow = OpenTK.Graphics.OpenGL.DebugSeverityControl.DebugSeverityLow; -} -static void Test_DebugSource_19584() { - var _DebugSourceApi = OpenTK.Graphics.OpenGL.DebugSource.DebugSourceApi; - var _DebugSourceWindowSystem = OpenTK.Graphics.OpenGL.DebugSource.DebugSourceWindowSystem; - var _DebugSourceShaderCompiler = OpenTK.Graphics.OpenGL.DebugSource.DebugSourceShaderCompiler; - var _DebugSourceThirdParty = OpenTK.Graphics.OpenGL.DebugSource.DebugSourceThirdParty; - var _DebugSourceApplication = OpenTK.Graphics.OpenGL.DebugSource.DebugSourceApplication; - var _DebugSourceOther = OpenTK.Graphics.OpenGL.DebugSource.DebugSourceOther; -} -static void Test_DebugSourceControl_19585() { - var _DontCare = OpenTK.Graphics.OpenGL.DebugSourceControl.DontCare; - var _DebugSourceApi = OpenTK.Graphics.OpenGL.DebugSourceControl.DebugSourceApi; - var _DebugSourceWindowSystem = OpenTK.Graphics.OpenGL.DebugSourceControl.DebugSourceWindowSystem; - var _DebugSourceShaderCompiler = OpenTK.Graphics.OpenGL.DebugSourceControl.DebugSourceShaderCompiler; - var _DebugSourceThirdParty = OpenTK.Graphics.OpenGL.DebugSourceControl.DebugSourceThirdParty; - var _DebugSourceApplication = OpenTK.Graphics.OpenGL.DebugSourceControl.DebugSourceApplication; - var _DebugSourceOther = OpenTK.Graphics.OpenGL.DebugSourceControl.DebugSourceOther; -} -static void Test_DebugSourceExternal_19586() { - var _DebugSourceThirdParty = OpenTK.Graphics.OpenGL.DebugSourceExternal.DebugSourceThirdParty; - var _DebugSourceApplication = OpenTK.Graphics.OpenGL.DebugSourceExternal.DebugSourceApplication; -} -static void Test_DebugType_19587() { - var _DebugTypeError = OpenTK.Graphics.OpenGL.DebugType.DebugTypeError; - var _DebugTypeDeprecatedBehavior = OpenTK.Graphics.OpenGL.DebugType.DebugTypeDeprecatedBehavior; - var _DebugTypeUndefinedBehavior = OpenTK.Graphics.OpenGL.DebugType.DebugTypeUndefinedBehavior; - var _DebugTypePortability = OpenTK.Graphics.OpenGL.DebugType.DebugTypePortability; - var _DebugTypePerformance = OpenTK.Graphics.OpenGL.DebugType.DebugTypePerformance; - var _DebugTypeOther = OpenTK.Graphics.OpenGL.DebugType.DebugTypeOther; - var _DebugTypeMarker = OpenTK.Graphics.OpenGL.DebugType.DebugTypeMarker; - var _DebugTypePushGroup = OpenTK.Graphics.OpenGL.DebugType.DebugTypePushGroup; - var _DebugTypePopGroup = OpenTK.Graphics.OpenGL.DebugType.DebugTypePopGroup; -} -static void Test_DebugTypeControl_19588() { - var _DontCare = OpenTK.Graphics.OpenGL.DebugTypeControl.DontCare; - var _DebugTypeError = OpenTK.Graphics.OpenGL.DebugTypeControl.DebugTypeError; - var _DebugTypeDeprecatedBehavior = OpenTK.Graphics.OpenGL.DebugTypeControl.DebugTypeDeprecatedBehavior; - var _DebugTypeUndefinedBehavior = OpenTK.Graphics.OpenGL.DebugTypeControl.DebugTypeUndefinedBehavior; - var _DebugTypePortability = OpenTK.Graphics.OpenGL.DebugTypeControl.DebugTypePortability; - var _DebugTypePerformance = OpenTK.Graphics.OpenGL.DebugTypeControl.DebugTypePerformance; - var _DebugTypeOther = OpenTK.Graphics.OpenGL.DebugTypeControl.DebugTypeOther; - var _DebugTypeMarker = OpenTK.Graphics.OpenGL.DebugTypeControl.DebugTypeMarker; - var _DebugTypePushGroup = OpenTK.Graphics.OpenGL.DebugTypeControl.DebugTypePushGroup; - var _DebugTypePopGroup = OpenTK.Graphics.OpenGL.DebugTypeControl.DebugTypePopGroup; -} -static void Test_DepthFunction_19589() { - var _Never = OpenTK.Graphics.OpenGL.DepthFunction.Never; - var _Less = OpenTK.Graphics.OpenGL.DepthFunction.Less; - var _Equal = OpenTK.Graphics.OpenGL.DepthFunction.Equal; - var _Lequal = OpenTK.Graphics.OpenGL.DepthFunction.Lequal; - var _Greater = OpenTK.Graphics.OpenGL.DepthFunction.Greater; - var _Notequal = OpenTK.Graphics.OpenGL.DepthFunction.Notequal; - var _Gequal = OpenTK.Graphics.OpenGL.DepthFunction.Gequal; - var _Always = OpenTK.Graphics.OpenGL.DepthFunction.Always; -} -static void Test_DrawBufferMode_19590() { - var _None = OpenTK.Graphics.OpenGL.DrawBufferMode.None; - var _NoneOes = OpenTK.Graphics.OpenGL.DrawBufferMode.NoneOes; - var _FrontLeft = OpenTK.Graphics.OpenGL.DrawBufferMode.FrontLeft; - var _FrontRight = OpenTK.Graphics.OpenGL.DrawBufferMode.FrontRight; - var _BackLeft = OpenTK.Graphics.OpenGL.DrawBufferMode.BackLeft; - var _BackRight = OpenTK.Graphics.OpenGL.DrawBufferMode.BackRight; - var _Front = OpenTK.Graphics.OpenGL.DrawBufferMode.Front; - var _Back = OpenTK.Graphics.OpenGL.DrawBufferMode.Back; - var _Left = OpenTK.Graphics.OpenGL.DrawBufferMode.Left; - var _Right = OpenTK.Graphics.OpenGL.DrawBufferMode.Right; - var _FrontAndBack = OpenTK.Graphics.OpenGL.DrawBufferMode.FrontAndBack; - var _Aux0 = OpenTK.Graphics.OpenGL.DrawBufferMode.Aux0; - var _Aux1 = OpenTK.Graphics.OpenGL.DrawBufferMode.Aux1; - var _Aux2 = OpenTK.Graphics.OpenGL.DrawBufferMode.Aux2; - var _Aux3 = OpenTK.Graphics.OpenGL.DrawBufferMode.Aux3; - var _ColorAttachment0 = OpenTK.Graphics.OpenGL.DrawBufferMode.ColorAttachment0; - var _ColorAttachment1 = OpenTK.Graphics.OpenGL.DrawBufferMode.ColorAttachment1; - var _ColorAttachment2 = OpenTK.Graphics.OpenGL.DrawBufferMode.ColorAttachment2; - var _ColorAttachment3 = OpenTK.Graphics.OpenGL.DrawBufferMode.ColorAttachment3; - var _ColorAttachment4 = OpenTK.Graphics.OpenGL.DrawBufferMode.ColorAttachment4; - var _ColorAttachment5 = OpenTK.Graphics.OpenGL.DrawBufferMode.ColorAttachment5; - var _ColorAttachment6 = OpenTK.Graphics.OpenGL.DrawBufferMode.ColorAttachment6; - var _ColorAttachment7 = OpenTK.Graphics.OpenGL.DrawBufferMode.ColorAttachment7; - var _ColorAttachment8 = OpenTK.Graphics.OpenGL.DrawBufferMode.ColorAttachment8; - var _ColorAttachment9 = OpenTK.Graphics.OpenGL.DrawBufferMode.ColorAttachment9; - var _ColorAttachment10 = OpenTK.Graphics.OpenGL.DrawBufferMode.ColorAttachment10; - var _ColorAttachment11 = OpenTK.Graphics.OpenGL.DrawBufferMode.ColorAttachment11; - var _ColorAttachment12 = OpenTK.Graphics.OpenGL.DrawBufferMode.ColorAttachment12; - var _ColorAttachment13 = OpenTK.Graphics.OpenGL.DrawBufferMode.ColorAttachment13; - var _ColorAttachment14 = OpenTK.Graphics.OpenGL.DrawBufferMode.ColorAttachment14; - var _ColorAttachment15 = OpenTK.Graphics.OpenGL.DrawBufferMode.ColorAttachment15; -} -static void Test_DrawBuffersEnum_19591() { - var _None = OpenTK.Graphics.OpenGL.DrawBuffersEnum.None; - var _FrontLeft = OpenTK.Graphics.OpenGL.DrawBuffersEnum.FrontLeft; - var _FrontRight = OpenTK.Graphics.OpenGL.DrawBuffersEnum.FrontRight; - var _BackLeft = OpenTK.Graphics.OpenGL.DrawBuffersEnum.BackLeft; - var _BackRight = OpenTK.Graphics.OpenGL.DrawBuffersEnum.BackRight; - var _Aux0 = OpenTK.Graphics.OpenGL.DrawBuffersEnum.Aux0; - var _Aux1 = OpenTK.Graphics.OpenGL.DrawBuffersEnum.Aux1; - var _Aux2 = OpenTK.Graphics.OpenGL.DrawBuffersEnum.Aux2; - var _Aux3 = OpenTK.Graphics.OpenGL.DrawBuffersEnum.Aux3; - var _ColorAttachment0 = OpenTK.Graphics.OpenGL.DrawBuffersEnum.ColorAttachment0; - var _ColorAttachment1 = OpenTK.Graphics.OpenGL.DrawBuffersEnum.ColorAttachment1; - var _ColorAttachment2 = OpenTK.Graphics.OpenGL.DrawBuffersEnum.ColorAttachment2; - var _ColorAttachment3 = OpenTK.Graphics.OpenGL.DrawBuffersEnum.ColorAttachment3; - var _ColorAttachment4 = OpenTK.Graphics.OpenGL.DrawBuffersEnum.ColorAttachment4; - var _ColorAttachment5 = OpenTK.Graphics.OpenGL.DrawBuffersEnum.ColorAttachment5; - var _ColorAttachment6 = OpenTK.Graphics.OpenGL.DrawBuffersEnum.ColorAttachment6; - var _ColorAttachment7 = OpenTK.Graphics.OpenGL.DrawBuffersEnum.ColorAttachment7; - var _ColorAttachment8 = OpenTK.Graphics.OpenGL.DrawBuffersEnum.ColorAttachment8; - var _ColorAttachment9 = OpenTK.Graphics.OpenGL.DrawBuffersEnum.ColorAttachment9; - var _ColorAttachment10 = OpenTK.Graphics.OpenGL.DrawBuffersEnum.ColorAttachment10; - var _ColorAttachment11 = OpenTK.Graphics.OpenGL.DrawBuffersEnum.ColorAttachment11; - var _ColorAttachment12 = OpenTK.Graphics.OpenGL.DrawBuffersEnum.ColorAttachment12; - var _ColorAttachment13 = OpenTK.Graphics.OpenGL.DrawBuffersEnum.ColorAttachment13; - var _ColorAttachment14 = OpenTK.Graphics.OpenGL.DrawBuffersEnum.ColorAttachment14; - var _ColorAttachment15 = OpenTK.Graphics.OpenGL.DrawBuffersEnum.ColorAttachment15; -} -static void Test_DrawElementsType_19592() { - var _UnsignedByte = OpenTK.Graphics.OpenGL.DrawElementsType.UnsignedByte; - var _UnsignedShort = OpenTK.Graphics.OpenGL.DrawElementsType.UnsignedShort; - var _UnsignedInt = OpenTK.Graphics.OpenGL.DrawElementsType.UnsignedInt; -} -static void Test_EnableCap_19593() { - var _PointSmooth = OpenTK.Graphics.OpenGL.EnableCap.PointSmooth; - var _LineSmooth = OpenTK.Graphics.OpenGL.EnableCap.LineSmooth; - var _LineStipple = OpenTK.Graphics.OpenGL.EnableCap.LineStipple; - var _PolygonSmooth = OpenTK.Graphics.OpenGL.EnableCap.PolygonSmooth; - var _PolygonStipple = OpenTK.Graphics.OpenGL.EnableCap.PolygonStipple; - var _CullFace = OpenTK.Graphics.OpenGL.EnableCap.CullFace; - var _Lighting = OpenTK.Graphics.OpenGL.EnableCap.Lighting; - var _ColorMaterial = OpenTK.Graphics.OpenGL.EnableCap.ColorMaterial; - var _Fog = OpenTK.Graphics.OpenGL.EnableCap.Fog; - var _DepthTest = OpenTK.Graphics.OpenGL.EnableCap.DepthTest; - var _StencilTest = OpenTK.Graphics.OpenGL.EnableCap.StencilTest; - var _Normalize = OpenTK.Graphics.OpenGL.EnableCap.Normalize; - var _AlphaTest = OpenTK.Graphics.OpenGL.EnableCap.AlphaTest; - var _Dither = OpenTK.Graphics.OpenGL.EnableCap.Dither; - var _Blend = OpenTK.Graphics.OpenGL.EnableCap.Blend; - var _IndexLogicOp = OpenTK.Graphics.OpenGL.EnableCap.IndexLogicOp; - var _ColorLogicOp = OpenTK.Graphics.OpenGL.EnableCap.ColorLogicOp; - var _ScissorTest = OpenTK.Graphics.OpenGL.EnableCap.ScissorTest; - var _TextureGenS = OpenTK.Graphics.OpenGL.EnableCap.TextureGenS; - var _TextureGenT = OpenTK.Graphics.OpenGL.EnableCap.TextureGenT; - var _TextureGenR = OpenTK.Graphics.OpenGL.EnableCap.TextureGenR; - var _TextureGenQ = OpenTK.Graphics.OpenGL.EnableCap.TextureGenQ; - var _AutoNormal = OpenTK.Graphics.OpenGL.EnableCap.AutoNormal; - var _Map1Color4 = OpenTK.Graphics.OpenGL.EnableCap.Map1Color4; - var _Map1Index = OpenTK.Graphics.OpenGL.EnableCap.Map1Index; - var _Map1Normal = OpenTK.Graphics.OpenGL.EnableCap.Map1Normal; - var _Map1TextureCoord1 = OpenTK.Graphics.OpenGL.EnableCap.Map1TextureCoord1; - var _Map1TextureCoord2 = OpenTK.Graphics.OpenGL.EnableCap.Map1TextureCoord2; - var _Map1TextureCoord3 = OpenTK.Graphics.OpenGL.EnableCap.Map1TextureCoord3; - var _Map1TextureCoord4 = OpenTK.Graphics.OpenGL.EnableCap.Map1TextureCoord4; - var _Map1Vertex3 = OpenTK.Graphics.OpenGL.EnableCap.Map1Vertex3; - var _Map1Vertex4 = OpenTK.Graphics.OpenGL.EnableCap.Map1Vertex4; - var _Map2Color4 = OpenTK.Graphics.OpenGL.EnableCap.Map2Color4; - var _Map2Index = OpenTK.Graphics.OpenGL.EnableCap.Map2Index; - var _Map2Normal = OpenTK.Graphics.OpenGL.EnableCap.Map2Normal; - var _Map2TextureCoord1 = OpenTK.Graphics.OpenGL.EnableCap.Map2TextureCoord1; - var _Map2TextureCoord2 = OpenTK.Graphics.OpenGL.EnableCap.Map2TextureCoord2; - var _Map2TextureCoord3 = OpenTK.Graphics.OpenGL.EnableCap.Map2TextureCoord3; - var _Map2TextureCoord4 = OpenTK.Graphics.OpenGL.EnableCap.Map2TextureCoord4; - var _Map2Vertex3 = OpenTK.Graphics.OpenGL.EnableCap.Map2Vertex3; - var _Map2Vertex4 = OpenTK.Graphics.OpenGL.EnableCap.Map2Vertex4; - var _Texture1D = OpenTK.Graphics.OpenGL.EnableCap.Texture1D; - var _Texture2D = OpenTK.Graphics.OpenGL.EnableCap.Texture2D; - var _PolygonOffsetPoint = OpenTK.Graphics.OpenGL.EnableCap.PolygonOffsetPoint; - var _PolygonOffsetLine = OpenTK.Graphics.OpenGL.EnableCap.PolygonOffsetLine; - var _ClipDistance0 = OpenTK.Graphics.OpenGL.EnableCap.ClipDistance0; - var _ClipPlane0 = OpenTK.Graphics.OpenGL.EnableCap.ClipPlane0; - var _ClipDistance1 = OpenTK.Graphics.OpenGL.EnableCap.ClipDistance1; - var _ClipPlane1 = OpenTK.Graphics.OpenGL.EnableCap.ClipPlane1; - var _ClipDistance2 = OpenTK.Graphics.OpenGL.EnableCap.ClipDistance2; - var _ClipPlane2 = OpenTK.Graphics.OpenGL.EnableCap.ClipPlane2; - var _ClipDistance3 = OpenTK.Graphics.OpenGL.EnableCap.ClipDistance3; - var _ClipPlane3 = OpenTK.Graphics.OpenGL.EnableCap.ClipPlane3; - var _ClipDistance4 = OpenTK.Graphics.OpenGL.EnableCap.ClipDistance4; - var _ClipPlane4 = OpenTK.Graphics.OpenGL.EnableCap.ClipPlane4; - var _ClipDistance5 = OpenTK.Graphics.OpenGL.EnableCap.ClipDistance5; - var _ClipPlane5 = OpenTK.Graphics.OpenGL.EnableCap.ClipPlane5; - var _ClipDistance6 = OpenTK.Graphics.OpenGL.EnableCap.ClipDistance6; - var _ClipDistance7 = OpenTK.Graphics.OpenGL.EnableCap.ClipDistance7; - var _Light0 = OpenTK.Graphics.OpenGL.EnableCap.Light0; - var _Light1 = OpenTK.Graphics.OpenGL.EnableCap.Light1; - var _Light2 = OpenTK.Graphics.OpenGL.EnableCap.Light2; - var _Light3 = OpenTK.Graphics.OpenGL.EnableCap.Light3; - var _Light4 = OpenTK.Graphics.OpenGL.EnableCap.Light4; - var _Light5 = OpenTK.Graphics.OpenGL.EnableCap.Light5; - var _Light6 = OpenTK.Graphics.OpenGL.EnableCap.Light6; - var _Light7 = OpenTK.Graphics.OpenGL.EnableCap.Light7; - var _Convolution1D = OpenTK.Graphics.OpenGL.EnableCap.Convolution1D; - var _Convolution1DExt = OpenTK.Graphics.OpenGL.EnableCap.Convolution1DExt; - var _Convolution2D = OpenTK.Graphics.OpenGL.EnableCap.Convolution2D; - var _Convolution2DExt = OpenTK.Graphics.OpenGL.EnableCap.Convolution2DExt; - var _Separable2D = OpenTK.Graphics.OpenGL.EnableCap.Separable2D; - var _Separable2DExt = OpenTK.Graphics.OpenGL.EnableCap.Separable2DExt; - var _Histogram = OpenTK.Graphics.OpenGL.EnableCap.Histogram; - var _HistogramExt = OpenTK.Graphics.OpenGL.EnableCap.HistogramExt; - var _MinmaxExt = OpenTK.Graphics.OpenGL.EnableCap.MinmaxExt; - var _PolygonOffsetFill = OpenTK.Graphics.OpenGL.EnableCap.PolygonOffsetFill; - var _RescaleNormal = OpenTK.Graphics.OpenGL.EnableCap.RescaleNormal; - var _RescaleNormalExt = OpenTK.Graphics.OpenGL.EnableCap.RescaleNormalExt; - var _Texture3DExt = OpenTK.Graphics.OpenGL.EnableCap.Texture3DExt; - var _VertexArray = OpenTK.Graphics.OpenGL.EnableCap.VertexArray; - var _NormalArray = OpenTK.Graphics.OpenGL.EnableCap.NormalArray; - var _ColorArray = OpenTK.Graphics.OpenGL.EnableCap.ColorArray; - var _IndexArray = OpenTK.Graphics.OpenGL.EnableCap.IndexArray; - var _TextureCoordArray = OpenTK.Graphics.OpenGL.EnableCap.TextureCoordArray; - var _EdgeFlagArray = OpenTK.Graphics.OpenGL.EnableCap.EdgeFlagArray; - var _InterlaceSgix = OpenTK.Graphics.OpenGL.EnableCap.InterlaceSgix; - var _Multisample = OpenTK.Graphics.OpenGL.EnableCap.Multisample; - var _MultisampleSgis = OpenTK.Graphics.OpenGL.EnableCap.MultisampleSgis; - var _SampleAlphaToCoverage = OpenTK.Graphics.OpenGL.EnableCap.SampleAlphaToCoverage; - var _SampleAlphaToMaskSgis = OpenTK.Graphics.OpenGL.EnableCap.SampleAlphaToMaskSgis; - var _SampleAlphaToOne = OpenTK.Graphics.OpenGL.EnableCap.SampleAlphaToOne; - var _SampleAlphaToOneSgis = OpenTK.Graphics.OpenGL.EnableCap.SampleAlphaToOneSgis; - var _SampleCoverage = OpenTK.Graphics.OpenGL.EnableCap.SampleCoverage; - var _SampleMaskSgis = OpenTK.Graphics.OpenGL.EnableCap.SampleMaskSgis; - var _TextureColorTableSgi = OpenTK.Graphics.OpenGL.EnableCap.TextureColorTableSgi; - var _ColorTable = OpenTK.Graphics.OpenGL.EnableCap.ColorTable; - var _ColorTableSgi = OpenTK.Graphics.OpenGL.EnableCap.ColorTableSgi; - var _PostConvolutionColorTable = OpenTK.Graphics.OpenGL.EnableCap.PostConvolutionColorTable; - var _PostConvolutionColorTableSgi = OpenTK.Graphics.OpenGL.EnableCap.PostConvolutionColorTableSgi; - var _PostColorMatrixColorTable = OpenTK.Graphics.OpenGL.EnableCap.PostColorMatrixColorTable; - var _PostColorMatrixColorTableSgi = OpenTK.Graphics.OpenGL.EnableCap.PostColorMatrixColorTableSgi; - var _Texture4DSgis = OpenTK.Graphics.OpenGL.EnableCap.Texture4DSgis; - var _PixelTexGenSgix = OpenTK.Graphics.OpenGL.EnableCap.PixelTexGenSgix; - var _SpriteSgix = OpenTK.Graphics.OpenGL.EnableCap.SpriteSgix; - var _ReferencePlaneSgix = OpenTK.Graphics.OpenGL.EnableCap.ReferencePlaneSgix; - var _IrInstrument1Sgix = OpenTK.Graphics.OpenGL.EnableCap.IrInstrument1Sgix; - var _CalligraphicFragmentSgix = OpenTK.Graphics.OpenGL.EnableCap.CalligraphicFragmentSgix; - var _FramezoomSgix = OpenTK.Graphics.OpenGL.EnableCap.FramezoomSgix; - var _FogOffsetSgix = OpenTK.Graphics.OpenGL.EnableCap.FogOffsetSgix; - var _SharedTexturePaletteExt = OpenTK.Graphics.OpenGL.EnableCap.SharedTexturePaletteExt; - var _DebugOutputSynchronous = OpenTK.Graphics.OpenGL.EnableCap.DebugOutputSynchronous; - var _AsyncHistogramSgix = OpenTK.Graphics.OpenGL.EnableCap.AsyncHistogramSgix; - var _PixelTextureSgis = OpenTK.Graphics.OpenGL.EnableCap.PixelTextureSgis; - var _AsyncTexImageSgix = OpenTK.Graphics.OpenGL.EnableCap.AsyncTexImageSgix; - var _AsyncDrawPixelsSgix = OpenTK.Graphics.OpenGL.EnableCap.AsyncDrawPixelsSgix; - var _AsyncReadPixelsSgix = OpenTK.Graphics.OpenGL.EnableCap.AsyncReadPixelsSgix; - var _FragmentLightingSgix = OpenTK.Graphics.OpenGL.EnableCap.FragmentLightingSgix; - var _FragmentColorMaterialSgix = OpenTK.Graphics.OpenGL.EnableCap.FragmentColorMaterialSgix; - var _FragmentLight0Sgix = OpenTK.Graphics.OpenGL.EnableCap.FragmentLight0Sgix; - var _FragmentLight1Sgix = OpenTK.Graphics.OpenGL.EnableCap.FragmentLight1Sgix; - var _FragmentLight2Sgix = OpenTK.Graphics.OpenGL.EnableCap.FragmentLight2Sgix; - var _FragmentLight3Sgix = OpenTK.Graphics.OpenGL.EnableCap.FragmentLight3Sgix; - var _FragmentLight4Sgix = OpenTK.Graphics.OpenGL.EnableCap.FragmentLight4Sgix; - var _FragmentLight5Sgix = OpenTK.Graphics.OpenGL.EnableCap.FragmentLight5Sgix; - var _FragmentLight6Sgix = OpenTK.Graphics.OpenGL.EnableCap.FragmentLight6Sgix; - var _FragmentLight7Sgix = OpenTK.Graphics.OpenGL.EnableCap.FragmentLight7Sgix; - var _FogCoordArray = OpenTK.Graphics.OpenGL.EnableCap.FogCoordArray; - var _ColorSum = OpenTK.Graphics.OpenGL.EnableCap.ColorSum; - var _SecondaryColorArray = OpenTK.Graphics.OpenGL.EnableCap.SecondaryColorArray; - var _TextureRectangle = OpenTK.Graphics.OpenGL.EnableCap.TextureRectangle; - var _TextureCubeMap = OpenTK.Graphics.OpenGL.EnableCap.TextureCubeMap; - var _ProgramPointSize = OpenTK.Graphics.OpenGL.EnableCap.ProgramPointSize; - var _VertexProgramPointSize = OpenTK.Graphics.OpenGL.EnableCap.VertexProgramPointSize; - var _VertexProgramTwoSide = OpenTK.Graphics.OpenGL.EnableCap.VertexProgramTwoSide; - var _DepthClamp = OpenTK.Graphics.OpenGL.EnableCap.DepthClamp; - var _TextureCubeMapSeamless = OpenTK.Graphics.OpenGL.EnableCap.TextureCubeMapSeamless; - var _PointSprite = OpenTK.Graphics.OpenGL.EnableCap.PointSprite; - var _SampleShading = OpenTK.Graphics.OpenGL.EnableCap.SampleShading; - var _RasterizerDiscard = OpenTK.Graphics.OpenGL.EnableCap.RasterizerDiscard; - var _PrimitiveRestartFixedIndex = OpenTK.Graphics.OpenGL.EnableCap.PrimitiveRestartFixedIndex; - var _FramebufferSrgb = OpenTK.Graphics.OpenGL.EnableCap.FramebufferSrgb; - var _SampleMask = OpenTK.Graphics.OpenGL.EnableCap.SampleMask; - var _PrimitiveRestart = OpenTK.Graphics.OpenGL.EnableCap.PrimitiveRestart; - var _DebugOutput = OpenTK.Graphics.OpenGL.EnableCap.DebugOutput; -} -static void Test_ErrorCode_19594() { - var _NoError = OpenTK.Graphics.OpenGL.ErrorCode.NoError; - var _InvalidEnum = OpenTK.Graphics.OpenGL.ErrorCode.InvalidEnum; - var _InvalidValue = OpenTK.Graphics.OpenGL.ErrorCode.InvalidValue; - var _InvalidOperation = OpenTK.Graphics.OpenGL.ErrorCode.InvalidOperation; - var _StackOverflow = OpenTK.Graphics.OpenGL.ErrorCode.StackOverflow; - var _StackUnderflow = OpenTK.Graphics.OpenGL.ErrorCode.StackUnderflow; - var _OutOfMemory = OpenTK.Graphics.OpenGL.ErrorCode.OutOfMemory; - var _InvalidFramebufferOperation = OpenTK.Graphics.OpenGL.ErrorCode.InvalidFramebufferOperation; - var _InvalidFramebufferOperationExt = OpenTK.Graphics.OpenGL.ErrorCode.InvalidFramebufferOperationExt; - var _InvalidFramebufferOperationOes = OpenTK.Graphics.OpenGL.ErrorCode.InvalidFramebufferOperationOes; - var _TableTooLarge = OpenTK.Graphics.OpenGL.ErrorCode.TableTooLarge; - var _TableTooLargeExt = OpenTK.Graphics.OpenGL.ErrorCode.TableTooLargeExt; - var _TextureTooLargeExt = OpenTK.Graphics.OpenGL.ErrorCode.TextureTooLargeExt; -} -static void Test_Ext422Pixels_19595() { - var _Gl422Ext = OpenTK.Graphics.OpenGL.Ext422Pixels.Gl422Ext; - var _Gl422RevExt = OpenTK.Graphics.OpenGL.Ext422Pixels.Gl422RevExt; - var _Gl422AverageExt = OpenTK.Graphics.OpenGL.Ext422Pixels.Gl422AverageExt; - var _Gl422RevAverageExt = OpenTK.Graphics.OpenGL.Ext422Pixels.Gl422RevAverageExt; -} -static void Test_ExtAbgr_19596() { - var _AbgrExt = OpenTK.Graphics.OpenGL.ExtAbgr.AbgrExt; -} -static void Test_ExtBgra_19597() { - var _BgrExt = OpenTK.Graphics.OpenGL.ExtBgra.BgrExt; - var _BgraExt = OpenTK.Graphics.OpenGL.ExtBgra.BgraExt; -} -static void Test_ExtBindableUniform_19598() { - var _MaxVertexBindableUniformsExt = OpenTK.Graphics.OpenGL.ExtBindableUniform.MaxVertexBindableUniformsExt; - var _MaxFragmentBindableUniformsExt = OpenTK.Graphics.OpenGL.ExtBindableUniform.MaxFragmentBindableUniformsExt; - var _MaxGeometryBindableUniformsExt = OpenTK.Graphics.OpenGL.ExtBindableUniform.MaxGeometryBindableUniformsExt; - var _MaxBindableUniformSizeExt = OpenTK.Graphics.OpenGL.ExtBindableUniform.MaxBindableUniformSizeExt; - var _UniformBufferExt = OpenTK.Graphics.OpenGL.ExtBindableUniform.UniformBufferExt; - var _UniformBufferBindingExt = OpenTK.Graphics.OpenGL.ExtBindableUniform.UniformBufferBindingExt; -} -static void Test_ExtBlendColor_19599() { - var _ConstantColorExt = OpenTK.Graphics.OpenGL.ExtBlendColor.ConstantColorExt; - var _OneMinusConstantColorExt = OpenTK.Graphics.OpenGL.ExtBlendColor.OneMinusConstantColorExt; - var _ConstantAlphaExt = OpenTK.Graphics.OpenGL.ExtBlendColor.ConstantAlphaExt; - var _OneMinusConstantAlphaExt = OpenTK.Graphics.OpenGL.ExtBlendColor.OneMinusConstantAlphaExt; - var _BlendColorExt = OpenTK.Graphics.OpenGL.ExtBlendColor.BlendColorExt; -} -static void Test_ExtBlendEquationSeparate_19600() { - var _BlendEquationRgbExt = OpenTK.Graphics.OpenGL.ExtBlendEquationSeparate.BlendEquationRgbExt; - var _BlendEquationAlphaExt = OpenTK.Graphics.OpenGL.ExtBlendEquationSeparate.BlendEquationAlphaExt; -} -static void Test_ExtBlendFuncSeparate_19601() { - var _BlendDstRgbExt = OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate.BlendDstRgbExt; - var _BlendSrcRgbExt = OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate.BlendSrcRgbExt; - var _BlendDstAlphaExt = OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate.BlendDstAlphaExt; - var _BlendSrcAlphaExt = OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate.BlendSrcAlphaExt; -} -static void Test_ExtBlendLogicOp_19602() { -} -static void Test_ExtBlendMinmax_19603() { - var _FuncAddExt = OpenTK.Graphics.OpenGL.ExtBlendMinmax.FuncAddExt; - var _MinExt = OpenTK.Graphics.OpenGL.ExtBlendMinmax.MinExt; - var _MaxExt = OpenTK.Graphics.OpenGL.ExtBlendMinmax.MaxExt; - var _BlendEquationExt = OpenTK.Graphics.OpenGL.ExtBlendMinmax.BlendEquationExt; -} -static void Test_ExtBlendSubtract_19604() { - var _FuncSubtractExt = OpenTK.Graphics.OpenGL.ExtBlendSubtract.FuncSubtractExt; - var _FuncReverseSubtractExt = OpenTK.Graphics.OpenGL.ExtBlendSubtract.FuncReverseSubtractExt; -} -static void Test_ExtClipVolumeHint_19605() { - var _ClipVolumeClippingHintExt = OpenTK.Graphics.OpenGL.ExtClipVolumeHint.ClipVolumeClippingHintExt; -} -static void Test_ExtCmyka_19606() { - var _CmykExt = OpenTK.Graphics.OpenGL.ExtCmyka.CmykExt; - var _CmykaExt = OpenTK.Graphics.OpenGL.ExtCmyka.CmykaExt; - var _PackCmykHintExt = OpenTK.Graphics.OpenGL.ExtCmyka.PackCmykHintExt; - var _UnpackCmykHintExt = OpenTK.Graphics.OpenGL.ExtCmyka.UnpackCmykHintExt; -} -static void Test_ExtColorSubtable_19607() { -} -static void Test_ExtCompiledVertexArray_19608() { - var _ArrayElementLockFirstExt = OpenTK.Graphics.OpenGL.ExtCompiledVertexArray.ArrayElementLockFirstExt; - var _ArrayElementLockCountExt = OpenTK.Graphics.OpenGL.ExtCompiledVertexArray.ArrayElementLockCountExt; -} -static void Test_ExtConvolution_19609() { - var _Convolution1DExt = OpenTK.Graphics.OpenGL.ExtConvolution.Convolution1DExt; - var _Convolution2DExt = OpenTK.Graphics.OpenGL.ExtConvolution.Convolution2DExt; - var _Separable2DExt = OpenTK.Graphics.OpenGL.ExtConvolution.Separable2DExt; - var _ConvolutionBorderModeExt = OpenTK.Graphics.OpenGL.ExtConvolution.ConvolutionBorderModeExt; - var _ConvolutionFilterScaleExt = OpenTK.Graphics.OpenGL.ExtConvolution.ConvolutionFilterScaleExt; - var _ConvolutionFilterBiasExt = OpenTK.Graphics.OpenGL.ExtConvolution.ConvolutionFilterBiasExt; - var _ReduceExt = OpenTK.Graphics.OpenGL.ExtConvolution.ReduceExt; - var _ConvolutionFormatExt = OpenTK.Graphics.OpenGL.ExtConvolution.ConvolutionFormatExt; - var _ConvolutionWidthExt = OpenTK.Graphics.OpenGL.ExtConvolution.ConvolutionWidthExt; - var _ConvolutionHeightExt = OpenTK.Graphics.OpenGL.ExtConvolution.ConvolutionHeightExt; - var _MaxConvolutionWidthExt = OpenTK.Graphics.OpenGL.ExtConvolution.MaxConvolutionWidthExt; - var _MaxConvolutionHeightExt = OpenTK.Graphics.OpenGL.ExtConvolution.MaxConvolutionHeightExt; - var _PostConvolutionRedScaleExt = OpenTK.Graphics.OpenGL.ExtConvolution.PostConvolutionRedScaleExt; - var _PostConvolutionGreenScaleExt = OpenTK.Graphics.OpenGL.ExtConvolution.PostConvolutionGreenScaleExt; - var _PostConvolutionBlueScaleExt = OpenTK.Graphics.OpenGL.ExtConvolution.PostConvolutionBlueScaleExt; - var _PostConvolutionAlphaScaleExt = OpenTK.Graphics.OpenGL.ExtConvolution.PostConvolutionAlphaScaleExt; - var _PostConvolutionRedBiasExt = OpenTK.Graphics.OpenGL.ExtConvolution.PostConvolutionRedBiasExt; - var _PostConvolutionGreenBiasExt = OpenTK.Graphics.OpenGL.ExtConvolution.PostConvolutionGreenBiasExt; - var _PostConvolutionBlueBiasExt = OpenTK.Graphics.OpenGL.ExtConvolution.PostConvolutionBlueBiasExt; - var _PostConvolutionAlphaBiasExt = OpenTK.Graphics.OpenGL.ExtConvolution.PostConvolutionAlphaBiasExt; -} -static void Test_ExtCoordinateFrame_19610() { - var _TangentArrayExt = OpenTK.Graphics.OpenGL.ExtCoordinateFrame.TangentArrayExt; - var _BinormalArrayExt = OpenTK.Graphics.OpenGL.ExtCoordinateFrame.BinormalArrayExt; - var _CurrentTangentExt = OpenTK.Graphics.OpenGL.ExtCoordinateFrame.CurrentTangentExt; - var _CurrentBinormalExt = OpenTK.Graphics.OpenGL.ExtCoordinateFrame.CurrentBinormalExt; - var _TangentArrayTypeExt = OpenTK.Graphics.OpenGL.ExtCoordinateFrame.TangentArrayTypeExt; - var _TangentArrayStrideExt = OpenTK.Graphics.OpenGL.ExtCoordinateFrame.TangentArrayStrideExt; - var _BinormalArrayTypeExt = OpenTK.Graphics.OpenGL.ExtCoordinateFrame.BinormalArrayTypeExt; - var _BinormalArrayStrideExt = OpenTK.Graphics.OpenGL.ExtCoordinateFrame.BinormalArrayStrideExt; - var _TangentArrayPointerExt = OpenTK.Graphics.OpenGL.ExtCoordinateFrame.TangentArrayPointerExt; - var _BinormalArrayPointerExt = OpenTK.Graphics.OpenGL.ExtCoordinateFrame.BinormalArrayPointerExt; - var _Map1TangentExt = OpenTK.Graphics.OpenGL.ExtCoordinateFrame.Map1TangentExt; - var _Map2TangentExt = OpenTK.Graphics.OpenGL.ExtCoordinateFrame.Map2TangentExt; - var _Map1BinormalExt = OpenTK.Graphics.OpenGL.ExtCoordinateFrame.Map1BinormalExt; - var _Map2BinormalExt = OpenTK.Graphics.OpenGL.ExtCoordinateFrame.Map2BinormalExt; -} -static void Test_ExtCopyTexture_19611() { -} -static void Test_ExtCullVertex_19612() { - var _CullVertexExt = OpenTK.Graphics.OpenGL.ExtCullVertex.CullVertexExt; - var _CullVertexEyePositionExt = OpenTK.Graphics.OpenGL.ExtCullVertex.CullVertexEyePositionExt; - var _CullVertexObjectPositionExt = OpenTK.Graphics.OpenGL.ExtCullVertex.CullVertexObjectPositionExt; -} -static void Test_ExtDebugLabel_19613() { - var _Sampler = OpenTK.Graphics.OpenGL.ExtDebugLabel.Sampler; - var _ProgramPipelineObjectExt = OpenTK.Graphics.OpenGL.ExtDebugLabel.ProgramPipelineObjectExt; - var _ProgramObjectExt = OpenTK.Graphics.OpenGL.ExtDebugLabel.ProgramObjectExt; - var _ShaderObjectExt = OpenTK.Graphics.OpenGL.ExtDebugLabel.ShaderObjectExt; - var _TransformFeedback = OpenTK.Graphics.OpenGL.ExtDebugLabel.TransformFeedback; - var _BufferObjectExt = OpenTK.Graphics.OpenGL.ExtDebugLabel.BufferObjectExt; - var _QueryObjectExt = OpenTK.Graphics.OpenGL.ExtDebugLabel.QueryObjectExt; - var _VertexArrayObjectExt = OpenTK.Graphics.OpenGL.ExtDebugLabel.VertexArrayObjectExt; -} -static void Test_ExtDebugMarker_19614() { -} -static void Test_ExtDepthBoundsTest_19615() { - var _DepthBoundsTestExt = OpenTK.Graphics.OpenGL.ExtDepthBoundsTest.DepthBoundsTestExt; - var _DepthBoundsExt = OpenTK.Graphics.OpenGL.ExtDepthBoundsTest.DepthBoundsExt; -} -static void Test_ExtDirectStateAccess_19616() { - var _ProgramMatrixExt = OpenTK.Graphics.OpenGL.ExtDirectStateAccess.ProgramMatrixExt; - var _TransposeProgramMatrixExt = OpenTK.Graphics.OpenGL.ExtDirectStateAccess.TransposeProgramMatrixExt; - var _ProgramMatrixStackDepthExt = OpenTK.Graphics.OpenGL.ExtDirectStateAccess.ProgramMatrixStackDepthExt; -} -static void Test_ExtDrawBuffers2_19617() { -} -static void Test_ExtDrawInstanced_19618() { -} -static void Test_ExtDrawRangeElements_19619() { - var _MaxElementsVerticesExt = OpenTK.Graphics.OpenGL.ExtDrawRangeElements.MaxElementsVerticesExt; - var _MaxElementsIndicesExt = OpenTK.Graphics.OpenGL.ExtDrawRangeElements.MaxElementsIndicesExt; -} -static void Test_ExtFogCoord_19620() { - var _FogCoordinateSourceExt = OpenTK.Graphics.OpenGL.ExtFogCoord.FogCoordinateSourceExt; - var _FogCoordinateExt = OpenTK.Graphics.OpenGL.ExtFogCoord.FogCoordinateExt; - var _FragmentDepthExt = OpenTK.Graphics.OpenGL.ExtFogCoord.FragmentDepthExt; - var _CurrentFogCoordinateExt = OpenTK.Graphics.OpenGL.ExtFogCoord.CurrentFogCoordinateExt; - var _FogCoordinateArrayTypeExt = OpenTK.Graphics.OpenGL.ExtFogCoord.FogCoordinateArrayTypeExt; - var _FogCoordinateArrayStrideExt = OpenTK.Graphics.OpenGL.ExtFogCoord.FogCoordinateArrayStrideExt; - var _FogCoordinateArrayPointerExt = OpenTK.Graphics.OpenGL.ExtFogCoord.FogCoordinateArrayPointerExt; - var _FogCoordinateArrayExt = OpenTK.Graphics.OpenGL.ExtFogCoord.FogCoordinateArrayExt; -} -static void Test_ExtFramebufferBlit_19621() { - var _DrawFramebufferBindingExt = OpenTK.Graphics.OpenGL.ExtFramebufferBlit.DrawFramebufferBindingExt; - var _ReadFramebufferExt = OpenTK.Graphics.OpenGL.ExtFramebufferBlit.ReadFramebufferExt; - var _DrawFramebufferExt = OpenTK.Graphics.OpenGL.ExtFramebufferBlit.DrawFramebufferExt; - var _ReadFramebufferBindingExt = OpenTK.Graphics.OpenGL.ExtFramebufferBlit.ReadFramebufferBindingExt; -} -static void Test_ExtFramebufferMultisample_19622() { - var _RenderbufferSamplesExt = OpenTK.Graphics.OpenGL.ExtFramebufferMultisample.RenderbufferSamplesExt; - var _FramebufferIncompleteMultisampleExt = OpenTK.Graphics.OpenGL.ExtFramebufferMultisample.FramebufferIncompleteMultisampleExt; - var _MaxSamplesExt = OpenTK.Graphics.OpenGL.ExtFramebufferMultisample.MaxSamplesExt; -} -static void Test_ExtFramebufferMultisampleBlitScaled_19623() { - var _ScaledResolveFastestExt = OpenTK.Graphics.OpenGL.ExtFramebufferMultisampleBlitScaled.ScaledResolveFastestExt; - var _ScaledResolveNicestExt = OpenTK.Graphics.OpenGL.ExtFramebufferMultisampleBlitScaled.ScaledResolveNicestExt; -} -static void Test_ExtFramebufferObject_19624() { - var _InvalidFramebufferOperationExt = OpenTK.Graphics.OpenGL.ExtFramebufferObject.InvalidFramebufferOperationExt; - var _MaxRenderbufferSizeExt = OpenTK.Graphics.OpenGL.ExtFramebufferObject.MaxRenderbufferSizeExt; - var _FramebufferBindingExt = OpenTK.Graphics.OpenGL.ExtFramebufferObject.FramebufferBindingExt; - var _RenderbufferBindingExt = OpenTK.Graphics.OpenGL.ExtFramebufferObject.RenderbufferBindingExt; - var _FramebufferAttachmentObjectTypeExt = OpenTK.Graphics.OpenGL.ExtFramebufferObject.FramebufferAttachmentObjectTypeExt; - var _FramebufferAttachmentObjectNameExt = OpenTK.Graphics.OpenGL.ExtFramebufferObject.FramebufferAttachmentObjectNameExt; - var _FramebufferAttachmentTextureLevelExt = OpenTK.Graphics.OpenGL.ExtFramebufferObject.FramebufferAttachmentTextureLevelExt; - var _FramebufferAttachmentTextureCubeMapFaceExt = OpenTK.Graphics.OpenGL.ExtFramebufferObject.FramebufferAttachmentTextureCubeMapFaceExt; - var _FramebufferAttachmentTexture3DZoffsetExt = OpenTK.Graphics.OpenGL.ExtFramebufferObject.FramebufferAttachmentTexture3DZoffsetExt; - var _FramebufferCompleteExt = OpenTK.Graphics.OpenGL.ExtFramebufferObject.FramebufferCompleteExt; - var _FramebufferIncompleteAttachmentExt = OpenTK.Graphics.OpenGL.ExtFramebufferObject.FramebufferIncompleteAttachmentExt; - var _FramebufferIncompleteMissingAttachmentExt = OpenTK.Graphics.OpenGL.ExtFramebufferObject.FramebufferIncompleteMissingAttachmentExt; - var _FramebufferIncompleteDimensionsExt = OpenTK.Graphics.OpenGL.ExtFramebufferObject.FramebufferIncompleteDimensionsExt; - var _FramebufferIncompleteFormatsExt = OpenTK.Graphics.OpenGL.ExtFramebufferObject.FramebufferIncompleteFormatsExt; - var _FramebufferIncompleteDrawBufferExt = OpenTK.Graphics.OpenGL.ExtFramebufferObject.FramebufferIncompleteDrawBufferExt; - var _FramebufferIncompleteReadBufferExt = OpenTK.Graphics.OpenGL.ExtFramebufferObject.FramebufferIncompleteReadBufferExt; - var _FramebufferUnsupportedExt = OpenTK.Graphics.OpenGL.ExtFramebufferObject.FramebufferUnsupportedExt; - var _MaxColorAttachmentsExt = OpenTK.Graphics.OpenGL.ExtFramebufferObject.MaxColorAttachmentsExt; - var _ColorAttachment0Ext = OpenTK.Graphics.OpenGL.ExtFramebufferObject.ColorAttachment0Ext; - var _ColorAttachment1Ext = OpenTK.Graphics.OpenGL.ExtFramebufferObject.ColorAttachment1Ext; - var _ColorAttachment2Ext = OpenTK.Graphics.OpenGL.ExtFramebufferObject.ColorAttachment2Ext; - var _ColorAttachment3Ext = OpenTK.Graphics.OpenGL.ExtFramebufferObject.ColorAttachment3Ext; - var _ColorAttachment4Ext = OpenTK.Graphics.OpenGL.ExtFramebufferObject.ColorAttachment4Ext; - var _ColorAttachment5Ext = OpenTK.Graphics.OpenGL.ExtFramebufferObject.ColorAttachment5Ext; - var _ColorAttachment6Ext = OpenTK.Graphics.OpenGL.ExtFramebufferObject.ColorAttachment6Ext; - var _ColorAttachment7Ext = OpenTK.Graphics.OpenGL.ExtFramebufferObject.ColorAttachment7Ext; - var _ColorAttachment8Ext = OpenTK.Graphics.OpenGL.ExtFramebufferObject.ColorAttachment8Ext; - var _ColorAttachment9Ext = OpenTK.Graphics.OpenGL.ExtFramebufferObject.ColorAttachment9Ext; - var _ColorAttachment10Ext = OpenTK.Graphics.OpenGL.ExtFramebufferObject.ColorAttachment10Ext; - var _ColorAttachment11Ext = OpenTK.Graphics.OpenGL.ExtFramebufferObject.ColorAttachment11Ext; - var _ColorAttachment12Ext = OpenTK.Graphics.OpenGL.ExtFramebufferObject.ColorAttachment12Ext; - var _ColorAttachment13Ext = OpenTK.Graphics.OpenGL.ExtFramebufferObject.ColorAttachment13Ext; - var _ColorAttachment14Ext = OpenTK.Graphics.OpenGL.ExtFramebufferObject.ColorAttachment14Ext; - var _ColorAttachment15Ext = OpenTK.Graphics.OpenGL.ExtFramebufferObject.ColorAttachment15Ext; - var _DepthAttachmentExt = OpenTK.Graphics.OpenGL.ExtFramebufferObject.DepthAttachmentExt; - var _StencilAttachmentExt = OpenTK.Graphics.OpenGL.ExtFramebufferObject.StencilAttachmentExt; - var _FramebufferExt = OpenTK.Graphics.OpenGL.ExtFramebufferObject.FramebufferExt; - var _RenderbufferExt = OpenTK.Graphics.OpenGL.ExtFramebufferObject.RenderbufferExt; - var _RenderbufferWidthExt = OpenTK.Graphics.OpenGL.ExtFramebufferObject.RenderbufferWidthExt; - var _RenderbufferHeightExt = OpenTK.Graphics.OpenGL.ExtFramebufferObject.RenderbufferHeightExt; - var _RenderbufferInternalFormatExt = OpenTK.Graphics.OpenGL.ExtFramebufferObject.RenderbufferInternalFormatExt; - var _StencilIndex1Ext = OpenTK.Graphics.OpenGL.ExtFramebufferObject.StencilIndex1Ext; - var _StencilIndex4Ext = OpenTK.Graphics.OpenGL.ExtFramebufferObject.StencilIndex4Ext; - var _StencilIndex8Ext = OpenTK.Graphics.OpenGL.ExtFramebufferObject.StencilIndex8Ext; - var _StencilIndex16Ext = OpenTK.Graphics.OpenGL.ExtFramebufferObject.StencilIndex16Ext; - var _RenderbufferRedSizeExt = OpenTK.Graphics.OpenGL.ExtFramebufferObject.RenderbufferRedSizeExt; - var _RenderbufferGreenSizeExt = OpenTK.Graphics.OpenGL.ExtFramebufferObject.RenderbufferGreenSizeExt; - var _RenderbufferBlueSizeExt = OpenTK.Graphics.OpenGL.ExtFramebufferObject.RenderbufferBlueSizeExt; - var _RenderbufferAlphaSizeExt = OpenTK.Graphics.OpenGL.ExtFramebufferObject.RenderbufferAlphaSizeExt; - var _RenderbufferDepthSizeExt = OpenTK.Graphics.OpenGL.ExtFramebufferObject.RenderbufferDepthSizeExt; - var _RenderbufferStencilSizeExt = OpenTK.Graphics.OpenGL.ExtFramebufferObject.RenderbufferStencilSizeExt; -} -static void Test_ExtFramebufferSrgb_19625() { - var _FramebufferSrgbExt = OpenTK.Graphics.OpenGL.ExtFramebufferSrgb.FramebufferSrgbExt; - var _FramebufferSrgbCapableExt = OpenTK.Graphics.OpenGL.ExtFramebufferSrgb.FramebufferSrgbCapableExt; -} -static void Test_ExtGeometryShader4_19626() { - var _LinesAdjacencyExt = OpenTK.Graphics.OpenGL.ExtGeometryShader4.LinesAdjacencyExt; - var _LineStripAdjacencyExt = OpenTK.Graphics.OpenGL.ExtGeometryShader4.LineStripAdjacencyExt; - var _TrianglesAdjacencyExt = OpenTK.Graphics.OpenGL.ExtGeometryShader4.TrianglesAdjacencyExt; - var _TriangleStripAdjacencyExt = OpenTK.Graphics.OpenGL.ExtGeometryShader4.TriangleStripAdjacencyExt; - var _ProgramPointSizeExt = OpenTK.Graphics.OpenGL.ExtGeometryShader4.ProgramPointSizeExt; - var _MaxVaryingComponentsExt = OpenTK.Graphics.OpenGL.ExtGeometryShader4.MaxVaryingComponentsExt; - var _MaxGeometryTextureImageUnitsExt = OpenTK.Graphics.OpenGL.ExtGeometryShader4.MaxGeometryTextureImageUnitsExt; - var _FramebufferAttachmentTextureLayerExt = OpenTK.Graphics.OpenGL.ExtGeometryShader4.FramebufferAttachmentTextureLayerExt; - var _FramebufferAttachmentLayeredExt = OpenTK.Graphics.OpenGL.ExtGeometryShader4.FramebufferAttachmentLayeredExt; - var _FramebufferIncompleteLayerTargetsExt = OpenTK.Graphics.OpenGL.ExtGeometryShader4.FramebufferIncompleteLayerTargetsExt; - var _FramebufferIncompleteLayerCountExt = OpenTK.Graphics.OpenGL.ExtGeometryShader4.FramebufferIncompleteLayerCountExt; - var _GeometryShaderExt = OpenTK.Graphics.OpenGL.ExtGeometryShader4.GeometryShaderExt; - var _GeometryVerticesOutExt = OpenTK.Graphics.OpenGL.ExtGeometryShader4.GeometryVerticesOutExt; - var _GeometryInputTypeExt = OpenTK.Graphics.OpenGL.ExtGeometryShader4.GeometryInputTypeExt; - var _GeometryOutputTypeExt = OpenTK.Graphics.OpenGL.ExtGeometryShader4.GeometryOutputTypeExt; - var _MaxGeometryVaryingComponentsExt = OpenTK.Graphics.OpenGL.ExtGeometryShader4.MaxGeometryVaryingComponentsExt; - var _MaxVertexVaryingComponentsExt = OpenTK.Graphics.OpenGL.ExtGeometryShader4.MaxVertexVaryingComponentsExt; - var _MaxGeometryUniformComponentsExt = OpenTK.Graphics.OpenGL.ExtGeometryShader4.MaxGeometryUniformComponentsExt; - var _MaxGeometryOutputVerticesExt = OpenTK.Graphics.OpenGL.ExtGeometryShader4.MaxGeometryOutputVerticesExt; - var _MaxGeometryTotalOutputComponentsExt = OpenTK.Graphics.OpenGL.ExtGeometryShader4.MaxGeometryTotalOutputComponentsExt; -} -static void Test_ExtGpuProgramParameters_19627() { -} -static void Test_ExtGpuShader4_19628() { - var _VertexAttribArrayIntegerExt = OpenTK.Graphics.OpenGL.ExtGpuShader4.VertexAttribArrayIntegerExt; - var _MinProgramTexelOffsetExt = OpenTK.Graphics.OpenGL.ExtGpuShader4.MinProgramTexelOffsetExt; - var _MaxProgramTexelOffsetExt = OpenTK.Graphics.OpenGL.ExtGpuShader4.MaxProgramTexelOffsetExt; - var _Sampler1DArrayExt = OpenTK.Graphics.OpenGL.ExtGpuShader4.Sampler1DArrayExt; - var _Sampler2DArrayExt = OpenTK.Graphics.OpenGL.ExtGpuShader4.Sampler2DArrayExt; - var _SamplerBufferExt = OpenTK.Graphics.OpenGL.ExtGpuShader4.SamplerBufferExt; - var _Sampler1DArrayShadowExt = OpenTK.Graphics.OpenGL.ExtGpuShader4.Sampler1DArrayShadowExt; - var _Sampler2DArrayShadowExt = OpenTK.Graphics.OpenGL.ExtGpuShader4.Sampler2DArrayShadowExt; - var _SamplerCubeShadowExt = OpenTK.Graphics.OpenGL.ExtGpuShader4.SamplerCubeShadowExt; - var _UnsignedIntVec2Ext = OpenTK.Graphics.OpenGL.ExtGpuShader4.UnsignedIntVec2Ext; - var _UnsignedIntVec3Ext = OpenTK.Graphics.OpenGL.ExtGpuShader4.UnsignedIntVec3Ext; - var _UnsignedIntVec4Ext = OpenTK.Graphics.OpenGL.ExtGpuShader4.UnsignedIntVec4Ext; - var _IntSampler1DExt = OpenTK.Graphics.OpenGL.ExtGpuShader4.IntSampler1DExt; - var _IntSampler2DExt = OpenTK.Graphics.OpenGL.ExtGpuShader4.IntSampler2DExt; - var _IntSampler3DExt = OpenTK.Graphics.OpenGL.ExtGpuShader4.IntSampler3DExt; - var _IntSamplerCubeExt = OpenTK.Graphics.OpenGL.ExtGpuShader4.IntSamplerCubeExt; - var _IntSampler2DRectExt = OpenTK.Graphics.OpenGL.ExtGpuShader4.IntSampler2DRectExt; - var _IntSampler1DArrayExt = OpenTK.Graphics.OpenGL.ExtGpuShader4.IntSampler1DArrayExt; - var _IntSampler2DArrayExt = OpenTK.Graphics.OpenGL.ExtGpuShader4.IntSampler2DArrayExt; - var _IntSamplerBufferExt = OpenTK.Graphics.OpenGL.ExtGpuShader4.IntSamplerBufferExt; - var _UnsignedIntSampler1DExt = OpenTK.Graphics.OpenGL.ExtGpuShader4.UnsignedIntSampler1DExt; - var _UnsignedIntSampler2DExt = OpenTK.Graphics.OpenGL.ExtGpuShader4.UnsignedIntSampler2DExt; - var _UnsignedIntSampler3DExt = OpenTK.Graphics.OpenGL.ExtGpuShader4.UnsignedIntSampler3DExt; - var _UnsignedIntSamplerCubeExt = OpenTK.Graphics.OpenGL.ExtGpuShader4.UnsignedIntSamplerCubeExt; - var _UnsignedIntSampler2DRectExt = OpenTK.Graphics.OpenGL.ExtGpuShader4.UnsignedIntSampler2DRectExt; - var _UnsignedIntSampler1DArrayExt = OpenTK.Graphics.OpenGL.ExtGpuShader4.UnsignedIntSampler1DArrayExt; - var _UnsignedIntSampler2DArrayExt = OpenTK.Graphics.OpenGL.ExtGpuShader4.UnsignedIntSampler2DArrayExt; - var _UnsignedIntSamplerBufferExt = OpenTK.Graphics.OpenGL.ExtGpuShader4.UnsignedIntSamplerBufferExt; -} -static void Test_ExtHistogram_19629() { - var _HistogramExt = OpenTK.Graphics.OpenGL.ExtHistogram.HistogramExt; - var _ProxyHistogramExt = OpenTK.Graphics.OpenGL.ExtHistogram.ProxyHistogramExt; - var _HistogramWidthExt = OpenTK.Graphics.OpenGL.ExtHistogram.HistogramWidthExt; - var _HistogramFormatExt = OpenTK.Graphics.OpenGL.ExtHistogram.HistogramFormatExt; - var _HistogramRedSizeExt = OpenTK.Graphics.OpenGL.ExtHistogram.HistogramRedSizeExt; - var _HistogramGreenSizeExt = OpenTK.Graphics.OpenGL.ExtHistogram.HistogramGreenSizeExt; - var _HistogramBlueSizeExt = OpenTK.Graphics.OpenGL.ExtHistogram.HistogramBlueSizeExt; - var _HistogramAlphaSizeExt = OpenTK.Graphics.OpenGL.ExtHistogram.HistogramAlphaSizeExt; - var _HistogramLuminanceSizeExt = OpenTK.Graphics.OpenGL.ExtHistogram.HistogramLuminanceSizeExt; - var _HistogramSinkExt = OpenTK.Graphics.OpenGL.ExtHistogram.HistogramSinkExt; - var _MinmaxExt = OpenTK.Graphics.OpenGL.ExtHistogram.MinmaxExt; - var _MinmaxFormatExt = OpenTK.Graphics.OpenGL.ExtHistogram.MinmaxFormatExt; - var _MinmaxSinkExt = OpenTK.Graphics.OpenGL.ExtHistogram.MinmaxSinkExt; - var _TableTooLargeExt = OpenTK.Graphics.OpenGL.ExtHistogram.TableTooLargeExt; -} -static void Test_ExtIndexArrayFormats_19630() { - var _IuiV2fExt = OpenTK.Graphics.OpenGL.ExtIndexArrayFormats.IuiV2fExt; - var _IuiV3fExt = OpenTK.Graphics.OpenGL.ExtIndexArrayFormats.IuiV3fExt; - var _IuiN3fV2fExt = OpenTK.Graphics.OpenGL.ExtIndexArrayFormats.IuiN3fV2fExt; - var _IuiN3fV3fExt = OpenTK.Graphics.OpenGL.ExtIndexArrayFormats.IuiN3fV3fExt; - var _T2fIuiV2fExt = OpenTK.Graphics.OpenGL.ExtIndexArrayFormats.T2fIuiV2fExt; - var _T2fIuiV3fExt = OpenTK.Graphics.OpenGL.ExtIndexArrayFormats.T2fIuiV3fExt; - var _T2fIuiN3fV2fExt = OpenTK.Graphics.OpenGL.ExtIndexArrayFormats.T2fIuiN3fV2fExt; - var _T2fIuiN3fV3fExt = OpenTK.Graphics.OpenGL.ExtIndexArrayFormats.T2fIuiN3fV3fExt; -} -static void Test_ExtIndexFunc_19631() { - var _IndexTestExt = OpenTK.Graphics.OpenGL.ExtIndexFunc.IndexTestExt; - var _IndexTestFuncExt = OpenTK.Graphics.OpenGL.ExtIndexFunc.IndexTestFuncExt; - var _IndexTestRefExt = OpenTK.Graphics.OpenGL.ExtIndexFunc.IndexTestRefExt; -} -static void Test_ExtIndexMaterial_19632() { - var _IndexMaterialExt = OpenTK.Graphics.OpenGL.ExtIndexMaterial.IndexMaterialExt; - var _IndexMaterialParameterExt = OpenTK.Graphics.OpenGL.ExtIndexMaterial.IndexMaterialParameterExt; - var _IndexMaterialFaceExt = OpenTK.Graphics.OpenGL.ExtIndexMaterial.IndexMaterialFaceExt; -} -static void Test_ExtIndexTexture_19633() { -} -static void Test_ExtLightTexture_19634() { - var _FragmentMaterialExt = OpenTK.Graphics.OpenGL.ExtLightTexture.FragmentMaterialExt; - var _FragmentNormalExt = OpenTK.Graphics.OpenGL.ExtLightTexture.FragmentNormalExt; - var _FragmentColorExt = OpenTK.Graphics.OpenGL.ExtLightTexture.FragmentColorExt; - var _AttenuationExt = OpenTK.Graphics.OpenGL.ExtLightTexture.AttenuationExt; - var _ShadowAttenuationExt = OpenTK.Graphics.OpenGL.ExtLightTexture.ShadowAttenuationExt; - var _TextureApplicationModeExt = OpenTK.Graphics.OpenGL.ExtLightTexture.TextureApplicationModeExt; - var _TextureLightExt = OpenTK.Graphics.OpenGL.ExtLightTexture.TextureLightExt; - var _TextureMaterialFaceExt = OpenTK.Graphics.OpenGL.ExtLightTexture.TextureMaterialFaceExt; - var _TextureMaterialParameterExt = OpenTK.Graphics.OpenGL.ExtLightTexture.TextureMaterialParameterExt; - var _FragmentDepthExt = OpenTK.Graphics.OpenGL.ExtLightTexture.FragmentDepthExt; -} -static void Test_ExtMiscAttribute_19635() { -} -static void Test_ExtMultiDrawArrays_19636() { -} -static void Test_ExtMultisample_19637() { - var _MultisampleBitExt = OpenTK.Graphics.OpenGL.ExtMultisample.MultisampleBitExt; - var _MultisampleExt = OpenTK.Graphics.OpenGL.ExtMultisample.MultisampleExt; - var _SampleAlphaToMaskExt = OpenTK.Graphics.OpenGL.ExtMultisample.SampleAlphaToMaskExt; - var _SampleAlphaToOneExt = OpenTK.Graphics.OpenGL.ExtMultisample.SampleAlphaToOneExt; - var _SampleMaskExt = OpenTK.Graphics.OpenGL.ExtMultisample.SampleMaskExt; - var _Gl1PassExt = OpenTK.Graphics.OpenGL.ExtMultisample.Gl1PassExt; - var _Gl2Pass0Ext = OpenTK.Graphics.OpenGL.ExtMultisample.Gl2Pass0Ext; - var _Gl2Pass1Ext = OpenTK.Graphics.OpenGL.ExtMultisample.Gl2Pass1Ext; - var _Gl4Pass0Ext = OpenTK.Graphics.OpenGL.ExtMultisample.Gl4Pass0Ext; - var _Gl4Pass1Ext = OpenTK.Graphics.OpenGL.ExtMultisample.Gl4Pass1Ext; - var _Gl4Pass2Ext = OpenTK.Graphics.OpenGL.ExtMultisample.Gl4Pass2Ext; - var _Gl4Pass3Ext = OpenTK.Graphics.OpenGL.ExtMultisample.Gl4Pass3Ext; - var _SampleBuffersExt = OpenTK.Graphics.OpenGL.ExtMultisample.SampleBuffersExt; - var _SamplesExt = OpenTK.Graphics.OpenGL.ExtMultisample.SamplesExt; - var _SampleMaskValueExt = OpenTK.Graphics.OpenGL.ExtMultisample.SampleMaskValueExt; - var _SampleMaskInvertExt = OpenTK.Graphics.OpenGL.ExtMultisample.SampleMaskInvertExt; - var _SamplePatternExt = OpenTK.Graphics.OpenGL.ExtMultisample.SamplePatternExt; -} -static void Test_ExtPackedDepthStencil_19638() { - var _DepthStencilExt = OpenTK.Graphics.OpenGL.ExtPackedDepthStencil.DepthStencilExt; - var _UnsignedInt248Ext = OpenTK.Graphics.OpenGL.ExtPackedDepthStencil.UnsignedInt248Ext; - var _Depth24Stencil8Ext = OpenTK.Graphics.OpenGL.ExtPackedDepthStencil.Depth24Stencil8Ext; - var _TextureStencilSizeExt = OpenTK.Graphics.OpenGL.ExtPackedDepthStencil.TextureStencilSizeExt; -} -static void Test_ExtPackedFloat_19639() { - var _R11fG11fB10fExt = OpenTK.Graphics.OpenGL.ExtPackedFloat.R11fG11fB10fExt; - var _UnsignedInt10F11F11FRevExt = OpenTK.Graphics.OpenGL.ExtPackedFloat.UnsignedInt10F11F11FRevExt; - var _RgbaSignedComponentsExt = OpenTK.Graphics.OpenGL.ExtPackedFloat.RgbaSignedComponentsExt; -} -static void Test_ExtPackedPixels_19640() { - var _UnsignedByte332Ext = OpenTK.Graphics.OpenGL.ExtPackedPixels.UnsignedByte332Ext; - var _UnsignedShort4444Ext = OpenTK.Graphics.OpenGL.ExtPackedPixels.UnsignedShort4444Ext; - var _UnsignedShort5551Ext = OpenTK.Graphics.OpenGL.ExtPackedPixels.UnsignedShort5551Ext; - var _UnsignedInt8888Ext = OpenTK.Graphics.OpenGL.ExtPackedPixels.UnsignedInt8888Ext; - var _UnsignedInt1010102Ext = OpenTK.Graphics.OpenGL.ExtPackedPixels.UnsignedInt1010102Ext; -} -static void Test_ExtPalettedTexture_19641() { - var _ColorIndex1Ext = OpenTK.Graphics.OpenGL.ExtPalettedTexture.ColorIndex1Ext; - var _ColorIndex2Ext = OpenTK.Graphics.OpenGL.ExtPalettedTexture.ColorIndex2Ext; - var _ColorIndex4Ext = OpenTK.Graphics.OpenGL.ExtPalettedTexture.ColorIndex4Ext; - var _ColorIndex8Ext = OpenTK.Graphics.OpenGL.ExtPalettedTexture.ColorIndex8Ext; - var _ColorIndex12Ext = OpenTK.Graphics.OpenGL.ExtPalettedTexture.ColorIndex12Ext; - var _ColorIndex16Ext = OpenTK.Graphics.OpenGL.ExtPalettedTexture.ColorIndex16Ext; - var _TextureIndexSizeExt = OpenTK.Graphics.OpenGL.ExtPalettedTexture.TextureIndexSizeExt; -} -static void Test_ExtPixelBufferObject_19642() { - var _PixelPackBufferExt = OpenTK.Graphics.OpenGL.ExtPixelBufferObject.PixelPackBufferExt; - var _PixelUnpackBufferExt = OpenTK.Graphics.OpenGL.ExtPixelBufferObject.PixelUnpackBufferExt; - var _PixelPackBufferBindingExt = OpenTK.Graphics.OpenGL.ExtPixelBufferObject.PixelPackBufferBindingExt; - var _PixelUnpackBufferBindingExt = OpenTK.Graphics.OpenGL.ExtPixelBufferObject.PixelUnpackBufferBindingExt; -} -static void Test_ExtPixelTransform_19643() { - var _PixelTransform2DExt = OpenTK.Graphics.OpenGL.ExtPixelTransform.PixelTransform2DExt; - var _PixelMagFilterExt = OpenTK.Graphics.OpenGL.ExtPixelTransform.PixelMagFilterExt; - var _PixelMinFilterExt = OpenTK.Graphics.OpenGL.ExtPixelTransform.PixelMinFilterExt; - var _PixelCubicWeightExt = OpenTK.Graphics.OpenGL.ExtPixelTransform.PixelCubicWeightExt; - var _CubicExt = OpenTK.Graphics.OpenGL.ExtPixelTransform.CubicExt; - var _AverageExt = OpenTK.Graphics.OpenGL.ExtPixelTransform.AverageExt; - var _PixelTransform2DStackDepthExt = OpenTK.Graphics.OpenGL.ExtPixelTransform.PixelTransform2DStackDepthExt; - var _MaxPixelTransform2DStackDepthExt = OpenTK.Graphics.OpenGL.ExtPixelTransform.MaxPixelTransform2DStackDepthExt; - var _PixelTransform2DMatrixExt = OpenTK.Graphics.OpenGL.ExtPixelTransform.PixelTransform2DMatrixExt; -} -static void Test_ExtPixelTransformColorTable_19644() { -} -static void Test_ExtPointParameters_19645() { - var _PointSizeMinExt = OpenTK.Graphics.OpenGL.ExtPointParameters.PointSizeMinExt; - var _PointSizeMaxExt = OpenTK.Graphics.OpenGL.ExtPointParameters.PointSizeMaxExt; - var _PointFadeThresholdSizeExt = OpenTK.Graphics.OpenGL.ExtPointParameters.PointFadeThresholdSizeExt; - var _DistanceAttenuationExt = OpenTK.Graphics.OpenGL.ExtPointParameters.DistanceAttenuationExt; -} -static void Test_ExtPolygonOffset_19646() { - var _PolygonOffsetExt = OpenTK.Graphics.OpenGL.ExtPolygonOffset.PolygonOffsetExt; - var _PolygonOffsetFactorExt = OpenTK.Graphics.OpenGL.ExtPolygonOffset.PolygonOffsetFactorExt; - var _PolygonOffsetBiasExt = OpenTK.Graphics.OpenGL.ExtPolygonOffset.PolygonOffsetBiasExt; -} -static void Test_ExtProvokingVertex_19647() { - var _QuadsFollowProvokingVertexConventionExt = OpenTK.Graphics.OpenGL.ExtProvokingVertex.QuadsFollowProvokingVertexConventionExt; - var _FirstVertexConventionExt = OpenTK.Graphics.OpenGL.ExtProvokingVertex.FirstVertexConventionExt; - var _LastVertexConventionExt = OpenTK.Graphics.OpenGL.ExtProvokingVertex.LastVertexConventionExt; - var _ProvokingVertexExt = OpenTK.Graphics.OpenGL.ExtProvokingVertex.ProvokingVertexExt; -} -static void Test_ExtRescaleNormal_19648() { - var _RescaleNormalExt = OpenTK.Graphics.OpenGL.ExtRescaleNormal.RescaleNormalExt; -} -static void Test_ExtSecondaryColor_19649() { - var _ColorSumExt = OpenTK.Graphics.OpenGL.ExtSecondaryColor.ColorSumExt; - var _CurrentSecondaryColorExt = OpenTK.Graphics.OpenGL.ExtSecondaryColor.CurrentSecondaryColorExt; - var _SecondaryColorArraySizeExt = OpenTK.Graphics.OpenGL.ExtSecondaryColor.SecondaryColorArraySizeExt; - var _SecondaryColorArrayTypeExt = OpenTK.Graphics.OpenGL.ExtSecondaryColor.SecondaryColorArrayTypeExt; - var _SecondaryColorArrayStrideExt = OpenTK.Graphics.OpenGL.ExtSecondaryColor.SecondaryColorArrayStrideExt; - var _SecondaryColorArrayPointerExt = OpenTK.Graphics.OpenGL.ExtSecondaryColor.SecondaryColorArrayPointerExt; - var _SecondaryColorArrayExt = OpenTK.Graphics.OpenGL.ExtSecondaryColor.SecondaryColorArrayExt; -} -static void Test_ExtSeparateShaderObjects_19650() { - var _VertexShaderBitExt = OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects.VertexShaderBitExt; - var _FragmentShaderBitExt = OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects.FragmentShaderBitExt; - var _ProgramSeparableExt = OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects.ProgramSeparableExt; - var _ProgramPipelineBindingExt = OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects.ProgramPipelineBindingExt; - var _ActiveProgramExt = OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects.ActiveProgramExt; - var _AllShaderBitsExt = OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects.AllShaderBitsExt; -} -static void Test_ExtSeparateSpecularColor_19651() { - var _LightModelColorControlExt = OpenTK.Graphics.OpenGL.ExtSeparateSpecularColor.LightModelColorControlExt; - var _SingleColorExt = OpenTK.Graphics.OpenGL.ExtSeparateSpecularColor.SingleColorExt; - var _SeparateSpecularColorExt = OpenTK.Graphics.OpenGL.ExtSeparateSpecularColor.SeparateSpecularColorExt; -} -static void Test_ExtShaderImageLoadFormatted_19652() { -} -static void Test_ExtShaderImageLoadStore_19653() { - var _VertexAttribArrayBarrierBitExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.VertexAttribArrayBarrierBitExt; - var _ElementArrayBarrierBitExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.ElementArrayBarrierBitExt; - var _UniformBarrierBitExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.UniformBarrierBitExt; - var _TextureFetchBarrierBitExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.TextureFetchBarrierBitExt; - var _ShaderImageAccessBarrierBitExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.ShaderImageAccessBarrierBitExt; - var _CommandBarrierBitExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.CommandBarrierBitExt; - var _PixelBufferBarrierBitExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.PixelBufferBarrierBitExt; - var _TextureUpdateBarrierBitExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.TextureUpdateBarrierBitExt; - var _BufferUpdateBarrierBitExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.BufferUpdateBarrierBitExt; - var _FramebufferBarrierBitExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.FramebufferBarrierBitExt; - var _TransformFeedbackBarrierBitExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.TransformFeedbackBarrierBitExt; - var _AtomicCounterBarrierBitExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.AtomicCounterBarrierBitExt; - var _MaxImageUnitsExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.MaxImageUnitsExt; - var _MaxCombinedImageUnitsAndFragmentOutputsExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.MaxCombinedImageUnitsAndFragmentOutputsExt; - var _ImageBindingNameExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.ImageBindingNameExt; - var _ImageBindingLevelExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.ImageBindingLevelExt; - var _ImageBindingLayeredExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.ImageBindingLayeredExt; - var _ImageBindingLayerExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.ImageBindingLayerExt; - var _ImageBindingAccessExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.ImageBindingAccessExt; - var _Image1DExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.Image1DExt; - var _Image2DExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.Image2DExt; - var _Image3DExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.Image3DExt; - var _Image2DRectExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.Image2DRectExt; - var _ImageCubeExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.ImageCubeExt; - var _ImageBufferExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.ImageBufferExt; - var _Image1DArrayExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.Image1DArrayExt; - var _Image2DArrayExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.Image2DArrayExt; - var _ImageCubeMapArrayExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.ImageCubeMapArrayExt; - var _Image2DMultisampleExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.Image2DMultisampleExt; - var _Image2DMultisampleArrayExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.Image2DMultisampleArrayExt; - var _IntImage1DExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.IntImage1DExt; - var _IntImage2DExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.IntImage2DExt; - var _IntImage3DExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.IntImage3DExt; - var _IntImage2DRectExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.IntImage2DRectExt; - var _IntImageCubeExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.IntImageCubeExt; - var _IntImageBufferExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.IntImageBufferExt; - var _IntImage1DArrayExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.IntImage1DArrayExt; - var _IntImage2DArrayExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.IntImage2DArrayExt; - var _IntImageCubeMapArrayExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.IntImageCubeMapArrayExt; - var _IntImage2DMultisampleExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.IntImage2DMultisampleExt; - var _IntImage2DMultisampleArrayExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.IntImage2DMultisampleArrayExt; - var _UnsignedIntImage1DExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.UnsignedIntImage1DExt; - var _UnsignedIntImage2DExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.UnsignedIntImage2DExt; - var _UnsignedIntImage3DExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.UnsignedIntImage3DExt; - var _UnsignedIntImage2DRectExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.UnsignedIntImage2DRectExt; - var _UnsignedIntImageCubeExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.UnsignedIntImageCubeExt; - var _UnsignedIntImageBufferExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.UnsignedIntImageBufferExt; - var _UnsignedIntImage1DArrayExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.UnsignedIntImage1DArrayExt; - var _UnsignedIntImage2DArrayExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.UnsignedIntImage2DArrayExt; - var _UnsignedIntImageCubeMapArrayExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.UnsignedIntImageCubeMapArrayExt; - var _UnsignedIntImage2DMultisampleExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.UnsignedIntImage2DMultisampleExt; - var _UnsignedIntImage2DMultisampleArrayExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.UnsignedIntImage2DMultisampleArrayExt; - var _MaxImageSamplesExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.MaxImageSamplesExt; - var _ImageBindingFormatExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.ImageBindingFormatExt; - var _AllBarrierBitsExt = OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore.AllBarrierBitsExt; -} -static void Test_ExtShaderIntegerMix_19654() { -} -static void Test_ExtShadowFuncs_19655() { -} -static void Test_ExtSharedTexturePalette_19656() { - var _SharedTexturePaletteExt = OpenTK.Graphics.OpenGL.ExtSharedTexturePalette.SharedTexturePaletteExt; -} -static void Test_ExtStencilClearTag_19657() { - var _StencilTagBitsExt = OpenTK.Graphics.OpenGL.ExtStencilClearTag.StencilTagBitsExt; - var _StencilClearTagValueExt = OpenTK.Graphics.OpenGL.ExtStencilClearTag.StencilClearTagValueExt; -} -static void Test_ExtStencilTwoSide_19658() { - var _StencilTestTwoSideExt = OpenTK.Graphics.OpenGL.ExtStencilTwoSide.StencilTestTwoSideExt; - var _ActiveStencilFaceExt = OpenTK.Graphics.OpenGL.ExtStencilTwoSide.ActiveStencilFaceExt; -} -static void Test_ExtStencilWrap_19659() { - var _IncrWrapExt = OpenTK.Graphics.OpenGL.ExtStencilWrap.IncrWrapExt; - var _DecrWrapExt = OpenTK.Graphics.OpenGL.ExtStencilWrap.DecrWrapExt; -} -static void Test_ExtSubtexture_19660() { -} -static void Test_ExtTexture_19661() { - var _Alpha4Ext = OpenTK.Graphics.OpenGL.ExtTexture.Alpha4Ext; - var _Alpha8Ext = OpenTK.Graphics.OpenGL.ExtTexture.Alpha8Ext; - var _Alpha12Ext = OpenTK.Graphics.OpenGL.ExtTexture.Alpha12Ext; - var _Alpha16Ext = OpenTK.Graphics.OpenGL.ExtTexture.Alpha16Ext; - var _Luminance4Ext = OpenTK.Graphics.OpenGL.ExtTexture.Luminance4Ext; - var _Luminance8Ext = OpenTK.Graphics.OpenGL.ExtTexture.Luminance8Ext; - var _Luminance12Ext = OpenTK.Graphics.OpenGL.ExtTexture.Luminance12Ext; - var _Luminance16Ext = OpenTK.Graphics.OpenGL.ExtTexture.Luminance16Ext; - var _Luminance4Alpha4Ext = OpenTK.Graphics.OpenGL.ExtTexture.Luminance4Alpha4Ext; - var _Luminance6Alpha2Ext = OpenTK.Graphics.OpenGL.ExtTexture.Luminance6Alpha2Ext; - var _Luminance8Alpha8Ext = OpenTK.Graphics.OpenGL.ExtTexture.Luminance8Alpha8Ext; - var _Luminance12Alpha4Ext = OpenTK.Graphics.OpenGL.ExtTexture.Luminance12Alpha4Ext; - var _Luminance12Alpha12Ext = OpenTK.Graphics.OpenGL.ExtTexture.Luminance12Alpha12Ext; - var _Luminance16Alpha16Ext = OpenTK.Graphics.OpenGL.ExtTexture.Luminance16Alpha16Ext; - var _IntensityExt = OpenTK.Graphics.OpenGL.ExtTexture.IntensityExt; - var _Intensity4Ext = OpenTK.Graphics.OpenGL.ExtTexture.Intensity4Ext; - var _Intensity8Ext = OpenTK.Graphics.OpenGL.ExtTexture.Intensity8Ext; - var _Intensity12Ext = OpenTK.Graphics.OpenGL.ExtTexture.Intensity12Ext; - var _Intensity16Ext = OpenTK.Graphics.OpenGL.ExtTexture.Intensity16Ext; - var _Rgb2Ext = OpenTK.Graphics.OpenGL.ExtTexture.Rgb2Ext; - var _Rgb4Ext = OpenTK.Graphics.OpenGL.ExtTexture.Rgb4Ext; - var _Rgb5Ext = OpenTK.Graphics.OpenGL.ExtTexture.Rgb5Ext; - var _Rgb8Ext = OpenTK.Graphics.OpenGL.ExtTexture.Rgb8Ext; - var _Rgb10Ext = OpenTK.Graphics.OpenGL.ExtTexture.Rgb10Ext; - var _Rgb12Ext = OpenTK.Graphics.OpenGL.ExtTexture.Rgb12Ext; - var _Rgb16Ext = OpenTK.Graphics.OpenGL.ExtTexture.Rgb16Ext; - var _Rgba2Ext = OpenTK.Graphics.OpenGL.ExtTexture.Rgba2Ext; - var _Rgba4Ext = OpenTK.Graphics.OpenGL.ExtTexture.Rgba4Ext; - var _Rgb5A1Ext = OpenTK.Graphics.OpenGL.ExtTexture.Rgb5A1Ext; - var _Rgba8Ext = OpenTK.Graphics.OpenGL.ExtTexture.Rgba8Ext; - var _Rgb10A2Ext = OpenTK.Graphics.OpenGL.ExtTexture.Rgb10A2Ext; - var _Rgba12Ext = OpenTK.Graphics.OpenGL.ExtTexture.Rgba12Ext; - var _Rgba16Ext = OpenTK.Graphics.OpenGL.ExtTexture.Rgba16Ext; - var _TextureRedSizeExt = OpenTK.Graphics.OpenGL.ExtTexture.TextureRedSizeExt; - var _TextureGreenSizeExt = OpenTK.Graphics.OpenGL.ExtTexture.TextureGreenSizeExt; - var _TextureBlueSizeExt = OpenTK.Graphics.OpenGL.ExtTexture.TextureBlueSizeExt; - var _TextureAlphaSizeExt = OpenTK.Graphics.OpenGL.ExtTexture.TextureAlphaSizeExt; - var _TextureLuminanceSizeExt = OpenTK.Graphics.OpenGL.ExtTexture.TextureLuminanceSizeExt; - var _TextureIntensitySizeExt = OpenTK.Graphics.OpenGL.ExtTexture.TextureIntensitySizeExt; - var _ReplaceExt = OpenTK.Graphics.OpenGL.ExtTexture.ReplaceExt; - var _ProxyTexture1DExt = OpenTK.Graphics.OpenGL.ExtTexture.ProxyTexture1DExt; - var _ProxyTexture2DExt = OpenTK.Graphics.OpenGL.ExtTexture.ProxyTexture2DExt; - var _TextureTooLargeExt = OpenTK.Graphics.OpenGL.ExtTexture.TextureTooLargeExt; -} -static void Test_ExtTexture3D_19662() { - var _PackSkipImagesExt = OpenTK.Graphics.OpenGL.ExtTexture3D.PackSkipImagesExt; - var _PackImageHeightExt = OpenTK.Graphics.OpenGL.ExtTexture3D.PackImageHeightExt; - var _UnpackSkipImagesExt = OpenTK.Graphics.OpenGL.ExtTexture3D.UnpackSkipImagesExt; - var _UnpackImageHeightExt = OpenTK.Graphics.OpenGL.ExtTexture3D.UnpackImageHeightExt; - var _Texture3DExt = OpenTK.Graphics.OpenGL.ExtTexture3D.Texture3DExt; - var _ProxyTexture3DExt = OpenTK.Graphics.OpenGL.ExtTexture3D.ProxyTexture3DExt; - var _TextureDepthExt = OpenTK.Graphics.OpenGL.ExtTexture3D.TextureDepthExt; - var _TextureWrapRExt = OpenTK.Graphics.OpenGL.ExtTexture3D.TextureWrapRExt; - var _Max3DTextureSizeExt = OpenTK.Graphics.OpenGL.ExtTexture3D.Max3DTextureSizeExt; -} -static void Test_ExtTextureArray_19663() { - var _CompareRefDepthToTextureExt = OpenTK.Graphics.OpenGL.ExtTextureArray.CompareRefDepthToTextureExt; - var _MaxArrayTextureLayersExt = OpenTK.Graphics.OpenGL.ExtTextureArray.MaxArrayTextureLayersExt; - var _Texture1DArrayExt = OpenTK.Graphics.OpenGL.ExtTextureArray.Texture1DArrayExt; - var _ProxyTexture1DArrayExt = OpenTK.Graphics.OpenGL.ExtTextureArray.ProxyTexture1DArrayExt; - var _Texture2DArrayExt = OpenTK.Graphics.OpenGL.ExtTextureArray.Texture2DArrayExt; - var _ProxyTexture2DArrayExt = OpenTK.Graphics.OpenGL.ExtTextureArray.ProxyTexture2DArrayExt; - var _TextureBinding1DArrayExt = OpenTK.Graphics.OpenGL.ExtTextureArray.TextureBinding1DArrayExt; - var _TextureBinding2DArrayExt = OpenTK.Graphics.OpenGL.ExtTextureArray.TextureBinding2DArrayExt; - var _FramebufferAttachmentTextureLayerExt = OpenTK.Graphics.OpenGL.ExtTextureArray.FramebufferAttachmentTextureLayerExt; -} -static void Test_ExtTextureBufferObject_19664() { - var _TextureBufferExt = OpenTK.Graphics.OpenGL.ExtTextureBufferObject.TextureBufferExt; - var _MaxTextureBufferSizeExt = OpenTK.Graphics.OpenGL.ExtTextureBufferObject.MaxTextureBufferSizeExt; - var _TextureBindingBufferExt = OpenTK.Graphics.OpenGL.ExtTextureBufferObject.TextureBindingBufferExt; - var _TextureBufferDataStoreBindingExt = OpenTK.Graphics.OpenGL.ExtTextureBufferObject.TextureBufferDataStoreBindingExt; - var _TextureBufferFormatExt = OpenTK.Graphics.OpenGL.ExtTextureBufferObject.TextureBufferFormatExt; -} -static void Test_ExtTextureCompressionLatc_19665() { - var _CompressedLuminanceLatc1Ext = OpenTK.Graphics.OpenGL.ExtTextureCompressionLatc.CompressedLuminanceLatc1Ext; - var _CompressedSignedLuminanceLatc1Ext = OpenTK.Graphics.OpenGL.ExtTextureCompressionLatc.CompressedSignedLuminanceLatc1Ext; - var _CompressedLuminanceAlphaLatc2Ext = OpenTK.Graphics.OpenGL.ExtTextureCompressionLatc.CompressedLuminanceAlphaLatc2Ext; - var _CompressedSignedLuminanceAlphaLatc2Ext = OpenTK.Graphics.OpenGL.ExtTextureCompressionLatc.CompressedSignedLuminanceAlphaLatc2Ext; -} -static void Test_ExtTextureCompressionRgtc_19666() { - var _CompressedRedRgtc1Ext = OpenTK.Graphics.OpenGL.ExtTextureCompressionRgtc.CompressedRedRgtc1Ext; - var _CompressedSignedRedRgtc1Ext = OpenTK.Graphics.OpenGL.ExtTextureCompressionRgtc.CompressedSignedRedRgtc1Ext; - var _CompressedRedGreenRgtc2Ext = OpenTK.Graphics.OpenGL.ExtTextureCompressionRgtc.CompressedRedGreenRgtc2Ext; - var _CompressedSignedRedGreenRgtc2Ext = OpenTK.Graphics.OpenGL.ExtTextureCompressionRgtc.CompressedSignedRedGreenRgtc2Ext; -} -static void Test_ExtTextureCompressionS3tc_19667() { - var _CompressedRgbS3tcDxt1Ext = OpenTK.Graphics.OpenGL.ExtTextureCompressionS3tc.CompressedRgbS3tcDxt1Ext; - var _CompressedRgbaS3tcDxt1Ext = OpenTK.Graphics.OpenGL.ExtTextureCompressionS3tc.CompressedRgbaS3tcDxt1Ext; - var _CompressedRgbaS3tcDxt3Ext = OpenTK.Graphics.OpenGL.ExtTextureCompressionS3tc.CompressedRgbaS3tcDxt3Ext; - var _CompressedRgbaS3tcDxt5Ext = OpenTK.Graphics.OpenGL.ExtTextureCompressionS3tc.CompressedRgbaS3tcDxt5Ext; -} -static void Test_ExtTextureCubeMap_19668() { - var _NormalMapExt = OpenTK.Graphics.OpenGL.ExtTextureCubeMap.NormalMapExt; - var _ReflectionMapExt = OpenTK.Graphics.OpenGL.ExtTextureCubeMap.ReflectionMapExt; - var _TextureCubeMapExt = OpenTK.Graphics.OpenGL.ExtTextureCubeMap.TextureCubeMapExt; - var _TextureBindingCubeMapExt = OpenTK.Graphics.OpenGL.ExtTextureCubeMap.TextureBindingCubeMapExt; - var _TextureCubeMapPositiveXExt = OpenTK.Graphics.OpenGL.ExtTextureCubeMap.TextureCubeMapPositiveXExt; - var _TextureCubeMapNegativeXExt = OpenTK.Graphics.OpenGL.ExtTextureCubeMap.TextureCubeMapNegativeXExt; - var _TextureCubeMapPositiveYExt = OpenTK.Graphics.OpenGL.ExtTextureCubeMap.TextureCubeMapPositiveYExt; - var _TextureCubeMapNegativeYExt = OpenTK.Graphics.OpenGL.ExtTextureCubeMap.TextureCubeMapNegativeYExt; - var _TextureCubeMapPositiveZExt = OpenTK.Graphics.OpenGL.ExtTextureCubeMap.TextureCubeMapPositiveZExt; - var _TextureCubeMapNegativeZExt = OpenTK.Graphics.OpenGL.ExtTextureCubeMap.TextureCubeMapNegativeZExt; - var _ProxyTextureCubeMapExt = OpenTK.Graphics.OpenGL.ExtTextureCubeMap.ProxyTextureCubeMapExt; - var _MaxCubeMapTextureSizeExt = OpenTK.Graphics.OpenGL.ExtTextureCubeMap.MaxCubeMapTextureSizeExt; -} -static void Test_ExtTextureEnvAdd_19669() { -} -static void Test_ExtTextureEnvCombine_19670() { - var _CombineExt = OpenTK.Graphics.OpenGL.ExtTextureEnvCombine.CombineExt; - var _CombineRgbExt = OpenTK.Graphics.OpenGL.ExtTextureEnvCombine.CombineRgbExt; - var _CombineAlphaExt = OpenTK.Graphics.OpenGL.ExtTextureEnvCombine.CombineAlphaExt; - var _RgbScaleExt = OpenTK.Graphics.OpenGL.ExtTextureEnvCombine.RgbScaleExt; - var _AddSignedExt = OpenTK.Graphics.OpenGL.ExtTextureEnvCombine.AddSignedExt; - var _InterpolateExt = OpenTK.Graphics.OpenGL.ExtTextureEnvCombine.InterpolateExt; - var _ConstantExt = OpenTK.Graphics.OpenGL.ExtTextureEnvCombine.ConstantExt; - var _PrimaryColorExt = OpenTK.Graphics.OpenGL.ExtTextureEnvCombine.PrimaryColorExt; - var _PreviousExt = OpenTK.Graphics.OpenGL.ExtTextureEnvCombine.PreviousExt; - var _Source0RgbExt = OpenTK.Graphics.OpenGL.ExtTextureEnvCombine.Source0RgbExt; - var _Source1RgbExt = OpenTK.Graphics.OpenGL.ExtTextureEnvCombine.Source1RgbExt; - var _Source2RgbExt = OpenTK.Graphics.OpenGL.ExtTextureEnvCombine.Source2RgbExt; - var _Source0AlphaExt = OpenTK.Graphics.OpenGL.ExtTextureEnvCombine.Source0AlphaExt; - var _Source1AlphaExt = OpenTK.Graphics.OpenGL.ExtTextureEnvCombine.Source1AlphaExt; - var _Source2AlphaExt = OpenTK.Graphics.OpenGL.ExtTextureEnvCombine.Source2AlphaExt; - var _Operand0RgbExt = OpenTK.Graphics.OpenGL.ExtTextureEnvCombine.Operand0RgbExt; - var _Operand1RgbExt = OpenTK.Graphics.OpenGL.ExtTextureEnvCombine.Operand1RgbExt; - var _Operand2RgbExt = OpenTK.Graphics.OpenGL.ExtTextureEnvCombine.Operand2RgbExt; - var _Operand0AlphaExt = OpenTK.Graphics.OpenGL.ExtTextureEnvCombine.Operand0AlphaExt; - var _Operand1AlphaExt = OpenTK.Graphics.OpenGL.ExtTextureEnvCombine.Operand1AlphaExt; - var _Operand2AlphaExt = OpenTK.Graphics.OpenGL.ExtTextureEnvCombine.Operand2AlphaExt; -} -static void Test_ExtTextureEnvDot3_19671() { - var _Dot3RgbExt = OpenTK.Graphics.OpenGL.ExtTextureEnvDot3.Dot3RgbExt; - var _Dot3RgbaExt = OpenTK.Graphics.OpenGL.ExtTextureEnvDot3.Dot3RgbaExt; -} -static void Test_ExtTextureFilterAnisotropic_19672() { - var _TextureMaxAnisotropyExt = OpenTK.Graphics.OpenGL.ExtTextureFilterAnisotropic.TextureMaxAnisotropyExt; - var _MaxTextureMaxAnisotropyExt = OpenTK.Graphics.OpenGL.ExtTextureFilterAnisotropic.MaxTextureMaxAnisotropyExt; -} -static void Test_ExtTextureInteger_19673() { - var _Rgba32uiExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.Rgba32uiExt; - var _Rgb32uiExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.Rgb32uiExt; - var _Alpha32uiExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.Alpha32uiExt; - var _Intensity32uiExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.Intensity32uiExt; - var _Luminance32uiExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.Luminance32uiExt; - var _LuminanceAlpha32uiExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.LuminanceAlpha32uiExt; - var _Rgba16uiExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.Rgba16uiExt; - var _Rgb16uiExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.Rgb16uiExt; - var _Alpha16uiExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.Alpha16uiExt; - var _Intensity16uiExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.Intensity16uiExt; - var _Luminance16uiExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.Luminance16uiExt; - var _LuminanceAlpha16uiExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.LuminanceAlpha16uiExt; - var _Rgba8uiExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.Rgba8uiExt; - var _Rgb8uiExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.Rgb8uiExt; - var _Alpha8uiExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.Alpha8uiExt; - var _Intensity8uiExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.Intensity8uiExt; - var _Luminance8uiExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.Luminance8uiExt; - var _LuminanceAlpha8uiExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.LuminanceAlpha8uiExt; - var _Rgba32iExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.Rgba32iExt; - var _Rgb32iExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.Rgb32iExt; - var _Alpha32iExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.Alpha32iExt; - var _Intensity32iExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.Intensity32iExt; - var _Luminance32iExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.Luminance32iExt; - var _LuminanceAlpha32iExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.LuminanceAlpha32iExt; - var _Rgba16iExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.Rgba16iExt; - var _Rgb16iExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.Rgb16iExt; - var _Alpha16iExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.Alpha16iExt; - var _Intensity16iExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.Intensity16iExt; - var _Luminance16iExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.Luminance16iExt; - var _LuminanceAlpha16iExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.LuminanceAlpha16iExt; - var _Rgba8iExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.Rgba8iExt; - var _Rgb8iExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.Rgb8iExt; - var _Alpha8iExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.Alpha8iExt; - var _Intensity8iExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.Intensity8iExt; - var _Luminance8iExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.Luminance8iExt; - var _LuminanceAlpha8iExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.LuminanceAlpha8iExt; - var _RedIntegerExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.RedIntegerExt; - var _GreenIntegerExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.GreenIntegerExt; - var _BlueIntegerExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.BlueIntegerExt; - var _AlphaIntegerExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.AlphaIntegerExt; - var _RgbIntegerExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.RgbIntegerExt; - var _RgbaIntegerExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.RgbaIntegerExt; - var _BgrIntegerExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.BgrIntegerExt; - var _BgraIntegerExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.BgraIntegerExt; - var _LuminanceIntegerExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.LuminanceIntegerExt; - var _LuminanceAlphaIntegerExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.LuminanceAlphaIntegerExt; - var _RgbaIntegerModeExt = OpenTK.Graphics.OpenGL.ExtTextureInteger.RgbaIntegerModeExt; -} -static void Test_ExtTextureLodBias_19674() { - var _MaxTextureLodBiasExt = OpenTK.Graphics.OpenGL.ExtTextureLodBias.MaxTextureLodBiasExt; - var _TextureFilterControlExt = OpenTK.Graphics.OpenGL.ExtTextureLodBias.TextureFilterControlExt; - var _TextureLodBiasExt = OpenTK.Graphics.OpenGL.ExtTextureLodBias.TextureLodBiasExt; -} -static void Test_ExtTextureMirrorClamp_19675() { - var _MirrorClampExt = OpenTK.Graphics.OpenGL.ExtTextureMirrorClamp.MirrorClampExt; - var _MirrorClampToEdgeExt = OpenTK.Graphics.OpenGL.ExtTextureMirrorClamp.MirrorClampToEdgeExt; - var _MirrorClampToBorderExt = OpenTK.Graphics.OpenGL.ExtTextureMirrorClamp.MirrorClampToBorderExt; -} -static void Test_ExtTextureObject_19676() { - var _TexturePriorityExt = OpenTK.Graphics.OpenGL.ExtTextureObject.TexturePriorityExt; - var _TextureResidentExt = OpenTK.Graphics.OpenGL.ExtTextureObject.TextureResidentExt; - var _Texture1DBindingExt = OpenTK.Graphics.OpenGL.ExtTextureObject.Texture1DBindingExt; - var _Texture2DBindingExt = OpenTK.Graphics.OpenGL.ExtTextureObject.Texture2DBindingExt; - var _Texture3DBindingExt = OpenTK.Graphics.OpenGL.ExtTextureObject.Texture3DBindingExt; -} -static void Test_ExtTexturePerturbNormal_19677() { - var _PerturbExt = OpenTK.Graphics.OpenGL.ExtTexturePerturbNormal.PerturbExt; - var _TextureNormalExt = OpenTK.Graphics.OpenGL.ExtTexturePerturbNormal.TextureNormalExt; -} -static void Test_ExtTextureSharedExponent_19678() { - var _Rgb9E5Ext = OpenTK.Graphics.OpenGL.ExtTextureSharedExponent.Rgb9E5Ext; - var _UnsignedInt5999RevExt = OpenTK.Graphics.OpenGL.ExtTextureSharedExponent.UnsignedInt5999RevExt; - var _TextureSharedSizeExt = OpenTK.Graphics.OpenGL.ExtTextureSharedExponent.TextureSharedSizeExt; -} -static void Test_ExtTextureSnorm_19679() { - var _RedSnorm = OpenTK.Graphics.OpenGL.ExtTextureSnorm.RedSnorm; - var _RgSnorm = OpenTK.Graphics.OpenGL.ExtTextureSnorm.RgSnorm; - var _RgbSnorm = OpenTK.Graphics.OpenGL.ExtTextureSnorm.RgbSnorm; - var _RgbaSnorm = OpenTK.Graphics.OpenGL.ExtTextureSnorm.RgbaSnorm; - var _R8Snorm = OpenTK.Graphics.OpenGL.ExtTextureSnorm.R8Snorm; - var _Rg8Snorm = OpenTK.Graphics.OpenGL.ExtTextureSnorm.Rg8Snorm; - var _Rgb8Snorm = OpenTK.Graphics.OpenGL.ExtTextureSnorm.Rgb8Snorm; - var _Rgba8Snorm = OpenTK.Graphics.OpenGL.ExtTextureSnorm.Rgba8Snorm; - var _R16Snorm = OpenTK.Graphics.OpenGL.ExtTextureSnorm.R16Snorm; - var _Rg16Snorm = OpenTK.Graphics.OpenGL.ExtTextureSnorm.Rg16Snorm; - var _Rgb16Snorm = OpenTK.Graphics.OpenGL.ExtTextureSnorm.Rgb16Snorm; - var _Rgba16Snorm = OpenTK.Graphics.OpenGL.ExtTextureSnorm.Rgba16Snorm; - var _SignedNormalized = OpenTK.Graphics.OpenGL.ExtTextureSnorm.SignedNormalized; - var _AlphaSnorm = OpenTK.Graphics.OpenGL.ExtTextureSnorm.AlphaSnorm; - var _LuminanceSnorm = OpenTK.Graphics.OpenGL.ExtTextureSnorm.LuminanceSnorm; - var _LuminanceAlphaSnorm = OpenTK.Graphics.OpenGL.ExtTextureSnorm.LuminanceAlphaSnorm; - var _IntensitySnorm = OpenTK.Graphics.OpenGL.ExtTextureSnorm.IntensitySnorm; - var _Alpha8Snorm = OpenTK.Graphics.OpenGL.ExtTextureSnorm.Alpha8Snorm; - var _Luminance8Snorm = OpenTK.Graphics.OpenGL.ExtTextureSnorm.Luminance8Snorm; - var _Luminance8Alpha8Snorm = OpenTK.Graphics.OpenGL.ExtTextureSnorm.Luminance8Alpha8Snorm; - var _Intensity8Snorm = OpenTK.Graphics.OpenGL.ExtTextureSnorm.Intensity8Snorm; - var _Alpha16Snorm = OpenTK.Graphics.OpenGL.ExtTextureSnorm.Alpha16Snorm; - var _Luminance16Snorm = OpenTK.Graphics.OpenGL.ExtTextureSnorm.Luminance16Snorm; - var _Luminance16Alpha16Snorm = OpenTK.Graphics.OpenGL.ExtTextureSnorm.Luminance16Alpha16Snorm; - var _Intensity16Snorm = OpenTK.Graphics.OpenGL.ExtTextureSnorm.Intensity16Snorm; -} -static void Test_ExtTextureSrgb_19680() { - var _SrgbExt = OpenTK.Graphics.OpenGL.ExtTextureSrgb.SrgbExt; - var _Srgb8Ext = OpenTK.Graphics.OpenGL.ExtTextureSrgb.Srgb8Ext; - var _SrgbAlphaExt = OpenTK.Graphics.OpenGL.ExtTextureSrgb.SrgbAlphaExt; - var _Srgb8Alpha8Ext = OpenTK.Graphics.OpenGL.ExtTextureSrgb.Srgb8Alpha8Ext; - var _SluminanceAlphaExt = OpenTK.Graphics.OpenGL.ExtTextureSrgb.SluminanceAlphaExt; - var _Sluminance8Alpha8Ext = OpenTK.Graphics.OpenGL.ExtTextureSrgb.Sluminance8Alpha8Ext; - var _SluminanceExt = OpenTK.Graphics.OpenGL.ExtTextureSrgb.SluminanceExt; - var _Sluminance8Ext = OpenTK.Graphics.OpenGL.ExtTextureSrgb.Sluminance8Ext; - var _CompressedSrgbExt = OpenTK.Graphics.OpenGL.ExtTextureSrgb.CompressedSrgbExt; - var _CompressedSrgbAlphaExt = OpenTK.Graphics.OpenGL.ExtTextureSrgb.CompressedSrgbAlphaExt; - var _CompressedSluminanceExt = OpenTK.Graphics.OpenGL.ExtTextureSrgb.CompressedSluminanceExt; - var _CompressedSluminanceAlphaExt = OpenTK.Graphics.OpenGL.ExtTextureSrgb.CompressedSluminanceAlphaExt; - var _CompressedSrgbS3tcDxt1Ext = OpenTK.Graphics.OpenGL.ExtTextureSrgb.CompressedSrgbS3tcDxt1Ext; - var _CompressedSrgbAlphaS3tcDxt1Ext = OpenTK.Graphics.OpenGL.ExtTextureSrgb.CompressedSrgbAlphaS3tcDxt1Ext; - var _CompressedSrgbAlphaS3tcDxt3Ext = OpenTK.Graphics.OpenGL.ExtTextureSrgb.CompressedSrgbAlphaS3tcDxt3Ext; - var _CompressedSrgbAlphaS3tcDxt5Ext = OpenTK.Graphics.OpenGL.ExtTextureSrgb.CompressedSrgbAlphaS3tcDxt5Ext; -} -static void Test_ExtTextureSrgbDecode_19681() { - var _TextureSrgbDecodeExt = OpenTK.Graphics.OpenGL.ExtTextureSrgbDecode.TextureSrgbDecodeExt; - var _DecodeExt = OpenTK.Graphics.OpenGL.ExtTextureSrgbDecode.DecodeExt; - var _SkipDecodeExt = OpenTK.Graphics.OpenGL.ExtTextureSrgbDecode.SkipDecodeExt; -} -static void Test_ExtTextureSwizzle_19682() { - var _TextureSwizzleRExt = OpenTK.Graphics.OpenGL.ExtTextureSwizzle.TextureSwizzleRExt; - var _TextureSwizzleGExt = OpenTK.Graphics.OpenGL.ExtTextureSwizzle.TextureSwizzleGExt; - var _TextureSwizzleBExt = OpenTK.Graphics.OpenGL.ExtTextureSwizzle.TextureSwizzleBExt; - var _TextureSwizzleAExt = OpenTK.Graphics.OpenGL.ExtTextureSwizzle.TextureSwizzleAExt; - var _TextureSwizzleRgbaExt = OpenTK.Graphics.OpenGL.ExtTextureSwizzle.TextureSwizzleRgbaExt; -} -static void Test_ExtTimerQuery_19683() { - var _TimeElapsedExt = OpenTK.Graphics.OpenGL.ExtTimerQuery.TimeElapsedExt; -} -static void Test_ExtTransformFeedback_19684() { - var _TransformFeedbackVaryingMaxLengthExt = OpenTK.Graphics.OpenGL.ExtTransformFeedback.TransformFeedbackVaryingMaxLengthExt; - var _TransformFeedbackBufferModeExt = OpenTK.Graphics.OpenGL.ExtTransformFeedback.TransformFeedbackBufferModeExt; - var _MaxTransformFeedbackSeparateComponentsExt = OpenTK.Graphics.OpenGL.ExtTransformFeedback.MaxTransformFeedbackSeparateComponentsExt; - var _TransformFeedbackVaryingsExt = OpenTK.Graphics.OpenGL.ExtTransformFeedback.TransformFeedbackVaryingsExt; - var _TransformFeedbackBufferStartExt = OpenTK.Graphics.OpenGL.ExtTransformFeedback.TransformFeedbackBufferStartExt; - var _TransformFeedbackBufferSizeExt = OpenTK.Graphics.OpenGL.ExtTransformFeedback.TransformFeedbackBufferSizeExt; - var _PrimitivesGeneratedExt = OpenTK.Graphics.OpenGL.ExtTransformFeedback.PrimitivesGeneratedExt; - var _TransformFeedbackPrimitivesWrittenExt = OpenTK.Graphics.OpenGL.ExtTransformFeedback.TransformFeedbackPrimitivesWrittenExt; - var _RasterizerDiscardExt = OpenTK.Graphics.OpenGL.ExtTransformFeedback.RasterizerDiscardExt; - var _MaxTransformFeedbackInterleavedComponentsExt = OpenTK.Graphics.OpenGL.ExtTransformFeedback.MaxTransformFeedbackInterleavedComponentsExt; - var _MaxTransformFeedbackSeparateAttribsExt = OpenTK.Graphics.OpenGL.ExtTransformFeedback.MaxTransformFeedbackSeparateAttribsExt; - var _InterleavedAttribsExt = OpenTK.Graphics.OpenGL.ExtTransformFeedback.InterleavedAttribsExt; - var _SeparateAttribsExt = OpenTK.Graphics.OpenGL.ExtTransformFeedback.SeparateAttribsExt; - var _TransformFeedbackBufferExt = OpenTK.Graphics.OpenGL.ExtTransformFeedback.TransformFeedbackBufferExt; - var _TransformFeedbackBufferBindingExt = OpenTK.Graphics.OpenGL.ExtTransformFeedback.TransformFeedbackBufferBindingExt; -} -static void Test_ExtVertexArray_19685() { - var _VertexArrayExt = OpenTK.Graphics.OpenGL.ExtVertexArray.VertexArrayExt; - var _NormalArrayExt = OpenTK.Graphics.OpenGL.ExtVertexArray.NormalArrayExt; - var _ColorArrayExt = OpenTK.Graphics.OpenGL.ExtVertexArray.ColorArrayExt; - var _IndexArrayExt = OpenTK.Graphics.OpenGL.ExtVertexArray.IndexArrayExt; - var _TextureCoordArrayExt = OpenTK.Graphics.OpenGL.ExtVertexArray.TextureCoordArrayExt; - var _EdgeFlagArrayExt = OpenTK.Graphics.OpenGL.ExtVertexArray.EdgeFlagArrayExt; - var _VertexArraySizeExt = OpenTK.Graphics.OpenGL.ExtVertexArray.VertexArraySizeExt; - var _VertexArrayTypeExt = OpenTK.Graphics.OpenGL.ExtVertexArray.VertexArrayTypeExt; - var _VertexArrayStrideExt = OpenTK.Graphics.OpenGL.ExtVertexArray.VertexArrayStrideExt; - var _VertexArrayCountExt = OpenTK.Graphics.OpenGL.ExtVertexArray.VertexArrayCountExt; - var _NormalArrayTypeExt = OpenTK.Graphics.OpenGL.ExtVertexArray.NormalArrayTypeExt; - var _NormalArrayStrideExt = OpenTK.Graphics.OpenGL.ExtVertexArray.NormalArrayStrideExt; - var _NormalArrayCountExt = OpenTK.Graphics.OpenGL.ExtVertexArray.NormalArrayCountExt; - var _ColorArraySizeExt = OpenTK.Graphics.OpenGL.ExtVertexArray.ColorArraySizeExt; - var _ColorArrayTypeExt = OpenTK.Graphics.OpenGL.ExtVertexArray.ColorArrayTypeExt; - var _ColorArrayStrideExt = OpenTK.Graphics.OpenGL.ExtVertexArray.ColorArrayStrideExt; - var _ColorArrayCountExt = OpenTK.Graphics.OpenGL.ExtVertexArray.ColorArrayCountExt; - var _IndexArrayTypeExt = OpenTK.Graphics.OpenGL.ExtVertexArray.IndexArrayTypeExt; - var _IndexArrayStrideExt = OpenTK.Graphics.OpenGL.ExtVertexArray.IndexArrayStrideExt; - var _IndexArrayCountExt = OpenTK.Graphics.OpenGL.ExtVertexArray.IndexArrayCountExt; - var _TextureCoordArraySizeExt = OpenTK.Graphics.OpenGL.ExtVertexArray.TextureCoordArraySizeExt; - var _TextureCoordArrayTypeExt = OpenTK.Graphics.OpenGL.ExtVertexArray.TextureCoordArrayTypeExt; - var _TextureCoordArrayStrideExt = OpenTK.Graphics.OpenGL.ExtVertexArray.TextureCoordArrayStrideExt; - var _TextureCoordArrayCountExt = OpenTK.Graphics.OpenGL.ExtVertexArray.TextureCoordArrayCountExt; - var _EdgeFlagArrayStrideExt = OpenTK.Graphics.OpenGL.ExtVertexArray.EdgeFlagArrayStrideExt; - var _EdgeFlagArrayCountExt = OpenTK.Graphics.OpenGL.ExtVertexArray.EdgeFlagArrayCountExt; - var _VertexArrayPointerExt = OpenTK.Graphics.OpenGL.ExtVertexArray.VertexArrayPointerExt; - var _NormalArrayPointerExt = OpenTK.Graphics.OpenGL.ExtVertexArray.NormalArrayPointerExt; - var _ColorArrayPointerExt = OpenTK.Graphics.OpenGL.ExtVertexArray.ColorArrayPointerExt; - var _IndexArrayPointerExt = OpenTK.Graphics.OpenGL.ExtVertexArray.IndexArrayPointerExt; - var _TextureCoordArrayPointerExt = OpenTK.Graphics.OpenGL.ExtVertexArray.TextureCoordArrayPointerExt; - var _EdgeFlagArrayPointerExt = OpenTK.Graphics.OpenGL.ExtVertexArray.EdgeFlagArrayPointerExt; -} -static void Test_ExtVertexArrayBgra_19686() { - var _Bgra = OpenTK.Graphics.OpenGL.ExtVertexArrayBgra.Bgra; -} -static void Test_ExtVertexAttrib64bit_19687() { - var _Double = OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit.Double; - var _DoubleMat2Ext = OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit.DoubleMat2Ext; - var _DoubleMat3Ext = OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit.DoubleMat3Ext; - var _DoubleMat4Ext = OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit.DoubleMat4Ext; - var _DoubleMat2x3Ext = OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit.DoubleMat2x3Ext; - var _DoubleMat2x4Ext = OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit.DoubleMat2x4Ext; - var _DoubleMat3x2Ext = OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit.DoubleMat3x2Ext; - var _DoubleMat3x4Ext = OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit.DoubleMat3x4Ext; - var _DoubleMat4x2Ext = OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit.DoubleMat4x2Ext; - var _DoubleMat4x3Ext = OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit.DoubleMat4x3Ext; - var _DoubleVec2Ext = OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit.DoubleVec2Ext; - var _DoubleVec3Ext = OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit.DoubleVec3Ext; - var _DoubleVec4Ext = OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit.DoubleVec4Ext; -} -static void Test_ExtVertexShader_19688() { - var _VertexShaderExt = OpenTK.Graphics.OpenGL.ExtVertexShader.VertexShaderExt; - var _VertexShaderBindingExt = OpenTK.Graphics.OpenGL.ExtVertexShader.VertexShaderBindingExt; - var _OpIndexExt = OpenTK.Graphics.OpenGL.ExtVertexShader.OpIndexExt; - var _OpNegateExt = OpenTK.Graphics.OpenGL.ExtVertexShader.OpNegateExt; - var _OpDot3Ext = OpenTK.Graphics.OpenGL.ExtVertexShader.OpDot3Ext; - var _OpDot4Ext = OpenTK.Graphics.OpenGL.ExtVertexShader.OpDot4Ext; - var _OpMulExt = OpenTK.Graphics.OpenGL.ExtVertexShader.OpMulExt; - var _OpAddExt = OpenTK.Graphics.OpenGL.ExtVertexShader.OpAddExt; - var _OpMaddExt = OpenTK.Graphics.OpenGL.ExtVertexShader.OpMaddExt; - var _OpFracExt = OpenTK.Graphics.OpenGL.ExtVertexShader.OpFracExt; - var _OpMaxExt = OpenTK.Graphics.OpenGL.ExtVertexShader.OpMaxExt; - var _OpMinExt = OpenTK.Graphics.OpenGL.ExtVertexShader.OpMinExt; - var _OpSetGeExt = OpenTK.Graphics.OpenGL.ExtVertexShader.OpSetGeExt; - var _OpSetLtExt = OpenTK.Graphics.OpenGL.ExtVertexShader.OpSetLtExt; - var _OpClampExt = OpenTK.Graphics.OpenGL.ExtVertexShader.OpClampExt; - var _OpFloorExt = OpenTK.Graphics.OpenGL.ExtVertexShader.OpFloorExt; - var _OpRoundExt = OpenTK.Graphics.OpenGL.ExtVertexShader.OpRoundExt; - var _OpExpBase2Ext = OpenTK.Graphics.OpenGL.ExtVertexShader.OpExpBase2Ext; - var _OpLogBase2Ext = OpenTK.Graphics.OpenGL.ExtVertexShader.OpLogBase2Ext; - var _OpPowerExt = OpenTK.Graphics.OpenGL.ExtVertexShader.OpPowerExt; - var _OpRecipExt = OpenTK.Graphics.OpenGL.ExtVertexShader.OpRecipExt; - var _OpRecipSqrtExt = OpenTK.Graphics.OpenGL.ExtVertexShader.OpRecipSqrtExt; - var _OpSubExt = OpenTK.Graphics.OpenGL.ExtVertexShader.OpSubExt; - var _OpCrossProductExt = OpenTK.Graphics.OpenGL.ExtVertexShader.OpCrossProductExt; - var _OpMultiplyMatrixExt = OpenTK.Graphics.OpenGL.ExtVertexShader.OpMultiplyMatrixExt; - var _OpMovExt = OpenTK.Graphics.OpenGL.ExtVertexShader.OpMovExt; - var _OutputVertexExt = OpenTK.Graphics.OpenGL.ExtVertexShader.OutputVertexExt; - var _OutputColor0Ext = OpenTK.Graphics.OpenGL.ExtVertexShader.OutputColor0Ext; - var _OutputColor1Ext = OpenTK.Graphics.OpenGL.ExtVertexShader.OutputColor1Ext; - var _OutputTextureCoord0Ext = OpenTK.Graphics.OpenGL.ExtVertexShader.OutputTextureCoord0Ext; - var _OutputTextureCoord1Ext = OpenTK.Graphics.OpenGL.ExtVertexShader.OutputTextureCoord1Ext; - var _OutputTextureCoord2Ext = OpenTK.Graphics.OpenGL.ExtVertexShader.OutputTextureCoord2Ext; - var _OutputTextureCoord3Ext = OpenTK.Graphics.OpenGL.ExtVertexShader.OutputTextureCoord3Ext; - var _OutputTextureCoord4Ext = OpenTK.Graphics.OpenGL.ExtVertexShader.OutputTextureCoord4Ext; - var _OutputTextureCoord5Ext = OpenTK.Graphics.OpenGL.ExtVertexShader.OutputTextureCoord5Ext; - var _OutputTextureCoord6Ext = OpenTK.Graphics.OpenGL.ExtVertexShader.OutputTextureCoord6Ext; - var _OutputTextureCoord7Ext = OpenTK.Graphics.OpenGL.ExtVertexShader.OutputTextureCoord7Ext; - var _OutputTextureCoord8Ext = OpenTK.Graphics.OpenGL.ExtVertexShader.OutputTextureCoord8Ext; - var _OutputTextureCoord9Ext = OpenTK.Graphics.OpenGL.ExtVertexShader.OutputTextureCoord9Ext; - var _OutputTextureCoord10Ext = OpenTK.Graphics.OpenGL.ExtVertexShader.OutputTextureCoord10Ext; - var _OutputTextureCoord11Ext = OpenTK.Graphics.OpenGL.ExtVertexShader.OutputTextureCoord11Ext; - var _OutputTextureCoord12Ext = OpenTK.Graphics.OpenGL.ExtVertexShader.OutputTextureCoord12Ext; - var _OutputTextureCoord13Ext = OpenTK.Graphics.OpenGL.ExtVertexShader.OutputTextureCoord13Ext; - var _OutputTextureCoord14Ext = OpenTK.Graphics.OpenGL.ExtVertexShader.OutputTextureCoord14Ext; - var _OutputTextureCoord15Ext = OpenTK.Graphics.OpenGL.ExtVertexShader.OutputTextureCoord15Ext; - var _OutputTextureCoord16Ext = OpenTK.Graphics.OpenGL.ExtVertexShader.OutputTextureCoord16Ext; - var _OutputTextureCoord17Ext = OpenTK.Graphics.OpenGL.ExtVertexShader.OutputTextureCoord17Ext; - var _OutputTextureCoord18Ext = OpenTK.Graphics.OpenGL.ExtVertexShader.OutputTextureCoord18Ext; - var _OutputTextureCoord19Ext = OpenTK.Graphics.OpenGL.ExtVertexShader.OutputTextureCoord19Ext; - var _OutputTextureCoord20Ext = OpenTK.Graphics.OpenGL.ExtVertexShader.OutputTextureCoord20Ext; - var _OutputTextureCoord21Ext = OpenTK.Graphics.OpenGL.ExtVertexShader.OutputTextureCoord21Ext; - var _OutputTextureCoord22Ext = OpenTK.Graphics.OpenGL.ExtVertexShader.OutputTextureCoord22Ext; - var _OutputTextureCoord23Ext = OpenTK.Graphics.OpenGL.ExtVertexShader.OutputTextureCoord23Ext; - var _OutputTextureCoord24Ext = OpenTK.Graphics.OpenGL.ExtVertexShader.OutputTextureCoord24Ext; - var _OutputTextureCoord25Ext = OpenTK.Graphics.OpenGL.ExtVertexShader.OutputTextureCoord25Ext; - var _OutputTextureCoord26Ext = OpenTK.Graphics.OpenGL.ExtVertexShader.OutputTextureCoord26Ext; - var _OutputTextureCoord27Ext = OpenTK.Graphics.OpenGL.ExtVertexShader.OutputTextureCoord27Ext; - var _OutputTextureCoord28Ext = OpenTK.Graphics.OpenGL.ExtVertexShader.OutputTextureCoord28Ext; - var _OutputTextureCoord29Ext = OpenTK.Graphics.OpenGL.ExtVertexShader.OutputTextureCoord29Ext; - var _OutputTextureCoord30Ext = OpenTK.Graphics.OpenGL.ExtVertexShader.OutputTextureCoord30Ext; - var _OutputTextureCoord31Ext = OpenTK.Graphics.OpenGL.ExtVertexShader.OutputTextureCoord31Ext; - var _OutputFogExt = OpenTK.Graphics.OpenGL.ExtVertexShader.OutputFogExt; - var _ScalarExt = OpenTK.Graphics.OpenGL.ExtVertexShader.ScalarExt; - var _VectorExt = OpenTK.Graphics.OpenGL.ExtVertexShader.VectorExt; - var _MatrixExt = OpenTK.Graphics.OpenGL.ExtVertexShader.MatrixExt; - var _VariantExt = OpenTK.Graphics.OpenGL.ExtVertexShader.VariantExt; - var _InvariantExt = OpenTK.Graphics.OpenGL.ExtVertexShader.InvariantExt; - var _LocalConstantExt = OpenTK.Graphics.OpenGL.ExtVertexShader.LocalConstantExt; - var _LocalExt = OpenTK.Graphics.OpenGL.ExtVertexShader.LocalExt; - var _MaxVertexShaderInstructionsExt = OpenTK.Graphics.OpenGL.ExtVertexShader.MaxVertexShaderInstructionsExt; - var _MaxVertexShaderVariantsExt = OpenTK.Graphics.OpenGL.ExtVertexShader.MaxVertexShaderVariantsExt; - var _MaxVertexShaderInvariantsExt = OpenTK.Graphics.OpenGL.ExtVertexShader.MaxVertexShaderInvariantsExt; - var _MaxVertexShaderLocalConstantsExt = OpenTK.Graphics.OpenGL.ExtVertexShader.MaxVertexShaderLocalConstantsExt; - var _MaxVertexShaderLocalsExt = OpenTK.Graphics.OpenGL.ExtVertexShader.MaxVertexShaderLocalsExt; - var _MaxOptimizedVertexShaderInstructionsExt = OpenTK.Graphics.OpenGL.ExtVertexShader.MaxOptimizedVertexShaderInstructionsExt; - var _MaxOptimizedVertexShaderVariantsExt = OpenTK.Graphics.OpenGL.ExtVertexShader.MaxOptimizedVertexShaderVariantsExt; - var _MaxOptimizedVertexShaderLocalConstantsExt = OpenTK.Graphics.OpenGL.ExtVertexShader.MaxOptimizedVertexShaderLocalConstantsExt; - var _MaxOptimizedVertexShaderInvariantsExt = OpenTK.Graphics.OpenGL.ExtVertexShader.MaxOptimizedVertexShaderInvariantsExt; - var _MaxOptimizedVertexShaderLocalsExt = OpenTK.Graphics.OpenGL.ExtVertexShader.MaxOptimizedVertexShaderLocalsExt; - var _VertexShaderInstructionsExt = OpenTK.Graphics.OpenGL.ExtVertexShader.VertexShaderInstructionsExt; - var _VertexShaderVariantsExt = OpenTK.Graphics.OpenGL.ExtVertexShader.VertexShaderVariantsExt; - var _VertexShaderInvariantsExt = OpenTK.Graphics.OpenGL.ExtVertexShader.VertexShaderInvariantsExt; - var _VertexShaderLocalConstantsExt = OpenTK.Graphics.OpenGL.ExtVertexShader.VertexShaderLocalConstantsExt; - var _VertexShaderLocalsExt = OpenTK.Graphics.OpenGL.ExtVertexShader.VertexShaderLocalsExt; - var _VertexShaderOptimizedExt = OpenTK.Graphics.OpenGL.ExtVertexShader.VertexShaderOptimizedExt; - var _XExt = OpenTK.Graphics.OpenGL.ExtVertexShader.XExt; - var _YExt = OpenTK.Graphics.OpenGL.ExtVertexShader.YExt; - var _ZExt = OpenTK.Graphics.OpenGL.ExtVertexShader.ZExt; - var _WExt = OpenTK.Graphics.OpenGL.ExtVertexShader.WExt; - var _NegativeXExt = OpenTK.Graphics.OpenGL.ExtVertexShader.NegativeXExt; - var _NegativeYExt = OpenTK.Graphics.OpenGL.ExtVertexShader.NegativeYExt; - var _NegativeZExt = OpenTK.Graphics.OpenGL.ExtVertexShader.NegativeZExt; - var _NegativeWExt = OpenTK.Graphics.OpenGL.ExtVertexShader.NegativeWExt; - var _ZeroExt = OpenTK.Graphics.OpenGL.ExtVertexShader.ZeroExt; - var _OneExt = OpenTK.Graphics.OpenGL.ExtVertexShader.OneExt; - var _NegativeOneExt = OpenTK.Graphics.OpenGL.ExtVertexShader.NegativeOneExt; - var _NormalizedRangeExt = OpenTK.Graphics.OpenGL.ExtVertexShader.NormalizedRangeExt; - var _FullRangeExt = OpenTK.Graphics.OpenGL.ExtVertexShader.FullRangeExt; - var _CurrentVertexExt = OpenTK.Graphics.OpenGL.ExtVertexShader.CurrentVertexExt; - var _MvpMatrixExt = OpenTK.Graphics.OpenGL.ExtVertexShader.MvpMatrixExt; - var _VariantValueExt = OpenTK.Graphics.OpenGL.ExtVertexShader.VariantValueExt; - var _VariantDatatypeExt = OpenTK.Graphics.OpenGL.ExtVertexShader.VariantDatatypeExt; - var _VariantArrayStrideExt = OpenTK.Graphics.OpenGL.ExtVertexShader.VariantArrayStrideExt; - var _VariantArrayTypeExt = OpenTK.Graphics.OpenGL.ExtVertexShader.VariantArrayTypeExt; - var _VariantArrayExt = OpenTK.Graphics.OpenGL.ExtVertexShader.VariantArrayExt; - var _VariantArrayPointerExt = OpenTK.Graphics.OpenGL.ExtVertexShader.VariantArrayPointerExt; - var _InvariantValueExt = OpenTK.Graphics.OpenGL.ExtVertexShader.InvariantValueExt; - var _InvariantDatatypeExt = OpenTK.Graphics.OpenGL.ExtVertexShader.InvariantDatatypeExt; - var _LocalConstantValueExt = OpenTK.Graphics.OpenGL.ExtVertexShader.LocalConstantValueExt; - var _LocalConstantDatatypeExt = OpenTK.Graphics.OpenGL.ExtVertexShader.LocalConstantDatatypeExt; -} -static void Test_ExtVertexWeighting_19689() { - var _Modelview0StackDepthExt = OpenTK.Graphics.OpenGL.ExtVertexWeighting.Modelview0StackDepthExt; - var _Modelview0MatrixExt = OpenTK.Graphics.OpenGL.ExtVertexWeighting.Modelview0MatrixExt; - var _Modelview0Ext = OpenTK.Graphics.OpenGL.ExtVertexWeighting.Modelview0Ext; - var _Modelview1StackDepthExt = OpenTK.Graphics.OpenGL.ExtVertexWeighting.Modelview1StackDepthExt; - var _Modelview1MatrixExt = OpenTK.Graphics.OpenGL.ExtVertexWeighting.Modelview1MatrixExt; - var _VertexWeightingExt = OpenTK.Graphics.OpenGL.ExtVertexWeighting.VertexWeightingExt; - var _Modelview1Ext = OpenTK.Graphics.OpenGL.ExtVertexWeighting.Modelview1Ext; - var _CurrentVertexWeightExt = OpenTK.Graphics.OpenGL.ExtVertexWeighting.CurrentVertexWeightExt; - var _VertexWeightArrayExt = OpenTK.Graphics.OpenGL.ExtVertexWeighting.VertexWeightArrayExt; - var _VertexWeightArraySizeExt = OpenTK.Graphics.OpenGL.ExtVertexWeighting.VertexWeightArraySizeExt; - var _VertexWeightArrayTypeExt = OpenTK.Graphics.OpenGL.ExtVertexWeighting.VertexWeightArrayTypeExt; - var _VertexWeightArrayStrideExt = OpenTK.Graphics.OpenGL.ExtVertexWeighting.VertexWeightArrayStrideExt; - var _VertexWeightArrayPointerExt = OpenTK.Graphics.OpenGL.ExtVertexWeighting.VertexWeightArrayPointerExt; -} -static void Test_ExtX11SyncObject_19690() { - var _SyncX11FenceExt = OpenTK.Graphics.OpenGL.ExtX11SyncObject.SyncX11FenceExt; -} -static void Test_FeedBackToken_19691() { - var _PassThroughToken = OpenTK.Graphics.OpenGL.FeedBackToken.PassThroughToken; - var _PointToken = OpenTK.Graphics.OpenGL.FeedBackToken.PointToken; - var _LineToken = OpenTK.Graphics.OpenGL.FeedBackToken.LineToken; - var _PolygonToken = OpenTK.Graphics.OpenGL.FeedBackToken.PolygonToken; - var _BitmapToken = OpenTK.Graphics.OpenGL.FeedBackToken.BitmapToken; - var _DrawPixelToken = OpenTK.Graphics.OpenGL.FeedBackToken.DrawPixelToken; - var _CopyPixelToken = OpenTK.Graphics.OpenGL.FeedBackToken.CopyPixelToken; - var _LineResetToken = OpenTK.Graphics.OpenGL.FeedBackToken.LineResetToken; -} -static void Test_FeedbackType_19692() { - var _Gl2D = OpenTK.Graphics.OpenGL.FeedbackType.Gl2D; - var _Gl3D = OpenTK.Graphics.OpenGL.FeedbackType.Gl3D; - var _Gl3DColor = OpenTK.Graphics.OpenGL.FeedbackType.Gl3DColor; - var _Gl3DColorTexture = OpenTK.Graphics.OpenGL.FeedbackType.Gl3DColorTexture; - var _Gl4DColorTexture = OpenTK.Graphics.OpenGL.FeedbackType.Gl4DColorTexture; -} -static void Test_FfdMaskSgix_19693() { -} -static void Test_FfdTargetSgix_19694() { - var _GeometryDeformationSgix = OpenTK.Graphics.OpenGL.FfdTargetSgix.GeometryDeformationSgix; - var _TextureDeformationSgix = OpenTK.Graphics.OpenGL.FfdTargetSgix.TextureDeformationSgix; -} -static void Test_FogCoordinatePointerType_19695() { - var _Float = OpenTK.Graphics.OpenGL.FogCoordinatePointerType.Float; - var _Double = OpenTK.Graphics.OpenGL.FogCoordinatePointerType.Double; - var _HalfFloat = OpenTK.Graphics.OpenGL.FogCoordinatePointerType.HalfFloat; -} -static void Test_FogMode_19696() { - var _Exp = OpenTK.Graphics.OpenGL.FogMode.Exp; - var _Exp2 = OpenTK.Graphics.OpenGL.FogMode.Exp2; - var _Linear = OpenTK.Graphics.OpenGL.FogMode.Linear; - var _FogFuncSgis = OpenTK.Graphics.OpenGL.FogMode.FogFuncSgis; - var _FogCoord = OpenTK.Graphics.OpenGL.FogMode.FogCoord; - var _FragmentDepth = OpenTK.Graphics.OpenGL.FogMode.FragmentDepth; -} -static void Test_FogParameter_19697() { - var _FogIndex = OpenTK.Graphics.OpenGL.FogParameter.FogIndex; - var _FogDensity = OpenTK.Graphics.OpenGL.FogParameter.FogDensity; - var _FogStart = OpenTK.Graphics.OpenGL.FogParameter.FogStart; - var _FogEnd = OpenTK.Graphics.OpenGL.FogParameter.FogEnd; - var _FogMode = OpenTK.Graphics.OpenGL.FogParameter.FogMode; - var _FogColor = OpenTK.Graphics.OpenGL.FogParameter.FogColor; - var _FogOffsetValueSgix = OpenTK.Graphics.OpenGL.FogParameter.FogOffsetValueSgix; - var _FogCoordSrc = OpenTK.Graphics.OpenGL.FogParameter.FogCoordSrc; -} -static void Test_FogPointerType_19698() { - var _Float = OpenTK.Graphics.OpenGL.FogPointerType.Float; - var _Double = OpenTK.Graphics.OpenGL.FogPointerType.Double; - var _HalfFloat = OpenTK.Graphics.OpenGL.FogPointerType.HalfFloat; -} -static void Test_FogPointerTypeExt_19699() { - var _Float = OpenTK.Graphics.OpenGL.FogPointerTypeExt.Float; - var _Double = OpenTK.Graphics.OpenGL.FogPointerTypeExt.Double; - var _HalfFloat = OpenTK.Graphics.OpenGL.FogPointerTypeExt.HalfFloat; -} -static void Test_FogPointerTypeIbm_19700() { - var _Float = OpenTK.Graphics.OpenGL.FogPointerTypeIbm.Float; - var _Double = OpenTK.Graphics.OpenGL.FogPointerTypeIbm.Double; - var _HalfFloat = OpenTK.Graphics.OpenGL.FogPointerTypeIbm.HalfFloat; -} -static void Test_FragmentLightModelParameterSgix_19701() { - var _FragmentLightModelLocalViewerSgix = OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix.FragmentLightModelLocalViewerSgix; - var _FragmentLightModelTwoSideSgix = OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix.FragmentLightModelTwoSideSgix; - var _FragmentLightModelAmbientSgix = OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix.FragmentLightModelAmbientSgix; - var _FragmentLightModelNormalInterpolationSgix = OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix.FragmentLightModelNormalInterpolationSgix; -} -static void Test_FramebufferAttachment_19702() { - var _FrontLeft = OpenTK.Graphics.OpenGL.FramebufferAttachment.FrontLeft; - var _FrontRight = OpenTK.Graphics.OpenGL.FramebufferAttachment.FrontRight; - var _BackLeft = OpenTK.Graphics.OpenGL.FramebufferAttachment.BackLeft; - var _BackRight = OpenTK.Graphics.OpenGL.FramebufferAttachment.BackRight; - var _Aux0 = OpenTK.Graphics.OpenGL.FramebufferAttachment.Aux0; - var _Aux1 = OpenTK.Graphics.OpenGL.FramebufferAttachment.Aux1; - var _Aux2 = OpenTK.Graphics.OpenGL.FramebufferAttachment.Aux2; - var _Aux3 = OpenTK.Graphics.OpenGL.FramebufferAttachment.Aux3; - var _Color = OpenTK.Graphics.OpenGL.FramebufferAttachment.Color; - var _Depth = OpenTK.Graphics.OpenGL.FramebufferAttachment.Depth; - var _Stencil = OpenTK.Graphics.OpenGL.FramebufferAttachment.Stencil; - var _DepthStencilAttachment = OpenTK.Graphics.OpenGL.FramebufferAttachment.DepthStencilAttachment; - var _ColorAttachment0 = OpenTK.Graphics.OpenGL.FramebufferAttachment.ColorAttachment0; - var _ColorAttachment0Ext = OpenTK.Graphics.OpenGL.FramebufferAttachment.ColorAttachment0Ext; - var _ColorAttachment1 = OpenTK.Graphics.OpenGL.FramebufferAttachment.ColorAttachment1; - var _ColorAttachment1Ext = OpenTK.Graphics.OpenGL.FramebufferAttachment.ColorAttachment1Ext; - var _ColorAttachment2 = OpenTK.Graphics.OpenGL.FramebufferAttachment.ColorAttachment2; - var _ColorAttachment2Ext = OpenTK.Graphics.OpenGL.FramebufferAttachment.ColorAttachment2Ext; - var _ColorAttachment3 = OpenTK.Graphics.OpenGL.FramebufferAttachment.ColorAttachment3; - var _ColorAttachment3Ext = OpenTK.Graphics.OpenGL.FramebufferAttachment.ColorAttachment3Ext; - var _ColorAttachment4 = OpenTK.Graphics.OpenGL.FramebufferAttachment.ColorAttachment4; - var _ColorAttachment4Ext = OpenTK.Graphics.OpenGL.FramebufferAttachment.ColorAttachment4Ext; - var _ColorAttachment5 = OpenTK.Graphics.OpenGL.FramebufferAttachment.ColorAttachment5; - var _ColorAttachment5Ext = OpenTK.Graphics.OpenGL.FramebufferAttachment.ColorAttachment5Ext; - var _ColorAttachment6 = OpenTK.Graphics.OpenGL.FramebufferAttachment.ColorAttachment6; - var _ColorAttachment6Ext = OpenTK.Graphics.OpenGL.FramebufferAttachment.ColorAttachment6Ext; - var _ColorAttachment7 = OpenTK.Graphics.OpenGL.FramebufferAttachment.ColorAttachment7; - var _ColorAttachment7Ext = OpenTK.Graphics.OpenGL.FramebufferAttachment.ColorAttachment7Ext; - var _ColorAttachment8 = OpenTK.Graphics.OpenGL.FramebufferAttachment.ColorAttachment8; - var _ColorAttachment8Ext = OpenTK.Graphics.OpenGL.FramebufferAttachment.ColorAttachment8Ext; - var _ColorAttachment9 = OpenTK.Graphics.OpenGL.FramebufferAttachment.ColorAttachment9; - var _ColorAttachment9Ext = OpenTK.Graphics.OpenGL.FramebufferAttachment.ColorAttachment9Ext; - var _ColorAttachment10 = OpenTK.Graphics.OpenGL.FramebufferAttachment.ColorAttachment10; - var _ColorAttachment10Ext = OpenTK.Graphics.OpenGL.FramebufferAttachment.ColorAttachment10Ext; - var _ColorAttachment11 = OpenTK.Graphics.OpenGL.FramebufferAttachment.ColorAttachment11; - var _ColorAttachment11Ext = OpenTK.Graphics.OpenGL.FramebufferAttachment.ColorAttachment11Ext; - var _ColorAttachment12 = OpenTK.Graphics.OpenGL.FramebufferAttachment.ColorAttachment12; - var _ColorAttachment12Ext = OpenTK.Graphics.OpenGL.FramebufferAttachment.ColorAttachment12Ext; - var _ColorAttachment13 = OpenTK.Graphics.OpenGL.FramebufferAttachment.ColorAttachment13; - var _ColorAttachment13Ext = OpenTK.Graphics.OpenGL.FramebufferAttachment.ColorAttachment13Ext; - var _ColorAttachment14 = OpenTK.Graphics.OpenGL.FramebufferAttachment.ColorAttachment14; - var _ColorAttachment14Ext = OpenTK.Graphics.OpenGL.FramebufferAttachment.ColorAttachment14Ext; - var _ColorAttachment15 = OpenTK.Graphics.OpenGL.FramebufferAttachment.ColorAttachment15; - var _ColorAttachment15Ext = OpenTK.Graphics.OpenGL.FramebufferAttachment.ColorAttachment15Ext; - var _DepthAttachment = OpenTK.Graphics.OpenGL.FramebufferAttachment.DepthAttachment; - var _DepthAttachmentExt = OpenTK.Graphics.OpenGL.FramebufferAttachment.DepthAttachmentExt; - var _StencilAttachment = OpenTK.Graphics.OpenGL.FramebufferAttachment.StencilAttachment; - var _StencilAttachmentExt = OpenTK.Graphics.OpenGL.FramebufferAttachment.StencilAttachmentExt; -} -static void Test_FramebufferAttachmentComponentType_19703() { - var _Int = OpenTK.Graphics.OpenGL.FramebufferAttachmentComponentType.Int; - var _Float = OpenTK.Graphics.OpenGL.FramebufferAttachmentComponentType.Float; - var _Index = OpenTK.Graphics.OpenGL.FramebufferAttachmentComponentType.Index; - var _UnsignedNormalized = OpenTK.Graphics.OpenGL.FramebufferAttachmentComponentType.UnsignedNormalized; -} -static void Test_FramebufferAttachmentObjectType_19704() { - var _None = OpenTK.Graphics.OpenGL.FramebufferAttachmentObjectType.None; - var _Texture = OpenTK.Graphics.OpenGL.FramebufferAttachmentObjectType.Texture; - var _FramebufferDefault = OpenTK.Graphics.OpenGL.FramebufferAttachmentObjectType.FramebufferDefault; - var _Renderbuffer = OpenTK.Graphics.OpenGL.FramebufferAttachmentObjectType.Renderbuffer; -} -static void Test_FramebufferDefaultParameter_19705() { - var _FramebufferDefaultWidth = OpenTK.Graphics.OpenGL.FramebufferDefaultParameter.FramebufferDefaultWidth; - var _FramebufferDefaultHeight = OpenTK.Graphics.OpenGL.FramebufferDefaultParameter.FramebufferDefaultHeight; - var _FramebufferDefaultLayers = OpenTK.Graphics.OpenGL.FramebufferDefaultParameter.FramebufferDefaultLayers; - var _FramebufferDefaultSamples = OpenTK.Graphics.OpenGL.FramebufferDefaultParameter.FramebufferDefaultSamples; - var _FramebufferDefaultFixedSampleLocations = OpenTK.Graphics.OpenGL.FramebufferDefaultParameter.FramebufferDefaultFixedSampleLocations; -} -static void Test_FramebufferErrorCode_19706() { - var _FramebufferUndefined = OpenTK.Graphics.OpenGL.FramebufferErrorCode.FramebufferUndefined; - var _FramebufferComplete = OpenTK.Graphics.OpenGL.FramebufferErrorCode.FramebufferComplete; - var _FramebufferCompleteExt = OpenTK.Graphics.OpenGL.FramebufferErrorCode.FramebufferCompleteExt; - var _FramebufferIncompleteAttachment = OpenTK.Graphics.OpenGL.FramebufferErrorCode.FramebufferIncompleteAttachment; - var _FramebufferIncompleteAttachmentExt = OpenTK.Graphics.OpenGL.FramebufferErrorCode.FramebufferIncompleteAttachmentExt; - var _FramebufferIncompleteMissingAttachment = OpenTK.Graphics.OpenGL.FramebufferErrorCode.FramebufferIncompleteMissingAttachment; - var _FramebufferIncompleteMissingAttachmentExt = OpenTK.Graphics.OpenGL.FramebufferErrorCode.FramebufferIncompleteMissingAttachmentExt; - var _FramebufferIncompleteDimensionsExt = OpenTK.Graphics.OpenGL.FramebufferErrorCode.FramebufferIncompleteDimensionsExt; - var _FramebufferIncompleteFormatsExt = OpenTK.Graphics.OpenGL.FramebufferErrorCode.FramebufferIncompleteFormatsExt; - var _FramebufferIncompleteDrawBuffer = OpenTK.Graphics.OpenGL.FramebufferErrorCode.FramebufferIncompleteDrawBuffer; - var _FramebufferIncompleteDrawBufferExt = OpenTK.Graphics.OpenGL.FramebufferErrorCode.FramebufferIncompleteDrawBufferExt; - var _FramebufferIncompleteReadBuffer = OpenTK.Graphics.OpenGL.FramebufferErrorCode.FramebufferIncompleteReadBuffer; - var _FramebufferIncompleteReadBufferExt = OpenTK.Graphics.OpenGL.FramebufferErrorCode.FramebufferIncompleteReadBufferExt; - var _FramebufferUnsupported = OpenTK.Graphics.OpenGL.FramebufferErrorCode.FramebufferUnsupported; - var _FramebufferUnsupportedExt = OpenTK.Graphics.OpenGL.FramebufferErrorCode.FramebufferUnsupportedExt; - var _FramebufferIncompleteMultisample = OpenTK.Graphics.OpenGL.FramebufferErrorCode.FramebufferIncompleteMultisample; - var _FramebufferIncompleteLayerTargets = OpenTK.Graphics.OpenGL.FramebufferErrorCode.FramebufferIncompleteLayerTargets; - var _FramebufferIncompleteLayerCount = OpenTK.Graphics.OpenGL.FramebufferErrorCode.FramebufferIncompleteLayerCount; -} -static void Test_FramebufferParameterName_19707() { - var _FramebufferAttachmentColorEncoding = OpenTK.Graphics.OpenGL.FramebufferParameterName.FramebufferAttachmentColorEncoding; - var _FramebufferAttachmentComponentType = OpenTK.Graphics.OpenGL.FramebufferParameterName.FramebufferAttachmentComponentType; - var _FramebufferAttachmentRedSize = OpenTK.Graphics.OpenGL.FramebufferParameterName.FramebufferAttachmentRedSize; - var _FramebufferAttachmentGreenSize = OpenTK.Graphics.OpenGL.FramebufferParameterName.FramebufferAttachmentGreenSize; - var _FramebufferAttachmentBlueSize = OpenTK.Graphics.OpenGL.FramebufferParameterName.FramebufferAttachmentBlueSize; - var _FramebufferAttachmentAlphaSize = OpenTK.Graphics.OpenGL.FramebufferParameterName.FramebufferAttachmentAlphaSize; - var _FramebufferAttachmentDepthSize = OpenTK.Graphics.OpenGL.FramebufferParameterName.FramebufferAttachmentDepthSize; - var _FramebufferAttachmentStencilSize = OpenTK.Graphics.OpenGL.FramebufferParameterName.FramebufferAttachmentStencilSize; - var _FramebufferAttachmentObjectType = OpenTK.Graphics.OpenGL.FramebufferParameterName.FramebufferAttachmentObjectType; - var _FramebufferAttachmentObjectTypeExt = OpenTK.Graphics.OpenGL.FramebufferParameterName.FramebufferAttachmentObjectTypeExt; - var _FramebufferAttachmentObjectName = OpenTK.Graphics.OpenGL.FramebufferParameterName.FramebufferAttachmentObjectName; - var _FramebufferAttachmentObjectNameExt = OpenTK.Graphics.OpenGL.FramebufferParameterName.FramebufferAttachmentObjectNameExt; - var _FramebufferAttachmentTextureLevel = OpenTK.Graphics.OpenGL.FramebufferParameterName.FramebufferAttachmentTextureLevel; - var _FramebufferAttachmentTextureLevelExt = OpenTK.Graphics.OpenGL.FramebufferParameterName.FramebufferAttachmentTextureLevelExt; - var _FramebufferAttachmentTextureCubeMapFace = OpenTK.Graphics.OpenGL.FramebufferParameterName.FramebufferAttachmentTextureCubeMapFace; - var _FramebufferAttachmentTextureCubeMapFaceExt = OpenTK.Graphics.OpenGL.FramebufferParameterName.FramebufferAttachmentTextureCubeMapFaceExt; - var _FramebufferAttachmentTexture3DZoffsetExt = OpenTK.Graphics.OpenGL.FramebufferParameterName.FramebufferAttachmentTexture3DZoffsetExt; - var _FramebufferAttachmentTextureLayer = OpenTK.Graphics.OpenGL.FramebufferParameterName.FramebufferAttachmentTextureLayer; - var _FramebufferAttachmentLayered = OpenTK.Graphics.OpenGL.FramebufferParameterName.FramebufferAttachmentLayered; -} -static void Test_FramebufferTarget_19708() { - var _ReadFramebuffer = OpenTK.Graphics.OpenGL.FramebufferTarget.ReadFramebuffer; - var _DrawFramebuffer = OpenTK.Graphics.OpenGL.FramebufferTarget.DrawFramebuffer; - var _Framebuffer = OpenTK.Graphics.OpenGL.FramebufferTarget.Framebuffer; - var _FramebufferExt = OpenTK.Graphics.OpenGL.FramebufferTarget.FramebufferExt; -} -static void Test_FrontFaceDirection_19709() { - var _Cw = OpenTK.Graphics.OpenGL.FrontFaceDirection.Cw; - var _Ccw = OpenTK.Graphics.OpenGL.FrontFaceDirection.Ccw; -} -static void Test_GenerateMipmapTarget_19710() { - var _Texture1D = OpenTK.Graphics.OpenGL.GenerateMipmapTarget.Texture1D; - var _Texture2D = OpenTK.Graphics.OpenGL.GenerateMipmapTarget.Texture2D; - var _Texture3D = OpenTK.Graphics.OpenGL.GenerateMipmapTarget.Texture3D; - var _TextureCubeMap = OpenTK.Graphics.OpenGL.GenerateMipmapTarget.TextureCubeMap; - var _Texture1DArray = OpenTK.Graphics.OpenGL.GenerateMipmapTarget.Texture1DArray; - var _Texture2DArray = OpenTK.Graphics.OpenGL.GenerateMipmapTarget.Texture2DArray; - var _TextureCubeMapArray = OpenTK.Graphics.OpenGL.GenerateMipmapTarget.TextureCubeMapArray; - var _Texture2DMultisample = OpenTK.Graphics.OpenGL.GenerateMipmapTarget.Texture2DMultisample; - var _Texture2DMultisampleArray = OpenTK.Graphics.OpenGL.GenerateMipmapTarget.Texture2DMultisampleArray; -} -static void Test_GetColorTableParameterPName_19711() { - var _ColorTableScale = OpenTK.Graphics.OpenGL.GetColorTableParameterPName.ColorTableScale; - var _ColorTableBias = OpenTK.Graphics.OpenGL.GetColorTableParameterPName.ColorTableBias; - var _ColorTableFormat = OpenTK.Graphics.OpenGL.GetColorTableParameterPName.ColorTableFormat; - var _ColorTableWidth = OpenTK.Graphics.OpenGL.GetColorTableParameterPName.ColorTableWidth; - var _ColorTableRedSize = OpenTK.Graphics.OpenGL.GetColorTableParameterPName.ColorTableRedSize; - var _ColorTableGreenSize = OpenTK.Graphics.OpenGL.GetColorTableParameterPName.ColorTableGreenSize; - var _ColorTableBlueSize = OpenTK.Graphics.OpenGL.GetColorTableParameterPName.ColorTableBlueSize; - var _ColorTableAlphaSize = OpenTK.Graphics.OpenGL.GetColorTableParameterPName.ColorTableAlphaSize; - var _ColorTableLuminanceSize = OpenTK.Graphics.OpenGL.GetColorTableParameterPName.ColorTableLuminanceSize; - var _ColorTableIntensitySize = OpenTK.Graphics.OpenGL.GetColorTableParameterPName.ColorTableIntensitySize; -} -static void Test_GetColorTableParameterPNameSgi_19712() { - var _ColorTableScaleSgi = OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi.ColorTableScaleSgi; - var _ColorTableBiasSgi = OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi.ColorTableBiasSgi; - var _ColorTableFormatSgi = OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi.ColorTableFormatSgi; - var _ColorTableWidthSgi = OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi.ColorTableWidthSgi; - var _ColorTableRedSizeSgi = OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi.ColorTableRedSizeSgi; - var _ColorTableGreenSizeSgi = OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi.ColorTableGreenSizeSgi; - var _ColorTableBlueSizeSgi = OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi.ColorTableBlueSizeSgi; - var _ColorTableAlphaSizeSgi = OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi.ColorTableAlphaSizeSgi; - var _ColorTableLuminanceSizeSgi = OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi.ColorTableLuminanceSizeSgi; - var _ColorTableIntensitySizeSgi = OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi.ColorTableIntensitySizeSgi; -} -static void Test_GetConvolutionParameter_19713() { - var _ConvolutionBorderModeExt = OpenTK.Graphics.OpenGL.GetConvolutionParameter.ConvolutionBorderModeExt; - var _ConvolutionFilterScaleExt = OpenTK.Graphics.OpenGL.GetConvolutionParameter.ConvolutionFilterScaleExt; - var _ConvolutionFilterBiasExt = OpenTK.Graphics.OpenGL.GetConvolutionParameter.ConvolutionFilterBiasExt; - var _ConvolutionFormatExt = OpenTK.Graphics.OpenGL.GetConvolutionParameter.ConvolutionFormatExt; - var _ConvolutionWidthExt = OpenTK.Graphics.OpenGL.GetConvolutionParameter.ConvolutionWidthExt; - var _ConvolutionHeightExt = OpenTK.Graphics.OpenGL.GetConvolutionParameter.ConvolutionHeightExt; - var _MaxConvolutionWidthExt = OpenTK.Graphics.OpenGL.GetConvolutionParameter.MaxConvolutionWidthExt; - var _MaxConvolutionHeightExt = OpenTK.Graphics.OpenGL.GetConvolutionParameter.MaxConvolutionHeightExt; -} -static void Test_GetConvolutionParameterPName_19714() { - var _ConvolutionBorderMode = OpenTK.Graphics.OpenGL.GetConvolutionParameterPName.ConvolutionBorderMode; - var _ConvolutionFilterScale = OpenTK.Graphics.OpenGL.GetConvolutionParameterPName.ConvolutionFilterScale; - var _ConvolutionFilterBias = OpenTK.Graphics.OpenGL.GetConvolutionParameterPName.ConvolutionFilterBias; - var _ConvolutionFormat = OpenTK.Graphics.OpenGL.GetConvolutionParameterPName.ConvolutionFormat; - var _ConvolutionWidth = OpenTK.Graphics.OpenGL.GetConvolutionParameterPName.ConvolutionWidth; - var _ConvolutionHeight = OpenTK.Graphics.OpenGL.GetConvolutionParameterPName.ConvolutionHeight; - var _MaxConvolutionWidth = OpenTK.Graphics.OpenGL.GetConvolutionParameterPName.MaxConvolutionWidth; - var _MaxConvolutionHeight = OpenTK.Graphics.OpenGL.GetConvolutionParameterPName.MaxConvolutionHeight; - var _ConvolutionBorderColor = OpenTK.Graphics.OpenGL.GetConvolutionParameterPName.ConvolutionBorderColor; -} -static void Test_GetHistogramParameterPName_19715() { - var _HistogramWidth = OpenTK.Graphics.OpenGL.GetHistogramParameterPName.HistogramWidth; - var _HistogramFormat = OpenTK.Graphics.OpenGL.GetHistogramParameterPName.HistogramFormat; - var _HistogramRedSize = OpenTK.Graphics.OpenGL.GetHistogramParameterPName.HistogramRedSize; - var _HistogramGreenSize = OpenTK.Graphics.OpenGL.GetHistogramParameterPName.HistogramGreenSize; - var _HistogramBlueSize = OpenTK.Graphics.OpenGL.GetHistogramParameterPName.HistogramBlueSize; - var _HistogramAlphaSize = OpenTK.Graphics.OpenGL.GetHistogramParameterPName.HistogramAlphaSize; - var _HistogramLuminanceSize = OpenTK.Graphics.OpenGL.GetHistogramParameterPName.HistogramLuminanceSize; - var _HistogramSink = OpenTK.Graphics.OpenGL.GetHistogramParameterPName.HistogramSink; -} -static void Test_GetHistogramParameterPNameExt_19716() { - var _HistogramWidthExt = OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt.HistogramWidthExt; - var _HistogramFormatExt = OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt.HistogramFormatExt; - var _HistogramRedSizeExt = OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt.HistogramRedSizeExt; - var _HistogramGreenSizeExt = OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt.HistogramGreenSizeExt; - var _HistogramBlueSizeExt = OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt.HistogramBlueSizeExt; - var _HistogramAlphaSizeExt = OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt.HistogramAlphaSizeExt; - var _HistogramLuminanceSizeExt = OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt.HistogramLuminanceSizeExt; - var _HistogramSinkExt = OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt.HistogramSinkExt; -} -static void Test_GetIndexedPName_19717() { - var _DepthRange = OpenTK.Graphics.OpenGL.GetIndexedPName.DepthRange; - var _Viewport = OpenTK.Graphics.OpenGL.GetIndexedPName.Viewport; - var _ScissorBox = OpenTK.Graphics.OpenGL.GetIndexedPName.ScissorBox; - var _ColorWritemask = OpenTK.Graphics.OpenGL.GetIndexedPName.ColorWritemask; - var _UniformBufferBinding = OpenTK.Graphics.OpenGL.GetIndexedPName.UniformBufferBinding; - var _UniformBufferStart = OpenTK.Graphics.OpenGL.GetIndexedPName.UniformBufferStart; - var _UniformBufferSize = OpenTK.Graphics.OpenGL.GetIndexedPName.UniformBufferSize; - var _TransformFeedbackBufferStart = OpenTK.Graphics.OpenGL.GetIndexedPName.TransformFeedbackBufferStart; - var _TransformFeedbackBufferSize = OpenTK.Graphics.OpenGL.GetIndexedPName.TransformFeedbackBufferSize; - var _TransformFeedbackBufferBinding = OpenTK.Graphics.OpenGL.GetIndexedPName.TransformFeedbackBufferBinding; - var _SampleMaskValue = OpenTK.Graphics.OpenGL.GetIndexedPName.SampleMaskValue; -} -static void Test_GetMapQuery_19718() { - var _Coeff = OpenTK.Graphics.OpenGL.GetMapQuery.Coeff; - var _Order = OpenTK.Graphics.OpenGL.GetMapQuery.Order; - var _Domain = OpenTK.Graphics.OpenGL.GetMapQuery.Domain; -} -static void Test_GetMinmaxParameterPName_19719() { - var _MinmaxFormat = OpenTK.Graphics.OpenGL.GetMinmaxParameterPName.MinmaxFormat; - var _MinmaxSink = OpenTK.Graphics.OpenGL.GetMinmaxParameterPName.MinmaxSink; -} -static void Test_GetMinmaxParameterPNameExt_19720() { - var _MinmaxFormat = OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt.MinmaxFormat; - var _MinmaxFormatExt = OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt.MinmaxFormatExt; - var _MinmaxSink = OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt.MinmaxSink; - var _MinmaxSinkExt = OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt.MinmaxSinkExt; -} -static void Test_GetMultisamplePName_19721() { - var _SamplePosition = OpenTK.Graphics.OpenGL.GetMultisamplePName.SamplePosition; -} -static void Test_GetPixelMap_19722() { - var _PixelMapIToI = OpenTK.Graphics.OpenGL.GetPixelMap.PixelMapIToI; - var _PixelMapSToS = OpenTK.Graphics.OpenGL.GetPixelMap.PixelMapSToS; - var _PixelMapIToR = OpenTK.Graphics.OpenGL.GetPixelMap.PixelMapIToR; - var _PixelMapIToG = OpenTK.Graphics.OpenGL.GetPixelMap.PixelMapIToG; - var _PixelMapIToB = OpenTK.Graphics.OpenGL.GetPixelMap.PixelMapIToB; - var _PixelMapIToA = OpenTK.Graphics.OpenGL.GetPixelMap.PixelMapIToA; - var _PixelMapRToR = OpenTK.Graphics.OpenGL.GetPixelMap.PixelMapRToR; - var _PixelMapGToG = OpenTK.Graphics.OpenGL.GetPixelMap.PixelMapGToG; - var _PixelMapBToB = OpenTK.Graphics.OpenGL.GetPixelMap.PixelMapBToB; - var _PixelMapAToA = OpenTK.Graphics.OpenGL.GetPixelMap.PixelMapAToA; -} -static void Test_GetPName_19723() { - var _CurrentColor = OpenTK.Graphics.OpenGL.GetPName.CurrentColor; - var _CurrentIndex = OpenTK.Graphics.OpenGL.GetPName.CurrentIndex; - var _CurrentNormal = OpenTK.Graphics.OpenGL.GetPName.CurrentNormal; - var _CurrentTextureCoords = OpenTK.Graphics.OpenGL.GetPName.CurrentTextureCoords; - var _CurrentRasterColor = OpenTK.Graphics.OpenGL.GetPName.CurrentRasterColor; - var _CurrentRasterIndex = OpenTK.Graphics.OpenGL.GetPName.CurrentRasterIndex; - var _CurrentRasterTextureCoords = OpenTK.Graphics.OpenGL.GetPName.CurrentRasterTextureCoords; - var _CurrentRasterPosition = OpenTK.Graphics.OpenGL.GetPName.CurrentRasterPosition; - var _CurrentRasterPositionValid = OpenTK.Graphics.OpenGL.GetPName.CurrentRasterPositionValid; - var _CurrentRasterDistance = OpenTK.Graphics.OpenGL.GetPName.CurrentRasterDistance; - var _PointSmooth = OpenTK.Graphics.OpenGL.GetPName.PointSmooth; - var _PointSize = OpenTK.Graphics.OpenGL.GetPName.PointSize; - var _PointSizeRange = OpenTK.Graphics.OpenGL.GetPName.PointSizeRange; - var _SmoothPointSizeRange = OpenTK.Graphics.OpenGL.GetPName.SmoothPointSizeRange; - var _PointSizeGranularity = OpenTK.Graphics.OpenGL.GetPName.PointSizeGranularity; - var _SmoothPointSizeGranularity = OpenTK.Graphics.OpenGL.GetPName.SmoothPointSizeGranularity; - var _LineSmooth = OpenTK.Graphics.OpenGL.GetPName.LineSmooth; - var _LineWidth = OpenTK.Graphics.OpenGL.GetPName.LineWidth; - var _LineWidthRange = OpenTK.Graphics.OpenGL.GetPName.LineWidthRange; - var _SmoothLineWidthRange = OpenTK.Graphics.OpenGL.GetPName.SmoothLineWidthRange; - var _LineWidthGranularity = OpenTK.Graphics.OpenGL.GetPName.LineWidthGranularity; - var _SmoothLineWidthGranularity = OpenTK.Graphics.OpenGL.GetPName.SmoothLineWidthGranularity; - var _LineStipple = OpenTK.Graphics.OpenGL.GetPName.LineStipple; - var _LineStipplePattern = OpenTK.Graphics.OpenGL.GetPName.LineStipplePattern; - var _LineStippleRepeat = OpenTK.Graphics.OpenGL.GetPName.LineStippleRepeat; - var _ListMode = OpenTK.Graphics.OpenGL.GetPName.ListMode; - var _MaxListNesting = OpenTK.Graphics.OpenGL.GetPName.MaxListNesting; - var _ListBase = OpenTK.Graphics.OpenGL.GetPName.ListBase; - var _ListIndex = OpenTK.Graphics.OpenGL.GetPName.ListIndex; - var _PolygonMode = OpenTK.Graphics.OpenGL.GetPName.PolygonMode; - var _PolygonSmooth = OpenTK.Graphics.OpenGL.GetPName.PolygonSmooth; - var _PolygonStipple = OpenTK.Graphics.OpenGL.GetPName.PolygonStipple; - var _EdgeFlag = OpenTK.Graphics.OpenGL.GetPName.EdgeFlag; - var _CullFace = OpenTK.Graphics.OpenGL.GetPName.CullFace; - var _CullFaceMode = OpenTK.Graphics.OpenGL.GetPName.CullFaceMode; - var _FrontFace = OpenTK.Graphics.OpenGL.GetPName.FrontFace; - var _Lighting = OpenTK.Graphics.OpenGL.GetPName.Lighting; - var _LightModelLocalViewer = OpenTK.Graphics.OpenGL.GetPName.LightModelLocalViewer; - var _LightModelTwoSide = OpenTK.Graphics.OpenGL.GetPName.LightModelTwoSide; - var _LightModelAmbient = OpenTK.Graphics.OpenGL.GetPName.LightModelAmbient; - var _ShadeModel = OpenTK.Graphics.OpenGL.GetPName.ShadeModel; - var _ColorMaterialFace = OpenTK.Graphics.OpenGL.GetPName.ColorMaterialFace; - var _ColorMaterialParameter = OpenTK.Graphics.OpenGL.GetPName.ColorMaterialParameter; - var _ColorMaterial = OpenTK.Graphics.OpenGL.GetPName.ColorMaterial; - var _Fog = OpenTK.Graphics.OpenGL.GetPName.Fog; - var _FogIndex = OpenTK.Graphics.OpenGL.GetPName.FogIndex; - var _FogDensity = OpenTK.Graphics.OpenGL.GetPName.FogDensity; - var _FogStart = OpenTK.Graphics.OpenGL.GetPName.FogStart; - var _FogEnd = OpenTK.Graphics.OpenGL.GetPName.FogEnd; - var _FogMode = OpenTK.Graphics.OpenGL.GetPName.FogMode; - var _FogColor = OpenTK.Graphics.OpenGL.GetPName.FogColor; - var _DepthRange = OpenTK.Graphics.OpenGL.GetPName.DepthRange; - var _DepthTest = OpenTK.Graphics.OpenGL.GetPName.DepthTest; - var _DepthWritemask = OpenTK.Graphics.OpenGL.GetPName.DepthWritemask; - var _DepthClearValue = OpenTK.Graphics.OpenGL.GetPName.DepthClearValue; - var _DepthFunc = OpenTK.Graphics.OpenGL.GetPName.DepthFunc; - var _AccumClearValue = OpenTK.Graphics.OpenGL.GetPName.AccumClearValue; - var _StencilTest = OpenTK.Graphics.OpenGL.GetPName.StencilTest; - var _StencilClearValue = OpenTK.Graphics.OpenGL.GetPName.StencilClearValue; - var _StencilFunc = OpenTK.Graphics.OpenGL.GetPName.StencilFunc; - var _StencilValueMask = OpenTK.Graphics.OpenGL.GetPName.StencilValueMask; - var _StencilFail = OpenTK.Graphics.OpenGL.GetPName.StencilFail; - var _StencilPassDepthFail = OpenTK.Graphics.OpenGL.GetPName.StencilPassDepthFail; - var _StencilPassDepthPass = OpenTK.Graphics.OpenGL.GetPName.StencilPassDepthPass; - var _StencilRef = OpenTK.Graphics.OpenGL.GetPName.StencilRef; - var _StencilWritemask = OpenTK.Graphics.OpenGL.GetPName.StencilWritemask; - var _MatrixMode = OpenTK.Graphics.OpenGL.GetPName.MatrixMode; - var _Normalize = OpenTK.Graphics.OpenGL.GetPName.Normalize; - var _Viewport = OpenTK.Graphics.OpenGL.GetPName.Viewport; - var _Modelview0StackDepthExt = OpenTK.Graphics.OpenGL.GetPName.Modelview0StackDepthExt; - var _ModelviewStackDepth = OpenTK.Graphics.OpenGL.GetPName.ModelviewStackDepth; - var _ProjectionStackDepth = OpenTK.Graphics.OpenGL.GetPName.ProjectionStackDepth; - var _TextureStackDepth = OpenTK.Graphics.OpenGL.GetPName.TextureStackDepth; - var _Modelview0MatrixExt = OpenTK.Graphics.OpenGL.GetPName.Modelview0MatrixExt; - var _ModelviewMatrix = OpenTK.Graphics.OpenGL.GetPName.ModelviewMatrix; - var _ProjectionMatrix = OpenTK.Graphics.OpenGL.GetPName.ProjectionMatrix; - var _TextureMatrix = OpenTK.Graphics.OpenGL.GetPName.TextureMatrix; - var _AttribStackDepth = OpenTK.Graphics.OpenGL.GetPName.AttribStackDepth; - var _ClientAttribStackDepth = OpenTK.Graphics.OpenGL.GetPName.ClientAttribStackDepth; - var _AlphaTest = OpenTK.Graphics.OpenGL.GetPName.AlphaTest; - var _AlphaTestQcom = OpenTK.Graphics.OpenGL.GetPName.AlphaTestQcom; - var _AlphaTestFunc = OpenTK.Graphics.OpenGL.GetPName.AlphaTestFunc; - var _AlphaTestFuncQcom = OpenTK.Graphics.OpenGL.GetPName.AlphaTestFuncQcom; - var _AlphaTestRef = OpenTK.Graphics.OpenGL.GetPName.AlphaTestRef; - var _AlphaTestRefQcom = OpenTK.Graphics.OpenGL.GetPName.AlphaTestRefQcom; - var _Dither = OpenTK.Graphics.OpenGL.GetPName.Dither; - var _BlendDst = OpenTK.Graphics.OpenGL.GetPName.BlendDst; - var _BlendSrc = OpenTK.Graphics.OpenGL.GetPName.BlendSrc; - var _Blend = OpenTK.Graphics.OpenGL.GetPName.Blend; - var _LogicOpMode = OpenTK.Graphics.OpenGL.GetPName.LogicOpMode; - var _IndexLogicOp = OpenTK.Graphics.OpenGL.GetPName.IndexLogicOp; - var _LogicOp = OpenTK.Graphics.OpenGL.GetPName.LogicOp; - var _ColorLogicOp = OpenTK.Graphics.OpenGL.GetPName.ColorLogicOp; - var _AuxBuffers = OpenTK.Graphics.OpenGL.GetPName.AuxBuffers; - var _DrawBuffer = OpenTK.Graphics.OpenGL.GetPName.DrawBuffer; - var _DrawBufferExt = OpenTK.Graphics.OpenGL.GetPName.DrawBufferExt; - var _ReadBuffer = OpenTK.Graphics.OpenGL.GetPName.ReadBuffer; - var _ReadBufferExt = OpenTK.Graphics.OpenGL.GetPName.ReadBufferExt; - var _ReadBufferNv = OpenTK.Graphics.OpenGL.GetPName.ReadBufferNv; - var _ScissorBox = OpenTK.Graphics.OpenGL.GetPName.ScissorBox; - var _ScissorTest = OpenTK.Graphics.OpenGL.GetPName.ScissorTest; - var _IndexClearValue = OpenTK.Graphics.OpenGL.GetPName.IndexClearValue; - var _IndexWritemask = OpenTK.Graphics.OpenGL.GetPName.IndexWritemask; - var _ColorClearValue = OpenTK.Graphics.OpenGL.GetPName.ColorClearValue; - var _ColorWritemask = OpenTK.Graphics.OpenGL.GetPName.ColorWritemask; - var _IndexMode = OpenTK.Graphics.OpenGL.GetPName.IndexMode; - var _RgbaMode = OpenTK.Graphics.OpenGL.GetPName.RgbaMode; - var _Doublebuffer = OpenTK.Graphics.OpenGL.GetPName.Doublebuffer; - var _Stereo = OpenTK.Graphics.OpenGL.GetPName.Stereo; - var _RenderMode = OpenTK.Graphics.OpenGL.GetPName.RenderMode; - var _PerspectiveCorrectionHint = OpenTK.Graphics.OpenGL.GetPName.PerspectiveCorrectionHint; - var _PointSmoothHint = OpenTK.Graphics.OpenGL.GetPName.PointSmoothHint; - var _LineSmoothHint = OpenTK.Graphics.OpenGL.GetPName.LineSmoothHint; - var _PolygonSmoothHint = OpenTK.Graphics.OpenGL.GetPName.PolygonSmoothHint; - var _FogHint = OpenTK.Graphics.OpenGL.GetPName.FogHint; - var _TextureGenS = OpenTK.Graphics.OpenGL.GetPName.TextureGenS; - var _TextureGenT = OpenTK.Graphics.OpenGL.GetPName.TextureGenT; - var _TextureGenR = OpenTK.Graphics.OpenGL.GetPName.TextureGenR; - var _TextureGenQ = OpenTK.Graphics.OpenGL.GetPName.TextureGenQ; - var _PixelMapIToISize = OpenTK.Graphics.OpenGL.GetPName.PixelMapIToISize; - var _PixelMapSToSSize = OpenTK.Graphics.OpenGL.GetPName.PixelMapSToSSize; - var _PixelMapIToRSize = OpenTK.Graphics.OpenGL.GetPName.PixelMapIToRSize; - var _PixelMapIToGSize = OpenTK.Graphics.OpenGL.GetPName.PixelMapIToGSize; - var _PixelMapIToBSize = OpenTK.Graphics.OpenGL.GetPName.PixelMapIToBSize; - var _PixelMapIToASize = OpenTK.Graphics.OpenGL.GetPName.PixelMapIToASize; - var _PixelMapRToRSize = OpenTK.Graphics.OpenGL.GetPName.PixelMapRToRSize; - var _PixelMapGToGSize = OpenTK.Graphics.OpenGL.GetPName.PixelMapGToGSize; - var _PixelMapBToBSize = OpenTK.Graphics.OpenGL.GetPName.PixelMapBToBSize; - var _PixelMapAToASize = OpenTK.Graphics.OpenGL.GetPName.PixelMapAToASize; - var _UnpackSwapBytes = OpenTK.Graphics.OpenGL.GetPName.UnpackSwapBytes; - var _UnpackLsbFirst = OpenTK.Graphics.OpenGL.GetPName.UnpackLsbFirst; - var _UnpackRowLength = OpenTK.Graphics.OpenGL.GetPName.UnpackRowLength; - var _UnpackSkipRows = OpenTK.Graphics.OpenGL.GetPName.UnpackSkipRows; - var _UnpackSkipPixels = OpenTK.Graphics.OpenGL.GetPName.UnpackSkipPixels; - var _UnpackAlignment = OpenTK.Graphics.OpenGL.GetPName.UnpackAlignment; - var _PackSwapBytes = OpenTK.Graphics.OpenGL.GetPName.PackSwapBytes; - var _PackLsbFirst = OpenTK.Graphics.OpenGL.GetPName.PackLsbFirst; - var _PackRowLength = OpenTK.Graphics.OpenGL.GetPName.PackRowLength; - var _PackSkipRows = OpenTK.Graphics.OpenGL.GetPName.PackSkipRows; - var _PackSkipPixels = OpenTK.Graphics.OpenGL.GetPName.PackSkipPixels; - var _PackAlignment = OpenTK.Graphics.OpenGL.GetPName.PackAlignment; - var _MapColor = OpenTK.Graphics.OpenGL.GetPName.MapColor; - var _MapStencil = OpenTK.Graphics.OpenGL.GetPName.MapStencil; - var _IndexShift = OpenTK.Graphics.OpenGL.GetPName.IndexShift; - var _IndexOffset = OpenTK.Graphics.OpenGL.GetPName.IndexOffset; - var _RedScale = OpenTK.Graphics.OpenGL.GetPName.RedScale; - var _RedBias = OpenTK.Graphics.OpenGL.GetPName.RedBias; - var _ZoomX = OpenTK.Graphics.OpenGL.GetPName.ZoomX; - var _ZoomY = OpenTK.Graphics.OpenGL.GetPName.ZoomY; - var _GreenScale = OpenTK.Graphics.OpenGL.GetPName.GreenScale; - var _GreenBias = OpenTK.Graphics.OpenGL.GetPName.GreenBias; - var _BlueScale = OpenTK.Graphics.OpenGL.GetPName.BlueScale; - var _BlueBias = OpenTK.Graphics.OpenGL.GetPName.BlueBias; - var _AlphaScale = OpenTK.Graphics.OpenGL.GetPName.AlphaScale; - var _AlphaBias = OpenTK.Graphics.OpenGL.GetPName.AlphaBias; - var _DepthScale = OpenTK.Graphics.OpenGL.GetPName.DepthScale; - var _DepthBias = OpenTK.Graphics.OpenGL.GetPName.DepthBias; - var _MaxEvalOrder = OpenTK.Graphics.OpenGL.GetPName.MaxEvalOrder; - var _MaxLights = OpenTK.Graphics.OpenGL.GetPName.MaxLights; - var _MaxClipDistances = OpenTK.Graphics.OpenGL.GetPName.MaxClipDistances; - var _MaxClipPlanes = OpenTK.Graphics.OpenGL.GetPName.MaxClipPlanes; - var _MaxTextureSize = OpenTK.Graphics.OpenGL.GetPName.MaxTextureSize; - var _MaxPixelMapTable = OpenTK.Graphics.OpenGL.GetPName.MaxPixelMapTable; - var _MaxAttribStackDepth = OpenTK.Graphics.OpenGL.GetPName.MaxAttribStackDepth; - var _MaxModelviewStackDepth = OpenTK.Graphics.OpenGL.GetPName.MaxModelviewStackDepth; - var _MaxNameStackDepth = OpenTK.Graphics.OpenGL.GetPName.MaxNameStackDepth; - var _MaxProjectionStackDepth = OpenTK.Graphics.OpenGL.GetPName.MaxProjectionStackDepth; - var _MaxTextureStackDepth = OpenTK.Graphics.OpenGL.GetPName.MaxTextureStackDepth; - var _MaxViewportDims = OpenTK.Graphics.OpenGL.GetPName.MaxViewportDims; - var _MaxClientAttribStackDepth = OpenTK.Graphics.OpenGL.GetPName.MaxClientAttribStackDepth; - var _SubpixelBits = OpenTK.Graphics.OpenGL.GetPName.SubpixelBits; - var _IndexBits = OpenTK.Graphics.OpenGL.GetPName.IndexBits; - var _RedBits = OpenTK.Graphics.OpenGL.GetPName.RedBits; - var _GreenBits = OpenTK.Graphics.OpenGL.GetPName.GreenBits; - var _BlueBits = OpenTK.Graphics.OpenGL.GetPName.BlueBits; - var _AlphaBits = OpenTK.Graphics.OpenGL.GetPName.AlphaBits; - var _DepthBits = OpenTK.Graphics.OpenGL.GetPName.DepthBits; - var _StencilBits = OpenTK.Graphics.OpenGL.GetPName.StencilBits; - var _AccumRedBits = OpenTK.Graphics.OpenGL.GetPName.AccumRedBits; - var _AccumGreenBits = OpenTK.Graphics.OpenGL.GetPName.AccumGreenBits; - var _AccumBlueBits = OpenTK.Graphics.OpenGL.GetPName.AccumBlueBits; - var _AccumAlphaBits = OpenTK.Graphics.OpenGL.GetPName.AccumAlphaBits; - var _NameStackDepth = OpenTK.Graphics.OpenGL.GetPName.NameStackDepth; - var _AutoNormal = OpenTK.Graphics.OpenGL.GetPName.AutoNormal; - var _Map1Color4 = OpenTK.Graphics.OpenGL.GetPName.Map1Color4; - var _Map1Index = OpenTK.Graphics.OpenGL.GetPName.Map1Index; - var _Map1Normal = OpenTK.Graphics.OpenGL.GetPName.Map1Normal; - var _Map1TextureCoord1 = OpenTK.Graphics.OpenGL.GetPName.Map1TextureCoord1; - var _Map1TextureCoord2 = OpenTK.Graphics.OpenGL.GetPName.Map1TextureCoord2; - var _Map1TextureCoord3 = OpenTK.Graphics.OpenGL.GetPName.Map1TextureCoord3; - var _Map1TextureCoord4 = OpenTK.Graphics.OpenGL.GetPName.Map1TextureCoord4; - var _Map1Vertex3 = OpenTK.Graphics.OpenGL.GetPName.Map1Vertex3; - var _Map1Vertex4 = OpenTK.Graphics.OpenGL.GetPName.Map1Vertex4; - var _Map2Color4 = OpenTK.Graphics.OpenGL.GetPName.Map2Color4; - var _Map2Index = OpenTK.Graphics.OpenGL.GetPName.Map2Index; - var _Map2Normal = OpenTK.Graphics.OpenGL.GetPName.Map2Normal; - var _Map2TextureCoord1 = OpenTK.Graphics.OpenGL.GetPName.Map2TextureCoord1; - var _Map2TextureCoord2 = OpenTK.Graphics.OpenGL.GetPName.Map2TextureCoord2; - var _Map2TextureCoord3 = OpenTK.Graphics.OpenGL.GetPName.Map2TextureCoord3; - var _Map2TextureCoord4 = OpenTK.Graphics.OpenGL.GetPName.Map2TextureCoord4; - var _Map2Vertex3 = OpenTK.Graphics.OpenGL.GetPName.Map2Vertex3; - var _Map2Vertex4 = OpenTK.Graphics.OpenGL.GetPName.Map2Vertex4; - var _Map1GridDomain = OpenTK.Graphics.OpenGL.GetPName.Map1GridDomain; - var _Map1GridSegments = OpenTK.Graphics.OpenGL.GetPName.Map1GridSegments; - var _Map2GridDomain = OpenTK.Graphics.OpenGL.GetPName.Map2GridDomain; - var _Map2GridSegments = OpenTK.Graphics.OpenGL.GetPName.Map2GridSegments; - var _Texture1D = OpenTK.Graphics.OpenGL.GetPName.Texture1D; - var _Texture2D = OpenTK.Graphics.OpenGL.GetPName.Texture2D; - var _FeedbackBufferSize = OpenTK.Graphics.OpenGL.GetPName.FeedbackBufferSize; - var _FeedbackBufferType = OpenTK.Graphics.OpenGL.GetPName.FeedbackBufferType; - var _SelectionBufferSize = OpenTK.Graphics.OpenGL.GetPName.SelectionBufferSize; - var _PolygonOffsetUnits = OpenTK.Graphics.OpenGL.GetPName.PolygonOffsetUnits; - var _PolygonOffsetPoint = OpenTK.Graphics.OpenGL.GetPName.PolygonOffsetPoint; - var _PolygonOffsetLine = OpenTK.Graphics.OpenGL.GetPName.PolygonOffsetLine; - var _ClipPlane0 = OpenTK.Graphics.OpenGL.GetPName.ClipPlane0; - var _ClipPlane1 = OpenTK.Graphics.OpenGL.GetPName.ClipPlane1; - var _ClipPlane2 = OpenTK.Graphics.OpenGL.GetPName.ClipPlane2; - var _ClipPlane3 = OpenTK.Graphics.OpenGL.GetPName.ClipPlane3; - var _ClipPlane4 = OpenTK.Graphics.OpenGL.GetPName.ClipPlane4; - var _ClipPlane5 = OpenTK.Graphics.OpenGL.GetPName.ClipPlane5; - var _Light0 = OpenTK.Graphics.OpenGL.GetPName.Light0; - var _Light1 = OpenTK.Graphics.OpenGL.GetPName.Light1; - var _Light2 = OpenTK.Graphics.OpenGL.GetPName.Light2; - var _Light3 = OpenTK.Graphics.OpenGL.GetPName.Light3; - var _Light4 = OpenTK.Graphics.OpenGL.GetPName.Light4; - var _Light5 = OpenTK.Graphics.OpenGL.GetPName.Light5; - var _Light6 = OpenTK.Graphics.OpenGL.GetPName.Light6; - var _Light7 = OpenTK.Graphics.OpenGL.GetPName.Light7; - var _BlendColorExt = OpenTK.Graphics.OpenGL.GetPName.BlendColorExt; - var _BlendEquationExt = OpenTK.Graphics.OpenGL.GetPName.BlendEquationExt; - var _BlendEquationRgb = OpenTK.Graphics.OpenGL.GetPName.BlendEquationRgb; - var _PackCmykHintExt = OpenTK.Graphics.OpenGL.GetPName.PackCmykHintExt; - var _UnpackCmykHintExt = OpenTK.Graphics.OpenGL.GetPName.UnpackCmykHintExt; - var _Convolution1DExt = OpenTK.Graphics.OpenGL.GetPName.Convolution1DExt; - var _Convolution2DExt = OpenTK.Graphics.OpenGL.GetPName.Convolution2DExt; - var _Separable2DExt = OpenTK.Graphics.OpenGL.GetPName.Separable2DExt; - var _PostConvolutionRedScaleExt = OpenTK.Graphics.OpenGL.GetPName.PostConvolutionRedScaleExt; - var _PostConvolutionGreenScaleExt = OpenTK.Graphics.OpenGL.GetPName.PostConvolutionGreenScaleExt; - var _PostConvolutionBlueScaleExt = OpenTK.Graphics.OpenGL.GetPName.PostConvolutionBlueScaleExt; - var _PostConvolutionAlphaScaleExt = OpenTK.Graphics.OpenGL.GetPName.PostConvolutionAlphaScaleExt; - var _PostConvolutionRedBiasExt = OpenTK.Graphics.OpenGL.GetPName.PostConvolutionRedBiasExt; - var _PostConvolutionGreenBiasExt = OpenTK.Graphics.OpenGL.GetPName.PostConvolutionGreenBiasExt; - var _PostConvolutionBlueBiasExt = OpenTK.Graphics.OpenGL.GetPName.PostConvolutionBlueBiasExt; - var _PostConvolutionAlphaBiasExt = OpenTK.Graphics.OpenGL.GetPName.PostConvolutionAlphaBiasExt; - var _HistogramExt = OpenTK.Graphics.OpenGL.GetPName.HistogramExt; - var _MinmaxExt = OpenTK.Graphics.OpenGL.GetPName.MinmaxExt; - var _PolygonOffsetFill = OpenTK.Graphics.OpenGL.GetPName.PolygonOffsetFill; - var _PolygonOffsetFactor = OpenTK.Graphics.OpenGL.GetPName.PolygonOffsetFactor; - var _PolygonOffsetBiasExt = OpenTK.Graphics.OpenGL.GetPName.PolygonOffsetBiasExt; - var _RescaleNormalExt = OpenTK.Graphics.OpenGL.GetPName.RescaleNormalExt; - var _TextureBinding1D = OpenTK.Graphics.OpenGL.GetPName.TextureBinding1D; - var _TextureBinding2D = OpenTK.Graphics.OpenGL.GetPName.TextureBinding2D; - var _Texture3DBindingExt = OpenTK.Graphics.OpenGL.GetPName.Texture3DBindingExt; - var _TextureBinding3D = OpenTK.Graphics.OpenGL.GetPName.TextureBinding3D; - var _PackSkipImagesExt = OpenTK.Graphics.OpenGL.GetPName.PackSkipImagesExt; - var _PackImageHeightExt = OpenTK.Graphics.OpenGL.GetPName.PackImageHeightExt; - var _UnpackSkipImagesExt = OpenTK.Graphics.OpenGL.GetPName.UnpackSkipImagesExt; - var _UnpackImageHeightExt = OpenTK.Graphics.OpenGL.GetPName.UnpackImageHeightExt; - var _Texture3DExt = OpenTK.Graphics.OpenGL.GetPName.Texture3DExt; - var _Max3DTextureSize = OpenTK.Graphics.OpenGL.GetPName.Max3DTextureSize; - var _Max3DTextureSizeExt = OpenTK.Graphics.OpenGL.GetPName.Max3DTextureSizeExt; - var _VertexArray = OpenTK.Graphics.OpenGL.GetPName.VertexArray; - var _NormalArray = OpenTK.Graphics.OpenGL.GetPName.NormalArray; - var _ColorArray = OpenTK.Graphics.OpenGL.GetPName.ColorArray; - var _IndexArray = OpenTK.Graphics.OpenGL.GetPName.IndexArray; - var _TextureCoordArray = OpenTK.Graphics.OpenGL.GetPName.TextureCoordArray; - var _EdgeFlagArray = OpenTK.Graphics.OpenGL.GetPName.EdgeFlagArray; - var _VertexArraySize = OpenTK.Graphics.OpenGL.GetPName.VertexArraySize; - var _VertexArrayType = OpenTK.Graphics.OpenGL.GetPName.VertexArrayType; - var _VertexArrayStride = OpenTK.Graphics.OpenGL.GetPName.VertexArrayStride; - var _VertexArrayCountExt = OpenTK.Graphics.OpenGL.GetPName.VertexArrayCountExt; - var _NormalArrayType = OpenTK.Graphics.OpenGL.GetPName.NormalArrayType; - var _NormalArrayStride = OpenTK.Graphics.OpenGL.GetPName.NormalArrayStride; - var _NormalArrayCountExt = OpenTK.Graphics.OpenGL.GetPName.NormalArrayCountExt; - var _ColorArraySize = OpenTK.Graphics.OpenGL.GetPName.ColorArraySize; - var _ColorArrayType = OpenTK.Graphics.OpenGL.GetPName.ColorArrayType; - var _ColorArrayStride = OpenTK.Graphics.OpenGL.GetPName.ColorArrayStride; - var _ColorArrayCountExt = OpenTK.Graphics.OpenGL.GetPName.ColorArrayCountExt; - var _IndexArrayType = OpenTK.Graphics.OpenGL.GetPName.IndexArrayType; - var _IndexArrayStride = OpenTK.Graphics.OpenGL.GetPName.IndexArrayStride; - var _IndexArrayCountExt = OpenTK.Graphics.OpenGL.GetPName.IndexArrayCountExt; - var _TextureCoordArraySize = OpenTK.Graphics.OpenGL.GetPName.TextureCoordArraySize; - var _TextureCoordArrayType = OpenTK.Graphics.OpenGL.GetPName.TextureCoordArrayType; - var _TextureCoordArrayStride = OpenTK.Graphics.OpenGL.GetPName.TextureCoordArrayStride; - var _TextureCoordArrayCountExt = OpenTK.Graphics.OpenGL.GetPName.TextureCoordArrayCountExt; - var _EdgeFlagArrayStride = OpenTK.Graphics.OpenGL.GetPName.EdgeFlagArrayStride; - var _EdgeFlagArrayCountExt = OpenTK.Graphics.OpenGL.GetPName.EdgeFlagArrayCountExt; - var _InterlaceSgix = OpenTK.Graphics.OpenGL.GetPName.InterlaceSgix; - var _DetailTexture2DBindingSgis = OpenTK.Graphics.OpenGL.GetPName.DetailTexture2DBindingSgis; - var _Multisample = OpenTK.Graphics.OpenGL.GetPName.Multisample; - var _MultisampleSgis = OpenTK.Graphics.OpenGL.GetPName.MultisampleSgis; - var _SampleAlphaToCoverage = OpenTK.Graphics.OpenGL.GetPName.SampleAlphaToCoverage; - var _SampleAlphaToMaskSgis = OpenTK.Graphics.OpenGL.GetPName.SampleAlphaToMaskSgis; - var _SampleAlphaToOne = OpenTK.Graphics.OpenGL.GetPName.SampleAlphaToOne; - var _SampleAlphaToOneSgis = OpenTK.Graphics.OpenGL.GetPName.SampleAlphaToOneSgis; - var _SampleCoverage = OpenTK.Graphics.OpenGL.GetPName.SampleCoverage; - var _SampleMaskSgis = OpenTK.Graphics.OpenGL.GetPName.SampleMaskSgis; - var _SampleBuffers = OpenTK.Graphics.OpenGL.GetPName.SampleBuffers; - var _SampleBuffersSgis = OpenTK.Graphics.OpenGL.GetPName.SampleBuffersSgis; - var _Samples = OpenTK.Graphics.OpenGL.GetPName.Samples; - var _SamplesSgis = OpenTK.Graphics.OpenGL.GetPName.SamplesSgis; - var _SampleCoverageValue = OpenTK.Graphics.OpenGL.GetPName.SampleCoverageValue; - var _SampleMaskValueSgis = OpenTK.Graphics.OpenGL.GetPName.SampleMaskValueSgis; - var _SampleCoverageInvert = OpenTK.Graphics.OpenGL.GetPName.SampleCoverageInvert; - var _SampleMaskInvertSgis = OpenTK.Graphics.OpenGL.GetPName.SampleMaskInvertSgis; - var _SamplePatternSgis = OpenTK.Graphics.OpenGL.GetPName.SamplePatternSgis; - var _ColorMatrixSgi = OpenTK.Graphics.OpenGL.GetPName.ColorMatrixSgi; - var _ColorMatrixStackDepthSgi = OpenTK.Graphics.OpenGL.GetPName.ColorMatrixStackDepthSgi; - var _MaxColorMatrixStackDepthSgi = OpenTK.Graphics.OpenGL.GetPName.MaxColorMatrixStackDepthSgi; - var _PostColorMatrixRedScaleSgi = OpenTK.Graphics.OpenGL.GetPName.PostColorMatrixRedScaleSgi; - var _PostColorMatrixGreenScaleSgi = OpenTK.Graphics.OpenGL.GetPName.PostColorMatrixGreenScaleSgi; - var _PostColorMatrixBlueScaleSgi = OpenTK.Graphics.OpenGL.GetPName.PostColorMatrixBlueScaleSgi; - var _PostColorMatrixAlphaScaleSgi = OpenTK.Graphics.OpenGL.GetPName.PostColorMatrixAlphaScaleSgi; - var _PostColorMatrixRedBiasSgi = OpenTK.Graphics.OpenGL.GetPName.PostColorMatrixRedBiasSgi; - var _PostColorMatrixGreenBiasSgi = OpenTK.Graphics.OpenGL.GetPName.PostColorMatrixGreenBiasSgi; - var _PostColorMatrixBlueBiasSgi = OpenTK.Graphics.OpenGL.GetPName.PostColorMatrixBlueBiasSgi; - var _PostColorMatrixAlphaBiasSgi = OpenTK.Graphics.OpenGL.GetPName.PostColorMatrixAlphaBiasSgi; - var _TextureColorTableSgi = OpenTK.Graphics.OpenGL.GetPName.TextureColorTableSgi; - var _BlendDstRgb = OpenTK.Graphics.OpenGL.GetPName.BlendDstRgb; - var _BlendSrcRgb = OpenTK.Graphics.OpenGL.GetPName.BlendSrcRgb; - var _BlendDstAlpha = OpenTK.Graphics.OpenGL.GetPName.BlendDstAlpha; - var _BlendSrcAlpha = OpenTK.Graphics.OpenGL.GetPName.BlendSrcAlpha; - var _ColorTableSgi = OpenTK.Graphics.OpenGL.GetPName.ColorTableSgi; - var _PostConvolutionColorTableSgi = OpenTK.Graphics.OpenGL.GetPName.PostConvolutionColorTableSgi; - var _PostColorMatrixColorTableSgi = OpenTK.Graphics.OpenGL.GetPName.PostColorMatrixColorTableSgi; - var _MaxElementsVertices = OpenTK.Graphics.OpenGL.GetPName.MaxElementsVertices; - var _MaxElementsIndices = OpenTK.Graphics.OpenGL.GetPName.MaxElementsIndices; - var _PointSizeMin = OpenTK.Graphics.OpenGL.GetPName.PointSizeMin; - var _PointSizeMinSgis = OpenTK.Graphics.OpenGL.GetPName.PointSizeMinSgis; - var _PointSizeMax = OpenTK.Graphics.OpenGL.GetPName.PointSizeMax; - var _PointSizeMaxSgis = OpenTK.Graphics.OpenGL.GetPName.PointSizeMaxSgis; - var _PointFadeThresholdSize = OpenTK.Graphics.OpenGL.GetPName.PointFadeThresholdSize; - var _PointFadeThresholdSizeSgis = OpenTK.Graphics.OpenGL.GetPName.PointFadeThresholdSizeSgis; - var _DistanceAttenuationSgis = OpenTK.Graphics.OpenGL.GetPName.DistanceAttenuationSgis; - var _PointDistanceAttenuation = OpenTK.Graphics.OpenGL.GetPName.PointDistanceAttenuation; - var _FogFuncPointsSgis = OpenTK.Graphics.OpenGL.GetPName.FogFuncPointsSgis; - var _MaxFogFuncPointsSgis = OpenTK.Graphics.OpenGL.GetPName.MaxFogFuncPointsSgis; - var _PackSkipVolumesSgis = OpenTK.Graphics.OpenGL.GetPName.PackSkipVolumesSgis; - var _PackImageDepthSgis = OpenTK.Graphics.OpenGL.GetPName.PackImageDepthSgis; - var _UnpackSkipVolumesSgis = OpenTK.Graphics.OpenGL.GetPName.UnpackSkipVolumesSgis; - var _UnpackImageDepthSgis = OpenTK.Graphics.OpenGL.GetPName.UnpackImageDepthSgis; - var _Texture4DSgis = OpenTK.Graphics.OpenGL.GetPName.Texture4DSgis; - var _Max4DTextureSizeSgis = OpenTK.Graphics.OpenGL.GetPName.Max4DTextureSizeSgis; - var _PixelTexGenSgix = OpenTK.Graphics.OpenGL.GetPName.PixelTexGenSgix; - var _PixelTileBestAlignmentSgix = OpenTK.Graphics.OpenGL.GetPName.PixelTileBestAlignmentSgix; - var _PixelTileCacheIncrementSgix = OpenTK.Graphics.OpenGL.GetPName.PixelTileCacheIncrementSgix; - var _PixelTileWidthSgix = OpenTK.Graphics.OpenGL.GetPName.PixelTileWidthSgix; - var _PixelTileHeightSgix = OpenTK.Graphics.OpenGL.GetPName.PixelTileHeightSgix; - var _PixelTileGridWidthSgix = OpenTK.Graphics.OpenGL.GetPName.PixelTileGridWidthSgix; - var _PixelTileGridHeightSgix = OpenTK.Graphics.OpenGL.GetPName.PixelTileGridHeightSgix; - var _PixelTileGridDepthSgix = OpenTK.Graphics.OpenGL.GetPName.PixelTileGridDepthSgix; - var _PixelTileCacheSizeSgix = OpenTK.Graphics.OpenGL.GetPName.PixelTileCacheSizeSgix; - var _SpriteSgix = OpenTK.Graphics.OpenGL.GetPName.SpriteSgix; - var _SpriteModeSgix = OpenTK.Graphics.OpenGL.GetPName.SpriteModeSgix; - var _SpriteAxisSgix = OpenTK.Graphics.OpenGL.GetPName.SpriteAxisSgix; - var _SpriteTranslationSgix = OpenTK.Graphics.OpenGL.GetPName.SpriteTranslationSgix; - var _Texture4DBindingSgis = OpenTK.Graphics.OpenGL.GetPName.Texture4DBindingSgis; - var _MaxClipmapDepthSgix = OpenTK.Graphics.OpenGL.GetPName.MaxClipmapDepthSgix; - var _MaxClipmapVirtualDepthSgix = OpenTK.Graphics.OpenGL.GetPName.MaxClipmapVirtualDepthSgix; - var _PostTextureFilterBiasRangeSgix = OpenTK.Graphics.OpenGL.GetPName.PostTextureFilterBiasRangeSgix; - var _PostTextureFilterScaleRangeSgix = OpenTK.Graphics.OpenGL.GetPName.PostTextureFilterScaleRangeSgix; - var _ReferencePlaneSgix = OpenTK.Graphics.OpenGL.GetPName.ReferencePlaneSgix; - var _ReferencePlaneEquationSgix = OpenTK.Graphics.OpenGL.GetPName.ReferencePlaneEquationSgix; - var _IrInstrument1Sgix = OpenTK.Graphics.OpenGL.GetPName.IrInstrument1Sgix; - var _InstrumentMeasurementsSgix = OpenTK.Graphics.OpenGL.GetPName.InstrumentMeasurementsSgix; - var _CalligraphicFragmentSgix = OpenTK.Graphics.OpenGL.GetPName.CalligraphicFragmentSgix; - var _FramezoomSgix = OpenTK.Graphics.OpenGL.GetPName.FramezoomSgix; - var _FramezoomFactorSgix = OpenTK.Graphics.OpenGL.GetPName.FramezoomFactorSgix; - var _MaxFramezoomFactorSgix = OpenTK.Graphics.OpenGL.GetPName.MaxFramezoomFactorSgix; - var _GenerateMipmapHint = OpenTK.Graphics.OpenGL.GetPName.GenerateMipmapHint; - var _GenerateMipmapHintSgis = OpenTK.Graphics.OpenGL.GetPName.GenerateMipmapHintSgis; - var _DeformationsMaskSgix = OpenTK.Graphics.OpenGL.GetPName.DeformationsMaskSgix; - var _FogOffsetSgix = OpenTK.Graphics.OpenGL.GetPName.FogOffsetSgix; - var _FogOffsetValueSgix = OpenTK.Graphics.OpenGL.GetPName.FogOffsetValueSgix; - var _LightModelColorControl = OpenTK.Graphics.OpenGL.GetPName.LightModelColorControl; - var _SharedTexturePaletteExt = OpenTK.Graphics.OpenGL.GetPName.SharedTexturePaletteExt; - var _MajorVersion = OpenTK.Graphics.OpenGL.GetPName.MajorVersion; - var _MinorVersion = OpenTK.Graphics.OpenGL.GetPName.MinorVersion; - var _NumExtensions = OpenTK.Graphics.OpenGL.GetPName.NumExtensions; - var _ContextFlags = OpenTK.Graphics.OpenGL.GetPName.ContextFlags; - var _ProgramPipelineBinding = OpenTK.Graphics.OpenGL.GetPName.ProgramPipelineBinding; - var _MaxViewports = OpenTK.Graphics.OpenGL.GetPName.MaxViewports; - var _ViewportSubpixelBits = OpenTK.Graphics.OpenGL.GetPName.ViewportSubpixelBits; - var _ViewportBoundsRange = OpenTK.Graphics.OpenGL.GetPName.ViewportBoundsRange; - var _LayerProvokingVertex = OpenTK.Graphics.OpenGL.GetPName.LayerProvokingVertex; - var _ViewportIndexProvokingVertex = OpenTK.Graphics.OpenGL.GetPName.ViewportIndexProvokingVertex; - var _ConvolutionHintSgix = OpenTK.Graphics.OpenGL.GetPName.ConvolutionHintSgix; - var _AsyncMarkerSgix = OpenTK.Graphics.OpenGL.GetPName.AsyncMarkerSgix; - var _PixelTexGenModeSgix = OpenTK.Graphics.OpenGL.GetPName.PixelTexGenModeSgix; - var _AsyncHistogramSgix = OpenTK.Graphics.OpenGL.GetPName.AsyncHistogramSgix; - var _MaxAsyncHistogramSgix = OpenTK.Graphics.OpenGL.GetPName.MaxAsyncHistogramSgix; - var _PixelTextureSgis = OpenTK.Graphics.OpenGL.GetPName.PixelTextureSgis; - var _AsyncTexImageSgix = OpenTK.Graphics.OpenGL.GetPName.AsyncTexImageSgix; - var _AsyncDrawPixelsSgix = OpenTK.Graphics.OpenGL.GetPName.AsyncDrawPixelsSgix; - var _AsyncReadPixelsSgix = OpenTK.Graphics.OpenGL.GetPName.AsyncReadPixelsSgix; - var _MaxAsyncTexImageSgix = OpenTK.Graphics.OpenGL.GetPName.MaxAsyncTexImageSgix; - var _MaxAsyncDrawPixelsSgix = OpenTK.Graphics.OpenGL.GetPName.MaxAsyncDrawPixelsSgix; - var _MaxAsyncReadPixelsSgix = OpenTK.Graphics.OpenGL.GetPName.MaxAsyncReadPixelsSgix; - var _VertexPreclipSgix = OpenTK.Graphics.OpenGL.GetPName.VertexPreclipSgix; - var _VertexPreclipHintSgix = OpenTK.Graphics.OpenGL.GetPName.VertexPreclipHintSgix; - var _FragmentLightingSgix = OpenTK.Graphics.OpenGL.GetPName.FragmentLightingSgix; - var _FragmentColorMaterialSgix = OpenTK.Graphics.OpenGL.GetPName.FragmentColorMaterialSgix; - var _FragmentColorMaterialFaceSgix = OpenTK.Graphics.OpenGL.GetPName.FragmentColorMaterialFaceSgix; - var _FragmentColorMaterialParameterSgix = OpenTK.Graphics.OpenGL.GetPName.FragmentColorMaterialParameterSgix; - var _MaxFragmentLightsSgix = OpenTK.Graphics.OpenGL.GetPName.MaxFragmentLightsSgix; - var _MaxActiveLightsSgix = OpenTK.Graphics.OpenGL.GetPName.MaxActiveLightsSgix; - var _LightEnvModeSgix = OpenTK.Graphics.OpenGL.GetPName.LightEnvModeSgix; - var _FragmentLightModelLocalViewerSgix = OpenTK.Graphics.OpenGL.GetPName.FragmentLightModelLocalViewerSgix; - var _FragmentLightModelTwoSideSgix = OpenTK.Graphics.OpenGL.GetPName.FragmentLightModelTwoSideSgix; - var _FragmentLightModelAmbientSgix = OpenTK.Graphics.OpenGL.GetPName.FragmentLightModelAmbientSgix; - var _FragmentLightModelNormalInterpolationSgix = OpenTK.Graphics.OpenGL.GetPName.FragmentLightModelNormalInterpolationSgix; - var _FragmentLight0Sgix = OpenTK.Graphics.OpenGL.GetPName.FragmentLight0Sgix; - var _PackResampleSgix = OpenTK.Graphics.OpenGL.GetPName.PackResampleSgix; - var _UnpackResampleSgix = OpenTK.Graphics.OpenGL.GetPName.UnpackResampleSgix; - var _CurrentFogCoord = OpenTK.Graphics.OpenGL.GetPName.CurrentFogCoord; - var _FogCoordArrayType = OpenTK.Graphics.OpenGL.GetPName.FogCoordArrayType; - var _FogCoordArrayStride = OpenTK.Graphics.OpenGL.GetPName.FogCoordArrayStride; - var _ColorSum = OpenTK.Graphics.OpenGL.GetPName.ColorSum; - var _CurrentSecondaryColor = OpenTK.Graphics.OpenGL.GetPName.CurrentSecondaryColor; - var _SecondaryColorArraySize = OpenTK.Graphics.OpenGL.GetPName.SecondaryColorArraySize; - var _SecondaryColorArrayType = OpenTK.Graphics.OpenGL.GetPName.SecondaryColorArrayType; - var _SecondaryColorArrayStride = OpenTK.Graphics.OpenGL.GetPName.SecondaryColorArrayStride; - var _CurrentRasterSecondaryColor = OpenTK.Graphics.OpenGL.GetPName.CurrentRasterSecondaryColor; - var _AliasedPointSizeRange = OpenTK.Graphics.OpenGL.GetPName.AliasedPointSizeRange; - var _AliasedLineWidthRange = OpenTK.Graphics.OpenGL.GetPName.AliasedLineWidthRange; - var _ActiveTexture = OpenTK.Graphics.OpenGL.GetPName.ActiveTexture; - var _ClientActiveTexture = OpenTK.Graphics.OpenGL.GetPName.ClientActiveTexture; - var _MaxTextureUnits = OpenTK.Graphics.OpenGL.GetPName.MaxTextureUnits; - var _TransposeModelviewMatrix = OpenTK.Graphics.OpenGL.GetPName.TransposeModelviewMatrix; - var _TransposeProjectionMatrix = OpenTK.Graphics.OpenGL.GetPName.TransposeProjectionMatrix; - var _TransposeTextureMatrix = OpenTK.Graphics.OpenGL.GetPName.TransposeTextureMatrix; - var _TransposeColorMatrix = OpenTK.Graphics.OpenGL.GetPName.TransposeColorMatrix; - var _MaxRenderbufferSize = OpenTK.Graphics.OpenGL.GetPName.MaxRenderbufferSize; - var _MaxRenderbufferSizeExt = OpenTK.Graphics.OpenGL.GetPName.MaxRenderbufferSizeExt; - var _TextureCompressionHint = OpenTK.Graphics.OpenGL.GetPName.TextureCompressionHint; - var _TextureBindingRectangle = OpenTK.Graphics.OpenGL.GetPName.TextureBindingRectangle; - var _MaxRectangleTextureSize = OpenTK.Graphics.OpenGL.GetPName.MaxRectangleTextureSize; - var _MaxTextureLodBias = OpenTK.Graphics.OpenGL.GetPName.MaxTextureLodBias; - var _TextureCubeMap = OpenTK.Graphics.OpenGL.GetPName.TextureCubeMap; - var _TextureBindingCubeMap = OpenTK.Graphics.OpenGL.GetPName.TextureBindingCubeMap; - var _MaxCubeMapTextureSize = OpenTK.Graphics.OpenGL.GetPName.MaxCubeMapTextureSize; - var _PackSubsampleRateSgix = OpenTK.Graphics.OpenGL.GetPName.PackSubsampleRateSgix; - var _UnpackSubsampleRateSgix = OpenTK.Graphics.OpenGL.GetPName.UnpackSubsampleRateSgix; - var _VertexArrayBinding = OpenTK.Graphics.OpenGL.GetPName.VertexArrayBinding; - var _ProgramPointSize = OpenTK.Graphics.OpenGL.GetPName.ProgramPointSize; - var _DepthClamp = OpenTK.Graphics.OpenGL.GetPName.DepthClamp; - var _NumCompressedTextureFormats = OpenTK.Graphics.OpenGL.GetPName.NumCompressedTextureFormats; - var _CompressedTextureFormats = OpenTK.Graphics.OpenGL.GetPName.CompressedTextureFormats; - var _NumProgramBinaryFormats = OpenTK.Graphics.OpenGL.GetPName.NumProgramBinaryFormats; - var _ProgramBinaryFormats = OpenTK.Graphics.OpenGL.GetPName.ProgramBinaryFormats; - var _StencilBackFunc = OpenTK.Graphics.OpenGL.GetPName.StencilBackFunc; - var _StencilBackFail = OpenTK.Graphics.OpenGL.GetPName.StencilBackFail; - var _StencilBackPassDepthFail = OpenTK.Graphics.OpenGL.GetPName.StencilBackPassDepthFail; - var _StencilBackPassDepthPass = OpenTK.Graphics.OpenGL.GetPName.StencilBackPassDepthPass; - var _RgbaFloatMode = OpenTK.Graphics.OpenGL.GetPName.RgbaFloatMode; - var _MaxDrawBuffers = OpenTK.Graphics.OpenGL.GetPName.MaxDrawBuffers; - var _DrawBuffer0 = OpenTK.Graphics.OpenGL.GetPName.DrawBuffer0; - var _DrawBuffer1 = OpenTK.Graphics.OpenGL.GetPName.DrawBuffer1; - var _DrawBuffer2 = OpenTK.Graphics.OpenGL.GetPName.DrawBuffer2; - var _DrawBuffer3 = OpenTK.Graphics.OpenGL.GetPName.DrawBuffer3; - var _DrawBuffer4 = OpenTK.Graphics.OpenGL.GetPName.DrawBuffer4; - var _DrawBuffer5 = OpenTK.Graphics.OpenGL.GetPName.DrawBuffer5; - var _DrawBuffer6 = OpenTK.Graphics.OpenGL.GetPName.DrawBuffer6; - var _DrawBuffer7 = OpenTK.Graphics.OpenGL.GetPName.DrawBuffer7; - var _DrawBuffer8 = OpenTK.Graphics.OpenGL.GetPName.DrawBuffer8; - var _DrawBuffer9 = OpenTK.Graphics.OpenGL.GetPName.DrawBuffer9; - var _DrawBuffer10 = OpenTK.Graphics.OpenGL.GetPName.DrawBuffer10; - var _DrawBuffer11 = OpenTK.Graphics.OpenGL.GetPName.DrawBuffer11; - var _DrawBuffer12 = OpenTK.Graphics.OpenGL.GetPName.DrawBuffer12; - var _DrawBuffer13 = OpenTK.Graphics.OpenGL.GetPName.DrawBuffer13; - var _DrawBuffer14 = OpenTK.Graphics.OpenGL.GetPName.DrawBuffer14; - var _DrawBuffer15 = OpenTK.Graphics.OpenGL.GetPName.DrawBuffer15; - var _BlendEquationAlpha = OpenTK.Graphics.OpenGL.GetPName.BlendEquationAlpha; - var _TextureCubeMapSeamless = OpenTK.Graphics.OpenGL.GetPName.TextureCubeMapSeamless; - var _PointSprite = OpenTK.Graphics.OpenGL.GetPName.PointSprite; - var _MaxVertexAttribs = OpenTK.Graphics.OpenGL.GetPName.MaxVertexAttribs; - var _MaxTessControlInputComponents = OpenTK.Graphics.OpenGL.GetPName.MaxTessControlInputComponents; - var _MaxTessEvaluationInputComponents = OpenTK.Graphics.OpenGL.GetPName.MaxTessEvaluationInputComponents; - var _MaxTextureCoords = OpenTK.Graphics.OpenGL.GetPName.MaxTextureCoords; - var _MaxTextureImageUnits = OpenTK.Graphics.OpenGL.GetPName.MaxTextureImageUnits; - var _ArrayBufferBinding = OpenTK.Graphics.OpenGL.GetPName.ArrayBufferBinding; - var _ElementArrayBufferBinding = OpenTK.Graphics.OpenGL.GetPName.ElementArrayBufferBinding; - var _VertexArrayBufferBinding = OpenTK.Graphics.OpenGL.GetPName.VertexArrayBufferBinding; - var _NormalArrayBufferBinding = OpenTK.Graphics.OpenGL.GetPName.NormalArrayBufferBinding; - var _ColorArrayBufferBinding = OpenTK.Graphics.OpenGL.GetPName.ColorArrayBufferBinding; - var _IndexArrayBufferBinding = OpenTK.Graphics.OpenGL.GetPName.IndexArrayBufferBinding; - var _TextureCoordArrayBufferBinding = OpenTK.Graphics.OpenGL.GetPName.TextureCoordArrayBufferBinding; - var _EdgeFlagArrayBufferBinding = OpenTK.Graphics.OpenGL.GetPName.EdgeFlagArrayBufferBinding; - var _SecondaryColorArrayBufferBinding = OpenTK.Graphics.OpenGL.GetPName.SecondaryColorArrayBufferBinding; - var _FogCoordArrayBufferBinding = OpenTK.Graphics.OpenGL.GetPName.FogCoordArrayBufferBinding; - var _WeightArrayBufferBinding = OpenTK.Graphics.OpenGL.GetPName.WeightArrayBufferBinding; - var _VertexAttribArrayBufferBinding = OpenTK.Graphics.OpenGL.GetPName.VertexAttribArrayBufferBinding; - var _PixelPackBufferBinding = OpenTK.Graphics.OpenGL.GetPName.PixelPackBufferBinding; - var _PixelUnpackBufferBinding = OpenTK.Graphics.OpenGL.GetPName.PixelUnpackBufferBinding; - var _MaxDualSourceDrawBuffers = OpenTK.Graphics.OpenGL.GetPName.MaxDualSourceDrawBuffers; - var _MaxArrayTextureLayers = OpenTK.Graphics.OpenGL.GetPName.MaxArrayTextureLayers; - var _MinProgramTexelOffset = OpenTK.Graphics.OpenGL.GetPName.MinProgramTexelOffset; - var _MaxProgramTexelOffset = OpenTK.Graphics.OpenGL.GetPName.MaxProgramTexelOffset; - var _SamplerBinding = OpenTK.Graphics.OpenGL.GetPName.SamplerBinding; - var _ClampVertexColor = OpenTK.Graphics.OpenGL.GetPName.ClampVertexColor; - var _ClampFragmentColor = OpenTK.Graphics.OpenGL.GetPName.ClampFragmentColor; - var _ClampReadColor = OpenTK.Graphics.OpenGL.GetPName.ClampReadColor; - var _MaxVertexUniformBlocks = OpenTK.Graphics.OpenGL.GetPName.MaxVertexUniformBlocks; - var _MaxGeometryUniformBlocks = OpenTK.Graphics.OpenGL.GetPName.MaxGeometryUniformBlocks; - var _MaxFragmentUniformBlocks = OpenTK.Graphics.OpenGL.GetPName.MaxFragmentUniformBlocks; - var _MaxCombinedUniformBlocks = OpenTK.Graphics.OpenGL.GetPName.MaxCombinedUniformBlocks; - var _MaxUniformBufferBindings = OpenTK.Graphics.OpenGL.GetPName.MaxUniformBufferBindings; - var _MaxUniformBlockSize = OpenTK.Graphics.OpenGL.GetPName.MaxUniformBlockSize; - var _MaxCombinedVertexUniformComponents = OpenTK.Graphics.OpenGL.GetPName.MaxCombinedVertexUniformComponents; - var _MaxCombinedGeometryUniformComponents = OpenTK.Graphics.OpenGL.GetPName.MaxCombinedGeometryUniformComponents; - var _MaxCombinedFragmentUniformComponents = OpenTK.Graphics.OpenGL.GetPName.MaxCombinedFragmentUniformComponents; - var _UniformBufferOffsetAlignment = OpenTK.Graphics.OpenGL.GetPName.UniformBufferOffsetAlignment; - var _MaxFragmentUniformComponents = OpenTK.Graphics.OpenGL.GetPName.MaxFragmentUniformComponents; - var _MaxVertexUniformComponents = OpenTK.Graphics.OpenGL.GetPName.MaxVertexUniformComponents; - var _MaxVaryingComponents = OpenTK.Graphics.OpenGL.GetPName.MaxVaryingComponents; - var _MaxVaryingFloats = OpenTK.Graphics.OpenGL.GetPName.MaxVaryingFloats; - var _MaxVertexTextureImageUnits = OpenTK.Graphics.OpenGL.GetPName.MaxVertexTextureImageUnits; - var _MaxCombinedTextureImageUnits = OpenTK.Graphics.OpenGL.GetPName.MaxCombinedTextureImageUnits; - var _FragmentShaderDerivativeHint = OpenTK.Graphics.OpenGL.GetPName.FragmentShaderDerivativeHint; - var _CurrentProgram = OpenTK.Graphics.OpenGL.GetPName.CurrentProgram; - var _ImplementationColorReadType = OpenTK.Graphics.OpenGL.GetPName.ImplementationColorReadType; - var _ImplementationColorReadFormat = OpenTK.Graphics.OpenGL.GetPName.ImplementationColorReadFormat; - var _TextureBinding1DArray = OpenTK.Graphics.OpenGL.GetPName.TextureBinding1DArray; - var _TextureBinding2DArray = OpenTK.Graphics.OpenGL.GetPName.TextureBinding2DArray; - var _MaxGeometryTextureImageUnits = OpenTK.Graphics.OpenGL.GetPName.MaxGeometryTextureImageUnits; - var _TextureBuffer = OpenTK.Graphics.OpenGL.GetPName.TextureBuffer; - var _MaxTextureBufferSize = OpenTK.Graphics.OpenGL.GetPName.MaxTextureBufferSize; - var _TextureBindingBuffer = OpenTK.Graphics.OpenGL.GetPName.TextureBindingBuffer; - var _TextureBufferDataStoreBinding = OpenTK.Graphics.OpenGL.GetPName.TextureBufferDataStoreBinding; - var _SampleShading = OpenTK.Graphics.OpenGL.GetPName.SampleShading; - var _MinSampleShadingValue = OpenTK.Graphics.OpenGL.GetPName.MinSampleShadingValue; - var _MaxTransformFeedbackSeparateComponents = OpenTK.Graphics.OpenGL.GetPName.MaxTransformFeedbackSeparateComponents; - var _MaxTransformFeedbackInterleavedComponents = OpenTK.Graphics.OpenGL.GetPName.MaxTransformFeedbackInterleavedComponents; - var _MaxTransformFeedbackSeparateAttribs = OpenTK.Graphics.OpenGL.GetPName.MaxTransformFeedbackSeparateAttribs; - var _StencilBackRef = OpenTK.Graphics.OpenGL.GetPName.StencilBackRef; - var _StencilBackValueMask = OpenTK.Graphics.OpenGL.GetPName.StencilBackValueMask; - var _StencilBackWritemask = OpenTK.Graphics.OpenGL.GetPName.StencilBackWritemask; - var _DrawFramebufferBinding = OpenTK.Graphics.OpenGL.GetPName.DrawFramebufferBinding; - var _FramebufferBinding = OpenTK.Graphics.OpenGL.GetPName.FramebufferBinding; - var _FramebufferBindingExt = OpenTK.Graphics.OpenGL.GetPName.FramebufferBindingExt; - var _RenderbufferBinding = OpenTK.Graphics.OpenGL.GetPName.RenderbufferBinding; - var _RenderbufferBindingExt = OpenTK.Graphics.OpenGL.GetPName.RenderbufferBindingExt; - var _ReadFramebufferBinding = OpenTK.Graphics.OpenGL.GetPName.ReadFramebufferBinding; - var _MaxColorAttachments = OpenTK.Graphics.OpenGL.GetPName.MaxColorAttachments; - var _MaxColorAttachmentsExt = OpenTK.Graphics.OpenGL.GetPName.MaxColorAttachmentsExt; - var _MaxSamples = OpenTK.Graphics.OpenGL.GetPName.MaxSamples; - var _FramebufferSrgb = OpenTK.Graphics.OpenGL.GetPName.FramebufferSrgb; - var _MaxGeometryVaryingComponents = OpenTK.Graphics.OpenGL.GetPName.MaxGeometryVaryingComponents; - var _MaxVertexVaryingComponents = OpenTK.Graphics.OpenGL.GetPName.MaxVertexVaryingComponents; - var _MaxGeometryUniformComponents = OpenTK.Graphics.OpenGL.GetPName.MaxGeometryUniformComponents; - var _MaxGeometryOutputVertices = OpenTK.Graphics.OpenGL.GetPName.MaxGeometryOutputVertices; - var _MaxGeometryTotalOutputComponents = OpenTK.Graphics.OpenGL.GetPName.MaxGeometryTotalOutputComponents; - var _MaxSubroutines = OpenTK.Graphics.OpenGL.GetPName.MaxSubroutines; - var _MaxSubroutineUniformLocations = OpenTK.Graphics.OpenGL.GetPName.MaxSubroutineUniformLocations; - var _ShaderBinaryFormats = OpenTK.Graphics.OpenGL.GetPName.ShaderBinaryFormats; - var _NumShaderBinaryFormats = OpenTK.Graphics.OpenGL.GetPName.NumShaderBinaryFormats; - var _ShaderCompiler = OpenTK.Graphics.OpenGL.GetPName.ShaderCompiler; - var _MaxVertexUniformVectors = OpenTK.Graphics.OpenGL.GetPName.MaxVertexUniformVectors; - var _MaxVaryingVectors = OpenTK.Graphics.OpenGL.GetPName.MaxVaryingVectors; - var _MaxFragmentUniformVectors = OpenTK.Graphics.OpenGL.GetPName.MaxFragmentUniformVectors; - var _MaxCombinedTessControlUniformComponents = OpenTK.Graphics.OpenGL.GetPName.MaxCombinedTessControlUniformComponents; - var _MaxCombinedTessEvaluationUniformComponents = OpenTK.Graphics.OpenGL.GetPName.MaxCombinedTessEvaluationUniformComponents; - var _TransformFeedbackBufferPaused = OpenTK.Graphics.OpenGL.GetPName.TransformFeedbackBufferPaused; - var _TransformFeedbackBufferActive = OpenTK.Graphics.OpenGL.GetPName.TransformFeedbackBufferActive; - var _TransformFeedbackBinding = OpenTK.Graphics.OpenGL.GetPName.TransformFeedbackBinding; - var _Timestamp = OpenTK.Graphics.OpenGL.GetPName.Timestamp; - var _QuadsFollowProvokingVertexConvention = OpenTK.Graphics.OpenGL.GetPName.QuadsFollowProvokingVertexConvention; - var _ProvokingVertex = OpenTK.Graphics.OpenGL.GetPName.ProvokingVertex; - var _SampleMask = OpenTK.Graphics.OpenGL.GetPName.SampleMask; - var _MaxSampleMaskWords = OpenTK.Graphics.OpenGL.GetPName.MaxSampleMaskWords; - var _MaxGeometryShaderInvocations = OpenTK.Graphics.OpenGL.GetPName.MaxGeometryShaderInvocations; - var _MinFragmentInterpolationOffset = OpenTK.Graphics.OpenGL.GetPName.MinFragmentInterpolationOffset; - var _MaxFragmentInterpolationOffset = OpenTK.Graphics.OpenGL.GetPName.MaxFragmentInterpolationOffset; - var _FragmentInterpolationOffsetBits = OpenTK.Graphics.OpenGL.GetPName.FragmentInterpolationOffsetBits; - var _MinProgramTextureGatherOffset = OpenTK.Graphics.OpenGL.GetPName.MinProgramTextureGatherOffset; - var _MaxProgramTextureGatherOffset = OpenTK.Graphics.OpenGL.GetPName.MaxProgramTextureGatherOffset; - var _MaxTransformFeedbackBuffers = OpenTK.Graphics.OpenGL.GetPName.MaxTransformFeedbackBuffers; - var _MaxVertexStreams = OpenTK.Graphics.OpenGL.GetPName.MaxVertexStreams; - var _PatchVertices = OpenTK.Graphics.OpenGL.GetPName.PatchVertices; - var _PatchDefaultInnerLevel = OpenTK.Graphics.OpenGL.GetPName.PatchDefaultInnerLevel; - var _PatchDefaultOuterLevel = OpenTK.Graphics.OpenGL.GetPName.PatchDefaultOuterLevel; - var _MaxPatchVertices = OpenTK.Graphics.OpenGL.GetPName.MaxPatchVertices; - var _MaxTessGenLevel = OpenTK.Graphics.OpenGL.GetPName.MaxTessGenLevel; - var _MaxTessControlUniformComponents = OpenTK.Graphics.OpenGL.GetPName.MaxTessControlUniformComponents; - var _MaxTessEvaluationUniformComponents = OpenTK.Graphics.OpenGL.GetPName.MaxTessEvaluationUniformComponents; - var _MaxTessControlTextureImageUnits = OpenTK.Graphics.OpenGL.GetPName.MaxTessControlTextureImageUnits; - var _MaxTessEvaluationTextureImageUnits = OpenTK.Graphics.OpenGL.GetPName.MaxTessEvaluationTextureImageUnits; - var _MaxTessControlOutputComponents = OpenTK.Graphics.OpenGL.GetPName.MaxTessControlOutputComponents; - var _MaxTessPatchComponents = OpenTK.Graphics.OpenGL.GetPName.MaxTessPatchComponents; - var _MaxTessControlTotalOutputComponents = OpenTK.Graphics.OpenGL.GetPName.MaxTessControlTotalOutputComponents; - var _MaxTessEvaluationOutputComponents = OpenTK.Graphics.OpenGL.GetPName.MaxTessEvaluationOutputComponents; - var _MaxTessControlUniformBlocks = OpenTK.Graphics.OpenGL.GetPName.MaxTessControlUniformBlocks; - var _MaxTessEvaluationUniformBlocks = OpenTK.Graphics.OpenGL.GetPName.MaxTessEvaluationUniformBlocks; - var _DrawIndirectBufferBinding = OpenTK.Graphics.OpenGL.GetPName.DrawIndirectBufferBinding; - var _MaxVertexImageUniforms = OpenTK.Graphics.OpenGL.GetPName.MaxVertexImageUniforms; - var _MaxTessControlImageUniforms = OpenTK.Graphics.OpenGL.GetPName.MaxTessControlImageUniforms; - var _MaxTessEvaluationImageUniforms = OpenTK.Graphics.OpenGL.GetPName.MaxTessEvaluationImageUniforms; - var _MaxGeometryImageUniforms = OpenTK.Graphics.OpenGL.GetPName.MaxGeometryImageUniforms; - var _MaxFragmentImageUniforms = OpenTK.Graphics.OpenGL.GetPName.MaxFragmentImageUniforms; - var _MaxCombinedImageUniforms = OpenTK.Graphics.OpenGL.GetPName.MaxCombinedImageUniforms; - var _TextureBinding2DMultisample = OpenTK.Graphics.OpenGL.GetPName.TextureBinding2DMultisample; - var _TextureBinding2DMultisampleArray = OpenTK.Graphics.OpenGL.GetPName.TextureBinding2DMultisampleArray; - var _MaxColorTextureSamples = OpenTK.Graphics.OpenGL.GetPName.MaxColorTextureSamples; - var _MaxDepthTextureSamples = OpenTK.Graphics.OpenGL.GetPName.MaxDepthTextureSamples; - var _MaxIntegerSamples = OpenTK.Graphics.OpenGL.GetPName.MaxIntegerSamples; - var _MaxVertexOutputComponents = OpenTK.Graphics.OpenGL.GetPName.MaxVertexOutputComponents; - var _MaxGeometryInputComponents = OpenTK.Graphics.OpenGL.GetPName.MaxGeometryInputComponents; - var _MaxGeometryOutputComponents = OpenTK.Graphics.OpenGL.GetPName.MaxGeometryOutputComponents; - var _MaxFragmentInputComponents = OpenTK.Graphics.OpenGL.GetPName.MaxFragmentInputComponents; - var _MaxComputeImageUniforms = OpenTK.Graphics.OpenGL.GetPName.MaxComputeImageUniforms; -} -static void Test_GetPointervPName_19724() { - var _FeedbackBufferPointer = OpenTK.Graphics.OpenGL.GetPointervPName.FeedbackBufferPointer; - var _SelectionBufferPointer = OpenTK.Graphics.OpenGL.GetPointervPName.SelectionBufferPointer; - var _VertexArrayPointer = OpenTK.Graphics.OpenGL.GetPointervPName.VertexArrayPointer; - var _VertexArrayPointerExt = OpenTK.Graphics.OpenGL.GetPointervPName.VertexArrayPointerExt; - var _NormalArrayPointer = OpenTK.Graphics.OpenGL.GetPointervPName.NormalArrayPointer; - var _NormalArrayPointerExt = OpenTK.Graphics.OpenGL.GetPointervPName.NormalArrayPointerExt; - var _ColorArrayPointer = OpenTK.Graphics.OpenGL.GetPointervPName.ColorArrayPointer; - var _ColorArrayPointerExt = OpenTK.Graphics.OpenGL.GetPointervPName.ColorArrayPointerExt; - var _IndexArrayPointer = OpenTK.Graphics.OpenGL.GetPointervPName.IndexArrayPointer; - var _IndexArrayPointerExt = OpenTK.Graphics.OpenGL.GetPointervPName.IndexArrayPointerExt; - var _TextureCoordArrayPointer = OpenTK.Graphics.OpenGL.GetPointervPName.TextureCoordArrayPointer; - var _TextureCoordArrayPointerExt = OpenTK.Graphics.OpenGL.GetPointervPName.TextureCoordArrayPointerExt; - var _EdgeFlagArrayPointer = OpenTK.Graphics.OpenGL.GetPointervPName.EdgeFlagArrayPointer; - var _EdgeFlagArrayPointerExt = OpenTK.Graphics.OpenGL.GetPointervPName.EdgeFlagArrayPointerExt; - var _InstrumentBufferPointerSgix = OpenTK.Graphics.OpenGL.GetPointervPName.InstrumentBufferPointerSgix; - var _FogCoordArrayPointer = OpenTK.Graphics.OpenGL.GetPointervPName.FogCoordArrayPointer; - var _SecondaryColorArrayPointer = OpenTK.Graphics.OpenGL.GetPointervPName.SecondaryColorArrayPointer; -} -static void Test_GetProgramParameterName_19725() { - var _ProgramBinaryRetrievableHint = OpenTK.Graphics.OpenGL.GetProgramParameterName.ProgramBinaryRetrievableHint; - var _ProgramSeparable = OpenTK.Graphics.OpenGL.GetProgramParameterName.ProgramSeparable; - var _GeometryShaderInvocations = OpenTK.Graphics.OpenGL.GetProgramParameterName.GeometryShaderInvocations; - var _GeometryVerticesOut = OpenTK.Graphics.OpenGL.GetProgramParameterName.GeometryVerticesOut; - var _GeometryInputType = OpenTK.Graphics.OpenGL.GetProgramParameterName.GeometryInputType; - var _GeometryOutputType = OpenTK.Graphics.OpenGL.GetProgramParameterName.GeometryOutputType; - var _ActiveUniformBlockMaxNameLength = OpenTK.Graphics.OpenGL.GetProgramParameterName.ActiveUniformBlockMaxNameLength; - var _ActiveUniformBlocks = OpenTK.Graphics.OpenGL.GetProgramParameterName.ActiveUniformBlocks; - var _DeleteStatus = OpenTK.Graphics.OpenGL.GetProgramParameterName.DeleteStatus; - var _LinkStatus = OpenTK.Graphics.OpenGL.GetProgramParameterName.LinkStatus; - var _ValidateStatus = OpenTK.Graphics.OpenGL.GetProgramParameterName.ValidateStatus; - var _InfoLogLength = OpenTK.Graphics.OpenGL.GetProgramParameterName.InfoLogLength; - var _AttachedShaders = OpenTK.Graphics.OpenGL.GetProgramParameterName.AttachedShaders; - var _ActiveUniforms = OpenTK.Graphics.OpenGL.GetProgramParameterName.ActiveUniforms; - var _ActiveUniformMaxLength = OpenTK.Graphics.OpenGL.GetProgramParameterName.ActiveUniformMaxLength; - var _ActiveAttributes = OpenTK.Graphics.OpenGL.GetProgramParameterName.ActiveAttributes; - var _ActiveAttributeMaxLength = OpenTK.Graphics.OpenGL.GetProgramParameterName.ActiveAttributeMaxLength; - var _TransformFeedbackVaryingMaxLength = OpenTK.Graphics.OpenGL.GetProgramParameterName.TransformFeedbackVaryingMaxLength; - var _TransformFeedbackBufferMode = OpenTK.Graphics.OpenGL.GetProgramParameterName.TransformFeedbackBufferMode; - var _TransformFeedbackVaryings = OpenTK.Graphics.OpenGL.GetProgramParameterName.TransformFeedbackVaryings; - var _TessControlOutputVertices = OpenTK.Graphics.OpenGL.GetProgramParameterName.TessControlOutputVertices; - var _TessGenMode = OpenTK.Graphics.OpenGL.GetProgramParameterName.TessGenMode; - var _TessGenSpacing = OpenTK.Graphics.OpenGL.GetProgramParameterName.TessGenSpacing; - var _TessGenVertexOrder = OpenTK.Graphics.OpenGL.GetProgramParameterName.TessGenVertexOrder; - var _TessGenPointMode = OpenTK.Graphics.OpenGL.GetProgramParameterName.TessGenPointMode; - var _MaxComputeWorkGroupSize = OpenTK.Graphics.OpenGL.GetProgramParameterName.MaxComputeWorkGroupSize; - var _ActiveAtomicCounterBuffers = OpenTK.Graphics.OpenGL.GetProgramParameterName.ActiveAtomicCounterBuffers; -} -static void Test_GetQueryObjectParam_19726() { - var _QueryResult = OpenTK.Graphics.OpenGL.GetQueryObjectParam.QueryResult; - var _QueryResultAvailable = OpenTK.Graphics.OpenGL.GetQueryObjectParam.QueryResultAvailable; - var _QueryResultNoWait = OpenTK.Graphics.OpenGL.GetQueryObjectParam.QueryResultNoWait; -} -static void Test_GetQueryParam_19727() { - var _QueryCounterBits = OpenTK.Graphics.OpenGL.GetQueryParam.QueryCounterBits; - var _CurrentQuery = OpenTK.Graphics.OpenGL.GetQueryParam.CurrentQuery; -} -static void Test_GetTextureParameter_19728() { - var _TextureWidth = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureWidth; - var _TextureHeight = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureHeight; - var _TextureComponents = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureComponents; - var _TextureInternalFormat = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureInternalFormat; - var _TextureBorderColor = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureBorderColor; - var _TextureBorderColorNv = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureBorderColorNv; - var _TextureBorder = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureBorder; - var _TextureMagFilter = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureMagFilter; - var _TextureMinFilter = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureMinFilter; - var _TextureWrapS = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureWrapS; - var _TextureWrapT = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureWrapT; - var _TextureRedSize = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureRedSize; - var _TextureGreenSize = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureGreenSize; - var _TextureBlueSize = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureBlueSize; - var _TextureAlphaSize = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureAlphaSize; - var _TextureLuminanceSize = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureLuminanceSize; - var _TextureIntensitySize = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureIntensitySize; - var _TexturePriority = OpenTK.Graphics.OpenGL.GetTextureParameter.TexturePriority; - var _TextureResident = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureResident; - var _TextureDepth = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureDepth; - var _TextureDepthExt = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureDepthExt; - var _TextureWrapR = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureWrapR; - var _TextureWrapRExt = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureWrapRExt; - var _DetailTextureLevelSgis = OpenTK.Graphics.OpenGL.GetTextureParameter.DetailTextureLevelSgis; - var _DetailTextureModeSgis = OpenTK.Graphics.OpenGL.GetTextureParameter.DetailTextureModeSgis; - var _DetailTextureFuncPointsSgis = OpenTK.Graphics.OpenGL.GetTextureParameter.DetailTextureFuncPointsSgis; - var _SharpenTextureFuncPointsSgis = OpenTK.Graphics.OpenGL.GetTextureParameter.SharpenTextureFuncPointsSgis; - var _ShadowAmbientSgix = OpenTK.Graphics.OpenGL.GetTextureParameter.ShadowAmbientSgix; - var _DualTextureSelectSgis = OpenTK.Graphics.OpenGL.GetTextureParameter.DualTextureSelectSgis; - var _QuadTextureSelectSgis = OpenTK.Graphics.OpenGL.GetTextureParameter.QuadTextureSelectSgis; - var _Texture4DsizeSgis = OpenTK.Graphics.OpenGL.GetTextureParameter.Texture4DsizeSgis; - var _TextureWrapQSgis = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureWrapQSgis; - var _TextureMinLod = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureMinLod; - var _TextureMinLodSgis = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureMinLodSgis; - var _TextureMaxLod = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureMaxLod; - var _TextureMaxLodSgis = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureMaxLodSgis; - var _TextureBaseLevel = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureBaseLevel; - var _TextureBaseLevelSgis = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureBaseLevelSgis; - var _TextureMaxLevel = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureMaxLevel; - var _TextureMaxLevelSgis = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureMaxLevelSgis; - var _TextureFilter4SizeSgis = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureFilter4SizeSgis; - var _TextureClipmapCenterSgix = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureClipmapCenterSgix; - var _TextureClipmapFrameSgix = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureClipmapFrameSgix; - var _TextureClipmapOffsetSgix = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureClipmapOffsetSgix; - var _TextureClipmapVirtualDepthSgix = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureClipmapVirtualDepthSgix; - var _TextureClipmapLodOffsetSgix = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureClipmapLodOffsetSgix; - var _TextureClipmapDepthSgix = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureClipmapDepthSgix; - var _PostTextureFilterBiasSgix = OpenTK.Graphics.OpenGL.GetTextureParameter.PostTextureFilterBiasSgix; - var _PostTextureFilterScaleSgix = OpenTK.Graphics.OpenGL.GetTextureParameter.PostTextureFilterScaleSgix; - var _TextureLodBiasSSgix = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureLodBiasSSgix; - var _TextureLodBiasTSgix = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureLodBiasTSgix; - var _TextureLodBiasRSgix = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureLodBiasRSgix; - var _GenerateMipmap = OpenTK.Graphics.OpenGL.GetTextureParameter.GenerateMipmap; - var _GenerateMipmapSgis = OpenTK.Graphics.OpenGL.GetTextureParameter.GenerateMipmapSgis; - var _TextureCompareSgix = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureCompareSgix; - var _TextureCompareOperatorSgix = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureCompareOperatorSgix; - var _TextureLequalRSgix = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureLequalRSgix; - var _TextureGequalRSgix = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureGequalRSgix; - var _TextureMaxClampSSgix = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureMaxClampSSgix; - var _TextureMaxClampTSgix = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureMaxClampTSgix; - var _TextureMaxClampRSgix = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureMaxClampRSgix; - var _TextureCompressedImageSize = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureCompressedImageSize; - var _TextureCompressed = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureCompressed; - var _TextureDepthSize = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureDepthSize; - var _DepthTextureMode = OpenTK.Graphics.OpenGL.GetTextureParameter.DepthTextureMode; - var _TextureCompareMode = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureCompareMode; - var _TextureCompareFunc = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureCompareFunc; - var _TextureStencilSize = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureStencilSize; - var _TextureRedType = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureRedType; - var _TextureGreenType = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureGreenType; - var _TextureBlueType = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureBlueType; - var _TextureAlphaType = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureAlphaType; - var _TextureLuminanceType = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureLuminanceType; - var _TextureIntensityType = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureIntensityType; - var _TextureDepthType = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureDepthType; - var _TextureSharedSize = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureSharedSize; - var _TextureSwizzleR = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureSwizzleR; - var _TextureSwizzleG = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureSwizzleG; - var _TextureSwizzleB = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureSwizzleB; - var _TextureSwizzleA = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureSwizzleA; - var _TextureSwizzleRgba = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureSwizzleRgba; - var _TextureSamples = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureSamples; - var _TextureFixedSampleLocations = OpenTK.Graphics.OpenGL.GetTextureParameter.TextureFixedSampleLocations; -} -static void Test_Gl3DfxMultisample_19729() { - var _MultisampleBit3Dfx = OpenTK.Graphics.OpenGL.Gl3DfxMultisample.MultisampleBit3Dfx; - var _Multisample3Dfx = OpenTK.Graphics.OpenGL.Gl3DfxMultisample.Multisample3Dfx; - var _SampleBuffers3Dfx = OpenTK.Graphics.OpenGL.Gl3DfxMultisample.SampleBuffers3Dfx; - var _Samples3Dfx = OpenTK.Graphics.OpenGL.Gl3DfxMultisample.Samples3Dfx; -} -static void Test_Gl3DfxTbuffer_19730() { -} -static void Test_Gl3DfxTextureCompressionFxt1_19731() { - var _CompressedRgbFxt13Dfx = OpenTK.Graphics.OpenGL.Gl3DfxTextureCompressionFxt1.CompressedRgbFxt13Dfx; - var _CompressedRgbaFxt13Dfx = OpenTK.Graphics.OpenGL.Gl3DfxTextureCompressionFxt1.CompressedRgbaFxt13Dfx; -} -static void Test_GremedyFrameTerminator_19732() { -} -static void Test_GremedyStringMarker_19733() { -} -static void Test_HintMode_19734() { - var _DontCare = OpenTK.Graphics.OpenGL.HintMode.DontCare; - var _Fastest = OpenTK.Graphics.OpenGL.HintMode.Fastest; - var _Nicest = OpenTK.Graphics.OpenGL.HintMode.Nicest; -} -static void Test_HintTarget_19735() { - var _PerspectiveCorrectionHint = OpenTK.Graphics.OpenGL.HintTarget.PerspectiveCorrectionHint; - var _PointSmoothHint = OpenTK.Graphics.OpenGL.HintTarget.PointSmoothHint; - var _LineSmoothHint = OpenTK.Graphics.OpenGL.HintTarget.LineSmoothHint; - var _PolygonSmoothHint = OpenTK.Graphics.OpenGL.HintTarget.PolygonSmoothHint; - var _FogHint = OpenTK.Graphics.OpenGL.HintTarget.FogHint; - var _PreferDoublebufferHintPgi = OpenTK.Graphics.OpenGL.HintTarget.PreferDoublebufferHintPgi; - var _ConserveMemoryHintPgi = OpenTK.Graphics.OpenGL.HintTarget.ConserveMemoryHintPgi; - var _ReclaimMemoryHintPgi = OpenTK.Graphics.OpenGL.HintTarget.ReclaimMemoryHintPgi; - var _NativeGraphicsBeginHintPgi = OpenTK.Graphics.OpenGL.HintTarget.NativeGraphicsBeginHintPgi; - var _NativeGraphicsEndHintPgi = OpenTK.Graphics.OpenGL.HintTarget.NativeGraphicsEndHintPgi; - var _AlwaysFastHintPgi = OpenTK.Graphics.OpenGL.HintTarget.AlwaysFastHintPgi; - var _AlwaysSoftHintPgi = OpenTK.Graphics.OpenGL.HintTarget.AlwaysSoftHintPgi; - var _AllowDrawObjHintPgi = OpenTK.Graphics.OpenGL.HintTarget.AllowDrawObjHintPgi; - var _AllowDrawWinHintPgi = OpenTK.Graphics.OpenGL.HintTarget.AllowDrawWinHintPgi; - var _AllowDrawFrgHintPgi = OpenTK.Graphics.OpenGL.HintTarget.AllowDrawFrgHintPgi; - var _AllowDrawMemHintPgi = OpenTK.Graphics.OpenGL.HintTarget.AllowDrawMemHintPgi; - var _StrictDepthfuncHintPgi = OpenTK.Graphics.OpenGL.HintTarget.StrictDepthfuncHintPgi; - var _StrictLightingHintPgi = OpenTK.Graphics.OpenGL.HintTarget.StrictLightingHintPgi; - var _StrictScissorHintPgi = OpenTK.Graphics.OpenGL.HintTarget.StrictScissorHintPgi; - var _FullStippleHintPgi = OpenTK.Graphics.OpenGL.HintTarget.FullStippleHintPgi; - var _ClipNearHintPgi = OpenTK.Graphics.OpenGL.HintTarget.ClipNearHintPgi; - var _ClipFarHintPgi = OpenTK.Graphics.OpenGL.HintTarget.ClipFarHintPgi; - var _WideLineHintPgi = OpenTK.Graphics.OpenGL.HintTarget.WideLineHintPgi; - var _BackNormalsHintPgi = OpenTK.Graphics.OpenGL.HintTarget.BackNormalsHintPgi; - var _VertexDataHintPgi = OpenTK.Graphics.OpenGL.HintTarget.VertexDataHintPgi; - var _VertexConsistentHintPgi = OpenTK.Graphics.OpenGL.HintTarget.VertexConsistentHintPgi; - var _MaterialSideHintPgi = OpenTK.Graphics.OpenGL.HintTarget.MaterialSideHintPgi; - var _MaxVertexHintPgi = OpenTK.Graphics.OpenGL.HintTarget.MaxVertexHintPgi; - var _PackCmykHintExt = OpenTK.Graphics.OpenGL.HintTarget.PackCmykHintExt; - var _UnpackCmykHintExt = OpenTK.Graphics.OpenGL.HintTarget.UnpackCmykHintExt; - var _PhongHintWin = OpenTK.Graphics.OpenGL.HintTarget.PhongHintWin; - var _ClipVolumeClippingHintExt = OpenTK.Graphics.OpenGL.HintTarget.ClipVolumeClippingHintExt; - var _TextureMultiBufferHintSgix = OpenTK.Graphics.OpenGL.HintTarget.TextureMultiBufferHintSgix; - var _GenerateMipmapHint = OpenTK.Graphics.OpenGL.HintTarget.GenerateMipmapHint; - var _GenerateMipmapHintSgis = OpenTK.Graphics.OpenGL.HintTarget.GenerateMipmapHintSgis; - var _ProgramBinaryRetrievableHint = OpenTK.Graphics.OpenGL.HintTarget.ProgramBinaryRetrievableHint; - var _ConvolutionHintSgix = OpenTK.Graphics.OpenGL.HintTarget.ConvolutionHintSgix; - var _ScalebiasHintSgix = OpenTK.Graphics.OpenGL.HintTarget.ScalebiasHintSgix; - var _LineQualityHintSgix = OpenTK.Graphics.OpenGL.HintTarget.LineQualityHintSgix; - var _VertexPreclipSgix = OpenTK.Graphics.OpenGL.HintTarget.VertexPreclipSgix; - var _VertexPreclipHintSgix = OpenTK.Graphics.OpenGL.HintTarget.VertexPreclipHintSgix; - var _TextureCompressionHint = OpenTK.Graphics.OpenGL.HintTarget.TextureCompressionHint; - var _TextureCompressionHintArb = OpenTK.Graphics.OpenGL.HintTarget.TextureCompressionHintArb; - var _VertexArrayStorageHintApple = OpenTK.Graphics.OpenGL.HintTarget.VertexArrayStorageHintApple; - var _MultisampleFilterHintNv = OpenTK.Graphics.OpenGL.HintTarget.MultisampleFilterHintNv; - var _TransformHintApple = OpenTK.Graphics.OpenGL.HintTarget.TransformHintApple; - var _TextureStorageHintApple = OpenTK.Graphics.OpenGL.HintTarget.TextureStorageHintApple; - var _FragmentShaderDerivativeHint = OpenTK.Graphics.OpenGL.HintTarget.FragmentShaderDerivativeHint; - var _FragmentShaderDerivativeHintArb = OpenTK.Graphics.OpenGL.HintTarget.FragmentShaderDerivativeHintArb; - var _FragmentShaderDerivativeHintOes = OpenTK.Graphics.OpenGL.HintTarget.FragmentShaderDerivativeHintOes; - var _BinningControlHintQcom = OpenTK.Graphics.OpenGL.HintTarget.BinningControlHintQcom; -} -static void Test_HistogramTarget_19736() { - var _Histogram = OpenTK.Graphics.OpenGL.HistogramTarget.Histogram; - var _ProxyHistogram = OpenTK.Graphics.OpenGL.HistogramTarget.ProxyHistogram; -} -static void Test_HistogramTargetExt_19737() { - var _Histogram = OpenTK.Graphics.OpenGL.HistogramTargetExt.Histogram; - var _HistogramExt = OpenTK.Graphics.OpenGL.HistogramTargetExt.HistogramExt; - var _ProxyHistogram = OpenTK.Graphics.OpenGL.HistogramTargetExt.ProxyHistogram; - var _ProxyHistogramExt = OpenTK.Graphics.OpenGL.HistogramTargetExt.ProxyHistogramExt; -} -static void Test_HpConvolutionBorderModes_19738() { - var _IgnoreBorderHp = OpenTK.Graphics.OpenGL.HpConvolutionBorderModes.IgnoreBorderHp; - var _ConstantBorderHp = OpenTK.Graphics.OpenGL.HpConvolutionBorderModes.ConstantBorderHp; - var _ReplicateBorderHp = OpenTK.Graphics.OpenGL.HpConvolutionBorderModes.ReplicateBorderHp; - var _ConvolutionBorderColorHp = OpenTK.Graphics.OpenGL.HpConvolutionBorderModes.ConvolutionBorderColorHp; -} -static void Test_HpImageTransform_19739() { - var _ImageScaleXHp = OpenTK.Graphics.OpenGL.HpImageTransform.ImageScaleXHp; - var _ImageScaleYHp = OpenTK.Graphics.OpenGL.HpImageTransform.ImageScaleYHp; - var _ImageTranslateXHp = OpenTK.Graphics.OpenGL.HpImageTransform.ImageTranslateXHp; - var _ImageTranslateYHp = OpenTK.Graphics.OpenGL.HpImageTransform.ImageTranslateYHp; - var _ImageRotateAngleHp = OpenTK.Graphics.OpenGL.HpImageTransform.ImageRotateAngleHp; - var _ImageRotateOriginXHp = OpenTK.Graphics.OpenGL.HpImageTransform.ImageRotateOriginXHp; - var _ImageRotateOriginYHp = OpenTK.Graphics.OpenGL.HpImageTransform.ImageRotateOriginYHp; - var _ImageMagFilterHp = OpenTK.Graphics.OpenGL.HpImageTransform.ImageMagFilterHp; - var _ImageMinFilterHp = OpenTK.Graphics.OpenGL.HpImageTransform.ImageMinFilterHp; - var _ImageCubicWeightHp = OpenTK.Graphics.OpenGL.HpImageTransform.ImageCubicWeightHp; - var _CubicHp = OpenTK.Graphics.OpenGL.HpImageTransform.CubicHp; - var _AverageHp = OpenTK.Graphics.OpenGL.HpImageTransform.AverageHp; - var _ImageTransform2DHp = OpenTK.Graphics.OpenGL.HpImageTransform.ImageTransform2DHp; - var _PostImageTransformColorTableHp = OpenTK.Graphics.OpenGL.HpImageTransform.PostImageTransformColorTableHp; - var _ProxyPostImageTransformColorTableHp = OpenTK.Graphics.OpenGL.HpImageTransform.ProxyPostImageTransformColorTableHp; -} -static void Test_HpOcclusionTest_19740() { - var _OcclusionTestHp = OpenTK.Graphics.OpenGL.HpOcclusionTest.OcclusionTestHp; - var _OcclusionTestResultHp = OpenTK.Graphics.OpenGL.HpOcclusionTest.OcclusionTestResultHp; -} -static void Test_HpTextureLighting_19741() { - var _TextureLightingModeHp = OpenTK.Graphics.OpenGL.HpTextureLighting.TextureLightingModeHp; - var _TexturePostSpecularHp = OpenTK.Graphics.OpenGL.HpTextureLighting.TexturePostSpecularHp; - var _TexturePreSpecularHp = OpenTK.Graphics.OpenGL.HpTextureLighting.TexturePreSpecularHp; -} -static void Test_IbmCullVertex_19742() { - var _CullVertexIbm = OpenTK.Graphics.OpenGL.IbmCullVertex.CullVertexIbm; -} -static void Test_IbmMultimodeDrawArrays_19743() { -} -static void Test_IbmRasterposClip_19744() { - var _RasterPositionUnclippedIbm = OpenTK.Graphics.OpenGL.IbmRasterposClip.RasterPositionUnclippedIbm; -} -static void Test_IbmStaticData_19745() { - var _AllStaticDataIbm = OpenTK.Graphics.OpenGL.IbmStaticData.AllStaticDataIbm; - var _StaticVertexArrayIbm = OpenTK.Graphics.OpenGL.IbmStaticData.StaticVertexArrayIbm; -} -static void Test_IbmTextureMirroredRepeat_19746() { - var _MirroredRepeatIbm = OpenTK.Graphics.OpenGL.IbmTextureMirroredRepeat.MirroredRepeatIbm; -} -static void Test_IbmVertexArrayLists_19747() { - var _VertexArrayListIbm = OpenTK.Graphics.OpenGL.IbmVertexArrayLists.VertexArrayListIbm; - var _NormalArrayListIbm = OpenTK.Graphics.OpenGL.IbmVertexArrayLists.NormalArrayListIbm; - var _ColorArrayListIbm = OpenTK.Graphics.OpenGL.IbmVertexArrayLists.ColorArrayListIbm; - var _IndexArrayListIbm = OpenTK.Graphics.OpenGL.IbmVertexArrayLists.IndexArrayListIbm; - var _TextureCoordArrayListIbm = OpenTK.Graphics.OpenGL.IbmVertexArrayLists.TextureCoordArrayListIbm; - var _EdgeFlagArrayListIbm = OpenTK.Graphics.OpenGL.IbmVertexArrayLists.EdgeFlagArrayListIbm; - var _FogCoordinateArrayListIbm = OpenTK.Graphics.OpenGL.IbmVertexArrayLists.FogCoordinateArrayListIbm; - var _SecondaryColorArrayListIbm = OpenTK.Graphics.OpenGL.IbmVertexArrayLists.SecondaryColorArrayListIbm; - var _VertexArrayListStrideIbm = OpenTK.Graphics.OpenGL.IbmVertexArrayLists.VertexArrayListStrideIbm; - var _NormalArrayListStrideIbm = OpenTK.Graphics.OpenGL.IbmVertexArrayLists.NormalArrayListStrideIbm; - var _ColorArrayListStrideIbm = OpenTK.Graphics.OpenGL.IbmVertexArrayLists.ColorArrayListStrideIbm; - var _IndexArrayListStrideIbm = OpenTK.Graphics.OpenGL.IbmVertexArrayLists.IndexArrayListStrideIbm; - var _TextureCoordArrayListStrideIbm = OpenTK.Graphics.OpenGL.IbmVertexArrayLists.TextureCoordArrayListStrideIbm; - var _EdgeFlagArrayListStrideIbm = OpenTK.Graphics.OpenGL.IbmVertexArrayLists.EdgeFlagArrayListStrideIbm; - var _FogCoordinateArrayListStrideIbm = OpenTK.Graphics.OpenGL.IbmVertexArrayLists.FogCoordinateArrayListStrideIbm; - var _SecondaryColorArrayListStrideIbm = OpenTK.Graphics.OpenGL.IbmVertexArrayLists.SecondaryColorArrayListStrideIbm; -} -static void Test_ImageTarget_19748() { - var _Texture1D = OpenTK.Graphics.OpenGL.ImageTarget.Texture1D; - var _Texture2D = OpenTK.Graphics.OpenGL.ImageTarget.Texture2D; - var _Texture3D = OpenTK.Graphics.OpenGL.ImageTarget.Texture3D; - var _TextureRectangle = OpenTK.Graphics.OpenGL.ImageTarget.TextureRectangle; - var _TextureCubeMap = OpenTK.Graphics.OpenGL.ImageTarget.TextureCubeMap; - var _Texture1DArray = OpenTK.Graphics.OpenGL.ImageTarget.Texture1DArray; - var _Texture2DArray = OpenTK.Graphics.OpenGL.ImageTarget.Texture2DArray; - var _TextureBuffer = OpenTK.Graphics.OpenGL.ImageTarget.TextureBuffer; - var _Renderbuffer = OpenTK.Graphics.OpenGL.ImageTarget.Renderbuffer; - var _TextureCubeMapArray = OpenTK.Graphics.OpenGL.ImageTarget.TextureCubeMapArray; - var _Texture2DMultisample = OpenTK.Graphics.OpenGL.ImageTarget.Texture2DMultisample; - var _Texture2DMultisampleArray = OpenTK.Graphics.OpenGL.ImageTarget.Texture2DMultisampleArray; -} -static void Test_IndexedEnableCap_19749() { - var _Blend = OpenTK.Graphics.OpenGL.IndexedEnableCap.Blend; - var _ScissorTest = OpenTK.Graphics.OpenGL.IndexedEnableCap.ScissorTest; -} -static void Test_IndexPointerType_19750() { - var _Short = OpenTK.Graphics.OpenGL.IndexPointerType.Short; - var _Int = OpenTK.Graphics.OpenGL.IndexPointerType.Int; - var _Float = OpenTK.Graphics.OpenGL.IndexPointerType.Float; - var _Double = OpenTK.Graphics.OpenGL.IndexPointerType.Double; -} -static void Test_IngrBlendFuncSeparate_19751() { -} -static void Test_IngrColorClamp_19752() { - var _RedMinClampIngr = OpenTK.Graphics.OpenGL.IngrColorClamp.RedMinClampIngr; - var _GreenMinClampIngr = OpenTK.Graphics.OpenGL.IngrColorClamp.GreenMinClampIngr; - var _BlueMinClampIngr = OpenTK.Graphics.OpenGL.IngrColorClamp.BlueMinClampIngr; - var _AlphaMinClampIngr = OpenTK.Graphics.OpenGL.IngrColorClamp.AlphaMinClampIngr; - var _RedMaxClampIngr = OpenTK.Graphics.OpenGL.IngrColorClamp.RedMaxClampIngr; - var _GreenMaxClampIngr = OpenTK.Graphics.OpenGL.IngrColorClamp.GreenMaxClampIngr; - var _BlueMaxClampIngr = OpenTK.Graphics.OpenGL.IngrColorClamp.BlueMaxClampIngr; - var _AlphaMaxClampIngr = OpenTK.Graphics.OpenGL.IngrColorClamp.AlphaMaxClampIngr; -} -static void Test_IngrInterlaceRead_19753() { - var _InterlaceReadIngr = OpenTK.Graphics.OpenGL.IngrInterlaceRead.InterlaceReadIngr; -} -static void Test_IntelFragmentShaderOrdering_19754() { -} -static void Test_IntelMapTexture_19755() { - var _LayoutDefaultIntel = OpenTK.Graphics.OpenGL.IntelMapTexture.LayoutDefaultIntel; - var _TextureMemoryLayoutIntel = OpenTK.Graphics.OpenGL.IntelMapTexture.TextureMemoryLayoutIntel; - var _LayoutLinearIntel = OpenTK.Graphics.OpenGL.IntelMapTexture.LayoutLinearIntel; - var _LayoutLinearCpuCachedIntel = OpenTK.Graphics.OpenGL.IntelMapTexture.LayoutLinearCpuCachedIntel; -} -static void Test_IntelParallelArrays_19756() { - var _ParallelArraysIntel = OpenTK.Graphics.OpenGL.IntelParallelArrays.ParallelArraysIntel; - var _VertexArrayParallelPointersIntel = OpenTK.Graphics.OpenGL.IntelParallelArrays.VertexArrayParallelPointersIntel; - var _NormalArrayParallelPointersIntel = OpenTK.Graphics.OpenGL.IntelParallelArrays.NormalArrayParallelPointersIntel; - var _ColorArrayParallelPointersIntel = OpenTK.Graphics.OpenGL.IntelParallelArrays.ColorArrayParallelPointersIntel; - var _TextureCoordArrayParallelPointersIntel = OpenTK.Graphics.OpenGL.IntelParallelArrays.TextureCoordArrayParallelPointersIntel; -} -static void Test_IntelPerformanceQuery_19757() { - var _PerfquerySingleContextIntel = OpenTK.Graphics.OpenGL.IntelPerformanceQuery.PerfquerySingleContextIntel; - var _PerfqueryGlobalContextIntel = OpenTK.Graphics.OpenGL.IntelPerformanceQuery.PerfqueryGlobalContextIntel; - var _PerfqueryDonotFlushIntel = OpenTK.Graphics.OpenGL.IntelPerformanceQuery.PerfqueryDonotFlushIntel; - var _PerfqueryFlushIntel = OpenTK.Graphics.OpenGL.IntelPerformanceQuery.PerfqueryFlushIntel; - var _PerfqueryWaitIntel = OpenTK.Graphics.OpenGL.IntelPerformanceQuery.PerfqueryWaitIntel; - var _PerfqueryCounterEventIntel = OpenTK.Graphics.OpenGL.IntelPerformanceQuery.PerfqueryCounterEventIntel; - var _PerfqueryCounterDurationNormIntel = OpenTK.Graphics.OpenGL.IntelPerformanceQuery.PerfqueryCounterDurationNormIntel; - var _PerfqueryCounterDurationRawIntel = OpenTK.Graphics.OpenGL.IntelPerformanceQuery.PerfqueryCounterDurationRawIntel; - var _PerfqueryCounterThroughputIntel = OpenTK.Graphics.OpenGL.IntelPerformanceQuery.PerfqueryCounterThroughputIntel; - var _PerfqueryCounterRawIntel = OpenTK.Graphics.OpenGL.IntelPerformanceQuery.PerfqueryCounterRawIntel; - var _PerfqueryCounterTimestampIntel = OpenTK.Graphics.OpenGL.IntelPerformanceQuery.PerfqueryCounterTimestampIntel; - var _PerfqueryCounterDataUint32Intel = OpenTK.Graphics.OpenGL.IntelPerformanceQuery.PerfqueryCounterDataUint32Intel; - var _PerfqueryCounterDataUint64Intel = OpenTK.Graphics.OpenGL.IntelPerformanceQuery.PerfqueryCounterDataUint64Intel; - var _PerfqueryCounterDataFloatIntel = OpenTK.Graphics.OpenGL.IntelPerformanceQuery.PerfqueryCounterDataFloatIntel; - var _PerfqueryCounterDataDoubleIntel = OpenTK.Graphics.OpenGL.IntelPerformanceQuery.PerfqueryCounterDataDoubleIntel; - var _PerfqueryCounterDataBool32Intel = OpenTK.Graphics.OpenGL.IntelPerformanceQuery.PerfqueryCounterDataBool32Intel; - var _PerfqueryQueryNameLengthMaxIntel = OpenTK.Graphics.OpenGL.IntelPerformanceQuery.PerfqueryQueryNameLengthMaxIntel; - var _PerfqueryCounterNameLengthMaxIntel = OpenTK.Graphics.OpenGL.IntelPerformanceQuery.PerfqueryCounterNameLengthMaxIntel; - var _PerfqueryCounterDescLengthMaxIntel = OpenTK.Graphics.OpenGL.IntelPerformanceQuery.PerfqueryCounterDescLengthMaxIntel; - var _PerfqueryGpaExtendedCountersIntel = OpenTK.Graphics.OpenGL.IntelPerformanceQuery.PerfqueryGpaExtendedCountersIntel; -} -static void Test_InterleavedArrayFormat_19758() { - var _V2f = OpenTK.Graphics.OpenGL.InterleavedArrayFormat.V2f; - var _V3f = OpenTK.Graphics.OpenGL.InterleavedArrayFormat.V3f; - var _C4ubV2f = OpenTK.Graphics.OpenGL.InterleavedArrayFormat.C4ubV2f; - var _C4ubV3f = OpenTK.Graphics.OpenGL.InterleavedArrayFormat.C4ubV3f; - var _C3fV3f = OpenTK.Graphics.OpenGL.InterleavedArrayFormat.C3fV3f; - var _N3fV3f = OpenTK.Graphics.OpenGL.InterleavedArrayFormat.N3fV3f; - var _C4fN3fV3f = OpenTK.Graphics.OpenGL.InterleavedArrayFormat.C4fN3fV3f; - var _T2fV3f = OpenTK.Graphics.OpenGL.InterleavedArrayFormat.T2fV3f; - var _T4fV4f = OpenTK.Graphics.OpenGL.InterleavedArrayFormat.T4fV4f; - var _T2fC4ubV3f = OpenTK.Graphics.OpenGL.InterleavedArrayFormat.T2fC4ubV3f; - var _T2fC3fV3f = OpenTK.Graphics.OpenGL.InterleavedArrayFormat.T2fC3fV3f; - var _T2fN3fV3f = OpenTK.Graphics.OpenGL.InterleavedArrayFormat.T2fN3fV3f; - var _T2fC4fN3fV3f = OpenTK.Graphics.OpenGL.InterleavedArrayFormat.T2fC4fN3fV3f; - var _T4fC4fN3fV4f = OpenTK.Graphics.OpenGL.InterleavedArrayFormat.T4fC4fN3fV4f; -} -static void Test_InternalFormat_19759() { - var _R3G3B2 = OpenTK.Graphics.OpenGL.InternalFormat.R3G3B2; - var _Alpha4 = OpenTK.Graphics.OpenGL.InternalFormat.Alpha4; - var _Alpha8 = OpenTK.Graphics.OpenGL.InternalFormat.Alpha8; - var _Alpha12 = OpenTK.Graphics.OpenGL.InternalFormat.Alpha12; - var _Alpha16 = OpenTK.Graphics.OpenGL.InternalFormat.Alpha16; - var _Luminance4 = OpenTK.Graphics.OpenGL.InternalFormat.Luminance4; - var _Luminance8 = OpenTK.Graphics.OpenGL.InternalFormat.Luminance8; - var _Luminance12 = OpenTK.Graphics.OpenGL.InternalFormat.Luminance12; - var _Luminance16 = OpenTK.Graphics.OpenGL.InternalFormat.Luminance16; - var _Luminance4Alpha4 = OpenTK.Graphics.OpenGL.InternalFormat.Luminance4Alpha4; - var _Luminance6Alpha2 = OpenTK.Graphics.OpenGL.InternalFormat.Luminance6Alpha2; - var _Luminance8Alpha8 = OpenTK.Graphics.OpenGL.InternalFormat.Luminance8Alpha8; - var _Luminance12Alpha4 = OpenTK.Graphics.OpenGL.InternalFormat.Luminance12Alpha4; - var _Luminance12Alpha12 = OpenTK.Graphics.OpenGL.InternalFormat.Luminance12Alpha12; - var _Luminance16Alpha16 = OpenTK.Graphics.OpenGL.InternalFormat.Luminance16Alpha16; - var _Intensity = OpenTK.Graphics.OpenGL.InternalFormat.Intensity; - var _Intensity4 = OpenTK.Graphics.OpenGL.InternalFormat.Intensity4; - var _Intensity8 = OpenTK.Graphics.OpenGL.InternalFormat.Intensity8; - var _Intensity12 = OpenTK.Graphics.OpenGL.InternalFormat.Intensity12; - var _Intensity16 = OpenTK.Graphics.OpenGL.InternalFormat.Intensity16; - var _Rgb2Ext = OpenTK.Graphics.OpenGL.InternalFormat.Rgb2Ext; - var _Rgb4 = OpenTK.Graphics.OpenGL.InternalFormat.Rgb4; - var _Rgb5 = OpenTK.Graphics.OpenGL.InternalFormat.Rgb5; - var _Rgb8 = OpenTK.Graphics.OpenGL.InternalFormat.Rgb8; - var _Rgb10 = OpenTK.Graphics.OpenGL.InternalFormat.Rgb10; - var _Rgb12 = OpenTK.Graphics.OpenGL.InternalFormat.Rgb12; - var _Rgb16 = OpenTK.Graphics.OpenGL.InternalFormat.Rgb16; - var _Rgba2 = OpenTK.Graphics.OpenGL.InternalFormat.Rgba2; - var _Rgba4 = OpenTK.Graphics.OpenGL.InternalFormat.Rgba4; - var _Rgb5A1 = OpenTK.Graphics.OpenGL.InternalFormat.Rgb5A1; - var _Rgba8 = OpenTK.Graphics.OpenGL.InternalFormat.Rgba8; - var _Rgb10A2 = OpenTK.Graphics.OpenGL.InternalFormat.Rgb10A2; - var _Rgba12 = OpenTK.Graphics.OpenGL.InternalFormat.Rgba12; - var _Rgba16 = OpenTK.Graphics.OpenGL.InternalFormat.Rgba16; - var _DualAlpha4Sgis = OpenTK.Graphics.OpenGL.InternalFormat.DualAlpha4Sgis; - var _DualAlpha8Sgis = OpenTK.Graphics.OpenGL.InternalFormat.DualAlpha8Sgis; - var _DualAlpha12Sgis = OpenTK.Graphics.OpenGL.InternalFormat.DualAlpha12Sgis; - var _DualAlpha16Sgis = OpenTK.Graphics.OpenGL.InternalFormat.DualAlpha16Sgis; - var _DualLuminance4Sgis = OpenTK.Graphics.OpenGL.InternalFormat.DualLuminance4Sgis; - var _DualLuminance8Sgis = OpenTK.Graphics.OpenGL.InternalFormat.DualLuminance8Sgis; - var _DualLuminance12Sgis = OpenTK.Graphics.OpenGL.InternalFormat.DualLuminance12Sgis; - var _DualLuminance16Sgis = OpenTK.Graphics.OpenGL.InternalFormat.DualLuminance16Sgis; - var _DualIntensity4Sgis = OpenTK.Graphics.OpenGL.InternalFormat.DualIntensity4Sgis; - var _DualIntensity8Sgis = OpenTK.Graphics.OpenGL.InternalFormat.DualIntensity8Sgis; - var _DualIntensity12Sgis = OpenTK.Graphics.OpenGL.InternalFormat.DualIntensity12Sgis; - var _DualIntensity16Sgis = OpenTK.Graphics.OpenGL.InternalFormat.DualIntensity16Sgis; - var _DualLuminanceAlpha4Sgis = OpenTK.Graphics.OpenGL.InternalFormat.DualLuminanceAlpha4Sgis; - var _DualLuminanceAlpha8Sgis = OpenTK.Graphics.OpenGL.InternalFormat.DualLuminanceAlpha8Sgis; - var _QuadAlpha4Sgis = OpenTK.Graphics.OpenGL.InternalFormat.QuadAlpha4Sgis; - var _QuadAlpha8Sgis = OpenTK.Graphics.OpenGL.InternalFormat.QuadAlpha8Sgis; - var _QuadLuminance4Sgis = OpenTK.Graphics.OpenGL.InternalFormat.QuadLuminance4Sgis; - var _QuadLuminance8Sgis = OpenTK.Graphics.OpenGL.InternalFormat.QuadLuminance8Sgis; - var _QuadIntensity4Sgis = OpenTK.Graphics.OpenGL.InternalFormat.QuadIntensity4Sgis; - var _QuadIntensity8Sgis = OpenTK.Graphics.OpenGL.InternalFormat.QuadIntensity8Sgis; - var _DepthComponent16Sgix = OpenTK.Graphics.OpenGL.InternalFormat.DepthComponent16Sgix; - var _DepthComponent24Sgix = OpenTK.Graphics.OpenGL.InternalFormat.DepthComponent24Sgix; - var _DepthComponent32Sgix = OpenTK.Graphics.OpenGL.InternalFormat.DepthComponent32Sgix; -} -static void Test_InternalFormatParameter_19760() { - var _Samples = OpenTK.Graphics.OpenGL.InternalFormatParameter.Samples; - var _InternalformatSupported = OpenTK.Graphics.OpenGL.InternalFormatParameter.InternalformatSupported; - var _InternalformatPreferred = OpenTK.Graphics.OpenGL.InternalFormatParameter.InternalformatPreferred; - var _InternalformatRedSize = OpenTK.Graphics.OpenGL.InternalFormatParameter.InternalformatRedSize; - var _InternalformatGreenSize = OpenTK.Graphics.OpenGL.InternalFormatParameter.InternalformatGreenSize; - var _InternalformatBlueSize = OpenTK.Graphics.OpenGL.InternalFormatParameter.InternalformatBlueSize; - var _InternalformatAlphaSize = OpenTK.Graphics.OpenGL.InternalFormatParameter.InternalformatAlphaSize; - var _InternalformatDepthSize = OpenTK.Graphics.OpenGL.InternalFormatParameter.InternalformatDepthSize; - var _InternalformatStencilSize = OpenTK.Graphics.OpenGL.InternalFormatParameter.InternalformatStencilSize; - var _InternalformatSharedSize = OpenTK.Graphics.OpenGL.InternalFormatParameter.InternalformatSharedSize; - var _InternalformatRedType = OpenTK.Graphics.OpenGL.InternalFormatParameter.InternalformatRedType; - var _InternalformatGreenType = OpenTK.Graphics.OpenGL.InternalFormatParameter.InternalformatGreenType; - var _InternalformatBlueType = OpenTK.Graphics.OpenGL.InternalFormatParameter.InternalformatBlueType; - var _InternalformatAlphaType = OpenTK.Graphics.OpenGL.InternalFormatParameter.InternalformatAlphaType; - var _InternalformatDepthType = OpenTK.Graphics.OpenGL.InternalFormatParameter.InternalformatDepthType; - var _InternalformatStencilType = OpenTK.Graphics.OpenGL.InternalFormatParameter.InternalformatStencilType; - var _MaxWidth = OpenTK.Graphics.OpenGL.InternalFormatParameter.MaxWidth; - var _MaxHeight = OpenTK.Graphics.OpenGL.InternalFormatParameter.MaxHeight; - var _MaxDepth = OpenTK.Graphics.OpenGL.InternalFormatParameter.MaxDepth; - var _MaxLayers = OpenTK.Graphics.OpenGL.InternalFormatParameter.MaxLayers; - var _MaxCombinedDimensions = OpenTK.Graphics.OpenGL.InternalFormatParameter.MaxCombinedDimensions; - var _ColorComponents = OpenTK.Graphics.OpenGL.InternalFormatParameter.ColorComponents; - var _DepthComponents = OpenTK.Graphics.OpenGL.InternalFormatParameter.DepthComponents; - var _StencilComponents = OpenTK.Graphics.OpenGL.InternalFormatParameter.StencilComponents; - var _ColorRenderable = OpenTK.Graphics.OpenGL.InternalFormatParameter.ColorRenderable; - var _DepthRenderable = OpenTK.Graphics.OpenGL.InternalFormatParameter.DepthRenderable; - var _StencilRenderable = OpenTK.Graphics.OpenGL.InternalFormatParameter.StencilRenderable; - var _FramebufferRenderable = OpenTK.Graphics.OpenGL.InternalFormatParameter.FramebufferRenderable; - var _FramebufferRenderableLayered = OpenTK.Graphics.OpenGL.InternalFormatParameter.FramebufferRenderableLayered; - var _FramebufferBlend = OpenTK.Graphics.OpenGL.InternalFormatParameter.FramebufferBlend; - var _ReadPixelsFormat = OpenTK.Graphics.OpenGL.InternalFormatParameter.ReadPixelsFormat; - var _ReadPixelsType = OpenTK.Graphics.OpenGL.InternalFormatParameter.ReadPixelsType; - var _TextureImageFormat = OpenTK.Graphics.OpenGL.InternalFormatParameter.TextureImageFormat; - var _TextureImageType = OpenTK.Graphics.OpenGL.InternalFormatParameter.TextureImageType; - var _GetTextureImageFormat = OpenTK.Graphics.OpenGL.InternalFormatParameter.GetTextureImageFormat; - var _GetTextureImageType = OpenTK.Graphics.OpenGL.InternalFormatParameter.GetTextureImageType; - var _Mipmap = OpenTK.Graphics.OpenGL.InternalFormatParameter.Mipmap; - var _ManualGenerateMipmap = OpenTK.Graphics.OpenGL.InternalFormatParameter.ManualGenerateMipmap; - var _ColorEncoding = OpenTK.Graphics.OpenGL.InternalFormatParameter.ColorEncoding; - var _SrgbRead = OpenTK.Graphics.OpenGL.InternalFormatParameter.SrgbRead; - var _SrgbWrite = OpenTK.Graphics.OpenGL.InternalFormatParameter.SrgbWrite; - var _Filter = OpenTK.Graphics.OpenGL.InternalFormatParameter.Filter; - var _VertexTexture = OpenTK.Graphics.OpenGL.InternalFormatParameter.VertexTexture; - var _TessControlTexture = OpenTK.Graphics.OpenGL.InternalFormatParameter.TessControlTexture; - var _TessEvaluationTexture = OpenTK.Graphics.OpenGL.InternalFormatParameter.TessEvaluationTexture; - var _GeometryTexture = OpenTK.Graphics.OpenGL.InternalFormatParameter.GeometryTexture; - var _FragmentTexture = OpenTK.Graphics.OpenGL.InternalFormatParameter.FragmentTexture; - var _ComputeTexture = OpenTK.Graphics.OpenGL.InternalFormatParameter.ComputeTexture; - var _TextureShadow = OpenTK.Graphics.OpenGL.InternalFormatParameter.TextureShadow; - var _TextureGather = OpenTK.Graphics.OpenGL.InternalFormatParameter.TextureGather; - var _TextureGatherShadow = OpenTK.Graphics.OpenGL.InternalFormatParameter.TextureGatherShadow; - var _ShaderImageLoad = OpenTK.Graphics.OpenGL.InternalFormatParameter.ShaderImageLoad; - var _ShaderImageStore = OpenTK.Graphics.OpenGL.InternalFormatParameter.ShaderImageStore; - var _ShaderImageAtomic = OpenTK.Graphics.OpenGL.InternalFormatParameter.ShaderImageAtomic; - var _ImageTexelSize = OpenTK.Graphics.OpenGL.InternalFormatParameter.ImageTexelSize; - var _ImageCompatibilityClass = OpenTK.Graphics.OpenGL.InternalFormatParameter.ImageCompatibilityClass; - var _ImagePixelFormat = OpenTK.Graphics.OpenGL.InternalFormatParameter.ImagePixelFormat; - var _ImagePixelType = OpenTK.Graphics.OpenGL.InternalFormatParameter.ImagePixelType; - var _SimultaneousTextureAndDepthTest = OpenTK.Graphics.OpenGL.InternalFormatParameter.SimultaneousTextureAndDepthTest; - var _SimultaneousTextureAndStencilTest = OpenTK.Graphics.OpenGL.InternalFormatParameter.SimultaneousTextureAndStencilTest; - var _SimultaneousTextureAndStencilWrite = OpenTK.Graphics.OpenGL.InternalFormatParameter.SimultaneousTextureAndStencilWrite; - var _TextureCompressedBlockWidth = OpenTK.Graphics.OpenGL.InternalFormatParameter.TextureCompressedBlockWidth; - var _TextureCompressedBlockHeight = OpenTK.Graphics.OpenGL.InternalFormatParameter.TextureCompressedBlockHeight; - var _TextureCompressedBlockSize = OpenTK.Graphics.OpenGL.InternalFormatParameter.TextureCompressedBlockSize; - var _ClearBuffer = OpenTK.Graphics.OpenGL.InternalFormatParameter.ClearBuffer; - var _TextureView = OpenTK.Graphics.OpenGL.InternalFormatParameter.TextureView; - var _ViewCompatibilityClass = OpenTK.Graphics.OpenGL.InternalFormatParameter.ViewCompatibilityClass; - var _TextureCompressed = OpenTK.Graphics.OpenGL.InternalFormatParameter.TextureCompressed; - var _ImageFormatCompatibilityType = OpenTK.Graphics.OpenGL.InternalFormatParameter.ImageFormatCompatibilityType; - var _ClearTexture = OpenTK.Graphics.OpenGL.InternalFormatParameter.ClearTexture; - var _NumSampleCounts = OpenTK.Graphics.OpenGL.InternalFormatParameter.NumSampleCounts; -} -static void Test_KhrDebug_19761() { - var _ContextFlagDebugBit = OpenTK.Graphics.OpenGL.KhrDebug.ContextFlagDebugBit; - var _ContextFlagDebugBitKhr = OpenTK.Graphics.OpenGL.KhrDebug.ContextFlagDebugBitKhr; - var _StackOverflow = OpenTK.Graphics.OpenGL.KhrDebug.StackOverflow; - var _StackOverflowKhr = OpenTK.Graphics.OpenGL.KhrDebug.StackOverflowKhr; - var _StackUnderflow = OpenTK.Graphics.OpenGL.KhrDebug.StackUnderflow; - var _StackUnderflowKhr = OpenTK.Graphics.OpenGL.KhrDebug.StackUnderflowKhr; - var _VertexArray = OpenTK.Graphics.OpenGL.KhrDebug.VertexArray; - var _VertexArrayKhr = OpenTK.Graphics.OpenGL.KhrDebug.VertexArrayKhr; - var _DebugOutputSynchronous = OpenTK.Graphics.OpenGL.KhrDebug.DebugOutputSynchronous; - var _DebugOutputSynchronousKhr = OpenTK.Graphics.OpenGL.KhrDebug.DebugOutputSynchronousKhr; - var _DebugNextLoggedMessageLength = OpenTK.Graphics.OpenGL.KhrDebug.DebugNextLoggedMessageLength; - var _DebugNextLoggedMessageLengthKhr = OpenTK.Graphics.OpenGL.KhrDebug.DebugNextLoggedMessageLengthKhr; - var _DebugCallbackFunction = OpenTK.Graphics.OpenGL.KhrDebug.DebugCallbackFunction; - var _DebugCallbackFunctionKhr = OpenTK.Graphics.OpenGL.KhrDebug.DebugCallbackFunctionKhr; - var _DebugCallbackUserParam = OpenTK.Graphics.OpenGL.KhrDebug.DebugCallbackUserParam; - var _DebugCallbackUserParamKhr = OpenTK.Graphics.OpenGL.KhrDebug.DebugCallbackUserParamKhr; - var _DebugSourceApi = OpenTK.Graphics.OpenGL.KhrDebug.DebugSourceApi; - var _DebugSourceApiKhr = OpenTK.Graphics.OpenGL.KhrDebug.DebugSourceApiKhr; - var _DebugSourceWindowSystem = OpenTK.Graphics.OpenGL.KhrDebug.DebugSourceWindowSystem; - var _DebugSourceWindowSystemKhr = OpenTK.Graphics.OpenGL.KhrDebug.DebugSourceWindowSystemKhr; - var _DebugSourceShaderCompiler = OpenTK.Graphics.OpenGL.KhrDebug.DebugSourceShaderCompiler; - var _DebugSourceShaderCompilerKhr = OpenTK.Graphics.OpenGL.KhrDebug.DebugSourceShaderCompilerKhr; - var _DebugSourceThirdParty = OpenTK.Graphics.OpenGL.KhrDebug.DebugSourceThirdParty; - var _DebugSourceThirdPartyKhr = OpenTK.Graphics.OpenGL.KhrDebug.DebugSourceThirdPartyKhr; - var _DebugSourceApplication = OpenTK.Graphics.OpenGL.KhrDebug.DebugSourceApplication; - var _DebugSourceApplicationKhr = OpenTK.Graphics.OpenGL.KhrDebug.DebugSourceApplicationKhr; - var _DebugSourceOther = OpenTK.Graphics.OpenGL.KhrDebug.DebugSourceOther; - var _DebugSourceOtherKhr = OpenTK.Graphics.OpenGL.KhrDebug.DebugSourceOtherKhr; - var _DebugTypeError = OpenTK.Graphics.OpenGL.KhrDebug.DebugTypeError; - var _DebugTypeErrorKhr = OpenTK.Graphics.OpenGL.KhrDebug.DebugTypeErrorKhr; - var _DebugTypeDeprecatedBehavior = OpenTK.Graphics.OpenGL.KhrDebug.DebugTypeDeprecatedBehavior; - var _DebugTypeDeprecatedBehaviorKhr = OpenTK.Graphics.OpenGL.KhrDebug.DebugTypeDeprecatedBehaviorKhr; - var _DebugTypeUndefinedBehavior = OpenTK.Graphics.OpenGL.KhrDebug.DebugTypeUndefinedBehavior; - var _DebugTypeUndefinedBehaviorKhr = OpenTK.Graphics.OpenGL.KhrDebug.DebugTypeUndefinedBehaviorKhr; - var _DebugTypePortability = OpenTK.Graphics.OpenGL.KhrDebug.DebugTypePortability; - var _DebugTypePortabilityKhr = OpenTK.Graphics.OpenGL.KhrDebug.DebugTypePortabilityKhr; - var _DebugTypePerformance = OpenTK.Graphics.OpenGL.KhrDebug.DebugTypePerformance; - var _DebugTypePerformanceKhr = OpenTK.Graphics.OpenGL.KhrDebug.DebugTypePerformanceKhr; - var _DebugTypeOther = OpenTK.Graphics.OpenGL.KhrDebug.DebugTypeOther; - var _DebugTypeOtherKhr = OpenTK.Graphics.OpenGL.KhrDebug.DebugTypeOtherKhr; - var _DebugTypeMarker = OpenTK.Graphics.OpenGL.KhrDebug.DebugTypeMarker; - var _DebugTypeMarkerKhr = OpenTK.Graphics.OpenGL.KhrDebug.DebugTypeMarkerKhr; - var _DebugTypePushGroup = OpenTK.Graphics.OpenGL.KhrDebug.DebugTypePushGroup; - var _DebugTypePushGroupKhr = OpenTK.Graphics.OpenGL.KhrDebug.DebugTypePushGroupKhr; - var _DebugTypePopGroup = OpenTK.Graphics.OpenGL.KhrDebug.DebugTypePopGroup; - var _DebugTypePopGroupKhr = OpenTK.Graphics.OpenGL.KhrDebug.DebugTypePopGroupKhr; - var _DebugSeverityNotification = OpenTK.Graphics.OpenGL.KhrDebug.DebugSeverityNotification; - var _DebugSeverityNotificationKhr = OpenTK.Graphics.OpenGL.KhrDebug.DebugSeverityNotificationKhr; - var _MaxDebugGroupStackDepth = OpenTK.Graphics.OpenGL.KhrDebug.MaxDebugGroupStackDepth; - var _MaxDebugGroupStackDepthKhr = OpenTK.Graphics.OpenGL.KhrDebug.MaxDebugGroupStackDepthKhr; - var _DebugGroupStackDepth = OpenTK.Graphics.OpenGL.KhrDebug.DebugGroupStackDepth; - var _DebugGroupStackDepthKhr = OpenTK.Graphics.OpenGL.KhrDebug.DebugGroupStackDepthKhr; - var _Buffer = OpenTK.Graphics.OpenGL.KhrDebug.Buffer; - var _BufferKhr = OpenTK.Graphics.OpenGL.KhrDebug.BufferKhr; - var _Shader = OpenTK.Graphics.OpenGL.KhrDebug.Shader; - var _ShaderKhr = OpenTK.Graphics.OpenGL.KhrDebug.ShaderKhr; - var _Program = OpenTK.Graphics.OpenGL.KhrDebug.Program; - var _ProgramKhr = OpenTK.Graphics.OpenGL.KhrDebug.ProgramKhr; - var _Query = OpenTK.Graphics.OpenGL.KhrDebug.Query; - var _QueryKhr = OpenTK.Graphics.OpenGL.KhrDebug.QueryKhr; - var _ProgramPipeline = OpenTK.Graphics.OpenGL.KhrDebug.ProgramPipeline; - var _Sampler = OpenTK.Graphics.OpenGL.KhrDebug.Sampler; - var _SamplerKhr = OpenTK.Graphics.OpenGL.KhrDebug.SamplerKhr; - var _DisplayList = OpenTK.Graphics.OpenGL.KhrDebug.DisplayList; - var _MaxLabelLength = OpenTK.Graphics.OpenGL.KhrDebug.MaxLabelLength; - var _MaxLabelLengthKhr = OpenTK.Graphics.OpenGL.KhrDebug.MaxLabelLengthKhr; - var _MaxDebugMessageLength = OpenTK.Graphics.OpenGL.KhrDebug.MaxDebugMessageLength; - var _MaxDebugMessageLengthKhr = OpenTK.Graphics.OpenGL.KhrDebug.MaxDebugMessageLengthKhr; - var _MaxDebugLoggedMessages = OpenTK.Graphics.OpenGL.KhrDebug.MaxDebugLoggedMessages; - var _MaxDebugLoggedMessagesKhr = OpenTK.Graphics.OpenGL.KhrDebug.MaxDebugLoggedMessagesKhr; - var _DebugLoggedMessages = OpenTK.Graphics.OpenGL.KhrDebug.DebugLoggedMessages; - var _DebugLoggedMessagesKhr = OpenTK.Graphics.OpenGL.KhrDebug.DebugLoggedMessagesKhr; - var _DebugSeverityHigh = OpenTK.Graphics.OpenGL.KhrDebug.DebugSeverityHigh; - var _DebugSeverityHighKhr = OpenTK.Graphics.OpenGL.KhrDebug.DebugSeverityHighKhr; - var _DebugSeverityMedium = OpenTK.Graphics.OpenGL.KhrDebug.DebugSeverityMedium; - var _DebugSeverityMediumKhr = OpenTK.Graphics.OpenGL.KhrDebug.DebugSeverityMediumKhr; - var _DebugSeverityLow = OpenTK.Graphics.OpenGL.KhrDebug.DebugSeverityLow; - var _DebugSeverityLowKhr = OpenTK.Graphics.OpenGL.KhrDebug.DebugSeverityLowKhr; - var _DebugOutput = OpenTK.Graphics.OpenGL.KhrDebug.DebugOutput; - var _DebugOutputKhr = OpenTK.Graphics.OpenGL.KhrDebug.DebugOutputKhr; -} -static void Test_KhrTextureCompressionAstcHdr_19762() { - var _CompressedRgbaAstc4X4Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcHdr.CompressedRgbaAstc4X4Khr; - var _CompressedRgbaAstc5X4Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcHdr.CompressedRgbaAstc5X4Khr; - var _CompressedRgbaAstc5X5Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcHdr.CompressedRgbaAstc5X5Khr; - var _CompressedRgbaAstc6X5Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcHdr.CompressedRgbaAstc6X5Khr; - var _CompressedRgbaAstc6X6Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcHdr.CompressedRgbaAstc6X6Khr; - var _CompressedRgbaAstc8X5Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcHdr.CompressedRgbaAstc8X5Khr; - var _CompressedRgbaAstc8X6Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcHdr.CompressedRgbaAstc8X6Khr; - var _CompressedRgbaAstc8X8Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcHdr.CompressedRgbaAstc8X8Khr; - var _CompressedRgbaAstc10X5Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcHdr.CompressedRgbaAstc10X5Khr; - var _CompressedRgbaAstc10X6Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcHdr.CompressedRgbaAstc10X6Khr; - var _CompressedRgbaAstc10X8Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcHdr.CompressedRgbaAstc10X8Khr; - var _CompressedRgbaAstc10X10Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcHdr.CompressedRgbaAstc10X10Khr; - var _CompressedRgbaAstc12X10Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcHdr.CompressedRgbaAstc12X10Khr; - var _CompressedRgbaAstc12X12Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcHdr.CompressedRgbaAstc12X12Khr; - var _CompressedSrgb8Alpha8Astc4X4Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc4X4Khr; - var _CompressedSrgb8Alpha8Astc5X4Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc5X4Khr; - var _CompressedSrgb8Alpha8Astc5X5Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc5X5Khr; - var _CompressedSrgb8Alpha8Astc6X5Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc6X5Khr; - var _CompressedSrgb8Alpha8Astc6X6Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc6X6Khr; - var _CompressedSrgb8Alpha8Astc8X5Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc8X5Khr; - var _CompressedSrgb8Alpha8Astc8X6Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc8X6Khr; - var _CompressedSrgb8Alpha8Astc8X8Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc8X8Khr; - var _CompressedSrgb8Alpha8Astc10X5Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc10X5Khr; - var _CompressedSrgb8Alpha8Astc10X6Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc10X6Khr; - var _CompressedSrgb8Alpha8Astc10X8Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc10X8Khr; - var _CompressedSrgb8Alpha8Astc10X10Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc10X10Khr; - var _CompressedSrgb8Alpha8Astc12X10Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc12X10Khr; - var _CompressedSrgb8Alpha8Astc12X12Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc12X12Khr; -} -static void Test_KhrTextureCompressionAstcLdr_19763() { - var _CompressedRgbaAstc4X4Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcLdr.CompressedRgbaAstc4X4Khr; - var _CompressedRgbaAstc5X4Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcLdr.CompressedRgbaAstc5X4Khr; - var _CompressedRgbaAstc5X5Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcLdr.CompressedRgbaAstc5X5Khr; - var _CompressedRgbaAstc6X5Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcLdr.CompressedRgbaAstc6X5Khr; - var _CompressedRgbaAstc6X6Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcLdr.CompressedRgbaAstc6X6Khr; - var _CompressedRgbaAstc8X5Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcLdr.CompressedRgbaAstc8X5Khr; - var _CompressedRgbaAstc8X6Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcLdr.CompressedRgbaAstc8X6Khr; - var _CompressedRgbaAstc8X8Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcLdr.CompressedRgbaAstc8X8Khr; - var _CompressedRgbaAstc10X5Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcLdr.CompressedRgbaAstc10X5Khr; - var _CompressedRgbaAstc10X6Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcLdr.CompressedRgbaAstc10X6Khr; - var _CompressedRgbaAstc10X8Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcLdr.CompressedRgbaAstc10X8Khr; - var _CompressedRgbaAstc10X10Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcLdr.CompressedRgbaAstc10X10Khr; - var _CompressedRgbaAstc12X10Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcLdr.CompressedRgbaAstc12X10Khr; - var _CompressedRgbaAstc12X12Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcLdr.CompressedRgbaAstc12X12Khr; - var _CompressedSrgb8Alpha8Astc4X4Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc4X4Khr; - var _CompressedSrgb8Alpha8Astc5X4Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc5X4Khr; - var _CompressedSrgb8Alpha8Astc5X5Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc5X5Khr; - var _CompressedSrgb8Alpha8Astc6X5Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc6X5Khr; - var _CompressedSrgb8Alpha8Astc6X6Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc6X6Khr; - var _CompressedSrgb8Alpha8Astc8X5Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc8X5Khr; - var _CompressedSrgb8Alpha8Astc8X6Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc8X6Khr; - var _CompressedSrgb8Alpha8Astc8X8Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc8X8Khr; - var _CompressedSrgb8Alpha8Astc10X5Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc10X5Khr; - var _CompressedSrgb8Alpha8Astc10X6Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc10X6Khr; - var _CompressedSrgb8Alpha8Astc10X8Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc10X8Khr; - var _CompressedSrgb8Alpha8Astc10X10Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc10X10Khr; - var _CompressedSrgb8Alpha8Astc12X10Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc12X10Khr; - var _CompressedSrgb8Alpha8Astc12X12Khr = OpenTK.Graphics.OpenGL.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc12X12Khr; -} -static void Test_LightEnvModeSgix_19764() { - var _Add = OpenTK.Graphics.OpenGL.LightEnvModeSgix.Add; - var _Replace = OpenTK.Graphics.OpenGL.LightEnvModeSgix.Replace; - var _Modulate = OpenTK.Graphics.OpenGL.LightEnvModeSgix.Modulate; -} -static void Test_LightEnvParameterSgix_19765() { - var _LightEnvModeSgix = OpenTK.Graphics.OpenGL.LightEnvParameterSgix.LightEnvModeSgix; -} -static void Test_LightModelColorControl_19766() { - var _SingleColor = OpenTK.Graphics.OpenGL.LightModelColorControl.SingleColor; - var _SingleColorExt = OpenTK.Graphics.OpenGL.LightModelColorControl.SingleColorExt; - var _SeparateSpecularColor = OpenTK.Graphics.OpenGL.LightModelColorControl.SeparateSpecularColor; - var _SeparateSpecularColorExt = OpenTK.Graphics.OpenGL.LightModelColorControl.SeparateSpecularColorExt; -} -static void Test_LightModelParameter_19767() { - var _LightModelLocalViewer = OpenTK.Graphics.OpenGL.LightModelParameter.LightModelLocalViewer; - var _LightModelTwoSide = OpenTK.Graphics.OpenGL.LightModelParameter.LightModelTwoSide; - var _LightModelAmbient = OpenTK.Graphics.OpenGL.LightModelParameter.LightModelAmbient; - var _LightModelColorControl = OpenTK.Graphics.OpenGL.LightModelParameter.LightModelColorControl; - var _LightModelColorControlExt = OpenTK.Graphics.OpenGL.LightModelParameter.LightModelColorControlExt; -} -static void Test_LightName_19768() { - var _Light0 = OpenTK.Graphics.OpenGL.LightName.Light0; - var _Light1 = OpenTK.Graphics.OpenGL.LightName.Light1; - var _Light2 = OpenTK.Graphics.OpenGL.LightName.Light2; - var _Light3 = OpenTK.Graphics.OpenGL.LightName.Light3; - var _Light4 = OpenTK.Graphics.OpenGL.LightName.Light4; - var _Light5 = OpenTK.Graphics.OpenGL.LightName.Light5; - var _Light6 = OpenTK.Graphics.OpenGL.LightName.Light6; - var _Light7 = OpenTK.Graphics.OpenGL.LightName.Light7; - var _FragmentLight0Sgix = OpenTK.Graphics.OpenGL.LightName.FragmentLight0Sgix; - var _FragmentLight1Sgix = OpenTK.Graphics.OpenGL.LightName.FragmentLight1Sgix; - var _FragmentLight2Sgix = OpenTK.Graphics.OpenGL.LightName.FragmentLight2Sgix; - var _FragmentLight3Sgix = OpenTK.Graphics.OpenGL.LightName.FragmentLight3Sgix; - var _FragmentLight4Sgix = OpenTK.Graphics.OpenGL.LightName.FragmentLight4Sgix; - var _FragmentLight5Sgix = OpenTK.Graphics.OpenGL.LightName.FragmentLight5Sgix; - var _FragmentLight6Sgix = OpenTK.Graphics.OpenGL.LightName.FragmentLight6Sgix; - var _FragmentLight7Sgix = OpenTK.Graphics.OpenGL.LightName.FragmentLight7Sgix; -} -static void Test_LightParameter_19769() { - var _Ambient = OpenTK.Graphics.OpenGL.LightParameter.Ambient; - var _Diffuse = OpenTK.Graphics.OpenGL.LightParameter.Diffuse; - var _Specular = OpenTK.Graphics.OpenGL.LightParameter.Specular; - var _Position = OpenTK.Graphics.OpenGL.LightParameter.Position; - var _SpotDirection = OpenTK.Graphics.OpenGL.LightParameter.SpotDirection; - var _SpotExponent = OpenTK.Graphics.OpenGL.LightParameter.SpotExponent; - var _SpotCutoff = OpenTK.Graphics.OpenGL.LightParameter.SpotCutoff; - var _ConstantAttenuation = OpenTK.Graphics.OpenGL.LightParameter.ConstantAttenuation; - var _LinearAttenuation = OpenTK.Graphics.OpenGL.LightParameter.LinearAttenuation; - var _QuadraticAttenuation = OpenTK.Graphics.OpenGL.LightParameter.QuadraticAttenuation; -} -static void Test_ListMode_19770() { - var _Compile = OpenTK.Graphics.OpenGL.ListMode.Compile; - var _CompileAndExecute = OpenTK.Graphics.OpenGL.ListMode.CompileAndExecute; -} -static void Test_ListNameType_19771() { - var _Byte = OpenTK.Graphics.OpenGL.ListNameType.Byte; - var _UnsignedByte = OpenTK.Graphics.OpenGL.ListNameType.UnsignedByte; - var _Short = OpenTK.Graphics.OpenGL.ListNameType.Short; - var _UnsignedShort = OpenTK.Graphics.OpenGL.ListNameType.UnsignedShort; - var _Int = OpenTK.Graphics.OpenGL.ListNameType.Int; - var _UnsignedInt = OpenTK.Graphics.OpenGL.ListNameType.UnsignedInt; - var _Float = OpenTK.Graphics.OpenGL.ListNameType.Float; - var _Gl2Bytes = OpenTK.Graphics.OpenGL.ListNameType.Gl2Bytes; - var _Gl3Bytes = OpenTK.Graphics.OpenGL.ListNameType.Gl3Bytes; - var _Gl4Bytes = OpenTK.Graphics.OpenGL.ListNameType.Gl4Bytes; -} -static void Test_ListParameterName_19772() { - var _ListPrioritySgix = OpenTK.Graphics.OpenGL.ListParameterName.ListPrioritySgix; -} -static void Test_LogicOp_19773() { - var _Clear = OpenTK.Graphics.OpenGL.LogicOp.Clear; - var _And = OpenTK.Graphics.OpenGL.LogicOp.And; - var _AndReverse = OpenTK.Graphics.OpenGL.LogicOp.AndReverse; - var _Copy = OpenTK.Graphics.OpenGL.LogicOp.Copy; - var _AndInverted = OpenTK.Graphics.OpenGL.LogicOp.AndInverted; - var _Noop = OpenTK.Graphics.OpenGL.LogicOp.Noop; - var _Xor = OpenTK.Graphics.OpenGL.LogicOp.Xor; - var _Or = OpenTK.Graphics.OpenGL.LogicOp.Or; - var _Nor = OpenTK.Graphics.OpenGL.LogicOp.Nor; - var _Equiv = OpenTK.Graphics.OpenGL.LogicOp.Equiv; - var _Invert = OpenTK.Graphics.OpenGL.LogicOp.Invert; - var _OrReverse = OpenTK.Graphics.OpenGL.LogicOp.OrReverse; - var _CopyInverted = OpenTK.Graphics.OpenGL.LogicOp.CopyInverted; - var _OrInverted = OpenTK.Graphics.OpenGL.LogicOp.OrInverted; - var _Nand = OpenTK.Graphics.OpenGL.LogicOp.Nand; - var _Set = OpenTK.Graphics.OpenGL.LogicOp.Set; -} -static void Test_MapBufferUsageMask_19774() { - var _MapReadBit = OpenTK.Graphics.OpenGL.MapBufferUsageMask.MapReadBit; - var _MapReadBitExt = OpenTK.Graphics.OpenGL.MapBufferUsageMask.MapReadBitExt; - var _MapWriteBit = OpenTK.Graphics.OpenGL.MapBufferUsageMask.MapWriteBit; - var _MapWriteBitExt = OpenTK.Graphics.OpenGL.MapBufferUsageMask.MapWriteBitExt; - var _MapInvalidateRangeBit = OpenTK.Graphics.OpenGL.MapBufferUsageMask.MapInvalidateRangeBit; - var _MapInvalidateRangeBitExt = OpenTK.Graphics.OpenGL.MapBufferUsageMask.MapInvalidateRangeBitExt; - var _MapInvalidateBufferBit = OpenTK.Graphics.OpenGL.MapBufferUsageMask.MapInvalidateBufferBit; - var _MapInvalidateBufferBitExt = OpenTK.Graphics.OpenGL.MapBufferUsageMask.MapInvalidateBufferBitExt; - var _MapFlushExplicitBit = OpenTK.Graphics.OpenGL.MapBufferUsageMask.MapFlushExplicitBit; - var _MapFlushExplicitBitExt = OpenTK.Graphics.OpenGL.MapBufferUsageMask.MapFlushExplicitBitExt; - var _MapUnsynchronizedBit = OpenTK.Graphics.OpenGL.MapBufferUsageMask.MapUnsynchronizedBit; - var _MapUnsynchronizedBitExt = OpenTK.Graphics.OpenGL.MapBufferUsageMask.MapUnsynchronizedBitExt; - var _MapPersistentBit = OpenTK.Graphics.OpenGL.MapBufferUsageMask.MapPersistentBit; - var _MapCoherentBit = OpenTK.Graphics.OpenGL.MapBufferUsageMask.MapCoherentBit; - var _DynamicStorageBit = OpenTK.Graphics.OpenGL.MapBufferUsageMask.DynamicStorageBit; - var _ClientStorageBit = OpenTK.Graphics.OpenGL.MapBufferUsageMask.ClientStorageBit; -} -static void Test_MapTarget_19775() { - var _Map1Color4 = OpenTK.Graphics.OpenGL.MapTarget.Map1Color4; - var _Map1Index = OpenTK.Graphics.OpenGL.MapTarget.Map1Index; - var _Map1Normal = OpenTK.Graphics.OpenGL.MapTarget.Map1Normal; - var _Map1TextureCoord1 = OpenTK.Graphics.OpenGL.MapTarget.Map1TextureCoord1; - var _Map1TextureCoord2 = OpenTK.Graphics.OpenGL.MapTarget.Map1TextureCoord2; - var _Map1TextureCoord3 = OpenTK.Graphics.OpenGL.MapTarget.Map1TextureCoord3; - var _Map1TextureCoord4 = OpenTK.Graphics.OpenGL.MapTarget.Map1TextureCoord4; - var _Map1Vertex3 = OpenTK.Graphics.OpenGL.MapTarget.Map1Vertex3; - var _Map1Vertex4 = OpenTK.Graphics.OpenGL.MapTarget.Map1Vertex4; - var _Map2Color4 = OpenTK.Graphics.OpenGL.MapTarget.Map2Color4; - var _Map2Index = OpenTK.Graphics.OpenGL.MapTarget.Map2Index; - var _Map2Normal = OpenTK.Graphics.OpenGL.MapTarget.Map2Normal; - var _Map2TextureCoord1 = OpenTK.Graphics.OpenGL.MapTarget.Map2TextureCoord1; - var _Map2TextureCoord2 = OpenTK.Graphics.OpenGL.MapTarget.Map2TextureCoord2; - var _Map2TextureCoord3 = OpenTK.Graphics.OpenGL.MapTarget.Map2TextureCoord3; - var _Map2TextureCoord4 = OpenTK.Graphics.OpenGL.MapTarget.Map2TextureCoord4; - var _Map2Vertex3 = OpenTK.Graphics.OpenGL.MapTarget.Map2Vertex3; - var _Map2Vertex4 = OpenTK.Graphics.OpenGL.MapTarget.Map2Vertex4; - var _GeometryDeformationSgix = OpenTK.Graphics.OpenGL.MapTarget.GeometryDeformationSgix; - var _TextureDeformationSgix = OpenTK.Graphics.OpenGL.MapTarget.TextureDeformationSgix; -} -static void Test_MapTextureFormatIntel_19776() { - var _LayoutDefaultIntel = OpenTK.Graphics.OpenGL.MapTextureFormatIntel.LayoutDefaultIntel; - var _LayoutLinearIntel = OpenTK.Graphics.OpenGL.MapTextureFormatIntel.LayoutLinearIntel; - var _LayoutLinearCpuCachedIntel = OpenTK.Graphics.OpenGL.MapTextureFormatIntel.LayoutLinearCpuCachedIntel; -} -static void Test_MaterialFace_19777() { - var _Front = OpenTK.Graphics.OpenGL.MaterialFace.Front; - var _Back = OpenTK.Graphics.OpenGL.MaterialFace.Back; - var _FrontAndBack = OpenTK.Graphics.OpenGL.MaterialFace.FrontAndBack; -} -static void Test_MaterialParameter_19778() { - var _Ambient = OpenTK.Graphics.OpenGL.MaterialParameter.Ambient; - var _Diffuse = OpenTK.Graphics.OpenGL.MaterialParameter.Diffuse; - var _Specular = OpenTK.Graphics.OpenGL.MaterialParameter.Specular; - var _Emission = OpenTK.Graphics.OpenGL.MaterialParameter.Emission; - var _Shininess = OpenTK.Graphics.OpenGL.MaterialParameter.Shininess; - var _AmbientAndDiffuse = OpenTK.Graphics.OpenGL.MaterialParameter.AmbientAndDiffuse; - var _ColorIndexes = OpenTK.Graphics.OpenGL.MaterialParameter.ColorIndexes; -} -static void Test_MatrixMode_19779() { - var _Modelview = OpenTK.Graphics.OpenGL.MatrixMode.Modelview; - var _Modelview0Ext = OpenTK.Graphics.OpenGL.MatrixMode.Modelview0Ext; - var _Projection = OpenTK.Graphics.OpenGL.MatrixMode.Projection; - var _Texture = OpenTK.Graphics.OpenGL.MatrixMode.Texture; - var _Color = OpenTK.Graphics.OpenGL.MatrixMode.Color; -} -static void Test_MatrixModeArb_19780() { - var _Modelview = OpenTK.Graphics.OpenGL.MatrixModeArb.Modelview; - var _Projection = OpenTK.Graphics.OpenGL.MatrixModeArb.Projection; - var _Texture = OpenTK.Graphics.OpenGL.MatrixModeArb.Texture; - var _Color = OpenTK.Graphics.OpenGL.MatrixModeArb.Color; - var _Matrix0 = OpenTK.Graphics.OpenGL.MatrixModeArb.Matrix0; - var _Matrix1 = OpenTK.Graphics.OpenGL.MatrixModeArb.Matrix1; - var _Matrix2 = OpenTK.Graphics.OpenGL.MatrixModeArb.Matrix2; - var _Matrix3 = OpenTK.Graphics.OpenGL.MatrixModeArb.Matrix3; - var _Matrix4 = OpenTK.Graphics.OpenGL.MatrixModeArb.Matrix4; - var _Matrix5 = OpenTK.Graphics.OpenGL.MatrixModeArb.Matrix5; - var _Matrix6 = OpenTK.Graphics.OpenGL.MatrixModeArb.Matrix6; - var _Matrix7 = OpenTK.Graphics.OpenGL.MatrixModeArb.Matrix7; - var _Matrix8 = OpenTK.Graphics.OpenGL.MatrixModeArb.Matrix8; - var _Matrix9 = OpenTK.Graphics.OpenGL.MatrixModeArb.Matrix9; - var _Matrix10 = OpenTK.Graphics.OpenGL.MatrixModeArb.Matrix10; - var _Matrix11 = OpenTK.Graphics.OpenGL.MatrixModeArb.Matrix11; - var _Matrix12 = OpenTK.Graphics.OpenGL.MatrixModeArb.Matrix12; - var _Matrix13 = OpenTK.Graphics.OpenGL.MatrixModeArb.Matrix13; - var _Matrix14 = OpenTK.Graphics.OpenGL.MatrixModeArb.Matrix14; - var _Matrix15 = OpenTK.Graphics.OpenGL.MatrixModeArb.Matrix15; - var _Matrix16 = OpenTK.Graphics.OpenGL.MatrixModeArb.Matrix16; - var _Matrix17 = OpenTK.Graphics.OpenGL.MatrixModeArb.Matrix17; - var _Matrix18 = OpenTK.Graphics.OpenGL.MatrixModeArb.Matrix18; - var _Matrix19 = OpenTK.Graphics.OpenGL.MatrixModeArb.Matrix19; - var _Matrix20 = OpenTK.Graphics.OpenGL.MatrixModeArb.Matrix20; - var _Matrix21 = OpenTK.Graphics.OpenGL.MatrixModeArb.Matrix21; - var _Matrix22 = OpenTK.Graphics.OpenGL.MatrixModeArb.Matrix22; - var _Matrix23 = OpenTK.Graphics.OpenGL.MatrixModeArb.Matrix23; - var _Matrix24 = OpenTK.Graphics.OpenGL.MatrixModeArb.Matrix24; - var _Matrix25 = OpenTK.Graphics.OpenGL.MatrixModeArb.Matrix25; - var _Matrix26 = OpenTK.Graphics.OpenGL.MatrixModeArb.Matrix26; - var _Matrix27 = OpenTK.Graphics.OpenGL.MatrixModeArb.Matrix27; - var _Matrix28 = OpenTK.Graphics.OpenGL.MatrixModeArb.Matrix28; - var _Matrix29 = OpenTK.Graphics.OpenGL.MatrixModeArb.Matrix29; - var _Matrix30 = OpenTK.Graphics.OpenGL.MatrixModeArb.Matrix30; - var _Matrix31 = OpenTK.Graphics.OpenGL.MatrixModeArb.Matrix31; -} -static void Test_MemoryBarrierFlags_19781() { - var _VertexAttribArrayBarrierBit = OpenTK.Graphics.OpenGL.MemoryBarrierFlags.VertexAttribArrayBarrierBit; - var _ElementArrayBarrierBit = OpenTK.Graphics.OpenGL.MemoryBarrierFlags.ElementArrayBarrierBit; - var _UniformBarrierBit = OpenTK.Graphics.OpenGL.MemoryBarrierFlags.UniformBarrierBit; - var _TextureFetchBarrierBit = OpenTK.Graphics.OpenGL.MemoryBarrierFlags.TextureFetchBarrierBit; - var _ShaderImageAccessBarrierBit = OpenTK.Graphics.OpenGL.MemoryBarrierFlags.ShaderImageAccessBarrierBit; - var _CommandBarrierBit = OpenTK.Graphics.OpenGL.MemoryBarrierFlags.CommandBarrierBit; - var _PixelBufferBarrierBit = OpenTK.Graphics.OpenGL.MemoryBarrierFlags.PixelBufferBarrierBit; - var _TextureUpdateBarrierBit = OpenTK.Graphics.OpenGL.MemoryBarrierFlags.TextureUpdateBarrierBit; - var _BufferUpdateBarrierBit = OpenTK.Graphics.OpenGL.MemoryBarrierFlags.BufferUpdateBarrierBit; - var _FramebufferBarrierBit = OpenTK.Graphics.OpenGL.MemoryBarrierFlags.FramebufferBarrierBit; - var _TransformFeedbackBarrierBit = OpenTK.Graphics.OpenGL.MemoryBarrierFlags.TransformFeedbackBarrierBit; - var _AtomicCounterBarrierBit = OpenTK.Graphics.OpenGL.MemoryBarrierFlags.AtomicCounterBarrierBit; - var _ShaderStorageBarrierBit = OpenTK.Graphics.OpenGL.MemoryBarrierFlags.ShaderStorageBarrierBit; - var _ClientMappedBufferBarrierBit = OpenTK.Graphics.OpenGL.MemoryBarrierFlags.ClientMappedBufferBarrierBit; - var _QueryBufferBarrierBit = OpenTK.Graphics.OpenGL.MemoryBarrierFlags.QueryBufferBarrierBit; - var _AllBarrierBits = OpenTK.Graphics.OpenGL.MemoryBarrierFlags.AllBarrierBits; -} -static void Test_MemoryBarrierMask_19782() { - var _VertexAttribArrayBarrierBit = OpenTK.Graphics.OpenGL.MemoryBarrierMask.VertexAttribArrayBarrierBit; - var _VertexAttribArrayBarrierBitExt = OpenTK.Graphics.OpenGL.MemoryBarrierMask.VertexAttribArrayBarrierBitExt; - var _ElementArrayBarrierBit = OpenTK.Graphics.OpenGL.MemoryBarrierMask.ElementArrayBarrierBit; - var _ElementArrayBarrierBitExt = OpenTK.Graphics.OpenGL.MemoryBarrierMask.ElementArrayBarrierBitExt; - var _UniformBarrierBit = OpenTK.Graphics.OpenGL.MemoryBarrierMask.UniformBarrierBit; - var _UniformBarrierBitExt = OpenTK.Graphics.OpenGL.MemoryBarrierMask.UniformBarrierBitExt; - var _TextureFetchBarrierBit = OpenTK.Graphics.OpenGL.MemoryBarrierMask.TextureFetchBarrierBit; - var _TextureFetchBarrierBitExt = OpenTK.Graphics.OpenGL.MemoryBarrierMask.TextureFetchBarrierBitExt; - var _ShaderGlobalAccessBarrierBitNv = OpenTK.Graphics.OpenGL.MemoryBarrierMask.ShaderGlobalAccessBarrierBitNv; - var _ShaderImageAccessBarrierBit = OpenTK.Graphics.OpenGL.MemoryBarrierMask.ShaderImageAccessBarrierBit; - var _ShaderImageAccessBarrierBitExt = OpenTK.Graphics.OpenGL.MemoryBarrierMask.ShaderImageAccessBarrierBitExt; - var _CommandBarrierBit = OpenTK.Graphics.OpenGL.MemoryBarrierMask.CommandBarrierBit; - var _CommandBarrierBitExt = OpenTK.Graphics.OpenGL.MemoryBarrierMask.CommandBarrierBitExt; - var _PixelBufferBarrierBit = OpenTK.Graphics.OpenGL.MemoryBarrierMask.PixelBufferBarrierBit; - var _PixelBufferBarrierBitExt = OpenTK.Graphics.OpenGL.MemoryBarrierMask.PixelBufferBarrierBitExt; - var _TextureUpdateBarrierBit = OpenTK.Graphics.OpenGL.MemoryBarrierMask.TextureUpdateBarrierBit; - var _TextureUpdateBarrierBitExt = OpenTK.Graphics.OpenGL.MemoryBarrierMask.TextureUpdateBarrierBitExt; - var _BufferUpdateBarrierBit = OpenTK.Graphics.OpenGL.MemoryBarrierMask.BufferUpdateBarrierBit; - var _BufferUpdateBarrierBitExt = OpenTK.Graphics.OpenGL.MemoryBarrierMask.BufferUpdateBarrierBitExt; - var _FramebufferBarrierBit = OpenTK.Graphics.OpenGL.MemoryBarrierMask.FramebufferBarrierBit; - var _FramebufferBarrierBitExt = OpenTK.Graphics.OpenGL.MemoryBarrierMask.FramebufferBarrierBitExt; - var _TransformFeedbackBarrierBit = OpenTK.Graphics.OpenGL.MemoryBarrierMask.TransformFeedbackBarrierBit; - var _TransformFeedbackBarrierBitExt = OpenTK.Graphics.OpenGL.MemoryBarrierMask.TransformFeedbackBarrierBitExt; - var _AtomicCounterBarrierBit = OpenTK.Graphics.OpenGL.MemoryBarrierMask.AtomicCounterBarrierBit; - var _AtomicCounterBarrierBitExt = OpenTK.Graphics.OpenGL.MemoryBarrierMask.AtomicCounterBarrierBitExt; - var _ShaderStorageBarrierBit = OpenTK.Graphics.OpenGL.MemoryBarrierMask.ShaderStorageBarrierBit; - var _ClientMappedBufferBarrierBit = OpenTK.Graphics.OpenGL.MemoryBarrierMask.ClientMappedBufferBarrierBit; - var _QueryBufferBarrierBit = OpenTK.Graphics.OpenGL.MemoryBarrierMask.QueryBufferBarrierBit; - var _AllBarrierBits = OpenTK.Graphics.OpenGL.MemoryBarrierMask.AllBarrierBits; - var _AllBarrierBitsExt = OpenTK.Graphics.OpenGL.MemoryBarrierMask.AllBarrierBitsExt; -} -static void Test_MesaPackInvert_19783() { - var _PackInvertMesa = OpenTK.Graphics.OpenGL.MesaPackInvert.PackInvertMesa; -} -static void Test_MesaResizeBuffers_19784() { -} -static void Test_MesaWindowPos_19785() { -} -static void Test_MesaxTextureStack_19786() { - var _Texture1DStackMesax = OpenTK.Graphics.OpenGL.MesaxTextureStack.Texture1DStackMesax; - var _Texture2DStackMesax = OpenTK.Graphics.OpenGL.MesaxTextureStack.Texture2DStackMesax; - var _ProxyTexture1DStackMesax = OpenTK.Graphics.OpenGL.MesaxTextureStack.ProxyTexture1DStackMesax; - var _ProxyTexture2DStackMesax = OpenTK.Graphics.OpenGL.MesaxTextureStack.ProxyTexture2DStackMesax; - var _Texture1DStackBindingMesax = OpenTK.Graphics.OpenGL.MesaxTextureStack.Texture1DStackBindingMesax; - var _Texture2DStackBindingMesax = OpenTK.Graphics.OpenGL.MesaxTextureStack.Texture2DStackBindingMesax; -} -static void Test_MesaYcbcrTexture_19787() { - var _UnsignedShort88Mesa = OpenTK.Graphics.OpenGL.MesaYcbcrTexture.UnsignedShort88Mesa; - var _UnsignedShort88RevMesa = OpenTK.Graphics.OpenGL.MesaYcbcrTexture.UnsignedShort88RevMesa; - var _YcbcrMesa = OpenTK.Graphics.OpenGL.MesaYcbcrTexture.YcbcrMesa; -} -static void Test_MeshMode1_19788() { - var _Point = OpenTK.Graphics.OpenGL.MeshMode1.Point; - var _Line = OpenTK.Graphics.OpenGL.MeshMode1.Line; -} -static void Test_MeshMode2_19789() { - var _Point = OpenTK.Graphics.OpenGL.MeshMode2.Point; - var _Line = OpenTK.Graphics.OpenGL.MeshMode2.Line; - var _Fill = OpenTK.Graphics.OpenGL.MeshMode2.Fill; -} -static void Test_MinmaxTarget_19790() { - var _Minmax = OpenTK.Graphics.OpenGL.MinmaxTarget.Minmax; -} -static void Test_MinmaxTargetExt_19791() { - var _Minmax = OpenTK.Graphics.OpenGL.MinmaxTargetExt.Minmax; - var _MinmaxExt = OpenTK.Graphics.OpenGL.MinmaxTargetExt.MinmaxExt; -} -static void Test_NormalPointerType_19792() { - var _Byte = OpenTK.Graphics.OpenGL.NormalPointerType.Byte; - var _Short = OpenTK.Graphics.OpenGL.NormalPointerType.Short; - var _Int = OpenTK.Graphics.OpenGL.NormalPointerType.Int; - var _Float = OpenTK.Graphics.OpenGL.NormalPointerType.Float; - var _Double = OpenTK.Graphics.OpenGL.NormalPointerType.Double; - var _HalfFloat = OpenTK.Graphics.OpenGL.NormalPointerType.HalfFloat; - var _UnsignedInt2101010Rev = OpenTK.Graphics.OpenGL.NormalPointerType.UnsignedInt2101010Rev; - var _Int2101010Rev = OpenTK.Graphics.OpenGL.NormalPointerType.Int2101010Rev; -} -static void Test_NvBindlessMultiDrawIndirect_19793() { -} -static void Test_NvBindlessTexture_19794() { -} -static void Test_NvBlendEquationAdvanced_19795() { - var _Zero = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.Zero; - var _XorNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.XorNv; - var _Invert = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.Invert; - var _RedNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.RedNv; - var _GreenNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.GreenNv; - var _BlueNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.BlueNv; - var _BlendPremultipliedSrcNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.BlendPremultipliedSrcNv; - var _BlendOverlapNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.BlendOverlapNv; - var _UncorrelatedNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.UncorrelatedNv; - var _DisjointNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.DisjointNv; - var _ConjointNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.ConjointNv; - var _SrcNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.SrcNv; - var _DstNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.DstNv; - var _SrcOverNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.SrcOverNv; - var _DstOverNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.DstOverNv; - var _SrcInNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.SrcInNv; - var _DstInNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.DstInNv; - var _SrcOutNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.SrcOutNv; - var _DstOutNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.DstOutNv; - var _SrcAtopNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.SrcAtopNv; - var _DstAtopNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.DstAtopNv; - var _PlusNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.PlusNv; - var _PlusDarkerNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.PlusDarkerNv; - var _MultiplyNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.MultiplyNv; - var _ScreenNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.ScreenNv; - var _OverlayNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.OverlayNv; - var _DarkenNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.DarkenNv; - var _LightenNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.LightenNv; - var _ColordodgeNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.ColordodgeNv; - var _ColorburnNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.ColorburnNv; - var _HardlightNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.HardlightNv; - var _SoftlightNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.SoftlightNv; - var _DifferenceNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.DifferenceNv; - var _MinusNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.MinusNv; - var _ExclusionNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.ExclusionNv; - var _ContrastNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.ContrastNv; - var _InvertRgbNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.InvertRgbNv; - var _LineardodgeNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.LineardodgeNv; - var _LinearburnNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.LinearburnNv; - var _VividlightNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.VividlightNv; - var _LinearlightNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.LinearlightNv; - var _PinlightNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.PinlightNv; - var _HardmixNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.HardmixNv; - var _HslHueNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.HslHueNv; - var _HslSaturationNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.HslSaturationNv; - var _HslColorNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.HslColorNv; - var _HslLuminosityNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.HslLuminosityNv; - var _PlusClampedNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.PlusClampedNv; - var _PlusClampedAlphaNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.PlusClampedAlphaNv; - var _MinusClampedNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.MinusClampedNv; - var _InvertOvgNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced.InvertOvgNv; -} -static void Test_NvBlendEquationAdvancedCoherent_19796() { - var _BlendAdvancedCoherentNv = OpenTK.Graphics.OpenGL.NvBlendEquationAdvancedCoherent.BlendAdvancedCoherentNv; -} -static void Test_NvBlendSquare_19797() { -} -static void Test_NvComputeProgram5_19798() { - var _ComputeProgramNv = OpenTK.Graphics.OpenGL.NvComputeProgram5.ComputeProgramNv; - var _ComputeProgramParameterBufferNv = OpenTK.Graphics.OpenGL.NvComputeProgram5.ComputeProgramParameterBufferNv; -} -static void Test_NvConditionalRender_19799() { - var _QueryWaitNv = OpenTK.Graphics.OpenGL.NvConditionalRender.QueryWaitNv; - var _QueryNoWaitNv = OpenTK.Graphics.OpenGL.NvConditionalRender.QueryNoWaitNv; - var _QueryByRegionWaitNv = OpenTK.Graphics.OpenGL.NvConditionalRender.QueryByRegionWaitNv; - var _QueryByRegionNoWaitNv = OpenTK.Graphics.OpenGL.NvConditionalRender.QueryByRegionNoWaitNv; -} -static void Test_NvCopyDepthToColor_19800() { - var _DepthStencilToRgbaNv = OpenTK.Graphics.OpenGL.NvCopyDepthToColor.DepthStencilToRgbaNv; - var _DepthStencilToBgraNv = OpenTK.Graphics.OpenGL.NvCopyDepthToColor.DepthStencilToBgraNv; -} -static void Test_NvCopyImage_19801() { -} -static void Test_NvDeepTexture3D_19802() { - var _MaxDeep3DTextureWidthHeightNv = OpenTK.Graphics.OpenGL.NvDeepTexture3D.MaxDeep3DTextureWidthHeightNv; - var _MaxDeep3DTextureDepthNv = OpenTK.Graphics.OpenGL.NvDeepTexture3D.MaxDeep3DTextureDepthNv; -} -static void Test_NvDepthBufferFloat_19803() { - var _DepthComponent32fNv = OpenTK.Graphics.OpenGL.NvDepthBufferFloat.DepthComponent32fNv; - var _Depth32fStencil8Nv = OpenTK.Graphics.OpenGL.NvDepthBufferFloat.Depth32fStencil8Nv; - var _Float32UnsignedInt248RevNv = OpenTK.Graphics.OpenGL.NvDepthBufferFloat.Float32UnsignedInt248RevNv; - var _DepthBufferFloatModeNv = OpenTK.Graphics.OpenGL.NvDepthBufferFloat.DepthBufferFloatModeNv; -} -static void Test_NvDepthClamp_19804() { - var _DepthClampNv = OpenTK.Graphics.OpenGL.NvDepthClamp.DepthClampNv; -} -static void Test_NvDrawTexture_19805() { -} -static void Test_NvEvaluators_19806() { - var _Eval2DNv = OpenTK.Graphics.OpenGL.NvEvaluators.Eval2DNv; - var _EvalTriangular2DNv = OpenTK.Graphics.OpenGL.NvEvaluators.EvalTriangular2DNv; - var _MapTessellationNv = OpenTK.Graphics.OpenGL.NvEvaluators.MapTessellationNv; - var _MapAttribUOrderNv = OpenTK.Graphics.OpenGL.NvEvaluators.MapAttribUOrderNv; - var _MapAttribVOrderNv = OpenTK.Graphics.OpenGL.NvEvaluators.MapAttribVOrderNv; - var _EvalFractionalTessellationNv = OpenTK.Graphics.OpenGL.NvEvaluators.EvalFractionalTessellationNv; - var _EvalVertexAttrib0Nv = OpenTK.Graphics.OpenGL.NvEvaluators.EvalVertexAttrib0Nv; - var _EvalVertexAttrib1Nv = OpenTK.Graphics.OpenGL.NvEvaluators.EvalVertexAttrib1Nv; - var _EvalVertexAttrib2Nv = OpenTK.Graphics.OpenGL.NvEvaluators.EvalVertexAttrib2Nv; - var _EvalVertexAttrib3Nv = OpenTK.Graphics.OpenGL.NvEvaluators.EvalVertexAttrib3Nv; - var _EvalVertexAttrib4Nv = OpenTK.Graphics.OpenGL.NvEvaluators.EvalVertexAttrib4Nv; - var _EvalVertexAttrib5Nv = OpenTK.Graphics.OpenGL.NvEvaluators.EvalVertexAttrib5Nv; - var _EvalVertexAttrib6Nv = OpenTK.Graphics.OpenGL.NvEvaluators.EvalVertexAttrib6Nv; - var _EvalVertexAttrib7Nv = OpenTK.Graphics.OpenGL.NvEvaluators.EvalVertexAttrib7Nv; - var _EvalVertexAttrib8Nv = OpenTK.Graphics.OpenGL.NvEvaluators.EvalVertexAttrib8Nv; - var _EvalVertexAttrib9Nv = OpenTK.Graphics.OpenGL.NvEvaluators.EvalVertexAttrib9Nv; - var _EvalVertexAttrib10Nv = OpenTK.Graphics.OpenGL.NvEvaluators.EvalVertexAttrib10Nv; - var _EvalVertexAttrib11Nv = OpenTK.Graphics.OpenGL.NvEvaluators.EvalVertexAttrib11Nv; - var _EvalVertexAttrib12Nv = OpenTK.Graphics.OpenGL.NvEvaluators.EvalVertexAttrib12Nv; - var _EvalVertexAttrib13Nv = OpenTK.Graphics.OpenGL.NvEvaluators.EvalVertexAttrib13Nv; - var _EvalVertexAttrib14Nv = OpenTK.Graphics.OpenGL.NvEvaluators.EvalVertexAttrib14Nv; - var _EvalVertexAttrib15Nv = OpenTK.Graphics.OpenGL.NvEvaluators.EvalVertexAttrib15Nv; - var _MaxMapTessellationNv = OpenTK.Graphics.OpenGL.NvEvaluators.MaxMapTessellationNv; - var _MaxRationalEvalOrderNv = OpenTK.Graphics.OpenGL.NvEvaluators.MaxRationalEvalOrderNv; -} -static void Test_NvExplicitMultisample_19807() { - var _SamplePositionNv = OpenTK.Graphics.OpenGL.NvExplicitMultisample.SamplePositionNv; - var _SampleMaskNv = OpenTK.Graphics.OpenGL.NvExplicitMultisample.SampleMaskNv; - var _SampleMaskValueNv = OpenTK.Graphics.OpenGL.NvExplicitMultisample.SampleMaskValueNv; - var _TextureBindingRenderbufferNv = OpenTK.Graphics.OpenGL.NvExplicitMultisample.TextureBindingRenderbufferNv; - var _TextureRenderbufferDataStoreBindingNv = OpenTK.Graphics.OpenGL.NvExplicitMultisample.TextureRenderbufferDataStoreBindingNv; - var _TextureRenderbufferNv = OpenTK.Graphics.OpenGL.NvExplicitMultisample.TextureRenderbufferNv; - var _SamplerRenderbufferNv = OpenTK.Graphics.OpenGL.NvExplicitMultisample.SamplerRenderbufferNv; - var _IntSamplerRenderbufferNv = OpenTK.Graphics.OpenGL.NvExplicitMultisample.IntSamplerRenderbufferNv; - var _UnsignedIntSamplerRenderbufferNv = OpenTK.Graphics.OpenGL.NvExplicitMultisample.UnsignedIntSamplerRenderbufferNv; - var _MaxSampleMaskWordsNv = OpenTK.Graphics.OpenGL.NvExplicitMultisample.MaxSampleMaskWordsNv; -} -static void Test_NvFence_19808() { - var _AllCompletedNv = OpenTK.Graphics.OpenGL.NvFence.AllCompletedNv; - var _FenceStatusNv = OpenTK.Graphics.OpenGL.NvFence.FenceStatusNv; - var _FenceConditionNv = OpenTK.Graphics.OpenGL.NvFence.FenceConditionNv; -} -static void Test_NvFloatBuffer_19809() { - var _FloatRNv = OpenTK.Graphics.OpenGL.NvFloatBuffer.FloatRNv; - var _FloatRgNv = OpenTK.Graphics.OpenGL.NvFloatBuffer.FloatRgNv; - var _FloatRgbNv = OpenTK.Graphics.OpenGL.NvFloatBuffer.FloatRgbNv; - var _FloatRgbaNv = OpenTK.Graphics.OpenGL.NvFloatBuffer.FloatRgbaNv; - var _FloatR16Nv = OpenTK.Graphics.OpenGL.NvFloatBuffer.FloatR16Nv; - var _FloatR32Nv = OpenTK.Graphics.OpenGL.NvFloatBuffer.FloatR32Nv; - var _FloatRg16Nv = OpenTK.Graphics.OpenGL.NvFloatBuffer.FloatRg16Nv; - var _FloatRg32Nv = OpenTK.Graphics.OpenGL.NvFloatBuffer.FloatRg32Nv; - var _FloatRgb16Nv = OpenTK.Graphics.OpenGL.NvFloatBuffer.FloatRgb16Nv; - var _FloatRgb32Nv = OpenTK.Graphics.OpenGL.NvFloatBuffer.FloatRgb32Nv; - var _FloatRgba16Nv = OpenTK.Graphics.OpenGL.NvFloatBuffer.FloatRgba16Nv; - var _FloatRgba32Nv = OpenTK.Graphics.OpenGL.NvFloatBuffer.FloatRgba32Nv; - var _TextureFloatComponentsNv = OpenTK.Graphics.OpenGL.NvFloatBuffer.TextureFloatComponentsNv; - var _FloatClearColorValueNv = OpenTK.Graphics.OpenGL.NvFloatBuffer.FloatClearColorValueNv; - var _FloatRgbaModeNv = OpenTK.Graphics.OpenGL.NvFloatBuffer.FloatRgbaModeNv; -} -static void Test_NvFogDistance_19810() { - var _EyePlane = OpenTK.Graphics.OpenGL.NvFogDistance.EyePlane; - var _FogDistanceModeNv = OpenTK.Graphics.OpenGL.NvFogDistance.FogDistanceModeNv; - var _EyeRadialNv = OpenTK.Graphics.OpenGL.NvFogDistance.EyeRadialNv; - var _EyePlaneAbsoluteNv = OpenTK.Graphics.OpenGL.NvFogDistance.EyePlaneAbsoluteNv; -} -static void Test_NvFragmentProgram_19811() { - var _MaxFragmentProgramLocalParametersNv = OpenTK.Graphics.OpenGL.NvFragmentProgram.MaxFragmentProgramLocalParametersNv; - var _FragmentProgramNv = OpenTK.Graphics.OpenGL.NvFragmentProgram.FragmentProgramNv; - var _MaxTextureCoordsNv = OpenTK.Graphics.OpenGL.NvFragmentProgram.MaxTextureCoordsNv; - var _MaxTextureImageUnitsNv = OpenTK.Graphics.OpenGL.NvFragmentProgram.MaxTextureImageUnitsNv; - var _FragmentProgramBindingNv = OpenTK.Graphics.OpenGL.NvFragmentProgram.FragmentProgramBindingNv; - var _ProgramErrorStringNv = OpenTK.Graphics.OpenGL.NvFragmentProgram.ProgramErrorStringNv; -} -static void Test_NvFragmentProgram2_19812() { - var _MaxProgramExecInstructionsNv = OpenTK.Graphics.OpenGL.NvFragmentProgram2.MaxProgramExecInstructionsNv; - var _MaxProgramCallDepthNv = OpenTK.Graphics.OpenGL.NvFragmentProgram2.MaxProgramCallDepthNv; - var _MaxProgramIfDepthNv = OpenTK.Graphics.OpenGL.NvFragmentProgram2.MaxProgramIfDepthNv; - var _MaxProgramLoopDepthNv = OpenTK.Graphics.OpenGL.NvFragmentProgram2.MaxProgramLoopDepthNv; - var _MaxProgramLoopCountNv = OpenTK.Graphics.OpenGL.NvFragmentProgram2.MaxProgramLoopCountNv; -} -static void Test_NvFragmentProgram4_19813() { -} -static void Test_NvFragmentProgramOption_19814() { -} -static void Test_NvFramebufferMultisampleCoverage_19815() { - var _RenderbufferCoverageSamplesNv = OpenTK.Graphics.OpenGL.NvFramebufferMultisampleCoverage.RenderbufferCoverageSamplesNv; - var _RenderbufferColorSamplesNv = OpenTK.Graphics.OpenGL.NvFramebufferMultisampleCoverage.RenderbufferColorSamplesNv; - var _MaxMultisampleCoverageModesNv = OpenTK.Graphics.OpenGL.NvFramebufferMultisampleCoverage.MaxMultisampleCoverageModesNv; - var _MultisampleCoverageModesNv = OpenTK.Graphics.OpenGL.NvFramebufferMultisampleCoverage.MultisampleCoverageModesNv; -} -static void Test_NvGeometryProgram4_19816() { - var _LinesAdjacencyExt = OpenTK.Graphics.OpenGL.NvGeometryProgram4.LinesAdjacencyExt; - var _LineStripAdjacencyExt = OpenTK.Graphics.OpenGL.NvGeometryProgram4.LineStripAdjacencyExt; - var _TrianglesAdjacencyExt = OpenTK.Graphics.OpenGL.NvGeometryProgram4.TrianglesAdjacencyExt; - var _TriangleStripAdjacencyExt = OpenTK.Graphics.OpenGL.NvGeometryProgram4.TriangleStripAdjacencyExt; - var _ProgramPointSizeExt = OpenTK.Graphics.OpenGL.NvGeometryProgram4.ProgramPointSizeExt; - var _GeometryProgramNv = OpenTK.Graphics.OpenGL.NvGeometryProgram4.GeometryProgramNv; - var _MaxProgramOutputVerticesNv = OpenTK.Graphics.OpenGL.NvGeometryProgram4.MaxProgramOutputVerticesNv; - var _MaxProgramTotalOutputComponentsNv = OpenTK.Graphics.OpenGL.NvGeometryProgram4.MaxProgramTotalOutputComponentsNv; - var _MaxGeometryTextureImageUnitsExt = OpenTK.Graphics.OpenGL.NvGeometryProgram4.MaxGeometryTextureImageUnitsExt; - var _FramebufferAttachmentTextureLayerExt = OpenTK.Graphics.OpenGL.NvGeometryProgram4.FramebufferAttachmentTextureLayerExt; - var _FramebufferAttachmentLayeredExt = OpenTK.Graphics.OpenGL.NvGeometryProgram4.FramebufferAttachmentLayeredExt; - var _FramebufferIncompleteLayerTargetsExt = OpenTK.Graphics.OpenGL.NvGeometryProgram4.FramebufferIncompleteLayerTargetsExt; - var _FramebufferIncompleteLayerCountExt = OpenTK.Graphics.OpenGL.NvGeometryProgram4.FramebufferIncompleteLayerCountExt; - var _GeometryVerticesOutExt = OpenTK.Graphics.OpenGL.NvGeometryProgram4.GeometryVerticesOutExt; - var _GeometryInputTypeExt = OpenTK.Graphics.OpenGL.NvGeometryProgram4.GeometryInputTypeExt; - var _GeometryOutputTypeExt = OpenTK.Graphics.OpenGL.NvGeometryProgram4.GeometryOutputTypeExt; -} -static void Test_NvGeometryShader4_19817() { -} -static void Test_NvGpuProgram4_19818() { - var _MinProgramTexelOffsetNv = OpenTK.Graphics.OpenGL.NvGpuProgram4.MinProgramTexelOffsetNv; - var _MaxProgramTexelOffsetNv = OpenTK.Graphics.OpenGL.NvGpuProgram4.MaxProgramTexelOffsetNv; - var _ProgramAttribComponentsNv = OpenTK.Graphics.OpenGL.NvGpuProgram4.ProgramAttribComponentsNv; - var _ProgramResultComponentsNv = OpenTK.Graphics.OpenGL.NvGpuProgram4.ProgramResultComponentsNv; - var _MaxProgramAttribComponentsNv = OpenTK.Graphics.OpenGL.NvGpuProgram4.MaxProgramAttribComponentsNv; - var _MaxProgramResultComponentsNv = OpenTK.Graphics.OpenGL.NvGpuProgram4.MaxProgramResultComponentsNv; - var _MaxProgramGenericAttribsNv = OpenTK.Graphics.OpenGL.NvGpuProgram4.MaxProgramGenericAttribsNv; - var _MaxProgramGenericResultsNv = OpenTK.Graphics.OpenGL.NvGpuProgram4.MaxProgramGenericResultsNv; -} -static void Test_NvGpuProgram5_19819() { - var _MaxGeometryProgramInvocationsNv = OpenTK.Graphics.OpenGL.NvGpuProgram5.MaxGeometryProgramInvocationsNv; - var _MinFragmentInterpolationOffsetNv = OpenTK.Graphics.OpenGL.NvGpuProgram5.MinFragmentInterpolationOffsetNv; - var _MaxFragmentInterpolationOffsetNv = OpenTK.Graphics.OpenGL.NvGpuProgram5.MaxFragmentInterpolationOffsetNv; - var _FragmentProgramInterpolationOffsetBitsNv = OpenTK.Graphics.OpenGL.NvGpuProgram5.FragmentProgramInterpolationOffsetBitsNv; - var _MinProgramTextureGatherOffsetNv = OpenTK.Graphics.OpenGL.NvGpuProgram5.MinProgramTextureGatherOffsetNv; - var _MaxProgramTextureGatherOffsetNv = OpenTK.Graphics.OpenGL.NvGpuProgram5.MaxProgramTextureGatherOffsetNv; - var _MaxProgramSubroutineParametersNv = OpenTK.Graphics.OpenGL.NvGpuProgram5.MaxProgramSubroutineParametersNv; - var _MaxProgramSubroutineNumNv = OpenTK.Graphics.OpenGL.NvGpuProgram5.MaxProgramSubroutineNumNv; -} -static void Test_NvGpuProgram5MemExtended_19820() { -} -static void Test_NvGpuShader5_19821() { - var _Patches = OpenTK.Graphics.OpenGL.NvGpuShader5.Patches; - var _Int64Nv = OpenTK.Graphics.OpenGL.NvGpuShader5.Int64Nv; - var _UnsignedInt64Nv = OpenTK.Graphics.OpenGL.NvGpuShader5.UnsignedInt64Nv; - var _Int8Nv = OpenTK.Graphics.OpenGL.NvGpuShader5.Int8Nv; - var _Int8Vec2Nv = OpenTK.Graphics.OpenGL.NvGpuShader5.Int8Vec2Nv; - var _Int8Vec3Nv = OpenTK.Graphics.OpenGL.NvGpuShader5.Int8Vec3Nv; - var _Int8Vec4Nv = OpenTK.Graphics.OpenGL.NvGpuShader5.Int8Vec4Nv; - var _Int16Nv = OpenTK.Graphics.OpenGL.NvGpuShader5.Int16Nv; - var _Int16Vec2Nv = OpenTK.Graphics.OpenGL.NvGpuShader5.Int16Vec2Nv; - var _Int16Vec3Nv = OpenTK.Graphics.OpenGL.NvGpuShader5.Int16Vec3Nv; - var _Int16Vec4Nv = OpenTK.Graphics.OpenGL.NvGpuShader5.Int16Vec4Nv; - var _Int64Vec2Nv = OpenTK.Graphics.OpenGL.NvGpuShader5.Int64Vec2Nv; - var _Int64Vec3Nv = OpenTK.Graphics.OpenGL.NvGpuShader5.Int64Vec3Nv; - var _Int64Vec4Nv = OpenTK.Graphics.OpenGL.NvGpuShader5.Int64Vec4Nv; - var _UnsignedInt8Nv = OpenTK.Graphics.OpenGL.NvGpuShader5.UnsignedInt8Nv; - var _UnsignedInt8Vec2Nv = OpenTK.Graphics.OpenGL.NvGpuShader5.UnsignedInt8Vec2Nv; - var _UnsignedInt8Vec3Nv = OpenTK.Graphics.OpenGL.NvGpuShader5.UnsignedInt8Vec3Nv; - var _UnsignedInt8Vec4Nv = OpenTK.Graphics.OpenGL.NvGpuShader5.UnsignedInt8Vec4Nv; - var _UnsignedInt16Nv = OpenTK.Graphics.OpenGL.NvGpuShader5.UnsignedInt16Nv; - var _UnsignedInt16Vec2Nv = OpenTK.Graphics.OpenGL.NvGpuShader5.UnsignedInt16Vec2Nv; - var _UnsignedInt16Vec3Nv = OpenTK.Graphics.OpenGL.NvGpuShader5.UnsignedInt16Vec3Nv; - var _UnsignedInt16Vec4Nv = OpenTK.Graphics.OpenGL.NvGpuShader5.UnsignedInt16Vec4Nv; - var _UnsignedInt64Vec2Nv = OpenTK.Graphics.OpenGL.NvGpuShader5.UnsignedInt64Vec2Nv; - var _UnsignedInt64Vec3Nv = OpenTK.Graphics.OpenGL.NvGpuShader5.UnsignedInt64Vec3Nv; - var _UnsignedInt64Vec4Nv = OpenTK.Graphics.OpenGL.NvGpuShader5.UnsignedInt64Vec4Nv; - var _Float16Nv = OpenTK.Graphics.OpenGL.NvGpuShader5.Float16Nv; - var _Float16Vec2Nv = OpenTK.Graphics.OpenGL.NvGpuShader5.Float16Vec2Nv; - var _Float16Vec3Nv = OpenTK.Graphics.OpenGL.NvGpuShader5.Float16Vec3Nv; - var _Float16Vec4Nv = OpenTK.Graphics.OpenGL.NvGpuShader5.Float16Vec4Nv; -} -static void Test_NvHalfFloat_19822() { - var _HalfFloatNv = OpenTK.Graphics.OpenGL.NvHalfFloat.HalfFloatNv; -} -static void Test_NvLightMaxExponent_19823() { - var _MaxShininessNv = OpenTK.Graphics.OpenGL.NvLightMaxExponent.MaxShininessNv; - var _MaxSpotExponentNv = OpenTK.Graphics.OpenGL.NvLightMaxExponent.MaxSpotExponentNv; -} -static void Test_NvMultisampleCoverage_19824() { - var _SamplesArb = OpenTK.Graphics.OpenGL.NvMultisampleCoverage.SamplesArb; - var _ColorSamplesNv = OpenTK.Graphics.OpenGL.NvMultisampleCoverage.ColorSamplesNv; -} -static void Test_NvMultisampleFilterHint_19825() { - var _MultisampleFilterHintNv = OpenTK.Graphics.OpenGL.NvMultisampleFilterHint.MultisampleFilterHintNv; -} -static void Test_NvOcclusionQuery_19826() { - var _PixelCounterBitsNv = OpenTK.Graphics.OpenGL.NvOcclusionQuery.PixelCounterBitsNv; - var _CurrentOcclusionQueryIdNv = OpenTK.Graphics.OpenGL.NvOcclusionQuery.CurrentOcclusionQueryIdNv; - var _PixelCountNv = OpenTK.Graphics.OpenGL.NvOcclusionQuery.PixelCountNv; - var _PixelCountAvailableNv = OpenTK.Graphics.OpenGL.NvOcclusionQuery.PixelCountAvailableNv; -} -static void Test_NvPackedDepthStencil_19827() { - var _DepthStencilNv = OpenTK.Graphics.OpenGL.NvPackedDepthStencil.DepthStencilNv; - var _UnsignedInt248Nv = OpenTK.Graphics.OpenGL.NvPackedDepthStencil.UnsignedInt248Nv; -} -static void Test_NvParameterBufferObject_19828() { - var _MaxProgramParameterBufferBindingsNv = OpenTK.Graphics.OpenGL.NvParameterBufferObject.MaxProgramParameterBufferBindingsNv; - var _MaxProgramParameterBufferSizeNv = OpenTK.Graphics.OpenGL.NvParameterBufferObject.MaxProgramParameterBufferSizeNv; - var _VertexProgramParameterBufferNv = OpenTK.Graphics.OpenGL.NvParameterBufferObject.VertexProgramParameterBufferNv; - var _GeometryProgramParameterBufferNv = OpenTK.Graphics.OpenGL.NvParameterBufferObject.GeometryProgramParameterBufferNv; - var _FragmentProgramParameterBufferNv = OpenTK.Graphics.OpenGL.NvParameterBufferObject.FragmentProgramParameterBufferNv; -} -static void Test_NvParameterBufferObject2_19829() { -} -static void Test_NvPathRendering_19830() { - var _ClosePathNv = OpenTK.Graphics.OpenGL.NvPathRendering.ClosePathNv; - var _FontXMinBoundsBitNv = OpenTK.Graphics.OpenGL.NvPathRendering.FontXMinBoundsBitNv; - var _FontYMinBoundsBitNv = OpenTK.Graphics.OpenGL.NvPathRendering.FontYMinBoundsBitNv; - var _FontXMaxBoundsBitNv = OpenTK.Graphics.OpenGL.NvPathRendering.FontXMaxBoundsBitNv; - var _FontYMaxBoundsBitNv = OpenTK.Graphics.OpenGL.NvPathRendering.FontYMaxBoundsBitNv; - var _FontUnitsPerEmBitNv = OpenTK.Graphics.OpenGL.NvPathRendering.FontUnitsPerEmBitNv; - var _FontAscenderBitNv = OpenTK.Graphics.OpenGL.NvPathRendering.FontAscenderBitNv; - var _FontDescenderBitNv = OpenTK.Graphics.OpenGL.NvPathRendering.FontDescenderBitNv; - var _FontHeightBitNv = OpenTK.Graphics.OpenGL.NvPathRendering.FontHeightBitNv; - var _BoldBitNv = OpenTK.Graphics.OpenGL.NvPathRendering.BoldBitNv; - var _GlyphWidthBitNv = OpenTK.Graphics.OpenGL.NvPathRendering.GlyphWidthBitNv; - var _FontMaxAdvanceWidthBitNv = OpenTK.Graphics.OpenGL.NvPathRendering.FontMaxAdvanceWidthBitNv; - var _GlyphHeightBitNv = OpenTK.Graphics.OpenGL.NvPathRendering.GlyphHeightBitNv; - var _ItalicBitNv = OpenTK.Graphics.OpenGL.NvPathRendering.ItalicBitNv; - var _MoveToNv = OpenTK.Graphics.OpenGL.NvPathRendering.MoveToNv; - var _FontMaxAdvanceHeightBitNv = OpenTK.Graphics.OpenGL.NvPathRendering.FontMaxAdvanceHeightBitNv; - var _RelativeMoveToNv = OpenTK.Graphics.OpenGL.NvPathRendering.RelativeMoveToNv; - var _GlyphHorizontalBearingXBitNv = OpenTK.Graphics.OpenGL.NvPathRendering.GlyphHorizontalBearingXBitNv; - var _LineToNv = OpenTK.Graphics.OpenGL.NvPathRendering.LineToNv; - var _FontUnderlinePositionBitNv = OpenTK.Graphics.OpenGL.NvPathRendering.FontUnderlinePositionBitNv; - var _RelativeLineToNv = OpenTK.Graphics.OpenGL.NvPathRendering.RelativeLineToNv; - var _HorizontalLineToNv = OpenTK.Graphics.OpenGL.NvPathRendering.HorizontalLineToNv; - var _RelativeHorizontalLineToNv = OpenTK.Graphics.OpenGL.NvPathRendering.RelativeHorizontalLineToNv; - var _GlyphHorizontalBearingYBitNv = OpenTK.Graphics.OpenGL.NvPathRendering.GlyphHorizontalBearingYBitNv; - var _VerticalLineToNv = OpenTK.Graphics.OpenGL.NvPathRendering.VerticalLineToNv; - var _FontUnderlineThicknessBitNv = OpenTK.Graphics.OpenGL.NvPathRendering.FontUnderlineThicknessBitNv; - var _RelativeVerticalLineToNv = OpenTK.Graphics.OpenGL.NvPathRendering.RelativeVerticalLineToNv; - var _QuadraticCurveToNv = OpenTK.Graphics.OpenGL.NvPathRendering.QuadraticCurveToNv; - var _RelativeQuadraticCurveToNv = OpenTK.Graphics.OpenGL.NvPathRendering.RelativeQuadraticCurveToNv; - var _CubicCurveToNv = OpenTK.Graphics.OpenGL.NvPathRendering.CubicCurveToNv; - var _RelativeCubicCurveToNv = OpenTK.Graphics.OpenGL.NvPathRendering.RelativeCubicCurveToNv; - var _SmoothQuadraticCurveToNv = OpenTK.Graphics.OpenGL.NvPathRendering.SmoothQuadraticCurveToNv; - var _RelativeSmoothQuadraticCurveToNv = OpenTK.Graphics.OpenGL.NvPathRendering.RelativeSmoothQuadraticCurveToNv; - var _GlyphHorizontalBearingAdvanceBitNv = OpenTK.Graphics.OpenGL.NvPathRendering.GlyphHorizontalBearingAdvanceBitNv; - var _SmoothCubicCurveToNv = OpenTK.Graphics.OpenGL.NvPathRendering.SmoothCubicCurveToNv; - var _GlyphHasKerningBitNv = OpenTK.Graphics.OpenGL.NvPathRendering.GlyphHasKerningBitNv; - var _FontHasKerningBitNv = OpenTK.Graphics.OpenGL.NvPathRendering.FontHasKerningBitNv; - var _RelativeSmoothCubicCurveToNv = OpenTK.Graphics.OpenGL.NvPathRendering.RelativeSmoothCubicCurveToNv; - var _SmallCcwArcToNv = OpenTK.Graphics.OpenGL.NvPathRendering.SmallCcwArcToNv; - var _RelativeSmallCcwArcToNv = OpenTK.Graphics.OpenGL.NvPathRendering.RelativeSmallCcwArcToNv; - var _SmallCwArcToNv = OpenTK.Graphics.OpenGL.NvPathRendering.SmallCwArcToNv; - var _RelativeSmallCwArcToNv = OpenTK.Graphics.OpenGL.NvPathRendering.RelativeSmallCwArcToNv; - var _LargeCcwArcToNv = OpenTK.Graphics.OpenGL.NvPathRendering.LargeCcwArcToNv; - var _RelativeLargeCcwArcToNv = OpenTK.Graphics.OpenGL.NvPathRendering.RelativeLargeCcwArcToNv; - var _LargeCwArcToNv = OpenTK.Graphics.OpenGL.NvPathRendering.LargeCwArcToNv; - var _RelativeLargeCwArcToNv = OpenTK.Graphics.OpenGL.NvPathRendering.RelativeLargeCwArcToNv; - var _GlyphVerticalBearingXBitNv = OpenTK.Graphics.OpenGL.NvPathRendering.GlyphVerticalBearingXBitNv; - var _GlyphVerticalBearingYBitNv = OpenTK.Graphics.OpenGL.NvPathRendering.GlyphVerticalBearingYBitNv; - var _GlyphVerticalBearingAdvanceBitNv = OpenTK.Graphics.OpenGL.NvPathRendering.GlyphVerticalBearingAdvanceBitNv; - var _PrimaryColorNv = OpenTK.Graphics.OpenGL.NvPathRendering.PrimaryColorNv; - var _SecondaryColorNv = OpenTK.Graphics.OpenGL.NvPathRendering.SecondaryColorNv; - var _PrimaryColor = OpenTK.Graphics.OpenGL.NvPathRendering.PrimaryColor; - var _PathFormatSvgNv = OpenTK.Graphics.OpenGL.NvPathRendering.PathFormatSvgNv; - var _PathFormatPsNv = OpenTK.Graphics.OpenGL.NvPathRendering.PathFormatPsNv; - var _StandardFontNameNv = OpenTK.Graphics.OpenGL.NvPathRendering.StandardFontNameNv; - var _SystemFontNameNv = OpenTK.Graphics.OpenGL.NvPathRendering.SystemFontNameNv; - var _FileNameNv = OpenTK.Graphics.OpenGL.NvPathRendering.FileNameNv; - var _PathStrokeWidthNv = OpenTK.Graphics.OpenGL.NvPathRendering.PathStrokeWidthNv; - var _PathEndCapsNv = OpenTK.Graphics.OpenGL.NvPathRendering.PathEndCapsNv; - var _PathInitialEndCapNv = OpenTK.Graphics.OpenGL.NvPathRendering.PathInitialEndCapNv; - var _PathTerminalEndCapNv = OpenTK.Graphics.OpenGL.NvPathRendering.PathTerminalEndCapNv; - var _PathJoinStyleNv = OpenTK.Graphics.OpenGL.NvPathRendering.PathJoinStyleNv; - var _PathMiterLimitNv = OpenTK.Graphics.OpenGL.NvPathRendering.PathMiterLimitNv; - var _PathDashCapsNv = OpenTK.Graphics.OpenGL.NvPathRendering.PathDashCapsNv; - var _PathInitialDashCapNv = OpenTK.Graphics.OpenGL.NvPathRendering.PathInitialDashCapNv; - var _PathTerminalDashCapNv = OpenTK.Graphics.OpenGL.NvPathRendering.PathTerminalDashCapNv; - var _PathDashOffsetNv = OpenTK.Graphics.OpenGL.NvPathRendering.PathDashOffsetNv; - var _PathClientLengthNv = OpenTK.Graphics.OpenGL.NvPathRendering.PathClientLengthNv; - var _PathFillModeNv = OpenTK.Graphics.OpenGL.NvPathRendering.PathFillModeNv; - var _PathFillMaskNv = OpenTK.Graphics.OpenGL.NvPathRendering.PathFillMaskNv; - var _PathFillCoverModeNv = OpenTK.Graphics.OpenGL.NvPathRendering.PathFillCoverModeNv; - var _PathStrokeCoverModeNv = OpenTK.Graphics.OpenGL.NvPathRendering.PathStrokeCoverModeNv; - var _PathStrokeMaskNv = OpenTK.Graphics.OpenGL.NvPathRendering.PathStrokeMaskNv; - var _CountUpNv = OpenTK.Graphics.OpenGL.NvPathRendering.CountUpNv; - var _CountDownNv = OpenTK.Graphics.OpenGL.NvPathRendering.CountDownNv; - var _PathObjectBoundingBoxNv = OpenTK.Graphics.OpenGL.NvPathRendering.PathObjectBoundingBoxNv; - var _ConvexHullNv = OpenTK.Graphics.OpenGL.NvPathRendering.ConvexHullNv; - var _BoundingBoxNv = OpenTK.Graphics.OpenGL.NvPathRendering.BoundingBoxNv; - var _TranslateXNv = OpenTK.Graphics.OpenGL.NvPathRendering.TranslateXNv; - var _TranslateYNv = OpenTK.Graphics.OpenGL.NvPathRendering.TranslateYNv; - var _Translate2DNv = OpenTK.Graphics.OpenGL.NvPathRendering.Translate2DNv; - var _Translate3DNv = OpenTK.Graphics.OpenGL.NvPathRendering.Translate3DNv; - var _Affine2DNv = OpenTK.Graphics.OpenGL.NvPathRendering.Affine2DNv; - var _Affine3DNv = OpenTK.Graphics.OpenGL.NvPathRendering.Affine3DNv; - var _TransposeAffine2DNv = OpenTK.Graphics.OpenGL.NvPathRendering.TransposeAffine2DNv; - var _TransposeAffine3DNv = OpenTK.Graphics.OpenGL.NvPathRendering.TransposeAffine3DNv; - var _Utf8Nv = OpenTK.Graphics.OpenGL.NvPathRendering.Utf8Nv; - var _Utf16Nv = OpenTK.Graphics.OpenGL.NvPathRendering.Utf16Nv; - var _BoundingBoxOfBoundingBoxesNv = OpenTK.Graphics.OpenGL.NvPathRendering.BoundingBoxOfBoundingBoxesNv; - var _PathCommandCountNv = OpenTK.Graphics.OpenGL.NvPathRendering.PathCommandCountNv; - var _PathCoordCountNv = OpenTK.Graphics.OpenGL.NvPathRendering.PathCoordCountNv; - var _PathDashArrayCountNv = OpenTK.Graphics.OpenGL.NvPathRendering.PathDashArrayCountNv; - var _PathComputedLengthNv = OpenTK.Graphics.OpenGL.NvPathRendering.PathComputedLengthNv; - var _PathFillBoundingBoxNv = OpenTK.Graphics.OpenGL.NvPathRendering.PathFillBoundingBoxNv; - var _PathStrokeBoundingBoxNv = OpenTK.Graphics.OpenGL.NvPathRendering.PathStrokeBoundingBoxNv; - var _SquareNv = OpenTK.Graphics.OpenGL.NvPathRendering.SquareNv; - var _RoundNv = OpenTK.Graphics.OpenGL.NvPathRendering.RoundNv; - var _TriangularNv = OpenTK.Graphics.OpenGL.NvPathRendering.TriangularNv; - var _BevelNv = OpenTK.Graphics.OpenGL.NvPathRendering.BevelNv; - var _MiterRevertNv = OpenTK.Graphics.OpenGL.NvPathRendering.MiterRevertNv; - var _MiterTruncateNv = OpenTK.Graphics.OpenGL.NvPathRendering.MiterTruncateNv; - var _SkipMissingGlyphNv = OpenTK.Graphics.OpenGL.NvPathRendering.SkipMissingGlyphNv; - var _UseMissingGlyphNv = OpenTK.Graphics.OpenGL.NvPathRendering.UseMissingGlyphNv; - var _PathErrorPositionNv = OpenTK.Graphics.OpenGL.NvPathRendering.PathErrorPositionNv; - var _PathFogGenModeNv = OpenTK.Graphics.OpenGL.NvPathRendering.PathFogGenModeNv; - var _AccumAdjacentPairsNv = OpenTK.Graphics.OpenGL.NvPathRendering.AccumAdjacentPairsNv; - var _AdjacentPairsNv = OpenTK.Graphics.OpenGL.NvPathRendering.AdjacentPairsNv; - var _FirstToRestNv = OpenTK.Graphics.OpenGL.NvPathRendering.FirstToRestNv; - var _PathGenModeNv = OpenTK.Graphics.OpenGL.NvPathRendering.PathGenModeNv; - var _PathGenCoeffNv = OpenTK.Graphics.OpenGL.NvPathRendering.PathGenCoeffNv; - var _PathGenColorFormatNv = OpenTK.Graphics.OpenGL.NvPathRendering.PathGenColorFormatNv; - var _PathGenComponentsNv = OpenTK.Graphics.OpenGL.NvPathRendering.PathGenComponentsNv; - var _PathDashOffsetResetNv = OpenTK.Graphics.OpenGL.NvPathRendering.PathDashOffsetResetNv; - var _MoveToResetsNv = OpenTK.Graphics.OpenGL.NvPathRendering.MoveToResetsNv; - var _MoveToContinuesNv = OpenTK.Graphics.OpenGL.NvPathRendering.MoveToContinuesNv; - var _PathStencilFuncNv = OpenTK.Graphics.OpenGL.NvPathRendering.PathStencilFuncNv; - var _PathStencilRefNv = OpenTK.Graphics.OpenGL.NvPathRendering.PathStencilRefNv; - var _PathStencilValueMaskNv = OpenTK.Graphics.OpenGL.NvPathRendering.PathStencilValueMaskNv; - var _PathStencilDepthOffsetFactorNv = OpenTK.Graphics.OpenGL.NvPathRendering.PathStencilDepthOffsetFactorNv; - var _PathStencilDepthOffsetUnitsNv = OpenTK.Graphics.OpenGL.NvPathRendering.PathStencilDepthOffsetUnitsNv; - var _PathCoverDepthFuncNv = OpenTK.Graphics.OpenGL.NvPathRendering.PathCoverDepthFuncNv; - var _RestartPathNv = OpenTK.Graphics.OpenGL.NvPathRendering.RestartPathNv; - var _DupFirstCubicCurveToNv = OpenTK.Graphics.OpenGL.NvPathRendering.DupFirstCubicCurveToNv; - var _DupLastCubicCurveToNv = OpenTK.Graphics.OpenGL.NvPathRendering.DupLastCubicCurveToNv; - var _RectNv = OpenTK.Graphics.OpenGL.NvPathRendering.RectNv; - var _CircularCcwArcToNv = OpenTK.Graphics.OpenGL.NvPathRendering.CircularCcwArcToNv; - var _CircularCwArcToNv = OpenTK.Graphics.OpenGL.NvPathRendering.CircularCwArcToNv; - var _CircularTangentArcToNv = OpenTK.Graphics.OpenGL.NvPathRendering.CircularTangentArcToNv; - var _ArcToNv = OpenTK.Graphics.OpenGL.NvPathRendering.ArcToNv; - var _RelativeArcToNv = OpenTK.Graphics.OpenGL.NvPathRendering.RelativeArcToNv; -} -static void Test_NvPixelDataRange_19831() { - var _WritePixelDataRangeNv = OpenTK.Graphics.OpenGL.NvPixelDataRange.WritePixelDataRangeNv; - var _ReadPixelDataRangeNv = OpenTK.Graphics.OpenGL.NvPixelDataRange.ReadPixelDataRangeNv; - var _WritePixelDataRangeLengthNv = OpenTK.Graphics.OpenGL.NvPixelDataRange.WritePixelDataRangeLengthNv; - var _ReadPixelDataRangeLengthNv = OpenTK.Graphics.OpenGL.NvPixelDataRange.ReadPixelDataRangeLengthNv; - var _WritePixelDataRangePointerNv = OpenTK.Graphics.OpenGL.NvPixelDataRange.WritePixelDataRangePointerNv; - var _ReadPixelDataRangePointerNv = OpenTK.Graphics.OpenGL.NvPixelDataRange.ReadPixelDataRangePointerNv; -} -static void Test_NvPointSprite_19832() { - var _PointSpriteNv = OpenTK.Graphics.OpenGL.NvPointSprite.PointSpriteNv; - var _CoordReplaceNv = OpenTK.Graphics.OpenGL.NvPointSprite.CoordReplaceNv; - var _PointSpriteRModeNv = OpenTK.Graphics.OpenGL.NvPointSprite.PointSpriteRModeNv; -} -static void Test_NvPresentVideo_19833() { - var _FrameNv = OpenTK.Graphics.OpenGL.NvPresentVideo.FrameNv; - var _FieldsNv = OpenTK.Graphics.OpenGL.NvPresentVideo.FieldsNv; - var _CurrentTimeNv = OpenTK.Graphics.OpenGL.NvPresentVideo.CurrentTimeNv; - var _NumFillStreamsNv = OpenTK.Graphics.OpenGL.NvPresentVideo.NumFillStreamsNv; - var _PresentTimeNv = OpenTK.Graphics.OpenGL.NvPresentVideo.PresentTimeNv; - var _PresentDurationNv = OpenTK.Graphics.OpenGL.NvPresentVideo.PresentDurationNv; -} -static void Test_NvPrimitiveRestart_19834() { - var _PrimitiveRestartNv = OpenTK.Graphics.OpenGL.NvPrimitiveRestart.PrimitiveRestartNv; - var _PrimitiveRestartIndexNv = OpenTK.Graphics.OpenGL.NvPrimitiveRestart.PrimitiveRestartIndexNv; -} -static void Test_NvRegisterCombiners_19835() { - var _None = OpenTK.Graphics.OpenGL.NvRegisterCombiners.None; - var _Zero = OpenTK.Graphics.OpenGL.NvRegisterCombiners.Zero; - var _Fog = OpenTK.Graphics.OpenGL.NvRegisterCombiners.Fog; - var _Texture0Arb = OpenTK.Graphics.OpenGL.NvRegisterCombiners.Texture0Arb; - var _Texture1Arb = OpenTK.Graphics.OpenGL.NvRegisterCombiners.Texture1Arb; - var _RegisterCombinersNv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.RegisterCombinersNv; - var _VariableANv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.VariableANv; - var _VariableBNv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.VariableBNv; - var _VariableCNv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.VariableCNv; - var _VariableDNv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.VariableDNv; - var _VariableENv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.VariableENv; - var _VariableFNv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.VariableFNv; - var _VariableGNv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.VariableGNv; - var _ConstantColor0Nv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.ConstantColor0Nv; - var _ConstantColor1Nv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.ConstantColor1Nv; - var _PrimaryColorNv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.PrimaryColorNv; - var _SecondaryColorNv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.SecondaryColorNv; - var _Spare0Nv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.Spare0Nv; - var _Spare1Nv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.Spare1Nv; - var _DiscardNv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.DiscardNv; - var _ETimesFNv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.ETimesFNv; - var _Spare0PlusSecondaryColorNv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.Spare0PlusSecondaryColorNv; - var _UnsignedIdentityNv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.UnsignedIdentityNv; - var _UnsignedInvertNv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.UnsignedInvertNv; - var _ExpandNormalNv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.ExpandNormalNv; - var _ExpandNegateNv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.ExpandNegateNv; - var _HalfBiasNormalNv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.HalfBiasNormalNv; - var _HalfBiasNegateNv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.HalfBiasNegateNv; - var _SignedIdentityNv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.SignedIdentityNv; - var _SignedNegateNv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.SignedNegateNv; - var _ScaleByTwoNv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.ScaleByTwoNv; - var _ScaleByFourNv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.ScaleByFourNv; - var _ScaleByOneHalfNv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.ScaleByOneHalfNv; - var _BiasByNegativeOneHalfNv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.BiasByNegativeOneHalfNv; - var _CombinerInputNv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.CombinerInputNv; - var _CombinerMappingNv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.CombinerMappingNv; - var _CombinerComponentUsageNv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.CombinerComponentUsageNv; - var _CombinerAbDotProductNv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.CombinerAbDotProductNv; - var _CombinerCdDotProductNv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.CombinerCdDotProductNv; - var _CombinerMuxSumNv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.CombinerMuxSumNv; - var _CombinerScaleNv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.CombinerScaleNv; - var _CombinerBiasNv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.CombinerBiasNv; - var _CombinerAbOutputNv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.CombinerAbOutputNv; - var _CombinerCdOutputNv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.CombinerCdOutputNv; - var _CombinerSumOutputNv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.CombinerSumOutputNv; - var _MaxGeneralCombinersNv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.MaxGeneralCombinersNv; - var _NumGeneralCombinersNv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.NumGeneralCombinersNv; - var _ColorSumClampNv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.ColorSumClampNv; - var _Combiner0Nv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.Combiner0Nv; - var _Combiner1Nv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.Combiner1Nv; - var _Combiner2Nv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.Combiner2Nv; - var _Combiner3Nv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.Combiner3Nv; - var _Combiner4Nv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.Combiner4Nv; - var _Combiner5Nv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.Combiner5Nv; - var _Combiner6Nv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.Combiner6Nv; - var _Combiner7Nv = OpenTK.Graphics.OpenGL.NvRegisterCombiners.Combiner7Nv; -} -static void Test_NvRegisterCombiners2_19836() { - var _PerStageConstantsNv = OpenTK.Graphics.OpenGL.NvRegisterCombiners2.PerStageConstantsNv; -} -static void Test_NvShaderAtomicCounters_19837() { -} -static void Test_NvShaderAtomicFloat_19838() { -} -static void Test_NvShaderBufferLoad_19839() { - var _BufferGpuAddressNv = OpenTK.Graphics.OpenGL.NvShaderBufferLoad.BufferGpuAddressNv; - var _GpuAddressNv = OpenTK.Graphics.OpenGL.NvShaderBufferLoad.GpuAddressNv; - var _MaxShaderBufferAddressNv = OpenTK.Graphics.OpenGL.NvShaderBufferLoad.MaxShaderBufferAddressNv; -} -static void Test_NvShaderBufferStore_19840() { - var _ShaderGlobalAccessBarrierBitNv = OpenTK.Graphics.OpenGL.NvShaderBufferStore.ShaderGlobalAccessBarrierBitNv; - var _WriteOnly = OpenTK.Graphics.OpenGL.NvShaderBufferStore.WriteOnly; - var _ReadWrite = OpenTK.Graphics.OpenGL.NvShaderBufferStore.ReadWrite; -} -static void Test_NvShaderStorageBufferObject_19841() { -} -static void Test_NvShaderThreadGroup_19842() { - var _WarpSizeNv = OpenTK.Graphics.OpenGL.NvShaderThreadGroup.WarpSizeNv; - var _WarpsPerSmNv = OpenTK.Graphics.OpenGL.NvShaderThreadGroup.WarpsPerSmNv; - var _SmCountNv = OpenTK.Graphics.OpenGL.NvShaderThreadGroup.SmCountNv; -} -static void Test_NvShaderThreadShuffle_19843() { -} -static void Test_NvTessellationProgram5_19844() { - var _MaxProgramPatchAttribsNv = OpenTK.Graphics.OpenGL.NvTessellationProgram5.MaxProgramPatchAttribsNv; - var _TessControlProgramNv = OpenTK.Graphics.OpenGL.NvTessellationProgram5.TessControlProgramNv; - var _TessEvaluationProgramNv = OpenTK.Graphics.OpenGL.NvTessellationProgram5.TessEvaluationProgramNv; - var _TessControlProgramParameterBufferNv = OpenTK.Graphics.OpenGL.NvTessellationProgram5.TessControlProgramParameterBufferNv; - var _TessEvaluationProgramParameterBufferNv = OpenTK.Graphics.OpenGL.NvTessellationProgram5.TessEvaluationProgramParameterBufferNv; -} -static void Test_NvTexgenEmboss_19845() { - var _EmbossLightNv = OpenTK.Graphics.OpenGL.NvTexgenEmboss.EmbossLightNv; - var _EmbossConstantNv = OpenTK.Graphics.OpenGL.NvTexgenEmboss.EmbossConstantNv; - var _EmbossMapNv = OpenTK.Graphics.OpenGL.NvTexgenEmboss.EmbossMapNv; -} -static void Test_NvTexgenReflection_19846() { - var _NormalMapNv = OpenTK.Graphics.OpenGL.NvTexgenReflection.NormalMapNv; - var _ReflectionMapNv = OpenTK.Graphics.OpenGL.NvTexgenReflection.ReflectionMapNv; -} -static void Test_NvTextureBarrier_19847() { -} -static void Test_NvTextureCompressionVtc_19848() { -} -static void Test_NvTextureEnvCombine4_19849() { - var _Combine4Nv = OpenTK.Graphics.OpenGL.NvTextureEnvCombine4.Combine4Nv; - var _Source3RgbNv = OpenTK.Graphics.OpenGL.NvTextureEnvCombine4.Source3RgbNv; - var _Source3AlphaNv = OpenTK.Graphics.OpenGL.NvTextureEnvCombine4.Source3AlphaNv; - var _Operand3RgbNv = OpenTK.Graphics.OpenGL.NvTextureEnvCombine4.Operand3RgbNv; - var _Operand3AlphaNv = OpenTK.Graphics.OpenGL.NvTextureEnvCombine4.Operand3AlphaNv; -} -static void Test_NvTextureExpandNormal_19850() { - var _TextureUnsignedRemapModeNv = OpenTK.Graphics.OpenGL.NvTextureExpandNormal.TextureUnsignedRemapModeNv; -} -static void Test_NvTextureMultisample_19851() { - var _TextureCoverageSamplesNv = OpenTK.Graphics.OpenGL.NvTextureMultisample.TextureCoverageSamplesNv; - var _TextureColorSamplesNv = OpenTK.Graphics.OpenGL.NvTextureMultisample.TextureColorSamplesNv; -} -static void Test_NvTextureRectangle_19852() { - var _TextureRectangleNv = OpenTK.Graphics.OpenGL.NvTextureRectangle.TextureRectangleNv; - var _TextureBindingRectangleNv = OpenTK.Graphics.OpenGL.NvTextureRectangle.TextureBindingRectangleNv; - var _ProxyTextureRectangleNv = OpenTK.Graphics.OpenGL.NvTextureRectangle.ProxyTextureRectangleNv; - var _MaxRectangleTextureSizeNv = OpenTK.Graphics.OpenGL.NvTextureRectangle.MaxRectangleTextureSizeNv; -} -static void Test_NvTextureShader_19853() { - var _OffsetTextureRectangleNv = OpenTK.Graphics.OpenGL.NvTextureShader.OffsetTextureRectangleNv; - var _OffsetTextureRectangleScaleNv = OpenTK.Graphics.OpenGL.NvTextureShader.OffsetTextureRectangleScaleNv; - var _DotProductTextureRectangleNv = OpenTK.Graphics.OpenGL.NvTextureShader.DotProductTextureRectangleNv; - var _RgbaUnsignedDotProductMappingNv = OpenTK.Graphics.OpenGL.NvTextureShader.RgbaUnsignedDotProductMappingNv; - var _UnsignedIntS8S888Nv = OpenTK.Graphics.OpenGL.NvTextureShader.UnsignedIntS8S888Nv; - var _UnsignedInt88S8S8RevNv = OpenTK.Graphics.OpenGL.NvTextureShader.UnsignedInt88S8S8RevNv; - var _DsdtMagIntensityNv = OpenTK.Graphics.OpenGL.NvTextureShader.DsdtMagIntensityNv; - var _ShaderConsistentNv = OpenTK.Graphics.OpenGL.NvTextureShader.ShaderConsistentNv; - var _TextureShaderNv = OpenTK.Graphics.OpenGL.NvTextureShader.TextureShaderNv; - var _ShaderOperationNv = OpenTK.Graphics.OpenGL.NvTextureShader.ShaderOperationNv; - var _CullModesNv = OpenTK.Graphics.OpenGL.NvTextureShader.CullModesNv; - var _OffsetTexture2DMatrixNv = OpenTK.Graphics.OpenGL.NvTextureShader.OffsetTexture2DMatrixNv; - var _OffsetTextureMatrixNv = OpenTK.Graphics.OpenGL.NvTextureShader.OffsetTextureMatrixNv; - var _OffsetTexture2DScaleNv = OpenTK.Graphics.OpenGL.NvTextureShader.OffsetTexture2DScaleNv; - var _OffsetTextureScaleNv = OpenTK.Graphics.OpenGL.NvTextureShader.OffsetTextureScaleNv; - var _OffsetTexture2DBiasNv = OpenTK.Graphics.OpenGL.NvTextureShader.OffsetTexture2DBiasNv; - var _OffsetTextureBiasNv = OpenTK.Graphics.OpenGL.NvTextureShader.OffsetTextureBiasNv; - var _PreviousTextureInputNv = OpenTK.Graphics.OpenGL.NvTextureShader.PreviousTextureInputNv; - var _ConstEyeNv = OpenTK.Graphics.OpenGL.NvTextureShader.ConstEyeNv; - var _PassThroughNv = OpenTK.Graphics.OpenGL.NvTextureShader.PassThroughNv; - var _CullFragmentNv = OpenTK.Graphics.OpenGL.NvTextureShader.CullFragmentNv; - var _OffsetTexture2DNv = OpenTK.Graphics.OpenGL.NvTextureShader.OffsetTexture2DNv; - var _DependentArTexture2DNv = OpenTK.Graphics.OpenGL.NvTextureShader.DependentArTexture2DNv; - var _DependentGbTexture2DNv = OpenTK.Graphics.OpenGL.NvTextureShader.DependentGbTexture2DNv; - var _DotProductNv = OpenTK.Graphics.OpenGL.NvTextureShader.DotProductNv; - var _DotProductDepthReplaceNv = OpenTK.Graphics.OpenGL.NvTextureShader.DotProductDepthReplaceNv; - var _DotProductTexture2DNv = OpenTK.Graphics.OpenGL.NvTextureShader.DotProductTexture2DNv; - var _DotProductTextureCubeMapNv = OpenTK.Graphics.OpenGL.NvTextureShader.DotProductTextureCubeMapNv; - var _DotProductDiffuseCubeMapNv = OpenTK.Graphics.OpenGL.NvTextureShader.DotProductDiffuseCubeMapNv; - var _DotProductReflectCubeMapNv = OpenTK.Graphics.OpenGL.NvTextureShader.DotProductReflectCubeMapNv; - var _DotProductConstEyeReflectCubeMapNv = OpenTK.Graphics.OpenGL.NvTextureShader.DotProductConstEyeReflectCubeMapNv; - var _HiloNv = OpenTK.Graphics.OpenGL.NvTextureShader.HiloNv; - var _DsdtNv = OpenTK.Graphics.OpenGL.NvTextureShader.DsdtNv; - var _DsdtMagNv = OpenTK.Graphics.OpenGL.NvTextureShader.DsdtMagNv; - var _DsdtMagVibNv = OpenTK.Graphics.OpenGL.NvTextureShader.DsdtMagVibNv; - var _Hilo16Nv = OpenTK.Graphics.OpenGL.NvTextureShader.Hilo16Nv; - var _SignedHiloNv = OpenTK.Graphics.OpenGL.NvTextureShader.SignedHiloNv; - var _SignedHilo16Nv = OpenTK.Graphics.OpenGL.NvTextureShader.SignedHilo16Nv; - var _SignedRgbaNv = OpenTK.Graphics.OpenGL.NvTextureShader.SignedRgbaNv; - var _SignedRgba8Nv = OpenTK.Graphics.OpenGL.NvTextureShader.SignedRgba8Nv; - var _SignedRgbNv = OpenTK.Graphics.OpenGL.NvTextureShader.SignedRgbNv; - var _SignedRgb8Nv = OpenTK.Graphics.OpenGL.NvTextureShader.SignedRgb8Nv; - var _SignedLuminanceNv = OpenTK.Graphics.OpenGL.NvTextureShader.SignedLuminanceNv; - var _SignedLuminance8Nv = OpenTK.Graphics.OpenGL.NvTextureShader.SignedLuminance8Nv; - var _SignedLuminanceAlphaNv = OpenTK.Graphics.OpenGL.NvTextureShader.SignedLuminanceAlphaNv; - var _SignedLuminance8Alpha8Nv = OpenTK.Graphics.OpenGL.NvTextureShader.SignedLuminance8Alpha8Nv; - var _SignedAlphaNv = OpenTK.Graphics.OpenGL.NvTextureShader.SignedAlphaNv; - var _SignedAlpha8Nv = OpenTK.Graphics.OpenGL.NvTextureShader.SignedAlpha8Nv; - var _SignedIntensityNv = OpenTK.Graphics.OpenGL.NvTextureShader.SignedIntensityNv; - var _SignedIntensity8Nv = OpenTK.Graphics.OpenGL.NvTextureShader.SignedIntensity8Nv; - var _Dsdt8Nv = OpenTK.Graphics.OpenGL.NvTextureShader.Dsdt8Nv; - var _Dsdt8Mag8Nv = OpenTK.Graphics.OpenGL.NvTextureShader.Dsdt8Mag8Nv; - var _Dsdt8Mag8Intensity8Nv = OpenTK.Graphics.OpenGL.NvTextureShader.Dsdt8Mag8Intensity8Nv; - var _SignedRgbUnsignedAlphaNv = OpenTK.Graphics.OpenGL.NvTextureShader.SignedRgbUnsignedAlphaNv; - var _SignedRgb8UnsignedAlpha8Nv = OpenTK.Graphics.OpenGL.NvTextureShader.SignedRgb8UnsignedAlpha8Nv; - var _HiScaleNv = OpenTK.Graphics.OpenGL.NvTextureShader.HiScaleNv; - var _LoScaleNv = OpenTK.Graphics.OpenGL.NvTextureShader.LoScaleNv; - var _DsScaleNv = OpenTK.Graphics.OpenGL.NvTextureShader.DsScaleNv; - var _DtScaleNv = OpenTK.Graphics.OpenGL.NvTextureShader.DtScaleNv; - var _MagnitudeScaleNv = OpenTK.Graphics.OpenGL.NvTextureShader.MagnitudeScaleNv; - var _VibranceScaleNv = OpenTK.Graphics.OpenGL.NvTextureShader.VibranceScaleNv; - var _HiBiasNv = OpenTK.Graphics.OpenGL.NvTextureShader.HiBiasNv; - var _LoBiasNv = OpenTK.Graphics.OpenGL.NvTextureShader.LoBiasNv; - var _DsBiasNv = OpenTK.Graphics.OpenGL.NvTextureShader.DsBiasNv; - var _DtBiasNv = OpenTK.Graphics.OpenGL.NvTextureShader.DtBiasNv; - var _MagnitudeBiasNv = OpenTK.Graphics.OpenGL.NvTextureShader.MagnitudeBiasNv; - var _VibranceBiasNv = OpenTK.Graphics.OpenGL.NvTextureShader.VibranceBiasNv; - var _TextureBorderValuesNv = OpenTK.Graphics.OpenGL.NvTextureShader.TextureBorderValuesNv; - var _TextureHiSizeNv = OpenTK.Graphics.OpenGL.NvTextureShader.TextureHiSizeNv; - var _TextureLoSizeNv = OpenTK.Graphics.OpenGL.NvTextureShader.TextureLoSizeNv; - var _TextureDsSizeNv = OpenTK.Graphics.OpenGL.NvTextureShader.TextureDsSizeNv; - var _TextureDtSizeNv = OpenTK.Graphics.OpenGL.NvTextureShader.TextureDtSizeNv; - var _TextureMagSizeNv = OpenTK.Graphics.OpenGL.NvTextureShader.TextureMagSizeNv; -} -static void Test_NvTextureShader2_19854() { - var _DotProductTexture3DNv = OpenTK.Graphics.OpenGL.NvTextureShader2.DotProductTexture3DNv; -} -static void Test_NvTextureShader3_19855() { - var _OffsetProjectiveTexture2DNv = OpenTK.Graphics.OpenGL.NvTextureShader3.OffsetProjectiveTexture2DNv; - var _OffsetProjectiveTexture2DScaleNv = OpenTK.Graphics.OpenGL.NvTextureShader3.OffsetProjectiveTexture2DScaleNv; - var _OffsetProjectiveTextureRectangleNv = OpenTK.Graphics.OpenGL.NvTextureShader3.OffsetProjectiveTextureRectangleNv; - var _OffsetProjectiveTextureRectangleScaleNv = OpenTK.Graphics.OpenGL.NvTextureShader3.OffsetProjectiveTextureRectangleScaleNv; - var _OffsetHiloTexture2DNv = OpenTK.Graphics.OpenGL.NvTextureShader3.OffsetHiloTexture2DNv; - var _OffsetHiloTextureRectangleNv = OpenTK.Graphics.OpenGL.NvTextureShader3.OffsetHiloTextureRectangleNv; - var _OffsetHiloProjectiveTexture2DNv = OpenTK.Graphics.OpenGL.NvTextureShader3.OffsetHiloProjectiveTexture2DNv; - var _OffsetHiloProjectiveTextureRectangleNv = OpenTK.Graphics.OpenGL.NvTextureShader3.OffsetHiloProjectiveTextureRectangleNv; - var _DependentHiloTexture2DNv = OpenTK.Graphics.OpenGL.NvTextureShader3.DependentHiloTexture2DNv; - var _DependentRgbTexture3DNv = OpenTK.Graphics.OpenGL.NvTextureShader3.DependentRgbTexture3DNv; - var _DependentRgbTextureCubeMapNv = OpenTK.Graphics.OpenGL.NvTextureShader3.DependentRgbTextureCubeMapNv; - var _DotProductPassThroughNv = OpenTK.Graphics.OpenGL.NvTextureShader3.DotProductPassThroughNv; - var _DotProductTexture1DNv = OpenTK.Graphics.OpenGL.NvTextureShader3.DotProductTexture1DNv; - var _DotProductAffineDepthReplaceNv = OpenTK.Graphics.OpenGL.NvTextureShader3.DotProductAffineDepthReplaceNv; - var _Hilo8Nv = OpenTK.Graphics.OpenGL.NvTextureShader3.Hilo8Nv; - var _SignedHilo8Nv = OpenTK.Graphics.OpenGL.NvTextureShader3.SignedHilo8Nv; - var _ForceBlueToOneNv = OpenTK.Graphics.OpenGL.NvTextureShader3.ForceBlueToOneNv; -} -static void Test_NvTransformFeedback_19856() { - var _BackPrimaryColorNv = OpenTK.Graphics.OpenGL.NvTransformFeedback.BackPrimaryColorNv; - var _BackSecondaryColorNv = OpenTK.Graphics.OpenGL.NvTransformFeedback.BackSecondaryColorNv; - var _TextureCoordNv = OpenTK.Graphics.OpenGL.NvTransformFeedback.TextureCoordNv; - var _ClipDistanceNv = OpenTK.Graphics.OpenGL.NvTransformFeedback.ClipDistanceNv; - var _VertexIdNv = OpenTK.Graphics.OpenGL.NvTransformFeedback.VertexIdNv; - var _PrimitiveIdNv = OpenTK.Graphics.OpenGL.NvTransformFeedback.PrimitiveIdNv; - var _GenericAttribNv = OpenTK.Graphics.OpenGL.NvTransformFeedback.GenericAttribNv; - var _TransformFeedbackAttribsNv = OpenTK.Graphics.OpenGL.NvTransformFeedback.TransformFeedbackAttribsNv; - var _TransformFeedbackBufferModeNv = OpenTK.Graphics.OpenGL.NvTransformFeedback.TransformFeedbackBufferModeNv; - var _MaxTransformFeedbackSeparateComponentsNv = OpenTK.Graphics.OpenGL.NvTransformFeedback.MaxTransformFeedbackSeparateComponentsNv; - var _ActiveVaryingsNv = OpenTK.Graphics.OpenGL.NvTransformFeedback.ActiveVaryingsNv; - var _ActiveVaryingMaxLengthNv = OpenTK.Graphics.OpenGL.NvTransformFeedback.ActiveVaryingMaxLengthNv; - var _TransformFeedbackVaryingsNv = OpenTK.Graphics.OpenGL.NvTransformFeedback.TransformFeedbackVaryingsNv; - var _TransformFeedbackBufferStartNv = OpenTK.Graphics.OpenGL.NvTransformFeedback.TransformFeedbackBufferStartNv; - var _TransformFeedbackBufferSizeNv = OpenTK.Graphics.OpenGL.NvTransformFeedback.TransformFeedbackBufferSizeNv; - var _TransformFeedbackRecordNv = OpenTK.Graphics.OpenGL.NvTransformFeedback.TransformFeedbackRecordNv; - var _PrimitivesGeneratedNv = OpenTK.Graphics.OpenGL.NvTransformFeedback.PrimitivesGeneratedNv; - var _TransformFeedbackPrimitivesWrittenNv = OpenTK.Graphics.OpenGL.NvTransformFeedback.TransformFeedbackPrimitivesWrittenNv; - var _RasterizerDiscardNv = OpenTK.Graphics.OpenGL.NvTransformFeedback.RasterizerDiscardNv; - var _MaxTransformFeedbackInterleavedComponentsNv = OpenTK.Graphics.OpenGL.NvTransformFeedback.MaxTransformFeedbackInterleavedComponentsNv; - var _MaxTransformFeedbackSeparateAttribsNv = OpenTK.Graphics.OpenGL.NvTransformFeedback.MaxTransformFeedbackSeparateAttribsNv; - var _InterleavedAttribsNv = OpenTK.Graphics.OpenGL.NvTransformFeedback.InterleavedAttribsNv; - var _SeparateAttribsNv = OpenTK.Graphics.OpenGL.NvTransformFeedback.SeparateAttribsNv; - var _TransformFeedbackBufferNv = OpenTK.Graphics.OpenGL.NvTransformFeedback.TransformFeedbackBufferNv; - var _TransformFeedbackBufferBindingNv = OpenTK.Graphics.OpenGL.NvTransformFeedback.TransformFeedbackBufferBindingNv; - var _LayerNv = OpenTK.Graphics.OpenGL.NvTransformFeedback.LayerNv; - var _NextBufferNv = OpenTK.Graphics.OpenGL.NvTransformFeedback.NextBufferNv; - var _SkipComponents4Nv = OpenTK.Graphics.OpenGL.NvTransformFeedback.SkipComponents4Nv; - var _SkipComponents3Nv = OpenTK.Graphics.OpenGL.NvTransformFeedback.SkipComponents3Nv; - var _SkipComponents2Nv = OpenTK.Graphics.OpenGL.NvTransformFeedback.SkipComponents2Nv; - var _SkipComponents1Nv = OpenTK.Graphics.OpenGL.NvTransformFeedback.SkipComponents1Nv; -} -static void Test_NvTransformFeedback2_19857() { - var _TransformFeedbackNv = OpenTK.Graphics.OpenGL.NvTransformFeedback2.TransformFeedbackNv; - var _TransformFeedbackBufferPausedNv = OpenTK.Graphics.OpenGL.NvTransformFeedback2.TransformFeedbackBufferPausedNv; - var _TransformFeedbackBufferActiveNv = OpenTK.Graphics.OpenGL.NvTransformFeedback2.TransformFeedbackBufferActiveNv; - var _TransformFeedbackBindingNv = OpenTK.Graphics.OpenGL.NvTransformFeedback2.TransformFeedbackBindingNv; -} -static void Test_NvVdpauInterop_19858() { - var _SurfaceStateNv = OpenTK.Graphics.OpenGL.NvVdpauInterop.SurfaceStateNv; - var _SurfaceRegisteredNv = OpenTK.Graphics.OpenGL.NvVdpauInterop.SurfaceRegisteredNv; - var _SurfaceMappedNv = OpenTK.Graphics.OpenGL.NvVdpauInterop.SurfaceMappedNv; - var _WriteDiscardNv = OpenTK.Graphics.OpenGL.NvVdpauInterop.WriteDiscardNv; -} -static void Test_NvVertexArrayRange_19859() { - var _VertexArrayRangeNv = OpenTK.Graphics.OpenGL.NvVertexArrayRange.VertexArrayRangeNv; - var _VertexArrayRangeLengthNv = OpenTK.Graphics.OpenGL.NvVertexArrayRange.VertexArrayRangeLengthNv; - var _VertexArrayRangeValidNv = OpenTK.Graphics.OpenGL.NvVertexArrayRange.VertexArrayRangeValidNv; - var _MaxVertexArrayRangeElementNv = OpenTK.Graphics.OpenGL.NvVertexArrayRange.MaxVertexArrayRangeElementNv; - var _VertexArrayRangePointerNv = OpenTK.Graphics.OpenGL.NvVertexArrayRange.VertexArrayRangePointerNv; -} -static void Test_NvVertexArrayRange2_19860() { - var _VertexArrayRangeWithoutFlushNv = OpenTK.Graphics.OpenGL.NvVertexArrayRange2.VertexArrayRangeWithoutFlushNv; -} -static void Test_NvVertexAttribInteger64bit_19861() { - var _Int64Nv = OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit.Int64Nv; - var _UnsignedInt64Nv = OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit.UnsignedInt64Nv; -} -static void Test_NvVertexBufferUnifiedMemory_19862() { - var _VertexAttribArrayUnifiedNv = OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory.VertexAttribArrayUnifiedNv; - var _ElementArrayUnifiedNv = OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory.ElementArrayUnifiedNv; - var _VertexAttribArrayAddressNv = OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory.VertexAttribArrayAddressNv; - var _VertexArrayAddressNv = OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory.VertexArrayAddressNv; - var _NormalArrayAddressNv = OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory.NormalArrayAddressNv; - var _ColorArrayAddressNv = OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory.ColorArrayAddressNv; - var _IndexArrayAddressNv = OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory.IndexArrayAddressNv; - var _TextureCoordArrayAddressNv = OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory.TextureCoordArrayAddressNv; - var _EdgeFlagArrayAddressNv = OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory.EdgeFlagArrayAddressNv; - var _SecondaryColorArrayAddressNv = OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory.SecondaryColorArrayAddressNv; - var _FogCoordArrayAddressNv = OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory.FogCoordArrayAddressNv; - var _ElementArrayAddressNv = OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory.ElementArrayAddressNv; - var _VertexAttribArrayLengthNv = OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory.VertexAttribArrayLengthNv; - var _VertexArrayLengthNv = OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory.VertexArrayLengthNv; - var _NormalArrayLengthNv = OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory.NormalArrayLengthNv; - var _ColorArrayLengthNv = OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory.ColorArrayLengthNv; - var _IndexArrayLengthNv = OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory.IndexArrayLengthNv; - var _TextureCoordArrayLengthNv = OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory.TextureCoordArrayLengthNv; - var _EdgeFlagArrayLengthNv = OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory.EdgeFlagArrayLengthNv; - var _SecondaryColorArrayLengthNv = OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory.SecondaryColorArrayLengthNv; - var _FogCoordArrayLengthNv = OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory.FogCoordArrayLengthNv; - var _ElementArrayLengthNv = OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory.ElementArrayLengthNv; - var _DrawIndirectUnifiedNv = OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory.DrawIndirectUnifiedNv; - var _DrawIndirectAddressNv = OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory.DrawIndirectAddressNv; - var _DrawIndirectLengthNv = OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory.DrawIndirectLengthNv; -} -static void Test_NvVertexProgram_19863() { - var _VertexProgramNv = OpenTK.Graphics.OpenGL.NvVertexProgram.VertexProgramNv; - var _VertexStateProgramNv = OpenTK.Graphics.OpenGL.NvVertexProgram.VertexStateProgramNv; - var _AttribArraySizeNv = OpenTK.Graphics.OpenGL.NvVertexProgram.AttribArraySizeNv; - var _AttribArrayStrideNv = OpenTK.Graphics.OpenGL.NvVertexProgram.AttribArrayStrideNv; - var _AttribArrayTypeNv = OpenTK.Graphics.OpenGL.NvVertexProgram.AttribArrayTypeNv; - var _CurrentAttribNv = OpenTK.Graphics.OpenGL.NvVertexProgram.CurrentAttribNv; - var _ProgramLengthNv = OpenTK.Graphics.OpenGL.NvVertexProgram.ProgramLengthNv; - var _ProgramStringNv = OpenTK.Graphics.OpenGL.NvVertexProgram.ProgramStringNv; - var _ModelviewProjectionNv = OpenTK.Graphics.OpenGL.NvVertexProgram.ModelviewProjectionNv; - var _IdentityNv = OpenTK.Graphics.OpenGL.NvVertexProgram.IdentityNv; - var _InverseNv = OpenTK.Graphics.OpenGL.NvVertexProgram.InverseNv; - var _TransposeNv = OpenTK.Graphics.OpenGL.NvVertexProgram.TransposeNv; - var _InverseTransposeNv = OpenTK.Graphics.OpenGL.NvVertexProgram.InverseTransposeNv; - var _MaxTrackMatrixStackDepthNv = OpenTK.Graphics.OpenGL.NvVertexProgram.MaxTrackMatrixStackDepthNv; - var _MaxTrackMatricesNv = OpenTK.Graphics.OpenGL.NvVertexProgram.MaxTrackMatricesNv; - var _Matrix0Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.Matrix0Nv; - var _Matrix1Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.Matrix1Nv; - var _Matrix2Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.Matrix2Nv; - var _Matrix3Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.Matrix3Nv; - var _Matrix4Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.Matrix4Nv; - var _Matrix5Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.Matrix5Nv; - var _Matrix6Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.Matrix6Nv; - var _Matrix7Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.Matrix7Nv; - var _CurrentMatrixStackDepthNv = OpenTK.Graphics.OpenGL.NvVertexProgram.CurrentMatrixStackDepthNv; - var _CurrentMatrixNv = OpenTK.Graphics.OpenGL.NvVertexProgram.CurrentMatrixNv; - var _VertexProgramPointSizeNv = OpenTK.Graphics.OpenGL.NvVertexProgram.VertexProgramPointSizeNv; - var _VertexProgramTwoSideNv = OpenTK.Graphics.OpenGL.NvVertexProgram.VertexProgramTwoSideNv; - var _ProgramParameterNv = OpenTK.Graphics.OpenGL.NvVertexProgram.ProgramParameterNv; - var _AttribArrayPointerNv = OpenTK.Graphics.OpenGL.NvVertexProgram.AttribArrayPointerNv; - var _ProgramTargetNv = OpenTK.Graphics.OpenGL.NvVertexProgram.ProgramTargetNv; - var _ProgramResidentNv = OpenTK.Graphics.OpenGL.NvVertexProgram.ProgramResidentNv; - var _TrackMatrixNv = OpenTK.Graphics.OpenGL.NvVertexProgram.TrackMatrixNv; - var _TrackMatrixTransformNv = OpenTK.Graphics.OpenGL.NvVertexProgram.TrackMatrixTransformNv; - var _VertexProgramBindingNv = OpenTK.Graphics.OpenGL.NvVertexProgram.VertexProgramBindingNv; - var _ProgramErrorPositionNv = OpenTK.Graphics.OpenGL.NvVertexProgram.ProgramErrorPositionNv; - var _VertexAttribArray0Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.VertexAttribArray0Nv; - var _VertexAttribArray1Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.VertexAttribArray1Nv; - var _VertexAttribArray2Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.VertexAttribArray2Nv; - var _VertexAttribArray3Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.VertexAttribArray3Nv; - var _VertexAttribArray4Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.VertexAttribArray4Nv; - var _VertexAttribArray5Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.VertexAttribArray5Nv; - var _VertexAttribArray6Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.VertexAttribArray6Nv; - var _VertexAttribArray7Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.VertexAttribArray7Nv; - var _VertexAttribArray8Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.VertexAttribArray8Nv; - var _VertexAttribArray9Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.VertexAttribArray9Nv; - var _VertexAttribArray10Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.VertexAttribArray10Nv; - var _VertexAttribArray11Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.VertexAttribArray11Nv; - var _VertexAttribArray12Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.VertexAttribArray12Nv; - var _VertexAttribArray13Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.VertexAttribArray13Nv; - var _VertexAttribArray14Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.VertexAttribArray14Nv; - var _VertexAttribArray15Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.VertexAttribArray15Nv; - var _Map1VertexAttrib04Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.Map1VertexAttrib04Nv; - var _Map1VertexAttrib14Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.Map1VertexAttrib14Nv; - var _Map1VertexAttrib24Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.Map1VertexAttrib24Nv; - var _Map1VertexAttrib34Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.Map1VertexAttrib34Nv; - var _Map1VertexAttrib44Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.Map1VertexAttrib44Nv; - var _Map1VertexAttrib54Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.Map1VertexAttrib54Nv; - var _Map1VertexAttrib64Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.Map1VertexAttrib64Nv; - var _Map1VertexAttrib74Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.Map1VertexAttrib74Nv; - var _Map1VertexAttrib84Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.Map1VertexAttrib84Nv; - var _Map1VertexAttrib94Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.Map1VertexAttrib94Nv; - var _Map1VertexAttrib104Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.Map1VertexAttrib104Nv; - var _Map1VertexAttrib114Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.Map1VertexAttrib114Nv; - var _Map1VertexAttrib124Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.Map1VertexAttrib124Nv; - var _Map1VertexAttrib134Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.Map1VertexAttrib134Nv; - var _Map1VertexAttrib144Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.Map1VertexAttrib144Nv; - var _Map1VertexAttrib154Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.Map1VertexAttrib154Nv; - var _Map2VertexAttrib04Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.Map2VertexAttrib04Nv; - var _Map2VertexAttrib14Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.Map2VertexAttrib14Nv; - var _Map2VertexAttrib24Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.Map2VertexAttrib24Nv; - var _Map2VertexAttrib34Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.Map2VertexAttrib34Nv; - var _Map2VertexAttrib44Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.Map2VertexAttrib44Nv; - var _Map2VertexAttrib54Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.Map2VertexAttrib54Nv; - var _Map2VertexAttrib64Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.Map2VertexAttrib64Nv; - var _Map2VertexAttrib74Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.Map2VertexAttrib74Nv; - var _Map2VertexAttrib84Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.Map2VertexAttrib84Nv; - var _Map2VertexAttrib94Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.Map2VertexAttrib94Nv; - var _Map2VertexAttrib104Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.Map2VertexAttrib104Nv; - var _Map2VertexAttrib114Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.Map2VertexAttrib114Nv; - var _Map2VertexAttrib124Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.Map2VertexAttrib124Nv; - var _Map2VertexAttrib134Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.Map2VertexAttrib134Nv; - var _Map2VertexAttrib144Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.Map2VertexAttrib144Nv; - var _Map2VertexAttrib154Nv = OpenTK.Graphics.OpenGL.NvVertexProgram.Map2VertexAttrib154Nv; -} -static void Test_NvVertexProgram11_19864() { -} -static void Test_NvVertexProgram2_19865() { -} -static void Test_NvVertexProgram2Option_19866() { - var _MaxProgramExecInstructionsNv = OpenTK.Graphics.OpenGL.NvVertexProgram2Option.MaxProgramExecInstructionsNv; - var _MaxProgramCallDepthNv = OpenTK.Graphics.OpenGL.NvVertexProgram2Option.MaxProgramCallDepthNv; -} -static void Test_NvVertexProgram3_19867() { - var _MaxVertexTextureImageUnitsArb = OpenTK.Graphics.OpenGL.NvVertexProgram3.MaxVertexTextureImageUnitsArb; -} -static void Test_NvVertexProgram4_19868() { - var _VertexAttribArrayIntegerNv = OpenTK.Graphics.OpenGL.NvVertexProgram4.VertexAttribArrayIntegerNv; -} -static void Test_NvVideoCapture_19869() { - var _VideoBufferNv = OpenTK.Graphics.OpenGL.NvVideoCapture.VideoBufferNv; - var _VideoBufferBindingNv = OpenTK.Graphics.OpenGL.NvVideoCapture.VideoBufferBindingNv; - var _FieldUpperNv = OpenTK.Graphics.OpenGL.NvVideoCapture.FieldUpperNv; - var _FieldLowerNv = OpenTK.Graphics.OpenGL.NvVideoCapture.FieldLowerNv; - var _NumVideoCaptureStreamsNv = OpenTK.Graphics.OpenGL.NvVideoCapture.NumVideoCaptureStreamsNv; - var _NextVideoCaptureBufferStatusNv = OpenTK.Graphics.OpenGL.NvVideoCapture.NextVideoCaptureBufferStatusNv; - var _VideoCaptureTo422SupportedNv = OpenTK.Graphics.OpenGL.NvVideoCapture.VideoCaptureTo422SupportedNv; - var _LastVideoCaptureStatusNv = OpenTK.Graphics.OpenGL.NvVideoCapture.LastVideoCaptureStatusNv; - var _VideoBufferPitchNv = OpenTK.Graphics.OpenGL.NvVideoCapture.VideoBufferPitchNv; - var _VideoColorConversionMatrixNv = OpenTK.Graphics.OpenGL.NvVideoCapture.VideoColorConversionMatrixNv; - var _VideoColorConversionMaxNv = OpenTK.Graphics.OpenGL.NvVideoCapture.VideoColorConversionMaxNv; - var _VideoColorConversionMinNv = OpenTK.Graphics.OpenGL.NvVideoCapture.VideoColorConversionMinNv; - var _VideoColorConversionOffsetNv = OpenTK.Graphics.OpenGL.NvVideoCapture.VideoColorConversionOffsetNv; - var _VideoBufferInternalFormatNv = OpenTK.Graphics.OpenGL.NvVideoCapture.VideoBufferInternalFormatNv; - var _PartialSuccessNv = OpenTK.Graphics.OpenGL.NvVideoCapture.PartialSuccessNv; - var _SuccessNv = OpenTK.Graphics.OpenGL.NvVideoCapture.SuccessNv; - var _FailureNv = OpenTK.Graphics.OpenGL.NvVideoCapture.FailureNv; - var _Ycbycr8422Nv = OpenTK.Graphics.OpenGL.NvVideoCapture.Ycbycr8422Nv; - var _Ycbaycr8A4224Nv = OpenTK.Graphics.OpenGL.NvVideoCapture.Ycbaycr8A4224Nv; - var _Z6y10z6cb10z6y10z6cr10422Nv = OpenTK.Graphics.OpenGL.NvVideoCapture.Z6y10z6cb10z6y10z6cr10422Nv; - var _Z6y10z6cb10z6A10z6y10z6cr10z6A104224Nv = OpenTK.Graphics.OpenGL.NvVideoCapture.Z6y10z6cb10z6A10z6y10z6cr10z6A104224Nv; - var _Z4y12z4cb12z4y12z4cr12422Nv = OpenTK.Graphics.OpenGL.NvVideoCapture.Z4y12z4cb12z4y12z4cr12422Nv; - var _Z4y12z4cb12z4A12z4y12z4cr12z4A124224Nv = OpenTK.Graphics.OpenGL.NvVideoCapture.Z4y12z4cb12z4A12z4y12z4cr12z4A124224Nv; - var _Z4y12z4cb12z4cr12444Nv = OpenTK.Graphics.OpenGL.NvVideoCapture.Z4y12z4cb12z4cr12444Nv; - var _VideoCaptureFrameWidthNv = OpenTK.Graphics.OpenGL.NvVideoCapture.VideoCaptureFrameWidthNv; - var _VideoCaptureFrameHeightNv = OpenTK.Graphics.OpenGL.NvVideoCapture.VideoCaptureFrameHeightNv; - var _VideoCaptureFieldUpperHeightNv = OpenTK.Graphics.OpenGL.NvVideoCapture.VideoCaptureFieldUpperHeightNv; - var _VideoCaptureFieldLowerHeightNv = OpenTK.Graphics.OpenGL.NvVideoCapture.VideoCaptureFieldLowerHeightNv; - var _VideoCaptureSurfaceOriginNv = OpenTK.Graphics.OpenGL.NvVideoCapture.VideoCaptureSurfaceOriginNv; -} -static void Test_NvxConditionalRender_19870() { -} -static void Test_NvxGpuMemoryInfo_19871() { - var _GpuMemoryInfoDedicatedVidmemNvx = OpenTK.Graphics.OpenGL.NvxGpuMemoryInfo.GpuMemoryInfoDedicatedVidmemNvx; - var _GpuMemoryInfoTotalAvailableMemoryNvx = OpenTK.Graphics.OpenGL.NvxGpuMemoryInfo.GpuMemoryInfoTotalAvailableMemoryNvx; - var _GpuMemoryInfoCurrentAvailableVidmemNvx = OpenTK.Graphics.OpenGL.NvxGpuMemoryInfo.GpuMemoryInfoCurrentAvailableVidmemNvx; - var _GpuMemoryInfoEvictionCountNvx = OpenTK.Graphics.OpenGL.NvxGpuMemoryInfo.GpuMemoryInfoEvictionCountNvx; - var _GpuMemoryInfoEvictedMemoryNvx = OpenTK.Graphics.OpenGL.NvxGpuMemoryInfo.GpuMemoryInfoEvictedMemoryNvx; -} -static void Test_ObjectLabelIdentifier_19872() { - var _Texture = OpenTK.Graphics.OpenGL.ObjectLabelIdentifier.Texture; - var _VertexArray = OpenTK.Graphics.OpenGL.ObjectLabelIdentifier.VertexArray; - var _Buffer = OpenTK.Graphics.OpenGL.ObjectLabelIdentifier.Buffer; - var _Shader = OpenTK.Graphics.OpenGL.ObjectLabelIdentifier.Shader; - var _Program = OpenTK.Graphics.OpenGL.ObjectLabelIdentifier.Program; - var _Query = OpenTK.Graphics.OpenGL.ObjectLabelIdentifier.Query; - var _ProgramPipeline = OpenTK.Graphics.OpenGL.ObjectLabelIdentifier.ProgramPipeline; - var _Sampler = OpenTK.Graphics.OpenGL.ObjectLabelIdentifier.Sampler; - var _Framebuffer = OpenTK.Graphics.OpenGL.ObjectLabelIdentifier.Framebuffer; - var _Renderbuffer = OpenTK.Graphics.OpenGL.ObjectLabelIdentifier.Renderbuffer; - var _TransformFeedback = OpenTK.Graphics.OpenGL.ObjectLabelIdentifier.TransformFeedback; -} -static void Test_OcclusionQueryEventMaskAmd_19873() { - var _QueryDepthPassEventBitAmd = OpenTK.Graphics.OpenGL.OcclusionQueryEventMaskAmd.QueryDepthPassEventBitAmd; - var _QueryDepthFailEventBitAmd = OpenTK.Graphics.OpenGL.OcclusionQueryEventMaskAmd.QueryDepthFailEventBitAmd; - var _QueryStencilFailEventBitAmd = OpenTK.Graphics.OpenGL.OcclusionQueryEventMaskAmd.QueryStencilFailEventBitAmd; - var _QueryDepthBoundsFailEventBitAmd = OpenTK.Graphics.OpenGL.OcclusionQueryEventMaskAmd.QueryDepthBoundsFailEventBitAmd; - var _QueryAllEventBitsAmd = OpenTK.Graphics.OpenGL.OcclusionQueryEventMaskAmd.QueryAllEventBitsAmd; -} -static void Test_OesByteCoordinates_19874() { - var _Byte = OpenTK.Graphics.OpenGL.OesByteCoordinates.Byte; -} -static void Test_OesCompressedPalettedTexture_19875() { - var _Palette4Rgb8Oes = OpenTK.Graphics.OpenGL.OesCompressedPalettedTexture.Palette4Rgb8Oes; - var _Palette4Rgba8Oes = OpenTK.Graphics.OpenGL.OesCompressedPalettedTexture.Palette4Rgba8Oes; - var _Palette4R5G6B5Oes = OpenTK.Graphics.OpenGL.OesCompressedPalettedTexture.Palette4R5G6B5Oes; - var _Palette4Rgba4Oes = OpenTK.Graphics.OpenGL.OesCompressedPalettedTexture.Palette4Rgba4Oes; - var _Palette4Rgb5A1Oes = OpenTK.Graphics.OpenGL.OesCompressedPalettedTexture.Palette4Rgb5A1Oes; - var _Palette8Rgb8Oes = OpenTK.Graphics.OpenGL.OesCompressedPalettedTexture.Palette8Rgb8Oes; - var _Palette8Rgba8Oes = OpenTK.Graphics.OpenGL.OesCompressedPalettedTexture.Palette8Rgba8Oes; - var _Palette8R5G6B5Oes = OpenTK.Graphics.OpenGL.OesCompressedPalettedTexture.Palette8R5G6B5Oes; - var _Palette8Rgba4Oes = OpenTK.Graphics.OpenGL.OesCompressedPalettedTexture.Palette8Rgba4Oes; - var _Palette8Rgb5A1Oes = OpenTK.Graphics.OpenGL.OesCompressedPalettedTexture.Palette8Rgb5A1Oes; -} -static void Test_OesFixedPoint_19876() { - var _FixedOes = OpenTK.Graphics.OpenGL.OesFixedPoint.FixedOes; -} -static void Test_OesQueryMatrix_19877() { -} -static void Test_OesReadFormat_19878() { - var _ImplementationColorReadTypeOes = OpenTK.Graphics.OpenGL.OesReadFormat.ImplementationColorReadTypeOes; - var _ImplementationColorReadFormatOes = OpenTK.Graphics.OpenGL.OesReadFormat.ImplementationColorReadFormatOes; -} -static void Test_OesSinglePrecision_19879() { -} -static void Test_OmlInterlace_19880() { - var _InterlaceOml = OpenTK.Graphics.OpenGL.OmlInterlace.InterlaceOml; - var _InterlaceReadOml = OpenTK.Graphics.OpenGL.OmlInterlace.InterlaceReadOml; -} -static void Test_OmlResample_19881() { - var _PackResampleOml = OpenTK.Graphics.OpenGL.OmlResample.PackResampleOml; - var _UnpackResampleOml = OpenTK.Graphics.OpenGL.OmlResample.UnpackResampleOml; - var _ResampleReplicateOml = OpenTK.Graphics.OpenGL.OmlResample.ResampleReplicateOml; - var _ResampleZeroFillOml = OpenTK.Graphics.OpenGL.OmlResample.ResampleZeroFillOml; - var _ResampleAverageOml = OpenTK.Graphics.OpenGL.OmlResample.ResampleAverageOml; - var _ResampleDecimateOml = OpenTK.Graphics.OpenGL.OmlResample.ResampleDecimateOml; -} -static void Test_OmlSubsample_19882() { - var _FormatSubsample2424Oml = OpenTK.Graphics.OpenGL.OmlSubsample.FormatSubsample2424Oml; - var _FormatSubsample244244Oml = OpenTK.Graphics.OpenGL.OmlSubsample.FormatSubsample244244Oml; -} -static void Test_PackedPointerType_19883() { - var _UnsignedInt2101010Rev = OpenTK.Graphics.OpenGL.PackedPointerType.UnsignedInt2101010Rev; - var _Int2101010Rev = OpenTK.Graphics.OpenGL.PackedPointerType.Int2101010Rev; -} -static void Test_PatchParameterFloat_19884() { - var _PatchDefaultInnerLevel = OpenTK.Graphics.OpenGL.PatchParameterFloat.PatchDefaultInnerLevel; - var _PatchDefaultOuterLevel = OpenTK.Graphics.OpenGL.PatchParameterFloat.PatchDefaultOuterLevel; -} -static void Test_PatchParameterInt_19885() { - var _PatchVertices = OpenTK.Graphics.OpenGL.PatchParameterInt.PatchVertices; -} -static void Test_PgiMiscHints_19886() { - var _PreferDoublebufferHintPgi = OpenTK.Graphics.OpenGL.PgiMiscHints.PreferDoublebufferHintPgi; - var _ConserveMemoryHintPgi = OpenTK.Graphics.OpenGL.PgiMiscHints.ConserveMemoryHintPgi; - var _ReclaimMemoryHintPgi = OpenTK.Graphics.OpenGL.PgiMiscHints.ReclaimMemoryHintPgi; - var _NativeGraphicsHandlePgi = OpenTK.Graphics.OpenGL.PgiMiscHints.NativeGraphicsHandlePgi; - var _NativeGraphicsBeginHintPgi = OpenTK.Graphics.OpenGL.PgiMiscHints.NativeGraphicsBeginHintPgi; - var _NativeGraphicsEndHintPgi = OpenTK.Graphics.OpenGL.PgiMiscHints.NativeGraphicsEndHintPgi; - var _AlwaysFastHintPgi = OpenTK.Graphics.OpenGL.PgiMiscHints.AlwaysFastHintPgi; - var _AlwaysSoftHintPgi = OpenTK.Graphics.OpenGL.PgiMiscHints.AlwaysSoftHintPgi; - var _AllowDrawObjHintPgi = OpenTK.Graphics.OpenGL.PgiMiscHints.AllowDrawObjHintPgi; - var _AllowDrawWinHintPgi = OpenTK.Graphics.OpenGL.PgiMiscHints.AllowDrawWinHintPgi; - var _AllowDrawFrgHintPgi = OpenTK.Graphics.OpenGL.PgiMiscHints.AllowDrawFrgHintPgi; - var _AllowDrawMemHintPgi = OpenTK.Graphics.OpenGL.PgiMiscHints.AllowDrawMemHintPgi; - var _StrictDepthfuncHintPgi = OpenTK.Graphics.OpenGL.PgiMiscHints.StrictDepthfuncHintPgi; - var _StrictLightingHintPgi = OpenTK.Graphics.OpenGL.PgiMiscHints.StrictLightingHintPgi; - var _StrictScissorHintPgi = OpenTK.Graphics.OpenGL.PgiMiscHints.StrictScissorHintPgi; - var _FullStippleHintPgi = OpenTK.Graphics.OpenGL.PgiMiscHints.FullStippleHintPgi; - var _ClipNearHintPgi = OpenTK.Graphics.OpenGL.PgiMiscHints.ClipNearHintPgi; - var _ClipFarHintPgi = OpenTK.Graphics.OpenGL.PgiMiscHints.ClipFarHintPgi; - var _WideLineHintPgi = OpenTK.Graphics.OpenGL.PgiMiscHints.WideLineHintPgi; - var _BackNormalsHintPgi = OpenTK.Graphics.OpenGL.PgiMiscHints.BackNormalsHintPgi; -} -static void Test_PgiVertexHints_19887() { - var _Vertex23BitPgi = OpenTK.Graphics.OpenGL.PgiVertexHints.Vertex23BitPgi; - var _Vertex4BitPgi = OpenTK.Graphics.OpenGL.PgiVertexHints.Vertex4BitPgi; - var _Color3BitPgi = OpenTK.Graphics.OpenGL.PgiVertexHints.Color3BitPgi; - var _Color4BitPgi = OpenTK.Graphics.OpenGL.PgiVertexHints.Color4BitPgi; - var _EdgeflagBitPgi = OpenTK.Graphics.OpenGL.PgiVertexHints.EdgeflagBitPgi; - var _IndexBitPgi = OpenTK.Graphics.OpenGL.PgiVertexHints.IndexBitPgi; - var _MatAmbientBitPgi = OpenTK.Graphics.OpenGL.PgiVertexHints.MatAmbientBitPgi; - var _MatAmbientAndDiffuseBitPgi = OpenTK.Graphics.OpenGL.PgiVertexHints.MatAmbientAndDiffuseBitPgi; - var _MatDiffuseBitPgi = OpenTK.Graphics.OpenGL.PgiVertexHints.MatDiffuseBitPgi; - var _MatEmissionBitPgi = OpenTK.Graphics.OpenGL.PgiVertexHints.MatEmissionBitPgi; - var _MatColorIndexesBitPgi = OpenTK.Graphics.OpenGL.PgiVertexHints.MatColorIndexesBitPgi; - var _MatShininessBitPgi = OpenTK.Graphics.OpenGL.PgiVertexHints.MatShininessBitPgi; - var _MatSpecularBitPgi = OpenTK.Graphics.OpenGL.PgiVertexHints.MatSpecularBitPgi; - var _NormalBitPgi = OpenTK.Graphics.OpenGL.PgiVertexHints.NormalBitPgi; - var _Texcoord1BitPgi = OpenTK.Graphics.OpenGL.PgiVertexHints.Texcoord1BitPgi; - var _VertexDataHintPgi = OpenTK.Graphics.OpenGL.PgiVertexHints.VertexDataHintPgi; - var _VertexConsistentHintPgi = OpenTK.Graphics.OpenGL.PgiVertexHints.VertexConsistentHintPgi; - var _MaterialSideHintPgi = OpenTK.Graphics.OpenGL.PgiVertexHints.MaterialSideHintPgi; - var _MaxVertexHintPgi = OpenTK.Graphics.OpenGL.PgiVertexHints.MaxVertexHintPgi; - var _Texcoord2BitPgi = OpenTK.Graphics.OpenGL.PgiVertexHints.Texcoord2BitPgi; - var _Texcoord3BitPgi = OpenTK.Graphics.OpenGL.PgiVertexHints.Texcoord3BitPgi; - var _Texcoord4BitPgi = OpenTK.Graphics.OpenGL.PgiVertexHints.Texcoord4BitPgi; -} -static void Test_PixelCopyType_19888() { - var _Color = OpenTK.Graphics.OpenGL.PixelCopyType.Color; - var _ColorExt = OpenTK.Graphics.OpenGL.PixelCopyType.ColorExt; - var _Depth = OpenTK.Graphics.OpenGL.PixelCopyType.Depth; - var _DepthExt = OpenTK.Graphics.OpenGL.PixelCopyType.DepthExt; - var _Stencil = OpenTK.Graphics.OpenGL.PixelCopyType.Stencil; - var _StencilExt = OpenTK.Graphics.OpenGL.PixelCopyType.StencilExt; -} -static void Test_PixelFormat_19889() { - var _UnsignedShort = OpenTK.Graphics.OpenGL.PixelFormat.UnsignedShort; - var _UnsignedInt = OpenTK.Graphics.OpenGL.PixelFormat.UnsignedInt; - var _ColorIndex = OpenTK.Graphics.OpenGL.PixelFormat.ColorIndex; - var _StencilIndex = OpenTK.Graphics.OpenGL.PixelFormat.StencilIndex; - var _DepthComponent = OpenTK.Graphics.OpenGL.PixelFormat.DepthComponent; - var _Red = OpenTK.Graphics.OpenGL.PixelFormat.Red; - var _RedExt = OpenTK.Graphics.OpenGL.PixelFormat.RedExt; - var _Green = OpenTK.Graphics.OpenGL.PixelFormat.Green; - var _Blue = OpenTK.Graphics.OpenGL.PixelFormat.Blue; - var _Alpha = OpenTK.Graphics.OpenGL.PixelFormat.Alpha; - var _Rgb = OpenTK.Graphics.OpenGL.PixelFormat.Rgb; - var _Rgba = OpenTK.Graphics.OpenGL.PixelFormat.Rgba; - var _Luminance = OpenTK.Graphics.OpenGL.PixelFormat.Luminance; - var _LuminanceAlpha = OpenTK.Graphics.OpenGL.PixelFormat.LuminanceAlpha; - var _AbgrExt = OpenTK.Graphics.OpenGL.PixelFormat.AbgrExt; - var _CmykExt = OpenTK.Graphics.OpenGL.PixelFormat.CmykExt; - var _CmykaExt = OpenTK.Graphics.OpenGL.PixelFormat.CmykaExt; - var _Bgr = OpenTK.Graphics.OpenGL.PixelFormat.Bgr; - var _Bgra = OpenTK.Graphics.OpenGL.PixelFormat.Bgra; - var _Ycrcb422Sgix = OpenTK.Graphics.OpenGL.PixelFormat.Ycrcb422Sgix; - var _Ycrcb444Sgix = OpenTK.Graphics.OpenGL.PixelFormat.Ycrcb444Sgix; - var _Rg = OpenTK.Graphics.OpenGL.PixelFormat.Rg; - var _RgInteger = OpenTK.Graphics.OpenGL.PixelFormat.RgInteger; - var _R5G6B5IccSgix = OpenTK.Graphics.OpenGL.PixelFormat.R5G6B5IccSgix; - var _R5G6B5A8IccSgix = OpenTK.Graphics.OpenGL.PixelFormat.R5G6B5A8IccSgix; - var _Alpha16IccSgix = OpenTK.Graphics.OpenGL.PixelFormat.Alpha16IccSgix; - var _Luminance16IccSgix = OpenTK.Graphics.OpenGL.PixelFormat.Luminance16IccSgix; - var _Luminance16Alpha8IccSgix = OpenTK.Graphics.OpenGL.PixelFormat.Luminance16Alpha8IccSgix; - var _DepthStencil = OpenTK.Graphics.OpenGL.PixelFormat.DepthStencil; - var _RedInteger = OpenTK.Graphics.OpenGL.PixelFormat.RedInteger; - var _GreenInteger = OpenTK.Graphics.OpenGL.PixelFormat.GreenInteger; - var _BlueInteger = OpenTK.Graphics.OpenGL.PixelFormat.BlueInteger; - var _AlphaInteger = OpenTK.Graphics.OpenGL.PixelFormat.AlphaInteger; - var _RgbInteger = OpenTK.Graphics.OpenGL.PixelFormat.RgbInteger; - var _RgbaInteger = OpenTK.Graphics.OpenGL.PixelFormat.RgbaInteger; - var _BgrInteger = OpenTK.Graphics.OpenGL.PixelFormat.BgrInteger; - var _BgraInteger = OpenTK.Graphics.OpenGL.PixelFormat.BgraInteger; -} -static void Test_PixelInternalFormat_19890() { - var _DepthComponent = OpenTK.Graphics.OpenGL.PixelInternalFormat.DepthComponent; - var _Alpha = OpenTK.Graphics.OpenGL.PixelInternalFormat.Alpha; - var _Rgb = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rgb; - var _Rgba = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rgba; - var _Luminance = OpenTK.Graphics.OpenGL.PixelInternalFormat.Luminance; - var _LuminanceAlpha = OpenTK.Graphics.OpenGL.PixelInternalFormat.LuminanceAlpha; - var _R3G3B2 = OpenTK.Graphics.OpenGL.PixelInternalFormat.R3G3B2; - var _Alpha4 = OpenTK.Graphics.OpenGL.PixelInternalFormat.Alpha4; - var _Alpha8 = OpenTK.Graphics.OpenGL.PixelInternalFormat.Alpha8; - var _Alpha12 = OpenTK.Graphics.OpenGL.PixelInternalFormat.Alpha12; - var _Alpha16 = OpenTK.Graphics.OpenGL.PixelInternalFormat.Alpha16; - var _Luminance4 = OpenTK.Graphics.OpenGL.PixelInternalFormat.Luminance4; - var _Luminance8 = OpenTK.Graphics.OpenGL.PixelInternalFormat.Luminance8; - var _Luminance12 = OpenTK.Graphics.OpenGL.PixelInternalFormat.Luminance12; - var _Luminance16 = OpenTK.Graphics.OpenGL.PixelInternalFormat.Luminance16; - var _Luminance4Alpha4 = OpenTK.Graphics.OpenGL.PixelInternalFormat.Luminance4Alpha4; - var _Luminance6Alpha2 = OpenTK.Graphics.OpenGL.PixelInternalFormat.Luminance6Alpha2; - var _Luminance8Alpha8 = OpenTK.Graphics.OpenGL.PixelInternalFormat.Luminance8Alpha8; - var _Luminance12Alpha4 = OpenTK.Graphics.OpenGL.PixelInternalFormat.Luminance12Alpha4; - var _Luminance12Alpha12 = OpenTK.Graphics.OpenGL.PixelInternalFormat.Luminance12Alpha12; - var _Luminance16Alpha16 = OpenTK.Graphics.OpenGL.PixelInternalFormat.Luminance16Alpha16; - var _Intensity = OpenTK.Graphics.OpenGL.PixelInternalFormat.Intensity; - var _Intensity4 = OpenTK.Graphics.OpenGL.PixelInternalFormat.Intensity4; - var _Intensity8 = OpenTK.Graphics.OpenGL.PixelInternalFormat.Intensity8; - var _Intensity12 = OpenTK.Graphics.OpenGL.PixelInternalFormat.Intensity12; - var _Intensity16 = OpenTK.Graphics.OpenGL.PixelInternalFormat.Intensity16; - var _Rgb2Ext = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rgb2Ext; - var _Rgb4 = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rgb4; - var _Rgb5 = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rgb5; - var _Rgb8 = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rgb8; - var _Rgb10 = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rgb10; - var _Rgb12 = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rgb12; - var _Rgb16 = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rgb16; - var _Rgba2 = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rgba2; - var _Rgba4 = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rgba4; - var _Rgb5A1 = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rgb5A1; - var _Rgba8 = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rgba8; - var _Rgb10A2 = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rgb10A2; - var _Rgba12 = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rgba12; - var _Rgba16 = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rgba16; - var _DualAlpha4Sgis = OpenTK.Graphics.OpenGL.PixelInternalFormat.DualAlpha4Sgis; - var _DualAlpha8Sgis = OpenTK.Graphics.OpenGL.PixelInternalFormat.DualAlpha8Sgis; - var _DualAlpha12Sgis = OpenTK.Graphics.OpenGL.PixelInternalFormat.DualAlpha12Sgis; - var _DualAlpha16Sgis = OpenTK.Graphics.OpenGL.PixelInternalFormat.DualAlpha16Sgis; - var _DualLuminance4Sgis = OpenTK.Graphics.OpenGL.PixelInternalFormat.DualLuminance4Sgis; - var _DualLuminance8Sgis = OpenTK.Graphics.OpenGL.PixelInternalFormat.DualLuminance8Sgis; - var _DualLuminance12Sgis = OpenTK.Graphics.OpenGL.PixelInternalFormat.DualLuminance12Sgis; - var _DualLuminance16Sgis = OpenTK.Graphics.OpenGL.PixelInternalFormat.DualLuminance16Sgis; - var _DualIntensity4Sgis = OpenTK.Graphics.OpenGL.PixelInternalFormat.DualIntensity4Sgis; - var _DualIntensity8Sgis = OpenTK.Graphics.OpenGL.PixelInternalFormat.DualIntensity8Sgis; - var _DualIntensity12Sgis = OpenTK.Graphics.OpenGL.PixelInternalFormat.DualIntensity12Sgis; - var _DualIntensity16Sgis = OpenTK.Graphics.OpenGL.PixelInternalFormat.DualIntensity16Sgis; - var _DualLuminanceAlpha4Sgis = OpenTK.Graphics.OpenGL.PixelInternalFormat.DualLuminanceAlpha4Sgis; - var _DualLuminanceAlpha8Sgis = OpenTK.Graphics.OpenGL.PixelInternalFormat.DualLuminanceAlpha8Sgis; - var _QuadAlpha4Sgis = OpenTK.Graphics.OpenGL.PixelInternalFormat.QuadAlpha4Sgis; - var _QuadAlpha8Sgis = OpenTK.Graphics.OpenGL.PixelInternalFormat.QuadAlpha8Sgis; - var _QuadLuminance4Sgis = OpenTK.Graphics.OpenGL.PixelInternalFormat.QuadLuminance4Sgis; - var _QuadLuminance8Sgis = OpenTK.Graphics.OpenGL.PixelInternalFormat.QuadLuminance8Sgis; - var _QuadIntensity4Sgis = OpenTK.Graphics.OpenGL.PixelInternalFormat.QuadIntensity4Sgis; - var _QuadIntensity8Sgis = OpenTK.Graphics.OpenGL.PixelInternalFormat.QuadIntensity8Sgis; - var _DepthComponent16 = OpenTK.Graphics.OpenGL.PixelInternalFormat.DepthComponent16; - var _DepthComponent16Sgix = OpenTK.Graphics.OpenGL.PixelInternalFormat.DepthComponent16Sgix; - var _DepthComponent24 = OpenTK.Graphics.OpenGL.PixelInternalFormat.DepthComponent24; - var _DepthComponent24Sgix = OpenTK.Graphics.OpenGL.PixelInternalFormat.DepthComponent24Sgix; - var _DepthComponent32 = OpenTK.Graphics.OpenGL.PixelInternalFormat.DepthComponent32; - var _DepthComponent32Sgix = OpenTK.Graphics.OpenGL.PixelInternalFormat.DepthComponent32Sgix; - var _CompressedRed = OpenTK.Graphics.OpenGL.PixelInternalFormat.CompressedRed; - var _CompressedRg = OpenTK.Graphics.OpenGL.PixelInternalFormat.CompressedRg; - var _R8 = OpenTK.Graphics.OpenGL.PixelInternalFormat.R8; - var _R16 = OpenTK.Graphics.OpenGL.PixelInternalFormat.R16; - var _Rg8 = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rg8; - var _Rg16 = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rg16; - var _R16f = OpenTK.Graphics.OpenGL.PixelInternalFormat.R16f; - var _R32f = OpenTK.Graphics.OpenGL.PixelInternalFormat.R32f; - var _Rg16f = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rg16f; - var _Rg32f = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rg32f; - var _R8i = OpenTK.Graphics.OpenGL.PixelInternalFormat.R8i; - var _R8ui = OpenTK.Graphics.OpenGL.PixelInternalFormat.R8ui; - var _R16i = OpenTK.Graphics.OpenGL.PixelInternalFormat.R16i; - var _R16ui = OpenTK.Graphics.OpenGL.PixelInternalFormat.R16ui; - var _R32i = OpenTK.Graphics.OpenGL.PixelInternalFormat.R32i; - var _R32ui = OpenTK.Graphics.OpenGL.PixelInternalFormat.R32ui; - var _Rg8i = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rg8i; - var _Rg8ui = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rg8ui; - var _Rg16i = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rg16i; - var _Rg16ui = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rg16ui; - var _Rg32i = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rg32i; - var _Rg32ui = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rg32ui; - var _CompressedRgbS3tcDxt1Ext = OpenTK.Graphics.OpenGL.PixelInternalFormat.CompressedRgbS3tcDxt1Ext; - var _CompressedRgbaS3tcDxt1Ext = OpenTK.Graphics.OpenGL.PixelInternalFormat.CompressedRgbaS3tcDxt1Ext; - var _CompressedRgbaS3tcDxt3Ext = OpenTK.Graphics.OpenGL.PixelInternalFormat.CompressedRgbaS3tcDxt3Ext; - var _CompressedRgbaS3tcDxt5Ext = OpenTK.Graphics.OpenGL.PixelInternalFormat.CompressedRgbaS3tcDxt5Ext; - var _RgbIccSgix = OpenTK.Graphics.OpenGL.PixelInternalFormat.RgbIccSgix; - var _RgbaIccSgix = OpenTK.Graphics.OpenGL.PixelInternalFormat.RgbaIccSgix; - var _AlphaIccSgix = OpenTK.Graphics.OpenGL.PixelInternalFormat.AlphaIccSgix; - var _LuminanceIccSgix = OpenTK.Graphics.OpenGL.PixelInternalFormat.LuminanceIccSgix; - var _IntensityIccSgix = OpenTK.Graphics.OpenGL.PixelInternalFormat.IntensityIccSgix; - var _LuminanceAlphaIccSgix = OpenTK.Graphics.OpenGL.PixelInternalFormat.LuminanceAlphaIccSgix; - var _R5G6B5IccSgix = OpenTK.Graphics.OpenGL.PixelInternalFormat.R5G6B5IccSgix; - var _R5G6B5A8IccSgix = OpenTK.Graphics.OpenGL.PixelInternalFormat.R5G6B5A8IccSgix; - var _Alpha16IccSgix = OpenTK.Graphics.OpenGL.PixelInternalFormat.Alpha16IccSgix; - var _Luminance16IccSgix = OpenTK.Graphics.OpenGL.PixelInternalFormat.Luminance16IccSgix; - var _Intensity16IccSgix = OpenTK.Graphics.OpenGL.PixelInternalFormat.Intensity16IccSgix; - var _Luminance16Alpha8IccSgix = OpenTK.Graphics.OpenGL.PixelInternalFormat.Luminance16Alpha8IccSgix; - var _CompressedAlpha = OpenTK.Graphics.OpenGL.PixelInternalFormat.CompressedAlpha; - var _CompressedLuminance = OpenTK.Graphics.OpenGL.PixelInternalFormat.CompressedLuminance; - var _CompressedLuminanceAlpha = OpenTK.Graphics.OpenGL.PixelInternalFormat.CompressedLuminanceAlpha; - var _CompressedIntensity = OpenTK.Graphics.OpenGL.PixelInternalFormat.CompressedIntensity; - var _CompressedRgb = OpenTK.Graphics.OpenGL.PixelInternalFormat.CompressedRgb; - var _CompressedRgba = OpenTK.Graphics.OpenGL.PixelInternalFormat.CompressedRgba; - var _DepthStencil = OpenTK.Graphics.OpenGL.PixelInternalFormat.DepthStencil; - var _Rgba32f = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rgba32f; - var _Rgb32f = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rgb32f; - var _Rgba16f = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rgba16f; - var _Rgb16f = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rgb16f; - var _Depth24Stencil8 = OpenTK.Graphics.OpenGL.PixelInternalFormat.Depth24Stencil8; - var _R11fG11fB10f = OpenTK.Graphics.OpenGL.PixelInternalFormat.R11fG11fB10f; - var _Rgb9E5 = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rgb9E5; - var _Srgb = OpenTK.Graphics.OpenGL.PixelInternalFormat.Srgb; - var _Srgb8 = OpenTK.Graphics.OpenGL.PixelInternalFormat.Srgb8; - var _SrgbAlpha = OpenTK.Graphics.OpenGL.PixelInternalFormat.SrgbAlpha; - var _Srgb8Alpha8 = OpenTK.Graphics.OpenGL.PixelInternalFormat.Srgb8Alpha8; - var _SluminanceAlpha = OpenTK.Graphics.OpenGL.PixelInternalFormat.SluminanceAlpha; - var _Sluminance8Alpha8 = OpenTK.Graphics.OpenGL.PixelInternalFormat.Sluminance8Alpha8; - var _Sluminance = OpenTK.Graphics.OpenGL.PixelInternalFormat.Sluminance; - var _Sluminance8 = OpenTK.Graphics.OpenGL.PixelInternalFormat.Sluminance8; - var _CompressedSrgb = OpenTK.Graphics.OpenGL.PixelInternalFormat.CompressedSrgb; - var _CompressedSrgbAlpha = OpenTK.Graphics.OpenGL.PixelInternalFormat.CompressedSrgbAlpha; - var _CompressedSluminance = OpenTK.Graphics.OpenGL.PixelInternalFormat.CompressedSluminance; - var _CompressedSluminanceAlpha = OpenTK.Graphics.OpenGL.PixelInternalFormat.CompressedSluminanceAlpha; - var _CompressedSrgbS3tcDxt1Ext = OpenTK.Graphics.OpenGL.PixelInternalFormat.CompressedSrgbS3tcDxt1Ext; - var _CompressedSrgbAlphaS3tcDxt1Ext = OpenTK.Graphics.OpenGL.PixelInternalFormat.CompressedSrgbAlphaS3tcDxt1Ext; - var _CompressedSrgbAlphaS3tcDxt3Ext = OpenTK.Graphics.OpenGL.PixelInternalFormat.CompressedSrgbAlphaS3tcDxt3Ext; - var _CompressedSrgbAlphaS3tcDxt5Ext = OpenTK.Graphics.OpenGL.PixelInternalFormat.CompressedSrgbAlphaS3tcDxt5Ext; - var _DepthComponent32f = OpenTK.Graphics.OpenGL.PixelInternalFormat.DepthComponent32f; - var _Depth32fStencil8 = OpenTK.Graphics.OpenGL.PixelInternalFormat.Depth32fStencil8; - var _Rgba32ui = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rgba32ui; - var _Rgb32ui = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rgb32ui; - var _Rgba16ui = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rgba16ui; - var _Rgb16ui = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rgb16ui; - var _Rgba8ui = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rgba8ui; - var _Rgb8ui = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rgb8ui; - var _Rgba32i = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rgba32i; - var _Rgb32i = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rgb32i; - var _Rgba16i = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rgba16i; - var _Rgb16i = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rgb16i; - var _Rgba8i = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rgba8i; - var _Rgb8i = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rgb8i; - var _Float32UnsignedInt248Rev = OpenTK.Graphics.OpenGL.PixelInternalFormat.Float32UnsignedInt248Rev; - var _CompressedRedRgtc1 = OpenTK.Graphics.OpenGL.PixelInternalFormat.CompressedRedRgtc1; - var _CompressedSignedRedRgtc1 = OpenTK.Graphics.OpenGL.PixelInternalFormat.CompressedSignedRedRgtc1; - var _CompressedRgRgtc2 = OpenTK.Graphics.OpenGL.PixelInternalFormat.CompressedRgRgtc2; - var _CompressedSignedRgRgtc2 = OpenTK.Graphics.OpenGL.PixelInternalFormat.CompressedSignedRgRgtc2; - var _CompressedRgbaBptcUnorm = OpenTK.Graphics.OpenGL.PixelInternalFormat.CompressedRgbaBptcUnorm; - var _CompressedRgbBptcSignedFloat = OpenTK.Graphics.OpenGL.PixelInternalFormat.CompressedRgbBptcSignedFloat; - var _CompressedRgbBptcUnsignedFloat = OpenTK.Graphics.OpenGL.PixelInternalFormat.CompressedRgbBptcUnsignedFloat; - var _R8Snorm = OpenTK.Graphics.OpenGL.PixelInternalFormat.R8Snorm; - var _Rg8Snorm = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rg8Snorm; - var _Rgb8Snorm = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rgb8Snorm; - var _Rgba8Snorm = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rgba8Snorm; - var _R16Snorm = OpenTK.Graphics.OpenGL.PixelInternalFormat.R16Snorm; - var _Rg16Snorm = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rg16Snorm; - var _Rgb16Snorm = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rgb16Snorm; - var _Rgba16Snorm = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rgba16Snorm; - var _Rgb10A2ui = OpenTK.Graphics.OpenGL.PixelInternalFormat.Rgb10A2ui; - var _One = OpenTK.Graphics.OpenGL.PixelInternalFormat.One; - var _Two = OpenTK.Graphics.OpenGL.PixelInternalFormat.Two; - var _Three = OpenTK.Graphics.OpenGL.PixelInternalFormat.Three; - var _Four = OpenTK.Graphics.OpenGL.PixelInternalFormat.Four; -} -static void Test_PixelMap_19891() { - var _PixelMapIToI = OpenTK.Graphics.OpenGL.PixelMap.PixelMapIToI; - var _PixelMapSToS = OpenTK.Graphics.OpenGL.PixelMap.PixelMapSToS; - var _PixelMapIToR = OpenTK.Graphics.OpenGL.PixelMap.PixelMapIToR; - var _PixelMapIToG = OpenTK.Graphics.OpenGL.PixelMap.PixelMapIToG; - var _PixelMapIToB = OpenTK.Graphics.OpenGL.PixelMap.PixelMapIToB; - var _PixelMapIToA = OpenTK.Graphics.OpenGL.PixelMap.PixelMapIToA; - var _PixelMapRToR = OpenTK.Graphics.OpenGL.PixelMap.PixelMapRToR; - var _PixelMapGToG = OpenTK.Graphics.OpenGL.PixelMap.PixelMapGToG; - var _PixelMapBToB = OpenTK.Graphics.OpenGL.PixelMap.PixelMapBToB; - var _PixelMapAToA = OpenTK.Graphics.OpenGL.PixelMap.PixelMapAToA; -} -static void Test_PixelStoreParameter_19892() { - var _UnpackSwapBytes = OpenTK.Graphics.OpenGL.PixelStoreParameter.UnpackSwapBytes; - var _UnpackLsbFirst = OpenTK.Graphics.OpenGL.PixelStoreParameter.UnpackLsbFirst; - var _UnpackRowLength = OpenTK.Graphics.OpenGL.PixelStoreParameter.UnpackRowLength; - var _UnpackRowLengthExt = OpenTK.Graphics.OpenGL.PixelStoreParameter.UnpackRowLengthExt; - var _UnpackSkipRows = OpenTK.Graphics.OpenGL.PixelStoreParameter.UnpackSkipRows; - var _UnpackSkipRowsExt = OpenTK.Graphics.OpenGL.PixelStoreParameter.UnpackSkipRowsExt; - var _UnpackSkipPixels = OpenTK.Graphics.OpenGL.PixelStoreParameter.UnpackSkipPixels; - var _UnpackSkipPixelsExt = OpenTK.Graphics.OpenGL.PixelStoreParameter.UnpackSkipPixelsExt; - var _UnpackAlignment = OpenTK.Graphics.OpenGL.PixelStoreParameter.UnpackAlignment; - var _PackSwapBytes = OpenTK.Graphics.OpenGL.PixelStoreParameter.PackSwapBytes; - var _PackLsbFirst = OpenTK.Graphics.OpenGL.PixelStoreParameter.PackLsbFirst; - var _PackRowLength = OpenTK.Graphics.OpenGL.PixelStoreParameter.PackRowLength; - var _PackSkipRows = OpenTK.Graphics.OpenGL.PixelStoreParameter.PackSkipRows; - var _PackSkipPixels = OpenTK.Graphics.OpenGL.PixelStoreParameter.PackSkipPixels; - var _PackAlignment = OpenTK.Graphics.OpenGL.PixelStoreParameter.PackAlignment; - var _PackSkipImages = OpenTK.Graphics.OpenGL.PixelStoreParameter.PackSkipImages; - var _PackSkipImagesExt = OpenTK.Graphics.OpenGL.PixelStoreParameter.PackSkipImagesExt; - var _PackImageHeight = OpenTK.Graphics.OpenGL.PixelStoreParameter.PackImageHeight; - var _PackImageHeightExt = OpenTK.Graphics.OpenGL.PixelStoreParameter.PackImageHeightExt; - var _UnpackSkipImages = OpenTK.Graphics.OpenGL.PixelStoreParameter.UnpackSkipImages; - var _UnpackSkipImagesExt = OpenTK.Graphics.OpenGL.PixelStoreParameter.UnpackSkipImagesExt; - var _UnpackImageHeight = OpenTK.Graphics.OpenGL.PixelStoreParameter.UnpackImageHeight; - var _UnpackImageHeightExt = OpenTK.Graphics.OpenGL.PixelStoreParameter.UnpackImageHeightExt; - var _PackSkipVolumesSgis = OpenTK.Graphics.OpenGL.PixelStoreParameter.PackSkipVolumesSgis; - var _PackImageDepthSgis = OpenTK.Graphics.OpenGL.PixelStoreParameter.PackImageDepthSgis; - var _UnpackSkipVolumesSgis = OpenTK.Graphics.OpenGL.PixelStoreParameter.UnpackSkipVolumesSgis; - var _UnpackImageDepthSgis = OpenTK.Graphics.OpenGL.PixelStoreParameter.UnpackImageDepthSgis; - var _PixelTileWidthSgix = OpenTK.Graphics.OpenGL.PixelStoreParameter.PixelTileWidthSgix; - var _PixelTileHeightSgix = OpenTK.Graphics.OpenGL.PixelStoreParameter.PixelTileHeightSgix; - var _PixelTileGridWidthSgix = OpenTK.Graphics.OpenGL.PixelStoreParameter.PixelTileGridWidthSgix; - var _PixelTileGridHeightSgix = OpenTK.Graphics.OpenGL.PixelStoreParameter.PixelTileGridHeightSgix; - var _PixelTileGridDepthSgix = OpenTK.Graphics.OpenGL.PixelStoreParameter.PixelTileGridDepthSgix; - var _PixelTileCacheSizeSgix = OpenTK.Graphics.OpenGL.PixelStoreParameter.PixelTileCacheSizeSgix; - var _PackResampleSgix = OpenTK.Graphics.OpenGL.PixelStoreParameter.PackResampleSgix; - var _UnpackResampleSgix = OpenTK.Graphics.OpenGL.PixelStoreParameter.UnpackResampleSgix; - var _PackSubsampleRateSgix = OpenTK.Graphics.OpenGL.PixelStoreParameter.PackSubsampleRateSgix; - var _UnpackSubsampleRateSgix = OpenTK.Graphics.OpenGL.PixelStoreParameter.UnpackSubsampleRateSgix; - var _PackResampleOml = OpenTK.Graphics.OpenGL.PixelStoreParameter.PackResampleOml; - var _UnpackResampleOml = OpenTK.Graphics.OpenGL.PixelStoreParameter.UnpackResampleOml; - var _UnpackCompressedBlockWidth = OpenTK.Graphics.OpenGL.PixelStoreParameter.UnpackCompressedBlockWidth; - var _UnpackCompressedBlockHeight = OpenTK.Graphics.OpenGL.PixelStoreParameter.UnpackCompressedBlockHeight; - var _UnpackCompressedBlockDepth = OpenTK.Graphics.OpenGL.PixelStoreParameter.UnpackCompressedBlockDepth; - var _UnpackCompressedBlockSize = OpenTK.Graphics.OpenGL.PixelStoreParameter.UnpackCompressedBlockSize; - var _PackCompressedBlockWidth = OpenTK.Graphics.OpenGL.PixelStoreParameter.PackCompressedBlockWidth; - var _PackCompressedBlockHeight = OpenTK.Graphics.OpenGL.PixelStoreParameter.PackCompressedBlockHeight; - var _PackCompressedBlockDepth = OpenTK.Graphics.OpenGL.PixelStoreParameter.PackCompressedBlockDepth; - var _PackCompressedBlockSize = OpenTK.Graphics.OpenGL.PixelStoreParameter.PackCompressedBlockSize; -} -static void Test_PixelStoreResampleMode_19893() { - var _ResampleReplicateSgix = OpenTK.Graphics.OpenGL.PixelStoreResampleMode.ResampleReplicateSgix; - var _ResampleZeroFillSgix = OpenTK.Graphics.OpenGL.PixelStoreResampleMode.ResampleZeroFillSgix; - var _ResampleDecimateSgix = OpenTK.Graphics.OpenGL.PixelStoreResampleMode.ResampleDecimateSgix; -} -static void Test_PixelStoreSubsampleRate_19894() { - var _PixelSubsample4444Sgix = OpenTK.Graphics.OpenGL.PixelStoreSubsampleRate.PixelSubsample4444Sgix; - var _PixelSubsample2424Sgix = OpenTK.Graphics.OpenGL.PixelStoreSubsampleRate.PixelSubsample2424Sgix; - var _PixelSubsample4242Sgix = OpenTK.Graphics.OpenGL.PixelStoreSubsampleRate.PixelSubsample4242Sgix; -} -static void Test_PixelTexGenMode_19895() { - var _None = OpenTK.Graphics.OpenGL.PixelTexGenMode.None; - var _Rgb = OpenTK.Graphics.OpenGL.PixelTexGenMode.Rgb; - var _Rgba = OpenTK.Graphics.OpenGL.PixelTexGenMode.Rgba; - var _Luminance = OpenTK.Graphics.OpenGL.PixelTexGenMode.Luminance; - var _LuminanceAlpha = OpenTK.Graphics.OpenGL.PixelTexGenMode.LuminanceAlpha; - var _PixelTexGenAlphaReplaceSgix = OpenTK.Graphics.OpenGL.PixelTexGenMode.PixelTexGenAlphaReplaceSgix; - var _PixelTexGenAlphaNoReplaceSgix = OpenTK.Graphics.OpenGL.PixelTexGenMode.PixelTexGenAlphaNoReplaceSgix; - var _PixelTexGenAlphaLsSgix = OpenTK.Graphics.OpenGL.PixelTexGenMode.PixelTexGenAlphaLsSgix; - var _PixelTexGenAlphaMsSgix = OpenTK.Graphics.OpenGL.PixelTexGenMode.PixelTexGenAlphaMsSgix; -} -static void Test_PixelTexGenParameterNameSgis_19896() { - var _PixelFragmentRgbSourceSgis = OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis.PixelFragmentRgbSourceSgis; - var _PixelFragmentAlphaSourceSgis = OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis.PixelFragmentAlphaSourceSgis; -} -static void Test_PixelTransferParameter_19897() { - var _MapColor = OpenTK.Graphics.OpenGL.PixelTransferParameter.MapColor; - var _MapStencil = OpenTK.Graphics.OpenGL.PixelTransferParameter.MapStencil; - var _IndexShift = OpenTK.Graphics.OpenGL.PixelTransferParameter.IndexShift; - var _IndexOffset = OpenTK.Graphics.OpenGL.PixelTransferParameter.IndexOffset; - var _RedScale = OpenTK.Graphics.OpenGL.PixelTransferParameter.RedScale; - var _RedBias = OpenTK.Graphics.OpenGL.PixelTransferParameter.RedBias; - var _GreenScale = OpenTK.Graphics.OpenGL.PixelTransferParameter.GreenScale; - var _GreenBias = OpenTK.Graphics.OpenGL.PixelTransferParameter.GreenBias; - var _BlueScale = OpenTK.Graphics.OpenGL.PixelTransferParameter.BlueScale; - var _BlueBias = OpenTK.Graphics.OpenGL.PixelTransferParameter.BlueBias; - var _AlphaScale = OpenTK.Graphics.OpenGL.PixelTransferParameter.AlphaScale; - var _AlphaBias = OpenTK.Graphics.OpenGL.PixelTransferParameter.AlphaBias; - var _DepthScale = OpenTK.Graphics.OpenGL.PixelTransferParameter.DepthScale; - var _DepthBias = OpenTK.Graphics.OpenGL.PixelTransferParameter.DepthBias; - var _PostConvolutionRedScale = OpenTK.Graphics.OpenGL.PixelTransferParameter.PostConvolutionRedScale; - var _PostConvolutionRedScaleExt = OpenTK.Graphics.OpenGL.PixelTransferParameter.PostConvolutionRedScaleExt; - var _PostConvolutionGreenScale = OpenTK.Graphics.OpenGL.PixelTransferParameter.PostConvolutionGreenScale; - var _PostConvolutionGreenScaleExt = OpenTK.Graphics.OpenGL.PixelTransferParameter.PostConvolutionGreenScaleExt; - var _PostConvolutionBlueScale = OpenTK.Graphics.OpenGL.PixelTransferParameter.PostConvolutionBlueScale; - var _PostConvolutionBlueScaleExt = OpenTK.Graphics.OpenGL.PixelTransferParameter.PostConvolutionBlueScaleExt; - var _PostConvolutionAlphaScale = OpenTK.Graphics.OpenGL.PixelTransferParameter.PostConvolutionAlphaScale; - var _PostConvolutionAlphaScaleExt = OpenTK.Graphics.OpenGL.PixelTransferParameter.PostConvolutionAlphaScaleExt; - var _PostConvolutionRedBias = OpenTK.Graphics.OpenGL.PixelTransferParameter.PostConvolutionRedBias; - var _PostConvolutionRedBiasExt = OpenTK.Graphics.OpenGL.PixelTransferParameter.PostConvolutionRedBiasExt; - var _PostConvolutionGreenBias = OpenTK.Graphics.OpenGL.PixelTransferParameter.PostConvolutionGreenBias; - var _PostConvolutionGreenBiasExt = OpenTK.Graphics.OpenGL.PixelTransferParameter.PostConvolutionGreenBiasExt; - var _PostConvolutionBlueBias = OpenTK.Graphics.OpenGL.PixelTransferParameter.PostConvolutionBlueBias; - var _PostConvolutionBlueBiasExt = OpenTK.Graphics.OpenGL.PixelTransferParameter.PostConvolutionBlueBiasExt; - var _PostConvolutionAlphaBias = OpenTK.Graphics.OpenGL.PixelTransferParameter.PostConvolutionAlphaBias; - var _PostConvolutionAlphaBiasExt = OpenTK.Graphics.OpenGL.PixelTransferParameter.PostConvolutionAlphaBiasExt; - var _PostColorMatrixRedScale = OpenTK.Graphics.OpenGL.PixelTransferParameter.PostColorMatrixRedScale; - var _PostColorMatrixRedScaleSgi = OpenTK.Graphics.OpenGL.PixelTransferParameter.PostColorMatrixRedScaleSgi; - var _PostColorMatrixGreenScale = OpenTK.Graphics.OpenGL.PixelTransferParameter.PostColorMatrixGreenScale; - var _PostColorMatrixGreenScaleSgi = OpenTK.Graphics.OpenGL.PixelTransferParameter.PostColorMatrixGreenScaleSgi; - var _PostColorMatrixBlueScale = OpenTK.Graphics.OpenGL.PixelTransferParameter.PostColorMatrixBlueScale; - var _PostColorMatrixBlueScaleSgi = OpenTK.Graphics.OpenGL.PixelTransferParameter.PostColorMatrixBlueScaleSgi; - var _PostColorMatrixAlphaScale = OpenTK.Graphics.OpenGL.PixelTransferParameter.PostColorMatrixAlphaScale; - var _PostColorMatrixAlphaScaleSgi = OpenTK.Graphics.OpenGL.PixelTransferParameter.PostColorMatrixAlphaScaleSgi; - var _PostColorMatrixRedBias = OpenTK.Graphics.OpenGL.PixelTransferParameter.PostColorMatrixRedBias; - var _PostColorMatrixRedBiasSgi = OpenTK.Graphics.OpenGL.PixelTransferParameter.PostColorMatrixRedBiasSgi; - var _PostColorMatrixGreenBias = OpenTK.Graphics.OpenGL.PixelTransferParameter.PostColorMatrixGreenBias; - var _PostColorMatrixGreenBiasSgi = OpenTK.Graphics.OpenGL.PixelTransferParameter.PostColorMatrixGreenBiasSgi; - var _PostColorMatrixBlueBias = OpenTK.Graphics.OpenGL.PixelTransferParameter.PostColorMatrixBlueBias; - var _PostColorMatrixBlueBiasSgi = OpenTK.Graphics.OpenGL.PixelTransferParameter.PostColorMatrixBlueBiasSgi; - var _PostColorMatrixAlphaBias = OpenTK.Graphics.OpenGL.PixelTransferParameter.PostColorMatrixAlphaBias; - var _PostColorMatrixAlphaBiasSgi = OpenTK.Graphics.OpenGL.PixelTransferParameter.PostColorMatrixAlphaBiasSgi; -} -static void Test_PixelType_19898() { - var _Byte = OpenTK.Graphics.OpenGL.PixelType.Byte; - var _UnsignedByte = OpenTK.Graphics.OpenGL.PixelType.UnsignedByte; - var _Short = OpenTK.Graphics.OpenGL.PixelType.Short; - var _UnsignedShort = OpenTK.Graphics.OpenGL.PixelType.UnsignedShort; - var _Int = OpenTK.Graphics.OpenGL.PixelType.Int; - var _UnsignedInt = OpenTK.Graphics.OpenGL.PixelType.UnsignedInt; - var _Float = OpenTK.Graphics.OpenGL.PixelType.Float; - var _HalfFloat = OpenTK.Graphics.OpenGL.PixelType.HalfFloat; - var _Bitmap = OpenTK.Graphics.OpenGL.PixelType.Bitmap; - var _UnsignedByte332 = OpenTK.Graphics.OpenGL.PixelType.UnsignedByte332; - var _UnsignedByte332Ext = OpenTK.Graphics.OpenGL.PixelType.UnsignedByte332Ext; - var _UnsignedShort4444 = OpenTK.Graphics.OpenGL.PixelType.UnsignedShort4444; - var _UnsignedShort4444Ext = OpenTK.Graphics.OpenGL.PixelType.UnsignedShort4444Ext; - var _UnsignedShort5551 = OpenTK.Graphics.OpenGL.PixelType.UnsignedShort5551; - var _UnsignedShort5551Ext = OpenTK.Graphics.OpenGL.PixelType.UnsignedShort5551Ext; - var _UnsignedInt8888 = OpenTK.Graphics.OpenGL.PixelType.UnsignedInt8888; - var _UnsignedInt8888Ext = OpenTK.Graphics.OpenGL.PixelType.UnsignedInt8888Ext; - var _UnsignedInt1010102 = OpenTK.Graphics.OpenGL.PixelType.UnsignedInt1010102; - var _UnsignedInt1010102Ext = OpenTK.Graphics.OpenGL.PixelType.UnsignedInt1010102Ext; - var _UnsignedByte233Reversed = OpenTK.Graphics.OpenGL.PixelType.UnsignedByte233Reversed; - var _UnsignedShort565 = OpenTK.Graphics.OpenGL.PixelType.UnsignedShort565; - var _UnsignedShort565Reversed = OpenTK.Graphics.OpenGL.PixelType.UnsignedShort565Reversed; - var _UnsignedShort4444Reversed = OpenTK.Graphics.OpenGL.PixelType.UnsignedShort4444Reversed; - var _UnsignedShort1555Reversed = OpenTK.Graphics.OpenGL.PixelType.UnsignedShort1555Reversed; - var _UnsignedInt8888Reversed = OpenTK.Graphics.OpenGL.PixelType.UnsignedInt8888Reversed; - var _UnsignedInt2101010Reversed = OpenTK.Graphics.OpenGL.PixelType.UnsignedInt2101010Reversed; - var _UnsignedInt248 = OpenTK.Graphics.OpenGL.PixelType.UnsignedInt248; - var _UnsignedInt10F11F11FRev = OpenTK.Graphics.OpenGL.PixelType.UnsignedInt10F11F11FRev; - var _UnsignedInt5999Rev = OpenTK.Graphics.OpenGL.PixelType.UnsignedInt5999Rev; - var _Float32UnsignedInt248Rev = OpenTK.Graphics.OpenGL.PixelType.Float32UnsignedInt248Rev; -} -static void Test_PointParameterName_19899() { - var _PointSizeMin = OpenTK.Graphics.OpenGL.PointParameterName.PointSizeMin; - var _PointSizeMax = OpenTK.Graphics.OpenGL.PointParameterName.PointSizeMax; - var _PointFadeThresholdSize = OpenTK.Graphics.OpenGL.PointParameterName.PointFadeThresholdSize; - var _PointDistanceAttenuation = OpenTK.Graphics.OpenGL.PointParameterName.PointDistanceAttenuation; - var _PointSpriteCoordOrigin = OpenTK.Graphics.OpenGL.PointParameterName.PointSpriteCoordOrigin; -} -static void Test_PointParameterNameSgis_19900() { - var _PointSizeMin = OpenTK.Graphics.OpenGL.PointParameterNameSgis.PointSizeMin; - var _PointSizeMinArb = OpenTK.Graphics.OpenGL.PointParameterNameSgis.PointSizeMinArb; - var _PointSizeMinExt = OpenTK.Graphics.OpenGL.PointParameterNameSgis.PointSizeMinExt; - var _PointSizeMinSgis = OpenTK.Graphics.OpenGL.PointParameterNameSgis.PointSizeMinSgis; - var _PointSizeMax = OpenTK.Graphics.OpenGL.PointParameterNameSgis.PointSizeMax; - var _PointSizeMaxArb = OpenTK.Graphics.OpenGL.PointParameterNameSgis.PointSizeMaxArb; - var _PointSizeMaxExt = OpenTK.Graphics.OpenGL.PointParameterNameSgis.PointSizeMaxExt; - var _PointSizeMaxSgis = OpenTK.Graphics.OpenGL.PointParameterNameSgis.PointSizeMaxSgis; - var _PointFadeThresholdSize = OpenTK.Graphics.OpenGL.PointParameterNameSgis.PointFadeThresholdSize; - var _PointFadeThresholdSizeArb = OpenTK.Graphics.OpenGL.PointParameterNameSgis.PointFadeThresholdSizeArb; - var _PointFadeThresholdSizeExt = OpenTK.Graphics.OpenGL.PointParameterNameSgis.PointFadeThresholdSizeExt; - var _PointFadeThresholdSizeSgis = OpenTK.Graphics.OpenGL.PointParameterNameSgis.PointFadeThresholdSizeSgis; - var _DistanceAttenuationExt = OpenTK.Graphics.OpenGL.PointParameterNameSgis.DistanceAttenuationExt; - var _DistanceAttenuationSgis = OpenTK.Graphics.OpenGL.PointParameterNameSgis.DistanceAttenuationSgis; - var _PointDistanceAttenuation = OpenTK.Graphics.OpenGL.PointParameterNameSgis.PointDistanceAttenuation; - var _PointDistanceAttenuationArb = OpenTK.Graphics.OpenGL.PointParameterNameSgis.PointDistanceAttenuationArb; -} -static void Test_PointSpriteCoordOriginParameter_19901() { - var _LowerLeft = OpenTK.Graphics.OpenGL.PointSpriteCoordOriginParameter.LowerLeft; - var _UpperLeft = OpenTK.Graphics.OpenGL.PointSpriteCoordOriginParameter.UpperLeft; -} -static void Test_PolygonMode_19902() { - var _Point = OpenTK.Graphics.OpenGL.PolygonMode.Point; - var _Line = OpenTK.Graphics.OpenGL.PolygonMode.Line; - var _Fill = OpenTK.Graphics.OpenGL.PolygonMode.Fill; -} -static void Test_PrimitiveType_19903() { - var _Points = OpenTK.Graphics.OpenGL.PrimitiveType.Points; - var _Lines = OpenTK.Graphics.OpenGL.PrimitiveType.Lines; - var _LineLoop = OpenTK.Graphics.OpenGL.PrimitiveType.LineLoop; - var _LineStrip = OpenTK.Graphics.OpenGL.PrimitiveType.LineStrip; - var _Triangles = OpenTK.Graphics.OpenGL.PrimitiveType.Triangles; - var _TriangleStrip = OpenTK.Graphics.OpenGL.PrimitiveType.TriangleStrip; - var _TriangleFan = OpenTK.Graphics.OpenGL.PrimitiveType.TriangleFan; - var _Quads = OpenTK.Graphics.OpenGL.PrimitiveType.Quads; - var _QuadsExt = OpenTK.Graphics.OpenGL.PrimitiveType.QuadsExt; - var _QuadStrip = OpenTK.Graphics.OpenGL.PrimitiveType.QuadStrip; - var _Polygon = OpenTK.Graphics.OpenGL.PrimitiveType.Polygon; - var _LinesAdjacency = OpenTK.Graphics.OpenGL.PrimitiveType.LinesAdjacency; - var _LinesAdjacencyArb = OpenTK.Graphics.OpenGL.PrimitiveType.LinesAdjacencyArb; - var _LinesAdjacencyExt = OpenTK.Graphics.OpenGL.PrimitiveType.LinesAdjacencyExt; - var _LineStripAdjacency = OpenTK.Graphics.OpenGL.PrimitiveType.LineStripAdjacency; - var _LineStripAdjacencyArb = OpenTK.Graphics.OpenGL.PrimitiveType.LineStripAdjacencyArb; - var _LineStripAdjacencyExt = OpenTK.Graphics.OpenGL.PrimitiveType.LineStripAdjacencyExt; - var _TrianglesAdjacency = OpenTK.Graphics.OpenGL.PrimitiveType.TrianglesAdjacency; - var _TrianglesAdjacencyArb = OpenTK.Graphics.OpenGL.PrimitiveType.TrianglesAdjacencyArb; - var _TrianglesAdjacencyExt = OpenTK.Graphics.OpenGL.PrimitiveType.TrianglesAdjacencyExt; - var _TriangleStripAdjacency = OpenTK.Graphics.OpenGL.PrimitiveType.TriangleStripAdjacency; - var _TriangleStripAdjacencyArb = OpenTK.Graphics.OpenGL.PrimitiveType.TriangleStripAdjacencyArb; - var _TriangleStripAdjacencyExt = OpenTK.Graphics.OpenGL.PrimitiveType.TriangleStripAdjacencyExt; - var _Patches = OpenTK.Graphics.OpenGL.PrimitiveType.Patches; - var _PatchesExt = OpenTK.Graphics.OpenGL.PrimitiveType.PatchesExt; -} -static void Test_ProgramInterface_19904() { - var _TransformFeedbackBuffer = OpenTK.Graphics.OpenGL.ProgramInterface.TransformFeedbackBuffer; - var _AtomicCounterBuffer = OpenTK.Graphics.OpenGL.ProgramInterface.AtomicCounterBuffer; - var _Uniform = OpenTK.Graphics.OpenGL.ProgramInterface.Uniform; - var _UniformBlock = OpenTK.Graphics.OpenGL.ProgramInterface.UniformBlock; - var _ProgramInput = OpenTK.Graphics.OpenGL.ProgramInterface.ProgramInput; - var _ProgramOutput = OpenTK.Graphics.OpenGL.ProgramInterface.ProgramOutput; - var _BufferVariable = OpenTK.Graphics.OpenGL.ProgramInterface.BufferVariable; - var _ShaderStorageBlock = OpenTK.Graphics.OpenGL.ProgramInterface.ShaderStorageBlock; - var _VertexSubroutine = OpenTK.Graphics.OpenGL.ProgramInterface.VertexSubroutine; - var _TessControlSubroutine = OpenTK.Graphics.OpenGL.ProgramInterface.TessControlSubroutine; - var _TessEvaluationSubroutine = OpenTK.Graphics.OpenGL.ProgramInterface.TessEvaluationSubroutine; - var _GeometrySubroutine = OpenTK.Graphics.OpenGL.ProgramInterface.GeometrySubroutine; - var _FragmentSubroutine = OpenTK.Graphics.OpenGL.ProgramInterface.FragmentSubroutine; - var _ComputeSubroutine = OpenTK.Graphics.OpenGL.ProgramInterface.ComputeSubroutine; - var _VertexSubroutineUniform = OpenTK.Graphics.OpenGL.ProgramInterface.VertexSubroutineUniform; - var _TessControlSubroutineUniform = OpenTK.Graphics.OpenGL.ProgramInterface.TessControlSubroutineUniform; - var _TessEvaluationSubroutineUniform = OpenTK.Graphics.OpenGL.ProgramInterface.TessEvaluationSubroutineUniform; - var _GeometrySubroutineUniform = OpenTK.Graphics.OpenGL.ProgramInterface.GeometrySubroutineUniform; - var _FragmentSubroutineUniform = OpenTK.Graphics.OpenGL.ProgramInterface.FragmentSubroutineUniform; - var _ComputeSubroutineUniform = OpenTK.Graphics.OpenGL.ProgramInterface.ComputeSubroutineUniform; - var _TransformFeedbackVarying = OpenTK.Graphics.OpenGL.ProgramInterface.TransformFeedbackVarying; -} -static void Test_ProgramInterfaceParameter_19905() { - var _ActiveResources = OpenTK.Graphics.OpenGL.ProgramInterfaceParameter.ActiveResources; - var _MaxNameLength = OpenTK.Graphics.OpenGL.ProgramInterfaceParameter.MaxNameLength; - var _MaxNumActiveVariables = OpenTK.Graphics.OpenGL.ProgramInterfaceParameter.MaxNumActiveVariables; - var _MaxNumCompatibleSubroutines = OpenTK.Graphics.OpenGL.ProgramInterfaceParameter.MaxNumCompatibleSubroutines; -} -static void Test_ProgramParameter_19906() { - var _ProgramBinaryRetrievableHint = OpenTK.Graphics.OpenGL.ProgramParameter.ProgramBinaryRetrievableHint; - var _ProgramSeparable = OpenTK.Graphics.OpenGL.ProgramParameter.ProgramSeparable; - var _GeometryShaderInvocations = OpenTK.Graphics.OpenGL.ProgramParameter.GeometryShaderInvocations; - var _GeometryVerticesOut = OpenTK.Graphics.OpenGL.ProgramParameter.GeometryVerticesOut; - var _GeometryInputType = OpenTK.Graphics.OpenGL.ProgramParameter.GeometryInputType; - var _GeometryOutputType = OpenTK.Graphics.OpenGL.ProgramParameter.GeometryOutputType; - var _ActiveUniformBlockMaxNameLength = OpenTK.Graphics.OpenGL.ProgramParameter.ActiveUniformBlockMaxNameLength; - var _ActiveUniformBlocks = OpenTK.Graphics.OpenGL.ProgramParameter.ActiveUniformBlocks; - var _DeleteStatus = OpenTK.Graphics.OpenGL.ProgramParameter.DeleteStatus; - var _LinkStatus = OpenTK.Graphics.OpenGL.ProgramParameter.LinkStatus; - var _ValidateStatus = OpenTK.Graphics.OpenGL.ProgramParameter.ValidateStatus; - var _InfoLogLength = OpenTK.Graphics.OpenGL.ProgramParameter.InfoLogLength; - var _AttachedShaders = OpenTK.Graphics.OpenGL.ProgramParameter.AttachedShaders; - var _ActiveUniforms = OpenTK.Graphics.OpenGL.ProgramParameter.ActiveUniforms; - var _ActiveUniformMaxLength = OpenTK.Graphics.OpenGL.ProgramParameter.ActiveUniformMaxLength; - var _ActiveAttributes = OpenTK.Graphics.OpenGL.ProgramParameter.ActiveAttributes; - var _ActiveAttributeMaxLength = OpenTK.Graphics.OpenGL.ProgramParameter.ActiveAttributeMaxLength; - var _TransformFeedbackVaryingMaxLength = OpenTK.Graphics.OpenGL.ProgramParameter.TransformFeedbackVaryingMaxLength; - var _TransformFeedbackBufferMode = OpenTK.Graphics.OpenGL.ProgramParameter.TransformFeedbackBufferMode; - var _TransformFeedbackVaryings = OpenTK.Graphics.OpenGL.ProgramParameter.TransformFeedbackVaryings; - var _TessControlOutputVertices = OpenTK.Graphics.OpenGL.ProgramParameter.TessControlOutputVertices; - var _TessGenMode = OpenTK.Graphics.OpenGL.ProgramParameter.TessGenMode; - var _TessGenSpacing = OpenTK.Graphics.OpenGL.ProgramParameter.TessGenSpacing; - var _TessGenVertexOrder = OpenTK.Graphics.OpenGL.ProgramParameter.TessGenVertexOrder; - var _TessGenPointMode = OpenTK.Graphics.OpenGL.ProgramParameter.TessGenPointMode; - var _MaxComputeWorkGroupSize = OpenTK.Graphics.OpenGL.ProgramParameter.MaxComputeWorkGroupSize; - var _ActiveAtomicCounterBuffers = OpenTK.Graphics.OpenGL.ProgramParameter.ActiveAtomicCounterBuffers; -} -static void Test_ProgramParameterName_19907() { - var _ProgramBinaryRetrievableHint = OpenTK.Graphics.OpenGL.ProgramParameterName.ProgramBinaryRetrievableHint; - var _ProgramSeparable = OpenTK.Graphics.OpenGL.ProgramParameterName.ProgramSeparable; -} -static void Test_ProgramParameterPName_19908() { - var _ProgramBinaryRetrievableHint = OpenTK.Graphics.OpenGL.ProgramParameterPName.ProgramBinaryRetrievableHint; - var _ProgramSeparable = OpenTK.Graphics.OpenGL.ProgramParameterPName.ProgramSeparable; -} -static void Test_ProgramPipelineParameter_19909() { - var _ActiveProgram = OpenTK.Graphics.OpenGL.ProgramPipelineParameter.ActiveProgram; - var _FragmentShader = OpenTK.Graphics.OpenGL.ProgramPipelineParameter.FragmentShader; - var _VertexShader = OpenTK.Graphics.OpenGL.ProgramPipelineParameter.VertexShader; - var _ValidateStatus = OpenTK.Graphics.OpenGL.ProgramPipelineParameter.ValidateStatus; - var _InfoLogLength = OpenTK.Graphics.OpenGL.ProgramPipelineParameter.InfoLogLength; - var _GeometryShader = OpenTK.Graphics.OpenGL.ProgramPipelineParameter.GeometryShader; - var _TessEvaluationShader = OpenTK.Graphics.OpenGL.ProgramPipelineParameter.TessEvaluationShader; - var _TessControlShader = OpenTK.Graphics.OpenGL.ProgramPipelineParameter.TessControlShader; - var _ComputeShader = OpenTK.Graphics.OpenGL.ProgramPipelineParameter.ComputeShader; -} -static void Test_ProgramProperty_19910() { - var _NumCompatibleSubroutines = OpenTK.Graphics.OpenGL.ProgramProperty.NumCompatibleSubroutines; - var _CompatibleSubroutines = OpenTK.Graphics.OpenGL.ProgramProperty.CompatibleSubroutines; - var _IsPerPatch = OpenTK.Graphics.OpenGL.ProgramProperty.IsPerPatch; - var _NameLength = OpenTK.Graphics.OpenGL.ProgramProperty.NameLength; - var _Type = OpenTK.Graphics.OpenGL.ProgramProperty.Type; - var _ArraySize = OpenTK.Graphics.OpenGL.ProgramProperty.ArraySize; - var _Offset = OpenTK.Graphics.OpenGL.ProgramProperty.Offset; - var _BlockIndex = OpenTK.Graphics.OpenGL.ProgramProperty.BlockIndex; - var _ArrayStride = OpenTK.Graphics.OpenGL.ProgramProperty.ArrayStride; - var _MatrixStride = OpenTK.Graphics.OpenGL.ProgramProperty.MatrixStride; - var _IsRowMajor = OpenTK.Graphics.OpenGL.ProgramProperty.IsRowMajor; - var _AtomicCounterBufferIndex = OpenTK.Graphics.OpenGL.ProgramProperty.AtomicCounterBufferIndex; - var _BufferBinding = OpenTK.Graphics.OpenGL.ProgramProperty.BufferBinding; - var _BufferDataSize = OpenTK.Graphics.OpenGL.ProgramProperty.BufferDataSize; - var _NumActiveVariables = OpenTK.Graphics.OpenGL.ProgramProperty.NumActiveVariables; - var _ActiveVariables = OpenTK.Graphics.OpenGL.ProgramProperty.ActiveVariables; - var _ReferencedByVertexShader = OpenTK.Graphics.OpenGL.ProgramProperty.ReferencedByVertexShader; - var _ReferencedByTessControlShader = OpenTK.Graphics.OpenGL.ProgramProperty.ReferencedByTessControlShader; - var _ReferencedByTessEvaluationShader = OpenTK.Graphics.OpenGL.ProgramProperty.ReferencedByTessEvaluationShader; - var _ReferencedByGeometryShader = OpenTK.Graphics.OpenGL.ProgramProperty.ReferencedByGeometryShader; - var _ReferencedByFragmentShader = OpenTK.Graphics.OpenGL.ProgramProperty.ReferencedByFragmentShader; - var _TopLevelArraySize = OpenTK.Graphics.OpenGL.ProgramProperty.TopLevelArraySize; - var _TopLevelArrayStride = OpenTK.Graphics.OpenGL.ProgramProperty.TopLevelArrayStride; - var _Location = OpenTK.Graphics.OpenGL.ProgramProperty.Location; - var _LocationIndex = OpenTK.Graphics.OpenGL.ProgramProperty.LocationIndex; - var _LocationComponent = OpenTK.Graphics.OpenGL.ProgramProperty.LocationComponent; - var _TransformFeedbackBufferIndex = OpenTK.Graphics.OpenGL.ProgramProperty.TransformFeedbackBufferIndex; - var _TransformFeedbackBufferStride = OpenTK.Graphics.OpenGL.ProgramProperty.TransformFeedbackBufferStride; -} -static void Test_ProgramStageMask_19911() { - var _VertexShaderBit = OpenTK.Graphics.OpenGL.ProgramStageMask.VertexShaderBit; - var _FragmentShaderBit = OpenTK.Graphics.OpenGL.ProgramStageMask.FragmentShaderBit; - var _GeometryShaderBit = OpenTK.Graphics.OpenGL.ProgramStageMask.GeometryShaderBit; - var _TessControlShaderBit = OpenTK.Graphics.OpenGL.ProgramStageMask.TessControlShaderBit; - var _TessEvaluationShaderBit = OpenTK.Graphics.OpenGL.ProgramStageMask.TessEvaluationShaderBit; - var _ComputeShaderBit = OpenTK.Graphics.OpenGL.ProgramStageMask.ComputeShaderBit; - var _AllShaderBits = OpenTK.Graphics.OpenGL.ProgramStageMask.AllShaderBits; -} -static void Test_ProgramStageParameter_19912() { - var _ActiveSubroutines = OpenTK.Graphics.OpenGL.ProgramStageParameter.ActiveSubroutines; - var _ActiveSubroutineUniforms = OpenTK.Graphics.OpenGL.ProgramStageParameter.ActiveSubroutineUniforms; - var _ActiveSubroutineUniformLocations = OpenTK.Graphics.OpenGL.ProgramStageParameter.ActiveSubroutineUniformLocations; - var _ActiveSubroutineMaxLength = OpenTK.Graphics.OpenGL.ProgramStageParameter.ActiveSubroutineMaxLength; - var _ActiveSubroutineUniformMaxLength = OpenTK.Graphics.OpenGL.ProgramStageParameter.ActiveSubroutineUniformMaxLength; -} -static void Test_ProvokingVertexMode_19913() { - var _FirstVertexConvention = OpenTK.Graphics.OpenGL.ProvokingVertexMode.FirstVertexConvention; - var _LastVertexConvention = OpenTK.Graphics.OpenGL.ProvokingVertexMode.LastVertexConvention; -} -static void Test_QueryCounterTarget_19914() { - var _Timestamp = OpenTK.Graphics.OpenGL.QueryCounterTarget.Timestamp; -} -static void Test_QueryTarget_19915() { - var _TimeElapsed = OpenTK.Graphics.OpenGL.QueryTarget.TimeElapsed; - var _SamplesPassed = OpenTK.Graphics.OpenGL.QueryTarget.SamplesPassed; - var _AnySamplesPassed = OpenTK.Graphics.OpenGL.QueryTarget.AnySamplesPassed; - var _PrimitivesGenerated = OpenTK.Graphics.OpenGL.QueryTarget.PrimitivesGenerated; - var _TransformFeedbackPrimitivesWritten = OpenTK.Graphics.OpenGL.QueryTarget.TransformFeedbackPrimitivesWritten; - var _AnySamplesPassedConservative = OpenTK.Graphics.OpenGL.QueryTarget.AnySamplesPassedConservative; - var _Timestamp = OpenTK.Graphics.OpenGL.QueryTarget.Timestamp; -} -static void Test_ReadBufferMode_19916() { - var _None = OpenTK.Graphics.OpenGL.ReadBufferMode.None; - var _FrontLeft = OpenTK.Graphics.OpenGL.ReadBufferMode.FrontLeft; - var _FrontRight = OpenTK.Graphics.OpenGL.ReadBufferMode.FrontRight; - var _BackLeft = OpenTK.Graphics.OpenGL.ReadBufferMode.BackLeft; - var _BackRight = OpenTK.Graphics.OpenGL.ReadBufferMode.BackRight; - var _Front = OpenTK.Graphics.OpenGL.ReadBufferMode.Front; - var _Back = OpenTK.Graphics.OpenGL.ReadBufferMode.Back; - var _Left = OpenTK.Graphics.OpenGL.ReadBufferMode.Left; - var _Right = OpenTK.Graphics.OpenGL.ReadBufferMode.Right; - var _FrontAndBack = OpenTK.Graphics.OpenGL.ReadBufferMode.FrontAndBack; - var _Aux0 = OpenTK.Graphics.OpenGL.ReadBufferMode.Aux0; - var _Aux1 = OpenTK.Graphics.OpenGL.ReadBufferMode.Aux1; - var _Aux2 = OpenTK.Graphics.OpenGL.ReadBufferMode.Aux2; - var _Aux3 = OpenTK.Graphics.OpenGL.ReadBufferMode.Aux3; - var _ColorAttachment0 = OpenTK.Graphics.OpenGL.ReadBufferMode.ColorAttachment0; - var _ColorAttachment1 = OpenTK.Graphics.OpenGL.ReadBufferMode.ColorAttachment1; - var _ColorAttachment2 = OpenTK.Graphics.OpenGL.ReadBufferMode.ColorAttachment2; - var _ColorAttachment3 = OpenTK.Graphics.OpenGL.ReadBufferMode.ColorAttachment3; - var _ColorAttachment4 = OpenTK.Graphics.OpenGL.ReadBufferMode.ColorAttachment4; - var _ColorAttachment5 = OpenTK.Graphics.OpenGL.ReadBufferMode.ColorAttachment5; - var _ColorAttachment6 = OpenTK.Graphics.OpenGL.ReadBufferMode.ColorAttachment6; - var _ColorAttachment7 = OpenTK.Graphics.OpenGL.ReadBufferMode.ColorAttachment7; - var _ColorAttachment8 = OpenTK.Graphics.OpenGL.ReadBufferMode.ColorAttachment8; - var _ColorAttachment9 = OpenTK.Graphics.OpenGL.ReadBufferMode.ColorAttachment9; - var _ColorAttachment10 = OpenTK.Graphics.OpenGL.ReadBufferMode.ColorAttachment10; - var _ColorAttachment11 = OpenTK.Graphics.OpenGL.ReadBufferMode.ColorAttachment11; - var _ColorAttachment12 = OpenTK.Graphics.OpenGL.ReadBufferMode.ColorAttachment12; - var _ColorAttachment13 = OpenTK.Graphics.OpenGL.ReadBufferMode.ColorAttachment13; - var _ColorAttachment14 = OpenTK.Graphics.OpenGL.ReadBufferMode.ColorAttachment14; - var _ColorAttachment15 = OpenTK.Graphics.OpenGL.ReadBufferMode.ColorAttachment15; -} -static void Test_RenderbufferParameterName_19917() { - var _RenderbufferSamples = OpenTK.Graphics.OpenGL.RenderbufferParameterName.RenderbufferSamples; - var _RenderbufferWidth = OpenTK.Graphics.OpenGL.RenderbufferParameterName.RenderbufferWidth; - var _RenderbufferWidthExt = OpenTK.Graphics.OpenGL.RenderbufferParameterName.RenderbufferWidthExt; - var _RenderbufferHeight = OpenTK.Graphics.OpenGL.RenderbufferParameterName.RenderbufferHeight; - var _RenderbufferHeightExt = OpenTK.Graphics.OpenGL.RenderbufferParameterName.RenderbufferHeightExt; - var _RenderbufferInternalFormat = OpenTK.Graphics.OpenGL.RenderbufferParameterName.RenderbufferInternalFormat; - var _RenderbufferInternalFormatExt = OpenTK.Graphics.OpenGL.RenderbufferParameterName.RenderbufferInternalFormatExt; - var _RenderbufferRedSize = OpenTK.Graphics.OpenGL.RenderbufferParameterName.RenderbufferRedSize; - var _RenderbufferRedSizeExt = OpenTK.Graphics.OpenGL.RenderbufferParameterName.RenderbufferRedSizeExt; - var _RenderbufferGreenSize = OpenTK.Graphics.OpenGL.RenderbufferParameterName.RenderbufferGreenSize; - var _RenderbufferGreenSizeExt = OpenTK.Graphics.OpenGL.RenderbufferParameterName.RenderbufferGreenSizeExt; - var _RenderbufferBlueSize = OpenTK.Graphics.OpenGL.RenderbufferParameterName.RenderbufferBlueSize; - var _RenderbufferBlueSizeExt = OpenTK.Graphics.OpenGL.RenderbufferParameterName.RenderbufferBlueSizeExt; - var _RenderbufferAlphaSize = OpenTK.Graphics.OpenGL.RenderbufferParameterName.RenderbufferAlphaSize; - var _RenderbufferAlphaSizeExt = OpenTK.Graphics.OpenGL.RenderbufferParameterName.RenderbufferAlphaSizeExt; - var _RenderbufferDepthSize = OpenTK.Graphics.OpenGL.RenderbufferParameterName.RenderbufferDepthSize; - var _RenderbufferDepthSizeExt = OpenTK.Graphics.OpenGL.RenderbufferParameterName.RenderbufferDepthSizeExt; - var _RenderbufferStencilSize = OpenTK.Graphics.OpenGL.RenderbufferParameterName.RenderbufferStencilSize; - var _RenderbufferStencilSizeExt = OpenTK.Graphics.OpenGL.RenderbufferParameterName.RenderbufferStencilSizeExt; -} -static void Test_RenderbufferStorage_19918() { - var _DepthComponent = OpenTK.Graphics.OpenGL.RenderbufferStorage.DepthComponent; - var _R3G3B2 = OpenTK.Graphics.OpenGL.RenderbufferStorage.R3G3B2; - var _Alpha4 = OpenTK.Graphics.OpenGL.RenderbufferStorage.Alpha4; - var _Alpha8 = OpenTK.Graphics.OpenGL.RenderbufferStorage.Alpha8; - var _Alpha12 = OpenTK.Graphics.OpenGL.RenderbufferStorage.Alpha12; - var _Alpha16 = OpenTK.Graphics.OpenGL.RenderbufferStorage.Alpha16; - var _Rgb4 = OpenTK.Graphics.OpenGL.RenderbufferStorage.Rgb4; - var _Rgb5 = OpenTK.Graphics.OpenGL.RenderbufferStorage.Rgb5; - var _Rgb8 = OpenTK.Graphics.OpenGL.RenderbufferStorage.Rgb8; - var _Rgb10 = OpenTK.Graphics.OpenGL.RenderbufferStorage.Rgb10; - var _Rgb12 = OpenTK.Graphics.OpenGL.RenderbufferStorage.Rgb12; - var _Rgb16 = OpenTK.Graphics.OpenGL.RenderbufferStorage.Rgb16; - var _Rgba2 = OpenTK.Graphics.OpenGL.RenderbufferStorage.Rgba2; - var _Rgba4 = OpenTK.Graphics.OpenGL.RenderbufferStorage.Rgba4; - var _Rgba8 = OpenTK.Graphics.OpenGL.RenderbufferStorage.Rgba8; - var _Rgb10A2 = OpenTK.Graphics.OpenGL.RenderbufferStorage.Rgb10A2; - var _Rgba12 = OpenTK.Graphics.OpenGL.RenderbufferStorage.Rgba12; - var _Rgba16 = OpenTK.Graphics.OpenGL.RenderbufferStorage.Rgba16; - var _DepthComponent16 = OpenTK.Graphics.OpenGL.RenderbufferStorage.DepthComponent16; - var _DepthComponent24 = OpenTK.Graphics.OpenGL.RenderbufferStorage.DepthComponent24; - var _DepthComponent32 = OpenTK.Graphics.OpenGL.RenderbufferStorage.DepthComponent32; - var _R8 = OpenTK.Graphics.OpenGL.RenderbufferStorage.R8; - var _R16 = OpenTK.Graphics.OpenGL.RenderbufferStorage.R16; - var _Rg8 = OpenTK.Graphics.OpenGL.RenderbufferStorage.Rg8; - var _Rg16 = OpenTK.Graphics.OpenGL.RenderbufferStorage.Rg16; - var _R16f = OpenTK.Graphics.OpenGL.RenderbufferStorage.R16f; - var _R32f = OpenTK.Graphics.OpenGL.RenderbufferStorage.R32f; - var _Rg16f = OpenTK.Graphics.OpenGL.RenderbufferStorage.Rg16f; - var _Rg32f = OpenTK.Graphics.OpenGL.RenderbufferStorage.Rg32f; - var _R8i = OpenTK.Graphics.OpenGL.RenderbufferStorage.R8i; - var _R8ui = OpenTK.Graphics.OpenGL.RenderbufferStorage.R8ui; - var _R16i = OpenTK.Graphics.OpenGL.RenderbufferStorage.R16i; - var _R16ui = OpenTK.Graphics.OpenGL.RenderbufferStorage.R16ui; - var _R32i = OpenTK.Graphics.OpenGL.RenderbufferStorage.R32i; - var _R32ui = OpenTK.Graphics.OpenGL.RenderbufferStorage.R32ui; - var _Rg8i = OpenTK.Graphics.OpenGL.RenderbufferStorage.Rg8i; - var _Rg8ui = OpenTK.Graphics.OpenGL.RenderbufferStorage.Rg8ui; - var _Rg16i = OpenTK.Graphics.OpenGL.RenderbufferStorage.Rg16i; - var _Rg16ui = OpenTK.Graphics.OpenGL.RenderbufferStorage.Rg16ui; - var _Rg32i = OpenTK.Graphics.OpenGL.RenderbufferStorage.Rg32i; - var _Rg32ui = OpenTK.Graphics.OpenGL.RenderbufferStorage.Rg32ui; - var _DepthStencil = OpenTK.Graphics.OpenGL.RenderbufferStorage.DepthStencil; - var _Rgba32f = OpenTK.Graphics.OpenGL.RenderbufferStorage.Rgba32f; - var _Rgb32f = OpenTK.Graphics.OpenGL.RenderbufferStorage.Rgb32f; - var _Rgba16f = OpenTK.Graphics.OpenGL.RenderbufferStorage.Rgba16f; - var _Rgb16f = OpenTK.Graphics.OpenGL.RenderbufferStorage.Rgb16f; - var _Depth24Stencil8 = OpenTK.Graphics.OpenGL.RenderbufferStorage.Depth24Stencil8; - var _R11fG11fB10f = OpenTK.Graphics.OpenGL.RenderbufferStorage.R11fG11fB10f; - var _Rgb9E5 = OpenTK.Graphics.OpenGL.RenderbufferStorage.Rgb9E5; - var _Srgb8 = OpenTK.Graphics.OpenGL.RenderbufferStorage.Srgb8; - var _Srgb8Alpha8 = OpenTK.Graphics.OpenGL.RenderbufferStorage.Srgb8Alpha8; - var _DepthComponent32f = OpenTK.Graphics.OpenGL.RenderbufferStorage.DepthComponent32f; - var _Depth32fStencil8 = OpenTK.Graphics.OpenGL.RenderbufferStorage.Depth32fStencil8; - var _StencilIndex1 = OpenTK.Graphics.OpenGL.RenderbufferStorage.StencilIndex1; - var _StencilIndex1Ext = OpenTK.Graphics.OpenGL.RenderbufferStorage.StencilIndex1Ext; - var _StencilIndex4 = OpenTK.Graphics.OpenGL.RenderbufferStorage.StencilIndex4; - var _StencilIndex4Ext = OpenTK.Graphics.OpenGL.RenderbufferStorage.StencilIndex4Ext; - var _StencilIndex8 = OpenTK.Graphics.OpenGL.RenderbufferStorage.StencilIndex8; - var _StencilIndex8Ext = OpenTK.Graphics.OpenGL.RenderbufferStorage.StencilIndex8Ext; - var _StencilIndex16 = OpenTK.Graphics.OpenGL.RenderbufferStorage.StencilIndex16; - var _StencilIndex16Ext = OpenTK.Graphics.OpenGL.RenderbufferStorage.StencilIndex16Ext; - var _Rgba32ui = OpenTK.Graphics.OpenGL.RenderbufferStorage.Rgba32ui; - var _Rgb32ui = OpenTK.Graphics.OpenGL.RenderbufferStorage.Rgb32ui; - var _Rgba16ui = OpenTK.Graphics.OpenGL.RenderbufferStorage.Rgba16ui; - var _Rgb16ui = OpenTK.Graphics.OpenGL.RenderbufferStorage.Rgb16ui; - var _Rgba8ui = OpenTK.Graphics.OpenGL.RenderbufferStorage.Rgba8ui; - var _Rgb8ui = OpenTK.Graphics.OpenGL.RenderbufferStorage.Rgb8ui; - var _Rgba32i = OpenTK.Graphics.OpenGL.RenderbufferStorage.Rgba32i; - var _Rgb32i = OpenTK.Graphics.OpenGL.RenderbufferStorage.Rgb32i; - var _Rgba16i = OpenTK.Graphics.OpenGL.RenderbufferStorage.Rgba16i; - var _Rgb16i = OpenTK.Graphics.OpenGL.RenderbufferStorage.Rgb16i; - var _Rgba8i = OpenTK.Graphics.OpenGL.RenderbufferStorage.Rgba8i; - var _Rgb8i = OpenTK.Graphics.OpenGL.RenderbufferStorage.Rgb8i; - var _Rgb10A2ui = OpenTK.Graphics.OpenGL.RenderbufferStorage.Rgb10A2ui; -} -static void Test_RenderbufferTarget_19919() { - var _Renderbuffer = OpenTK.Graphics.OpenGL.RenderbufferTarget.Renderbuffer; - var _RenderbufferExt = OpenTK.Graphics.OpenGL.RenderbufferTarget.RenderbufferExt; -} -static void Test_RenderingMode_19920() { - var _Render = OpenTK.Graphics.OpenGL.RenderingMode.Render; - var _Feedback = OpenTK.Graphics.OpenGL.RenderingMode.Feedback; - var _Select = OpenTK.Graphics.OpenGL.RenderingMode.Select; -} -static void Test_RendScreenCoordinates_19921() { - var _ScreenCoordinatesRend = OpenTK.Graphics.OpenGL.RendScreenCoordinates.ScreenCoordinatesRend; - var _InvertedScreenWRend = OpenTK.Graphics.OpenGL.RendScreenCoordinates.InvertedScreenWRend; -} -static void Test_S3S3tc_19922() { - var _RgbS3tc = OpenTK.Graphics.OpenGL.S3S3tc.RgbS3tc; - var _Rgb4S3tc = OpenTK.Graphics.OpenGL.S3S3tc.Rgb4S3tc; - var _RgbaS3tc = OpenTK.Graphics.OpenGL.S3S3tc.RgbaS3tc; - var _Rgba4S3tc = OpenTK.Graphics.OpenGL.S3S3tc.Rgba4S3tc; - var _RgbaDxt5S3tc = OpenTK.Graphics.OpenGL.S3S3tc.RgbaDxt5S3tc; - var _Rgba4Dxt5S3tc = OpenTK.Graphics.OpenGL.S3S3tc.Rgba4Dxt5S3tc; -} -static void Test_SamplePatternSgis_19923() { - var _Gl1PassExt = OpenTK.Graphics.OpenGL.SamplePatternSgis.Gl1PassExt; - var _Gl1PassSgis = OpenTK.Graphics.OpenGL.SamplePatternSgis.Gl1PassSgis; - var _Gl2Pass0Ext = OpenTK.Graphics.OpenGL.SamplePatternSgis.Gl2Pass0Ext; - var _Gl2Pass0Sgis = OpenTK.Graphics.OpenGL.SamplePatternSgis.Gl2Pass0Sgis; - var _Gl2Pass1Ext = OpenTK.Graphics.OpenGL.SamplePatternSgis.Gl2Pass1Ext; - var _Gl2Pass1Sgis = OpenTK.Graphics.OpenGL.SamplePatternSgis.Gl2Pass1Sgis; - var _Gl4Pass0Ext = OpenTK.Graphics.OpenGL.SamplePatternSgis.Gl4Pass0Ext; - var _Gl4Pass0Sgis = OpenTK.Graphics.OpenGL.SamplePatternSgis.Gl4Pass0Sgis; - var _Gl4Pass1Ext = OpenTK.Graphics.OpenGL.SamplePatternSgis.Gl4Pass1Ext; - var _Gl4Pass1Sgis = OpenTK.Graphics.OpenGL.SamplePatternSgis.Gl4Pass1Sgis; - var _Gl4Pass2Ext = OpenTK.Graphics.OpenGL.SamplePatternSgis.Gl4Pass2Ext; - var _Gl4Pass2Sgis = OpenTK.Graphics.OpenGL.SamplePatternSgis.Gl4Pass2Sgis; - var _Gl4Pass3Ext = OpenTK.Graphics.OpenGL.SamplePatternSgis.Gl4Pass3Ext; - var _Gl4Pass3Sgis = OpenTK.Graphics.OpenGL.SamplePatternSgis.Gl4Pass3Sgis; -} -static void Test_SamplerParameter_19924() { - var _TextureBorderColor = OpenTK.Graphics.OpenGL.SamplerParameter.TextureBorderColor; - var _TextureMagFilter = OpenTK.Graphics.OpenGL.SamplerParameter.TextureMagFilter; - var _TextureMinFilter = OpenTK.Graphics.OpenGL.SamplerParameter.TextureMinFilter; - var _TextureWrapS = OpenTK.Graphics.OpenGL.SamplerParameter.TextureWrapS; - var _TextureWrapT = OpenTK.Graphics.OpenGL.SamplerParameter.TextureWrapT; - var _TextureWrapR = OpenTK.Graphics.OpenGL.SamplerParameter.TextureWrapR; - var _TextureMinLod = OpenTK.Graphics.OpenGL.SamplerParameter.TextureMinLod; - var _TextureMaxLod = OpenTK.Graphics.OpenGL.SamplerParameter.TextureMaxLod; - var _TextureMaxAnisotropyExt = OpenTK.Graphics.OpenGL.SamplerParameter.TextureMaxAnisotropyExt; - var _TextureLodBias = OpenTK.Graphics.OpenGL.SamplerParameter.TextureLodBias; - var _TextureCompareMode = OpenTK.Graphics.OpenGL.SamplerParameter.TextureCompareMode; - var _TextureCompareFunc = OpenTK.Graphics.OpenGL.SamplerParameter.TextureCompareFunc; -} -static void Test_SamplerParameterName_19925() { - var _TextureBorderColor = OpenTK.Graphics.OpenGL.SamplerParameterName.TextureBorderColor; - var _TextureMagFilter = OpenTK.Graphics.OpenGL.SamplerParameterName.TextureMagFilter; - var _TextureMinFilter = OpenTK.Graphics.OpenGL.SamplerParameterName.TextureMinFilter; - var _TextureWrapS = OpenTK.Graphics.OpenGL.SamplerParameterName.TextureWrapS; - var _TextureWrapT = OpenTK.Graphics.OpenGL.SamplerParameterName.TextureWrapT; - var _TextureWrapR = OpenTK.Graphics.OpenGL.SamplerParameterName.TextureWrapR; - var _TextureMinLod = OpenTK.Graphics.OpenGL.SamplerParameterName.TextureMinLod; - var _TextureMaxLod = OpenTK.Graphics.OpenGL.SamplerParameterName.TextureMaxLod; - var _TextureMaxAnisotropyExt = OpenTK.Graphics.OpenGL.SamplerParameterName.TextureMaxAnisotropyExt; - var _TextureLodBias = OpenTK.Graphics.OpenGL.SamplerParameterName.TextureLodBias; - var _TextureCompareMode = OpenTK.Graphics.OpenGL.SamplerParameterName.TextureCompareMode; - var _TextureCompareFunc = OpenTK.Graphics.OpenGL.SamplerParameterName.TextureCompareFunc; -} -static void Test_SeparableTarget_19926() { - var _Separable2D = OpenTK.Graphics.OpenGL.SeparableTarget.Separable2D; -} -static void Test_SeparableTargetExt_19927() { - var _Separable2D = OpenTK.Graphics.OpenGL.SeparableTargetExt.Separable2D; - var _Separable2DExt = OpenTK.Graphics.OpenGL.SeparableTargetExt.Separable2DExt; -} -static void Test_SgiColorMatrix_19928() { - var _ColorMatrixSgi = OpenTK.Graphics.OpenGL.SgiColorMatrix.ColorMatrixSgi; - var _ColorMatrixStackDepthSgi = OpenTK.Graphics.OpenGL.SgiColorMatrix.ColorMatrixStackDepthSgi; - var _MaxColorMatrixStackDepthSgi = OpenTK.Graphics.OpenGL.SgiColorMatrix.MaxColorMatrixStackDepthSgi; - var _PostColorMatrixRedScaleSgi = OpenTK.Graphics.OpenGL.SgiColorMatrix.PostColorMatrixRedScaleSgi; - var _PostColorMatrixGreenScaleSgi = OpenTK.Graphics.OpenGL.SgiColorMatrix.PostColorMatrixGreenScaleSgi; - var _PostColorMatrixBlueScaleSgi = OpenTK.Graphics.OpenGL.SgiColorMatrix.PostColorMatrixBlueScaleSgi; - var _PostColorMatrixAlphaScaleSgi = OpenTK.Graphics.OpenGL.SgiColorMatrix.PostColorMatrixAlphaScaleSgi; - var _PostColorMatrixRedBiasSgi = OpenTK.Graphics.OpenGL.SgiColorMatrix.PostColorMatrixRedBiasSgi; - var _PostColorMatrixGreenBiasSgi = OpenTK.Graphics.OpenGL.SgiColorMatrix.PostColorMatrixGreenBiasSgi; - var _PostColorMatrixBlueBiasSgi = OpenTK.Graphics.OpenGL.SgiColorMatrix.PostColorMatrixBlueBiasSgi; - var _PostColorMatrixAlphaBiasSgi = OpenTK.Graphics.OpenGL.SgiColorMatrix.PostColorMatrixAlphaBiasSgi; -} -static void Test_SgiColorTable_19929() { - var _ColorTableSgi = OpenTK.Graphics.OpenGL.SgiColorTable.ColorTableSgi; - var _PostConvolutionColorTableSgi = OpenTK.Graphics.OpenGL.SgiColorTable.PostConvolutionColorTableSgi; - var _PostColorMatrixColorTableSgi = OpenTK.Graphics.OpenGL.SgiColorTable.PostColorMatrixColorTableSgi; - var _ProxyColorTableSgi = OpenTK.Graphics.OpenGL.SgiColorTable.ProxyColorTableSgi; - var _ProxyPostConvolutionColorTableSgi = OpenTK.Graphics.OpenGL.SgiColorTable.ProxyPostConvolutionColorTableSgi; - var _ProxyPostColorMatrixColorTableSgi = OpenTK.Graphics.OpenGL.SgiColorTable.ProxyPostColorMatrixColorTableSgi; - var _ColorTableScaleSgi = OpenTK.Graphics.OpenGL.SgiColorTable.ColorTableScaleSgi; - var _ColorTableBiasSgi = OpenTK.Graphics.OpenGL.SgiColorTable.ColorTableBiasSgi; - var _ColorTableFormatSgi = OpenTK.Graphics.OpenGL.SgiColorTable.ColorTableFormatSgi; - var _ColorTableWidthSgi = OpenTK.Graphics.OpenGL.SgiColorTable.ColorTableWidthSgi; - var _ColorTableRedSizeSgi = OpenTK.Graphics.OpenGL.SgiColorTable.ColorTableRedSizeSgi; - var _ColorTableGreenSizeSgi = OpenTK.Graphics.OpenGL.SgiColorTable.ColorTableGreenSizeSgi; - var _ColorTableBlueSizeSgi = OpenTK.Graphics.OpenGL.SgiColorTable.ColorTableBlueSizeSgi; - var _ColorTableAlphaSizeSgi = OpenTK.Graphics.OpenGL.SgiColorTable.ColorTableAlphaSizeSgi; - var _ColorTableLuminanceSizeSgi = OpenTK.Graphics.OpenGL.SgiColorTable.ColorTableLuminanceSizeSgi; - var _ColorTableIntensitySizeSgi = OpenTK.Graphics.OpenGL.SgiColorTable.ColorTableIntensitySizeSgi; -} -static void Test_SgisDetailTexture_19930() { - var _DetailTexture2DSgis = OpenTK.Graphics.OpenGL.SgisDetailTexture.DetailTexture2DSgis; - var _DetailTexture2DBindingSgis = OpenTK.Graphics.OpenGL.SgisDetailTexture.DetailTexture2DBindingSgis; - var _LinearDetailSgis = OpenTK.Graphics.OpenGL.SgisDetailTexture.LinearDetailSgis; - var _LinearDetailAlphaSgis = OpenTK.Graphics.OpenGL.SgisDetailTexture.LinearDetailAlphaSgis; - var _LinearDetailColorSgis = OpenTK.Graphics.OpenGL.SgisDetailTexture.LinearDetailColorSgis; - var _DetailTextureLevelSgis = OpenTK.Graphics.OpenGL.SgisDetailTexture.DetailTextureLevelSgis; - var _DetailTextureModeSgis = OpenTK.Graphics.OpenGL.SgisDetailTexture.DetailTextureModeSgis; - var _DetailTextureFuncPointsSgis = OpenTK.Graphics.OpenGL.SgisDetailTexture.DetailTextureFuncPointsSgis; -} -static void Test_SgisFogFunction_19931() { - var _FogFuncSgis = OpenTK.Graphics.OpenGL.SgisFogFunction.FogFuncSgis; - var _FogFuncPointsSgis = OpenTK.Graphics.OpenGL.SgisFogFunction.FogFuncPointsSgis; - var _MaxFogFuncPointsSgis = OpenTK.Graphics.OpenGL.SgisFogFunction.MaxFogFuncPointsSgis; -} -static void Test_SgisGenerateMipmap_19932() { - var _GenerateMipmapSgis = OpenTK.Graphics.OpenGL.SgisGenerateMipmap.GenerateMipmapSgis; - var _GenerateMipmapHintSgis = OpenTK.Graphics.OpenGL.SgisGenerateMipmap.GenerateMipmapHintSgis; -} -static void Test_SgisMultisample_19933() { - var _MultisampleSgis = OpenTK.Graphics.OpenGL.SgisMultisample.MultisampleSgis; - var _SampleAlphaToMaskSgis = OpenTK.Graphics.OpenGL.SgisMultisample.SampleAlphaToMaskSgis; - var _SampleAlphaToOneSgis = OpenTK.Graphics.OpenGL.SgisMultisample.SampleAlphaToOneSgis; - var _SampleMaskSgis = OpenTK.Graphics.OpenGL.SgisMultisample.SampleMaskSgis; - var _Gl1PassSgis = OpenTK.Graphics.OpenGL.SgisMultisample.Gl1PassSgis; - var _Gl2Pass0Sgis = OpenTK.Graphics.OpenGL.SgisMultisample.Gl2Pass0Sgis; - var _Gl2Pass1Sgis = OpenTK.Graphics.OpenGL.SgisMultisample.Gl2Pass1Sgis; - var _Gl4Pass0Sgis = OpenTK.Graphics.OpenGL.SgisMultisample.Gl4Pass0Sgis; - var _Gl4Pass1Sgis = OpenTK.Graphics.OpenGL.SgisMultisample.Gl4Pass1Sgis; - var _Gl4Pass2Sgis = OpenTK.Graphics.OpenGL.SgisMultisample.Gl4Pass2Sgis; - var _Gl4Pass3Sgis = OpenTK.Graphics.OpenGL.SgisMultisample.Gl4Pass3Sgis; - var _SampleBuffersSgis = OpenTK.Graphics.OpenGL.SgisMultisample.SampleBuffersSgis; - var _SamplesSgis = OpenTK.Graphics.OpenGL.SgisMultisample.SamplesSgis; - var _SampleMaskValueSgis = OpenTK.Graphics.OpenGL.SgisMultisample.SampleMaskValueSgis; - var _SampleMaskInvertSgis = OpenTK.Graphics.OpenGL.SgisMultisample.SampleMaskInvertSgis; - var _SamplePatternSgis = OpenTK.Graphics.OpenGL.SgisMultisample.SamplePatternSgis; -} -static void Test_SgisPixelTexture_19934() { - var _PixelTextureSgis = OpenTK.Graphics.OpenGL.SgisPixelTexture.PixelTextureSgis; - var _PixelFragmentRgbSourceSgis = OpenTK.Graphics.OpenGL.SgisPixelTexture.PixelFragmentRgbSourceSgis; - var _PixelFragmentAlphaSourceSgis = OpenTK.Graphics.OpenGL.SgisPixelTexture.PixelFragmentAlphaSourceSgis; - var _PixelGroupColorSgis = OpenTK.Graphics.OpenGL.SgisPixelTexture.PixelGroupColorSgis; -} -static void Test_SgisPointLineTexgen_19935() { - var _EyeDistanceToPointSgis = OpenTK.Graphics.OpenGL.SgisPointLineTexgen.EyeDistanceToPointSgis; - var _ObjectDistanceToPointSgis = OpenTK.Graphics.OpenGL.SgisPointLineTexgen.ObjectDistanceToPointSgis; - var _EyeDistanceToLineSgis = OpenTK.Graphics.OpenGL.SgisPointLineTexgen.EyeDistanceToLineSgis; - var _ObjectDistanceToLineSgis = OpenTK.Graphics.OpenGL.SgisPointLineTexgen.ObjectDistanceToLineSgis; - var _EyePointSgis = OpenTK.Graphics.OpenGL.SgisPointLineTexgen.EyePointSgis; - var _ObjectPointSgis = OpenTK.Graphics.OpenGL.SgisPointLineTexgen.ObjectPointSgis; - var _EyeLineSgis = OpenTK.Graphics.OpenGL.SgisPointLineTexgen.EyeLineSgis; - var _ObjectLineSgis = OpenTK.Graphics.OpenGL.SgisPointLineTexgen.ObjectLineSgis; -} -static void Test_SgisPointParameters_19936() { - var _PointSizeMinSgis = OpenTK.Graphics.OpenGL.SgisPointParameters.PointSizeMinSgis; - var _PointSizeMaxSgis = OpenTK.Graphics.OpenGL.SgisPointParameters.PointSizeMaxSgis; - var _PointFadeThresholdSizeSgis = OpenTK.Graphics.OpenGL.SgisPointParameters.PointFadeThresholdSizeSgis; - var _DistanceAttenuationSgis = OpenTK.Graphics.OpenGL.SgisPointParameters.DistanceAttenuationSgis; -} -static void Test_SgisSharpenTexture_19937() { - var _LinearSharpenSgis = OpenTK.Graphics.OpenGL.SgisSharpenTexture.LinearSharpenSgis; - var _LinearSharpenAlphaSgis = OpenTK.Graphics.OpenGL.SgisSharpenTexture.LinearSharpenAlphaSgis; - var _LinearSharpenColorSgis = OpenTK.Graphics.OpenGL.SgisSharpenTexture.LinearSharpenColorSgis; - var _SharpenTextureFuncPointsSgis = OpenTK.Graphics.OpenGL.SgisSharpenTexture.SharpenTextureFuncPointsSgis; -} -static void Test_SgisTexture4D_19938() { - var _PackSkipVolumesSgis = OpenTK.Graphics.OpenGL.SgisTexture4D.PackSkipVolumesSgis; - var _PackImageDepthSgis = OpenTK.Graphics.OpenGL.SgisTexture4D.PackImageDepthSgis; - var _UnpackSkipVolumesSgis = OpenTK.Graphics.OpenGL.SgisTexture4D.UnpackSkipVolumesSgis; - var _UnpackImageDepthSgis = OpenTK.Graphics.OpenGL.SgisTexture4D.UnpackImageDepthSgis; - var _Texture4DSgis = OpenTK.Graphics.OpenGL.SgisTexture4D.Texture4DSgis; - var _ProxyTexture4DSgis = OpenTK.Graphics.OpenGL.SgisTexture4D.ProxyTexture4DSgis; - var _Texture4DsizeSgis = OpenTK.Graphics.OpenGL.SgisTexture4D.Texture4DsizeSgis; - var _TextureWrapQSgis = OpenTK.Graphics.OpenGL.SgisTexture4D.TextureWrapQSgis; - var _Max4DTextureSizeSgis = OpenTK.Graphics.OpenGL.SgisTexture4D.Max4DTextureSizeSgis; - var _Texture4DBindingSgis = OpenTK.Graphics.OpenGL.SgisTexture4D.Texture4DBindingSgis; -} -static void Test_SgisTextureBorderClamp_19939() { - var _ClampToBorderSgis = OpenTK.Graphics.OpenGL.SgisTextureBorderClamp.ClampToBorderSgis; -} -static void Test_SgisTextureColorMask_19940() { - var _TextureColorWritemaskSgis = OpenTK.Graphics.OpenGL.SgisTextureColorMask.TextureColorWritemaskSgis; -} -static void Test_SgisTextureEdgeClamp_19941() { - var _ClampToEdgeSgis = OpenTK.Graphics.OpenGL.SgisTextureEdgeClamp.ClampToEdgeSgis; -} -static void Test_SgisTextureFilter4_19942() { - var _Filter4Sgis = OpenTK.Graphics.OpenGL.SgisTextureFilter4.Filter4Sgis; - var _TextureFilter4SizeSgis = OpenTK.Graphics.OpenGL.SgisTextureFilter4.TextureFilter4SizeSgis; -} -static void Test_SgisTextureLod_19943() { - var _TextureMinLodSgis = OpenTK.Graphics.OpenGL.SgisTextureLod.TextureMinLodSgis; - var _TextureMaxLodSgis = OpenTK.Graphics.OpenGL.SgisTextureLod.TextureMaxLodSgis; - var _TextureBaseLevelSgis = OpenTK.Graphics.OpenGL.SgisTextureLod.TextureBaseLevelSgis; - var _TextureMaxLevelSgis = OpenTK.Graphics.OpenGL.SgisTextureLod.TextureMaxLevelSgis; -} -static void Test_SgisTextureSelect_19944() { - var _DualAlpha4Sgis = OpenTK.Graphics.OpenGL.SgisTextureSelect.DualAlpha4Sgis; - var _DualAlpha8Sgis = OpenTK.Graphics.OpenGL.SgisTextureSelect.DualAlpha8Sgis; - var _DualAlpha12Sgis = OpenTK.Graphics.OpenGL.SgisTextureSelect.DualAlpha12Sgis; - var _DualAlpha16Sgis = OpenTK.Graphics.OpenGL.SgisTextureSelect.DualAlpha16Sgis; - var _DualLuminance4Sgis = OpenTK.Graphics.OpenGL.SgisTextureSelect.DualLuminance4Sgis; - var _DualLuminance8Sgis = OpenTK.Graphics.OpenGL.SgisTextureSelect.DualLuminance8Sgis; - var _DualLuminance12Sgis = OpenTK.Graphics.OpenGL.SgisTextureSelect.DualLuminance12Sgis; - var _DualLuminance16Sgis = OpenTK.Graphics.OpenGL.SgisTextureSelect.DualLuminance16Sgis; - var _DualIntensity4Sgis = OpenTK.Graphics.OpenGL.SgisTextureSelect.DualIntensity4Sgis; - var _DualIntensity8Sgis = OpenTK.Graphics.OpenGL.SgisTextureSelect.DualIntensity8Sgis; - var _DualIntensity12Sgis = OpenTK.Graphics.OpenGL.SgisTextureSelect.DualIntensity12Sgis; - var _DualIntensity16Sgis = OpenTK.Graphics.OpenGL.SgisTextureSelect.DualIntensity16Sgis; - var _DualLuminanceAlpha4Sgis = OpenTK.Graphics.OpenGL.SgisTextureSelect.DualLuminanceAlpha4Sgis; - var _DualLuminanceAlpha8Sgis = OpenTK.Graphics.OpenGL.SgisTextureSelect.DualLuminanceAlpha8Sgis; - var _QuadAlpha4Sgis = OpenTK.Graphics.OpenGL.SgisTextureSelect.QuadAlpha4Sgis; - var _QuadAlpha8Sgis = OpenTK.Graphics.OpenGL.SgisTextureSelect.QuadAlpha8Sgis; - var _QuadLuminance4Sgis = OpenTK.Graphics.OpenGL.SgisTextureSelect.QuadLuminance4Sgis; - var _QuadLuminance8Sgis = OpenTK.Graphics.OpenGL.SgisTextureSelect.QuadLuminance8Sgis; - var _QuadIntensity4Sgis = OpenTK.Graphics.OpenGL.SgisTextureSelect.QuadIntensity4Sgis; - var _QuadIntensity8Sgis = OpenTK.Graphics.OpenGL.SgisTextureSelect.QuadIntensity8Sgis; - var _DualTextureSelectSgis = OpenTK.Graphics.OpenGL.SgisTextureSelect.DualTextureSelectSgis; - var _QuadTextureSelectSgis = OpenTK.Graphics.OpenGL.SgisTextureSelect.QuadTextureSelectSgis; -} -static void Test_SgiTextureColorTable_19945() { - var _TextureColorTableSgi = OpenTK.Graphics.OpenGL.SgiTextureColorTable.TextureColorTableSgi; - var _ProxyTextureColorTableSgi = OpenTK.Graphics.OpenGL.SgiTextureColorTable.ProxyTextureColorTableSgi; -} -static void Test_SgixAsync_19946() { - var _AsyncMarkerSgix = OpenTK.Graphics.OpenGL.SgixAsync.AsyncMarkerSgix; -} -static void Test_SgixAsyncHistogram_19947() { - var _AsyncHistogramSgix = OpenTK.Graphics.OpenGL.SgixAsyncHistogram.AsyncHistogramSgix; - var _MaxAsyncHistogramSgix = OpenTK.Graphics.OpenGL.SgixAsyncHistogram.MaxAsyncHistogramSgix; -} -static void Test_SgixAsyncPixel_19948() { - var _AsyncTexImageSgix = OpenTK.Graphics.OpenGL.SgixAsyncPixel.AsyncTexImageSgix; - var _AsyncDrawPixelsSgix = OpenTK.Graphics.OpenGL.SgixAsyncPixel.AsyncDrawPixelsSgix; - var _AsyncReadPixelsSgix = OpenTK.Graphics.OpenGL.SgixAsyncPixel.AsyncReadPixelsSgix; - var _MaxAsyncTexImageSgix = OpenTK.Graphics.OpenGL.SgixAsyncPixel.MaxAsyncTexImageSgix; - var _MaxAsyncDrawPixelsSgix = OpenTK.Graphics.OpenGL.SgixAsyncPixel.MaxAsyncDrawPixelsSgix; - var _MaxAsyncReadPixelsSgix = OpenTK.Graphics.OpenGL.SgixAsyncPixel.MaxAsyncReadPixelsSgix; -} -static void Test_SgixBlendAlphaMinmax_19949() { - var _AlphaMinSgix = OpenTK.Graphics.OpenGL.SgixBlendAlphaMinmax.AlphaMinSgix; - var _AlphaMaxSgix = OpenTK.Graphics.OpenGL.SgixBlendAlphaMinmax.AlphaMaxSgix; -} -static void Test_SgixCalligraphicFragment_19950() { - var _CalligraphicFragmentSgix = OpenTK.Graphics.OpenGL.SgixCalligraphicFragment.CalligraphicFragmentSgix; -} -static void Test_SgixClipmap_19951() { - var _LinearClipmapLinearSgix = OpenTK.Graphics.OpenGL.SgixClipmap.LinearClipmapLinearSgix; - var _TextureClipmapCenterSgix = OpenTK.Graphics.OpenGL.SgixClipmap.TextureClipmapCenterSgix; - var _TextureClipmapFrameSgix = OpenTK.Graphics.OpenGL.SgixClipmap.TextureClipmapFrameSgix; - var _TextureClipmapOffsetSgix = OpenTK.Graphics.OpenGL.SgixClipmap.TextureClipmapOffsetSgix; - var _TextureClipmapVirtualDepthSgix = OpenTK.Graphics.OpenGL.SgixClipmap.TextureClipmapVirtualDepthSgix; - var _TextureClipmapLodOffsetSgix = OpenTK.Graphics.OpenGL.SgixClipmap.TextureClipmapLodOffsetSgix; - var _TextureClipmapDepthSgix = OpenTK.Graphics.OpenGL.SgixClipmap.TextureClipmapDepthSgix; - var _MaxClipmapDepthSgix = OpenTK.Graphics.OpenGL.SgixClipmap.MaxClipmapDepthSgix; - var _MaxClipmapVirtualDepthSgix = OpenTK.Graphics.OpenGL.SgixClipmap.MaxClipmapVirtualDepthSgix; - var _NearestClipmapNearestSgix = OpenTK.Graphics.OpenGL.SgixClipmap.NearestClipmapNearestSgix; - var _NearestClipmapLinearSgix = OpenTK.Graphics.OpenGL.SgixClipmap.NearestClipmapLinearSgix; - var _LinearClipmapNearestSgix = OpenTK.Graphics.OpenGL.SgixClipmap.LinearClipmapNearestSgix; -} -static void Test_SgixConvolutionAccuracy_19952() { - var _ConvolutionHintSgix = OpenTK.Graphics.OpenGL.SgixConvolutionAccuracy.ConvolutionHintSgix; -} -static void Test_SgixDepthPassInstrument_19953() { -} -static void Test_SgixDepthTexture_19954() { - var _DepthComponent16Sgix = OpenTK.Graphics.OpenGL.SgixDepthTexture.DepthComponent16Sgix; - var _DepthComponent24Sgix = OpenTK.Graphics.OpenGL.SgixDepthTexture.DepthComponent24Sgix; - var _DepthComponent32Sgix = OpenTK.Graphics.OpenGL.SgixDepthTexture.DepthComponent32Sgix; -} -static void Test_SgixFlushRaster_19955() { -} -static void Test_SgixFogOffset_19956() { - var _FogOffsetSgix = OpenTK.Graphics.OpenGL.SgixFogOffset.FogOffsetSgix; - var _FogOffsetValueSgix = OpenTK.Graphics.OpenGL.SgixFogOffset.FogOffsetValueSgix; -} -static void Test_SgixFragmentLighting_19957() { - var _FragmentLightingSgix = OpenTK.Graphics.OpenGL.SgixFragmentLighting.FragmentLightingSgix; - var _FragmentColorMaterialSgix = OpenTK.Graphics.OpenGL.SgixFragmentLighting.FragmentColorMaterialSgix; - var _FragmentColorMaterialFaceSgix = OpenTK.Graphics.OpenGL.SgixFragmentLighting.FragmentColorMaterialFaceSgix; - var _FragmentColorMaterialParameterSgix = OpenTK.Graphics.OpenGL.SgixFragmentLighting.FragmentColorMaterialParameterSgix; - var _MaxFragmentLightsSgix = OpenTK.Graphics.OpenGL.SgixFragmentLighting.MaxFragmentLightsSgix; - var _MaxActiveLightsSgix = OpenTK.Graphics.OpenGL.SgixFragmentLighting.MaxActiveLightsSgix; - var _CurrentRasterNormalSgix = OpenTK.Graphics.OpenGL.SgixFragmentLighting.CurrentRasterNormalSgix; - var _LightEnvModeSgix = OpenTK.Graphics.OpenGL.SgixFragmentLighting.LightEnvModeSgix; - var _FragmentLightModelLocalViewerSgix = OpenTK.Graphics.OpenGL.SgixFragmentLighting.FragmentLightModelLocalViewerSgix; - var _FragmentLightModelTwoSideSgix = OpenTK.Graphics.OpenGL.SgixFragmentLighting.FragmentLightModelTwoSideSgix; - var _FragmentLightModelAmbientSgix = OpenTK.Graphics.OpenGL.SgixFragmentLighting.FragmentLightModelAmbientSgix; - var _FragmentLightModelNormalInterpolationSgix = OpenTK.Graphics.OpenGL.SgixFragmentLighting.FragmentLightModelNormalInterpolationSgix; - var _FragmentLight0Sgix = OpenTK.Graphics.OpenGL.SgixFragmentLighting.FragmentLight0Sgix; - var _FragmentLight1Sgix = OpenTK.Graphics.OpenGL.SgixFragmentLighting.FragmentLight1Sgix; - var _FragmentLight2Sgix = OpenTK.Graphics.OpenGL.SgixFragmentLighting.FragmentLight2Sgix; - var _FragmentLight3Sgix = OpenTK.Graphics.OpenGL.SgixFragmentLighting.FragmentLight3Sgix; - var _FragmentLight4Sgix = OpenTK.Graphics.OpenGL.SgixFragmentLighting.FragmentLight4Sgix; - var _FragmentLight5Sgix = OpenTK.Graphics.OpenGL.SgixFragmentLighting.FragmentLight5Sgix; - var _FragmentLight6Sgix = OpenTK.Graphics.OpenGL.SgixFragmentLighting.FragmentLight6Sgix; - var _FragmentLight7Sgix = OpenTK.Graphics.OpenGL.SgixFragmentLighting.FragmentLight7Sgix; -} -static void Test_SgixFramezoom_19958() { - var _FramezoomSgix = OpenTK.Graphics.OpenGL.SgixFramezoom.FramezoomSgix; - var _FramezoomFactorSgix = OpenTK.Graphics.OpenGL.SgixFramezoom.FramezoomFactorSgix; - var _MaxFramezoomFactorSgix = OpenTK.Graphics.OpenGL.SgixFramezoom.MaxFramezoomFactorSgix; -} -static void Test_SgixIccTexture_19959() { - var _RgbIccSgix = OpenTK.Graphics.OpenGL.SgixIccTexture.RgbIccSgix; - var _RgbaIccSgix = OpenTK.Graphics.OpenGL.SgixIccTexture.RgbaIccSgix; - var _AlphaIccSgix = OpenTK.Graphics.OpenGL.SgixIccTexture.AlphaIccSgix; - var _LuminanceIccSgix = OpenTK.Graphics.OpenGL.SgixIccTexture.LuminanceIccSgix; - var _IntensityIccSgix = OpenTK.Graphics.OpenGL.SgixIccTexture.IntensityIccSgix; - var _LuminanceAlphaIccSgix = OpenTK.Graphics.OpenGL.SgixIccTexture.LuminanceAlphaIccSgix; - var _R5G6B5IccSgix = OpenTK.Graphics.OpenGL.SgixIccTexture.R5G6B5IccSgix; - var _R5G6B5A8IccSgix = OpenTK.Graphics.OpenGL.SgixIccTexture.R5G6B5A8IccSgix; - var _Alpha16IccSgix = OpenTK.Graphics.OpenGL.SgixIccTexture.Alpha16IccSgix; - var _Luminance16IccSgix = OpenTK.Graphics.OpenGL.SgixIccTexture.Luminance16IccSgix; - var _Intensity16IccSgix = OpenTK.Graphics.OpenGL.SgixIccTexture.Intensity16IccSgix; - var _Luminance16Alpha8IccSgix = OpenTK.Graphics.OpenGL.SgixIccTexture.Luminance16Alpha8IccSgix; -} -static void Test_SgixIglooInterface_19960() { -} -static void Test_SgixInstruments_19961() { - var _InstrumentBufferPointerSgix = OpenTK.Graphics.OpenGL.SgixInstruments.InstrumentBufferPointerSgix; - var _InstrumentMeasurementsSgix = OpenTK.Graphics.OpenGL.SgixInstruments.InstrumentMeasurementsSgix; -} -static void Test_SgixInterlace_19962() { - var _InterlaceSgix = OpenTK.Graphics.OpenGL.SgixInterlace.InterlaceSgix; -} -static void Test_SgixIrInstrument1_19963() { - var _IrInstrument1Sgix = OpenTK.Graphics.OpenGL.SgixIrInstrument1.IrInstrument1Sgix; -} -static void Test_SgixListPriority_19964() { - var _ListPrioritySgix = OpenTK.Graphics.OpenGL.SgixListPriority.ListPrioritySgix; -} -static void Test_SgixPixelTexture_19965() { - var _PixelTexGenSgix = OpenTK.Graphics.OpenGL.SgixPixelTexture.PixelTexGenSgix; - var _PixelTexGenModeSgix = OpenTK.Graphics.OpenGL.SgixPixelTexture.PixelTexGenModeSgix; -} -static void Test_SgixPixelTiles_19966() { - var _PixelTileBestAlignmentSgix = OpenTK.Graphics.OpenGL.SgixPixelTiles.PixelTileBestAlignmentSgix; - var _PixelTileCacheIncrementSgix = OpenTK.Graphics.OpenGL.SgixPixelTiles.PixelTileCacheIncrementSgix; - var _PixelTileWidthSgix = OpenTK.Graphics.OpenGL.SgixPixelTiles.PixelTileWidthSgix; - var _PixelTileHeightSgix = OpenTK.Graphics.OpenGL.SgixPixelTiles.PixelTileHeightSgix; - var _PixelTileGridWidthSgix = OpenTK.Graphics.OpenGL.SgixPixelTiles.PixelTileGridWidthSgix; - var _PixelTileGridHeightSgix = OpenTK.Graphics.OpenGL.SgixPixelTiles.PixelTileGridHeightSgix; - var _PixelTileGridDepthSgix = OpenTK.Graphics.OpenGL.SgixPixelTiles.PixelTileGridDepthSgix; - var _PixelTileCacheSizeSgix = OpenTK.Graphics.OpenGL.SgixPixelTiles.PixelTileCacheSizeSgix; -} -static void Test_SgixPolynomialFfd_19967() { - var _TextureDeformationBitSgix = OpenTK.Graphics.OpenGL.SgixPolynomialFfd.TextureDeformationBitSgix; - var _GeometryDeformationBitSgix = OpenTK.Graphics.OpenGL.SgixPolynomialFfd.GeometryDeformationBitSgix; - var _GeometryDeformationSgix = OpenTK.Graphics.OpenGL.SgixPolynomialFfd.GeometryDeformationSgix; - var _TextureDeformationSgix = OpenTK.Graphics.OpenGL.SgixPolynomialFfd.TextureDeformationSgix; - var _DeformationsMaskSgix = OpenTK.Graphics.OpenGL.SgixPolynomialFfd.DeformationsMaskSgix; - var _MaxDeformationOrderSgix = OpenTK.Graphics.OpenGL.SgixPolynomialFfd.MaxDeformationOrderSgix; -} -static void Test_SgixReferencePlane_19968() { - var _ReferencePlaneSgix = OpenTK.Graphics.OpenGL.SgixReferencePlane.ReferencePlaneSgix; - var _ReferencePlaneEquationSgix = OpenTK.Graphics.OpenGL.SgixReferencePlane.ReferencePlaneEquationSgix; -} -static void Test_SgixResample_19969() { - var _PackResampleSgix = OpenTK.Graphics.OpenGL.SgixResample.PackResampleSgix; - var _UnpackResampleSgix = OpenTK.Graphics.OpenGL.SgixResample.UnpackResampleSgix; - var _ResampleReplicateSgix = OpenTK.Graphics.OpenGL.SgixResample.ResampleReplicateSgix; - var _ResampleZeroFillSgix = OpenTK.Graphics.OpenGL.SgixResample.ResampleZeroFillSgix; - var _ResampleDecimateSgix = OpenTK.Graphics.OpenGL.SgixResample.ResampleDecimateSgix; -} -static void Test_SgixScalebiasHint_19970() { - var _ScalebiasHintSgix = OpenTK.Graphics.OpenGL.SgixScalebiasHint.ScalebiasHintSgix; -} -static void Test_SgixShadow_19971() { - var _TextureCompareSgix = OpenTK.Graphics.OpenGL.SgixShadow.TextureCompareSgix; - var _TextureCompareOperatorSgix = OpenTK.Graphics.OpenGL.SgixShadow.TextureCompareOperatorSgix; - var _TextureLequalRSgix = OpenTK.Graphics.OpenGL.SgixShadow.TextureLequalRSgix; - var _TextureGequalRSgix = OpenTK.Graphics.OpenGL.SgixShadow.TextureGequalRSgix; -} -static void Test_SgixShadowAmbient_19972() { - var _ShadowAmbientSgix = OpenTK.Graphics.OpenGL.SgixShadowAmbient.ShadowAmbientSgix; -} -static void Test_SgixSprite_19973() { - var _SpriteSgix = OpenTK.Graphics.OpenGL.SgixSprite.SpriteSgix; - var _SpriteModeSgix = OpenTK.Graphics.OpenGL.SgixSprite.SpriteModeSgix; - var _SpriteAxisSgix = OpenTK.Graphics.OpenGL.SgixSprite.SpriteAxisSgix; - var _SpriteTranslationSgix = OpenTK.Graphics.OpenGL.SgixSprite.SpriteTranslationSgix; - var _SpriteAxialSgix = OpenTK.Graphics.OpenGL.SgixSprite.SpriteAxialSgix; - var _SpriteObjectAlignedSgix = OpenTK.Graphics.OpenGL.SgixSprite.SpriteObjectAlignedSgix; - var _SpriteEyeAlignedSgix = OpenTK.Graphics.OpenGL.SgixSprite.SpriteEyeAlignedSgix; -} -static void Test_SgixSubsample_19974() { - var _PackSubsampleRateSgix = OpenTK.Graphics.OpenGL.SgixSubsample.PackSubsampleRateSgix; - var _UnpackSubsampleRateSgix = OpenTK.Graphics.OpenGL.SgixSubsample.UnpackSubsampleRateSgix; - var _PixelSubsample4444Sgix = OpenTK.Graphics.OpenGL.SgixSubsample.PixelSubsample4444Sgix; - var _PixelSubsample2424Sgix = OpenTK.Graphics.OpenGL.SgixSubsample.PixelSubsample2424Sgix; - var _PixelSubsample4242Sgix = OpenTK.Graphics.OpenGL.SgixSubsample.PixelSubsample4242Sgix; -} -static void Test_SgixTagSampleBuffer_19975() { -} -static void Test_SgixTextureAddEnv_19976() { - var _TextureEnvBiasSgix = OpenTK.Graphics.OpenGL.SgixTextureAddEnv.TextureEnvBiasSgix; -} -static void Test_SgixTextureCoordinateClamp_19977() { - var _TextureMaxClampSSgix = OpenTK.Graphics.OpenGL.SgixTextureCoordinateClamp.TextureMaxClampSSgix; - var _TextureMaxClampTSgix = OpenTK.Graphics.OpenGL.SgixTextureCoordinateClamp.TextureMaxClampTSgix; - var _TextureMaxClampRSgix = OpenTK.Graphics.OpenGL.SgixTextureCoordinateClamp.TextureMaxClampRSgix; -} -static void Test_SgixTextureLodBias_19978() { - var _TextureLodBiasSSgix = OpenTK.Graphics.OpenGL.SgixTextureLodBias.TextureLodBiasSSgix; - var _TextureLodBiasTSgix = OpenTK.Graphics.OpenGL.SgixTextureLodBias.TextureLodBiasTSgix; - var _TextureLodBiasRSgix = OpenTK.Graphics.OpenGL.SgixTextureLodBias.TextureLodBiasRSgix; -} -static void Test_SgixTextureMultiBuffer_19979() { - var _TextureMultiBufferHintSgix = OpenTK.Graphics.OpenGL.SgixTextureMultiBuffer.TextureMultiBufferHintSgix; -} -static void Test_SgixTextureScaleBias_19980() { - var _PostTextureFilterBiasSgix = OpenTK.Graphics.OpenGL.SgixTextureScaleBias.PostTextureFilterBiasSgix; - var _PostTextureFilterScaleSgix = OpenTK.Graphics.OpenGL.SgixTextureScaleBias.PostTextureFilterScaleSgix; - var _PostTextureFilterBiasRangeSgix = OpenTK.Graphics.OpenGL.SgixTextureScaleBias.PostTextureFilterBiasRangeSgix; - var _PostTextureFilterScaleRangeSgix = OpenTK.Graphics.OpenGL.SgixTextureScaleBias.PostTextureFilterScaleRangeSgix; -} -static void Test_SgixVertexPreclip_19981() { - var _VertexPreclipSgix = OpenTK.Graphics.OpenGL.SgixVertexPreclip.VertexPreclipSgix; - var _VertexPreclipHintSgix = OpenTK.Graphics.OpenGL.SgixVertexPreclip.VertexPreclipHintSgix; -} -static void Test_SgixYcrcb_19982() { - var _Ycrcb422Sgix = OpenTK.Graphics.OpenGL.SgixYcrcb.Ycrcb422Sgix; - var _Ycrcb444Sgix = OpenTK.Graphics.OpenGL.SgixYcrcb.Ycrcb444Sgix; -} -static void Test_SgixYcrcba_19983() { - var _YcrcbSgix = OpenTK.Graphics.OpenGL.SgixYcrcba.YcrcbSgix; - var _YcrcbaSgix = OpenTK.Graphics.OpenGL.SgixYcrcba.YcrcbaSgix; -} -static void Test_SgixYcrcbSubsample_19984() { -} -static void Test_ShaderParameter_19985() { - var _ShaderType = OpenTK.Graphics.OpenGL.ShaderParameter.ShaderType; - var _DeleteStatus = OpenTK.Graphics.OpenGL.ShaderParameter.DeleteStatus; - var _CompileStatus = OpenTK.Graphics.OpenGL.ShaderParameter.CompileStatus; - var _InfoLogLength = OpenTK.Graphics.OpenGL.ShaderParameter.InfoLogLength; - var _ShaderSourceLength = OpenTK.Graphics.OpenGL.ShaderParameter.ShaderSourceLength; -} -static void Test_ShaderPrecision_19986() { - var _LowFloat = OpenTK.Graphics.OpenGL.ShaderPrecision.LowFloat; - var _MediumFloat = OpenTK.Graphics.OpenGL.ShaderPrecision.MediumFloat; - var _HighFloat = OpenTK.Graphics.OpenGL.ShaderPrecision.HighFloat; - var _LowInt = OpenTK.Graphics.OpenGL.ShaderPrecision.LowInt; - var _MediumInt = OpenTK.Graphics.OpenGL.ShaderPrecision.MediumInt; - var _HighInt = OpenTK.Graphics.OpenGL.ShaderPrecision.HighInt; -} -static void Test_ShaderType_19987() { - var _FragmentShader = OpenTK.Graphics.OpenGL.ShaderType.FragmentShader; - var _VertexShader = OpenTK.Graphics.OpenGL.ShaderType.VertexShader; - var _GeometryShader = OpenTK.Graphics.OpenGL.ShaderType.GeometryShader; - var _GeometryShaderExt = OpenTK.Graphics.OpenGL.ShaderType.GeometryShaderExt; - var _TessEvaluationShader = OpenTK.Graphics.OpenGL.ShaderType.TessEvaluationShader; - var _TessControlShader = OpenTK.Graphics.OpenGL.ShaderType.TessControlShader; - var _ComputeShader = OpenTK.Graphics.OpenGL.ShaderType.ComputeShader; -} -static void Test_ShadingModel_19988() { - var _Flat = OpenTK.Graphics.OpenGL.ShadingModel.Flat; - var _Smooth = OpenTK.Graphics.OpenGL.ShadingModel.Smooth; -} -static void Test_SizedInternalFormat_19989() { - var _Rgba8 = OpenTK.Graphics.OpenGL.SizedInternalFormat.Rgba8; - var _Rgba16 = OpenTK.Graphics.OpenGL.SizedInternalFormat.Rgba16; - var _R8 = OpenTK.Graphics.OpenGL.SizedInternalFormat.R8; - var _R16 = OpenTK.Graphics.OpenGL.SizedInternalFormat.R16; - var _Rg8 = OpenTK.Graphics.OpenGL.SizedInternalFormat.Rg8; - var _Rg16 = OpenTK.Graphics.OpenGL.SizedInternalFormat.Rg16; - var _R16f = OpenTK.Graphics.OpenGL.SizedInternalFormat.R16f; - var _R32f = OpenTK.Graphics.OpenGL.SizedInternalFormat.R32f; - var _Rg16f = OpenTK.Graphics.OpenGL.SizedInternalFormat.Rg16f; - var _Rg32f = OpenTK.Graphics.OpenGL.SizedInternalFormat.Rg32f; - var _R8i = OpenTK.Graphics.OpenGL.SizedInternalFormat.R8i; - var _R8ui = OpenTK.Graphics.OpenGL.SizedInternalFormat.R8ui; - var _R16i = OpenTK.Graphics.OpenGL.SizedInternalFormat.R16i; - var _R16ui = OpenTK.Graphics.OpenGL.SizedInternalFormat.R16ui; - var _R32i = OpenTK.Graphics.OpenGL.SizedInternalFormat.R32i; - var _R32ui = OpenTK.Graphics.OpenGL.SizedInternalFormat.R32ui; - var _Rg8i = OpenTK.Graphics.OpenGL.SizedInternalFormat.Rg8i; - var _Rg8ui = OpenTK.Graphics.OpenGL.SizedInternalFormat.Rg8ui; - var _Rg16i = OpenTK.Graphics.OpenGL.SizedInternalFormat.Rg16i; - var _Rg16ui = OpenTK.Graphics.OpenGL.SizedInternalFormat.Rg16ui; - var _Rg32i = OpenTK.Graphics.OpenGL.SizedInternalFormat.Rg32i; - var _Rg32ui = OpenTK.Graphics.OpenGL.SizedInternalFormat.Rg32ui; - var _Rgba32f = OpenTK.Graphics.OpenGL.SizedInternalFormat.Rgba32f; - var _Rgba16f = OpenTK.Graphics.OpenGL.SizedInternalFormat.Rgba16f; - var _Rgba32ui = OpenTK.Graphics.OpenGL.SizedInternalFormat.Rgba32ui; - var _Rgba16ui = OpenTK.Graphics.OpenGL.SizedInternalFormat.Rgba16ui; - var _Rgba8ui = OpenTK.Graphics.OpenGL.SizedInternalFormat.Rgba8ui; - var _Rgba32i = OpenTK.Graphics.OpenGL.SizedInternalFormat.Rgba32i; - var _Rgba16i = OpenTK.Graphics.OpenGL.SizedInternalFormat.Rgba16i; - var _Rgba8i = OpenTK.Graphics.OpenGL.SizedInternalFormat.Rgba8i; -} -static void Test_StencilFace_19990() { - var _Front = OpenTK.Graphics.OpenGL.StencilFace.Front; - var _Back = OpenTK.Graphics.OpenGL.StencilFace.Back; - var _FrontAndBack = OpenTK.Graphics.OpenGL.StencilFace.FrontAndBack; -} -static void Test_StencilFunction_19991() { - var _Never = OpenTK.Graphics.OpenGL.StencilFunction.Never; - var _Less = OpenTK.Graphics.OpenGL.StencilFunction.Less; - var _Equal = OpenTK.Graphics.OpenGL.StencilFunction.Equal; - var _Lequal = OpenTK.Graphics.OpenGL.StencilFunction.Lequal; - var _Greater = OpenTK.Graphics.OpenGL.StencilFunction.Greater; - var _Notequal = OpenTK.Graphics.OpenGL.StencilFunction.Notequal; - var _Gequal = OpenTK.Graphics.OpenGL.StencilFunction.Gequal; - var _Always = OpenTK.Graphics.OpenGL.StencilFunction.Always; -} -static void Test_StencilOp_19992() { - var _Zero = OpenTK.Graphics.OpenGL.StencilOp.Zero; - var _Invert = OpenTK.Graphics.OpenGL.StencilOp.Invert; - var _Keep = OpenTK.Graphics.OpenGL.StencilOp.Keep; - var _Replace = OpenTK.Graphics.OpenGL.StencilOp.Replace; - var _Incr = OpenTK.Graphics.OpenGL.StencilOp.Incr; - var _Decr = OpenTK.Graphics.OpenGL.StencilOp.Decr; - var _IncrWrap = OpenTK.Graphics.OpenGL.StencilOp.IncrWrap; - var _DecrWrap = OpenTK.Graphics.OpenGL.StencilOp.DecrWrap; -} -static void Test_StringName_19993() { - var _Vendor = OpenTK.Graphics.OpenGL.StringName.Vendor; - var _Renderer = OpenTK.Graphics.OpenGL.StringName.Renderer; - var _Version = OpenTK.Graphics.OpenGL.StringName.Version; - var _Extensions = OpenTK.Graphics.OpenGL.StringName.Extensions; - var _ShadingLanguageVersion = OpenTK.Graphics.OpenGL.StringName.ShadingLanguageVersion; -} -static void Test_StringNameIndexed_19994() { - var _Extensions = OpenTK.Graphics.OpenGL.StringNameIndexed.Extensions; - var _ShadingLanguageVersion = OpenTK.Graphics.OpenGL.StringNameIndexed.ShadingLanguageVersion; -} -static void Test_SunConvolutionBorderModes_19995() { - var _WrapBorderSun = OpenTK.Graphics.OpenGL.SunConvolutionBorderModes.WrapBorderSun; -} -static void Test_SunGlobalAlpha_19996() { - var _GlobalAlphaSun = OpenTK.Graphics.OpenGL.SunGlobalAlpha.GlobalAlphaSun; - var _GlobalAlphaFactorSun = OpenTK.Graphics.OpenGL.SunGlobalAlpha.GlobalAlphaFactorSun; -} -static void Test_SunMeshArray_19997() { - var _QuadMeshSun = OpenTK.Graphics.OpenGL.SunMeshArray.QuadMeshSun; - var _TriangleMeshSun = OpenTK.Graphics.OpenGL.SunMeshArray.TriangleMeshSun; -} -static void Test_SunSliceAccum_19998() { - var _SliceAccumSun = OpenTK.Graphics.OpenGL.SunSliceAccum.SliceAccumSun; -} -static void Test_SunTriangleList_19999() { - var _RestartSun = OpenTK.Graphics.OpenGL.SunTriangleList.RestartSun; - var _ReplaceMiddleSun = OpenTK.Graphics.OpenGL.SunTriangleList.ReplaceMiddleSun; - var _ReplaceOldestSun = OpenTK.Graphics.OpenGL.SunTriangleList.ReplaceOldestSun; - var _TriangleListSun = OpenTK.Graphics.OpenGL.SunTriangleList.TriangleListSun; - var _ReplacementCodeSun = OpenTK.Graphics.OpenGL.SunTriangleList.ReplacementCodeSun; - var _ReplacementCodeArraySun = OpenTK.Graphics.OpenGL.SunTriangleList.ReplacementCodeArraySun; - var _ReplacementCodeArrayTypeSun = OpenTK.Graphics.OpenGL.SunTriangleList.ReplacementCodeArrayTypeSun; - var _ReplacementCodeArrayStrideSun = OpenTK.Graphics.OpenGL.SunTriangleList.ReplacementCodeArrayStrideSun; - var _ReplacementCodeArrayPointerSun = OpenTK.Graphics.OpenGL.SunTriangleList.ReplacementCodeArrayPointerSun; - var _R1uiV3fSun = OpenTK.Graphics.OpenGL.SunTriangleList.R1uiV3fSun; - var _R1uiC4ubV3fSun = OpenTK.Graphics.OpenGL.SunTriangleList.R1uiC4ubV3fSun; - var _R1uiC3fV3fSun = OpenTK.Graphics.OpenGL.SunTriangleList.R1uiC3fV3fSun; - var _R1uiN3fV3fSun = OpenTK.Graphics.OpenGL.SunTriangleList.R1uiN3fV3fSun; - var _R1uiC4fN3fV3fSun = OpenTK.Graphics.OpenGL.SunTriangleList.R1uiC4fN3fV3fSun; - var _R1uiT2fV3fSun = OpenTK.Graphics.OpenGL.SunTriangleList.R1uiT2fV3fSun; - var _R1uiT2fN3fV3fSun = OpenTK.Graphics.OpenGL.SunTriangleList.R1uiT2fN3fV3fSun; - var _R1uiT2fC4fN3fV3fSun = OpenTK.Graphics.OpenGL.SunTriangleList.R1uiT2fC4fN3fV3fSun; -} -static void Test_SunVertex_20000() { -} -static void Test_SunxConstantData_20001() { - var _UnpackConstantDataSunx = OpenTK.Graphics.OpenGL.SunxConstantData.UnpackConstantDataSunx; - var _TextureConstantDataSunx = OpenTK.Graphics.OpenGL.SunxConstantData.TextureConstantDataSunx; -} -static void Test_SyncCondition_20002() { - var _SyncGpuCommandsComplete = OpenTK.Graphics.OpenGL.SyncCondition.SyncGpuCommandsComplete; -} -static void Test_SyncParameterName_20003() { - var _ObjectType = OpenTK.Graphics.OpenGL.SyncParameterName.ObjectType; - var _SyncCondition = OpenTK.Graphics.OpenGL.SyncParameterName.SyncCondition; - var _SyncStatus = OpenTK.Graphics.OpenGL.SyncParameterName.SyncStatus; - var _SyncFlags = OpenTK.Graphics.OpenGL.SyncParameterName.SyncFlags; -} -static void Test_TexCoordPointerType_20004() { - var _Short = OpenTK.Graphics.OpenGL.TexCoordPointerType.Short; - var _Int = OpenTK.Graphics.OpenGL.TexCoordPointerType.Int; - var _Float = OpenTK.Graphics.OpenGL.TexCoordPointerType.Float; - var _Double = OpenTK.Graphics.OpenGL.TexCoordPointerType.Double; - var _HalfFloat = OpenTK.Graphics.OpenGL.TexCoordPointerType.HalfFloat; - var _UnsignedInt2101010Rev = OpenTK.Graphics.OpenGL.TexCoordPointerType.UnsignedInt2101010Rev; - var _Int2101010Rev = OpenTK.Graphics.OpenGL.TexCoordPointerType.Int2101010Rev; -} -static void Test_TextureAccess_20005() { - var _ReadOnly = OpenTK.Graphics.OpenGL.TextureAccess.ReadOnly; - var _WriteOnly = OpenTK.Graphics.OpenGL.TextureAccess.WriteOnly; - var _ReadWrite = OpenTK.Graphics.OpenGL.TextureAccess.ReadWrite; -} -static void Test_TextureBufferTarget_20006() { - var _TextureBuffer = OpenTK.Graphics.OpenGL.TextureBufferTarget.TextureBuffer; -} -static void Test_TextureCompareMode_20007() { - var _None = OpenTK.Graphics.OpenGL.TextureCompareMode.None; - var _CompareRefToTexture = OpenTK.Graphics.OpenGL.TextureCompareMode.CompareRefToTexture; - var _CompareRToTexture = OpenTK.Graphics.OpenGL.TextureCompareMode.CompareRToTexture; -} -static void Test_TextureCoordName_20008() { - var _S = OpenTK.Graphics.OpenGL.TextureCoordName.S; - var _T = OpenTK.Graphics.OpenGL.TextureCoordName.T; - var _R = OpenTK.Graphics.OpenGL.TextureCoordName.R; - var _Q = OpenTK.Graphics.OpenGL.TextureCoordName.Q; -} -static void Test_TextureEnvMode_20009() { - var _Add = OpenTK.Graphics.OpenGL.TextureEnvMode.Add; - var _Blend = OpenTK.Graphics.OpenGL.TextureEnvMode.Blend; - var _Replace = OpenTK.Graphics.OpenGL.TextureEnvMode.Replace; - var _Modulate = OpenTK.Graphics.OpenGL.TextureEnvMode.Modulate; - var _Decal = OpenTK.Graphics.OpenGL.TextureEnvMode.Decal; - var _ReplaceExt = OpenTK.Graphics.OpenGL.TextureEnvMode.ReplaceExt; - var _TextureEnvBiasSgix = OpenTK.Graphics.OpenGL.TextureEnvMode.TextureEnvBiasSgix; - var _Combine = OpenTK.Graphics.OpenGL.TextureEnvMode.Combine; -} -static void Test_TextureEnvModeCombine_20010() { - var _Add = OpenTK.Graphics.OpenGL.TextureEnvModeCombine.Add; - var _Replace = OpenTK.Graphics.OpenGL.TextureEnvModeCombine.Replace; - var _Modulate = OpenTK.Graphics.OpenGL.TextureEnvModeCombine.Modulate; - var _Subtract = OpenTK.Graphics.OpenGL.TextureEnvModeCombine.Subtract; - var _AddSigned = OpenTK.Graphics.OpenGL.TextureEnvModeCombine.AddSigned; - var _Interpolate = OpenTK.Graphics.OpenGL.TextureEnvModeCombine.Interpolate; - var _Dot3Rgb = OpenTK.Graphics.OpenGL.TextureEnvModeCombine.Dot3Rgb; - var _Dot3Rgba = OpenTK.Graphics.OpenGL.TextureEnvModeCombine.Dot3Rgba; -} -static void Test_TextureEnvModeOperandAlpha_20011() { - var _SrcAlpha = OpenTK.Graphics.OpenGL.TextureEnvModeOperandAlpha.SrcAlpha; - var _OneMinusSrcAlpha = OpenTK.Graphics.OpenGL.TextureEnvModeOperandAlpha.OneMinusSrcAlpha; -} -static void Test_TextureEnvModeOperandRgb_20012() { - var _SrcColor = OpenTK.Graphics.OpenGL.TextureEnvModeOperandRgb.SrcColor; - var _OneMinusSrcColor = OpenTK.Graphics.OpenGL.TextureEnvModeOperandRgb.OneMinusSrcColor; - var _SrcAlpha = OpenTK.Graphics.OpenGL.TextureEnvModeOperandRgb.SrcAlpha; - var _OneMinusSrcAlpha = OpenTK.Graphics.OpenGL.TextureEnvModeOperandRgb.OneMinusSrcAlpha; -} -static void Test_TextureEnvModePointSprite_20013() { - var _False = OpenTK.Graphics.OpenGL.TextureEnvModePointSprite.False; - var _True = OpenTK.Graphics.OpenGL.TextureEnvModePointSprite.True; -} -static void Test_TextureEnvModeScale_20014() { - var _One = OpenTK.Graphics.OpenGL.TextureEnvModeScale.One; - var _Two = OpenTK.Graphics.OpenGL.TextureEnvModeScale.Two; - var _Four = OpenTK.Graphics.OpenGL.TextureEnvModeScale.Four; -} -static void Test_TextureEnvModeSource_20015() { - var _Texture = OpenTK.Graphics.OpenGL.TextureEnvModeSource.Texture; - var _Texture0 = OpenTK.Graphics.OpenGL.TextureEnvModeSource.Texture0; - var _Texture1 = OpenTK.Graphics.OpenGL.TextureEnvModeSource.Texture1; - var _Texture2 = OpenTK.Graphics.OpenGL.TextureEnvModeSource.Texture2; - var _Texture3 = OpenTK.Graphics.OpenGL.TextureEnvModeSource.Texture3; - var _Texture4 = OpenTK.Graphics.OpenGL.TextureEnvModeSource.Texture4; - var _Texture5 = OpenTK.Graphics.OpenGL.TextureEnvModeSource.Texture5; - var _Texture6 = OpenTK.Graphics.OpenGL.TextureEnvModeSource.Texture6; - var _Texture7 = OpenTK.Graphics.OpenGL.TextureEnvModeSource.Texture7; - var _Texture8 = OpenTK.Graphics.OpenGL.TextureEnvModeSource.Texture8; - var _Texture9 = OpenTK.Graphics.OpenGL.TextureEnvModeSource.Texture9; - var _Texture10 = OpenTK.Graphics.OpenGL.TextureEnvModeSource.Texture10; - var _Texture11 = OpenTK.Graphics.OpenGL.TextureEnvModeSource.Texture11; - var _Texture12 = OpenTK.Graphics.OpenGL.TextureEnvModeSource.Texture12; - var _Texture13 = OpenTK.Graphics.OpenGL.TextureEnvModeSource.Texture13; - var _Texture14 = OpenTK.Graphics.OpenGL.TextureEnvModeSource.Texture14; - var _Texture15 = OpenTK.Graphics.OpenGL.TextureEnvModeSource.Texture15; - var _Texture16 = OpenTK.Graphics.OpenGL.TextureEnvModeSource.Texture16; - var _Texture17 = OpenTK.Graphics.OpenGL.TextureEnvModeSource.Texture17; - var _Texture18 = OpenTK.Graphics.OpenGL.TextureEnvModeSource.Texture18; - var _Texture19 = OpenTK.Graphics.OpenGL.TextureEnvModeSource.Texture19; - var _Texture20 = OpenTK.Graphics.OpenGL.TextureEnvModeSource.Texture20; - var _Texture21 = OpenTK.Graphics.OpenGL.TextureEnvModeSource.Texture21; - var _Texture22 = OpenTK.Graphics.OpenGL.TextureEnvModeSource.Texture22; - var _Texture23 = OpenTK.Graphics.OpenGL.TextureEnvModeSource.Texture23; - var _Texture24 = OpenTK.Graphics.OpenGL.TextureEnvModeSource.Texture24; - var _Texture25 = OpenTK.Graphics.OpenGL.TextureEnvModeSource.Texture25; - var _Texture26 = OpenTK.Graphics.OpenGL.TextureEnvModeSource.Texture26; - var _Texture27 = OpenTK.Graphics.OpenGL.TextureEnvModeSource.Texture27; - var _Texture28 = OpenTK.Graphics.OpenGL.TextureEnvModeSource.Texture28; - var _Texture29 = OpenTK.Graphics.OpenGL.TextureEnvModeSource.Texture29; - var _Texture30 = OpenTK.Graphics.OpenGL.TextureEnvModeSource.Texture30; - var _Texture31 = OpenTK.Graphics.OpenGL.TextureEnvModeSource.Texture31; - var _Constant = OpenTK.Graphics.OpenGL.TextureEnvModeSource.Constant; - var _PrimaryColor = OpenTK.Graphics.OpenGL.TextureEnvModeSource.PrimaryColor; - var _Previous = OpenTK.Graphics.OpenGL.TextureEnvModeSource.Previous; -} -static void Test_TextureEnvParameter_20016() { - var _AlphaScale = OpenTK.Graphics.OpenGL.TextureEnvParameter.AlphaScale; - var _TextureEnvMode = OpenTK.Graphics.OpenGL.TextureEnvParameter.TextureEnvMode; - var _TextureEnvColor = OpenTK.Graphics.OpenGL.TextureEnvParameter.TextureEnvColor; - var _TextureLodBias = OpenTK.Graphics.OpenGL.TextureEnvParameter.TextureLodBias; - var _CombineRgb = OpenTK.Graphics.OpenGL.TextureEnvParameter.CombineRgb; - var _CombineAlpha = OpenTK.Graphics.OpenGL.TextureEnvParameter.CombineAlpha; - var _RgbScale = OpenTK.Graphics.OpenGL.TextureEnvParameter.RgbScale; - var _Source0Rgb = OpenTK.Graphics.OpenGL.TextureEnvParameter.Source0Rgb; - var _Src1Rgb = OpenTK.Graphics.OpenGL.TextureEnvParameter.Src1Rgb; - var _Src2Rgb = OpenTK.Graphics.OpenGL.TextureEnvParameter.Src2Rgb; - var _Src0Alpha = OpenTK.Graphics.OpenGL.TextureEnvParameter.Src0Alpha; - var _Src1Alpha = OpenTK.Graphics.OpenGL.TextureEnvParameter.Src1Alpha; - var _Src2Alpha = OpenTK.Graphics.OpenGL.TextureEnvParameter.Src2Alpha; - var _Operand0Rgb = OpenTK.Graphics.OpenGL.TextureEnvParameter.Operand0Rgb; - var _Operand1Rgb = OpenTK.Graphics.OpenGL.TextureEnvParameter.Operand1Rgb; - var _Operand2Rgb = OpenTK.Graphics.OpenGL.TextureEnvParameter.Operand2Rgb; - var _Operand0Alpha = OpenTK.Graphics.OpenGL.TextureEnvParameter.Operand0Alpha; - var _Operand1Alpha = OpenTK.Graphics.OpenGL.TextureEnvParameter.Operand1Alpha; - var _Operand2Alpha = OpenTK.Graphics.OpenGL.TextureEnvParameter.Operand2Alpha; - var _CoordReplace = OpenTK.Graphics.OpenGL.TextureEnvParameter.CoordReplace; -} -static void Test_TextureEnvTarget_20017() { - var _TextureEnv = OpenTK.Graphics.OpenGL.TextureEnvTarget.TextureEnv; - var _TextureFilterControl = OpenTK.Graphics.OpenGL.TextureEnvTarget.TextureFilterControl; - var _PointSprite = OpenTK.Graphics.OpenGL.TextureEnvTarget.PointSprite; -} -static void Test_TextureFilterFuncSgis_20018() { - var _Filter4Sgis = OpenTK.Graphics.OpenGL.TextureFilterFuncSgis.Filter4Sgis; -} -static void Test_TextureGenMode_20019() { - var _EyeLinear = OpenTK.Graphics.OpenGL.TextureGenMode.EyeLinear; - var _ObjectLinear = OpenTK.Graphics.OpenGL.TextureGenMode.ObjectLinear; - var _SphereMap = OpenTK.Graphics.OpenGL.TextureGenMode.SphereMap; - var _EyeDistanceToPointSgis = OpenTK.Graphics.OpenGL.TextureGenMode.EyeDistanceToPointSgis; - var _ObjectDistanceToPointSgis = OpenTK.Graphics.OpenGL.TextureGenMode.ObjectDistanceToPointSgis; - var _EyeDistanceToLineSgis = OpenTK.Graphics.OpenGL.TextureGenMode.EyeDistanceToLineSgis; - var _ObjectDistanceToLineSgis = OpenTK.Graphics.OpenGL.TextureGenMode.ObjectDistanceToLineSgis; - var _NormalMap = OpenTK.Graphics.OpenGL.TextureGenMode.NormalMap; - var _ReflectionMap = OpenTK.Graphics.OpenGL.TextureGenMode.ReflectionMap; -} -static void Test_TextureGenParameter_20020() { - var _TextureGenMode = OpenTK.Graphics.OpenGL.TextureGenParameter.TextureGenMode; - var _ObjectPlane = OpenTK.Graphics.OpenGL.TextureGenParameter.ObjectPlane; - var _EyePlane = OpenTK.Graphics.OpenGL.TextureGenParameter.EyePlane; - var _EyePointSgis = OpenTK.Graphics.OpenGL.TextureGenParameter.EyePointSgis; - var _ObjectPointSgis = OpenTK.Graphics.OpenGL.TextureGenParameter.ObjectPointSgis; - var _EyeLineSgis = OpenTK.Graphics.OpenGL.TextureGenParameter.EyeLineSgis; - var _ObjectLineSgis = OpenTK.Graphics.OpenGL.TextureGenParameter.ObjectLineSgis; -} -static void Test_TextureMagFilter_20021() { - var _Nearest = OpenTK.Graphics.OpenGL.TextureMagFilter.Nearest; - var _Linear = OpenTK.Graphics.OpenGL.TextureMagFilter.Linear; - var _LinearDetailSgis = OpenTK.Graphics.OpenGL.TextureMagFilter.LinearDetailSgis; - var _LinearDetailAlphaSgis = OpenTK.Graphics.OpenGL.TextureMagFilter.LinearDetailAlphaSgis; - var _LinearDetailColorSgis = OpenTK.Graphics.OpenGL.TextureMagFilter.LinearDetailColorSgis; - var _LinearSharpenSgis = OpenTK.Graphics.OpenGL.TextureMagFilter.LinearSharpenSgis; - var _LinearSharpenAlphaSgis = OpenTK.Graphics.OpenGL.TextureMagFilter.LinearSharpenAlphaSgis; - var _LinearSharpenColorSgis = OpenTK.Graphics.OpenGL.TextureMagFilter.LinearSharpenColorSgis; - var _Filter4Sgis = OpenTK.Graphics.OpenGL.TextureMagFilter.Filter4Sgis; - var _PixelTexGenQCeilingSgix = OpenTK.Graphics.OpenGL.TextureMagFilter.PixelTexGenQCeilingSgix; - var _PixelTexGenQRoundSgix = OpenTK.Graphics.OpenGL.TextureMagFilter.PixelTexGenQRoundSgix; - var _PixelTexGenQFloorSgix = OpenTK.Graphics.OpenGL.TextureMagFilter.PixelTexGenQFloorSgix; -} -static void Test_TextureMinFilter_20022() { - var _Nearest = OpenTK.Graphics.OpenGL.TextureMinFilter.Nearest; - var _Linear = OpenTK.Graphics.OpenGL.TextureMinFilter.Linear; - var _NearestMipmapNearest = OpenTK.Graphics.OpenGL.TextureMinFilter.NearestMipmapNearest; - var _LinearMipmapNearest = OpenTK.Graphics.OpenGL.TextureMinFilter.LinearMipmapNearest; - var _NearestMipmapLinear = OpenTK.Graphics.OpenGL.TextureMinFilter.NearestMipmapLinear; - var _LinearMipmapLinear = OpenTK.Graphics.OpenGL.TextureMinFilter.LinearMipmapLinear; - var _Filter4Sgis = OpenTK.Graphics.OpenGL.TextureMinFilter.Filter4Sgis; - var _LinearClipmapLinearSgix = OpenTK.Graphics.OpenGL.TextureMinFilter.LinearClipmapLinearSgix; - var _PixelTexGenQCeilingSgix = OpenTK.Graphics.OpenGL.TextureMinFilter.PixelTexGenQCeilingSgix; - var _PixelTexGenQRoundSgix = OpenTK.Graphics.OpenGL.TextureMinFilter.PixelTexGenQRoundSgix; - var _PixelTexGenQFloorSgix = OpenTK.Graphics.OpenGL.TextureMinFilter.PixelTexGenQFloorSgix; - var _NearestClipmapNearestSgix = OpenTK.Graphics.OpenGL.TextureMinFilter.NearestClipmapNearestSgix; - var _NearestClipmapLinearSgix = OpenTK.Graphics.OpenGL.TextureMinFilter.NearestClipmapLinearSgix; - var _LinearClipmapNearestSgix = OpenTK.Graphics.OpenGL.TextureMinFilter.LinearClipmapNearestSgix; -} -static void Test_TextureParameterName_20023() { - var _TextureBorderColor = OpenTK.Graphics.OpenGL.TextureParameterName.TextureBorderColor; - var _TextureMagFilter = OpenTK.Graphics.OpenGL.TextureParameterName.TextureMagFilter; - var _TextureMinFilter = OpenTK.Graphics.OpenGL.TextureParameterName.TextureMinFilter; - var _TextureWrapS = OpenTK.Graphics.OpenGL.TextureParameterName.TextureWrapS; - var _TextureWrapT = OpenTK.Graphics.OpenGL.TextureParameterName.TextureWrapT; - var _TexturePriority = OpenTK.Graphics.OpenGL.TextureParameterName.TexturePriority; - var _TexturePriorityExt = OpenTK.Graphics.OpenGL.TextureParameterName.TexturePriorityExt; - var _TextureDepth = OpenTK.Graphics.OpenGL.TextureParameterName.TextureDepth; - var _TextureWrapR = OpenTK.Graphics.OpenGL.TextureParameterName.TextureWrapR; - var _TextureWrapRExt = OpenTK.Graphics.OpenGL.TextureParameterName.TextureWrapRExt; - var _TextureWrapROes = OpenTK.Graphics.OpenGL.TextureParameterName.TextureWrapROes; - var _DetailTextureLevelSgis = OpenTK.Graphics.OpenGL.TextureParameterName.DetailTextureLevelSgis; - var _DetailTextureModeSgis = OpenTK.Graphics.OpenGL.TextureParameterName.DetailTextureModeSgis; - var _ShadowAmbientSgix = OpenTK.Graphics.OpenGL.TextureParameterName.ShadowAmbientSgix; - var _TextureCompareFailValue = OpenTK.Graphics.OpenGL.TextureParameterName.TextureCompareFailValue; - var _DualTextureSelectSgis = OpenTK.Graphics.OpenGL.TextureParameterName.DualTextureSelectSgis; - var _QuadTextureSelectSgis = OpenTK.Graphics.OpenGL.TextureParameterName.QuadTextureSelectSgis; - var _ClampToBorder = OpenTK.Graphics.OpenGL.TextureParameterName.ClampToBorder; - var _ClampToEdge = OpenTK.Graphics.OpenGL.TextureParameterName.ClampToEdge; - var _TextureWrapQSgis = OpenTK.Graphics.OpenGL.TextureParameterName.TextureWrapQSgis; - var _TextureMinLod = OpenTK.Graphics.OpenGL.TextureParameterName.TextureMinLod; - var _TextureMaxLod = OpenTK.Graphics.OpenGL.TextureParameterName.TextureMaxLod; - var _TextureBaseLevel = OpenTK.Graphics.OpenGL.TextureParameterName.TextureBaseLevel; - var _TextureMaxLevel = OpenTK.Graphics.OpenGL.TextureParameterName.TextureMaxLevel; - var _TextureClipmapCenterSgix = OpenTK.Graphics.OpenGL.TextureParameterName.TextureClipmapCenterSgix; - var _TextureClipmapFrameSgix = OpenTK.Graphics.OpenGL.TextureParameterName.TextureClipmapFrameSgix; - var _TextureClipmapOffsetSgix = OpenTK.Graphics.OpenGL.TextureParameterName.TextureClipmapOffsetSgix; - var _TextureClipmapVirtualDepthSgix = OpenTK.Graphics.OpenGL.TextureParameterName.TextureClipmapVirtualDepthSgix; - var _TextureClipmapLodOffsetSgix = OpenTK.Graphics.OpenGL.TextureParameterName.TextureClipmapLodOffsetSgix; - var _TextureClipmapDepthSgix = OpenTK.Graphics.OpenGL.TextureParameterName.TextureClipmapDepthSgix; - var _PostTextureFilterBiasSgix = OpenTK.Graphics.OpenGL.TextureParameterName.PostTextureFilterBiasSgix; - var _PostTextureFilterScaleSgix = OpenTK.Graphics.OpenGL.TextureParameterName.PostTextureFilterScaleSgix; - var _TextureLodBiasSSgix = OpenTK.Graphics.OpenGL.TextureParameterName.TextureLodBiasSSgix; - var _TextureLodBiasTSgix = OpenTK.Graphics.OpenGL.TextureParameterName.TextureLodBiasTSgix; - var _TextureLodBiasRSgix = OpenTK.Graphics.OpenGL.TextureParameterName.TextureLodBiasRSgix; - var _GenerateMipmap = OpenTK.Graphics.OpenGL.TextureParameterName.GenerateMipmap; - var _GenerateMipmapSgis = OpenTK.Graphics.OpenGL.TextureParameterName.GenerateMipmapSgis; - var _TextureCompareSgix = OpenTK.Graphics.OpenGL.TextureParameterName.TextureCompareSgix; - var _TextureMaxClampSSgix = OpenTK.Graphics.OpenGL.TextureParameterName.TextureMaxClampSSgix; - var _TextureMaxClampTSgix = OpenTK.Graphics.OpenGL.TextureParameterName.TextureMaxClampTSgix; - var _TextureMaxClampRSgix = OpenTK.Graphics.OpenGL.TextureParameterName.TextureMaxClampRSgix; - var _TextureLodBias = OpenTK.Graphics.OpenGL.TextureParameterName.TextureLodBias; - var _DepthTextureMode = OpenTK.Graphics.OpenGL.TextureParameterName.DepthTextureMode; - var _TextureCompareMode = OpenTK.Graphics.OpenGL.TextureParameterName.TextureCompareMode; - var _TextureCompareFunc = OpenTK.Graphics.OpenGL.TextureParameterName.TextureCompareFunc; - var _TextureSwizzleR = OpenTK.Graphics.OpenGL.TextureParameterName.TextureSwizzleR; - var _TextureSwizzleG = OpenTK.Graphics.OpenGL.TextureParameterName.TextureSwizzleG; - var _TextureSwizzleB = OpenTK.Graphics.OpenGL.TextureParameterName.TextureSwizzleB; - var _TextureSwizzleA = OpenTK.Graphics.OpenGL.TextureParameterName.TextureSwizzleA; - var _TextureSwizzleRgba = OpenTK.Graphics.OpenGL.TextureParameterName.TextureSwizzleRgba; -} -static void Test_TextureTarget_20024() { - var _Texture1D = OpenTK.Graphics.OpenGL.TextureTarget.Texture1D; - var _Texture2D = OpenTK.Graphics.OpenGL.TextureTarget.Texture2D; - var _ProxyTexture1D = OpenTK.Graphics.OpenGL.TextureTarget.ProxyTexture1D; - var _ProxyTexture1DExt = OpenTK.Graphics.OpenGL.TextureTarget.ProxyTexture1DExt; - var _ProxyTexture2D = OpenTK.Graphics.OpenGL.TextureTarget.ProxyTexture2D; - var _ProxyTexture2DExt = OpenTK.Graphics.OpenGL.TextureTarget.ProxyTexture2DExt; - var _Texture3D = OpenTK.Graphics.OpenGL.TextureTarget.Texture3D; - var _Texture3DExt = OpenTK.Graphics.OpenGL.TextureTarget.Texture3DExt; - var _Texture3DOes = OpenTK.Graphics.OpenGL.TextureTarget.Texture3DOes; - var _ProxyTexture3D = OpenTK.Graphics.OpenGL.TextureTarget.ProxyTexture3D; - var _ProxyTexture3DExt = OpenTK.Graphics.OpenGL.TextureTarget.ProxyTexture3DExt; - var _DetailTexture2DSgis = OpenTK.Graphics.OpenGL.TextureTarget.DetailTexture2DSgis; - var _Texture4DSgis = OpenTK.Graphics.OpenGL.TextureTarget.Texture4DSgis; - var _ProxyTexture4DSgis = OpenTK.Graphics.OpenGL.TextureTarget.ProxyTexture4DSgis; - var _TextureMinLod = OpenTK.Graphics.OpenGL.TextureTarget.TextureMinLod; - var _TextureMinLodSgis = OpenTK.Graphics.OpenGL.TextureTarget.TextureMinLodSgis; - var _TextureMaxLod = OpenTK.Graphics.OpenGL.TextureTarget.TextureMaxLod; - var _TextureMaxLodSgis = OpenTK.Graphics.OpenGL.TextureTarget.TextureMaxLodSgis; - var _TextureBaseLevel = OpenTK.Graphics.OpenGL.TextureTarget.TextureBaseLevel; - var _TextureBaseLevelSgis = OpenTK.Graphics.OpenGL.TextureTarget.TextureBaseLevelSgis; - var _TextureMaxLevel = OpenTK.Graphics.OpenGL.TextureTarget.TextureMaxLevel; - var _TextureMaxLevelSgis = OpenTK.Graphics.OpenGL.TextureTarget.TextureMaxLevelSgis; - var _TextureRectangle = OpenTK.Graphics.OpenGL.TextureTarget.TextureRectangle; - var _TextureRectangleArb = OpenTK.Graphics.OpenGL.TextureTarget.TextureRectangleArb; - var _TextureRectangleNv = OpenTK.Graphics.OpenGL.TextureTarget.TextureRectangleNv; - var _ProxyTextureRectangle = OpenTK.Graphics.OpenGL.TextureTarget.ProxyTextureRectangle; - var _TextureCubeMap = OpenTK.Graphics.OpenGL.TextureTarget.TextureCubeMap; - var _TextureBindingCubeMap = OpenTK.Graphics.OpenGL.TextureTarget.TextureBindingCubeMap; - var _TextureCubeMapPositiveX = OpenTK.Graphics.OpenGL.TextureTarget.TextureCubeMapPositiveX; - var _TextureCubeMapNegativeX = OpenTK.Graphics.OpenGL.TextureTarget.TextureCubeMapNegativeX; - var _TextureCubeMapPositiveY = OpenTK.Graphics.OpenGL.TextureTarget.TextureCubeMapPositiveY; - var _TextureCubeMapNegativeY = OpenTK.Graphics.OpenGL.TextureTarget.TextureCubeMapNegativeY; - var _TextureCubeMapPositiveZ = OpenTK.Graphics.OpenGL.TextureTarget.TextureCubeMapPositiveZ; - var _TextureCubeMapNegativeZ = OpenTK.Graphics.OpenGL.TextureTarget.TextureCubeMapNegativeZ; - var _ProxyTextureCubeMap = OpenTK.Graphics.OpenGL.TextureTarget.ProxyTextureCubeMap; - var _Texture1DArray = OpenTK.Graphics.OpenGL.TextureTarget.Texture1DArray; - var _ProxyTexture1DArray = OpenTK.Graphics.OpenGL.TextureTarget.ProxyTexture1DArray; - var _Texture2DArray = OpenTK.Graphics.OpenGL.TextureTarget.Texture2DArray; - var _ProxyTexture2DArray = OpenTK.Graphics.OpenGL.TextureTarget.ProxyTexture2DArray; - var _TextureBuffer = OpenTK.Graphics.OpenGL.TextureTarget.TextureBuffer; - var _TextureCubeMapArray = OpenTK.Graphics.OpenGL.TextureTarget.TextureCubeMapArray; - var _ProxyTextureCubeMapArray = OpenTK.Graphics.OpenGL.TextureTarget.ProxyTextureCubeMapArray; - var _Texture2DMultisample = OpenTK.Graphics.OpenGL.TextureTarget.Texture2DMultisample; - var _ProxyTexture2DMultisample = OpenTK.Graphics.OpenGL.TextureTarget.ProxyTexture2DMultisample; - var _Texture2DMultisampleArray = OpenTK.Graphics.OpenGL.TextureTarget.Texture2DMultisampleArray; - var _ProxyTexture2DMultisampleArray = OpenTK.Graphics.OpenGL.TextureTarget.ProxyTexture2DMultisampleArray; -} -static void Test_TextureTarget1d_20025() { - var _Texture1D = OpenTK.Graphics.OpenGL.TextureTarget1d.Texture1D; - var _ProxyTexture1D = OpenTK.Graphics.OpenGL.TextureTarget1d.ProxyTexture1D; -} -static void Test_TextureTarget2d_20026() { - var _Texture2D = OpenTK.Graphics.OpenGL.TextureTarget2d.Texture2D; - var _ProxyTexture2D = OpenTK.Graphics.OpenGL.TextureTarget2d.ProxyTexture2D; - var _TextureRectangle = OpenTK.Graphics.OpenGL.TextureTarget2d.TextureRectangle; - var _ProxyTextureRectangle = OpenTK.Graphics.OpenGL.TextureTarget2d.ProxyTextureRectangle; - var _TextureCubeMap = OpenTK.Graphics.OpenGL.TextureTarget2d.TextureCubeMap; - var _ProxyTextureCubeMap = OpenTK.Graphics.OpenGL.TextureTarget2d.ProxyTextureCubeMap; - var _Texture1DArray = OpenTK.Graphics.OpenGL.TextureTarget2d.Texture1DArray; - var _ProxyTexture1DArray = OpenTK.Graphics.OpenGL.TextureTarget2d.ProxyTexture1DArray; -} -static void Test_TextureTarget3d_20027() { - var _Texture3D = OpenTK.Graphics.OpenGL.TextureTarget3d.Texture3D; - var _ProxyTexture3D = OpenTK.Graphics.OpenGL.TextureTarget3d.ProxyTexture3D; - var _TextureCubeMap = OpenTK.Graphics.OpenGL.TextureTarget3d.TextureCubeMap; - var _ProxyTextureCubeMap = OpenTK.Graphics.OpenGL.TextureTarget3d.ProxyTextureCubeMap; - var _Texture2DArray = OpenTK.Graphics.OpenGL.TextureTarget3d.Texture2DArray; - var _ProxyTexture2DArray = OpenTK.Graphics.OpenGL.TextureTarget3d.ProxyTexture2DArray; -} -static void Test_TextureTargetMultisample_20028() { - var _Texture2DMultisample = OpenTK.Graphics.OpenGL.TextureTargetMultisample.Texture2DMultisample; - var _ProxyTexture2DMultisample = OpenTK.Graphics.OpenGL.TextureTargetMultisample.ProxyTexture2DMultisample; - var _Texture2DMultisampleArray = OpenTK.Graphics.OpenGL.TextureTargetMultisample.Texture2DMultisampleArray; - var _ProxyTexture2DMultisampleArray = OpenTK.Graphics.OpenGL.TextureTargetMultisample.ProxyTexture2DMultisampleArray; -} -static void Test_TextureTargetMultisample2d_20029() { - var _Texture2DMultisample = OpenTK.Graphics.OpenGL.TextureTargetMultisample2d.Texture2DMultisample; - var _ProxyTexture2DMultisample = OpenTK.Graphics.OpenGL.TextureTargetMultisample2d.ProxyTexture2DMultisample; -} -static void Test_TextureTargetMultisample3d_20030() { - var _Texture2DMultisampleArray = OpenTK.Graphics.OpenGL.TextureTargetMultisample3d.Texture2DMultisampleArray; - var _ProxyTexture2DMultisampleArray = OpenTK.Graphics.OpenGL.TextureTargetMultisample3d.ProxyTexture2DMultisampleArray; -} -static void Test_TextureUnit_20031() { - var _Texture0 = OpenTK.Graphics.OpenGL.TextureUnit.Texture0; - var _Texture1 = OpenTK.Graphics.OpenGL.TextureUnit.Texture1; - var _Texture2 = OpenTK.Graphics.OpenGL.TextureUnit.Texture2; - var _Texture3 = OpenTK.Graphics.OpenGL.TextureUnit.Texture3; - var _Texture4 = OpenTK.Graphics.OpenGL.TextureUnit.Texture4; - var _Texture5 = OpenTK.Graphics.OpenGL.TextureUnit.Texture5; - var _Texture6 = OpenTK.Graphics.OpenGL.TextureUnit.Texture6; - var _Texture7 = OpenTK.Graphics.OpenGL.TextureUnit.Texture7; - var _Texture8 = OpenTK.Graphics.OpenGL.TextureUnit.Texture8; - var _Texture9 = OpenTK.Graphics.OpenGL.TextureUnit.Texture9; - var _Texture10 = OpenTK.Graphics.OpenGL.TextureUnit.Texture10; - var _Texture11 = OpenTK.Graphics.OpenGL.TextureUnit.Texture11; - var _Texture12 = OpenTK.Graphics.OpenGL.TextureUnit.Texture12; - var _Texture13 = OpenTK.Graphics.OpenGL.TextureUnit.Texture13; - var _Texture14 = OpenTK.Graphics.OpenGL.TextureUnit.Texture14; - var _Texture15 = OpenTK.Graphics.OpenGL.TextureUnit.Texture15; - var _Texture16 = OpenTK.Graphics.OpenGL.TextureUnit.Texture16; - var _Texture17 = OpenTK.Graphics.OpenGL.TextureUnit.Texture17; - var _Texture18 = OpenTK.Graphics.OpenGL.TextureUnit.Texture18; - var _Texture19 = OpenTK.Graphics.OpenGL.TextureUnit.Texture19; - var _Texture20 = OpenTK.Graphics.OpenGL.TextureUnit.Texture20; - var _Texture21 = OpenTK.Graphics.OpenGL.TextureUnit.Texture21; - var _Texture22 = OpenTK.Graphics.OpenGL.TextureUnit.Texture22; - var _Texture23 = OpenTK.Graphics.OpenGL.TextureUnit.Texture23; - var _Texture24 = OpenTK.Graphics.OpenGL.TextureUnit.Texture24; - var _Texture25 = OpenTK.Graphics.OpenGL.TextureUnit.Texture25; - var _Texture26 = OpenTK.Graphics.OpenGL.TextureUnit.Texture26; - var _Texture27 = OpenTK.Graphics.OpenGL.TextureUnit.Texture27; - var _Texture28 = OpenTK.Graphics.OpenGL.TextureUnit.Texture28; - var _Texture29 = OpenTK.Graphics.OpenGL.TextureUnit.Texture29; - var _Texture30 = OpenTK.Graphics.OpenGL.TextureUnit.Texture30; - var _Texture31 = OpenTK.Graphics.OpenGL.TextureUnit.Texture31; -} -static void Test_TextureWrapMode_20032() { - var _Clamp = OpenTK.Graphics.OpenGL.TextureWrapMode.Clamp; - var _Repeat = OpenTK.Graphics.OpenGL.TextureWrapMode.Repeat; - var _ClampToBorder = OpenTK.Graphics.OpenGL.TextureWrapMode.ClampToBorder; - var _ClampToBorderArb = OpenTK.Graphics.OpenGL.TextureWrapMode.ClampToBorderArb; - var _ClampToBorderNv = OpenTK.Graphics.OpenGL.TextureWrapMode.ClampToBorderNv; - var _ClampToBorderSgis = OpenTK.Graphics.OpenGL.TextureWrapMode.ClampToBorderSgis; - var _ClampToEdge = OpenTK.Graphics.OpenGL.TextureWrapMode.ClampToEdge; - var _ClampToEdgeSgis = OpenTK.Graphics.OpenGL.TextureWrapMode.ClampToEdgeSgis; - var _MirroredRepeat = OpenTK.Graphics.OpenGL.TextureWrapMode.MirroredRepeat; -} -static void Test_TransformFeedbackMode_20033() { - var _InterleavedAttribs = OpenTK.Graphics.OpenGL.TransformFeedbackMode.InterleavedAttribs; - var _SeparateAttribs = OpenTK.Graphics.OpenGL.TransformFeedbackMode.SeparateAttribs; -} -static void Test_TransformFeedbackPrimitiveType_20034() { - var _Points = OpenTK.Graphics.OpenGL.TransformFeedbackPrimitiveType.Points; - var _Lines = OpenTK.Graphics.OpenGL.TransformFeedbackPrimitiveType.Lines; - var _Triangles = OpenTK.Graphics.OpenGL.TransformFeedbackPrimitiveType.Triangles; -} -static void Test_TransformFeedbackTarget_20035() { - var _TransformFeedback = OpenTK.Graphics.OpenGL.TransformFeedbackTarget.TransformFeedback; -} -static void Test_TransformFeedbackType_20036() { - var _Int = OpenTK.Graphics.OpenGL.TransformFeedbackType.Int; - var _UnsignedInt = OpenTK.Graphics.OpenGL.TransformFeedbackType.UnsignedInt; - var _Float = OpenTK.Graphics.OpenGL.TransformFeedbackType.Float; - var _Double = OpenTK.Graphics.OpenGL.TransformFeedbackType.Double; - var _FloatVec2 = OpenTK.Graphics.OpenGL.TransformFeedbackType.FloatVec2; - var _FloatVec3 = OpenTK.Graphics.OpenGL.TransformFeedbackType.FloatVec3; - var _FloatVec4 = OpenTK.Graphics.OpenGL.TransformFeedbackType.FloatVec4; - var _IntVec2 = OpenTK.Graphics.OpenGL.TransformFeedbackType.IntVec2; - var _IntVec3 = OpenTK.Graphics.OpenGL.TransformFeedbackType.IntVec3; - var _IntVec4 = OpenTK.Graphics.OpenGL.TransformFeedbackType.IntVec4; - var _FloatMat2 = OpenTK.Graphics.OpenGL.TransformFeedbackType.FloatMat2; - var _FloatMat3 = OpenTK.Graphics.OpenGL.TransformFeedbackType.FloatMat3; - var _FloatMat4 = OpenTK.Graphics.OpenGL.TransformFeedbackType.FloatMat4; - var _FloatMat2x3 = OpenTK.Graphics.OpenGL.TransformFeedbackType.FloatMat2x3; - var _FloatMat2x4 = OpenTK.Graphics.OpenGL.TransformFeedbackType.FloatMat2x4; - var _FloatMat3x2 = OpenTK.Graphics.OpenGL.TransformFeedbackType.FloatMat3x2; - var _FloatMat3x4 = OpenTK.Graphics.OpenGL.TransformFeedbackType.FloatMat3x4; - var _FloatMat4x2 = OpenTK.Graphics.OpenGL.TransformFeedbackType.FloatMat4x2; - var _FloatMat4x3 = OpenTK.Graphics.OpenGL.TransformFeedbackType.FloatMat4x3; - var _UnsignedIntVec2 = OpenTK.Graphics.OpenGL.TransformFeedbackType.UnsignedIntVec2; - var _UnsignedIntVec3 = OpenTK.Graphics.OpenGL.TransformFeedbackType.UnsignedIntVec3; - var _UnsignedIntVec4 = OpenTK.Graphics.OpenGL.TransformFeedbackType.UnsignedIntVec4; - var _DoubleMat2 = OpenTK.Graphics.OpenGL.TransformFeedbackType.DoubleMat2; - var _DoubleMat3 = OpenTK.Graphics.OpenGL.TransformFeedbackType.DoubleMat3; - var _DoubleMat4 = OpenTK.Graphics.OpenGL.TransformFeedbackType.DoubleMat4; - var _DoubleMat2x3 = OpenTK.Graphics.OpenGL.TransformFeedbackType.DoubleMat2x3; - var _DoubleMat2x4 = OpenTK.Graphics.OpenGL.TransformFeedbackType.DoubleMat2x4; - var _DoubleMat3x2 = OpenTK.Graphics.OpenGL.TransformFeedbackType.DoubleMat3x2; - var _DoubleMat3x4 = OpenTK.Graphics.OpenGL.TransformFeedbackType.DoubleMat3x4; - var _DoubleMat4x2 = OpenTK.Graphics.OpenGL.TransformFeedbackType.DoubleMat4x2; - var _DoubleMat4x3 = OpenTK.Graphics.OpenGL.TransformFeedbackType.DoubleMat4x3; - var _DoubleVec2 = OpenTK.Graphics.OpenGL.TransformFeedbackType.DoubleVec2; - var _DoubleVec3 = OpenTK.Graphics.OpenGL.TransformFeedbackType.DoubleVec3; - var _DoubleVec4 = OpenTK.Graphics.OpenGL.TransformFeedbackType.DoubleVec4; -} -static void Test_UseProgramStageMask_20037() { - var _VertexShaderBit = OpenTK.Graphics.OpenGL.UseProgramStageMask.VertexShaderBit; - var _VertexShaderBitExt = OpenTK.Graphics.OpenGL.UseProgramStageMask.VertexShaderBitExt; - var _FragmentShaderBit = OpenTK.Graphics.OpenGL.UseProgramStageMask.FragmentShaderBit; - var _FragmentShaderBitExt = OpenTK.Graphics.OpenGL.UseProgramStageMask.FragmentShaderBitExt; - var _GeometryShaderBit = OpenTK.Graphics.OpenGL.UseProgramStageMask.GeometryShaderBit; - var _GeometryShaderBitExt = OpenTK.Graphics.OpenGL.UseProgramStageMask.GeometryShaderBitExt; - var _TessControlShaderBit = OpenTK.Graphics.OpenGL.UseProgramStageMask.TessControlShaderBit; - var _TessControlShaderBitExt = OpenTK.Graphics.OpenGL.UseProgramStageMask.TessControlShaderBitExt; - var _TessEvaluationShaderBit = OpenTK.Graphics.OpenGL.UseProgramStageMask.TessEvaluationShaderBit; - var _TessEvaluationShaderBitExt = OpenTK.Graphics.OpenGL.UseProgramStageMask.TessEvaluationShaderBitExt; - var _ComputeShaderBit = OpenTK.Graphics.OpenGL.UseProgramStageMask.ComputeShaderBit; - var _AllShaderBits = OpenTK.Graphics.OpenGL.UseProgramStageMask.AllShaderBits; - var _AllShaderBitsExt = OpenTK.Graphics.OpenGL.UseProgramStageMask.AllShaderBitsExt; -} -static void Test_Version10_20038() { -} -static void Test_Version11_20039() { - var _False = OpenTK.Graphics.OpenGL.Version11.False; - var _NoError = OpenTK.Graphics.OpenGL.Version11.NoError; - var _None = OpenTK.Graphics.OpenGL.Version11.None; - var _Zero = OpenTK.Graphics.OpenGL.Version11.Zero; - var _Points = OpenTK.Graphics.OpenGL.Version11.Points; - var _ClientPixelStoreBit = OpenTK.Graphics.OpenGL.Version11.ClientPixelStoreBit; - var _CurrentBit = OpenTK.Graphics.OpenGL.Version11.CurrentBit; - var _ClientVertexArrayBit = OpenTK.Graphics.OpenGL.Version11.ClientVertexArrayBit; - var _PointBit = OpenTK.Graphics.OpenGL.Version11.PointBit; - var _LineBit = OpenTK.Graphics.OpenGL.Version11.LineBit; - var _PolygonBit = OpenTK.Graphics.OpenGL.Version11.PolygonBit; - var _PolygonStippleBit = OpenTK.Graphics.OpenGL.Version11.PolygonStippleBit; - var _PixelModeBit = OpenTK.Graphics.OpenGL.Version11.PixelModeBit; - var _LightingBit = OpenTK.Graphics.OpenGL.Version11.LightingBit; - var _FogBit = OpenTK.Graphics.OpenGL.Version11.FogBit; - var _DepthBufferBit = OpenTK.Graphics.OpenGL.Version11.DepthBufferBit; - var _AccumBufferBit = OpenTK.Graphics.OpenGL.Version11.AccumBufferBit; - var _StencilBufferBit = OpenTK.Graphics.OpenGL.Version11.StencilBufferBit; - var _ViewportBit = OpenTK.Graphics.OpenGL.Version11.ViewportBit; - var _TransformBit = OpenTK.Graphics.OpenGL.Version11.TransformBit; - var _EnableBit = OpenTK.Graphics.OpenGL.Version11.EnableBit; - var _ColorBufferBit = OpenTK.Graphics.OpenGL.Version11.ColorBufferBit; - var _HintBit = OpenTK.Graphics.OpenGL.Version11.HintBit; - var _Lines = OpenTK.Graphics.OpenGL.Version11.Lines; - var _EvalBit = OpenTK.Graphics.OpenGL.Version11.EvalBit; - var _LineLoop = OpenTK.Graphics.OpenGL.Version11.LineLoop; - var _ListBit = OpenTK.Graphics.OpenGL.Version11.ListBit; - var _LineStrip = OpenTK.Graphics.OpenGL.Version11.LineStrip; - var _Triangles = OpenTK.Graphics.OpenGL.Version11.Triangles; - var _TextureBit = OpenTK.Graphics.OpenGL.Version11.TextureBit; - var _TriangleStrip = OpenTK.Graphics.OpenGL.Version11.TriangleStrip; - var _TriangleFan = OpenTK.Graphics.OpenGL.Version11.TriangleFan; - var _Quads = OpenTK.Graphics.OpenGL.Version11.Quads; - var _QuadStrip = OpenTK.Graphics.OpenGL.Version11.QuadStrip; - var _ScissorBit = OpenTK.Graphics.OpenGL.Version11.ScissorBit; - var _Polygon = OpenTK.Graphics.OpenGL.Version11.Polygon; - var _Accum = OpenTK.Graphics.OpenGL.Version11.Accum; - var _Load = OpenTK.Graphics.OpenGL.Version11.Load; - var _Return = OpenTK.Graphics.OpenGL.Version11.Return; - var _Mult = OpenTK.Graphics.OpenGL.Version11.Mult; - var _Add = OpenTK.Graphics.OpenGL.Version11.Add; - var _Never = OpenTK.Graphics.OpenGL.Version11.Never; - var _Less = OpenTK.Graphics.OpenGL.Version11.Less; - var _Equal = OpenTK.Graphics.OpenGL.Version11.Equal; - var _Lequal = OpenTK.Graphics.OpenGL.Version11.Lequal; - var _Greater = OpenTK.Graphics.OpenGL.Version11.Greater; - var _Notequal = OpenTK.Graphics.OpenGL.Version11.Notequal; - var _Gequal = OpenTK.Graphics.OpenGL.Version11.Gequal; - var _Always = OpenTK.Graphics.OpenGL.Version11.Always; - var _SrcColor = OpenTK.Graphics.OpenGL.Version11.SrcColor; - var _OneMinusSrcColor = OpenTK.Graphics.OpenGL.Version11.OneMinusSrcColor; - var _SrcAlpha = OpenTK.Graphics.OpenGL.Version11.SrcAlpha; - var _OneMinusSrcAlpha = OpenTK.Graphics.OpenGL.Version11.OneMinusSrcAlpha; - var _DstAlpha = OpenTK.Graphics.OpenGL.Version11.DstAlpha; - var _OneMinusDstAlpha = OpenTK.Graphics.OpenGL.Version11.OneMinusDstAlpha; - var _DstColor = OpenTK.Graphics.OpenGL.Version11.DstColor; - var _OneMinusDstColor = OpenTK.Graphics.OpenGL.Version11.OneMinusDstColor; - var _SrcAlphaSaturate = OpenTK.Graphics.OpenGL.Version11.SrcAlphaSaturate; - var _FrontLeft = OpenTK.Graphics.OpenGL.Version11.FrontLeft; - var _FrontRight = OpenTK.Graphics.OpenGL.Version11.FrontRight; - var _BackLeft = OpenTK.Graphics.OpenGL.Version11.BackLeft; - var _BackRight = OpenTK.Graphics.OpenGL.Version11.BackRight; - var _Front = OpenTK.Graphics.OpenGL.Version11.Front; - var _Back = OpenTK.Graphics.OpenGL.Version11.Back; - var _Left = OpenTK.Graphics.OpenGL.Version11.Left; - var _Right = OpenTK.Graphics.OpenGL.Version11.Right; - var _FrontAndBack = OpenTK.Graphics.OpenGL.Version11.FrontAndBack; - var _Aux0 = OpenTK.Graphics.OpenGL.Version11.Aux0; - var _Aux1 = OpenTK.Graphics.OpenGL.Version11.Aux1; - var _Aux2 = OpenTK.Graphics.OpenGL.Version11.Aux2; - var _Aux3 = OpenTK.Graphics.OpenGL.Version11.Aux3; - var _InvalidEnum = OpenTK.Graphics.OpenGL.Version11.InvalidEnum; - var _InvalidValue = OpenTK.Graphics.OpenGL.Version11.InvalidValue; - var _InvalidOperation = OpenTK.Graphics.OpenGL.Version11.InvalidOperation; - var _StackOverflow = OpenTK.Graphics.OpenGL.Version11.StackOverflow; - var _StackUnderflow = OpenTK.Graphics.OpenGL.Version11.StackUnderflow; - var _OutOfMemory = OpenTK.Graphics.OpenGL.Version11.OutOfMemory; - var _Gl2D = OpenTK.Graphics.OpenGL.Version11.Gl2D; - var _Gl3D = OpenTK.Graphics.OpenGL.Version11.Gl3D; - var _Gl3DColor = OpenTK.Graphics.OpenGL.Version11.Gl3DColor; - var _Gl3DColorTexture = OpenTK.Graphics.OpenGL.Version11.Gl3DColorTexture; - var _Gl4DColorTexture = OpenTK.Graphics.OpenGL.Version11.Gl4DColorTexture; - var _PassThroughToken = OpenTK.Graphics.OpenGL.Version11.PassThroughToken; - var _PointToken = OpenTK.Graphics.OpenGL.Version11.PointToken; - var _LineToken = OpenTK.Graphics.OpenGL.Version11.LineToken; - var _PolygonToken = OpenTK.Graphics.OpenGL.Version11.PolygonToken; - var _BitmapToken = OpenTK.Graphics.OpenGL.Version11.BitmapToken; - var _DrawPixelToken = OpenTK.Graphics.OpenGL.Version11.DrawPixelToken; - var _CopyPixelToken = OpenTK.Graphics.OpenGL.Version11.CopyPixelToken; - var _LineResetToken = OpenTK.Graphics.OpenGL.Version11.LineResetToken; - var _Exp = OpenTK.Graphics.OpenGL.Version11.Exp; - var _Exp2 = OpenTK.Graphics.OpenGL.Version11.Exp2; - var _Cw = OpenTK.Graphics.OpenGL.Version11.Cw; - var _Ccw = OpenTK.Graphics.OpenGL.Version11.Ccw; - var _Coeff = OpenTK.Graphics.OpenGL.Version11.Coeff; - var _Order = OpenTK.Graphics.OpenGL.Version11.Order; - var _Domain = OpenTK.Graphics.OpenGL.Version11.Domain; - var _CurrentColor = OpenTK.Graphics.OpenGL.Version11.CurrentColor; - var _CurrentIndex = OpenTK.Graphics.OpenGL.Version11.CurrentIndex; - var _CurrentNormal = OpenTK.Graphics.OpenGL.Version11.CurrentNormal; - var _CurrentTextureCoords = OpenTK.Graphics.OpenGL.Version11.CurrentTextureCoords; - var _CurrentRasterColor = OpenTK.Graphics.OpenGL.Version11.CurrentRasterColor; - var _CurrentRasterIndex = OpenTK.Graphics.OpenGL.Version11.CurrentRasterIndex; - var _CurrentRasterTextureCoords = OpenTK.Graphics.OpenGL.Version11.CurrentRasterTextureCoords; - var _CurrentRasterPosition = OpenTK.Graphics.OpenGL.Version11.CurrentRasterPosition; - var _CurrentRasterPositionValid = OpenTK.Graphics.OpenGL.Version11.CurrentRasterPositionValid; - var _CurrentRasterDistance = OpenTK.Graphics.OpenGL.Version11.CurrentRasterDistance; - var _PointSmooth = OpenTK.Graphics.OpenGL.Version11.PointSmooth; - var _PointSize = OpenTK.Graphics.OpenGL.Version11.PointSize; - var _PointSizeRange = OpenTK.Graphics.OpenGL.Version11.PointSizeRange; - var _PointSizeGranularity = OpenTK.Graphics.OpenGL.Version11.PointSizeGranularity; - var _LineSmooth = OpenTK.Graphics.OpenGL.Version11.LineSmooth; - var _LineWidth = OpenTK.Graphics.OpenGL.Version11.LineWidth; - var _LineWidthRange = OpenTK.Graphics.OpenGL.Version11.LineWidthRange; - var _LineWidthGranularity = OpenTK.Graphics.OpenGL.Version11.LineWidthGranularity; - var _LineStipple = OpenTK.Graphics.OpenGL.Version11.LineStipple; - var _LineStipplePattern = OpenTK.Graphics.OpenGL.Version11.LineStipplePattern; - var _LineStippleRepeat = OpenTK.Graphics.OpenGL.Version11.LineStippleRepeat; - var _ListMode = OpenTK.Graphics.OpenGL.Version11.ListMode; - var _MaxListNesting = OpenTK.Graphics.OpenGL.Version11.MaxListNesting; - var _ListBase = OpenTK.Graphics.OpenGL.Version11.ListBase; - var _ListIndex = OpenTK.Graphics.OpenGL.Version11.ListIndex; - var _PolygonMode = OpenTK.Graphics.OpenGL.Version11.PolygonMode; - var _PolygonSmooth = OpenTK.Graphics.OpenGL.Version11.PolygonSmooth; - var _PolygonStipple = OpenTK.Graphics.OpenGL.Version11.PolygonStipple; - var _EdgeFlag = OpenTK.Graphics.OpenGL.Version11.EdgeFlag; - var _CullFace = OpenTK.Graphics.OpenGL.Version11.CullFace; - var _CullFaceMode = OpenTK.Graphics.OpenGL.Version11.CullFaceMode; - var _FrontFace = OpenTK.Graphics.OpenGL.Version11.FrontFace; - var _Lighting = OpenTK.Graphics.OpenGL.Version11.Lighting; - var _LightModelLocalViewer = OpenTK.Graphics.OpenGL.Version11.LightModelLocalViewer; - var _LightModelTwoSide = OpenTK.Graphics.OpenGL.Version11.LightModelTwoSide; - var _LightModelAmbient = OpenTK.Graphics.OpenGL.Version11.LightModelAmbient; - var _ShadeModel = OpenTK.Graphics.OpenGL.Version11.ShadeModel; - var _ColorMaterialFace = OpenTK.Graphics.OpenGL.Version11.ColorMaterialFace; - var _ColorMaterialParameter = OpenTK.Graphics.OpenGL.Version11.ColorMaterialParameter; - var _ColorMaterial = OpenTK.Graphics.OpenGL.Version11.ColorMaterial; - var _Fog = OpenTK.Graphics.OpenGL.Version11.Fog; - var _FogIndex = OpenTK.Graphics.OpenGL.Version11.FogIndex; - var _FogDensity = OpenTK.Graphics.OpenGL.Version11.FogDensity; - var _FogStart = OpenTK.Graphics.OpenGL.Version11.FogStart; - var _FogEnd = OpenTK.Graphics.OpenGL.Version11.FogEnd; - var _FogMode = OpenTK.Graphics.OpenGL.Version11.FogMode; - var _FogColor = OpenTK.Graphics.OpenGL.Version11.FogColor; - var _DepthRange = OpenTK.Graphics.OpenGL.Version11.DepthRange; - var _DepthTest = OpenTK.Graphics.OpenGL.Version11.DepthTest; - var _DepthWritemask = OpenTK.Graphics.OpenGL.Version11.DepthWritemask; - var _DepthClearValue = OpenTK.Graphics.OpenGL.Version11.DepthClearValue; - var _DepthFunc = OpenTK.Graphics.OpenGL.Version11.DepthFunc; - var _AccumClearValue = OpenTK.Graphics.OpenGL.Version11.AccumClearValue; - var _StencilTest = OpenTK.Graphics.OpenGL.Version11.StencilTest; - var _StencilClearValue = OpenTK.Graphics.OpenGL.Version11.StencilClearValue; - var _StencilFunc = OpenTK.Graphics.OpenGL.Version11.StencilFunc; - var _StencilValueMask = OpenTK.Graphics.OpenGL.Version11.StencilValueMask; - var _StencilFail = OpenTK.Graphics.OpenGL.Version11.StencilFail; - var _StencilPassDepthFail = OpenTK.Graphics.OpenGL.Version11.StencilPassDepthFail; - var _StencilPassDepthPass = OpenTK.Graphics.OpenGL.Version11.StencilPassDepthPass; - var _StencilRef = OpenTK.Graphics.OpenGL.Version11.StencilRef; - var _StencilWritemask = OpenTK.Graphics.OpenGL.Version11.StencilWritemask; - var _MatrixMode = OpenTK.Graphics.OpenGL.Version11.MatrixMode; - var _Normalize = OpenTK.Graphics.OpenGL.Version11.Normalize; - var _Viewport = OpenTK.Graphics.OpenGL.Version11.Viewport; - var _ModelviewStackDepth = OpenTK.Graphics.OpenGL.Version11.ModelviewStackDepth; - var _ProjectionStackDepth = OpenTK.Graphics.OpenGL.Version11.ProjectionStackDepth; - var _TextureStackDepth = OpenTK.Graphics.OpenGL.Version11.TextureStackDepth; - var _ModelviewMatrix = OpenTK.Graphics.OpenGL.Version11.ModelviewMatrix; - var _ProjectionMatrix = OpenTK.Graphics.OpenGL.Version11.ProjectionMatrix; - var _TextureMatrix = OpenTK.Graphics.OpenGL.Version11.TextureMatrix; - var _AttribStackDepth = OpenTK.Graphics.OpenGL.Version11.AttribStackDepth; - var _ClientAttribStackDepth = OpenTK.Graphics.OpenGL.Version11.ClientAttribStackDepth; - var _AlphaTest = OpenTK.Graphics.OpenGL.Version11.AlphaTest; - var _AlphaTestFunc = OpenTK.Graphics.OpenGL.Version11.AlphaTestFunc; - var _AlphaTestRef = OpenTK.Graphics.OpenGL.Version11.AlphaTestRef; - var _Dither = OpenTK.Graphics.OpenGL.Version11.Dither; - var _BlendDst = OpenTK.Graphics.OpenGL.Version11.BlendDst; - var _BlendSrc = OpenTK.Graphics.OpenGL.Version11.BlendSrc; - var _Blend = OpenTK.Graphics.OpenGL.Version11.Blend; - var _LogicOpMode = OpenTK.Graphics.OpenGL.Version11.LogicOpMode; - var _IndexLogicOp = OpenTK.Graphics.OpenGL.Version11.IndexLogicOp; - var _LogicOp = OpenTK.Graphics.OpenGL.Version11.LogicOp; - var _ColorLogicOp = OpenTK.Graphics.OpenGL.Version11.ColorLogicOp; - var _AuxBuffers = OpenTK.Graphics.OpenGL.Version11.AuxBuffers; - var _DrawBuffer = OpenTK.Graphics.OpenGL.Version11.DrawBuffer; - var _ReadBuffer = OpenTK.Graphics.OpenGL.Version11.ReadBuffer; - var _ScissorBox = OpenTK.Graphics.OpenGL.Version11.ScissorBox; - var _ScissorTest = OpenTK.Graphics.OpenGL.Version11.ScissorTest; - var _IndexClearValue = OpenTK.Graphics.OpenGL.Version11.IndexClearValue; - var _IndexWritemask = OpenTK.Graphics.OpenGL.Version11.IndexWritemask; - var _ColorClearValue = OpenTK.Graphics.OpenGL.Version11.ColorClearValue; - var _ColorWritemask = OpenTK.Graphics.OpenGL.Version11.ColorWritemask; - var _IndexMode = OpenTK.Graphics.OpenGL.Version11.IndexMode; - var _RgbaMode = OpenTK.Graphics.OpenGL.Version11.RgbaMode; - var _Doublebuffer = OpenTK.Graphics.OpenGL.Version11.Doublebuffer; - var _Stereo = OpenTK.Graphics.OpenGL.Version11.Stereo; - var _RenderMode = OpenTK.Graphics.OpenGL.Version11.RenderMode; - var _PerspectiveCorrectionHint = OpenTK.Graphics.OpenGL.Version11.PerspectiveCorrectionHint; - var _PointSmoothHint = OpenTK.Graphics.OpenGL.Version11.PointSmoothHint; - var _LineSmoothHint = OpenTK.Graphics.OpenGL.Version11.LineSmoothHint; - var _PolygonSmoothHint = OpenTK.Graphics.OpenGL.Version11.PolygonSmoothHint; - var _FogHint = OpenTK.Graphics.OpenGL.Version11.FogHint; - var _TextureGenS = OpenTK.Graphics.OpenGL.Version11.TextureGenS; - var _TextureGenT = OpenTK.Graphics.OpenGL.Version11.TextureGenT; - var _TextureGenR = OpenTK.Graphics.OpenGL.Version11.TextureGenR; - var _TextureGenQ = OpenTK.Graphics.OpenGL.Version11.TextureGenQ; - var _PixelMapIToI = OpenTK.Graphics.OpenGL.Version11.PixelMapIToI; - var _PixelMapSToS = OpenTK.Graphics.OpenGL.Version11.PixelMapSToS; - var _PixelMapIToR = OpenTK.Graphics.OpenGL.Version11.PixelMapIToR; - var _PixelMapIToG = OpenTK.Graphics.OpenGL.Version11.PixelMapIToG; - var _PixelMapIToB = OpenTK.Graphics.OpenGL.Version11.PixelMapIToB; - var _PixelMapIToA = OpenTK.Graphics.OpenGL.Version11.PixelMapIToA; - var _PixelMapRToR = OpenTK.Graphics.OpenGL.Version11.PixelMapRToR; - var _PixelMapGToG = OpenTK.Graphics.OpenGL.Version11.PixelMapGToG; - var _PixelMapBToB = OpenTK.Graphics.OpenGL.Version11.PixelMapBToB; - var _PixelMapAToA = OpenTK.Graphics.OpenGL.Version11.PixelMapAToA; - var _PixelMapIToISize = OpenTK.Graphics.OpenGL.Version11.PixelMapIToISize; - var _PixelMapSToSSize = OpenTK.Graphics.OpenGL.Version11.PixelMapSToSSize; - var _PixelMapIToRSize = OpenTK.Graphics.OpenGL.Version11.PixelMapIToRSize; - var _PixelMapIToGSize = OpenTK.Graphics.OpenGL.Version11.PixelMapIToGSize; - var _PixelMapIToBSize = OpenTK.Graphics.OpenGL.Version11.PixelMapIToBSize; - var _PixelMapIToASize = OpenTK.Graphics.OpenGL.Version11.PixelMapIToASize; - var _PixelMapRToRSize = OpenTK.Graphics.OpenGL.Version11.PixelMapRToRSize; - var _PixelMapGToGSize = OpenTK.Graphics.OpenGL.Version11.PixelMapGToGSize; - var _PixelMapBToBSize = OpenTK.Graphics.OpenGL.Version11.PixelMapBToBSize; - var _PixelMapAToASize = OpenTK.Graphics.OpenGL.Version11.PixelMapAToASize; - var _UnpackSwapBytes = OpenTK.Graphics.OpenGL.Version11.UnpackSwapBytes; - var _UnpackLsbFirst = OpenTK.Graphics.OpenGL.Version11.UnpackLsbFirst; - var _UnpackRowLength = OpenTK.Graphics.OpenGL.Version11.UnpackRowLength; - var _UnpackSkipRows = OpenTK.Graphics.OpenGL.Version11.UnpackSkipRows; - var _UnpackSkipPixels = OpenTK.Graphics.OpenGL.Version11.UnpackSkipPixels; - var _UnpackAlignment = OpenTK.Graphics.OpenGL.Version11.UnpackAlignment; - var _PackSwapBytes = OpenTK.Graphics.OpenGL.Version11.PackSwapBytes; - var _PackLsbFirst = OpenTK.Graphics.OpenGL.Version11.PackLsbFirst; - var _PackRowLength = OpenTK.Graphics.OpenGL.Version11.PackRowLength; - var _PackSkipRows = OpenTK.Graphics.OpenGL.Version11.PackSkipRows; - var _PackSkipPixels = OpenTK.Graphics.OpenGL.Version11.PackSkipPixels; - var _PackAlignment = OpenTK.Graphics.OpenGL.Version11.PackAlignment; - var _MapColor = OpenTK.Graphics.OpenGL.Version11.MapColor; - var _MapStencil = OpenTK.Graphics.OpenGL.Version11.MapStencil; - var _IndexShift = OpenTK.Graphics.OpenGL.Version11.IndexShift; - var _IndexOffset = OpenTK.Graphics.OpenGL.Version11.IndexOffset; - var _RedScale = OpenTK.Graphics.OpenGL.Version11.RedScale; - var _RedBias = OpenTK.Graphics.OpenGL.Version11.RedBias; - var _ZoomX = OpenTK.Graphics.OpenGL.Version11.ZoomX; - var _ZoomY = OpenTK.Graphics.OpenGL.Version11.ZoomY; - var _GreenScale = OpenTK.Graphics.OpenGL.Version11.GreenScale; - var _GreenBias = OpenTK.Graphics.OpenGL.Version11.GreenBias; - var _BlueScale = OpenTK.Graphics.OpenGL.Version11.BlueScale; - var _BlueBias = OpenTK.Graphics.OpenGL.Version11.BlueBias; - var _AlphaScale = OpenTK.Graphics.OpenGL.Version11.AlphaScale; - var _AlphaBias = OpenTK.Graphics.OpenGL.Version11.AlphaBias; - var _DepthScale = OpenTK.Graphics.OpenGL.Version11.DepthScale; - var _DepthBias = OpenTK.Graphics.OpenGL.Version11.DepthBias; - var _MaxEvalOrder = OpenTK.Graphics.OpenGL.Version11.MaxEvalOrder; - var _MaxLights = OpenTK.Graphics.OpenGL.Version11.MaxLights; - var _MaxClipPlanes = OpenTK.Graphics.OpenGL.Version11.MaxClipPlanes; - var _MaxTextureSize = OpenTK.Graphics.OpenGL.Version11.MaxTextureSize; - var _MaxPixelMapTable = OpenTK.Graphics.OpenGL.Version11.MaxPixelMapTable; - var _MaxAttribStackDepth = OpenTK.Graphics.OpenGL.Version11.MaxAttribStackDepth; - var _MaxModelviewStackDepth = OpenTK.Graphics.OpenGL.Version11.MaxModelviewStackDepth; - var _MaxNameStackDepth = OpenTK.Graphics.OpenGL.Version11.MaxNameStackDepth; - var _MaxProjectionStackDepth = OpenTK.Graphics.OpenGL.Version11.MaxProjectionStackDepth; - var _MaxTextureStackDepth = OpenTK.Graphics.OpenGL.Version11.MaxTextureStackDepth; - var _MaxViewportDims = OpenTK.Graphics.OpenGL.Version11.MaxViewportDims; - var _MaxClientAttribStackDepth = OpenTK.Graphics.OpenGL.Version11.MaxClientAttribStackDepth; - var _SubpixelBits = OpenTK.Graphics.OpenGL.Version11.SubpixelBits; - var _IndexBits = OpenTK.Graphics.OpenGL.Version11.IndexBits; - var _RedBits = OpenTK.Graphics.OpenGL.Version11.RedBits; - var _GreenBits = OpenTK.Graphics.OpenGL.Version11.GreenBits; - var _BlueBits = OpenTK.Graphics.OpenGL.Version11.BlueBits; - var _AlphaBits = OpenTK.Graphics.OpenGL.Version11.AlphaBits; - var _DepthBits = OpenTK.Graphics.OpenGL.Version11.DepthBits; - var _StencilBits = OpenTK.Graphics.OpenGL.Version11.StencilBits; - var _AccumRedBits = OpenTK.Graphics.OpenGL.Version11.AccumRedBits; - var _AccumGreenBits = OpenTK.Graphics.OpenGL.Version11.AccumGreenBits; - var _AccumBlueBits = OpenTK.Graphics.OpenGL.Version11.AccumBlueBits; - var _AccumAlphaBits = OpenTK.Graphics.OpenGL.Version11.AccumAlphaBits; - var _NameStackDepth = OpenTK.Graphics.OpenGL.Version11.NameStackDepth; - var _AutoNormal = OpenTK.Graphics.OpenGL.Version11.AutoNormal; - var _Map1Color4 = OpenTK.Graphics.OpenGL.Version11.Map1Color4; - var _Map1Index = OpenTK.Graphics.OpenGL.Version11.Map1Index; - var _Map1Normal = OpenTK.Graphics.OpenGL.Version11.Map1Normal; - var _Map1TextureCoord1 = OpenTK.Graphics.OpenGL.Version11.Map1TextureCoord1; - var _Map1TextureCoord2 = OpenTK.Graphics.OpenGL.Version11.Map1TextureCoord2; - var _Map1TextureCoord3 = OpenTK.Graphics.OpenGL.Version11.Map1TextureCoord3; - var _Map1TextureCoord4 = OpenTK.Graphics.OpenGL.Version11.Map1TextureCoord4; - var _Map1Vertex3 = OpenTK.Graphics.OpenGL.Version11.Map1Vertex3; - var _Map1Vertex4 = OpenTK.Graphics.OpenGL.Version11.Map1Vertex4; - var _Map2Color4 = OpenTK.Graphics.OpenGL.Version11.Map2Color4; - var _Map2Index = OpenTK.Graphics.OpenGL.Version11.Map2Index; - var _Map2Normal = OpenTK.Graphics.OpenGL.Version11.Map2Normal; - var _Map2TextureCoord1 = OpenTK.Graphics.OpenGL.Version11.Map2TextureCoord1; - var _Map2TextureCoord2 = OpenTK.Graphics.OpenGL.Version11.Map2TextureCoord2; - var _Map2TextureCoord3 = OpenTK.Graphics.OpenGL.Version11.Map2TextureCoord3; - var _Map2TextureCoord4 = OpenTK.Graphics.OpenGL.Version11.Map2TextureCoord4; - var _Map2Vertex3 = OpenTK.Graphics.OpenGL.Version11.Map2Vertex3; - var _Map2Vertex4 = OpenTK.Graphics.OpenGL.Version11.Map2Vertex4; - var _Map1GridDomain = OpenTK.Graphics.OpenGL.Version11.Map1GridDomain; - var _Map1GridSegments = OpenTK.Graphics.OpenGL.Version11.Map1GridSegments; - var _Map2GridDomain = OpenTK.Graphics.OpenGL.Version11.Map2GridDomain; - var _Map2GridSegments = OpenTK.Graphics.OpenGL.Version11.Map2GridSegments; - var _Texture1D = OpenTK.Graphics.OpenGL.Version11.Texture1D; - var _Texture2D = OpenTK.Graphics.OpenGL.Version11.Texture2D; - var _FeedbackBufferPointer = OpenTK.Graphics.OpenGL.Version11.FeedbackBufferPointer; - var _FeedbackBufferSize = OpenTK.Graphics.OpenGL.Version11.FeedbackBufferSize; - var _FeedbackBufferType = OpenTK.Graphics.OpenGL.Version11.FeedbackBufferType; - var _SelectionBufferPointer = OpenTK.Graphics.OpenGL.Version11.SelectionBufferPointer; - var _SelectionBufferSize = OpenTK.Graphics.OpenGL.Version11.SelectionBufferSize; - var _TextureWidth = OpenTK.Graphics.OpenGL.Version11.TextureWidth; - var _TextureHeight = OpenTK.Graphics.OpenGL.Version11.TextureHeight; - var _TextureComponents = OpenTK.Graphics.OpenGL.Version11.TextureComponents; - var _TextureInternalFormat = OpenTK.Graphics.OpenGL.Version11.TextureInternalFormat; - var _TextureBorderColor = OpenTK.Graphics.OpenGL.Version11.TextureBorderColor; - var _TextureBorder = OpenTK.Graphics.OpenGL.Version11.TextureBorder; - var _DontCare = OpenTK.Graphics.OpenGL.Version11.DontCare; - var _Fastest = OpenTK.Graphics.OpenGL.Version11.Fastest; - var _Nicest = OpenTK.Graphics.OpenGL.Version11.Nicest; - var _Ambient = OpenTK.Graphics.OpenGL.Version11.Ambient; - var _Diffuse = OpenTK.Graphics.OpenGL.Version11.Diffuse; - var _Specular = OpenTK.Graphics.OpenGL.Version11.Specular; - var _Position = OpenTK.Graphics.OpenGL.Version11.Position; - var _SpotDirection = OpenTK.Graphics.OpenGL.Version11.SpotDirection; - var _SpotExponent = OpenTK.Graphics.OpenGL.Version11.SpotExponent; - var _SpotCutoff = OpenTK.Graphics.OpenGL.Version11.SpotCutoff; - var _ConstantAttenuation = OpenTK.Graphics.OpenGL.Version11.ConstantAttenuation; - var _LinearAttenuation = OpenTK.Graphics.OpenGL.Version11.LinearAttenuation; - var _QuadraticAttenuation = OpenTK.Graphics.OpenGL.Version11.QuadraticAttenuation; - var _Compile = OpenTK.Graphics.OpenGL.Version11.Compile; - var _CompileAndExecute = OpenTK.Graphics.OpenGL.Version11.CompileAndExecute; - var _Byte = OpenTK.Graphics.OpenGL.Version11.Byte; - var _UnsignedByte = OpenTK.Graphics.OpenGL.Version11.UnsignedByte; - var _Short = OpenTK.Graphics.OpenGL.Version11.Short; - var _UnsignedShort = OpenTK.Graphics.OpenGL.Version11.UnsignedShort; - var _Int = OpenTK.Graphics.OpenGL.Version11.Int; - var _UnsignedInt = OpenTK.Graphics.OpenGL.Version11.UnsignedInt; - var _Float = OpenTK.Graphics.OpenGL.Version11.Float; - var _Gl2Bytes = OpenTK.Graphics.OpenGL.Version11.Gl2Bytes; - var _Gl3Bytes = OpenTK.Graphics.OpenGL.Version11.Gl3Bytes; - var _Gl4Bytes = OpenTK.Graphics.OpenGL.Version11.Gl4Bytes; - var _Double = OpenTK.Graphics.OpenGL.Version11.Double; - var _Clear = OpenTK.Graphics.OpenGL.Version11.Clear; - var _And = OpenTK.Graphics.OpenGL.Version11.And; - var _AndReverse = OpenTK.Graphics.OpenGL.Version11.AndReverse; - var _Copy = OpenTK.Graphics.OpenGL.Version11.Copy; - var _AndInverted = OpenTK.Graphics.OpenGL.Version11.AndInverted; - var _Noop = OpenTK.Graphics.OpenGL.Version11.Noop; - var _Xor = OpenTK.Graphics.OpenGL.Version11.Xor; - var _Or = OpenTK.Graphics.OpenGL.Version11.Or; - var _Nor = OpenTK.Graphics.OpenGL.Version11.Nor; - var _Equiv = OpenTK.Graphics.OpenGL.Version11.Equiv; - var _Invert = OpenTK.Graphics.OpenGL.Version11.Invert; - var _OrReverse = OpenTK.Graphics.OpenGL.Version11.OrReverse; - var _CopyInverted = OpenTK.Graphics.OpenGL.Version11.CopyInverted; - var _OrInverted = OpenTK.Graphics.OpenGL.Version11.OrInverted; - var _Nand = OpenTK.Graphics.OpenGL.Version11.Nand; - var _Set = OpenTK.Graphics.OpenGL.Version11.Set; - var _Emission = OpenTK.Graphics.OpenGL.Version11.Emission; - var _Shininess = OpenTK.Graphics.OpenGL.Version11.Shininess; - var _AmbientAndDiffuse = OpenTK.Graphics.OpenGL.Version11.AmbientAndDiffuse; - var _ColorIndexes = OpenTK.Graphics.OpenGL.Version11.ColorIndexes; - var _Modelview = OpenTK.Graphics.OpenGL.Version11.Modelview; - var _Projection = OpenTK.Graphics.OpenGL.Version11.Projection; - var _Texture = OpenTK.Graphics.OpenGL.Version11.Texture; - var _Color = OpenTK.Graphics.OpenGL.Version11.Color; - var _Depth = OpenTK.Graphics.OpenGL.Version11.Depth; - var _Stencil = OpenTK.Graphics.OpenGL.Version11.Stencil; - var _ColorIndex = OpenTK.Graphics.OpenGL.Version11.ColorIndex; - var _StencilIndex = OpenTK.Graphics.OpenGL.Version11.StencilIndex; - var _DepthComponent = OpenTK.Graphics.OpenGL.Version11.DepthComponent; - var _Red = OpenTK.Graphics.OpenGL.Version11.Red; - var _Green = OpenTK.Graphics.OpenGL.Version11.Green; - var _Blue = OpenTK.Graphics.OpenGL.Version11.Blue; - var _Alpha = OpenTK.Graphics.OpenGL.Version11.Alpha; - var _Rgb = OpenTK.Graphics.OpenGL.Version11.Rgb; - var _Rgba = OpenTK.Graphics.OpenGL.Version11.Rgba; - var _Luminance = OpenTK.Graphics.OpenGL.Version11.Luminance; - var _LuminanceAlpha = OpenTK.Graphics.OpenGL.Version11.LuminanceAlpha; - var _Bitmap = OpenTK.Graphics.OpenGL.Version11.Bitmap; - var _Point = OpenTK.Graphics.OpenGL.Version11.Point; - var _Line = OpenTK.Graphics.OpenGL.Version11.Line; - var _Fill = OpenTK.Graphics.OpenGL.Version11.Fill; - var _Render = OpenTK.Graphics.OpenGL.Version11.Render; - var _Feedback = OpenTK.Graphics.OpenGL.Version11.Feedback; - var _Select = OpenTK.Graphics.OpenGL.Version11.Select; - var _Flat = OpenTK.Graphics.OpenGL.Version11.Flat; - var _Smooth = OpenTK.Graphics.OpenGL.Version11.Smooth; - var _Keep = OpenTK.Graphics.OpenGL.Version11.Keep; - var _Replace = OpenTK.Graphics.OpenGL.Version11.Replace; - var _Incr = OpenTK.Graphics.OpenGL.Version11.Incr; - var _Decr = OpenTK.Graphics.OpenGL.Version11.Decr; - var _Vendor = OpenTK.Graphics.OpenGL.Version11.Vendor; - var _Renderer = OpenTK.Graphics.OpenGL.Version11.Renderer; - var _Version = OpenTK.Graphics.OpenGL.Version11.Version; - var _Extensions = OpenTK.Graphics.OpenGL.Version11.Extensions; - var _S = OpenTK.Graphics.OpenGL.Version11.S; - var _T = OpenTK.Graphics.OpenGL.Version11.T; - var _R = OpenTK.Graphics.OpenGL.Version11.R; - var _Q = OpenTK.Graphics.OpenGL.Version11.Q; - var _Modulate = OpenTK.Graphics.OpenGL.Version11.Modulate; - var _Decal = OpenTK.Graphics.OpenGL.Version11.Decal; - var _TextureEnvMode = OpenTK.Graphics.OpenGL.Version11.TextureEnvMode; - var _TextureEnvColor = OpenTK.Graphics.OpenGL.Version11.TextureEnvColor; - var _TextureEnv = OpenTK.Graphics.OpenGL.Version11.TextureEnv; - var _EyeLinear = OpenTK.Graphics.OpenGL.Version11.EyeLinear; - var _ObjectLinear = OpenTK.Graphics.OpenGL.Version11.ObjectLinear; - var _SphereMap = OpenTK.Graphics.OpenGL.Version11.SphereMap; - var _TextureGenMode = OpenTK.Graphics.OpenGL.Version11.TextureGenMode; - var _ObjectPlane = OpenTK.Graphics.OpenGL.Version11.ObjectPlane; - var _EyePlane = OpenTK.Graphics.OpenGL.Version11.EyePlane; - var _Nearest = OpenTK.Graphics.OpenGL.Version11.Nearest; - var _Linear = OpenTK.Graphics.OpenGL.Version11.Linear; - var _NearestMipmapNearest = OpenTK.Graphics.OpenGL.Version11.NearestMipmapNearest; - var _LinearMipmapNearest = OpenTK.Graphics.OpenGL.Version11.LinearMipmapNearest; - var _NearestMipmapLinear = OpenTK.Graphics.OpenGL.Version11.NearestMipmapLinear; - var _LinearMipmapLinear = OpenTK.Graphics.OpenGL.Version11.LinearMipmapLinear; - var _TextureMagFilter = OpenTK.Graphics.OpenGL.Version11.TextureMagFilter; - var _TextureMinFilter = OpenTK.Graphics.OpenGL.Version11.TextureMinFilter; - var _TextureWrapS = OpenTK.Graphics.OpenGL.Version11.TextureWrapS; - var _TextureWrapT = OpenTK.Graphics.OpenGL.Version11.TextureWrapT; - var _Clamp = OpenTK.Graphics.OpenGL.Version11.Clamp; - var _Repeat = OpenTK.Graphics.OpenGL.Version11.Repeat; - var _PolygonOffsetUnits = OpenTK.Graphics.OpenGL.Version11.PolygonOffsetUnits; - var _PolygonOffsetPoint = OpenTK.Graphics.OpenGL.Version11.PolygonOffsetPoint; - var _PolygonOffsetLine = OpenTK.Graphics.OpenGL.Version11.PolygonOffsetLine; - var _R3G3B2 = OpenTK.Graphics.OpenGL.Version11.R3G3B2; - var _V2f = OpenTK.Graphics.OpenGL.Version11.V2f; - var _V3f = OpenTK.Graphics.OpenGL.Version11.V3f; - var _C4ubV2f = OpenTK.Graphics.OpenGL.Version11.C4ubV2f; - var _C4ubV3f = OpenTK.Graphics.OpenGL.Version11.C4ubV3f; - var _C3fV3f = OpenTK.Graphics.OpenGL.Version11.C3fV3f; - var _N3fV3f = OpenTK.Graphics.OpenGL.Version11.N3fV3f; - var _C4fN3fV3f = OpenTK.Graphics.OpenGL.Version11.C4fN3fV3f; - var _T2fV3f = OpenTK.Graphics.OpenGL.Version11.T2fV3f; - var _T4fV4f = OpenTK.Graphics.OpenGL.Version11.T4fV4f; - var _T2fC4ubV3f = OpenTK.Graphics.OpenGL.Version11.T2fC4ubV3f; - var _T2fC3fV3f = OpenTK.Graphics.OpenGL.Version11.T2fC3fV3f; - var _T2fN3fV3f = OpenTK.Graphics.OpenGL.Version11.T2fN3fV3f; - var _T2fC4fN3fV3f = OpenTK.Graphics.OpenGL.Version11.T2fC4fN3fV3f; - var _T4fC4fN3fV4f = OpenTK.Graphics.OpenGL.Version11.T4fC4fN3fV4f; - var _ClipPlane0 = OpenTK.Graphics.OpenGL.Version11.ClipPlane0; - var _ClipPlane1 = OpenTK.Graphics.OpenGL.Version11.ClipPlane1; - var _ClipPlane2 = OpenTK.Graphics.OpenGL.Version11.ClipPlane2; - var _ClipPlane3 = OpenTK.Graphics.OpenGL.Version11.ClipPlane3; - var _ClipPlane4 = OpenTK.Graphics.OpenGL.Version11.ClipPlane4; - var _ClipPlane5 = OpenTK.Graphics.OpenGL.Version11.ClipPlane5; - var _Light0 = OpenTK.Graphics.OpenGL.Version11.Light0; - var _Light1 = OpenTK.Graphics.OpenGL.Version11.Light1; - var _Light2 = OpenTK.Graphics.OpenGL.Version11.Light2; - var _Light3 = OpenTK.Graphics.OpenGL.Version11.Light3; - var _Light4 = OpenTK.Graphics.OpenGL.Version11.Light4; - var _Light5 = OpenTK.Graphics.OpenGL.Version11.Light5; - var _Light6 = OpenTK.Graphics.OpenGL.Version11.Light6; - var _Light7 = OpenTK.Graphics.OpenGL.Version11.Light7; - var _PolygonOffsetFill = OpenTK.Graphics.OpenGL.Version11.PolygonOffsetFill; - var _PolygonOffsetFactor = OpenTK.Graphics.OpenGL.Version11.PolygonOffsetFactor; - var _Alpha4 = OpenTK.Graphics.OpenGL.Version11.Alpha4; - var _Alpha8 = OpenTK.Graphics.OpenGL.Version11.Alpha8; - var _Alpha12 = OpenTK.Graphics.OpenGL.Version11.Alpha12; - var _Alpha16 = OpenTK.Graphics.OpenGL.Version11.Alpha16; - var _Luminance4 = OpenTK.Graphics.OpenGL.Version11.Luminance4; - var _Luminance8 = OpenTK.Graphics.OpenGL.Version11.Luminance8; - var _Luminance12 = OpenTK.Graphics.OpenGL.Version11.Luminance12; - var _Luminance16 = OpenTK.Graphics.OpenGL.Version11.Luminance16; - var _Luminance4Alpha4 = OpenTK.Graphics.OpenGL.Version11.Luminance4Alpha4; - var _Luminance6Alpha2 = OpenTK.Graphics.OpenGL.Version11.Luminance6Alpha2; - var _Luminance8Alpha8 = OpenTK.Graphics.OpenGL.Version11.Luminance8Alpha8; - var _Luminance12Alpha4 = OpenTK.Graphics.OpenGL.Version11.Luminance12Alpha4; - var _Luminance12Alpha12 = OpenTK.Graphics.OpenGL.Version11.Luminance12Alpha12; - var _Luminance16Alpha16 = OpenTK.Graphics.OpenGL.Version11.Luminance16Alpha16; - var _Intensity = OpenTK.Graphics.OpenGL.Version11.Intensity; - var _Intensity4 = OpenTK.Graphics.OpenGL.Version11.Intensity4; - var _Intensity8 = OpenTK.Graphics.OpenGL.Version11.Intensity8; - var _Intensity12 = OpenTK.Graphics.OpenGL.Version11.Intensity12; - var _Intensity16 = OpenTK.Graphics.OpenGL.Version11.Intensity16; - var _Rgb4 = OpenTK.Graphics.OpenGL.Version11.Rgb4; - var _Rgb5 = OpenTK.Graphics.OpenGL.Version11.Rgb5; - var _Rgb8 = OpenTK.Graphics.OpenGL.Version11.Rgb8; - var _Rgb10 = OpenTK.Graphics.OpenGL.Version11.Rgb10; - var _Rgb12 = OpenTK.Graphics.OpenGL.Version11.Rgb12; - var _Rgb16 = OpenTK.Graphics.OpenGL.Version11.Rgb16; - var _Rgba2 = OpenTK.Graphics.OpenGL.Version11.Rgba2; - var _Rgba4 = OpenTK.Graphics.OpenGL.Version11.Rgba4; - var _Rgb5A1 = OpenTK.Graphics.OpenGL.Version11.Rgb5A1; - var _Rgba8 = OpenTK.Graphics.OpenGL.Version11.Rgba8; - var _Rgb10A2 = OpenTK.Graphics.OpenGL.Version11.Rgb10A2; - var _Rgba12 = OpenTK.Graphics.OpenGL.Version11.Rgba12; - var _Rgba16 = OpenTK.Graphics.OpenGL.Version11.Rgba16; - var _TextureRedSize = OpenTK.Graphics.OpenGL.Version11.TextureRedSize; - var _TextureGreenSize = OpenTK.Graphics.OpenGL.Version11.TextureGreenSize; - var _TextureBlueSize = OpenTK.Graphics.OpenGL.Version11.TextureBlueSize; - var _TextureAlphaSize = OpenTK.Graphics.OpenGL.Version11.TextureAlphaSize; - var _TextureLuminanceSize = OpenTK.Graphics.OpenGL.Version11.TextureLuminanceSize; - var _TextureIntensitySize = OpenTK.Graphics.OpenGL.Version11.TextureIntensitySize; - var _ProxyTexture1D = OpenTK.Graphics.OpenGL.Version11.ProxyTexture1D; - var _ProxyTexture2D = OpenTK.Graphics.OpenGL.Version11.ProxyTexture2D; - var _TexturePriority = OpenTK.Graphics.OpenGL.Version11.TexturePriority; - var _TextureResident = OpenTK.Graphics.OpenGL.Version11.TextureResident; - var _TextureBinding1D = OpenTK.Graphics.OpenGL.Version11.TextureBinding1D; - var _TextureBinding2D = OpenTK.Graphics.OpenGL.Version11.TextureBinding2D; - var _VertexArray = OpenTK.Graphics.OpenGL.Version11.VertexArray; - var _NormalArray = OpenTK.Graphics.OpenGL.Version11.NormalArray; - var _ColorArray = OpenTK.Graphics.OpenGL.Version11.ColorArray; - var _IndexArray = OpenTK.Graphics.OpenGL.Version11.IndexArray; - var _TextureCoordArray = OpenTK.Graphics.OpenGL.Version11.TextureCoordArray; - var _EdgeFlagArray = OpenTK.Graphics.OpenGL.Version11.EdgeFlagArray; - var _VertexArraySize = OpenTK.Graphics.OpenGL.Version11.VertexArraySize; - var _VertexArrayType = OpenTK.Graphics.OpenGL.Version11.VertexArrayType; - var _VertexArrayStride = OpenTK.Graphics.OpenGL.Version11.VertexArrayStride; - var _NormalArrayType = OpenTK.Graphics.OpenGL.Version11.NormalArrayType; - var _NormalArrayStride = OpenTK.Graphics.OpenGL.Version11.NormalArrayStride; - var _ColorArraySize = OpenTK.Graphics.OpenGL.Version11.ColorArraySize; - var _ColorArrayType = OpenTK.Graphics.OpenGL.Version11.ColorArrayType; - var _ColorArrayStride = OpenTK.Graphics.OpenGL.Version11.ColorArrayStride; - var _IndexArrayType = OpenTK.Graphics.OpenGL.Version11.IndexArrayType; - var _IndexArrayStride = OpenTK.Graphics.OpenGL.Version11.IndexArrayStride; - var _TextureCoordArraySize = OpenTK.Graphics.OpenGL.Version11.TextureCoordArraySize; - var _TextureCoordArrayType = OpenTK.Graphics.OpenGL.Version11.TextureCoordArrayType; - var _TextureCoordArrayStride = OpenTK.Graphics.OpenGL.Version11.TextureCoordArrayStride; - var _EdgeFlagArrayStride = OpenTK.Graphics.OpenGL.Version11.EdgeFlagArrayStride; - var _VertexArrayPointer = OpenTK.Graphics.OpenGL.Version11.VertexArrayPointer; - var _NormalArrayPointer = OpenTK.Graphics.OpenGL.Version11.NormalArrayPointer; - var _ColorArrayPointer = OpenTK.Graphics.OpenGL.Version11.ColorArrayPointer; - var _IndexArrayPointer = OpenTK.Graphics.OpenGL.Version11.IndexArrayPointer; - var _TextureCoordArrayPointer = OpenTK.Graphics.OpenGL.Version11.TextureCoordArrayPointer; - var _EdgeFlagArrayPointer = OpenTK.Graphics.OpenGL.Version11.EdgeFlagArrayPointer; - var _AllAttribBits = OpenTK.Graphics.OpenGL.Version11.AllAttribBits; - var _ClientAllAttribBits = OpenTK.Graphics.OpenGL.Version11.ClientAllAttribBits; - var _One = OpenTK.Graphics.OpenGL.Version11.One; - var _True = OpenTK.Graphics.OpenGL.Version11.True; -} -static void Test_Version12_20040() { - var _SmoothPointSizeRange = OpenTK.Graphics.OpenGL.Version12.SmoothPointSizeRange; - var _SmoothPointSizeGranularity = OpenTK.Graphics.OpenGL.Version12.SmoothPointSizeGranularity; - var _SmoothLineWidthRange = OpenTK.Graphics.OpenGL.Version12.SmoothLineWidthRange; - var _SmoothLineWidthGranularity = OpenTK.Graphics.OpenGL.Version12.SmoothLineWidthGranularity; - var _UnsignedByte332 = OpenTK.Graphics.OpenGL.Version12.UnsignedByte332; - var _UnsignedShort4444 = OpenTK.Graphics.OpenGL.Version12.UnsignedShort4444; - var _UnsignedShort5551 = OpenTK.Graphics.OpenGL.Version12.UnsignedShort5551; - var _UnsignedInt8888 = OpenTK.Graphics.OpenGL.Version12.UnsignedInt8888; - var _UnsignedInt1010102 = OpenTK.Graphics.OpenGL.Version12.UnsignedInt1010102; - var _RescaleNormal = OpenTK.Graphics.OpenGL.Version12.RescaleNormal; - var _TextureBinding3D = OpenTK.Graphics.OpenGL.Version12.TextureBinding3D; - var _PackSkipImages = OpenTK.Graphics.OpenGL.Version12.PackSkipImages; - var _PackImageHeight = OpenTK.Graphics.OpenGL.Version12.PackImageHeight; - var _UnpackSkipImages = OpenTK.Graphics.OpenGL.Version12.UnpackSkipImages; - var _UnpackImageHeight = OpenTK.Graphics.OpenGL.Version12.UnpackImageHeight; - var _Texture3D = OpenTK.Graphics.OpenGL.Version12.Texture3D; - var _ProxyTexture3D = OpenTK.Graphics.OpenGL.Version12.ProxyTexture3D; - var _TextureDepth = OpenTK.Graphics.OpenGL.Version12.TextureDepth; - var _TextureWrapR = OpenTK.Graphics.OpenGL.Version12.TextureWrapR; - var _Max3DTextureSize = OpenTK.Graphics.OpenGL.Version12.Max3DTextureSize; - var _Bgr = OpenTK.Graphics.OpenGL.Version12.Bgr; - var _Bgra = OpenTK.Graphics.OpenGL.Version12.Bgra; - var _MaxElementsVertices = OpenTK.Graphics.OpenGL.Version12.MaxElementsVertices; - var _MaxElementsIndices = OpenTK.Graphics.OpenGL.Version12.MaxElementsIndices; - var _ClampToEdge = OpenTK.Graphics.OpenGL.Version12.ClampToEdge; - var _TextureMinLod = OpenTK.Graphics.OpenGL.Version12.TextureMinLod; - var _TextureMaxLod = OpenTK.Graphics.OpenGL.Version12.TextureMaxLod; - var _TextureBaseLevel = OpenTK.Graphics.OpenGL.Version12.TextureBaseLevel; - var _TextureMaxLevel = OpenTK.Graphics.OpenGL.Version12.TextureMaxLevel; - var _LightModelColorControl = OpenTK.Graphics.OpenGL.Version12.LightModelColorControl; - var _SingleColor = OpenTK.Graphics.OpenGL.Version12.SingleColor; - var _SeparateSpecularColor = OpenTK.Graphics.OpenGL.Version12.SeparateSpecularColor; - var _UnsignedByte233Rev = OpenTK.Graphics.OpenGL.Version12.UnsignedByte233Rev; - var _UnsignedShort565 = OpenTK.Graphics.OpenGL.Version12.UnsignedShort565; - var _UnsignedShort565Rev = OpenTK.Graphics.OpenGL.Version12.UnsignedShort565Rev; - var _UnsignedShort4444Rev = OpenTK.Graphics.OpenGL.Version12.UnsignedShort4444Rev; - var _UnsignedShort1555Rev = OpenTK.Graphics.OpenGL.Version12.UnsignedShort1555Rev; - var _UnsignedInt8888Rev = OpenTK.Graphics.OpenGL.Version12.UnsignedInt8888Rev; - var _UnsignedInt2101010Rev = OpenTK.Graphics.OpenGL.Version12.UnsignedInt2101010Rev; - var _AliasedPointSizeRange = OpenTK.Graphics.OpenGL.Version12.AliasedPointSizeRange; - var _AliasedLineWidthRange = OpenTK.Graphics.OpenGL.Version12.AliasedLineWidthRange; -} -static void Test_Version13_20041() { - var _MultisampleBit = OpenTK.Graphics.OpenGL.Version13.MultisampleBit; - var _Multisample = OpenTK.Graphics.OpenGL.Version13.Multisample; - var _SampleAlphaToCoverage = OpenTK.Graphics.OpenGL.Version13.SampleAlphaToCoverage; - var _SampleAlphaToOne = OpenTK.Graphics.OpenGL.Version13.SampleAlphaToOne; - var _SampleCoverage = OpenTK.Graphics.OpenGL.Version13.SampleCoverage; - var _SampleBuffers = OpenTK.Graphics.OpenGL.Version13.SampleBuffers; - var _Samples = OpenTK.Graphics.OpenGL.Version13.Samples; - var _SampleCoverageValue = OpenTK.Graphics.OpenGL.Version13.SampleCoverageValue; - var _SampleCoverageInvert = OpenTK.Graphics.OpenGL.Version13.SampleCoverageInvert; - var _ClampToBorder = OpenTK.Graphics.OpenGL.Version13.ClampToBorder; - var _Texture0 = OpenTK.Graphics.OpenGL.Version13.Texture0; - var _Texture1 = OpenTK.Graphics.OpenGL.Version13.Texture1; - var _Texture2 = OpenTK.Graphics.OpenGL.Version13.Texture2; - var _Texture3 = OpenTK.Graphics.OpenGL.Version13.Texture3; - var _Texture4 = OpenTK.Graphics.OpenGL.Version13.Texture4; - var _Texture5 = OpenTK.Graphics.OpenGL.Version13.Texture5; - var _Texture6 = OpenTK.Graphics.OpenGL.Version13.Texture6; - var _Texture7 = OpenTK.Graphics.OpenGL.Version13.Texture7; - var _Texture8 = OpenTK.Graphics.OpenGL.Version13.Texture8; - var _Texture9 = OpenTK.Graphics.OpenGL.Version13.Texture9; - var _Texture10 = OpenTK.Graphics.OpenGL.Version13.Texture10; - var _Texture11 = OpenTK.Graphics.OpenGL.Version13.Texture11; - var _Texture12 = OpenTK.Graphics.OpenGL.Version13.Texture12; - var _Texture13 = OpenTK.Graphics.OpenGL.Version13.Texture13; - var _Texture14 = OpenTK.Graphics.OpenGL.Version13.Texture14; - var _Texture15 = OpenTK.Graphics.OpenGL.Version13.Texture15; - var _Texture16 = OpenTK.Graphics.OpenGL.Version13.Texture16; - var _Texture17 = OpenTK.Graphics.OpenGL.Version13.Texture17; - var _Texture18 = OpenTK.Graphics.OpenGL.Version13.Texture18; - var _Texture19 = OpenTK.Graphics.OpenGL.Version13.Texture19; - var _Texture20 = OpenTK.Graphics.OpenGL.Version13.Texture20; - var _Texture21 = OpenTK.Graphics.OpenGL.Version13.Texture21; - var _Texture22 = OpenTK.Graphics.OpenGL.Version13.Texture22; - var _Texture23 = OpenTK.Graphics.OpenGL.Version13.Texture23; - var _Texture24 = OpenTK.Graphics.OpenGL.Version13.Texture24; - var _Texture25 = OpenTK.Graphics.OpenGL.Version13.Texture25; - var _Texture26 = OpenTK.Graphics.OpenGL.Version13.Texture26; - var _Texture27 = OpenTK.Graphics.OpenGL.Version13.Texture27; - var _Texture28 = OpenTK.Graphics.OpenGL.Version13.Texture28; - var _Texture29 = OpenTK.Graphics.OpenGL.Version13.Texture29; - var _Texture30 = OpenTK.Graphics.OpenGL.Version13.Texture30; - var _Texture31 = OpenTK.Graphics.OpenGL.Version13.Texture31; - var _ActiveTexture = OpenTK.Graphics.OpenGL.Version13.ActiveTexture; - var _ClientActiveTexture = OpenTK.Graphics.OpenGL.Version13.ClientActiveTexture; - var _MaxTextureUnits = OpenTK.Graphics.OpenGL.Version13.MaxTextureUnits; - var _TransposeModelviewMatrix = OpenTK.Graphics.OpenGL.Version13.TransposeModelviewMatrix; - var _TransposeProjectionMatrix = OpenTK.Graphics.OpenGL.Version13.TransposeProjectionMatrix; - var _TransposeTextureMatrix = OpenTK.Graphics.OpenGL.Version13.TransposeTextureMatrix; - var _TransposeColorMatrix = OpenTK.Graphics.OpenGL.Version13.TransposeColorMatrix; - var _Subtract = OpenTK.Graphics.OpenGL.Version13.Subtract; - var _CompressedAlpha = OpenTK.Graphics.OpenGL.Version13.CompressedAlpha; - var _CompressedLuminance = OpenTK.Graphics.OpenGL.Version13.CompressedLuminance; - var _CompressedLuminanceAlpha = OpenTK.Graphics.OpenGL.Version13.CompressedLuminanceAlpha; - var _CompressedIntensity = OpenTK.Graphics.OpenGL.Version13.CompressedIntensity; - var _CompressedRgb = OpenTK.Graphics.OpenGL.Version13.CompressedRgb; - var _CompressedRgba = OpenTK.Graphics.OpenGL.Version13.CompressedRgba; - var _TextureCompressionHint = OpenTK.Graphics.OpenGL.Version13.TextureCompressionHint; - var _NormalMap = OpenTK.Graphics.OpenGL.Version13.NormalMap; - var _ReflectionMap = OpenTK.Graphics.OpenGL.Version13.ReflectionMap; - var _TextureCubeMap = OpenTK.Graphics.OpenGL.Version13.TextureCubeMap; - var _TextureBindingCubeMap = OpenTK.Graphics.OpenGL.Version13.TextureBindingCubeMap; - var _TextureCubeMapPositiveX = OpenTK.Graphics.OpenGL.Version13.TextureCubeMapPositiveX; - var _TextureCubeMapNegativeX = OpenTK.Graphics.OpenGL.Version13.TextureCubeMapNegativeX; - var _TextureCubeMapPositiveY = OpenTK.Graphics.OpenGL.Version13.TextureCubeMapPositiveY; - var _TextureCubeMapNegativeY = OpenTK.Graphics.OpenGL.Version13.TextureCubeMapNegativeY; - var _TextureCubeMapPositiveZ = OpenTK.Graphics.OpenGL.Version13.TextureCubeMapPositiveZ; - var _TextureCubeMapNegativeZ = OpenTK.Graphics.OpenGL.Version13.TextureCubeMapNegativeZ; - var _ProxyTextureCubeMap = OpenTK.Graphics.OpenGL.Version13.ProxyTextureCubeMap; - var _MaxCubeMapTextureSize = OpenTK.Graphics.OpenGL.Version13.MaxCubeMapTextureSize; - var _Combine = OpenTK.Graphics.OpenGL.Version13.Combine; - var _CombineRgb = OpenTK.Graphics.OpenGL.Version13.CombineRgb; - var _CombineAlpha = OpenTK.Graphics.OpenGL.Version13.CombineAlpha; - var _RgbScale = OpenTK.Graphics.OpenGL.Version13.RgbScale; - var _AddSigned = OpenTK.Graphics.OpenGL.Version13.AddSigned; - var _Interpolate = OpenTK.Graphics.OpenGL.Version13.Interpolate; - var _Constant = OpenTK.Graphics.OpenGL.Version13.Constant; - var _PrimaryColor = OpenTK.Graphics.OpenGL.Version13.PrimaryColor; - var _Previous = OpenTK.Graphics.OpenGL.Version13.Previous; - var _Source0Rgb = OpenTK.Graphics.OpenGL.Version13.Source0Rgb; - var _Source1Rgb = OpenTK.Graphics.OpenGL.Version13.Source1Rgb; - var _Source2Rgb = OpenTK.Graphics.OpenGL.Version13.Source2Rgb; - var _Source0Alpha = OpenTK.Graphics.OpenGL.Version13.Source0Alpha; - var _Source1Alpha = OpenTK.Graphics.OpenGL.Version13.Source1Alpha; - var _Source2Alpha = OpenTK.Graphics.OpenGL.Version13.Source2Alpha; - var _Operand0Rgb = OpenTK.Graphics.OpenGL.Version13.Operand0Rgb; - var _Operand1Rgb = OpenTK.Graphics.OpenGL.Version13.Operand1Rgb; - var _Operand2Rgb = OpenTK.Graphics.OpenGL.Version13.Operand2Rgb; - var _Operand0Alpha = OpenTK.Graphics.OpenGL.Version13.Operand0Alpha; - var _Operand1Alpha = OpenTK.Graphics.OpenGL.Version13.Operand1Alpha; - var _Operand2Alpha = OpenTK.Graphics.OpenGL.Version13.Operand2Alpha; - var _TextureCompressedImageSize = OpenTK.Graphics.OpenGL.Version13.TextureCompressedImageSize; - var _TextureCompressed = OpenTK.Graphics.OpenGL.Version13.TextureCompressed; - var _NumCompressedTextureFormats = OpenTK.Graphics.OpenGL.Version13.NumCompressedTextureFormats; - var _CompressedTextureFormats = OpenTK.Graphics.OpenGL.Version13.CompressedTextureFormats; - var _Dot3Rgb = OpenTK.Graphics.OpenGL.Version13.Dot3Rgb; - var _Dot3Rgba = OpenTK.Graphics.OpenGL.Version13.Dot3Rgba; -} -static void Test_Version14_20042() { - var _ConstantColor = OpenTK.Graphics.OpenGL.Version14.ConstantColor; - var _OneMinusConstantColor = OpenTK.Graphics.OpenGL.Version14.OneMinusConstantColor; - var _ConstantAlpha = OpenTK.Graphics.OpenGL.Version14.ConstantAlpha; - var _OneMinusConstantAlpha = OpenTK.Graphics.OpenGL.Version14.OneMinusConstantAlpha; - var _FuncAdd = OpenTK.Graphics.OpenGL.Version14.FuncAdd; - var _Min = OpenTK.Graphics.OpenGL.Version14.Min; - var _Max = OpenTK.Graphics.OpenGL.Version14.Max; - var _FuncSubtract = OpenTK.Graphics.OpenGL.Version14.FuncSubtract; - var _FuncReverseSubtract = OpenTK.Graphics.OpenGL.Version14.FuncReverseSubtract; - var _BlendDstRgb = OpenTK.Graphics.OpenGL.Version14.BlendDstRgb; - var _BlendSrcRgb = OpenTK.Graphics.OpenGL.Version14.BlendSrcRgb; - var _BlendDstAlpha = OpenTK.Graphics.OpenGL.Version14.BlendDstAlpha; - var _BlendSrcAlpha = OpenTK.Graphics.OpenGL.Version14.BlendSrcAlpha; - var _PointSizeMin = OpenTK.Graphics.OpenGL.Version14.PointSizeMin; - var _PointSizeMax = OpenTK.Graphics.OpenGL.Version14.PointSizeMax; - var _PointFadeThresholdSize = OpenTK.Graphics.OpenGL.Version14.PointFadeThresholdSize; - var _PointDistanceAttenuation = OpenTK.Graphics.OpenGL.Version14.PointDistanceAttenuation; - var _GenerateMipmap = OpenTK.Graphics.OpenGL.Version14.GenerateMipmap; - var _GenerateMipmapHint = OpenTK.Graphics.OpenGL.Version14.GenerateMipmapHint; - var _DepthComponent16 = OpenTK.Graphics.OpenGL.Version14.DepthComponent16; - var _DepthComponent24 = OpenTK.Graphics.OpenGL.Version14.DepthComponent24; - var _DepthComponent32 = OpenTK.Graphics.OpenGL.Version14.DepthComponent32; - var _MirroredRepeat = OpenTK.Graphics.OpenGL.Version14.MirroredRepeat; - var _FogCoordinateSource = OpenTK.Graphics.OpenGL.Version14.FogCoordinateSource; - var _FogCoordinate = OpenTK.Graphics.OpenGL.Version14.FogCoordinate; - var _FragmentDepth = OpenTK.Graphics.OpenGL.Version14.FragmentDepth; - var _CurrentFogCoordinate = OpenTK.Graphics.OpenGL.Version14.CurrentFogCoordinate; - var _FogCoordinateArrayType = OpenTK.Graphics.OpenGL.Version14.FogCoordinateArrayType; - var _FogCoordinateArrayStride = OpenTK.Graphics.OpenGL.Version14.FogCoordinateArrayStride; - var _FogCoordinateArrayPointer = OpenTK.Graphics.OpenGL.Version14.FogCoordinateArrayPointer; - var _FogCoordinateArray = OpenTK.Graphics.OpenGL.Version14.FogCoordinateArray; - var _ColorSum = OpenTK.Graphics.OpenGL.Version14.ColorSum; - var _CurrentSecondaryColor = OpenTK.Graphics.OpenGL.Version14.CurrentSecondaryColor; - var _SecondaryColorArraySize = OpenTK.Graphics.OpenGL.Version14.SecondaryColorArraySize; - var _SecondaryColorArrayType = OpenTK.Graphics.OpenGL.Version14.SecondaryColorArrayType; - var _SecondaryColorArrayStride = OpenTK.Graphics.OpenGL.Version14.SecondaryColorArrayStride; - var _SecondaryColorArrayPointer = OpenTK.Graphics.OpenGL.Version14.SecondaryColorArrayPointer; - var _SecondaryColorArray = OpenTK.Graphics.OpenGL.Version14.SecondaryColorArray; - var _MaxTextureLodBias = OpenTK.Graphics.OpenGL.Version14.MaxTextureLodBias; - var _TextureFilterControl = OpenTK.Graphics.OpenGL.Version14.TextureFilterControl; - var _TextureLodBias = OpenTK.Graphics.OpenGL.Version14.TextureLodBias; - var _IncrWrap = OpenTK.Graphics.OpenGL.Version14.IncrWrap; - var _DecrWrap = OpenTK.Graphics.OpenGL.Version14.DecrWrap; - var _TextureDepthSize = OpenTK.Graphics.OpenGL.Version14.TextureDepthSize; - var _DepthTextureMode = OpenTK.Graphics.OpenGL.Version14.DepthTextureMode; - var _TextureCompareMode = OpenTK.Graphics.OpenGL.Version14.TextureCompareMode; - var _TextureCompareFunc = OpenTK.Graphics.OpenGL.Version14.TextureCompareFunc; - var _CompareRToTexture = OpenTK.Graphics.OpenGL.Version14.CompareRToTexture; -} -static void Test_Version15_20043() { - var _FogCoordSrc = OpenTK.Graphics.OpenGL.Version15.FogCoordSrc; - var _FogCoord = OpenTK.Graphics.OpenGL.Version15.FogCoord; - var _CurrentFogCoord = OpenTK.Graphics.OpenGL.Version15.CurrentFogCoord; - var _FogCoordArrayType = OpenTK.Graphics.OpenGL.Version15.FogCoordArrayType; - var _FogCoordArrayStride = OpenTK.Graphics.OpenGL.Version15.FogCoordArrayStride; - var _FogCoordArrayPointer = OpenTK.Graphics.OpenGL.Version15.FogCoordArrayPointer; - var _FogCoordArray = OpenTK.Graphics.OpenGL.Version15.FogCoordArray; - var _Src0Rgb = OpenTK.Graphics.OpenGL.Version15.Src0Rgb; - var _Src1Rgb = OpenTK.Graphics.OpenGL.Version15.Src1Rgb; - var _Src2Rgb = OpenTK.Graphics.OpenGL.Version15.Src2Rgb; - var _Src0Alpha = OpenTK.Graphics.OpenGL.Version15.Src0Alpha; - var _Src1Alpha = OpenTK.Graphics.OpenGL.Version15.Src1Alpha; - var _Src2Alpha = OpenTK.Graphics.OpenGL.Version15.Src2Alpha; - var _BufferSize = OpenTK.Graphics.OpenGL.Version15.BufferSize; - var _BufferUsage = OpenTK.Graphics.OpenGL.Version15.BufferUsage; - var _QueryCounterBits = OpenTK.Graphics.OpenGL.Version15.QueryCounterBits; - var _CurrentQuery = OpenTK.Graphics.OpenGL.Version15.CurrentQuery; - var _QueryResult = OpenTK.Graphics.OpenGL.Version15.QueryResult; - var _QueryResultAvailable = OpenTK.Graphics.OpenGL.Version15.QueryResultAvailable; - var _ArrayBuffer = OpenTK.Graphics.OpenGL.Version15.ArrayBuffer; - var _ElementArrayBuffer = OpenTK.Graphics.OpenGL.Version15.ElementArrayBuffer; - var _ArrayBufferBinding = OpenTK.Graphics.OpenGL.Version15.ArrayBufferBinding; - var _ElementArrayBufferBinding = OpenTK.Graphics.OpenGL.Version15.ElementArrayBufferBinding; - var _VertexArrayBufferBinding = OpenTK.Graphics.OpenGL.Version15.VertexArrayBufferBinding; - var _NormalArrayBufferBinding = OpenTK.Graphics.OpenGL.Version15.NormalArrayBufferBinding; - var _ColorArrayBufferBinding = OpenTK.Graphics.OpenGL.Version15.ColorArrayBufferBinding; - var _IndexArrayBufferBinding = OpenTK.Graphics.OpenGL.Version15.IndexArrayBufferBinding; - var _TextureCoordArrayBufferBinding = OpenTK.Graphics.OpenGL.Version15.TextureCoordArrayBufferBinding; - var _EdgeFlagArrayBufferBinding = OpenTK.Graphics.OpenGL.Version15.EdgeFlagArrayBufferBinding; - var _SecondaryColorArrayBufferBinding = OpenTK.Graphics.OpenGL.Version15.SecondaryColorArrayBufferBinding; - var _FogCoordArrayBufferBinding = OpenTK.Graphics.OpenGL.Version15.FogCoordArrayBufferBinding; - var _FogCoordinateArrayBufferBinding = OpenTK.Graphics.OpenGL.Version15.FogCoordinateArrayBufferBinding; - var _WeightArrayBufferBinding = OpenTK.Graphics.OpenGL.Version15.WeightArrayBufferBinding; - var _VertexAttribArrayBufferBinding = OpenTK.Graphics.OpenGL.Version15.VertexAttribArrayBufferBinding; - var _ReadOnly = OpenTK.Graphics.OpenGL.Version15.ReadOnly; - var _WriteOnly = OpenTK.Graphics.OpenGL.Version15.WriteOnly; - var _ReadWrite = OpenTK.Graphics.OpenGL.Version15.ReadWrite; - var _BufferAccess = OpenTK.Graphics.OpenGL.Version15.BufferAccess; - var _BufferMapped = OpenTK.Graphics.OpenGL.Version15.BufferMapped; - var _BufferMapPointer = OpenTK.Graphics.OpenGL.Version15.BufferMapPointer; - var _StreamDraw = OpenTK.Graphics.OpenGL.Version15.StreamDraw; - var _StreamRead = OpenTK.Graphics.OpenGL.Version15.StreamRead; - var _StreamCopy = OpenTK.Graphics.OpenGL.Version15.StreamCopy; - var _StaticDraw = OpenTK.Graphics.OpenGL.Version15.StaticDraw; - var _StaticRead = OpenTK.Graphics.OpenGL.Version15.StaticRead; - var _StaticCopy = OpenTK.Graphics.OpenGL.Version15.StaticCopy; - var _DynamicDraw = OpenTK.Graphics.OpenGL.Version15.DynamicDraw; - var _DynamicRead = OpenTK.Graphics.OpenGL.Version15.DynamicRead; - var _DynamicCopy = OpenTK.Graphics.OpenGL.Version15.DynamicCopy; - var _SamplesPassed = OpenTK.Graphics.OpenGL.Version15.SamplesPassed; -} -static void Test_Version20_20044() { - var _BlendEquationRgb = OpenTK.Graphics.OpenGL.Version20.BlendEquationRgb; - var _VertexAttribArrayEnabled = OpenTK.Graphics.OpenGL.Version20.VertexAttribArrayEnabled; - var _VertexAttribArraySize = OpenTK.Graphics.OpenGL.Version20.VertexAttribArraySize; - var _VertexAttribArrayStride = OpenTK.Graphics.OpenGL.Version20.VertexAttribArrayStride; - var _VertexAttribArrayType = OpenTK.Graphics.OpenGL.Version20.VertexAttribArrayType; - var _CurrentVertexAttrib = OpenTK.Graphics.OpenGL.Version20.CurrentVertexAttrib; - var _VertexProgramPointSize = OpenTK.Graphics.OpenGL.Version20.VertexProgramPointSize; - var _VertexProgramTwoSide = OpenTK.Graphics.OpenGL.Version20.VertexProgramTwoSide; - var _VertexAttribArrayPointer = OpenTK.Graphics.OpenGL.Version20.VertexAttribArrayPointer; - var _StencilBackFunc = OpenTK.Graphics.OpenGL.Version20.StencilBackFunc; - var _StencilBackFail = OpenTK.Graphics.OpenGL.Version20.StencilBackFail; - var _StencilBackPassDepthFail = OpenTK.Graphics.OpenGL.Version20.StencilBackPassDepthFail; - var _StencilBackPassDepthPass = OpenTK.Graphics.OpenGL.Version20.StencilBackPassDepthPass; - var _MaxDrawBuffers = OpenTK.Graphics.OpenGL.Version20.MaxDrawBuffers; - var _DrawBuffer0 = OpenTK.Graphics.OpenGL.Version20.DrawBuffer0; - var _DrawBuffer1 = OpenTK.Graphics.OpenGL.Version20.DrawBuffer1; - var _DrawBuffer2 = OpenTK.Graphics.OpenGL.Version20.DrawBuffer2; - var _DrawBuffer3 = OpenTK.Graphics.OpenGL.Version20.DrawBuffer3; - var _DrawBuffer4 = OpenTK.Graphics.OpenGL.Version20.DrawBuffer4; - var _DrawBuffer5 = OpenTK.Graphics.OpenGL.Version20.DrawBuffer5; - var _DrawBuffer6 = OpenTK.Graphics.OpenGL.Version20.DrawBuffer6; - var _DrawBuffer7 = OpenTK.Graphics.OpenGL.Version20.DrawBuffer7; - var _DrawBuffer8 = OpenTK.Graphics.OpenGL.Version20.DrawBuffer8; - var _DrawBuffer9 = OpenTK.Graphics.OpenGL.Version20.DrawBuffer9; - var _DrawBuffer10 = OpenTK.Graphics.OpenGL.Version20.DrawBuffer10; - var _DrawBuffer11 = OpenTK.Graphics.OpenGL.Version20.DrawBuffer11; - var _DrawBuffer12 = OpenTK.Graphics.OpenGL.Version20.DrawBuffer12; - var _DrawBuffer13 = OpenTK.Graphics.OpenGL.Version20.DrawBuffer13; - var _DrawBuffer14 = OpenTK.Graphics.OpenGL.Version20.DrawBuffer14; - var _DrawBuffer15 = OpenTK.Graphics.OpenGL.Version20.DrawBuffer15; - var _BlendEquationAlpha = OpenTK.Graphics.OpenGL.Version20.BlendEquationAlpha; - var _PointSprite = OpenTK.Graphics.OpenGL.Version20.PointSprite; - var _CoordReplace = OpenTK.Graphics.OpenGL.Version20.CoordReplace; - var _MaxVertexAttribs = OpenTK.Graphics.OpenGL.Version20.MaxVertexAttribs; - var _VertexAttribArrayNormalized = OpenTK.Graphics.OpenGL.Version20.VertexAttribArrayNormalized; - var _MaxTextureCoords = OpenTK.Graphics.OpenGL.Version20.MaxTextureCoords; - var _MaxTextureImageUnits = OpenTK.Graphics.OpenGL.Version20.MaxTextureImageUnits; - var _FragmentShader = OpenTK.Graphics.OpenGL.Version20.FragmentShader; - var _VertexShader = OpenTK.Graphics.OpenGL.Version20.VertexShader; - var _MaxFragmentUniformComponents = OpenTK.Graphics.OpenGL.Version20.MaxFragmentUniformComponents; - var _MaxVertexUniformComponents = OpenTK.Graphics.OpenGL.Version20.MaxVertexUniformComponents; - var _MaxVaryingFloats = OpenTK.Graphics.OpenGL.Version20.MaxVaryingFloats; - var _MaxVertexTextureImageUnits = OpenTK.Graphics.OpenGL.Version20.MaxVertexTextureImageUnits; - var _MaxCombinedTextureImageUnits = OpenTK.Graphics.OpenGL.Version20.MaxCombinedTextureImageUnits; - var _ShaderType = OpenTK.Graphics.OpenGL.Version20.ShaderType; - var _FloatVec2 = OpenTK.Graphics.OpenGL.Version20.FloatVec2; - var _FloatVec3 = OpenTK.Graphics.OpenGL.Version20.FloatVec3; - var _FloatVec4 = OpenTK.Graphics.OpenGL.Version20.FloatVec4; - var _IntVec2 = OpenTK.Graphics.OpenGL.Version20.IntVec2; - var _IntVec3 = OpenTK.Graphics.OpenGL.Version20.IntVec3; - var _IntVec4 = OpenTK.Graphics.OpenGL.Version20.IntVec4; - var _Bool = OpenTK.Graphics.OpenGL.Version20.Bool; - var _BoolVec2 = OpenTK.Graphics.OpenGL.Version20.BoolVec2; - var _BoolVec3 = OpenTK.Graphics.OpenGL.Version20.BoolVec3; - var _BoolVec4 = OpenTK.Graphics.OpenGL.Version20.BoolVec4; - var _FloatMat2 = OpenTK.Graphics.OpenGL.Version20.FloatMat2; - var _FloatMat3 = OpenTK.Graphics.OpenGL.Version20.FloatMat3; - var _FloatMat4 = OpenTK.Graphics.OpenGL.Version20.FloatMat4; - var _Sampler1D = OpenTK.Graphics.OpenGL.Version20.Sampler1D; - var _Sampler2D = OpenTK.Graphics.OpenGL.Version20.Sampler2D; - var _Sampler3D = OpenTK.Graphics.OpenGL.Version20.Sampler3D; - var _SamplerCube = OpenTK.Graphics.OpenGL.Version20.SamplerCube; - var _Sampler1DShadow = OpenTK.Graphics.OpenGL.Version20.Sampler1DShadow; - var _Sampler2DShadow = OpenTK.Graphics.OpenGL.Version20.Sampler2DShadow; - var _DeleteStatus = OpenTK.Graphics.OpenGL.Version20.DeleteStatus; - var _CompileStatus = OpenTK.Graphics.OpenGL.Version20.CompileStatus; - var _LinkStatus = OpenTK.Graphics.OpenGL.Version20.LinkStatus; - var _ValidateStatus = OpenTK.Graphics.OpenGL.Version20.ValidateStatus; - var _InfoLogLength = OpenTK.Graphics.OpenGL.Version20.InfoLogLength; - var _AttachedShaders = OpenTK.Graphics.OpenGL.Version20.AttachedShaders; - var _ActiveUniforms = OpenTK.Graphics.OpenGL.Version20.ActiveUniforms; - var _ActiveUniformMaxLength = OpenTK.Graphics.OpenGL.Version20.ActiveUniformMaxLength; - var _ShaderSourceLength = OpenTK.Graphics.OpenGL.Version20.ShaderSourceLength; - var _ActiveAttributes = OpenTK.Graphics.OpenGL.Version20.ActiveAttributes; - var _ActiveAttributeMaxLength = OpenTK.Graphics.OpenGL.Version20.ActiveAttributeMaxLength; - var _FragmentShaderDerivativeHint = OpenTK.Graphics.OpenGL.Version20.FragmentShaderDerivativeHint; - var _ShadingLanguageVersion = OpenTK.Graphics.OpenGL.Version20.ShadingLanguageVersion; - var _CurrentProgram = OpenTK.Graphics.OpenGL.Version20.CurrentProgram; - var _PointSpriteCoordOrigin = OpenTK.Graphics.OpenGL.Version20.PointSpriteCoordOrigin; - var _LowerLeft = OpenTK.Graphics.OpenGL.Version20.LowerLeft; - var _UpperLeft = OpenTK.Graphics.OpenGL.Version20.UpperLeft; - var _StencilBackRef = OpenTK.Graphics.OpenGL.Version20.StencilBackRef; - var _StencilBackValueMask = OpenTK.Graphics.OpenGL.Version20.StencilBackValueMask; - var _StencilBackWritemask = OpenTK.Graphics.OpenGL.Version20.StencilBackWritemask; -} -static void Test_Version21_20045() { - var _CurrentRasterSecondaryColor = OpenTK.Graphics.OpenGL.Version21.CurrentRasterSecondaryColor; - var _PixelPackBuffer = OpenTK.Graphics.OpenGL.Version21.PixelPackBuffer; - var _PixelUnpackBuffer = OpenTK.Graphics.OpenGL.Version21.PixelUnpackBuffer; - var _PixelPackBufferBinding = OpenTK.Graphics.OpenGL.Version21.PixelPackBufferBinding; - var _PixelUnpackBufferBinding = OpenTK.Graphics.OpenGL.Version21.PixelUnpackBufferBinding; - var _FloatMat2x3 = OpenTK.Graphics.OpenGL.Version21.FloatMat2x3; - var _FloatMat2x4 = OpenTK.Graphics.OpenGL.Version21.FloatMat2x4; - var _FloatMat3x2 = OpenTK.Graphics.OpenGL.Version21.FloatMat3x2; - var _FloatMat3x4 = OpenTK.Graphics.OpenGL.Version21.FloatMat3x4; - var _FloatMat4x2 = OpenTK.Graphics.OpenGL.Version21.FloatMat4x2; - var _FloatMat4x3 = OpenTK.Graphics.OpenGL.Version21.FloatMat4x3; - var _Srgb = OpenTK.Graphics.OpenGL.Version21.Srgb; - var _Srgb8 = OpenTK.Graphics.OpenGL.Version21.Srgb8; - var _SrgbAlpha = OpenTK.Graphics.OpenGL.Version21.SrgbAlpha; - var _Srgb8Alpha8 = OpenTK.Graphics.OpenGL.Version21.Srgb8Alpha8; - var _SluminanceAlpha = OpenTK.Graphics.OpenGL.Version21.SluminanceAlpha; - var _Sluminance8Alpha8 = OpenTK.Graphics.OpenGL.Version21.Sluminance8Alpha8; - var _Sluminance = OpenTK.Graphics.OpenGL.Version21.Sluminance; - var _Sluminance8 = OpenTK.Graphics.OpenGL.Version21.Sluminance8; - var _CompressedSrgb = OpenTK.Graphics.OpenGL.Version21.CompressedSrgb; - var _CompressedSrgbAlpha = OpenTK.Graphics.OpenGL.Version21.CompressedSrgbAlpha; - var _CompressedSluminance = OpenTK.Graphics.OpenGL.Version21.CompressedSluminance; - var _CompressedSluminanceAlpha = OpenTK.Graphics.OpenGL.Version21.CompressedSluminanceAlpha; -} -static void Test_Version30_20046() { - var _ContextFlagForwardCompatibleBit = OpenTK.Graphics.OpenGL.Version30.ContextFlagForwardCompatibleBit; - var _MapReadBit = OpenTK.Graphics.OpenGL.Version30.MapReadBit; - var _MapWriteBit = OpenTK.Graphics.OpenGL.Version30.MapWriteBit; - var _MapInvalidateRangeBit = OpenTK.Graphics.OpenGL.Version30.MapInvalidateRangeBit; - var _MapInvalidateBufferBit = OpenTK.Graphics.OpenGL.Version30.MapInvalidateBufferBit; - var _MapFlushExplicitBit = OpenTK.Graphics.OpenGL.Version30.MapFlushExplicitBit; - var _MapUnsynchronizedBit = OpenTK.Graphics.OpenGL.Version30.MapUnsynchronizedBit; - var _InvalidFramebufferOperation = OpenTK.Graphics.OpenGL.Version30.InvalidFramebufferOperation; - var _MaxClipDistances = OpenTK.Graphics.OpenGL.Version30.MaxClipDistances; - var _HalfFloat = OpenTK.Graphics.OpenGL.Version30.HalfFloat; - var _ClipDistance0 = OpenTK.Graphics.OpenGL.Version30.ClipDistance0; - var _ClipDistance1 = OpenTK.Graphics.OpenGL.Version30.ClipDistance1; - var _ClipDistance2 = OpenTK.Graphics.OpenGL.Version30.ClipDistance2; - var _ClipDistance3 = OpenTK.Graphics.OpenGL.Version30.ClipDistance3; - var _ClipDistance4 = OpenTK.Graphics.OpenGL.Version30.ClipDistance4; - var _ClipDistance5 = OpenTK.Graphics.OpenGL.Version30.ClipDistance5; - var _ClipDistance6 = OpenTK.Graphics.OpenGL.Version30.ClipDistance6; - var _ClipDistance7 = OpenTK.Graphics.OpenGL.Version30.ClipDistance7; - var _FramebufferAttachmentColorEncoding = OpenTK.Graphics.OpenGL.Version30.FramebufferAttachmentColorEncoding; - var _FramebufferAttachmentComponentType = OpenTK.Graphics.OpenGL.Version30.FramebufferAttachmentComponentType; - var _FramebufferAttachmentRedSize = OpenTK.Graphics.OpenGL.Version30.FramebufferAttachmentRedSize; - var _FramebufferAttachmentGreenSize = OpenTK.Graphics.OpenGL.Version30.FramebufferAttachmentGreenSize; - var _FramebufferAttachmentBlueSize = OpenTK.Graphics.OpenGL.Version30.FramebufferAttachmentBlueSize; - var _FramebufferAttachmentAlphaSize = OpenTK.Graphics.OpenGL.Version30.FramebufferAttachmentAlphaSize; - var _FramebufferAttachmentDepthSize = OpenTK.Graphics.OpenGL.Version30.FramebufferAttachmentDepthSize; - var _FramebufferAttachmentStencilSize = OpenTK.Graphics.OpenGL.Version30.FramebufferAttachmentStencilSize; - var _FramebufferDefault = OpenTK.Graphics.OpenGL.Version30.FramebufferDefault; - var _FramebufferUndefined = OpenTK.Graphics.OpenGL.Version30.FramebufferUndefined; - var _DepthStencilAttachment = OpenTK.Graphics.OpenGL.Version30.DepthStencilAttachment; - var _MajorVersion = OpenTK.Graphics.OpenGL.Version30.MajorVersion; - var _MinorVersion = OpenTK.Graphics.OpenGL.Version30.MinorVersion; - var _NumExtensions = OpenTK.Graphics.OpenGL.Version30.NumExtensions; - var _ContextFlags = OpenTK.Graphics.OpenGL.Version30.ContextFlags; - var _Index = OpenTK.Graphics.OpenGL.Version30.Index; - var _CompressedRed = OpenTK.Graphics.OpenGL.Version30.CompressedRed; - var _CompressedRg = OpenTK.Graphics.OpenGL.Version30.CompressedRg; - var _Rg = OpenTK.Graphics.OpenGL.Version30.Rg; - var _RgInteger = OpenTK.Graphics.OpenGL.Version30.RgInteger; - var _R8 = OpenTK.Graphics.OpenGL.Version30.R8; - var _R16 = OpenTK.Graphics.OpenGL.Version30.R16; - var _Rg8 = OpenTK.Graphics.OpenGL.Version30.Rg8; - var _Rg16 = OpenTK.Graphics.OpenGL.Version30.Rg16; - var _R16f = OpenTK.Graphics.OpenGL.Version30.R16f; - var _R32f = OpenTK.Graphics.OpenGL.Version30.R32f; - var _Rg16f = OpenTK.Graphics.OpenGL.Version30.Rg16f; - var _Rg32f = OpenTK.Graphics.OpenGL.Version30.Rg32f; - var _R8i = OpenTK.Graphics.OpenGL.Version30.R8i; - var _R8ui = OpenTK.Graphics.OpenGL.Version30.R8ui; - var _R16i = OpenTK.Graphics.OpenGL.Version30.R16i; - var _R16ui = OpenTK.Graphics.OpenGL.Version30.R16ui; - var _R32i = OpenTK.Graphics.OpenGL.Version30.R32i; - var _R32ui = OpenTK.Graphics.OpenGL.Version30.R32ui; - var _Rg8i = OpenTK.Graphics.OpenGL.Version30.Rg8i; - var _Rg8ui = OpenTK.Graphics.OpenGL.Version30.Rg8ui; - var _Rg16i = OpenTK.Graphics.OpenGL.Version30.Rg16i; - var _Rg16ui = OpenTK.Graphics.OpenGL.Version30.Rg16ui; - var _Rg32i = OpenTK.Graphics.OpenGL.Version30.Rg32i; - var _Rg32ui = OpenTK.Graphics.OpenGL.Version30.Rg32ui; - var _MaxRenderbufferSize = OpenTK.Graphics.OpenGL.Version30.MaxRenderbufferSize; - var _DepthStencil = OpenTK.Graphics.OpenGL.Version30.DepthStencil; - var _UnsignedInt248 = OpenTK.Graphics.OpenGL.Version30.UnsignedInt248; - var _VertexArrayBinding = OpenTK.Graphics.OpenGL.Version30.VertexArrayBinding; - var _Rgba32f = OpenTK.Graphics.OpenGL.Version30.Rgba32f; - var _Rgb32f = OpenTK.Graphics.OpenGL.Version30.Rgb32f; - var _Rgba16f = OpenTK.Graphics.OpenGL.Version30.Rgba16f; - var _Rgb16f = OpenTK.Graphics.OpenGL.Version30.Rgb16f; - var _CompareRefToTexture = OpenTK.Graphics.OpenGL.Version30.CompareRefToTexture; - var _Depth24Stencil8 = OpenTK.Graphics.OpenGL.Version30.Depth24Stencil8; - var _TextureStencilSize = OpenTK.Graphics.OpenGL.Version30.TextureStencilSize; - var _VertexAttribArrayInteger = OpenTK.Graphics.OpenGL.Version30.VertexAttribArrayInteger; - var _MaxArrayTextureLayers = OpenTK.Graphics.OpenGL.Version30.MaxArrayTextureLayers; - var _MinProgramTexelOffset = OpenTK.Graphics.OpenGL.Version30.MinProgramTexelOffset; - var _MaxProgramTexelOffset = OpenTK.Graphics.OpenGL.Version30.MaxProgramTexelOffset; - var _ClampVertexColor = OpenTK.Graphics.OpenGL.Version30.ClampVertexColor; - var _ClampFragmentColor = OpenTK.Graphics.OpenGL.Version30.ClampFragmentColor; - var _ClampReadColor = OpenTK.Graphics.OpenGL.Version30.ClampReadColor; - var _FixedOnly = OpenTK.Graphics.OpenGL.Version30.FixedOnly; - var _MaxVaryingComponents = OpenTK.Graphics.OpenGL.Version30.MaxVaryingComponents; - var _TextureRedType = OpenTK.Graphics.OpenGL.Version30.TextureRedType; - var _TextureGreenType = OpenTK.Graphics.OpenGL.Version30.TextureGreenType; - var _TextureBlueType = OpenTK.Graphics.OpenGL.Version30.TextureBlueType; - var _TextureAlphaType = OpenTK.Graphics.OpenGL.Version30.TextureAlphaType; - var _TextureLuminanceType = OpenTK.Graphics.OpenGL.Version30.TextureLuminanceType; - var _TextureIntensityType = OpenTK.Graphics.OpenGL.Version30.TextureIntensityType; - var _TextureDepthType = OpenTK.Graphics.OpenGL.Version30.TextureDepthType; - var _UnsignedNormalized = OpenTK.Graphics.OpenGL.Version30.UnsignedNormalized; - var _Texture1DArray = OpenTK.Graphics.OpenGL.Version30.Texture1DArray; - var _ProxyTexture1DArray = OpenTK.Graphics.OpenGL.Version30.ProxyTexture1DArray; - var _Texture2DArray = OpenTK.Graphics.OpenGL.Version30.Texture2DArray; - var _ProxyTexture2DArray = OpenTK.Graphics.OpenGL.Version30.ProxyTexture2DArray; - var _TextureBinding1DArray = OpenTK.Graphics.OpenGL.Version30.TextureBinding1DArray; - var _TextureBinding2DArray = OpenTK.Graphics.OpenGL.Version30.TextureBinding2DArray; - var _R11fG11fB10f = OpenTK.Graphics.OpenGL.Version30.R11fG11fB10f; - var _UnsignedInt10F11F11FRev = OpenTK.Graphics.OpenGL.Version30.UnsignedInt10F11F11FRev; - var _Rgb9E5 = OpenTK.Graphics.OpenGL.Version30.Rgb9E5; - var _UnsignedInt5999Rev = OpenTK.Graphics.OpenGL.Version30.UnsignedInt5999Rev; - var _TextureSharedSize = OpenTK.Graphics.OpenGL.Version30.TextureSharedSize; - var _TransformFeedbackVaryingMaxLength = OpenTK.Graphics.OpenGL.Version30.TransformFeedbackVaryingMaxLength; - var _TransformFeedbackBufferMode = OpenTK.Graphics.OpenGL.Version30.TransformFeedbackBufferMode; - var _MaxTransformFeedbackSeparateComponents = OpenTK.Graphics.OpenGL.Version30.MaxTransformFeedbackSeparateComponents; - var _TransformFeedbackVaryings = OpenTK.Graphics.OpenGL.Version30.TransformFeedbackVaryings; - var _TransformFeedbackBufferStart = OpenTK.Graphics.OpenGL.Version30.TransformFeedbackBufferStart; - var _TransformFeedbackBufferSize = OpenTK.Graphics.OpenGL.Version30.TransformFeedbackBufferSize; - var _PrimitivesGenerated = OpenTK.Graphics.OpenGL.Version30.PrimitivesGenerated; - var _TransformFeedbackPrimitivesWritten = OpenTK.Graphics.OpenGL.Version30.TransformFeedbackPrimitivesWritten; - var _RasterizerDiscard = OpenTK.Graphics.OpenGL.Version30.RasterizerDiscard; - var _MaxTransformFeedbackInterleavedComponents = OpenTK.Graphics.OpenGL.Version30.MaxTransformFeedbackInterleavedComponents; - var _MaxTransformFeedbackSeparateAttribs = OpenTK.Graphics.OpenGL.Version30.MaxTransformFeedbackSeparateAttribs; - var _InterleavedAttribs = OpenTK.Graphics.OpenGL.Version30.InterleavedAttribs; - var _SeparateAttribs = OpenTK.Graphics.OpenGL.Version30.SeparateAttribs; - var _TransformFeedbackBuffer = OpenTK.Graphics.OpenGL.Version30.TransformFeedbackBuffer; - var _TransformFeedbackBufferBinding = OpenTK.Graphics.OpenGL.Version30.TransformFeedbackBufferBinding; - var _DrawFramebufferBinding = OpenTK.Graphics.OpenGL.Version30.DrawFramebufferBinding; - var _FramebufferBinding = OpenTK.Graphics.OpenGL.Version30.FramebufferBinding; - var _RenderbufferBinding = OpenTK.Graphics.OpenGL.Version30.RenderbufferBinding; - var _ReadFramebuffer = OpenTK.Graphics.OpenGL.Version30.ReadFramebuffer; - var _DrawFramebuffer = OpenTK.Graphics.OpenGL.Version30.DrawFramebuffer; - var _ReadFramebufferBinding = OpenTK.Graphics.OpenGL.Version30.ReadFramebufferBinding; - var _RenderbufferSamples = OpenTK.Graphics.OpenGL.Version30.RenderbufferSamples; - var _DepthComponent32f = OpenTK.Graphics.OpenGL.Version30.DepthComponent32f; - var _Depth32fStencil8 = OpenTK.Graphics.OpenGL.Version30.Depth32fStencil8; - var _FramebufferAttachmentObjectType = OpenTK.Graphics.OpenGL.Version30.FramebufferAttachmentObjectType; - var _FramebufferAttachmentObjectName = OpenTK.Graphics.OpenGL.Version30.FramebufferAttachmentObjectName; - var _FramebufferAttachmentTextureLevel = OpenTK.Graphics.OpenGL.Version30.FramebufferAttachmentTextureLevel; - var _FramebufferAttachmentTextureCubeMapFace = OpenTK.Graphics.OpenGL.Version30.FramebufferAttachmentTextureCubeMapFace; - var _FramebufferAttachmentTextureLayer = OpenTK.Graphics.OpenGL.Version30.FramebufferAttachmentTextureLayer; - var _FramebufferComplete = OpenTK.Graphics.OpenGL.Version30.FramebufferComplete; - var _FramebufferIncompleteAttachment = OpenTK.Graphics.OpenGL.Version30.FramebufferIncompleteAttachment; - var _FramebufferIncompleteMissingAttachment = OpenTK.Graphics.OpenGL.Version30.FramebufferIncompleteMissingAttachment; - var _FramebufferIncompleteDrawBuffer = OpenTK.Graphics.OpenGL.Version30.FramebufferIncompleteDrawBuffer; - var _FramebufferIncompleteReadBuffer = OpenTK.Graphics.OpenGL.Version30.FramebufferIncompleteReadBuffer; - var _FramebufferUnsupported = OpenTK.Graphics.OpenGL.Version30.FramebufferUnsupported; - var _MaxColorAttachments = OpenTK.Graphics.OpenGL.Version30.MaxColorAttachments; - var _ColorAttachment0 = OpenTK.Graphics.OpenGL.Version30.ColorAttachment0; - var _ColorAttachment1 = OpenTK.Graphics.OpenGL.Version30.ColorAttachment1; - var _ColorAttachment2 = OpenTK.Graphics.OpenGL.Version30.ColorAttachment2; - var _ColorAttachment3 = OpenTK.Graphics.OpenGL.Version30.ColorAttachment3; - var _ColorAttachment4 = OpenTK.Graphics.OpenGL.Version30.ColorAttachment4; - var _ColorAttachment5 = OpenTK.Graphics.OpenGL.Version30.ColorAttachment5; - var _ColorAttachment6 = OpenTK.Graphics.OpenGL.Version30.ColorAttachment6; - var _ColorAttachment7 = OpenTK.Graphics.OpenGL.Version30.ColorAttachment7; - var _ColorAttachment8 = OpenTK.Graphics.OpenGL.Version30.ColorAttachment8; - var _ColorAttachment9 = OpenTK.Graphics.OpenGL.Version30.ColorAttachment9; - var _ColorAttachment10 = OpenTK.Graphics.OpenGL.Version30.ColorAttachment10; - var _ColorAttachment11 = OpenTK.Graphics.OpenGL.Version30.ColorAttachment11; - var _ColorAttachment12 = OpenTK.Graphics.OpenGL.Version30.ColorAttachment12; - var _ColorAttachment13 = OpenTK.Graphics.OpenGL.Version30.ColorAttachment13; - var _ColorAttachment14 = OpenTK.Graphics.OpenGL.Version30.ColorAttachment14; - var _ColorAttachment15 = OpenTK.Graphics.OpenGL.Version30.ColorAttachment15; - var _DepthAttachment = OpenTK.Graphics.OpenGL.Version30.DepthAttachment; - var _StencilAttachment = OpenTK.Graphics.OpenGL.Version30.StencilAttachment; - var _Framebuffer = OpenTK.Graphics.OpenGL.Version30.Framebuffer; - var _Renderbuffer = OpenTK.Graphics.OpenGL.Version30.Renderbuffer; - var _RenderbufferWidth = OpenTK.Graphics.OpenGL.Version30.RenderbufferWidth; - var _RenderbufferHeight = OpenTK.Graphics.OpenGL.Version30.RenderbufferHeight; - var _RenderbufferInternalFormat = OpenTK.Graphics.OpenGL.Version30.RenderbufferInternalFormat; - var _StencilIndex1 = OpenTK.Graphics.OpenGL.Version30.StencilIndex1; - var _StencilIndex4 = OpenTK.Graphics.OpenGL.Version30.StencilIndex4; - var _StencilIndex8 = OpenTK.Graphics.OpenGL.Version30.StencilIndex8; - var _StencilIndex16 = OpenTK.Graphics.OpenGL.Version30.StencilIndex16; - var _RenderbufferRedSize = OpenTK.Graphics.OpenGL.Version30.RenderbufferRedSize; - var _RenderbufferGreenSize = OpenTK.Graphics.OpenGL.Version30.RenderbufferGreenSize; - var _RenderbufferBlueSize = OpenTK.Graphics.OpenGL.Version30.RenderbufferBlueSize; - var _RenderbufferAlphaSize = OpenTK.Graphics.OpenGL.Version30.RenderbufferAlphaSize; - var _RenderbufferDepthSize = OpenTK.Graphics.OpenGL.Version30.RenderbufferDepthSize; - var _RenderbufferStencilSize = OpenTK.Graphics.OpenGL.Version30.RenderbufferStencilSize; - var _FramebufferIncompleteMultisample = OpenTK.Graphics.OpenGL.Version30.FramebufferIncompleteMultisample; - var _MaxSamples = OpenTK.Graphics.OpenGL.Version30.MaxSamples; - var _Rgba32ui = OpenTK.Graphics.OpenGL.Version30.Rgba32ui; - var _Rgb32ui = OpenTK.Graphics.OpenGL.Version30.Rgb32ui; - var _Rgba16ui = OpenTK.Graphics.OpenGL.Version30.Rgba16ui; - var _Rgb16ui = OpenTK.Graphics.OpenGL.Version30.Rgb16ui; - var _Rgba8ui = OpenTK.Graphics.OpenGL.Version30.Rgba8ui; - var _Rgb8ui = OpenTK.Graphics.OpenGL.Version30.Rgb8ui; - var _Rgba32i = OpenTK.Graphics.OpenGL.Version30.Rgba32i; - var _Rgb32i = OpenTK.Graphics.OpenGL.Version30.Rgb32i; - var _Rgba16i = OpenTK.Graphics.OpenGL.Version30.Rgba16i; - var _Rgb16i = OpenTK.Graphics.OpenGL.Version30.Rgb16i; - var _Rgba8i = OpenTK.Graphics.OpenGL.Version30.Rgba8i; - var _Rgb8i = OpenTK.Graphics.OpenGL.Version30.Rgb8i; - var _RedInteger = OpenTK.Graphics.OpenGL.Version30.RedInteger; - var _GreenInteger = OpenTK.Graphics.OpenGL.Version30.GreenInteger; - var _BlueInteger = OpenTK.Graphics.OpenGL.Version30.BlueInteger; - var _AlphaInteger = OpenTK.Graphics.OpenGL.Version30.AlphaInteger; - var _RgbInteger = OpenTK.Graphics.OpenGL.Version30.RgbInteger; - var _RgbaInteger = OpenTK.Graphics.OpenGL.Version30.RgbaInteger; - var _BgrInteger = OpenTK.Graphics.OpenGL.Version30.BgrInteger; - var _BgraInteger = OpenTK.Graphics.OpenGL.Version30.BgraInteger; - var _Float32UnsignedInt248Rev = OpenTK.Graphics.OpenGL.Version30.Float32UnsignedInt248Rev; - var _FramebufferSrgb = OpenTK.Graphics.OpenGL.Version30.FramebufferSrgb; - var _CompressedRedRgtc1 = OpenTK.Graphics.OpenGL.Version30.CompressedRedRgtc1; - var _CompressedSignedRedRgtc1 = OpenTK.Graphics.OpenGL.Version30.CompressedSignedRedRgtc1; - var _CompressedRgRgtc2 = OpenTK.Graphics.OpenGL.Version30.CompressedRgRgtc2; - var _CompressedSignedRgRgtc2 = OpenTK.Graphics.OpenGL.Version30.CompressedSignedRgRgtc2; - var _Sampler1DArray = OpenTK.Graphics.OpenGL.Version30.Sampler1DArray; - var _Sampler2DArray = OpenTK.Graphics.OpenGL.Version30.Sampler2DArray; - var _Sampler1DArrayShadow = OpenTK.Graphics.OpenGL.Version30.Sampler1DArrayShadow; - var _Sampler2DArrayShadow = OpenTK.Graphics.OpenGL.Version30.Sampler2DArrayShadow; - var _SamplerCubeShadow = OpenTK.Graphics.OpenGL.Version30.SamplerCubeShadow; - var _UnsignedIntVec2 = OpenTK.Graphics.OpenGL.Version30.UnsignedIntVec2; - var _UnsignedIntVec3 = OpenTK.Graphics.OpenGL.Version30.UnsignedIntVec3; - var _UnsignedIntVec4 = OpenTK.Graphics.OpenGL.Version30.UnsignedIntVec4; - var _IntSampler1D = OpenTK.Graphics.OpenGL.Version30.IntSampler1D; - var _IntSampler2D = OpenTK.Graphics.OpenGL.Version30.IntSampler2D; - var _IntSampler3D = OpenTK.Graphics.OpenGL.Version30.IntSampler3D; - var _IntSamplerCube = OpenTK.Graphics.OpenGL.Version30.IntSamplerCube; - var _IntSampler1DArray = OpenTK.Graphics.OpenGL.Version30.IntSampler1DArray; - var _IntSampler2DArray = OpenTK.Graphics.OpenGL.Version30.IntSampler2DArray; - var _UnsignedIntSampler1D = OpenTK.Graphics.OpenGL.Version30.UnsignedIntSampler1D; - var _UnsignedIntSampler2D = OpenTK.Graphics.OpenGL.Version30.UnsignedIntSampler2D; - var _UnsignedIntSampler3D = OpenTK.Graphics.OpenGL.Version30.UnsignedIntSampler3D; - var _UnsignedIntSamplerCube = OpenTK.Graphics.OpenGL.Version30.UnsignedIntSamplerCube; - var _UnsignedIntSampler1DArray = OpenTK.Graphics.OpenGL.Version30.UnsignedIntSampler1DArray; - var _UnsignedIntSampler2DArray = OpenTK.Graphics.OpenGL.Version30.UnsignedIntSampler2DArray; - var _QueryWait = OpenTK.Graphics.OpenGL.Version30.QueryWait; - var _QueryNoWait = OpenTK.Graphics.OpenGL.Version30.QueryNoWait; - var _QueryByRegionWait = OpenTK.Graphics.OpenGL.Version30.QueryByRegionWait; - var _QueryByRegionNoWait = OpenTK.Graphics.OpenGL.Version30.QueryByRegionNoWait; - var _BufferAccessFlags = OpenTK.Graphics.OpenGL.Version30.BufferAccessFlags; - var _BufferMapLength = OpenTK.Graphics.OpenGL.Version30.BufferMapLength; - var _BufferMapOffset = OpenTK.Graphics.OpenGL.Version30.BufferMapOffset; -} -static void Test_Version31_20047() { - var _TextureRectangle = OpenTK.Graphics.OpenGL.Version31.TextureRectangle; - var _TextureBindingRectangle = OpenTK.Graphics.OpenGL.Version31.TextureBindingRectangle; - var _ProxyTextureRectangle = OpenTK.Graphics.OpenGL.Version31.ProxyTextureRectangle; - var _MaxRectangleTextureSize = OpenTK.Graphics.OpenGL.Version31.MaxRectangleTextureSize; - var _UniformBuffer = OpenTK.Graphics.OpenGL.Version31.UniformBuffer; - var _UniformBufferBinding = OpenTK.Graphics.OpenGL.Version31.UniformBufferBinding; - var _UniformBufferStart = OpenTK.Graphics.OpenGL.Version31.UniformBufferStart; - var _UniformBufferSize = OpenTK.Graphics.OpenGL.Version31.UniformBufferSize; - var _MaxVertexUniformBlocks = OpenTK.Graphics.OpenGL.Version31.MaxVertexUniformBlocks; - var _MaxGeometryUniformBlocks = OpenTK.Graphics.OpenGL.Version31.MaxGeometryUniformBlocks; - var _MaxFragmentUniformBlocks = OpenTK.Graphics.OpenGL.Version31.MaxFragmentUniformBlocks; - var _MaxCombinedUniformBlocks = OpenTK.Graphics.OpenGL.Version31.MaxCombinedUniformBlocks; - var _MaxUniformBufferBindings = OpenTK.Graphics.OpenGL.Version31.MaxUniformBufferBindings; - var _MaxUniformBlockSize = OpenTK.Graphics.OpenGL.Version31.MaxUniformBlockSize; - var _MaxCombinedVertexUniformComponents = OpenTK.Graphics.OpenGL.Version31.MaxCombinedVertexUniformComponents; - var _MaxCombinedGeometryUniformComponents = OpenTK.Graphics.OpenGL.Version31.MaxCombinedGeometryUniformComponents; - var _MaxCombinedFragmentUniformComponents = OpenTK.Graphics.OpenGL.Version31.MaxCombinedFragmentUniformComponents; - var _UniformBufferOffsetAlignment = OpenTK.Graphics.OpenGL.Version31.UniformBufferOffsetAlignment; - var _ActiveUniformBlockMaxNameLength = OpenTK.Graphics.OpenGL.Version31.ActiveUniformBlockMaxNameLength; - var _ActiveUniformBlocks = OpenTK.Graphics.OpenGL.Version31.ActiveUniformBlocks; - var _UniformType = OpenTK.Graphics.OpenGL.Version31.UniformType; - var _UniformSize = OpenTK.Graphics.OpenGL.Version31.UniformSize; - var _UniformNameLength = OpenTK.Graphics.OpenGL.Version31.UniformNameLength; - var _UniformBlockIndex = OpenTK.Graphics.OpenGL.Version31.UniformBlockIndex; - var _UniformOffset = OpenTK.Graphics.OpenGL.Version31.UniformOffset; - var _UniformArrayStride = OpenTK.Graphics.OpenGL.Version31.UniformArrayStride; - var _UniformMatrixStride = OpenTK.Graphics.OpenGL.Version31.UniformMatrixStride; - var _UniformIsRowMajor = OpenTK.Graphics.OpenGL.Version31.UniformIsRowMajor; - var _UniformBlockBinding = OpenTK.Graphics.OpenGL.Version31.UniformBlockBinding; - var _UniformBlockDataSize = OpenTK.Graphics.OpenGL.Version31.UniformBlockDataSize; - var _UniformBlockNameLength = OpenTK.Graphics.OpenGL.Version31.UniformBlockNameLength; - var _UniformBlockActiveUniforms = OpenTK.Graphics.OpenGL.Version31.UniformBlockActiveUniforms; - var _UniformBlockActiveUniformIndices = OpenTK.Graphics.OpenGL.Version31.UniformBlockActiveUniformIndices; - var _UniformBlockReferencedByVertexShader = OpenTK.Graphics.OpenGL.Version31.UniformBlockReferencedByVertexShader; - var _UniformBlockReferencedByGeometryShader = OpenTK.Graphics.OpenGL.Version31.UniformBlockReferencedByGeometryShader; - var _UniformBlockReferencedByFragmentShader = OpenTK.Graphics.OpenGL.Version31.UniformBlockReferencedByFragmentShader; - var _Sampler2DRect = OpenTK.Graphics.OpenGL.Version31.Sampler2DRect; - var _Sampler2DRectShadow = OpenTK.Graphics.OpenGL.Version31.Sampler2DRectShadow; - var _TextureBuffer = OpenTK.Graphics.OpenGL.Version31.TextureBuffer; - var _MaxTextureBufferSize = OpenTK.Graphics.OpenGL.Version31.MaxTextureBufferSize; - var _TextureBindingBuffer = OpenTK.Graphics.OpenGL.Version31.TextureBindingBuffer; - var _TextureBufferDataStoreBinding = OpenTK.Graphics.OpenGL.Version31.TextureBufferDataStoreBinding; - var _SamplerBuffer = OpenTK.Graphics.OpenGL.Version31.SamplerBuffer; - var _IntSampler2DRect = OpenTK.Graphics.OpenGL.Version31.IntSampler2DRect; - var _IntSamplerBuffer = OpenTK.Graphics.OpenGL.Version31.IntSamplerBuffer; - var _UnsignedIntSampler2DRect = OpenTK.Graphics.OpenGL.Version31.UnsignedIntSampler2DRect; - var _UnsignedIntSamplerBuffer = OpenTK.Graphics.OpenGL.Version31.UnsignedIntSamplerBuffer; - var _CopyReadBuffer = OpenTK.Graphics.OpenGL.Version31.CopyReadBuffer; - var _CopyWriteBuffer = OpenTK.Graphics.OpenGL.Version31.CopyWriteBuffer; - var _R8Snorm = OpenTK.Graphics.OpenGL.Version31.R8Snorm; - var _Rg8Snorm = OpenTK.Graphics.OpenGL.Version31.Rg8Snorm; - var _Rgb8Snorm = OpenTK.Graphics.OpenGL.Version31.Rgb8Snorm; - var _Rgba8Snorm = OpenTK.Graphics.OpenGL.Version31.Rgba8Snorm; - var _R16Snorm = OpenTK.Graphics.OpenGL.Version31.R16Snorm; - var _Rg16Snorm = OpenTK.Graphics.OpenGL.Version31.Rg16Snorm; - var _Rgb16Snorm = OpenTK.Graphics.OpenGL.Version31.Rgb16Snorm; - var _Rgba16Snorm = OpenTK.Graphics.OpenGL.Version31.Rgba16Snorm; - var _SignedNormalized = OpenTK.Graphics.OpenGL.Version31.SignedNormalized; - var _PrimitiveRestart = OpenTK.Graphics.OpenGL.Version31.PrimitiveRestart; - var _PrimitiveRestartIndex = OpenTK.Graphics.OpenGL.Version31.PrimitiveRestartIndex; - var _InvalidIndex = OpenTK.Graphics.OpenGL.Version31.InvalidIndex; -} -static void Test_Version32_20048() { - var _ContextCoreProfileBit = OpenTK.Graphics.OpenGL.Version32.ContextCoreProfileBit; - var _SyncFlushCommandsBit = OpenTK.Graphics.OpenGL.Version32.SyncFlushCommandsBit; - var _ContextCompatibilityProfileBit = OpenTK.Graphics.OpenGL.Version32.ContextCompatibilityProfileBit; - var _LinesAdjacency = OpenTK.Graphics.OpenGL.Version32.LinesAdjacency; - var _LineStripAdjacency = OpenTK.Graphics.OpenGL.Version32.LineStripAdjacency; - var _TrianglesAdjacency = OpenTK.Graphics.OpenGL.Version32.TrianglesAdjacency; - var _TriangleStripAdjacency = OpenTK.Graphics.OpenGL.Version32.TriangleStripAdjacency; - var _ProgramPointSize = OpenTK.Graphics.OpenGL.Version32.ProgramPointSize; - var _DepthClamp = OpenTK.Graphics.OpenGL.Version32.DepthClamp; - var _TextureCubeMapSeamless = OpenTK.Graphics.OpenGL.Version32.TextureCubeMapSeamless; - var _GeometryVerticesOut = OpenTK.Graphics.OpenGL.Version32.GeometryVerticesOut; - var _GeometryInputType = OpenTK.Graphics.OpenGL.Version32.GeometryInputType; - var _GeometryOutputType = OpenTK.Graphics.OpenGL.Version32.GeometryOutputType; - var _MaxGeometryTextureImageUnits = OpenTK.Graphics.OpenGL.Version32.MaxGeometryTextureImageUnits; - var _FramebufferAttachmentLayered = OpenTK.Graphics.OpenGL.Version32.FramebufferAttachmentLayered; - var _FramebufferIncompleteLayerTargets = OpenTK.Graphics.OpenGL.Version32.FramebufferIncompleteLayerTargets; - var _GeometryShader = OpenTK.Graphics.OpenGL.Version32.GeometryShader; - var _MaxGeometryUniformComponents = OpenTK.Graphics.OpenGL.Version32.MaxGeometryUniformComponents; - var _MaxGeometryOutputVertices = OpenTK.Graphics.OpenGL.Version32.MaxGeometryOutputVertices; - var _MaxGeometryTotalOutputComponents = OpenTK.Graphics.OpenGL.Version32.MaxGeometryTotalOutputComponents; - var _QuadsFollowProvokingVertexConvention = OpenTK.Graphics.OpenGL.Version32.QuadsFollowProvokingVertexConvention; - var _FirstVertexConvention = OpenTK.Graphics.OpenGL.Version32.FirstVertexConvention; - var _LastVertexConvention = OpenTK.Graphics.OpenGL.Version32.LastVertexConvention; - var _ProvokingVertex = OpenTK.Graphics.OpenGL.Version32.ProvokingVertex; - var _SamplePosition = OpenTK.Graphics.OpenGL.Version32.SamplePosition; - var _SampleMask = OpenTK.Graphics.OpenGL.Version32.SampleMask; - var _SampleMaskValue = OpenTK.Graphics.OpenGL.Version32.SampleMaskValue; - var _MaxSampleMaskWords = OpenTK.Graphics.OpenGL.Version32.MaxSampleMaskWords; - var _Texture2DMultisample = OpenTK.Graphics.OpenGL.Version32.Texture2DMultisample; - var _ProxyTexture2DMultisample = OpenTK.Graphics.OpenGL.Version32.ProxyTexture2DMultisample; - var _Texture2DMultisampleArray = OpenTK.Graphics.OpenGL.Version32.Texture2DMultisampleArray; - var _ProxyTexture2DMultisampleArray = OpenTK.Graphics.OpenGL.Version32.ProxyTexture2DMultisampleArray; - var _TextureBinding2DMultisample = OpenTK.Graphics.OpenGL.Version32.TextureBinding2DMultisample; - var _TextureBinding2DMultisampleArray = OpenTK.Graphics.OpenGL.Version32.TextureBinding2DMultisampleArray; - var _TextureSamples = OpenTK.Graphics.OpenGL.Version32.TextureSamples; - var _TextureFixedSampleLocations = OpenTK.Graphics.OpenGL.Version32.TextureFixedSampleLocations; - var _Sampler2DMultisample = OpenTK.Graphics.OpenGL.Version32.Sampler2DMultisample; - var _IntSampler2DMultisample = OpenTK.Graphics.OpenGL.Version32.IntSampler2DMultisample; - var _UnsignedIntSampler2DMultisample = OpenTK.Graphics.OpenGL.Version32.UnsignedIntSampler2DMultisample; - var _Sampler2DMultisampleArray = OpenTK.Graphics.OpenGL.Version32.Sampler2DMultisampleArray; - var _IntSampler2DMultisampleArray = OpenTK.Graphics.OpenGL.Version32.IntSampler2DMultisampleArray; - var _UnsignedIntSampler2DMultisampleArray = OpenTK.Graphics.OpenGL.Version32.UnsignedIntSampler2DMultisampleArray; - var _MaxColorTextureSamples = OpenTK.Graphics.OpenGL.Version32.MaxColorTextureSamples; - var _MaxDepthTextureSamples = OpenTK.Graphics.OpenGL.Version32.MaxDepthTextureSamples; - var _MaxIntegerSamples = OpenTK.Graphics.OpenGL.Version32.MaxIntegerSamples; - var _MaxServerWaitTimeout = OpenTK.Graphics.OpenGL.Version32.MaxServerWaitTimeout; - var _ObjectType = OpenTK.Graphics.OpenGL.Version32.ObjectType; - var _SyncCondition = OpenTK.Graphics.OpenGL.Version32.SyncCondition; - var _SyncStatus = OpenTK.Graphics.OpenGL.Version32.SyncStatus; - var _SyncFlags = OpenTK.Graphics.OpenGL.Version32.SyncFlags; - var _SyncFence = OpenTK.Graphics.OpenGL.Version32.SyncFence; - var _SyncGpuCommandsComplete = OpenTK.Graphics.OpenGL.Version32.SyncGpuCommandsComplete; - var _Unsignaled = OpenTK.Graphics.OpenGL.Version32.Unsignaled; - var _Signaled = OpenTK.Graphics.OpenGL.Version32.Signaled; - var _AlreadySignaled = OpenTK.Graphics.OpenGL.Version32.AlreadySignaled; - var _TimeoutExpired = OpenTK.Graphics.OpenGL.Version32.TimeoutExpired; - var _ConditionSatisfied = OpenTK.Graphics.OpenGL.Version32.ConditionSatisfied; - var _WaitFailed = OpenTK.Graphics.OpenGL.Version32.WaitFailed; - var _MaxVertexOutputComponents = OpenTK.Graphics.OpenGL.Version32.MaxVertexOutputComponents; - var _MaxGeometryInputComponents = OpenTK.Graphics.OpenGL.Version32.MaxGeometryInputComponents; - var _MaxGeometryOutputComponents = OpenTK.Graphics.OpenGL.Version32.MaxGeometryOutputComponents; - var _MaxFragmentInputComponents = OpenTK.Graphics.OpenGL.Version32.MaxFragmentInputComponents; - var _ContextProfileMask = OpenTK.Graphics.OpenGL.Version32.ContextProfileMask; - var _TimeoutIgnored = OpenTK.Graphics.OpenGL.Version32.TimeoutIgnored; -} -static void Test_Version33_20049() { - var _TimeElapsed = OpenTK.Graphics.OpenGL.Version33.TimeElapsed; - var _Src1Color = OpenTK.Graphics.OpenGL.Version33.Src1Color; - var _OneMinusSrc1Color = OpenTK.Graphics.OpenGL.Version33.OneMinusSrc1Color; - var _OneMinusSrc1Alpha = OpenTK.Graphics.OpenGL.Version33.OneMinusSrc1Alpha; - var _MaxDualSourceDrawBuffers = OpenTK.Graphics.OpenGL.Version33.MaxDualSourceDrawBuffers; - var _VertexAttribArrayDivisor = OpenTK.Graphics.OpenGL.Version33.VertexAttribArrayDivisor; - var _SamplerBinding = OpenTK.Graphics.OpenGL.Version33.SamplerBinding; - var _AnySamplesPassed = OpenTK.Graphics.OpenGL.Version33.AnySamplesPassed; - var _Int2101010Rev = OpenTK.Graphics.OpenGL.Version33.Int2101010Rev; - var _Timestamp = OpenTK.Graphics.OpenGL.Version33.Timestamp; - var _TextureSwizzleR = OpenTK.Graphics.OpenGL.Version33.TextureSwizzleR; - var _TextureSwizzleG = OpenTK.Graphics.OpenGL.Version33.TextureSwizzleG; - var _TextureSwizzleB = OpenTK.Graphics.OpenGL.Version33.TextureSwizzleB; - var _TextureSwizzleA = OpenTK.Graphics.OpenGL.Version33.TextureSwizzleA; - var _TextureSwizzleRgba = OpenTK.Graphics.OpenGL.Version33.TextureSwizzleRgba; - var _Rgb10A2ui = OpenTK.Graphics.OpenGL.Version33.Rgb10A2ui; -} -static void Test_Version40_20050() { - var _Quads = OpenTK.Graphics.OpenGL.Version40.Quads; - var _Patches = OpenTK.Graphics.OpenGL.Version40.Patches; - var _UniformBlockReferencedByTessControlShader = OpenTK.Graphics.OpenGL.Version40.UniformBlockReferencedByTessControlShader; - var _UniformBlockReferencedByTessEvaluationShader = OpenTK.Graphics.OpenGL.Version40.UniformBlockReferencedByTessEvaluationShader; - var _MaxTessControlInputComponents = OpenTK.Graphics.OpenGL.Version40.MaxTessControlInputComponents; - var _MaxTessEvaluationInputComponents = OpenTK.Graphics.OpenGL.Version40.MaxTessEvaluationInputComponents; - var _GeometryShaderInvocations = OpenTK.Graphics.OpenGL.Version40.GeometryShaderInvocations; - var _SampleShading = OpenTK.Graphics.OpenGL.Version40.SampleShading; - var _MinSampleShadingValue = OpenTK.Graphics.OpenGL.Version40.MinSampleShadingValue; - var _ActiveSubroutines = OpenTK.Graphics.OpenGL.Version40.ActiveSubroutines; - var _ActiveSubroutineUniforms = OpenTK.Graphics.OpenGL.Version40.ActiveSubroutineUniforms; - var _MaxSubroutines = OpenTK.Graphics.OpenGL.Version40.MaxSubroutines; - var _MaxSubroutineUniformLocations = OpenTK.Graphics.OpenGL.Version40.MaxSubroutineUniformLocations; - var _MaxCombinedTessControlUniformComponents = OpenTK.Graphics.OpenGL.Version40.MaxCombinedTessControlUniformComponents; - var _MaxCombinedTessEvaluationUniformComponents = OpenTK.Graphics.OpenGL.Version40.MaxCombinedTessEvaluationUniformComponents; - var _TransformFeedback = OpenTK.Graphics.OpenGL.Version40.TransformFeedback; - var _TransformFeedbackBufferPaused = OpenTK.Graphics.OpenGL.Version40.TransformFeedbackBufferPaused; - var _TransformFeedbackBufferActive = OpenTK.Graphics.OpenGL.Version40.TransformFeedbackBufferActive; - var _TransformFeedbackBinding = OpenTK.Graphics.OpenGL.Version40.TransformFeedbackBinding; - var _ActiveSubroutineUniformLocations = OpenTK.Graphics.OpenGL.Version40.ActiveSubroutineUniformLocations; - var _ActiveSubroutineMaxLength = OpenTK.Graphics.OpenGL.Version40.ActiveSubroutineMaxLength; - var _ActiveSubroutineUniformMaxLength = OpenTK.Graphics.OpenGL.Version40.ActiveSubroutineUniformMaxLength; - var _NumCompatibleSubroutines = OpenTK.Graphics.OpenGL.Version40.NumCompatibleSubroutines; - var _CompatibleSubroutines = OpenTK.Graphics.OpenGL.Version40.CompatibleSubroutines; - var _MaxGeometryShaderInvocations = OpenTK.Graphics.OpenGL.Version40.MaxGeometryShaderInvocations; - var _MinFragmentInterpolationOffset = OpenTK.Graphics.OpenGL.Version40.MinFragmentInterpolationOffset; - var _MaxFragmentInterpolationOffset = OpenTK.Graphics.OpenGL.Version40.MaxFragmentInterpolationOffset; - var _FragmentInterpolationOffsetBits = OpenTK.Graphics.OpenGL.Version40.FragmentInterpolationOffsetBits; - var _MinProgramTextureGatherOffset = OpenTK.Graphics.OpenGL.Version40.MinProgramTextureGatherOffset; - var _MaxProgramTextureGatherOffset = OpenTK.Graphics.OpenGL.Version40.MaxProgramTextureGatherOffset; - var _MaxTransformFeedbackBuffers = OpenTK.Graphics.OpenGL.Version40.MaxTransformFeedbackBuffers; - var _MaxVertexStreams = OpenTK.Graphics.OpenGL.Version40.MaxVertexStreams; - var _PatchVertices = OpenTK.Graphics.OpenGL.Version40.PatchVertices; - var _PatchDefaultInnerLevel = OpenTK.Graphics.OpenGL.Version40.PatchDefaultInnerLevel; - var _PatchDefaultOuterLevel = OpenTK.Graphics.OpenGL.Version40.PatchDefaultOuterLevel; - var _TessControlOutputVertices = OpenTK.Graphics.OpenGL.Version40.TessControlOutputVertices; - var _TessGenMode = OpenTK.Graphics.OpenGL.Version40.TessGenMode; - var _TessGenSpacing = OpenTK.Graphics.OpenGL.Version40.TessGenSpacing; - var _TessGenVertexOrder = OpenTK.Graphics.OpenGL.Version40.TessGenVertexOrder; - var _TessGenPointMode = OpenTK.Graphics.OpenGL.Version40.TessGenPointMode; - var _Isolines = OpenTK.Graphics.OpenGL.Version40.Isolines; - var _FractionalOdd = OpenTK.Graphics.OpenGL.Version40.FractionalOdd; - var _FractionalEven = OpenTK.Graphics.OpenGL.Version40.FractionalEven; - var _MaxPatchVertices = OpenTK.Graphics.OpenGL.Version40.MaxPatchVertices; - var _MaxTessGenLevel = OpenTK.Graphics.OpenGL.Version40.MaxTessGenLevel; - var _MaxTessControlUniformComponents = OpenTK.Graphics.OpenGL.Version40.MaxTessControlUniformComponents; - var _MaxTessEvaluationUniformComponents = OpenTK.Graphics.OpenGL.Version40.MaxTessEvaluationUniformComponents; - var _MaxTessControlTextureImageUnits = OpenTK.Graphics.OpenGL.Version40.MaxTessControlTextureImageUnits; - var _MaxTessEvaluationTextureImageUnits = OpenTK.Graphics.OpenGL.Version40.MaxTessEvaluationTextureImageUnits; - var _MaxTessControlOutputComponents = OpenTK.Graphics.OpenGL.Version40.MaxTessControlOutputComponents; - var _MaxTessPatchComponents = OpenTK.Graphics.OpenGL.Version40.MaxTessPatchComponents; - var _MaxTessControlTotalOutputComponents = OpenTK.Graphics.OpenGL.Version40.MaxTessControlTotalOutputComponents; - var _MaxTessEvaluationOutputComponents = OpenTK.Graphics.OpenGL.Version40.MaxTessEvaluationOutputComponents; - var _TessEvaluationShader = OpenTK.Graphics.OpenGL.Version40.TessEvaluationShader; - var _TessControlShader = OpenTK.Graphics.OpenGL.Version40.TessControlShader; - var _MaxTessControlUniformBlocks = OpenTK.Graphics.OpenGL.Version40.MaxTessControlUniformBlocks; - var _MaxTessEvaluationUniformBlocks = OpenTK.Graphics.OpenGL.Version40.MaxTessEvaluationUniformBlocks; - var _DrawIndirectBuffer = OpenTK.Graphics.OpenGL.Version40.DrawIndirectBuffer; - var _DrawIndirectBufferBinding = OpenTK.Graphics.OpenGL.Version40.DrawIndirectBufferBinding; - var _DoubleMat2 = OpenTK.Graphics.OpenGL.Version40.DoubleMat2; - var _DoubleMat3 = OpenTK.Graphics.OpenGL.Version40.DoubleMat3; - var _DoubleMat4 = OpenTK.Graphics.OpenGL.Version40.DoubleMat4; - var _DoubleMat2x3 = OpenTK.Graphics.OpenGL.Version40.DoubleMat2x3; - var _DoubleMat2x4 = OpenTK.Graphics.OpenGL.Version40.DoubleMat2x4; - var _DoubleMat3x2 = OpenTK.Graphics.OpenGL.Version40.DoubleMat3x2; - var _DoubleMat3x4 = OpenTK.Graphics.OpenGL.Version40.DoubleMat3x4; - var _DoubleMat4x2 = OpenTK.Graphics.OpenGL.Version40.DoubleMat4x2; - var _DoubleMat4x3 = OpenTK.Graphics.OpenGL.Version40.DoubleMat4x3; - var _DoubleVec2 = OpenTK.Graphics.OpenGL.Version40.DoubleVec2; - var _DoubleVec3 = OpenTK.Graphics.OpenGL.Version40.DoubleVec3; - var _DoubleVec4 = OpenTK.Graphics.OpenGL.Version40.DoubleVec4; - var _TextureCubeMapArray = OpenTK.Graphics.OpenGL.Version40.TextureCubeMapArray; - var _TextureBindingCubeMapArray = OpenTK.Graphics.OpenGL.Version40.TextureBindingCubeMapArray; - var _ProxyTextureCubeMapArray = OpenTK.Graphics.OpenGL.Version40.ProxyTextureCubeMapArray; - var _SamplerCubeMapArray = OpenTK.Graphics.OpenGL.Version40.SamplerCubeMapArray; - var _SamplerCubeMapArrayShadow = OpenTK.Graphics.OpenGL.Version40.SamplerCubeMapArrayShadow; - var _IntSamplerCubeMapArray = OpenTK.Graphics.OpenGL.Version40.IntSamplerCubeMapArray; - var _UnsignedIntSamplerCubeMapArray = OpenTK.Graphics.OpenGL.Version40.UnsignedIntSamplerCubeMapArray; -} -static void Test_Version41_20051() { - var _VertexShaderBit = OpenTK.Graphics.OpenGL.Version41.VertexShaderBit; - var _FragmentShaderBit = OpenTK.Graphics.OpenGL.Version41.FragmentShaderBit; - var _GeometryShaderBit = OpenTK.Graphics.OpenGL.Version41.GeometryShaderBit; - var _TessControlShaderBit = OpenTK.Graphics.OpenGL.Version41.TessControlShaderBit; - var _TessEvaluationShaderBit = OpenTK.Graphics.OpenGL.Version41.TessEvaluationShaderBit; - var _Fixed = OpenTK.Graphics.OpenGL.Version41.Fixed; - var _ProgramBinaryRetrievableHint = OpenTK.Graphics.OpenGL.Version41.ProgramBinaryRetrievableHint; - var _ProgramSeparable = OpenTK.Graphics.OpenGL.Version41.ProgramSeparable; - var _ActiveProgram = OpenTK.Graphics.OpenGL.Version41.ActiveProgram; - var _ProgramPipelineBinding = OpenTK.Graphics.OpenGL.Version41.ProgramPipelineBinding; - var _MaxViewports = OpenTK.Graphics.OpenGL.Version41.MaxViewports; - var _ViewportSubpixelBits = OpenTK.Graphics.OpenGL.Version41.ViewportSubpixelBits; - var _ViewportBoundsRange = OpenTK.Graphics.OpenGL.Version41.ViewportBoundsRange; - var _LayerProvokingVertex = OpenTK.Graphics.OpenGL.Version41.LayerProvokingVertex; - var _ViewportIndexProvokingVertex = OpenTK.Graphics.OpenGL.Version41.ViewportIndexProvokingVertex; - var _UndefinedVertex = OpenTK.Graphics.OpenGL.Version41.UndefinedVertex; - var _ProgramBinaryLength = OpenTK.Graphics.OpenGL.Version41.ProgramBinaryLength; - var _NumProgramBinaryFormats = OpenTK.Graphics.OpenGL.Version41.NumProgramBinaryFormats; - var _ProgramBinaryFormats = OpenTK.Graphics.OpenGL.Version41.ProgramBinaryFormats; - var _ImplementationColorReadType = OpenTK.Graphics.OpenGL.Version41.ImplementationColorReadType; - var _ImplementationColorReadFormat = OpenTK.Graphics.OpenGL.Version41.ImplementationColorReadFormat; - var _Rgb565 = OpenTK.Graphics.OpenGL.Version41.Rgb565; - var _LowFloat = OpenTK.Graphics.OpenGL.Version41.LowFloat; - var _MediumFloat = OpenTK.Graphics.OpenGL.Version41.MediumFloat; - var _HighFloat = OpenTK.Graphics.OpenGL.Version41.HighFloat; - var _LowInt = OpenTK.Graphics.OpenGL.Version41.LowInt; - var _MediumInt = OpenTK.Graphics.OpenGL.Version41.MediumInt; - var _HighInt = OpenTK.Graphics.OpenGL.Version41.HighInt; - var _ShaderBinaryFormats = OpenTK.Graphics.OpenGL.Version41.ShaderBinaryFormats; - var _NumShaderBinaryFormats = OpenTK.Graphics.OpenGL.Version41.NumShaderBinaryFormats; - var _ShaderCompiler = OpenTK.Graphics.OpenGL.Version41.ShaderCompiler; - var _MaxVertexUniformVectors = OpenTK.Graphics.OpenGL.Version41.MaxVertexUniformVectors; - var _MaxVaryingVectors = OpenTK.Graphics.OpenGL.Version41.MaxVaryingVectors; - var _MaxFragmentUniformVectors = OpenTK.Graphics.OpenGL.Version41.MaxFragmentUniformVectors; - var _AllShaderBits = OpenTK.Graphics.OpenGL.Version41.AllShaderBits; -} -static void Test_Version42_20052() { - var _VertexAttribArrayBarrierBit = OpenTK.Graphics.OpenGL.Version42.VertexAttribArrayBarrierBit; - var _ElementArrayBarrierBit = OpenTK.Graphics.OpenGL.Version42.ElementArrayBarrierBit; - var _UniformBarrierBit = OpenTK.Graphics.OpenGL.Version42.UniformBarrierBit; - var _TextureFetchBarrierBit = OpenTK.Graphics.OpenGL.Version42.TextureFetchBarrierBit; - var _ShaderImageAccessBarrierBit = OpenTK.Graphics.OpenGL.Version42.ShaderImageAccessBarrierBit; - var _CommandBarrierBit = OpenTK.Graphics.OpenGL.Version42.CommandBarrierBit; - var _PixelBufferBarrierBit = OpenTK.Graphics.OpenGL.Version42.PixelBufferBarrierBit; - var _TextureUpdateBarrierBit = OpenTK.Graphics.OpenGL.Version42.TextureUpdateBarrierBit; - var _BufferUpdateBarrierBit = OpenTK.Graphics.OpenGL.Version42.BufferUpdateBarrierBit; - var _FramebufferBarrierBit = OpenTK.Graphics.OpenGL.Version42.FramebufferBarrierBit; - var _TransformFeedbackBarrierBit = OpenTK.Graphics.OpenGL.Version42.TransformFeedbackBarrierBit; - var _AtomicCounterBarrierBit = OpenTK.Graphics.OpenGL.Version42.AtomicCounterBarrierBit; - var _CompressedRgbaBptcUnorm = OpenTK.Graphics.OpenGL.Version42.CompressedRgbaBptcUnorm; - var _CompressedSrgbAlphaBptcUnorm = OpenTK.Graphics.OpenGL.Version42.CompressedSrgbAlphaBptcUnorm; - var _CompressedRgbBptcSignedFloat = OpenTK.Graphics.OpenGL.Version42.CompressedRgbBptcSignedFloat; - var _CompressedRgbBptcUnsignedFloat = OpenTK.Graphics.OpenGL.Version42.CompressedRgbBptcUnsignedFloat; - var _MaxImageUnits = OpenTK.Graphics.OpenGL.Version42.MaxImageUnits; - var _MaxCombinedImageUnitsAndFragmentOutputs = OpenTK.Graphics.OpenGL.Version42.MaxCombinedImageUnitsAndFragmentOutputs; - var _ImageBindingName = OpenTK.Graphics.OpenGL.Version42.ImageBindingName; - var _ImageBindingLevel = OpenTK.Graphics.OpenGL.Version42.ImageBindingLevel; - var _ImageBindingLayered = OpenTK.Graphics.OpenGL.Version42.ImageBindingLayered; - var _ImageBindingLayer = OpenTK.Graphics.OpenGL.Version42.ImageBindingLayer; - var _ImageBindingAccess = OpenTK.Graphics.OpenGL.Version42.ImageBindingAccess; - var _Image1D = OpenTK.Graphics.OpenGL.Version42.Image1D; - var _Image2D = OpenTK.Graphics.OpenGL.Version42.Image2D; - var _Image3D = OpenTK.Graphics.OpenGL.Version42.Image3D; - var _Image2DRect = OpenTK.Graphics.OpenGL.Version42.Image2DRect; - var _ImageCube = OpenTK.Graphics.OpenGL.Version42.ImageCube; - var _ImageBuffer = OpenTK.Graphics.OpenGL.Version42.ImageBuffer; - var _Image1DArray = OpenTK.Graphics.OpenGL.Version42.Image1DArray; - var _Image2DArray = OpenTK.Graphics.OpenGL.Version42.Image2DArray; - var _ImageCubeMapArray = OpenTK.Graphics.OpenGL.Version42.ImageCubeMapArray; - var _Image2DMultisample = OpenTK.Graphics.OpenGL.Version42.Image2DMultisample; - var _Image2DMultisampleArray = OpenTK.Graphics.OpenGL.Version42.Image2DMultisampleArray; - var _IntImage1D = OpenTK.Graphics.OpenGL.Version42.IntImage1D; - var _IntImage2D = OpenTK.Graphics.OpenGL.Version42.IntImage2D; - var _IntImage3D = OpenTK.Graphics.OpenGL.Version42.IntImage3D; - var _IntImage2DRect = OpenTK.Graphics.OpenGL.Version42.IntImage2DRect; - var _IntImageCube = OpenTK.Graphics.OpenGL.Version42.IntImageCube; - var _IntImageBuffer = OpenTK.Graphics.OpenGL.Version42.IntImageBuffer; - var _IntImage1DArray = OpenTK.Graphics.OpenGL.Version42.IntImage1DArray; - var _IntImage2DArray = OpenTK.Graphics.OpenGL.Version42.IntImage2DArray; - var _IntImageCubeMapArray = OpenTK.Graphics.OpenGL.Version42.IntImageCubeMapArray; - var _IntImage2DMultisample = OpenTK.Graphics.OpenGL.Version42.IntImage2DMultisample; - var _IntImage2DMultisampleArray = OpenTK.Graphics.OpenGL.Version42.IntImage2DMultisampleArray; - var _UnsignedIntImage1D = OpenTK.Graphics.OpenGL.Version42.UnsignedIntImage1D; - var _UnsignedIntImage2D = OpenTK.Graphics.OpenGL.Version42.UnsignedIntImage2D; - var _UnsignedIntImage3D = OpenTK.Graphics.OpenGL.Version42.UnsignedIntImage3D; - var _UnsignedIntImage2DRect = OpenTK.Graphics.OpenGL.Version42.UnsignedIntImage2DRect; - var _UnsignedIntImageCube = OpenTK.Graphics.OpenGL.Version42.UnsignedIntImageCube; - var _UnsignedIntImageBuffer = OpenTK.Graphics.OpenGL.Version42.UnsignedIntImageBuffer; - var _UnsignedIntImage1DArray = OpenTK.Graphics.OpenGL.Version42.UnsignedIntImage1DArray; - var _UnsignedIntImage2DArray = OpenTK.Graphics.OpenGL.Version42.UnsignedIntImage2DArray; - var _UnsignedIntImageCubeMapArray = OpenTK.Graphics.OpenGL.Version42.UnsignedIntImageCubeMapArray; - var _UnsignedIntImage2DMultisample = OpenTK.Graphics.OpenGL.Version42.UnsignedIntImage2DMultisample; - var _UnsignedIntImage2DMultisampleArray = OpenTK.Graphics.OpenGL.Version42.UnsignedIntImage2DMultisampleArray; - var _MaxImageSamples = OpenTK.Graphics.OpenGL.Version42.MaxImageSamples; - var _ImageBindingFormat = OpenTK.Graphics.OpenGL.Version42.ImageBindingFormat; - var _MinMapBufferAlignment = OpenTK.Graphics.OpenGL.Version42.MinMapBufferAlignment; - var _ImageFormatCompatibilityType = OpenTK.Graphics.OpenGL.Version42.ImageFormatCompatibilityType; - var _ImageFormatCompatibilityBySize = OpenTK.Graphics.OpenGL.Version42.ImageFormatCompatibilityBySize; - var _ImageFormatCompatibilityByClass = OpenTK.Graphics.OpenGL.Version42.ImageFormatCompatibilityByClass; - var _MaxVertexImageUniforms = OpenTK.Graphics.OpenGL.Version42.MaxVertexImageUniforms; - var _MaxTessControlImageUniforms = OpenTK.Graphics.OpenGL.Version42.MaxTessControlImageUniforms; - var _MaxTessEvaluationImageUniforms = OpenTK.Graphics.OpenGL.Version42.MaxTessEvaluationImageUniforms; - var _MaxGeometryImageUniforms = OpenTK.Graphics.OpenGL.Version42.MaxGeometryImageUniforms; - var _MaxFragmentImageUniforms = OpenTK.Graphics.OpenGL.Version42.MaxFragmentImageUniforms; - var _MaxCombinedImageUniforms = OpenTK.Graphics.OpenGL.Version42.MaxCombinedImageUniforms; - var _UnpackCompressedBlockWidth = OpenTK.Graphics.OpenGL.Version42.UnpackCompressedBlockWidth; - var _UnpackCompressedBlockHeight = OpenTK.Graphics.OpenGL.Version42.UnpackCompressedBlockHeight; - var _UnpackCompressedBlockDepth = OpenTK.Graphics.OpenGL.Version42.UnpackCompressedBlockDepth; - var _UnpackCompressedBlockSize = OpenTK.Graphics.OpenGL.Version42.UnpackCompressedBlockSize; - var _PackCompressedBlockWidth = OpenTK.Graphics.OpenGL.Version42.PackCompressedBlockWidth; - var _PackCompressedBlockHeight = OpenTK.Graphics.OpenGL.Version42.PackCompressedBlockHeight; - var _PackCompressedBlockDepth = OpenTK.Graphics.OpenGL.Version42.PackCompressedBlockDepth; - var _PackCompressedBlockSize = OpenTK.Graphics.OpenGL.Version42.PackCompressedBlockSize; - var _TextureImmutableFormat = OpenTK.Graphics.OpenGL.Version42.TextureImmutableFormat; - var _AtomicCounterBuffer = OpenTK.Graphics.OpenGL.Version42.AtomicCounterBuffer; - var _AtomicCounterBufferBinding = OpenTK.Graphics.OpenGL.Version42.AtomicCounterBufferBinding; - var _AtomicCounterBufferStart = OpenTK.Graphics.OpenGL.Version42.AtomicCounterBufferStart; - var _AtomicCounterBufferSize = OpenTK.Graphics.OpenGL.Version42.AtomicCounterBufferSize; - var _AtomicCounterBufferDataSize = OpenTK.Graphics.OpenGL.Version42.AtomicCounterBufferDataSize; - var _AtomicCounterBufferActiveAtomicCounters = OpenTK.Graphics.OpenGL.Version42.AtomicCounterBufferActiveAtomicCounters; - var _AtomicCounterBufferActiveAtomicCounterIndices = OpenTK.Graphics.OpenGL.Version42.AtomicCounterBufferActiveAtomicCounterIndices; - var _AtomicCounterBufferReferencedByVertexShader = OpenTK.Graphics.OpenGL.Version42.AtomicCounterBufferReferencedByVertexShader; - var _AtomicCounterBufferReferencedByTessControlShader = OpenTK.Graphics.OpenGL.Version42.AtomicCounterBufferReferencedByTessControlShader; - var _AtomicCounterBufferReferencedByTessEvaluationShader = OpenTK.Graphics.OpenGL.Version42.AtomicCounterBufferReferencedByTessEvaluationShader; - var _AtomicCounterBufferReferencedByGeometryShader = OpenTK.Graphics.OpenGL.Version42.AtomicCounterBufferReferencedByGeometryShader; - var _AtomicCounterBufferReferencedByFragmentShader = OpenTK.Graphics.OpenGL.Version42.AtomicCounterBufferReferencedByFragmentShader; - var _MaxVertexAtomicCounterBuffers = OpenTK.Graphics.OpenGL.Version42.MaxVertexAtomicCounterBuffers; - var _MaxTessControlAtomicCounterBuffers = OpenTK.Graphics.OpenGL.Version42.MaxTessControlAtomicCounterBuffers; - var _MaxTessEvaluationAtomicCounterBuffers = OpenTK.Graphics.OpenGL.Version42.MaxTessEvaluationAtomicCounterBuffers; - var _MaxGeometryAtomicCounterBuffers = OpenTK.Graphics.OpenGL.Version42.MaxGeometryAtomicCounterBuffers; - var _MaxFragmentAtomicCounterBuffers = OpenTK.Graphics.OpenGL.Version42.MaxFragmentAtomicCounterBuffers; - var _MaxCombinedAtomicCounterBuffers = OpenTK.Graphics.OpenGL.Version42.MaxCombinedAtomicCounterBuffers; - var _MaxVertexAtomicCounters = OpenTK.Graphics.OpenGL.Version42.MaxVertexAtomicCounters; - var _MaxTessControlAtomicCounters = OpenTK.Graphics.OpenGL.Version42.MaxTessControlAtomicCounters; - var _MaxTessEvaluationAtomicCounters = OpenTK.Graphics.OpenGL.Version42.MaxTessEvaluationAtomicCounters; - var _MaxGeometryAtomicCounters = OpenTK.Graphics.OpenGL.Version42.MaxGeometryAtomicCounters; - var _MaxFragmentAtomicCounters = OpenTK.Graphics.OpenGL.Version42.MaxFragmentAtomicCounters; - var _MaxCombinedAtomicCounters = OpenTK.Graphics.OpenGL.Version42.MaxCombinedAtomicCounters; - var _MaxAtomicCounterBufferSize = OpenTK.Graphics.OpenGL.Version42.MaxAtomicCounterBufferSize; - var _ActiveAtomicCounterBuffers = OpenTK.Graphics.OpenGL.Version42.ActiveAtomicCounterBuffers; - var _UniformAtomicCounterBufferIndex = OpenTK.Graphics.OpenGL.Version42.UniformAtomicCounterBufferIndex; - var _UnsignedIntAtomicCounter = OpenTK.Graphics.OpenGL.Version42.UnsignedIntAtomicCounter; - var _MaxAtomicCounterBufferBindings = OpenTK.Graphics.OpenGL.Version42.MaxAtomicCounterBufferBindings; - var _NumSampleCounts = OpenTK.Graphics.OpenGL.Version42.NumSampleCounts; - var _AllBarrierBits = OpenTK.Graphics.OpenGL.Version42.AllBarrierBits; -} -static void Test_Version43_20053() { - var _ContextFlagDebugBit = OpenTK.Graphics.OpenGL.Version43.ContextFlagDebugBit; - var _ComputeShaderBit = OpenTK.Graphics.OpenGL.Version43.ComputeShaderBit; - var _ShaderStorageBarrierBit = OpenTK.Graphics.OpenGL.Version43.ShaderStorageBarrierBit; - var _StackOverflow = OpenTK.Graphics.OpenGL.Version43.StackOverflow; - var _StackUnderflow = OpenTK.Graphics.OpenGL.Version43.StackUnderflow; - var _VertexArray = OpenTK.Graphics.OpenGL.Version43.VertexArray; - var _DebugOutputSynchronous = OpenTK.Graphics.OpenGL.Version43.DebugOutputSynchronous; - var _DebugNextLoggedMessageLength = OpenTK.Graphics.OpenGL.Version43.DebugNextLoggedMessageLength; - var _DebugCallbackFunction = OpenTK.Graphics.OpenGL.Version43.DebugCallbackFunction; - var _DebugCallbackUserParam = OpenTK.Graphics.OpenGL.Version43.DebugCallbackUserParam; - var _DebugSourceApi = OpenTK.Graphics.OpenGL.Version43.DebugSourceApi; - var _DebugSourceWindowSystem = OpenTK.Graphics.OpenGL.Version43.DebugSourceWindowSystem; - var _DebugSourceShaderCompiler = OpenTK.Graphics.OpenGL.Version43.DebugSourceShaderCompiler; - var _DebugSourceThirdParty = OpenTK.Graphics.OpenGL.Version43.DebugSourceThirdParty; - var _DebugSourceApplication = OpenTK.Graphics.OpenGL.Version43.DebugSourceApplication; - var _DebugSourceOther = OpenTK.Graphics.OpenGL.Version43.DebugSourceOther; - var _DebugTypeError = OpenTK.Graphics.OpenGL.Version43.DebugTypeError; - var _DebugTypeDeprecatedBehavior = OpenTK.Graphics.OpenGL.Version43.DebugTypeDeprecatedBehavior; - var _DebugTypeUndefinedBehavior = OpenTK.Graphics.OpenGL.Version43.DebugTypeUndefinedBehavior; - var _DebugTypePortability = OpenTK.Graphics.OpenGL.Version43.DebugTypePortability; - var _DebugTypePerformance = OpenTK.Graphics.OpenGL.Version43.DebugTypePerformance; - var _DebugTypeOther = OpenTK.Graphics.OpenGL.Version43.DebugTypeOther; - var _MaxComputeSharedMemorySize = OpenTK.Graphics.OpenGL.Version43.MaxComputeSharedMemorySize; - var _MaxComputeUniformComponents = OpenTK.Graphics.OpenGL.Version43.MaxComputeUniformComponents; - var _MaxComputeAtomicCounterBuffers = OpenTK.Graphics.OpenGL.Version43.MaxComputeAtomicCounterBuffers; - var _MaxComputeAtomicCounters = OpenTK.Graphics.OpenGL.Version43.MaxComputeAtomicCounters; - var _MaxCombinedComputeUniformComponents = OpenTK.Graphics.OpenGL.Version43.MaxCombinedComputeUniformComponents; - var _ComputeWorkGroupSize = OpenTK.Graphics.OpenGL.Version43.ComputeWorkGroupSize; - var _DebugTypeMarker = OpenTK.Graphics.OpenGL.Version43.DebugTypeMarker; - var _DebugTypePushGroup = OpenTK.Graphics.OpenGL.Version43.DebugTypePushGroup; - var _DebugTypePopGroup = OpenTK.Graphics.OpenGL.Version43.DebugTypePopGroup; - var _DebugSeverityNotification = OpenTK.Graphics.OpenGL.Version43.DebugSeverityNotification; - var _MaxDebugGroupStackDepth = OpenTK.Graphics.OpenGL.Version43.MaxDebugGroupStackDepth; - var _DebugGroupStackDepth = OpenTK.Graphics.OpenGL.Version43.DebugGroupStackDepth; - var _MaxUniformLocations = OpenTK.Graphics.OpenGL.Version43.MaxUniformLocations; - var _InternalformatSupported = OpenTK.Graphics.OpenGL.Version43.InternalformatSupported; - var _InternalformatPreferred = OpenTK.Graphics.OpenGL.Version43.InternalformatPreferred; - var _InternalformatRedSize = OpenTK.Graphics.OpenGL.Version43.InternalformatRedSize; - var _InternalformatGreenSize = OpenTK.Graphics.OpenGL.Version43.InternalformatGreenSize; - var _InternalformatBlueSize = OpenTK.Graphics.OpenGL.Version43.InternalformatBlueSize; - var _InternalformatAlphaSize = OpenTK.Graphics.OpenGL.Version43.InternalformatAlphaSize; - var _InternalformatDepthSize = OpenTK.Graphics.OpenGL.Version43.InternalformatDepthSize; - var _InternalformatStencilSize = OpenTK.Graphics.OpenGL.Version43.InternalformatStencilSize; - var _InternalformatSharedSize = OpenTK.Graphics.OpenGL.Version43.InternalformatSharedSize; - var _InternalformatRedType = OpenTK.Graphics.OpenGL.Version43.InternalformatRedType; - var _InternalformatGreenType = OpenTK.Graphics.OpenGL.Version43.InternalformatGreenType; - var _InternalformatBlueType = OpenTK.Graphics.OpenGL.Version43.InternalformatBlueType; - var _InternalformatAlphaType = OpenTK.Graphics.OpenGL.Version43.InternalformatAlphaType; - var _InternalformatDepthType = OpenTK.Graphics.OpenGL.Version43.InternalformatDepthType; - var _InternalformatStencilType = OpenTK.Graphics.OpenGL.Version43.InternalformatStencilType; - var _MaxWidth = OpenTK.Graphics.OpenGL.Version43.MaxWidth; - var _MaxHeight = OpenTK.Graphics.OpenGL.Version43.MaxHeight; - var _MaxDepth = OpenTK.Graphics.OpenGL.Version43.MaxDepth; - var _MaxLayers = OpenTK.Graphics.OpenGL.Version43.MaxLayers; - var _MaxCombinedDimensions = OpenTK.Graphics.OpenGL.Version43.MaxCombinedDimensions; - var _ColorComponents = OpenTK.Graphics.OpenGL.Version43.ColorComponents; - var _DepthComponents = OpenTK.Graphics.OpenGL.Version43.DepthComponents; - var _StencilComponents = OpenTK.Graphics.OpenGL.Version43.StencilComponents; - var _ColorRenderable = OpenTK.Graphics.OpenGL.Version43.ColorRenderable; - var _DepthRenderable = OpenTK.Graphics.OpenGL.Version43.DepthRenderable; - var _StencilRenderable = OpenTK.Graphics.OpenGL.Version43.StencilRenderable; - var _FramebufferRenderable = OpenTK.Graphics.OpenGL.Version43.FramebufferRenderable; - var _FramebufferRenderableLayered = OpenTK.Graphics.OpenGL.Version43.FramebufferRenderableLayered; - var _FramebufferBlend = OpenTK.Graphics.OpenGL.Version43.FramebufferBlend; - var _ReadPixels = OpenTK.Graphics.OpenGL.Version43.ReadPixels; - var _ReadPixelsFormat = OpenTK.Graphics.OpenGL.Version43.ReadPixelsFormat; - var _ReadPixelsType = OpenTK.Graphics.OpenGL.Version43.ReadPixelsType; - var _TextureImageFormat = OpenTK.Graphics.OpenGL.Version43.TextureImageFormat; - var _TextureImageType = OpenTK.Graphics.OpenGL.Version43.TextureImageType; - var _GetTextureImageFormat = OpenTK.Graphics.OpenGL.Version43.GetTextureImageFormat; - var _GetTextureImageType = OpenTK.Graphics.OpenGL.Version43.GetTextureImageType; - var _Mipmap = OpenTK.Graphics.OpenGL.Version43.Mipmap; - var _ManualGenerateMipmap = OpenTK.Graphics.OpenGL.Version43.ManualGenerateMipmap; - var _AutoGenerateMipmap = OpenTK.Graphics.OpenGL.Version43.AutoGenerateMipmap; - var _ColorEncoding = OpenTK.Graphics.OpenGL.Version43.ColorEncoding; - var _SrgbRead = OpenTK.Graphics.OpenGL.Version43.SrgbRead; - var _SrgbWrite = OpenTK.Graphics.OpenGL.Version43.SrgbWrite; - var _Filter = OpenTK.Graphics.OpenGL.Version43.Filter; - var _VertexTexture = OpenTK.Graphics.OpenGL.Version43.VertexTexture; - var _TessControlTexture = OpenTK.Graphics.OpenGL.Version43.TessControlTexture; - var _TessEvaluationTexture = OpenTK.Graphics.OpenGL.Version43.TessEvaluationTexture; - var _GeometryTexture = OpenTK.Graphics.OpenGL.Version43.GeometryTexture; - var _FragmentTexture = OpenTK.Graphics.OpenGL.Version43.FragmentTexture; - var _ComputeTexture = OpenTK.Graphics.OpenGL.Version43.ComputeTexture; - var _TextureShadow = OpenTK.Graphics.OpenGL.Version43.TextureShadow; - var _TextureGather = OpenTK.Graphics.OpenGL.Version43.TextureGather; - var _TextureGatherShadow = OpenTK.Graphics.OpenGL.Version43.TextureGatherShadow; - var _ShaderImageLoad = OpenTK.Graphics.OpenGL.Version43.ShaderImageLoad; - var _ShaderImageStore = OpenTK.Graphics.OpenGL.Version43.ShaderImageStore; - var _ShaderImageAtomic = OpenTK.Graphics.OpenGL.Version43.ShaderImageAtomic; - var _ImageTexelSize = OpenTK.Graphics.OpenGL.Version43.ImageTexelSize; - var _ImageCompatibilityClass = OpenTK.Graphics.OpenGL.Version43.ImageCompatibilityClass; - var _ImagePixelFormat = OpenTK.Graphics.OpenGL.Version43.ImagePixelFormat; - var _ImagePixelType = OpenTK.Graphics.OpenGL.Version43.ImagePixelType; - var _SimultaneousTextureAndDepthTest = OpenTK.Graphics.OpenGL.Version43.SimultaneousTextureAndDepthTest; - var _SimultaneousTextureAndStencilTest = OpenTK.Graphics.OpenGL.Version43.SimultaneousTextureAndStencilTest; - var _SimultaneousTextureAndDepthWrite = OpenTK.Graphics.OpenGL.Version43.SimultaneousTextureAndDepthWrite; - var _SimultaneousTextureAndStencilWrite = OpenTK.Graphics.OpenGL.Version43.SimultaneousTextureAndStencilWrite; - var _TextureCompressedBlockWidth = OpenTK.Graphics.OpenGL.Version43.TextureCompressedBlockWidth; - var _TextureCompressedBlockHeight = OpenTK.Graphics.OpenGL.Version43.TextureCompressedBlockHeight; - var _TextureCompressedBlockSize = OpenTK.Graphics.OpenGL.Version43.TextureCompressedBlockSize; - var _ClearBuffer = OpenTK.Graphics.OpenGL.Version43.ClearBuffer; - var _TextureView = OpenTK.Graphics.OpenGL.Version43.TextureView; - var _ViewCompatibilityClass = OpenTK.Graphics.OpenGL.Version43.ViewCompatibilityClass; - var _FullSupport = OpenTK.Graphics.OpenGL.Version43.FullSupport; - var _CaveatSupport = OpenTK.Graphics.OpenGL.Version43.CaveatSupport; - var _ImageClass4X32 = OpenTK.Graphics.OpenGL.Version43.ImageClass4X32; - var _ImageClass2X32 = OpenTK.Graphics.OpenGL.Version43.ImageClass2X32; - var _ImageClass1X32 = OpenTK.Graphics.OpenGL.Version43.ImageClass1X32; - var _ImageClass4X16 = OpenTK.Graphics.OpenGL.Version43.ImageClass4X16; - var _ImageClass2X16 = OpenTK.Graphics.OpenGL.Version43.ImageClass2X16; - var _ImageClass1X16 = OpenTK.Graphics.OpenGL.Version43.ImageClass1X16; - var _ImageClass4X8 = OpenTK.Graphics.OpenGL.Version43.ImageClass4X8; - var _ImageClass2X8 = OpenTK.Graphics.OpenGL.Version43.ImageClass2X8; - var _ImageClass1X8 = OpenTK.Graphics.OpenGL.Version43.ImageClass1X8; - var _ImageClass111110 = OpenTK.Graphics.OpenGL.Version43.ImageClass111110; - var _ImageClass1010102 = OpenTK.Graphics.OpenGL.Version43.ImageClass1010102; - var _ViewClass128Bits = OpenTK.Graphics.OpenGL.Version43.ViewClass128Bits; - var _ViewClass96Bits = OpenTK.Graphics.OpenGL.Version43.ViewClass96Bits; - var _ViewClass64Bits = OpenTK.Graphics.OpenGL.Version43.ViewClass64Bits; - var _ViewClass48Bits = OpenTK.Graphics.OpenGL.Version43.ViewClass48Bits; - var _ViewClass32Bits = OpenTK.Graphics.OpenGL.Version43.ViewClass32Bits; - var _ViewClass24Bits = OpenTK.Graphics.OpenGL.Version43.ViewClass24Bits; - var _ViewClass16Bits = OpenTK.Graphics.OpenGL.Version43.ViewClass16Bits; - var _ViewClass8Bits = OpenTK.Graphics.OpenGL.Version43.ViewClass8Bits; - var _ViewClassS3tcDxt1Rgb = OpenTK.Graphics.OpenGL.Version43.ViewClassS3tcDxt1Rgb; - var _ViewClassS3tcDxt1Rgba = OpenTK.Graphics.OpenGL.Version43.ViewClassS3tcDxt1Rgba; - var _ViewClassS3tcDxt3Rgba = OpenTK.Graphics.OpenGL.Version43.ViewClassS3tcDxt3Rgba; - var _ViewClassS3tcDxt5Rgba = OpenTK.Graphics.OpenGL.Version43.ViewClassS3tcDxt5Rgba; - var _ViewClassRgtc1Red = OpenTK.Graphics.OpenGL.Version43.ViewClassRgtc1Red; - var _ViewClassRgtc2Rg = OpenTK.Graphics.OpenGL.Version43.ViewClassRgtc2Rg; - var _ViewClassBptcUnorm = OpenTK.Graphics.OpenGL.Version43.ViewClassBptcUnorm; - var _ViewClassBptcFloat = OpenTK.Graphics.OpenGL.Version43.ViewClassBptcFloat; - var _VertexAttribBinding = OpenTK.Graphics.OpenGL.Version43.VertexAttribBinding; - var _VertexAttribRelativeOffset = OpenTK.Graphics.OpenGL.Version43.VertexAttribRelativeOffset; - var _VertexBindingDivisor = OpenTK.Graphics.OpenGL.Version43.VertexBindingDivisor; - var _VertexBindingOffset = OpenTK.Graphics.OpenGL.Version43.VertexBindingOffset; - var _VertexBindingStride = OpenTK.Graphics.OpenGL.Version43.VertexBindingStride; - var _MaxVertexAttribRelativeOffset = OpenTK.Graphics.OpenGL.Version43.MaxVertexAttribRelativeOffset; - var _MaxVertexAttribBindings = OpenTK.Graphics.OpenGL.Version43.MaxVertexAttribBindings; - var _TextureViewMinLevel = OpenTK.Graphics.OpenGL.Version43.TextureViewMinLevel; - var _TextureViewNumLevels = OpenTK.Graphics.OpenGL.Version43.TextureViewNumLevels; - var _TextureViewMinLayer = OpenTK.Graphics.OpenGL.Version43.TextureViewMinLayer; - var _TextureViewNumLayers = OpenTK.Graphics.OpenGL.Version43.TextureViewNumLayers; - var _TextureImmutableLevels = OpenTK.Graphics.OpenGL.Version43.TextureImmutableLevels; - var _Buffer = OpenTK.Graphics.OpenGL.Version43.Buffer; - var _Shader = OpenTK.Graphics.OpenGL.Version43.Shader; - var _Program = OpenTK.Graphics.OpenGL.Version43.Program; - var _Query = OpenTK.Graphics.OpenGL.Version43.Query; - var _ProgramPipeline = OpenTK.Graphics.OpenGL.Version43.ProgramPipeline; - var _Sampler = OpenTK.Graphics.OpenGL.Version43.Sampler; - var _DisplayList = OpenTK.Graphics.OpenGL.Version43.DisplayList; - var _MaxLabelLength = OpenTK.Graphics.OpenGL.Version43.MaxLabelLength; - var _NumShadingLanguageVersions = OpenTK.Graphics.OpenGL.Version43.NumShadingLanguageVersions; - var _VertexAttribArrayLong = OpenTK.Graphics.OpenGL.Version43.VertexAttribArrayLong; - var _PrimitiveRestartFixedIndex = OpenTK.Graphics.OpenGL.Version43.PrimitiveRestartFixedIndex; - var _AnySamplesPassedConservative = OpenTK.Graphics.OpenGL.Version43.AnySamplesPassedConservative; - var _MaxElementIndex = OpenTK.Graphics.OpenGL.Version43.MaxElementIndex; - var _MaxCombinedShaderOutputResources = OpenTK.Graphics.OpenGL.Version43.MaxCombinedShaderOutputResources; - var _VertexBindingBuffer = OpenTK.Graphics.OpenGL.Version43.VertexBindingBuffer; - var _ShaderStorageBuffer = OpenTK.Graphics.OpenGL.Version43.ShaderStorageBuffer; - var _ShaderStorageBufferBinding = OpenTK.Graphics.OpenGL.Version43.ShaderStorageBufferBinding; - var _ShaderStorageBufferStart = OpenTK.Graphics.OpenGL.Version43.ShaderStorageBufferStart; - var _ShaderStorageBufferSize = OpenTK.Graphics.OpenGL.Version43.ShaderStorageBufferSize; - var _MaxVertexShaderStorageBlocks = OpenTK.Graphics.OpenGL.Version43.MaxVertexShaderStorageBlocks; - var _MaxGeometryShaderStorageBlocks = OpenTK.Graphics.OpenGL.Version43.MaxGeometryShaderStorageBlocks; - var _MaxTessControlShaderStorageBlocks = OpenTK.Graphics.OpenGL.Version43.MaxTessControlShaderStorageBlocks; - var _MaxTessEvaluationShaderStorageBlocks = OpenTK.Graphics.OpenGL.Version43.MaxTessEvaluationShaderStorageBlocks; - var _MaxFragmentShaderStorageBlocks = OpenTK.Graphics.OpenGL.Version43.MaxFragmentShaderStorageBlocks; - var _MaxComputeShaderStorageBlocks = OpenTK.Graphics.OpenGL.Version43.MaxComputeShaderStorageBlocks; - var _MaxCombinedShaderStorageBlocks = OpenTK.Graphics.OpenGL.Version43.MaxCombinedShaderStorageBlocks; - var _MaxShaderStorageBufferBindings = OpenTK.Graphics.OpenGL.Version43.MaxShaderStorageBufferBindings; - var _MaxShaderStorageBlockSize = OpenTK.Graphics.OpenGL.Version43.MaxShaderStorageBlockSize; - var _ShaderStorageBufferOffsetAlignment = OpenTK.Graphics.OpenGL.Version43.ShaderStorageBufferOffsetAlignment; - var _DepthStencilTextureMode = OpenTK.Graphics.OpenGL.Version43.DepthStencilTextureMode; - var _MaxComputeWorkGroupInvocations = OpenTK.Graphics.OpenGL.Version43.MaxComputeWorkGroupInvocations; - var _UniformBlockReferencedByComputeShader = OpenTK.Graphics.OpenGL.Version43.UniformBlockReferencedByComputeShader; - var _AtomicCounterBufferReferencedByComputeShader = OpenTK.Graphics.OpenGL.Version43.AtomicCounterBufferReferencedByComputeShader; - var _DispatchIndirectBuffer = OpenTK.Graphics.OpenGL.Version43.DispatchIndirectBuffer; - var _DispatchIndirectBufferBinding = OpenTK.Graphics.OpenGL.Version43.DispatchIndirectBufferBinding; - var _MaxDebugMessageLength = OpenTK.Graphics.OpenGL.Version43.MaxDebugMessageLength; - var _MaxDebugLoggedMessages = OpenTK.Graphics.OpenGL.Version43.MaxDebugLoggedMessages; - var _DebugLoggedMessages = OpenTK.Graphics.OpenGL.Version43.DebugLoggedMessages; - var _DebugSeverityHigh = OpenTK.Graphics.OpenGL.Version43.DebugSeverityHigh; - var _DebugSeverityMedium = OpenTK.Graphics.OpenGL.Version43.DebugSeverityMedium; - var _DebugSeverityLow = OpenTK.Graphics.OpenGL.Version43.DebugSeverityLow; - var _TextureBufferOffset = OpenTK.Graphics.OpenGL.Version43.TextureBufferOffset; - var _TextureBufferSize = OpenTK.Graphics.OpenGL.Version43.TextureBufferSize; - var _TextureBufferOffsetAlignment = OpenTK.Graphics.OpenGL.Version43.TextureBufferOffsetAlignment; - var _ComputeShader = OpenTK.Graphics.OpenGL.Version43.ComputeShader; - var _MaxComputeUniformBlocks = OpenTK.Graphics.OpenGL.Version43.MaxComputeUniformBlocks; - var _MaxComputeTextureImageUnits = OpenTK.Graphics.OpenGL.Version43.MaxComputeTextureImageUnits; - var _MaxComputeImageUniforms = OpenTK.Graphics.OpenGL.Version43.MaxComputeImageUniforms; - var _MaxComputeWorkGroupCount = OpenTK.Graphics.OpenGL.Version43.MaxComputeWorkGroupCount; - var _MaxComputeWorkGroupSize = OpenTK.Graphics.OpenGL.Version43.MaxComputeWorkGroupSize; - var _CompressedR11Eac = OpenTK.Graphics.OpenGL.Version43.CompressedR11Eac; - var _CompressedSignedR11Eac = OpenTK.Graphics.OpenGL.Version43.CompressedSignedR11Eac; - var _CompressedRg11Eac = OpenTK.Graphics.OpenGL.Version43.CompressedRg11Eac; - var _CompressedSignedRg11Eac = OpenTK.Graphics.OpenGL.Version43.CompressedSignedRg11Eac; - var _CompressedRgb8Etc2 = OpenTK.Graphics.OpenGL.Version43.CompressedRgb8Etc2; - var _CompressedSrgb8Etc2 = OpenTK.Graphics.OpenGL.Version43.CompressedSrgb8Etc2; - var _CompressedRgb8PunchthroughAlpha1Etc2 = OpenTK.Graphics.OpenGL.Version43.CompressedRgb8PunchthroughAlpha1Etc2; - var _CompressedSrgb8PunchthroughAlpha1Etc2 = OpenTK.Graphics.OpenGL.Version43.CompressedSrgb8PunchthroughAlpha1Etc2; - var _CompressedRgba8Etc2Eac = OpenTK.Graphics.OpenGL.Version43.CompressedRgba8Etc2Eac; - var _CompressedSrgb8Alpha8Etc2Eac = OpenTK.Graphics.OpenGL.Version43.CompressedSrgb8Alpha8Etc2Eac; - var _DebugOutput = OpenTK.Graphics.OpenGL.Version43.DebugOutput; - var _Uniform = OpenTK.Graphics.OpenGL.Version43.Uniform; - var _UniformBlock = OpenTK.Graphics.OpenGL.Version43.UniformBlock; - var _ProgramInput = OpenTK.Graphics.OpenGL.Version43.ProgramInput; - var _ProgramOutput = OpenTK.Graphics.OpenGL.Version43.ProgramOutput; - var _BufferVariable = OpenTK.Graphics.OpenGL.Version43.BufferVariable; - var _ShaderStorageBlock = OpenTK.Graphics.OpenGL.Version43.ShaderStorageBlock; - var _IsPerPatch = OpenTK.Graphics.OpenGL.Version43.IsPerPatch; - var _VertexSubroutine = OpenTK.Graphics.OpenGL.Version43.VertexSubroutine; - var _TessControlSubroutine = OpenTK.Graphics.OpenGL.Version43.TessControlSubroutine; - var _TessEvaluationSubroutine = OpenTK.Graphics.OpenGL.Version43.TessEvaluationSubroutine; - var _GeometrySubroutine = OpenTK.Graphics.OpenGL.Version43.GeometrySubroutine; - var _FragmentSubroutine = OpenTK.Graphics.OpenGL.Version43.FragmentSubroutine; - var _ComputeSubroutine = OpenTK.Graphics.OpenGL.Version43.ComputeSubroutine; - var _VertexSubroutineUniform = OpenTK.Graphics.OpenGL.Version43.VertexSubroutineUniform; - var _TessControlSubroutineUniform = OpenTK.Graphics.OpenGL.Version43.TessControlSubroutineUniform; - var _TessEvaluationSubroutineUniform = OpenTK.Graphics.OpenGL.Version43.TessEvaluationSubroutineUniform; - var _GeometrySubroutineUniform = OpenTK.Graphics.OpenGL.Version43.GeometrySubroutineUniform; - var _FragmentSubroutineUniform = OpenTK.Graphics.OpenGL.Version43.FragmentSubroutineUniform; - var _ComputeSubroutineUniform = OpenTK.Graphics.OpenGL.Version43.ComputeSubroutineUniform; - var _TransformFeedbackVarying = OpenTK.Graphics.OpenGL.Version43.TransformFeedbackVarying; - var _ActiveResources = OpenTK.Graphics.OpenGL.Version43.ActiveResources; - var _MaxNameLength = OpenTK.Graphics.OpenGL.Version43.MaxNameLength; - var _MaxNumActiveVariables = OpenTK.Graphics.OpenGL.Version43.MaxNumActiveVariables; - var _MaxNumCompatibleSubroutines = OpenTK.Graphics.OpenGL.Version43.MaxNumCompatibleSubroutines; - var _NameLength = OpenTK.Graphics.OpenGL.Version43.NameLength; - var _Type = OpenTK.Graphics.OpenGL.Version43.Type; - var _ArraySize = OpenTK.Graphics.OpenGL.Version43.ArraySize; - var _Offset = OpenTK.Graphics.OpenGL.Version43.Offset; - var _BlockIndex = OpenTK.Graphics.OpenGL.Version43.BlockIndex; - var _ArrayStride = OpenTK.Graphics.OpenGL.Version43.ArrayStride; - var _MatrixStride = OpenTK.Graphics.OpenGL.Version43.MatrixStride; - var _IsRowMajor = OpenTK.Graphics.OpenGL.Version43.IsRowMajor; - var _AtomicCounterBufferIndex = OpenTK.Graphics.OpenGL.Version43.AtomicCounterBufferIndex; - var _BufferBinding = OpenTK.Graphics.OpenGL.Version43.BufferBinding; - var _BufferDataSize = OpenTK.Graphics.OpenGL.Version43.BufferDataSize; - var _NumActiveVariables = OpenTK.Graphics.OpenGL.Version43.NumActiveVariables; - var _ActiveVariables = OpenTK.Graphics.OpenGL.Version43.ActiveVariables; - var _ReferencedByVertexShader = OpenTK.Graphics.OpenGL.Version43.ReferencedByVertexShader; - var _ReferencedByTessControlShader = OpenTK.Graphics.OpenGL.Version43.ReferencedByTessControlShader; - var _ReferencedByTessEvaluationShader = OpenTK.Graphics.OpenGL.Version43.ReferencedByTessEvaluationShader; - var _ReferencedByGeometryShader = OpenTK.Graphics.OpenGL.Version43.ReferencedByGeometryShader; - var _ReferencedByFragmentShader = OpenTK.Graphics.OpenGL.Version43.ReferencedByFragmentShader; - var _ReferencedByComputeShader = OpenTK.Graphics.OpenGL.Version43.ReferencedByComputeShader; - var _TopLevelArraySize = OpenTK.Graphics.OpenGL.Version43.TopLevelArraySize; - var _TopLevelArrayStride = OpenTK.Graphics.OpenGL.Version43.TopLevelArrayStride; - var _Location = OpenTK.Graphics.OpenGL.Version43.Location; - var _LocationIndex = OpenTK.Graphics.OpenGL.Version43.LocationIndex; - var _FramebufferDefaultWidth = OpenTK.Graphics.OpenGL.Version43.FramebufferDefaultWidth; - var _FramebufferDefaultHeight = OpenTK.Graphics.OpenGL.Version43.FramebufferDefaultHeight; - var _FramebufferDefaultLayers = OpenTK.Graphics.OpenGL.Version43.FramebufferDefaultLayers; - var _FramebufferDefaultSamples = OpenTK.Graphics.OpenGL.Version43.FramebufferDefaultSamples; - var _FramebufferDefaultFixedSampleLocations = OpenTK.Graphics.OpenGL.Version43.FramebufferDefaultFixedSampleLocations; - var _MaxFramebufferWidth = OpenTK.Graphics.OpenGL.Version43.MaxFramebufferWidth; - var _MaxFramebufferHeight = OpenTK.Graphics.OpenGL.Version43.MaxFramebufferHeight; - var _MaxFramebufferLayers = OpenTK.Graphics.OpenGL.Version43.MaxFramebufferLayers; - var _MaxFramebufferSamples = OpenTK.Graphics.OpenGL.Version43.MaxFramebufferSamples; -} -static void Test_Version44_20054() { - var _ClientMappedBufferBarrierBit = OpenTK.Graphics.OpenGL.Version44.ClientMappedBufferBarrierBit; - var _QueryBufferBarrierBit = OpenTK.Graphics.OpenGL.Version44.QueryBufferBarrierBit; - var _MapReadBit = OpenTK.Graphics.OpenGL.Version44.MapReadBit; - var _MapWriteBit = OpenTK.Graphics.OpenGL.Version44.MapWriteBit; - var _MapPersistentBit = OpenTK.Graphics.OpenGL.Version44.MapPersistentBit; - var _MapCoherentBit = OpenTK.Graphics.OpenGL.Version44.MapCoherentBit; - var _DynamicStorageBit = OpenTK.Graphics.OpenGL.Version44.DynamicStorageBit; - var _ClientStorageBit = OpenTK.Graphics.OpenGL.Version44.ClientStorageBit; - var _StencilIndex = OpenTK.Graphics.OpenGL.Version44.StencilIndex; - var _BufferImmutableStorage = OpenTK.Graphics.OpenGL.Version44.BufferImmutableStorage; - var _BufferStorageFlags = OpenTK.Graphics.OpenGL.Version44.BufferStorageFlags; - var _PrimitiveRestartForPatchesSupported = OpenTK.Graphics.OpenGL.Version44.PrimitiveRestartForPatchesSupported; - var _MaxVertexAttribStride = OpenTK.Graphics.OpenGL.Version44.MaxVertexAttribStride; - var _MirrorClampToEdge = OpenTK.Graphics.OpenGL.Version44.MirrorClampToEdge; - var _TextureBufferBinding = OpenTK.Graphics.OpenGL.Version44.TextureBufferBinding; - var _UnsignedInt10F11F11FRev = OpenTK.Graphics.OpenGL.Version44.UnsignedInt10F11F11FRev; - var _TransformFeedbackBuffer = OpenTK.Graphics.OpenGL.Version44.TransformFeedbackBuffer; - var _StencilIndex8 = OpenTK.Graphics.OpenGL.Version44.StencilIndex8; - var _QueryBuffer = OpenTK.Graphics.OpenGL.Version44.QueryBuffer; - var _QueryBufferBinding = OpenTK.Graphics.OpenGL.Version44.QueryBufferBinding; - var _QueryResultNoWait = OpenTK.Graphics.OpenGL.Version44.QueryResultNoWait; - var _LocationComponent = OpenTK.Graphics.OpenGL.Version44.LocationComponent; - var _TransformFeedbackBufferIndex = OpenTK.Graphics.OpenGL.Version44.TransformFeedbackBufferIndex; - var _TransformFeedbackBufferStride = OpenTK.Graphics.OpenGL.Version44.TransformFeedbackBufferStride; - var _ClearTexture = OpenTK.Graphics.OpenGL.Version44.ClearTexture; -} -static void Test_VertexAttribDoubleType_20055() { - var _Double = OpenTK.Graphics.OpenGL.VertexAttribDoubleType.Double; -} -static void Test_VertexAttribDPointerType_20056() { - var _Double = OpenTK.Graphics.OpenGL.VertexAttribDPointerType.Double; -} -static void Test_VertexAttribIntegerType_20057() { - var _Byte = OpenTK.Graphics.OpenGL.VertexAttribIntegerType.Byte; - var _UnsignedByte = OpenTK.Graphics.OpenGL.VertexAttribIntegerType.UnsignedByte; - var _Short = OpenTK.Graphics.OpenGL.VertexAttribIntegerType.Short; - var _UnsignedShort = OpenTK.Graphics.OpenGL.VertexAttribIntegerType.UnsignedShort; - var _Int = OpenTK.Graphics.OpenGL.VertexAttribIntegerType.Int; - var _UnsignedInt = OpenTK.Graphics.OpenGL.VertexAttribIntegerType.UnsignedInt; -} -static void Test_VertexAttribIPointerType_20058() { - var _Byte = OpenTK.Graphics.OpenGL.VertexAttribIPointerType.Byte; - var _UnsignedByte = OpenTK.Graphics.OpenGL.VertexAttribIPointerType.UnsignedByte; - var _Short = OpenTK.Graphics.OpenGL.VertexAttribIPointerType.Short; - var _UnsignedShort = OpenTK.Graphics.OpenGL.VertexAttribIPointerType.UnsignedShort; - var _Int = OpenTK.Graphics.OpenGL.VertexAttribIPointerType.Int; - var _UnsignedInt = OpenTK.Graphics.OpenGL.VertexAttribIPointerType.UnsignedInt; -} -static void Test_VertexAttribParameter_20059() { - var _ArrayEnabled = OpenTK.Graphics.OpenGL.VertexAttribParameter.ArrayEnabled; - var _ArraySize = OpenTK.Graphics.OpenGL.VertexAttribParameter.ArraySize; - var _ArrayStride = OpenTK.Graphics.OpenGL.VertexAttribParameter.ArrayStride; - var _ArrayType = OpenTK.Graphics.OpenGL.VertexAttribParameter.ArrayType; - var _CurrentVertexAttrib = OpenTK.Graphics.OpenGL.VertexAttribParameter.CurrentVertexAttrib; - var _ArrayNormalized = OpenTK.Graphics.OpenGL.VertexAttribParameter.ArrayNormalized; - var _VertexAttribArrayInteger = OpenTK.Graphics.OpenGL.VertexAttribParameter.VertexAttribArrayInteger; - var _VertexAttribArrayDivisor = OpenTK.Graphics.OpenGL.VertexAttribParameter.VertexAttribArrayDivisor; -} -static void Test_VertexAttribParameterArb_20060() { - var _ArrayEnabled = OpenTK.Graphics.OpenGL.VertexAttribParameterArb.ArrayEnabled; - var _ArraySize = OpenTK.Graphics.OpenGL.VertexAttribParameterArb.ArraySize; - var _ArrayStride = OpenTK.Graphics.OpenGL.VertexAttribParameterArb.ArrayStride; - var _ArrayType = OpenTK.Graphics.OpenGL.VertexAttribParameterArb.ArrayType; - var _CurrentVertexAttrib = OpenTK.Graphics.OpenGL.VertexAttribParameterArb.CurrentVertexAttrib; - var _ArrayNormalized = OpenTK.Graphics.OpenGL.VertexAttribParameterArb.ArrayNormalized; - var _ArrayDivisor = OpenTK.Graphics.OpenGL.VertexAttribParameterArb.ArrayDivisor; -} -static void Test_VertexAttribPointerParameter_20061() { - var _ArrayPointer = OpenTK.Graphics.OpenGL.VertexAttribPointerParameter.ArrayPointer; -} -static void Test_VertexAttribPointerParameterArb_20062() { - var _ArrayPointer = OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb.ArrayPointer; -} -static void Test_VertexAttribPointerType_20063() { - var _Byte = OpenTK.Graphics.OpenGL.VertexAttribPointerType.Byte; - var _UnsignedByte = OpenTK.Graphics.OpenGL.VertexAttribPointerType.UnsignedByte; - var _Short = OpenTK.Graphics.OpenGL.VertexAttribPointerType.Short; - var _UnsignedShort = OpenTK.Graphics.OpenGL.VertexAttribPointerType.UnsignedShort; - var _Int = OpenTK.Graphics.OpenGL.VertexAttribPointerType.Int; - var _UnsignedInt = OpenTK.Graphics.OpenGL.VertexAttribPointerType.UnsignedInt; - var _Float = OpenTK.Graphics.OpenGL.VertexAttribPointerType.Float; - var _Double = OpenTK.Graphics.OpenGL.VertexAttribPointerType.Double; - var _HalfFloat = OpenTK.Graphics.OpenGL.VertexAttribPointerType.HalfFloat; - var _Fixed = OpenTK.Graphics.OpenGL.VertexAttribPointerType.Fixed; - var _UnsignedInt2101010Rev = OpenTK.Graphics.OpenGL.VertexAttribPointerType.UnsignedInt2101010Rev; - var _Int2101010Rev = OpenTK.Graphics.OpenGL.VertexAttribPointerType.Int2101010Rev; -} -static void Test_VertexAttribPointerTypeArb_20064() { - var _Byte = OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb.Byte; - var _UnsignedByte = OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb.UnsignedByte; - var _Short = OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb.Short; - var _UnsignedShort = OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb.UnsignedShort; - var _Int = OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb.Int; - var _UnsignedInt = OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb.UnsignedInt; - var _Float = OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb.Float; - var _Double = OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb.Double; -} -static void Test_VertexAttribType_20065() { - var _Byte = OpenTK.Graphics.OpenGL.VertexAttribType.Byte; - var _UnsignedByte = OpenTK.Graphics.OpenGL.VertexAttribType.UnsignedByte; - var _Short = OpenTK.Graphics.OpenGL.VertexAttribType.Short; - var _UnsignedShort = OpenTK.Graphics.OpenGL.VertexAttribType.UnsignedShort; - var _Int = OpenTK.Graphics.OpenGL.VertexAttribType.Int; - var _UnsignedInt = OpenTK.Graphics.OpenGL.VertexAttribType.UnsignedInt; - var _Float = OpenTK.Graphics.OpenGL.VertexAttribType.Float; - var _Double = OpenTK.Graphics.OpenGL.VertexAttribType.Double; - var _HalfFloat = OpenTK.Graphics.OpenGL.VertexAttribType.HalfFloat; - var _Fixed = OpenTK.Graphics.OpenGL.VertexAttribType.Fixed; - var _UnsignedInt2101010Rev = OpenTK.Graphics.OpenGL.VertexAttribType.UnsignedInt2101010Rev; - var _Int2101010Rev = OpenTK.Graphics.OpenGL.VertexAttribType.Int2101010Rev; -} -static void Test_VertexPointerType_20066() { - var _Short = OpenTK.Graphics.OpenGL.VertexPointerType.Short; - var _Int = OpenTK.Graphics.OpenGL.VertexPointerType.Int; - var _Float = OpenTK.Graphics.OpenGL.VertexPointerType.Float; - var _Double = OpenTK.Graphics.OpenGL.VertexPointerType.Double; - var _HalfFloat = OpenTK.Graphics.OpenGL.VertexPointerType.HalfFloat; - var _UnsignedInt2101010Rev = OpenTK.Graphics.OpenGL.VertexPointerType.UnsignedInt2101010Rev; - var _Int2101010Rev = OpenTK.Graphics.OpenGL.VertexPointerType.Int2101010Rev; -} -static void Test_WaitSyncFlags_20067() { - var _None = OpenTK.Graphics.OpenGL.WaitSyncFlags.None; -} -static void Test_WaitSyncStatus_20068() { - var _AlreadySignaled = OpenTK.Graphics.OpenGL.WaitSyncStatus.AlreadySignaled; - var _TimeoutExpired = OpenTK.Graphics.OpenGL.WaitSyncStatus.TimeoutExpired; - var _ConditionSatisfied = OpenTK.Graphics.OpenGL.WaitSyncStatus.ConditionSatisfied; - var _WaitFailed = OpenTK.Graphics.OpenGL.WaitSyncStatus.WaitFailed; -} -static void Test_WinPhongShading_20069() { - var _PhongWin = OpenTK.Graphics.OpenGL.WinPhongShading.PhongWin; - var _PhongHintWin = OpenTK.Graphics.OpenGL.WinPhongShading.PhongHintWin; -} -static void Test_WinSpecularFog_20070() { - var _FogSpecularTextureWin = OpenTK.Graphics.OpenGL.WinSpecularFog.FogSpecularTextureWin; -} -static unsafe void Test_Accum_20071() { - OpenTK.Graphics.OpenGL.AccumOp _op = default(OpenTK.Graphics.OpenGL.AccumOp); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Accum(_op,_value); -} -static unsafe void Test_ActiveShaderProgram_20072() { - System.Int32 _pipeline = default(System.Int32); - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ActiveShaderProgram(_pipeline,_program); -} -static unsafe void Test_ActiveShaderProgram_20073() { - System.UInt32 _pipeline = default(System.UInt32); - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.ActiveShaderProgram(_pipeline,_program); -} -static unsafe void Test_ActiveTexture_20074() { - OpenTK.Graphics.OpenGL.TextureUnit _texture = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.GL.ActiveTexture(_texture); -} -static unsafe void Test_AlphaFunc_20075() { - OpenTK.Graphics.OpenGL.AlphaFunction _func = default(OpenTK.Graphics.OpenGL.AlphaFunction); - System.Single _ref = default(System.Single); - OpenTK.Graphics.OpenGL.GL.AlphaFunc(_func,_ref); -} -static unsafe void Test_AreTexturesResident_20076() { - System.Int32 _n = default(System.Int32); - System.Int32[] _textures = default(System.Int32[]); - System.Boolean[] _residences = default(System.Boolean[]); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.AreTexturesResident(_n,_textures,_residences); -} -static unsafe void Test_AreTexturesResident_20077() { - System.Int32 _n = default(System.Int32); - System.Int32 _textures = default(System.Int32); - System.Boolean _residences = default(System.Boolean); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.AreTexturesResident(_n,ref _textures,out _residences); -} -static unsafe void Test_AreTexturesResident_20078() { - System.Int32 _n = default(System.Int32); - System.Int32* _textures = default(System.Int32*); - System.Boolean* _residences = default(System.Boolean*); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.AreTexturesResident(_n,_textures,_residences); -} -static unsafe void Test_AreTexturesResident_20079() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _textures = default(System.UInt32[]); - System.Boolean[] _residences = default(System.Boolean[]); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.AreTexturesResident(_n,_textures,_residences); -} -static unsafe void Test_AreTexturesResident_20080() { - System.Int32 _n = default(System.Int32); - System.UInt32 _textures = default(System.UInt32); - System.Boolean _residences = default(System.Boolean); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.AreTexturesResident(_n,ref _textures,out _residences); -} -static unsafe void Test_AreTexturesResident_20081() { - System.Int32 _n = default(System.Int32); - System.UInt32* _textures = default(System.UInt32*); - System.Boolean* _residences = default(System.Boolean*); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.AreTexturesResident(_n,_textures,_residences); -} -static unsafe void Test_ArrayElement_20082() { - System.Int32 _i = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ArrayElement(_i); -} -static unsafe void Test_AttachShader_20083() { - System.Int32 _program = default(System.Int32); - System.Int32 _shader = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.AttachShader(_program,_shader); -} -static unsafe void Test_AttachShader_20084() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _shader = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.AttachShader(_program,_shader); -} -static unsafe void Test_Begin_20085() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - OpenTK.Graphics.OpenGL.GL.Begin(_mode); -} -static unsafe void Test_Begin_20086() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - OpenTK.Graphics.OpenGL.GL.Begin(_mode); -} -static unsafe void Test_BeginConditionalRender_20087() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ConditionalRenderType _mode = default(OpenTK.Graphics.OpenGL.ConditionalRenderType); - OpenTK.Graphics.OpenGL.GL.BeginConditionalRender(_id,_mode); -} -static unsafe void Test_BeginConditionalRender_20088() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ConditionalRenderType _mode = default(OpenTK.Graphics.OpenGL.ConditionalRenderType); - OpenTK.Graphics.OpenGL.GL.BeginConditionalRender(_id,_mode); -} -static unsafe void Test_BeginQuery_20089() { - OpenTK.Graphics.OpenGL.QueryTarget _target = default(OpenTK.Graphics.OpenGL.QueryTarget); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.BeginQuery(_target,_id); -} -static unsafe void Test_BeginQuery_20090() { - OpenTK.Graphics.OpenGL.QueryTarget _target = default(OpenTK.Graphics.OpenGL.QueryTarget); - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.BeginQuery(_target,_id); -} -static unsafe void Test_BeginQueryIndexed_20091() { - OpenTK.Graphics.OpenGL.QueryTarget _target = default(OpenTK.Graphics.OpenGL.QueryTarget); - System.Int32 _index = default(System.Int32); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.BeginQueryIndexed(_target,_index,_id); -} -static unsafe void Test_BeginQueryIndexed_20092() { - OpenTK.Graphics.OpenGL.QueryTarget _target = default(OpenTK.Graphics.OpenGL.QueryTarget); - System.UInt32 _index = default(System.UInt32); - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.BeginQueryIndexed(_target,_index,_id); -} -static unsafe void Test_BeginTransformFeedback_20093() { - OpenTK.Graphics.OpenGL.BeginFeedbackMode _primitiveMode = default(OpenTK.Graphics.OpenGL.BeginFeedbackMode); - OpenTK.Graphics.OpenGL.GL.BeginTransformFeedback(_primitiveMode); -} -static unsafe void Test_BeginTransformFeedback_20094() { - OpenTK.Graphics.OpenGL.TransformFeedbackPrimitiveType _primitiveMode = default(OpenTK.Graphics.OpenGL.TransformFeedbackPrimitiveType); - OpenTK.Graphics.OpenGL.GL.BeginTransformFeedback(_primitiveMode); -} -static unsafe void Test_BindAttribLocation_20095() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.String _name = default(System.String); - OpenTK.Graphics.OpenGL.GL.BindAttribLocation(_program,_index,_name); -} -static unsafe void Test_BindAttribLocation_20096() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.String _name = default(System.String); - OpenTK.Graphics.OpenGL.GL.BindAttribLocation(_program,_index,_name); -} -static unsafe void Test_BindBuffer_20097() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.BindBuffer(_target,_buffer); -} -static unsafe void Test_BindBuffer_20098() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.BindBuffer(_target,_buffer); -} -static unsafe void Test_BindBufferBase_20099() { - OpenTK.Graphics.OpenGL.BufferRangeTarget _target = default(OpenTK.Graphics.OpenGL.BufferRangeTarget); - System.Int32 _index = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.BindBufferBase(_target,_index,_buffer); -} -static unsafe void Test_BindBufferBase_20100() { - OpenTK.Graphics.OpenGL.BufferRangeTarget _target = default(OpenTK.Graphics.OpenGL.BufferRangeTarget); - System.UInt32 _index = default(System.UInt32); - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.BindBufferBase(_target,_index,_buffer); -} -static unsafe void Test_BindBufferBase_20101() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - System.Int32 _index = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.BindBufferBase(_target,_index,_buffer); -} -static unsafe void Test_BindBufferBase_20102() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - System.UInt32 _index = default(System.UInt32); - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.BindBufferBase(_target,_index,_buffer); -} -static unsafe void Test_BindBufferRange_20103() { - OpenTK.Graphics.OpenGL.BufferRangeTarget _target = default(OpenTK.Graphics.OpenGL.BufferRangeTarget); - System.Int32 _index = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.BindBufferRange(_target,_index,_buffer,_offset,_size); -} -static unsafe void Test_BindBufferRange_20104() { - OpenTK.Graphics.OpenGL.BufferRangeTarget _target = default(OpenTK.Graphics.OpenGL.BufferRangeTarget); - System.UInt32 _index = default(System.UInt32); - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.BindBufferRange(_target,_index,_buffer,_offset,_size); -} -static unsafe void Test_BindBufferRange_20105() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - System.Int32 _index = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.BindBufferRange(_target,_index,_buffer,_offset,_size); -} -static unsafe void Test_BindBufferRange_20106() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - System.UInt32 _index = default(System.UInt32); - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.BindBufferRange(_target,_index,_buffer,_offset,_size); -} -static unsafe void Test_BindBuffersBase_20107() { - OpenTK.Graphics.OpenGL.BufferRangeTarget _target = default(OpenTK.Graphics.OpenGL.BufferRangeTarget); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _buffers = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.BindBuffersBase(_target,_first,_count,_buffers); -} -static unsafe void Test_BindBuffersBase_20108() { - OpenTK.Graphics.OpenGL.BufferRangeTarget _target = default(OpenTK.Graphics.OpenGL.BufferRangeTarget); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _buffers = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.BindBuffersBase(_target,_first,_count,ref _buffers); -} -static unsafe void Test_BindBuffersBase_20109() { - OpenTK.Graphics.OpenGL.BufferRangeTarget _target = default(OpenTK.Graphics.OpenGL.BufferRangeTarget); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _buffers = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.BindBuffersBase(_target,_first,_count,_buffers); -} -static unsafe void Test_BindBuffersBase_20110() { - OpenTK.Graphics.OpenGL.BufferRangeTarget _target = default(OpenTK.Graphics.OpenGL.BufferRangeTarget); - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _buffers = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.BindBuffersBase(_target,_first,_count,_buffers); -} -static unsafe void Test_BindBuffersBase_20111() { - OpenTK.Graphics.OpenGL.BufferRangeTarget _target = default(OpenTK.Graphics.OpenGL.BufferRangeTarget); - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32 _buffers = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.BindBuffersBase(_target,_first,_count,ref _buffers); -} -static unsafe void Test_BindBuffersBase_20112() { - OpenTK.Graphics.OpenGL.BufferRangeTarget _target = default(OpenTK.Graphics.OpenGL.BufferRangeTarget); - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32* _buffers = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.BindBuffersBase(_target,_first,_count,_buffers); -} -static unsafe void Test_BindBuffersRange_20113() { - OpenTK.Graphics.OpenGL.BufferRangeTarget _target = default(OpenTK.Graphics.OpenGL.BufferRangeTarget); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _buffers = default(System.Int32[]); - System.IntPtr[] _offsets = default(System.IntPtr[]); - System.IntPtr[] _sizes = default(System.IntPtr[]); - OpenTK.Graphics.OpenGL.GL.BindBuffersRange(_target,_first,_count,_buffers,_offsets,_sizes); -} -static unsafe void Test_BindBuffersRange_20114() { - OpenTK.Graphics.OpenGL.BufferRangeTarget _target = default(OpenTK.Graphics.OpenGL.BufferRangeTarget); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _buffers = default(System.Int32); - System.IntPtr _offsets = default(System.IntPtr); - System.IntPtr _sizes = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.BindBuffersRange(_target,_first,_count,ref _buffers,ref _offsets,ref _sizes); -} -static unsafe void Test_BindBuffersRange_20115() { - OpenTK.Graphics.OpenGL.BufferRangeTarget _target = default(OpenTK.Graphics.OpenGL.BufferRangeTarget); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _buffers = default(System.Int32*); - System.IntPtr* _offsets = default(System.IntPtr*); - System.IntPtr* _sizes = default(System.IntPtr*); - OpenTK.Graphics.OpenGL.GL.BindBuffersRange(_target,_first,_count,_buffers,_offsets,_sizes); -} -static unsafe void Test_BindBuffersRange_20116() { - OpenTK.Graphics.OpenGL.BufferRangeTarget _target = default(OpenTK.Graphics.OpenGL.BufferRangeTarget); - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _buffers = default(System.UInt32[]); - System.IntPtr[] _offsets = default(System.IntPtr[]); - System.IntPtr[] _sizes = default(System.IntPtr[]); - OpenTK.Graphics.OpenGL.GL.BindBuffersRange(_target,_first,_count,_buffers,_offsets,_sizes); -} -static unsafe void Test_BindBuffersRange_20117() { - OpenTK.Graphics.OpenGL.BufferRangeTarget _target = default(OpenTK.Graphics.OpenGL.BufferRangeTarget); - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32 _buffers = default(System.UInt32); - System.IntPtr _offsets = default(System.IntPtr); - System.IntPtr _sizes = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.BindBuffersRange(_target,_first,_count,ref _buffers,ref _offsets,ref _sizes); -} -static unsafe void Test_BindBuffersRange_20118() { - OpenTK.Graphics.OpenGL.BufferRangeTarget _target = default(OpenTK.Graphics.OpenGL.BufferRangeTarget); - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32* _buffers = default(System.UInt32*); - System.IntPtr* _offsets = default(System.IntPtr*); - System.IntPtr* _sizes = default(System.IntPtr*); - OpenTK.Graphics.OpenGL.GL.BindBuffersRange(_target,_first,_count,_buffers,_offsets,_sizes); -} -static unsafe void Test_BindFragDataLocation_20119() { - System.Int32 _program = default(System.Int32); - System.Int32 _color = default(System.Int32); - System.String _name = default(System.String); - OpenTK.Graphics.OpenGL.GL.BindFragDataLocation(_program,_color,_name); -} -static unsafe void Test_BindFragDataLocation_20120() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _color = default(System.UInt32); - System.String _name = default(System.String); - OpenTK.Graphics.OpenGL.GL.BindFragDataLocation(_program,_color,_name); -} -static unsafe void Test_BindFragDataLocationIndexed_20121() { - System.Int32 _program = default(System.Int32); - System.Int32 _colorNumber = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.String _name = default(System.String); - OpenTK.Graphics.OpenGL.GL.BindFragDataLocationIndexed(_program,_colorNumber,_index,_name); -} -static unsafe void Test_BindFragDataLocationIndexed_20122() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _colorNumber = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.String _name = default(System.String); - OpenTK.Graphics.OpenGL.GL.BindFragDataLocationIndexed(_program,_colorNumber,_index,_name); -} -static unsafe void Test_BindFramebuffer_20123() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - System.Int32 _framebuffer = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.BindFramebuffer(_target,_framebuffer); -} -static unsafe void Test_BindFramebuffer_20124() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - System.UInt32 _framebuffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.BindFramebuffer(_target,_framebuffer); -} -static unsafe void Test_BindImageTexture_20125() { - System.Int32 _unit = default(System.Int32); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - System.Boolean _layered = default(System.Boolean); - System.Int32 _layer = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureAccess _access = default(OpenTK.Graphics.OpenGL.TextureAccess); - OpenTK.Graphics.OpenGL.SizedInternalFormat _format = default(OpenTK.Graphics.OpenGL.SizedInternalFormat); - OpenTK.Graphics.OpenGL.GL.BindImageTexture(_unit,_texture,_level,_layered,_layer,_access,_format); -} -static unsafe void Test_BindImageTexture_20126() { - System.UInt32 _unit = default(System.UInt32); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - System.Boolean _layered = default(System.Boolean); - System.Int32 _layer = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureAccess _access = default(OpenTK.Graphics.OpenGL.TextureAccess); - OpenTK.Graphics.OpenGL.SizedInternalFormat _format = default(OpenTK.Graphics.OpenGL.SizedInternalFormat); - OpenTK.Graphics.OpenGL.GL.BindImageTexture(_unit,_texture,_level,_layered,_layer,_access,_format); -} -static unsafe void Test_BindImageTextures_20127() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _textures = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.BindImageTextures(_first,_count,_textures); -} -static unsafe void Test_BindImageTextures_20128() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _textures = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.BindImageTextures(_first,_count,ref _textures); -} -static unsafe void Test_BindImageTextures_20129() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _textures = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.BindImageTextures(_first,_count,_textures); -} -static unsafe void Test_BindImageTextures_20130() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _textures = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.BindImageTextures(_first,_count,_textures); -} -static unsafe void Test_BindImageTextures_20131() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32 _textures = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.BindImageTextures(_first,_count,ref _textures); -} -static unsafe void Test_BindImageTextures_20132() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32* _textures = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.BindImageTextures(_first,_count,_textures); -} -static unsafe void Test_BindProgramPipeline_20133() { - System.Int32 _pipeline = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.BindProgramPipeline(_pipeline); -} -static unsafe void Test_BindProgramPipeline_20134() { - System.UInt32 _pipeline = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.BindProgramPipeline(_pipeline); -} -static unsafe void Test_BindRenderbuffer_20135() { - OpenTK.Graphics.OpenGL.RenderbufferTarget _target = default(OpenTK.Graphics.OpenGL.RenderbufferTarget); - System.Int32 _renderbuffer = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.BindRenderbuffer(_target,_renderbuffer); -} -static unsafe void Test_BindRenderbuffer_20136() { - OpenTK.Graphics.OpenGL.RenderbufferTarget _target = default(OpenTK.Graphics.OpenGL.RenderbufferTarget); - System.UInt32 _renderbuffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.BindRenderbuffer(_target,_renderbuffer); -} -static unsafe void Test_BindSampler_20137() { - System.Int32 _unit = default(System.Int32); - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.BindSampler(_unit,_sampler); -} -static unsafe void Test_BindSampler_20138() { - System.UInt32 _unit = default(System.UInt32); - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.BindSampler(_unit,_sampler); -} -static unsafe void Test_BindSamplers_20139() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _samplers = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.BindSamplers(_first,_count,_samplers); -} -static unsafe void Test_BindSamplers_20140() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _samplers = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.BindSamplers(_first,_count,ref _samplers); -} -static unsafe void Test_BindSamplers_20141() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _samplers = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.BindSamplers(_first,_count,_samplers); -} -static unsafe void Test_BindSamplers_20142() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _samplers = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.BindSamplers(_first,_count,_samplers); -} -static unsafe void Test_BindSamplers_20143() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32 _samplers = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.BindSamplers(_first,_count,ref _samplers); -} -static unsafe void Test_BindSamplers_20144() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32* _samplers = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.BindSamplers(_first,_count,_samplers); -} -static unsafe void Test_BindTexture_20145() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.BindTexture(_target,_texture); -} -static unsafe void Test_BindTexture_20146() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.BindTexture(_target,_texture); -} -static unsafe void Test_BindTextures_20147() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _textures = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.BindTextures(_first,_count,_textures); -} -static unsafe void Test_BindTextures_20148() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _textures = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.BindTextures(_first,_count,ref _textures); -} -static unsafe void Test_BindTextures_20149() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _textures = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.BindTextures(_first,_count,_textures); -} -static unsafe void Test_BindTextures_20150() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _textures = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.BindTextures(_first,_count,_textures); -} -static unsafe void Test_BindTextures_20151() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32 _textures = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.BindTextures(_first,_count,ref _textures); -} -static unsafe void Test_BindTextures_20152() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32* _textures = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.BindTextures(_first,_count,_textures); -} -static unsafe void Test_BindTransformFeedback_20153() { - OpenTK.Graphics.OpenGL.TransformFeedbackTarget _target = default(OpenTK.Graphics.OpenGL.TransformFeedbackTarget); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.BindTransformFeedback(_target,_id); -} -static unsafe void Test_BindTransformFeedback_20154() { - OpenTK.Graphics.OpenGL.TransformFeedbackTarget _target = default(OpenTK.Graphics.OpenGL.TransformFeedbackTarget); - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.BindTransformFeedback(_target,_id); -} -static unsafe void Test_BindVertexArray_20155() { - System.Int32 _array = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.BindVertexArray(_array); -} -static unsafe void Test_BindVertexArray_20156() { - System.UInt32 _array = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.BindVertexArray(_array); -} -static unsafe void Test_BindVertexBuffer_20157() { - System.Int32 _bindingindex = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.BindVertexBuffer(_bindingindex,_buffer,_offset,_stride); -} -static unsafe void Test_BindVertexBuffer_20158() { - System.UInt32 _bindingindex = default(System.UInt32); - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr _offset = default(System.IntPtr); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.BindVertexBuffer(_bindingindex,_buffer,_offset,_stride); -} -static unsafe void Test_BindVertexBuffers_20159() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _buffers = default(System.Int32[]); - System.IntPtr[] _offsets = default(System.IntPtr[]); - System.Int32[] _strides = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.BindVertexBuffers(_first,_count,_buffers,_offsets,_strides); -} -static unsafe void Test_BindVertexBuffers_20160() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _buffers = default(System.Int32); - System.IntPtr _offsets = default(System.IntPtr); - System.Int32 _strides = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.BindVertexBuffers(_first,_count,ref _buffers,ref _offsets,ref _strides); -} -static unsafe void Test_BindVertexBuffers_20161() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _buffers = default(System.Int32*); - System.IntPtr* _offsets = default(System.IntPtr*); - System.Int32* _strides = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.BindVertexBuffers(_first,_count,_buffers,_offsets,_strides); -} -static unsafe void Test_BindVertexBuffers_20162() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _buffers = default(System.UInt32[]); - System.IntPtr[] _offsets = default(System.IntPtr[]); - System.Int32[] _strides = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.BindVertexBuffers(_first,_count,_buffers,_offsets,_strides); -} -static unsafe void Test_BindVertexBuffers_20163() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32 _buffers = default(System.UInt32); - System.IntPtr _offsets = default(System.IntPtr); - System.Int32 _strides = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.BindVertexBuffers(_first,_count,ref _buffers,ref _offsets,ref _strides); -} -static unsafe void Test_BindVertexBuffers_20164() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32* _buffers = default(System.UInt32*); - System.IntPtr* _offsets = default(System.IntPtr*); - System.Int32* _strides = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.BindVertexBuffers(_first,_count,_buffers,_offsets,_strides); -} -static unsafe void Test_Bitmap_20165() { - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Single _xorig = default(System.Single); - System.Single _yorig = default(System.Single); - System.Single _xmove = default(System.Single); - System.Single _ymove = default(System.Single); - System.Byte[] _bitmap = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.Bitmap(_width,_height,_xorig,_yorig,_xmove,_ymove,_bitmap); -} -static unsafe void Test_Bitmap_20166() { - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Single _xorig = default(System.Single); - System.Single _yorig = default(System.Single); - System.Single _xmove = default(System.Single); - System.Single _ymove = default(System.Single); - System.Byte _bitmap = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Bitmap(_width,_height,_xorig,_yorig,_xmove,_ymove,ref _bitmap); -} -static unsafe void Test_Bitmap_20167() { - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Single _xorig = default(System.Single); - System.Single _yorig = default(System.Single); - System.Single _xmove = default(System.Single); - System.Single _ymove = default(System.Single); - System.Byte* _bitmap = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.Bitmap(_width,_height,_xorig,_yorig,_xmove,_ymove,_bitmap); -} -static unsafe void Test_BlendColor_20168() { - System.Single _red = default(System.Single); - System.Single _green = default(System.Single); - System.Single _blue = default(System.Single); - System.Single _alpha = default(System.Single); - OpenTK.Graphics.OpenGL.GL.BlendColor(_red,_green,_blue,_alpha); -} -static unsafe void Test_BlendEquation_20169() { - OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend _mode = default(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend); - OpenTK.Graphics.OpenGL.GL.BlendEquation(_mode); -} -static unsafe void Test_BlendEquation_20170() { - OpenTK.Graphics.OpenGL.BlendEquationMode _mode = default(OpenTK.Graphics.OpenGL.BlendEquationMode); - OpenTK.Graphics.OpenGL.GL.BlendEquation(_mode); -} -static unsafe void Test_BlendEquation_20171() { - OpenTK.Graphics.OpenGL.Version40 _mode = default(OpenTK.Graphics.OpenGL.Version40); - OpenTK.Graphics.OpenGL.GL.BlendEquation(_mode); -} -static unsafe void Test_BlendEquation_20172() { - System.Int32 _buf = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend _mode = default(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend); - OpenTK.Graphics.OpenGL.GL.BlendEquation(_buf,_mode); -} -static unsafe void Test_BlendEquation_20173() { - System.Int32 _buf = default(System.Int32); - OpenTK.Graphics.OpenGL.BlendEquationMode _mode = default(OpenTK.Graphics.OpenGL.BlendEquationMode); - OpenTK.Graphics.OpenGL.GL.BlendEquation(_buf,_mode); -} -static unsafe void Test_BlendEquation_20174() { - System.Int32 _buf = default(System.Int32); - OpenTK.Graphics.OpenGL.Version40 _mode = default(OpenTK.Graphics.OpenGL.Version40); - OpenTK.Graphics.OpenGL.GL.BlendEquation(_buf,_mode); -} -static unsafe void Test_BlendEquation_20175() { - System.UInt32 _buf = default(System.UInt32); - OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend _mode = default(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend); - OpenTK.Graphics.OpenGL.GL.BlendEquation(_buf,_mode); -} -static unsafe void Test_BlendEquation_20176() { - System.UInt32 _buf = default(System.UInt32); - OpenTK.Graphics.OpenGL.BlendEquationMode _mode = default(OpenTK.Graphics.OpenGL.BlendEquationMode); - OpenTK.Graphics.OpenGL.GL.BlendEquation(_buf,_mode); -} -static unsafe void Test_BlendEquation_20177() { - System.UInt32 _buf = default(System.UInt32); - OpenTK.Graphics.OpenGL.Version40 _mode = default(OpenTK.Graphics.OpenGL.Version40); - OpenTK.Graphics.OpenGL.GL.BlendEquation(_buf,_mode); -} -static unsafe void Test_BlendEquationSeparate_20178() { - OpenTK.Graphics.OpenGL.BlendEquationMode _modeRGB = default(OpenTK.Graphics.OpenGL.BlendEquationMode); - OpenTK.Graphics.OpenGL.BlendEquationMode _modeAlpha = default(OpenTK.Graphics.OpenGL.BlendEquationMode); - OpenTK.Graphics.OpenGL.GL.BlendEquationSeparate(_modeRGB,_modeAlpha); -} -static unsafe void Test_BlendEquationSeparate_20179() { - System.Int32 _buf = default(System.Int32); - OpenTK.Graphics.OpenGL.BlendEquationMode _modeRGB = default(OpenTK.Graphics.OpenGL.BlendEquationMode); - OpenTK.Graphics.OpenGL.BlendEquationMode _modeAlpha = default(OpenTK.Graphics.OpenGL.BlendEquationMode); - OpenTK.Graphics.OpenGL.GL.BlendEquationSeparate(_buf,_modeRGB,_modeAlpha); -} -static unsafe void Test_BlendEquationSeparate_20180() { - System.UInt32 _buf = default(System.UInt32); - OpenTK.Graphics.OpenGL.BlendEquationMode _modeRGB = default(OpenTK.Graphics.OpenGL.BlendEquationMode); - OpenTK.Graphics.OpenGL.BlendEquationMode _modeAlpha = default(OpenTK.Graphics.OpenGL.BlendEquationMode); - OpenTK.Graphics.OpenGL.GL.BlendEquationSeparate(_buf,_modeRGB,_modeAlpha); -} -static unsafe void Test_BlendFunc_20181() { - OpenTK.Graphics.OpenGL.BlendingFactorSrc _sfactor = default(OpenTK.Graphics.OpenGL.BlendingFactorSrc); - OpenTK.Graphics.OpenGL.BlendingFactorDest _dfactor = default(OpenTK.Graphics.OpenGL.BlendingFactorDest); - OpenTK.Graphics.OpenGL.GL.BlendFunc(_sfactor,_dfactor); -} -static unsafe void Test_BlendFunc_20182() { - OpenTK.Graphics.OpenGL.BlendingFactorSrc _sfactor = default(OpenTK.Graphics.OpenGL.BlendingFactorSrc); - OpenTK.Graphics.OpenGL.Version40 _dfactor = default(OpenTK.Graphics.OpenGL.Version40); - OpenTK.Graphics.OpenGL.GL.BlendFunc(_sfactor,_dfactor); -} -static unsafe void Test_BlendFunc_20183() { - System.Int32 _buf = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend _src = default(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend); - OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend _dst = default(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend); - OpenTK.Graphics.OpenGL.GL.BlendFunc(_buf,_src,_dst); -} -static unsafe void Test_BlendFunc_20184() { - System.Int32 _buf = default(System.Int32); - OpenTK.Graphics.OpenGL.BlendingFactorSrc _src = default(OpenTK.Graphics.OpenGL.BlendingFactorSrc); - OpenTK.Graphics.OpenGL.BlendingFactorDest _dst = default(OpenTK.Graphics.OpenGL.BlendingFactorDest); - OpenTK.Graphics.OpenGL.GL.BlendFunc(_buf,_src,_dst); -} -static unsafe void Test_BlendFunc_20185() { - System.Int32 _buf = default(System.Int32); - OpenTK.Graphics.OpenGL.Version40 _src = default(OpenTK.Graphics.OpenGL.Version40); - OpenTK.Graphics.OpenGL.Version40 _dst = default(OpenTK.Graphics.OpenGL.Version40); - OpenTK.Graphics.OpenGL.GL.BlendFunc(_buf,_src,_dst); -} -static unsafe void Test_BlendFunc_20186() { - System.UInt32 _buf = default(System.UInt32); - OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend _src = default(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend); - OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend _dst = default(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend); - OpenTK.Graphics.OpenGL.GL.BlendFunc(_buf,_src,_dst); -} -static unsafe void Test_BlendFunc_20187() { - System.UInt32 _buf = default(System.UInt32); - OpenTK.Graphics.OpenGL.BlendingFactorSrc _src = default(OpenTK.Graphics.OpenGL.BlendingFactorSrc); - OpenTK.Graphics.OpenGL.BlendingFactorDest _dst = default(OpenTK.Graphics.OpenGL.BlendingFactorDest); - OpenTK.Graphics.OpenGL.GL.BlendFunc(_buf,_src,_dst); -} -static unsafe void Test_BlendFunc_20188() { - System.UInt32 _buf = default(System.UInt32); - OpenTK.Graphics.OpenGL.Version40 _src = default(OpenTK.Graphics.OpenGL.Version40); - OpenTK.Graphics.OpenGL.Version40 _dst = default(OpenTK.Graphics.OpenGL.Version40); - OpenTK.Graphics.OpenGL.GL.BlendFunc(_buf,_src,_dst); -} -static unsafe void Test_BlendFuncSeparate_20189() { - OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend _sfactorRGB = default(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend); - OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend _dfactorRGB = default(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend); - OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend _sfactorAlpha = default(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend); - OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend _dfactorAlpha = default(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend); - OpenTK.Graphics.OpenGL.GL.BlendFuncSeparate(_sfactorRGB,_dfactorRGB,_sfactorAlpha,_dfactorAlpha); -} -static unsafe void Test_BlendFuncSeparate_20190() { - OpenTK.Graphics.OpenGL.BlendingFactorSrc _sfactorRGB = default(OpenTK.Graphics.OpenGL.BlendingFactorSrc); - OpenTK.Graphics.OpenGL.BlendingFactorDest _dfactorRGB = default(OpenTK.Graphics.OpenGL.BlendingFactorDest); - OpenTK.Graphics.OpenGL.BlendingFactorSrc _sfactorAlpha = default(OpenTK.Graphics.OpenGL.BlendingFactorSrc); - OpenTK.Graphics.OpenGL.BlendingFactorDest _dfactorAlpha = default(OpenTK.Graphics.OpenGL.BlendingFactorDest); - OpenTK.Graphics.OpenGL.GL.BlendFuncSeparate(_sfactorRGB,_dfactorRGB,_sfactorAlpha,_dfactorAlpha); -} -static unsafe void Test_BlendFuncSeparate_20191() { - System.Int32 _buf = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend _srcRGB = default(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend); - OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend _dstRGB = default(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend); - OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend _srcAlpha = default(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend); - OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend _dstAlpha = default(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend); - OpenTK.Graphics.OpenGL.GL.BlendFuncSeparate(_buf,_srcRGB,_dstRGB,_srcAlpha,_dstAlpha); -} -static unsafe void Test_BlendFuncSeparate_20192() { - System.Int32 _buf = default(System.Int32); - OpenTK.Graphics.OpenGL.BlendingFactorSrc _srcRGB = default(OpenTK.Graphics.OpenGL.BlendingFactorSrc); - OpenTK.Graphics.OpenGL.BlendingFactorDest _dstRGB = default(OpenTK.Graphics.OpenGL.BlendingFactorDest); - OpenTK.Graphics.OpenGL.BlendingFactorSrc _srcAlpha = default(OpenTK.Graphics.OpenGL.BlendingFactorSrc); - OpenTK.Graphics.OpenGL.BlendingFactorDest _dstAlpha = default(OpenTK.Graphics.OpenGL.BlendingFactorDest); - OpenTK.Graphics.OpenGL.GL.BlendFuncSeparate(_buf,_srcRGB,_dstRGB,_srcAlpha,_dstAlpha); -} -static unsafe void Test_BlendFuncSeparate_20193() { - System.Int32 _buf = default(System.Int32); - OpenTK.Graphics.OpenGL.Version40 _srcRGB = default(OpenTK.Graphics.OpenGL.Version40); - OpenTK.Graphics.OpenGL.Version40 _dstRGB = default(OpenTK.Graphics.OpenGL.Version40); - OpenTK.Graphics.OpenGL.Version40 _srcAlpha = default(OpenTK.Graphics.OpenGL.Version40); - OpenTK.Graphics.OpenGL.Version40 _dstAlpha = default(OpenTK.Graphics.OpenGL.Version40); - OpenTK.Graphics.OpenGL.GL.BlendFuncSeparate(_buf,_srcRGB,_dstRGB,_srcAlpha,_dstAlpha); -} -static unsafe void Test_BlendFuncSeparate_20194() { - System.UInt32 _buf = default(System.UInt32); - OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend _srcRGB = default(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend); - OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend _dstRGB = default(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend); - OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend _srcAlpha = default(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend); - OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend _dstAlpha = default(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend); - OpenTK.Graphics.OpenGL.GL.BlendFuncSeparate(_buf,_srcRGB,_dstRGB,_srcAlpha,_dstAlpha); -} -static unsafe void Test_BlendFuncSeparate_20195() { - System.UInt32 _buf = default(System.UInt32); - OpenTK.Graphics.OpenGL.BlendingFactorSrc _srcRGB = default(OpenTK.Graphics.OpenGL.BlendingFactorSrc); - OpenTK.Graphics.OpenGL.BlendingFactorDest _dstRGB = default(OpenTK.Graphics.OpenGL.BlendingFactorDest); - OpenTK.Graphics.OpenGL.BlendingFactorSrc _srcAlpha = default(OpenTK.Graphics.OpenGL.BlendingFactorSrc); - OpenTK.Graphics.OpenGL.BlendingFactorDest _dstAlpha = default(OpenTK.Graphics.OpenGL.BlendingFactorDest); - OpenTK.Graphics.OpenGL.GL.BlendFuncSeparate(_buf,_srcRGB,_dstRGB,_srcAlpha,_dstAlpha); -} -static unsafe void Test_BlendFuncSeparate_20196() { - System.UInt32 _buf = default(System.UInt32); - OpenTK.Graphics.OpenGL.Version40 _srcRGB = default(OpenTK.Graphics.OpenGL.Version40); - OpenTK.Graphics.OpenGL.Version40 _dstRGB = default(OpenTK.Graphics.OpenGL.Version40); - OpenTK.Graphics.OpenGL.Version40 _srcAlpha = default(OpenTK.Graphics.OpenGL.Version40); - OpenTK.Graphics.OpenGL.Version40 _dstAlpha = default(OpenTK.Graphics.OpenGL.Version40); - OpenTK.Graphics.OpenGL.GL.BlendFuncSeparate(_buf,_srcRGB,_dstRGB,_srcAlpha,_dstAlpha); -} -static unsafe void Test_BlitFramebuffer_20197() { - System.Int32 _srcX0 = default(System.Int32); - System.Int32 _srcY0 = default(System.Int32); - System.Int32 _srcX1 = default(System.Int32); - System.Int32 _srcY1 = default(System.Int32); - System.Int32 _dstX0 = default(System.Int32); - System.Int32 _dstY0 = default(System.Int32); - System.Int32 _dstX1 = default(System.Int32); - System.Int32 _dstY1 = default(System.Int32); - OpenTK.Graphics.OpenGL.ClearBufferMask _mask = default(OpenTK.Graphics.OpenGL.ClearBufferMask); - OpenTK.Graphics.OpenGL.BlitFramebufferFilter _filter = default(OpenTK.Graphics.OpenGL.BlitFramebufferFilter); - OpenTK.Graphics.OpenGL.GL.BlitFramebuffer(_srcX0,_srcY0,_srcX1,_srcY1,_dstX0,_dstY0,_dstX1,_dstY1,_mask,_filter); -} -static unsafe void Test_BufferData_20198() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - System.IntPtr _size = default(System.IntPtr); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.BufferUsageHint _usage = default(OpenTK.Graphics.OpenGL.BufferUsageHint); - OpenTK.Graphics.OpenGL.GL.BufferData(_target,_size,_data,_usage); -} -static unsafe void Test_BufferData_20199() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - System.IntPtr _size = default(System.IntPtr); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.BufferUsageHint _usage = default(OpenTK.Graphics.OpenGL.BufferUsageHint); - OpenTK.Graphics.OpenGL.GL.BufferData(_target,_size,_data,_usage); -} -static unsafe void Test_BufferData_20200() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - System.IntPtr _size = default(System.IntPtr); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.BufferUsageHint _usage = default(OpenTK.Graphics.OpenGL.BufferUsageHint); - OpenTK.Graphics.OpenGL.GL.BufferData(_target,_size,_data,_usage); -} -static unsafe void Test_BufferData_20201() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - System.IntPtr _size = default(System.IntPtr); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.BufferUsageHint _usage = default(OpenTK.Graphics.OpenGL.BufferUsageHint); - OpenTK.Graphics.OpenGL.GL.BufferData(_target,_size,_data,_usage); -} -static unsafe void Test_BufferData_20202() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - System.IntPtr _size = default(System.IntPtr); - int _data = default(int); - OpenTK.Graphics.OpenGL.BufferUsageHint _usage = default(OpenTK.Graphics.OpenGL.BufferUsageHint); - OpenTK.Graphics.OpenGL.GL.BufferData(_target,_size,ref _data,_usage); -} -static unsafe void Test_BufferStorage_20203() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - System.IntPtr _size = default(System.IntPtr); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.BufferStorageFlags _flags = default(OpenTK.Graphics.OpenGL.BufferStorageFlags); - OpenTK.Graphics.OpenGL.GL.BufferStorage(_target,_size,_data,_flags); -} -static unsafe void Test_BufferStorage_20204() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - System.IntPtr _size = default(System.IntPtr); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.BufferStorageFlags _flags = default(OpenTK.Graphics.OpenGL.BufferStorageFlags); - OpenTK.Graphics.OpenGL.GL.BufferStorage(_target,_size,_data,_flags); -} -static unsafe void Test_BufferStorage_20205() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - System.IntPtr _size = default(System.IntPtr); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.BufferStorageFlags _flags = default(OpenTK.Graphics.OpenGL.BufferStorageFlags); - OpenTK.Graphics.OpenGL.GL.BufferStorage(_target,_size,_data,_flags); -} -static unsafe void Test_BufferStorage_20206() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - System.IntPtr _size = default(System.IntPtr); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.BufferStorageFlags _flags = default(OpenTK.Graphics.OpenGL.BufferStorageFlags); - OpenTK.Graphics.OpenGL.GL.BufferStorage(_target,_size,_data,_flags); -} -static unsafe void Test_BufferStorage_20207() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - System.IntPtr _size = default(System.IntPtr); - int _data = default(int); - OpenTK.Graphics.OpenGL.BufferStorageFlags _flags = default(OpenTK.Graphics.OpenGL.BufferStorageFlags); - OpenTK.Graphics.OpenGL.GL.BufferStorage(_target,_size,ref _data,_flags); -} -static unsafe void Test_BufferSubData_20208() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.BufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_BufferSubData_20209() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.BufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_BufferSubData_20210() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.BufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_BufferSubData_20211() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.BufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_BufferSubData_20212() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.BufferSubData(_target,_offset,_size,ref _data); -} -static unsafe void Test_CallList_20213() { - System.Int32 _list = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.CallList(_list); -} -static unsafe void Test_CallList_20214() { - System.UInt32 _list = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.CallList(_list); -} -static unsafe void Test_CallLists_20215() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.OpenGL.ListNameType _type = default(OpenTK.Graphics.OpenGL.ListNameType); - System.IntPtr _lists = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.CallLists(_n,_type,_lists); -} -static unsafe void Test_CallLists_20216() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.OpenGL.ListNameType _type = default(OpenTK.Graphics.OpenGL.ListNameType); - int[] _lists = default(int[]); - OpenTK.Graphics.OpenGL.GL.CallLists(_n,_type,_lists); -} -static unsafe void Test_CallLists_20217() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.OpenGL.ListNameType _type = default(OpenTK.Graphics.OpenGL.ListNameType); - int[,] _lists = default(int[,]); - OpenTK.Graphics.OpenGL.GL.CallLists(_n,_type,_lists); -} -static unsafe void Test_CallLists_20218() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.OpenGL.ListNameType _type = default(OpenTK.Graphics.OpenGL.ListNameType); - int[,,] _lists = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.CallLists(_n,_type,_lists); -} -static unsafe void Test_CallLists_20219() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.OpenGL.ListNameType _type = default(OpenTK.Graphics.OpenGL.ListNameType); - int _lists = default(int); - OpenTK.Graphics.OpenGL.GL.CallLists(_n,_type,ref _lists); -} -static unsafe void Test_CheckFramebufferStatus_20220() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferErrorCode r = OpenTK.Graphics.OpenGL.GL.CheckFramebufferStatus(_target); -} -static unsafe void Test_ClampColor_20221() { - OpenTK.Graphics.OpenGL.ClampColorTarget _target = default(OpenTK.Graphics.OpenGL.ClampColorTarget); - OpenTK.Graphics.OpenGL.ClampColorMode _clamp = default(OpenTK.Graphics.OpenGL.ClampColorMode); - OpenTK.Graphics.OpenGL.GL.ClampColor(_target,_clamp); -} -static unsafe void Test_Clear_20222() { - OpenTK.Graphics.OpenGL.ClearBufferMask _mask = default(OpenTK.Graphics.OpenGL.ClearBufferMask); - OpenTK.Graphics.OpenGL.GL.Clear(_mask); -} -static unsafe void Test_ClearAccum_20223() { - System.Single _red = default(System.Single); - System.Single _green = default(System.Single); - System.Single _blue = default(System.Single); - System.Single _alpha = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ClearAccum(_red,_green,_blue,_alpha); -} -static unsafe void Test_ClearBufferData_20224() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.All _type = default(OpenTK.Graphics.OpenGL.All); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.ClearBufferData(_target,_internalformat,_format,_type,_data); -} -static unsafe void Test_ClearBufferData_20225() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.All _type = default(OpenTK.Graphics.OpenGL.All); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.ClearBufferData(_target,_internalformat,_format,_type,_data); -} -static unsafe void Test_ClearBufferData_20226() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.All _type = default(OpenTK.Graphics.OpenGL.All); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.ClearBufferData(_target,_internalformat,_format,_type,_data); -} -static unsafe void Test_ClearBufferData_20227() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.All _type = default(OpenTK.Graphics.OpenGL.All); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.ClearBufferData(_target,_internalformat,_format,_type,_data); -} -static unsafe void Test_ClearBufferData_20228() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.All _type = default(OpenTK.Graphics.OpenGL.All); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.ClearBufferData(_target,_internalformat,_format,_type,ref _data); -} -static unsafe void Test_ClearBuffer_20229() { - OpenTK.Graphics.OpenGL.ClearBuffer _buffer = default(OpenTK.Graphics.OpenGL.ClearBuffer); - System.Int32 _drawbuffer = default(System.Int32); - System.Single _depth = default(System.Single); - System.Int32 _stencil = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ClearBuffer(_buffer,_drawbuffer,_depth,_stencil); -} -static unsafe void Test_ClearBuffer_20230() { - OpenTK.Graphics.OpenGL.ClearBufferCombined _buffer = default(OpenTK.Graphics.OpenGL.ClearBufferCombined); - System.Int32 _drawbuffer = default(System.Int32); - System.Single _depth = default(System.Single); - System.Int32 _stencil = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ClearBuffer(_buffer,_drawbuffer,_depth,_stencil); -} -static unsafe void Test_ClearBuffer_20231() { - OpenTK.Graphics.OpenGL.ClearBuffer _buffer = default(OpenTK.Graphics.OpenGL.ClearBuffer); - System.Int32 _drawbuffer = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.ClearBuffer(_buffer,_drawbuffer,_value); -} -static unsafe void Test_ClearBuffer_20232() { - OpenTK.Graphics.OpenGL.ClearBuffer _buffer = default(OpenTK.Graphics.OpenGL.ClearBuffer); - System.Int32 _drawbuffer = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ClearBuffer(_buffer,_drawbuffer,ref _value); -} -static unsafe void Test_ClearBuffer_20233() { - OpenTK.Graphics.OpenGL.ClearBuffer _buffer = default(OpenTK.Graphics.OpenGL.ClearBuffer); - System.Int32 _drawbuffer = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.ClearBuffer(_buffer,_drawbuffer,_value); -} -static unsafe void Test_ClearBuffer_20234() { - OpenTK.Graphics.OpenGL.ClearBuffer _buffer = default(OpenTK.Graphics.OpenGL.ClearBuffer); - System.Int32 _drawbuffer = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.ClearBuffer(_buffer,_drawbuffer,_value); -} -static unsafe void Test_ClearBuffer_20235() { - OpenTK.Graphics.OpenGL.ClearBuffer _buffer = default(OpenTK.Graphics.OpenGL.ClearBuffer); - System.Int32 _drawbuffer = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ClearBuffer(_buffer,_drawbuffer,ref _value); -} -static unsafe void Test_ClearBuffer_20236() { - OpenTK.Graphics.OpenGL.ClearBuffer _buffer = default(OpenTK.Graphics.OpenGL.ClearBuffer); - System.Int32 _drawbuffer = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.ClearBuffer(_buffer,_drawbuffer,_value); -} -static unsafe void Test_ClearBufferSubData_20237() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.All _type = default(OpenTK.Graphics.OpenGL.All); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.ClearBufferSubData(_target,_internalformat,_offset,_size,_format,_type,_data); -} -static unsafe void Test_ClearBufferSubData_20238() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.All _type = default(OpenTK.Graphics.OpenGL.All); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.ClearBufferSubData(_target,_internalformat,_offset,_size,_format,_type,_data); -} -static unsafe void Test_ClearBufferSubData_20239() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.All _type = default(OpenTK.Graphics.OpenGL.All); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.ClearBufferSubData(_target,_internalformat,_offset,_size,_format,_type,_data); -} -static unsafe void Test_ClearBufferSubData_20240() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.All _type = default(OpenTK.Graphics.OpenGL.All); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.ClearBufferSubData(_target,_internalformat,_offset,_size,_format,_type,_data); -} -static unsafe void Test_ClearBufferSubData_20241() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.All _type = default(OpenTK.Graphics.OpenGL.All); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.ClearBufferSubData(_target,_internalformat,_offset,_size,_format,_type,ref _data); -} -static unsafe void Test_ClearBuffer_20242() { - OpenTK.Graphics.OpenGL.ClearBuffer _buffer = default(OpenTK.Graphics.OpenGL.ClearBuffer); - System.Int32 _drawbuffer = default(System.Int32); - System.UInt32[] _value = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.ClearBuffer(_buffer,_drawbuffer,_value); -} -static unsafe void Test_ClearBuffer_20243() { - OpenTK.Graphics.OpenGL.ClearBuffer _buffer = default(OpenTK.Graphics.OpenGL.ClearBuffer); - System.Int32 _drawbuffer = default(System.Int32); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.ClearBuffer(_buffer,_drawbuffer,ref _value); -} -static unsafe void Test_ClearBuffer_20244() { - OpenTK.Graphics.OpenGL.ClearBuffer _buffer = default(OpenTK.Graphics.OpenGL.ClearBuffer); - System.Int32 _drawbuffer = default(System.Int32); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.ClearBuffer(_buffer,_drawbuffer,_value); -} -static unsafe void Test_ClearColor_20245() { - System.Single _red = default(System.Single); - System.Single _green = default(System.Single); - System.Single _blue = default(System.Single); - System.Single _alpha = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ClearColor(_red,_green,_blue,_alpha); -} -static unsafe void Test_ClearDepth_20246() { - System.Double _depth = default(System.Double); - OpenTK.Graphics.OpenGL.GL.ClearDepth(_depth); -} -static unsafe void Test_ClearDepth_20247() { - System.Single _d = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ClearDepth(_d); -} -static unsafe void Test_ClearIndex_20248() { - System.Single _c = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ClearIndex(_c); -} -static unsafe void Test_ClearStencil_20249() { - System.Int32 _s = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ClearStencil(_s); -} -static unsafe void Test_ClearTexImage_20250() { - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.ClearTexImage(_texture,_level,_format,_type,_data); -} -static unsafe void Test_ClearTexImage_20251() { - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.ClearTexImage(_texture,_level,_format,_type,_data); -} -static unsafe void Test_ClearTexImage_20252() { - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.ClearTexImage(_texture,_level,_format,_type,_data); -} -static unsafe void Test_ClearTexImage_20253() { - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.ClearTexImage(_texture,_level,_format,_type,_data); -} -static unsafe void Test_ClearTexImage_20254() { - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.ClearTexImage(_texture,_level,_format,_type,ref _data); -} -static unsafe void Test_ClearTexImage_20255() { - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.ClearTexImage(_texture,_level,_format,_type,_data); -} -static unsafe void Test_ClearTexImage_20256() { - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.ClearTexImage(_texture,_level,_format,_type,_data); -} -static unsafe void Test_ClearTexImage_20257() { - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.ClearTexImage(_texture,_level,_format,_type,_data); -} -static unsafe void Test_ClearTexImage_20258() { - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.ClearTexImage(_texture,_level,_format,_type,_data); -} -static unsafe void Test_ClearTexImage_20259() { - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.ClearTexImage(_texture,_level,_format,_type,ref _data); -} -static unsafe void Test_ClearTexSubImage_20260() { - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.ClearTexSubImage(_texture,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_data); -} -static unsafe void Test_ClearTexSubImage_20261() { - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.ClearTexSubImage(_texture,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_data); -} -static unsafe void Test_ClearTexSubImage_20262() { - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.ClearTexSubImage(_texture,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_data); -} -static unsafe void Test_ClearTexSubImage_20263() { - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.ClearTexSubImage(_texture,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_data); -} -static unsafe void Test_ClearTexSubImage_20264() { - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.ClearTexSubImage(_texture,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,ref _data); -} -static unsafe void Test_ClearTexSubImage_20265() { - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.ClearTexSubImage(_texture,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_data); -} -static unsafe void Test_ClearTexSubImage_20266() { - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.ClearTexSubImage(_texture,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_data); -} -static unsafe void Test_ClearTexSubImage_20267() { - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.ClearTexSubImage(_texture,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_data); -} -static unsafe void Test_ClearTexSubImage_20268() { - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.ClearTexSubImage(_texture,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_data); -} -static unsafe void Test_ClearTexSubImage_20269() { - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.ClearTexSubImage(_texture,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,ref _data); -} -static unsafe void Test_ClientActiveTexture_20270() { - OpenTK.Graphics.OpenGL.TextureUnit _texture = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.GL.ClientActiveTexture(_texture); -} -static unsafe void Test_ClientWaitSync_20271() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.OpenGL.ClientWaitSyncFlags _flags = default(OpenTK.Graphics.OpenGL.ClientWaitSyncFlags); - System.Int64 _timeout = default(System.Int64); - OpenTK.Graphics.OpenGL.WaitSyncStatus r = OpenTK.Graphics.OpenGL.GL.ClientWaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_ClientWaitSync_20272() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.OpenGL.ClientWaitSyncFlags _flags = default(OpenTK.Graphics.OpenGL.ClientWaitSyncFlags); - System.UInt64 _timeout = default(System.UInt64); - OpenTK.Graphics.OpenGL.WaitSyncStatus r = OpenTK.Graphics.OpenGL.GL.ClientWaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_ClientWaitSync_20273() { - System.IntPtr _sync = default(System.IntPtr); - System.Int32 _flags = default(System.Int32); - System.Int64 _timeout = default(System.Int64); - OpenTK.Graphics.OpenGL.WaitSyncStatus r = OpenTK.Graphics.OpenGL.GL.ClientWaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_ClientWaitSync_20274() { - System.IntPtr _sync = default(System.IntPtr); - System.Int32 _flags = default(System.Int32); - System.UInt64 _timeout = default(System.UInt64); - OpenTK.Graphics.OpenGL.WaitSyncStatus r = OpenTK.Graphics.OpenGL.GL.ClientWaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_ClientWaitSync_20275() { - System.IntPtr _sync = default(System.IntPtr); - System.UInt32 _flags = default(System.UInt32); - System.UInt64 _timeout = default(System.UInt64); - OpenTK.Graphics.OpenGL.WaitSyncStatus r = OpenTK.Graphics.OpenGL.GL.ClientWaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_ClipPlane_20276() { - OpenTK.Graphics.OpenGL.ClipPlaneName _plane = default(OpenTK.Graphics.OpenGL.ClipPlaneName); - System.Double[] _equation = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.ClipPlane(_plane,_equation); -} -static unsafe void Test_ClipPlane_20277() { - OpenTK.Graphics.OpenGL.ClipPlaneName _plane = default(OpenTK.Graphics.OpenGL.ClipPlaneName); - System.Double _equation = default(System.Double); - OpenTK.Graphics.OpenGL.GL.ClipPlane(_plane,ref _equation); -} -static unsafe void Test_ClipPlane_20278() { - OpenTK.Graphics.OpenGL.ClipPlaneName _plane = default(OpenTK.Graphics.OpenGL.ClipPlaneName); - System.Double* _equation = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.ClipPlane(_plane,_equation); -} -static unsafe void Test_Color3_20279() { - System.SByte _red = default(System.SByte); - System.SByte _green = default(System.SByte); - System.SByte _blue = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.Color3(_red,_green,_blue); -} -static unsafe void Test_Color3_20280() { - System.SByte[] _v = default(System.SByte[]); - OpenTK.Graphics.OpenGL.GL.Color3(_v); -} -static unsafe void Test_Color3_20281() { - System.SByte _v = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.Color3(ref _v); -} -static unsafe void Test_Color3_20282() { - System.SByte* _v = default(System.SByte*); - OpenTK.Graphics.OpenGL.GL.Color3(_v); -} -static unsafe void Test_Color3_20283() { - System.Double _red = default(System.Double); - System.Double _green = default(System.Double); - System.Double _blue = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Color3(_red,_green,_blue); -} -static unsafe void Test_Color3_20284() { - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Color3(_v); -} -static unsafe void Test_Color3_20285() { - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Color3(ref _v); -} -static unsafe void Test_Color3_20286() { - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Color3(_v); -} -static unsafe void Test_Color3_20287() { - System.Single _red = default(System.Single); - System.Single _green = default(System.Single); - System.Single _blue = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Color3(_red,_green,_blue); -} -static unsafe void Test_Color3_20288() { - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Color3(_v); -} -static unsafe void Test_Color3_20289() { - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Color3(ref _v); -} -static unsafe void Test_Color3_20290() { - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Color3(_v); -} -static unsafe void Test_Color3_20291() { - System.Int32 _red = default(System.Int32); - System.Int32 _green = default(System.Int32); - System.Int32 _blue = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Color3(_red,_green,_blue); -} -static unsafe void Test_Color3_20292() { - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Color3(_v); -} -static unsafe void Test_Color3_20293() { - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Color3(ref _v); -} -static unsafe void Test_Color3_20294() { - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Color3(_v); -} -static unsafe void Test_Color3_20295() { - System.Int16 _red = default(System.Int16); - System.Int16 _green = default(System.Int16); - System.Int16 _blue = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Color3(_red,_green,_blue); -} -static unsafe void Test_Color3_20296() { - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.Color3(_v); -} -static unsafe void Test_Color3_20297() { - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Color3(ref _v); -} -static unsafe void Test_Color3_20298() { - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Color3(_v); -} -static unsafe void Test_Color3_20299() { - System.Byte _red = default(System.Byte); - System.Byte _green = default(System.Byte); - System.Byte _blue = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Color3(_red,_green,_blue); -} -static unsafe void Test_Color3_20300() { - System.Byte[] _v = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.Color3(_v); -} -static unsafe void Test_Color3_20301() { - System.Byte _v = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Color3(ref _v); -} -static unsafe void Test_Color3_20302() { - System.Byte* _v = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.Color3(_v); -} -static unsafe void Test_Color3_20303() { - System.UInt32 _red = default(System.UInt32); - System.UInt32 _green = default(System.UInt32); - System.UInt32 _blue = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Color3(_red,_green,_blue); -} -static unsafe void Test_Color3_20304() { - System.UInt32[] _v = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Color3(_v); -} -static unsafe void Test_Color3_20305() { - System.UInt32 _v = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Color3(ref _v); -} -static unsafe void Test_Color3_20306() { - System.UInt32* _v = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Color3(_v); -} -static unsafe void Test_Color3_20307() { - System.UInt16 _red = default(System.UInt16); - System.UInt16 _green = default(System.UInt16); - System.UInt16 _blue = default(System.UInt16); - OpenTK.Graphics.OpenGL.GL.Color3(_red,_green,_blue); -} -static unsafe void Test_Color3_20308() { - System.UInt16[] _v = default(System.UInt16[]); - OpenTK.Graphics.OpenGL.GL.Color3(_v); -} -static unsafe void Test_Color3_20309() { - System.UInt16 _v = default(System.UInt16); - OpenTK.Graphics.OpenGL.GL.Color3(ref _v); -} -static unsafe void Test_Color3_20310() { - System.UInt16* _v = default(System.UInt16*); - OpenTK.Graphics.OpenGL.GL.Color3(_v); -} -static unsafe void Test_Color4_20311() { - System.SByte _red = default(System.SByte); - System.SByte _green = default(System.SByte); - System.SByte _blue = default(System.SByte); - System.SByte _alpha = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.Color4(_red,_green,_blue,_alpha); -} -static unsafe void Test_Color4_20312() { - System.SByte[] _v = default(System.SByte[]); - OpenTK.Graphics.OpenGL.GL.Color4(_v); -} -static unsafe void Test_Color4_20313() { - System.SByte _v = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.Color4(ref _v); -} -static unsafe void Test_Color4_20314() { - System.SByte* _v = default(System.SByte*); - OpenTK.Graphics.OpenGL.GL.Color4(_v); -} -static unsafe void Test_Color4_20315() { - System.Double _red = default(System.Double); - System.Double _green = default(System.Double); - System.Double _blue = default(System.Double); - System.Double _alpha = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Color4(_red,_green,_blue,_alpha); -} -static unsafe void Test_Color4_20316() { - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Color4(_v); -} -static unsafe void Test_Color4_20317() { - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Color4(ref _v); -} -static unsafe void Test_Color4_20318() { - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Color4(_v); -} -static unsafe void Test_Color4_20319() { - System.Single _red = default(System.Single); - System.Single _green = default(System.Single); - System.Single _blue = default(System.Single); - System.Single _alpha = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Color4(_red,_green,_blue,_alpha); -} -static unsafe void Test_Color4_20320() { - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Color4(_v); -} -static unsafe void Test_Color4_20321() { - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Color4(ref _v); -} -static unsafe void Test_Color4_20322() { - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Color4(_v); -} -static unsafe void Test_Color4_20323() { - System.Int32 _red = default(System.Int32); - System.Int32 _green = default(System.Int32); - System.Int32 _blue = default(System.Int32); - System.Int32 _alpha = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Color4(_red,_green,_blue,_alpha); -} -static unsafe void Test_Color4_20324() { - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Color4(_v); -} -static unsafe void Test_Color4_20325() { - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Color4(ref _v); -} -static unsafe void Test_Color4_20326() { - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Color4(_v); -} -static unsafe void Test_Color4_20327() { - System.Int16 _red = default(System.Int16); - System.Int16 _green = default(System.Int16); - System.Int16 _blue = default(System.Int16); - System.Int16 _alpha = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Color4(_red,_green,_blue,_alpha); -} -static unsafe void Test_Color4_20328() { - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.Color4(_v); -} -static unsafe void Test_Color4_20329() { - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Color4(ref _v); -} -static unsafe void Test_Color4_20330() { - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Color4(_v); -} -static unsafe void Test_Color4_20331() { - System.Byte _red = default(System.Byte); - System.Byte _green = default(System.Byte); - System.Byte _blue = default(System.Byte); - System.Byte _alpha = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Color4(_red,_green,_blue,_alpha); -} -static unsafe void Test_Color4_20332() { - System.Byte[] _v = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.Color4(_v); -} -static unsafe void Test_Color4_20333() { - System.Byte _v = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Color4(ref _v); -} -static unsafe void Test_Color4_20334() { - System.Byte* _v = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.Color4(_v); -} -static unsafe void Test_Color4_20335() { - System.UInt32 _red = default(System.UInt32); - System.UInt32 _green = default(System.UInt32); - System.UInt32 _blue = default(System.UInt32); - System.UInt32 _alpha = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Color4(_red,_green,_blue,_alpha); -} -static unsafe void Test_Color4_20336() { - System.UInt32[] _v = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Color4(_v); -} -static unsafe void Test_Color4_20337() { - System.UInt32 _v = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Color4(ref _v); -} -static unsafe void Test_Color4_20338() { - System.UInt32* _v = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Color4(_v); -} -static unsafe void Test_Color4_20339() { - System.UInt16 _red = default(System.UInt16); - System.UInt16 _green = default(System.UInt16); - System.UInt16 _blue = default(System.UInt16); - System.UInt16 _alpha = default(System.UInt16); - OpenTK.Graphics.OpenGL.GL.Color4(_red,_green,_blue,_alpha); -} -static unsafe void Test_Color4_20340() { - System.UInt16[] _v = default(System.UInt16[]); - OpenTK.Graphics.OpenGL.GL.Color4(_v); -} -static unsafe void Test_Color4_20341() { - System.UInt16 _v = default(System.UInt16); - OpenTK.Graphics.OpenGL.GL.Color4(ref _v); -} -static unsafe void Test_Color4_20342() { - System.UInt16* _v = default(System.UInt16*); - OpenTK.Graphics.OpenGL.GL.Color4(_v); -} -static unsafe void Test_ColorMask_20343() { - System.Boolean _red = default(System.Boolean); - System.Boolean _green = default(System.Boolean); - System.Boolean _blue = default(System.Boolean); - System.Boolean _alpha = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.ColorMask(_red,_green,_blue,_alpha); -} -static unsafe void Test_ColorMask_20344() { - System.Int32 _index = default(System.Int32); - System.Boolean _r = default(System.Boolean); - System.Boolean _g = default(System.Boolean); - System.Boolean _b = default(System.Boolean); - System.Boolean _a = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.ColorMask(_index,_r,_g,_b,_a); -} -static unsafe void Test_ColorMask_20345() { - System.UInt32 _index = default(System.UInt32); - System.Boolean _r = default(System.Boolean); - System.Boolean _g = default(System.Boolean); - System.Boolean _b = default(System.Boolean); - System.Boolean _a = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.ColorMask(_index,_r,_g,_b,_a); -} -static unsafe void Test_ColorMaterial_20346() { - OpenTK.Graphics.OpenGL.MaterialFace _face = default(OpenTK.Graphics.OpenGL.MaterialFace); - OpenTK.Graphics.OpenGL.ColorMaterialParameter _mode = default(OpenTK.Graphics.OpenGL.ColorMaterialParameter); - OpenTK.Graphics.OpenGL.GL.ColorMaterial(_face,_mode); -} -static unsafe void Test_ColorP3_20347() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Int32 _color = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ColorP3(_type,_color); -} -static unsafe void Test_ColorP3_20348() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.UInt32 _color = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.ColorP3(_type,_color); -} -static unsafe void Test_ColorP3_20349() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Int32* _color = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.ColorP3(_type,_color); -} -static unsafe void Test_ColorP3_20350() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.UInt32* _color = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.ColorP3(_type,_color); -} -static unsafe void Test_ColorP4_20351() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Int32 _color = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ColorP4(_type,_color); -} -static unsafe void Test_ColorP4_20352() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.UInt32 _color = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.ColorP4(_type,_color); -} -static unsafe void Test_ColorP4_20353() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Int32* _color = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.ColorP4(_type,_color); -} -static unsafe void Test_ColorP4_20354() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.UInt32* _color = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.ColorP4(_type,_color); -} -static unsafe void Test_ColorPointer_20355() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ColorPointerType _type = default(OpenTK.Graphics.OpenGL.ColorPointerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.ColorPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_ColorPointer_20356() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ColorPointerType _type = default(OpenTK.Graphics.OpenGL.ColorPointerType); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.ColorPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_ColorPointer_20357() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ColorPointerType _type = default(OpenTK.Graphics.OpenGL.ColorPointerType); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.ColorPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_ColorPointer_20358() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ColorPointerType _type = default(OpenTK.Graphics.OpenGL.ColorPointerType); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.ColorPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_ColorPointer_20359() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ColorPointerType _type = default(OpenTK.Graphics.OpenGL.ColorPointerType); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.ColorPointer(_size,_type,_stride,ref _pointer); -} -static unsafe void Test_ColorSubTable_20360() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - System.Int32 _start = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.ColorSubTable(_target,_start,_count,_format,_type,_data); -} -static unsafe void Test_ColorSubTable_20361() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - System.Int32 _start = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.ColorSubTable(_target,_start,_count,_format,_type,_data); -} -static unsafe void Test_ColorSubTable_20362() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - System.Int32 _start = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.ColorSubTable(_target,_start,_count,_format,_type,_data); -} -static unsafe void Test_ColorSubTable_20363() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - System.Int32 _start = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.ColorSubTable(_target,_start,_count,_format,_type,_data); -} -static unsafe void Test_ColorSubTable_20364() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - System.Int32 _start = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.ColorSubTable(_target,_start,_count,_format,_type,ref _data); -} -static unsafe void Test_ColorTable_20365() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _table = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.ColorTable(_target,_internalformat,_width,_format,_type,_table); -} -static unsafe void Test_ColorTable_20366() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _table = default(int[]); - OpenTK.Graphics.OpenGL.GL.ColorTable(_target,_internalformat,_width,_format,_type,_table); -} -static unsafe void Test_ColorTable_20367() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _table = default(int[,]); - OpenTK.Graphics.OpenGL.GL.ColorTable(_target,_internalformat,_width,_format,_type,_table); -} -static unsafe void Test_ColorTable_20368() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _table = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.ColorTable(_target,_internalformat,_width,_format,_type,_table); -} -static unsafe void Test_ColorTable_20369() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _table = default(int); - OpenTK.Graphics.OpenGL.GL.ColorTable(_target,_internalformat,_width,_format,_type,ref _table); -} -static unsafe void Test_ColorTableParameter_20370() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - OpenTK.Graphics.OpenGL.ColorTableParameterPName _pname = default(OpenTK.Graphics.OpenGL.ColorTableParameterPName); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.ColorTableParameter(_target,_pname,_params); -} -static unsafe void Test_ColorTableParameter_20371() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - OpenTK.Graphics.OpenGL.ColorTableParameterPName _pname = default(OpenTK.Graphics.OpenGL.ColorTableParameterPName); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ColorTableParameter(_target,_pname,ref _params); -} -static unsafe void Test_ColorTableParameter_20372() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - OpenTK.Graphics.OpenGL.ColorTableParameterPName _pname = default(OpenTK.Graphics.OpenGL.ColorTableParameterPName); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.ColorTableParameter(_target,_pname,_params); -} -static unsafe void Test_ColorTableParameter_20373() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - OpenTK.Graphics.OpenGL.ColorTableParameterPName _pname = default(OpenTK.Graphics.OpenGL.ColorTableParameterPName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.ColorTableParameter(_target,_pname,_params); -} -static unsafe void Test_ColorTableParameter_20374() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - OpenTK.Graphics.OpenGL.ColorTableParameterPName _pname = default(OpenTK.Graphics.OpenGL.ColorTableParameterPName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ColorTableParameter(_target,_pname,ref _params); -} -static unsafe void Test_ColorTableParameter_20375() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - OpenTK.Graphics.OpenGL.ColorTableParameterPName _pname = default(OpenTK.Graphics.OpenGL.ColorTableParameterPName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.ColorTableParameter(_target,_pname,_params); -} -static unsafe void Test_CompileShader_20376() { - System.Int32 _shader = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.CompileShader(_shader); -} -static unsafe void Test_CompileShader_20377() { - System.UInt32 _shader = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.CompileShader(_shader); -} -static unsafe void Test_CompressedTexImage1D_20378() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.CompressedTexImage1D(_target,_level,_internalformat,_width,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage1D_20379() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.CompressedTexImage1D(_target,_level,_internalformat,_width,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage1D_20380() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.CompressedTexImage1D(_target,_level,_internalformat,_width,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage1D_20381() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.CompressedTexImage1D(_target,_level,_internalformat,_width,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage1D_20382() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.CompressedTexImage1D(_target,_level,_internalformat,_width,_border,_imageSize,ref _data); -} -static unsafe void Test_CompressedTexImage2D_20383() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_20384() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_20385() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_20386() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_20387() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,ref _data); -} -static unsafe void Test_CompressedTexImage3D_20388() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage3D_20389() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage3D_20390() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage3D_20391() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage3D_20392() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,ref _data); -} -static unsafe void Test_CompressedTexSubImage1D_20393() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.CompressedTexSubImage1D(_target,_level,_xoffset,_width,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage1D_20394() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.CompressedTexSubImage1D(_target,_level,_xoffset,_width,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage1D_20395() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.CompressedTexSubImage1D(_target,_level,_xoffset,_width,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage1D_20396() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.CompressedTexSubImage1D(_target,_level,_xoffset,_width,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage1D_20397() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.CompressedTexSubImage1D(_target,_level,_xoffset,_width,_format,_imageSize,ref _data); -} -static unsafe void Test_CompressedTexSubImage2D_20398() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_20399() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_20400() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_20401() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_20402() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,ref _data); -} -static unsafe void Test_CompressedTexSubImage3D_20403() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage3D_20404() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage3D_20405() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage3D_20406() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage3D_20407() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,ref _data); -} -static unsafe void Test_ConvolutionFilter1D_20408() { - OpenTK.Graphics.OpenGL.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL.ConvolutionTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _image = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.ConvolutionFilter1D(_target,_internalformat,_width,_format,_type,_image); -} -static unsafe void Test_ConvolutionFilter1D_20409() { - OpenTK.Graphics.OpenGL.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL.ConvolutionTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _image = default(int[]); - OpenTK.Graphics.OpenGL.GL.ConvolutionFilter1D(_target,_internalformat,_width,_format,_type,_image); -} -static unsafe void Test_ConvolutionFilter1D_20410() { - OpenTK.Graphics.OpenGL.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL.ConvolutionTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _image = default(int[,]); - OpenTK.Graphics.OpenGL.GL.ConvolutionFilter1D(_target,_internalformat,_width,_format,_type,_image); -} -static unsafe void Test_ConvolutionFilter1D_20411() { - OpenTK.Graphics.OpenGL.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL.ConvolutionTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _image = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.ConvolutionFilter1D(_target,_internalformat,_width,_format,_type,_image); -} -static unsafe void Test_ConvolutionFilter1D_20412() { - OpenTK.Graphics.OpenGL.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL.ConvolutionTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _image = default(int); - OpenTK.Graphics.OpenGL.GL.ConvolutionFilter1D(_target,_internalformat,_width,_format,_type,ref _image); -} -static unsafe void Test_ConvolutionFilter2D_20413() { - OpenTK.Graphics.OpenGL.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL.ConvolutionTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _image = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.ConvolutionFilter2D(_target,_internalformat,_width,_height,_format,_type,_image); -} -static unsafe void Test_ConvolutionFilter2D_20414() { - OpenTK.Graphics.OpenGL.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL.ConvolutionTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _image = default(int[]); - OpenTK.Graphics.OpenGL.GL.ConvolutionFilter2D(_target,_internalformat,_width,_height,_format,_type,_image); -} -static unsafe void Test_ConvolutionFilter2D_20415() { - OpenTK.Graphics.OpenGL.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL.ConvolutionTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _image = default(int[,]); - OpenTK.Graphics.OpenGL.GL.ConvolutionFilter2D(_target,_internalformat,_width,_height,_format,_type,_image); -} -static unsafe void Test_ConvolutionFilter2D_20416() { - OpenTK.Graphics.OpenGL.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL.ConvolutionTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _image = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.ConvolutionFilter2D(_target,_internalformat,_width,_height,_format,_type,_image); -} -static unsafe void Test_ConvolutionFilter2D_20417() { - OpenTK.Graphics.OpenGL.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL.ConvolutionTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _image = default(int); - OpenTK.Graphics.OpenGL.GL.ConvolutionFilter2D(_target,_internalformat,_width,_height,_format,_type,ref _image); -} -static unsafe void Test_ConvolutionParameter_20418() { - OpenTK.Graphics.OpenGL.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL.ConvolutionTarget); - OpenTK.Graphics.OpenGL.ConvolutionParameter _pname = default(OpenTK.Graphics.OpenGL.ConvolutionParameter); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ConvolutionParameter(_target,_pname,_params); -} -static unsafe void Test_ConvolutionParameter_20419() { - OpenTK.Graphics.OpenGL.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL.ConvolutionTarget); - OpenTK.Graphics.OpenGL.ConvolutionParameter _pname = default(OpenTK.Graphics.OpenGL.ConvolutionParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.ConvolutionParameter(_target,_pname,_params); -} -static unsafe void Test_ConvolutionParameter_20420() { - OpenTK.Graphics.OpenGL.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL.ConvolutionTarget); - OpenTK.Graphics.OpenGL.ConvolutionParameter _pname = default(OpenTK.Graphics.OpenGL.ConvolutionParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.ConvolutionParameter(_target,_pname,_params); -} -static unsafe void Test_ConvolutionParameter_20421() { - OpenTK.Graphics.OpenGL.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL.ConvolutionTarget); - OpenTK.Graphics.OpenGL.ConvolutionParameter _pname = default(OpenTK.Graphics.OpenGL.ConvolutionParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ConvolutionParameter(_target,_pname,_params); -} -static unsafe void Test_ConvolutionParameter_20422() { - OpenTK.Graphics.OpenGL.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL.ConvolutionTarget); - OpenTK.Graphics.OpenGL.ConvolutionParameter _pname = default(OpenTK.Graphics.OpenGL.ConvolutionParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.ConvolutionParameter(_target,_pname,_params); -} -static unsafe void Test_ConvolutionParameter_20423() { - OpenTK.Graphics.OpenGL.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL.ConvolutionTarget); - OpenTK.Graphics.OpenGL.ConvolutionParameter _pname = default(OpenTK.Graphics.OpenGL.ConvolutionParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.ConvolutionParameter(_target,_pname,_params); -} -static unsafe void Test_CopyBufferSubData_20424() { - OpenTK.Graphics.OpenGL.BufferTarget _readTarget = default(OpenTK.Graphics.OpenGL.BufferTarget); - OpenTK.Graphics.OpenGL.BufferTarget _writeTarget = default(OpenTK.Graphics.OpenGL.BufferTarget); - System.IntPtr _readOffset = default(System.IntPtr); - System.IntPtr _writeOffset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.CopyBufferSubData(_readTarget,_writeTarget,_readOffset,_writeOffset,_size); -} -static unsafe void Test_CopyColorSubTable_20425() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - System.Int32 _start = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.CopyColorSubTable(_target,_start,_x,_y,_width); -} -static unsafe void Test_CopyColorTable_20426() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.CopyColorTable(_target,_internalformat,_x,_y,_width); -} -static unsafe void Test_CopyConvolutionFilter1D_20427() { - OpenTK.Graphics.OpenGL.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL.ConvolutionTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.CopyConvolutionFilter1D(_target,_internalformat,_x,_y,_width); -} -static unsafe void Test_CopyConvolutionFilter2D_20428() { - OpenTK.Graphics.OpenGL.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL.ConvolutionTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.CopyConvolutionFilter2D(_target,_internalformat,_x,_y,_width,_height); -} -static unsafe void Test_CopyImageSubData_20429() { - System.Int32 _srcName = default(System.Int32); - OpenTK.Graphics.OpenGL.ImageTarget _srcTarget = default(OpenTK.Graphics.OpenGL.ImageTarget); - System.Int32 _srcLevel = default(System.Int32); - System.Int32 _srcX = default(System.Int32); - System.Int32 _srcY = default(System.Int32); - System.Int32 _srcZ = default(System.Int32); - System.Int32 _dstName = default(System.Int32); - OpenTK.Graphics.OpenGL.ImageTarget _dstTarget = default(OpenTK.Graphics.OpenGL.ImageTarget); - System.Int32 _dstLevel = default(System.Int32); - System.Int32 _dstX = default(System.Int32); - System.Int32 _dstY = default(System.Int32); - System.Int32 _dstZ = default(System.Int32); - System.Int32 _srcWidth = default(System.Int32); - System.Int32 _srcHeight = default(System.Int32); - System.Int32 _srcDepth = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.CopyImageSubData(_srcName,_srcTarget,_srcLevel,_srcX,_srcY,_srcZ,_dstName,_dstTarget,_dstLevel,_dstX,_dstY,_dstZ,_srcWidth,_srcHeight,_srcDepth); -} -static unsafe void Test_CopyImageSubData_20430() { - System.UInt32 _srcName = default(System.UInt32); - OpenTK.Graphics.OpenGL.ImageTarget _srcTarget = default(OpenTK.Graphics.OpenGL.ImageTarget); - System.Int32 _srcLevel = default(System.Int32); - System.Int32 _srcX = default(System.Int32); - System.Int32 _srcY = default(System.Int32); - System.Int32 _srcZ = default(System.Int32); - System.UInt32 _dstName = default(System.UInt32); - OpenTK.Graphics.OpenGL.ImageTarget _dstTarget = default(OpenTK.Graphics.OpenGL.ImageTarget); - System.Int32 _dstLevel = default(System.Int32); - System.Int32 _dstX = default(System.Int32); - System.Int32 _dstY = default(System.Int32); - System.Int32 _dstZ = default(System.Int32); - System.Int32 _srcWidth = default(System.Int32); - System.Int32 _srcHeight = default(System.Int32); - System.Int32 _srcDepth = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.CopyImageSubData(_srcName,_srcTarget,_srcLevel,_srcX,_srcY,_srcZ,_dstName,_dstTarget,_dstLevel,_dstX,_dstY,_dstZ,_srcWidth,_srcHeight,_srcDepth); -} -static unsafe void Test_CopyPixels_20431() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelCopyType _type = default(OpenTK.Graphics.OpenGL.PixelCopyType); - OpenTK.Graphics.OpenGL.GL.CopyPixels(_x,_y,_width,_height,_type); -} -static unsafe void Test_CopyTexImage1D_20432() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.CopyTexImage1D(_target,_level,_internalformat,_x,_y,_width,_border); -} -static unsafe void Test_CopyTexImage2D_20433() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.CopyTexImage2D(_target,_level,_internalformat,_x,_y,_width,_height,_border); -} -static unsafe void Test_CopyTexSubImage1D_20434() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.CopyTexSubImage1D(_target,_level,_xoffset,_x,_y,_width); -} -static unsafe void Test_CopyTexSubImage2D_20435() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.CopyTexSubImage2D(_target,_level,_xoffset,_yoffset,_x,_y,_width,_height); -} -static unsafe void Test_CopyTexSubImage3D_20436() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.CopyTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_x,_y,_width,_height); -} -static unsafe void Test_CreateProgram_20437() { - System.Int32 r = OpenTK.Graphics.OpenGL.GL.CreateProgram(); -} -static unsafe void Test_CreateShader_20438() { - OpenTK.Graphics.OpenGL.ShaderType _type = default(OpenTK.Graphics.OpenGL.ShaderType); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.CreateShader(_type); -} -static unsafe void Test_CreateShaderProgram_20439() { - OpenTK.Graphics.OpenGL.ShaderType _type = default(OpenTK.Graphics.OpenGL.ShaderType); - System.Int32 _count = default(System.Int32); - System.String[] _strings = default(System.String[]); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.CreateShaderProgram(_type,_count,_strings); -} -static unsafe void Test_CullFace_20440() { - OpenTK.Graphics.OpenGL.CullFaceMode _mode = default(OpenTK.Graphics.OpenGL.CullFaceMode); - OpenTK.Graphics.OpenGL.GL.CullFace(_mode); -} -static unsafe void Test_DebugMessageCallback_20441() { - OpenTK.Graphics.OpenGL.DebugProc _callback = default(OpenTK.Graphics.OpenGL.DebugProc); - System.IntPtr _userParam = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_20442() { - OpenTK.Graphics.OpenGL.DebugProc _callback = default(OpenTK.Graphics.OpenGL.DebugProc); - int[] _userParam = default(int[]); - OpenTK.Graphics.OpenGL.GL.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_20443() { - OpenTK.Graphics.OpenGL.DebugProc _callback = default(OpenTK.Graphics.OpenGL.DebugProc); - int[,] _userParam = default(int[,]); - OpenTK.Graphics.OpenGL.GL.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_20444() { - OpenTK.Graphics.OpenGL.DebugProc _callback = default(OpenTK.Graphics.OpenGL.DebugProc); - int[,,] _userParam = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_20445() { - OpenTK.Graphics.OpenGL.DebugProc _callback = default(OpenTK.Graphics.OpenGL.DebugProc); - int _userParam = default(int); - OpenTK.Graphics.OpenGL.GL.DebugMessageCallback(_callback,ref _userParam); -} -static unsafe void Test_DebugMessageControl_20446() { - OpenTK.Graphics.OpenGL.DebugSourceControl _source = default(OpenTK.Graphics.OpenGL.DebugSourceControl); - OpenTK.Graphics.OpenGL.DebugTypeControl _type = default(OpenTK.Graphics.OpenGL.DebugTypeControl); - OpenTK.Graphics.OpenGL.DebugSeverityControl _severity = default(OpenTK.Graphics.OpenGL.DebugSeverityControl); - System.Int32 _count = default(System.Int32); - System.Int32[] _ids = default(System.Int32[]); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_20447() { - OpenTK.Graphics.OpenGL.DebugSourceControl _source = default(OpenTK.Graphics.OpenGL.DebugSourceControl); - OpenTK.Graphics.OpenGL.DebugTypeControl _type = default(OpenTK.Graphics.OpenGL.DebugTypeControl); - OpenTK.Graphics.OpenGL.DebugSeverityControl _severity = default(OpenTK.Graphics.OpenGL.DebugSeverityControl); - System.Int32 _count = default(System.Int32); - System.Int32 _ids = default(System.Int32); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.DebugMessageControl(_source,_type,_severity,_count,ref _ids,_enabled); -} -static unsafe void Test_DebugMessageControl_20448() { - OpenTK.Graphics.OpenGL.DebugSourceControl _source = default(OpenTK.Graphics.OpenGL.DebugSourceControl); - OpenTK.Graphics.OpenGL.DebugTypeControl _type = default(OpenTK.Graphics.OpenGL.DebugTypeControl); - OpenTK.Graphics.OpenGL.DebugSeverityControl _severity = default(OpenTK.Graphics.OpenGL.DebugSeverityControl); - System.Int32 _count = default(System.Int32); - System.Int32* _ids = default(System.Int32*); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_20449() { - OpenTK.Graphics.OpenGL.DebugSourceControl _source = default(OpenTK.Graphics.OpenGL.DebugSourceControl); - OpenTK.Graphics.OpenGL.DebugTypeControl _type = default(OpenTK.Graphics.OpenGL.DebugTypeControl); - OpenTK.Graphics.OpenGL.DebugSeverityControl _severity = default(OpenTK.Graphics.OpenGL.DebugSeverityControl); - System.Int32 _count = default(System.Int32); - System.UInt32[] _ids = default(System.UInt32[]); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_20450() { - OpenTK.Graphics.OpenGL.DebugSourceControl _source = default(OpenTK.Graphics.OpenGL.DebugSourceControl); - OpenTK.Graphics.OpenGL.DebugTypeControl _type = default(OpenTK.Graphics.OpenGL.DebugTypeControl); - OpenTK.Graphics.OpenGL.DebugSeverityControl _severity = default(OpenTK.Graphics.OpenGL.DebugSeverityControl); - System.Int32 _count = default(System.Int32); - System.UInt32 _ids = default(System.UInt32); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.DebugMessageControl(_source,_type,_severity,_count,ref _ids,_enabled); -} -static unsafe void Test_DebugMessageControl_20451() { - OpenTK.Graphics.OpenGL.DebugSourceControl _source = default(OpenTK.Graphics.OpenGL.DebugSourceControl); - OpenTK.Graphics.OpenGL.DebugTypeControl _type = default(OpenTK.Graphics.OpenGL.DebugTypeControl); - OpenTK.Graphics.OpenGL.DebugSeverityControl _severity = default(OpenTK.Graphics.OpenGL.DebugSeverityControl); - System.Int32 _count = default(System.Int32); - System.UInt32* _ids = default(System.UInt32*); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageInsert_20452() { - OpenTK.Graphics.OpenGL.DebugSourceExternal _source = default(OpenTK.Graphics.OpenGL.DebugSourceExternal); - OpenTK.Graphics.OpenGL.DebugType _type = default(OpenTK.Graphics.OpenGL.DebugType); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.DebugSeverity _severity = default(OpenTK.Graphics.OpenGL.DebugSeverity); - System.Int32 _length = default(System.Int32); - System.String _buf = default(System.String); - OpenTK.Graphics.OpenGL.GL.DebugMessageInsert(_source,_type,_id,_severity,_length,_buf); -} -static unsafe void Test_DebugMessageInsert_20453() { - OpenTK.Graphics.OpenGL.DebugSourceExternal _source = default(OpenTK.Graphics.OpenGL.DebugSourceExternal); - OpenTK.Graphics.OpenGL.DebugType _type = default(OpenTK.Graphics.OpenGL.DebugType); - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.DebugSeverity _severity = default(OpenTK.Graphics.OpenGL.DebugSeverity); - System.Int32 _length = default(System.Int32); - System.String _buf = default(System.String); - OpenTK.Graphics.OpenGL.GL.DebugMessageInsert(_source,_type,_id,_severity,_length,_buf); -} -static unsafe void Test_DeleteBuffer_20454() { - System.Int32 _buffers = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DeleteBuffer(_buffers); -} -static unsafe void Test_DeleteBuffer_20455() { - System.UInt32 _buffers = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.DeleteBuffer(_buffers); -} -static unsafe void Test_DeleteBuffers_20456() { - System.Int32 _n = default(System.Int32); - System.Int32[] _buffers = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.DeleteBuffers(_n,_buffers); -} -static unsafe void Test_DeleteBuffers_20457() { - System.Int32 _n = default(System.Int32); - System.Int32 _buffers = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DeleteBuffers(_n,ref _buffers); -} -static unsafe void Test_DeleteBuffers_20458() { - System.Int32 _n = default(System.Int32); - System.Int32* _buffers = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.DeleteBuffers(_n,_buffers); -} -static unsafe void Test_DeleteBuffers_20459() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _buffers = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.DeleteBuffers(_n,_buffers); -} -static unsafe void Test_DeleteBuffers_20460() { - System.Int32 _n = default(System.Int32); - System.UInt32 _buffers = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.DeleteBuffers(_n,ref _buffers); -} -static unsafe void Test_DeleteBuffers_20461() { - System.Int32 _n = default(System.Int32); - System.UInt32* _buffers = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.DeleteBuffers(_n,_buffers); -} -static unsafe void Test_DeleteFramebuffer_20462() { - System.Int32 _framebuffers = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DeleteFramebuffer(_framebuffers); -} -static unsafe void Test_DeleteFramebuffer_20463() { - System.UInt32 _framebuffers = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.DeleteFramebuffer(_framebuffers); -} -static unsafe void Test_DeleteFramebuffers_20464() { - System.Int32 _n = default(System.Int32); - System.Int32[] _framebuffers = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.DeleteFramebuffers(_n,_framebuffers); -} -static unsafe void Test_DeleteFramebuffers_20465() { - System.Int32 _n = default(System.Int32); - System.Int32 _framebuffers = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DeleteFramebuffers(_n,ref _framebuffers); -} -static unsafe void Test_DeleteFramebuffers_20466() { - System.Int32 _n = default(System.Int32); - System.Int32* _framebuffers = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.DeleteFramebuffers(_n,_framebuffers); -} -static unsafe void Test_DeleteFramebuffers_20467() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _framebuffers = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.DeleteFramebuffers(_n,_framebuffers); -} -static unsafe void Test_DeleteFramebuffers_20468() { - System.Int32 _n = default(System.Int32); - System.UInt32 _framebuffers = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.DeleteFramebuffers(_n,ref _framebuffers); -} -static unsafe void Test_DeleteFramebuffers_20469() { - System.Int32 _n = default(System.Int32); - System.UInt32* _framebuffers = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.DeleteFramebuffers(_n,_framebuffers); -} -static unsafe void Test_DeleteLists_20470() { - System.Int32 _list = default(System.Int32); - System.Int32 _range = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DeleteLists(_list,_range); -} -static unsafe void Test_DeleteLists_20471() { - System.UInt32 _list = default(System.UInt32); - System.Int32 _range = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DeleteLists(_list,_range); -} -static unsafe void Test_DeleteProgram_20472() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DeleteProgram(_program); -} -static unsafe void Test_DeleteProgram_20473() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.DeleteProgram(_program); -} -static unsafe void Test_DeleteProgramPipeline_20474() { - System.Int32 _pipelines = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DeleteProgramPipeline(_pipelines); -} -static unsafe void Test_DeleteProgramPipeline_20475() { - System.UInt32 _pipelines = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.DeleteProgramPipeline(_pipelines); -} -static unsafe void Test_DeleteProgramPipelines_20476() { - System.Int32 _n = default(System.Int32); - System.Int32[] _pipelines = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.DeleteProgramPipelines(_n,_pipelines); -} -static unsafe void Test_DeleteProgramPipelines_20477() { - System.Int32 _n = default(System.Int32); - System.Int32 _pipelines = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DeleteProgramPipelines(_n,ref _pipelines); -} -static unsafe void Test_DeleteProgramPipelines_20478() { - System.Int32 _n = default(System.Int32); - System.Int32* _pipelines = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.DeleteProgramPipelines(_n,_pipelines); -} -static unsafe void Test_DeleteProgramPipelines_20479() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _pipelines = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.DeleteProgramPipelines(_n,_pipelines); -} -static unsafe void Test_DeleteProgramPipelines_20480() { - System.Int32 _n = default(System.Int32); - System.UInt32 _pipelines = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.DeleteProgramPipelines(_n,ref _pipelines); -} -static unsafe void Test_DeleteProgramPipelines_20481() { - System.Int32 _n = default(System.Int32); - System.UInt32* _pipelines = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.DeleteProgramPipelines(_n,_pipelines); -} -static unsafe void Test_DeleteQuery_20482() { - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DeleteQuery(_ids); -} -static unsafe void Test_DeleteQuery_20483() { - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.DeleteQuery(_ids); -} -static unsafe void Test_DeleteQueries_20484() { - System.Int32 _n = default(System.Int32); - System.Int32[] _ids = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.DeleteQueries(_n,_ids); -} -static unsafe void Test_DeleteQueries_20485() { - System.Int32 _n = default(System.Int32); - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DeleteQueries(_n,ref _ids); -} -static unsafe void Test_DeleteQueries_20486() { - System.Int32 _n = default(System.Int32); - System.Int32* _ids = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.DeleteQueries(_n,_ids); -} -static unsafe void Test_DeleteQueries_20487() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _ids = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.DeleteQueries(_n,_ids); -} -static unsafe void Test_DeleteQueries_20488() { - System.Int32 _n = default(System.Int32); - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.DeleteQueries(_n,ref _ids); -} -static unsafe void Test_DeleteQueries_20489() { - System.Int32 _n = default(System.Int32); - System.UInt32* _ids = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.DeleteQueries(_n,_ids); -} -static unsafe void Test_DeleteRenderbuffer_20490() { - System.Int32 _renderbuffers = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DeleteRenderbuffer(_renderbuffers); -} -static unsafe void Test_DeleteRenderbuffer_20491() { - System.UInt32 _renderbuffers = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.DeleteRenderbuffer(_renderbuffers); -} -static unsafe void Test_DeleteRenderbuffers_20492() { - System.Int32 _n = default(System.Int32); - System.Int32[] _renderbuffers = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.DeleteRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_DeleteRenderbuffers_20493() { - System.Int32 _n = default(System.Int32); - System.Int32 _renderbuffers = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DeleteRenderbuffers(_n,ref _renderbuffers); -} -static unsafe void Test_DeleteRenderbuffers_20494() { - System.Int32 _n = default(System.Int32); - System.Int32* _renderbuffers = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.DeleteRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_DeleteRenderbuffers_20495() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _renderbuffers = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.DeleteRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_DeleteRenderbuffers_20496() { - System.Int32 _n = default(System.Int32); - System.UInt32 _renderbuffers = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.DeleteRenderbuffers(_n,ref _renderbuffers); -} -static unsafe void Test_DeleteRenderbuffers_20497() { - System.Int32 _n = default(System.Int32); - System.UInt32* _renderbuffers = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.DeleteRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_DeleteSampler_20498() { - System.Int32 _samplers = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DeleteSampler(_samplers); -} -static unsafe void Test_DeleteSampler_20499() { - System.UInt32 _samplers = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.DeleteSampler(_samplers); -} -static unsafe void Test_DeleteSamplers_20500() { - System.Int32 _count = default(System.Int32); - System.Int32[] _samplers = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.DeleteSamplers(_count,_samplers); -} -static unsafe void Test_DeleteSamplers_20501() { - System.Int32 _count = default(System.Int32); - System.Int32 _samplers = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DeleteSamplers(_count,ref _samplers); -} -static unsafe void Test_DeleteSamplers_20502() { - System.Int32 _count = default(System.Int32); - System.Int32* _samplers = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.DeleteSamplers(_count,_samplers); -} -static unsafe void Test_DeleteSamplers_20503() { - System.Int32 _count = default(System.Int32); - System.UInt32[] _samplers = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.DeleteSamplers(_count,_samplers); -} -static unsafe void Test_DeleteSamplers_20504() { - System.Int32 _count = default(System.Int32); - System.UInt32 _samplers = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.DeleteSamplers(_count,ref _samplers); -} -static unsafe void Test_DeleteSamplers_20505() { - System.Int32 _count = default(System.Int32); - System.UInt32* _samplers = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.DeleteSamplers(_count,_samplers); -} -static unsafe void Test_DeleteShader_20506() { - System.Int32 _shader = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DeleteShader(_shader); -} -static unsafe void Test_DeleteShader_20507() { - System.UInt32 _shader = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.DeleteShader(_shader); -} -static unsafe void Test_DeleteSync_20508() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.DeleteSync(_sync); -} -static unsafe void Test_DeleteTexture_20509() { - System.Int32 _textures = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DeleteTexture(_textures); -} -static unsafe void Test_DeleteTexture_20510() { - System.UInt32 _textures = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.DeleteTexture(_textures); -} -static unsafe void Test_DeleteTextures_20511() { - System.Int32 _n = default(System.Int32); - System.Int32[] _textures = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.DeleteTextures(_n,_textures); -} -static unsafe void Test_DeleteTextures_20512() { - System.Int32 _n = default(System.Int32); - System.Int32 _textures = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DeleteTextures(_n,ref _textures); -} -static unsafe void Test_DeleteTextures_20513() { - System.Int32 _n = default(System.Int32); - System.Int32* _textures = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.DeleteTextures(_n,_textures); -} -static unsafe void Test_DeleteTextures_20514() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _textures = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.DeleteTextures(_n,_textures); -} -static unsafe void Test_DeleteTextures_20515() { - System.Int32 _n = default(System.Int32); - System.UInt32 _textures = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.DeleteTextures(_n,ref _textures); -} -static unsafe void Test_DeleteTextures_20516() { - System.Int32 _n = default(System.Int32); - System.UInt32* _textures = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.DeleteTextures(_n,_textures); -} -static unsafe void Test_DeleteTransformFeedback_20517() { - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DeleteTransformFeedback(_ids); -} -static unsafe void Test_DeleteTransformFeedback_20518() { - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.DeleteTransformFeedback(_ids); -} -static unsafe void Test_DeleteTransformFeedbacks_20519() { - System.Int32 _n = default(System.Int32); - System.Int32[] _ids = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.DeleteTransformFeedbacks(_n,_ids); -} -static unsafe void Test_DeleteTransformFeedbacks_20520() { - System.Int32 _n = default(System.Int32); - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DeleteTransformFeedbacks(_n,ref _ids); -} -static unsafe void Test_DeleteTransformFeedbacks_20521() { - System.Int32 _n = default(System.Int32); - System.Int32* _ids = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.DeleteTransformFeedbacks(_n,_ids); -} -static unsafe void Test_DeleteTransformFeedbacks_20522() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _ids = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.DeleteTransformFeedbacks(_n,_ids); -} -static unsafe void Test_DeleteTransformFeedbacks_20523() { - System.Int32 _n = default(System.Int32); - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.DeleteTransformFeedbacks(_n,ref _ids); -} -static unsafe void Test_DeleteTransformFeedbacks_20524() { - System.Int32 _n = default(System.Int32); - System.UInt32* _ids = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.DeleteTransformFeedbacks(_n,_ids); -} -static unsafe void Test_DeleteVertexArray_20525() { - System.Int32 _arrays = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DeleteVertexArray(_arrays); -} -static unsafe void Test_DeleteVertexArray_20526() { - System.UInt32 _arrays = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.DeleteVertexArray(_arrays); -} -static unsafe void Test_DeleteVertexArrays_20527() { - System.Int32 _n = default(System.Int32); - System.Int32[] _arrays = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.DeleteVertexArrays(_n,_arrays); -} -static unsafe void Test_DeleteVertexArrays_20528() { - System.Int32 _n = default(System.Int32); - System.Int32 _arrays = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DeleteVertexArrays(_n,ref _arrays); -} -static unsafe void Test_DeleteVertexArrays_20529() { - System.Int32 _n = default(System.Int32); - System.Int32* _arrays = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.DeleteVertexArrays(_n,_arrays); -} -static unsafe void Test_DeleteVertexArrays_20530() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _arrays = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.DeleteVertexArrays(_n,_arrays); -} -static unsafe void Test_DeleteVertexArrays_20531() { - System.Int32 _n = default(System.Int32); - System.UInt32 _arrays = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.DeleteVertexArrays(_n,ref _arrays); -} -static unsafe void Test_DeleteVertexArrays_20532() { - System.Int32 _n = default(System.Int32); - System.UInt32* _arrays = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.DeleteVertexArrays(_n,_arrays); -} -static unsafe void Test_DepthFunc_20533() { - OpenTK.Graphics.OpenGL.DepthFunction _func = default(OpenTK.Graphics.OpenGL.DepthFunction); - OpenTK.Graphics.OpenGL.GL.DepthFunc(_func); -} -static unsafe void Test_DepthMask_20534() { - System.Boolean _flag = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.DepthMask(_flag); -} -static unsafe void Test_DepthRange_20535() { - System.Double _near = default(System.Double); - System.Double _far = default(System.Double); - OpenTK.Graphics.OpenGL.GL.DepthRange(_near,_far); -} -static unsafe void Test_DepthRangeArray_20536() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.DepthRangeArray(_first,_count,_v); -} -static unsafe void Test_DepthRangeArray_20537() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.DepthRangeArray(_first,_count,ref _v); -} -static unsafe void Test_DepthRangeArray_20538() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.DepthRangeArray(_first,_count,_v); -} -static unsafe void Test_DepthRangeArray_20539() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.DepthRangeArray(_first,_count,_v); -} -static unsafe void Test_DepthRangeArray_20540() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.DepthRangeArray(_first,_count,ref _v); -} -static unsafe void Test_DepthRangeArray_20541() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.DepthRangeArray(_first,_count,_v); -} -static unsafe void Test_DepthRange_20542() { - System.Single _n = default(System.Single); - System.Single _f = default(System.Single); - OpenTK.Graphics.OpenGL.GL.DepthRange(_n,_f); -} -static unsafe void Test_DepthRangeIndexed_20543() { - System.Int32 _index = default(System.Int32); - System.Double _n = default(System.Double); - System.Double _f = default(System.Double); - OpenTK.Graphics.OpenGL.GL.DepthRangeIndexed(_index,_n,_f); -} -static unsafe void Test_DepthRangeIndexed_20544() { - System.UInt32 _index = default(System.UInt32); - System.Double _n = default(System.Double); - System.Double _f = default(System.Double); - OpenTK.Graphics.OpenGL.GL.DepthRangeIndexed(_index,_n,_f); -} -static unsafe void Test_DetachShader_20545() { - System.Int32 _program = default(System.Int32); - System.Int32 _shader = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DetachShader(_program,_shader); -} -static unsafe void Test_DetachShader_20546() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _shader = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.DetachShader(_program,_shader); -} -static unsafe void Test_Disable_20547() { - OpenTK.Graphics.OpenGL.EnableCap _cap = default(OpenTK.Graphics.OpenGL.EnableCap); - OpenTK.Graphics.OpenGL.GL.Disable(_cap); -} -static unsafe void Test_DisableClientState_20548() { - OpenTK.Graphics.OpenGL.ArrayCap _array = default(OpenTK.Graphics.OpenGL.ArrayCap); - OpenTK.Graphics.OpenGL.GL.DisableClientState(_array); -} -static unsafe void Test_Disable_20549() { - OpenTK.Graphics.OpenGL.IndexedEnableCap _target = default(OpenTK.Graphics.OpenGL.IndexedEnableCap); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Disable(_target,_index); -} -static unsafe void Test_Disable_20550() { - OpenTK.Graphics.OpenGL.IndexedEnableCap _target = default(OpenTK.Graphics.OpenGL.IndexedEnableCap); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Disable(_target,_index); -} -static unsafe void Test_DisableVertexAttribArray_20551() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DisableVertexAttribArray(_index); -} -static unsafe void Test_DisableVertexAttribArray_20552() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.DisableVertexAttribArray(_index); -} -static unsafe void Test_DispatchCompute_20553() { - System.Int32 _num_groups_x = default(System.Int32); - System.Int32 _num_groups_y = default(System.Int32); - System.Int32 _num_groups_z = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DispatchCompute(_num_groups_x,_num_groups_y,_num_groups_z); -} -static unsafe void Test_DispatchCompute_20554() { - System.UInt32 _num_groups_x = default(System.UInt32); - System.UInt32 _num_groups_y = default(System.UInt32); - System.UInt32 _num_groups_z = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.DispatchCompute(_num_groups_x,_num_groups_y,_num_groups_z); -} -static unsafe void Test_DispatchComputeIndirect_20555() { - System.IntPtr _indirect = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.DispatchComputeIndirect(_indirect); -} -static unsafe void Test_DrawArrays_20556() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawArrays(_mode,_first,_count); -} -static unsafe void Test_DrawArrays_20557() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawArrays(_mode,_first,_count); -} -static unsafe void Test_DrawArraysIndirect_20558() { - OpenTK.Graphics.OpenGL.ArbDrawIndirect _mode = default(OpenTK.Graphics.OpenGL.ArbDrawIndirect); - System.IntPtr _indirect = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.DrawArraysIndirect(_mode,_indirect); -} -static unsafe void Test_DrawArraysIndirect_20559() { - OpenTK.Graphics.OpenGL.ArbDrawIndirect _mode = default(OpenTK.Graphics.OpenGL.ArbDrawIndirect); - int[] _indirect = default(int[]); - OpenTK.Graphics.OpenGL.GL.DrawArraysIndirect(_mode,_indirect); -} -static unsafe void Test_DrawArraysIndirect_20560() { - OpenTK.Graphics.OpenGL.ArbDrawIndirect _mode = default(OpenTK.Graphics.OpenGL.ArbDrawIndirect); - int[,] _indirect = default(int[,]); - OpenTK.Graphics.OpenGL.GL.DrawArraysIndirect(_mode,_indirect); -} -static unsafe void Test_DrawArraysIndirect_20561() { - OpenTK.Graphics.OpenGL.ArbDrawIndirect _mode = default(OpenTK.Graphics.OpenGL.ArbDrawIndirect); - int[,,] _indirect = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.DrawArraysIndirect(_mode,_indirect); -} -static unsafe void Test_DrawArraysIndirect_20562() { - OpenTK.Graphics.OpenGL.ArbDrawIndirect _mode = default(OpenTK.Graphics.OpenGL.ArbDrawIndirect); - int _indirect = default(int); - OpenTK.Graphics.OpenGL.GL.DrawArraysIndirect(_mode,ref _indirect); -} -static unsafe void Test_DrawArraysIndirect_20563() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.IntPtr _indirect = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.DrawArraysIndirect(_mode,_indirect); -} -static unsafe void Test_DrawArraysIndirect_20564() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - int[] _indirect = default(int[]); - OpenTK.Graphics.OpenGL.GL.DrawArraysIndirect(_mode,_indirect); -} -static unsafe void Test_DrawArraysIndirect_20565() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - int[,] _indirect = default(int[,]); - OpenTK.Graphics.OpenGL.GL.DrawArraysIndirect(_mode,_indirect); -} -static unsafe void Test_DrawArraysIndirect_20566() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - int[,,] _indirect = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.DrawArraysIndirect(_mode,_indirect); -} -static unsafe void Test_DrawArraysIndirect_20567() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - int _indirect = default(int); - OpenTK.Graphics.OpenGL.GL.DrawArraysIndirect(_mode,ref _indirect); -} -static unsafe void Test_DrawArraysInstanced_20568() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _instancecount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawArraysInstanced(_mode,_first,_count,_instancecount); -} -static unsafe void Test_DrawArraysInstanced_20569() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _instancecount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawArraysInstanced(_mode,_first,_count,_instancecount); -} -static unsafe void Test_DrawArraysInstancedBaseInstance_20570() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _baseinstance = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawArraysInstancedBaseInstance(_mode,_first,_count,_instancecount,_baseinstance); -} -static unsafe void Test_DrawArraysInstancedBaseInstance_20571() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _instancecount = default(System.Int32); - System.UInt32 _baseinstance = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.DrawArraysInstancedBaseInstance(_mode,_first,_count,_instancecount,_baseinstance); -} -static unsafe void Test_DrawBuffer_20572() { - OpenTK.Graphics.OpenGL.DrawBufferMode _mode = default(OpenTK.Graphics.OpenGL.DrawBufferMode); - OpenTK.Graphics.OpenGL.GL.DrawBuffer(_mode); -} -static unsafe void Test_DrawBuffers_20573() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawBuffersEnum[] _bufs = default(OpenTK.Graphics.OpenGL.DrawBuffersEnum[]); - OpenTK.Graphics.OpenGL.GL.DrawBuffers(_n,_bufs); -} -static unsafe void Test_DrawBuffers_20574() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawBuffersEnum _bufs = default(OpenTK.Graphics.OpenGL.DrawBuffersEnum); - OpenTK.Graphics.OpenGL.GL.DrawBuffers(_n,ref _bufs); -} -static unsafe void Test_DrawBuffers_20575() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawBuffersEnum* _bufs = default(OpenTK.Graphics.OpenGL.DrawBuffersEnum*); - OpenTK.Graphics.OpenGL.GL.DrawBuffers(_n,_bufs); -} -static unsafe void Test_DrawElements_20576() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.Int32 _indices = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_20577() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_20578() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - OpenTK.Graphics.OpenGL.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_20579() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - OpenTK.Graphics.OpenGL.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_20580() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_20581() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - OpenTK.Graphics.OpenGL.GL.DrawElements(_mode,_count,_type,ref _indices); -} -static unsafe void Test_DrawElements_20582() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.Int32 _indices = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_20583() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_20584() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - OpenTK.Graphics.OpenGL.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_20585() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - OpenTK.Graphics.OpenGL.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_20586() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_20587() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - OpenTK.Graphics.OpenGL.GL.DrawElements(_mode,_count,_type,ref _indices); -} -static unsafe void Test_DrawElementsBaseVertex_20588() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElementsBaseVertex(_mode,_count,_type,_indices,_basevertex); -} -static unsafe void Test_DrawElementsBaseVertex_20589() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElementsBaseVertex(_mode,_count,_type,_indices,_basevertex); -} -static unsafe void Test_DrawElementsBaseVertex_20590() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElementsBaseVertex(_mode,_count,_type,_indices,_basevertex); -} -static unsafe void Test_DrawElementsBaseVertex_20591() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElementsBaseVertex(_mode,_count,_type,_indices,_basevertex); -} -static unsafe void Test_DrawElementsBaseVertex_20592() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElementsBaseVertex(_mode,_count,_type,ref _indices,_basevertex); -} -static unsafe void Test_DrawElementsBaseVertex_20593() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElementsBaseVertex(_mode,_count,_type,_indices,_basevertex); -} -static unsafe void Test_DrawElementsBaseVertex_20594() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElementsBaseVertex(_mode,_count,_type,_indices,_basevertex); -} -static unsafe void Test_DrawElementsBaseVertex_20595() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElementsBaseVertex(_mode,_count,_type,_indices,_basevertex); -} -static unsafe void Test_DrawElementsBaseVertex_20596() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElementsBaseVertex(_mode,_count,_type,_indices,_basevertex); -} -static unsafe void Test_DrawElementsBaseVertex_20597() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElementsBaseVertex(_mode,_count,_type,ref _indices,_basevertex); -} -static unsafe void Test_DrawElementsIndirect_20598() { - OpenTK.Graphics.OpenGL.ArbDrawIndirect _mode = default(OpenTK.Graphics.OpenGL.ArbDrawIndirect); - OpenTK.Graphics.OpenGL.ArbDrawIndirect _type = default(OpenTK.Graphics.OpenGL.ArbDrawIndirect); - System.IntPtr _indirect = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.DrawElementsIndirect(_mode,_type,_indirect); -} -static unsafe void Test_DrawElementsIndirect_20599() { - OpenTK.Graphics.OpenGL.ArbDrawIndirect _mode = default(OpenTK.Graphics.OpenGL.ArbDrawIndirect); - OpenTK.Graphics.OpenGL.ArbDrawIndirect _type = default(OpenTK.Graphics.OpenGL.ArbDrawIndirect); - int[] _indirect = default(int[]); - OpenTK.Graphics.OpenGL.GL.DrawElementsIndirect(_mode,_type,_indirect); -} -static unsafe void Test_DrawElementsIndirect_20600() { - OpenTK.Graphics.OpenGL.ArbDrawIndirect _mode = default(OpenTK.Graphics.OpenGL.ArbDrawIndirect); - OpenTK.Graphics.OpenGL.ArbDrawIndirect _type = default(OpenTK.Graphics.OpenGL.ArbDrawIndirect); - int[,] _indirect = default(int[,]); - OpenTK.Graphics.OpenGL.GL.DrawElementsIndirect(_mode,_type,_indirect); -} -static unsafe void Test_DrawElementsIndirect_20601() { - OpenTK.Graphics.OpenGL.ArbDrawIndirect _mode = default(OpenTK.Graphics.OpenGL.ArbDrawIndirect); - OpenTK.Graphics.OpenGL.ArbDrawIndirect _type = default(OpenTK.Graphics.OpenGL.ArbDrawIndirect); - int[,,] _indirect = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.DrawElementsIndirect(_mode,_type,_indirect); -} -static unsafe void Test_DrawElementsIndirect_20602() { - OpenTK.Graphics.OpenGL.ArbDrawIndirect _mode = default(OpenTK.Graphics.OpenGL.ArbDrawIndirect); - OpenTK.Graphics.OpenGL.ArbDrawIndirect _type = default(OpenTK.Graphics.OpenGL.ArbDrawIndirect); - int _indirect = default(int); - OpenTK.Graphics.OpenGL.GL.DrawElementsIndirect(_mode,_type,ref _indirect); -} -static unsafe void Test_DrawElementsIndirect_20603() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - OpenTK.Graphics.OpenGL.All _type = default(OpenTK.Graphics.OpenGL.All); - System.IntPtr _indirect = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.DrawElementsIndirect(_mode,_type,_indirect); -} -static unsafe void Test_DrawElementsIndirect_20604() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - OpenTK.Graphics.OpenGL.All _type = default(OpenTK.Graphics.OpenGL.All); - int[] _indirect = default(int[]); - OpenTK.Graphics.OpenGL.GL.DrawElementsIndirect(_mode,_type,_indirect); -} -static unsafe void Test_DrawElementsIndirect_20605() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - OpenTK.Graphics.OpenGL.All _type = default(OpenTK.Graphics.OpenGL.All); - int[,] _indirect = default(int[,]); - OpenTK.Graphics.OpenGL.GL.DrawElementsIndirect(_mode,_type,_indirect); -} -static unsafe void Test_DrawElementsIndirect_20606() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - OpenTK.Graphics.OpenGL.All _type = default(OpenTK.Graphics.OpenGL.All); - int[,,] _indirect = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.DrawElementsIndirect(_mode,_type,_indirect); -} -static unsafe void Test_DrawElementsIndirect_20607() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - OpenTK.Graphics.OpenGL.All _type = default(OpenTK.Graphics.OpenGL.All); - int _indirect = default(int); - OpenTK.Graphics.OpenGL.GL.DrawElementsIndirect(_mode,_type,ref _indirect); -} -static unsafe void Test_DrawElementsInstanced_20608() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _instancecount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElementsInstanced(_mode,_count,_type,_indices,_instancecount); -} -static unsafe void Test_DrawElementsInstanced_20609() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _instancecount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElementsInstanced(_mode,_count,_type,_indices,_instancecount); -} -static unsafe void Test_DrawElementsInstanced_20610() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _instancecount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElementsInstanced(_mode,_count,_type,_indices,_instancecount); -} -static unsafe void Test_DrawElementsInstanced_20611() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _instancecount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElementsInstanced(_mode,_count,_type,_indices,_instancecount); -} -static unsafe void Test_DrawElementsInstanced_20612() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _instancecount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElementsInstanced(_mode,_count,_type,ref _indices,_instancecount); -} -static unsafe void Test_DrawElementsInstanced_20613() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _instancecount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElementsInstanced(_mode,_count,_type,_indices,_instancecount); -} -static unsafe void Test_DrawElementsInstanced_20614() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _instancecount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElementsInstanced(_mode,_count,_type,_indices,_instancecount); -} -static unsafe void Test_DrawElementsInstanced_20615() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _instancecount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElementsInstanced(_mode,_count,_type,_indices,_instancecount); -} -static unsafe void Test_DrawElementsInstanced_20616() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _instancecount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElementsInstanced(_mode,_count,_type,_indices,_instancecount); -} -static unsafe void Test_DrawElementsInstanced_20617() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _instancecount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElementsInstanced(_mode,_count,_type,ref _indices,_instancecount); -} -static unsafe void Test_DrawElementsInstancedBaseInstance_20618() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _baseinstance = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElementsInstancedBaseInstance(_mode,_count,_type,_indices,_instancecount,_baseinstance); -} -static unsafe void Test_DrawElementsInstancedBaseInstance_20619() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _instancecount = default(System.Int32); - System.UInt32 _baseinstance = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.DrawElementsInstancedBaseInstance(_mode,_count,_type,_indices,_instancecount,_baseinstance); -} -static unsafe void Test_DrawElementsInstancedBaseInstance_20620() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _baseinstance = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElementsInstancedBaseInstance(_mode,_count,_type,_indices,_instancecount,_baseinstance); -} -static unsafe void Test_DrawElementsInstancedBaseInstance_20621() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _instancecount = default(System.Int32); - System.UInt32 _baseinstance = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.DrawElementsInstancedBaseInstance(_mode,_count,_type,_indices,_instancecount,_baseinstance); -} -static unsafe void Test_DrawElementsInstancedBaseInstance_20622() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _baseinstance = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElementsInstancedBaseInstance(_mode,_count,_type,_indices,_instancecount,_baseinstance); -} -static unsafe void Test_DrawElementsInstancedBaseInstance_20623() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _instancecount = default(System.Int32); - System.UInt32 _baseinstance = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.DrawElementsInstancedBaseInstance(_mode,_count,_type,_indices,_instancecount,_baseinstance); -} -static unsafe void Test_DrawElementsInstancedBaseInstance_20624() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _baseinstance = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElementsInstancedBaseInstance(_mode,_count,_type,_indices,_instancecount,_baseinstance); -} -static unsafe void Test_DrawElementsInstancedBaseInstance_20625() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _instancecount = default(System.Int32); - System.UInt32 _baseinstance = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.DrawElementsInstancedBaseInstance(_mode,_count,_type,_indices,_instancecount,_baseinstance); -} -static unsafe void Test_DrawElementsInstancedBaseInstance_20626() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _baseinstance = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElementsInstancedBaseInstance(_mode,_count,_type,ref _indices,_instancecount,_baseinstance); -} -static unsafe void Test_DrawElementsInstancedBaseInstance_20627() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _instancecount = default(System.Int32); - System.UInt32 _baseinstance = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.DrawElementsInstancedBaseInstance(_mode,_count,_type,ref _indices,_instancecount,_baseinstance); -} -static unsafe void Test_DrawElementsInstancedBaseVertex_20628() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElementsInstancedBaseVertex(_mode,_count,_type,_indices,_instancecount,_basevertex); -} -static unsafe void Test_DrawElementsInstancedBaseVertex_20629() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElementsInstancedBaseVertex(_mode,_count,_type,_indices,_instancecount,_basevertex); -} -static unsafe void Test_DrawElementsInstancedBaseVertex_20630() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElementsInstancedBaseVertex(_mode,_count,_type,_indices,_instancecount,_basevertex); -} -static unsafe void Test_DrawElementsInstancedBaseVertex_20631() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElementsInstancedBaseVertex(_mode,_count,_type,_indices,_instancecount,_basevertex); -} -static unsafe void Test_DrawElementsInstancedBaseVertex_20632() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElementsInstancedBaseVertex(_mode,_count,_type,ref _indices,_instancecount,_basevertex); -} -static unsafe void Test_DrawElementsInstancedBaseVertex_20633() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElementsInstancedBaseVertex(_mode,_count,_type,_indices,_instancecount,_basevertex); -} -static unsafe void Test_DrawElementsInstancedBaseVertex_20634() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElementsInstancedBaseVertex(_mode,_count,_type,_indices,_instancecount,_basevertex); -} -static unsafe void Test_DrawElementsInstancedBaseVertex_20635() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElementsInstancedBaseVertex(_mode,_count,_type,_indices,_instancecount,_basevertex); -} -static unsafe void Test_DrawElementsInstancedBaseVertex_20636() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElementsInstancedBaseVertex(_mode,_count,_type,_indices,_instancecount,_basevertex); -} -static unsafe void Test_DrawElementsInstancedBaseVertex_20637() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElementsInstancedBaseVertex(_mode,_count,_type,ref _indices,_instancecount,_basevertex); -} -static unsafe void Test_DrawElementsInstancedBaseVertexBaseInstance_20638() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - System.Int32 _baseinstance = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElementsInstancedBaseVertexBaseInstance(_mode,_count,_type,_indices,_instancecount,_basevertex,_baseinstance); -} -static unsafe void Test_DrawElementsInstancedBaseVertexBaseInstance_20639() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - System.UInt32 _baseinstance = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.DrawElementsInstancedBaseVertexBaseInstance(_mode,_count,_type,_indices,_instancecount,_basevertex,_baseinstance); -} -static unsafe void Test_DrawElementsInstancedBaseVertexBaseInstance_20640() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - System.Int32 _baseinstance = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElementsInstancedBaseVertexBaseInstance(_mode,_count,_type,_indices,_instancecount,_basevertex,_baseinstance); -} -static unsafe void Test_DrawElementsInstancedBaseVertexBaseInstance_20641() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - System.UInt32 _baseinstance = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.DrawElementsInstancedBaseVertexBaseInstance(_mode,_count,_type,_indices,_instancecount,_basevertex,_baseinstance); -} -static unsafe void Test_DrawElementsInstancedBaseVertexBaseInstance_20642() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - System.Int32 _baseinstance = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElementsInstancedBaseVertexBaseInstance(_mode,_count,_type,_indices,_instancecount,_basevertex,_baseinstance); -} -static unsafe void Test_DrawElementsInstancedBaseVertexBaseInstance_20643() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - System.UInt32 _baseinstance = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.DrawElementsInstancedBaseVertexBaseInstance(_mode,_count,_type,_indices,_instancecount,_basevertex,_baseinstance); -} -static unsafe void Test_DrawElementsInstancedBaseVertexBaseInstance_20644() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - System.Int32 _baseinstance = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElementsInstancedBaseVertexBaseInstance(_mode,_count,_type,_indices,_instancecount,_basevertex,_baseinstance); -} -static unsafe void Test_DrawElementsInstancedBaseVertexBaseInstance_20645() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - System.UInt32 _baseinstance = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.DrawElementsInstancedBaseVertexBaseInstance(_mode,_count,_type,_indices,_instancecount,_basevertex,_baseinstance); -} -static unsafe void Test_DrawElementsInstancedBaseVertexBaseInstance_20646() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - System.Int32 _baseinstance = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawElementsInstancedBaseVertexBaseInstance(_mode,_count,_type,ref _indices,_instancecount,_basevertex,_baseinstance); -} -static unsafe void Test_DrawElementsInstancedBaseVertexBaseInstance_20647() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - System.UInt32 _baseinstance = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.DrawElementsInstancedBaseVertexBaseInstance(_mode,_count,_type,ref _indices,_instancecount,_basevertex,_baseinstance); -} -static unsafe void Test_DrawPixels_20648() { - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.DrawPixels(_width,_height,_format,_type,_pixels); -} -static unsafe void Test_DrawPixels_20649() { - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.DrawPixels(_width,_height,_format,_type,_pixels); -} -static unsafe void Test_DrawPixels_20650() { - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.DrawPixels(_width,_height,_format,_type,_pixels); -} -static unsafe void Test_DrawPixels_20651() { - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.DrawPixels(_width,_height,_format,_type,_pixels); -} -static unsafe void Test_DrawPixels_20652() { - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.DrawPixels(_width,_height,_format,_type,ref _pixels); -} -static unsafe void Test_DrawRangeElements_20653() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_20654() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - OpenTK.Graphics.OpenGL.GL.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_20655() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - OpenTK.Graphics.OpenGL.GL.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_20656() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_20657() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - OpenTK.Graphics.OpenGL.GL.DrawRangeElements(_mode,_start,_end,_count,_type,ref _indices); -} -static unsafe void Test_DrawRangeElements_20658() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_20659() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - OpenTK.Graphics.OpenGL.GL.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_20660() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - OpenTK.Graphics.OpenGL.GL.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_20661() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_20662() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - OpenTK.Graphics.OpenGL.GL.DrawRangeElements(_mode,_start,_end,_count,_type,ref _indices); -} -static unsafe void Test_DrawRangeElements_20663() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_20664() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - OpenTK.Graphics.OpenGL.GL.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_20665() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - OpenTK.Graphics.OpenGL.GL.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_20666() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_20667() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - OpenTK.Graphics.OpenGL.GL.DrawRangeElements(_mode,_start,_end,_count,_type,ref _indices); -} -static unsafe void Test_DrawRangeElements_20668() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_20669() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - OpenTK.Graphics.OpenGL.GL.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_20670() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - OpenTK.Graphics.OpenGL.GL.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_20671() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_20672() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - OpenTK.Graphics.OpenGL.GL.DrawRangeElements(_mode,_start,_end,_count,_type,ref _indices); -} -static unsafe void Test_DrawRangeElementsBaseVertex_20673() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawRangeElementsBaseVertex(_mode,_start,_end,_count,_type,_indices,_basevertex); -} -static unsafe void Test_DrawRangeElementsBaseVertex_20674() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawRangeElementsBaseVertex(_mode,_start,_end,_count,_type,_indices,_basevertex); -} -static unsafe void Test_DrawRangeElementsBaseVertex_20675() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawRangeElementsBaseVertex(_mode,_start,_end,_count,_type,_indices,_basevertex); -} -static unsafe void Test_DrawRangeElementsBaseVertex_20676() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawRangeElementsBaseVertex(_mode,_start,_end,_count,_type,_indices,_basevertex); -} -static unsafe void Test_DrawRangeElementsBaseVertex_20677() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawRangeElementsBaseVertex(_mode,_start,_end,_count,_type,ref _indices,_basevertex); -} -static unsafe void Test_DrawRangeElementsBaseVertex_20678() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawRangeElementsBaseVertex(_mode,_start,_end,_count,_type,_indices,_basevertex); -} -static unsafe void Test_DrawRangeElementsBaseVertex_20679() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawRangeElementsBaseVertex(_mode,_start,_end,_count,_type,_indices,_basevertex); -} -static unsafe void Test_DrawRangeElementsBaseVertex_20680() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawRangeElementsBaseVertex(_mode,_start,_end,_count,_type,_indices,_basevertex); -} -static unsafe void Test_DrawRangeElementsBaseVertex_20681() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawRangeElementsBaseVertex(_mode,_start,_end,_count,_type,_indices,_basevertex); -} -static unsafe void Test_DrawRangeElementsBaseVertex_20682() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawRangeElementsBaseVertex(_mode,_start,_end,_count,_type,ref _indices,_basevertex); -} -static unsafe void Test_DrawRangeElementsBaseVertex_20683() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawRangeElementsBaseVertex(_mode,_start,_end,_count,_type,_indices,_basevertex); -} -static unsafe void Test_DrawRangeElementsBaseVertex_20684() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawRangeElementsBaseVertex(_mode,_start,_end,_count,_type,_indices,_basevertex); -} -static unsafe void Test_DrawRangeElementsBaseVertex_20685() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawRangeElementsBaseVertex(_mode,_start,_end,_count,_type,_indices,_basevertex); -} -static unsafe void Test_DrawRangeElementsBaseVertex_20686() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawRangeElementsBaseVertex(_mode,_start,_end,_count,_type,_indices,_basevertex); -} -static unsafe void Test_DrawRangeElementsBaseVertex_20687() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawRangeElementsBaseVertex(_mode,_start,_end,_count,_type,ref _indices,_basevertex); -} -static unsafe void Test_DrawRangeElementsBaseVertex_20688() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawRangeElementsBaseVertex(_mode,_start,_end,_count,_type,_indices,_basevertex); -} -static unsafe void Test_DrawRangeElementsBaseVertex_20689() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawRangeElementsBaseVertex(_mode,_start,_end,_count,_type,_indices,_basevertex); -} -static unsafe void Test_DrawRangeElementsBaseVertex_20690() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawRangeElementsBaseVertex(_mode,_start,_end,_count,_type,_indices,_basevertex); -} -static unsafe void Test_DrawRangeElementsBaseVertex_20691() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawRangeElementsBaseVertex(_mode,_start,_end,_count,_type,_indices,_basevertex); -} -static unsafe void Test_DrawRangeElementsBaseVertex_20692() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawRangeElementsBaseVertex(_mode,_start,_end,_count,_type,ref _indices,_basevertex); -} -static unsafe void Test_DrawTransformFeedback_20693() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawTransformFeedback(_mode,_id); -} -static unsafe void Test_DrawTransformFeedback_20694() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.DrawTransformFeedback(_mode,_id); -} -static unsafe void Test_DrawTransformFeedback_20695() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawTransformFeedback(_mode,_id); -} -static unsafe void Test_DrawTransformFeedback_20696() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.DrawTransformFeedback(_mode,_id); -} -static unsafe void Test_DrawTransformFeedbackInstanced_20697() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _id = default(System.Int32); - System.Int32 _instancecount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawTransformFeedbackInstanced(_mode,_id,_instancecount); -} -static unsafe void Test_DrawTransformFeedbackInstanced_20698() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.UInt32 _id = default(System.UInt32); - System.Int32 _instancecount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawTransformFeedbackInstanced(_mode,_id,_instancecount); -} -static unsafe void Test_DrawTransformFeedbackStream_20699() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _id = default(System.Int32); - System.Int32 _stream = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawTransformFeedbackStream(_mode,_id,_stream); -} -static unsafe void Test_DrawTransformFeedbackStream_20700() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.UInt32 _id = default(System.UInt32); - System.UInt32 _stream = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.DrawTransformFeedbackStream(_mode,_id,_stream); -} -static unsafe void Test_DrawTransformFeedbackStream_20701() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _id = default(System.Int32); - System.Int32 _stream = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawTransformFeedbackStream(_mode,_id,_stream); -} -static unsafe void Test_DrawTransformFeedbackStream_20702() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.UInt32 _id = default(System.UInt32); - System.UInt32 _stream = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.DrawTransformFeedbackStream(_mode,_id,_stream); -} -static unsafe void Test_DrawTransformFeedbackStreamInstanced_20703() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _id = default(System.Int32); - System.Int32 _stream = default(System.Int32); - System.Int32 _instancecount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawTransformFeedbackStreamInstanced(_mode,_id,_stream,_instancecount); -} -static unsafe void Test_DrawTransformFeedbackStreamInstanced_20704() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.UInt32 _id = default(System.UInt32); - System.UInt32 _stream = default(System.UInt32); - System.Int32 _instancecount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.DrawTransformFeedbackStreamInstanced(_mode,_id,_stream,_instancecount); -} -static unsafe void Test_EdgeFlag_20705() { - System.Boolean _flag = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.EdgeFlag(_flag); -} -static unsafe void Test_EdgeFlagPointer_20706() { - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.EdgeFlagPointer(_stride,_pointer); -} -static unsafe void Test_EdgeFlagPointer_20707() { - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.EdgeFlagPointer(_stride,_pointer); -} -static unsafe void Test_EdgeFlagPointer_20708() { - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.EdgeFlagPointer(_stride,_pointer); -} -static unsafe void Test_EdgeFlagPointer_20709() { - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.EdgeFlagPointer(_stride,_pointer); -} -static unsafe void Test_EdgeFlagPointer_20710() { - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.EdgeFlagPointer(_stride,ref _pointer); -} -static unsafe void Test_EdgeFlag_20711() { - System.Boolean[] _flag = default(System.Boolean[]); - OpenTK.Graphics.OpenGL.GL.EdgeFlag(_flag); -} -static unsafe void Test_EdgeFlag_20712() { - System.Boolean* _flag = default(System.Boolean*); - OpenTK.Graphics.OpenGL.GL.EdgeFlag(_flag); -} -static unsafe void Test_Enable_20713() { - OpenTK.Graphics.OpenGL.EnableCap _cap = default(OpenTK.Graphics.OpenGL.EnableCap); - OpenTK.Graphics.OpenGL.GL.Enable(_cap); -} -static unsafe void Test_EnableClientState_20714() { - OpenTK.Graphics.OpenGL.ArrayCap _array = default(OpenTK.Graphics.OpenGL.ArrayCap); - OpenTK.Graphics.OpenGL.GL.EnableClientState(_array); -} -static unsafe void Test_Enable_20715() { - OpenTK.Graphics.OpenGL.IndexedEnableCap _target = default(OpenTK.Graphics.OpenGL.IndexedEnableCap); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Enable(_target,_index); -} -static unsafe void Test_Enable_20716() { - OpenTK.Graphics.OpenGL.IndexedEnableCap _target = default(OpenTK.Graphics.OpenGL.IndexedEnableCap); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Enable(_target,_index); -} -static unsafe void Test_EnableVertexAttribArray_20717() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.EnableVertexAttribArray(_index); -} -static unsafe void Test_EnableVertexAttribArray_20718() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.EnableVertexAttribArray(_index); -} -static unsafe void Test_End_20719() { - OpenTK.Graphics.OpenGL.GL.End(); -} -static unsafe void Test_EndConditionalRender_20720() { - OpenTK.Graphics.OpenGL.GL.EndConditionalRender(); -} -static unsafe void Test_EndList_20721() { - OpenTK.Graphics.OpenGL.GL.EndList(); -} -static unsafe void Test_EndQuery_20722() { - OpenTK.Graphics.OpenGL.QueryTarget _target = default(OpenTK.Graphics.OpenGL.QueryTarget); - OpenTK.Graphics.OpenGL.GL.EndQuery(_target); -} -static unsafe void Test_EndQueryIndexed_20723() { - OpenTK.Graphics.OpenGL.QueryTarget _target = default(OpenTK.Graphics.OpenGL.QueryTarget); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.EndQueryIndexed(_target,_index); -} -static unsafe void Test_EndQueryIndexed_20724() { - OpenTK.Graphics.OpenGL.QueryTarget _target = default(OpenTK.Graphics.OpenGL.QueryTarget); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.EndQueryIndexed(_target,_index); -} -static unsafe void Test_EndTransformFeedback_20725() { - OpenTK.Graphics.OpenGL.GL.EndTransformFeedback(); -} -static unsafe void Test_EvalCoord1_20726() { - System.Double _u = default(System.Double); - OpenTK.Graphics.OpenGL.GL.EvalCoord1(_u); -} -static unsafe void Test_EvalCoord1_20727() { - System.Double* _u = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.EvalCoord1(_u); -} -static unsafe void Test_EvalCoord1_20728() { - System.Single _u = default(System.Single); - OpenTK.Graphics.OpenGL.GL.EvalCoord1(_u); -} -static unsafe void Test_EvalCoord1_20729() { - System.Single* _u = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.EvalCoord1(_u); -} -static unsafe void Test_EvalCoord2_20730() { - System.Double _u = default(System.Double); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.EvalCoord2(_u,_v); -} -static unsafe void Test_EvalCoord2_20731() { - System.Double[] _u = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.EvalCoord2(_u); -} -static unsafe void Test_EvalCoord2_20732() { - System.Double _u = default(System.Double); - OpenTK.Graphics.OpenGL.GL.EvalCoord2(ref _u); -} -static unsafe void Test_EvalCoord2_20733() { - System.Double* _u = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.EvalCoord2(_u); -} -static unsafe void Test_EvalCoord2_20734() { - System.Single _u = default(System.Single); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.EvalCoord2(_u,_v); -} -static unsafe void Test_EvalCoord2_20735() { - System.Single[] _u = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.EvalCoord2(_u); -} -static unsafe void Test_EvalCoord2_20736() { - System.Single _u = default(System.Single); - OpenTK.Graphics.OpenGL.GL.EvalCoord2(ref _u); -} -static unsafe void Test_EvalCoord2_20737() { - System.Single* _u = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.EvalCoord2(_u); -} -static unsafe void Test_EvalMesh1_20738() { - OpenTK.Graphics.OpenGL.MeshMode1 _mode = default(OpenTK.Graphics.OpenGL.MeshMode1); - System.Int32 _i1 = default(System.Int32); - System.Int32 _i2 = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.EvalMesh1(_mode,_i1,_i2); -} -static unsafe void Test_EvalMesh2_20739() { - OpenTK.Graphics.OpenGL.MeshMode2 _mode = default(OpenTK.Graphics.OpenGL.MeshMode2); - System.Int32 _i1 = default(System.Int32); - System.Int32 _i2 = default(System.Int32); - System.Int32 _j1 = default(System.Int32); - System.Int32 _j2 = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.EvalMesh2(_mode,_i1,_i2,_j1,_j2); -} -static unsafe void Test_EvalPoint1_20740() { - System.Int32 _i = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.EvalPoint1(_i); -} -static unsafe void Test_EvalPoint2_20741() { - System.Int32 _i = default(System.Int32); - System.Int32 _j = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.EvalPoint2(_i,_j); -} -static unsafe void Test_FeedbackBuffer_20742() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.FeedbackType _type = default(OpenTK.Graphics.OpenGL.FeedbackType); - System.Single[] _buffer = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.FeedbackBuffer(_size,_type,_buffer); -} -static unsafe void Test_FeedbackBuffer_20743() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.FeedbackType _type = default(OpenTK.Graphics.OpenGL.FeedbackType); - System.Single _buffer = default(System.Single); - OpenTK.Graphics.OpenGL.GL.FeedbackBuffer(_size,_type,out _buffer); -} -static unsafe void Test_FeedbackBuffer_20744() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.FeedbackType _type = default(OpenTK.Graphics.OpenGL.FeedbackType); - System.Single* _buffer = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.FeedbackBuffer(_size,_type,_buffer); -} -static unsafe void Test_FenceSync_20745() { - OpenTK.Graphics.OpenGL.ArbSync _condition = default(OpenTK.Graphics.OpenGL.ArbSync); - System.Int32 _flags = default(System.Int32); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.FenceSync(_condition,_flags); -} -static unsafe void Test_FenceSync_20746() { - OpenTK.Graphics.OpenGL.ArbSync _condition = default(OpenTK.Graphics.OpenGL.ArbSync); - System.UInt32 _flags = default(System.UInt32); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.FenceSync(_condition,_flags); -} -static unsafe void Test_FenceSync_20747() { - OpenTK.Graphics.OpenGL.SyncCondition _condition = default(OpenTK.Graphics.OpenGL.SyncCondition); - OpenTK.Graphics.OpenGL.WaitSyncFlags _flags = default(OpenTK.Graphics.OpenGL.WaitSyncFlags); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.FenceSync(_condition,_flags); -} -static unsafe void Test_Finish_20748() { - OpenTK.Graphics.OpenGL.GL.Finish(); -} -static unsafe void Test_Flush_20749() { - OpenTK.Graphics.OpenGL.GL.Flush(); -} -static unsafe void Test_FlushMappedBufferRange_20750() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _length = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.FlushMappedBufferRange(_target,_offset,_length); -} -static unsafe void Test_FogCoord_20751() { - System.Double _coord = default(System.Double); - OpenTK.Graphics.OpenGL.GL.FogCoord(_coord); -} -static unsafe void Test_FogCoord_20752() { - System.Double* _coord = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.FogCoord(_coord); -} -static unsafe void Test_FogCoord_20753() { - System.Single _coord = default(System.Single); - OpenTK.Graphics.OpenGL.GL.FogCoord(_coord); -} -static unsafe void Test_FogCoord_20754() { - System.Single* _coord = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.FogCoord(_coord); -} -static unsafe void Test_FogCoordPointer_20755() { - OpenTK.Graphics.OpenGL.FogPointerType _type = default(OpenTK.Graphics.OpenGL.FogPointerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.FogCoordPointer(_type,_stride,_pointer); -} -static unsafe void Test_FogCoordPointer_20756() { - OpenTK.Graphics.OpenGL.FogPointerType _type = default(OpenTK.Graphics.OpenGL.FogPointerType); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.FogCoordPointer(_type,_stride,_pointer); -} -static unsafe void Test_FogCoordPointer_20757() { - OpenTK.Graphics.OpenGL.FogPointerType _type = default(OpenTK.Graphics.OpenGL.FogPointerType); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.FogCoordPointer(_type,_stride,_pointer); -} -static unsafe void Test_FogCoordPointer_20758() { - OpenTK.Graphics.OpenGL.FogPointerType _type = default(OpenTK.Graphics.OpenGL.FogPointerType); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.FogCoordPointer(_type,_stride,_pointer); -} -static unsafe void Test_FogCoordPointer_20759() { - OpenTK.Graphics.OpenGL.FogPointerType _type = default(OpenTK.Graphics.OpenGL.FogPointerType); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.FogCoordPointer(_type,_stride,ref _pointer); -} -static unsafe void Test_Fog_20760() { - OpenTK.Graphics.OpenGL.FogParameter _pname = default(OpenTK.Graphics.OpenGL.FogParameter); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Fog(_pname,_param); -} -static unsafe void Test_Fog_20761() { - OpenTK.Graphics.OpenGL.FogParameter _pname = default(OpenTK.Graphics.OpenGL.FogParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Fog(_pname,_params); -} -static unsafe void Test_Fog_20762() { - OpenTK.Graphics.OpenGL.FogParameter _pname = default(OpenTK.Graphics.OpenGL.FogParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Fog(_pname,_params); -} -static unsafe void Test_Fog_20763() { - OpenTK.Graphics.OpenGL.FogParameter _pname = default(OpenTK.Graphics.OpenGL.FogParameter); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Fog(_pname,_param); -} -static unsafe void Test_Fog_20764() { - OpenTK.Graphics.OpenGL.FogParameter _pname = default(OpenTK.Graphics.OpenGL.FogParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Fog(_pname,_params); -} -static unsafe void Test_Fog_20765() { - OpenTK.Graphics.OpenGL.FogParameter _pname = default(OpenTK.Graphics.OpenGL.FogParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Fog(_pname,_params); -} -static unsafe void Test_FramebufferParameter_20766() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferDefaultParameter _pname = default(OpenTK.Graphics.OpenGL.FramebufferDefaultParameter); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.FramebufferParameter(_target,_pname,_param); -} -static unsafe void Test_FramebufferRenderbuffer_20767() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - OpenTK.Graphics.OpenGL.RenderbufferTarget _renderbuffertarget = default(OpenTK.Graphics.OpenGL.RenderbufferTarget); - System.Int32 _renderbuffer = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.FramebufferRenderbuffer(_target,_attachment,_renderbuffertarget,_renderbuffer); -} -static unsafe void Test_FramebufferRenderbuffer_20768() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - OpenTK.Graphics.OpenGL.RenderbufferTarget _renderbuffertarget = default(OpenTK.Graphics.OpenGL.RenderbufferTarget); - System.UInt32 _renderbuffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.FramebufferRenderbuffer(_target,_attachment,_renderbuffertarget,_renderbuffer); -} -static unsafe void Test_FramebufferTexture_20769() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.FramebufferTexture(_target,_attachment,_texture,_level); -} -static unsafe void Test_FramebufferTexture_20770() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.FramebufferTexture(_target,_attachment,_texture,_level); -} -static unsafe void Test_FramebufferTexture1D_20771() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - OpenTK.Graphics.OpenGL.TextureTarget _textarget = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.FramebufferTexture1D(_target,_attachment,_textarget,_texture,_level); -} -static unsafe void Test_FramebufferTexture1D_20772() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - OpenTK.Graphics.OpenGL.TextureTarget _textarget = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.FramebufferTexture1D(_target,_attachment,_textarget,_texture,_level); -} -static unsafe void Test_FramebufferTexture2D_20773() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - OpenTK.Graphics.OpenGL.TextureTarget _textarget = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.FramebufferTexture2D(_target,_attachment,_textarget,_texture,_level); -} -static unsafe void Test_FramebufferTexture2D_20774() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - OpenTK.Graphics.OpenGL.TextureTarget _textarget = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.FramebufferTexture2D(_target,_attachment,_textarget,_texture,_level); -} -static unsafe void Test_FramebufferTexture3D_20775() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - OpenTK.Graphics.OpenGL.TextureTarget _textarget = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.FramebufferTexture3D(_target,_attachment,_textarget,_texture,_level,_zoffset); -} -static unsafe void Test_FramebufferTexture3D_20776() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - OpenTK.Graphics.OpenGL.TextureTarget _textarget = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.FramebufferTexture3D(_target,_attachment,_textarget,_texture,_level,_zoffset); -} -static unsafe void Test_FramebufferTextureLayer_20777() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - System.Int32 _layer = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.FramebufferTextureLayer(_target,_attachment,_texture,_level,_layer); -} -static unsafe void Test_FramebufferTextureLayer_20778() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - System.Int32 _layer = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.FramebufferTextureLayer(_target,_attachment,_texture,_level,_layer); -} -static unsafe void Test_FrontFace_20779() { - OpenTK.Graphics.OpenGL.FrontFaceDirection _mode = default(OpenTK.Graphics.OpenGL.FrontFaceDirection); - OpenTK.Graphics.OpenGL.GL.FrontFace(_mode); -} -static unsafe void Test_Frustum_20780() { - System.Double _left = default(System.Double); - System.Double _right = default(System.Double); - System.Double _bottom = default(System.Double); - System.Double _top = default(System.Double); - System.Double _zNear = default(System.Double); - System.Double _zFar = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Frustum(_left,_right,_bottom,_top,_zNear,_zFar); -} -static unsafe void Test_GenBuffer_20781() { - System.Int32 r = OpenTK.Graphics.OpenGL.GL.GenBuffer(); -} -static unsafe void Test_GenBuffers_20782() { - System.Int32 _n = default(System.Int32); - System.Int32[] _buffers = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GenBuffers(_n,_buffers); -} -static unsafe void Test_GenBuffers_20783() { - System.Int32 _n = default(System.Int32); - System.Int32 _buffers = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GenBuffers(_n,out _buffers); -} -static unsafe void Test_GenBuffers_20784() { - System.Int32 _n = default(System.Int32); - System.Int32* _buffers = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GenBuffers(_n,_buffers); -} -static unsafe void Test_GenBuffers_20785() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _buffers = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.GenBuffers(_n,_buffers); -} -static unsafe void Test_GenBuffers_20786() { - System.Int32 _n = default(System.Int32); - System.UInt32 _buffers = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.GenBuffers(_n,out _buffers); -} -static unsafe void Test_GenBuffers_20787() { - System.Int32 _n = default(System.Int32); - System.UInt32* _buffers = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.GenBuffers(_n,_buffers); -} -static unsafe void Test_GenerateMipmap_20788() { - OpenTK.Graphics.OpenGL.GenerateMipmapTarget _target = default(OpenTK.Graphics.OpenGL.GenerateMipmapTarget); - OpenTK.Graphics.OpenGL.GL.GenerateMipmap(_target); -} -static unsafe void Test_GenFramebuffer_20789() { - System.Int32 r = OpenTK.Graphics.OpenGL.GL.GenFramebuffer(); -} -static unsafe void Test_GenFramebuffers_20790() { - System.Int32 _n = default(System.Int32); - System.Int32[] _framebuffers = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GenFramebuffers(_n,_framebuffers); -} -static unsafe void Test_GenFramebuffers_20791() { - System.Int32 _n = default(System.Int32); - System.Int32 _framebuffers = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GenFramebuffers(_n,out _framebuffers); -} -static unsafe void Test_GenFramebuffers_20792() { - System.Int32 _n = default(System.Int32); - System.Int32* _framebuffers = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GenFramebuffers(_n,_framebuffers); -} -static unsafe void Test_GenFramebuffers_20793() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _framebuffers = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.GenFramebuffers(_n,_framebuffers); -} -static unsafe void Test_GenFramebuffers_20794() { - System.Int32 _n = default(System.Int32); - System.UInt32 _framebuffers = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.GenFramebuffers(_n,out _framebuffers); -} -static unsafe void Test_GenFramebuffers_20795() { - System.Int32 _n = default(System.Int32); - System.UInt32* _framebuffers = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.GenFramebuffers(_n,_framebuffers); -} -static unsafe void Test_GenLists_20796() { - System.Int32 _range = default(System.Int32); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.GenLists(_range); -} -static unsafe void Test_GenProgramPipeline_20797() { - System.Int32 r = OpenTK.Graphics.OpenGL.GL.GenProgramPipeline(); -} -static unsafe void Test_GenProgramPipelines_20798() { - System.Int32 _n = default(System.Int32); - System.Int32[] _pipelines = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GenProgramPipelines(_n,_pipelines); -} -static unsafe void Test_GenProgramPipelines_20799() { - System.Int32 _n = default(System.Int32); - System.Int32 _pipelines = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GenProgramPipelines(_n,out _pipelines); -} -static unsafe void Test_GenProgramPipelines_20800() { - System.Int32 _n = default(System.Int32); - System.Int32* _pipelines = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GenProgramPipelines(_n,_pipelines); -} -static unsafe void Test_GenProgramPipelines_20801() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _pipelines = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.GenProgramPipelines(_n,_pipelines); -} -static unsafe void Test_GenProgramPipelines_20802() { - System.Int32 _n = default(System.Int32); - System.UInt32 _pipelines = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.GenProgramPipelines(_n,out _pipelines); -} -static unsafe void Test_GenProgramPipelines_20803() { - System.Int32 _n = default(System.Int32); - System.UInt32* _pipelines = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.GenProgramPipelines(_n,_pipelines); -} -static unsafe void Test_GenQuery_20804() { - System.Int32 r = OpenTK.Graphics.OpenGL.GL.GenQuery(); -} -static unsafe void Test_GenQueries_20805() { - System.Int32 _n = default(System.Int32); - System.Int32[] _ids = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GenQueries(_n,_ids); -} -static unsafe void Test_GenQueries_20806() { - System.Int32 _n = default(System.Int32); - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GenQueries(_n,out _ids); -} -static unsafe void Test_GenQueries_20807() { - System.Int32 _n = default(System.Int32); - System.Int32* _ids = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GenQueries(_n,_ids); -} -static unsafe void Test_GenQueries_20808() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _ids = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.GenQueries(_n,_ids); -} -static unsafe void Test_GenQueries_20809() { - System.Int32 _n = default(System.Int32); - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.GenQueries(_n,out _ids); -} -static unsafe void Test_GenQueries_20810() { - System.Int32 _n = default(System.Int32); - System.UInt32* _ids = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.GenQueries(_n,_ids); -} -static unsafe void Test_GenRenderbuffer_20811() { - System.Int32 r = OpenTK.Graphics.OpenGL.GL.GenRenderbuffer(); -} -static unsafe void Test_GenRenderbuffers_20812() { - System.Int32 _n = default(System.Int32); - System.Int32[] _renderbuffers = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GenRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_GenRenderbuffers_20813() { - System.Int32 _n = default(System.Int32); - System.Int32 _renderbuffers = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GenRenderbuffers(_n,out _renderbuffers); -} -static unsafe void Test_GenRenderbuffers_20814() { - System.Int32 _n = default(System.Int32); - System.Int32* _renderbuffers = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GenRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_GenRenderbuffers_20815() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _renderbuffers = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.GenRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_GenRenderbuffers_20816() { - System.Int32 _n = default(System.Int32); - System.UInt32 _renderbuffers = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.GenRenderbuffers(_n,out _renderbuffers); -} -static unsafe void Test_GenRenderbuffers_20817() { - System.Int32 _n = default(System.Int32); - System.UInt32* _renderbuffers = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.GenRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_GenSampler_20818() { - System.Int32 r = OpenTK.Graphics.OpenGL.GL.GenSampler(); -} -static unsafe void Test_GenSamplers_20819() { - System.Int32 _count = default(System.Int32); - System.Int32[] _samplers = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GenSamplers(_count,_samplers); -} -static unsafe void Test_GenSamplers_20820() { - System.Int32 _count = default(System.Int32); - System.Int32 _samplers = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GenSamplers(_count,out _samplers); -} -static unsafe void Test_GenSamplers_20821() { - System.Int32 _count = default(System.Int32); - System.Int32* _samplers = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GenSamplers(_count,_samplers); -} -static unsafe void Test_GenSamplers_20822() { - System.Int32 _count = default(System.Int32); - System.UInt32[] _samplers = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.GenSamplers(_count,_samplers); -} -static unsafe void Test_GenSamplers_20823() { - System.Int32 _count = default(System.Int32); - System.UInt32 _samplers = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.GenSamplers(_count,out _samplers); -} -static unsafe void Test_GenSamplers_20824() { - System.Int32 _count = default(System.Int32); - System.UInt32* _samplers = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.GenSamplers(_count,_samplers); -} -static unsafe void Test_GenTexture_20825() { - System.Int32 r = OpenTK.Graphics.OpenGL.GL.GenTexture(); -} -static unsafe void Test_GenTextures_20826() { - System.Int32 _n = default(System.Int32); - System.Int32[] _textures = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GenTextures(_n,_textures); -} -static unsafe void Test_GenTextures_20827() { - System.Int32 _n = default(System.Int32); - System.Int32 _textures = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GenTextures(_n,out _textures); -} -static unsafe void Test_GenTextures_20828() { - System.Int32 _n = default(System.Int32); - System.Int32* _textures = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GenTextures(_n,_textures); -} -static unsafe void Test_GenTextures_20829() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _textures = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.GenTextures(_n,_textures); -} -static unsafe void Test_GenTextures_20830() { - System.Int32 _n = default(System.Int32); - System.UInt32 _textures = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.GenTextures(_n,out _textures); -} -static unsafe void Test_GenTextures_20831() { - System.Int32 _n = default(System.Int32); - System.UInt32* _textures = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.GenTextures(_n,_textures); -} -static unsafe void Test_GenTransformFeedback_20832() { - System.Int32 r = OpenTK.Graphics.OpenGL.GL.GenTransformFeedback(); -} -static unsafe void Test_GenTransformFeedbacks_20833() { - System.Int32 _n = default(System.Int32); - System.Int32[] _ids = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GenTransformFeedbacks(_n,_ids); -} -static unsafe void Test_GenTransformFeedbacks_20834() { - System.Int32 _n = default(System.Int32); - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GenTransformFeedbacks(_n,out _ids); -} -static unsafe void Test_GenTransformFeedbacks_20835() { - System.Int32 _n = default(System.Int32); - System.Int32* _ids = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GenTransformFeedbacks(_n,_ids); -} -static unsafe void Test_GenTransformFeedbacks_20836() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _ids = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.GenTransformFeedbacks(_n,_ids); -} -static unsafe void Test_GenTransformFeedbacks_20837() { - System.Int32 _n = default(System.Int32); - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.GenTransformFeedbacks(_n,out _ids); -} -static unsafe void Test_GenTransformFeedbacks_20838() { - System.Int32 _n = default(System.Int32); - System.UInt32* _ids = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.GenTransformFeedbacks(_n,_ids); -} -static unsafe void Test_GenVertexArray_20839() { - System.Int32 r = OpenTK.Graphics.OpenGL.GL.GenVertexArray(); -} -static unsafe void Test_GenVertexArrays_20840() { - System.Int32 _n = default(System.Int32); - System.Int32[] _arrays = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GenVertexArrays(_n,_arrays); -} -static unsafe void Test_GenVertexArrays_20841() { - System.Int32 _n = default(System.Int32); - System.Int32 _arrays = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GenVertexArrays(_n,out _arrays); -} -static unsafe void Test_GenVertexArrays_20842() { - System.Int32 _n = default(System.Int32); - System.Int32* _arrays = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GenVertexArrays(_n,_arrays); -} -static unsafe void Test_GenVertexArrays_20843() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _arrays = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.GenVertexArrays(_n,_arrays); -} -static unsafe void Test_GenVertexArrays_20844() { - System.Int32 _n = default(System.Int32); - System.UInt32 _arrays = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.GenVertexArrays(_n,out _arrays); -} -static unsafe void Test_GenVertexArrays_20845() { - System.Int32 _n = default(System.Int32); - System.UInt32* _arrays = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.GenVertexArrays(_n,_arrays); -} -static unsafe void Test_GetActiveAtomicCounterBuffer_20846() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufferIndex = default(System.Int32); - OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter _pname = default(OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetActiveAtomicCounterBuffer(_program,_bufferIndex,_pname,_params); -} -static unsafe void Test_GetActiveAtomicCounterBuffer_20847() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufferIndex = default(System.Int32); - OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter _pname = default(OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetActiveAtomicCounterBuffer(_program,_bufferIndex,_pname,out _params); -} -static unsafe void Test_GetActiveAtomicCounterBuffer_20848() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufferIndex = default(System.Int32); - OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter _pname = default(OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetActiveAtomicCounterBuffer(_program,_bufferIndex,_pname,_params); -} -static unsafe void Test_GetActiveAtomicCounterBuffer_20849() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _bufferIndex = default(System.UInt32); - OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter _pname = default(OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetActiveAtomicCounterBuffer(_program,_bufferIndex,_pname,_params); -} -static unsafe void Test_GetActiveAtomicCounterBuffer_20850() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _bufferIndex = default(System.UInt32); - OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter _pname = default(OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetActiveAtomicCounterBuffer(_program,_bufferIndex,_pname,out _params); -} -static unsafe void Test_GetActiveAtomicCounterBuffer_20851() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _bufferIndex = default(System.UInt32); - OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter _pname = default(OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetActiveAtomicCounterBuffer(_program,_bufferIndex,_pname,_params); -} -static unsafe void Test_GetActiveAttrib_20852() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ActiveAttribType _type = default(OpenTK.Graphics.OpenGL.ActiveAttribType); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetActiveAttrib(_program,_index,_bufSize,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetActiveAttrib_20853() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.OpenGL.ActiveAttribType* _type = default(OpenTK.Graphics.OpenGL.ActiveAttribType*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetActiveAttrib(_program,_index,_bufSize,_length,_size,_type,_name); -} -static unsafe void Test_GetActiveAttrib_20854() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ActiveAttribType _type = default(OpenTK.Graphics.OpenGL.ActiveAttribType); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetActiveAttrib(_program,_index,_bufSize,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetActiveAttrib_20855() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.OpenGL.ActiveAttribType* _type = default(OpenTK.Graphics.OpenGL.ActiveAttribType*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetActiveAttrib(_program,_index,_bufSize,_length,_size,_type,_name); -} -static unsafe void Test_GetActiveSubroutineName_20856() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL.ShaderType); - System.Int32 _index = default(System.Int32); - System.Int32 _bufsize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetActiveSubroutineName(_program,_shadertype,_index,_bufsize,out _length,_name); -} -static unsafe void Test_GetActiveSubroutineName_20857() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL.ShaderType); - System.Int32 _index = default(System.Int32); - System.Int32 _bufsize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetActiveSubroutineName(_program,_shadertype,_index,_bufsize,_length,_name); -} -static unsafe void Test_GetActiveSubroutineName_20858() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL.ShaderType); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufsize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetActiveSubroutineName(_program,_shadertype,_index,_bufsize,out _length,_name); -} -static unsafe void Test_GetActiveSubroutineName_20859() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL.ShaderType); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufsize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetActiveSubroutineName(_program,_shadertype,_index,_bufsize,_length,_name); -} -static unsafe void Test_GetActiveSubroutineUniform_20860() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL.ShaderType); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter _pname = default(OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter); - System.Int32[] _values = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetActiveSubroutineUniform(_program,_shadertype,_index,_pname,_values); -} -static unsafe void Test_GetActiveSubroutineUniform_20861() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL.ShaderType); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter _pname = default(OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter); - System.Int32 _values = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetActiveSubroutineUniform(_program,_shadertype,_index,_pname,out _values); -} -static unsafe void Test_GetActiveSubroutineUniform_20862() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL.ShaderType); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter _pname = default(OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter); - System.Int32* _values = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetActiveSubroutineUniform(_program,_shadertype,_index,_pname,_values); -} -static unsafe void Test_GetActiveSubroutineUniform_20863() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL.ShaderType); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter _pname = default(OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter); - System.Int32[] _values = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetActiveSubroutineUniform(_program,_shadertype,_index,_pname,_values); -} -static unsafe void Test_GetActiveSubroutineUniform_20864() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL.ShaderType); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter _pname = default(OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter); - System.Int32 _values = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetActiveSubroutineUniform(_program,_shadertype,_index,_pname,out _values); -} -static unsafe void Test_GetActiveSubroutineUniform_20865() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL.ShaderType); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter _pname = default(OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter); - System.Int32* _values = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetActiveSubroutineUniform(_program,_shadertype,_index,_pname,_values); -} -static unsafe void Test_GetActiveSubroutineUniformName_20866() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL.ShaderType); - System.Int32 _index = default(System.Int32); - System.Int32 _bufsize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetActiveSubroutineUniformName(_program,_shadertype,_index,_bufsize,out _length,_name); -} -static unsafe void Test_GetActiveSubroutineUniformName_20867() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL.ShaderType); - System.Int32 _index = default(System.Int32); - System.Int32 _bufsize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetActiveSubroutineUniformName(_program,_shadertype,_index,_bufsize,_length,_name); -} -static unsafe void Test_GetActiveSubroutineUniformName_20868() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL.ShaderType); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufsize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetActiveSubroutineUniformName(_program,_shadertype,_index,_bufsize,out _length,_name); -} -static unsafe void Test_GetActiveSubroutineUniformName_20869() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL.ShaderType); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufsize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetActiveSubroutineUniformName(_program,_shadertype,_index,_bufsize,_length,_name); -} -static unsafe void Test_GetActiveUniform_20870() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ActiveUniformType _type = default(OpenTK.Graphics.OpenGL.ActiveUniformType); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetActiveUniform(_program,_index,_bufSize,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetActiveUniform_20871() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.OpenGL.ActiveUniformType* _type = default(OpenTK.Graphics.OpenGL.ActiveUniformType*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetActiveUniform(_program,_index,_bufSize,_length,_size,_type,_name); -} -static unsafe void Test_GetActiveUniform_20872() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ActiveUniformType _type = default(OpenTK.Graphics.OpenGL.ActiveUniformType); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetActiveUniform(_program,_index,_bufSize,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetActiveUniform_20873() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.OpenGL.ActiveUniformType* _type = default(OpenTK.Graphics.OpenGL.ActiveUniformType*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetActiveUniform(_program,_index,_bufSize,_length,_size,_type,_name); -} -static unsafe void Test_GetActiveUniformBlock_20874() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformBlockIndex = default(System.Int32); - OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter _pname = default(OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetActiveUniformBlock(_program,_uniformBlockIndex,_pname,_params); -} -static unsafe void Test_GetActiveUniformBlock_20875() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformBlockIndex = default(System.Int32); - OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter _pname = default(OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetActiveUniformBlock(_program,_uniformBlockIndex,_pname,out _params); -} -static unsafe void Test_GetActiveUniformBlock_20876() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformBlockIndex = default(System.Int32); - OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter _pname = default(OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetActiveUniformBlock(_program,_uniformBlockIndex,_pname,_params); -} -static unsafe void Test_GetActiveUniformBlock_20877() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _uniformBlockIndex = default(System.UInt32); - OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter _pname = default(OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetActiveUniformBlock(_program,_uniformBlockIndex,_pname,_params); -} -static unsafe void Test_GetActiveUniformBlock_20878() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _uniformBlockIndex = default(System.UInt32); - OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter _pname = default(OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetActiveUniformBlock(_program,_uniformBlockIndex,_pname,out _params); -} -static unsafe void Test_GetActiveUniformBlock_20879() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _uniformBlockIndex = default(System.UInt32); - OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter _pname = default(OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetActiveUniformBlock(_program,_uniformBlockIndex,_pname,_params); -} -static unsafe void Test_GetActiveUniformBlockName_20880() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformBlockIndex = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _uniformBlockName = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetActiveUniformBlockName(_program,_uniformBlockIndex,_bufSize,out _length,_uniformBlockName); -} -static unsafe void Test_GetActiveUniformBlockName_20881() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformBlockIndex = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _uniformBlockName = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetActiveUniformBlockName(_program,_uniformBlockIndex,_bufSize,_length,_uniformBlockName); -} -static unsafe void Test_GetActiveUniformBlockName_20882() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _uniformBlockIndex = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _uniformBlockName = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetActiveUniformBlockName(_program,_uniformBlockIndex,_bufSize,out _length,_uniformBlockName); -} -static unsafe void Test_GetActiveUniformBlockName_20883() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _uniformBlockIndex = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _uniformBlockName = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetActiveUniformBlockName(_program,_uniformBlockIndex,_bufSize,_length,_uniformBlockName); -} -static unsafe void Test_GetActiveUniformName_20884() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformIndex = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _uniformName = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetActiveUniformName(_program,_uniformIndex,_bufSize,out _length,_uniformName); -} -static unsafe void Test_GetActiveUniformName_20885() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformIndex = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _uniformName = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetActiveUniformName(_program,_uniformIndex,_bufSize,_length,_uniformName); -} -static unsafe void Test_GetActiveUniformName_20886() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _uniformIndex = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _uniformName = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetActiveUniformName(_program,_uniformIndex,_bufSize,out _length,_uniformName); -} -static unsafe void Test_GetActiveUniformName_20887() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _uniformIndex = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _uniformName = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetActiveUniformName(_program,_uniformIndex,_bufSize,_length,_uniformName); -} -static unsafe void Test_GetActiveUniforms_20888() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformCount = default(System.Int32); - System.Int32[] _uniformIndices = default(System.Int32[]); - OpenTK.Graphics.OpenGL.ActiveUniformParameter _pname = default(OpenTK.Graphics.OpenGL.ActiveUniformParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetActiveUniforms(_program,_uniformCount,_uniformIndices,_pname,_params); -} -static unsafe void Test_GetActiveUniforms_20889() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformCount = default(System.Int32); - System.Int32 _uniformIndices = default(System.Int32); - OpenTK.Graphics.OpenGL.ActiveUniformParameter _pname = default(OpenTK.Graphics.OpenGL.ActiveUniformParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetActiveUniforms(_program,_uniformCount,ref _uniformIndices,_pname,out _params); -} -static unsafe void Test_GetActiveUniforms_20890() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformCount = default(System.Int32); - System.Int32* _uniformIndices = default(System.Int32*); - OpenTK.Graphics.OpenGL.ActiveUniformParameter _pname = default(OpenTK.Graphics.OpenGL.ActiveUniformParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetActiveUniforms(_program,_uniformCount,_uniformIndices,_pname,_params); -} -static unsafe void Test_GetActiveUniforms_20891() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _uniformCount = default(System.Int32); - System.UInt32[] _uniformIndices = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.ActiveUniformParameter _pname = default(OpenTK.Graphics.OpenGL.ActiveUniformParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetActiveUniforms(_program,_uniformCount,_uniformIndices,_pname,_params); -} -static unsafe void Test_GetActiveUniforms_20892() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _uniformCount = default(System.Int32); - System.UInt32 _uniformIndices = default(System.UInt32); - OpenTK.Graphics.OpenGL.ActiveUniformParameter _pname = default(OpenTK.Graphics.OpenGL.ActiveUniformParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetActiveUniforms(_program,_uniformCount,ref _uniformIndices,_pname,out _params); -} -static unsafe void Test_GetActiveUniforms_20893() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _uniformCount = default(System.Int32); - System.UInt32* _uniformIndices = default(System.UInt32*); - OpenTK.Graphics.OpenGL.ActiveUniformParameter _pname = default(OpenTK.Graphics.OpenGL.ActiveUniformParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetActiveUniforms(_program,_uniformCount,_uniformIndices,_pname,_params); -} -static unsafe void Test_GetAttachedShaders_20894() { - System.Int32 _program = default(System.Int32); - System.Int32 _maxCount = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _shaders = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetAttachedShaders(_program,_maxCount,out _count,_shaders); -} -static unsafe void Test_GetAttachedShaders_20895() { - System.Int32 _program = default(System.Int32); - System.Int32 _maxCount = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _shaders = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetAttachedShaders(_program,_maxCount,out _count,out _shaders); -} -static unsafe void Test_GetAttachedShaders_20896() { - System.Int32 _program = default(System.Int32); - System.Int32 _maxCount = default(System.Int32); - System.Int32* _count = default(System.Int32*); - System.Int32* _shaders = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetAttachedShaders(_program,_maxCount,_count,_shaders); -} -static unsafe void Test_GetAttachedShaders_20897() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _maxCount = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _shaders = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.GetAttachedShaders(_program,_maxCount,out _count,_shaders); -} -static unsafe void Test_GetAttachedShaders_20898() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _maxCount = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32 _shaders = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.GetAttachedShaders(_program,_maxCount,out _count,out _shaders); -} -static unsafe void Test_GetAttachedShaders_20899() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _maxCount = default(System.Int32); - System.Int32* _count = default(System.Int32*); - System.UInt32* _shaders = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.GetAttachedShaders(_program,_maxCount,_count,_shaders); -} -static unsafe void Test_GetAttribLocation_20900() { - System.Int32 _program = default(System.Int32); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.GetAttribLocation(_program,_name); -} -static unsafe void Test_GetAttribLocation_20901() { - System.UInt32 _program = default(System.UInt32); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.GetAttribLocation(_program,_name); -} -static unsafe void Test_GetBoolean_20902() { - OpenTK.Graphics.OpenGL.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Boolean[] _data = default(System.Boolean[]); - OpenTK.Graphics.OpenGL.GL.GetBoolean(_target,_index,_data); -} -static unsafe void Test_GetBoolean_20903() { - OpenTK.Graphics.OpenGL.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Boolean _data = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.GetBoolean(_target,_index,out _data); -} -static unsafe void Test_GetBoolean_20904() { - OpenTK.Graphics.OpenGL.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Boolean* _data = default(System.Boolean*); - OpenTK.Graphics.OpenGL.GL.GetBoolean(_target,_index,_data); -} -static unsafe void Test_GetBoolean_20905() { - OpenTK.Graphics.OpenGL.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Boolean[] _data = default(System.Boolean[]); - OpenTK.Graphics.OpenGL.GL.GetBoolean(_target,_index,_data); -} -static unsafe void Test_GetBoolean_20906() { - OpenTK.Graphics.OpenGL.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Boolean _data = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.GetBoolean(_target,_index,out _data); -} -static unsafe void Test_GetBoolean_20907() { - OpenTK.Graphics.OpenGL.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Boolean* _data = default(System.Boolean*); - OpenTK.Graphics.OpenGL.GL.GetBoolean(_target,_index,_data); -} -static unsafe void Test_GetBoolean_20908() { - OpenTK.Graphics.OpenGL.GetPName _pname = default(OpenTK.Graphics.OpenGL.GetPName); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.GetBoolean(_pname); -} -static unsafe void Test_GetBoolean_20909() { - OpenTK.Graphics.OpenGL.GetPName _pname = default(OpenTK.Graphics.OpenGL.GetPName); - System.Boolean[] _data = default(System.Boolean[]); - OpenTK.Graphics.OpenGL.GL.GetBoolean(_pname,_data); -} -static unsafe void Test_GetBoolean_20910() { - OpenTK.Graphics.OpenGL.GetPName _pname = default(OpenTK.Graphics.OpenGL.GetPName); - System.Boolean _data = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.GetBoolean(_pname,out _data); -} -static unsafe void Test_GetBoolean_20911() { - OpenTK.Graphics.OpenGL.GetPName _pname = default(OpenTK.Graphics.OpenGL.GetPName); - System.Boolean* _data = default(System.Boolean*); - OpenTK.Graphics.OpenGL.GL.GetBoolean(_pname,_data); -} -static unsafe void Test_GetBufferParameter_20912() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - OpenTK.Graphics.OpenGL.BufferParameterName _pname = default(OpenTK.Graphics.OpenGL.BufferParameterName); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.GetBufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetBufferParameter_20913() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - OpenTK.Graphics.OpenGL.BufferParameterName _pname = default(OpenTK.Graphics.OpenGL.BufferParameterName); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.GetBufferParameter(_target,_pname,out _params); -} -static unsafe void Test_GetBufferParameter_20914() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - OpenTK.Graphics.OpenGL.BufferParameterName _pname = default(OpenTK.Graphics.OpenGL.BufferParameterName); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.GetBufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetBufferParameter_20915() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - OpenTK.Graphics.OpenGL.BufferParameterName _pname = default(OpenTK.Graphics.OpenGL.BufferParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetBufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetBufferParameter_20916() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - OpenTK.Graphics.OpenGL.BufferParameterName _pname = default(OpenTK.Graphics.OpenGL.BufferParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetBufferParameter(_target,_pname,out _params); -} -static unsafe void Test_GetBufferParameter_20917() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - OpenTK.Graphics.OpenGL.BufferParameterName _pname = default(OpenTK.Graphics.OpenGL.BufferParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetBufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_20918() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - OpenTK.Graphics.OpenGL.BufferPointer _pname = default(OpenTK.Graphics.OpenGL.BufferPointer); - System.IntPtr _params = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_20919() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - OpenTK.Graphics.OpenGL.BufferPointer _pname = default(OpenTK.Graphics.OpenGL.BufferPointer); - int[] _params = default(int[]); - OpenTK.Graphics.OpenGL.GL.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_20920() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - OpenTK.Graphics.OpenGL.BufferPointer _pname = default(OpenTK.Graphics.OpenGL.BufferPointer); - int[,] _params = default(int[,]); - OpenTK.Graphics.OpenGL.GL.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_20921() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - OpenTK.Graphics.OpenGL.BufferPointer _pname = default(OpenTK.Graphics.OpenGL.BufferPointer); - int[,,] _params = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_20922() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - OpenTK.Graphics.OpenGL.BufferPointer _pname = default(OpenTK.Graphics.OpenGL.BufferPointer); - int _params = default(int); - OpenTK.Graphics.OpenGL.GL.GetBufferPointer(_target,_pname,ref _params); -} -static unsafe void Test_GetBufferSubData_20923() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.GetBufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_GetBufferSubData_20924() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.GetBufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_GetBufferSubData_20925() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.GetBufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_GetBufferSubData_20926() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.GetBufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_GetBufferSubData_20927() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.GetBufferSubData(_target,_offset,_size,ref _data); -} -static unsafe void Test_GetClipPlane_20928() { - OpenTK.Graphics.OpenGL.ClipPlaneName _plane = default(OpenTK.Graphics.OpenGL.ClipPlaneName); - System.Double[] _equation = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.GetClipPlane(_plane,_equation); -} -static unsafe void Test_GetClipPlane_20929() { - OpenTK.Graphics.OpenGL.ClipPlaneName _plane = default(OpenTK.Graphics.OpenGL.ClipPlaneName); - System.Double _equation = default(System.Double); - OpenTK.Graphics.OpenGL.GL.GetClipPlane(_plane,out _equation); -} -static unsafe void Test_GetClipPlane_20930() { - OpenTK.Graphics.OpenGL.ClipPlaneName _plane = default(OpenTK.Graphics.OpenGL.ClipPlaneName); - System.Double* _equation = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.GetClipPlane(_plane,_equation); -} -static unsafe void Test_GetColorTable_20931() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _table = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.GetColorTable(_target,_format,_type,_table); -} -static unsafe void Test_GetColorTable_20932() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _table = default(int[]); - OpenTK.Graphics.OpenGL.GL.GetColorTable(_target,_format,_type,_table); -} -static unsafe void Test_GetColorTable_20933() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _table = default(int[,]); - OpenTK.Graphics.OpenGL.GL.GetColorTable(_target,_format,_type,_table); -} -static unsafe void Test_GetColorTable_20934() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _table = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.GetColorTable(_target,_format,_type,_table); -} -static unsafe void Test_GetColorTable_20935() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _table = default(int); - OpenTK.Graphics.OpenGL.GL.GetColorTable(_target,_format,_type,ref _table); -} -static unsafe void Test_GetColorTableParameter_20936() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - OpenTK.Graphics.OpenGL.GetColorTableParameterPName _pname = default(OpenTK.Graphics.OpenGL.GetColorTableParameterPName); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.GetColorTableParameter(_target,_pname,_params); -} -static unsafe void Test_GetColorTableParameter_20937() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - OpenTK.Graphics.OpenGL.GetColorTableParameterPName _pname = default(OpenTK.Graphics.OpenGL.GetColorTableParameterPName); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.GetColorTableParameter(_target,_pname,out _params); -} -static unsafe void Test_GetColorTableParameter_20938() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - OpenTK.Graphics.OpenGL.GetColorTableParameterPName _pname = default(OpenTK.Graphics.OpenGL.GetColorTableParameterPName); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.GetColorTableParameter(_target,_pname,_params); -} -static unsafe void Test_GetColorTableParameter_20939() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - OpenTK.Graphics.OpenGL.GetColorTableParameterPName _pname = default(OpenTK.Graphics.OpenGL.GetColorTableParameterPName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetColorTableParameter(_target,_pname,_params); -} -static unsafe void Test_GetColorTableParameter_20940() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - OpenTK.Graphics.OpenGL.GetColorTableParameterPName _pname = default(OpenTK.Graphics.OpenGL.GetColorTableParameterPName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetColorTableParameter(_target,_pname,out _params); -} -static unsafe void Test_GetColorTableParameter_20941() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - OpenTK.Graphics.OpenGL.GetColorTableParameterPName _pname = default(OpenTK.Graphics.OpenGL.GetColorTableParameterPName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetColorTableParameter(_target,_pname,_params); -} -static unsafe void Test_GetCompressedTexImage_20942() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.IntPtr _img = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.GetCompressedTexImage(_target,_level,_img); -} -static unsafe void Test_GetCompressedTexImage_20943() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - int[] _img = default(int[]); - OpenTK.Graphics.OpenGL.GL.GetCompressedTexImage(_target,_level,_img); -} -static unsafe void Test_GetCompressedTexImage_20944() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - int[,] _img = default(int[,]); - OpenTK.Graphics.OpenGL.GL.GetCompressedTexImage(_target,_level,_img); -} -static unsafe void Test_GetCompressedTexImage_20945() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - int[,,] _img = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.GetCompressedTexImage(_target,_level,_img); -} -static unsafe void Test_GetCompressedTexImage_20946() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - int _img = default(int); - OpenTK.Graphics.OpenGL.GL.GetCompressedTexImage(_target,_level,ref _img); -} -static unsafe void Test_GetConvolutionFilter_20947() { - OpenTK.Graphics.OpenGL.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL.ConvolutionTarget); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _image = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.GetConvolutionFilter(_target,_format,_type,_image); -} -static unsafe void Test_GetConvolutionFilter_20948() { - OpenTK.Graphics.OpenGL.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL.ConvolutionTarget); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _image = default(int[]); - OpenTK.Graphics.OpenGL.GL.GetConvolutionFilter(_target,_format,_type,_image); -} -static unsafe void Test_GetConvolutionFilter_20949() { - OpenTK.Graphics.OpenGL.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL.ConvolutionTarget); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _image = default(int[,]); - OpenTK.Graphics.OpenGL.GL.GetConvolutionFilter(_target,_format,_type,_image); -} -static unsafe void Test_GetConvolutionFilter_20950() { - OpenTK.Graphics.OpenGL.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL.ConvolutionTarget); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _image = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.GetConvolutionFilter(_target,_format,_type,_image); -} -static unsafe void Test_GetConvolutionFilter_20951() { - OpenTK.Graphics.OpenGL.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL.ConvolutionTarget); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _image = default(int); - OpenTK.Graphics.OpenGL.GL.GetConvolutionFilter(_target,_format,_type,ref _image); -} -static unsafe void Test_GetConvolutionParameter_20952() { - OpenTK.Graphics.OpenGL.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL.ConvolutionTarget); - OpenTK.Graphics.OpenGL.GetConvolutionParameterPName _pname = default(OpenTK.Graphics.OpenGL.GetConvolutionParameterPName); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.GetConvolutionParameter(_target,_pname,_params); -} -static unsafe void Test_GetConvolutionParameter_20953() { - OpenTK.Graphics.OpenGL.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL.ConvolutionTarget); - OpenTK.Graphics.OpenGL.GetConvolutionParameterPName _pname = default(OpenTK.Graphics.OpenGL.GetConvolutionParameterPName); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.GetConvolutionParameter(_target,_pname,out _params); -} -static unsafe void Test_GetConvolutionParameter_20954() { - OpenTK.Graphics.OpenGL.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL.ConvolutionTarget); - OpenTK.Graphics.OpenGL.GetConvolutionParameterPName _pname = default(OpenTK.Graphics.OpenGL.GetConvolutionParameterPName); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.GetConvolutionParameter(_target,_pname,_params); -} -static unsafe void Test_GetConvolutionParameter_20955() { - OpenTK.Graphics.OpenGL.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL.ConvolutionTarget); - OpenTK.Graphics.OpenGL.GetConvolutionParameterPName _pname = default(OpenTK.Graphics.OpenGL.GetConvolutionParameterPName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetConvolutionParameter(_target,_pname,_params); -} -static unsafe void Test_GetConvolutionParameter_20956() { - OpenTK.Graphics.OpenGL.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL.ConvolutionTarget); - OpenTK.Graphics.OpenGL.GetConvolutionParameterPName _pname = default(OpenTK.Graphics.OpenGL.GetConvolutionParameterPName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetConvolutionParameter(_target,_pname,out _params); -} -static unsafe void Test_GetConvolutionParameter_20957() { - OpenTK.Graphics.OpenGL.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL.ConvolutionTarget); - OpenTK.Graphics.OpenGL.GetConvolutionParameterPName _pname = default(OpenTK.Graphics.OpenGL.GetConvolutionParameterPName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetConvolutionParameter(_target,_pname,_params); -} -static unsafe void Test_GetDebugMessageLog_20958() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.OpenGL.DebugSource[] _sources = default(OpenTK.Graphics.OpenGL.DebugSource[]); - OpenTK.Graphics.OpenGL.DebugType[] _types = default(OpenTK.Graphics.OpenGL.DebugType[]); - System.Int32[] _ids = default(System.Int32[]); - OpenTK.Graphics.OpenGL.DebugSeverity[] _severities = default(OpenTK.Graphics.OpenGL.DebugSeverity[]); - System.Int32[] _lengths = default(System.Int32[]); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_20959() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.OpenGL.DebugSource _sources = default(OpenTK.Graphics.OpenGL.DebugSource); - OpenTK.Graphics.OpenGL.DebugType _types = default(OpenTK.Graphics.OpenGL.DebugType); - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.OpenGL.DebugSeverity _severities = default(OpenTK.Graphics.OpenGL.DebugSeverity); - System.Int32 _lengths = default(System.Int32); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.GetDebugMessageLog(_count,_bufSize,out _sources,out _types,out _ids,out _severities,out _lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_20960() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.OpenGL.DebugSource* _sources = default(OpenTK.Graphics.OpenGL.DebugSource*); - OpenTK.Graphics.OpenGL.DebugType* _types = default(OpenTK.Graphics.OpenGL.DebugType*); - System.Int32* _ids = default(System.Int32*); - OpenTK.Graphics.OpenGL.DebugSeverity* _severities = default(OpenTK.Graphics.OpenGL.DebugSeverity*); - System.Int32* _lengths = default(System.Int32*); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_20961() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.OpenGL.DebugSource[] _sources = default(OpenTK.Graphics.OpenGL.DebugSource[]); - OpenTK.Graphics.OpenGL.DebugType[] _types = default(OpenTK.Graphics.OpenGL.DebugType[]); - System.UInt32[] _ids = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.DebugSeverity[] _severities = default(OpenTK.Graphics.OpenGL.DebugSeverity[]); - System.Int32[] _lengths = default(System.Int32[]); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_20962() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.OpenGL.DebugSource _sources = default(OpenTK.Graphics.OpenGL.DebugSource); - OpenTK.Graphics.OpenGL.DebugType _types = default(OpenTK.Graphics.OpenGL.DebugType); - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.OpenGL.DebugSeverity _severities = default(OpenTK.Graphics.OpenGL.DebugSeverity); - System.Int32 _lengths = default(System.Int32); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.GetDebugMessageLog(_count,_bufSize,out _sources,out _types,out _ids,out _severities,out _lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_20963() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.OpenGL.DebugSource* _sources = default(OpenTK.Graphics.OpenGL.DebugSource*); - OpenTK.Graphics.OpenGL.DebugType* _types = default(OpenTK.Graphics.OpenGL.DebugType*); - System.UInt32* _ids = default(System.UInt32*); - OpenTK.Graphics.OpenGL.DebugSeverity* _severities = default(OpenTK.Graphics.OpenGL.DebugSeverity*); - System.Int32* _lengths = default(System.Int32*); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDouble_20964() { - OpenTK.Graphics.OpenGL.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Double[] _data = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.GetDouble(_target,_index,_data); -} -static unsafe void Test_GetDouble_20965() { - OpenTK.Graphics.OpenGL.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Double _data = default(System.Double); - OpenTK.Graphics.OpenGL.GL.GetDouble(_target,_index,out _data); -} -static unsafe void Test_GetDouble_20966() { - OpenTK.Graphics.OpenGL.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Double* _data = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.GetDouble(_target,_index,_data); -} -static unsafe void Test_GetDouble_20967() { - OpenTK.Graphics.OpenGL.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Double[] _data = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.GetDouble(_target,_index,_data); -} -static unsafe void Test_GetDouble_20968() { - OpenTK.Graphics.OpenGL.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Double _data = default(System.Double); - OpenTK.Graphics.OpenGL.GL.GetDouble(_target,_index,out _data); -} -static unsafe void Test_GetDouble_20969() { - OpenTK.Graphics.OpenGL.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Double* _data = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.GetDouble(_target,_index,_data); -} -static unsafe void Test_GetDouble_20970() { - OpenTK.Graphics.OpenGL.GetPName _pname = default(OpenTK.Graphics.OpenGL.GetPName); - System.Double r = OpenTK.Graphics.OpenGL.GL.GetDouble(_pname); -} -static unsafe void Test_GetDouble_20971() { - OpenTK.Graphics.OpenGL.GetPName _pname = default(OpenTK.Graphics.OpenGL.GetPName); - System.Double[] _data = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.GetDouble(_pname,_data); -} -static unsafe void Test_GetDouble_20972() { - OpenTK.Graphics.OpenGL.GetPName _pname = default(OpenTK.Graphics.OpenGL.GetPName); - System.Double _data = default(System.Double); - OpenTK.Graphics.OpenGL.GL.GetDouble(_pname,out _data); -} -static unsafe void Test_GetDouble_20973() { - OpenTK.Graphics.OpenGL.GetPName _pname = default(OpenTK.Graphics.OpenGL.GetPName); - System.Double* _data = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.GetDouble(_pname,_data); -} -static unsafe void Test_GetError_20974() { - OpenTK.Graphics.OpenGL.ErrorCode r = OpenTK.Graphics.OpenGL.GL.GetError(); -} -static unsafe void Test_GetFloat_20975() { - OpenTK.Graphics.OpenGL.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Single[] _data = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.GetFloat(_target,_index,_data); -} -static unsafe void Test_GetFloat_20976() { - OpenTK.Graphics.OpenGL.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Single _data = default(System.Single); - OpenTK.Graphics.OpenGL.GL.GetFloat(_target,_index,out _data); -} -static unsafe void Test_GetFloat_20977() { - OpenTK.Graphics.OpenGL.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Single* _data = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.GetFloat(_target,_index,_data); -} -static unsafe void Test_GetFloat_20978() { - OpenTK.Graphics.OpenGL.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Single[] _data = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.GetFloat(_target,_index,_data); -} -static unsafe void Test_GetFloat_20979() { - OpenTK.Graphics.OpenGL.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Single _data = default(System.Single); - OpenTK.Graphics.OpenGL.GL.GetFloat(_target,_index,out _data); -} -static unsafe void Test_GetFloat_20980() { - OpenTK.Graphics.OpenGL.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Single* _data = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.GetFloat(_target,_index,_data); -} -static unsafe void Test_GetFloat_20981() { - OpenTK.Graphics.OpenGL.GetPName _pname = default(OpenTK.Graphics.OpenGL.GetPName); - System.Single r = OpenTK.Graphics.OpenGL.GL.GetFloat(_pname); -} -static unsafe void Test_GetFloat_20982() { - OpenTK.Graphics.OpenGL.GetPName _pname = default(OpenTK.Graphics.OpenGL.GetPName); - System.Single[] _data = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.GetFloat(_pname,_data); -} -static unsafe void Test_GetFloat_20983() { - OpenTK.Graphics.OpenGL.GetPName _pname = default(OpenTK.Graphics.OpenGL.GetPName); - System.Single _data = default(System.Single); - OpenTK.Graphics.OpenGL.GL.GetFloat(_pname,out _data); -} -static unsafe void Test_GetFloat_20984() { - OpenTK.Graphics.OpenGL.GetPName _pname = default(OpenTK.Graphics.OpenGL.GetPName); - System.Single* _data = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.GetFloat(_pname,_data); -} -static unsafe void Test_GetFragDataIndex_20985() { - System.Int32 _program = default(System.Int32); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.GetFragDataIndex(_program,_name); -} -static unsafe void Test_GetFragDataIndex_20986() { - System.UInt32 _program = default(System.UInt32); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.GetFragDataIndex(_program,_name); -} -static unsafe void Test_GetFragDataLocation_20987() { - System.Int32 _program = default(System.Int32); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.GetFragDataLocation(_program,_name); -} -static unsafe void Test_GetFragDataLocation_20988() { - System.UInt32 _program = default(System.UInt32); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.GetFragDataLocation(_program,_name); -} -static unsafe void Test_GetFramebufferAttachmentParameter_20989() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - OpenTK.Graphics.OpenGL.FramebufferParameterName _pname = default(OpenTK.Graphics.OpenGL.FramebufferParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetFramebufferAttachmentParameter(_target,_attachment,_pname,_params); -} -static unsafe void Test_GetFramebufferAttachmentParameter_20990() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - OpenTK.Graphics.OpenGL.FramebufferParameterName _pname = default(OpenTK.Graphics.OpenGL.FramebufferParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetFramebufferAttachmentParameter(_target,_attachment,_pname,out _params); -} -static unsafe void Test_GetFramebufferAttachmentParameter_20991() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - OpenTK.Graphics.OpenGL.FramebufferParameterName _pname = default(OpenTK.Graphics.OpenGL.FramebufferParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetFramebufferAttachmentParameter(_target,_attachment,_pname,_params); -} -static unsafe void Test_GetFramebufferParameter_20992() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferDefaultParameter _pname = default(OpenTK.Graphics.OpenGL.FramebufferDefaultParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetFramebufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetFramebufferParameter_20993() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferDefaultParameter _pname = default(OpenTK.Graphics.OpenGL.FramebufferDefaultParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetFramebufferParameter(_target,_pname,out _params); -} -static unsafe void Test_GetFramebufferParameter_20994() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferDefaultParameter _pname = default(OpenTK.Graphics.OpenGL.FramebufferDefaultParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetFramebufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetHistogram_20995() { - OpenTK.Graphics.OpenGL.HistogramTarget _target = default(OpenTK.Graphics.OpenGL.HistogramTarget); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _values = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.GetHistogram(_target,_reset,_format,_type,_values); -} -static unsafe void Test_GetHistogram_20996() { - OpenTK.Graphics.OpenGL.HistogramTarget _target = default(OpenTK.Graphics.OpenGL.HistogramTarget); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _values = default(int[]); - OpenTK.Graphics.OpenGL.GL.GetHistogram(_target,_reset,_format,_type,_values); -} -static unsafe void Test_GetHistogram_20997() { - OpenTK.Graphics.OpenGL.HistogramTarget _target = default(OpenTK.Graphics.OpenGL.HistogramTarget); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _values = default(int[,]); - OpenTK.Graphics.OpenGL.GL.GetHistogram(_target,_reset,_format,_type,_values); -} -static unsafe void Test_GetHistogram_20998() { - OpenTK.Graphics.OpenGL.HistogramTarget _target = default(OpenTK.Graphics.OpenGL.HistogramTarget); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _values = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.GetHistogram(_target,_reset,_format,_type,_values); -} -static unsafe void Test_GetHistogram_20999() { - OpenTK.Graphics.OpenGL.HistogramTarget _target = default(OpenTK.Graphics.OpenGL.HistogramTarget); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _values = default(int); - OpenTK.Graphics.OpenGL.GL.GetHistogram(_target,_reset,_format,_type,ref _values); -} -static unsafe void Test_GetHistogramParameter_21000() { - OpenTK.Graphics.OpenGL.HistogramTarget _target = default(OpenTK.Graphics.OpenGL.HistogramTarget); - OpenTK.Graphics.OpenGL.GetHistogramParameterPName _pname = default(OpenTK.Graphics.OpenGL.GetHistogramParameterPName); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.GetHistogramParameter(_target,_pname,_params); -} -static unsafe void Test_GetHistogramParameter_21001() { - OpenTK.Graphics.OpenGL.HistogramTarget _target = default(OpenTK.Graphics.OpenGL.HistogramTarget); - OpenTK.Graphics.OpenGL.GetHistogramParameterPName _pname = default(OpenTK.Graphics.OpenGL.GetHistogramParameterPName); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.GetHistogramParameter(_target,_pname,out _params); -} -static unsafe void Test_GetHistogramParameter_21002() { - OpenTK.Graphics.OpenGL.HistogramTarget _target = default(OpenTK.Graphics.OpenGL.HistogramTarget); - OpenTK.Graphics.OpenGL.GetHistogramParameterPName _pname = default(OpenTK.Graphics.OpenGL.GetHistogramParameterPName); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.GetHistogramParameter(_target,_pname,_params); -} -static unsafe void Test_GetHistogramParameter_21003() { - OpenTK.Graphics.OpenGL.HistogramTarget _target = default(OpenTK.Graphics.OpenGL.HistogramTarget); - OpenTK.Graphics.OpenGL.GetHistogramParameterPName _pname = default(OpenTK.Graphics.OpenGL.GetHistogramParameterPName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetHistogramParameter(_target,_pname,_params); -} -static unsafe void Test_GetHistogramParameter_21004() { - OpenTK.Graphics.OpenGL.HistogramTarget _target = default(OpenTK.Graphics.OpenGL.HistogramTarget); - OpenTK.Graphics.OpenGL.GetHistogramParameterPName _pname = default(OpenTK.Graphics.OpenGL.GetHistogramParameterPName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetHistogramParameter(_target,_pname,out _params); -} -static unsafe void Test_GetHistogramParameter_21005() { - OpenTK.Graphics.OpenGL.HistogramTarget _target = default(OpenTK.Graphics.OpenGL.HistogramTarget); - OpenTK.Graphics.OpenGL.GetHistogramParameterPName _pname = default(OpenTK.Graphics.OpenGL.GetHistogramParameterPName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetHistogramParameter(_target,_pname,_params); -} -static unsafe void Test_GetInteger64_21006() { - OpenTK.Graphics.OpenGL.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Int64[] _data = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.GetInteger64(_target,_index,_data); -} -static unsafe void Test_GetInteger64_21007() { - OpenTK.Graphics.OpenGL.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Int64 _data = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.GetInteger64(_target,_index,out _data); -} -static unsafe void Test_GetInteger64_21008() { - OpenTK.Graphics.OpenGL.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Int64* _data = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.GetInteger64(_target,_index,_data); -} -static unsafe void Test_GetInteger64_21009() { - OpenTK.Graphics.OpenGL.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Int64[] _data = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.GetInteger64(_target,_index,_data); -} -static unsafe void Test_GetInteger64_21010() { - OpenTK.Graphics.OpenGL.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Int64 _data = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.GetInteger64(_target,_index,out _data); -} -static unsafe void Test_GetInteger64_21011() { - OpenTK.Graphics.OpenGL.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Int64* _data = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.GetInteger64(_target,_index,_data); -} -static unsafe void Test_GetInteger64_21012() { - OpenTK.Graphics.OpenGL.Version32 _target = default(OpenTK.Graphics.OpenGL.Version32); - System.Int32 _index = default(System.Int32); - System.Int64[] _data = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.GetInteger64(_target,_index,_data); -} -static unsafe void Test_GetInteger64_21013() { - OpenTK.Graphics.OpenGL.Version32 _target = default(OpenTK.Graphics.OpenGL.Version32); - System.Int32 _index = default(System.Int32); - System.Int64 _data = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.GetInteger64(_target,_index,out _data); -} -static unsafe void Test_GetInteger64_21014() { - OpenTK.Graphics.OpenGL.Version32 _target = default(OpenTK.Graphics.OpenGL.Version32); - System.Int32 _index = default(System.Int32); - System.Int64* _data = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.GetInteger64(_target,_index,_data); -} -static unsafe void Test_GetInteger64_21015() { - OpenTK.Graphics.OpenGL.Version32 _target = default(OpenTK.Graphics.OpenGL.Version32); - System.UInt32 _index = default(System.UInt32); - System.Int64[] _data = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.GetInteger64(_target,_index,_data); -} -static unsafe void Test_GetInteger64_21016() { - OpenTK.Graphics.OpenGL.Version32 _target = default(OpenTK.Graphics.OpenGL.Version32); - System.UInt32 _index = default(System.UInt32); - System.Int64 _data = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.GetInteger64(_target,_index,out _data); -} -static unsafe void Test_GetInteger64_21017() { - OpenTK.Graphics.OpenGL.Version32 _target = default(OpenTK.Graphics.OpenGL.Version32); - System.UInt32 _index = default(System.UInt32); - System.Int64* _data = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.GetInteger64(_target,_index,_data); -} -static unsafe void Test_GetInteger64_21018() { - OpenTK.Graphics.OpenGL.ArbSync _pname = default(OpenTK.Graphics.OpenGL.ArbSync); - System.Int64 r = OpenTK.Graphics.OpenGL.GL.GetInteger64(_pname); -} -static unsafe void Test_GetInteger64_21019() { - OpenTK.Graphics.OpenGL.GetPName _pname = default(OpenTK.Graphics.OpenGL.GetPName); - System.Int64 r = OpenTK.Graphics.OpenGL.GL.GetInteger64(_pname); -} -static unsafe void Test_GetInteger64_21020() { - OpenTK.Graphics.OpenGL.ArbSync _pname = default(OpenTK.Graphics.OpenGL.ArbSync); - System.Int64[] _data = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.GetInteger64(_pname,_data); -} -static unsafe void Test_GetInteger64_21021() { - OpenTK.Graphics.OpenGL.ArbSync _pname = default(OpenTK.Graphics.OpenGL.ArbSync); - System.Int64 _data = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.GetInteger64(_pname,out _data); -} -static unsafe void Test_GetInteger64_21022() { - OpenTK.Graphics.OpenGL.ArbSync _pname = default(OpenTK.Graphics.OpenGL.ArbSync); - System.Int64* _data = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.GetInteger64(_pname,_data); -} -static unsafe void Test_GetInteger64_21023() { - OpenTK.Graphics.OpenGL.GetPName _pname = default(OpenTK.Graphics.OpenGL.GetPName); - System.Int64[] _data = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.GetInteger64(_pname,_data); -} -static unsafe void Test_GetInteger64_21024() { - OpenTK.Graphics.OpenGL.GetPName _pname = default(OpenTK.Graphics.OpenGL.GetPName); - System.Int64 _data = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.GetInteger64(_pname,out _data); -} -static unsafe void Test_GetInteger64_21025() { - OpenTK.Graphics.OpenGL.GetPName _pname = default(OpenTK.Graphics.OpenGL.GetPName); - System.Int64* _data = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.GetInteger64(_pname,_data); -} -static unsafe void Test_GetInteger_21026() { - OpenTK.Graphics.OpenGL.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Int32[] _data = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetInteger(_target,_index,_data); -} -static unsafe void Test_GetInteger_21027() { - OpenTK.Graphics.OpenGL.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Int32 _data = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetInteger(_target,_index,out _data); -} -static unsafe void Test_GetInteger_21028() { - OpenTK.Graphics.OpenGL.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Int32* _data = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetInteger(_target,_index,_data); -} -static unsafe void Test_GetInteger_21029() { - OpenTK.Graphics.OpenGL.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Int32[] _data = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetInteger(_target,_index,_data); -} -static unsafe void Test_GetInteger_21030() { - OpenTK.Graphics.OpenGL.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Int32 _data = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetInteger(_target,_index,out _data); -} -static unsafe void Test_GetInteger_21031() { - OpenTK.Graphics.OpenGL.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Int32* _data = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetInteger(_target,_index,_data); -} -static unsafe void Test_GetInteger_21032() { - OpenTK.Graphics.OpenGL.GetPName _pname = default(OpenTK.Graphics.OpenGL.GetPName); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.GetInteger(_pname); -} -static unsafe void Test_GetInteger_21033() { - OpenTK.Graphics.OpenGL.GetPName _pname = default(OpenTK.Graphics.OpenGL.GetPName); - System.Int32[] _data = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetInteger(_pname,_data); -} -static unsafe void Test_GetInteger_21034() { - OpenTK.Graphics.OpenGL.GetPName _pname = default(OpenTK.Graphics.OpenGL.GetPName); - System.Int32 _data = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetInteger(_pname,out _data); -} -static unsafe void Test_GetInteger_21035() { - OpenTK.Graphics.OpenGL.GetPName _pname = default(OpenTK.Graphics.OpenGL.GetPName); - System.Int32* _data = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetInteger(_pname,_data); -} -static unsafe void Test_GetInternalformat_21036() { - OpenTK.Graphics.OpenGL.ImageTarget _target = default(OpenTK.Graphics.OpenGL.ImageTarget); - OpenTK.Graphics.OpenGL.SizedInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.SizedInternalFormat); - OpenTK.Graphics.OpenGL.InternalFormatParameter _pname = default(OpenTK.Graphics.OpenGL.InternalFormatParameter); - System.Int32 _bufSize = default(System.Int32); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.GetInternalformat(_target,_internalformat,_pname,_bufSize,_params); -} -static unsafe void Test_GetInternalformat_21037() { - OpenTK.Graphics.OpenGL.ImageTarget _target = default(OpenTK.Graphics.OpenGL.ImageTarget); - OpenTK.Graphics.OpenGL.SizedInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.SizedInternalFormat); - OpenTK.Graphics.OpenGL.InternalFormatParameter _pname = default(OpenTK.Graphics.OpenGL.InternalFormatParameter); - System.Int32 _bufSize = default(System.Int32); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.GetInternalformat(_target,_internalformat,_pname,_bufSize,out _params); -} -static unsafe void Test_GetInternalformat_21038() { - OpenTK.Graphics.OpenGL.ImageTarget _target = default(OpenTK.Graphics.OpenGL.ImageTarget); - OpenTK.Graphics.OpenGL.SizedInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.SizedInternalFormat); - OpenTK.Graphics.OpenGL.InternalFormatParameter _pname = default(OpenTK.Graphics.OpenGL.InternalFormatParameter); - System.Int32 _bufSize = default(System.Int32); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.GetInternalformat(_target,_internalformat,_pname,_bufSize,_params); -} -static unsafe void Test_GetInternalformat_21039() { - OpenTK.Graphics.OpenGL.ImageTarget _target = default(OpenTK.Graphics.OpenGL.ImageTarget); - OpenTK.Graphics.OpenGL.SizedInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.SizedInternalFormat); - OpenTK.Graphics.OpenGL.InternalFormatParameter _pname = default(OpenTK.Graphics.OpenGL.InternalFormatParameter); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetInternalformat(_target,_internalformat,_pname,_bufSize,_params); -} -static unsafe void Test_GetInternalformat_21040() { - OpenTK.Graphics.OpenGL.ImageTarget _target = default(OpenTK.Graphics.OpenGL.ImageTarget); - OpenTK.Graphics.OpenGL.SizedInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.SizedInternalFormat); - OpenTK.Graphics.OpenGL.InternalFormatParameter _pname = default(OpenTK.Graphics.OpenGL.InternalFormatParameter); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetInternalformat(_target,_internalformat,_pname,_bufSize,out _params); -} -static unsafe void Test_GetInternalformat_21041() { - OpenTK.Graphics.OpenGL.ImageTarget _target = default(OpenTK.Graphics.OpenGL.ImageTarget); - OpenTK.Graphics.OpenGL.SizedInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.SizedInternalFormat); - OpenTK.Graphics.OpenGL.InternalFormatParameter _pname = default(OpenTK.Graphics.OpenGL.InternalFormatParameter); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetInternalformat(_target,_internalformat,_pname,_bufSize,_params); -} -static unsafe void Test_GetLight_21042() { - OpenTK.Graphics.OpenGL.LightName _light = default(OpenTK.Graphics.OpenGL.LightName); - OpenTK.Graphics.OpenGL.LightParameter _pname = default(OpenTK.Graphics.OpenGL.LightParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.GetLight(_light,_pname,_params); -} -static unsafe void Test_GetLight_21043() { - OpenTK.Graphics.OpenGL.LightName _light = default(OpenTK.Graphics.OpenGL.LightName); - OpenTK.Graphics.OpenGL.LightParameter _pname = default(OpenTK.Graphics.OpenGL.LightParameter); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.GetLight(_light,_pname,out _params); -} -static unsafe void Test_GetLight_21044() { - OpenTK.Graphics.OpenGL.LightName _light = default(OpenTK.Graphics.OpenGL.LightName); - OpenTK.Graphics.OpenGL.LightParameter _pname = default(OpenTK.Graphics.OpenGL.LightParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.GetLight(_light,_pname,_params); -} -static unsafe void Test_GetLight_21045() { - OpenTK.Graphics.OpenGL.LightName _light = default(OpenTK.Graphics.OpenGL.LightName); - OpenTK.Graphics.OpenGL.LightParameter _pname = default(OpenTK.Graphics.OpenGL.LightParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetLight(_light,_pname,_params); -} -static unsafe void Test_GetLight_21046() { - OpenTK.Graphics.OpenGL.LightName _light = default(OpenTK.Graphics.OpenGL.LightName); - OpenTK.Graphics.OpenGL.LightParameter _pname = default(OpenTK.Graphics.OpenGL.LightParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetLight(_light,_pname,out _params); -} -static unsafe void Test_GetLight_21047() { - OpenTK.Graphics.OpenGL.LightName _light = default(OpenTK.Graphics.OpenGL.LightName); - OpenTK.Graphics.OpenGL.LightParameter _pname = default(OpenTK.Graphics.OpenGL.LightParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetLight(_light,_pname,_params); -} -static unsafe void Test_GetMap_21048() { - OpenTK.Graphics.OpenGL.MapTarget _target = default(OpenTK.Graphics.OpenGL.MapTarget); - OpenTK.Graphics.OpenGL.GetMapQuery _query = default(OpenTK.Graphics.OpenGL.GetMapQuery); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.GetMap(_target,_query,_v); -} -static unsafe void Test_GetMap_21049() { - OpenTK.Graphics.OpenGL.MapTarget _target = default(OpenTK.Graphics.OpenGL.MapTarget); - OpenTK.Graphics.OpenGL.GetMapQuery _query = default(OpenTK.Graphics.OpenGL.GetMapQuery); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.GetMap(_target,_query,out _v); -} -static unsafe void Test_GetMap_21050() { - OpenTK.Graphics.OpenGL.MapTarget _target = default(OpenTK.Graphics.OpenGL.MapTarget); - OpenTK.Graphics.OpenGL.GetMapQuery _query = default(OpenTK.Graphics.OpenGL.GetMapQuery); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.GetMap(_target,_query,_v); -} -static unsafe void Test_GetMap_21051() { - OpenTK.Graphics.OpenGL.MapTarget _target = default(OpenTK.Graphics.OpenGL.MapTarget); - OpenTK.Graphics.OpenGL.GetMapQuery _query = default(OpenTK.Graphics.OpenGL.GetMapQuery); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.GetMap(_target,_query,_v); -} -static unsafe void Test_GetMap_21052() { - OpenTK.Graphics.OpenGL.MapTarget _target = default(OpenTK.Graphics.OpenGL.MapTarget); - OpenTK.Graphics.OpenGL.GetMapQuery _query = default(OpenTK.Graphics.OpenGL.GetMapQuery); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.GetMap(_target,_query,out _v); -} -static unsafe void Test_GetMap_21053() { - OpenTK.Graphics.OpenGL.MapTarget _target = default(OpenTK.Graphics.OpenGL.MapTarget); - OpenTK.Graphics.OpenGL.GetMapQuery _query = default(OpenTK.Graphics.OpenGL.GetMapQuery); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.GetMap(_target,_query,_v); -} -static unsafe void Test_GetMap_21054() { - OpenTK.Graphics.OpenGL.MapTarget _target = default(OpenTK.Graphics.OpenGL.MapTarget); - OpenTK.Graphics.OpenGL.GetMapQuery _query = default(OpenTK.Graphics.OpenGL.GetMapQuery); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetMap(_target,_query,_v); -} -static unsafe void Test_GetMap_21055() { - OpenTK.Graphics.OpenGL.MapTarget _target = default(OpenTK.Graphics.OpenGL.MapTarget); - OpenTK.Graphics.OpenGL.GetMapQuery _query = default(OpenTK.Graphics.OpenGL.GetMapQuery); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetMap(_target,_query,out _v); -} -static unsafe void Test_GetMap_21056() { - OpenTK.Graphics.OpenGL.MapTarget _target = default(OpenTK.Graphics.OpenGL.MapTarget); - OpenTK.Graphics.OpenGL.GetMapQuery _query = default(OpenTK.Graphics.OpenGL.GetMapQuery); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetMap(_target,_query,_v); -} -static unsafe void Test_GetMaterial_21057() { - OpenTK.Graphics.OpenGL.MaterialFace _face = default(OpenTK.Graphics.OpenGL.MaterialFace); - OpenTK.Graphics.OpenGL.MaterialParameter _pname = default(OpenTK.Graphics.OpenGL.MaterialParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.GetMaterial(_face,_pname,_params); -} -static unsafe void Test_GetMaterial_21058() { - OpenTK.Graphics.OpenGL.MaterialFace _face = default(OpenTK.Graphics.OpenGL.MaterialFace); - OpenTK.Graphics.OpenGL.MaterialParameter _pname = default(OpenTK.Graphics.OpenGL.MaterialParameter); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.GetMaterial(_face,_pname,out _params); -} -static unsafe void Test_GetMaterial_21059() { - OpenTK.Graphics.OpenGL.MaterialFace _face = default(OpenTK.Graphics.OpenGL.MaterialFace); - OpenTK.Graphics.OpenGL.MaterialParameter _pname = default(OpenTK.Graphics.OpenGL.MaterialParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.GetMaterial(_face,_pname,_params); -} -static unsafe void Test_GetMaterial_21060() { - OpenTK.Graphics.OpenGL.MaterialFace _face = default(OpenTK.Graphics.OpenGL.MaterialFace); - OpenTK.Graphics.OpenGL.MaterialParameter _pname = default(OpenTK.Graphics.OpenGL.MaterialParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetMaterial(_face,_pname,_params); -} -static unsafe void Test_GetMaterial_21061() { - OpenTK.Graphics.OpenGL.MaterialFace _face = default(OpenTK.Graphics.OpenGL.MaterialFace); - OpenTK.Graphics.OpenGL.MaterialParameter _pname = default(OpenTK.Graphics.OpenGL.MaterialParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetMaterial(_face,_pname,out _params); -} -static unsafe void Test_GetMaterial_21062() { - OpenTK.Graphics.OpenGL.MaterialFace _face = default(OpenTK.Graphics.OpenGL.MaterialFace); - OpenTK.Graphics.OpenGL.MaterialParameter _pname = default(OpenTK.Graphics.OpenGL.MaterialParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetMaterial(_face,_pname,_params); -} -static unsafe void Test_GetMinmax_21063() { - OpenTK.Graphics.OpenGL.MinmaxTarget _target = default(OpenTK.Graphics.OpenGL.MinmaxTarget); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _values = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.GetMinmax(_target,_reset,_format,_type,_values); -} -static unsafe void Test_GetMinmax_21064() { - OpenTK.Graphics.OpenGL.MinmaxTarget _target = default(OpenTK.Graphics.OpenGL.MinmaxTarget); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _values = default(int[]); - OpenTK.Graphics.OpenGL.GL.GetMinmax(_target,_reset,_format,_type,_values); -} -static unsafe void Test_GetMinmax_21065() { - OpenTK.Graphics.OpenGL.MinmaxTarget _target = default(OpenTK.Graphics.OpenGL.MinmaxTarget); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _values = default(int[,]); - OpenTK.Graphics.OpenGL.GL.GetMinmax(_target,_reset,_format,_type,_values); -} -static unsafe void Test_GetMinmax_21066() { - OpenTK.Graphics.OpenGL.MinmaxTarget _target = default(OpenTK.Graphics.OpenGL.MinmaxTarget); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _values = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.GetMinmax(_target,_reset,_format,_type,_values); -} -static unsafe void Test_GetMinmax_21067() { - OpenTK.Graphics.OpenGL.MinmaxTarget _target = default(OpenTK.Graphics.OpenGL.MinmaxTarget); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _values = default(int); - OpenTK.Graphics.OpenGL.GL.GetMinmax(_target,_reset,_format,_type,ref _values); -} -static unsafe void Test_GetMinmaxParameter_21068() { - OpenTK.Graphics.OpenGL.MinmaxTarget _target = default(OpenTK.Graphics.OpenGL.MinmaxTarget); - OpenTK.Graphics.OpenGL.GetMinmaxParameterPName _pname = default(OpenTK.Graphics.OpenGL.GetMinmaxParameterPName); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.GetMinmaxParameter(_target,_pname,_params); -} -static unsafe void Test_GetMinmaxParameter_21069() { - OpenTK.Graphics.OpenGL.MinmaxTarget _target = default(OpenTK.Graphics.OpenGL.MinmaxTarget); - OpenTK.Graphics.OpenGL.GetMinmaxParameterPName _pname = default(OpenTK.Graphics.OpenGL.GetMinmaxParameterPName); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.GetMinmaxParameter(_target,_pname,out _params); -} -static unsafe void Test_GetMinmaxParameter_21070() { - OpenTK.Graphics.OpenGL.MinmaxTarget _target = default(OpenTK.Graphics.OpenGL.MinmaxTarget); - OpenTK.Graphics.OpenGL.GetMinmaxParameterPName _pname = default(OpenTK.Graphics.OpenGL.GetMinmaxParameterPName); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.GetMinmaxParameter(_target,_pname,_params); -} -static unsafe void Test_GetMinmaxParameter_21071() { - OpenTK.Graphics.OpenGL.MinmaxTarget _target = default(OpenTK.Graphics.OpenGL.MinmaxTarget); - OpenTK.Graphics.OpenGL.GetMinmaxParameterPName _pname = default(OpenTK.Graphics.OpenGL.GetMinmaxParameterPName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetMinmaxParameter(_target,_pname,_params); -} -static unsafe void Test_GetMinmaxParameter_21072() { - OpenTK.Graphics.OpenGL.MinmaxTarget _target = default(OpenTK.Graphics.OpenGL.MinmaxTarget); - OpenTK.Graphics.OpenGL.GetMinmaxParameterPName _pname = default(OpenTK.Graphics.OpenGL.GetMinmaxParameterPName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetMinmaxParameter(_target,_pname,out _params); -} -static unsafe void Test_GetMinmaxParameter_21073() { - OpenTK.Graphics.OpenGL.MinmaxTarget _target = default(OpenTK.Graphics.OpenGL.MinmaxTarget); - OpenTK.Graphics.OpenGL.GetMinmaxParameterPName _pname = default(OpenTK.Graphics.OpenGL.GetMinmaxParameterPName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetMinmaxParameter(_target,_pname,_params); -} -static unsafe void Test_GetMultisample_21074() { - OpenTK.Graphics.OpenGL.GetMultisamplePName _pname = default(OpenTK.Graphics.OpenGL.GetMultisamplePName); - System.Int32 _index = default(System.Int32); - System.Single[] _val = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.GetMultisample(_pname,_index,_val); -} -static unsafe void Test_GetMultisample_21075() { - OpenTK.Graphics.OpenGL.GetMultisamplePName _pname = default(OpenTK.Graphics.OpenGL.GetMultisamplePName); - System.Int32 _index = default(System.Int32); - System.Single _val = default(System.Single); - OpenTK.Graphics.OpenGL.GL.GetMultisample(_pname,_index,out _val); -} -static unsafe void Test_GetMultisample_21076() { - OpenTK.Graphics.OpenGL.GetMultisamplePName _pname = default(OpenTK.Graphics.OpenGL.GetMultisamplePName); - System.Int32 _index = default(System.Int32); - System.Single* _val = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.GetMultisample(_pname,_index,_val); -} -static unsafe void Test_GetMultisample_21077() { - OpenTK.Graphics.OpenGL.GetMultisamplePName _pname = default(OpenTK.Graphics.OpenGL.GetMultisamplePName); - System.UInt32 _index = default(System.UInt32); - System.Single[] _val = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.GetMultisample(_pname,_index,_val); -} -static unsafe void Test_GetMultisample_21078() { - OpenTK.Graphics.OpenGL.GetMultisamplePName _pname = default(OpenTK.Graphics.OpenGL.GetMultisamplePName); - System.UInt32 _index = default(System.UInt32); - System.Single _val = default(System.Single); - OpenTK.Graphics.OpenGL.GL.GetMultisample(_pname,_index,out _val); -} -static unsafe void Test_GetMultisample_21079() { - OpenTK.Graphics.OpenGL.GetMultisamplePName _pname = default(OpenTK.Graphics.OpenGL.GetMultisamplePName); - System.UInt32 _index = default(System.UInt32); - System.Single* _val = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.GetMultisample(_pname,_index,_val); -} -static unsafe void Test_GetObjectLabel_21080() { - OpenTK.Graphics.OpenGL.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier); - System.Int32 _name = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_21081() { - OpenTK.Graphics.OpenGL.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier); - System.Int32 _name = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetObjectLabel(_identifier,_name,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectLabel_21082() { - OpenTK.Graphics.OpenGL.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier); - System.Int32 _name = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_21083() { - OpenTK.Graphics.OpenGL.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier); - System.UInt32 _name = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_21084() { - OpenTK.Graphics.OpenGL.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier); - System.UInt32 _name = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetObjectLabel(_identifier,_name,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectLabel_21085() { - OpenTK.Graphics.OpenGL.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier); - System.UInt32 _name = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_21086() { - System.IntPtr _ptr = default(System.IntPtr); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_21087() { - System.IntPtr _ptr = default(System.IntPtr); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetObjectPtrLabel(_ptr,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectPtrLabel_21088() { - System.IntPtr _ptr = default(System.IntPtr); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_21089() { - int[] _ptr = default(int[]); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_21090() { - int[] _ptr = default(int[]); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetObjectPtrLabel(_ptr,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectPtrLabel_21091() { - int[] _ptr = default(int[]); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_21092() { - int[,] _ptr = default(int[,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_21093() { - int[,] _ptr = default(int[,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetObjectPtrLabel(_ptr,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectPtrLabel_21094() { - int[,] _ptr = default(int[,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_21095() { - int[,,] _ptr = default(int[,,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_21096() { - int[,,] _ptr = default(int[,,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetObjectPtrLabel(_ptr,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectPtrLabel_21097() { - int[,,] _ptr = default(int[,,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_21098() { - int _ptr = default(int); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetObjectPtrLabel(ref _ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_21099() { - int _ptr = default(int); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetObjectPtrLabel(ref _ptr,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectPtrLabel_21100() { - int _ptr = default(int); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetObjectPtrLabel(ref _ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetPixelMap_21101() { - OpenTK.Graphics.OpenGL.PixelMap _map = default(OpenTK.Graphics.OpenGL.PixelMap); - System.Single r = OpenTK.Graphics.OpenGL.GL.GetPixelMap(_map); -} -static unsafe void Test_GetPixelMap_21102() { - OpenTK.Graphics.OpenGL.PixelMap _map = default(OpenTK.Graphics.OpenGL.PixelMap); - System.Single[] _values = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.GetPixelMap(_map,_values); -} -static unsafe void Test_GetPixelMap_21103() { - OpenTK.Graphics.OpenGL.PixelMap _map = default(OpenTK.Graphics.OpenGL.PixelMap); - System.Single _values = default(System.Single); - OpenTK.Graphics.OpenGL.GL.GetPixelMap(_map,out _values); -} -static unsafe void Test_GetPixelMap_21104() { - OpenTK.Graphics.OpenGL.PixelMap _map = default(OpenTK.Graphics.OpenGL.PixelMap); - System.Single* _values = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.GetPixelMap(_map,_values); -} -static unsafe void Test_GetPixelMap_21105() { - OpenTK.Graphics.OpenGL.PixelMap _map = default(OpenTK.Graphics.OpenGL.PixelMap); - System.Int32[] _values = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetPixelMap(_map,_values); -} -static unsafe void Test_GetPixelMap_21106() { - OpenTK.Graphics.OpenGL.PixelMap _map = default(OpenTK.Graphics.OpenGL.PixelMap); - System.Int32 _values = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetPixelMap(_map,out _values); -} -static unsafe void Test_GetPixelMap_21107() { - OpenTK.Graphics.OpenGL.PixelMap _map = default(OpenTK.Graphics.OpenGL.PixelMap); - System.Int32* _values = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetPixelMap(_map,_values); -} -static unsafe void Test_GetPixelMap_21108() { - OpenTK.Graphics.OpenGL.PixelMap _map = default(OpenTK.Graphics.OpenGL.PixelMap); - System.UInt32[] _values = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.GetPixelMap(_map,_values); -} -static unsafe void Test_GetPixelMap_21109() { - OpenTK.Graphics.OpenGL.PixelMap _map = default(OpenTK.Graphics.OpenGL.PixelMap); - System.UInt32 _values = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.GetPixelMap(_map,out _values); -} -static unsafe void Test_GetPixelMap_21110() { - OpenTK.Graphics.OpenGL.PixelMap _map = default(OpenTK.Graphics.OpenGL.PixelMap); - System.UInt32* _values = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.GetPixelMap(_map,_values); -} -static unsafe void Test_GetPixelMap_21111() { - OpenTK.Graphics.OpenGL.PixelMap _map = default(OpenTK.Graphics.OpenGL.PixelMap); - System.Int16[] _values = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.GetPixelMap(_map,_values); -} -static unsafe void Test_GetPixelMap_21112() { - OpenTK.Graphics.OpenGL.PixelMap _map = default(OpenTK.Graphics.OpenGL.PixelMap); - System.Int16 _values = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.GetPixelMap(_map,out _values); -} -static unsafe void Test_GetPixelMap_21113() { - OpenTK.Graphics.OpenGL.PixelMap _map = default(OpenTK.Graphics.OpenGL.PixelMap); - System.Int16* _values = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.GetPixelMap(_map,_values); -} -static unsafe void Test_GetPixelMap_21114() { - OpenTK.Graphics.OpenGL.PixelMap _map = default(OpenTK.Graphics.OpenGL.PixelMap); - System.UInt16[] _values = default(System.UInt16[]); - OpenTK.Graphics.OpenGL.GL.GetPixelMap(_map,_values); -} -static unsafe void Test_GetPixelMap_21115() { - OpenTK.Graphics.OpenGL.PixelMap _map = default(OpenTK.Graphics.OpenGL.PixelMap); - System.UInt16 _values = default(System.UInt16); - OpenTK.Graphics.OpenGL.GL.GetPixelMap(_map,out _values); -} -static unsafe void Test_GetPixelMap_21116() { - OpenTK.Graphics.OpenGL.PixelMap _map = default(OpenTK.Graphics.OpenGL.PixelMap); - System.UInt16* _values = default(System.UInt16*); - OpenTK.Graphics.OpenGL.GL.GetPixelMap(_map,_values); -} -static unsafe void Test_GetPixelMapx_21117() { - OpenTK.Graphics.OpenGL.OesFixedPoint _map = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _size = default(System.Int32); - System.Int32[] _values = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetPixelMapx(_map,_size,_values); -} -static unsafe void Test_GetPixelMapx_21118() { - OpenTK.Graphics.OpenGL.OesFixedPoint _map = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _size = default(System.Int32); - System.Int32 _values = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetPixelMapx(_map,_size,out _values); -} -static unsafe void Test_GetPixelMapx_21119() { - OpenTK.Graphics.OpenGL.OesFixedPoint _map = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _size = default(System.Int32); - System.Int32* _values = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetPixelMapx(_map,_size,_values); -} -static unsafe void Test_GetPointer_21120() { - OpenTK.Graphics.OpenGL.GetPointervPName _pname = default(OpenTK.Graphics.OpenGL.GetPointervPName); - System.IntPtr _params = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_21121() { - OpenTK.Graphics.OpenGL.GetPointervPName _pname = default(OpenTK.Graphics.OpenGL.GetPointervPName); - int[] _params = default(int[]); - OpenTK.Graphics.OpenGL.GL.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_21122() { - OpenTK.Graphics.OpenGL.GetPointervPName _pname = default(OpenTK.Graphics.OpenGL.GetPointervPName); - int[,] _params = default(int[,]); - OpenTK.Graphics.OpenGL.GL.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_21123() { - OpenTK.Graphics.OpenGL.GetPointervPName _pname = default(OpenTK.Graphics.OpenGL.GetPointervPName); - int[,,] _params = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_21124() { - OpenTK.Graphics.OpenGL.GetPointervPName _pname = default(OpenTK.Graphics.OpenGL.GetPointervPName); - int _params = default(int); - OpenTK.Graphics.OpenGL.GL.GetPointer(_pname,ref _params); -} -static unsafe void Test_GetPolygonStipple_21125() { - System.Byte r = OpenTK.Graphics.OpenGL.GL.GetPolygonStipple(); -} -static unsafe void Test_GetPolygonStipple_21126() { - System.Byte[] _mask = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.GetPolygonStipple(_mask); -} -static unsafe void Test_GetPolygonStipple_21127() { - System.Byte _mask = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.GetPolygonStipple(out _mask); -} -static unsafe void Test_GetPolygonStipple_21128() { - System.Byte* _mask = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.GetPolygonStipple(_mask); -} -static unsafe void Test_GetProgramBinary_21129() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryFormat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - System.IntPtr _binary = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_21130() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryFormat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - int[] _binary = default(int[]); - OpenTK.Graphics.OpenGL.GL.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_21131() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryFormat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - int[,] _binary = default(int[,]); - OpenTK.Graphics.OpenGL.GL.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_21132() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryFormat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - int[,,] _binary = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_21133() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryFormat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - int _binary = default(int); - OpenTK.Graphics.OpenGL.GL.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,ref _binary); -} -static unsafe void Test_GetProgramBinary_21134() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.OpenGL.BinaryFormat* _binaryFormat = default(OpenTK.Graphics.OpenGL.BinaryFormat*); - System.IntPtr _binary = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_21135() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.OpenGL.BinaryFormat* _binaryFormat = default(OpenTK.Graphics.OpenGL.BinaryFormat*); - int[] _binary = default(int[]); - OpenTK.Graphics.OpenGL.GL.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_21136() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.OpenGL.BinaryFormat* _binaryFormat = default(OpenTK.Graphics.OpenGL.BinaryFormat*); - int[,] _binary = default(int[,]); - OpenTK.Graphics.OpenGL.GL.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_21137() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.OpenGL.BinaryFormat* _binaryFormat = default(OpenTK.Graphics.OpenGL.BinaryFormat*); - int[,,] _binary = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_21138() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.OpenGL.BinaryFormat* _binaryFormat = default(OpenTK.Graphics.OpenGL.BinaryFormat*); - int _binary = default(int); - OpenTK.Graphics.OpenGL.GL.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,ref _binary); -} -static unsafe void Test_GetProgramBinary_21139() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryFormat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - System.IntPtr _binary = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_21140() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryFormat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - int[] _binary = default(int[]); - OpenTK.Graphics.OpenGL.GL.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_21141() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryFormat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - int[,] _binary = default(int[,]); - OpenTK.Graphics.OpenGL.GL.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_21142() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryFormat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - int[,,] _binary = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_21143() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryFormat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - int _binary = default(int); - OpenTK.Graphics.OpenGL.GL.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,ref _binary); -} -static unsafe void Test_GetProgramBinary_21144() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.OpenGL.BinaryFormat* _binaryFormat = default(OpenTK.Graphics.OpenGL.BinaryFormat*); - System.IntPtr _binary = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_21145() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.OpenGL.BinaryFormat* _binaryFormat = default(OpenTK.Graphics.OpenGL.BinaryFormat*); - int[] _binary = default(int[]); - OpenTK.Graphics.OpenGL.GL.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_21146() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.OpenGL.BinaryFormat* _binaryFormat = default(OpenTK.Graphics.OpenGL.BinaryFormat*); - int[,] _binary = default(int[,]); - OpenTK.Graphics.OpenGL.GL.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_21147() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.OpenGL.BinaryFormat* _binaryFormat = default(OpenTK.Graphics.OpenGL.BinaryFormat*); - int[,,] _binary = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_21148() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.OpenGL.BinaryFormat* _binaryFormat = default(OpenTK.Graphics.OpenGL.BinaryFormat*); - int _binary = default(int); - OpenTK.Graphics.OpenGL.GL.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,ref _binary); -} -static unsafe void Test_GetProgramInfoLog_21149() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetProgramInfoLog(_program,_bufSize,out _length,_infoLog); -} -static unsafe void Test_GetProgramInfoLog_21150() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetProgramInfoLog(_program,_bufSize,_length,_infoLog); -} -static unsafe void Test_GetProgramInfoLog_21151() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetProgramInfoLog(_program,_bufSize,out _length,_infoLog); -} -static unsafe void Test_GetProgramInfoLog_21152() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetProgramInfoLog(_program,_bufSize,_length,_infoLog); -} -static unsafe void Test_GetProgramInterface_21153() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL.ProgramInterface); - OpenTK.Graphics.OpenGL.ProgramInterfaceParameter _pname = default(OpenTK.Graphics.OpenGL.ProgramInterfaceParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetProgramInterface(_program,_programInterface,_pname,_params); -} -static unsafe void Test_GetProgramInterface_21154() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL.ProgramInterface); - OpenTK.Graphics.OpenGL.ProgramInterfaceParameter _pname = default(OpenTK.Graphics.OpenGL.ProgramInterfaceParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetProgramInterface(_program,_programInterface,_pname,out _params); -} -static unsafe void Test_GetProgramInterface_21155() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL.ProgramInterface); - OpenTK.Graphics.OpenGL.ProgramInterfaceParameter _pname = default(OpenTK.Graphics.OpenGL.ProgramInterfaceParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetProgramInterface(_program,_programInterface,_pname,_params); -} -static unsafe void Test_GetProgramInterface_21156() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL.ProgramInterface); - OpenTK.Graphics.OpenGL.ProgramInterfaceParameter _pname = default(OpenTK.Graphics.OpenGL.ProgramInterfaceParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetProgramInterface(_program,_programInterface,_pname,_params); -} -static unsafe void Test_GetProgramInterface_21157() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL.ProgramInterface); - OpenTK.Graphics.OpenGL.ProgramInterfaceParameter _pname = default(OpenTK.Graphics.OpenGL.ProgramInterfaceParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetProgramInterface(_program,_programInterface,_pname,out _params); -} -static unsafe void Test_GetProgramInterface_21158() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL.ProgramInterface); - OpenTK.Graphics.OpenGL.ProgramInterfaceParameter _pname = default(OpenTK.Graphics.OpenGL.ProgramInterfaceParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetProgramInterface(_program,_programInterface,_pname,_params); -} -static unsafe void Test_GetProgram_21159() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.GetProgramParameterName _pname = default(OpenTK.Graphics.OpenGL.GetProgramParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetProgram(_program,_pname,_params); -} -static unsafe void Test_GetProgram_21160() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.GetProgramParameterName _pname = default(OpenTK.Graphics.OpenGL.GetProgramParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetProgram(_program,_pname,out _params); -} -static unsafe void Test_GetProgram_21161() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.GetProgramParameterName _pname = default(OpenTK.Graphics.OpenGL.GetProgramParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetProgram(_program,_pname,_params); -} -static unsafe void Test_GetProgram_21162() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ProgramParameter _pname = default(OpenTK.Graphics.OpenGL.ProgramParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetProgram(_program,_pname,_params); -} -static unsafe void Test_GetProgram_21163() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ProgramParameter _pname = default(OpenTK.Graphics.OpenGL.ProgramParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetProgram(_program,_pname,out _params); -} -static unsafe void Test_GetProgram_21164() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ProgramParameter _pname = default(OpenTK.Graphics.OpenGL.ProgramParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetProgram(_program,_pname,_params); -} -static unsafe void Test_GetProgram_21165() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.GetProgramParameterName _pname = default(OpenTK.Graphics.OpenGL.GetProgramParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetProgram(_program,_pname,_params); -} -static unsafe void Test_GetProgram_21166() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.GetProgramParameterName _pname = default(OpenTK.Graphics.OpenGL.GetProgramParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetProgram(_program,_pname,out _params); -} -static unsafe void Test_GetProgram_21167() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.GetProgramParameterName _pname = default(OpenTK.Graphics.OpenGL.GetProgramParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetProgram(_program,_pname,_params); -} -static unsafe void Test_GetProgram_21168() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ProgramParameter _pname = default(OpenTK.Graphics.OpenGL.ProgramParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetProgram(_program,_pname,_params); -} -static unsafe void Test_GetProgram_21169() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ProgramParameter _pname = default(OpenTK.Graphics.OpenGL.ProgramParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetProgram(_program,_pname,out _params); -} -static unsafe void Test_GetProgram_21170() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ProgramParameter _pname = default(OpenTK.Graphics.OpenGL.ProgramParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetProgram(_program,_pname,_params); -} -static unsafe void Test_GetProgramPipelineInfoLog_21171() { - System.Int32 _pipeline = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetProgramPipelineInfoLog(_pipeline,_bufSize,_length,_infoLog); -} -static unsafe void Test_GetProgramPipelineInfoLog_21172() { - System.Int32 _pipeline = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetProgramPipelineInfoLog(_pipeline,_bufSize,out _length,_infoLog); -} -static unsafe void Test_GetProgramPipelineInfoLog_21173() { - System.Int32 _pipeline = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetProgramPipelineInfoLog(_pipeline,_bufSize,_length,_infoLog); -} -static unsafe void Test_GetProgramPipelineInfoLog_21174() { - System.UInt32 _pipeline = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetProgramPipelineInfoLog(_pipeline,_bufSize,_length,_infoLog); -} -static unsafe void Test_GetProgramPipelineInfoLog_21175() { - System.UInt32 _pipeline = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetProgramPipelineInfoLog(_pipeline,_bufSize,out _length,_infoLog); -} -static unsafe void Test_GetProgramPipelineInfoLog_21176() { - System.UInt32 _pipeline = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetProgramPipelineInfoLog(_pipeline,_bufSize,_length,_infoLog); -} -static unsafe void Test_GetProgramPipeline_21177() { - System.Int32 _pipeline = default(System.Int32); - OpenTK.Graphics.OpenGL.ProgramPipelineParameter _pname = default(OpenTK.Graphics.OpenGL.ProgramPipelineParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetProgramPipeline(_pipeline,_pname,_params); -} -static unsafe void Test_GetProgramPipeline_21178() { - System.Int32 _pipeline = default(System.Int32); - OpenTK.Graphics.OpenGL.ProgramPipelineParameter _pname = default(OpenTK.Graphics.OpenGL.ProgramPipelineParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetProgramPipeline(_pipeline,_pname,out _params); -} -static unsafe void Test_GetProgramPipeline_21179() { - System.Int32 _pipeline = default(System.Int32); - OpenTK.Graphics.OpenGL.ProgramPipelineParameter _pname = default(OpenTK.Graphics.OpenGL.ProgramPipelineParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetProgramPipeline(_pipeline,_pname,_params); -} -static unsafe void Test_GetProgramPipeline_21180() { - System.UInt32 _pipeline = default(System.UInt32); - OpenTK.Graphics.OpenGL.ProgramPipelineParameter _pname = default(OpenTK.Graphics.OpenGL.ProgramPipelineParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetProgramPipeline(_pipeline,_pname,_params); -} -static unsafe void Test_GetProgramPipeline_21181() { - System.UInt32 _pipeline = default(System.UInt32); - OpenTK.Graphics.OpenGL.ProgramPipelineParameter _pname = default(OpenTK.Graphics.OpenGL.ProgramPipelineParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetProgramPipeline(_pipeline,_pname,out _params); -} -static unsafe void Test_GetProgramPipeline_21182() { - System.UInt32 _pipeline = default(System.UInt32); - OpenTK.Graphics.OpenGL.ProgramPipelineParameter _pname = default(OpenTK.Graphics.OpenGL.ProgramPipelineParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetProgramPipeline(_pipeline,_pname,_params); -} -static unsafe void Test_GetProgramResourceIndex_21183() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL.ProgramInterface); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.GetProgramResourceIndex(_program,_programInterface,_name); -} -static unsafe void Test_GetProgramResourceIndex_21184() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL.ProgramInterface); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.GetProgramResourceIndex(_program,_programInterface,_name); -} -static unsafe void Test_GetProgramResource_21185() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL.ProgramInterface); - System.Int32 _index = default(System.Int32); - System.Int32 _propCount = default(System.Int32); - OpenTK.Graphics.OpenGL.ProgramProperty[] _props = default(OpenTK.Graphics.OpenGL.ProgramProperty[]); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetProgramResource(_program,_programInterface,_index,_propCount,_props,_bufSize,_length,_params); -} -static unsafe void Test_GetProgramResource_21186() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL.ProgramInterface); - System.Int32 _index = default(System.Int32); - System.Int32 _propCount = default(System.Int32); - OpenTK.Graphics.OpenGL.ProgramProperty[] _props = default(OpenTK.Graphics.OpenGL.ProgramProperty[]); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetProgramResource(_program,_programInterface,_index,_propCount,_props,_bufSize,out _length,_params); -} -static unsafe void Test_GetProgramResource_21187() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL.ProgramInterface); - System.Int32 _index = default(System.Int32); - System.Int32 _propCount = default(System.Int32); - OpenTK.Graphics.OpenGL.ProgramProperty _props = default(OpenTK.Graphics.OpenGL.ProgramProperty); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetProgramResource(_program,_programInterface,_index,_propCount,ref _props,_bufSize,out _length,out _params); -} -static unsafe void Test_GetProgramResource_21188() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL.ProgramInterface); - System.Int32 _index = default(System.Int32); - System.Int32 _propCount = default(System.Int32); - OpenTK.Graphics.OpenGL.ProgramProperty* _props = default(OpenTK.Graphics.OpenGL.ProgramProperty*); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetProgramResource(_program,_programInterface,_index,_propCount,_props,_bufSize,_length,_params); -} -static unsafe void Test_GetProgramResource_21189() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL.ProgramInterface); - System.UInt32 _index = default(System.UInt32); - System.Int32 _propCount = default(System.Int32); - OpenTK.Graphics.OpenGL.ProgramProperty[] _props = default(OpenTK.Graphics.OpenGL.ProgramProperty[]); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetProgramResource(_program,_programInterface,_index,_propCount,_props,_bufSize,_length,_params); -} -static unsafe void Test_GetProgramResource_21190() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL.ProgramInterface); - System.UInt32 _index = default(System.UInt32); - System.Int32 _propCount = default(System.Int32); - OpenTK.Graphics.OpenGL.ProgramProperty[] _props = default(OpenTK.Graphics.OpenGL.ProgramProperty[]); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetProgramResource(_program,_programInterface,_index,_propCount,_props,_bufSize,out _length,_params); -} -static unsafe void Test_GetProgramResource_21191() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL.ProgramInterface); - System.UInt32 _index = default(System.UInt32); - System.Int32 _propCount = default(System.Int32); - OpenTK.Graphics.OpenGL.ProgramProperty _props = default(OpenTK.Graphics.OpenGL.ProgramProperty); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetProgramResource(_program,_programInterface,_index,_propCount,ref _props,_bufSize,out _length,out _params); -} -static unsafe void Test_GetProgramResource_21192() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL.ProgramInterface); - System.UInt32 _index = default(System.UInt32); - System.Int32 _propCount = default(System.Int32); - OpenTK.Graphics.OpenGL.ProgramProperty* _props = default(OpenTK.Graphics.OpenGL.ProgramProperty*); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetProgramResource(_program,_programInterface,_index,_propCount,_props,_bufSize,_length,_params); -} -static unsafe void Test_GetProgramResourceLocation_21193() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL.ProgramInterface); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.GetProgramResourceLocation(_program,_programInterface,_name); -} -static unsafe void Test_GetProgramResourceLocation_21194() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL.ProgramInterface); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.GetProgramResourceLocation(_program,_programInterface,_name); -} -static unsafe void Test_GetProgramResourceLocationIndex_21195() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL.ProgramInterface); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.GetProgramResourceLocationIndex(_program,_programInterface,_name); -} -static unsafe void Test_GetProgramResourceLocationIndex_21196() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL.ProgramInterface); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.GetProgramResourceLocationIndex(_program,_programInterface,_name); -} -static unsafe void Test_GetProgramResourceName_21197() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL.ProgramInterface); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetProgramResourceName(_program,_programInterface,_index,_bufSize,_length,_name); -} -static unsafe void Test_GetProgramResourceName_21198() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL.ProgramInterface); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetProgramResourceName(_program,_programInterface,_index,_bufSize,out _length,_name); -} -static unsafe void Test_GetProgramResourceName_21199() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL.ProgramInterface); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetProgramResourceName(_program,_programInterface,_index,_bufSize,_length,_name); -} -static unsafe void Test_GetProgramResourceName_21200() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL.ProgramInterface); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetProgramResourceName(_program,_programInterface,_index,_bufSize,_length,_name); -} -static unsafe void Test_GetProgramResourceName_21201() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL.ProgramInterface); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetProgramResourceName(_program,_programInterface,_index,_bufSize,out _length,_name); -} -static unsafe void Test_GetProgramResourceName_21202() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL.ProgramInterface); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetProgramResourceName(_program,_programInterface,_index,_bufSize,_length,_name); -} -static unsafe void Test_GetProgramStage_21203() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL.ShaderType); - OpenTK.Graphics.OpenGL.ProgramStageParameter _pname = default(OpenTK.Graphics.OpenGL.ProgramStageParameter); - System.Int32 _values = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetProgramStage(_program,_shadertype,_pname,out _values); -} -static unsafe void Test_GetProgramStage_21204() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL.ShaderType); - OpenTK.Graphics.OpenGL.ProgramStageParameter _pname = default(OpenTK.Graphics.OpenGL.ProgramStageParameter); - System.Int32* _values = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetProgramStage(_program,_shadertype,_pname,_values); -} -static unsafe void Test_GetProgramStage_21205() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL.ShaderType); - OpenTK.Graphics.OpenGL.ProgramStageParameter _pname = default(OpenTK.Graphics.OpenGL.ProgramStageParameter); - System.Int32 _values = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetProgramStage(_program,_shadertype,_pname,out _values); -} -static unsafe void Test_GetProgramStage_21206() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL.ShaderType); - OpenTK.Graphics.OpenGL.ProgramStageParameter _pname = default(OpenTK.Graphics.OpenGL.ProgramStageParameter); - System.Int32* _values = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetProgramStage(_program,_shadertype,_pname,_values); -} -static unsafe void Test_GetQueryIndexed_21207() { - OpenTK.Graphics.OpenGL.QueryTarget _target = default(OpenTK.Graphics.OpenGL.QueryTarget); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.GetQueryParam _pname = default(OpenTK.Graphics.OpenGL.GetQueryParam); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetQueryIndexed(_target,_index,_pname,_params); -} -static unsafe void Test_GetQueryIndexed_21208() { - OpenTK.Graphics.OpenGL.QueryTarget _target = default(OpenTK.Graphics.OpenGL.QueryTarget); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.GetQueryParam _pname = default(OpenTK.Graphics.OpenGL.GetQueryParam); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetQueryIndexed(_target,_index,_pname,out _params); -} -static unsafe void Test_GetQueryIndexed_21209() { - OpenTK.Graphics.OpenGL.QueryTarget _target = default(OpenTK.Graphics.OpenGL.QueryTarget); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.GetQueryParam _pname = default(OpenTK.Graphics.OpenGL.GetQueryParam); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetQueryIndexed(_target,_index,_pname,_params); -} -static unsafe void Test_GetQueryIndexed_21210() { - OpenTK.Graphics.OpenGL.QueryTarget _target = default(OpenTK.Graphics.OpenGL.QueryTarget); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.GetQueryParam _pname = default(OpenTK.Graphics.OpenGL.GetQueryParam); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetQueryIndexed(_target,_index,_pname,_params); -} -static unsafe void Test_GetQueryIndexed_21211() { - OpenTK.Graphics.OpenGL.QueryTarget _target = default(OpenTK.Graphics.OpenGL.QueryTarget); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.GetQueryParam _pname = default(OpenTK.Graphics.OpenGL.GetQueryParam); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetQueryIndexed(_target,_index,_pname,out _params); -} -static unsafe void Test_GetQueryIndexed_21212() { - OpenTK.Graphics.OpenGL.QueryTarget _target = default(OpenTK.Graphics.OpenGL.QueryTarget); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.GetQueryParam _pname = default(OpenTK.Graphics.OpenGL.GetQueryParam); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetQueryIndexed(_target,_index,_pname,_params); -} -static unsafe void Test_GetQuery_21213() { - OpenTK.Graphics.OpenGL.QueryTarget _target = default(OpenTK.Graphics.OpenGL.QueryTarget); - OpenTK.Graphics.OpenGL.GetQueryParam _pname = default(OpenTK.Graphics.OpenGL.GetQueryParam); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetQuery(_target,_pname,_params); -} -static unsafe void Test_GetQuery_21214() { - OpenTK.Graphics.OpenGL.QueryTarget _target = default(OpenTK.Graphics.OpenGL.QueryTarget); - OpenTK.Graphics.OpenGL.GetQueryParam _pname = default(OpenTK.Graphics.OpenGL.GetQueryParam); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetQuery(_target,_pname,out _params); -} -static unsafe void Test_GetQuery_21215() { - OpenTK.Graphics.OpenGL.QueryTarget _target = default(OpenTK.Graphics.OpenGL.QueryTarget); - OpenTK.Graphics.OpenGL.GetQueryParam _pname = default(OpenTK.Graphics.OpenGL.GetQueryParam); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetQuery(_target,_pname,_params); -} -static unsafe void Test_GetQueryObject_21216() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.GetQueryObjectParam _pname = default(OpenTK.Graphics.OpenGL.GetQueryObjectParam); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_21217() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.GetQueryObjectParam _pname = default(OpenTK.Graphics.OpenGL.GetQueryObjectParam); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_21218() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.GetQueryObjectParam _pname = default(OpenTK.Graphics.OpenGL.GetQueryObjectParam); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_21219() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.GetQueryObjectParam _pname = default(OpenTK.Graphics.OpenGL.GetQueryObjectParam); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_21220() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.GetQueryObjectParam _pname = default(OpenTK.Graphics.OpenGL.GetQueryObjectParam); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_21221() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.GetQueryObjectParam _pname = default(OpenTK.Graphics.OpenGL.GetQueryObjectParam); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_21222() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.GetQueryObjectParam _pname = default(OpenTK.Graphics.OpenGL.GetQueryObjectParam); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_21223() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.GetQueryObjectParam _pname = default(OpenTK.Graphics.OpenGL.GetQueryObjectParam); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_21224() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.GetQueryObjectParam _pname = default(OpenTK.Graphics.OpenGL.GetQueryObjectParam); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_21225() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.GetQueryObjectParam _pname = default(OpenTK.Graphics.OpenGL.GetQueryObjectParam); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_21226() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.GetQueryObjectParam _pname = default(OpenTK.Graphics.OpenGL.GetQueryObjectParam); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_21227() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.GetQueryObjectParam _pname = default(OpenTK.Graphics.OpenGL.GetQueryObjectParam); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_21228() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.GetQueryObjectParam _pname = default(OpenTK.Graphics.OpenGL.GetQueryObjectParam); - System.UInt64[] _params = default(System.UInt64[]); - OpenTK.Graphics.OpenGL.GL.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_21229() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.GetQueryObjectParam _pname = default(OpenTK.Graphics.OpenGL.GetQueryObjectParam); - System.UInt64 _params = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_21230() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.GetQueryObjectParam _pname = default(OpenTK.Graphics.OpenGL.GetQueryObjectParam); - System.UInt64* _params = default(System.UInt64*); - OpenTK.Graphics.OpenGL.GL.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_21231() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.GetQueryObjectParam _pname = default(OpenTK.Graphics.OpenGL.GetQueryObjectParam); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_21232() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.GetQueryObjectParam _pname = default(OpenTK.Graphics.OpenGL.GetQueryObjectParam); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_21233() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.GetQueryObjectParam _pname = default(OpenTK.Graphics.OpenGL.GetQueryObjectParam); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetRenderbufferParameter_21234() { - OpenTK.Graphics.OpenGL.RenderbufferTarget _target = default(OpenTK.Graphics.OpenGL.RenderbufferTarget); - OpenTK.Graphics.OpenGL.RenderbufferParameterName _pname = default(OpenTK.Graphics.OpenGL.RenderbufferParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetRenderbufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetRenderbufferParameter_21235() { - OpenTK.Graphics.OpenGL.RenderbufferTarget _target = default(OpenTK.Graphics.OpenGL.RenderbufferTarget); - OpenTK.Graphics.OpenGL.RenderbufferParameterName _pname = default(OpenTK.Graphics.OpenGL.RenderbufferParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetRenderbufferParameter(_target,_pname,out _params); -} -static unsafe void Test_GetRenderbufferParameter_21236() { - OpenTK.Graphics.OpenGL.RenderbufferTarget _target = default(OpenTK.Graphics.OpenGL.RenderbufferTarget); - OpenTK.Graphics.OpenGL.RenderbufferParameterName _pname = default(OpenTK.Graphics.OpenGL.RenderbufferParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetRenderbufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetSamplerParameter_21237() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL.SamplerParameter _pname = default(OpenTK.Graphics.OpenGL.SamplerParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameter(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameter_21238() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL.SamplerParameter _pname = default(OpenTK.Graphics.OpenGL.SamplerParameter); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameter(_sampler,_pname,out _params); -} -static unsafe void Test_GetSamplerParameter_21239() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL.SamplerParameter _pname = default(OpenTK.Graphics.OpenGL.SamplerParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameter(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameter_21240() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL.SamplerParameterName); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameter(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameter_21241() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL.SamplerParameterName); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameter(_sampler,_pname,out _params); -} -static unsafe void Test_GetSamplerParameter_21242() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL.SamplerParameterName); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameter(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameter_21243() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.SamplerParameter _pname = default(OpenTK.Graphics.OpenGL.SamplerParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameter(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameter_21244() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.SamplerParameter _pname = default(OpenTK.Graphics.OpenGL.SamplerParameter); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameter(_sampler,_pname,out _params); -} -static unsafe void Test_GetSamplerParameter_21245() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.SamplerParameter _pname = default(OpenTK.Graphics.OpenGL.SamplerParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameter(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameter_21246() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL.SamplerParameterName); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameter(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameter_21247() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL.SamplerParameterName); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameter(_sampler,_pname,out _params); -} -static unsafe void Test_GetSamplerParameter_21248() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL.SamplerParameterName); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameter(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameterI_21249() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL.All _pname = default(OpenTK.Graphics.OpenGL.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameterI(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameterI_21250() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL.All _pname = default(OpenTK.Graphics.OpenGL.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameterI(_sampler,_pname,out _params); -} -static unsafe void Test_GetSamplerParameterI_21251() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL.All _pname = default(OpenTK.Graphics.OpenGL.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameterI(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameterI_21252() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbSamplerObjects _pname = default(OpenTK.Graphics.OpenGL.ArbSamplerObjects); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameterI(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameterI_21253() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbSamplerObjects _pname = default(OpenTK.Graphics.OpenGL.ArbSamplerObjects); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameterI(_sampler,_pname,out _params); -} -static unsafe void Test_GetSamplerParameterI_21254() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbSamplerObjects _pname = default(OpenTK.Graphics.OpenGL.ArbSamplerObjects); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameterI(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameterI_21255() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.All _pname = default(OpenTK.Graphics.OpenGL.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameterI(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameterI_21256() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.All _pname = default(OpenTK.Graphics.OpenGL.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameterI(_sampler,_pname,out _params); -} -static unsafe void Test_GetSamplerParameterI_21257() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.All _pname = default(OpenTK.Graphics.OpenGL.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameterI(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameterI_21258() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.ArbSamplerObjects _pname = default(OpenTK.Graphics.OpenGL.ArbSamplerObjects); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameterI(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameterI_21259() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.ArbSamplerObjects _pname = default(OpenTK.Graphics.OpenGL.ArbSamplerObjects); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameterI(_sampler,_pname,out _params); -} -static unsafe void Test_GetSamplerParameterI_21260() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.ArbSamplerObjects _pname = default(OpenTK.Graphics.OpenGL.ArbSamplerObjects); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameterI(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameterI_21261() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.All _pname = default(OpenTK.Graphics.OpenGL.All); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameterI(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameterI_21262() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.All _pname = default(OpenTK.Graphics.OpenGL.All); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameterI(_sampler,_pname,out _params); -} -static unsafe void Test_GetSamplerParameterI_21263() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.All _pname = default(OpenTK.Graphics.OpenGL.All); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameterI(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameterI_21264() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.ArbSamplerObjects _pname = default(OpenTK.Graphics.OpenGL.ArbSamplerObjects); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameterI(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameterI_21265() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.ArbSamplerObjects _pname = default(OpenTK.Graphics.OpenGL.ArbSamplerObjects); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameterI(_sampler,_pname,out _params); -} -static unsafe void Test_GetSamplerParameterI_21266() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.ArbSamplerObjects _pname = default(OpenTK.Graphics.OpenGL.ArbSamplerObjects); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameterI(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameter_21267() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL.SamplerParameter _pname = default(OpenTK.Graphics.OpenGL.SamplerParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameter(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameter_21268() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL.SamplerParameter _pname = default(OpenTK.Graphics.OpenGL.SamplerParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameter(_sampler,_pname,out _params); -} -static unsafe void Test_GetSamplerParameter_21269() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL.SamplerParameter _pname = default(OpenTK.Graphics.OpenGL.SamplerParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameter(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameter_21270() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL.SamplerParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameter(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameter_21271() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL.SamplerParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameter(_sampler,_pname,out _params); -} -static unsafe void Test_GetSamplerParameter_21272() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL.SamplerParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameter(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameter_21273() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.SamplerParameter _pname = default(OpenTK.Graphics.OpenGL.SamplerParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameter(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameter_21274() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.SamplerParameter _pname = default(OpenTK.Graphics.OpenGL.SamplerParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameter(_sampler,_pname,out _params); -} -static unsafe void Test_GetSamplerParameter_21275() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.SamplerParameter _pname = default(OpenTK.Graphics.OpenGL.SamplerParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameter(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameter_21276() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL.SamplerParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameter(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameter_21277() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL.SamplerParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameter(_sampler,_pname,out _params); -} -static unsafe void Test_GetSamplerParameter_21278() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL.SamplerParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetSamplerParameter(_sampler,_pname,_params); -} -static unsafe void Test_GetSeparableFilter_21279() { - OpenTK.Graphics.OpenGL.SeparableTarget _target = default(OpenTK.Graphics.OpenGL.SeparableTarget); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _row = default(System.IntPtr); - System.IntPtr _column = default(System.IntPtr); - System.IntPtr _span = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.GetSeparableFilter(_target,_format,_type,_row,_column,_span); -} -static unsafe void Test_GetSeparableFilter_21280() { - OpenTK.Graphics.OpenGL.SeparableTarget _target = default(OpenTK.Graphics.OpenGL.SeparableTarget); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _row = default(int[]); - int[] _column = default(int[]); - int[] _span = default(int[]); - OpenTK.Graphics.OpenGL.GL.GetSeparableFilter(_target,_format,_type,_row,_column,_span); -} -static unsafe void Test_GetSeparableFilter_21281() { - OpenTK.Graphics.OpenGL.SeparableTarget _target = default(OpenTK.Graphics.OpenGL.SeparableTarget); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _row = default(int[,]); - int[,] _column = default(int[,]); - int[,] _span = default(int[,]); - OpenTK.Graphics.OpenGL.GL.GetSeparableFilter(_target,_format,_type,_row,_column,_span); -} -static unsafe void Test_GetSeparableFilter_21282() { - OpenTK.Graphics.OpenGL.SeparableTarget _target = default(OpenTK.Graphics.OpenGL.SeparableTarget); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _row = default(int[,,]); - int[,,] _column = default(int[,,]); - int[,,] _span = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.GetSeparableFilter(_target,_format,_type,_row,_column,_span); -} -static unsafe void Test_GetSeparableFilter_21283() { - OpenTK.Graphics.OpenGL.SeparableTarget _target = default(OpenTK.Graphics.OpenGL.SeparableTarget); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _row = default(int); - int _column = default(int); - int _span = default(int); - OpenTK.Graphics.OpenGL.GL.GetSeparableFilter(_target,_format,_type,ref _row,ref _column,ref _span); -} -static unsafe void Test_GetShaderInfoLog_21284() { - System.Int32 _shader = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetShaderInfoLog(_shader,_bufSize,out _length,_infoLog); -} -static unsafe void Test_GetShaderInfoLog_21285() { - System.Int32 _shader = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetShaderInfoLog(_shader,_bufSize,_length,_infoLog); -} -static unsafe void Test_GetShaderInfoLog_21286() { - System.UInt32 _shader = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetShaderInfoLog(_shader,_bufSize,out _length,_infoLog); -} -static unsafe void Test_GetShaderInfoLog_21287() { - System.UInt32 _shader = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetShaderInfoLog(_shader,_bufSize,_length,_infoLog); -} -static unsafe void Test_GetShader_21288() { - System.Int32 _shader = default(System.Int32); - OpenTK.Graphics.OpenGL.ShaderParameter _pname = default(OpenTK.Graphics.OpenGL.ShaderParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetShader(_shader,_pname,_params); -} -static unsafe void Test_GetShader_21289() { - System.Int32 _shader = default(System.Int32); - OpenTK.Graphics.OpenGL.ShaderParameter _pname = default(OpenTK.Graphics.OpenGL.ShaderParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetShader(_shader,_pname,out _params); -} -static unsafe void Test_GetShader_21290() { - System.Int32 _shader = default(System.Int32); - OpenTK.Graphics.OpenGL.ShaderParameter _pname = default(OpenTK.Graphics.OpenGL.ShaderParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetShader(_shader,_pname,_params); -} -static unsafe void Test_GetShader_21291() { - System.UInt32 _shader = default(System.UInt32); - OpenTK.Graphics.OpenGL.ShaderParameter _pname = default(OpenTK.Graphics.OpenGL.ShaderParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetShader(_shader,_pname,_params); -} -static unsafe void Test_GetShader_21292() { - System.UInt32 _shader = default(System.UInt32); - OpenTK.Graphics.OpenGL.ShaderParameter _pname = default(OpenTK.Graphics.OpenGL.ShaderParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetShader(_shader,_pname,out _params); -} -static unsafe void Test_GetShader_21293() { - System.UInt32 _shader = default(System.UInt32); - OpenTK.Graphics.OpenGL.ShaderParameter _pname = default(OpenTK.Graphics.OpenGL.ShaderParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetShader(_shader,_pname,_params); -} -static unsafe void Test_GetShaderPrecisionFormat_21294() { - OpenTK.Graphics.OpenGL.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL.ShaderType); - OpenTK.Graphics.OpenGL.ShaderPrecision _precisiontype = default(OpenTK.Graphics.OpenGL.ShaderPrecision); - System.Int32[] _range = default(System.Int32[]); - System.Int32[] _precision = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetShaderPrecisionFormat(_shadertype,_precisiontype,_range,_precision); -} -static unsafe void Test_GetShaderPrecisionFormat_21295() { - OpenTK.Graphics.OpenGL.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL.ShaderType); - OpenTK.Graphics.OpenGL.ShaderPrecision _precisiontype = default(OpenTK.Graphics.OpenGL.ShaderPrecision); - System.Int32 _range = default(System.Int32); - System.Int32 _precision = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetShaderPrecisionFormat(_shadertype,_precisiontype,out _range,out _precision); -} -static unsafe void Test_GetShaderPrecisionFormat_21296() { - OpenTK.Graphics.OpenGL.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL.ShaderType); - OpenTK.Graphics.OpenGL.ShaderPrecision _precisiontype = default(OpenTK.Graphics.OpenGL.ShaderPrecision); - System.Int32* _range = default(System.Int32*); - System.Int32* _precision = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetShaderPrecisionFormat(_shadertype,_precisiontype,_range,_precision); -} -static unsafe void Test_GetShaderSource_21297() { - System.Int32 _shader = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetShaderSource(_shader,_bufSize,out _length,_source); -} -static unsafe void Test_GetShaderSource_21298() { - System.Int32 _shader = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetShaderSource(_shader,_bufSize,_length,_source); -} -static unsafe void Test_GetShaderSource_21299() { - System.UInt32 _shader = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetShaderSource(_shader,_bufSize,out _length,_source); -} -static unsafe void Test_GetShaderSource_21300() { - System.UInt32 _shader = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetShaderSource(_shader,_bufSize,_length,_source); -} -static unsafe void Test_GetString_21301() { - OpenTK.Graphics.OpenGL.StringName _name = default(OpenTK.Graphics.OpenGL.StringName); - System.String r = OpenTK.Graphics.OpenGL.GL.GetString(_name); -} -static unsafe void Test_GetString_21302() { - OpenTK.Graphics.OpenGL.StringName _name = default(OpenTK.Graphics.OpenGL.StringName); - System.Int32 _index = default(System.Int32); - System.String r = OpenTK.Graphics.OpenGL.GL.GetString(_name,_index); -} -static unsafe void Test_GetString_21303() { - OpenTK.Graphics.OpenGL.StringName _name = default(OpenTK.Graphics.OpenGL.StringName); - System.UInt32 _index = default(System.UInt32); - System.String r = OpenTK.Graphics.OpenGL.GL.GetString(_name,_index); -} -static unsafe void Test_GetString_21304() { - OpenTK.Graphics.OpenGL.StringNameIndexed _name = default(OpenTK.Graphics.OpenGL.StringNameIndexed); - System.Int32 _index = default(System.Int32); - System.String r = OpenTK.Graphics.OpenGL.GL.GetString(_name,_index); -} -static unsafe void Test_GetString_21305() { - OpenTK.Graphics.OpenGL.StringNameIndexed _name = default(OpenTK.Graphics.OpenGL.StringNameIndexed); - System.UInt32 _index = default(System.UInt32); - System.String r = OpenTK.Graphics.OpenGL.GL.GetString(_name,_index); -} -static unsafe void Test_GetSubroutineIndex_21306() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL.ShaderType); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.GetSubroutineIndex(_program,_shadertype,_name); -} -static unsafe void Test_GetSubroutineIndex_21307() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL.ShaderType); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.GetSubroutineIndex(_program,_shadertype,_name); -} -static unsafe void Test_GetSubroutineUniformLocation_21308() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL.ShaderType); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.GetSubroutineUniformLocation(_program,_shadertype,_name); -} -static unsafe void Test_GetSubroutineUniformLocation_21309() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL.ShaderType); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.GetSubroutineUniformLocation(_program,_shadertype,_name); -} -static unsafe void Test_GetSync_21310() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.OpenGL.ArbSync _pname = default(OpenTK.Graphics.OpenGL.ArbSync); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32[] _values = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetSync(_sync,_pname,_bufSize,out _length,_values); -} -static unsafe void Test_GetSync_21311() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.OpenGL.ArbSync _pname = default(OpenTK.Graphics.OpenGL.ArbSync); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _values = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetSync(_sync,_pname,_bufSize,out _length,out _values); -} -static unsafe void Test_GetSync_21312() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.OpenGL.ArbSync _pname = default(OpenTK.Graphics.OpenGL.ArbSync); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _values = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetSync(_sync,_pname,_bufSize,_length,_values); -} -static unsafe void Test_GetSync_21313() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.OpenGL.SyncParameterName _pname = default(OpenTK.Graphics.OpenGL.SyncParameterName); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32[] _values = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetSync(_sync,_pname,_bufSize,out _length,_values); -} -static unsafe void Test_GetSync_21314() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.OpenGL.SyncParameterName _pname = default(OpenTK.Graphics.OpenGL.SyncParameterName); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _values = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetSync(_sync,_pname,_bufSize,out _length,out _values); -} -static unsafe void Test_GetSync_21315() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.OpenGL.SyncParameterName _pname = default(OpenTK.Graphics.OpenGL.SyncParameterName); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _values = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetSync(_sync,_pname,_bufSize,_length,_values); -} -static unsafe void Test_GetTexEnv_21316() { - OpenTK.Graphics.OpenGL.TextureEnvTarget _target = default(OpenTK.Graphics.OpenGL.TextureEnvTarget); - OpenTK.Graphics.OpenGL.TextureEnvParameter _pname = default(OpenTK.Graphics.OpenGL.TextureEnvParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.GetTexEnv(_target,_pname,_params); -} -static unsafe void Test_GetTexEnv_21317() { - OpenTK.Graphics.OpenGL.TextureEnvTarget _target = default(OpenTK.Graphics.OpenGL.TextureEnvTarget); - OpenTK.Graphics.OpenGL.TextureEnvParameter _pname = default(OpenTK.Graphics.OpenGL.TextureEnvParameter); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.GetTexEnv(_target,_pname,out _params); -} -static unsafe void Test_GetTexEnv_21318() { - OpenTK.Graphics.OpenGL.TextureEnvTarget _target = default(OpenTK.Graphics.OpenGL.TextureEnvTarget); - OpenTK.Graphics.OpenGL.TextureEnvParameter _pname = default(OpenTK.Graphics.OpenGL.TextureEnvParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.GetTexEnv(_target,_pname,_params); -} -static unsafe void Test_GetTexEnv_21319() { - OpenTK.Graphics.OpenGL.TextureEnvTarget _target = default(OpenTK.Graphics.OpenGL.TextureEnvTarget); - OpenTK.Graphics.OpenGL.TextureEnvParameter _pname = default(OpenTK.Graphics.OpenGL.TextureEnvParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetTexEnv(_target,_pname,_params); -} -static unsafe void Test_GetTexEnv_21320() { - OpenTK.Graphics.OpenGL.TextureEnvTarget _target = default(OpenTK.Graphics.OpenGL.TextureEnvTarget); - OpenTK.Graphics.OpenGL.TextureEnvParameter _pname = default(OpenTK.Graphics.OpenGL.TextureEnvParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetTexEnv(_target,_pname,out _params); -} -static unsafe void Test_GetTexEnv_21321() { - OpenTK.Graphics.OpenGL.TextureEnvTarget _target = default(OpenTK.Graphics.OpenGL.TextureEnvTarget); - OpenTK.Graphics.OpenGL.TextureEnvParameter _pname = default(OpenTK.Graphics.OpenGL.TextureEnvParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetTexEnv(_target,_pname,_params); -} -static unsafe void Test_GetTexGen_21322() { - OpenTK.Graphics.OpenGL.TextureCoordName _coord = default(OpenTK.Graphics.OpenGL.TextureCoordName); - OpenTK.Graphics.OpenGL.TextureGenParameter _pname = default(OpenTK.Graphics.OpenGL.TextureGenParameter); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.GetTexGen(_coord,_pname,_params); -} -static unsafe void Test_GetTexGen_21323() { - OpenTK.Graphics.OpenGL.TextureCoordName _coord = default(OpenTK.Graphics.OpenGL.TextureCoordName); - OpenTK.Graphics.OpenGL.TextureGenParameter _pname = default(OpenTK.Graphics.OpenGL.TextureGenParameter); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.GetTexGen(_coord,_pname,out _params); -} -static unsafe void Test_GetTexGen_21324() { - OpenTK.Graphics.OpenGL.TextureCoordName _coord = default(OpenTK.Graphics.OpenGL.TextureCoordName); - OpenTK.Graphics.OpenGL.TextureGenParameter _pname = default(OpenTK.Graphics.OpenGL.TextureGenParameter); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.GetTexGen(_coord,_pname,_params); -} -static unsafe void Test_GetTexGen_21325() { - OpenTK.Graphics.OpenGL.TextureCoordName _coord = default(OpenTK.Graphics.OpenGL.TextureCoordName); - OpenTK.Graphics.OpenGL.TextureGenParameter _pname = default(OpenTK.Graphics.OpenGL.TextureGenParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.GetTexGen(_coord,_pname,_params); -} -static unsafe void Test_GetTexGen_21326() { - OpenTK.Graphics.OpenGL.TextureCoordName _coord = default(OpenTK.Graphics.OpenGL.TextureCoordName); - OpenTK.Graphics.OpenGL.TextureGenParameter _pname = default(OpenTK.Graphics.OpenGL.TextureGenParameter); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.GetTexGen(_coord,_pname,out _params); -} -static unsafe void Test_GetTexGen_21327() { - OpenTK.Graphics.OpenGL.TextureCoordName _coord = default(OpenTK.Graphics.OpenGL.TextureCoordName); - OpenTK.Graphics.OpenGL.TextureGenParameter _pname = default(OpenTK.Graphics.OpenGL.TextureGenParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.GetTexGen(_coord,_pname,_params); -} -static unsafe void Test_GetTexGen_21328() { - OpenTK.Graphics.OpenGL.TextureCoordName _coord = default(OpenTK.Graphics.OpenGL.TextureCoordName); - OpenTK.Graphics.OpenGL.TextureGenParameter _pname = default(OpenTK.Graphics.OpenGL.TextureGenParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetTexGen(_coord,_pname,_params); -} -static unsafe void Test_GetTexGen_21329() { - OpenTK.Graphics.OpenGL.TextureCoordName _coord = default(OpenTK.Graphics.OpenGL.TextureCoordName); - OpenTK.Graphics.OpenGL.TextureGenParameter _pname = default(OpenTK.Graphics.OpenGL.TextureGenParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetTexGen(_coord,_pname,out _params); -} -static unsafe void Test_GetTexGen_21330() { - OpenTK.Graphics.OpenGL.TextureCoordName _coord = default(OpenTK.Graphics.OpenGL.TextureCoordName); - OpenTK.Graphics.OpenGL.TextureGenParameter _pname = default(OpenTK.Graphics.OpenGL.TextureGenParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetTexGen(_coord,_pname,_params); -} -static unsafe void Test_GetTexImage_21331() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.GetTexImage(_target,_level,_format,_type,_pixels); -} -static unsafe void Test_GetTexImage_21332() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.GetTexImage(_target,_level,_format,_type,_pixels); -} -static unsafe void Test_GetTexImage_21333() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.GetTexImage(_target,_level,_format,_type,_pixels); -} -static unsafe void Test_GetTexImage_21334() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.GetTexImage(_target,_level,_format,_type,_pixels); -} -static unsafe void Test_GetTexImage_21335() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.GetTexImage(_target,_level,_format,_type,ref _pixels); -} -static unsafe void Test_GetTexLevelParameter_21336() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.GetTexLevelParameter(_target,_level,_pname,_params); -} -static unsafe void Test_GetTexLevelParameter_21337() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.GetTexLevelParameter(_target,_level,_pname,out _params); -} -static unsafe void Test_GetTexLevelParameter_21338() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.GetTexLevelParameter(_target,_level,_pname,_params); -} -static unsafe void Test_GetTexLevelParameter_21339() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetTexLevelParameter(_target,_level,_pname,_params); -} -static unsafe void Test_GetTexLevelParameter_21340() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetTexLevelParameter(_target,_level,_pname,out _params); -} -static unsafe void Test_GetTexLevelParameter_21341() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetTexLevelParameter(_target,_level,_pname,_params); -} -static unsafe void Test_GetTexParameter_21342() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.GetTexParameter(_target,_pname,_params); -} -static unsafe void Test_GetTexParameter_21343() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.GetTexParameter(_target,_pname,out _params); -} -static unsafe void Test_GetTexParameter_21344() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.GetTexParameter(_target,_pname,_params); -} -static unsafe void Test_GetTexParameterI_21345() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetTexParameterI(_target,_pname,_params); -} -static unsafe void Test_GetTexParameterI_21346() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetTexParameterI(_target,_pname,out _params); -} -static unsafe void Test_GetTexParameterI_21347() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetTexParameterI(_target,_pname,_params); -} -static unsafe void Test_GetTexParameterI_21348() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.GetTexParameterI(_target,_pname,_params); -} -static unsafe void Test_GetTexParameterI_21349() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.GetTexParameterI(_target,_pname,out _params); -} -static unsafe void Test_GetTexParameterI_21350() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.GetTexParameterI(_target,_pname,_params); -} -static unsafe void Test_GetTexParameter_21351() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetTexParameter(_target,_pname,_params); -} -static unsafe void Test_GetTexParameter_21352() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetTexParameter(_target,_pname,out _params); -} -static unsafe void Test_GetTexParameter_21353() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetTexParameter(_target,_pname,_params); -} -static unsafe void Test_GetTransformFeedbackVarying_21354() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ActiveAttribType _type = default(OpenTK.Graphics.OpenGL.ActiveAttribType); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetTransformFeedbackVarying(_program,_index,_bufSize,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetTransformFeedbackVarying_21355() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.TransformFeedbackType _type = default(OpenTK.Graphics.OpenGL.TransformFeedbackType); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetTransformFeedbackVarying(_program,_index,_bufSize,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetTransformFeedbackVarying_21356() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.OpenGL.ActiveAttribType* _type = default(OpenTK.Graphics.OpenGL.ActiveAttribType*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetTransformFeedbackVarying(_program,_index,_bufSize,_length,_size,_type,_name); -} -static unsafe void Test_GetTransformFeedbackVarying_21357() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.OpenGL.TransformFeedbackType* _type = default(OpenTK.Graphics.OpenGL.TransformFeedbackType*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetTransformFeedbackVarying(_program,_index,_bufSize,_length,_size,_type,_name); -} -static unsafe void Test_GetTransformFeedbackVarying_21358() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ActiveAttribType _type = default(OpenTK.Graphics.OpenGL.ActiveAttribType); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetTransformFeedbackVarying(_program,_index,_bufSize,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetTransformFeedbackVarying_21359() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.TransformFeedbackType _type = default(OpenTK.Graphics.OpenGL.TransformFeedbackType); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetTransformFeedbackVarying(_program,_index,_bufSize,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetTransformFeedbackVarying_21360() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.OpenGL.ActiveAttribType* _type = default(OpenTK.Graphics.OpenGL.ActiveAttribType*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetTransformFeedbackVarying(_program,_index,_bufSize,_length,_size,_type,_name); -} -static unsafe void Test_GetTransformFeedbackVarying_21361() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.OpenGL.TransformFeedbackType* _type = default(OpenTK.Graphics.OpenGL.TransformFeedbackType*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.GetTransformFeedbackVarying(_program,_index,_bufSize,_length,_size,_type,_name); -} -static unsafe void Test_GetUniformBlockIndex_21362() { - System.Int32 _program = default(System.Int32); - System.String _uniformBlockName = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.GetUniformBlockIndex(_program,_uniformBlockName); -} -static unsafe void Test_GetUniformBlockIndex_21363() { - System.UInt32 _program = default(System.UInt32); - System.String _uniformBlockName = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.GetUniformBlockIndex(_program,_uniformBlockName); -} -static unsafe void Test_GetUniform_21364() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_21365() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.GetUniform(_program,_location,out _params); -} -static unsafe void Test_GetUniform_21366() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_21367() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_21368() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.GetUniform(_program,_location,out _params); -} -static unsafe void Test_GetUniform_21369() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_21370() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_21371() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.GetUniform(_program,_location,out _params); -} -static unsafe void Test_GetUniform_21372() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_21373() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_21374() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.GetUniform(_program,_location,out _params); -} -static unsafe void Test_GetUniform_21375() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniformIndices_21376() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformCount = default(System.Int32); - System.String[] _uniformNames = default(System.String[]); - System.Int32[] _uniformIndices = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetUniformIndices(_program,_uniformCount,_uniformNames,_uniformIndices); -} -static unsafe void Test_GetUniformIndices_21377() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformCount = default(System.Int32); - System.String[] _uniformNames = default(System.String[]); - System.Int32 _uniformIndices = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetUniformIndices(_program,_uniformCount,_uniformNames,out _uniformIndices); -} -static unsafe void Test_GetUniformIndices_21378() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformCount = default(System.Int32); - System.String[] _uniformNames = default(System.String[]); - System.Int32* _uniformIndices = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetUniformIndices(_program,_uniformCount,_uniformNames,_uniformIndices); -} -static unsafe void Test_GetUniformIndices_21379() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _uniformCount = default(System.Int32); - System.String[] _uniformNames = default(System.String[]); - System.UInt32[] _uniformIndices = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.GetUniformIndices(_program,_uniformCount,_uniformNames,_uniformIndices); -} -static unsafe void Test_GetUniformIndices_21380() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _uniformCount = default(System.Int32); - System.String[] _uniformNames = default(System.String[]); - System.UInt32 _uniformIndices = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.GetUniformIndices(_program,_uniformCount,_uniformNames,out _uniformIndices); -} -static unsafe void Test_GetUniformIndices_21381() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _uniformCount = default(System.Int32); - System.String[] _uniformNames = default(System.String[]); - System.UInt32* _uniformIndices = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.GetUniformIndices(_program,_uniformCount,_uniformNames,_uniformIndices); -} -static unsafe void Test_GetUniform_21382() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_21383() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetUniform(_program,_location,out _params); -} -static unsafe void Test_GetUniform_21384() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_21385() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_21386() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetUniform(_program,_location,out _params); -} -static unsafe void Test_GetUniform_21387() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniformLocation_21388() { - System.Int32 _program = default(System.Int32); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.GetUniformLocation(_program,_name); -} -static unsafe void Test_GetUniformLocation_21389() { - System.UInt32 _program = default(System.UInt32); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.GetUniformLocation(_program,_name); -} -static unsafe void Test_GetUniformSubroutine_21390() { - OpenTK.Graphics.OpenGL.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL.ShaderType); - System.Int32 _location = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetUniformSubroutine(_shadertype,_location,out _params); -} -static unsafe void Test_GetUniformSubroutine_21391() { - OpenTK.Graphics.OpenGL.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL.ShaderType); - System.Int32 _location = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetUniformSubroutine(_shadertype,_location,_params); -} -static unsafe void Test_GetUniformSubroutine_21392() { - OpenTK.Graphics.OpenGL.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL.ShaderType); - System.Int32 _location = default(System.Int32); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.GetUniformSubroutine(_shadertype,_location,out _params); -} -static unsafe void Test_GetUniformSubroutine_21393() { - OpenTK.Graphics.OpenGL.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL.ShaderType); - System.Int32 _location = default(System.Int32); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.GetUniformSubroutine(_shadertype,_location,_params); -} -static unsafe void Test_GetUniform_21394() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_21395() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.GetUniform(_program,_location,out _params); -} -static unsafe void Test_GetUniform_21396() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetVertexAttrib_21397() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameter); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_21398() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameter); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_21399() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameter); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_21400() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameter); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_21401() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameter); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_21402() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameter); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_21403() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_21404() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameter); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_21405() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_21406() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_21407() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameter); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_21408() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribI_21409() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetVertexAttribI(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttribI_21410() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetVertexAttribI(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribI_21411() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetVertexAttribI(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttribI_21412() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetVertexAttribI(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribI_21413() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameter); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.GetVertexAttribI(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttribI_21414() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameter); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.GetVertexAttribI(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_21415() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_21416() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_21417() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_21418() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_21419() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_21420() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribL_21421() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameter); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.GetVertexAttribL(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribL_21422() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameter); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.GetVertexAttribL(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttribL_21423() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameter); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.GetVertexAttribL(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribL_21424() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameter); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.GetVertexAttribL(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribL_21425() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameter); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.GetVertexAttribL(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttribL_21426() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameter); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.GetVertexAttribL(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribPointer_21427() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribPointerParameter _pname = default(OpenTK.Graphics.OpenGL.VertexAttribPointerParameter); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_21428() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribPointerParameter _pname = default(OpenTK.Graphics.OpenGL.VertexAttribPointerParameter); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_21429() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribPointerParameter _pname = default(OpenTK.Graphics.OpenGL.VertexAttribPointerParameter); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_21430() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribPointerParameter _pname = default(OpenTK.Graphics.OpenGL.VertexAttribPointerParameter); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_21431() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribPointerParameter _pname = default(OpenTK.Graphics.OpenGL.VertexAttribPointerParameter); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.GetVertexAttribPointer(_index,_pname,ref _pointer); -} -static unsafe void Test_GetVertexAttribPointer_21432() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.VertexAttribPointerParameter _pname = default(OpenTK.Graphics.OpenGL.VertexAttribPointerParameter); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_21433() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.VertexAttribPointerParameter _pname = default(OpenTK.Graphics.OpenGL.VertexAttribPointerParameter); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_21434() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.VertexAttribPointerParameter _pname = default(OpenTK.Graphics.OpenGL.VertexAttribPointerParameter); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_21435() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.VertexAttribPointerParameter _pname = default(OpenTK.Graphics.OpenGL.VertexAttribPointerParameter); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_21436() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.VertexAttribPointerParameter _pname = default(OpenTK.Graphics.OpenGL.VertexAttribPointerParameter); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.GetVertexAttribPointer(_index,_pname,ref _pointer); -} -static unsafe void Test_Hint_21437() { - OpenTK.Graphics.OpenGL.HintTarget _target = default(OpenTK.Graphics.OpenGL.HintTarget); - OpenTK.Graphics.OpenGL.HintMode _mode = default(OpenTK.Graphics.OpenGL.HintMode); - OpenTK.Graphics.OpenGL.GL.Hint(_target,_mode); -} -static unsafe void Test_Histogram_21438() { - OpenTK.Graphics.OpenGL.HistogramTarget _target = default(OpenTK.Graphics.OpenGL.HistogramTarget); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Boolean _sink = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Histogram(_target,_width,_internalformat,_sink); -} -static unsafe void Test_Index_21439() { - System.Double _c = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Index(_c); -} -static unsafe void Test_Index_21440() { - System.Double* _c = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Index(_c); -} -static unsafe void Test_Index_21441() { - System.Single _c = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Index(_c); -} -static unsafe void Test_Index_21442() { - System.Single* _c = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Index(_c); -} -static unsafe void Test_Index_21443() { - System.Int32 _c = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Index(_c); -} -static unsafe void Test_Index_21444() { - System.Int32* _c = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Index(_c); -} -static unsafe void Test_IndexMask_21445() { - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.IndexMask(_mask); -} -static unsafe void Test_IndexMask_21446() { - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.IndexMask(_mask); -} -static unsafe void Test_IndexPointer_21447() { - OpenTK.Graphics.OpenGL.IndexPointerType _type = default(OpenTK.Graphics.OpenGL.IndexPointerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.IndexPointer(_type,_stride,_pointer); -} -static unsafe void Test_IndexPointer_21448() { - OpenTK.Graphics.OpenGL.IndexPointerType _type = default(OpenTK.Graphics.OpenGL.IndexPointerType); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.IndexPointer(_type,_stride,_pointer); -} -static unsafe void Test_IndexPointer_21449() { - OpenTK.Graphics.OpenGL.IndexPointerType _type = default(OpenTK.Graphics.OpenGL.IndexPointerType); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.IndexPointer(_type,_stride,_pointer); -} -static unsafe void Test_IndexPointer_21450() { - OpenTK.Graphics.OpenGL.IndexPointerType _type = default(OpenTK.Graphics.OpenGL.IndexPointerType); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.IndexPointer(_type,_stride,_pointer); -} -static unsafe void Test_IndexPointer_21451() { - OpenTK.Graphics.OpenGL.IndexPointerType _type = default(OpenTK.Graphics.OpenGL.IndexPointerType); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.IndexPointer(_type,_stride,ref _pointer); -} -static unsafe void Test_Index_21452() { - System.Int16 _c = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Index(_c); -} -static unsafe void Test_Index_21453() { - System.Int16* _c = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Index(_c); -} -static unsafe void Test_Index_21454() { - System.Byte _c = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Index(_c); -} -static unsafe void Test_Index_21455() { - System.Byte* _c = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.Index(_c); -} -static unsafe void Test_InitNames_21456() { - OpenTK.Graphics.OpenGL.GL.InitNames(); -} -static unsafe void Test_InterleavedArrays_21457() { - OpenTK.Graphics.OpenGL.InterleavedArrayFormat _format = default(OpenTK.Graphics.OpenGL.InterleavedArrayFormat); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.InterleavedArrays(_format,_stride,_pointer); -} -static unsafe void Test_InterleavedArrays_21458() { - OpenTK.Graphics.OpenGL.InterleavedArrayFormat _format = default(OpenTK.Graphics.OpenGL.InterleavedArrayFormat); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.InterleavedArrays(_format,_stride,_pointer); -} -static unsafe void Test_InterleavedArrays_21459() { - OpenTK.Graphics.OpenGL.InterleavedArrayFormat _format = default(OpenTK.Graphics.OpenGL.InterleavedArrayFormat); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.InterleavedArrays(_format,_stride,_pointer); -} -static unsafe void Test_InterleavedArrays_21460() { - OpenTK.Graphics.OpenGL.InterleavedArrayFormat _format = default(OpenTK.Graphics.OpenGL.InterleavedArrayFormat); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.InterleavedArrays(_format,_stride,_pointer); -} -static unsafe void Test_InterleavedArrays_21461() { - OpenTK.Graphics.OpenGL.InterleavedArrayFormat _format = default(OpenTK.Graphics.OpenGL.InterleavedArrayFormat); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.InterleavedArrays(_format,_stride,ref _pointer); -} -static unsafe void Test_InvalidateBufferData_21462() { - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.InvalidateBufferData(_buffer); -} -static unsafe void Test_InvalidateBufferData_21463() { - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.InvalidateBufferData(_buffer); -} -static unsafe void Test_InvalidateBufferSubData_21464() { - System.Int32 _buffer = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _length = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.InvalidateBufferSubData(_buffer,_offset,_length); -} -static unsafe void Test_InvalidateBufferSubData_21465() { - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _length = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.InvalidateBufferSubData(_buffer,_offset,_length); -} -static unsafe void Test_InvalidateFramebuffer_21466() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - System.Int32 _numAttachments = default(System.Int32); - OpenTK.Graphics.OpenGL.FramebufferAttachment[] _attachments = default(OpenTK.Graphics.OpenGL.FramebufferAttachment[]); - OpenTK.Graphics.OpenGL.GL.InvalidateFramebuffer(_target,_numAttachments,_attachments); -} -static unsafe void Test_InvalidateFramebuffer_21467() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - System.Int32 _numAttachments = default(System.Int32); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachments = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - OpenTK.Graphics.OpenGL.GL.InvalidateFramebuffer(_target,_numAttachments,ref _attachments); -} -static unsafe void Test_InvalidateFramebuffer_21468() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - System.Int32 _numAttachments = default(System.Int32); - OpenTK.Graphics.OpenGL.FramebufferAttachment* _attachments = default(OpenTK.Graphics.OpenGL.FramebufferAttachment*); - OpenTK.Graphics.OpenGL.GL.InvalidateFramebuffer(_target,_numAttachments,_attachments); -} -static unsafe void Test_InvalidateSubFramebuffer_21469() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - System.Int32 _numAttachments = default(System.Int32); - OpenTK.Graphics.OpenGL.FramebufferAttachment[] _attachments = default(OpenTK.Graphics.OpenGL.FramebufferAttachment[]); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.InvalidateSubFramebuffer(_target,_numAttachments,_attachments,_x,_y,_width,_height); -} -static unsafe void Test_InvalidateSubFramebuffer_21470() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - System.Int32 _numAttachments = default(System.Int32); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachments = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.InvalidateSubFramebuffer(_target,_numAttachments,ref _attachments,_x,_y,_width,_height); -} -static unsafe void Test_InvalidateSubFramebuffer_21471() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - System.Int32 _numAttachments = default(System.Int32); - OpenTK.Graphics.OpenGL.FramebufferAttachment* _attachments = default(OpenTK.Graphics.OpenGL.FramebufferAttachment*); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.InvalidateSubFramebuffer(_target,_numAttachments,_attachments,_x,_y,_width,_height); -} -static unsafe void Test_InvalidateTexImage_21472() { - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.InvalidateTexImage(_texture,_level); -} -static unsafe void Test_InvalidateTexImage_21473() { - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.InvalidateTexImage(_texture,_level); -} -static unsafe void Test_InvalidateTexSubImage_21474() { - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.InvalidateTexSubImage(_texture,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth); -} -static unsafe void Test_InvalidateTexSubImage_21475() { - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.InvalidateTexSubImage(_texture,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth); -} -static unsafe void Test_IsBuffer_21476() { - System.Int32 _buffer = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.IsBuffer(_buffer); -} -static unsafe void Test_IsBuffer_21477() { - System.UInt32 _buffer = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.IsBuffer(_buffer); -} -static unsafe void Test_IsEnabled_21478() { - OpenTK.Graphics.OpenGL.EnableCap _cap = default(OpenTK.Graphics.OpenGL.EnableCap); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.IsEnabled(_cap); -} -static unsafe void Test_IsEnabled_21479() { - OpenTK.Graphics.OpenGL.IndexedEnableCap _target = default(OpenTK.Graphics.OpenGL.IndexedEnableCap); - System.Int32 _index = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.IsEnabled(_target,_index); -} -static unsafe void Test_IsEnabled_21480() { - OpenTK.Graphics.OpenGL.IndexedEnableCap _target = default(OpenTK.Graphics.OpenGL.IndexedEnableCap); - System.UInt32 _index = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.IsEnabled(_target,_index); -} -static unsafe void Test_IsFramebuffer_21481() { - System.Int32 _framebuffer = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.IsFramebuffer(_framebuffer); -} -static unsafe void Test_IsFramebuffer_21482() { - System.UInt32 _framebuffer = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.IsFramebuffer(_framebuffer); -} -static unsafe void Test_IsList_21483() { - System.Int32 _list = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.IsList(_list); -} -static unsafe void Test_IsList_21484() { - System.UInt32 _list = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.IsList(_list); -} -static unsafe void Test_IsProgram_21485() { - System.Int32 _program = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.IsProgram(_program); -} -static unsafe void Test_IsProgram_21486() { - System.UInt32 _program = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.IsProgram(_program); -} -static unsafe void Test_IsProgramPipeline_21487() { - System.Int32 _pipeline = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.IsProgramPipeline(_pipeline); -} -static unsafe void Test_IsProgramPipeline_21488() { - System.UInt32 _pipeline = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.IsProgramPipeline(_pipeline); -} -static unsafe void Test_IsQuery_21489() { - System.Int32 _id = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.IsQuery(_id); -} -static unsafe void Test_IsQuery_21490() { - System.UInt32 _id = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.IsQuery(_id); -} -static unsafe void Test_IsRenderbuffer_21491() { - System.Int32 _renderbuffer = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.IsRenderbuffer(_renderbuffer); -} -static unsafe void Test_IsRenderbuffer_21492() { - System.UInt32 _renderbuffer = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.IsRenderbuffer(_renderbuffer); -} -static unsafe void Test_IsSampler_21493() { - System.Int32 _sampler = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.IsSampler(_sampler); -} -static unsafe void Test_IsSampler_21494() { - System.UInt32 _sampler = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.IsSampler(_sampler); -} -static unsafe void Test_IsShader_21495() { - System.Int32 _shader = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.IsShader(_shader); -} -static unsafe void Test_IsShader_21496() { - System.UInt32 _shader = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.IsShader(_shader); -} -static unsafe void Test_IsSync_21497() { - System.IntPtr _sync = default(System.IntPtr); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.IsSync(_sync); -} -static unsafe void Test_IsTexture_21498() { - System.Int32 _texture = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.IsTexture(_texture); -} -static unsafe void Test_IsTexture_21499() { - System.UInt32 _texture = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.IsTexture(_texture); -} -static unsafe void Test_IsTransformFeedback_21500() { - System.Int32 _id = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.IsTransformFeedback(_id); -} -static unsafe void Test_IsTransformFeedback_21501() { - System.UInt32 _id = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.IsTransformFeedback(_id); -} -static unsafe void Test_IsVertexArray_21502() { - System.Int32 _array = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.IsVertexArray(_array); -} -static unsafe void Test_IsVertexArray_21503() { - System.UInt32 _array = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.IsVertexArray(_array); -} -static unsafe void Test_Light_21504() { - OpenTK.Graphics.OpenGL.LightName _light = default(OpenTK.Graphics.OpenGL.LightName); - OpenTK.Graphics.OpenGL.LightParameter _pname = default(OpenTK.Graphics.OpenGL.LightParameter); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Light(_light,_pname,_param); -} -static unsafe void Test_Light_21505() { - OpenTK.Graphics.OpenGL.LightName _light = default(OpenTK.Graphics.OpenGL.LightName); - OpenTK.Graphics.OpenGL.LightParameter _pname = default(OpenTK.Graphics.OpenGL.LightParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Light(_light,_pname,_params); -} -static unsafe void Test_Light_21506() { - OpenTK.Graphics.OpenGL.LightName _light = default(OpenTK.Graphics.OpenGL.LightName); - OpenTK.Graphics.OpenGL.LightParameter _pname = default(OpenTK.Graphics.OpenGL.LightParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Light(_light,_pname,_params); -} -static unsafe void Test_Light_21507() { - OpenTK.Graphics.OpenGL.LightName _light = default(OpenTK.Graphics.OpenGL.LightName); - OpenTK.Graphics.OpenGL.LightParameter _pname = default(OpenTK.Graphics.OpenGL.LightParameter); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Light(_light,_pname,_param); -} -static unsafe void Test_Light_21508() { - OpenTK.Graphics.OpenGL.LightName _light = default(OpenTK.Graphics.OpenGL.LightName); - OpenTK.Graphics.OpenGL.LightParameter _pname = default(OpenTK.Graphics.OpenGL.LightParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Light(_light,_pname,_params); -} -static unsafe void Test_Light_21509() { - OpenTK.Graphics.OpenGL.LightName _light = default(OpenTK.Graphics.OpenGL.LightName); - OpenTK.Graphics.OpenGL.LightParameter _pname = default(OpenTK.Graphics.OpenGL.LightParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Light(_light,_pname,_params); -} -static unsafe void Test_LightModel_21510() { - OpenTK.Graphics.OpenGL.LightModelParameter _pname = default(OpenTK.Graphics.OpenGL.LightModelParameter); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL.GL.LightModel(_pname,_param); -} -static unsafe void Test_LightModel_21511() { - OpenTK.Graphics.OpenGL.LightModelParameter _pname = default(OpenTK.Graphics.OpenGL.LightModelParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.LightModel(_pname,_params); -} -static unsafe void Test_LightModel_21512() { - OpenTK.Graphics.OpenGL.LightModelParameter _pname = default(OpenTK.Graphics.OpenGL.LightModelParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.LightModel(_pname,_params); -} -static unsafe void Test_LightModel_21513() { - OpenTK.Graphics.OpenGL.LightModelParameter _pname = default(OpenTK.Graphics.OpenGL.LightModelParameter); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.LightModel(_pname,_param); -} -static unsafe void Test_LightModel_21514() { - OpenTK.Graphics.OpenGL.LightModelParameter _pname = default(OpenTK.Graphics.OpenGL.LightModelParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.LightModel(_pname,_params); -} -static unsafe void Test_LightModel_21515() { - OpenTK.Graphics.OpenGL.LightModelParameter _pname = default(OpenTK.Graphics.OpenGL.LightModelParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.LightModel(_pname,_params); -} -static unsafe void Test_LineStipple_21516() { - System.Int32 _factor = default(System.Int32); - System.Int16 _pattern = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.LineStipple(_factor,_pattern); -} -static unsafe void Test_LineStipple_21517() { - System.Int32 _factor = default(System.Int32); - System.UInt16 _pattern = default(System.UInt16); - OpenTK.Graphics.OpenGL.GL.LineStipple(_factor,_pattern); -} -static unsafe void Test_LineWidth_21518() { - System.Single _width = default(System.Single); - OpenTK.Graphics.OpenGL.GL.LineWidth(_width); -} -static unsafe void Test_LinkProgram_21519() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.LinkProgram(_program); -} -static unsafe void Test_LinkProgram_21520() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.LinkProgram(_program); -} -static unsafe void Test_ListBase_21521() { - System.Int32 _base = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ListBase(_base); -} -static unsafe void Test_ListBase_21522() { - System.UInt32 _base = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.ListBase(_base); -} -static unsafe void Test_LoadIdentity_21523() { - OpenTK.Graphics.OpenGL.GL.LoadIdentity(); -} -static unsafe void Test_LoadMatrix_21524() { - System.Double[] _m = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.LoadMatrix(_m); -} -static unsafe void Test_LoadMatrix_21525() { - System.Double _m = default(System.Double); - OpenTK.Graphics.OpenGL.GL.LoadMatrix(ref _m); -} -static unsafe void Test_LoadMatrix_21526() { - System.Double* _m = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.LoadMatrix(_m); -} -static unsafe void Test_LoadMatrix_21527() { - System.Single[] _m = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.LoadMatrix(_m); -} -static unsafe void Test_LoadMatrix_21528() { - System.Single _m = default(System.Single); - OpenTK.Graphics.OpenGL.GL.LoadMatrix(ref _m); -} -static unsafe void Test_LoadMatrix_21529() { - System.Single* _m = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.LoadMatrix(_m); -} -static unsafe void Test_LoadName_21530() { - System.Int32 _name = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.LoadName(_name); -} -static unsafe void Test_LoadName_21531() { - System.UInt32 _name = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.LoadName(_name); -} -static unsafe void Test_LoadTransposeMatrix_21532() { - System.Double[] _m = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.LoadTransposeMatrix(_m); -} -static unsafe void Test_LoadTransposeMatrix_21533() { - System.Double _m = default(System.Double); - OpenTK.Graphics.OpenGL.GL.LoadTransposeMatrix(ref _m); -} -static unsafe void Test_LoadTransposeMatrix_21534() { - System.Double* _m = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.LoadTransposeMatrix(_m); -} -static unsafe void Test_LoadTransposeMatrix_21535() { - System.Single[] _m = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.LoadTransposeMatrix(_m); -} -static unsafe void Test_LoadTransposeMatrix_21536() { - System.Single _m = default(System.Single); - OpenTK.Graphics.OpenGL.GL.LoadTransposeMatrix(ref _m); -} -static unsafe void Test_LoadTransposeMatrix_21537() { - System.Single* _m = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.LoadTransposeMatrix(_m); -} -static unsafe void Test_LogicOp_21538() { - OpenTK.Graphics.OpenGL.LogicOp _opcode = default(OpenTK.Graphics.OpenGL.LogicOp); - OpenTK.Graphics.OpenGL.GL.LogicOp(_opcode); -} -static unsafe void Test_Map1_21539() { - OpenTK.Graphics.OpenGL.MapTarget _target = default(OpenTK.Graphics.OpenGL.MapTarget); - System.Double _u1 = default(System.Double); - System.Double _u2 = default(System.Double); - System.Int32 _stride = default(System.Int32); - System.Int32 _order = default(System.Int32); - System.Double[] _points = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Map1(_target,_u1,_u2,_stride,_order,_points); -} -static unsafe void Test_Map1_21540() { - OpenTK.Graphics.OpenGL.MapTarget _target = default(OpenTK.Graphics.OpenGL.MapTarget); - System.Double _u1 = default(System.Double); - System.Double _u2 = default(System.Double); - System.Int32 _stride = default(System.Int32); - System.Int32 _order = default(System.Int32); - System.Double _points = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Map1(_target,_u1,_u2,_stride,_order,ref _points); -} -static unsafe void Test_Map1_21541() { - OpenTK.Graphics.OpenGL.MapTarget _target = default(OpenTK.Graphics.OpenGL.MapTarget); - System.Double _u1 = default(System.Double); - System.Double _u2 = default(System.Double); - System.Int32 _stride = default(System.Int32); - System.Int32 _order = default(System.Int32); - System.Double* _points = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Map1(_target,_u1,_u2,_stride,_order,_points); -} -static unsafe void Test_Map1_21542() { - OpenTK.Graphics.OpenGL.MapTarget _target = default(OpenTK.Graphics.OpenGL.MapTarget); - System.Single _u1 = default(System.Single); - System.Single _u2 = default(System.Single); - System.Int32 _stride = default(System.Int32); - System.Int32 _order = default(System.Int32); - System.Single[] _points = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Map1(_target,_u1,_u2,_stride,_order,_points); -} -static unsafe void Test_Map1_21543() { - OpenTK.Graphics.OpenGL.MapTarget _target = default(OpenTK.Graphics.OpenGL.MapTarget); - System.Single _u1 = default(System.Single); - System.Single _u2 = default(System.Single); - System.Int32 _stride = default(System.Int32); - System.Int32 _order = default(System.Int32); - System.Single _points = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Map1(_target,_u1,_u2,_stride,_order,ref _points); -} -static unsafe void Test_Map1_21544() { - OpenTK.Graphics.OpenGL.MapTarget _target = default(OpenTK.Graphics.OpenGL.MapTarget); - System.Single _u1 = default(System.Single); - System.Single _u2 = default(System.Single); - System.Int32 _stride = default(System.Int32); - System.Int32 _order = default(System.Int32); - System.Single* _points = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Map1(_target,_u1,_u2,_stride,_order,_points); -} -static unsafe void Test_Map2_21545() { - OpenTK.Graphics.OpenGL.MapTarget _target = default(OpenTK.Graphics.OpenGL.MapTarget); - System.Double _u1 = default(System.Double); - System.Double _u2 = default(System.Double); - System.Int32 _ustride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Double _v1 = default(System.Double); - System.Double _v2 = default(System.Double); - System.Int32 _vstride = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Double[] _points = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Map2(_target,_u1,_u2,_ustride,_uorder,_v1,_v2,_vstride,_vorder,_points); -} -static unsafe void Test_Map2_21546() { - OpenTK.Graphics.OpenGL.MapTarget _target = default(OpenTK.Graphics.OpenGL.MapTarget); - System.Double _u1 = default(System.Double); - System.Double _u2 = default(System.Double); - System.Int32 _ustride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Double _v1 = default(System.Double); - System.Double _v2 = default(System.Double); - System.Int32 _vstride = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Double _points = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Map2(_target,_u1,_u2,_ustride,_uorder,_v1,_v2,_vstride,_vorder,ref _points); -} -static unsafe void Test_Map2_21547() { - OpenTK.Graphics.OpenGL.MapTarget _target = default(OpenTK.Graphics.OpenGL.MapTarget); - System.Double _u1 = default(System.Double); - System.Double _u2 = default(System.Double); - System.Int32 _ustride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Double _v1 = default(System.Double); - System.Double _v2 = default(System.Double); - System.Int32 _vstride = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Double* _points = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Map2(_target,_u1,_u2,_ustride,_uorder,_v1,_v2,_vstride,_vorder,_points); -} -static unsafe void Test_Map2_21548() { - OpenTK.Graphics.OpenGL.MapTarget _target = default(OpenTK.Graphics.OpenGL.MapTarget); - System.Single _u1 = default(System.Single); - System.Single _u2 = default(System.Single); - System.Int32 _ustride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - System.Int32 _vstride = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Single[] _points = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Map2(_target,_u1,_u2,_ustride,_uorder,_v1,_v2,_vstride,_vorder,_points); -} -static unsafe void Test_Map2_21549() { - OpenTK.Graphics.OpenGL.MapTarget _target = default(OpenTK.Graphics.OpenGL.MapTarget); - System.Single _u1 = default(System.Single); - System.Single _u2 = default(System.Single); - System.Int32 _ustride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - System.Int32 _vstride = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Single _points = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Map2(_target,_u1,_u2,_ustride,_uorder,_v1,_v2,_vstride,_vorder,ref _points); -} -static unsafe void Test_Map2_21550() { - OpenTK.Graphics.OpenGL.MapTarget _target = default(OpenTK.Graphics.OpenGL.MapTarget); - System.Single _u1 = default(System.Single); - System.Single _u2 = default(System.Single); - System.Int32 _ustride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - System.Int32 _vstride = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Single* _points = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Map2(_target,_u1,_u2,_ustride,_uorder,_v1,_v2,_vstride,_vorder,_points); -} -static unsafe void Test_MapBuffer_21551() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - OpenTK.Graphics.OpenGL.BufferAccess _access = default(OpenTK.Graphics.OpenGL.BufferAccess); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.MapBuffer(_target,_access); -} -static unsafe void Test_MapBufferRange_21552() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _length = default(System.IntPtr); - OpenTK.Graphics.OpenGL.BufferAccessMask _access = default(OpenTK.Graphics.OpenGL.BufferAccessMask); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.MapBufferRange(_target,_offset,_length,_access); -} -static unsafe void Test_MapGrid1_21553() { - System.Int32 _un = default(System.Int32); - System.Double _u1 = default(System.Double); - System.Double _u2 = default(System.Double); - OpenTK.Graphics.OpenGL.GL.MapGrid1(_un,_u1,_u2); -} -static unsafe void Test_MapGrid1_21554() { - System.Int32 _un = default(System.Int32); - System.Single _u1 = default(System.Single); - System.Single _u2 = default(System.Single); - OpenTK.Graphics.OpenGL.GL.MapGrid1(_un,_u1,_u2); -} -static unsafe void Test_MapGrid2_21555() { - System.Int32 _un = default(System.Int32); - System.Double _u1 = default(System.Double); - System.Double _u2 = default(System.Double); - System.Int32 _vn = default(System.Int32); - System.Double _v1 = default(System.Double); - System.Double _v2 = default(System.Double); - OpenTK.Graphics.OpenGL.GL.MapGrid2(_un,_u1,_u2,_vn,_v1,_v2); -} -static unsafe void Test_MapGrid2_21556() { - System.Int32 _un = default(System.Int32); - System.Single _u1 = default(System.Single); - System.Single _u2 = default(System.Single); - System.Int32 _vn = default(System.Int32); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - OpenTK.Graphics.OpenGL.GL.MapGrid2(_un,_u1,_u2,_vn,_v1,_v2); -} -static unsafe void Test_Material_21557() { - OpenTK.Graphics.OpenGL.MaterialFace _face = default(OpenTK.Graphics.OpenGL.MaterialFace); - OpenTK.Graphics.OpenGL.MaterialParameter _pname = default(OpenTK.Graphics.OpenGL.MaterialParameter); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Material(_face,_pname,_param); -} -static unsafe void Test_Material_21558() { - OpenTK.Graphics.OpenGL.MaterialFace _face = default(OpenTK.Graphics.OpenGL.MaterialFace); - OpenTK.Graphics.OpenGL.MaterialParameter _pname = default(OpenTK.Graphics.OpenGL.MaterialParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Material(_face,_pname,_params); -} -static unsafe void Test_Material_21559() { - OpenTK.Graphics.OpenGL.MaterialFace _face = default(OpenTK.Graphics.OpenGL.MaterialFace); - OpenTK.Graphics.OpenGL.MaterialParameter _pname = default(OpenTK.Graphics.OpenGL.MaterialParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Material(_face,_pname,_params); -} -static unsafe void Test_Material_21560() { - OpenTK.Graphics.OpenGL.MaterialFace _face = default(OpenTK.Graphics.OpenGL.MaterialFace); - OpenTK.Graphics.OpenGL.MaterialParameter _pname = default(OpenTK.Graphics.OpenGL.MaterialParameter); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Material(_face,_pname,_param); -} -static unsafe void Test_Material_21561() { - OpenTK.Graphics.OpenGL.MaterialFace _face = default(OpenTK.Graphics.OpenGL.MaterialFace); - OpenTK.Graphics.OpenGL.MaterialParameter _pname = default(OpenTK.Graphics.OpenGL.MaterialParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Material(_face,_pname,_params); -} -static unsafe void Test_Material_21562() { - OpenTK.Graphics.OpenGL.MaterialFace _face = default(OpenTK.Graphics.OpenGL.MaterialFace); - OpenTK.Graphics.OpenGL.MaterialParameter _pname = default(OpenTK.Graphics.OpenGL.MaterialParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Material(_face,_pname,_params); -} -static unsafe void Test_MatrixMode_21563() { - OpenTK.Graphics.OpenGL.MatrixMode _mode = default(OpenTK.Graphics.OpenGL.MatrixMode); - OpenTK.Graphics.OpenGL.GL.MatrixMode(_mode); -} -static unsafe void Test_MemoryBarrier_21564() { - OpenTK.Graphics.OpenGL.MemoryBarrierFlags _barriers = default(OpenTK.Graphics.OpenGL.MemoryBarrierFlags); - OpenTK.Graphics.OpenGL.GL.MemoryBarrier(_barriers); -} -static unsafe void Test_Minmax_21565() { - OpenTK.Graphics.OpenGL.MinmaxTarget _target = default(OpenTK.Graphics.OpenGL.MinmaxTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Boolean _sink = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Minmax(_target,_internalformat,_sink); -} -static unsafe void Test_MinSampleShading_21566() { - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.MinSampleShading(_value); -} -static unsafe void Test_MultiDrawArrays_21567() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32[] _first = default(System.Int32[]); - System.Int32[] _count = default(System.Int32[]); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawArrays(_mode,_first,_count,_drawcount); -} -static unsafe void Test_MultiDrawArrays_21568() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawArrays(_mode,ref _first,ref _count,_drawcount); -} -static unsafe void Test_MultiDrawArrays_21569() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32* _first = default(System.Int32*); - System.Int32* _count = default(System.Int32*); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawArrays(_mode,_first,_count,_drawcount); -} -static unsafe void Test_MultiDrawArrays_21570() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32[] _first = default(System.Int32[]); - System.Int32[] _count = default(System.Int32[]); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawArrays(_mode,_first,_count,_drawcount); -} -static unsafe void Test_MultiDrawArrays_21571() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawArrays(_mode,ref _first,ref _count,_drawcount); -} -static unsafe void Test_MultiDrawArrays_21572() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32* _first = default(System.Int32*); - System.Int32* _count = default(System.Int32*); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawArrays(_mode,_first,_count,_drawcount); -} -static unsafe void Test_MultiDrawArraysIndirect_21573() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.IntPtr _indirect = default(System.IntPtr); - System.Int32 _drawcount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawArraysIndirect(_mode,_indirect,_drawcount,_stride); -} -static unsafe void Test_MultiDrawArraysIndirect_21574() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - int[] _indirect = default(int[]); - System.Int32 _drawcount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawArraysIndirect(_mode,_indirect,_drawcount,_stride); -} -static unsafe void Test_MultiDrawArraysIndirect_21575() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - int[,] _indirect = default(int[,]); - System.Int32 _drawcount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawArraysIndirect(_mode,_indirect,_drawcount,_stride); -} -static unsafe void Test_MultiDrawArraysIndirect_21576() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - int[,,] _indirect = default(int[,,]); - System.Int32 _drawcount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawArraysIndirect(_mode,_indirect,_drawcount,_stride); -} -static unsafe void Test_MultiDrawArraysIndirect_21577() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - int _indirect = default(int); - System.Int32 _drawcount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawArraysIndirect(_mode,ref _indirect,_drawcount,_stride); -} -static unsafe void Test_MultiDrawElements_21578() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElements(_mode,_count,_type,_indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_21579() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElements(_mode,_count,_type,_indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_21580() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElements(_mode,_count,_type,_indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_21581() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElements(_mode,_count,_type,_indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_21582() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElements(_mode,_count,_type,ref _indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_21583() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElements(_mode,ref _count,_type,_indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_21584() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElements(_mode,ref _count,_type,_indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_21585() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElements(_mode,ref _count,_type,_indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_21586() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElements(_mode,ref _count,_type,_indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_21587() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElements(_mode,ref _count,_type,ref _indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_21588() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElements(_mode,_count,_type,_indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_21589() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElements(_mode,_count,_type,_indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_21590() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElements(_mode,_count,_type,_indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_21591() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElements(_mode,_count,_type,_indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_21592() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElements(_mode,_count,_type,ref _indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_21593() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElements(_mode,_count,_type,_indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_21594() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElements(_mode,_count,_type,_indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_21595() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElements(_mode,_count,_type,_indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_21596() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElements(_mode,_count,_type,_indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_21597() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElements(_mode,_count,_type,ref _indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_21598() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElements(_mode,ref _count,_type,_indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_21599() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElements(_mode,ref _count,_type,_indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_21600() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElements(_mode,ref _count,_type,_indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_21601() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElements(_mode,ref _count,_type,_indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_21602() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElements(_mode,ref _count,_type,ref _indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_21603() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElements(_mode,_count,_type,_indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_21604() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElements(_mode,_count,_type,_indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_21605() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElements(_mode,_count,_type,_indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_21606() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElements(_mode,_count,_type,_indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_21607() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElements(_mode,_count,_type,ref _indices,_drawcount); -} -static unsafe void Test_MultiDrawElementsBaseVertex_21608() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _drawcount = default(System.Int32); - System.Int32[] _basevertex = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.MultiDrawElementsBaseVertex(_mode,_count,_type,_indices,_drawcount,_basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_21609() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _drawcount = default(System.Int32); - System.Int32[] _basevertex = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.MultiDrawElementsBaseVertex(_mode,_count,_type,_indices,_drawcount,_basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_21610() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _drawcount = default(System.Int32); - System.Int32[] _basevertex = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.MultiDrawElementsBaseVertex(_mode,_count,_type,_indices,_drawcount,_basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_21611() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _drawcount = default(System.Int32); - System.Int32[] _basevertex = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.MultiDrawElementsBaseVertex(_mode,_count,_type,_indices,_drawcount,_basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_21612() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _drawcount = default(System.Int32); - System.Int32[] _basevertex = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.MultiDrawElementsBaseVertex(_mode,_count,_type,ref _indices,_drawcount,_basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_21613() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _drawcount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElementsBaseVertex(_mode,ref _count,_type,_indices,_drawcount,ref _basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_21614() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _drawcount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElementsBaseVertex(_mode,ref _count,_type,_indices,_drawcount,ref _basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_21615() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _drawcount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElementsBaseVertex(_mode,ref _count,_type,_indices,_drawcount,ref _basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_21616() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _drawcount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElementsBaseVertex(_mode,ref _count,_type,_indices,_drawcount,ref _basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_21617() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _drawcount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElementsBaseVertex(_mode,ref _count,_type,ref _indices,_drawcount,ref _basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_21618() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _drawcount = default(System.Int32); - System.Int32* _basevertex = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.MultiDrawElementsBaseVertex(_mode,_count,_type,_indices,_drawcount,_basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_21619() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _drawcount = default(System.Int32); - System.Int32* _basevertex = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.MultiDrawElementsBaseVertex(_mode,_count,_type,_indices,_drawcount,_basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_21620() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _drawcount = default(System.Int32); - System.Int32* _basevertex = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.MultiDrawElementsBaseVertex(_mode,_count,_type,_indices,_drawcount,_basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_21621() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _drawcount = default(System.Int32); - System.Int32* _basevertex = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.MultiDrawElementsBaseVertex(_mode,_count,_type,_indices,_drawcount,_basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_21622() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _drawcount = default(System.Int32); - System.Int32* _basevertex = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.MultiDrawElementsBaseVertex(_mode,_count,_type,ref _indices,_drawcount,_basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_21623() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _drawcount = default(System.Int32); - System.Int32[] _basevertex = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.MultiDrawElementsBaseVertex(_mode,_count,_type,_indices,_drawcount,_basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_21624() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _drawcount = default(System.Int32); - System.Int32[] _basevertex = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.MultiDrawElementsBaseVertex(_mode,_count,_type,_indices,_drawcount,_basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_21625() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _drawcount = default(System.Int32); - System.Int32[] _basevertex = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.MultiDrawElementsBaseVertex(_mode,_count,_type,_indices,_drawcount,_basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_21626() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _drawcount = default(System.Int32); - System.Int32[] _basevertex = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.MultiDrawElementsBaseVertex(_mode,_count,_type,_indices,_drawcount,_basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_21627() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _drawcount = default(System.Int32); - System.Int32[] _basevertex = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.MultiDrawElementsBaseVertex(_mode,_count,_type,ref _indices,_drawcount,_basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_21628() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _drawcount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElementsBaseVertex(_mode,ref _count,_type,_indices,_drawcount,ref _basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_21629() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _drawcount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElementsBaseVertex(_mode,ref _count,_type,_indices,_drawcount,ref _basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_21630() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _drawcount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElementsBaseVertex(_mode,ref _count,_type,_indices,_drawcount,ref _basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_21631() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _drawcount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElementsBaseVertex(_mode,ref _count,_type,_indices,_drawcount,ref _basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_21632() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _drawcount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElementsBaseVertex(_mode,ref _count,_type,ref _indices,_drawcount,ref _basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_21633() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _drawcount = default(System.Int32); - System.Int32* _basevertex = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.MultiDrawElementsBaseVertex(_mode,_count,_type,_indices,_drawcount,_basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_21634() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _drawcount = default(System.Int32); - System.Int32* _basevertex = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.MultiDrawElementsBaseVertex(_mode,_count,_type,_indices,_drawcount,_basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_21635() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _drawcount = default(System.Int32); - System.Int32* _basevertex = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.MultiDrawElementsBaseVertex(_mode,_count,_type,_indices,_drawcount,_basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_21636() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _drawcount = default(System.Int32); - System.Int32* _basevertex = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.MultiDrawElementsBaseVertex(_mode,_count,_type,_indices,_drawcount,_basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_21637() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _drawcount = default(System.Int32); - System.Int32* _basevertex = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.MultiDrawElementsBaseVertex(_mode,_count,_type,ref _indices,_drawcount,_basevertex); -} -static unsafe void Test_MultiDrawElementsIndirect_21638() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indirect = default(System.IntPtr); - System.Int32 _drawcount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElementsIndirect(_mode,_type,_indirect,_drawcount,_stride); -} -static unsafe void Test_MultiDrawElementsIndirect_21639() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indirect = default(int[]); - System.Int32 _drawcount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElementsIndirect(_mode,_type,_indirect,_drawcount,_stride); -} -static unsafe void Test_MultiDrawElementsIndirect_21640() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indirect = default(int[,]); - System.Int32 _drawcount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElementsIndirect(_mode,_type,_indirect,_drawcount,_stride); -} -static unsafe void Test_MultiDrawElementsIndirect_21641() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indirect = default(int[,,]); - System.Int32 _drawcount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElementsIndirect(_mode,_type,_indirect,_drawcount,_stride); -} -static unsafe void Test_MultiDrawElementsIndirect_21642() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indirect = default(int); - System.Int32 _drawcount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiDrawElementsIndirect(_mode,_type,ref _indirect,_drawcount,_stride); -} -static unsafe void Test_MultiTexCoord1_21643() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Double _s = default(System.Double); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord1(_target,_s); -} -static unsafe void Test_MultiTexCoord1_21644() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord1(_target,_v); -} -static unsafe void Test_MultiTexCoord1_21645() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Single _s = default(System.Single); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord1(_target,_s); -} -static unsafe void Test_MultiTexCoord1_21646() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord1(_target,_v); -} -static unsafe void Test_MultiTexCoord1_21647() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int32 _s = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord1(_target,_s); -} -static unsafe void Test_MultiTexCoord1_21648() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord1(_target,_v); -} -static unsafe void Test_MultiTexCoord1_21649() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int16 _s = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord1(_target,_s); -} -static unsafe void Test_MultiTexCoord1_21650() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord1(_target,_v); -} -static unsafe void Test_MultiTexCoord2_21651() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Double _s = default(System.Double); - System.Double _t = default(System.Double); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord2(_target,_s,_t); -} -static unsafe void Test_MultiTexCoord2_21652() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord2(_target,_v); -} -static unsafe void Test_MultiTexCoord2_21653() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord2(_target,ref _v); -} -static unsafe void Test_MultiTexCoord2_21654() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord2(_target,_v); -} -static unsafe void Test_MultiTexCoord2_21655() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Single _s = default(System.Single); - System.Single _t = default(System.Single); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord2(_target,_s,_t); -} -static unsafe void Test_MultiTexCoord2_21656() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord2(_target,_v); -} -static unsafe void Test_MultiTexCoord2_21657() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord2(_target,ref _v); -} -static unsafe void Test_MultiTexCoord2_21658() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord2(_target,_v); -} -static unsafe void Test_MultiTexCoord2_21659() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int32 _s = default(System.Int32); - System.Int32 _t = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord2(_target,_s,_t); -} -static unsafe void Test_MultiTexCoord2_21660() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord2(_target,_v); -} -static unsafe void Test_MultiTexCoord2_21661() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord2(_target,ref _v); -} -static unsafe void Test_MultiTexCoord2_21662() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord2(_target,_v); -} -static unsafe void Test_MultiTexCoord2_21663() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int16 _s = default(System.Int16); - System.Int16 _t = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord2(_target,_s,_t); -} -static unsafe void Test_MultiTexCoord2_21664() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord2(_target,_v); -} -static unsafe void Test_MultiTexCoord2_21665() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord2(_target,ref _v); -} -static unsafe void Test_MultiTexCoord2_21666() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord2(_target,_v); -} -static unsafe void Test_MultiTexCoord3_21667() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Double _s = default(System.Double); - System.Double _t = default(System.Double); - System.Double _r = default(System.Double); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord3(_target,_s,_t,_r); -} -static unsafe void Test_MultiTexCoord3_21668() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord3(_target,_v); -} -static unsafe void Test_MultiTexCoord3_21669() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord3(_target,ref _v); -} -static unsafe void Test_MultiTexCoord3_21670() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord3(_target,_v); -} -static unsafe void Test_MultiTexCoord3_21671() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Single _s = default(System.Single); - System.Single _t = default(System.Single); - System.Single _r = default(System.Single); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord3(_target,_s,_t,_r); -} -static unsafe void Test_MultiTexCoord3_21672() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord3(_target,_v); -} -static unsafe void Test_MultiTexCoord3_21673() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord3(_target,ref _v); -} -static unsafe void Test_MultiTexCoord3_21674() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord3(_target,_v); -} -static unsafe void Test_MultiTexCoord3_21675() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int32 _s = default(System.Int32); - System.Int32 _t = default(System.Int32); - System.Int32 _r = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord3(_target,_s,_t,_r); -} -static unsafe void Test_MultiTexCoord3_21676() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord3(_target,_v); -} -static unsafe void Test_MultiTexCoord3_21677() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord3(_target,ref _v); -} -static unsafe void Test_MultiTexCoord3_21678() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord3(_target,_v); -} -static unsafe void Test_MultiTexCoord3_21679() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int16 _s = default(System.Int16); - System.Int16 _t = default(System.Int16); - System.Int16 _r = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord3(_target,_s,_t,_r); -} -static unsafe void Test_MultiTexCoord3_21680() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord3(_target,_v); -} -static unsafe void Test_MultiTexCoord3_21681() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord3(_target,ref _v); -} -static unsafe void Test_MultiTexCoord3_21682() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord3(_target,_v); -} -static unsafe void Test_MultiTexCoord4_21683() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Double _s = default(System.Double); - System.Double _t = default(System.Double); - System.Double _r = default(System.Double); - System.Double _q = default(System.Double); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord4(_target,_s,_t,_r,_q); -} -static unsafe void Test_MultiTexCoord4_21684() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord4(_target,_v); -} -static unsafe void Test_MultiTexCoord4_21685() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord4(_target,ref _v); -} -static unsafe void Test_MultiTexCoord4_21686() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord4(_target,_v); -} -static unsafe void Test_MultiTexCoord4_21687() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Single _s = default(System.Single); - System.Single _t = default(System.Single); - System.Single _r = default(System.Single); - System.Single _q = default(System.Single); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord4(_target,_s,_t,_r,_q); -} -static unsafe void Test_MultiTexCoord4_21688() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord4(_target,_v); -} -static unsafe void Test_MultiTexCoord4_21689() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord4(_target,ref _v); -} -static unsafe void Test_MultiTexCoord4_21690() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord4(_target,_v); -} -static unsafe void Test_MultiTexCoord4_21691() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int32 _s = default(System.Int32); - System.Int32 _t = default(System.Int32); - System.Int32 _r = default(System.Int32); - System.Int32 _q = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord4(_target,_s,_t,_r,_q); -} -static unsafe void Test_MultiTexCoord4_21692() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord4(_target,_v); -} -static unsafe void Test_MultiTexCoord4_21693() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord4(_target,ref _v); -} -static unsafe void Test_MultiTexCoord4_21694() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord4(_target,_v); -} -static unsafe void Test_MultiTexCoord4_21695() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int16 _s = default(System.Int16); - System.Int16 _t = default(System.Int16); - System.Int16 _r = default(System.Int16); - System.Int16 _q = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord4(_target,_s,_t,_r,_q); -} -static unsafe void Test_MultiTexCoord4_21696() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord4(_target,_v); -} -static unsafe void Test_MultiTexCoord4_21697() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord4(_target,ref _v); -} -static unsafe void Test_MultiTexCoord4_21698() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord4(_target,_v); -} -static unsafe void Test_MultiTexCoordP1_21699() { - OpenTK.Graphics.OpenGL.TextureUnit _texture = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiTexCoordP1(_texture,_type,_coords); -} -static unsafe void Test_MultiTexCoordP1_21700() { - OpenTK.Graphics.OpenGL.TextureUnit _texture = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.UInt32 _coords = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.MultiTexCoordP1(_texture,_type,_coords); -} -static unsafe void Test_MultiTexCoordP1_21701() { - OpenTK.Graphics.OpenGL.TextureUnit _texture = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.MultiTexCoordP1(_texture,_type,_coords); -} -static unsafe void Test_MultiTexCoordP1_21702() { - OpenTK.Graphics.OpenGL.TextureUnit _texture = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.UInt32* _coords = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.MultiTexCoordP1(_texture,_type,_coords); -} -static unsafe void Test_MultiTexCoordP2_21703() { - OpenTK.Graphics.OpenGL.TextureUnit _texture = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiTexCoordP2(_texture,_type,_coords); -} -static unsafe void Test_MultiTexCoordP2_21704() { - OpenTK.Graphics.OpenGL.TextureUnit _texture = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.UInt32 _coords = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.MultiTexCoordP2(_texture,_type,_coords); -} -static unsafe void Test_MultiTexCoordP2_21705() { - OpenTK.Graphics.OpenGL.TextureUnit _texture = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.MultiTexCoordP2(_texture,_type,_coords); -} -static unsafe void Test_MultiTexCoordP2_21706() { - OpenTK.Graphics.OpenGL.TextureUnit _texture = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.UInt32* _coords = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.MultiTexCoordP2(_texture,_type,_coords); -} -static unsafe void Test_MultiTexCoordP3_21707() { - OpenTK.Graphics.OpenGL.TextureUnit _texture = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiTexCoordP3(_texture,_type,_coords); -} -static unsafe void Test_MultiTexCoordP3_21708() { - OpenTK.Graphics.OpenGL.TextureUnit _texture = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.UInt32 _coords = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.MultiTexCoordP3(_texture,_type,_coords); -} -static unsafe void Test_MultiTexCoordP3_21709() { - OpenTK.Graphics.OpenGL.TextureUnit _texture = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.MultiTexCoordP3(_texture,_type,_coords); -} -static unsafe void Test_MultiTexCoordP3_21710() { - OpenTK.Graphics.OpenGL.TextureUnit _texture = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.UInt32* _coords = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.MultiTexCoordP3(_texture,_type,_coords); -} -static unsafe void Test_MultiTexCoordP4_21711() { - OpenTK.Graphics.OpenGL.TextureUnit _texture = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.MultiTexCoordP4(_texture,_type,_coords); -} -static unsafe void Test_MultiTexCoordP4_21712() { - OpenTK.Graphics.OpenGL.TextureUnit _texture = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.UInt32 _coords = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.MultiTexCoordP4(_texture,_type,_coords); -} -static unsafe void Test_MultiTexCoordP4_21713() { - OpenTK.Graphics.OpenGL.TextureUnit _texture = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.MultiTexCoordP4(_texture,_type,_coords); -} -static unsafe void Test_MultiTexCoordP4_21714() { - OpenTK.Graphics.OpenGL.TextureUnit _texture = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.UInt32* _coords = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.MultiTexCoordP4(_texture,_type,_coords); -} -static unsafe void Test_MultMatrix_21715() { - System.Double[] _m = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.MultMatrix(_m); -} -static unsafe void Test_MultMatrix_21716() { - System.Double _m = default(System.Double); - OpenTK.Graphics.OpenGL.GL.MultMatrix(ref _m); -} -static unsafe void Test_MultMatrix_21717() { - System.Double* _m = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.MultMatrix(_m); -} -static unsafe void Test_MultMatrix_21718() { - System.Single[] _m = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.MultMatrix(_m); -} -static unsafe void Test_MultMatrix_21719() { - System.Single _m = default(System.Single); - OpenTK.Graphics.OpenGL.GL.MultMatrix(ref _m); -} -static unsafe void Test_MultMatrix_21720() { - System.Single* _m = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.MultMatrix(_m); -} -static unsafe void Test_MultTransposeMatrix_21721() { - System.Double[] _m = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.MultTransposeMatrix(_m); -} -static unsafe void Test_MultTransposeMatrix_21722() { - System.Double _m = default(System.Double); - OpenTK.Graphics.OpenGL.GL.MultTransposeMatrix(ref _m); -} -static unsafe void Test_MultTransposeMatrix_21723() { - System.Double* _m = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.MultTransposeMatrix(_m); -} -static unsafe void Test_MultTransposeMatrix_21724() { - System.Single[] _m = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.MultTransposeMatrix(_m); -} -static unsafe void Test_MultTransposeMatrix_21725() { - System.Single _m = default(System.Single); - OpenTK.Graphics.OpenGL.GL.MultTransposeMatrix(ref _m); -} -static unsafe void Test_MultTransposeMatrix_21726() { - System.Single* _m = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.MultTransposeMatrix(_m); -} -static unsafe void Test_NewList_21727() { - System.Int32 _list = default(System.Int32); - OpenTK.Graphics.OpenGL.ListMode _mode = default(OpenTK.Graphics.OpenGL.ListMode); - OpenTK.Graphics.OpenGL.GL.NewList(_list,_mode); -} -static unsafe void Test_NewList_21728() { - System.UInt32 _list = default(System.UInt32); - OpenTK.Graphics.OpenGL.ListMode _mode = default(OpenTK.Graphics.OpenGL.ListMode); - OpenTK.Graphics.OpenGL.GL.NewList(_list,_mode); -} -static unsafe void Test_Normal3_21729() { - System.Byte _nx = default(System.Byte); - System.Byte _ny = default(System.Byte); - System.Byte _nz = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Normal3(_nx,_ny,_nz); -} -static unsafe void Test_Normal3_21730() { - System.SByte _nx = default(System.SByte); - System.SByte _ny = default(System.SByte); - System.SByte _nz = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.Normal3(_nx,_ny,_nz); -} -static unsafe void Test_Normal3_21731() { - System.Byte[] _v = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.Normal3(_v); -} -static unsafe void Test_Normal3_21732() { - System.Byte _v = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Normal3(ref _v); -} -static unsafe void Test_Normal3_21733() { - System.Byte* _v = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.Normal3(_v); -} -static unsafe void Test_Normal3_21734() { - System.SByte[] _v = default(System.SByte[]); - OpenTK.Graphics.OpenGL.GL.Normal3(_v); -} -static unsafe void Test_Normal3_21735() { - System.SByte _v = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.Normal3(ref _v); -} -static unsafe void Test_Normal3_21736() { - System.SByte* _v = default(System.SByte*); - OpenTK.Graphics.OpenGL.GL.Normal3(_v); -} -static unsafe void Test_Normal3_21737() { - System.Double _nx = default(System.Double); - System.Double _ny = default(System.Double); - System.Double _nz = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Normal3(_nx,_ny,_nz); -} -static unsafe void Test_Normal3_21738() { - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Normal3(_v); -} -static unsafe void Test_Normal3_21739() { - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Normal3(ref _v); -} -static unsafe void Test_Normal3_21740() { - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Normal3(_v); -} -static unsafe void Test_Normal3_21741() { - System.Single _nx = default(System.Single); - System.Single _ny = default(System.Single); - System.Single _nz = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Normal3(_nx,_ny,_nz); -} -static unsafe void Test_Normal3_21742() { - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Normal3(_v); -} -static unsafe void Test_Normal3_21743() { - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Normal3(ref _v); -} -static unsafe void Test_Normal3_21744() { - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Normal3(_v); -} -static unsafe void Test_Normal3_21745() { - System.Int32 _nx = default(System.Int32); - System.Int32 _ny = default(System.Int32); - System.Int32 _nz = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Normal3(_nx,_ny,_nz); -} -static unsafe void Test_Normal3_21746() { - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Normal3(_v); -} -static unsafe void Test_Normal3_21747() { - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Normal3(ref _v); -} -static unsafe void Test_Normal3_21748() { - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Normal3(_v); -} -static unsafe void Test_Normal3_21749() { - System.Int16 _nx = default(System.Int16); - System.Int16 _ny = default(System.Int16); - System.Int16 _nz = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Normal3(_nx,_ny,_nz); -} -static unsafe void Test_Normal3_21750() { - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.Normal3(_v); -} -static unsafe void Test_Normal3_21751() { - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Normal3(ref _v); -} -static unsafe void Test_Normal3_21752() { - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Normal3(_v); -} -static unsafe void Test_NormalP3_21753() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NormalP3(_type,_coords); -} -static unsafe void Test_NormalP3_21754() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.UInt32 _coords = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NormalP3(_type,_coords); -} -static unsafe void Test_NormalP3_21755() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NormalP3(_type,_coords); -} -static unsafe void Test_NormalP3_21756() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.UInt32* _coords = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.NormalP3(_type,_coords); -} -static unsafe void Test_NormalPointer_21757() { - OpenTK.Graphics.OpenGL.NormalPointerType _type = default(OpenTK.Graphics.OpenGL.NormalPointerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.NormalPointer(_type,_stride,_pointer); -} -static unsafe void Test_NormalPointer_21758() { - OpenTK.Graphics.OpenGL.NormalPointerType _type = default(OpenTK.Graphics.OpenGL.NormalPointerType); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.NormalPointer(_type,_stride,_pointer); -} -static unsafe void Test_NormalPointer_21759() { - OpenTK.Graphics.OpenGL.NormalPointerType _type = default(OpenTK.Graphics.OpenGL.NormalPointerType); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.NormalPointer(_type,_stride,_pointer); -} -static unsafe void Test_NormalPointer_21760() { - OpenTK.Graphics.OpenGL.NormalPointerType _type = default(OpenTK.Graphics.OpenGL.NormalPointerType); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.NormalPointer(_type,_stride,_pointer); -} -static unsafe void Test_NormalPointer_21761() { - OpenTK.Graphics.OpenGL.NormalPointerType _type = default(OpenTK.Graphics.OpenGL.NormalPointerType); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.NormalPointer(_type,_stride,ref _pointer); -} -static unsafe void Test_ObjectLabel_21762() { - OpenTK.Graphics.OpenGL.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier); - System.Int32 _name = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.OpenGL.GL.ObjectLabel(_identifier,_name,_length,_label); -} -static unsafe void Test_ObjectLabel_21763() { - OpenTK.Graphics.OpenGL.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier); - System.UInt32 _name = default(System.UInt32); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.OpenGL.GL.ObjectLabel(_identifier,_name,_length,_label); -} -static unsafe void Test_ObjectPtrLabel_21764() { - System.IntPtr _ptr = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.OpenGL.GL.ObjectPtrLabel(_ptr,_length,_label); -} -static unsafe void Test_ObjectPtrLabel_21765() { - int[] _ptr = default(int[]); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.OpenGL.GL.ObjectPtrLabel(_ptr,_length,_label); -} -static unsafe void Test_ObjectPtrLabel_21766() { - int[,] _ptr = default(int[,]); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.OpenGL.GL.ObjectPtrLabel(_ptr,_length,_label); -} -static unsafe void Test_ObjectPtrLabel_21767() { - int[,,] _ptr = default(int[,,]); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.OpenGL.GL.ObjectPtrLabel(_ptr,_length,_label); -} -static unsafe void Test_ObjectPtrLabel_21768() { - int _ptr = default(int); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.OpenGL.GL.ObjectPtrLabel(ref _ptr,_length,_label); -} -static unsafe void Test_Ortho_21769() { - System.Double _left = default(System.Double); - System.Double _right = default(System.Double); - System.Double _bottom = default(System.Double); - System.Double _top = default(System.Double); - System.Double _zNear = default(System.Double); - System.Double _zFar = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ortho(_left,_right,_bottom,_top,_zNear,_zFar); -} -static unsafe void Test_PassThrough_21770() { - System.Single _token = default(System.Single); - OpenTK.Graphics.OpenGL.GL.PassThrough(_token); -} -static unsafe void Test_PatchParameter_21771() { - OpenTK.Graphics.OpenGL.PatchParameterFloat _pname = default(OpenTK.Graphics.OpenGL.PatchParameterFloat); - System.Single[] _values = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.PatchParameter(_pname,_values); -} -static unsafe void Test_PatchParameter_21772() { - OpenTK.Graphics.OpenGL.PatchParameterFloat _pname = default(OpenTK.Graphics.OpenGL.PatchParameterFloat); - System.Single _values = default(System.Single); - OpenTK.Graphics.OpenGL.GL.PatchParameter(_pname,ref _values); -} -static unsafe void Test_PatchParameter_21773() { - OpenTK.Graphics.OpenGL.PatchParameterFloat _pname = default(OpenTK.Graphics.OpenGL.PatchParameterFloat); - System.Single* _values = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.PatchParameter(_pname,_values); -} -static unsafe void Test_PatchParameter_21774() { - OpenTK.Graphics.OpenGL.PatchParameterInt _pname = default(OpenTK.Graphics.OpenGL.PatchParameterInt); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.PatchParameter(_pname,_value); -} -static unsafe void Test_PauseTransformFeedback_21775() { - OpenTK.Graphics.OpenGL.GL.PauseTransformFeedback(); -} -static unsafe void Test_PixelMap_21776() { - OpenTK.Graphics.OpenGL.PixelMap _map = default(OpenTK.Graphics.OpenGL.PixelMap); - System.Int32 _mapsize = default(System.Int32); - System.Single[] _values = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.PixelMap(_map,_mapsize,_values); -} -static unsafe void Test_PixelMap_21777() { - OpenTK.Graphics.OpenGL.PixelMap _map = default(OpenTK.Graphics.OpenGL.PixelMap); - System.Int32 _mapsize = default(System.Int32); - System.Single _values = default(System.Single); - OpenTK.Graphics.OpenGL.GL.PixelMap(_map,_mapsize,ref _values); -} -static unsafe void Test_PixelMap_21778() { - OpenTK.Graphics.OpenGL.PixelMap _map = default(OpenTK.Graphics.OpenGL.PixelMap); - System.Int32 _mapsize = default(System.Int32); - System.Single* _values = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.PixelMap(_map,_mapsize,_values); -} -static unsafe void Test_PixelMap_21779() { - OpenTK.Graphics.OpenGL.PixelMap _map = default(OpenTK.Graphics.OpenGL.PixelMap); - System.Int32 _mapsize = default(System.Int32); - System.Int32[] _values = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.PixelMap(_map,_mapsize,_values); -} -static unsafe void Test_PixelMap_21780() { - OpenTK.Graphics.OpenGL.PixelMap _map = default(OpenTK.Graphics.OpenGL.PixelMap); - System.Int32 _mapsize = default(System.Int32); - System.Int32 _values = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.PixelMap(_map,_mapsize,ref _values); -} -static unsafe void Test_PixelMap_21781() { - OpenTK.Graphics.OpenGL.PixelMap _map = default(OpenTK.Graphics.OpenGL.PixelMap); - System.Int32 _mapsize = default(System.Int32); - System.Int32* _values = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.PixelMap(_map,_mapsize,_values); -} -static unsafe void Test_PixelMap_21782() { - OpenTK.Graphics.OpenGL.PixelMap _map = default(OpenTK.Graphics.OpenGL.PixelMap); - System.Int32 _mapsize = default(System.Int32); - System.UInt32[] _values = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.PixelMap(_map,_mapsize,_values); -} -static unsafe void Test_PixelMap_21783() { - OpenTK.Graphics.OpenGL.PixelMap _map = default(OpenTK.Graphics.OpenGL.PixelMap); - System.Int32 _mapsize = default(System.Int32); - System.UInt32 _values = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.PixelMap(_map,_mapsize,ref _values); -} -static unsafe void Test_PixelMap_21784() { - OpenTK.Graphics.OpenGL.PixelMap _map = default(OpenTK.Graphics.OpenGL.PixelMap); - System.Int32 _mapsize = default(System.Int32); - System.UInt32* _values = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.PixelMap(_map,_mapsize,_values); -} -static unsafe void Test_PixelMap_21785() { - OpenTK.Graphics.OpenGL.PixelMap _map = default(OpenTK.Graphics.OpenGL.PixelMap); - System.Int32 _mapsize = default(System.Int32); - System.Int16[] _values = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.PixelMap(_map,_mapsize,_values); -} -static unsafe void Test_PixelMap_21786() { - OpenTK.Graphics.OpenGL.PixelMap _map = default(OpenTK.Graphics.OpenGL.PixelMap); - System.Int32 _mapsize = default(System.Int32); - System.Int16 _values = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.PixelMap(_map,_mapsize,ref _values); -} -static unsafe void Test_PixelMap_21787() { - OpenTK.Graphics.OpenGL.PixelMap _map = default(OpenTK.Graphics.OpenGL.PixelMap); - System.Int32 _mapsize = default(System.Int32); - System.Int16* _values = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.PixelMap(_map,_mapsize,_values); -} -static unsafe void Test_PixelMap_21788() { - OpenTK.Graphics.OpenGL.PixelMap _map = default(OpenTK.Graphics.OpenGL.PixelMap); - System.Int32 _mapsize = default(System.Int32); - System.UInt16[] _values = default(System.UInt16[]); - OpenTK.Graphics.OpenGL.GL.PixelMap(_map,_mapsize,_values); -} -static unsafe void Test_PixelMap_21789() { - OpenTK.Graphics.OpenGL.PixelMap _map = default(OpenTK.Graphics.OpenGL.PixelMap); - System.Int32 _mapsize = default(System.Int32); - System.UInt16 _values = default(System.UInt16); - OpenTK.Graphics.OpenGL.GL.PixelMap(_map,_mapsize,ref _values); -} -static unsafe void Test_PixelMap_21790() { - OpenTK.Graphics.OpenGL.PixelMap _map = default(OpenTK.Graphics.OpenGL.PixelMap); - System.Int32 _mapsize = default(System.Int32); - System.UInt16* _values = default(System.UInt16*); - OpenTK.Graphics.OpenGL.GL.PixelMap(_map,_mapsize,_values); -} -static unsafe void Test_PixelMapx_21791() { - OpenTK.Graphics.OpenGL.OesFixedPoint _map = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _size = default(System.Int32); - System.Int32[] _values = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.PixelMapx(_map,_size,_values); -} -static unsafe void Test_PixelMapx_21792() { - OpenTK.Graphics.OpenGL.OesFixedPoint _map = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _size = default(System.Int32); - System.Int32 _values = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.PixelMapx(_map,_size,ref _values); -} -static unsafe void Test_PixelMapx_21793() { - OpenTK.Graphics.OpenGL.OesFixedPoint _map = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _size = default(System.Int32); - System.Int32* _values = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.PixelMapx(_map,_size,_values); -} -static unsafe void Test_PixelStore_21794() { - OpenTK.Graphics.OpenGL.PixelStoreParameter _pname = default(OpenTK.Graphics.OpenGL.PixelStoreParameter); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL.GL.PixelStore(_pname,_param); -} -static unsafe void Test_PixelStore_21795() { - OpenTK.Graphics.OpenGL.PixelStoreParameter _pname = default(OpenTK.Graphics.OpenGL.PixelStoreParameter); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.PixelStore(_pname,_param); -} -static unsafe void Test_PixelStorex_21796() { - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.PixelStorex(_pname,_param); -} -static unsafe void Test_PixelTransfer_21797() { - OpenTK.Graphics.OpenGL.PixelTransferParameter _pname = default(OpenTK.Graphics.OpenGL.PixelTransferParameter); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL.GL.PixelTransfer(_pname,_param); -} -static unsafe void Test_PixelTransfer_21798() { - OpenTK.Graphics.OpenGL.PixelTransferParameter _pname = default(OpenTK.Graphics.OpenGL.PixelTransferParameter); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.PixelTransfer(_pname,_param); -} -static unsafe void Test_PixelZoom_21799() { - System.Single _xfactor = default(System.Single); - System.Single _yfactor = default(System.Single); - OpenTK.Graphics.OpenGL.GL.PixelZoom(_xfactor,_yfactor); -} -static unsafe void Test_PointParameter_21800() { - OpenTK.Graphics.OpenGL.PointParameterName _pname = default(OpenTK.Graphics.OpenGL.PointParameterName); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL.GL.PointParameter(_pname,_param); -} -static unsafe void Test_PointParameter_21801() { - OpenTK.Graphics.OpenGL.PointParameterName _pname = default(OpenTK.Graphics.OpenGL.PointParameterName); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.PointParameter(_pname,_params); -} -static unsafe void Test_PointParameter_21802() { - OpenTK.Graphics.OpenGL.PointParameterName _pname = default(OpenTK.Graphics.OpenGL.PointParameterName); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.PointParameter(_pname,_params); -} -static unsafe void Test_PointParameter_21803() { - OpenTK.Graphics.OpenGL.PointParameterName _pname = default(OpenTK.Graphics.OpenGL.PointParameterName); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.PointParameter(_pname,_param); -} -static unsafe void Test_PointParameter_21804() { - OpenTK.Graphics.OpenGL.PointParameterName _pname = default(OpenTK.Graphics.OpenGL.PointParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.PointParameter(_pname,_params); -} -static unsafe void Test_PointParameter_21805() { - OpenTK.Graphics.OpenGL.PointParameterName _pname = default(OpenTK.Graphics.OpenGL.PointParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.PointParameter(_pname,_params); -} -static unsafe void Test_PointSize_21806() { - System.Single _size = default(System.Single); - OpenTK.Graphics.OpenGL.GL.PointSize(_size); -} -static unsafe void Test_PolygonMode_21807() { - OpenTK.Graphics.OpenGL.MaterialFace _face = default(OpenTK.Graphics.OpenGL.MaterialFace); - OpenTK.Graphics.OpenGL.PolygonMode _mode = default(OpenTK.Graphics.OpenGL.PolygonMode); - OpenTK.Graphics.OpenGL.GL.PolygonMode(_face,_mode); -} -static unsafe void Test_PolygonOffset_21808() { - System.Single _factor = default(System.Single); - System.Single _units = default(System.Single); - OpenTK.Graphics.OpenGL.GL.PolygonOffset(_factor,_units); -} -static unsafe void Test_PolygonStipple_21809() { - System.Byte[] _mask = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.PolygonStipple(_mask); -} -static unsafe void Test_PolygonStipple_21810() { - System.Byte _mask = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.PolygonStipple(ref _mask); -} -static unsafe void Test_PolygonStipple_21811() { - System.Byte* _mask = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.PolygonStipple(_mask); -} -static unsafe void Test_PopAttrib_21812() { - OpenTK.Graphics.OpenGL.GL.PopAttrib(); -} -static unsafe void Test_PopClientAttrib_21813() { - OpenTK.Graphics.OpenGL.GL.PopClientAttrib(); -} -static unsafe void Test_PopDebugGroup_21814() { - OpenTK.Graphics.OpenGL.GL.PopDebugGroup(); -} -static unsafe void Test_PopMatrix_21815() { - OpenTK.Graphics.OpenGL.GL.PopMatrix(); -} -static unsafe void Test_PopName_21816() { - OpenTK.Graphics.OpenGL.GL.PopName(); -} -static unsafe void Test_PrimitiveRestartIndex_21817() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.PrimitiveRestartIndex(_index); -} -static unsafe void Test_PrimitiveRestartIndex_21818() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.PrimitiveRestartIndex(_index); -} -static unsafe void Test_PrioritizeTextures_21819() { - System.Int32 _n = default(System.Int32); - System.Int32[] _textures = default(System.Int32[]); - System.Single[] _priorities = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.PrioritizeTextures(_n,_textures,_priorities); -} -static unsafe void Test_PrioritizeTextures_21820() { - System.Int32 _n = default(System.Int32); - System.Int32 _textures = default(System.Int32); - System.Single _priorities = default(System.Single); - OpenTK.Graphics.OpenGL.GL.PrioritizeTextures(_n,ref _textures,ref _priorities); -} -static unsafe void Test_PrioritizeTextures_21821() { - System.Int32 _n = default(System.Int32); - System.Int32* _textures = default(System.Int32*); - System.Single* _priorities = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.PrioritizeTextures(_n,_textures,_priorities); -} -static unsafe void Test_PrioritizeTextures_21822() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _textures = default(System.UInt32[]); - System.Single[] _priorities = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.PrioritizeTextures(_n,_textures,_priorities); -} -static unsafe void Test_PrioritizeTextures_21823() { - System.Int32 _n = default(System.Int32); - System.UInt32 _textures = default(System.UInt32); - System.Single _priorities = default(System.Single); - OpenTK.Graphics.OpenGL.GL.PrioritizeTextures(_n,ref _textures,ref _priorities); -} -static unsafe void Test_PrioritizeTextures_21824() { - System.Int32 _n = default(System.Int32); - System.UInt32* _textures = default(System.UInt32*); - System.Single* _priorities = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.PrioritizeTextures(_n,_textures,_priorities); -} -static unsafe void Test_ProgramBinary_21825() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryFormat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ProgramBinary(_program,_binaryFormat,_binary,_length); -} -static unsafe void Test_ProgramBinary_21826() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryFormat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ProgramBinary(_program,_binaryFormat,_binary,_length); -} -static unsafe void Test_ProgramBinary_21827() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryFormat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ProgramBinary(_program,_binaryFormat,_binary,_length); -} -static unsafe void Test_ProgramBinary_21828() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryFormat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ProgramBinary(_program,_binaryFormat,_binary,_length); -} -static unsafe void Test_ProgramBinary_21829() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryFormat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ProgramBinary(_program,_binaryFormat,ref _binary,_length); -} -static unsafe void Test_ProgramBinary_21830() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryFormat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ProgramBinary(_program,_binaryFormat,_binary,_length); -} -static unsafe void Test_ProgramBinary_21831() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryFormat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ProgramBinary(_program,_binaryFormat,_binary,_length); -} -static unsafe void Test_ProgramBinary_21832() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryFormat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ProgramBinary(_program,_binaryFormat,_binary,_length); -} -static unsafe void Test_ProgramBinary_21833() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryFormat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ProgramBinary(_program,_binaryFormat,_binary,_length); -} -static unsafe void Test_ProgramBinary_21834() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryFormat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ProgramBinary(_program,_binaryFormat,ref _binary,_length); -} -static unsafe void Test_ProgramParameter_21835() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb _pname = default(OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ProgramParameter(_program,_pname,_value); -} -static unsafe void Test_ProgramParameter_21836() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ProgramParameterName _pname = default(OpenTK.Graphics.OpenGL.ProgramParameterName); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ProgramParameter(_program,_pname,_value); -} -static unsafe void Test_ProgramParameter_21837() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.Version32 _pname = default(OpenTK.Graphics.OpenGL.Version32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ProgramParameter(_program,_pname,_value); -} -static unsafe void Test_ProgramParameter_21838() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb _pname = default(OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ProgramParameter(_program,_pname,_value); -} -static unsafe void Test_ProgramParameter_21839() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ProgramParameterName _pname = default(OpenTK.Graphics.OpenGL.ProgramParameterName); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ProgramParameter(_program,_pname,_value); -} -static unsafe void Test_ProgramParameter_21840() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.Version32 _pname = default(OpenTK.Graphics.OpenGL.Version32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ProgramParameter(_program,_pname,_value); -} -static unsafe void Test_ProgramUniform1_21841() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Double _v0 = default(System.Double); - OpenTK.Graphics.OpenGL.GL.ProgramUniform1(_program,_location,_v0); -} -static unsafe void Test_ProgramUniform1_21842() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Double _v0 = default(System.Double); - OpenTK.Graphics.OpenGL.GL.ProgramUniform1(_program,_location,_v0); -} -static unsafe void Test_ProgramUniform1_21843() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.ProgramUniform1(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform1_21844() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_21845() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.ProgramUniform1(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform1_21846() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_21847() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ProgramUniform1(_program,_location,_v0); -} -static unsafe void Test_ProgramUniform1_21848() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ProgramUniform1(_program,_location,_v0); -} -static unsafe void Test_ProgramUniform1_21849() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ProgramUniform1(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform1_21850() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_21851() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ProgramUniform1(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform1_21852() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_21853() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ProgramUniform1(_program,_location,_v0); -} -static unsafe void Test_ProgramUniform1_21854() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ProgramUniform1(_program,_location,_v0); -} -static unsafe void Test_ProgramUniform1_21855() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ProgramUniform1(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform1_21856() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_21857() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ProgramUniform1(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform1_21858() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_21859() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt32 _v0 = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.ProgramUniform1(_program,_location,_v0); -} -static unsafe void Test_ProgramUniform1_21860() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.ProgramUniform1(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform1_21861() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_21862() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Double _v0 = default(System.Double); - System.Double _v1 = default(System.Double); - OpenTK.Graphics.OpenGL.GL.ProgramUniform2(_program,_location,_v0,_v1); -} -static unsafe void Test_ProgramUniform2_21863() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Double _v0 = default(System.Double); - System.Double _v1 = default(System.Double); - OpenTK.Graphics.OpenGL.GL.ProgramUniform2(_program,_location,_v0,_v1); -} -static unsafe void Test_ProgramUniform2_21864() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_21865() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.ProgramUniform2(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform2_21866() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_21867() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_21868() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.ProgramUniform2(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform2_21869() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_21870() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ProgramUniform2(_program,_location,_v0,_v1); -} -static unsafe void Test_ProgramUniform2_21871() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ProgramUniform2(_program,_location,_v0,_v1); -} -static unsafe void Test_ProgramUniform2_21872() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_21873() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ProgramUniform2(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform2_21874() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_21875() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_21876() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ProgramUniform2(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform2_21877() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_21878() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ProgramUniform2(_program,_location,_v0,_v1); -} -static unsafe void Test_ProgramUniform2_21879() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ProgramUniform2(_program,_location,_v0,_v1); -} -static unsafe void Test_ProgramUniform2_21880() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_21881() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_21882() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_21883() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_21884() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt32 _v0 = default(System.UInt32); - System.UInt32 _v1 = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.ProgramUniform2(_program,_location,_v0,_v1); -} -static unsafe void Test_ProgramUniform2_21885() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _value = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_21886() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.ProgramUniform2(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform2_21887() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_21888() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Double _v0 = default(System.Double); - System.Double _v1 = default(System.Double); - System.Double _v2 = default(System.Double); - OpenTK.Graphics.OpenGL.GL.ProgramUniform3(_program,_location,_v0,_v1,_v2); -} -static unsafe void Test_ProgramUniform3_21889() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Double _v0 = default(System.Double); - System.Double _v1 = default(System.Double); - System.Double _v2 = default(System.Double); - OpenTK.Graphics.OpenGL.GL.ProgramUniform3(_program,_location,_v0,_v1,_v2); -} -static unsafe void Test_ProgramUniform3_21890() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_21891() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.ProgramUniform3(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform3_21892() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_21893() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_21894() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.ProgramUniform3(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform3_21895() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_21896() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ProgramUniform3(_program,_location,_v0,_v1,_v2); -} -static unsafe void Test_ProgramUniform3_21897() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ProgramUniform3(_program,_location,_v0,_v1,_v2); -} -static unsafe void Test_ProgramUniform3_21898() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_21899() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ProgramUniform3(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform3_21900() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_21901() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_21902() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ProgramUniform3(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform3_21903() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_21904() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - System.Int32 _v2 = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ProgramUniform3(_program,_location,_v0,_v1,_v2); -} -static unsafe void Test_ProgramUniform3_21905() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - System.Int32 _v2 = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ProgramUniform3(_program,_location,_v0,_v1,_v2); -} -static unsafe void Test_ProgramUniform3_21906() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_21907() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ProgramUniform3(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform3_21908() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_21909() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_21910() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ProgramUniform3(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform3_21911() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_21912() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt32 _v0 = default(System.UInt32); - System.UInt32 _v1 = default(System.UInt32); - System.UInt32 _v2 = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.ProgramUniform3(_program,_location,_v0,_v1,_v2); -} -static unsafe void Test_ProgramUniform3_21913() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _value = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_21914() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.ProgramUniform3(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform3_21915() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_21916() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Double _v0 = default(System.Double); - System.Double _v1 = default(System.Double); - System.Double _v2 = default(System.Double); - System.Double _v3 = default(System.Double); - OpenTK.Graphics.OpenGL.GL.ProgramUniform4(_program,_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_ProgramUniform4_21917() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Double _v0 = default(System.Double); - System.Double _v1 = default(System.Double); - System.Double _v2 = default(System.Double); - System.Double _v3 = default(System.Double); - OpenTK.Graphics.OpenGL.GL.ProgramUniform4(_program,_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_ProgramUniform4_21918() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_21919() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.ProgramUniform4(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform4_21920() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_21921() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_21922() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.ProgramUniform4(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform4_21923() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_21924() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - System.Single _v3 = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ProgramUniform4(_program,_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_ProgramUniform4_21925() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - System.Single _v3 = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ProgramUniform4(_program,_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_ProgramUniform4_21926() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_21927() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ProgramUniform4(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform4_21928() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_21929() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_21930() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ProgramUniform4(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform4_21931() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_21932() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - System.Int32 _v2 = default(System.Int32); - System.Int32 _v3 = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ProgramUniform4(_program,_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_ProgramUniform4_21933() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - System.Int32 _v2 = default(System.Int32); - System.Int32 _v3 = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ProgramUniform4(_program,_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_ProgramUniform4_21934() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_21935() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ProgramUniform4(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform4_21936() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_21937() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_21938() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ProgramUniform4(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform4_21939() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_21940() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt32 _v0 = default(System.UInt32); - System.UInt32 _v1 = default(System.UInt32); - System.UInt32 _v2 = default(System.UInt32); - System.UInt32 _v3 = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.ProgramUniform4(_program,_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_ProgramUniform4_21941() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _value = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_21942() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.ProgramUniform4(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform4_21943() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniformMatrix2_21944() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2_21945() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2_21946() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2_21947() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2_21948() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2_21949() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2_21950() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2_21951() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2_21952() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2_21953() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2_21954() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2_21955() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x3_21956() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x3_21957() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2x3_21958() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x3_21959() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x3_21960() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2x3_21961() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x3_21962() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x3_21963() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2x3_21964() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x3_21965() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x3_21966() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2x3_21967() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x4_21968() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x4_21969() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2x4_21970() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x4_21971() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x4_21972() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2x4_21973() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x4_21974() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x4_21975() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2x4_21976() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x4_21977() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x4_21978() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2x4_21979() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3_21980() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3_21981() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3_21982() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3_21983() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3_21984() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3_21985() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3_21986() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3_21987() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3_21988() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3_21989() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3_21990() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3_21991() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x2_21992() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x2_21993() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3x2_21994() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x2_21995() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x2_21996() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3x2_21997() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x2_21998() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x2_21999() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3x2_22000() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x2_22001() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x2_22002() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3x2_22003() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x4_22004() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x4_22005() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3x4_22006() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x4_22007() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x4_22008() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3x4_22009() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x4_22010() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x4_22011() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3x4_22012() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x4_22013() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x4_22014() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3x4_22015() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4_22016() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4_22017() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4_22018() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4_22019() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4_22020() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4_22021() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4_22022() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4_22023() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4_22024() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4_22025() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4_22026() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4_22027() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x2_22028() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x2_22029() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4x2_22030() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x2_22031() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x2_22032() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4x2_22033() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x2_22034() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x2_22035() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4x2_22036() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x2_22037() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x2_22038() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4x2_22039() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x3_22040() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x3_22041() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4x3_22042() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x3_22043() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x3_22044() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4x3_22045() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x3_22046() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x3_22047() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4x3_22048() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x3_22049() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x3_22050() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4x3_22051() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProvokingVertex_22052() { - OpenTK.Graphics.OpenGL.ProvokingVertexMode _mode = default(OpenTK.Graphics.OpenGL.ProvokingVertexMode); - OpenTK.Graphics.OpenGL.GL.ProvokingVertex(_mode); -} -static unsafe void Test_PushAttrib_22053() { - OpenTK.Graphics.OpenGL.AttribMask _mask = default(OpenTK.Graphics.OpenGL.AttribMask); - OpenTK.Graphics.OpenGL.GL.PushAttrib(_mask); -} -static unsafe void Test_PushClientAttrib_22054() { - OpenTK.Graphics.OpenGL.ClientAttribMask _mask = default(OpenTK.Graphics.OpenGL.ClientAttribMask); - OpenTK.Graphics.OpenGL.GL.PushClientAttrib(_mask); -} -static unsafe void Test_PushDebugGroup_22055() { - OpenTK.Graphics.OpenGL.DebugSourceExternal _source = default(OpenTK.Graphics.OpenGL.DebugSourceExternal); - System.Int32 _id = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.String _message = default(System.String); - OpenTK.Graphics.OpenGL.GL.PushDebugGroup(_source,_id,_length,_message); -} -static unsafe void Test_PushDebugGroup_22056() { - OpenTK.Graphics.OpenGL.DebugSourceExternal _source = default(OpenTK.Graphics.OpenGL.DebugSourceExternal); - System.UInt32 _id = default(System.UInt32); - System.Int32 _length = default(System.Int32); - System.String _message = default(System.String); - OpenTK.Graphics.OpenGL.GL.PushDebugGroup(_source,_id,_length,_message); -} -static unsafe void Test_PushMatrix_22057() { - OpenTK.Graphics.OpenGL.GL.PushMatrix(); -} -static unsafe void Test_PushName_22058() { - System.Int32 _name = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.PushName(_name); -} -static unsafe void Test_PushName_22059() { - System.UInt32 _name = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.PushName(_name); -} -static unsafe void Test_QueryCounter_22060() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.QueryCounterTarget _target = default(OpenTK.Graphics.OpenGL.QueryCounterTarget); - OpenTK.Graphics.OpenGL.GL.QueryCounter(_id,_target); -} -static unsafe void Test_QueryCounter_22061() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.QueryCounterTarget _target = default(OpenTK.Graphics.OpenGL.QueryCounterTarget); - OpenTK.Graphics.OpenGL.GL.QueryCounter(_id,_target); -} -static unsafe void Test_RasterPos2_22062() { - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - OpenTK.Graphics.OpenGL.GL.RasterPos2(_x,_y); -} -static unsafe void Test_RasterPos2_22063() { - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.RasterPos2(_v); -} -static unsafe void Test_RasterPos2_22064() { - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.RasterPos2(ref _v); -} -static unsafe void Test_RasterPos2_22065() { - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.RasterPos2(_v); -} -static unsafe void Test_RasterPos2_22066() { - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - OpenTK.Graphics.OpenGL.GL.RasterPos2(_x,_y); -} -static unsafe void Test_RasterPos2_22067() { - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.RasterPos2(_v); -} -static unsafe void Test_RasterPos2_22068() { - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.RasterPos2(ref _v); -} -static unsafe void Test_RasterPos2_22069() { - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.RasterPos2(_v); -} -static unsafe void Test_RasterPos2_22070() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.RasterPos2(_x,_y); -} -static unsafe void Test_RasterPos2_22071() { - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.RasterPos2(_v); -} -static unsafe void Test_RasterPos2_22072() { - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.RasterPos2(ref _v); -} -static unsafe void Test_RasterPos2_22073() { - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.RasterPos2(_v); -} -static unsafe void Test_RasterPos2_22074() { - System.Int16 _x = default(System.Int16); - System.Int16 _y = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.RasterPos2(_x,_y); -} -static unsafe void Test_RasterPos2_22075() { - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.RasterPos2(_v); -} -static unsafe void Test_RasterPos2_22076() { - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.RasterPos2(ref _v); -} -static unsafe void Test_RasterPos2_22077() { - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.RasterPos2(_v); -} -static unsafe void Test_RasterPos3_22078() { - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - OpenTK.Graphics.OpenGL.GL.RasterPos3(_x,_y,_z); -} -static unsafe void Test_RasterPos3_22079() { - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.RasterPos3(_v); -} -static unsafe void Test_RasterPos3_22080() { - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.RasterPos3(ref _v); -} -static unsafe void Test_RasterPos3_22081() { - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.RasterPos3(_v); -} -static unsafe void Test_RasterPos3_22082() { - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.RasterPos3(_x,_y,_z); -} -static unsafe void Test_RasterPos3_22083() { - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.RasterPos3(_v); -} -static unsafe void Test_RasterPos3_22084() { - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.RasterPos3(ref _v); -} -static unsafe void Test_RasterPos3_22085() { - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.RasterPos3(_v); -} -static unsafe void Test_RasterPos3_22086() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.RasterPos3(_x,_y,_z); -} -static unsafe void Test_RasterPos3_22087() { - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.RasterPos3(_v); -} -static unsafe void Test_RasterPos3_22088() { - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.RasterPos3(ref _v); -} -static unsafe void Test_RasterPos3_22089() { - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.RasterPos3(_v); -} -static unsafe void Test_RasterPos3_22090() { - System.Int16 _x = default(System.Int16); - System.Int16 _y = default(System.Int16); - System.Int16 _z = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.RasterPos3(_x,_y,_z); -} -static unsafe void Test_RasterPos3_22091() { - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.RasterPos3(_v); -} -static unsafe void Test_RasterPos3_22092() { - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.RasterPos3(ref _v); -} -static unsafe void Test_RasterPos3_22093() { - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.RasterPos3(_v); -} -static unsafe void Test_RasterPos4_22094() { - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - System.Double _w = default(System.Double); - OpenTK.Graphics.OpenGL.GL.RasterPos4(_x,_y,_z,_w); -} -static unsafe void Test_RasterPos4_22095() { - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.RasterPos4(_v); -} -static unsafe void Test_RasterPos4_22096() { - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.RasterPos4(ref _v); -} -static unsafe void Test_RasterPos4_22097() { - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.RasterPos4(_v); -} -static unsafe void Test_RasterPos4_22098() { - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - System.Single _w = default(System.Single); - OpenTK.Graphics.OpenGL.GL.RasterPos4(_x,_y,_z,_w); -} -static unsafe void Test_RasterPos4_22099() { - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.RasterPos4(_v); -} -static unsafe void Test_RasterPos4_22100() { - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.RasterPos4(ref _v); -} -static unsafe void Test_RasterPos4_22101() { - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.RasterPos4(_v); -} -static unsafe void Test_RasterPos4_22102() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - System.Int32 _w = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.RasterPos4(_x,_y,_z,_w); -} -static unsafe void Test_RasterPos4_22103() { - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.RasterPos4(_v); -} -static unsafe void Test_RasterPos4_22104() { - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.RasterPos4(ref _v); -} -static unsafe void Test_RasterPos4_22105() { - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.RasterPos4(_v); -} -static unsafe void Test_RasterPos4_22106() { - System.Int16 _x = default(System.Int16); - System.Int16 _y = default(System.Int16); - System.Int16 _z = default(System.Int16); - System.Int16 _w = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.RasterPos4(_x,_y,_z,_w); -} -static unsafe void Test_RasterPos4_22107() { - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.RasterPos4(_v); -} -static unsafe void Test_RasterPos4_22108() { - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.RasterPos4(ref _v); -} -static unsafe void Test_RasterPos4_22109() { - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.RasterPos4(_v); -} -static unsafe void Test_ReadBuffer_22110() { - OpenTK.Graphics.OpenGL.ReadBufferMode _mode = default(OpenTK.Graphics.OpenGL.ReadBufferMode); - OpenTK.Graphics.OpenGL.GL.ReadBuffer(_mode); -} -static unsafe void Test_ReadPixels_22111() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.ReadPixels(_x,_y,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_ReadPixels_22112() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.ReadPixels(_x,_y,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_ReadPixels_22113() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.ReadPixels(_x,_y,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_ReadPixels_22114() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.ReadPixels(_x,_y,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_ReadPixels_22115() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.ReadPixels(_x,_y,_width,_height,_format,_type,ref _pixels); -} -static unsafe void Test_Rect_22116() { - System.Double _x1 = default(System.Double); - System.Double _y1 = default(System.Double); - System.Double _x2 = default(System.Double); - System.Double _y2 = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Rect(_x1,_y1,_x2,_y2); -} -static unsafe void Test_Rect_22117() { - System.Double[] _v1 = default(System.Double[]); - System.Double[] _v2 = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Rect(_v1,_v2); -} -static unsafe void Test_Rect_22118() { - System.Double _v1 = default(System.Double); - System.Double _v2 = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Rect(ref _v1,ref _v2); -} -static unsafe void Test_Rect_22119() { - System.Double* _v1 = default(System.Double*); - System.Double* _v2 = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Rect(_v1,_v2); -} -static unsafe void Test_Rect_22120() { - System.Single _x1 = default(System.Single); - System.Single _y1 = default(System.Single); - System.Single _x2 = default(System.Single); - System.Single _y2 = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Rect(_x1,_y1,_x2,_y2); -} -static unsafe void Test_Rect_22121() { - System.Single[] _v1 = default(System.Single[]); - System.Single[] _v2 = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Rect(_v1,_v2); -} -static unsafe void Test_Rect_22122() { - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Rect(ref _v1,ref _v2); -} -static unsafe void Test_Rect_22123() { - System.Single* _v1 = default(System.Single*); - System.Single* _v2 = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Rect(_v1,_v2); -} -static unsafe void Test_Rect_22124() { - System.Int32 _x1 = default(System.Int32); - System.Int32 _y1 = default(System.Int32); - System.Int32 _x2 = default(System.Int32); - System.Int32 _y2 = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Rect(_x1,_y1,_x2,_y2); -} -static unsafe void Test_Rect_22125() { - System.Int32[] _v1 = default(System.Int32[]); - System.Int32[] _v2 = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Rect(_v1,_v2); -} -static unsafe void Test_Rect_22126() { - System.Int32 _v1 = default(System.Int32); - System.Int32 _v2 = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Rect(ref _v1,ref _v2); -} -static unsafe void Test_Rect_22127() { - System.Int32* _v1 = default(System.Int32*); - System.Int32* _v2 = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Rect(_v1,_v2); -} -static unsafe void Test_Rects_22128() { - System.Int16 _x1 = default(System.Int16); - System.Int16 _y1 = default(System.Int16); - System.Int16 _x2 = default(System.Int16); - System.Int16 _y2 = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Rects(_x1,_y1,_x2,_y2); -} -static unsafe void Test_Rect_22129() { - System.Int16[] _v1 = default(System.Int16[]); - System.Int16[] _v2 = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.Rect(_v1,_v2); -} -static unsafe void Test_Rect_22130() { - System.Int16 _v1 = default(System.Int16); - System.Int16 _v2 = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Rect(ref _v1,ref _v2); -} -static unsafe void Test_Rect_22131() { - System.Int16* _v1 = default(System.Int16*); - System.Int16* _v2 = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Rect(_v1,_v2); -} -static unsafe void Test_ReleaseShaderCompiler_22132() { - OpenTK.Graphics.OpenGL.GL.ReleaseShaderCompiler(); -} -static unsafe void Test_RenderbufferStorage_22133() { - OpenTK.Graphics.OpenGL.RenderbufferTarget _target = default(OpenTK.Graphics.OpenGL.RenderbufferTarget); - OpenTK.Graphics.OpenGL.RenderbufferStorage _internalformat = default(OpenTK.Graphics.OpenGL.RenderbufferStorage); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.RenderbufferStorage(_target,_internalformat,_width,_height); -} -static unsafe void Test_RenderbufferStorageMultisample_22134() { - OpenTK.Graphics.OpenGL.RenderbufferTarget _target = default(OpenTK.Graphics.OpenGL.RenderbufferTarget); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.OpenGL.RenderbufferStorage _internalformat = default(OpenTK.Graphics.OpenGL.RenderbufferStorage); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.RenderbufferStorageMultisample(_target,_samples,_internalformat,_width,_height); -} -static unsafe void Test_RenderMode_22135() { - OpenTK.Graphics.OpenGL.RenderingMode _mode = default(OpenTK.Graphics.OpenGL.RenderingMode); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.RenderMode(_mode); -} -static unsafe void Test_ResetHistogram_22136() { - OpenTK.Graphics.OpenGL.HistogramTarget _target = default(OpenTK.Graphics.OpenGL.HistogramTarget); - OpenTK.Graphics.OpenGL.GL.ResetHistogram(_target); -} -static unsafe void Test_ResetMinmax_22137() { - OpenTK.Graphics.OpenGL.MinmaxTarget _target = default(OpenTK.Graphics.OpenGL.MinmaxTarget); - OpenTK.Graphics.OpenGL.GL.ResetMinmax(_target); -} -static unsafe void Test_ResumeTransformFeedback_22138() { - OpenTK.Graphics.OpenGL.GL.ResumeTransformFeedback(); -} -static unsafe void Test_Rotate_22139() { - System.Double _angle = default(System.Double); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Rotate(_angle,_x,_y,_z); -} -static unsafe void Test_Rotate_22140() { - System.Single _angle = default(System.Single); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Rotate(_angle,_x,_y,_z); -} -static unsafe void Test_SampleCoverage_22141() { - System.Single _value = default(System.Single); - System.Boolean _invert = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.SampleCoverage(_value,_invert); -} -static unsafe void Test_SampleMask_22142() { - System.Int32 _maskNumber = default(System.Int32); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.SampleMask(_maskNumber,_mask); -} -static unsafe void Test_SampleMask_22143() { - System.UInt32 _maskNumber = default(System.UInt32); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.SampleMask(_maskNumber,_mask); -} -static unsafe void Test_SamplerParameter_22144() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL.SamplerParameter _pname = default(OpenTK.Graphics.OpenGL.SamplerParameter); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_22145() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL.SamplerParameterName); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_22146() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.SamplerParameter _pname = default(OpenTK.Graphics.OpenGL.SamplerParameter); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_22147() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL.SamplerParameterName); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_22148() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL.SamplerParameter _pname = default(OpenTK.Graphics.OpenGL.SamplerParameter); - System.Single[] _param = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_22149() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL.SamplerParameter _pname = default(OpenTK.Graphics.OpenGL.SamplerParameter); - System.Single* _param = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_22150() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL.SamplerParameterName); - System.Single[] _param = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_22151() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL.SamplerParameterName); - System.Single* _param = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_22152() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.SamplerParameter _pname = default(OpenTK.Graphics.OpenGL.SamplerParameter); - System.Single[] _param = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_22153() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.SamplerParameter _pname = default(OpenTK.Graphics.OpenGL.SamplerParameter); - System.Single* _param = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_22154() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL.SamplerParameterName); - System.Single[] _param = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_22155() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL.SamplerParameterName); - System.Single* _param = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_22156() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL.SamplerParameter _pname = default(OpenTK.Graphics.OpenGL.SamplerParameter); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_22157() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL.SamplerParameterName); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_22158() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.SamplerParameter _pname = default(OpenTK.Graphics.OpenGL.SamplerParameter); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_22159() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL.SamplerParameterName); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameterI_22160() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbSamplerObjects _pname = default(OpenTK.Graphics.OpenGL.ArbSamplerObjects); - System.Int32[] _param = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.SamplerParameterI(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameterI_22161() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbSamplerObjects _pname = default(OpenTK.Graphics.OpenGL.ArbSamplerObjects); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.SamplerParameterI(_sampler,_pname,ref _param); -} -static unsafe void Test_SamplerParameterI_22162() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbSamplerObjects _pname = default(OpenTK.Graphics.OpenGL.ArbSamplerObjects); - System.Int32* _param = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.SamplerParameterI(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameterI_22163() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL.SamplerParameterName); - System.Int32[] _param = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.SamplerParameterI(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameterI_22164() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL.SamplerParameterName); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.SamplerParameterI(_sampler,_pname,ref _param); -} -static unsafe void Test_SamplerParameterI_22165() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL.SamplerParameterName); - System.Int32* _param = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.SamplerParameterI(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameterI_22166() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.ArbSamplerObjects _pname = default(OpenTK.Graphics.OpenGL.ArbSamplerObjects); - System.Int32[] _param = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.SamplerParameterI(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameterI_22167() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.ArbSamplerObjects _pname = default(OpenTK.Graphics.OpenGL.ArbSamplerObjects); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.SamplerParameterI(_sampler,_pname,ref _param); -} -static unsafe void Test_SamplerParameterI_22168() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.ArbSamplerObjects _pname = default(OpenTK.Graphics.OpenGL.ArbSamplerObjects); - System.Int32* _param = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.SamplerParameterI(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameterI_22169() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL.SamplerParameterName); - System.Int32[] _param = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.SamplerParameterI(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameterI_22170() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL.SamplerParameterName); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.SamplerParameterI(_sampler,_pname,ref _param); -} -static unsafe void Test_SamplerParameterI_22171() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL.SamplerParameterName); - System.Int32* _param = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.SamplerParameterI(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameterI_22172() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.ArbSamplerObjects _pname = default(OpenTK.Graphics.OpenGL.ArbSamplerObjects); - System.UInt32[] _param = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.SamplerParameterI(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameterI_22173() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.ArbSamplerObjects _pname = default(OpenTK.Graphics.OpenGL.ArbSamplerObjects); - System.UInt32 _param = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.SamplerParameterI(_sampler,_pname,ref _param); -} -static unsafe void Test_SamplerParameterI_22174() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.ArbSamplerObjects _pname = default(OpenTK.Graphics.OpenGL.ArbSamplerObjects); - System.UInt32* _param = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.SamplerParameterI(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameterI_22175() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL.SamplerParameterName); - System.UInt32[] _param = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.SamplerParameterI(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameterI_22176() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL.SamplerParameterName); - System.UInt32 _param = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.SamplerParameterI(_sampler,_pname,ref _param); -} -static unsafe void Test_SamplerParameterI_22177() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL.SamplerParameterName); - System.UInt32* _param = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.SamplerParameterI(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_22178() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL.SamplerParameter _pname = default(OpenTK.Graphics.OpenGL.SamplerParameter); - System.Int32[] _param = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_22179() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL.SamplerParameter _pname = default(OpenTK.Graphics.OpenGL.SamplerParameter); - System.Int32* _param = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_22180() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL.SamplerParameterName); - System.Int32[] _param = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_22181() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL.SamplerParameterName); - System.Int32* _param = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_22182() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.SamplerParameter _pname = default(OpenTK.Graphics.OpenGL.SamplerParameter); - System.Int32[] _param = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_22183() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.SamplerParameter _pname = default(OpenTK.Graphics.OpenGL.SamplerParameter); - System.Int32* _param = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_22184() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL.SamplerParameterName); - System.Int32[] _param = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_22185() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL.SamplerParameterName); - System.Int32* _param = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_Scale_22186() { - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Scale(_x,_y,_z); -} -static unsafe void Test_Scale_22187() { - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Scale(_x,_y,_z); -} -static unsafe void Test_Scissor_22188() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Scissor(_x,_y,_width,_height); -} -static unsafe void Test_ScissorArray_22189() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.ScissorArray(_first,_count,_v); -} -static unsafe void Test_ScissorArray_22190() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ScissorArray(_first,_count,ref _v); -} -static unsafe void Test_ScissorArray_22191() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.ScissorArray(_first,_count,_v); -} -static unsafe void Test_ScissorArray_22192() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.ScissorArray(_first,_count,_v); -} -static unsafe void Test_ScissorArray_22193() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ScissorArray(_first,_count,ref _v); -} -static unsafe void Test_ScissorArray_22194() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.ScissorArray(_first,_count,_v); -} -static unsafe void Test_ScissorIndexed_22195() { - System.Int32 _index = default(System.Int32); - System.Int32 _left = default(System.Int32); - System.Int32 _bottom = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ScissorIndexed(_index,_left,_bottom,_width,_height); -} -static unsafe void Test_ScissorIndexed_22196() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _left = default(System.Int32); - System.Int32 _bottom = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ScissorIndexed(_index,_left,_bottom,_width,_height); -} -static unsafe void Test_ScissorIndexed_22197() { - System.Int32 _index = default(System.Int32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.ScissorIndexed(_index,_v); -} -static unsafe void Test_ScissorIndexed_22198() { - System.Int32 _index = default(System.Int32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ScissorIndexed(_index,ref _v); -} -static unsafe void Test_ScissorIndexed_22199() { - System.Int32 _index = default(System.Int32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.ScissorIndexed(_index,_v); -} -static unsafe void Test_ScissorIndexed_22200() { - System.UInt32 _index = default(System.UInt32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.ScissorIndexed(_index,_v); -} -static unsafe void Test_ScissorIndexed_22201() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ScissorIndexed(_index,ref _v); -} -static unsafe void Test_ScissorIndexed_22202() { - System.UInt32 _index = default(System.UInt32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.ScissorIndexed(_index,_v); -} -static unsafe void Test_SecondaryColor3_22203() { - System.SByte _red = default(System.SByte); - System.SByte _green = default(System.SByte); - System.SByte _blue = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.SecondaryColor3(_red,_green,_blue); -} -static unsafe void Test_SecondaryColor3_22204() { - System.SByte[] _v = default(System.SByte[]); - OpenTK.Graphics.OpenGL.GL.SecondaryColor3(_v); -} -static unsafe void Test_SecondaryColor3_22205() { - System.SByte _v = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.SecondaryColor3(ref _v); -} -static unsafe void Test_SecondaryColor3_22206() { - System.SByte* _v = default(System.SByte*); - OpenTK.Graphics.OpenGL.GL.SecondaryColor3(_v); -} -static unsafe void Test_SecondaryColor3_22207() { - System.Double _red = default(System.Double); - System.Double _green = default(System.Double); - System.Double _blue = default(System.Double); - OpenTK.Graphics.OpenGL.GL.SecondaryColor3(_red,_green,_blue); -} -static unsafe void Test_SecondaryColor3_22208() { - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.SecondaryColor3(_v); -} -static unsafe void Test_SecondaryColor3_22209() { - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.SecondaryColor3(ref _v); -} -static unsafe void Test_SecondaryColor3_22210() { - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.SecondaryColor3(_v); -} -static unsafe void Test_SecondaryColor3_22211() { - System.Single _red = default(System.Single); - System.Single _green = default(System.Single); - System.Single _blue = default(System.Single); - OpenTK.Graphics.OpenGL.GL.SecondaryColor3(_red,_green,_blue); -} -static unsafe void Test_SecondaryColor3_22212() { - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.SecondaryColor3(_v); -} -static unsafe void Test_SecondaryColor3_22213() { - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.SecondaryColor3(ref _v); -} -static unsafe void Test_SecondaryColor3_22214() { - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.SecondaryColor3(_v); -} -static unsafe void Test_SecondaryColor3_22215() { - System.Int32 _red = default(System.Int32); - System.Int32 _green = default(System.Int32); - System.Int32 _blue = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.SecondaryColor3(_red,_green,_blue); -} -static unsafe void Test_SecondaryColor3_22216() { - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.SecondaryColor3(_v); -} -static unsafe void Test_SecondaryColor3_22217() { - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.SecondaryColor3(ref _v); -} -static unsafe void Test_SecondaryColor3_22218() { - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.SecondaryColor3(_v); -} -static unsafe void Test_SecondaryColor3_22219() { - System.Int16 _red = default(System.Int16); - System.Int16 _green = default(System.Int16); - System.Int16 _blue = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.SecondaryColor3(_red,_green,_blue); -} -static unsafe void Test_SecondaryColor3_22220() { - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.SecondaryColor3(_v); -} -static unsafe void Test_SecondaryColor3_22221() { - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.SecondaryColor3(ref _v); -} -static unsafe void Test_SecondaryColor3_22222() { - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.SecondaryColor3(_v); -} -static unsafe void Test_SecondaryColor3_22223() { - System.Byte _red = default(System.Byte); - System.Byte _green = default(System.Byte); - System.Byte _blue = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.SecondaryColor3(_red,_green,_blue); -} -static unsafe void Test_SecondaryColor3_22224() { - System.Byte[] _v = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.SecondaryColor3(_v); -} -static unsafe void Test_SecondaryColor3_22225() { - System.Byte _v = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.SecondaryColor3(ref _v); -} -static unsafe void Test_SecondaryColor3_22226() { - System.Byte* _v = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.SecondaryColor3(_v); -} -static unsafe void Test_SecondaryColor3_22227() { - System.UInt32 _red = default(System.UInt32); - System.UInt32 _green = default(System.UInt32); - System.UInt32 _blue = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.SecondaryColor3(_red,_green,_blue); -} -static unsafe void Test_SecondaryColor3_22228() { - System.UInt32[] _v = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.SecondaryColor3(_v); -} -static unsafe void Test_SecondaryColor3_22229() { - System.UInt32 _v = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.SecondaryColor3(ref _v); -} -static unsafe void Test_SecondaryColor3_22230() { - System.UInt32* _v = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.SecondaryColor3(_v); -} -static unsafe void Test_SecondaryColor3_22231() { - System.UInt16 _red = default(System.UInt16); - System.UInt16 _green = default(System.UInt16); - System.UInt16 _blue = default(System.UInt16); - OpenTK.Graphics.OpenGL.GL.SecondaryColor3(_red,_green,_blue); -} -static unsafe void Test_SecondaryColor3_22232() { - System.UInt16[] _v = default(System.UInt16[]); - OpenTK.Graphics.OpenGL.GL.SecondaryColor3(_v); -} -static unsafe void Test_SecondaryColor3_22233() { - System.UInt16 _v = default(System.UInt16); - OpenTK.Graphics.OpenGL.GL.SecondaryColor3(ref _v); -} -static unsafe void Test_SecondaryColor3_22234() { - System.UInt16* _v = default(System.UInt16*); - OpenTK.Graphics.OpenGL.GL.SecondaryColor3(_v); -} -static unsafe void Test_SecondaryColorP3_22235() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Int32 _color = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.SecondaryColorP3(_type,_color); -} -static unsafe void Test_SecondaryColorP3_22236() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.UInt32 _color = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.SecondaryColorP3(_type,_color); -} -static unsafe void Test_SecondaryColorP3_22237() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Int32* _color = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.SecondaryColorP3(_type,_color); -} -static unsafe void Test_SecondaryColorP3_22238() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.UInt32* _color = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.SecondaryColorP3(_type,_color); -} -static unsafe void Test_SecondaryColorPointer_22239() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ColorPointerType _type = default(OpenTK.Graphics.OpenGL.ColorPointerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.SecondaryColorPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_SecondaryColorPointer_22240() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ColorPointerType _type = default(OpenTK.Graphics.OpenGL.ColorPointerType); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.SecondaryColorPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_SecondaryColorPointer_22241() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ColorPointerType _type = default(OpenTK.Graphics.OpenGL.ColorPointerType); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.SecondaryColorPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_SecondaryColorPointer_22242() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ColorPointerType _type = default(OpenTK.Graphics.OpenGL.ColorPointerType); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.SecondaryColorPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_SecondaryColorPointer_22243() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ColorPointerType _type = default(OpenTK.Graphics.OpenGL.ColorPointerType); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.SecondaryColorPointer(_size,_type,_stride,ref _pointer); -} -static unsafe void Test_SelectBuffer_22244() { - System.Int32 _size = default(System.Int32); - System.Int32[] _buffer = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.SelectBuffer(_size,_buffer); -} -static unsafe void Test_SelectBuffer_22245() { - System.Int32 _size = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.SelectBuffer(_size,out _buffer); -} -static unsafe void Test_SelectBuffer_22246() { - System.Int32 _size = default(System.Int32); - System.Int32* _buffer = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.SelectBuffer(_size,_buffer); -} -static unsafe void Test_SelectBuffer_22247() { - System.Int32 _size = default(System.Int32); - System.UInt32[] _buffer = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.SelectBuffer(_size,_buffer); -} -static unsafe void Test_SelectBuffer_22248() { - System.Int32 _size = default(System.Int32); - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.SelectBuffer(_size,out _buffer); -} -static unsafe void Test_SelectBuffer_22249() { - System.Int32 _size = default(System.Int32); - System.UInt32* _buffer = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.SelectBuffer(_size,_buffer); -} -static unsafe void Test_SeparableFilter2D_22250() { - OpenTK.Graphics.OpenGL.SeparableTarget _target = default(OpenTK.Graphics.OpenGL.SeparableTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _row = default(System.IntPtr); - System.IntPtr _column = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.SeparableFilter2D(_target,_internalformat,_width,_height,_format,_type,_row,_column); -} -static unsafe void Test_SeparableFilter2D_22251() { - OpenTK.Graphics.OpenGL.SeparableTarget _target = default(OpenTK.Graphics.OpenGL.SeparableTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _row = default(int[]); - int[] _column = default(int[]); - OpenTK.Graphics.OpenGL.GL.SeparableFilter2D(_target,_internalformat,_width,_height,_format,_type,_row,_column); -} -static unsafe void Test_SeparableFilter2D_22252() { - OpenTK.Graphics.OpenGL.SeparableTarget _target = default(OpenTK.Graphics.OpenGL.SeparableTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _row = default(int[,]); - int[,] _column = default(int[,]); - OpenTK.Graphics.OpenGL.GL.SeparableFilter2D(_target,_internalformat,_width,_height,_format,_type,_row,_column); -} -static unsafe void Test_SeparableFilter2D_22253() { - OpenTK.Graphics.OpenGL.SeparableTarget _target = default(OpenTK.Graphics.OpenGL.SeparableTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _row = default(int[,,]); - int[,,] _column = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.SeparableFilter2D(_target,_internalformat,_width,_height,_format,_type,_row,_column); -} -static unsafe void Test_SeparableFilter2D_22254() { - OpenTK.Graphics.OpenGL.SeparableTarget _target = default(OpenTK.Graphics.OpenGL.SeparableTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _row = default(int); - int _column = default(int); - OpenTK.Graphics.OpenGL.GL.SeparableFilter2D(_target,_internalformat,_width,_height,_format,_type,ref _row,ref _column); -} -static unsafe void Test_ShadeModel_22255() { - OpenTK.Graphics.OpenGL.ShadingModel _mode = default(OpenTK.Graphics.OpenGL.ShadingModel); - OpenTK.Graphics.OpenGL.GL.ShadeModel(_mode); -} -static unsafe void Test_ShaderBinary_22256() { - System.Int32 _count = default(System.Int32); - System.Int32[] _shaders = default(System.Int32[]); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_22257() { - System.Int32 _count = default(System.Int32); - System.Int32[] _shaders = default(System.Int32[]); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_22258() { - System.Int32 _count = default(System.Int32); - System.Int32[] _shaders = default(System.Int32[]); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_22259() { - System.Int32 _count = default(System.Int32); - System.Int32[] _shaders = default(System.Int32[]); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_22260() { - System.Int32 _count = default(System.Int32); - System.Int32[] _shaders = default(System.Int32[]); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ShaderBinary(_count,_shaders,_binaryformat,ref _binary,_length); -} -static unsafe void Test_ShaderBinary_22261() { - System.Int32 _count = default(System.Int32); - System.Int32 _shaders = default(System.Int32); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_22262() { - System.Int32 _count = default(System.Int32); - System.Int32 _shaders = default(System.Int32); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_22263() { - System.Int32 _count = default(System.Int32); - System.Int32 _shaders = default(System.Int32); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_22264() { - System.Int32 _count = default(System.Int32); - System.Int32 _shaders = default(System.Int32); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_22265() { - System.Int32 _count = default(System.Int32); - System.Int32 _shaders = default(System.Int32); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ShaderBinary(_count,ref _shaders,_binaryformat,ref _binary,_length); -} -static unsafe void Test_ShaderBinary_22266() { - System.Int32 _count = default(System.Int32); - System.Int32* _shaders = default(System.Int32*); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_22267() { - System.Int32 _count = default(System.Int32); - System.Int32* _shaders = default(System.Int32*); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_22268() { - System.Int32 _count = default(System.Int32); - System.Int32* _shaders = default(System.Int32*); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_22269() { - System.Int32 _count = default(System.Int32); - System.Int32* _shaders = default(System.Int32*); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_22270() { - System.Int32 _count = default(System.Int32); - System.Int32* _shaders = default(System.Int32*); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ShaderBinary(_count,_shaders,_binaryformat,ref _binary,_length); -} -static unsafe void Test_ShaderBinary_22271() { - System.Int32 _count = default(System.Int32); - System.UInt32[] _shaders = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_22272() { - System.Int32 _count = default(System.Int32); - System.UInt32[] _shaders = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_22273() { - System.Int32 _count = default(System.Int32); - System.UInt32[] _shaders = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_22274() { - System.Int32 _count = default(System.Int32); - System.UInt32[] _shaders = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_22275() { - System.Int32 _count = default(System.Int32); - System.UInt32[] _shaders = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ShaderBinary(_count,_shaders,_binaryformat,ref _binary,_length); -} -static unsafe void Test_ShaderBinary_22276() { - System.Int32 _count = default(System.Int32); - System.UInt32 _shaders = default(System.UInt32); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_22277() { - System.Int32 _count = default(System.Int32); - System.UInt32 _shaders = default(System.UInt32); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_22278() { - System.Int32 _count = default(System.Int32); - System.UInt32 _shaders = default(System.UInt32); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_22279() { - System.Int32 _count = default(System.Int32); - System.UInt32 _shaders = default(System.UInt32); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_22280() { - System.Int32 _count = default(System.Int32); - System.UInt32 _shaders = default(System.UInt32); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ShaderBinary(_count,ref _shaders,_binaryformat,ref _binary,_length); -} -static unsafe void Test_ShaderBinary_22281() { - System.Int32 _count = default(System.Int32); - System.UInt32* _shaders = default(System.UInt32*); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_22282() { - System.Int32 _count = default(System.Int32); - System.UInt32* _shaders = default(System.UInt32*); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_22283() { - System.Int32 _count = default(System.Int32); - System.UInt32* _shaders = default(System.UInt32*); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_22284() { - System.Int32 _count = default(System.Int32); - System.UInt32* _shaders = default(System.UInt32*); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_22285() { - System.Int32 _count = default(System.Int32); - System.UInt32* _shaders = default(System.UInt32*); - OpenTK.Graphics.OpenGL.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL.BinaryFormat); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ShaderBinary(_count,_shaders,_binaryformat,ref _binary,_length); -} -static unsafe void Test_ShaderSource_22286() { - System.Int32 _shader = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.String[] _string = default(System.String[]); - System.Int32[] _length = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.ShaderSource(_shader,_count,_string,_length); -} -static unsafe void Test_ShaderSource_22287() { - System.Int32 _shader = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.String[] _string = default(System.String[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ShaderSource(_shader,_count,_string,ref _length); -} -static unsafe void Test_ShaderSource_22288() { - System.Int32 _shader = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.String[] _string = default(System.String[]); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.ShaderSource(_shader,_count,_string,_length); -} -static unsafe void Test_ShaderSource_22289() { - System.UInt32 _shader = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.String[] _string = default(System.String[]); - System.Int32[] _length = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.ShaderSource(_shader,_count,_string,_length); -} -static unsafe void Test_ShaderSource_22290() { - System.UInt32 _shader = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.String[] _string = default(System.String[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ShaderSource(_shader,_count,_string,ref _length); -} -static unsafe void Test_ShaderSource_22291() { - System.UInt32 _shader = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.String[] _string = default(System.String[]); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.ShaderSource(_shader,_count,_string,_length); -} -static unsafe void Test_ShaderStorageBlockBinding_22292() { - System.Int32 _program = default(System.Int32); - System.Int32 _storageBlockIndex = default(System.Int32); - System.Int32 _storageBlockBinding = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ShaderStorageBlockBinding(_program,_storageBlockIndex,_storageBlockBinding); -} -static unsafe void Test_ShaderStorageBlockBinding_22293() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _storageBlockIndex = default(System.UInt32); - System.UInt32 _storageBlockBinding = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.ShaderStorageBlockBinding(_program,_storageBlockIndex,_storageBlockBinding); -} -static unsafe void Test_StencilFunc_22294() { - OpenTK.Graphics.OpenGL.StencilFunction _func = default(OpenTK.Graphics.OpenGL.StencilFunction); - System.Int32 _ref = default(System.Int32); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.StencilFunc(_func,_ref,_mask); -} -static unsafe void Test_StencilFunc_22295() { - OpenTK.Graphics.OpenGL.StencilFunction _func = default(OpenTK.Graphics.OpenGL.StencilFunction); - System.Int32 _ref = default(System.Int32); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.StencilFunc(_func,_ref,_mask); -} -static unsafe void Test_StencilFuncSeparate_22296() { - OpenTK.Graphics.OpenGL.StencilFace _face = default(OpenTK.Graphics.OpenGL.StencilFace); - OpenTK.Graphics.OpenGL.StencilFunction _func = default(OpenTK.Graphics.OpenGL.StencilFunction); - System.Int32 _ref = default(System.Int32); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.StencilFuncSeparate(_face,_func,_ref,_mask); -} -static unsafe void Test_StencilFuncSeparate_22297() { - OpenTK.Graphics.OpenGL.StencilFace _face = default(OpenTK.Graphics.OpenGL.StencilFace); - OpenTK.Graphics.OpenGL.StencilFunction _func = default(OpenTK.Graphics.OpenGL.StencilFunction); - System.Int32 _ref = default(System.Int32); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.StencilFuncSeparate(_face,_func,_ref,_mask); -} -static unsafe void Test_StencilFuncSeparate_22298() { - OpenTK.Graphics.OpenGL.Version20 _face = default(OpenTK.Graphics.OpenGL.Version20); - OpenTK.Graphics.OpenGL.StencilFunction _func = default(OpenTK.Graphics.OpenGL.StencilFunction); - System.Int32 _ref = default(System.Int32); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.StencilFuncSeparate(_face,_func,_ref,_mask); -} -static unsafe void Test_StencilFuncSeparate_22299() { - OpenTK.Graphics.OpenGL.Version20 _face = default(OpenTK.Graphics.OpenGL.Version20); - OpenTK.Graphics.OpenGL.StencilFunction _func = default(OpenTK.Graphics.OpenGL.StencilFunction); - System.Int32 _ref = default(System.Int32); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.StencilFuncSeparate(_face,_func,_ref,_mask); -} -static unsafe void Test_StencilMask_22300() { - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.StencilMask(_mask); -} -static unsafe void Test_StencilMask_22301() { - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.StencilMask(_mask); -} -static unsafe void Test_StencilMaskSeparate_22302() { - OpenTK.Graphics.OpenGL.StencilFace _face = default(OpenTK.Graphics.OpenGL.StencilFace); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.StencilMaskSeparate(_face,_mask); -} -static unsafe void Test_StencilMaskSeparate_22303() { - OpenTK.Graphics.OpenGL.StencilFace _face = default(OpenTK.Graphics.OpenGL.StencilFace); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.StencilMaskSeparate(_face,_mask); -} -static unsafe void Test_StencilOp_22304() { - OpenTK.Graphics.OpenGL.StencilOp _fail = default(OpenTK.Graphics.OpenGL.StencilOp); - OpenTK.Graphics.OpenGL.StencilOp _zfail = default(OpenTK.Graphics.OpenGL.StencilOp); - OpenTK.Graphics.OpenGL.StencilOp _zpass = default(OpenTK.Graphics.OpenGL.StencilOp); - OpenTK.Graphics.OpenGL.GL.StencilOp(_fail,_zfail,_zpass); -} -static unsafe void Test_StencilOpSeparate_22305() { - OpenTK.Graphics.OpenGL.StencilFace _face = default(OpenTK.Graphics.OpenGL.StencilFace); - OpenTK.Graphics.OpenGL.StencilOp _sfail = default(OpenTK.Graphics.OpenGL.StencilOp); - OpenTK.Graphics.OpenGL.StencilOp _dpfail = default(OpenTK.Graphics.OpenGL.StencilOp); - OpenTK.Graphics.OpenGL.StencilOp _dppass = default(OpenTK.Graphics.OpenGL.StencilOp); - OpenTK.Graphics.OpenGL.GL.StencilOpSeparate(_face,_sfail,_dpfail,_dppass); -} -static unsafe void Test_TexBuffer_22306() { - OpenTK.Graphics.OpenGL.TextureBufferTarget _target = default(OpenTK.Graphics.OpenGL.TextureBufferTarget); - OpenTK.Graphics.OpenGL.SizedInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.SizedInternalFormat); - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.TexBuffer(_target,_internalformat,_buffer); -} -static unsafe void Test_TexBuffer_22307() { - OpenTK.Graphics.OpenGL.TextureBufferTarget _target = default(OpenTK.Graphics.OpenGL.TextureBufferTarget); - OpenTK.Graphics.OpenGL.SizedInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.SizedInternalFormat); - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.TexBuffer(_target,_internalformat,_buffer); -} -static unsafe void Test_TexBufferRange_22308() { - OpenTK.Graphics.OpenGL.TextureBufferTarget _target = default(OpenTK.Graphics.OpenGL.TextureBufferTarget); - OpenTK.Graphics.OpenGL.SizedInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.SizedInternalFormat); - System.Int32 _buffer = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.TexBufferRange(_target,_internalformat,_buffer,_offset,_size); -} -static unsafe void Test_TexBufferRange_22309() { - OpenTK.Graphics.OpenGL.TextureBufferTarget _target = default(OpenTK.Graphics.OpenGL.TextureBufferTarget); - OpenTK.Graphics.OpenGL.SizedInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.SizedInternalFormat); - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.TexBufferRange(_target,_internalformat,_buffer,_offset,_size); -} -static unsafe void Test_TexCoord1_22310() { - System.Double _s = default(System.Double); - OpenTK.Graphics.OpenGL.GL.TexCoord1(_s); -} -static unsafe void Test_TexCoord1_22311() { - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.TexCoord1(_v); -} -static unsafe void Test_TexCoord1_22312() { - System.Single _s = default(System.Single); - OpenTK.Graphics.OpenGL.GL.TexCoord1(_s); -} -static unsafe void Test_TexCoord1_22313() { - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.TexCoord1(_v); -} -static unsafe void Test_TexCoord1_22314() { - System.Int32 _s = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.TexCoord1(_s); -} -static unsafe void Test_TexCoord1_22315() { - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.TexCoord1(_v); -} -static unsafe void Test_TexCoord1_22316() { - System.Int16 _s = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.TexCoord1(_s); -} -static unsafe void Test_TexCoord1_22317() { - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.TexCoord1(_v); -} -static unsafe void Test_TexCoord2_22318() { - System.Double _s = default(System.Double); - System.Double _t = default(System.Double); - OpenTK.Graphics.OpenGL.GL.TexCoord2(_s,_t); -} -static unsafe void Test_TexCoord2_22319() { - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.TexCoord2(_v); -} -static unsafe void Test_TexCoord2_22320() { - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.TexCoord2(ref _v); -} -static unsafe void Test_TexCoord2_22321() { - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.TexCoord2(_v); -} -static unsafe void Test_TexCoord2_22322() { - System.Single _s = default(System.Single); - System.Single _t = default(System.Single); - OpenTK.Graphics.OpenGL.GL.TexCoord2(_s,_t); -} -static unsafe void Test_TexCoord2_22323() { - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.TexCoord2(_v); -} -static unsafe void Test_TexCoord2_22324() { - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.TexCoord2(ref _v); -} -static unsafe void Test_TexCoord2_22325() { - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.TexCoord2(_v); -} -static unsafe void Test_TexCoord2_22326() { - System.Int32 _s = default(System.Int32); - System.Int32 _t = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.TexCoord2(_s,_t); -} -static unsafe void Test_TexCoord2_22327() { - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.TexCoord2(_v); -} -static unsafe void Test_TexCoord2_22328() { - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.TexCoord2(ref _v); -} -static unsafe void Test_TexCoord2_22329() { - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.TexCoord2(_v); -} -static unsafe void Test_TexCoord2_22330() { - System.Int16 _s = default(System.Int16); - System.Int16 _t = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.TexCoord2(_s,_t); -} -static unsafe void Test_TexCoord2_22331() { - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.TexCoord2(_v); -} -static unsafe void Test_TexCoord2_22332() { - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.TexCoord2(ref _v); -} -static unsafe void Test_TexCoord2_22333() { - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.TexCoord2(_v); -} -static unsafe void Test_TexCoord3_22334() { - System.Double _s = default(System.Double); - System.Double _t = default(System.Double); - System.Double _r = default(System.Double); - OpenTK.Graphics.OpenGL.GL.TexCoord3(_s,_t,_r); -} -static unsafe void Test_TexCoord3_22335() { - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.TexCoord3(_v); -} -static unsafe void Test_TexCoord3_22336() { - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.TexCoord3(ref _v); -} -static unsafe void Test_TexCoord3_22337() { - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.TexCoord3(_v); -} -static unsafe void Test_TexCoord3_22338() { - System.Single _s = default(System.Single); - System.Single _t = default(System.Single); - System.Single _r = default(System.Single); - OpenTK.Graphics.OpenGL.GL.TexCoord3(_s,_t,_r); -} -static unsafe void Test_TexCoord3_22339() { - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.TexCoord3(_v); -} -static unsafe void Test_TexCoord3_22340() { - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.TexCoord3(ref _v); -} -static unsafe void Test_TexCoord3_22341() { - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.TexCoord3(_v); -} -static unsafe void Test_TexCoord3_22342() { - System.Int32 _s = default(System.Int32); - System.Int32 _t = default(System.Int32); - System.Int32 _r = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.TexCoord3(_s,_t,_r); -} -static unsafe void Test_TexCoord3_22343() { - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.TexCoord3(_v); -} -static unsafe void Test_TexCoord3_22344() { - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.TexCoord3(ref _v); -} -static unsafe void Test_TexCoord3_22345() { - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.TexCoord3(_v); -} -static unsafe void Test_TexCoord3_22346() { - System.Int16 _s = default(System.Int16); - System.Int16 _t = default(System.Int16); - System.Int16 _r = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.TexCoord3(_s,_t,_r); -} -static unsafe void Test_TexCoord3_22347() { - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.TexCoord3(_v); -} -static unsafe void Test_TexCoord3_22348() { - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.TexCoord3(ref _v); -} -static unsafe void Test_TexCoord3_22349() { - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.TexCoord3(_v); -} -static unsafe void Test_TexCoord4_22350() { - System.Double _s = default(System.Double); - System.Double _t = default(System.Double); - System.Double _r = default(System.Double); - System.Double _q = default(System.Double); - OpenTK.Graphics.OpenGL.GL.TexCoord4(_s,_t,_r,_q); -} -static unsafe void Test_TexCoord4_22351() { - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.TexCoord4(_v); -} -static unsafe void Test_TexCoord4_22352() { - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.TexCoord4(ref _v); -} -static unsafe void Test_TexCoord4_22353() { - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.TexCoord4(_v); -} -static unsafe void Test_TexCoord4_22354() { - System.Single _s = default(System.Single); - System.Single _t = default(System.Single); - System.Single _r = default(System.Single); - System.Single _q = default(System.Single); - OpenTK.Graphics.OpenGL.GL.TexCoord4(_s,_t,_r,_q); -} -static unsafe void Test_TexCoord4_22355() { - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.TexCoord4(_v); -} -static unsafe void Test_TexCoord4_22356() { - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.TexCoord4(ref _v); -} -static unsafe void Test_TexCoord4_22357() { - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.TexCoord4(_v); -} -static unsafe void Test_TexCoord4_22358() { - System.Int32 _s = default(System.Int32); - System.Int32 _t = default(System.Int32); - System.Int32 _r = default(System.Int32); - System.Int32 _q = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.TexCoord4(_s,_t,_r,_q); -} -static unsafe void Test_TexCoord4_22359() { - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.TexCoord4(_v); -} -static unsafe void Test_TexCoord4_22360() { - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.TexCoord4(ref _v); -} -static unsafe void Test_TexCoord4_22361() { - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.TexCoord4(_v); -} -static unsafe void Test_TexCoord4_22362() { - System.Int16 _s = default(System.Int16); - System.Int16 _t = default(System.Int16); - System.Int16 _r = default(System.Int16); - System.Int16 _q = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.TexCoord4(_s,_t,_r,_q); -} -static unsafe void Test_TexCoord4_22363() { - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.TexCoord4(_v); -} -static unsafe void Test_TexCoord4_22364() { - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.TexCoord4(ref _v); -} -static unsafe void Test_TexCoord4_22365() { - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.TexCoord4(_v); -} -static unsafe void Test_TexCoordP1_22366() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.TexCoordP1(_type,_coords); -} -static unsafe void Test_TexCoordP1_22367() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.UInt32 _coords = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.TexCoordP1(_type,_coords); -} -static unsafe void Test_TexCoordP1_22368() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.TexCoordP1(_type,_coords); -} -static unsafe void Test_TexCoordP1_22369() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.UInt32* _coords = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.TexCoordP1(_type,_coords); -} -static unsafe void Test_TexCoordP2_22370() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.TexCoordP2(_type,_coords); -} -static unsafe void Test_TexCoordP2_22371() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.UInt32 _coords = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.TexCoordP2(_type,_coords); -} -static unsafe void Test_TexCoordP2_22372() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.TexCoordP2(_type,_coords); -} -static unsafe void Test_TexCoordP2_22373() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.UInt32* _coords = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.TexCoordP2(_type,_coords); -} -static unsafe void Test_TexCoordP3_22374() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.TexCoordP3(_type,_coords); -} -static unsafe void Test_TexCoordP3_22375() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.UInt32 _coords = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.TexCoordP3(_type,_coords); -} -static unsafe void Test_TexCoordP3_22376() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.TexCoordP3(_type,_coords); -} -static unsafe void Test_TexCoordP3_22377() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.UInt32* _coords = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.TexCoordP3(_type,_coords); -} -static unsafe void Test_TexCoordP4_22378() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.TexCoordP4(_type,_coords); -} -static unsafe void Test_TexCoordP4_22379() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.UInt32 _coords = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.TexCoordP4(_type,_coords); -} -static unsafe void Test_TexCoordP4_22380() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.TexCoordP4(_type,_coords); -} -static unsafe void Test_TexCoordP4_22381() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.UInt32* _coords = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.TexCoordP4(_type,_coords); -} -static unsafe void Test_TexCoordPointer_22382() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.TexCoordPointerType _type = default(OpenTK.Graphics.OpenGL.TexCoordPointerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.TexCoordPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_TexCoordPointer_22383() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.TexCoordPointerType _type = default(OpenTK.Graphics.OpenGL.TexCoordPointerType); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.TexCoordPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_TexCoordPointer_22384() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.TexCoordPointerType _type = default(OpenTK.Graphics.OpenGL.TexCoordPointerType); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.TexCoordPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_TexCoordPointer_22385() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.TexCoordPointerType _type = default(OpenTK.Graphics.OpenGL.TexCoordPointerType); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.TexCoordPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_TexCoordPointer_22386() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.TexCoordPointerType _type = default(OpenTK.Graphics.OpenGL.TexCoordPointerType); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.TexCoordPointer(_size,_type,_stride,ref _pointer); -} -static unsafe void Test_TexEnv_22387() { - OpenTK.Graphics.OpenGL.TextureEnvTarget _target = default(OpenTK.Graphics.OpenGL.TextureEnvTarget); - OpenTK.Graphics.OpenGL.TextureEnvParameter _pname = default(OpenTK.Graphics.OpenGL.TextureEnvParameter); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL.GL.TexEnv(_target,_pname,_param); -} -static unsafe void Test_TexEnv_22388() { - OpenTK.Graphics.OpenGL.TextureEnvTarget _target = default(OpenTK.Graphics.OpenGL.TextureEnvTarget); - OpenTK.Graphics.OpenGL.TextureEnvParameter _pname = default(OpenTK.Graphics.OpenGL.TextureEnvParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.TexEnv(_target,_pname,_params); -} -static unsafe void Test_TexEnv_22389() { - OpenTK.Graphics.OpenGL.TextureEnvTarget _target = default(OpenTK.Graphics.OpenGL.TextureEnvTarget); - OpenTK.Graphics.OpenGL.TextureEnvParameter _pname = default(OpenTK.Graphics.OpenGL.TextureEnvParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.TexEnv(_target,_pname,_params); -} -static unsafe void Test_TexEnv_22390() { - OpenTK.Graphics.OpenGL.TextureEnvTarget _target = default(OpenTK.Graphics.OpenGL.TextureEnvTarget); - OpenTK.Graphics.OpenGL.TextureEnvParameter _pname = default(OpenTK.Graphics.OpenGL.TextureEnvParameter); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.TexEnv(_target,_pname,_param); -} -static unsafe void Test_TexEnv_22391() { - OpenTK.Graphics.OpenGL.TextureEnvTarget _target = default(OpenTK.Graphics.OpenGL.TextureEnvTarget); - OpenTK.Graphics.OpenGL.TextureEnvParameter _pname = default(OpenTK.Graphics.OpenGL.TextureEnvParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.TexEnv(_target,_pname,_params); -} -static unsafe void Test_TexEnv_22392() { - OpenTK.Graphics.OpenGL.TextureEnvTarget _target = default(OpenTK.Graphics.OpenGL.TextureEnvTarget); - OpenTK.Graphics.OpenGL.TextureEnvParameter _pname = default(OpenTK.Graphics.OpenGL.TextureEnvParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.TexEnv(_target,_pname,_params); -} -static unsafe void Test_TexGend_22393() { - OpenTK.Graphics.OpenGL.TextureCoordName _coord = default(OpenTK.Graphics.OpenGL.TextureCoordName); - OpenTK.Graphics.OpenGL.TextureGenParameter _pname = default(OpenTK.Graphics.OpenGL.TextureGenParameter); - System.Double _param = default(System.Double); - OpenTK.Graphics.OpenGL.GL.TexGend(_coord,_pname,_param); -} -static unsafe void Test_TexGen_22394() { - OpenTK.Graphics.OpenGL.TextureCoordName _coord = default(OpenTK.Graphics.OpenGL.TextureCoordName); - OpenTK.Graphics.OpenGL.TextureGenParameter _pname = default(OpenTK.Graphics.OpenGL.TextureGenParameter); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.TexGen(_coord,_pname,_params); -} -static unsafe void Test_TexGen_22395() { - OpenTK.Graphics.OpenGL.TextureCoordName _coord = default(OpenTK.Graphics.OpenGL.TextureCoordName); - OpenTK.Graphics.OpenGL.TextureGenParameter _pname = default(OpenTK.Graphics.OpenGL.TextureGenParameter); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.TexGen(_coord,_pname,ref _params); -} -static unsafe void Test_TexGen_22396() { - OpenTK.Graphics.OpenGL.TextureCoordName _coord = default(OpenTK.Graphics.OpenGL.TextureCoordName); - OpenTK.Graphics.OpenGL.TextureGenParameter _pname = default(OpenTK.Graphics.OpenGL.TextureGenParameter); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.TexGen(_coord,_pname,_params); -} -static unsafe void Test_TexGen_22397() { - OpenTK.Graphics.OpenGL.TextureCoordName _coord = default(OpenTK.Graphics.OpenGL.TextureCoordName); - OpenTK.Graphics.OpenGL.TextureGenParameter _pname = default(OpenTK.Graphics.OpenGL.TextureGenParameter); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL.GL.TexGen(_coord,_pname,_param); -} -static unsafe void Test_TexGen_22398() { - OpenTK.Graphics.OpenGL.TextureCoordName _coord = default(OpenTK.Graphics.OpenGL.TextureCoordName); - OpenTK.Graphics.OpenGL.TextureGenParameter _pname = default(OpenTK.Graphics.OpenGL.TextureGenParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.TexGen(_coord,_pname,_params); -} -static unsafe void Test_TexGen_22399() { - OpenTK.Graphics.OpenGL.TextureCoordName _coord = default(OpenTK.Graphics.OpenGL.TextureCoordName); - OpenTK.Graphics.OpenGL.TextureGenParameter _pname = default(OpenTK.Graphics.OpenGL.TextureGenParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.TexGen(_coord,_pname,_params); -} -static unsafe void Test_TexGen_22400() { - OpenTK.Graphics.OpenGL.TextureCoordName _coord = default(OpenTK.Graphics.OpenGL.TextureCoordName); - OpenTK.Graphics.OpenGL.TextureGenParameter _pname = default(OpenTK.Graphics.OpenGL.TextureGenParameter); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.TexGen(_coord,_pname,_param); -} -static unsafe void Test_TexGen_22401() { - OpenTK.Graphics.OpenGL.TextureCoordName _coord = default(OpenTK.Graphics.OpenGL.TextureCoordName); - OpenTK.Graphics.OpenGL.TextureGenParameter _pname = default(OpenTK.Graphics.OpenGL.TextureGenParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.TexGen(_coord,_pname,_params); -} -static unsafe void Test_TexGen_22402() { - OpenTK.Graphics.OpenGL.TextureCoordName _coord = default(OpenTK.Graphics.OpenGL.TextureCoordName); - OpenTK.Graphics.OpenGL.TextureGenParameter _pname = default(OpenTK.Graphics.OpenGL.TextureGenParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.TexGen(_coord,_pname,_params); -} -static unsafe void Test_TexImage1D_22403() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.TexImage1D(_target,_level,_internalformat,_width,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage1D_22404() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.TexImage1D(_target,_level,_internalformat,_width,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage1D_22405() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.TexImage1D(_target,_level,_internalformat,_width,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage1D_22406() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.TexImage1D(_target,_level,_internalformat,_width,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage1D_22407() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.TexImage1D(_target,_level,_internalformat,_width,_border,_format,_type,ref _pixels); -} -static unsafe void Test_TexImage2D_22408() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage2D_22409() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage2D_22410() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage2D_22411() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage2D_22412() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,ref _pixels); -} -static unsafe void Test_TexImage2DMultisample_22413() { - OpenTK.Graphics.OpenGL.TextureTargetMultisample _target = default(OpenTK.Graphics.OpenGL.TextureTargetMultisample); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Boolean _fixedsamplelocations = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.TexImage2DMultisample(_target,_samples,_internalformat,_width,_height,_fixedsamplelocations); -} -static unsafe void Test_TexImage3D_22414() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_22415() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_22416() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_22417() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_22418() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,ref _pixels); -} -static unsafe void Test_TexImage3DMultisample_22419() { - OpenTK.Graphics.OpenGL.TextureTargetMultisample _target = default(OpenTK.Graphics.OpenGL.TextureTargetMultisample); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Boolean _fixedsamplelocations = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.TexImage3DMultisample(_target,_samples,_internalformat,_width,_height,_depth,_fixedsamplelocations); -} -static unsafe void Test_TexParameter_22420() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL.GL.TexParameter(_target,_pname,_param); -} -static unsafe void Test_TexParameter_22421() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.TexParameter(_target,_pname,_params); -} -static unsafe void Test_TexParameter_22422() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.TexParameter(_target,_pname,_params); -} -static unsafe void Test_TexParameter_22423() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.TexParameter(_target,_pname,_param); -} -static unsafe void Test_TexParameterI_22424() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.TexParameterI(_target,_pname,_params); -} -static unsafe void Test_TexParameterI_22425() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.TexParameterI(_target,_pname,ref _params); -} -static unsafe void Test_TexParameterI_22426() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.TexParameterI(_target,_pname,_params); -} -static unsafe void Test_TexParameterI_22427() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.TexParameterI(_target,_pname,_params); -} -static unsafe void Test_TexParameterI_22428() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.TexParameterI(_target,_pname,ref _params); -} -static unsafe void Test_TexParameterI_22429() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.TexParameterI(_target,_pname,_params); -} -static unsafe void Test_TexParameter_22430() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.TexParameter(_target,_pname,_params); -} -static unsafe void Test_TexParameter_22431() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.TexParameter(_target,_pname,_params); -} -static unsafe void Test_TexStorage1D_22432() { - OpenTK.Graphics.OpenGL.TextureTarget1d _target = default(OpenTK.Graphics.OpenGL.TextureTarget1d); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.OpenGL.SizedInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.SizedInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.TexStorage1D(_target,_levels,_internalformat,_width); -} -static unsafe void Test_TexStorage2D_22433() { - OpenTK.Graphics.OpenGL.TextureTarget2d _target = default(OpenTK.Graphics.OpenGL.TextureTarget2d); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.OpenGL.SizedInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.SizedInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.TexStorage2D(_target,_levels,_internalformat,_width,_height); -} -static unsafe void Test_TexStorage2DMultisample_22434() { - OpenTK.Graphics.OpenGL.TextureTargetMultisample2d _target = default(OpenTK.Graphics.OpenGL.TextureTargetMultisample2d); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.OpenGL.SizedInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.SizedInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Boolean _fixedsamplelocations = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.TexStorage2DMultisample(_target,_samples,_internalformat,_width,_height,_fixedsamplelocations); -} -static unsafe void Test_TexStorage3D_22435() { - OpenTK.Graphics.OpenGL.TextureTarget3d _target = default(OpenTK.Graphics.OpenGL.TextureTarget3d); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.OpenGL.SizedInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.SizedInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.TexStorage3D(_target,_levels,_internalformat,_width,_height,_depth); -} -static unsafe void Test_TexStorage3DMultisample_22436() { - OpenTK.Graphics.OpenGL.TextureTargetMultisample3d _target = default(OpenTK.Graphics.OpenGL.TextureTargetMultisample3d); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.OpenGL.SizedInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.SizedInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Boolean _fixedsamplelocations = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.TexStorage3DMultisample(_target,_samples,_internalformat,_width,_height,_depth,_fixedsamplelocations); -} -static unsafe void Test_TexSubImage1D_22437() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.TexSubImage1D(_target,_level,_xoffset,_width,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage1D_22438() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.TexSubImage1D(_target,_level,_xoffset,_width,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage1D_22439() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.TexSubImage1D(_target,_level,_xoffset,_width,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage1D_22440() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.TexSubImage1D(_target,_level,_xoffset,_width,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage1D_22441() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.TexSubImage1D(_target,_level,_xoffset,_width,_format,_type,ref _pixels); -} -static unsafe void Test_TexSubImage2D_22442() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_22443() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_22444() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_22445() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_22446() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,ref _pixels); -} -static unsafe void Test_TexSubImage3D_22447() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage3D_22448() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage3D_22449() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage3D_22450() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage3D_22451() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,ref _pixels); -} -static unsafe void Test_TextureView_22452() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _origtexture = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _minlevel = default(System.Int32); - System.Int32 _numlevels = default(System.Int32); - System.Int32 _minlayer = default(System.Int32); - System.Int32 _numlayers = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.TextureView(_texture,_target,_origtexture,_internalformat,_minlevel,_numlevels,_minlayer,_numlayers); -} -static unsafe void Test_TextureView_22453() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.UInt32 _origtexture = default(System.UInt32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.UInt32 _minlevel = default(System.UInt32); - System.UInt32 _numlevels = default(System.UInt32); - System.UInt32 _minlayer = default(System.UInt32); - System.UInt32 _numlayers = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.TextureView(_texture,_target,_origtexture,_internalformat,_minlevel,_numlevels,_minlayer,_numlayers); -} -static unsafe void Test_TransformFeedbackVaryings_22454() { - System.Int32 _program = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.String[] _varyings = default(System.String[]); - OpenTK.Graphics.OpenGL.TransformFeedbackMode _bufferMode = default(OpenTK.Graphics.OpenGL.TransformFeedbackMode); - OpenTK.Graphics.OpenGL.GL.TransformFeedbackVaryings(_program,_count,_varyings,_bufferMode); -} -static unsafe void Test_TransformFeedbackVaryings_22455() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.String[] _varyings = default(System.String[]); - OpenTK.Graphics.OpenGL.TransformFeedbackMode _bufferMode = default(OpenTK.Graphics.OpenGL.TransformFeedbackMode); - OpenTK.Graphics.OpenGL.GL.TransformFeedbackVaryings(_program,_count,_varyings,_bufferMode); -} -static unsafe void Test_Translate_22456() { - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Translate(_x,_y,_z); -} -static unsafe void Test_Translate_22457() { - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Translate(_x,_y,_z); -} -static unsafe void Test_Uniform1_22458() { - System.Int32 _location = default(System.Int32); - System.Double _x = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Uniform1(_location,_x); -} -static unsafe void Test_Uniform1_22459() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Uniform1(_location,_count,_value); -} -static unsafe void Test_Uniform1_22460() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Uniform1(_location,_count,ref _value); -} -static unsafe void Test_Uniform1_22461() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Uniform1(_location,_count,_value); -} -static unsafe void Test_Uniform1_22462() { - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Uniform1(_location,_v0); -} -static unsafe void Test_Uniform1_22463() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Uniform1(_location,_count,_value); -} -static unsafe void Test_Uniform1_22464() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Uniform1(_location,_count,ref _value); -} -static unsafe void Test_Uniform1_22465() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Uniform1(_location,_count,_value); -} -static unsafe void Test_Uniform1_22466() { - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Uniform1(_location,_v0); -} -static unsafe void Test_Uniform1_22467() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Uniform1(_location,_count,_value); -} -static unsafe void Test_Uniform1_22468() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Uniform1(_location,_count,ref _value); -} -static unsafe void Test_Uniform1_22469() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Uniform1(_location,_count,_value); -} -static unsafe void Test_Uniform1_22470() { - System.Int32 _location = default(System.Int32); - System.UInt32 _v0 = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Uniform1(_location,_v0); -} -static unsafe void Test_Uniform1_22471() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _value = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Uniform1(_location,_count,_value); -} -static unsafe void Test_Uniform1_22472() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Uniform1(_location,_count,ref _value); -} -static unsafe void Test_Uniform1_22473() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Uniform1(_location,_count,_value); -} -static unsafe void Test_Uniform2_22474() { - System.Int32 _location = default(System.Int32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Uniform2(_location,_x,_y); -} -static unsafe void Test_Uniform2_22475() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Uniform2(_location,_count,_value); -} -static unsafe void Test_Uniform2_22476() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Uniform2(_location,_count,ref _value); -} -static unsafe void Test_Uniform2_22477() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Uniform2(_location,_count,_value); -} -static unsafe void Test_Uniform2_22478() { - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Uniform2(_location,_v0,_v1); -} -static unsafe void Test_Uniform2_22479() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Uniform2(_location,_count,_value); -} -static unsafe void Test_Uniform2_22480() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Uniform2(_location,_count,ref _value); -} -static unsafe void Test_Uniform2_22481() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Uniform2(_location,_count,_value); -} -static unsafe void Test_Uniform2_22482() { - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Uniform2(_location,_v0,_v1); -} -static unsafe void Test_Uniform2_22483() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Uniform2(_location,_count,_value); -} -static unsafe void Test_Uniform2_22484() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Uniform2(_location,_count,_value); -} -static unsafe void Test_Uniform2_22485() { - System.Int32 _location = default(System.Int32); - System.UInt32 _v0 = default(System.UInt32); - System.UInt32 _v1 = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Uniform2(_location,_v0,_v1); -} -static unsafe void Test_Uniform2_22486() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _value = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Uniform2(_location,_count,_value); -} -static unsafe void Test_Uniform2_22487() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Uniform2(_location,_count,ref _value); -} -static unsafe void Test_Uniform2_22488() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Uniform2(_location,_count,_value); -} -static unsafe void Test_Uniform3_22489() { - System.Int32 _location = default(System.Int32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Uniform3(_location,_x,_y,_z); -} -static unsafe void Test_Uniform3_22490() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Uniform3(_location,_count,_value); -} -static unsafe void Test_Uniform3_22491() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Uniform3(_location,_count,ref _value); -} -static unsafe void Test_Uniform3_22492() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Uniform3(_location,_count,_value); -} -static unsafe void Test_Uniform3_22493() { - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Uniform3(_location,_v0,_v1,_v2); -} -static unsafe void Test_Uniform3_22494() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Uniform3(_location,_count,_value); -} -static unsafe void Test_Uniform3_22495() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Uniform3(_location,_count,ref _value); -} -static unsafe void Test_Uniform3_22496() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Uniform3(_location,_count,_value); -} -static unsafe void Test_Uniform3_22497() { - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - System.Int32 _v2 = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Uniform3(_location,_v0,_v1,_v2); -} -static unsafe void Test_Uniform3_22498() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Uniform3(_location,_count,_value); -} -static unsafe void Test_Uniform3_22499() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Uniform3(_location,_count,ref _value); -} -static unsafe void Test_Uniform3_22500() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Uniform3(_location,_count,_value); -} -static unsafe void Test_Uniform3_22501() { - System.Int32 _location = default(System.Int32); - System.UInt32 _v0 = default(System.UInt32); - System.UInt32 _v1 = default(System.UInt32); - System.UInt32 _v2 = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Uniform3(_location,_v0,_v1,_v2); -} -static unsafe void Test_Uniform3_22502() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _value = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Uniform3(_location,_count,_value); -} -static unsafe void Test_Uniform3_22503() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Uniform3(_location,_count,ref _value); -} -static unsafe void Test_Uniform3_22504() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Uniform3(_location,_count,_value); -} -static unsafe void Test_Uniform4_22505() { - System.Int32 _location = default(System.Int32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - System.Double _w = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Uniform4(_location,_x,_y,_z,_w); -} -static unsafe void Test_Uniform4_22506() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Uniform4(_location,_count,_value); -} -static unsafe void Test_Uniform4_22507() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Uniform4(_location,_count,ref _value); -} -static unsafe void Test_Uniform4_22508() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Uniform4(_location,_count,_value); -} -static unsafe void Test_Uniform4_22509() { - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - System.Single _v3 = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Uniform4(_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_Uniform4_22510() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Uniform4(_location,_count,_value); -} -static unsafe void Test_Uniform4_22511() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Uniform4(_location,_count,ref _value); -} -static unsafe void Test_Uniform4_22512() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Uniform4(_location,_count,_value); -} -static unsafe void Test_Uniform4_22513() { - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - System.Int32 _v2 = default(System.Int32); - System.Int32 _v3 = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Uniform4(_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_Uniform4_22514() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Uniform4(_location,_count,_value); -} -static unsafe void Test_Uniform4_22515() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Uniform4(_location,_count,ref _value); -} -static unsafe void Test_Uniform4_22516() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Uniform4(_location,_count,_value); -} -static unsafe void Test_Uniform4_22517() { - System.Int32 _location = default(System.Int32); - System.UInt32 _v0 = default(System.UInt32); - System.UInt32 _v1 = default(System.UInt32); - System.UInt32 _v2 = default(System.UInt32); - System.UInt32 _v3 = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Uniform4(_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_Uniform4_22518() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _value = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Uniform4(_location,_count,_value); -} -static unsafe void Test_Uniform4_22519() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Uniform4(_location,_count,ref _value); -} -static unsafe void Test_Uniform4_22520() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Uniform4(_location,_count,_value); -} -static unsafe void Test_UniformBlockBinding_22521() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformBlockIndex = default(System.Int32); - System.Int32 _uniformBlockBinding = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.UniformBlockBinding(_program,_uniformBlockIndex,_uniformBlockBinding); -} -static unsafe void Test_UniformBlockBinding_22522() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _uniformBlockIndex = default(System.UInt32); - System.UInt32 _uniformBlockBinding = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.UniformBlockBinding(_program,_uniformBlockIndex,_uniformBlockBinding); -} -static unsafe void Test_UniformMatrix2_22523() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.UniformMatrix2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix2_22524() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.UniformMatrix2(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix2_22525() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.UniformMatrix2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix2_22526() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.UniformMatrix2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix2_22527() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.UniformMatrix2(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix2_22528() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.UniformMatrix2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix2x3_22529() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.UniformMatrix2x3(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix2x3_22530() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.UniformMatrix2x3(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix2x3_22531() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.UniformMatrix2x3(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix2x3_22532() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.UniformMatrix2x3(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix2x3_22533() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.UniformMatrix2x3(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix2x3_22534() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.UniformMatrix2x3(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix2x4_22535() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.UniformMatrix2x4(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix2x4_22536() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.UniformMatrix2x4(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix2x4_22537() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.UniformMatrix2x4(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix2x4_22538() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.UniformMatrix2x4(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix2x4_22539() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.UniformMatrix2x4(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix2x4_22540() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.UniformMatrix2x4(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3_22541() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.UniformMatrix3(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3_22542() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.UniformMatrix3(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix3_22543() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.UniformMatrix3(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3_22544() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.UniformMatrix3(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3_22545() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.UniformMatrix3(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix3_22546() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.UniformMatrix3(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3x2_22547() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.UniformMatrix3x2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3x2_22548() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.UniformMatrix3x2(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix3x2_22549() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.UniformMatrix3x2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3x2_22550() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.UniformMatrix3x2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3x2_22551() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.UniformMatrix3x2(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix3x2_22552() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.UniformMatrix3x2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3x4_22553() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.UniformMatrix3x4(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3x4_22554() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.UniformMatrix3x4(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix3x4_22555() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.UniformMatrix3x4(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3x4_22556() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.UniformMatrix3x4(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3x4_22557() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.UniformMatrix3x4(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix3x4_22558() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.UniformMatrix3x4(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4_22559() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.UniformMatrix4(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4_22560() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.UniformMatrix4(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix4_22561() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.UniformMatrix4(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4_22562() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.UniformMatrix4(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4_22563() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.UniformMatrix4(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix4_22564() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.UniformMatrix4(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4x2_22565() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.UniformMatrix4x2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4x2_22566() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.UniformMatrix4x2(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix4x2_22567() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.UniformMatrix4x2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4x2_22568() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.UniformMatrix4x2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4x2_22569() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.UniformMatrix4x2(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix4x2_22570() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.UniformMatrix4x2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4x3_22571() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.UniformMatrix4x3(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4x3_22572() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.UniformMatrix4x3(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix4x3_22573() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.UniformMatrix4x3(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4x3_22574() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.UniformMatrix4x3(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4x3_22575() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.UniformMatrix4x3(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix4x3_22576() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.UniformMatrix4x3(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformSubroutines_22577() { - OpenTK.Graphics.OpenGL.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL.ShaderType); - System.Int32 _count = default(System.Int32); - System.Int32[] _indices = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.UniformSubroutines(_shadertype,_count,_indices); -} -static unsafe void Test_UniformSubroutines_22578() { - OpenTK.Graphics.OpenGL.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL.ShaderType); - System.Int32 _count = default(System.Int32); - System.Int32 _indices = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.UniformSubroutines(_shadertype,_count,ref _indices); -} -static unsafe void Test_UniformSubroutines_22579() { - OpenTK.Graphics.OpenGL.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL.ShaderType); - System.Int32 _count = default(System.Int32); - System.Int32* _indices = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.UniformSubroutines(_shadertype,_count,_indices); -} -static unsafe void Test_UniformSubroutines_22580() { - OpenTK.Graphics.OpenGL.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL.ShaderType); - System.Int32 _count = default(System.Int32); - System.UInt32[] _indices = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.UniformSubroutines(_shadertype,_count,_indices); -} -static unsafe void Test_UniformSubroutines_22581() { - OpenTK.Graphics.OpenGL.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL.ShaderType); - System.Int32 _count = default(System.Int32); - System.UInt32 _indices = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.UniformSubroutines(_shadertype,_count,ref _indices); -} -static unsafe void Test_UniformSubroutines_22582() { - OpenTK.Graphics.OpenGL.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL.ShaderType); - System.Int32 _count = default(System.Int32); - System.UInt32* _indices = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.UniformSubroutines(_shadertype,_count,_indices); -} -static unsafe void Test_UnmapBuffer_22583() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.UnmapBuffer(_target); -} -static unsafe void Test_UseProgram_22584() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.UseProgram(_program); -} -static unsafe void Test_UseProgram_22585() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.UseProgram(_program); -} -static unsafe void Test_UseProgramStages_22586() { - System.Int32 _pipeline = default(System.Int32); - OpenTK.Graphics.OpenGL.ProgramStageMask _stages = default(OpenTK.Graphics.OpenGL.ProgramStageMask); - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.UseProgramStages(_pipeline,_stages,_program); -} -static unsafe void Test_UseProgramStages_22587() { - System.UInt32 _pipeline = default(System.UInt32); - OpenTK.Graphics.OpenGL.ProgramStageMask _stages = default(OpenTK.Graphics.OpenGL.ProgramStageMask); - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.UseProgramStages(_pipeline,_stages,_program); -} -static unsafe void Test_ValidateProgram_22588() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ValidateProgram(_program); -} -static unsafe void Test_ValidateProgram_22589() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.ValidateProgram(_program); -} -static unsafe void Test_ValidateProgramPipeline_22590() { - System.Int32 _pipeline = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ValidateProgramPipeline(_pipeline); -} -static unsafe void Test_ValidateProgramPipeline_22591() { - System.UInt32 _pipeline = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.ValidateProgramPipeline(_pipeline); -} -static unsafe void Test_Vertex2_22592() { - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Vertex2(_x,_y); -} -static unsafe void Test_Vertex2_22593() { - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Vertex2(_v); -} -static unsafe void Test_Vertex2_22594() { - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Vertex2(ref _v); -} -static unsafe void Test_Vertex2_22595() { - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Vertex2(_v); -} -static unsafe void Test_Vertex2_22596() { - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Vertex2(_x,_y); -} -static unsafe void Test_Vertex2_22597() { - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Vertex2(_v); -} -static unsafe void Test_Vertex2_22598() { - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Vertex2(ref _v); -} -static unsafe void Test_Vertex2_22599() { - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Vertex2(_v); -} -static unsafe void Test_Vertex2_22600() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Vertex2(_x,_y); -} -static unsafe void Test_Vertex2_22601() { - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Vertex2(_v); -} -static unsafe void Test_Vertex2_22602() { - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Vertex2(ref _v); -} -static unsafe void Test_Vertex2_22603() { - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Vertex2(_v); -} -static unsafe void Test_Vertex2_22604() { - System.Int16 _x = default(System.Int16); - System.Int16 _y = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Vertex2(_x,_y); -} -static unsafe void Test_Vertex2_22605() { - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.Vertex2(_v); -} -static unsafe void Test_Vertex2_22606() { - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Vertex2(ref _v); -} -static unsafe void Test_Vertex2_22607() { - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Vertex2(_v); -} -static unsafe void Test_Vertex3_22608() { - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Vertex3(_x,_y,_z); -} -static unsafe void Test_Vertex3_22609() { - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Vertex3(_v); -} -static unsafe void Test_Vertex3_22610() { - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Vertex3(ref _v); -} -static unsafe void Test_Vertex3_22611() { - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Vertex3(_v); -} -static unsafe void Test_Vertex3_22612() { - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Vertex3(_x,_y,_z); -} -static unsafe void Test_Vertex3_22613() { - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Vertex3(_v); -} -static unsafe void Test_Vertex3_22614() { - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Vertex3(ref _v); -} -static unsafe void Test_Vertex3_22615() { - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Vertex3(_v); -} -static unsafe void Test_Vertex3_22616() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Vertex3(_x,_y,_z); -} -static unsafe void Test_Vertex3_22617() { - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Vertex3(_v); -} -static unsafe void Test_Vertex3_22618() { - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Vertex3(ref _v); -} -static unsafe void Test_Vertex3_22619() { - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Vertex3(_v); -} -static unsafe void Test_Vertex3_22620() { - System.Int16 _x = default(System.Int16); - System.Int16 _y = default(System.Int16); - System.Int16 _z = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Vertex3(_x,_y,_z); -} -static unsafe void Test_Vertex3_22621() { - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.Vertex3(_v); -} -static unsafe void Test_Vertex3_22622() { - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Vertex3(ref _v); -} -static unsafe void Test_Vertex3_22623() { - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Vertex3(_v); -} -static unsafe void Test_Vertex4_22624() { - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - System.Double _w = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Vertex4(_x,_y,_z,_w); -} -static unsafe void Test_Vertex4_22625() { - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Vertex4(_v); -} -static unsafe void Test_Vertex4_22626() { - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Vertex4(ref _v); -} -static unsafe void Test_Vertex4_22627() { - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Vertex4(_v); -} -static unsafe void Test_Vertex4_22628() { - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - System.Single _w = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Vertex4(_x,_y,_z,_w); -} -static unsafe void Test_Vertex4_22629() { - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Vertex4(_v); -} -static unsafe void Test_Vertex4_22630() { - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Vertex4(ref _v); -} -static unsafe void Test_Vertex4_22631() { - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Vertex4(_v); -} -static unsafe void Test_Vertex4_22632() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - System.Int32 _w = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Vertex4(_x,_y,_z,_w); -} -static unsafe void Test_Vertex4_22633() { - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Vertex4(_v); -} -static unsafe void Test_Vertex4_22634() { - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Vertex4(ref _v); -} -static unsafe void Test_Vertex4_22635() { - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Vertex4(_v); -} -static unsafe void Test_Vertex4_22636() { - System.Int16 _x = default(System.Int16); - System.Int16 _y = default(System.Int16); - System.Int16 _z = default(System.Int16); - System.Int16 _w = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Vertex4(_x,_y,_z,_w); -} -static unsafe void Test_Vertex4_22637() { - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.Vertex4(_v); -} -static unsafe void Test_Vertex4_22638() { - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Vertex4(ref _v); -} -static unsafe void Test_Vertex4_22639() { - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Vertex4(_v); -} -static unsafe void Test_VertexAttrib1_22640() { - System.Int32 _index = default(System.Int32); - System.Double _x = default(System.Double); - OpenTK.Graphics.OpenGL.GL.VertexAttrib1(_index,_x); -} -static unsafe void Test_VertexAttrib1_22641() { - System.UInt32 _index = default(System.UInt32); - System.Double _x = default(System.Double); - OpenTK.Graphics.OpenGL.GL.VertexAttrib1(_index,_x); -} -static unsafe void Test_VertexAttrib1_22642() { - System.Int32 _index = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.VertexAttrib1(_index,_v); -} -static unsafe void Test_VertexAttrib1_22643() { - System.UInt32 _index = default(System.UInt32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.VertexAttrib1(_index,_v); -} -static unsafe void Test_VertexAttrib1_22644() { - System.Int32 _index = default(System.Int32); - System.Single _x = default(System.Single); - OpenTK.Graphics.OpenGL.GL.VertexAttrib1(_index,_x); -} -static unsafe void Test_VertexAttrib1_22645() { - System.UInt32 _index = default(System.UInt32); - System.Single _x = default(System.Single); - OpenTK.Graphics.OpenGL.GL.VertexAttrib1(_index,_x); -} -static unsafe void Test_VertexAttrib1_22646() { - System.Int32 _index = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.VertexAttrib1(_index,_v); -} -static unsafe void Test_VertexAttrib1_22647() { - System.UInt32 _index = default(System.UInt32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.VertexAttrib1(_index,_v); -} -static unsafe void Test_VertexAttrib1_22648() { - System.Int32 _index = default(System.Int32); - System.Int16 _x = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.VertexAttrib1(_index,_x); -} -static unsafe void Test_VertexAttrib1_22649() { - System.UInt32 _index = default(System.UInt32); - System.Int16 _x = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.VertexAttrib1(_index,_x); -} -static unsafe void Test_VertexAttrib1_22650() { - System.Int32 _index = default(System.Int32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.VertexAttrib1(_index,_v); -} -static unsafe void Test_VertexAttrib1_22651() { - System.UInt32 _index = default(System.UInt32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.VertexAttrib1(_index,_v); -} -static unsafe void Test_VertexAttrib2_22652() { - System.Int32 _index = default(System.Int32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - OpenTK.Graphics.OpenGL.GL.VertexAttrib2(_index,_x,_y); -} -static unsafe void Test_VertexAttrib2_22653() { - System.UInt32 _index = default(System.UInt32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - OpenTK.Graphics.OpenGL.GL.VertexAttrib2(_index,_x,_y); -} -static unsafe void Test_VertexAttrib2_22654() { - System.Int32 _index = default(System.Int32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_22655() { - System.Int32 _index = default(System.Int32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.VertexAttrib2(_index,ref _v); -} -static unsafe void Test_VertexAttrib2_22656() { - System.Int32 _index = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_22657() { - System.UInt32 _index = default(System.UInt32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_22658() { - System.UInt32 _index = default(System.UInt32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.VertexAttrib2(_index,ref _v); -} -static unsafe void Test_VertexAttrib2_22659() { - System.UInt32 _index = default(System.UInt32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_22660() { - System.Int32 _index = default(System.Int32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - OpenTK.Graphics.OpenGL.GL.VertexAttrib2(_index,_x,_y); -} -static unsafe void Test_VertexAttrib2_22661() { - System.UInt32 _index = default(System.UInt32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - OpenTK.Graphics.OpenGL.GL.VertexAttrib2(_index,_x,_y); -} -static unsafe void Test_VertexAttrib2_22662() { - System.Int32 _index = default(System.Int32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_22663() { - System.Int32 _index = default(System.Int32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.VertexAttrib2(_index,ref _v); -} -static unsafe void Test_VertexAttrib2_22664() { - System.Int32 _index = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_22665() { - System.UInt32 _index = default(System.UInt32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_22666() { - System.UInt32 _index = default(System.UInt32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.VertexAttrib2(_index,ref _v); -} -static unsafe void Test_VertexAttrib2_22667() { - System.UInt32 _index = default(System.UInt32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_22668() { - System.Int32 _index = default(System.Int32); - System.Int16 _x = default(System.Int16); - System.Int16 _y = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.VertexAttrib2(_index,_x,_y); -} -static unsafe void Test_VertexAttrib2_22669() { - System.UInt32 _index = default(System.UInt32); - System.Int16 _x = default(System.Int16); - System.Int16 _y = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.VertexAttrib2(_index,_x,_y); -} -static unsafe void Test_VertexAttrib2_22670() { - System.Int32 _index = default(System.Int32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_22671() { - System.Int32 _index = default(System.Int32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.VertexAttrib2(_index,ref _v); -} -static unsafe void Test_VertexAttrib2_22672() { - System.Int32 _index = default(System.Int32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_22673() { - System.UInt32 _index = default(System.UInt32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_22674() { - System.UInt32 _index = default(System.UInt32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.VertexAttrib2(_index,ref _v); -} -static unsafe void Test_VertexAttrib2_22675() { - System.UInt32 _index = default(System.UInt32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib3_22676() { - System.Int32 _index = default(System.Int32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - OpenTK.Graphics.OpenGL.GL.VertexAttrib3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttrib3_22677() { - System.UInt32 _index = default(System.UInt32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - OpenTK.Graphics.OpenGL.GL.VertexAttrib3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttrib3_22678() { - System.Int32 _index = default(System.Int32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_22679() { - System.Int32 _index = default(System.Int32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.VertexAttrib3(_index,ref _v); -} -static unsafe void Test_VertexAttrib3_22680() { - System.Int32 _index = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_22681() { - System.UInt32 _index = default(System.UInt32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_22682() { - System.UInt32 _index = default(System.UInt32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.VertexAttrib3(_index,ref _v); -} -static unsafe void Test_VertexAttrib3_22683() { - System.UInt32 _index = default(System.UInt32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_22684() { - System.Int32 _index = default(System.Int32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.VertexAttrib3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttrib3_22685() { - System.UInt32 _index = default(System.UInt32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.VertexAttrib3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttrib3_22686() { - System.Int32 _index = default(System.Int32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_22687() { - System.Int32 _index = default(System.Int32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.VertexAttrib3(_index,ref _v); -} -static unsafe void Test_VertexAttrib3_22688() { - System.Int32 _index = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_22689() { - System.UInt32 _index = default(System.UInt32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_22690() { - System.UInt32 _index = default(System.UInt32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.VertexAttrib3(_index,ref _v); -} -static unsafe void Test_VertexAttrib3_22691() { - System.UInt32 _index = default(System.UInt32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_22692() { - System.Int32 _index = default(System.Int32); - System.Int16 _x = default(System.Int16); - System.Int16 _y = default(System.Int16); - System.Int16 _z = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.VertexAttrib3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttrib3_22693() { - System.UInt32 _index = default(System.UInt32); - System.Int16 _x = default(System.Int16); - System.Int16 _y = default(System.Int16); - System.Int16 _z = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.VertexAttrib3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttrib3_22694() { - System.Int32 _index = default(System.Int32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_22695() { - System.Int32 _index = default(System.Int32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.VertexAttrib3(_index,ref _v); -} -static unsafe void Test_VertexAttrib3_22696() { - System.Int32 _index = default(System.Int32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_22697() { - System.UInt32 _index = default(System.UInt32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_22698() { - System.UInt32 _index = default(System.UInt32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.VertexAttrib3(_index,ref _v); -} -static unsafe void Test_VertexAttrib3_22699() { - System.UInt32 _index = default(System.UInt32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib4_22700() { - System.UInt32 _index = default(System.UInt32); - System.SByte[] _v = default(System.SByte[]); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_22701() { - System.UInt32 _index = default(System.UInt32); - System.SByte _v = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_22702() { - System.UInt32 _index = default(System.UInt32); - System.SByte* _v = default(System.SByte*); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_22703() { - System.Int32 _index = default(System.Int32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - System.Double _w = default(System.Double); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttrib4_22704() { - System.UInt32 _index = default(System.UInt32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - System.Double _w = default(System.Double); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttrib4_22705() { - System.Int32 _index = default(System.Int32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_22706() { - System.Int32 _index = default(System.Int32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_22707() { - System.Int32 _index = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_22708() { - System.UInt32 _index = default(System.UInt32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_22709() { - System.UInt32 _index = default(System.UInt32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_22710() { - System.UInt32 _index = default(System.UInt32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_22711() { - System.Int32 _index = default(System.Int32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - System.Single _w = default(System.Single); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttrib4_22712() { - System.UInt32 _index = default(System.UInt32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - System.Single _w = default(System.Single); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttrib4_22713() { - System.Int32 _index = default(System.Int32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_22714() { - System.Int32 _index = default(System.Int32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_22715() { - System.Int32 _index = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_22716() { - System.UInt32 _index = default(System.UInt32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_22717() { - System.UInt32 _index = default(System.UInt32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_22718() { - System.UInt32 _index = default(System.UInt32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_22719() { - System.Int32 _index = default(System.Int32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_22720() { - System.Int32 _index = default(System.Int32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_22721() { - System.Int32 _index = default(System.Int32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_22722() { - System.UInt32 _index = default(System.UInt32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_22723() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_22724() { - System.UInt32 _index = default(System.UInt32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4N_22725() { - System.UInt32 _index = default(System.UInt32); - System.SByte[] _v = default(System.SByte[]); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_22726() { - System.UInt32 _index = default(System.UInt32); - System.SByte _v = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4N(_index,ref _v); -} -static unsafe void Test_VertexAttrib4N_22727() { - System.UInt32 _index = default(System.UInt32); - System.SByte* _v = default(System.SByte*); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_22728() { - System.Int32 _index = default(System.Int32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_22729() { - System.Int32 _index = default(System.Int32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4N(_index,ref _v); -} -static unsafe void Test_VertexAttrib4N_22730() { - System.Int32 _index = default(System.Int32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_22731() { - System.UInt32 _index = default(System.UInt32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_22732() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4N(_index,ref _v); -} -static unsafe void Test_VertexAttrib4N_22733() { - System.UInt32 _index = default(System.UInt32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_22734() { - System.Int32 _index = default(System.Int32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_22735() { - System.Int32 _index = default(System.Int32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4N(_index,ref _v); -} -static unsafe void Test_VertexAttrib4N_22736() { - System.Int32 _index = default(System.Int32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_22737() { - System.UInt32 _index = default(System.UInt32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_22738() { - System.UInt32 _index = default(System.UInt32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4N(_index,ref _v); -} -static unsafe void Test_VertexAttrib4N_22739() { - System.UInt32 _index = default(System.UInt32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_22740() { - System.Int32 _index = default(System.Int32); - System.Byte _x = default(System.Byte); - System.Byte _y = default(System.Byte); - System.Byte _z = default(System.Byte); - System.Byte _w = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4N(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttrib4N_22741() { - System.UInt32 _index = default(System.UInt32); - System.Byte _x = default(System.Byte); - System.Byte _y = default(System.Byte); - System.Byte _z = default(System.Byte); - System.Byte _w = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4N(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttrib4N_22742() { - System.Int32 _index = default(System.Int32); - System.Byte[] _v = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_22743() { - System.Int32 _index = default(System.Int32); - System.Byte _v = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4N(_index,ref _v); -} -static unsafe void Test_VertexAttrib4N_22744() { - System.Int32 _index = default(System.Int32); - System.Byte* _v = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_22745() { - System.UInt32 _index = default(System.UInt32); - System.Byte[] _v = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_22746() { - System.UInt32 _index = default(System.UInt32); - System.Byte _v = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4N(_index,ref _v); -} -static unsafe void Test_VertexAttrib4N_22747() { - System.UInt32 _index = default(System.UInt32); - System.Byte* _v = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_22748() { - System.UInt32 _index = default(System.UInt32); - System.UInt32[] _v = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_22749() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _v = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4N(_index,ref _v); -} -static unsafe void Test_VertexAttrib4N_22750() { - System.UInt32 _index = default(System.UInt32); - System.UInt32* _v = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_22751() { - System.UInt32 _index = default(System.UInt32); - System.UInt16[] _v = default(System.UInt16[]); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_22752() { - System.UInt32 _index = default(System.UInt32); - System.UInt16 _v = default(System.UInt16); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4N(_index,ref _v); -} -static unsafe void Test_VertexAttrib4N_22753() { - System.UInt32 _index = default(System.UInt32); - System.UInt16* _v = default(System.UInt16*); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4_22754() { - System.Int32 _index = default(System.Int32); - System.Int16 _x = default(System.Int16); - System.Int16 _y = default(System.Int16); - System.Int16 _z = default(System.Int16); - System.Int16 _w = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttrib4_22755() { - System.UInt32 _index = default(System.UInt32); - System.Int16 _x = default(System.Int16); - System.Int16 _y = default(System.Int16); - System.Int16 _z = default(System.Int16); - System.Int16 _w = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttrib4_22756() { - System.Int32 _index = default(System.Int32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_22757() { - System.Int32 _index = default(System.Int32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_22758() { - System.Int32 _index = default(System.Int32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_22759() { - System.UInt32 _index = default(System.UInt32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_22760() { - System.UInt32 _index = default(System.UInt32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_22761() { - System.UInt32 _index = default(System.UInt32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_22762() { - System.Int32 _index = default(System.Int32); - System.Byte[] _v = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_22763() { - System.Int32 _index = default(System.Int32); - System.Byte _v = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_22764() { - System.Int32 _index = default(System.Int32); - System.Byte* _v = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_22765() { - System.UInt32 _index = default(System.UInt32); - System.Byte[] _v = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_22766() { - System.UInt32 _index = default(System.UInt32); - System.Byte _v = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_22767() { - System.UInt32 _index = default(System.UInt32); - System.Byte* _v = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_22768() { - System.UInt32 _index = default(System.UInt32); - System.UInt32[] _v = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_22769() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _v = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_22770() { - System.UInt32 _index = default(System.UInt32); - System.UInt32* _v = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_22771() { - System.UInt32 _index = default(System.UInt32); - System.UInt16[] _v = default(System.UInt16[]); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_22772() { - System.UInt32 _index = default(System.UInt32); - System.UInt16 _v = default(System.UInt16); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_22773() { - System.UInt32 _index = default(System.UInt32); - System.UInt16* _v = default(System.UInt16*); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttribBinding_22774() { - System.Int32 _attribindex = default(System.Int32); - System.Int32 _bindingindex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.VertexAttribBinding(_attribindex,_bindingindex); -} -static unsafe void Test_VertexAttribBinding_22775() { - System.UInt32 _attribindex = default(System.UInt32); - System.UInt32 _bindingindex = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.VertexAttribBinding(_attribindex,_bindingindex); -} -static unsafe void Test_VertexAttribDivisor_22776() { - System.Int32 _index = default(System.Int32); - System.Int32 _divisor = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.VertexAttribDivisor(_index,_divisor); -} -static unsafe void Test_VertexAttribDivisor_22777() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _divisor = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.VertexAttribDivisor(_index,_divisor); -} -static unsafe void Test_VertexAttribFormat_22778() { - System.Int32 _attribindex = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribType _type = default(OpenTK.Graphics.OpenGL.VertexAttribType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _relativeoffset = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.VertexAttribFormat(_attribindex,_size,_type,_normalized,_relativeoffset); -} -static unsafe void Test_VertexAttribFormat_22779() { - System.UInt32 _attribindex = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribType _type = default(OpenTK.Graphics.OpenGL.VertexAttribType); - System.Boolean _normalized = default(System.Boolean); - System.UInt32 _relativeoffset = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.VertexAttribFormat(_attribindex,_size,_type,_normalized,_relativeoffset); -} -static unsafe void Test_VertexAttribI1_22780() { - System.Int32 _index = default(System.Int32); - System.Int32 _x = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.VertexAttribI1(_index,_x); -} -static unsafe void Test_VertexAttribI1_22781() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _x = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.VertexAttribI1(_index,_x); -} -static unsafe void Test_VertexAttribI1_22782() { - System.Int32 _index = default(System.Int32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.VertexAttribI1(_index,_v); -} -static unsafe void Test_VertexAttribI1_22783() { - System.UInt32 _index = default(System.UInt32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.VertexAttribI1(_index,_v); -} -static unsafe void Test_VertexAttribI1_22784() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _x = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.VertexAttribI1(_index,_x); -} -static unsafe void Test_VertexAttribI1_22785() { - System.UInt32 _index = default(System.UInt32); - System.UInt32* _v = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.VertexAttribI1(_index,_v); -} -static unsafe void Test_VertexAttribI2_22786() { - System.Int32 _index = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.VertexAttribI2(_index,_x,_y); -} -static unsafe void Test_VertexAttribI2_22787() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.VertexAttribI2(_index,_x,_y); -} -static unsafe void Test_VertexAttribI2_22788() { - System.Int32 _index = default(System.Int32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.VertexAttribI2(_index,_v); -} -static unsafe void Test_VertexAttribI2_22789() { - System.Int32 _index = default(System.Int32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.VertexAttribI2(_index,ref _v); -} -static unsafe void Test_VertexAttribI2_22790() { - System.Int32 _index = default(System.Int32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.VertexAttribI2(_index,_v); -} -static unsafe void Test_VertexAttribI2_22791() { - System.UInt32 _index = default(System.UInt32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.VertexAttribI2(_index,_v); -} -static unsafe void Test_VertexAttribI2_22792() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.VertexAttribI2(_index,ref _v); -} -static unsafe void Test_VertexAttribI2_22793() { - System.UInt32 _index = default(System.UInt32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.VertexAttribI2(_index,_v); -} -static unsafe void Test_VertexAttribI2_22794() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _x = default(System.UInt32); - System.UInt32 _y = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.VertexAttribI2(_index,_x,_y); -} -static unsafe void Test_VertexAttribI2_22795() { - System.UInt32 _index = default(System.UInt32); - System.UInt32[] _v = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.VertexAttribI2(_index,_v); -} -static unsafe void Test_VertexAttribI2_22796() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _v = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.VertexAttribI2(_index,ref _v); -} -static unsafe void Test_VertexAttribI2_22797() { - System.UInt32 _index = default(System.UInt32); - System.UInt32* _v = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.VertexAttribI2(_index,_v); -} -static unsafe void Test_VertexAttribI3_22798() { - System.Int32 _index = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.VertexAttribI3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttribI3_22799() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.VertexAttribI3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttribI3_22800() { - System.Int32 _index = default(System.Int32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.VertexAttribI3(_index,_v); -} -static unsafe void Test_VertexAttribI3_22801() { - System.Int32 _index = default(System.Int32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.VertexAttribI3(_index,ref _v); -} -static unsafe void Test_VertexAttribI3_22802() { - System.Int32 _index = default(System.Int32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.VertexAttribI3(_index,_v); -} -static unsafe void Test_VertexAttribI3_22803() { - System.UInt32 _index = default(System.UInt32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.VertexAttribI3(_index,_v); -} -static unsafe void Test_VertexAttribI3_22804() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.VertexAttribI3(_index,ref _v); -} -static unsafe void Test_VertexAttribI3_22805() { - System.UInt32 _index = default(System.UInt32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.VertexAttribI3(_index,_v); -} -static unsafe void Test_VertexAttribI3_22806() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _x = default(System.UInt32); - System.UInt32 _y = default(System.UInt32); - System.UInt32 _z = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.VertexAttribI3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttribI3_22807() { - System.UInt32 _index = default(System.UInt32); - System.UInt32[] _v = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.VertexAttribI3(_index,_v); -} -static unsafe void Test_VertexAttribI3_22808() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _v = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.VertexAttribI3(_index,ref _v); -} -static unsafe void Test_VertexAttribI3_22809() { - System.UInt32 _index = default(System.UInt32); - System.UInt32* _v = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.VertexAttribI3(_index,_v); -} -static unsafe void Test_VertexAttribI4_22810() { - System.UInt32 _index = default(System.UInt32); - System.SByte[] _v = default(System.SByte[]); - OpenTK.Graphics.OpenGL.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_22811() { - System.UInt32 _index = default(System.UInt32); - System.SByte _v = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.VertexAttribI4(_index,ref _v); -} -static unsafe void Test_VertexAttribI4_22812() { - System.UInt32 _index = default(System.UInt32); - System.SByte* _v = default(System.SByte*); - OpenTK.Graphics.OpenGL.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_22813() { - System.Int32 _index = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - System.Int32 _w = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.VertexAttribI4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttribI4_22814() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - System.Int32 _w = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.VertexAttribI4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttribI4_22815() { - System.Int32 _index = default(System.Int32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_22816() { - System.Int32 _index = default(System.Int32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.VertexAttribI4(_index,ref _v); -} -static unsafe void Test_VertexAttribI4_22817() { - System.Int32 _index = default(System.Int32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_22818() { - System.UInt32 _index = default(System.UInt32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_22819() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.VertexAttribI4(_index,ref _v); -} -static unsafe void Test_VertexAttribI4_22820() { - System.UInt32 _index = default(System.UInt32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_22821() { - System.Int32 _index = default(System.Int32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_22822() { - System.Int32 _index = default(System.Int32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.VertexAttribI4(_index,ref _v); -} -static unsafe void Test_VertexAttribI4_22823() { - System.Int32 _index = default(System.Int32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_22824() { - System.UInt32 _index = default(System.UInt32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_22825() { - System.UInt32 _index = default(System.UInt32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.VertexAttribI4(_index,ref _v); -} -static unsafe void Test_VertexAttribI4_22826() { - System.UInt32 _index = default(System.UInt32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_22827() { - System.Int32 _index = default(System.Int32); - System.Byte[] _v = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_22828() { - System.Int32 _index = default(System.Int32); - System.Byte _v = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.VertexAttribI4(_index,ref _v); -} -static unsafe void Test_VertexAttribI4_22829() { - System.Int32 _index = default(System.Int32); - System.Byte* _v = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_22830() { - System.UInt32 _index = default(System.UInt32); - System.Byte[] _v = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_22831() { - System.UInt32 _index = default(System.UInt32); - System.Byte _v = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.VertexAttribI4(_index,ref _v); -} -static unsafe void Test_VertexAttribI4_22832() { - System.UInt32 _index = default(System.UInt32); - System.Byte* _v = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_22833() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _x = default(System.UInt32); - System.UInt32 _y = default(System.UInt32); - System.UInt32 _z = default(System.UInt32); - System.UInt32 _w = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.VertexAttribI4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttribI4_22834() { - System.UInt32 _index = default(System.UInt32); - System.UInt32[] _v = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_22835() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _v = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.VertexAttribI4(_index,ref _v); -} -static unsafe void Test_VertexAttribI4_22836() { - System.UInt32 _index = default(System.UInt32); - System.UInt32* _v = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_22837() { - System.UInt32 _index = default(System.UInt32); - System.UInt16[] _v = default(System.UInt16[]); - OpenTK.Graphics.OpenGL.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_22838() { - System.UInt32 _index = default(System.UInt32); - System.UInt16 _v = default(System.UInt16); - OpenTK.Graphics.OpenGL.GL.VertexAttribI4(_index,ref _v); -} -static unsafe void Test_VertexAttribI4_22839() { - System.UInt32 _index = default(System.UInt32); - System.UInt16* _v = default(System.UInt16*); - OpenTK.Graphics.OpenGL.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribIFormat_22840() { - System.Int32 _attribindex = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribIntegerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribIntegerType); - System.Int32 _relativeoffset = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.VertexAttribIFormat(_attribindex,_size,_type,_relativeoffset); -} -static unsafe void Test_VertexAttribIFormat_22841() { - System.UInt32 _attribindex = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribIntegerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribIntegerType); - System.UInt32 _relativeoffset = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.VertexAttribIFormat(_attribindex,_size,_type,_relativeoffset); -} -static unsafe void Test_VertexAttribIPointer_22842() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribIntegerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribIntegerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_22843() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribIntegerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribIntegerType); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_22844() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribIntegerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribIntegerType); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_22845() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribIntegerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribIntegerType); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_22846() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribIntegerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribIntegerType); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.VertexAttribIPointer(_index,_size,_type,_stride,ref _pointer); -} -static unsafe void Test_VertexAttribIPointer_22847() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribIPointerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribIPointerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_22848() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribIPointerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribIPointerType); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_22849() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribIPointerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribIPointerType); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_22850() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribIPointerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribIPointerType); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_22851() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribIPointerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribIPointerType); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.VertexAttribIPointer(_index,_size,_type,_stride,ref _pointer); -} -static unsafe void Test_VertexAttribIPointer_22852() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribIntegerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribIntegerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_22853() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribIntegerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribIntegerType); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_22854() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribIntegerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribIntegerType); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_22855() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribIntegerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribIntegerType); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_22856() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribIntegerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribIntegerType); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.VertexAttribIPointer(_index,_size,_type,_stride,ref _pointer); -} -static unsafe void Test_VertexAttribIPointer_22857() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribIPointerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribIPointerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_22858() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribIPointerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribIPointerType); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_22859() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribIPointerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribIPointerType); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_22860() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribIPointerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribIPointerType); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_22861() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribIPointerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribIPointerType); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.VertexAttribIPointer(_index,_size,_type,_stride,ref _pointer); -} -static unsafe void Test_VertexAttribL1_22862() { - System.Int32 _index = default(System.Int32); - System.Double _x = default(System.Double); - OpenTK.Graphics.OpenGL.GL.VertexAttribL1(_index,_x); -} -static unsafe void Test_VertexAttribL1_22863() { - System.UInt32 _index = default(System.UInt32); - System.Double _x = default(System.Double); - OpenTK.Graphics.OpenGL.GL.VertexAttribL1(_index,_x); -} -static unsafe void Test_VertexAttribL1_22864() { - System.Int32 _index = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.VertexAttribL1(_index,_v); -} -static unsafe void Test_VertexAttribL1_22865() { - System.UInt32 _index = default(System.UInt32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.VertexAttribL1(_index,_v); -} -static unsafe void Test_VertexAttribL2_22866() { - System.Int32 _index = default(System.Int32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - OpenTK.Graphics.OpenGL.GL.VertexAttribL2(_index,_x,_y); -} -static unsafe void Test_VertexAttribL2_22867() { - System.UInt32 _index = default(System.UInt32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - OpenTK.Graphics.OpenGL.GL.VertexAttribL2(_index,_x,_y); -} -static unsafe void Test_VertexAttribL2_22868() { - System.Int32 _index = default(System.Int32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.VertexAttribL2(_index,_v); -} -static unsafe void Test_VertexAttribL2_22869() { - System.Int32 _index = default(System.Int32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.VertexAttribL2(_index,ref _v); -} -static unsafe void Test_VertexAttribL2_22870() { - System.Int32 _index = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.VertexAttribL2(_index,_v); -} -static unsafe void Test_VertexAttribL2_22871() { - System.UInt32 _index = default(System.UInt32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.VertexAttribL2(_index,_v); -} -static unsafe void Test_VertexAttribL2_22872() { - System.UInt32 _index = default(System.UInt32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.VertexAttribL2(_index,ref _v); -} -static unsafe void Test_VertexAttribL2_22873() { - System.UInt32 _index = default(System.UInt32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.VertexAttribL2(_index,_v); -} -static unsafe void Test_VertexAttribL3_22874() { - System.Int32 _index = default(System.Int32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - OpenTK.Graphics.OpenGL.GL.VertexAttribL3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttribL3_22875() { - System.UInt32 _index = default(System.UInt32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - OpenTK.Graphics.OpenGL.GL.VertexAttribL3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttribL3_22876() { - System.Int32 _index = default(System.Int32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.VertexAttribL3(_index,_v); -} -static unsafe void Test_VertexAttribL3_22877() { - System.Int32 _index = default(System.Int32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.VertexAttribL3(_index,ref _v); -} -static unsafe void Test_VertexAttribL3_22878() { - System.Int32 _index = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.VertexAttribL3(_index,_v); -} -static unsafe void Test_VertexAttribL3_22879() { - System.UInt32 _index = default(System.UInt32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.VertexAttribL3(_index,_v); -} -static unsafe void Test_VertexAttribL3_22880() { - System.UInt32 _index = default(System.UInt32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.VertexAttribL3(_index,ref _v); -} -static unsafe void Test_VertexAttribL3_22881() { - System.UInt32 _index = default(System.UInt32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.VertexAttribL3(_index,_v); -} -static unsafe void Test_VertexAttribL4_22882() { - System.Int32 _index = default(System.Int32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - System.Double _w = default(System.Double); - OpenTK.Graphics.OpenGL.GL.VertexAttribL4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttribL4_22883() { - System.UInt32 _index = default(System.UInt32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - System.Double _w = default(System.Double); - OpenTK.Graphics.OpenGL.GL.VertexAttribL4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttribL4_22884() { - System.Int32 _index = default(System.Int32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.VertexAttribL4(_index,_v); -} -static unsafe void Test_VertexAttribL4_22885() { - System.Int32 _index = default(System.Int32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.VertexAttribL4(_index,ref _v); -} -static unsafe void Test_VertexAttribL4_22886() { - System.Int32 _index = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.VertexAttribL4(_index,_v); -} -static unsafe void Test_VertexAttribL4_22887() { - System.UInt32 _index = default(System.UInt32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.VertexAttribL4(_index,_v); -} -static unsafe void Test_VertexAttribL4_22888() { - System.UInt32 _index = default(System.UInt32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.VertexAttribL4(_index,ref _v); -} -static unsafe void Test_VertexAttribL4_22889() { - System.UInt32 _index = default(System.UInt32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.VertexAttribL4(_index,_v); -} -static unsafe void Test_VertexAttribLFormat_22890() { - System.Int32 _attribindex = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribDoubleType _type = default(OpenTK.Graphics.OpenGL.VertexAttribDoubleType); - System.Int32 _relativeoffset = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.VertexAttribLFormat(_attribindex,_size,_type,_relativeoffset); -} -static unsafe void Test_VertexAttribLFormat_22891() { - System.UInt32 _attribindex = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribDoubleType _type = default(OpenTK.Graphics.OpenGL.VertexAttribDoubleType); - System.UInt32 _relativeoffset = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.VertexAttribLFormat(_attribindex,_size,_type,_relativeoffset); -} -static unsafe void Test_VertexAttribLPointer_22892() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribDoubleType _type = default(OpenTK.Graphics.OpenGL.VertexAttribDoubleType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.VertexAttribLPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribLPointer_22893() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribDoubleType _type = default(OpenTK.Graphics.OpenGL.VertexAttribDoubleType); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.VertexAttribLPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribLPointer_22894() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribDoubleType _type = default(OpenTK.Graphics.OpenGL.VertexAttribDoubleType); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.VertexAttribLPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribLPointer_22895() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribDoubleType _type = default(OpenTK.Graphics.OpenGL.VertexAttribDoubleType); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.VertexAttribLPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribLPointer_22896() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribDoubleType _type = default(OpenTK.Graphics.OpenGL.VertexAttribDoubleType); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.VertexAttribLPointer(_index,_size,_type,_stride,ref _pointer); -} -static unsafe void Test_VertexAttribLPointer_22897() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribDPointerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribDPointerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.VertexAttribLPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribLPointer_22898() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribDPointerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribDPointerType); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.VertexAttribLPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribLPointer_22899() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribDPointerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribDPointerType); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.VertexAttribLPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribLPointer_22900() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribDPointerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribDPointerType); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.VertexAttribLPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribLPointer_22901() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribDPointerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribDPointerType); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.VertexAttribLPointer(_index,_size,_type,_stride,ref _pointer); -} -static unsafe void Test_VertexAttribLPointer_22902() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribDoubleType _type = default(OpenTK.Graphics.OpenGL.VertexAttribDoubleType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.VertexAttribLPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribLPointer_22903() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribDoubleType _type = default(OpenTK.Graphics.OpenGL.VertexAttribDoubleType); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.VertexAttribLPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribLPointer_22904() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribDoubleType _type = default(OpenTK.Graphics.OpenGL.VertexAttribDoubleType); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.VertexAttribLPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribLPointer_22905() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribDoubleType _type = default(OpenTK.Graphics.OpenGL.VertexAttribDoubleType); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.VertexAttribLPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribLPointer_22906() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribDoubleType _type = default(OpenTK.Graphics.OpenGL.VertexAttribDoubleType); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.VertexAttribLPointer(_index,_size,_type,_stride,ref _pointer); -} -static unsafe void Test_VertexAttribLPointer_22907() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribDPointerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribDPointerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.VertexAttribLPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribLPointer_22908() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribDPointerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribDPointerType); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.VertexAttribLPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribLPointer_22909() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribDPointerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribDPointerType); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.VertexAttribLPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribLPointer_22910() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribDPointerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribDPointerType); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.VertexAttribLPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribLPointer_22911() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribDPointerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribDPointerType); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.VertexAttribLPointer(_index,_size,_type,_stride,ref _pointer); -} -static unsafe void Test_VertexAttribP1_22912() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.VertexAttribP1(_index,_type,_normalized,_value); -} -static unsafe void Test_VertexAttribP1_22913() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Boolean _normalized = default(System.Boolean); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.VertexAttribP1(_index,_type,_normalized,_value); -} -static unsafe void Test_VertexAttribP1_22914() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.VertexAttribP1(_index,_type,_normalized,_value); -} -static unsafe void Test_VertexAttribP1_22915() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Boolean _normalized = default(System.Boolean); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.VertexAttribP1(_index,_type,_normalized,_value); -} -static unsafe void Test_VertexAttribP2_22916() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.VertexAttribP2(_index,_type,_normalized,_value); -} -static unsafe void Test_VertexAttribP2_22917() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Boolean _normalized = default(System.Boolean); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.VertexAttribP2(_index,_type,_normalized,_value); -} -static unsafe void Test_VertexAttribP2_22918() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.VertexAttribP2(_index,_type,_normalized,_value); -} -static unsafe void Test_VertexAttribP2_22919() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Boolean _normalized = default(System.Boolean); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.VertexAttribP2(_index,_type,_normalized,_value); -} -static unsafe void Test_VertexAttribP3_22920() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.VertexAttribP3(_index,_type,_normalized,_value); -} -static unsafe void Test_VertexAttribP3_22921() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Boolean _normalized = default(System.Boolean); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.VertexAttribP3(_index,_type,_normalized,_value); -} -static unsafe void Test_VertexAttribP3_22922() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.VertexAttribP3(_index,_type,_normalized,_value); -} -static unsafe void Test_VertexAttribP3_22923() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Boolean _normalized = default(System.Boolean); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.VertexAttribP3(_index,_type,_normalized,_value); -} -static unsafe void Test_VertexAttribP4_22924() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.VertexAttribP4(_index,_type,_normalized,_value); -} -static unsafe void Test_VertexAttribP4_22925() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Boolean _normalized = default(System.Boolean); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.VertexAttribP4(_index,_type,_normalized,_value); -} -static unsafe void Test_VertexAttribP4_22926() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.VertexAttribP4(_index,_type,_normalized,_value); -} -static unsafe void Test_VertexAttribP4_22927() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Boolean _normalized = default(System.Boolean); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.VertexAttribP4(_index,_type,_normalized,_value); -} -static unsafe void Test_VertexAttribPointer_22928() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribPointerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_22929() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribPointerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_22930() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribPointerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_22931() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribPointerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_22932() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribPointerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,ref _pointer); -} -static unsafe void Test_VertexAttribPointer_22933() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribPointerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_22934() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribPointerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_22935() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribPointerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_22936() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribPointerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_22937() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribPointerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,ref _pointer); -} -static unsafe void Test_VertexBindingDivisor_22938() { - System.Int32 _bindingindex = default(System.Int32); - System.Int32 _divisor = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.VertexBindingDivisor(_bindingindex,_divisor); -} -static unsafe void Test_VertexBindingDivisor_22939() { - System.UInt32 _bindingindex = default(System.UInt32); - System.UInt32 _divisor = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.VertexBindingDivisor(_bindingindex,_divisor); -} -static unsafe void Test_VertexP2_22940() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.VertexP2(_type,_value); -} -static unsafe void Test_VertexP2_22941() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.VertexP2(_type,_value); -} -static unsafe void Test_VertexP2_22942() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.VertexP2(_type,_value); -} -static unsafe void Test_VertexP2_22943() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.VertexP2(_type,_value); -} -static unsafe void Test_VertexP3_22944() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.VertexP3(_type,_value); -} -static unsafe void Test_VertexP3_22945() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.VertexP3(_type,_value); -} -static unsafe void Test_VertexP3_22946() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.VertexP3(_type,_value); -} -static unsafe void Test_VertexP3_22947() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.VertexP3(_type,_value); -} -static unsafe void Test_VertexP4_22948() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.VertexP4(_type,_value); -} -static unsafe void Test_VertexP4_22949() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.VertexP4(_type,_value); -} -static unsafe void Test_VertexP4_22950() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.VertexP4(_type,_value); -} -static unsafe void Test_VertexP4_22951() { - OpenTK.Graphics.OpenGL.PackedPointerType _type = default(OpenTK.Graphics.OpenGL.PackedPointerType); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.VertexP4(_type,_value); -} -static unsafe void Test_VertexPointer_22952() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexPointerType _type = default(OpenTK.Graphics.OpenGL.VertexPointerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.VertexPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexPointer_22953() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexPointerType _type = default(OpenTK.Graphics.OpenGL.VertexPointerType); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.VertexPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexPointer_22954() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexPointerType _type = default(OpenTK.Graphics.OpenGL.VertexPointerType); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.VertexPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexPointer_22955() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexPointerType _type = default(OpenTK.Graphics.OpenGL.VertexPointerType); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.VertexPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexPointer_22956() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexPointerType _type = default(OpenTK.Graphics.OpenGL.VertexPointerType); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.VertexPointer(_size,_type,_stride,ref _pointer); -} -static unsafe void Test_Viewport_22957() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Viewport(_x,_y,_width,_height); -} -static unsafe void Test_ViewportArray_22958() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.ViewportArray(_first,_count,_v); -} -static unsafe void Test_ViewportArray_22959() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ViewportArray(_first,_count,ref _v); -} -static unsafe void Test_ViewportArray_22960() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.ViewportArray(_first,_count,_v); -} -static unsafe void Test_ViewportArray_22961() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.ViewportArray(_first,_count,_v); -} -static unsafe void Test_ViewportArray_22962() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ViewportArray(_first,_count,ref _v); -} -static unsafe void Test_ViewportArray_22963() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.ViewportArray(_first,_count,_v); -} -static unsafe void Test_ViewportIndexed_22964() { - System.Int32 _index = default(System.Int32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _w = default(System.Single); - System.Single _h = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ViewportIndexed(_index,_x,_y,_w,_h); -} -static unsafe void Test_ViewportIndexed_22965() { - System.UInt32 _index = default(System.UInt32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _w = default(System.Single); - System.Single _h = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ViewportIndexed(_index,_x,_y,_w,_h); -} -static unsafe void Test_ViewportIndexed_22966() { - System.Int32 _index = default(System.Int32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.ViewportIndexed(_index,_v); -} -static unsafe void Test_ViewportIndexed_22967() { - System.Int32 _index = default(System.Int32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ViewportIndexed(_index,ref _v); -} -static unsafe void Test_ViewportIndexed_22968() { - System.Int32 _index = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.ViewportIndexed(_index,_v); -} -static unsafe void Test_ViewportIndexed_22969() { - System.UInt32 _index = default(System.UInt32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.ViewportIndexed(_index,_v); -} -static unsafe void Test_ViewportIndexed_22970() { - System.UInt32 _index = default(System.UInt32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.ViewportIndexed(_index,ref _v); -} -static unsafe void Test_ViewportIndexed_22971() { - System.UInt32 _index = default(System.UInt32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.ViewportIndexed(_index,_v); -} -static unsafe void Test_WaitSync_22972() { - System.IntPtr _sync = default(System.IntPtr); - System.Int32 _flags = default(System.Int32); - System.Int64 _timeout = default(System.Int64); - OpenTK.Graphics.OpenGL.WaitSyncStatus r = OpenTK.Graphics.OpenGL.GL.WaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_WaitSync_22973() { - System.IntPtr _sync = default(System.IntPtr); - System.Int32 _flags = default(System.Int32); - System.UInt64 _timeout = default(System.UInt64); - OpenTK.Graphics.OpenGL.WaitSyncStatus r = OpenTK.Graphics.OpenGL.GL.WaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_WaitSync_22974() { - System.IntPtr _sync = default(System.IntPtr); - System.UInt32 _flags = default(System.UInt32); - System.UInt64 _timeout = default(System.UInt64); - OpenTK.Graphics.OpenGL.WaitSyncStatus r = OpenTK.Graphics.OpenGL.GL.WaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_WaitSync_22975() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.OpenGL.WaitSyncFlags _flags = default(OpenTK.Graphics.OpenGL.WaitSyncFlags); - System.Int64 _timeout = default(System.Int64); - OpenTK.Graphics.OpenGL.WaitSyncStatus r = OpenTK.Graphics.OpenGL.GL.WaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_WaitSync_22976() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.OpenGL.WaitSyncFlags _flags = default(OpenTK.Graphics.OpenGL.WaitSyncFlags); - System.UInt64 _timeout = default(System.UInt64); - OpenTK.Graphics.OpenGL.WaitSyncStatus r = OpenTK.Graphics.OpenGL.GL.WaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_WindowPos2_22977() { - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - OpenTK.Graphics.OpenGL.GL.WindowPos2(_x,_y); -} -static unsafe void Test_WindowPos2_22978() { - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.WindowPos2(_v); -} -static unsafe void Test_WindowPos2_22979() { - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.WindowPos2(ref _v); -} -static unsafe void Test_WindowPos2_22980() { - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.WindowPos2(_v); -} -static unsafe void Test_WindowPos2_22981() { - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - OpenTK.Graphics.OpenGL.GL.WindowPos2(_x,_y); -} -static unsafe void Test_WindowPos2_22982() { - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.WindowPos2(_v); -} -static unsafe void Test_WindowPos2_22983() { - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.WindowPos2(ref _v); -} -static unsafe void Test_WindowPos2_22984() { - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.WindowPos2(_v); -} -static unsafe void Test_WindowPos2_22985() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.WindowPos2(_x,_y); -} -static unsafe void Test_WindowPos2_22986() { - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.WindowPos2(_v); -} -static unsafe void Test_WindowPos2_22987() { - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.WindowPos2(ref _v); -} -static unsafe void Test_WindowPos2_22988() { - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.WindowPos2(_v); -} -static unsafe void Test_WindowPos2_22989() { - System.Int16 _x = default(System.Int16); - System.Int16 _y = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.WindowPos2(_x,_y); -} -static unsafe void Test_WindowPos2_22990() { - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.WindowPos2(_v); -} -static unsafe void Test_WindowPos2_22991() { - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.WindowPos2(ref _v); -} -static unsafe void Test_WindowPos2_22992() { - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.WindowPos2(_v); -} -static unsafe void Test_WindowPos3_22993() { - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - OpenTK.Graphics.OpenGL.GL.WindowPos3(_x,_y,_z); -} -static unsafe void Test_WindowPos3_22994() { - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.WindowPos3(_v); -} -static unsafe void Test_WindowPos3_22995() { - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.WindowPos3(ref _v); -} -static unsafe void Test_WindowPos3_22996() { - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.WindowPos3(_v); -} -static unsafe void Test_WindowPos3_22997() { - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.WindowPos3(_x,_y,_z); -} -static unsafe void Test_WindowPos3_22998() { - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.WindowPos3(_v); -} -static unsafe void Test_WindowPos3_22999() { - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.WindowPos3(ref _v); -} -static unsafe void Test_WindowPos3_23000() { - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.WindowPos3(_v); -} -static unsafe void Test_WindowPos3_23001() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.WindowPos3(_x,_y,_z); -} -static unsafe void Test_WindowPos3_23002() { - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.WindowPos3(_v); -} -static unsafe void Test_WindowPos3_23003() { - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.WindowPos3(ref _v); -} -static unsafe void Test_WindowPos3_23004() { - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.WindowPos3(_v); -} -static unsafe void Test_WindowPos3_23005() { - System.Int16 _x = default(System.Int16); - System.Int16 _y = default(System.Int16); - System.Int16 _z = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.WindowPos3(_x,_y,_z); -} -static unsafe void Test_WindowPos3_23006() { - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.WindowPos3(_v); -} -static unsafe void Test_WindowPos3_23007() { - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.WindowPos3(ref _v); -} -static unsafe void Test_WindowPos3_23008() { - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.WindowPos3(_v); -} - -static unsafe void Test_LoadAll_23010() { - OpenTK.Graphics.OpenGL.GL.LoadAll(); -} -static unsafe void Test_Color3_23011() { - System.Drawing.Color _color = default(System.Drawing.Color); - OpenTK.Graphics.OpenGL.GL.Color3(_color); -} -static unsafe void Test_Color4_23012() { - System.Drawing.Color _color = default(System.Drawing.Color); - OpenTK.Graphics.OpenGL.GL.Color4(_color); -} -static unsafe void Test_Color3_23013() { - OpenTK.Vector3 _color = default(OpenTK.Vector3); - OpenTK.Graphics.OpenGL.GL.Color3(_color); -} -static unsafe void Test_Color4_23014() { - OpenTK.Vector4 _color = default(OpenTK.Vector4); - OpenTK.Graphics.OpenGL.GL.Color4(_color); -} -static unsafe void Test_Color4_23015() { - OpenTK.Graphics.Color4 _color = default(OpenTK.Graphics.Color4); - OpenTK.Graphics.OpenGL.GL.Color4(_color); -} -static unsafe void Test_ClearColor_23016() { - System.Drawing.Color _color = default(System.Drawing.Color); - OpenTK.Graphics.OpenGL.GL.ClearColor(_color); -} -static unsafe void Test_ClearColor_23017() { - OpenTK.Graphics.Color4 _color = default(OpenTK.Graphics.Color4); - OpenTK.Graphics.OpenGL.GL.ClearColor(_color); -} -static unsafe void Test_BlendColor_23018() { - System.Drawing.Color _color = default(System.Drawing.Color); - OpenTK.Graphics.OpenGL.GL.BlendColor(_color); -} -static unsafe void Test_BlendColor_23019() { - OpenTK.Graphics.Color4 _color = default(OpenTK.Graphics.Color4); - OpenTK.Graphics.OpenGL.GL.BlendColor(_color); -} -static unsafe void Test_Material_23020() { - OpenTK.Graphics.OpenGL.MaterialFace _face = default(OpenTK.Graphics.OpenGL.MaterialFace); - OpenTK.Graphics.OpenGL.MaterialParameter _pname = default(OpenTK.Graphics.OpenGL.MaterialParameter); - OpenTK.Vector4 _params = default(OpenTK.Vector4); - OpenTK.Graphics.OpenGL.GL.Material(_face,_pname,_params); -} -static unsafe void Test_Material_23021() { - OpenTK.Graphics.OpenGL.MaterialFace _face = default(OpenTK.Graphics.OpenGL.MaterialFace); - OpenTK.Graphics.OpenGL.MaterialParameter _pname = default(OpenTK.Graphics.OpenGL.MaterialParameter); - OpenTK.Graphics.Color4 _params = default(OpenTK.Graphics.Color4); - OpenTK.Graphics.OpenGL.GL.Material(_face,_pname,_params); -} -static unsafe void Test_Light_23022() { - OpenTK.Graphics.OpenGL.LightName _name = default(OpenTK.Graphics.OpenGL.LightName); - OpenTK.Graphics.OpenGL.LightParameter _pname = default(OpenTK.Graphics.OpenGL.LightParameter); - OpenTK.Vector4 _params = default(OpenTK.Vector4); - OpenTK.Graphics.OpenGL.GL.Light(_name,_pname,_params); -} -static unsafe void Test_Light_23023() { - OpenTK.Graphics.OpenGL.LightName _name = default(OpenTK.Graphics.OpenGL.LightName); - OpenTK.Graphics.OpenGL.LightParameter _pname = default(OpenTK.Graphics.OpenGL.LightParameter); - OpenTK.Graphics.Color4 _params = default(OpenTK.Graphics.Color4); - OpenTK.Graphics.OpenGL.GL.Light(_name,_pname,_params); -} -static unsafe void Test_Normal3_23024() { - OpenTK.Vector3 _normal = default(OpenTK.Vector3); - OpenTK.Graphics.OpenGL.GL.Normal3(_normal); -} -static unsafe void Test_RasterPos2_23025() { - OpenTK.Vector2 _pos = default(OpenTK.Vector2); - OpenTK.Graphics.OpenGL.GL.RasterPos2(_pos); -} -static unsafe void Test_RasterPos3_23026() { - OpenTK.Vector3 _pos = default(OpenTK.Vector3); - OpenTK.Graphics.OpenGL.GL.RasterPos3(_pos); -} -static unsafe void Test_RasterPos4_23027() { - OpenTK.Vector4 _pos = default(OpenTK.Vector4); - OpenTK.Graphics.OpenGL.GL.RasterPos4(_pos); -} -static unsafe void Test_Vertex2_23028() { - OpenTK.Vector2 _v = default(OpenTK.Vector2); - OpenTK.Graphics.OpenGL.GL.Vertex2(_v); -} -static unsafe void Test_Vertex3_23029() { - OpenTK.Vector3 _v = default(OpenTK.Vector3); - OpenTK.Graphics.OpenGL.GL.Vertex3(_v); -} -static unsafe void Test_Vertex4_23030() { - OpenTK.Vector4 _v = default(OpenTK.Vector4); - OpenTK.Graphics.OpenGL.GL.Vertex4(_v); -} -static unsafe void Test_TexCoord2_23031() { - OpenTK.Vector2 _v = default(OpenTK.Vector2); - OpenTK.Graphics.OpenGL.GL.TexCoord2(_v); -} -static unsafe void Test_TexCoord3_23032() { - OpenTK.Vector3 _v = default(OpenTK.Vector3); - OpenTK.Graphics.OpenGL.GL.TexCoord3(_v); -} -static unsafe void Test_TexCoord4_23033() { - OpenTK.Vector4 _v = default(OpenTK.Vector4); - OpenTK.Graphics.OpenGL.GL.TexCoord4(_v); -} -static unsafe void Test_Rotate_23034() { - System.Single _angle = default(System.Single); - OpenTK.Vector3 _axis = default(OpenTK.Vector3); - OpenTK.Graphics.OpenGL.GL.Rotate(_angle,_axis); -} -static unsafe void Test_Scale_23035() { - OpenTK.Vector3 _scale = default(OpenTK.Vector3); - OpenTK.Graphics.OpenGL.GL.Scale(_scale); -} -static unsafe void Test_Translate_23036() { - OpenTK.Vector3 _trans = default(OpenTK.Vector3); - OpenTK.Graphics.OpenGL.GL.Translate(_trans); -} -static unsafe void Test_MultMatrix_23037() { - OpenTK.Matrix4 _mat = default(OpenTK.Matrix4); - OpenTK.Graphics.OpenGL.GL.MultMatrix(ref _mat); -} -static unsafe void Test_LoadMatrix_23038() { - OpenTK.Matrix4 _mat = default(OpenTK.Matrix4); - OpenTK.Graphics.OpenGL.GL.LoadMatrix(ref _mat); -} -static unsafe void Test_LoadTransposeMatrix_23039() { - OpenTK.Matrix4 _mat = default(OpenTK.Matrix4); - OpenTK.Graphics.OpenGL.GL.LoadTransposeMatrix(ref _mat); -} -static unsafe void Test_MultTransposeMatrix_23040() { - OpenTK.Matrix4 _mat = default(OpenTK.Matrix4); - OpenTK.Graphics.OpenGL.GL.MultTransposeMatrix(ref _mat); -} -static unsafe void Test_Normal3_23041() { - OpenTK.Vector3d _normal = default(OpenTK.Vector3d); - OpenTK.Graphics.OpenGL.GL.Normal3(_normal); -} -static unsafe void Test_RasterPos2_23042() { - OpenTK.Vector2d _pos = default(OpenTK.Vector2d); - OpenTK.Graphics.OpenGL.GL.RasterPos2(_pos); -} -static unsafe void Test_RasterPos3_23043() { - OpenTK.Vector3d _pos = default(OpenTK.Vector3d); - OpenTK.Graphics.OpenGL.GL.RasterPos3(_pos); -} -static unsafe void Test_RasterPos4_23044() { - OpenTK.Vector4d _pos = default(OpenTK.Vector4d); - OpenTK.Graphics.OpenGL.GL.RasterPos4(_pos); -} -static unsafe void Test_Vertex2_23045() { - OpenTK.Vector2d _v = default(OpenTK.Vector2d); - OpenTK.Graphics.OpenGL.GL.Vertex2(_v); -} -static unsafe void Test_Vertex3_23046() { - OpenTK.Vector3d _v = default(OpenTK.Vector3d); - OpenTK.Graphics.OpenGL.GL.Vertex3(_v); -} -static unsafe void Test_Vertex4_23047() { - OpenTK.Vector4d _v = default(OpenTK.Vector4d); - OpenTK.Graphics.OpenGL.GL.Vertex4(_v); -} -static unsafe void Test_TexCoord2_23048() { - OpenTK.Vector2d _v = default(OpenTK.Vector2d); - OpenTK.Graphics.OpenGL.GL.TexCoord2(_v); -} -static unsafe void Test_TexCoord3_23049() { - OpenTK.Vector3d _v = default(OpenTK.Vector3d); - OpenTK.Graphics.OpenGL.GL.TexCoord3(_v); -} -static unsafe void Test_TexCoord4_23050() { - OpenTK.Vector4d _v = default(OpenTK.Vector4d); - OpenTK.Graphics.OpenGL.GL.TexCoord4(_v); -} -static unsafe void Test_Rotate_23051() { - System.Double _angle = default(System.Double); - OpenTK.Vector3d _axis = default(OpenTK.Vector3d); - OpenTK.Graphics.OpenGL.GL.Rotate(_angle,_axis); -} -static unsafe void Test_Scale_23052() { - OpenTK.Vector3d _scale = default(OpenTK.Vector3d); - OpenTK.Graphics.OpenGL.GL.Scale(_scale); -} -static unsafe void Test_Translate_23053() { - OpenTK.Vector3d _trans = default(OpenTK.Vector3d); - OpenTK.Graphics.OpenGL.GL.Translate(_trans); -} -static unsafe void Test_MultMatrix_23054() { - OpenTK.Matrix4d _mat = default(OpenTK.Matrix4d); - OpenTK.Graphics.OpenGL.GL.MultMatrix(ref _mat); -} -static unsafe void Test_LoadMatrix_23055() { - OpenTK.Matrix4d _mat = default(OpenTK.Matrix4d); - OpenTK.Graphics.OpenGL.GL.LoadMatrix(ref _mat); -} -static unsafe void Test_LoadTransposeMatrix_23056() { - OpenTK.Matrix4d _mat = default(OpenTK.Matrix4d); - OpenTK.Graphics.OpenGL.GL.LoadTransposeMatrix(ref _mat); -} -static unsafe void Test_MultTransposeMatrix_23057() { - OpenTK.Matrix4d _mat = default(OpenTK.Matrix4d); - OpenTK.Graphics.OpenGL.GL.MultTransposeMatrix(ref _mat); -} -static unsafe void Test_Uniform2_23058() { - System.Int32 _location = default(System.Int32); - OpenTK.Vector2 _vector = default(OpenTK.Vector2); - OpenTK.Graphics.OpenGL.GL.Uniform2(_location,ref _vector); -} -static unsafe void Test_Uniform3_23059() { - System.Int32 _location = default(System.Int32); - OpenTK.Vector3 _vector = default(OpenTK.Vector3); - OpenTK.Graphics.OpenGL.GL.Uniform3(_location,ref _vector); -} -static unsafe void Test_Uniform4_23060() { - System.Int32 _location = default(System.Int32); - OpenTK.Vector4 _vector = default(OpenTK.Vector4); - OpenTK.Graphics.OpenGL.GL.Uniform4(_location,ref _vector); -} -static unsafe void Test_Uniform2_23061() { - System.Int32 _location = default(System.Int32); - OpenTK.Vector2 _vector = default(OpenTK.Vector2); - OpenTK.Graphics.OpenGL.GL.Uniform2(_location,_vector); -} -static unsafe void Test_Uniform3_23062() { - System.Int32 _location = default(System.Int32); - OpenTK.Vector3 _vector = default(OpenTK.Vector3); - OpenTK.Graphics.OpenGL.GL.Uniform3(_location,_vector); -} -static unsafe void Test_Uniform4_23063() { - System.Int32 _location = default(System.Int32); - OpenTK.Vector4 _vector = default(OpenTK.Vector4); - OpenTK.Graphics.OpenGL.GL.Uniform4(_location,_vector); -} -static unsafe void Test_Uniform4_23064() { - System.Int32 _location = default(System.Int32); - OpenTK.Graphics.Color4 _color = default(OpenTK.Graphics.Color4); - OpenTK.Graphics.OpenGL.GL.Uniform4(_location,_color); -} -static unsafe void Test_Uniform4_23065() { - System.Int32 _location = default(System.Int32); - OpenTK.Quaternion _quaternion = default(OpenTK.Quaternion); - OpenTK.Graphics.OpenGL.GL.Uniform4(_location,_quaternion); -} -static unsafe void Test_UniformMatrix2_23066() { - System.Int32 _location = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - OpenTK.Matrix2 _matrix = default(OpenTK.Matrix2); - OpenTK.Graphics.OpenGL.GL.UniformMatrix2(_location,_transpose,ref _matrix); -} -static unsafe void Test_UniformMatrix2_23067() { - System.Int32 _location = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - OpenTK.Matrix2d _matrix = default(OpenTK.Matrix2d); - OpenTK.Graphics.OpenGL.GL.UniformMatrix2(_location,_transpose,ref _matrix); -} -static unsafe void Test_UniformMatrix2x3_23068() { - System.Int32 _location = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - OpenTK.Matrix2x3 _matrix = default(OpenTK.Matrix2x3); - OpenTK.Graphics.OpenGL.GL.UniformMatrix2x3(_location,_transpose,ref _matrix); -} -static unsafe void Test_UniformMatrix2x3_23069() { - System.Int32 _location = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - OpenTK.Matrix2x3d _matrix = default(OpenTK.Matrix2x3d); - OpenTK.Graphics.OpenGL.GL.UniformMatrix2x3(_location,_transpose,ref _matrix); -} -static unsafe void Test_UniformMatrix2x4_23070() { - System.Int32 _location = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - OpenTK.Matrix2x4 _matrix = default(OpenTK.Matrix2x4); - OpenTK.Graphics.OpenGL.GL.UniformMatrix2x4(_location,_transpose,ref _matrix); -} -static unsafe void Test_UniformMatrix2x4_23071() { - System.Int32 _location = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - OpenTK.Matrix2x4d _matrix = default(OpenTK.Matrix2x4d); - OpenTK.Graphics.OpenGL.GL.UniformMatrix2x4(_location,_transpose,ref _matrix); -} -static unsafe void Test_UniformMatrix3x2_23072() { - System.Int32 _location = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - OpenTK.Matrix3x2 _matrix = default(OpenTK.Matrix3x2); - OpenTK.Graphics.OpenGL.GL.UniformMatrix3x2(_location,_transpose,ref _matrix); -} -static unsafe void Test_UniformMatrix3x2_23073() { - System.Int32 _location = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - OpenTK.Matrix3x2d _matrix = default(OpenTK.Matrix3x2d); - OpenTK.Graphics.OpenGL.GL.UniformMatrix3x2(_location,_transpose,ref _matrix); -} -static unsafe void Test_UniformMatrix3_23074() { - System.Int32 _location = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - OpenTK.Matrix3 _matrix = default(OpenTK.Matrix3); - OpenTK.Graphics.OpenGL.GL.UniformMatrix3(_location,_transpose,ref _matrix); -} -static unsafe void Test_UniformMatrix3_23075() { - System.Int32 _location = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - OpenTK.Matrix3d _matrix = default(OpenTK.Matrix3d); - OpenTK.Graphics.OpenGL.GL.UniformMatrix3(_location,_transpose,ref _matrix); -} -static unsafe void Test_UniformMatrix3x4_23076() { - System.Int32 _location = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - OpenTK.Matrix3x4 _matrix = default(OpenTK.Matrix3x4); - OpenTK.Graphics.OpenGL.GL.UniformMatrix3x4(_location,_transpose,ref _matrix); -} -static unsafe void Test_UniformMatrix3x4_23077() { - System.Int32 _location = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - OpenTK.Matrix3x4d _matrix = default(OpenTK.Matrix3x4d); - OpenTK.Graphics.OpenGL.GL.UniformMatrix3x4(_location,_transpose,ref _matrix); -} -static unsafe void Test_UniformMatrix4x2_23078() { - System.Int32 _location = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - OpenTK.Matrix4x2 _matrix = default(OpenTK.Matrix4x2); - OpenTK.Graphics.OpenGL.GL.UniformMatrix4x2(_location,_transpose,ref _matrix); -} -static unsafe void Test_UniformMatrix4x2_23079() { - System.Int32 _location = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - OpenTK.Matrix4x2d _matrix = default(OpenTK.Matrix4x2d); - OpenTK.Graphics.OpenGL.GL.UniformMatrix4x2(_location,_transpose,ref _matrix); -} -static unsafe void Test_UniformMatrix4x3_23080() { - System.Int32 _location = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - OpenTK.Matrix4x3 _matrix = default(OpenTK.Matrix4x3); - OpenTK.Graphics.OpenGL.GL.UniformMatrix4x3(_location,_transpose,ref _matrix); -} -static unsafe void Test_UniformMatrix4x3_23081() { - System.Int32 _location = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - OpenTK.Matrix4x3d _matrix = default(OpenTK.Matrix4x3d); - OpenTK.Graphics.OpenGL.GL.UniformMatrix4x3(_location,_transpose,ref _matrix); -} -static unsafe void Test_UniformMatrix4_23082() { - System.Int32 _location = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - OpenTK.Matrix4 _matrix = default(OpenTK.Matrix4); - OpenTK.Graphics.OpenGL.GL.UniformMatrix4(_location,_transpose,ref _matrix); -} -static unsafe void Test_UniformMatrix4_23083() { - System.Int32 _location = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - OpenTK.Matrix4d _matrix = default(OpenTK.Matrix4d); - OpenTK.Graphics.OpenGL.GL.UniformMatrix4(_location,_transpose,ref _matrix); -} -static unsafe void Test_GetActiveAttrib_23084() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ActiveAttribType _type = default(OpenTK.Graphics.OpenGL.ActiveAttribType); - System.String r = OpenTK.Graphics.OpenGL.GL.GetActiveAttrib(_program,_index,out _size,out _type); -} -static unsafe void Test_GetActiveUniform_23085() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformIndex = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ActiveUniformType _type = default(OpenTK.Graphics.OpenGL.ActiveUniformType); - System.String r = OpenTK.Graphics.OpenGL.GL.GetActiveUniform(_program,_uniformIndex,out _size,out _type); -} -static unsafe void Test_GetActiveUniformName_23086() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformIndex = default(System.Int32); - System.String r = OpenTK.Graphics.OpenGL.GL.GetActiveUniformName(_program,_uniformIndex); -} -static unsafe void Test_GetActiveUniformBlockName_23087() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformIndex = default(System.Int32); - System.String r = OpenTK.Graphics.OpenGL.GL.GetActiveUniformBlockName(_program,_uniformIndex); -} -static unsafe void Test_ShaderSource_23088() { - System.Int32 _shader = default(System.Int32); - System.String _string = default(System.String); - OpenTK.Graphics.OpenGL.GL.ShaderSource(_shader,_string); -} -static unsafe void Test_GetShaderInfoLog_23089() { - System.Int32 _shader = default(System.Int32); - System.String r = OpenTK.Graphics.OpenGL.GL.GetShaderInfoLog(_shader); -} -static unsafe void Test_GetShaderInfoLog_23090() { - System.Int32 _shader = default(System.Int32); - System.String _info = default(System.String); - OpenTK.Graphics.OpenGL.GL.GetShaderInfoLog(_shader,out _info); -} -static unsafe void Test_GetProgramInfoLog_23091() { - System.Int32 _program = default(System.Int32); - System.String r = OpenTK.Graphics.OpenGL.GL.GetProgramInfoLog(_program); -} -static unsafe void Test_GetProgramInfoLog_23092() { - System.Int32 _program = default(System.Int32); - System.String _info = default(System.String); - OpenTK.Graphics.OpenGL.GL.GetProgramInfoLog(_program,out _info); -} -static unsafe void Test_PointParameter_23093() { - OpenTK.Graphics.OpenGL.PointSpriteCoordOriginParameter _param = default(OpenTK.Graphics.OpenGL.PointSpriteCoordOriginParameter); - OpenTK.Graphics.OpenGL.GL.PointParameter(_param); -} -static unsafe void Test_VertexAttrib2_23094() { - System.Int32 _index = default(System.Int32); - OpenTK.Vector2 _v = default(OpenTK.Vector2); - OpenTK.Graphics.OpenGL.GL.VertexAttrib2(_index,ref _v); -} -static unsafe void Test_VertexAttrib3_23095() { - System.Int32 _index = default(System.Int32); - OpenTK.Vector3 _v = default(OpenTK.Vector3); - OpenTK.Graphics.OpenGL.GL.VertexAttrib3(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_23096() { - System.Int32 _index = default(System.Int32); - OpenTK.Vector4 _v = default(OpenTK.Vector4); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib2_23097() { - System.Int32 _index = default(System.Int32); - OpenTK.Vector2 _v = default(OpenTK.Vector2); - OpenTK.Graphics.OpenGL.GL.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib3_23098() { - System.Int32 _index = default(System.Int32); - OpenTK.Vector3 _v = default(OpenTK.Vector3); - OpenTK.Graphics.OpenGL.GL.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib4_23099() { - System.Int32 _index = default(System.Int32); - OpenTK.Vector4 _v = default(OpenTK.Vector4); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_MultiTexCoord2_23100() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Vector2 _v = default(OpenTK.Vector2); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord2(_target,ref _v); -} -static unsafe void Test_MultiTexCoord3_23101() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Vector3 _v = default(OpenTK.Vector3); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord3(_target,ref _v); -} -static unsafe void Test_MultiTexCoord4_23102() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Vector4 _v = default(OpenTK.Vector4); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord4(_target,ref _v); -} -static unsafe void Test_VertexAttrib2_23103() { - System.Int32 _index = default(System.Int32); - OpenTK.Vector2d _v = default(OpenTK.Vector2d); - OpenTK.Graphics.OpenGL.GL.VertexAttrib2(_index,ref _v); -} -static unsafe void Test_VertexAttrib3_23104() { - System.Int32 _index = default(System.Int32); - OpenTK.Vector3d _v = default(OpenTK.Vector3d); - OpenTK.Graphics.OpenGL.GL.VertexAttrib3(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_23105() { - System.Int32 _index = default(System.Int32); - OpenTK.Vector4d _v = default(OpenTK.Vector4d); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib2_23106() { - System.Int32 _index = default(System.Int32); - OpenTK.Vector2d _v = default(OpenTK.Vector2d); - OpenTK.Graphics.OpenGL.GL.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib3_23107() { - System.Int32 _index = default(System.Int32); - OpenTK.Vector3d _v = default(OpenTK.Vector3d); - OpenTK.Graphics.OpenGL.GL.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib4_23108() { - System.Int32 _index = default(System.Int32); - OpenTK.Vector4d _v = default(OpenTK.Vector4d); - OpenTK.Graphics.OpenGL.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_MultiTexCoord2_23109() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Vector2d _v = default(OpenTK.Vector2d); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord2(_target,ref _v); -} -static unsafe void Test_MultiTexCoord3_23110() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Vector3d _v = default(OpenTK.Vector3d); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord3(_target,ref _v); -} -static unsafe void Test_MultiTexCoord4_23111() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Vector4d _v = default(OpenTK.Vector4d); - OpenTK.Graphics.OpenGL.GL.MultiTexCoord4(_target,ref _v); -} -static unsafe void Test_Rect_23112() { - System.Drawing.RectangleF _rect = default(System.Drawing.RectangleF); - OpenTK.Graphics.OpenGL.GL.Rect(_rect); -} -static unsafe void Test_Rect_23113() { - System.Drawing.Rectangle _rect = default(System.Drawing.Rectangle); - OpenTK.Graphics.OpenGL.GL.Rect(_rect); -} -static unsafe void Test_Rect_23114() { - System.Drawing.RectangleF _rect = default(System.Drawing.RectangleF); - OpenTK.Graphics.OpenGL.GL.Rect(ref _rect); -} -static unsafe void Test_Rect_23115() { - System.Drawing.Rectangle _rect = default(System.Drawing.Rectangle); - OpenTK.Graphics.OpenGL.GL.Rect(ref _rect); -} -static unsafe void Test_VertexPointer_23116() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexPointerType _type = default(OpenTK.Graphics.OpenGL.VertexPointerType); - System.Int32 _stride = default(System.Int32); - System.Int32 _offset = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.VertexPointer(_size,_type,_stride,_offset); -} -static unsafe void Test_NormalPointer_23117() { - OpenTK.Graphics.OpenGL.NormalPointerType _type = default(OpenTK.Graphics.OpenGL.NormalPointerType); - System.Int32 _stride = default(System.Int32); - System.Int32 _offset = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NormalPointer(_type,_stride,_offset); -} -static unsafe void Test_IndexPointer_23118() { - OpenTK.Graphics.OpenGL.IndexPointerType _type = default(OpenTK.Graphics.OpenGL.IndexPointerType); - System.Int32 _stride = default(System.Int32); - System.Int32 _offset = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.IndexPointer(_type,_stride,_offset); -} -static unsafe void Test_ColorPointer_23119() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ColorPointerType _type = default(OpenTK.Graphics.OpenGL.ColorPointerType); - System.Int32 _stride = default(System.Int32); - System.Int32 _offset = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.ColorPointer(_size,_type,_stride,_offset); -} -static unsafe void Test_FogCoordPointer_23120() { - OpenTK.Graphics.OpenGL.FogPointerType _type = default(OpenTK.Graphics.OpenGL.FogPointerType); - System.Int32 _stride = default(System.Int32); - System.Int32 _offset = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.FogCoordPointer(_type,_stride,_offset); -} -static unsafe void Test_EdgeFlagPointer_23121() { - System.Int32 _stride = default(System.Int32); - System.Int32 _offset = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.EdgeFlagPointer(_stride,_offset); -} -static unsafe void Test_TexCoordPointer_23122() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.TexCoordPointerType _type = default(OpenTK.Graphics.OpenGL.TexCoordPointerType); - System.Int32 _stride = default(System.Int32); - System.Int32 _offset = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.TexCoordPointer(_size,_type,_stride,_offset); -} -static unsafe void Test_VertexAttribPointer_23123() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribPointerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - System.Int32 _offset = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_offset); -} -static unsafe void Test_GetFloat_23124() { - OpenTK.Graphics.OpenGL.GetPName _pname = default(OpenTK.Graphics.OpenGL.GetPName); - OpenTK.Vector2 _vector = default(OpenTK.Vector2); - OpenTK.Graphics.OpenGL.GL.GetFloat(_pname,out _vector); -} -static unsafe void Test_GetFloat_23125() { - OpenTK.Graphics.OpenGL.GetPName _pname = default(OpenTK.Graphics.OpenGL.GetPName); - OpenTK.Vector3 _vector = default(OpenTK.Vector3); - OpenTK.Graphics.OpenGL.GL.GetFloat(_pname,out _vector); -} -static unsafe void Test_GetFloat_23126() { - OpenTK.Graphics.OpenGL.GetPName _pname = default(OpenTK.Graphics.OpenGL.GetPName); - OpenTK.Vector4 _vector = default(OpenTK.Vector4); - OpenTK.Graphics.OpenGL.GL.GetFloat(_pname,out _vector); -} -static unsafe void Test_GetFloat_23127() { - OpenTK.Graphics.OpenGL.GetPName _pname = default(OpenTK.Graphics.OpenGL.GetPName); - OpenTK.Matrix4 _matrix = default(OpenTK.Matrix4); - OpenTK.Graphics.OpenGL.GL.GetFloat(_pname,out _matrix); -} -static unsafe void Test_GetDouble_23128() { - OpenTK.Graphics.OpenGL.GetPName _pname = default(OpenTK.Graphics.OpenGL.GetPName); - OpenTK.Vector2d _vector = default(OpenTK.Vector2d); - OpenTK.Graphics.OpenGL.GL.GetDouble(_pname,out _vector); -} -static unsafe void Test_GetDouble_23129() { - OpenTK.Graphics.OpenGL.GetPName _pname = default(OpenTK.Graphics.OpenGL.GetPName); - OpenTK.Vector3d _vector = default(OpenTK.Vector3d); - OpenTK.Graphics.OpenGL.GL.GetDouble(_pname,out _vector); -} -static unsafe void Test_GetDouble_23130() { - OpenTK.Graphics.OpenGL.GetPName _pname = default(OpenTK.Graphics.OpenGL.GetPName); - OpenTK.Vector4d _vector = default(OpenTK.Vector4d); - OpenTK.Graphics.OpenGL.GL.GetDouble(_pname,out _vector); -} -static unsafe void Test_GetDouble_23131() { - OpenTK.Graphics.OpenGL.GetPName _pname = default(OpenTK.Graphics.OpenGL.GetPName); - OpenTK.Matrix4d _matrix = default(OpenTK.Matrix4d); - OpenTK.Graphics.OpenGL.GL.GetDouble(_pname,out _matrix); -} -static unsafe void Test_Viewport_23132() { - System.Drawing.Size _size = default(System.Drawing.Size); - OpenTK.Graphics.OpenGL.GL.Viewport(_size); -} -static unsafe void Test_Viewport_23133() { - System.Drawing.Point _location = default(System.Drawing.Point); - System.Drawing.Size _size = default(System.Drawing.Size); - OpenTK.Graphics.OpenGL.GL.Viewport(_location,_size); -} -static unsafe void Test_Viewport_23134() { - System.Drawing.Rectangle _rectangle = default(System.Drawing.Rectangle); - OpenTK.Graphics.OpenGL.GL.Viewport(_rectangle); -} -static unsafe void Test_TexEnv_23135() { - OpenTK.Graphics.OpenGL.TextureEnvTarget _target = default(OpenTK.Graphics.OpenGL.TextureEnvTarget); - OpenTK.Graphics.OpenGL.TextureEnvParameter _pname = default(OpenTK.Graphics.OpenGL.TextureEnvParameter); - System.Drawing.Color _color = default(System.Drawing.Color); - OpenTK.Graphics.OpenGL.GL.TexEnv(_target,_pname,_color); -} -static unsafe void Test_TexEnv_23136() { - OpenTK.Graphics.OpenGL.TextureEnvTarget _target = default(OpenTK.Graphics.OpenGL.TextureEnvTarget); - OpenTK.Graphics.OpenGL.TextureEnvParameter _pname = default(OpenTK.Graphics.OpenGL.TextureEnvParameter); - OpenTK.Graphics.Color4 _color = default(OpenTK.Graphics.Color4); - OpenTK.Graphics.OpenGL.GL.TexEnv(_target,_pname,_color); -} -static unsafe void Test_DisableClientState_23137() { - OpenTK.Graphics.OpenGL.EnableCap _array = default(OpenTK.Graphics.OpenGL.EnableCap); - OpenTK.Graphics.OpenGL.GL.DisableClientState(_array); -} -static unsafe void Test_EnableClientState_23138() { - OpenTK.Graphics.OpenGL.EnableCap _array = default(OpenTK.Graphics.OpenGL.EnableCap); - OpenTK.Graphics.OpenGL.GL.EnableClientState(_array); -} -static unsafe void Test_GetActiveUniforms_23139() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformCount = default(System.Int32); - System.Int32[] _uniformIndices = default(System.Int32[]); - OpenTK.Graphics.OpenGL.ArbUniformBufferObject _pname = default(OpenTK.Graphics.OpenGL.ArbUniformBufferObject); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetActiveUniforms(_program,_uniformCount,_uniformIndices,_pname,_params); -} -static unsafe void Test_GetActiveUniforms_23140() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformCount = default(System.Int32); - System.Int32 _uniformIndices = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbUniformBufferObject _pname = default(OpenTK.Graphics.OpenGL.ArbUniformBufferObject); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetActiveUniforms(_program,_uniformCount,ref _uniformIndices,_pname,out _params); -} -static unsafe void Test_GetActiveUniforms_23141() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformCount = default(System.Int32); - System.Int32* _uniformIndices = default(System.Int32*); - OpenTK.Graphics.OpenGL.ArbUniformBufferObject _pname = default(OpenTK.Graphics.OpenGL.ArbUniformBufferObject); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetActiveUniforms(_program,_uniformCount,_uniformIndices,_pname,_params); -} -static unsafe void Test_GetActiveUniforms_23142() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _uniformCount = default(System.Int32); - System.UInt32[] _uniformIndices = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.ArbUniformBufferObject _pname = default(OpenTK.Graphics.OpenGL.ArbUniformBufferObject); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetActiveUniforms(_program,_uniformCount,_uniformIndices,_pname,_params); -} -static unsafe void Test_GetActiveUniforms_23143() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _uniformCount = default(System.Int32); - System.UInt32 _uniformIndices = default(System.UInt32); - OpenTK.Graphics.OpenGL.ArbUniformBufferObject _pname = default(OpenTK.Graphics.OpenGL.ArbUniformBufferObject); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GetActiveUniforms(_program,_uniformCount,ref _uniformIndices,_pname,out _params); -} -static unsafe void Test_GetActiveUniforms_23144() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _uniformCount = default(System.Int32); - System.UInt32* _uniformIndices = default(System.UInt32*); - OpenTK.Graphics.OpenGL.ArbUniformBufferObject _pname = default(OpenTK.Graphics.OpenGL.ArbUniformBufferObject); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.GetActiveUniforms(_program,_uniformCount,_uniformIndices,_pname,_params); -} -static unsafe void Test_GetBufferParameteri64_23145() { - OpenTK.Graphics.OpenGL.Version32 _target = default(OpenTK.Graphics.OpenGL.Version32); - OpenTK.Graphics.OpenGL.Version32 _pname = default(OpenTK.Graphics.OpenGL.Version32); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.GetBufferParameteri64(_target,_pname,_params); -} -static unsafe void Test_GetBufferParameteri64_23146() { - OpenTK.Graphics.OpenGL.Version32 _target = default(OpenTK.Graphics.OpenGL.Version32); - OpenTK.Graphics.OpenGL.Version32 _pname = default(OpenTK.Graphics.OpenGL.Version32); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.GetBufferParameteri64(_target,_pname,out _params); -} -static unsafe void Test_GetBufferParameteri64_23147() { - OpenTK.Graphics.OpenGL.Version32 _target = default(OpenTK.Graphics.OpenGL.Version32); - OpenTK.Graphics.OpenGL.Version32 _pname = default(OpenTK.Graphics.OpenGL.Version32); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.GetBufferParameteri64(_target,_pname,_params); -} -static unsafe void Test_FramebufferTextureFace_23148() { - OpenTK.Graphics.OpenGL.Version32 _target = default(OpenTK.Graphics.OpenGL.Version32); - OpenTK.Graphics.OpenGL.Version32 _attachment = default(OpenTK.Graphics.OpenGL.Version32); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.Version32 _face = default(OpenTK.Graphics.OpenGL.Version32); - OpenTK.Graphics.OpenGL.GL.FramebufferTextureFace(_target,_attachment,_texture,_level,_face); -} -static unsafe void Test_FramebufferTextureFace_23149() { - OpenTK.Graphics.OpenGL.Version32 _target = default(OpenTK.Graphics.OpenGL.Version32); - OpenTK.Graphics.OpenGL.Version32 _attachment = default(OpenTK.Graphics.OpenGL.Version32); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.Version32 _face = default(OpenTK.Graphics.OpenGL.Version32); - OpenTK.Graphics.OpenGL.GL.FramebufferTextureFace(_target,_attachment,_texture,_level,_face); -} -static unsafe void Test_GetAttachedShaders_23150() { - System.Int32 _program = default(System.Int32); - System.Int32 _maxCount = default(System.Int32); - System.Int32* _count = default(System.Int32*); - System.Int32[] _obj = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetAttachedShaders(_program,_maxCount,_count,_obj); -} -static unsafe void Test_GetAttachedShaders_23151() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _maxCount = default(System.Int32); - System.Int32* _count = default(System.Int32*); - System.UInt32[] _obj = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.GetAttachedShaders(_program,_maxCount,_count,_obj); -} -static unsafe void Test_GetSeparableFilter_23152() { - OpenTK.Graphics.OpenGL.SeparableTarget _target = default(OpenTK.Graphics.OpenGL.SeparableTarget); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _row = default(System.IntPtr); - System.IntPtr _column = default(System.IntPtr); - int[] _span = default(int[]); - OpenTK.Graphics.OpenGL.GL.GetSeparableFilter(_target,_format,_type,_row,_column,_span); -} -static unsafe void Test_GetSeparableFilter_23153() { - OpenTK.Graphics.OpenGL.SeparableTarget _target = default(OpenTK.Graphics.OpenGL.SeparableTarget); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _row = default(System.IntPtr); - System.IntPtr _column = default(System.IntPtr); - int[,] _span = default(int[,]); - OpenTK.Graphics.OpenGL.GL.GetSeparableFilter(_target,_format,_type,_row,_column,_span); -} -static unsafe void Test_GetSeparableFilter_23154() { - OpenTK.Graphics.OpenGL.SeparableTarget _target = default(OpenTK.Graphics.OpenGL.SeparableTarget); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _row = default(System.IntPtr); - System.IntPtr _column = default(System.IntPtr); - int[,,] _span = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.GetSeparableFilter(_target,_format,_type,_row,_column,_span); -} -static unsafe void Test_GetSeparableFilter_23155() { - OpenTK.Graphics.OpenGL.SeparableTarget _target = default(OpenTK.Graphics.OpenGL.SeparableTarget); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _row = default(System.IntPtr); - System.IntPtr _column = default(System.IntPtr); - int _span = default(int); - OpenTK.Graphics.OpenGL.GL.GetSeparableFilter(_target,_format,_type,_row,_column,ref _span); -} -static unsafe void Test_GetSeparableFilter_23156() { - OpenTK.Graphics.OpenGL.SeparableTarget _target = default(OpenTK.Graphics.OpenGL.SeparableTarget); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _row = default(System.IntPtr); - int[] _column = default(int[]); - int[,,] _span = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.GetSeparableFilter(_target,_format,_type,_row,_column,_span); -} -static unsafe void Test_GetSeparableFilter_23157() { - OpenTK.Graphics.OpenGL.SeparableTarget _target = default(OpenTK.Graphics.OpenGL.SeparableTarget); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _row = default(System.IntPtr); - int[,] _column = default(int[,]); - int[,,] _span = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.GetSeparableFilter(_target,_format,_type,_row,_column,_span); -} -static unsafe void Test_GetSeparableFilter_23158() { - OpenTK.Graphics.OpenGL.SeparableTarget _target = default(OpenTK.Graphics.OpenGL.SeparableTarget); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _row = default(System.IntPtr); - int[,,] _column = default(int[,,]); - int[,,] _span = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.GetSeparableFilter(_target,_format,_type,_row,_column,_span); -} -static unsafe void Test_GetSeparableFilter_23159() { - OpenTK.Graphics.OpenGL.SeparableTarget _target = default(OpenTK.Graphics.OpenGL.SeparableTarget); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _row = default(System.IntPtr); - int _column = default(int); - int[,,] _span = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.GetSeparableFilter(_target,_format,_type,_row,ref _column,_span); -} -static unsafe void Test_GetSeparableFilter_23160() { - OpenTK.Graphics.OpenGL.SeparableTarget _target = default(OpenTK.Graphics.OpenGL.SeparableTarget); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _row = default(int[]); - int[,,] _column = default(int[,,]); - int[,,] _span = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.GetSeparableFilter(_target,_format,_type,_row,_column,_span); -} -static unsafe void Test_GetSeparableFilter_23161() { - OpenTK.Graphics.OpenGL.SeparableTarget _target = default(OpenTK.Graphics.OpenGL.SeparableTarget); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _row = default(int[,]); - int[,,] _column = default(int[,,]); - int[,,] _span = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.GetSeparableFilter(_target,_format,_type,_row,_column,_span); -} -static unsafe void Test_GetSeparableFilter_23162() { - OpenTK.Graphics.OpenGL.SeparableTarget _target = default(OpenTK.Graphics.OpenGL.SeparableTarget); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _row = default(int); - int[,,] _column = default(int[,,]); - int[,,] _span = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.GetSeparableFilter(_target,_format,_type,ref _row,_column,_span); -} -static unsafe void Test_GetSync_23163() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.OpenGL.ArbSync _pname = default(OpenTK.Graphics.OpenGL.ArbSync); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32[] _values = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.GetSync(_sync,_pname,_bufSize,_length,_values); -} -static unsafe void Test_SeparableFilter2D_23164() { - OpenTK.Graphics.OpenGL.SeparableTarget _target = default(OpenTK.Graphics.OpenGL.SeparableTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _row = default(System.IntPtr); - int[] _column = default(int[]); - OpenTK.Graphics.OpenGL.GL.SeparableFilter2D(_target,_internalformat,_width,_height,_format,_type,_row,_column); -} -static unsafe void Test_SeparableFilter2D_23165() { - OpenTK.Graphics.OpenGL.SeparableTarget _target = default(OpenTK.Graphics.OpenGL.SeparableTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _row = default(System.IntPtr); - int[,] _column = default(int[,]); - OpenTK.Graphics.OpenGL.GL.SeparableFilter2D(_target,_internalformat,_width,_height,_format,_type,_row,_column); -} -static unsafe void Test_SeparableFilter2D_23166() { - OpenTK.Graphics.OpenGL.SeparableTarget _target = default(OpenTK.Graphics.OpenGL.SeparableTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _row = default(System.IntPtr); - int[,,] _column = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.SeparableFilter2D(_target,_internalformat,_width,_height,_format,_type,_row,_column); -} -static unsafe void Test_SeparableFilter2D_23167() { - OpenTK.Graphics.OpenGL.SeparableTarget _target = default(OpenTK.Graphics.OpenGL.SeparableTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _row = default(System.IntPtr); - int _column = default(int); - OpenTK.Graphics.OpenGL.GL.SeparableFilter2D(_target,_internalformat,_width,_height,_format,_type,_row,ref _column); -} -static unsafe void Test_SeparableFilter2D_23168() { - OpenTK.Graphics.OpenGL.SeparableTarget _target = default(OpenTK.Graphics.OpenGL.SeparableTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _row = default(int[]); - int[,,] _column = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.SeparableFilter2D(_target,_internalformat,_width,_height,_format,_type,_row,_column); -} -static unsafe void Test_SeparableFilter2D_23169() { - OpenTK.Graphics.OpenGL.SeparableTarget _target = default(OpenTK.Graphics.OpenGL.SeparableTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _row = default(int[,]); - int[,,] _column = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.SeparableFilter2D(_target,_internalformat,_width,_height,_format,_type,_row,_column); -} -static unsafe void Test_SeparableFilter2D_23170() { - OpenTK.Graphics.OpenGL.SeparableTarget _target = default(OpenTK.Graphics.OpenGL.SeparableTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _row = default(int); - int[,,] _column = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.SeparableFilter2D(_target,_internalformat,_width,_height,_format,_type,ref _row,_column); -} -static unsafe void Test_SeparableFilter2D_23171() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _row = default(int); - int[,,] _column = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.SeparableFilter2D(_target,_internalformat,_width,_height,_format,_type,ref _row,_column); -} -static unsafe void Test_TbufferMask_23172() { - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.GL_3dfx.TbufferMask(_mask); -} -static unsafe void Test_TbufferMask_23173() { - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.GL_3dfx.TbufferMask(_mask); -} -static unsafe void Test_BeginPerfMonitor_23174() { - System.Int32 _monitor = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Amd.BeginPerfMonitor(_monitor); -} -static unsafe void Test_BeginPerfMonitor_23175() { - System.UInt32 _monitor = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Amd.BeginPerfMonitor(_monitor); -} -static unsafe void Test_BlendEquationIndexed_23176() { - System.Int32 _buf = default(System.Int32); - OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend _mode = default(OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend); - OpenTK.Graphics.OpenGL.GL.Amd.BlendEquationIndexed(_buf,_mode); -} -static unsafe void Test_BlendEquationIndexed_23177() { - System.UInt32 _buf = default(System.UInt32); - OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend _mode = default(OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend); - OpenTK.Graphics.OpenGL.GL.Amd.BlendEquationIndexed(_buf,_mode); -} -static unsafe void Test_BlendEquationSeparateIndexed_23178() { - System.Int32 _buf = default(System.Int32); - OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend _modeRGB = default(OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend); - OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend _modeAlpha = default(OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend); - OpenTK.Graphics.OpenGL.GL.Amd.BlendEquationSeparateIndexed(_buf,_modeRGB,_modeAlpha); -} -static unsafe void Test_BlendEquationSeparateIndexed_23179() { - System.UInt32 _buf = default(System.UInt32); - OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend _modeRGB = default(OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend); - OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend _modeAlpha = default(OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend); - OpenTK.Graphics.OpenGL.GL.Amd.BlendEquationSeparateIndexed(_buf,_modeRGB,_modeAlpha); -} -static unsafe void Test_BlendFuncIndexed_23180() { - System.Int32 _buf = default(System.Int32); - OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend _src = default(OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend); - OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend _dst = default(OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend); - OpenTK.Graphics.OpenGL.GL.Amd.BlendFuncIndexed(_buf,_src,_dst); -} -static unsafe void Test_BlendFuncIndexed_23181() { - System.UInt32 _buf = default(System.UInt32); - OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend _src = default(OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend); - OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend _dst = default(OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend); - OpenTK.Graphics.OpenGL.GL.Amd.BlendFuncIndexed(_buf,_src,_dst); -} -static unsafe void Test_BlendFuncSeparateIndexed_23182() { - System.Int32 _buf = default(System.Int32); - OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend _srcRGB = default(OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend); - OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend _dstRGB = default(OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend); - OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend _srcAlpha = default(OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend); - OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend _dstAlpha = default(OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend); - OpenTK.Graphics.OpenGL.GL.Amd.BlendFuncSeparateIndexed(_buf,_srcRGB,_dstRGB,_srcAlpha,_dstAlpha); -} -static unsafe void Test_BlendFuncSeparateIndexed_23183() { - System.UInt32 _buf = default(System.UInt32); - OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend _srcRGB = default(OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend); - OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend _dstRGB = default(OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend); - OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend _srcAlpha = default(OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend); - OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend _dstAlpha = default(OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend); - OpenTK.Graphics.OpenGL.GL.Amd.BlendFuncSeparateIndexed(_buf,_srcRGB,_dstRGB,_srcAlpha,_dstAlpha); -} -static unsafe void Test_DebugMessageCallback_23184() { - OpenTK.Graphics.OpenGL.DebugProcAmd _callback = default(OpenTK.Graphics.OpenGL.DebugProcAmd); - System.IntPtr _userParam = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Amd.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_23185() { - OpenTK.Graphics.OpenGL.DebugProcAmd _callback = default(OpenTK.Graphics.OpenGL.DebugProcAmd); - int[] _userParam = default(int[]); - OpenTK.Graphics.OpenGL.GL.Amd.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_23186() { - OpenTK.Graphics.OpenGL.DebugProcAmd _callback = default(OpenTK.Graphics.OpenGL.DebugProcAmd); - int[,] _userParam = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Amd.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_23187() { - OpenTK.Graphics.OpenGL.DebugProcAmd _callback = default(OpenTK.Graphics.OpenGL.DebugProcAmd); - int[,,] _userParam = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Amd.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_23188() { - OpenTK.Graphics.OpenGL.DebugProcAmd _callback = default(OpenTK.Graphics.OpenGL.DebugProcAmd); - int _userParam = default(int); - OpenTK.Graphics.OpenGL.GL.Amd.DebugMessageCallback(_callback,ref _userParam); -} -static unsafe void Test_DebugMessageEnable_23189() { - OpenTK.Graphics.OpenGL.AmdDebugOutput _category = default(OpenTK.Graphics.OpenGL.AmdDebugOutput); - OpenTK.Graphics.OpenGL.AmdDebugOutput _severity = default(OpenTK.Graphics.OpenGL.AmdDebugOutput); - System.Int32 _count = default(System.Int32); - System.Int32[] _ids = default(System.Int32[]); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Amd.DebugMessageEnable(_category,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageEnable_23190() { - OpenTK.Graphics.OpenGL.AmdDebugOutput _category = default(OpenTK.Graphics.OpenGL.AmdDebugOutput); - OpenTK.Graphics.OpenGL.AmdDebugOutput _severity = default(OpenTK.Graphics.OpenGL.AmdDebugOutput); - System.Int32 _count = default(System.Int32); - System.Int32 _ids = default(System.Int32); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Amd.DebugMessageEnable(_category,_severity,_count,ref _ids,_enabled); -} -static unsafe void Test_DebugMessageEnable_23191() { - OpenTK.Graphics.OpenGL.AmdDebugOutput _category = default(OpenTK.Graphics.OpenGL.AmdDebugOutput); - OpenTK.Graphics.OpenGL.AmdDebugOutput _severity = default(OpenTK.Graphics.OpenGL.AmdDebugOutput); - System.Int32 _count = default(System.Int32); - System.Int32* _ids = default(System.Int32*); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Amd.DebugMessageEnable(_category,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageEnable_23192() { - OpenTK.Graphics.OpenGL.AmdDebugOutput _category = default(OpenTK.Graphics.OpenGL.AmdDebugOutput); - OpenTK.Graphics.OpenGL.AmdDebugOutput _severity = default(OpenTK.Graphics.OpenGL.AmdDebugOutput); - System.Int32 _count = default(System.Int32); - System.UInt32[] _ids = default(System.UInt32[]); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Amd.DebugMessageEnable(_category,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageEnable_23193() { - OpenTK.Graphics.OpenGL.AmdDebugOutput _category = default(OpenTK.Graphics.OpenGL.AmdDebugOutput); - OpenTK.Graphics.OpenGL.AmdDebugOutput _severity = default(OpenTK.Graphics.OpenGL.AmdDebugOutput); - System.Int32 _count = default(System.Int32); - System.UInt32 _ids = default(System.UInt32); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Amd.DebugMessageEnable(_category,_severity,_count,ref _ids,_enabled); -} -static unsafe void Test_DebugMessageEnable_23194() { - OpenTK.Graphics.OpenGL.AmdDebugOutput _category = default(OpenTK.Graphics.OpenGL.AmdDebugOutput); - OpenTK.Graphics.OpenGL.AmdDebugOutput _severity = default(OpenTK.Graphics.OpenGL.AmdDebugOutput); - System.Int32 _count = default(System.Int32); - System.UInt32* _ids = default(System.UInt32*); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Amd.DebugMessageEnable(_category,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageInsert_23195() { - OpenTK.Graphics.OpenGL.AmdDebugOutput _category = default(OpenTK.Graphics.OpenGL.AmdDebugOutput); - OpenTK.Graphics.OpenGL.AmdDebugOutput _severity = default(OpenTK.Graphics.OpenGL.AmdDebugOutput); - System.Int32 _id = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.String _buf = default(System.String); - OpenTK.Graphics.OpenGL.GL.Amd.DebugMessageInsert(_category,_severity,_id,_length,_buf); -} -static unsafe void Test_DebugMessageInsert_23196() { - OpenTK.Graphics.OpenGL.AmdDebugOutput _category = default(OpenTK.Graphics.OpenGL.AmdDebugOutput); - OpenTK.Graphics.OpenGL.AmdDebugOutput _severity = default(OpenTK.Graphics.OpenGL.AmdDebugOutput); - System.UInt32 _id = default(System.UInt32); - System.Int32 _length = default(System.Int32); - System.String _buf = default(System.String); - OpenTK.Graphics.OpenGL.GL.Amd.DebugMessageInsert(_category,_severity,_id,_length,_buf); -} -static unsafe void Test_DeleteNames_23197() { - OpenTK.Graphics.OpenGL.AmdNameGenDelete _identifier = default(OpenTK.Graphics.OpenGL.AmdNameGenDelete); - System.Int32 _num = default(System.Int32); - System.Int32[] _names = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Amd.DeleteNames(_identifier,_num,_names); -} -static unsafe void Test_DeleteNames_23198() { - OpenTK.Graphics.OpenGL.AmdNameGenDelete _identifier = default(OpenTK.Graphics.OpenGL.AmdNameGenDelete); - System.Int32 _num = default(System.Int32); - System.Int32 _names = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Amd.DeleteNames(_identifier,_num,ref _names); -} -static unsafe void Test_DeleteNames_23199() { - OpenTK.Graphics.OpenGL.AmdNameGenDelete _identifier = default(OpenTK.Graphics.OpenGL.AmdNameGenDelete); - System.Int32 _num = default(System.Int32); - System.Int32* _names = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Amd.DeleteNames(_identifier,_num,_names); -} -static unsafe void Test_DeleteNames_23200() { - OpenTK.Graphics.OpenGL.AmdNameGenDelete _identifier = default(OpenTK.Graphics.OpenGL.AmdNameGenDelete); - System.UInt32 _num = default(System.UInt32); - System.UInt32[] _names = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Amd.DeleteNames(_identifier,_num,_names); -} -static unsafe void Test_DeleteNames_23201() { - OpenTK.Graphics.OpenGL.AmdNameGenDelete _identifier = default(OpenTK.Graphics.OpenGL.AmdNameGenDelete); - System.UInt32 _num = default(System.UInt32); - System.UInt32 _names = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Amd.DeleteNames(_identifier,_num,ref _names); -} -static unsafe void Test_DeleteNames_23202() { - OpenTK.Graphics.OpenGL.AmdNameGenDelete _identifier = default(OpenTK.Graphics.OpenGL.AmdNameGenDelete); - System.UInt32 _num = default(System.UInt32); - System.UInt32* _names = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Amd.DeleteNames(_identifier,_num,_names); -} -static unsafe void Test_DeletePerfMonitor_23203() { - System.Int32 _monitors = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Amd.DeletePerfMonitor(_monitors); -} -static unsafe void Test_DeletePerfMonitor_23204() { - System.UInt32 _monitors = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Amd.DeletePerfMonitor(_monitors); -} -static unsafe void Test_DeletePerfMonitors_23205() { - System.Int32 _n = default(System.Int32); - System.Int32[] _monitors = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Amd.DeletePerfMonitors(_n,_monitors); -} -static unsafe void Test_DeletePerfMonitors_23206() { - System.Int32 _n = default(System.Int32); - System.Int32 _monitors = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Amd.DeletePerfMonitors(_n,ref _monitors); -} -static unsafe void Test_DeletePerfMonitors_23207() { - System.Int32 _n = default(System.Int32); - System.Int32* _monitors = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Amd.DeletePerfMonitors(_n,_monitors); -} -static unsafe void Test_DeletePerfMonitors_23208() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _monitors = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Amd.DeletePerfMonitors(_n,_monitors); -} -static unsafe void Test_DeletePerfMonitors_23209() { - System.Int32 _n = default(System.Int32); - System.UInt32 _monitors = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Amd.DeletePerfMonitors(_n,ref _monitors); -} -static unsafe void Test_DeletePerfMonitors_23210() { - System.Int32 _n = default(System.Int32); - System.UInt32* _monitors = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Amd.DeletePerfMonitors(_n,_monitors); -} -static unsafe void Test_EndPerfMonitor_23211() { - System.Int32 _monitor = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Amd.EndPerfMonitor(_monitor); -} -static unsafe void Test_EndPerfMonitor_23212() { - System.UInt32 _monitor = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Amd.EndPerfMonitor(_monitor); -} -static unsafe void Test_GenNames_23213() { - OpenTK.Graphics.OpenGL.AmdNameGenDelete _identifier = default(OpenTK.Graphics.OpenGL.AmdNameGenDelete); - System.Int32 _num = default(System.Int32); - System.Int32[] _names = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Amd.GenNames(_identifier,_num,_names); -} -static unsafe void Test_GenNames_23214() { - OpenTK.Graphics.OpenGL.AmdNameGenDelete _identifier = default(OpenTK.Graphics.OpenGL.AmdNameGenDelete); - System.Int32 _num = default(System.Int32); - System.Int32 _names = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Amd.GenNames(_identifier,_num,out _names); -} -static unsafe void Test_GenNames_23215() { - OpenTK.Graphics.OpenGL.AmdNameGenDelete _identifier = default(OpenTK.Graphics.OpenGL.AmdNameGenDelete); - System.Int32 _num = default(System.Int32); - System.Int32* _names = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Amd.GenNames(_identifier,_num,_names); -} -static unsafe void Test_GenNames_23216() { - OpenTK.Graphics.OpenGL.AmdNameGenDelete _identifier = default(OpenTK.Graphics.OpenGL.AmdNameGenDelete); - System.UInt32 _num = default(System.UInt32); - System.UInt32[] _names = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Amd.GenNames(_identifier,_num,_names); -} -static unsafe void Test_GenNames_23217() { - OpenTK.Graphics.OpenGL.AmdNameGenDelete _identifier = default(OpenTK.Graphics.OpenGL.AmdNameGenDelete); - System.UInt32 _num = default(System.UInt32); - System.UInt32 _names = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Amd.GenNames(_identifier,_num,out _names); -} -static unsafe void Test_GenNames_23218() { - OpenTK.Graphics.OpenGL.AmdNameGenDelete _identifier = default(OpenTK.Graphics.OpenGL.AmdNameGenDelete); - System.UInt32 _num = default(System.UInt32); - System.UInt32* _names = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Amd.GenNames(_identifier,_num,_names); -} -static unsafe void Test_GenPerfMonitor_23219() { - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Amd.GenPerfMonitor(); -} -static unsafe void Test_GenPerfMonitors_23220() { - System.Int32 _n = default(System.Int32); - System.Int32[] _monitors = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Amd.GenPerfMonitors(_n,_monitors); -} -static unsafe void Test_GenPerfMonitors_23221() { - System.Int32 _n = default(System.Int32); - System.Int32 _monitors = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Amd.GenPerfMonitors(_n,out _monitors); -} -static unsafe void Test_GenPerfMonitors_23222() { - System.Int32 _n = default(System.Int32); - System.Int32* _monitors = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Amd.GenPerfMonitors(_n,_monitors); -} -static unsafe void Test_GenPerfMonitors_23223() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _monitors = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Amd.GenPerfMonitors(_n,_monitors); -} -static unsafe void Test_GenPerfMonitors_23224() { - System.Int32 _n = default(System.Int32); - System.UInt32 _monitors = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Amd.GenPerfMonitors(_n,out _monitors); -} -static unsafe void Test_GenPerfMonitors_23225() { - System.Int32 _n = default(System.Int32); - System.UInt32* _monitors = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Amd.GenPerfMonitors(_n,_monitors); -} -static unsafe void Test_GetDebugMessageLog_23226() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufsize = default(System.Int32); - OpenTK.Graphics.OpenGL.AmdDebugOutput[] _categories = default(OpenTK.Graphics.OpenGL.AmdDebugOutput[]); - System.Int32[] _severities = default(System.Int32[]); - System.Int32[] _ids = default(System.Int32[]); - System.Int32[] _lengths = default(System.Int32[]); - System.Text.StringBuilder _message = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Amd.GetDebugMessageLog(_count,_bufsize,_categories,_severities,_ids,_lengths,_message); -} -static unsafe void Test_GetDebugMessageLog_23227() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufsize = default(System.Int32); - OpenTK.Graphics.OpenGL.AmdDebugOutput _categories = default(OpenTK.Graphics.OpenGL.AmdDebugOutput); - System.Int32 _severities = default(System.Int32); - System.Int32 _ids = default(System.Int32); - System.Int32 _lengths = default(System.Int32); - System.Text.StringBuilder _message = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Amd.GetDebugMessageLog(_count,_bufsize,out _categories,out _severities,out _ids,out _lengths,_message); -} -static unsafe void Test_GetDebugMessageLog_23228() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufsize = default(System.Int32); - OpenTK.Graphics.OpenGL.AmdDebugOutput* _categories = default(OpenTK.Graphics.OpenGL.AmdDebugOutput*); - System.Int32* _severities = default(System.Int32*); - System.Int32* _ids = default(System.Int32*); - System.Int32* _lengths = default(System.Int32*); - System.Text.StringBuilder _message = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Amd.GetDebugMessageLog(_count,_bufsize,_categories,_severities,_ids,_lengths,_message); -} -static unsafe void Test_GetDebugMessageLog_23229() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufsize = default(System.Int32); - OpenTK.Graphics.OpenGL.AmdDebugOutput[] _categories = default(OpenTK.Graphics.OpenGL.AmdDebugOutput[]); - System.UInt32[] _severities = default(System.UInt32[]); - System.UInt32[] _ids = default(System.UInt32[]); - System.Int32[] _lengths = default(System.Int32[]); - System.Text.StringBuilder _message = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Amd.GetDebugMessageLog(_count,_bufsize,_categories,_severities,_ids,_lengths,_message); -} -static unsafe void Test_GetDebugMessageLog_23230() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufsize = default(System.Int32); - OpenTK.Graphics.OpenGL.AmdDebugOutput _categories = default(OpenTK.Graphics.OpenGL.AmdDebugOutput); - System.UInt32 _severities = default(System.UInt32); - System.UInt32 _ids = default(System.UInt32); - System.Int32 _lengths = default(System.Int32); - System.Text.StringBuilder _message = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Amd.GetDebugMessageLog(_count,_bufsize,out _categories,out _severities,out _ids,out _lengths,_message); -} -static unsafe void Test_GetDebugMessageLog_23231() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufsize = default(System.Int32); - OpenTK.Graphics.OpenGL.AmdDebugOutput* _categories = default(OpenTK.Graphics.OpenGL.AmdDebugOutput*); - System.UInt32* _severities = default(System.UInt32*); - System.UInt32* _ids = default(System.UInt32*); - System.Int32* _lengths = default(System.Int32*); - System.Text.StringBuilder _message = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Amd.GetDebugMessageLog(_count,_bufsize,_categories,_severities,_ids,_lengths,_message); -} -static unsafe void Test_GetPerfMonitorCounterData_23232() { - System.Int32 _monitor = default(System.Int32); - OpenTK.Graphics.OpenGL.AmdPerformanceMonitor _pname = default(OpenTK.Graphics.OpenGL.AmdPerformanceMonitor); - System.Int32 _dataSize = default(System.Int32); - System.Int32[] _data = default(System.Int32[]); - System.Int32 _bytesWritten = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorCounterData(_monitor,_pname,_dataSize,_data,out _bytesWritten); -} -static unsafe void Test_GetPerfMonitorCounterData_23233() { - System.Int32 _monitor = default(System.Int32); - OpenTK.Graphics.OpenGL.AmdPerformanceMonitor _pname = default(OpenTK.Graphics.OpenGL.AmdPerformanceMonitor); - System.Int32 _dataSize = default(System.Int32); - System.Int32 _data = default(System.Int32); - System.Int32 _bytesWritten = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorCounterData(_monitor,_pname,_dataSize,out _data,out _bytesWritten); -} -static unsafe void Test_GetPerfMonitorCounterData_23234() { - System.Int32 _monitor = default(System.Int32); - OpenTK.Graphics.OpenGL.AmdPerformanceMonitor _pname = default(OpenTK.Graphics.OpenGL.AmdPerformanceMonitor); - System.Int32 _dataSize = default(System.Int32); - System.Int32* _data = default(System.Int32*); - System.Int32* _bytesWritten = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorCounterData(_monitor,_pname,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfMonitorCounterData_23235() { - System.UInt32 _monitor = default(System.UInt32); - OpenTK.Graphics.OpenGL.AmdPerformanceMonitor _pname = default(OpenTK.Graphics.OpenGL.AmdPerformanceMonitor); - System.Int32 _dataSize = default(System.Int32); - System.UInt32[] _data = default(System.UInt32[]); - System.Int32 _bytesWritten = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorCounterData(_monitor,_pname,_dataSize,_data,out _bytesWritten); -} -static unsafe void Test_GetPerfMonitorCounterData_23236() { - System.UInt32 _monitor = default(System.UInt32); - OpenTK.Graphics.OpenGL.AmdPerformanceMonitor _pname = default(OpenTK.Graphics.OpenGL.AmdPerformanceMonitor); - System.Int32 _dataSize = default(System.Int32); - System.UInt32 _data = default(System.UInt32); - System.Int32 _bytesWritten = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorCounterData(_monitor,_pname,_dataSize,out _data,out _bytesWritten); -} -static unsafe void Test_GetPerfMonitorCounterData_23237() { - System.UInt32 _monitor = default(System.UInt32); - OpenTK.Graphics.OpenGL.AmdPerformanceMonitor _pname = default(OpenTK.Graphics.OpenGL.AmdPerformanceMonitor); - System.Int32 _dataSize = default(System.Int32); - System.UInt32* _data = default(System.UInt32*); - System.Int32* _bytesWritten = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorCounterData(_monitor,_pname,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfMonitorCounterInfo_23238() { - System.Int32 _group = default(System.Int32); - System.Int32 _counter = default(System.Int32); - OpenTK.Graphics.OpenGL.AmdPerformanceMonitor _pname = default(OpenTK.Graphics.OpenGL.AmdPerformanceMonitor); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorCounterInfo(_group,_counter,_pname,_data); -} -static unsafe void Test_GetPerfMonitorCounterInfo_23239() { - System.Int32 _group = default(System.Int32); - System.Int32 _counter = default(System.Int32); - OpenTK.Graphics.OpenGL.AmdPerformanceMonitor _pname = default(OpenTK.Graphics.OpenGL.AmdPerformanceMonitor); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorCounterInfo(_group,_counter,_pname,_data); -} -static unsafe void Test_GetPerfMonitorCounterInfo_23240() { - System.Int32 _group = default(System.Int32); - System.Int32 _counter = default(System.Int32); - OpenTK.Graphics.OpenGL.AmdPerformanceMonitor _pname = default(OpenTK.Graphics.OpenGL.AmdPerformanceMonitor); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorCounterInfo(_group,_counter,_pname,_data); -} -static unsafe void Test_GetPerfMonitorCounterInfo_23241() { - System.Int32 _group = default(System.Int32); - System.Int32 _counter = default(System.Int32); - OpenTK.Graphics.OpenGL.AmdPerformanceMonitor _pname = default(OpenTK.Graphics.OpenGL.AmdPerformanceMonitor); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorCounterInfo(_group,_counter,_pname,_data); -} -static unsafe void Test_GetPerfMonitorCounterInfo_23242() { - System.Int32 _group = default(System.Int32); - System.Int32 _counter = default(System.Int32); - OpenTK.Graphics.OpenGL.AmdPerformanceMonitor _pname = default(OpenTK.Graphics.OpenGL.AmdPerformanceMonitor); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorCounterInfo(_group,_counter,_pname,ref _data); -} -static unsafe void Test_GetPerfMonitorCounterInfo_23243() { - System.UInt32 _group = default(System.UInt32); - System.UInt32 _counter = default(System.UInt32); - OpenTK.Graphics.OpenGL.AmdPerformanceMonitor _pname = default(OpenTK.Graphics.OpenGL.AmdPerformanceMonitor); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorCounterInfo(_group,_counter,_pname,_data); -} -static unsafe void Test_GetPerfMonitorCounterInfo_23244() { - System.UInt32 _group = default(System.UInt32); - System.UInt32 _counter = default(System.UInt32); - OpenTK.Graphics.OpenGL.AmdPerformanceMonitor _pname = default(OpenTK.Graphics.OpenGL.AmdPerformanceMonitor); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorCounterInfo(_group,_counter,_pname,_data); -} -static unsafe void Test_GetPerfMonitorCounterInfo_23245() { - System.UInt32 _group = default(System.UInt32); - System.UInt32 _counter = default(System.UInt32); - OpenTK.Graphics.OpenGL.AmdPerformanceMonitor _pname = default(OpenTK.Graphics.OpenGL.AmdPerformanceMonitor); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorCounterInfo(_group,_counter,_pname,_data); -} -static unsafe void Test_GetPerfMonitorCounterInfo_23246() { - System.UInt32 _group = default(System.UInt32); - System.UInt32 _counter = default(System.UInt32); - OpenTK.Graphics.OpenGL.AmdPerformanceMonitor _pname = default(OpenTK.Graphics.OpenGL.AmdPerformanceMonitor); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorCounterInfo(_group,_counter,_pname,_data); -} -static unsafe void Test_GetPerfMonitorCounterInfo_23247() { - System.UInt32 _group = default(System.UInt32); - System.UInt32 _counter = default(System.UInt32); - OpenTK.Graphics.OpenGL.AmdPerformanceMonitor _pname = default(OpenTK.Graphics.OpenGL.AmdPerformanceMonitor); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorCounterInfo(_group,_counter,_pname,ref _data); -} -static unsafe void Test_GetPerfMonitorCounters_23248() { - System.Int32 _group = default(System.Int32); - System.Int32 _numCounters = default(System.Int32); - System.Int32 _maxActiveCounters = default(System.Int32); - System.Int32 _counterSize = default(System.Int32); - System.Int32[] _counters = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorCounters(_group,out _numCounters,out _maxActiveCounters,_counterSize,_counters); -} -static unsafe void Test_GetPerfMonitorCounters_23249() { - System.Int32 _group = default(System.Int32); - System.Int32 _numCounters = default(System.Int32); - System.Int32 _maxActiveCounters = default(System.Int32); - System.Int32 _counterSize = default(System.Int32); - System.Int32 _counters = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorCounters(_group,out _numCounters,out _maxActiveCounters,_counterSize,out _counters); -} -static unsafe void Test_GetPerfMonitorCounters_23250() { - System.Int32 _group = default(System.Int32); - System.Int32* _numCounters = default(System.Int32*); - System.Int32* _maxActiveCounters = default(System.Int32*); - System.Int32 _counterSize = default(System.Int32); - System.Int32* _counters = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorCounters(_group,_numCounters,_maxActiveCounters,_counterSize,_counters); -} -static unsafe void Test_GetPerfMonitorCounters_23251() { - System.UInt32 _group = default(System.UInt32); - System.Int32 _numCounters = default(System.Int32); - System.Int32 _maxActiveCounters = default(System.Int32); - System.Int32 _counterSize = default(System.Int32); - System.UInt32[] _counters = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorCounters(_group,out _numCounters,out _maxActiveCounters,_counterSize,_counters); -} -static unsafe void Test_GetPerfMonitorCounters_23252() { - System.UInt32 _group = default(System.UInt32); - System.Int32 _numCounters = default(System.Int32); - System.Int32 _maxActiveCounters = default(System.Int32); - System.Int32 _counterSize = default(System.Int32); - System.UInt32 _counters = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorCounters(_group,out _numCounters,out _maxActiveCounters,_counterSize,out _counters); -} -static unsafe void Test_GetPerfMonitorCounters_23253() { - System.UInt32 _group = default(System.UInt32); - System.Int32* _numCounters = default(System.Int32*); - System.Int32* _maxActiveCounters = default(System.Int32*); - System.Int32 _counterSize = default(System.Int32); - System.UInt32* _counters = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorCounters(_group,_numCounters,_maxActiveCounters,_counterSize,_counters); -} -static unsafe void Test_GetPerfMonitorCounterString_23254() { - System.Int32 _group = default(System.Int32); - System.Int32 _counter = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _counterString = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorCounterString(_group,_counter,_bufSize,out _length,_counterString); -} -static unsafe void Test_GetPerfMonitorCounterString_23255() { - System.Int32 _group = default(System.Int32); - System.Int32 _counter = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _counterString = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorCounterString(_group,_counter,_bufSize,_length,_counterString); -} -static unsafe void Test_GetPerfMonitorCounterString_23256() { - System.UInt32 _group = default(System.UInt32); - System.UInt32 _counter = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _counterString = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorCounterString(_group,_counter,_bufSize,out _length,_counterString); -} -static unsafe void Test_GetPerfMonitorCounterString_23257() { - System.UInt32 _group = default(System.UInt32); - System.UInt32 _counter = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _counterString = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorCounterString(_group,_counter,_bufSize,_length,_counterString); -} -static unsafe void Test_GetPerfMonitorGroups_23258() { - System.Int32 _numGroups = default(System.Int32); - System.Int32 _groupsSize = default(System.Int32); - System.Int32[] _groups = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorGroups(out _numGroups,_groupsSize,_groups); -} -static unsafe void Test_GetPerfMonitorGroups_23259() { - System.Int32 _numGroups = default(System.Int32); - System.Int32 _groupsSize = default(System.Int32); - System.Int32 _groups = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorGroups(out _numGroups,_groupsSize,out _groups); -} -static unsafe void Test_GetPerfMonitorGroups_23260() { - System.Int32 _numGroups = default(System.Int32); - System.Int32 _groupsSize = default(System.Int32); - System.UInt32[] _groups = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorGroups(out _numGroups,_groupsSize,_groups); -} -static unsafe void Test_GetPerfMonitorGroups_23261() { - System.Int32 _numGroups = default(System.Int32); - System.Int32 _groupsSize = default(System.Int32); - System.UInt32 _groups = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorGroups(out _numGroups,_groupsSize,out _groups); -} -static unsafe void Test_GetPerfMonitorGroups_23262() { - System.Int32* _numGroups = default(System.Int32*); - System.Int32 _groupsSize = default(System.Int32); - System.Int32* _groups = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorGroups(_numGroups,_groupsSize,_groups); -} -static unsafe void Test_GetPerfMonitorGroups_23263() { - System.Int32* _numGroups = default(System.Int32*); - System.Int32 _groupsSize = default(System.Int32); - System.UInt32* _groups = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorGroups(_numGroups,_groupsSize,_groups); -} -static unsafe void Test_GetPerfMonitorGroupString_23264() { - System.Int32 _group = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _groupString = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorGroupString(_group,_bufSize,out _length,_groupString); -} -static unsafe void Test_GetPerfMonitorGroupString_23265() { - System.Int32 _group = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _groupString = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorGroupString(_group,_bufSize,_length,_groupString); -} -static unsafe void Test_GetPerfMonitorGroupString_23266() { - System.UInt32 _group = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _groupString = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorGroupString(_group,_bufSize,out _length,_groupString); -} -static unsafe void Test_GetPerfMonitorGroupString_23267() { - System.UInt32 _group = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _groupString = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorGroupString(_group,_bufSize,_length,_groupString); -} -static unsafe void Test_IsName_23268() { - OpenTK.Graphics.OpenGL.AmdNameGenDelete _identifier = default(OpenTK.Graphics.OpenGL.AmdNameGenDelete); - System.Int32 _name = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Amd.IsName(_identifier,_name); -} -static unsafe void Test_IsName_23269() { - OpenTK.Graphics.OpenGL.AmdNameGenDelete _identifier = default(OpenTK.Graphics.OpenGL.AmdNameGenDelete); - System.UInt32 _name = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Amd.IsName(_identifier,_name); -} -static unsafe void Test_MultiDrawArraysIndirect_23270() { - OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect _mode = default(OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect); - System.IntPtr _indirect = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Amd.MultiDrawArraysIndirect(_mode,_indirect,_primcount,_stride); -} -static unsafe void Test_MultiDrawArraysIndirect_23271() { - OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect _mode = default(OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect); - int[] _indirect = default(int[]); - System.Int32 _primcount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Amd.MultiDrawArraysIndirect(_mode,_indirect,_primcount,_stride); -} -static unsafe void Test_MultiDrawArraysIndirect_23272() { - OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect _mode = default(OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect); - int[,] _indirect = default(int[,]); - System.Int32 _primcount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Amd.MultiDrawArraysIndirect(_mode,_indirect,_primcount,_stride); -} -static unsafe void Test_MultiDrawArraysIndirect_23273() { - OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect _mode = default(OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect); - int[,,] _indirect = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Amd.MultiDrawArraysIndirect(_mode,_indirect,_primcount,_stride); -} -static unsafe void Test_MultiDrawArraysIndirect_23274() { - OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect _mode = default(OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect); - int _indirect = default(int); - System.Int32 _primcount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Amd.MultiDrawArraysIndirect(_mode,ref _indirect,_primcount,_stride); -} -static unsafe void Test_MultiDrawElementsIndirect_23275() { - OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect _mode = default(OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect); - OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect _type = default(OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect); - System.IntPtr _indirect = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Amd.MultiDrawElementsIndirect(_mode,_type,_indirect,_primcount,_stride); -} -static unsafe void Test_MultiDrawElementsIndirect_23276() { - OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect _mode = default(OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect); - OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect _type = default(OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect); - int[] _indirect = default(int[]); - System.Int32 _primcount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Amd.MultiDrawElementsIndirect(_mode,_type,_indirect,_primcount,_stride); -} -static unsafe void Test_MultiDrawElementsIndirect_23277() { - OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect _mode = default(OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect); - OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect _type = default(OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect); - int[,] _indirect = default(int[,]); - System.Int32 _primcount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Amd.MultiDrawElementsIndirect(_mode,_type,_indirect,_primcount,_stride); -} -static unsafe void Test_MultiDrawElementsIndirect_23278() { - OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect _mode = default(OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect); - OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect _type = default(OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect); - int[,,] _indirect = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Amd.MultiDrawElementsIndirect(_mode,_type,_indirect,_primcount,_stride); -} -static unsafe void Test_MultiDrawElementsIndirect_23279() { - OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect _mode = default(OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect); - OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect _type = default(OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect); - int _indirect = default(int); - System.Int32 _primcount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Amd.MultiDrawElementsIndirect(_mode,_type,ref _indirect,_primcount,_stride); -} -static unsafe void Test_QueryObjectParameter_23280() { - OpenTK.Graphics.OpenGL.AmdOcclusionQueryEvent _target = default(OpenTK.Graphics.OpenGL.AmdOcclusionQueryEvent); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.AmdOcclusionQueryEvent _pname = default(OpenTK.Graphics.OpenGL.AmdOcclusionQueryEvent); - OpenTK.Graphics.OpenGL.OcclusionQueryEventMaskAmd _param = default(OpenTK.Graphics.OpenGL.OcclusionQueryEventMaskAmd); - OpenTK.Graphics.OpenGL.GL.Amd.QueryObjectParameter(_target,_id,_pname,_param); -} -static unsafe void Test_QueryObjectParameter_23281() { - OpenTK.Graphics.OpenGL.AmdOcclusionQueryEvent _target = default(OpenTK.Graphics.OpenGL.AmdOcclusionQueryEvent); - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.AmdOcclusionQueryEvent _pname = default(OpenTK.Graphics.OpenGL.AmdOcclusionQueryEvent); - OpenTK.Graphics.OpenGL.OcclusionQueryEventMaskAmd _param = default(OpenTK.Graphics.OpenGL.OcclusionQueryEventMaskAmd); - OpenTK.Graphics.OpenGL.GL.Amd.QueryObjectParameter(_target,_id,_pname,_param); -} -static unsafe void Test_SelectPerfMonitorCounters_23282() { - System.Int32 _monitor = default(System.Int32); - System.Boolean _enable = default(System.Boolean); - System.Int32 _group = default(System.Int32); - System.Int32 _numCounters = default(System.Int32); - System.Int32[] _counterList = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Amd.SelectPerfMonitorCounters(_monitor,_enable,_group,_numCounters,_counterList); -} -static unsafe void Test_SelectPerfMonitorCounters_23283() { - System.Int32 _monitor = default(System.Int32); - System.Boolean _enable = default(System.Boolean); - System.Int32 _group = default(System.Int32); - System.Int32 _numCounters = default(System.Int32); - System.Int32 _counterList = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Amd.SelectPerfMonitorCounters(_monitor,_enable,_group,_numCounters,out _counterList); -} -static unsafe void Test_SelectPerfMonitorCounters_23284() { - System.Int32 _monitor = default(System.Int32); - System.Boolean _enable = default(System.Boolean); - System.Int32 _group = default(System.Int32); - System.Int32 _numCounters = default(System.Int32); - System.Int32* _counterList = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Amd.SelectPerfMonitorCounters(_monitor,_enable,_group,_numCounters,_counterList); -} -static unsafe void Test_SelectPerfMonitorCounters_23285() { - System.UInt32 _monitor = default(System.UInt32); - System.Boolean _enable = default(System.Boolean); - System.UInt32 _group = default(System.UInt32); - System.Int32 _numCounters = default(System.Int32); - System.UInt32[] _counterList = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Amd.SelectPerfMonitorCounters(_monitor,_enable,_group,_numCounters,_counterList); -} -static unsafe void Test_SelectPerfMonitorCounters_23286() { - System.UInt32 _monitor = default(System.UInt32); - System.Boolean _enable = default(System.Boolean); - System.UInt32 _group = default(System.UInt32); - System.Int32 _numCounters = default(System.Int32); - System.UInt32 _counterList = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Amd.SelectPerfMonitorCounters(_monitor,_enable,_group,_numCounters,out _counterList); -} -static unsafe void Test_SelectPerfMonitorCounters_23287() { - System.UInt32 _monitor = default(System.UInt32); - System.Boolean _enable = default(System.Boolean); - System.UInt32 _group = default(System.UInt32); - System.Int32 _numCounters = default(System.Int32); - System.UInt32* _counterList = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Amd.SelectPerfMonitorCounters(_monitor,_enable,_group,_numCounters,_counterList); -} -static unsafe void Test_SetMultisample_23288() { - OpenTK.Graphics.OpenGL.AmdSamplePositions _pname = default(OpenTK.Graphics.OpenGL.AmdSamplePositions); - System.Int32 _index = default(System.Int32); - System.Single[] _val = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Amd.SetMultisample(_pname,_index,_val); -} -static unsafe void Test_SetMultisample_23289() { - OpenTK.Graphics.OpenGL.AmdSamplePositions _pname = default(OpenTK.Graphics.OpenGL.AmdSamplePositions); - System.Int32 _index = default(System.Int32); - System.Single _val = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Amd.SetMultisample(_pname,_index,ref _val); -} -static unsafe void Test_SetMultisample_23290() { - OpenTK.Graphics.OpenGL.AmdSamplePositions _pname = default(OpenTK.Graphics.OpenGL.AmdSamplePositions); - System.Int32 _index = default(System.Int32); - System.Single* _val = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Amd.SetMultisample(_pname,_index,_val); -} -static unsafe void Test_SetMultisample_23291() { - OpenTK.Graphics.OpenGL.AmdSamplePositions _pname = default(OpenTK.Graphics.OpenGL.AmdSamplePositions); - System.UInt32 _index = default(System.UInt32); - System.Single[] _val = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Amd.SetMultisample(_pname,_index,_val); -} -static unsafe void Test_SetMultisample_23292() { - OpenTK.Graphics.OpenGL.AmdSamplePositions _pname = default(OpenTK.Graphics.OpenGL.AmdSamplePositions); - System.UInt32 _index = default(System.UInt32); - System.Single _val = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Amd.SetMultisample(_pname,_index,ref _val); -} -static unsafe void Test_SetMultisample_23293() { - OpenTK.Graphics.OpenGL.AmdSamplePositions _pname = default(OpenTK.Graphics.OpenGL.AmdSamplePositions); - System.UInt32 _index = default(System.UInt32); - System.Single* _val = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Amd.SetMultisample(_pname,_index,_val); -} -static unsafe void Test_StencilOpValue_23294() { - OpenTK.Graphics.OpenGL.AmdStencilOperationExtended _face = default(OpenTK.Graphics.OpenGL.AmdStencilOperationExtended); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Amd.StencilOpValue(_face,_value); -} -static unsafe void Test_StencilOpValue_23295() { - OpenTK.Graphics.OpenGL.AmdStencilOperationExtended _face = default(OpenTK.Graphics.OpenGL.AmdStencilOperationExtended); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Amd.StencilOpValue(_face,_value); -} -static unsafe void Test_TessellationFactor_23296() { - System.Single _factor = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Amd.TessellationFactor(_factor); -} -static unsafe void Test_TessellationMode_23297() { - OpenTK.Graphics.OpenGL.AmdVertexShaderTesselator _mode = default(OpenTK.Graphics.OpenGL.AmdVertexShaderTesselator); - OpenTK.Graphics.OpenGL.GL.Amd.TessellationMode(_mode); -} -static unsafe void Test_TessellationMode_23298() { - OpenTK.Graphics.OpenGL.AmdVertexShaderTessellator _mode = default(OpenTK.Graphics.OpenGL.AmdVertexShaderTessellator); - OpenTK.Graphics.OpenGL.GL.Amd.TessellationMode(_mode); -} -static unsafe void Test_TexStorageSparse_23299() { - OpenTK.Graphics.OpenGL.AmdSparseTexture _target = default(OpenTK.Graphics.OpenGL.AmdSparseTexture); - OpenTK.Graphics.OpenGL.AmdSparseTexture _internalFormat = default(OpenTK.Graphics.OpenGL.AmdSparseTexture); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _layers = default(System.Int32); - System.Int32 _flags = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Amd.TexStorageSparse(_target,_internalFormat,_width,_height,_depth,_layers,_flags); -} -static unsafe void Test_TexStorageSparse_23300() { - OpenTK.Graphics.OpenGL.AmdSparseTexture _target = default(OpenTK.Graphics.OpenGL.AmdSparseTexture); - OpenTK.Graphics.OpenGL.AmdSparseTexture _internalFormat = default(OpenTK.Graphics.OpenGL.AmdSparseTexture); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _layers = default(System.Int32); - System.UInt32 _flags = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Amd.TexStorageSparse(_target,_internalFormat,_width,_height,_depth,_layers,_flags); -} -static unsafe void Test_TextureStorageSparse_23301() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.AmdSparseTexture _target = default(OpenTK.Graphics.OpenGL.AmdSparseTexture); - OpenTK.Graphics.OpenGL.AmdSparseTexture _internalFormat = default(OpenTK.Graphics.OpenGL.AmdSparseTexture); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _layers = default(System.Int32); - System.Int32 _flags = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Amd.TextureStorageSparse(_texture,_target,_internalFormat,_width,_height,_depth,_layers,_flags); -} -static unsafe void Test_TextureStorageSparse_23302() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.AmdSparseTexture _target = default(OpenTK.Graphics.OpenGL.AmdSparseTexture); - OpenTK.Graphics.OpenGL.AmdSparseTexture _internalFormat = default(OpenTK.Graphics.OpenGL.AmdSparseTexture); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _layers = default(System.Int32); - System.UInt32 _flags = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Amd.TextureStorageSparse(_texture,_target,_internalFormat,_width,_height,_depth,_layers,_flags); -} -static unsafe void Test_VertexAttribParameter_23303() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.AmdInterleavedElements _pname = default(OpenTK.Graphics.OpenGL.AmdInterleavedElements); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Amd.VertexAttribParameter(_index,_pname,_param); -} -static unsafe void Test_VertexAttribParameter_23304() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.AmdInterleavedElements _pname = default(OpenTK.Graphics.OpenGL.AmdInterleavedElements); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Amd.VertexAttribParameter(_index,_pname,_param); -} -static unsafe void Test_GetPerfMonitorCounterData_23305() { - System.Int32 _monitor = default(System.Int32); - OpenTK.Graphics.OpenGL.AmdPerformanceMonitor _pname = default(OpenTK.Graphics.OpenGL.AmdPerformanceMonitor); - System.Int32 _dataSize = default(System.Int32); - System.Int32[] _data = default(System.Int32[]); - System.Int32* _bytesWritten = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorCounterData(_monitor,_pname,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfMonitorCounterData_23306() { - System.Int32 _monitor = default(System.Int32); - OpenTK.Graphics.OpenGL.AmdPerformanceMonitor _pname = default(OpenTK.Graphics.OpenGL.AmdPerformanceMonitor); - System.Int32 _dataSize = default(System.Int32); - System.UInt32[] _data = default(System.UInt32[]); - System.Int32* _bytesWritten = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorCounterData(_monitor,_pname,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfMonitorCounterData_23307() { - System.UInt32 _monitor = default(System.UInt32); - OpenTK.Graphics.OpenGL.AmdPerformanceMonitor _pname = default(OpenTK.Graphics.OpenGL.AmdPerformanceMonitor); - System.Int32 _dataSize = default(System.Int32); - System.UInt32[] _data = default(System.UInt32[]); - System.Int32* _bytesWritten = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorCounterData(_monitor,_pname,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfMonitorCounters_23308() { - System.Int32 _group = default(System.Int32); - System.Int32* _numCounters = default(System.Int32*); - System.Int32* _maxActiveCounters = default(System.Int32*); - System.Int32 _counterSize = default(System.Int32); - System.Int32[] _counters = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorCounters(_group,_numCounters,_maxActiveCounters,_counterSize,_counters); -} -static unsafe void Test_GetPerfMonitorCounters_23309() { - System.UInt32 _group = default(System.UInt32); - System.Int32* _numCounters = default(System.Int32*); - System.Int32* _maxActiveCounters = default(System.Int32*); - System.Int32 _counterSize = default(System.Int32); - System.UInt32[] _counters = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorCounters(_group,_numCounters,_maxActiveCounters,_counterSize,_counters); -} -static unsafe void Test_GetPerfMonitorGroup_23310() { - System.Int32 _numGroups = default(System.Int32); - System.Int32 _groupsSize = default(System.Int32); - System.Int32 _groups = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorGroup(out _numGroups,_groupsSize,out _groups); -} -static unsafe void Test_GetPerfMonitorGroup_23311() { - System.Int32 _numGroups = default(System.Int32); - System.Int32 _groupsSize = default(System.Int32); - System.UInt32 _groups = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorGroup(out _numGroups,_groupsSize,out _groups); -} -static unsafe void Test_GetPerfMonitorGroup_23312() { - System.Int32* _numGroups = default(System.Int32*); - System.Int32 _groupsSize = default(System.Int32); - System.Int32[] _groups = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorGroup(_numGroups,_groupsSize,_groups); -} -static unsafe void Test_GetPerfMonitorGroup_23313() { - System.Int32* _numGroups = default(System.Int32*); - System.Int32 _groupsSize = default(System.Int32); - System.Int32* _groups = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorGroup(_numGroups,_groupsSize,_groups); -} -static unsafe void Test_GetPerfMonitorGroup_23314() { - System.Int32* _numGroups = default(System.Int32*); - System.Int32 _groupsSize = default(System.Int32); - System.UInt32[] _groups = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorGroup(_numGroups,_groupsSize,_groups); -} -static unsafe void Test_GetPerfMonitorGroup_23315() { - System.Int32* _numGroups = default(System.Int32*); - System.Int32 _groupsSize = default(System.Int32); - System.UInt32* _groups = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Amd.GetPerfMonitorGroup(_numGroups,_groupsSize,_groups); -} -static unsafe void Test_BindVertexArray_23316() { - System.Int32 _array = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Apple.BindVertexArray(_array); -} -static unsafe void Test_BindVertexArray_23317() { - System.UInt32 _array = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Apple.BindVertexArray(_array); -} -static unsafe void Test_BufferParameter_23318() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - OpenTK.Graphics.OpenGL.BufferParameterApple _pname = default(OpenTK.Graphics.OpenGL.BufferParameterApple); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Apple.BufferParameter(_target,_pname,_param); -} -static unsafe void Test_DeleteFence_23319() { - System.Int32 _fences = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Apple.DeleteFence(_fences); -} -static unsafe void Test_DeleteFence_23320() { - System.UInt32 _fences = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Apple.DeleteFence(_fences); -} -static unsafe void Test_DeleteFences_23321() { - System.Int32 _n = default(System.Int32); - System.Int32[] _fences = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Apple.DeleteFences(_n,_fences); -} -static unsafe void Test_DeleteFences_23322() { - System.Int32 _n = default(System.Int32); - System.Int32 _fences = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Apple.DeleteFences(_n,ref _fences); -} -static unsafe void Test_DeleteFences_23323() { - System.Int32 _n = default(System.Int32); - System.Int32* _fences = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Apple.DeleteFences(_n,_fences); -} -static unsafe void Test_DeleteFences_23324() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _fences = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Apple.DeleteFences(_n,_fences); -} -static unsafe void Test_DeleteFences_23325() { - System.Int32 _n = default(System.Int32); - System.UInt32 _fences = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Apple.DeleteFences(_n,ref _fences); -} -static unsafe void Test_DeleteFences_23326() { - System.Int32 _n = default(System.Int32); - System.UInt32* _fences = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Apple.DeleteFences(_n,_fences); -} -static unsafe void Test_DeleteVertexArray_23327() { - System.Int32 _arrays = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Apple.DeleteVertexArray(_arrays); -} -static unsafe void Test_DeleteVertexArray_23328() { - System.UInt32 _arrays = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Apple.DeleteVertexArray(_arrays); -} -static unsafe void Test_DeleteVertexArrays_23329() { - System.Int32 _n = default(System.Int32); - System.Int32[] _arrays = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Apple.DeleteVertexArrays(_n,_arrays); -} -static unsafe void Test_DeleteVertexArrays_23330() { - System.Int32 _n = default(System.Int32); - System.Int32 _arrays = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Apple.DeleteVertexArrays(_n,ref _arrays); -} -static unsafe void Test_DeleteVertexArrays_23331() { - System.Int32 _n = default(System.Int32); - System.Int32* _arrays = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Apple.DeleteVertexArrays(_n,_arrays); -} -static unsafe void Test_DeleteVertexArrays_23332() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _arrays = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Apple.DeleteVertexArrays(_n,_arrays); -} -static unsafe void Test_DeleteVertexArrays_23333() { - System.Int32 _n = default(System.Int32); - System.UInt32 _arrays = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Apple.DeleteVertexArrays(_n,ref _arrays); -} -static unsafe void Test_DeleteVertexArrays_23334() { - System.Int32 _n = default(System.Int32); - System.UInt32* _arrays = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Apple.DeleteVertexArrays(_n,_arrays); -} -static unsafe void Test_DisableVertexAttrib_23335() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators _pname = default(OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators); - OpenTK.Graphics.OpenGL.GL.Apple.DisableVertexAttrib(_index,_pname); -} -static unsafe void Test_DisableVertexAttrib_23336() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators _pname = default(OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators); - OpenTK.Graphics.OpenGL.GL.Apple.DisableVertexAttrib(_index,_pname); -} -static unsafe void Test_DrawElementArray_23337() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Apple.DrawElementArray(_mode,_first,_count); -} -static unsafe void Test_DrawElementArray_23338() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Apple.DrawElementArray(_mode,_first,_count); -} -static unsafe void Test_DrawRangeElementArray_23339() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Apple.DrawRangeElementArray(_mode,_start,_end,_first,_count); -} -static unsafe void Test_DrawRangeElementArray_23340() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Apple.DrawRangeElementArray(_mode,_start,_end,_first,_count); -} -static unsafe void Test_DrawRangeElementArray_23341() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Apple.DrawRangeElementArray(_mode,_start,_end,_first,_count); -} -static unsafe void Test_DrawRangeElementArray_23342() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Apple.DrawRangeElementArray(_mode,_start,_end,_first,_count); -} -static unsafe void Test_ElementPointer_23343() { - OpenTK.Graphics.OpenGL.AppleElementArray _type = default(OpenTK.Graphics.OpenGL.AppleElementArray); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Apple.ElementPointer(_type,_pointer); -} -static unsafe void Test_ElementPointer_23344() { - OpenTK.Graphics.OpenGL.AppleElementArray _type = default(OpenTK.Graphics.OpenGL.AppleElementArray); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.Apple.ElementPointer(_type,_pointer); -} -static unsafe void Test_ElementPointer_23345() { - OpenTK.Graphics.OpenGL.AppleElementArray _type = default(OpenTK.Graphics.OpenGL.AppleElementArray); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Apple.ElementPointer(_type,_pointer); -} -static unsafe void Test_ElementPointer_23346() { - OpenTK.Graphics.OpenGL.AppleElementArray _type = default(OpenTK.Graphics.OpenGL.AppleElementArray); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Apple.ElementPointer(_type,_pointer); -} -static unsafe void Test_ElementPointer_23347() { - OpenTK.Graphics.OpenGL.AppleElementArray _type = default(OpenTK.Graphics.OpenGL.AppleElementArray); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.Apple.ElementPointer(_type,ref _pointer); -} -static unsafe void Test_EnableVertexAttrib_23348() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators _pname = default(OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators); - OpenTK.Graphics.OpenGL.GL.Apple.EnableVertexAttrib(_index,_pname); -} -static unsafe void Test_EnableVertexAttrib_23349() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators _pname = default(OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators); - OpenTK.Graphics.OpenGL.GL.Apple.EnableVertexAttrib(_index,_pname); -} -static unsafe void Test_FinishFence_23350() { - System.Int32 _fence = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Apple.FinishFence(_fence); -} -static unsafe void Test_FinishFence_23351() { - System.UInt32 _fence = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Apple.FinishFence(_fence); -} -static unsafe void Test_FinishObject_23352() { - OpenTK.Graphics.OpenGL.AppleFence _object = default(OpenTK.Graphics.OpenGL.AppleFence); - System.Int32 _name = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Apple.FinishObject(_object,_name); -} -static unsafe void Test_FlushMappedBufferRange_23353() { - OpenTK.Graphics.OpenGL.BufferTarget _target = default(OpenTK.Graphics.OpenGL.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Apple.FlushMappedBufferRange(_target,_offset,_size); -} -static unsafe void Test_FlushVertexArrayRange_23354() { - System.Int32 _length = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Apple.FlushVertexArrayRange(_length,_pointer); -} -static unsafe void Test_FlushVertexArrayRange_23355() { - System.Int32 _length = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.Apple.FlushVertexArrayRange(_length,_pointer); -} -static unsafe void Test_FlushVertexArrayRange_23356() { - System.Int32 _length = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Apple.FlushVertexArrayRange(_length,_pointer); -} -static unsafe void Test_FlushVertexArrayRange_23357() { - System.Int32 _length = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Apple.FlushVertexArrayRange(_length,_pointer); -} -static unsafe void Test_FlushVertexArrayRange_23358() { - System.Int32 _length = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.Apple.FlushVertexArrayRange(_length,ref _pointer); -} -static unsafe void Test_GenFence_23359() { - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Apple.GenFence(); -} -static unsafe void Test_GenFences_23360() { - System.Int32 _n = default(System.Int32); - System.Int32[] _fences = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Apple.GenFences(_n,_fences); -} -static unsafe void Test_GenFences_23361() { - System.Int32 _n = default(System.Int32); - System.Int32 _fences = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Apple.GenFences(_n,out _fences); -} -static unsafe void Test_GenFences_23362() { - System.Int32 _n = default(System.Int32); - System.Int32* _fences = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Apple.GenFences(_n,_fences); -} -static unsafe void Test_GenFences_23363() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _fences = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Apple.GenFences(_n,_fences); -} -static unsafe void Test_GenFences_23364() { - System.Int32 _n = default(System.Int32); - System.UInt32 _fences = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Apple.GenFences(_n,out _fences); -} -static unsafe void Test_GenFences_23365() { - System.Int32 _n = default(System.Int32); - System.UInt32* _fences = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Apple.GenFences(_n,_fences); -} -static unsafe void Test_GenVertexArray_23366() { - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Apple.GenVertexArray(); -} -static unsafe void Test_GenVertexArrays_23367() { - System.Int32 _n = default(System.Int32); - System.Int32[] _arrays = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Apple.GenVertexArrays(_n,_arrays); -} -static unsafe void Test_GenVertexArrays_23368() { - System.Int32 _n = default(System.Int32); - System.Int32 _arrays = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Apple.GenVertexArrays(_n,out _arrays); -} -static unsafe void Test_GenVertexArrays_23369() { - System.Int32 _n = default(System.Int32); - System.Int32* _arrays = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Apple.GenVertexArrays(_n,_arrays); -} -static unsafe void Test_GenVertexArrays_23370() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _arrays = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Apple.GenVertexArrays(_n,_arrays); -} -static unsafe void Test_GenVertexArrays_23371() { - System.Int32 _n = default(System.Int32); - System.UInt32 _arrays = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Apple.GenVertexArrays(_n,out _arrays); -} -static unsafe void Test_GenVertexArrays_23372() { - System.Int32 _n = default(System.Int32); - System.UInt32* _arrays = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Apple.GenVertexArrays(_n,_arrays); -} -static unsafe void Test_GetObjectParameter_23373() { - OpenTK.Graphics.OpenGL.AppleObjectPurgeable _objectType = default(OpenTK.Graphics.OpenGL.AppleObjectPurgeable); - System.Int32 _name = default(System.Int32); - OpenTK.Graphics.OpenGL.AppleObjectPurgeable _pname = default(OpenTK.Graphics.OpenGL.AppleObjectPurgeable); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Apple.GetObjectParameter(_objectType,_name,_pname,_params); -} -static unsafe void Test_GetObjectParameter_23374() { - OpenTK.Graphics.OpenGL.AppleObjectPurgeable _objectType = default(OpenTK.Graphics.OpenGL.AppleObjectPurgeable); - System.Int32 _name = default(System.Int32); - OpenTK.Graphics.OpenGL.AppleObjectPurgeable _pname = default(OpenTK.Graphics.OpenGL.AppleObjectPurgeable); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Apple.GetObjectParameter(_objectType,_name,_pname,out _params); -} -static unsafe void Test_GetObjectParameter_23375() { - OpenTK.Graphics.OpenGL.AppleObjectPurgeable _objectType = default(OpenTK.Graphics.OpenGL.AppleObjectPurgeable); - System.Int32 _name = default(System.Int32); - OpenTK.Graphics.OpenGL.AppleObjectPurgeable _pname = default(OpenTK.Graphics.OpenGL.AppleObjectPurgeable); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Apple.GetObjectParameter(_objectType,_name,_pname,_params); -} -static unsafe void Test_GetObjectParameter_23376() { - OpenTK.Graphics.OpenGL.AppleObjectPurgeable _objectType = default(OpenTK.Graphics.OpenGL.AppleObjectPurgeable); - System.UInt32 _name = default(System.UInt32); - OpenTK.Graphics.OpenGL.AppleObjectPurgeable _pname = default(OpenTK.Graphics.OpenGL.AppleObjectPurgeable); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Apple.GetObjectParameter(_objectType,_name,_pname,_params); -} -static unsafe void Test_GetObjectParameter_23377() { - OpenTK.Graphics.OpenGL.AppleObjectPurgeable _objectType = default(OpenTK.Graphics.OpenGL.AppleObjectPurgeable); - System.UInt32 _name = default(System.UInt32); - OpenTK.Graphics.OpenGL.AppleObjectPurgeable _pname = default(OpenTK.Graphics.OpenGL.AppleObjectPurgeable); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Apple.GetObjectParameter(_objectType,_name,_pname,out _params); -} -static unsafe void Test_GetObjectParameter_23378() { - OpenTK.Graphics.OpenGL.AppleObjectPurgeable _objectType = default(OpenTK.Graphics.OpenGL.AppleObjectPurgeable); - System.UInt32 _name = default(System.UInt32); - OpenTK.Graphics.OpenGL.AppleObjectPurgeable _pname = default(OpenTK.Graphics.OpenGL.AppleObjectPurgeable); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Apple.GetObjectParameter(_objectType,_name,_pname,_params); -} -static unsafe void Test_GetTexParameterPointer_23379() { - OpenTK.Graphics.OpenGL.AppleTextureRange _target = default(OpenTK.Graphics.OpenGL.AppleTextureRange); - OpenTK.Graphics.OpenGL.AppleTextureRange _pname = default(OpenTK.Graphics.OpenGL.AppleTextureRange); - System.IntPtr _params = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Apple.GetTexParameterPointer(_target,_pname,_params); -} -static unsafe void Test_GetTexParameterPointer_23380() { - OpenTK.Graphics.OpenGL.AppleTextureRange _target = default(OpenTK.Graphics.OpenGL.AppleTextureRange); - OpenTK.Graphics.OpenGL.AppleTextureRange _pname = default(OpenTK.Graphics.OpenGL.AppleTextureRange); - int[] _params = default(int[]); - OpenTK.Graphics.OpenGL.GL.Apple.GetTexParameterPointer(_target,_pname,_params); -} -static unsafe void Test_GetTexParameterPointer_23381() { - OpenTK.Graphics.OpenGL.AppleTextureRange _target = default(OpenTK.Graphics.OpenGL.AppleTextureRange); - OpenTK.Graphics.OpenGL.AppleTextureRange _pname = default(OpenTK.Graphics.OpenGL.AppleTextureRange); - int[,] _params = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Apple.GetTexParameterPointer(_target,_pname,_params); -} -static unsafe void Test_GetTexParameterPointer_23382() { - OpenTK.Graphics.OpenGL.AppleTextureRange _target = default(OpenTK.Graphics.OpenGL.AppleTextureRange); - OpenTK.Graphics.OpenGL.AppleTextureRange _pname = default(OpenTK.Graphics.OpenGL.AppleTextureRange); - int[,,] _params = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Apple.GetTexParameterPointer(_target,_pname,_params); -} -static unsafe void Test_GetTexParameterPointer_23383() { - OpenTK.Graphics.OpenGL.AppleTextureRange _target = default(OpenTK.Graphics.OpenGL.AppleTextureRange); - OpenTK.Graphics.OpenGL.AppleTextureRange _pname = default(OpenTK.Graphics.OpenGL.AppleTextureRange); - int _params = default(int); - OpenTK.Graphics.OpenGL.GL.Apple.GetTexParameterPointer(_target,_pname,ref _params); -} -static unsafe void Test_IsFence_23384() { - System.Int32 _fence = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Apple.IsFence(_fence); -} -static unsafe void Test_IsFence_23385() { - System.UInt32 _fence = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Apple.IsFence(_fence); -} -static unsafe void Test_IsVertexArray_23386() { - System.Int32 _array = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Apple.IsVertexArray(_array); -} -static unsafe void Test_IsVertexArray_23387() { - System.UInt32 _array = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Apple.IsVertexArray(_array); -} -static unsafe void Test_IsVertexAttribEnabled_23388() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators _pname = default(OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Apple.IsVertexAttribEnabled(_index,_pname); -} -static unsafe void Test_IsVertexAttribEnabled_23389() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators _pname = default(OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Apple.IsVertexAttribEnabled(_index,_pname); -} -static unsafe void Test_MapVertexAttrib1_23390() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - System.Double _u1 = default(System.Double); - System.Double _u2 = default(System.Double); - System.Int32 _stride = default(System.Int32); - System.Int32 _order = default(System.Int32); - System.Double[] _points = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Apple.MapVertexAttrib1(_index,_size,_u1,_u2,_stride,_order,_points); -} -static unsafe void Test_MapVertexAttrib1_23391() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - System.Double _u1 = default(System.Double); - System.Double _u2 = default(System.Double); - System.Int32 _stride = default(System.Int32); - System.Int32 _order = default(System.Int32); - System.Double _points = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Apple.MapVertexAttrib1(_index,_size,_u1,_u2,_stride,_order,ref _points); -} -static unsafe void Test_MapVertexAttrib1_23392() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - System.Double _u1 = default(System.Double); - System.Double _u2 = default(System.Double); - System.Int32 _stride = default(System.Int32); - System.Int32 _order = default(System.Int32); - System.Double* _points = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Apple.MapVertexAttrib1(_index,_size,_u1,_u2,_stride,_order,_points); -} -static unsafe void Test_MapVertexAttrib1_23393() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _size = default(System.UInt32); - System.Double _u1 = default(System.Double); - System.Double _u2 = default(System.Double); - System.Int32 _stride = default(System.Int32); - System.Int32 _order = default(System.Int32); - System.Double[] _points = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Apple.MapVertexAttrib1(_index,_size,_u1,_u2,_stride,_order,_points); -} -static unsafe void Test_MapVertexAttrib1_23394() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _size = default(System.UInt32); - System.Double _u1 = default(System.Double); - System.Double _u2 = default(System.Double); - System.Int32 _stride = default(System.Int32); - System.Int32 _order = default(System.Int32); - System.Double _points = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Apple.MapVertexAttrib1(_index,_size,_u1,_u2,_stride,_order,ref _points); -} -static unsafe void Test_MapVertexAttrib1_23395() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _size = default(System.UInt32); - System.Double _u1 = default(System.Double); - System.Double _u2 = default(System.Double); - System.Int32 _stride = default(System.Int32); - System.Int32 _order = default(System.Int32); - System.Double* _points = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Apple.MapVertexAttrib1(_index,_size,_u1,_u2,_stride,_order,_points); -} -static unsafe void Test_MapVertexAttrib1_23396() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - System.Single _u1 = default(System.Single); - System.Single _u2 = default(System.Single); - System.Int32 _stride = default(System.Int32); - System.Int32 _order = default(System.Int32); - System.Single[] _points = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Apple.MapVertexAttrib1(_index,_size,_u1,_u2,_stride,_order,_points); -} -static unsafe void Test_MapVertexAttrib1_23397() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - System.Single _u1 = default(System.Single); - System.Single _u2 = default(System.Single); - System.Int32 _stride = default(System.Int32); - System.Int32 _order = default(System.Int32); - System.Single _points = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Apple.MapVertexAttrib1(_index,_size,_u1,_u2,_stride,_order,ref _points); -} -static unsafe void Test_MapVertexAttrib1_23398() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - System.Single _u1 = default(System.Single); - System.Single _u2 = default(System.Single); - System.Int32 _stride = default(System.Int32); - System.Int32 _order = default(System.Int32); - System.Single* _points = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Apple.MapVertexAttrib1(_index,_size,_u1,_u2,_stride,_order,_points); -} -static unsafe void Test_MapVertexAttrib1_23399() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _size = default(System.UInt32); - System.Single _u1 = default(System.Single); - System.Single _u2 = default(System.Single); - System.Int32 _stride = default(System.Int32); - System.Int32 _order = default(System.Int32); - System.Single[] _points = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Apple.MapVertexAttrib1(_index,_size,_u1,_u2,_stride,_order,_points); -} -static unsafe void Test_MapVertexAttrib1_23400() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _size = default(System.UInt32); - System.Single _u1 = default(System.Single); - System.Single _u2 = default(System.Single); - System.Int32 _stride = default(System.Int32); - System.Int32 _order = default(System.Int32); - System.Single _points = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Apple.MapVertexAttrib1(_index,_size,_u1,_u2,_stride,_order,ref _points); -} -static unsafe void Test_MapVertexAttrib1_23401() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _size = default(System.UInt32); - System.Single _u1 = default(System.Single); - System.Single _u2 = default(System.Single); - System.Int32 _stride = default(System.Int32); - System.Int32 _order = default(System.Int32); - System.Single* _points = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Apple.MapVertexAttrib1(_index,_size,_u1,_u2,_stride,_order,_points); -} -static unsafe void Test_MapVertexAttrib2_23402() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - System.Double _u1 = default(System.Double); - System.Double _u2 = default(System.Double); - System.Int32 _ustride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Double _v1 = default(System.Double); - System.Double _v2 = default(System.Double); - System.Int32 _vstride = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Double[] _points = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Apple.MapVertexAttrib2(_index,_size,_u1,_u2,_ustride,_uorder,_v1,_v2,_vstride,_vorder,_points); -} -static unsafe void Test_MapVertexAttrib2_23403() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - System.Double _u1 = default(System.Double); - System.Double _u2 = default(System.Double); - System.Int32 _ustride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Double _v1 = default(System.Double); - System.Double _v2 = default(System.Double); - System.Int32 _vstride = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Double _points = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Apple.MapVertexAttrib2(_index,_size,_u1,_u2,_ustride,_uorder,_v1,_v2,_vstride,_vorder,ref _points); -} -static unsafe void Test_MapVertexAttrib2_23404() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - System.Double _u1 = default(System.Double); - System.Double _u2 = default(System.Double); - System.Int32 _ustride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Double _v1 = default(System.Double); - System.Double _v2 = default(System.Double); - System.Int32 _vstride = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Double* _points = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Apple.MapVertexAttrib2(_index,_size,_u1,_u2,_ustride,_uorder,_v1,_v2,_vstride,_vorder,_points); -} -static unsafe void Test_MapVertexAttrib2_23405() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _size = default(System.UInt32); - System.Double _u1 = default(System.Double); - System.Double _u2 = default(System.Double); - System.Int32 _ustride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Double _v1 = default(System.Double); - System.Double _v2 = default(System.Double); - System.Int32 _vstride = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Double[] _points = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Apple.MapVertexAttrib2(_index,_size,_u1,_u2,_ustride,_uorder,_v1,_v2,_vstride,_vorder,_points); -} -static unsafe void Test_MapVertexAttrib2_23406() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _size = default(System.UInt32); - System.Double _u1 = default(System.Double); - System.Double _u2 = default(System.Double); - System.Int32 _ustride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Double _v1 = default(System.Double); - System.Double _v2 = default(System.Double); - System.Int32 _vstride = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Double _points = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Apple.MapVertexAttrib2(_index,_size,_u1,_u2,_ustride,_uorder,_v1,_v2,_vstride,_vorder,ref _points); -} -static unsafe void Test_MapVertexAttrib2_23407() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _size = default(System.UInt32); - System.Double _u1 = default(System.Double); - System.Double _u2 = default(System.Double); - System.Int32 _ustride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Double _v1 = default(System.Double); - System.Double _v2 = default(System.Double); - System.Int32 _vstride = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Double* _points = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Apple.MapVertexAttrib2(_index,_size,_u1,_u2,_ustride,_uorder,_v1,_v2,_vstride,_vorder,_points); -} -static unsafe void Test_MapVertexAttrib2_23408() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - System.Single _u1 = default(System.Single); - System.Single _u2 = default(System.Single); - System.Int32 _ustride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - System.Int32 _vstride = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Single[] _points = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Apple.MapVertexAttrib2(_index,_size,_u1,_u2,_ustride,_uorder,_v1,_v2,_vstride,_vorder,_points); -} -static unsafe void Test_MapVertexAttrib2_23409() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - System.Single _u1 = default(System.Single); - System.Single _u2 = default(System.Single); - System.Int32 _ustride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - System.Int32 _vstride = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Single _points = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Apple.MapVertexAttrib2(_index,_size,_u1,_u2,_ustride,_uorder,_v1,_v2,_vstride,_vorder,ref _points); -} -static unsafe void Test_MapVertexAttrib2_23410() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - System.Single _u1 = default(System.Single); - System.Single _u2 = default(System.Single); - System.Int32 _ustride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - System.Int32 _vstride = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Single* _points = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Apple.MapVertexAttrib2(_index,_size,_u1,_u2,_ustride,_uorder,_v1,_v2,_vstride,_vorder,_points); -} -static unsafe void Test_MapVertexAttrib2_23411() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _size = default(System.UInt32); - System.Single _u1 = default(System.Single); - System.Single _u2 = default(System.Single); - System.Int32 _ustride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - System.Int32 _vstride = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Single[] _points = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Apple.MapVertexAttrib2(_index,_size,_u1,_u2,_ustride,_uorder,_v1,_v2,_vstride,_vorder,_points); -} -static unsafe void Test_MapVertexAttrib2_23412() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _size = default(System.UInt32); - System.Single _u1 = default(System.Single); - System.Single _u2 = default(System.Single); - System.Int32 _ustride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - System.Int32 _vstride = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Single _points = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Apple.MapVertexAttrib2(_index,_size,_u1,_u2,_ustride,_uorder,_v1,_v2,_vstride,_vorder,ref _points); -} -static unsafe void Test_MapVertexAttrib2_23413() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _size = default(System.UInt32); - System.Single _u1 = default(System.Single); - System.Single _u2 = default(System.Single); - System.Int32 _ustride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - System.Int32 _vstride = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Single* _points = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Apple.MapVertexAttrib2(_index,_size,_u1,_u2,_ustride,_uorder,_v1,_v2,_vstride,_vorder,_points); -} -static unsafe void Test_MultiDrawElementArray_23414() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32[] _first = default(System.Int32[]); - System.Int32[] _count = default(System.Int32[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Apple.MultiDrawElementArray(_mode,_first,_count,_primcount); -} -static unsafe void Test_MultiDrawElementArray_23415() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Apple.MultiDrawElementArray(_mode,ref _first,ref _count,_primcount); -} -static unsafe void Test_MultiDrawElementArray_23416() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32* _first = default(System.Int32*); - System.Int32* _count = default(System.Int32*); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Apple.MultiDrawElementArray(_mode,_first,_count,_primcount); -} -static unsafe void Test_MultiDrawElementArray_23417() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32[] _first = default(System.Int32[]); - System.Int32[] _count = default(System.Int32[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Apple.MultiDrawElementArray(_mode,_first,_count,_primcount); -} -static unsafe void Test_MultiDrawElementArray_23418() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Apple.MultiDrawElementArray(_mode,ref _first,ref _count,_primcount); -} -static unsafe void Test_MultiDrawElementArray_23419() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32* _first = default(System.Int32*); - System.Int32* _count = default(System.Int32*); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Apple.MultiDrawElementArray(_mode,_first,_count,_primcount); -} -static unsafe void Test_MultiDrawRangeElementArray_23420() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32[] _first = default(System.Int32[]); - System.Int32[] _count = default(System.Int32[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Apple.MultiDrawRangeElementArray(_mode,_start,_end,_first,_count,_primcount); -} -static unsafe void Test_MultiDrawRangeElementArray_23421() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Apple.MultiDrawRangeElementArray(_mode,_start,_end,ref _first,ref _count,_primcount); -} -static unsafe void Test_MultiDrawRangeElementArray_23422() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32* _first = default(System.Int32*); - System.Int32* _count = default(System.Int32*); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Apple.MultiDrawRangeElementArray(_mode,_start,_end,_first,_count,_primcount); -} -static unsafe void Test_MultiDrawRangeElementArray_23423() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32[] _first = default(System.Int32[]); - System.Int32[] _count = default(System.Int32[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Apple.MultiDrawRangeElementArray(_mode,_start,_end,_first,_count,_primcount); -} -static unsafe void Test_MultiDrawRangeElementArray_23424() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Apple.MultiDrawRangeElementArray(_mode,_start,_end,ref _first,ref _count,_primcount); -} -static unsafe void Test_MultiDrawRangeElementArray_23425() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32* _first = default(System.Int32*); - System.Int32* _count = default(System.Int32*); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Apple.MultiDrawRangeElementArray(_mode,_start,_end,_first,_count,_primcount); -} -static unsafe void Test_MultiDrawRangeElementArray_23426() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32[] _first = default(System.Int32[]); - System.Int32[] _count = default(System.Int32[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Apple.MultiDrawRangeElementArray(_mode,_start,_end,_first,_count,_primcount); -} -static unsafe void Test_MultiDrawRangeElementArray_23427() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Apple.MultiDrawRangeElementArray(_mode,_start,_end,ref _first,ref _count,_primcount); -} -static unsafe void Test_MultiDrawRangeElementArray_23428() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32* _first = default(System.Int32*); - System.Int32* _count = default(System.Int32*); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Apple.MultiDrawRangeElementArray(_mode,_start,_end,_first,_count,_primcount); -} -static unsafe void Test_MultiDrawRangeElementArray_23429() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32[] _first = default(System.Int32[]); - System.Int32[] _count = default(System.Int32[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Apple.MultiDrawRangeElementArray(_mode,_start,_end,_first,_count,_primcount); -} -static unsafe void Test_MultiDrawRangeElementArray_23430() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Apple.MultiDrawRangeElementArray(_mode,_start,_end,ref _first,ref _count,_primcount); -} -static unsafe void Test_MultiDrawRangeElementArray_23431() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32* _first = default(System.Int32*); - System.Int32* _count = default(System.Int32*); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Apple.MultiDrawRangeElementArray(_mode,_start,_end,_first,_count,_primcount); -} -static unsafe void Test_ObjectPurgeable_23432() { - OpenTK.Graphics.OpenGL.AppleObjectPurgeable _objectType = default(OpenTK.Graphics.OpenGL.AppleObjectPurgeable); - System.Int32 _name = default(System.Int32); - OpenTK.Graphics.OpenGL.AppleObjectPurgeable _option = default(OpenTK.Graphics.OpenGL.AppleObjectPurgeable); - OpenTK.Graphics.OpenGL.AppleObjectPurgeable r = OpenTK.Graphics.OpenGL.GL.Apple.ObjectPurgeable(_objectType,_name,_option); -} -static unsafe void Test_ObjectPurgeable_23433() { - OpenTK.Graphics.OpenGL.AppleObjectPurgeable _objectType = default(OpenTK.Graphics.OpenGL.AppleObjectPurgeable); - System.UInt32 _name = default(System.UInt32); - OpenTK.Graphics.OpenGL.AppleObjectPurgeable _option = default(OpenTK.Graphics.OpenGL.AppleObjectPurgeable); - OpenTK.Graphics.OpenGL.AppleObjectPurgeable r = OpenTK.Graphics.OpenGL.GL.Apple.ObjectPurgeable(_objectType,_name,_option); -} -static unsafe void Test_ObjectUnpurgeable_23434() { - OpenTK.Graphics.OpenGL.AppleObjectPurgeable _objectType = default(OpenTK.Graphics.OpenGL.AppleObjectPurgeable); - System.Int32 _name = default(System.Int32); - OpenTK.Graphics.OpenGL.AppleObjectPurgeable _option = default(OpenTK.Graphics.OpenGL.AppleObjectPurgeable); - OpenTK.Graphics.OpenGL.AppleObjectPurgeable r = OpenTK.Graphics.OpenGL.GL.Apple.ObjectUnpurgeable(_objectType,_name,_option); -} -static unsafe void Test_ObjectUnpurgeable_23435() { - OpenTK.Graphics.OpenGL.AppleObjectPurgeable _objectType = default(OpenTK.Graphics.OpenGL.AppleObjectPurgeable); - System.UInt32 _name = default(System.UInt32); - OpenTK.Graphics.OpenGL.AppleObjectPurgeable _option = default(OpenTK.Graphics.OpenGL.AppleObjectPurgeable); - OpenTK.Graphics.OpenGL.AppleObjectPurgeable r = OpenTK.Graphics.OpenGL.GL.Apple.ObjectUnpurgeable(_objectType,_name,_option); -} -static unsafe void Test_SetFence_23436() { - System.Int32 _fence = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Apple.SetFence(_fence); -} -static unsafe void Test_SetFence_23437() { - System.UInt32 _fence = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Apple.SetFence(_fence); -} -static unsafe void Test_TestFence_23438() { - System.Int32 _fence = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Apple.TestFence(_fence); -} -static unsafe void Test_TestFence_23439() { - System.UInt32 _fence = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Apple.TestFence(_fence); -} -static unsafe void Test_TestObject_23440() { - OpenTK.Graphics.OpenGL.AppleFence _object = default(OpenTK.Graphics.OpenGL.AppleFence); - System.Int32 _name = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Apple.TestObject(_object,_name); -} -static unsafe void Test_TestObject_23441() { - OpenTK.Graphics.OpenGL.AppleFence _object = default(OpenTK.Graphics.OpenGL.AppleFence); - System.UInt32 _name = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Apple.TestObject(_object,_name); -} -static unsafe void Test_TextureRange_23442() { - OpenTK.Graphics.OpenGL.AppleTextureRange _target = default(OpenTK.Graphics.OpenGL.AppleTextureRange); - System.Int32 _length = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Apple.TextureRange(_target,_length,_pointer); -} -static unsafe void Test_TextureRange_23443() { - OpenTK.Graphics.OpenGL.AppleTextureRange _target = default(OpenTK.Graphics.OpenGL.AppleTextureRange); - System.Int32 _length = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.Apple.TextureRange(_target,_length,_pointer); -} -static unsafe void Test_TextureRange_23444() { - OpenTK.Graphics.OpenGL.AppleTextureRange _target = default(OpenTK.Graphics.OpenGL.AppleTextureRange); - System.Int32 _length = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Apple.TextureRange(_target,_length,_pointer); -} -static unsafe void Test_TextureRange_23445() { - OpenTK.Graphics.OpenGL.AppleTextureRange _target = default(OpenTK.Graphics.OpenGL.AppleTextureRange); - System.Int32 _length = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Apple.TextureRange(_target,_length,_pointer); -} -static unsafe void Test_TextureRange_23446() { - OpenTK.Graphics.OpenGL.AppleTextureRange _target = default(OpenTK.Graphics.OpenGL.AppleTextureRange); - System.Int32 _length = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.Apple.TextureRange(_target,_length,ref _pointer); -} -static unsafe void Test_VertexArrayParameter_23447() { - OpenTK.Graphics.OpenGL.AppleVertexArrayRange _pname = default(OpenTK.Graphics.OpenGL.AppleVertexArrayRange); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Apple.VertexArrayParameter(_pname,_param); -} -static unsafe void Test_VertexArrayRange_23448() { - System.Int32 _length = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Apple.VertexArrayRange(_length,_pointer); -} -static unsafe void Test_VertexArrayRange_23449() { - System.Int32 _length = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.Apple.VertexArrayRange(_length,_pointer); -} -static unsafe void Test_VertexArrayRange_23450() { - System.Int32 _length = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Apple.VertexArrayRange(_length,_pointer); -} -static unsafe void Test_VertexArrayRange_23451() { - System.Int32 _length = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Apple.VertexArrayRange(_length,_pointer); -} -static unsafe void Test_VertexArrayRange_23452() { - System.Int32 _length = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.Apple.VertexArrayRange(_length,ref _pointer); -} -static unsafe void Test_ActiveTexture_23453() { - OpenTK.Graphics.OpenGL.TextureUnit _texture = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.GL.Arb.ActiveTexture(_texture); -} -static unsafe void Test_AttachObject_23454() { - System.Int32 _containerObj = default(System.Int32); - System.Int32 _obj = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.AttachObject(_containerObj,_obj); -} -static unsafe void Test_AttachObject_23455() { - System.UInt32 _containerObj = default(System.UInt32); - System.UInt32 _obj = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Arb.AttachObject(_containerObj,_obj); -} -static unsafe void Test_BeginQuery_23456() { - OpenTK.Graphics.OpenGL.ArbOcclusionQuery _target = default(OpenTK.Graphics.OpenGL.ArbOcclusionQuery); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.BeginQuery(_target,_id); -} -static unsafe void Test_BeginQuery_23457() { - OpenTK.Graphics.OpenGL.ArbOcclusionQuery _target = default(OpenTK.Graphics.OpenGL.ArbOcclusionQuery); - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Arb.BeginQuery(_target,_id); -} -static unsafe void Test_BindAttribLocation_23458() { - System.Int32 _programObj = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.String _name = default(System.String); - OpenTK.Graphics.OpenGL.GL.Arb.BindAttribLocation(_programObj,_index,_name); -} -static unsafe void Test_BindAttribLocation_23459() { - System.UInt32 _programObj = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.String _name = default(System.String); - OpenTK.Graphics.OpenGL.GL.Arb.BindAttribLocation(_programObj,_index,_name); -} -static unsafe void Test_BindBuffer_23460() { - OpenTK.Graphics.OpenGL.BufferTargetArb _target = default(OpenTK.Graphics.OpenGL.BufferTargetArb); - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.BindBuffer(_target,_buffer); -} -static unsafe void Test_BindBuffer_23461() { - OpenTK.Graphics.OpenGL.BufferTargetArb _target = default(OpenTK.Graphics.OpenGL.BufferTargetArb); - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Arb.BindBuffer(_target,_buffer); -} -static unsafe void Test_BindProgram_23462() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.BindProgram(_target,_program); -} -static unsafe void Test_BindProgram_23463() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Arb.BindProgram(_target,_program); -} -static unsafe void Test_BlendEquation_23464() { - System.Int32 _buf = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend _mode = default(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend); - OpenTK.Graphics.OpenGL.GL.Arb.BlendEquation(_buf,_mode); -} -static unsafe void Test_BlendEquation_23465() { - System.Int32 _buf = default(System.Int32); - OpenTK.Graphics.OpenGL.BlendEquationMode _mode = default(OpenTK.Graphics.OpenGL.BlendEquationMode); - OpenTK.Graphics.OpenGL.GL.Arb.BlendEquation(_buf,_mode); -} -static unsafe void Test_BlendEquation_23466() { - System.UInt32 _buf = default(System.UInt32); - OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend _mode = default(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend); - OpenTK.Graphics.OpenGL.GL.Arb.BlendEquation(_buf,_mode); -} -static unsafe void Test_BlendEquation_23467() { - System.UInt32 _buf = default(System.UInt32); - OpenTK.Graphics.OpenGL.BlendEquationMode _mode = default(OpenTK.Graphics.OpenGL.BlendEquationMode); - OpenTK.Graphics.OpenGL.GL.Arb.BlendEquation(_buf,_mode); -} -static unsafe void Test_BlendEquationSeparate_23468() { - System.Int32 _buf = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend _modeRGB = default(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend); - OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend _modeAlpha = default(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend); - OpenTK.Graphics.OpenGL.GL.Arb.BlendEquationSeparate(_buf,_modeRGB,_modeAlpha); -} -static unsafe void Test_BlendEquationSeparate_23469() { - System.UInt32 _buf = default(System.UInt32); - OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend _modeRGB = default(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend); - OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend _modeAlpha = default(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend); - OpenTK.Graphics.OpenGL.GL.Arb.BlendEquationSeparate(_buf,_modeRGB,_modeAlpha); -} -static unsafe void Test_BlendFunc_23470() { - System.Int32 _buf = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend _src = default(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend); - OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend _dst = default(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend); - OpenTK.Graphics.OpenGL.GL.Arb.BlendFunc(_buf,_src,_dst); -} -static unsafe void Test_BlendFunc_23471() { - System.UInt32 _buf = default(System.UInt32); - OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend _src = default(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend); - OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend _dst = default(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend); - OpenTK.Graphics.OpenGL.GL.Arb.BlendFunc(_buf,_src,_dst); -} -static unsafe void Test_BlendFuncSeparate_23472() { - System.Int32 _buf = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend _srcRGB = default(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend); - OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend _dstRGB = default(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend); - OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend _srcAlpha = default(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend); - OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend _dstAlpha = default(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend); - OpenTK.Graphics.OpenGL.GL.Arb.BlendFuncSeparate(_buf,_srcRGB,_dstRGB,_srcAlpha,_dstAlpha); -} -static unsafe void Test_BlendFuncSeparate_23473() { - System.UInt32 _buf = default(System.UInt32); - OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend _srcRGB = default(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend); - OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend _dstRGB = default(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend); - OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend _srcAlpha = default(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend); - OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend _dstAlpha = default(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend); - OpenTK.Graphics.OpenGL.GL.Arb.BlendFuncSeparate(_buf,_srcRGB,_dstRGB,_srcAlpha,_dstAlpha); -} -static unsafe void Test_BufferData_23474() { - OpenTK.Graphics.OpenGL.BufferTargetArb _target = default(OpenTK.Graphics.OpenGL.BufferTargetArb); - System.IntPtr _size = default(System.IntPtr); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.BufferUsageArb _usage = default(OpenTK.Graphics.OpenGL.BufferUsageArb); - OpenTK.Graphics.OpenGL.GL.Arb.BufferData(_target,_size,_data,_usage); -} -static unsafe void Test_BufferData_23475() { - OpenTK.Graphics.OpenGL.BufferTargetArb _target = default(OpenTK.Graphics.OpenGL.BufferTargetArb); - System.IntPtr _size = default(System.IntPtr); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.BufferUsageArb _usage = default(OpenTK.Graphics.OpenGL.BufferUsageArb); - OpenTK.Graphics.OpenGL.GL.Arb.BufferData(_target,_size,_data,_usage); -} -static unsafe void Test_BufferData_23476() { - OpenTK.Graphics.OpenGL.BufferTargetArb _target = default(OpenTK.Graphics.OpenGL.BufferTargetArb); - System.IntPtr _size = default(System.IntPtr); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.BufferUsageArb _usage = default(OpenTK.Graphics.OpenGL.BufferUsageArb); - OpenTK.Graphics.OpenGL.GL.Arb.BufferData(_target,_size,_data,_usage); -} -static unsafe void Test_BufferData_23477() { - OpenTK.Graphics.OpenGL.BufferTargetArb _target = default(OpenTK.Graphics.OpenGL.BufferTargetArb); - System.IntPtr _size = default(System.IntPtr); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.BufferUsageArb _usage = default(OpenTK.Graphics.OpenGL.BufferUsageArb); - OpenTK.Graphics.OpenGL.GL.Arb.BufferData(_target,_size,_data,_usage); -} -static unsafe void Test_BufferData_23478() { - OpenTK.Graphics.OpenGL.BufferTargetArb _target = default(OpenTK.Graphics.OpenGL.BufferTargetArb); - System.IntPtr _size = default(System.IntPtr); - int _data = default(int); - OpenTK.Graphics.OpenGL.BufferUsageArb _usage = default(OpenTK.Graphics.OpenGL.BufferUsageArb); - OpenTK.Graphics.OpenGL.GL.Arb.BufferData(_target,_size,ref _data,_usage); -} -static unsafe void Test_BufferSubData_23479() { - OpenTK.Graphics.OpenGL.BufferTargetArb _target = default(OpenTK.Graphics.OpenGL.BufferTargetArb); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Arb.BufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_BufferSubData_23480() { - OpenTK.Graphics.OpenGL.BufferTargetArb _target = default(OpenTK.Graphics.OpenGL.BufferTargetArb); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.Arb.BufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_BufferSubData_23481() { - OpenTK.Graphics.OpenGL.BufferTargetArb _target = default(OpenTK.Graphics.OpenGL.BufferTargetArb); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Arb.BufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_BufferSubData_23482() { - OpenTK.Graphics.OpenGL.BufferTargetArb _target = default(OpenTK.Graphics.OpenGL.BufferTargetArb); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Arb.BufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_BufferSubData_23483() { - OpenTK.Graphics.OpenGL.BufferTargetArb _target = default(OpenTK.Graphics.OpenGL.BufferTargetArb); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.Arb.BufferSubData(_target,_offset,_size,ref _data); -} -static unsafe void Test_ClampColor_23484() { - OpenTK.Graphics.OpenGL.ArbColorBufferFloat _target = default(OpenTK.Graphics.OpenGL.ArbColorBufferFloat); - OpenTK.Graphics.OpenGL.ArbColorBufferFloat _clamp = default(OpenTK.Graphics.OpenGL.ArbColorBufferFloat); - OpenTK.Graphics.OpenGL.GL.Arb.ClampColor(_target,_clamp); -} -static unsafe void Test_ClientActiveTexture_23485() { - OpenTK.Graphics.OpenGL.TextureUnit _texture = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.GL.Arb.ClientActiveTexture(_texture); -} -static unsafe void Test_CompileShader_23486() { - System.Int32 _shaderObj = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.CompileShader(_shaderObj); -} -static unsafe void Test_CompileShader_23487() { - System.UInt32 _shaderObj = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Arb.CompileShader(_shaderObj); -} -static unsafe void Test_CompileShaderInclude_23488() { - System.Int32 _shader = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.String[] _path = default(System.String[]); - System.Int32[] _length = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.CompileShaderInclude(_shader,_count,_path,_length); -} -static unsafe void Test_CompileShaderInclude_23489() { - System.Int32 _shader = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.String[] _path = default(System.String[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.CompileShaderInclude(_shader,_count,_path,ref _length); -} -static unsafe void Test_CompileShaderInclude_23490() { - System.Int32 _shader = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.String[] _path = default(System.String[]); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.CompileShaderInclude(_shader,_count,_path,_length); -} -static unsafe void Test_CompileShaderInclude_23491() { - System.UInt32 _shader = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.String[] _path = default(System.String[]); - System.Int32[] _length = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.CompileShaderInclude(_shader,_count,_path,_length); -} -static unsafe void Test_CompileShaderInclude_23492() { - System.UInt32 _shader = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.String[] _path = default(System.String[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.CompileShaderInclude(_shader,_count,_path,ref _length); -} -static unsafe void Test_CompileShaderInclude_23493() { - System.UInt32 _shader = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.String[] _path = default(System.String[]); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.CompileShaderInclude(_shader,_count,_path,_length); -} -static unsafe void Test_CompressedTexImage1D_23494() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Arb.CompressedTexImage1D(_target,_level,_internalformat,_width,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage1D_23495() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.Arb.CompressedTexImage1D(_target,_level,_internalformat,_width,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage1D_23496() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Arb.CompressedTexImage1D(_target,_level,_internalformat,_width,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage1D_23497() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Arb.CompressedTexImage1D(_target,_level,_internalformat,_width,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage1D_23498() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.Arb.CompressedTexImage1D(_target,_level,_internalformat,_width,_border,_imageSize,ref _data); -} -static unsafe void Test_CompressedTexImage2D_23499() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Arb.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_23500() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.Arb.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_23501() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Arb.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_23502() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Arb.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_23503() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.Arb.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,ref _data); -} -static unsafe void Test_CompressedTexImage3D_23504() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Arb.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage3D_23505() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.Arb.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage3D_23506() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Arb.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage3D_23507() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Arb.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage3D_23508() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.Arb.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,ref _data); -} -static unsafe void Test_CompressedTexSubImage1D_23509() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Arb.CompressedTexSubImage1D(_target,_level,_xoffset,_width,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage1D_23510() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.Arb.CompressedTexSubImage1D(_target,_level,_xoffset,_width,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage1D_23511() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Arb.CompressedTexSubImage1D(_target,_level,_xoffset,_width,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage1D_23512() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Arb.CompressedTexSubImage1D(_target,_level,_xoffset,_width,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage1D_23513() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.Arb.CompressedTexSubImage1D(_target,_level,_xoffset,_width,_format,_imageSize,ref _data); -} -static unsafe void Test_CompressedTexSubImage2D_23514() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Arb.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_23515() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.Arb.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_23516() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Arb.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_23517() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Arb.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_23518() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.Arb.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,ref _data); -} -static unsafe void Test_CompressedTexSubImage3D_23519() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Arb.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage3D_23520() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.Arb.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage3D_23521() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Arb.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage3D_23522() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Arb.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage3D_23523() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.Arb.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,ref _data); -} -static unsafe void Test_CreateProgramObject_23524() { - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Arb.CreateProgramObject(); -} -static unsafe void Test_CreateShaderObject_23525() { - OpenTK.Graphics.OpenGL.ArbShaderObjects _shaderType = default(OpenTK.Graphics.OpenGL.ArbShaderObjects); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Arb.CreateShaderObject(_shaderType); -} -static unsafe void Test_CreateSyncFromCLevent_23526() { - System.IntPtr[] _context = default(System.IntPtr[]); - System.IntPtr[] _event = default(System.IntPtr[]); - System.Int32 _flags = default(System.Int32); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.Arb.CreateSyncFromCLevent(_context,_event,_flags); -} -static unsafe void Test_CreateSyncFromCLevent_23527() { - System.IntPtr[] _context = default(System.IntPtr[]); - System.IntPtr[] _event = default(System.IntPtr[]); - System.UInt32 _flags = default(System.UInt32); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.Arb.CreateSyncFromCLevent(_context,_event,_flags); -} -static unsafe void Test_CreateSyncFromCLevent_23528() { - System.IntPtr _context = default(System.IntPtr); - System.IntPtr _event = default(System.IntPtr); - System.Int32 _flags = default(System.Int32); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.Arb.CreateSyncFromCLevent(out _context,out _event,_flags); -} -static unsafe void Test_CreateSyncFromCLevent_23529() { - System.IntPtr _context = default(System.IntPtr); - System.IntPtr _event = default(System.IntPtr); - System.UInt32 _flags = default(System.UInt32); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.Arb.CreateSyncFromCLevent(out _context,out _event,_flags); -} -static unsafe void Test_CreateSyncFromCLevent_23530() { - System.IntPtr* _context = default(System.IntPtr*); - System.IntPtr* _event = default(System.IntPtr*); - System.Int32 _flags = default(System.Int32); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.Arb.CreateSyncFromCLevent(_context,_event,_flags); -} -static unsafe void Test_CreateSyncFromCLevent_23531() { - System.IntPtr* _context = default(System.IntPtr*); - System.IntPtr* _event = default(System.IntPtr*); - System.UInt32 _flags = default(System.UInt32); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.Arb.CreateSyncFromCLevent(_context,_event,_flags); -} -static unsafe void Test_CurrentPaletteMatrix_23532() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.CurrentPaletteMatrix(_index); -} -static unsafe void Test_DebugMessageCallback_23533() { - OpenTK.Graphics.OpenGL.DebugProcArb _callback = default(OpenTK.Graphics.OpenGL.DebugProcArb); - System.IntPtr _userParam = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Arb.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_23534() { - OpenTK.Graphics.OpenGL.DebugProcArb _callback = default(OpenTK.Graphics.OpenGL.DebugProcArb); - int[] _userParam = default(int[]); - OpenTK.Graphics.OpenGL.GL.Arb.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_23535() { - OpenTK.Graphics.OpenGL.DebugProcArb _callback = default(OpenTK.Graphics.OpenGL.DebugProcArb); - int[,] _userParam = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Arb.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_23536() { - OpenTK.Graphics.OpenGL.DebugProcArb _callback = default(OpenTK.Graphics.OpenGL.DebugProcArb); - int[,,] _userParam = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Arb.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_23537() { - OpenTK.Graphics.OpenGL.DebugProcArb _callback = default(OpenTK.Graphics.OpenGL.DebugProcArb); - int _userParam = default(int); - OpenTK.Graphics.OpenGL.GL.Arb.DebugMessageCallback(_callback,ref _userParam); -} -static unsafe void Test_DebugMessageControl_23538() { - OpenTK.Graphics.OpenGL.ArbDebugOutput _source = default(OpenTK.Graphics.OpenGL.ArbDebugOutput); - OpenTK.Graphics.OpenGL.ArbDebugOutput _type = default(OpenTK.Graphics.OpenGL.ArbDebugOutput); - OpenTK.Graphics.OpenGL.ArbDebugOutput _severity = default(OpenTK.Graphics.OpenGL.ArbDebugOutput); - System.Int32 _count = default(System.Int32); - System.Int32[] _ids = default(System.Int32[]); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Arb.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_23539() { - OpenTK.Graphics.OpenGL.ArbDebugOutput _source = default(OpenTK.Graphics.OpenGL.ArbDebugOutput); - OpenTK.Graphics.OpenGL.ArbDebugOutput _type = default(OpenTK.Graphics.OpenGL.ArbDebugOutput); - OpenTK.Graphics.OpenGL.ArbDebugOutput _severity = default(OpenTK.Graphics.OpenGL.ArbDebugOutput); - System.Int32 _count = default(System.Int32); - System.Int32 _ids = default(System.Int32); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Arb.DebugMessageControl(_source,_type,_severity,_count,ref _ids,_enabled); -} -static unsafe void Test_DebugMessageControl_23540() { - OpenTK.Graphics.OpenGL.ArbDebugOutput _source = default(OpenTK.Graphics.OpenGL.ArbDebugOutput); - OpenTK.Graphics.OpenGL.ArbDebugOutput _type = default(OpenTK.Graphics.OpenGL.ArbDebugOutput); - OpenTK.Graphics.OpenGL.ArbDebugOutput _severity = default(OpenTK.Graphics.OpenGL.ArbDebugOutput); - System.Int32 _count = default(System.Int32); - System.Int32* _ids = default(System.Int32*); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Arb.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_23541() { - OpenTK.Graphics.OpenGL.ArbDebugOutput _source = default(OpenTK.Graphics.OpenGL.ArbDebugOutput); - OpenTK.Graphics.OpenGL.ArbDebugOutput _type = default(OpenTK.Graphics.OpenGL.ArbDebugOutput); - OpenTK.Graphics.OpenGL.ArbDebugOutput _severity = default(OpenTK.Graphics.OpenGL.ArbDebugOutput); - System.Int32 _count = default(System.Int32); - System.UInt32[] _ids = default(System.UInt32[]); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Arb.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_23542() { - OpenTK.Graphics.OpenGL.ArbDebugOutput _source = default(OpenTK.Graphics.OpenGL.ArbDebugOutput); - OpenTK.Graphics.OpenGL.ArbDebugOutput _type = default(OpenTK.Graphics.OpenGL.ArbDebugOutput); - OpenTK.Graphics.OpenGL.ArbDebugOutput _severity = default(OpenTK.Graphics.OpenGL.ArbDebugOutput); - System.Int32 _count = default(System.Int32); - System.UInt32 _ids = default(System.UInt32); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Arb.DebugMessageControl(_source,_type,_severity,_count,ref _ids,_enabled); -} -static unsafe void Test_DebugMessageControl_23543() { - OpenTK.Graphics.OpenGL.ArbDebugOutput _source = default(OpenTK.Graphics.OpenGL.ArbDebugOutput); - OpenTK.Graphics.OpenGL.ArbDebugOutput _type = default(OpenTK.Graphics.OpenGL.ArbDebugOutput); - OpenTK.Graphics.OpenGL.ArbDebugOutput _severity = default(OpenTK.Graphics.OpenGL.ArbDebugOutput); - System.Int32 _count = default(System.Int32); - System.UInt32* _ids = default(System.UInt32*); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Arb.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageInsert_23544() { - OpenTK.Graphics.OpenGL.ArbDebugOutput _source = default(OpenTK.Graphics.OpenGL.ArbDebugOutput); - OpenTK.Graphics.OpenGL.ArbDebugOutput _type = default(OpenTK.Graphics.OpenGL.ArbDebugOutput); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbDebugOutput _severity = default(OpenTK.Graphics.OpenGL.ArbDebugOutput); - System.Int32 _length = default(System.Int32); - System.String _buf = default(System.String); - OpenTK.Graphics.OpenGL.GL.Arb.DebugMessageInsert(_source,_type,_id,_severity,_length,_buf); -} -static unsafe void Test_DebugMessageInsert_23545() { - OpenTK.Graphics.OpenGL.ArbDebugOutput _source = default(OpenTK.Graphics.OpenGL.ArbDebugOutput); - OpenTK.Graphics.OpenGL.ArbDebugOutput _type = default(OpenTK.Graphics.OpenGL.ArbDebugOutput); - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ArbDebugOutput _severity = default(OpenTK.Graphics.OpenGL.ArbDebugOutput); - System.Int32 _length = default(System.Int32); - System.String _buf = default(System.String); - OpenTK.Graphics.OpenGL.GL.Arb.DebugMessageInsert(_source,_type,_id,_severity,_length,_buf); -} -static unsafe void Test_DeleteBuffer_23546() { - System.Int32 _buffers = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.DeleteBuffer(_buffers); -} -static unsafe void Test_DeleteBuffer_23547() { - System.UInt32 _buffers = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Arb.DeleteBuffer(_buffers); -} -static unsafe void Test_DeleteBuffers_23548() { - System.Int32 _n = default(System.Int32); - System.Int32[] _buffers = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.DeleteBuffers(_n,_buffers); -} -static unsafe void Test_DeleteBuffers_23549() { - System.Int32 _n = default(System.Int32); - System.Int32 _buffers = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.DeleteBuffers(_n,ref _buffers); -} -static unsafe void Test_DeleteBuffers_23550() { - System.Int32 _n = default(System.Int32); - System.Int32* _buffers = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.DeleteBuffers(_n,_buffers); -} -static unsafe void Test_DeleteBuffers_23551() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _buffers = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Arb.DeleteBuffers(_n,_buffers); -} -static unsafe void Test_DeleteBuffers_23552() { - System.Int32 _n = default(System.Int32); - System.UInt32 _buffers = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Arb.DeleteBuffers(_n,ref _buffers); -} -static unsafe void Test_DeleteBuffers_23553() { - System.Int32 _n = default(System.Int32); - System.UInt32* _buffers = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Arb.DeleteBuffers(_n,_buffers); -} -static unsafe void Test_DeleteNamedString_23554() { - System.Int32 _namelen = default(System.Int32); - System.String _name = default(System.String); - OpenTK.Graphics.OpenGL.GL.Arb.DeleteNamedString(_namelen,_name); -} -static unsafe void Test_DeleteObject_23555() { - System.Int32 _obj = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.DeleteObject(_obj); -} -static unsafe void Test_DeleteObject_23556() { - System.UInt32 _obj = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Arb.DeleteObject(_obj); -} -static unsafe void Test_DeleteProgram_23557() { - System.Int32 _programs = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.DeleteProgram(_programs); -} -static unsafe void Test_DeleteProgram_23558() { - System.UInt32 _programs = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Arb.DeleteProgram(_programs); -} -static unsafe void Test_DeleteProgram_23559() { - System.Int32 _n = default(System.Int32); - System.Int32[] _programs = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.DeleteProgram(_n,_programs); -} -static unsafe void Test_DeleteProgram_23560() { - System.Int32 _n = default(System.Int32); - System.Int32 _programs = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.DeleteProgram(_n,ref _programs); -} -static unsafe void Test_DeleteProgram_23561() { - System.Int32 _n = default(System.Int32); - System.Int32* _programs = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.DeleteProgram(_n,_programs); -} -static unsafe void Test_DeleteProgram_23562() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _programs = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Arb.DeleteProgram(_n,_programs); -} -static unsafe void Test_DeleteProgram_23563() { - System.Int32 _n = default(System.Int32); - System.UInt32 _programs = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Arb.DeleteProgram(_n,ref _programs); -} -static unsafe void Test_DeleteProgram_23564() { - System.Int32 _n = default(System.Int32); - System.UInt32* _programs = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Arb.DeleteProgram(_n,_programs); -} -static unsafe void Test_DeleteQuery_23565() { - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.DeleteQuery(_ids); -} -static unsafe void Test_DeleteQuery_23566() { - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Arb.DeleteQuery(_ids); -} -static unsafe void Test_DeleteQueries_23567() { - System.Int32 _n = default(System.Int32); - System.Int32[] _ids = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.DeleteQueries(_n,_ids); -} -static unsafe void Test_DeleteQueries_23568() { - System.Int32 _n = default(System.Int32); - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.DeleteQueries(_n,ref _ids); -} -static unsafe void Test_DeleteQueries_23569() { - System.Int32 _n = default(System.Int32); - System.Int32* _ids = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.DeleteQueries(_n,_ids); -} -static unsafe void Test_DeleteQueries_23570() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _ids = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Arb.DeleteQueries(_n,_ids); -} -static unsafe void Test_DeleteQueries_23571() { - System.Int32 _n = default(System.Int32); - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Arb.DeleteQueries(_n,ref _ids); -} -static unsafe void Test_DeleteQueries_23572() { - System.Int32 _n = default(System.Int32); - System.UInt32* _ids = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Arb.DeleteQueries(_n,_ids); -} -static unsafe void Test_DetachObject_23573() { - System.Int32 _containerObj = default(System.Int32); - System.Int32 _attachedObj = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.DetachObject(_containerObj,_attachedObj); -} -static unsafe void Test_DetachObject_23574() { - System.UInt32 _containerObj = default(System.UInt32); - System.UInt32 _attachedObj = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Arb.DetachObject(_containerObj,_attachedObj); -} -static unsafe void Test_DisableVertexAttribArray_23575() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.DisableVertexAttribArray(_index); -} -static unsafe void Test_DisableVertexAttribArray_23576() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Arb.DisableVertexAttribArray(_index); -} -static unsafe void Test_DispatchComputeGroupSize_23577() { - System.Int32 _num_groups_x = default(System.Int32); - System.Int32 _num_groups_y = default(System.Int32); - System.Int32 _num_groups_z = default(System.Int32); - System.Int32 _group_size_x = default(System.Int32); - System.Int32 _group_size_y = default(System.Int32); - System.Int32 _group_size_z = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.DispatchComputeGroupSize(_num_groups_x,_num_groups_y,_num_groups_z,_group_size_x,_group_size_y,_group_size_z); -} -static unsafe void Test_DispatchComputeGroupSize_23578() { - System.UInt32 _num_groups_x = default(System.UInt32); - System.UInt32 _num_groups_y = default(System.UInt32); - System.UInt32 _num_groups_z = default(System.UInt32); - System.UInt32 _group_size_x = default(System.UInt32); - System.UInt32 _group_size_y = default(System.UInt32); - System.UInt32 _group_size_z = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Arb.DispatchComputeGroupSize(_num_groups_x,_num_groups_y,_num_groups_z,_group_size_x,_group_size_y,_group_size_z); -} -static unsafe void Test_DrawArraysInstanced_23579() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.DrawArraysInstanced(_mode,_first,_count,_primcount); -} -static unsafe void Test_DrawArraysInstanced_23580() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.DrawArraysInstanced(_mode,_first,_count,_primcount); -} -static unsafe void Test_DrawBuffers_23581() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbDrawBuffers[] _bufs = default(OpenTK.Graphics.OpenGL.ArbDrawBuffers[]); - OpenTK.Graphics.OpenGL.GL.Arb.DrawBuffers(_n,_bufs); -} -static unsafe void Test_DrawBuffers_23582() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbDrawBuffers _bufs = default(OpenTK.Graphics.OpenGL.ArbDrawBuffers); - OpenTK.Graphics.OpenGL.GL.Arb.DrawBuffers(_n,ref _bufs); -} -static unsafe void Test_DrawBuffers_23583() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbDrawBuffers* _bufs = default(OpenTK.Graphics.OpenGL.ArbDrawBuffers*); - OpenTK.Graphics.OpenGL.GL.Arb.DrawBuffers(_n,_bufs); -} -static unsafe void Test_DrawElementsInstanced_23584() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_23585() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_23586() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_23587() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_23588() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.DrawElementsInstanced(_mode,_count,_type,ref _indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_23589() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_23590() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_23591() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_23592() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_23593() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.DrawElementsInstanced(_mode,_count,_type,ref _indices,_primcount); -} -static unsafe void Test_EnableVertexAttribArray_23594() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.EnableVertexAttribArray(_index); -} -static unsafe void Test_EnableVertexAttribArray_23595() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Arb.EnableVertexAttribArray(_index); -} -static unsafe void Test_EndQuery_23596() { - OpenTK.Graphics.OpenGL.ArbOcclusionQuery _target = default(OpenTK.Graphics.OpenGL.ArbOcclusionQuery); - OpenTK.Graphics.OpenGL.GL.Arb.EndQuery(_target); -} -static unsafe void Test_FramebufferTexture_23597() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.FramebufferTexture(_target,_attachment,_texture,_level); -} -static unsafe void Test_FramebufferTexture_23598() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.FramebufferTexture(_target,_attachment,_texture,_level); -} -static unsafe void Test_FramebufferTextureFace_23599() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _face = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GL.Arb.FramebufferTextureFace(_target,_attachment,_texture,_level,_face); -} -static unsafe void Test_FramebufferTextureFace_23600() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _face = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GL.Arb.FramebufferTextureFace(_target,_attachment,_texture,_level,_face); -} -static unsafe void Test_FramebufferTextureLayer_23601() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - System.Int32 _layer = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.FramebufferTextureLayer(_target,_attachment,_texture,_level,_layer); -} -static unsafe void Test_FramebufferTextureLayer_23602() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - System.Int32 _layer = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.FramebufferTextureLayer(_target,_attachment,_texture,_level,_layer); -} -static unsafe void Test_GenBuffer_23603() { - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Arb.GenBuffer(); -} -static unsafe void Test_GenBuffers_23604() { - System.Int32 _n = default(System.Int32); - System.Int32[] _buffers = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.GenBuffers(_n,_buffers); -} -static unsafe void Test_GenBuffers_23605() { - System.Int32 _n = default(System.Int32); - System.Int32 _buffers = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.GenBuffers(_n,out _buffers); -} -static unsafe void Test_GenBuffers_23606() { - System.Int32 _n = default(System.Int32); - System.Int32* _buffers = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.GenBuffers(_n,_buffers); -} -static unsafe void Test_GenBuffers_23607() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _buffers = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Arb.GenBuffers(_n,_buffers); -} -static unsafe void Test_GenBuffers_23608() { - System.Int32 _n = default(System.Int32); - System.UInt32 _buffers = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Arb.GenBuffers(_n,out _buffers); -} -static unsafe void Test_GenBuffers_23609() { - System.Int32 _n = default(System.Int32); - System.UInt32* _buffers = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Arb.GenBuffers(_n,_buffers); -} -static unsafe void Test_GenProgram_23610() { - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Arb.GenProgram(); -} -static unsafe void Test_GenProgram_23611() { - System.Int32 _n = default(System.Int32); - System.Int32[] _programs = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.GenProgram(_n,_programs); -} -static unsafe void Test_GenProgram_23612() { - System.Int32 _n = default(System.Int32); - System.Int32 _programs = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.GenProgram(_n,out _programs); -} -static unsafe void Test_GenProgram_23613() { - System.Int32 _n = default(System.Int32); - System.Int32* _programs = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.GenProgram(_n,_programs); -} -static unsafe void Test_GenProgram_23614() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _programs = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Arb.GenProgram(_n,_programs); -} -static unsafe void Test_GenProgram_23615() { - System.Int32 _n = default(System.Int32); - System.UInt32 _programs = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Arb.GenProgram(_n,out _programs); -} -static unsafe void Test_GenProgram_23616() { - System.Int32 _n = default(System.Int32); - System.UInt32* _programs = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Arb.GenProgram(_n,_programs); -} -static unsafe void Test_GenQuery_23617() { - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Arb.GenQuery(); -} -static unsafe void Test_GenQueries_23618() { - System.Int32 _n = default(System.Int32); - System.Int32[] _ids = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.GenQueries(_n,_ids); -} -static unsafe void Test_GenQueries_23619() { - System.Int32 _n = default(System.Int32); - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.GenQueries(_n,out _ids); -} -static unsafe void Test_GenQueries_23620() { - System.Int32 _n = default(System.Int32); - System.Int32* _ids = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.GenQueries(_n,_ids); -} -static unsafe void Test_GenQueries_23621() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _ids = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Arb.GenQueries(_n,_ids); -} -static unsafe void Test_GenQueries_23622() { - System.Int32 _n = default(System.Int32); - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Arb.GenQueries(_n,out _ids); -} -static unsafe void Test_GenQueries_23623() { - System.Int32 _n = default(System.Int32); - System.UInt32* _ids = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Arb.GenQueries(_n,_ids); -} -static unsafe void Test_GetActiveAttrib_23624() { - System.Int32 _programObj = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _maxLength = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbVertexShader _type = default(OpenTK.Graphics.OpenGL.ArbVertexShader); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Arb.GetActiveAttrib(_programObj,_index,_maxLength,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetActiveAttrib_23625() { - System.Int32 _programObj = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _maxLength = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.OpenGL.ArbVertexShader* _type = default(OpenTK.Graphics.OpenGL.ArbVertexShader*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Arb.GetActiveAttrib(_programObj,_index,_maxLength,_length,_size,_type,_name); -} -static unsafe void Test_GetActiveAttrib_23626() { - System.UInt32 _programObj = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _maxLength = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbVertexShader _type = default(OpenTK.Graphics.OpenGL.ArbVertexShader); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Arb.GetActiveAttrib(_programObj,_index,_maxLength,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetActiveAttrib_23627() { - System.UInt32 _programObj = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _maxLength = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.OpenGL.ArbVertexShader* _type = default(OpenTK.Graphics.OpenGL.ArbVertexShader*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Arb.GetActiveAttrib(_programObj,_index,_maxLength,_length,_size,_type,_name); -} -static unsafe void Test_GetActiveUniform_23628() { - System.Int32 _programObj = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _maxLength = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbShaderObjects _type = default(OpenTK.Graphics.OpenGL.ArbShaderObjects); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Arb.GetActiveUniform(_programObj,_index,_maxLength,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetActiveUniform_23629() { - System.Int32 _programObj = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _maxLength = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.OpenGL.ArbShaderObjects* _type = default(OpenTK.Graphics.OpenGL.ArbShaderObjects*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Arb.GetActiveUniform(_programObj,_index,_maxLength,_length,_size,_type,_name); -} -static unsafe void Test_GetActiveUniform_23630() { - System.UInt32 _programObj = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _maxLength = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbShaderObjects _type = default(OpenTK.Graphics.OpenGL.ArbShaderObjects); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Arb.GetActiveUniform(_programObj,_index,_maxLength,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetActiveUniform_23631() { - System.UInt32 _programObj = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _maxLength = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.OpenGL.ArbShaderObjects* _type = default(OpenTK.Graphics.OpenGL.ArbShaderObjects*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Arb.GetActiveUniform(_programObj,_index,_maxLength,_length,_size,_type,_name); -} -static unsafe void Test_GetAttachedObjects_23632() { - System.Int32 _containerObj = default(System.Int32); - System.Int32 _maxCount = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _obj = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetAttachedObjects(_containerObj,_maxCount,out _count,_obj); -} -static unsafe void Test_GetAttachedObjects_23633() { - System.Int32 _containerObj = default(System.Int32); - System.Int32 _maxCount = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _obj = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.GetAttachedObjects(_containerObj,_maxCount,out _count,out _obj); -} -static unsafe void Test_GetAttachedObjects_23634() { - System.Int32 _containerObj = default(System.Int32); - System.Int32 _maxCount = default(System.Int32); - System.Int32* _count = default(System.Int32*); - System.Int32* _obj = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.GetAttachedObjects(_containerObj,_maxCount,_count,_obj); -} -static unsafe void Test_GetAttachedObjects_23635() { - System.UInt32 _containerObj = default(System.UInt32); - System.Int32 _maxCount = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _obj = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetAttachedObjects(_containerObj,_maxCount,out _count,_obj); -} -static unsafe void Test_GetAttachedObjects_23636() { - System.UInt32 _containerObj = default(System.UInt32); - System.Int32 _maxCount = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32 _obj = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Arb.GetAttachedObjects(_containerObj,_maxCount,out _count,out _obj); -} -static unsafe void Test_GetAttachedObjects_23637() { - System.UInt32 _containerObj = default(System.UInt32); - System.Int32 _maxCount = default(System.Int32); - System.Int32* _count = default(System.Int32*); - System.UInt32* _obj = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Arb.GetAttachedObjects(_containerObj,_maxCount,_count,_obj); -} -static unsafe void Test_GetAttribLocation_23638() { - System.Int32 _programObj = default(System.Int32); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Arb.GetAttribLocation(_programObj,_name); -} -static unsafe void Test_GetAttribLocation_23639() { - System.UInt32 _programObj = default(System.UInt32); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Arb.GetAttribLocation(_programObj,_name); -} -static unsafe void Test_GetBufferParameter_23640() { - OpenTK.Graphics.OpenGL.ArbVertexBufferObject _target = default(OpenTK.Graphics.OpenGL.ArbVertexBufferObject); - OpenTK.Graphics.OpenGL.BufferParameterNameArb _pname = default(OpenTK.Graphics.OpenGL.BufferParameterNameArb); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetBufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetBufferParameter_23641() { - OpenTK.Graphics.OpenGL.ArbVertexBufferObject _target = default(OpenTK.Graphics.OpenGL.ArbVertexBufferObject); - OpenTK.Graphics.OpenGL.BufferParameterNameArb _pname = default(OpenTK.Graphics.OpenGL.BufferParameterNameArb); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.GetBufferParameter(_target,_pname,out _params); -} -static unsafe void Test_GetBufferParameter_23642() { - OpenTK.Graphics.OpenGL.ArbVertexBufferObject _target = default(OpenTK.Graphics.OpenGL.ArbVertexBufferObject); - OpenTK.Graphics.OpenGL.BufferParameterNameArb _pname = default(OpenTK.Graphics.OpenGL.BufferParameterNameArb); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.GetBufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetBufferParameter_23643() { - OpenTK.Graphics.OpenGL.BufferTargetArb _target = default(OpenTK.Graphics.OpenGL.BufferTargetArb); - OpenTK.Graphics.OpenGL.BufferParameterNameArb _pname = default(OpenTK.Graphics.OpenGL.BufferParameterNameArb); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetBufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetBufferParameter_23644() { - OpenTK.Graphics.OpenGL.BufferTargetArb _target = default(OpenTK.Graphics.OpenGL.BufferTargetArb); - OpenTK.Graphics.OpenGL.BufferParameterNameArb _pname = default(OpenTK.Graphics.OpenGL.BufferParameterNameArb); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.GetBufferParameter(_target,_pname,out _params); -} -static unsafe void Test_GetBufferParameter_23645() { - OpenTK.Graphics.OpenGL.BufferTargetArb _target = default(OpenTK.Graphics.OpenGL.BufferTargetArb); - OpenTK.Graphics.OpenGL.BufferParameterNameArb _pname = default(OpenTK.Graphics.OpenGL.BufferParameterNameArb); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.GetBufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_23646() { - OpenTK.Graphics.OpenGL.ArbVertexBufferObject _target = default(OpenTK.Graphics.OpenGL.ArbVertexBufferObject); - OpenTK.Graphics.OpenGL.BufferPointerNameArb _pname = default(OpenTK.Graphics.OpenGL.BufferPointerNameArb); - System.IntPtr _params = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Arb.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_23647() { - OpenTK.Graphics.OpenGL.ArbVertexBufferObject _target = default(OpenTK.Graphics.OpenGL.ArbVertexBufferObject); - OpenTK.Graphics.OpenGL.BufferPointerNameArb _pname = default(OpenTK.Graphics.OpenGL.BufferPointerNameArb); - int[] _params = default(int[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_23648() { - OpenTK.Graphics.OpenGL.ArbVertexBufferObject _target = default(OpenTK.Graphics.OpenGL.ArbVertexBufferObject); - OpenTK.Graphics.OpenGL.BufferPointerNameArb _pname = default(OpenTK.Graphics.OpenGL.BufferPointerNameArb); - int[,] _params = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Arb.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_23649() { - OpenTK.Graphics.OpenGL.ArbVertexBufferObject _target = default(OpenTK.Graphics.OpenGL.ArbVertexBufferObject); - OpenTK.Graphics.OpenGL.BufferPointerNameArb _pname = default(OpenTK.Graphics.OpenGL.BufferPointerNameArb); - int[,,] _params = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Arb.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_23650() { - OpenTK.Graphics.OpenGL.ArbVertexBufferObject _target = default(OpenTK.Graphics.OpenGL.ArbVertexBufferObject); - OpenTK.Graphics.OpenGL.BufferPointerNameArb _pname = default(OpenTK.Graphics.OpenGL.BufferPointerNameArb); - int _params = default(int); - OpenTK.Graphics.OpenGL.GL.Arb.GetBufferPointer(_target,_pname,ref _params); -} -static unsafe void Test_GetBufferPointer_23651() { - OpenTK.Graphics.OpenGL.BufferTargetArb _target = default(OpenTK.Graphics.OpenGL.BufferTargetArb); - OpenTK.Graphics.OpenGL.BufferPointerNameArb _pname = default(OpenTK.Graphics.OpenGL.BufferPointerNameArb); - System.IntPtr _params = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Arb.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_23652() { - OpenTK.Graphics.OpenGL.BufferTargetArb _target = default(OpenTK.Graphics.OpenGL.BufferTargetArb); - OpenTK.Graphics.OpenGL.BufferPointerNameArb _pname = default(OpenTK.Graphics.OpenGL.BufferPointerNameArb); - int[] _params = default(int[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_23653() { - OpenTK.Graphics.OpenGL.BufferTargetArb _target = default(OpenTK.Graphics.OpenGL.BufferTargetArb); - OpenTK.Graphics.OpenGL.BufferPointerNameArb _pname = default(OpenTK.Graphics.OpenGL.BufferPointerNameArb); - int[,] _params = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Arb.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_23654() { - OpenTK.Graphics.OpenGL.BufferTargetArb _target = default(OpenTK.Graphics.OpenGL.BufferTargetArb); - OpenTK.Graphics.OpenGL.BufferPointerNameArb _pname = default(OpenTK.Graphics.OpenGL.BufferPointerNameArb); - int[,,] _params = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Arb.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_23655() { - OpenTK.Graphics.OpenGL.BufferTargetArb _target = default(OpenTK.Graphics.OpenGL.BufferTargetArb); - OpenTK.Graphics.OpenGL.BufferPointerNameArb _pname = default(OpenTK.Graphics.OpenGL.BufferPointerNameArb); - int _params = default(int); - OpenTK.Graphics.OpenGL.GL.Arb.GetBufferPointer(_target,_pname,ref _params); -} -static unsafe void Test_GetBufferSubData_23656() { - OpenTK.Graphics.OpenGL.BufferTargetArb _target = default(OpenTK.Graphics.OpenGL.BufferTargetArb); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Arb.GetBufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_GetBufferSubData_23657() { - OpenTK.Graphics.OpenGL.BufferTargetArb _target = default(OpenTK.Graphics.OpenGL.BufferTargetArb); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetBufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_GetBufferSubData_23658() { - OpenTK.Graphics.OpenGL.BufferTargetArb _target = default(OpenTK.Graphics.OpenGL.BufferTargetArb); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Arb.GetBufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_GetBufferSubData_23659() { - OpenTK.Graphics.OpenGL.BufferTargetArb _target = default(OpenTK.Graphics.OpenGL.BufferTargetArb); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Arb.GetBufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_GetBufferSubData_23660() { - OpenTK.Graphics.OpenGL.BufferTargetArb _target = default(OpenTK.Graphics.OpenGL.BufferTargetArb); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.Arb.GetBufferSubData(_target,_offset,_size,ref _data); -} -static unsafe void Test_GetCompressedTexImage_23661() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.IntPtr _img = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Arb.GetCompressedTexImage(_target,_level,_img); -} -static unsafe void Test_GetCompressedTexImage_23662() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - int[] _img = default(int[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetCompressedTexImage(_target,_level,_img); -} -static unsafe void Test_GetCompressedTexImage_23663() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - int[,] _img = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Arb.GetCompressedTexImage(_target,_level,_img); -} -static unsafe void Test_GetCompressedTexImage_23664() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - int[,,] _img = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Arb.GetCompressedTexImage(_target,_level,_img); -} -static unsafe void Test_GetCompressedTexImage_23665() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - int _img = default(int); - OpenTK.Graphics.OpenGL.GL.Arb.GetCompressedTexImage(_target,_level,ref _img); -} -static unsafe void Test_GetDebugMessageLog_23666() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbDebugOutput[] _sources = default(OpenTK.Graphics.OpenGL.ArbDebugOutput[]); - OpenTK.Graphics.OpenGL.ArbDebugOutput[] _types = default(OpenTK.Graphics.OpenGL.ArbDebugOutput[]); - System.Int32[] _ids = default(System.Int32[]); - OpenTK.Graphics.OpenGL.ArbDebugOutput[] _severities = default(OpenTK.Graphics.OpenGL.ArbDebugOutput[]); - System.Int32[] _lengths = default(System.Int32[]); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Arb.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_23667() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbDebugOutput _sources = default(OpenTK.Graphics.OpenGL.ArbDebugOutput); - OpenTK.Graphics.OpenGL.ArbDebugOutput _types = default(OpenTK.Graphics.OpenGL.ArbDebugOutput); - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbDebugOutput _severities = default(OpenTK.Graphics.OpenGL.ArbDebugOutput); - System.Int32 _lengths = default(System.Int32); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Arb.GetDebugMessageLog(_count,_bufSize,out _sources,out _types,out _ids,out _severities,out _lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_23668() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbDebugOutput* _sources = default(OpenTK.Graphics.OpenGL.ArbDebugOutput*); - OpenTK.Graphics.OpenGL.ArbDebugOutput* _types = default(OpenTK.Graphics.OpenGL.ArbDebugOutput*); - System.Int32* _ids = default(System.Int32*); - OpenTK.Graphics.OpenGL.ArbDebugOutput* _severities = default(OpenTK.Graphics.OpenGL.ArbDebugOutput*); - System.Int32* _lengths = default(System.Int32*); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Arb.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_23669() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbDebugOutput[] _sources = default(OpenTK.Graphics.OpenGL.ArbDebugOutput[]); - OpenTK.Graphics.OpenGL.ArbDebugOutput[] _types = default(OpenTK.Graphics.OpenGL.ArbDebugOutput[]); - System.UInt32[] _ids = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.ArbDebugOutput[] _severities = default(OpenTK.Graphics.OpenGL.ArbDebugOutput[]); - System.Int32[] _lengths = default(System.Int32[]); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Arb.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_23670() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbDebugOutput _sources = default(OpenTK.Graphics.OpenGL.ArbDebugOutput); - OpenTK.Graphics.OpenGL.ArbDebugOutput _types = default(OpenTK.Graphics.OpenGL.ArbDebugOutput); - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.OpenGL.ArbDebugOutput _severities = default(OpenTK.Graphics.OpenGL.ArbDebugOutput); - System.Int32 _lengths = default(System.Int32); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Arb.GetDebugMessageLog(_count,_bufSize,out _sources,out _types,out _ids,out _severities,out _lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_23671() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbDebugOutput* _sources = default(OpenTK.Graphics.OpenGL.ArbDebugOutput*); - OpenTK.Graphics.OpenGL.ArbDebugOutput* _types = default(OpenTK.Graphics.OpenGL.ArbDebugOutput*); - System.UInt32* _ids = default(System.UInt32*); - OpenTK.Graphics.OpenGL.ArbDebugOutput* _severities = default(OpenTK.Graphics.OpenGL.ArbDebugOutput*); - System.Int32* _lengths = default(System.Int32*); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Arb.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetGraphicsResetStatus_23672() { - OpenTK.Graphics.OpenGL.ArbRobustness r = OpenTK.Graphics.OpenGL.GL.Arb.GetGraphicsResetStatus(); -} -static unsafe void Test_GetHandle_23673() { - OpenTK.Graphics.OpenGL.ArbShaderObjects _pname = default(OpenTK.Graphics.OpenGL.ArbShaderObjects); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Arb.GetHandle(_pname); -} -static unsafe void Test_GetImageHandle_23674() { - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - System.Boolean _layered = default(System.Boolean); - System.Int32 _layer = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbBindlessTexture _format = default(OpenTK.Graphics.OpenGL.ArbBindlessTexture); - System.Int64 r = OpenTK.Graphics.OpenGL.GL.Arb.GetImageHandle(_texture,_level,_layered,_layer,_format); -} -static unsafe void Test_GetImageHandle_23675() { - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - System.Boolean _layered = default(System.Boolean); - System.Int32 _layer = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbBindlessTexture _format = default(OpenTK.Graphics.OpenGL.ArbBindlessTexture); - System.Int64 r = OpenTK.Graphics.OpenGL.GL.Arb.GetImageHandle(_texture,_level,_layered,_layer,_format); -} -static unsafe void Test_GetInfoLog_23676() { - System.Int32 _obj = default(System.Int32); - System.Int32 _maxLength = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Arb.GetInfoLog(_obj,_maxLength,out _length,_infoLog); -} -static unsafe void Test_GetInfoLog_23677() { - System.Int32 _obj = default(System.Int32); - System.Int32 _maxLength = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Arb.GetInfoLog(_obj,_maxLength,_length,_infoLog); -} -static unsafe void Test_GetInfoLog_23678() { - System.UInt32 _obj = default(System.UInt32); - System.Int32 _maxLength = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Arb.GetInfoLog(_obj,_maxLength,out _length,_infoLog); -} -static unsafe void Test_GetInfoLog_23679() { - System.UInt32 _obj = default(System.UInt32); - System.Int32 _maxLength = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Arb.GetInfoLog(_obj,_maxLength,_length,_infoLog); -} -static unsafe void Test_GetNamedString_23680() { - System.Int32 _namelen = default(System.Int32); - System.String _name = default(System.String); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _stringlen = default(System.Int32); - System.Text.StringBuilder _string = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Arb.GetNamedString(_namelen,_name,_bufSize,out _stringlen,_string); -} -static unsafe void Test_GetNamedString_23681() { - System.Int32 _namelen = default(System.Int32); - System.String _name = default(System.String); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _stringlen = default(System.Int32*); - System.Text.StringBuilder _string = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Arb.GetNamedString(_namelen,_name,_bufSize,_stringlen,_string); -} -static unsafe void Test_GetNamedString_23682() { - System.Int32 _namelen = default(System.Int32); - System.String _name = default(System.String); - OpenTK.Graphics.OpenGL.ArbShadingLanguageInclude _pname = default(OpenTK.Graphics.OpenGL.ArbShadingLanguageInclude); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetNamedString(_namelen,_name,_pname,_params); -} -static unsafe void Test_GetNamedString_23683() { - System.Int32 _namelen = default(System.Int32); - System.String _name = default(System.String); - OpenTK.Graphics.OpenGL.ArbShadingLanguageInclude _pname = default(OpenTK.Graphics.OpenGL.ArbShadingLanguageInclude); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.GetNamedString(_namelen,_name,_pname,out _params); -} -static unsafe void Test_GetNamedString_23684() { - System.Int32 _namelen = default(System.Int32); - System.String _name = default(System.String); - OpenTK.Graphics.OpenGL.ArbShadingLanguageInclude _pname = default(OpenTK.Graphics.OpenGL.ArbShadingLanguageInclude); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.GetNamedString(_namelen,_name,_pname,_params); -} -static unsafe void Test_GetnColorTable_23685() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _format = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _type = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - System.IntPtr _table = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Arb.GetnColorTable(_target,_format,_type,_bufSize,_table); -} -static unsafe void Test_GetnColorTable_23686() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _format = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _type = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - int[] _table = default(int[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetnColorTable(_target,_format,_type,_bufSize,_table); -} -static unsafe void Test_GetnColorTable_23687() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _format = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _type = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - int[,] _table = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Arb.GetnColorTable(_target,_format,_type,_bufSize,_table); -} -static unsafe void Test_GetnColorTable_23688() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _format = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _type = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - int[,,] _table = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Arb.GetnColorTable(_target,_format,_type,_bufSize,_table); -} -static unsafe void Test_GetnColorTable_23689() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _format = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _type = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - int _table = default(int); - OpenTK.Graphics.OpenGL.GL.Arb.GetnColorTable(_target,_format,_type,_bufSize,ref _table); -} -static unsafe void Test_GetnCompressedTexImage_23690() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _lod = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.IntPtr _img = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Arb.GetnCompressedTexImage(_target,_lod,_bufSize,_img); -} -static unsafe void Test_GetnCompressedTexImage_23691() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _lod = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - int[] _img = default(int[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetnCompressedTexImage(_target,_lod,_bufSize,_img); -} -static unsafe void Test_GetnCompressedTexImage_23692() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _lod = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - int[,] _img = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Arb.GetnCompressedTexImage(_target,_lod,_bufSize,_img); -} -static unsafe void Test_GetnCompressedTexImage_23693() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _lod = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - int[,,] _img = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Arb.GetnCompressedTexImage(_target,_lod,_bufSize,_img); -} -static unsafe void Test_GetnCompressedTexImage_23694() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _lod = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - int _img = default(int); - OpenTK.Graphics.OpenGL.GL.Arb.GetnCompressedTexImage(_target,_lod,_bufSize,ref _img); -} -static unsafe void Test_GetnConvolutionFilter_23695() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _format = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _type = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - System.IntPtr _image = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Arb.GetnConvolutionFilter(_target,_format,_type,_bufSize,_image); -} -static unsafe void Test_GetnConvolutionFilter_23696() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _format = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _type = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - int[] _image = default(int[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetnConvolutionFilter(_target,_format,_type,_bufSize,_image); -} -static unsafe void Test_GetnConvolutionFilter_23697() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _format = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _type = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - int[,] _image = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Arb.GetnConvolutionFilter(_target,_format,_type,_bufSize,_image); -} -static unsafe void Test_GetnConvolutionFilter_23698() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _format = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _type = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - int[,,] _image = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Arb.GetnConvolutionFilter(_target,_format,_type,_bufSize,_image); -} -static unsafe void Test_GetnConvolutionFilter_23699() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _format = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _type = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - int _image = default(int); - OpenTK.Graphics.OpenGL.GL.Arb.GetnConvolutionFilter(_target,_format,_type,_bufSize,ref _image); -} -static unsafe void Test_GetnHistogram_23700() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL.ArbRobustness _format = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _type = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - System.IntPtr _values = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Arb.GetnHistogram(_target,_reset,_format,_type,_bufSize,_values); -} -static unsafe void Test_GetnHistogram_23701() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL.ArbRobustness _format = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _type = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - int[] _values = default(int[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetnHistogram(_target,_reset,_format,_type,_bufSize,_values); -} -static unsafe void Test_GetnHistogram_23702() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL.ArbRobustness _format = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _type = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - int[,] _values = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Arb.GetnHistogram(_target,_reset,_format,_type,_bufSize,_values); -} -static unsafe void Test_GetnHistogram_23703() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL.ArbRobustness _format = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _type = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - int[,,] _values = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Arb.GetnHistogram(_target,_reset,_format,_type,_bufSize,_values); -} -static unsafe void Test_GetnHistogram_23704() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL.ArbRobustness _format = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _type = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - int _values = default(int); - OpenTK.Graphics.OpenGL.GL.Arb.GetnHistogram(_target,_reset,_format,_type,_bufSize,ref _values); -} -static unsafe void Test_GetnMap_23705() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _query = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetnMap(_target,_query,_bufSize,_v); -} -static unsafe void Test_GetnMap_23706() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _query = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.GetnMap(_target,_query,_bufSize,out _v); -} -static unsafe void Test_GetnMap_23707() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _query = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Arb.GetnMap(_target,_query,_bufSize,_v); -} -static unsafe void Test_GetnMap_23708() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _query = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetnMap(_target,_query,_bufSize,_v); -} -static unsafe void Test_GetnMap_23709() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _query = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.GetnMap(_target,_query,_bufSize,out _v); -} -static unsafe void Test_GetnMap_23710() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _query = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.GetnMap(_target,_query,_bufSize,_v); -} -static unsafe void Test_GetnMap_23711() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _query = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetnMap(_target,_query,_bufSize,_v); -} -static unsafe void Test_GetnMap_23712() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _query = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.GetnMap(_target,_query,_bufSize,out _v); -} -static unsafe void Test_GetnMap_23713() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _query = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.GetnMap(_target,_query,_bufSize,_v); -} -static unsafe void Test_GetnMinmax_23714() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL.ArbRobustness _format = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _type = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - System.IntPtr _values = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Arb.GetnMinmax(_target,_reset,_format,_type,_bufSize,_values); -} -static unsafe void Test_GetnMinmax_23715() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL.ArbRobustness _format = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _type = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - int[] _values = default(int[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetnMinmax(_target,_reset,_format,_type,_bufSize,_values); -} -static unsafe void Test_GetnMinmax_23716() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL.ArbRobustness _format = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _type = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - int[,] _values = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Arb.GetnMinmax(_target,_reset,_format,_type,_bufSize,_values); -} -static unsafe void Test_GetnMinmax_23717() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL.ArbRobustness _format = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _type = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - int[,,] _values = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Arb.GetnMinmax(_target,_reset,_format,_type,_bufSize,_values); -} -static unsafe void Test_GetnMinmax_23718() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL.ArbRobustness _format = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _type = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - int _values = default(int); - OpenTK.Graphics.OpenGL.GL.Arb.GetnMinmax(_target,_reset,_format,_type,_bufSize,ref _values); -} -static unsafe void Test_GetnPixelMap_23719() { - OpenTK.Graphics.OpenGL.ArbRobustness _map = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - System.Single[] _values = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetnPixelMap(_map,_bufSize,_values); -} -static unsafe void Test_GetnPixelMap_23720() { - OpenTK.Graphics.OpenGL.ArbRobustness _map = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - System.Single _values = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.GetnPixelMap(_map,_bufSize,out _values); -} -static unsafe void Test_GetnPixelMap_23721() { - OpenTK.Graphics.OpenGL.ArbRobustness _map = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - System.Single* _values = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.GetnPixelMap(_map,_bufSize,_values); -} -static unsafe void Test_GetnPixelMap_23722() { - OpenTK.Graphics.OpenGL.ArbRobustness _map = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _values = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetnPixelMap(_map,_bufSize,_values); -} -static unsafe void Test_GetnPixelMap_23723() { - OpenTK.Graphics.OpenGL.ArbRobustness _map = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _values = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.GetnPixelMap(_map,_bufSize,out _values); -} -static unsafe void Test_GetnPixelMap_23724() { - OpenTK.Graphics.OpenGL.ArbRobustness _map = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _values = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.GetnPixelMap(_map,_bufSize,_values); -} -static unsafe void Test_GetnPixelMap_23725() { - OpenTK.Graphics.OpenGL.ArbRobustness _map = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - System.UInt32[] _values = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetnPixelMap(_map,_bufSize,_values); -} -static unsafe void Test_GetnPixelMap_23726() { - OpenTK.Graphics.OpenGL.ArbRobustness _map = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - System.UInt32 _values = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Arb.GetnPixelMap(_map,_bufSize,out _values); -} -static unsafe void Test_GetnPixelMap_23727() { - OpenTK.Graphics.OpenGL.ArbRobustness _map = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - System.UInt32* _values = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Arb.GetnPixelMap(_map,_bufSize,_values); -} -static unsafe void Test_GetnPixelMap_23728() { - OpenTK.Graphics.OpenGL.ArbRobustness _map = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - System.Int16[] _values = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetnPixelMap(_map,_bufSize,_values); -} -static unsafe void Test_GetnPixelMap_23729() { - OpenTK.Graphics.OpenGL.ArbRobustness _map = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - System.Int16 _values = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Arb.GetnPixelMap(_map,_bufSize,out _values); -} -static unsafe void Test_GetnPixelMap_23730() { - OpenTK.Graphics.OpenGL.ArbRobustness _map = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - System.Int16* _values = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Arb.GetnPixelMap(_map,_bufSize,_values); -} -static unsafe void Test_GetnPixelMap_23731() { - OpenTK.Graphics.OpenGL.ArbRobustness _map = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - System.UInt16[] _values = default(System.UInt16[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetnPixelMap(_map,_bufSize,_values); -} -static unsafe void Test_GetnPixelMap_23732() { - OpenTK.Graphics.OpenGL.ArbRobustness _map = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - System.UInt16 _values = default(System.UInt16); - OpenTK.Graphics.OpenGL.GL.Arb.GetnPixelMap(_map,_bufSize,out _values); -} -static unsafe void Test_GetnPixelMap_23733() { - OpenTK.Graphics.OpenGL.ArbRobustness _map = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - System.UInt16* _values = default(System.UInt16*); - OpenTK.Graphics.OpenGL.GL.Arb.GetnPixelMap(_map,_bufSize,_values); -} -static unsafe void Test_GetnPolygonStipple_23734() { - System.Byte r = OpenTK.Graphics.OpenGL.GL.Arb.GetnPolygonStipple(); -} -static unsafe void Test_GetnPolygonStipple_23735() { - System.Int32 _bufSize = default(System.Int32); - System.Byte[] _pattern = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetnPolygonStipple(_bufSize,_pattern); -} -static unsafe void Test_GetnPolygonStipple_23736() { - System.Int32 _bufSize = default(System.Int32); - System.Byte _pattern = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Arb.GetnPolygonStipple(_bufSize,out _pattern); -} -static unsafe void Test_GetnPolygonStipple_23737() { - System.Int32 _bufSize = default(System.Int32); - System.Byte* _pattern = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.Arb.GetnPolygonStipple(_bufSize,_pattern); -} -static unsafe void Test_GetnSeparableFilter_23738() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _format = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _type = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _rowBufSize = default(System.Int32); - System.IntPtr _row = default(System.IntPtr); - System.Int32 _columnBufSize = default(System.Int32); - System.IntPtr _column = default(System.IntPtr); - System.IntPtr _span = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Arb.GetnSeparableFilter(_target,_format,_type,_rowBufSize,_row,_columnBufSize,_column,_span); -} -static unsafe void Test_GetnSeparableFilter_23739() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _format = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _type = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _rowBufSize = default(System.Int32); - int[] _row = default(int[]); - System.Int32 _columnBufSize = default(System.Int32); - int[] _column = default(int[]); - int[] _span = default(int[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetnSeparableFilter(_target,_format,_type,_rowBufSize,_row,_columnBufSize,_column,_span); -} -static unsafe void Test_GetnSeparableFilter_23740() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _format = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _type = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _rowBufSize = default(System.Int32); - int[,] _row = default(int[,]); - System.Int32 _columnBufSize = default(System.Int32); - int[,] _column = default(int[,]); - int[,] _span = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Arb.GetnSeparableFilter(_target,_format,_type,_rowBufSize,_row,_columnBufSize,_column,_span); -} -static unsafe void Test_GetnSeparableFilter_23741() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _format = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _type = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _rowBufSize = default(System.Int32); - int[,,] _row = default(int[,,]); - System.Int32 _columnBufSize = default(System.Int32); - int[,,] _column = default(int[,,]); - int[,,] _span = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Arb.GetnSeparableFilter(_target,_format,_type,_rowBufSize,_row,_columnBufSize,_column,_span); -} -static unsafe void Test_GetnSeparableFilter_23742() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _format = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _type = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _rowBufSize = default(System.Int32); - int _row = default(int); - System.Int32 _columnBufSize = default(System.Int32); - int _column = default(int); - int _span = default(int); - OpenTK.Graphics.OpenGL.GL.Arb.GetnSeparableFilter(_target,_format,_type,_rowBufSize,ref _row,_columnBufSize,ref _column,ref _span); -} -static unsafe void Test_GetnTexImage_23743() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbRobustness _format = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _type = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - System.IntPtr _img = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Arb.GetnTexImage(_target,_level,_format,_type,_bufSize,_img); -} -static unsafe void Test_GetnTexImage_23744() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbRobustness _format = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _type = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - int[] _img = default(int[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetnTexImage(_target,_level,_format,_type,_bufSize,_img); -} -static unsafe void Test_GetnTexImage_23745() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbRobustness _format = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _type = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - int[,] _img = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Arb.GetnTexImage(_target,_level,_format,_type,_bufSize,_img); -} -static unsafe void Test_GetnTexImage_23746() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbRobustness _format = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _type = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - int[,,] _img = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Arb.GetnTexImage(_target,_level,_format,_type,_bufSize,_img); -} -static unsafe void Test_GetnTexImage_23747() { - OpenTK.Graphics.OpenGL.ArbRobustness _target = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbRobustness _format = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _type = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - int _img = default(int); - OpenTK.Graphics.OpenGL.GL.Arb.GetnTexImage(_target,_level,_format,_type,_bufSize,ref _img); -} -static unsafe void Test_GetnUniform_23748() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_23749() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.GetnUniform(_program,_location,_bufSize,out _params); -} -static unsafe void Test_GetnUniform_23750() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Arb.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_23751() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_23752() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.GetnUniform(_program,_location,_bufSize,out _params); -} -static unsafe void Test_GetnUniform_23753() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Arb.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_23754() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_23755() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.GetnUniform(_program,_location,_bufSize,out _params); -} -static unsafe void Test_GetnUniform_23756() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_23757() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_23758() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.GetnUniform(_program,_location,_bufSize,out _params); -} -static unsafe void Test_GetnUniform_23759() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_23760() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_23761() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.GetnUniform(_program,_location,_bufSize,out _params); -} -static unsafe void Test_GetnUniform_23762() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_23763() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_23764() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.GetnUniform(_program,_location,_bufSize,out _params); -} -static unsafe void Test_GetnUniform_23765() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_23766() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_23767() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Arb.GetnUniform(_program,_location,_bufSize,out _params); -} -static unsafe void Test_GetnUniform_23768() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Arb.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetObjectParameter_23769() { - System.Int32 _obj = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbShaderObjects _pname = default(OpenTK.Graphics.OpenGL.ArbShaderObjects); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetObjectParameter(_obj,_pname,_params); -} -static unsafe void Test_GetObjectParameter_23770() { - System.Int32 _obj = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbShaderObjects _pname = default(OpenTK.Graphics.OpenGL.ArbShaderObjects); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.GetObjectParameter(_obj,_pname,out _params); -} -static unsafe void Test_GetObjectParameter_23771() { - System.Int32 _obj = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbShaderObjects _pname = default(OpenTK.Graphics.OpenGL.ArbShaderObjects); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.GetObjectParameter(_obj,_pname,_params); -} -static unsafe void Test_GetObjectParameter_23772() { - System.UInt32 _obj = default(System.UInt32); - OpenTK.Graphics.OpenGL.ArbShaderObjects _pname = default(OpenTK.Graphics.OpenGL.ArbShaderObjects); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetObjectParameter(_obj,_pname,_params); -} -static unsafe void Test_GetObjectParameter_23773() { - System.UInt32 _obj = default(System.UInt32); - OpenTK.Graphics.OpenGL.ArbShaderObjects _pname = default(OpenTK.Graphics.OpenGL.ArbShaderObjects); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.GetObjectParameter(_obj,_pname,out _params); -} -static unsafe void Test_GetObjectParameter_23774() { - System.UInt32 _obj = default(System.UInt32); - OpenTK.Graphics.OpenGL.ArbShaderObjects _pname = default(OpenTK.Graphics.OpenGL.ArbShaderObjects); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.GetObjectParameter(_obj,_pname,_params); -} -static unsafe void Test_GetObjectParameter_23775() { - System.Int32 _obj = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbShaderObjects _pname = default(OpenTK.Graphics.OpenGL.ArbShaderObjects); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetObjectParameter(_obj,_pname,_params); -} -static unsafe void Test_GetObjectParameter_23776() { - System.Int32 _obj = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbShaderObjects _pname = default(OpenTK.Graphics.OpenGL.ArbShaderObjects); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.GetObjectParameter(_obj,_pname,out _params); -} -static unsafe void Test_GetObjectParameter_23777() { - System.Int32 _obj = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbShaderObjects _pname = default(OpenTK.Graphics.OpenGL.ArbShaderObjects); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.GetObjectParameter(_obj,_pname,_params); -} -static unsafe void Test_GetObjectParameter_23778() { - System.UInt32 _obj = default(System.UInt32); - OpenTK.Graphics.OpenGL.ArbShaderObjects _pname = default(OpenTK.Graphics.OpenGL.ArbShaderObjects); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetObjectParameter(_obj,_pname,_params); -} -static unsafe void Test_GetObjectParameter_23779() { - System.UInt32 _obj = default(System.UInt32); - OpenTK.Graphics.OpenGL.ArbShaderObjects _pname = default(OpenTK.Graphics.OpenGL.ArbShaderObjects); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.GetObjectParameter(_obj,_pname,out _params); -} -static unsafe void Test_GetObjectParameter_23780() { - System.UInt32 _obj = default(System.UInt32); - OpenTK.Graphics.OpenGL.ArbShaderObjects _pname = default(OpenTK.Graphics.OpenGL.ArbShaderObjects); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.GetObjectParameter(_obj,_pname,_params); -} -static unsafe void Test_GetProgramEnvParameter_23781() { - OpenTK.Graphics.OpenGL.All _target = default(OpenTK.Graphics.OpenGL.All); - System.Int32 _index = default(System.Int32); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramEnvParameter(_target,_index,_params); -} -static unsafe void Test_GetProgramEnvParameter_23782() { - OpenTK.Graphics.OpenGL.All _target = default(OpenTK.Graphics.OpenGL.All); - System.Int32 _index = default(System.Int32); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramEnvParameter(_target,_index,out _params); -} -static unsafe void Test_GetProgramEnvParameter_23783() { - OpenTK.Graphics.OpenGL.All _target = default(OpenTK.Graphics.OpenGL.All); - System.Int32 _index = default(System.Int32); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramEnvParameter(_target,_index,_params); -} -static unsafe void Test_GetProgramEnvParameter_23784() { - OpenTK.Graphics.OpenGL.All _target = default(OpenTK.Graphics.OpenGL.All); - System.UInt32 _index = default(System.UInt32); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramEnvParameter(_target,_index,_params); -} -static unsafe void Test_GetProgramEnvParameter_23785() { - OpenTK.Graphics.OpenGL.All _target = default(OpenTK.Graphics.OpenGL.All); - System.UInt32 _index = default(System.UInt32); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramEnvParameter(_target,_index,out _params); -} -static unsafe void Test_GetProgramEnvParameter_23786() { - OpenTK.Graphics.OpenGL.All _target = default(OpenTK.Graphics.OpenGL.All); - System.UInt32 _index = default(System.UInt32); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramEnvParameter(_target,_index,_params); -} -static unsafe void Test_GetProgramEnvParameter_23787() { - OpenTK.Graphics.OpenGL.ArbVertexProgram _target = default(OpenTK.Graphics.OpenGL.ArbVertexProgram); - System.Int32 _index = default(System.Int32); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramEnvParameter(_target,_index,_params); -} -static unsafe void Test_GetProgramEnvParameter_23788() { - OpenTK.Graphics.OpenGL.ArbVertexProgram _target = default(OpenTK.Graphics.OpenGL.ArbVertexProgram); - System.Int32 _index = default(System.Int32); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramEnvParameter(_target,_index,out _params); -} -static unsafe void Test_GetProgramEnvParameter_23789() { - OpenTK.Graphics.OpenGL.ArbVertexProgram _target = default(OpenTK.Graphics.OpenGL.ArbVertexProgram); - System.Int32 _index = default(System.Int32); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramEnvParameter(_target,_index,_params); -} -static unsafe void Test_GetProgramEnvParameter_23790() { - OpenTK.Graphics.OpenGL.ArbVertexProgram _target = default(OpenTK.Graphics.OpenGL.ArbVertexProgram); - System.UInt32 _index = default(System.UInt32); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramEnvParameter(_target,_index,_params); -} -static unsafe void Test_GetProgramEnvParameter_23791() { - OpenTK.Graphics.OpenGL.ArbVertexProgram _target = default(OpenTK.Graphics.OpenGL.ArbVertexProgram); - System.UInt32 _index = default(System.UInt32); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramEnvParameter(_target,_index,out _params); -} -static unsafe void Test_GetProgramEnvParameter_23792() { - OpenTK.Graphics.OpenGL.ArbVertexProgram _target = default(OpenTK.Graphics.OpenGL.ArbVertexProgram); - System.UInt32 _index = default(System.UInt32); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramEnvParameter(_target,_index,_params); -} -static unsafe void Test_GetProgramEnvParameter_23793() { - OpenTK.Graphics.OpenGL.All _target = default(OpenTK.Graphics.OpenGL.All); - System.Int32 _index = default(System.Int32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramEnvParameter(_target,_index,_params); -} -static unsafe void Test_GetProgramEnvParameter_23794() { - OpenTK.Graphics.OpenGL.All _target = default(OpenTK.Graphics.OpenGL.All); - System.Int32 _index = default(System.Int32); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramEnvParameter(_target,_index,out _params); -} -static unsafe void Test_GetProgramEnvParameter_23795() { - OpenTK.Graphics.OpenGL.All _target = default(OpenTK.Graphics.OpenGL.All); - System.Int32 _index = default(System.Int32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramEnvParameter(_target,_index,_params); -} -static unsafe void Test_GetProgramEnvParameter_23796() { - OpenTK.Graphics.OpenGL.All _target = default(OpenTK.Graphics.OpenGL.All); - System.UInt32 _index = default(System.UInt32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramEnvParameter(_target,_index,_params); -} -static unsafe void Test_GetProgramEnvParameter_23797() { - OpenTK.Graphics.OpenGL.All _target = default(OpenTK.Graphics.OpenGL.All); - System.UInt32 _index = default(System.UInt32); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramEnvParameter(_target,_index,out _params); -} -static unsafe void Test_GetProgramEnvParameter_23798() { - OpenTK.Graphics.OpenGL.All _target = default(OpenTK.Graphics.OpenGL.All); - System.UInt32 _index = default(System.UInt32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramEnvParameter(_target,_index,_params); -} -static unsafe void Test_GetProgramEnvParameter_23799() { - OpenTK.Graphics.OpenGL.ArbVertexProgram _target = default(OpenTK.Graphics.OpenGL.ArbVertexProgram); - System.Int32 _index = default(System.Int32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramEnvParameter(_target,_index,_params); -} -static unsafe void Test_GetProgramEnvParameter_23800() { - OpenTK.Graphics.OpenGL.ArbVertexProgram _target = default(OpenTK.Graphics.OpenGL.ArbVertexProgram); - System.Int32 _index = default(System.Int32); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramEnvParameter(_target,_index,out _params); -} -static unsafe void Test_GetProgramEnvParameter_23801() { - OpenTK.Graphics.OpenGL.ArbVertexProgram _target = default(OpenTK.Graphics.OpenGL.ArbVertexProgram); - System.Int32 _index = default(System.Int32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramEnvParameter(_target,_index,_params); -} -static unsafe void Test_GetProgramEnvParameter_23802() { - OpenTK.Graphics.OpenGL.ArbVertexProgram _target = default(OpenTK.Graphics.OpenGL.ArbVertexProgram); - System.UInt32 _index = default(System.UInt32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramEnvParameter(_target,_index,_params); -} -static unsafe void Test_GetProgramEnvParameter_23803() { - OpenTK.Graphics.OpenGL.ArbVertexProgram _target = default(OpenTK.Graphics.OpenGL.ArbVertexProgram); - System.UInt32 _index = default(System.UInt32); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramEnvParameter(_target,_index,out _params); -} -static unsafe void Test_GetProgramEnvParameter_23804() { - OpenTK.Graphics.OpenGL.ArbVertexProgram _target = default(OpenTK.Graphics.OpenGL.ArbVertexProgram); - System.UInt32 _index = default(System.UInt32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramEnvParameter(_target,_index,_params); -} -static unsafe void Test_GetProgram_23805() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb _pname = default(OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgram(_target,_pname,out _params); -} -static unsafe void Test_GetProgram_23806() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb _pname = default(OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgram(_target,_pname,_params); -} -static unsafe void Test_GetProgramLocalParameter_23807() { - OpenTK.Graphics.OpenGL.All _target = default(OpenTK.Graphics.OpenGL.All); - System.Int32 _index = default(System.Int32); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramLocalParameter(_target,_index,_params); -} -static unsafe void Test_GetProgramLocalParameter_23808() { - OpenTK.Graphics.OpenGL.All _target = default(OpenTK.Graphics.OpenGL.All); - System.Int32 _index = default(System.Int32); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramLocalParameter(_target,_index,out _params); -} -static unsafe void Test_GetProgramLocalParameter_23809() { - OpenTK.Graphics.OpenGL.All _target = default(OpenTK.Graphics.OpenGL.All); - System.Int32 _index = default(System.Int32); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramLocalParameter(_target,_index,_params); -} -static unsafe void Test_GetProgramLocalParameter_23810() { - OpenTK.Graphics.OpenGL.All _target = default(OpenTK.Graphics.OpenGL.All); - System.UInt32 _index = default(System.UInt32); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramLocalParameter(_target,_index,_params); -} -static unsafe void Test_GetProgramLocalParameter_23811() { - OpenTK.Graphics.OpenGL.All _target = default(OpenTK.Graphics.OpenGL.All); - System.UInt32 _index = default(System.UInt32); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramLocalParameter(_target,_index,out _params); -} -static unsafe void Test_GetProgramLocalParameter_23812() { - OpenTK.Graphics.OpenGL.All _target = default(OpenTK.Graphics.OpenGL.All); - System.UInt32 _index = default(System.UInt32); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramLocalParameter(_target,_index,_params); -} -static unsafe void Test_GetProgramLocalParameter_23813() { - OpenTK.Graphics.OpenGL.ArbVertexProgram _target = default(OpenTK.Graphics.OpenGL.ArbVertexProgram); - System.Int32 _index = default(System.Int32); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramLocalParameter(_target,_index,_params); -} -static unsafe void Test_GetProgramLocalParameter_23814() { - OpenTK.Graphics.OpenGL.ArbVertexProgram _target = default(OpenTK.Graphics.OpenGL.ArbVertexProgram); - System.Int32 _index = default(System.Int32); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramLocalParameter(_target,_index,out _params); -} -static unsafe void Test_GetProgramLocalParameter_23815() { - OpenTK.Graphics.OpenGL.ArbVertexProgram _target = default(OpenTK.Graphics.OpenGL.ArbVertexProgram); - System.Int32 _index = default(System.Int32); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramLocalParameter(_target,_index,_params); -} -static unsafe void Test_GetProgramLocalParameter_23816() { - OpenTK.Graphics.OpenGL.ArbVertexProgram _target = default(OpenTK.Graphics.OpenGL.ArbVertexProgram); - System.UInt32 _index = default(System.UInt32); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramLocalParameter(_target,_index,_params); -} -static unsafe void Test_GetProgramLocalParameter_23817() { - OpenTK.Graphics.OpenGL.ArbVertexProgram _target = default(OpenTK.Graphics.OpenGL.ArbVertexProgram); - System.UInt32 _index = default(System.UInt32); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramLocalParameter(_target,_index,out _params); -} -static unsafe void Test_GetProgramLocalParameter_23818() { - OpenTK.Graphics.OpenGL.ArbVertexProgram _target = default(OpenTK.Graphics.OpenGL.ArbVertexProgram); - System.UInt32 _index = default(System.UInt32); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramLocalParameter(_target,_index,_params); -} -static unsafe void Test_GetProgramLocalParameter_23819() { - OpenTK.Graphics.OpenGL.All _target = default(OpenTK.Graphics.OpenGL.All); - System.Int32 _index = default(System.Int32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramLocalParameter(_target,_index,_params); -} -static unsafe void Test_GetProgramLocalParameter_23820() { - OpenTK.Graphics.OpenGL.All _target = default(OpenTK.Graphics.OpenGL.All); - System.Int32 _index = default(System.Int32); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramLocalParameter(_target,_index,out _params); -} -static unsafe void Test_GetProgramLocalParameter_23821() { - OpenTK.Graphics.OpenGL.All _target = default(OpenTK.Graphics.OpenGL.All); - System.Int32 _index = default(System.Int32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramLocalParameter(_target,_index,_params); -} -static unsafe void Test_GetProgramLocalParameter_23822() { - OpenTK.Graphics.OpenGL.All _target = default(OpenTK.Graphics.OpenGL.All); - System.UInt32 _index = default(System.UInt32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramLocalParameter(_target,_index,_params); -} -static unsafe void Test_GetProgramLocalParameter_23823() { - OpenTK.Graphics.OpenGL.All _target = default(OpenTK.Graphics.OpenGL.All); - System.UInt32 _index = default(System.UInt32); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramLocalParameter(_target,_index,out _params); -} -static unsafe void Test_GetProgramLocalParameter_23824() { - OpenTK.Graphics.OpenGL.All _target = default(OpenTK.Graphics.OpenGL.All); - System.UInt32 _index = default(System.UInt32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramLocalParameter(_target,_index,_params); -} -static unsafe void Test_GetProgramLocalParameter_23825() { - OpenTK.Graphics.OpenGL.ArbVertexProgram _target = default(OpenTK.Graphics.OpenGL.ArbVertexProgram); - System.Int32 _index = default(System.Int32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramLocalParameter(_target,_index,_params); -} -static unsafe void Test_GetProgramLocalParameter_23826() { - OpenTK.Graphics.OpenGL.ArbVertexProgram _target = default(OpenTK.Graphics.OpenGL.ArbVertexProgram); - System.Int32 _index = default(System.Int32); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramLocalParameter(_target,_index,out _params); -} -static unsafe void Test_GetProgramLocalParameter_23827() { - OpenTK.Graphics.OpenGL.ArbVertexProgram _target = default(OpenTK.Graphics.OpenGL.ArbVertexProgram); - System.Int32 _index = default(System.Int32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramLocalParameter(_target,_index,_params); -} -static unsafe void Test_GetProgramLocalParameter_23828() { - OpenTK.Graphics.OpenGL.ArbVertexProgram _target = default(OpenTK.Graphics.OpenGL.ArbVertexProgram); - System.UInt32 _index = default(System.UInt32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramLocalParameter(_target,_index,_params); -} -static unsafe void Test_GetProgramLocalParameter_23829() { - OpenTK.Graphics.OpenGL.ArbVertexProgram _target = default(OpenTK.Graphics.OpenGL.ArbVertexProgram); - System.UInt32 _index = default(System.UInt32); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramLocalParameter(_target,_index,out _params); -} -static unsafe void Test_GetProgramLocalParameter_23830() { - OpenTK.Graphics.OpenGL.ArbVertexProgram _target = default(OpenTK.Graphics.OpenGL.ArbVertexProgram); - System.UInt32 _index = default(System.UInt32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramLocalParameter(_target,_index,_params); -} -static unsafe void Test_GetProgramString_23831() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb _pname = default(OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb); - System.IntPtr _string = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramString(_target,_pname,_string); -} -static unsafe void Test_GetProgramString_23832() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb _pname = default(OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb); - int[] _string = default(int[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramString(_target,_pname,_string); -} -static unsafe void Test_GetProgramString_23833() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb _pname = default(OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb); - int[,] _string = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramString(_target,_pname,_string); -} -static unsafe void Test_GetProgramString_23834() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb _pname = default(OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb); - int[,,] _string = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramString(_target,_pname,_string); -} -static unsafe void Test_GetProgramString_23835() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb _pname = default(OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb); - int _string = default(int); - OpenTK.Graphics.OpenGL.GL.Arb.GetProgramString(_target,_pname,ref _string); -} -static unsafe void Test_GetQuery_23836() { - OpenTK.Graphics.OpenGL.ArbOcclusionQuery _target = default(OpenTK.Graphics.OpenGL.ArbOcclusionQuery); - OpenTK.Graphics.OpenGL.ArbOcclusionQuery _pname = default(OpenTK.Graphics.OpenGL.ArbOcclusionQuery); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetQuery(_target,_pname,_params); -} -static unsafe void Test_GetQuery_23837() { - OpenTK.Graphics.OpenGL.ArbOcclusionQuery _target = default(OpenTK.Graphics.OpenGL.ArbOcclusionQuery); - OpenTK.Graphics.OpenGL.ArbOcclusionQuery _pname = default(OpenTK.Graphics.OpenGL.ArbOcclusionQuery); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.GetQuery(_target,_pname,out _params); -} -static unsafe void Test_GetQuery_23838() { - OpenTK.Graphics.OpenGL.ArbOcclusionQuery _target = default(OpenTK.Graphics.OpenGL.ArbOcclusionQuery); - OpenTK.Graphics.OpenGL.ArbOcclusionQuery _pname = default(OpenTK.Graphics.OpenGL.ArbOcclusionQuery); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.GetQuery(_target,_pname,_params); -} -static unsafe void Test_GetQueryObject_23839() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbOcclusionQuery _pname = default(OpenTK.Graphics.OpenGL.ArbOcclusionQuery); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_23840() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbOcclusionQuery _pname = default(OpenTK.Graphics.OpenGL.ArbOcclusionQuery); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_23841() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbOcclusionQuery _pname = default(OpenTK.Graphics.OpenGL.ArbOcclusionQuery); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_23842() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ArbOcclusionQuery _pname = default(OpenTK.Graphics.OpenGL.ArbOcclusionQuery); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_23843() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ArbOcclusionQuery _pname = default(OpenTK.Graphics.OpenGL.ArbOcclusionQuery); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_23844() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ArbOcclusionQuery _pname = default(OpenTK.Graphics.OpenGL.ArbOcclusionQuery); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_23845() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ArbOcclusionQuery _pname = default(OpenTK.Graphics.OpenGL.ArbOcclusionQuery); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_23846() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ArbOcclusionQuery _pname = default(OpenTK.Graphics.OpenGL.ArbOcclusionQuery); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Arb.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_23847() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ArbOcclusionQuery _pname = default(OpenTK.Graphics.OpenGL.ArbOcclusionQuery); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Arb.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetShaderSource_23848() { - System.Int32 _obj = default(System.Int32); - System.Int32 _maxLength = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Arb.GetShaderSource(_obj,_maxLength,out _length,_source); -} -static unsafe void Test_GetShaderSource_23849() { - System.Int32 _obj = default(System.Int32); - System.Int32 _maxLength = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Arb.GetShaderSource(_obj,_maxLength,_length,_source); -} -static unsafe void Test_GetShaderSource_23850() { - System.UInt32 _obj = default(System.UInt32); - System.Int32 _maxLength = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Arb.GetShaderSource(_obj,_maxLength,out _length,_source); -} -static unsafe void Test_GetShaderSource_23851() { - System.UInt32 _obj = default(System.UInt32); - System.Int32 _maxLength = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Arb.GetShaderSource(_obj,_maxLength,_length,_source); -} -static unsafe void Test_GetTextureHandle_23852() { - System.Int32 _texture = default(System.Int32); - System.Int64 r = OpenTK.Graphics.OpenGL.GL.Arb.GetTextureHandle(_texture); -} -static unsafe void Test_GetTextureHandle_23853() { - System.UInt32 _texture = default(System.UInt32); - System.Int64 r = OpenTK.Graphics.OpenGL.GL.Arb.GetTextureHandle(_texture); -} -static unsafe void Test_GetTextureSamplerHandle_23854() { - System.Int32 _texture = default(System.Int32); - System.Int32 _sampler = default(System.Int32); - System.Int64 r = OpenTK.Graphics.OpenGL.GL.Arb.GetTextureSamplerHandle(_texture,_sampler); -} -static unsafe void Test_GetTextureSamplerHandle_23855() { - System.UInt32 _texture = default(System.UInt32); - System.UInt32 _sampler = default(System.UInt32); - System.Int64 r = OpenTK.Graphics.OpenGL.GL.Arb.GetTextureSamplerHandle(_texture,_sampler); -} -static unsafe void Test_GetUniform_23856() { - System.Int32 _programObj = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetUniform(_programObj,_location,_params); -} -static unsafe void Test_GetUniform_23857() { - System.Int32 _programObj = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.GetUniform(_programObj,_location,out _params); -} -static unsafe void Test_GetUniform_23858() { - System.Int32 _programObj = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.GetUniform(_programObj,_location,_params); -} -static unsafe void Test_GetUniform_23859() { - System.UInt32 _programObj = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetUniform(_programObj,_location,_params); -} -static unsafe void Test_GetUniform_23860() { - System.UInt32 _programObj = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.GetUniform(_programObj,_location,out _params); -} -static unsafe void Test_GetUniform_23861() { - System.UInt32 _programObj = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.GetUniform(_programObj,_location,_params); -} -static unsafe void Test_GetUniform_23862() { - System.Int32 _programObj = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetUniform(_programObj,_location,_params); -} -static unsafe void Test_GetUniform_23863() { - System.Int32 _programObj = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.GetUniform(_programObj,_location,out _params); -} -static unsafe void Test_GetUniform_23864() { - System.Int32 _programObj = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.GetUniform(_programObj,_location,_params); -} -static unsafe void Test_GetUniform_23865() { - System.UInt32 _programObj = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetUniform(_programObj,_location,_params); -} -static unsafe void Test_GetUniform_23866() { - System.UInt32 _programObj = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.GetUniform(_programObj,_location,out _params); -} -static unsafe void Test_GetUniform_23867() { - System.UInt32 _programObj = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.GetUniform(_programObj,_location,_params); -} -static unsafe void Test_GetUniformLocation_23868() { - System.Int32 _programObj = default(System.Int32); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Arb.GetUniformLocation(_programObj,_name); -} -static unsafe void Test_GetUniformLocation_23869() { - System.UInt32 _programObj = default(System.UInt32); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Arb.GetUniformLocation(_programObj,_name); -} -static unsafe void Test_GetVertexAttrib_23870() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribParameterArb _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameterArb); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_23871() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribParameterArb _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameterArb); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_23872() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribParameterArb _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameterArb); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Arb.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_23873() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.VertexAttribParameterArb _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameterArb); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_23874() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.VertexAttribParameterArb _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameterArb); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_23875() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.VertexAttribParameterArb _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameterArb); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Arb.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_23876() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribParameterArb _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameterArb); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_23877() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribParameterArb _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameterArb); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_23878() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribParameterArb _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameterArb); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_23879() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.VertexAttribParameterArb _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameterArb); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_23880() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.VertexAttribParameterArb _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameterArb); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_23881() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.VertexAttribParameterArb _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameterArb); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_23882() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribParameterArb _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameterArb); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_23883() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribParameterArb _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameterArb); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_23884() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribParameterArb _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameterArb); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_23885() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.VertexAttribParameterArb _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameterArb); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_23886() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.VertexAttribParameterArb _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameterArb); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_23887() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.VertexAttribParameterArb _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameterArb); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribL_23888() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribParameterArb _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameterArb); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetVertexAttribL(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribL_23889() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribParameterArb _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameterArb); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.Arb.GetVertexAttribL(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttribL_23890() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribParameterArb _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameterArb); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.Arb.GetVertexAttribL(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribL_23891() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.VertexAttribParameterArb _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameterArb); - System.UInt64[] _params = default(System.UInt64[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetVertexAttribL(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribL_23892() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.VertexAttribParameterArb _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameterArb); - System.UInt64 _params = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.Arb.GetVertexAttribL(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttribL_23893() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.VertexAttribParameterArb _pname = default(OpenTK.Graphics.OpenGL.VertexAttribParameterArb); - System.UInt64* _params = default(System.UInt64*); - OpenTK.Graphics.OpenGL.GL.Arb.GetVertexAttribL(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribPointer_23894() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb _pname = default(OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Arb.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_23895() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb _pname = default(OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_23896() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb _pname = default(OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Arb.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_23897() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb _pname = default(OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Arb.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_23898() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb _pname = default(OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.Arb.GetVertexAttribPointer(_index,_pname,ref _pointer); -} -static unsafe void Test_GetVertexAttribPointer_23899() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb _pname = default(OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Arb.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_23900() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb _pname = default(OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_23901() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb _pname = default(OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Arb.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_23902() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb _pname = default(OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Arb.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_23903() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb _pname = default(OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.Arb.GetVertexAttribPointer(_index,_pname,ref _pointer); -} -static unsafe void Test_IsBuffer_23904() { - System.Int32 _buffer = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Arb.IsBuffer(_buffer); -} -static unsafe void Test_IsBuffer_23905() { - System.UInt32 _buffer = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Arb.IsBuffer(_buffer); -} -static unsafe void Test_IsImageHandleResident_23906() { - System.Int64 _handle = default(System.Int64); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Arb.IsImageHandleResident(_handle); -} -static unsafe void Test_IsImageHandleResident_23907() { - System.UInt64 _handle = default(System.UInt64); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Arb.IsImageHandleResident(_handle); -} -static unsafe void Test_IsNamedString_23908() { - System.Int32 _namelen = default(System.Int32); - System.String _name = default(System.String); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Arb.IsNamedString(_namelen,_name); -} -static unsafe void Test_IsProgram_23909() { - System.Int32 _program = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Arb.IsProgram(_program); -} -static unsafe void Test_IsProgram_23910() { - System.UInt32 _program = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Arb.IsProgram(_program); -} -static unsafe void Test_IsQuery_23911() { - System.Int32 _id = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Arb.IsQuery(_id); -} -static unsafe void Test_IsQuery_23912() { - System.UInt32 _id = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Arb.IsQuery(_id); -} -static unsafe void Test_IsTextureHandleResident_23913() { - System.Int64 _handle = default(System.Int64); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Arb.IsTextureHandleResident(_handle); -} -static unsafe void Test_IsTextureHandleResident_23914() { - System.UInt64 _handle = default(System.UInt64); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Arb.IsTextureHandleResident(_handle); -} -static unsafe void Test_LinkProgram_23915() { - System.Int32 _programObj = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.LinkProgram(_programObj); -} -static unsafe void Test_LinkProgram_23916() { - System.UInt32 _programObj = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Arb.LinkProgram(_programObj); -} -static unsafe void Test_LoadTransposeMatrix_23917() { - System.Double[] _m = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Arb.LoadTransposeMatrix(_m); -} -static unsafe void Test_LoadTransposeMatrix_23918() { - System.Double _m = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.LoadTransposeMatrix(ref _m); -} -static unsafe void Test_LoadTransposeMatrix_23919() { - System.Double* _m = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Arb.LoadTransposeMatrix(_m); -} -static unsafe void Test_LoadTransposeMatrix_23920() { - System.Single[] _m = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.LoadTransposeMatrix(_m); -} -static unsafe void Test_LoadTransposeMatrix_23921() { - System.Single _m = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.LoadTransposeMatrix(ref _m); -} -static unsafe void Test_LoadTransposeMatrix_23922() { - System.Single* _m = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.LoadTransposeMatrix(_m); -} -static unsafe void Test_MakeImageHandleNonResident_23923() { - System.Int64 _handle = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.Arb.MakeImageHandleNonResident(_handle); -} -static unsafe void Test_MakeImageHandleNonResident_23924() { - System.UInt64 _handle = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.Arb.MakeImageHandleNonResident(_handle); -} -static unsafe void Test_MakeImageHandleResident_23925() { - System.Int64 _handle = default(System.Int64); - OpenTK.Graphics.OpenGL.ArbBindlessTexture _access = default(OpenTK.Graphics.OpenGL.ArbBindlessTexture); - OpenTK.Graphics.OpenGL.GL.Arb.MakeImageHandleResident(_handle,_access); -} -static unsafe void Test_MakeImageHandleResident_23926() { - System.UInt64 _handle = default(System.UInt64); - OpenTK.Graphics.OpenGL.ArbBindlessTexture _access = default(OpenTK.Graphics.OpenGL.ArbBindlessTexture); - OpenTK.Graphics.OpenGL.GL.Arb.MakeImageHandleResident(_handle,_access); -} -static unsafe void Test_MakeTextureHandleNonResident_23927() { - System.Int64 _handle = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.Arb.MakeTextureHandleNonResident(_handle); -} -static unsafe void Test_MakeTextureHandleNonResident_23928() { - System.UInt64 _handle = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.Arb.MakeTextureHandleNonResident(_handle); -} -static unsafe void Test_MakeTextureHandleResident_23929() { - System.Int64 _handle = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.Arb.MakeTextureHandleResident(_handle); -} -static unsafe void Test_MakeTextureHandleResident_23930() { - System.UInt64 _handle = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.Arb.MakeTextureHandleResident(_handle); -} -static unsafe void Test_MapBuffer_23931() { - OpenTK.Graphics.OpenGL.BufferTargetArb _target = default(OpenTK.Graphics.OpenGL.BufferTargetArb); - OpenTK.Graphics.OpenGL.ArbVertexBufferObject _access = default(OpenTK.Graphics.OpenGL.ArbVertexBufferObject); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.Arb.MapBuffer(_target,_access); -} -static unsafe void Test_MapBuffer_23932() { - OpenTK.Graphics.OpenGL.BufferTargetArb _target = default(OpenTK.Graphics.OpenGL.BufferTargetArb); - OpenTK.Graphics.OpenGL.BufferAccessArb _access = default(OpenTK.Graphics.OpenGL.BufferAccessArb); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.Arb.MapBuffer(_target,_access); -} -static unsafe void Test_MatrixIndexPointer_23933() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbMatrixPalette _type = default(OpenTK.Graphics.OpenGL.ArbMatrixPalette); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Arb.MatrixIndexPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_MatrixIndexPointer_23934() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbMatrixPalette _type = default(OpenTK.Graphics.OpenGL.ArbMatrixPalette); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.Arb.MatrixIndexPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_MatrixIndexPointer_23935() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbMatrixPalette _type = default(OpenTK.Graphics.OpenGL.ArbMatrixPalette); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Arb.MatrixIndexPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_MatrixIndexPointer_23936() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbMatrixPalette _type = default(OpenTK.Graphics.OpenGL.ArbMatrixPalette); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Arb.MatrixIndexPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_MatrixIndexPointer_23937() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbMatrixPalette _type = default(OpenTK.Graphics.OpenGL.ArbMatrixPalette); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.Arb.MatrixIndexPointer(_size,_type,_stride,ref _pointer); -} -static unsafe void Test_MatrixIndex_23938() { - System.Int32 _size = default(System.Int32); - System.Byte[] _indices = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.Arb.MatrixIndex(_size,_indices); -} -static unsafe void Test_MatrixIndex_23939() { - System.Int32 _size = default(System.Int32); - System.Byte _indices = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Arb.MatrixIndex(_size,ref _indices); -} -static unsafe void Test_MatrixIndex_23940() { - System.Int32 _size = default(System.Int32); - System.Byte* _indices = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.Arb.MatrixIndex(_size,_indices); -} -static unsafe void Test_MatrixIndex_23941() { - System.Int32 _size = default(System.Int32); - System.Int32[] _indices = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.MatrixIndex(_size,_indices); -} -static unsafe void Test_MatrixIndex_23942() { - System.Int32 _size = default(System.Int32); - System.Int32 _indices = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.MatrixIndex(_size,ref _indices); -} -static unsafe void Test_MatrixIndex_23943() { - System.Int32 _size = default(System.Int32); - System.Int32* _indices = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.MatrixIndex(_size,_indices); -} -static unsafe void Test_MatrixIndex_23944() { - System.Int32 _size = default(System.Int32); - System.UInt32[] _indices = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Arb.MatrixIndex(_size,_indices); -} -static unsafe void Test_MatrixIndex_23945() { - System.Int32 _size = default(System.Int32); - System.UInt32 _indices = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Arb.MatrixIndex(_size,ref _indices); -} -static unsafe void Test_MatrixIndex_23946() { - System.Int32 _size = default(System.Int32); - System.UInt32* _indices = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Arb.MatrixIndex(_size,_indices); -} -static unsafe void Test_MatrixIndex_23947() { - System.Int32 _size = default(System.Int32); - System.Int16[] _indices = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.Arb.MatrixIndex(_size,_indices); -} -static unsafe void Test_MatrixIndex_23948() { - System.Int32 _size = default(System.Int32); - System.Int16 _indices = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Arb.MatrixIndex(_size,ref _indices); -} -static unsafe void Test_MatrixIndex_23949() { - System.Int32 _size = default(System.Int32); - System.Int16* _indices = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Arb.MatrixIndex(_size,_indices); -} -static unsafe void Test_MatrixIndex_23950() { - System.Int32 _size = default(System.Int32); - System.UInt16[] _indices = default(System.UInt16[]); - OpenTK.Graphics.OpenGL.GL.Arb.MatrixIndex(_size,_indices); -} -static unsafe void Test_MatrixIndex_23951() { - System.Int32 _size = default(System.Int32); - System.UInt16 _indices = default(System.UInt16); - OpenTK.Graphics.OpenGL.GL.Arb.MatrixIndex(_size,ref _indices); -} -static unsafe void Test_MatrixIndex_23952() { - System.Int32 _size = default(System.Int32); - System.UInt16* _indices = default(System.UInt16*); - OpenTK.Graphics.OpenGL.GL.Arb.MatrixIndex(_size,_indices); -} -static unsafe void Test_MinSampleShading_23953() { - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.MinSampleShading(_value); -} -static unsafe void Test_MultiDrawArraysIndirectCount_23954() { - OpenTK.Graphics.OpenGL.ArbIndirectParameters _mode = default(OpenTK.Graphics.OpenGL.ArbIndirectParameters); - System.IntPtr _indirect = default(System.IntPtr); - System.IntPtr _drawcount = default(System.IntPtr); - System.Int32 _maxdrawcount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.MultiDrawArraysIndirectCount(_mode,_indirect,_drawcount,_maxdrawcount,_stride); -} -static unsafe void Test_MultiDrawElementsIndirectCount_23955() { - OpenTK.Graphics.OpenGL.ArbIndirectParameters _mode = default(OpenTK.Graphics.OpenGL.ArbIndirectParameters); - OpenTK.Graphics.OpenGL.ArbIndirectParameters _type = default(OpenTK.Graphics.OpenGL.ArbIndirectParameters); - System.IntPtr _indirect = default(System.IntPtr); - System.IntPtr _drawcount = default(System.IntPtr); - System.Int32 _maxdrawcount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.MultiDrawElementsIndirectCount(_mode,_type,_indirect,_drawcount,_maxdrawcount,_stride); -} -static unsafe void Test_MultiTexCoord1_23956() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Double _s = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord1(_target,_s); -} -static unsafe void Test_MultiTexCoord1_23957() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord1(_target,_v); -} -static unsafe void Test_MultiTexCoord1_23958() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Single _s = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord1(_target,_s); -} -static unsafe void Test_MultiTexCoord1_23959() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord1(_target,_v); -} -static unsafe void Test_MultiTexCoord1_23960() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int32 _s = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord1(_target,_s); -} -static unsafe void Test_MultiTexCoord1_23961() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord1(_target,_v); -} -static unsafe void Test_MultiTexCoord1_23962() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int16 _s = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord1(_target,_s); -} -static unsafe void Test_MultiTexCoord1_23963() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord1(_target,_v); -} -static unsafe void Test_MultiTexCoord2_23964() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Double _s = default(System.Double); - System.Double _t = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord2(_target,_s,_t); -} -static unsafe void Test_MultiTexCoord2_23965() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord2(_target,_v); -} -static unsafe void Test_MultiTexCoord2_23966() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord2(_target,ref _v); -} -static unsafe void Test_MultiTexCoord2_23967() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord2(_target,_v); -} -static unsafe void Test_MultiTexCoord2_23968() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Single _s = default(System.Single); - System.Single _t = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord2(_target,_s,_t); -} -static unsafe void Test_MultiTexCoord2_23969() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord2(_target,_v); -} -static unsafe void Test_MultiTexCoord2_23970() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord2(_target,ref _v); -} -static unsafe void Test_MultiTexCoord2_23971() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord2(_target,_v); -} -static unsafe void Test_MultiTexCoord2_23972() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int32 _s = default(System.Int32); - System.Int32 _t = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord2(_target,_s,_t); -} -static unsafe void Test_MultiTexCoord2_23973() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord2(_target,_v); -} -static unsafe void Test_MultiTexCoord2_23974() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord2(_target,ref _v); -} -static unsafe void Test_MultiTexCoord2_23975() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord2(_target,_v); -} -static unsafe void Test_MultiTexCoord2_23976() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int16 _s = default(System.Int16); - System.Int16 _t = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord2(_target,_s,_t); -} -static unsafe void Test_MultiTexCoord2_23977() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord2(_target,_v); -} -static unsafe void Test_MultiTexCoord2_23978() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord2(_target,ref _v); -} -static unsafe void Test_MultiTexCoord2_23979() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord2(_target,_v); -} -static unsafe void Test_MultiTexCoord3_23980() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Double _s = default(System.Double); - System.Double _t = default(System.Double); - System.Double _r = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord3(_target,_s,_t,_r); -} -static unsafe void Test_MultiTexCoord3_23981() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord3(_target,_v); -} -static unsafe void Test_MultiTexCoord3_23982() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord3(_target,ref _v); -} -static unsafe void Test_MultiTexCoord3_23983() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord3(_target,_v); -} -static unsafe void Test_MultiTexCoord3_23984() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Single _s = default(System.Single); - System.Single _t = default(System.Single); - System.Single _r = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord3(_target,_s,_t,_r); -} -static unsafe void Test_MultiTexCoord3_23985() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord3(_target,_v); -} -static unsafe void Test_MultiTexCoord3_23986() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord3(_target,ref _v); -} -static unsafe void Test_MultiTexCoord3_23987() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord3(_target,_v); -} -static unsafe void Test_MultiTexCoord3_23988() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int32 _s = default(System.Int32); - System.Int32 _t = default(System.Int32); - System.Int32 _r = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord3(_target,_s,_t,_r); -} -static unsafe void Test_MultiTexCoord3_23989() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord3(_target,_v); -} -static unsafe void Test_MultiTexCoord3_23990() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord3(_target,ref _v); -} -static unsafe void Test_MultiTexCoord3_23991() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord3(_target,_v); -} -static unsafe void Test_MultiTexCoord3_23992() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int16 _s = default(System.Int16); - System.Int16 _t = default(System.Int16); - System.Int16 _r = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord3(_target,_s,_t,_r); -} -static unsafe void Test_MultiTexCoord3_23993() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord3(_target,_v); -} -static unsafe void Test_MultiTexCoord3_23994() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord3(_target,ref _v); -} -static unsafe void Test_MultiTexCoord3_23995() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord3(_target,_v); -} -static unsafe void Test_MultiTexCoord4_23996() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Double _s = default(System.Double); - System.Double _t = default(System.Double); - System.Double _r = default(System.Double); - System.Double _q = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord4(_target,_s,_t,_r,_q); -} -static unsafe void Test_MultiTexCoord4_23997() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord4(_target,_v); -} -static unsafe void Test_MultiTexCoord4_23998() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord4(_target,ref _v); -} -static unsafe void Test_MultiTexCoord4_23999() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord4(_target,_v); -} -static unsafe void Test_MultiTexCoord4_24000() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Single _s = default(System.Single); - System.Single _t = default(System.Single); - System.Single _r = default(System.Single); - System.Single _q = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord4(_target,_s,_t,_r,_q); -} -static unsafe void Test_MultiTexCoord4_24001() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord4(_target,_v); -} -static unsafe void Test_MultiTexCoord4_24002() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord4(_target,ref _v); -} -static unsafe void Test_MultiTexCoord4_24003() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord4(_target,_v); -} -static unsafe void Test_MultiTexCoord4_24004() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int32 _s = default(System.Int32); - System.Int32 _t = default(System.Int32); - System.Int32 _r = default(System.Int32); - System.Int32 _q = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord4(_target,_s,_t,_r,_q); -} -static unsafe void Test_MultiTexCoord4_24005() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord4(_target,_v); -} -static unsafe void Test_MultiTexCoord4_24006() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord4(_target,ref _v); -} -static unsafe void Test_MultiTexCoord4_24007() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord4(_target,_v); -} -static unsafe void Test_MultiTexCoord4_24008() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int16 _s = default(System.Int16); - System.Int16 _t = default(System.Int16); - System.Int16 _r = default(System.Int16); - System.Int16 _q = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord4(_target,_s,_t,_r,_q); -} -static unsafe void Test_MultiTexCoord4_24009() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord4(_target,_v); -} -static unsafe void Test_MultiTexCoord4_24010() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord4(_target,ref _v); -} -static unsafe void Test_MultiTexCoord4_24011() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Arb.MultiTexCoord4(_target,_v); -} -static unsafe void Test_MultTransposeMatrix_24012() { - System.Double[] _m = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Arb.MultTransposeMatrix(_m); -} -static unsafe void Test_MultTransposeMatrix_24013() { - System.Double _m = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.MultTransposeMatrix(ref _m); -} -static unsafe void Test_MultTransposeMatrix_24014() { - System.Double* _m = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Arb.MultTransposeMatrix(_m); -} -static unsafe void Test_MultTransposeMatrix_24015() { - System.Single[] _m = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.MultTransposeMatrix(_m); -} -static unsafe void Test_MultTransposeMatrix_24016() { - System.Single _m = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.MultTransposeMatrix(ref _m); -} -static unsafe void Test_MultTransposeMatrix_24017() { - System.Single* _m = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.MultTransposeMatrix(_m); -} -static unsafe void Test_NamedString_24018() { - OpenTK.Graphics.OpenGL.ArbShadingLanguageInclude _type = default(OpenTK.Graphics.OpenGL.ArbShadingLanguageInclude); - System.Int32 _namelen = default(System.Int32); - System.String _name = default(System.String); - System.Int32 _stringlen = default(System.Int32); - System.String _string = default(System.String); - OpenTK.Graphics.OpenGL.GL.Arb.NamedString(_type,_namelen,_name,_stringlen,_string); -} -static unsafe void Test_PointParameter_24019() { - OpenTK.Graphics.OpenGL.ArbPointParameters _pname = default(OpenTK.Graphics.OpenGL.ArbPointParameters); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.PointParameter(_pname,_param); -} -static unsafe void Test_PointParameter_24020() { - OpenTK.Graphics.OpenGL.ArbPointParameters _pname = default(OpenTK.Graphics.OpenGL.ArbPointParameters); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.PointParameter(_pname,_params); -} -static unsafe void Test_PointParameter_24021() { - OpenTK.Graphics.OpenGL.ArbPointParameters _pname = default(OpenTK.Graphics.OpenGL.ArbPointParameters); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.PointParameter(_pname,_params); -} -static unsafe void Test_ProgramEnvParameter4_24022() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _index = default(System.Int32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - System.Double _w = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramEnvParameter4(_target,_index,_x,_y,_z,_w); -} -static unsafe void Test_ProgramEnvParameter4_24023() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - System.Double _w = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramEnvParameter4(_target,_index,_x,_y,_z,_w); -} -static unsafe void Test_ProgramEnvParameter4_24024() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _index = default(System.Int32); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramEnvParameter4(_target,_index,_params); -} -static unsafe void Test_ProgramEnvParameter4_24025() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _index = default(System.Int32); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramEnvParameter4(_target,_index,ref _params); -} -static unsafe void Test_ProgramEnvParameter4_24026() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _index = default(System.Int32); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramEnvParameter4(_target,_index,_params); -} -static unsafe void Test_ProgramEnvParameter4_24027() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramEnvParameter4(_target,_index,_params); -} -static unsafe void Test_ProgramEnvParameter4_24028() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramEnvParameter4(_target,_index,ref _params); -} -static unsafe void Test_ProgramEnvParameter4_24029() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramEnvParameter4(_target,_index,_params); -} -static unsafe void Test_ProgramEnvParameter4_24030() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _index = default(System.Int32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - System.Single _w = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramEnvParameter4(_target,_index,_x,_y,_z,_w); -} -static unsafe void Test_ProgramEnvParameter4_24031() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - System.Single _w = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramEnvParameter4(_target,_index,_x,_y,_z,_w); -} -static unsafe void Test_ProgramEnvParameter4_24032() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _index = default(System.Int32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramEnvParameter4(_target,_index,_params); -} -static unsafe void Test_ProgramEnvParameter4_24033() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _index = default(System.Int32); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramEnvParameter4(_target,_index,ref _params); -} -static unsafe void Test_ProgramEnvParameter4_24034() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _index = default(System.Int32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramEnvParameter4(_target,_index,_params); -} -static unsafe void Test_ProgramEnvParameter4_24035() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramEnvParameter4(_target,_index,_params); -} -static unsafe void Test_ProgramEnvParameter4_24036() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramEnvParameter4(_target,_index,ref _params); -} -static unsafe void Test_ProgramEnvParameter4_24037() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramEnvParameter4(_target,_index,_params); -} -static unsafe void Test_ProgramLocalParameter4_24038() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _index = default(System.Int32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - System.Double _w = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramLocalParameter4(_target,_index,_x,_y,_z,_w); -} -static unsafe void Test_ProgramLocalParameter4_24039() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - System.Double _w = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramLocalParameter4(_target,_index,_x,_y,_z,_w); -} -static unsafe void Test_ProgramLocalParameter4_24040() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _index = default(System.Int32); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramLocalParameter4(_target,_index,_params); -} -static unsafe void Test_ProgramLocalParameter4_24041() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _index = default(System.Int32); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramLocalParameter4(_target,_index,ref _params); -} -static unsafe void Test_ProgramLocalParameter4_24042() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _index = default(System.Int32); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramLocalParameter4(_target,_index,_params); -} -static unsafe void Test_ProgramLocalParameter4_24043() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramLocalParameter4(_target,_index,_params); -} -static unsafe void Test_ProgramLocalParameter4_24044() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramLocalParameter4(_target,_index,ref _params); -} -static unsafe void Test_ProgramLocalParameter4_24045() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramLocalParameter4(_target,_index,_params); -} -static unsafe void Test_ProgramLocalParameter4_24046() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _index = default(System.Int32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - System.Single _w = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramLocalParameter4(_target,_index,_x,_y,_z,_w); -} -static unsafe void Test_ProgramLocalParameter4_24047() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - System.Single _w = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramLocalParameter4(_target,_index,_x,_y,_z,_w); -} -static unsafe void Test_ProgramLocalParameter4_24048() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _index = default(System.Int32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramLocalParameter4(_target,_index,_params); -} -static unsafe void Test_ProgramLocalParameter4_24049() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _index = default(System.Int32); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramLocalParameter4(_target,_index,ref _params); -} -static unsafe void Test_ProgramLocalParameter4_24050() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _index = default(System.Int32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramLocalParameter4(_target,_index,_params); -} -static unsafe void Test_ProgramLocalParameter4_24051() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramLocalParameter4(_target,_index,_params); -} -static unsafe void Test_ProgramLocalParameter4_24052() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramLocalParameter4(_target,_index,ref _params); -} -static unsafe void Test_ProgramLocalParameter4_24053() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramLocalParameter4(_target,_index,_params); -} -static unsafe void Test_ProgramParameter_24054() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb _pname = default(OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramParameter(_program,_pname,_value); -} -static unsafe void Test_ProgramParameter_24055() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb _pname = default(OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramParameter(_program,_pname,_value); -} -static unsafe void Test_ProgramString_24056() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - OpenTK.Graphics.OpenGL.All _format = default(OpenTK.Graphics.OpenGL.All); - System.Int32 _len = default(System.Int32); - System.IntPtr _string = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramString(_target,_format,_len,_string); -} -static unsafe void Test_ProgramString_24057() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - OpenTK.Graphics.OpenGL.All _format = default(OpenTK.Graphics.OpenGL.All); - System.Int32 _len = default(System.Int32); - int[] _string = default(int[]); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramString(_target,_format,_len,_string); -} -static unsafe void Test_ProgramString_24058() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - OpenTK.Graphics.OpenGL.All _format = default(OpenTK.Graphics.OpenGL.All); - System.Int32 _len = default(System.Int32); - int[,] _string = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramString(_target,_format,_len,_string); -} -static unsafe void Test_ProgramString_24059() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - OpenTK.Graphics.OpenGL.All _format = default(OpenTK.Graphics.OpenGL.All); - System.Int32 _len = default(System.Int32); - int[,,] _string = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramString(_target,_format,_len,_string); -} -static unsafe void Test_ProgramString_24060() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - OpenTK.Graphics.OpenGL.All _format = default(OpenTK.Graphics.OpenGL.All); - System.Int32 _len = default(System.Int32); - int _string = default(int); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramString(_target,_format,_len,ref _string); -} -static unsafe void Test_ProgramString_24061() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - OpenTK.Graphics.OpenGL.ArbVertexProgram _format = default(OpenTK.Graphics.OpenGL.ArbVertexProgram); - System.Int32 _len = default(System.Int32); - System.IntPtr _string = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramString(_target,_format,_len,_string); -} -static unsafe void Test_ProgramString_24062() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - OpenTK.Graphics.OpenGL.ArbVertexProgram _format = default(OpenTK.Graphics.OpenGL.ArbVertexProgram); - System.Int32 _len = default(System.Int32); - int[] _string = default(int[]); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramString(_target,_format,_len,_string); -} -static unsafe void Test_ProgramString_24063() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - OpenTK.Graphics.OpenGL.ArbVertexProgram _format = default(OpenTK.Graphics.OpenGL.ArbVertexProgram); - System.Int32 _len = default(System.Int32); - int[,] _string = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramString(_target,_format,_len,_string); -} -static unsafe void Test_ProgramString_24064() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - OpenTK.Graphics.OpenGL.ArbVertexProgram _format = default(OpenTK.Graphics.OpenGL.ArbVertexProgram); - System.Int32 _len = default(System.Int32); - int[,,] _string = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramString(_target,_format,_len,_string); -} -static unsafe void Test_ProgramString_24065() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - OpenTK.Graphics.OpenGL.ArbVertexProgram _format = default(OpenTK.Graphics.OpenGL.ArbVertexProgram); - System.Int32 _len = default(System.Int32); - int _string = default(int); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramString(_target,_format,_len,ref _string); -} -static unsafe void Test_ProgramUniformHandle_24066() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int64 _value = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramUniformHandle(_program,_location,_value); -} -static unsafe void Test_ProgramUniformHandle_24067() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt64 _value = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramUniformHandle(_program,_location,_value); -} -static unsafe void Test_ProgramUniformHandle_24068() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64[] _values = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramUniformHandle(_program,_location,_count,_values); -} -static unsafe void Test_ProgramUniformHandle_24069() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64 _values = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramUniformHandle(_program,_location,_count,ref _values); -} -static unsafe void Test_ProgramUniformHandle_24070() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64* _values = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramUniformHandle(_program,_location,_count,_values); -} -static unsafe void Test_ProgramUniformHandle_24071() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64[] _values = default(System.UInt64[]); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramUniformHandle(_program,_location,_count,_values); -} -static unsafe void Test_ProgramUniformHandle_24072() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64 _values = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramUniformHandle(_program,_location,_count,ref _values); -} -static unsafe void Test_ProgramUniformHandle_24073() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64* _values = default(System.UInt64*); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramUniformHandle(_program,_location,_count,_values); -} -static unsafe void Test_ReadnPixels_24074() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbRobustness _format = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _type = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Arb.ReadnPixels(_x,_y,_width,_height,_format,_type,_bufSize,_data); -} -static unsafe void Test_ReadnPixels_24075() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbRobustness _format = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _type = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.Arb.ReadnPixels(_x,_y,_width,_height,_format,_type,_bufSize,_data); -} -static unsafe void Test_ReadnPixels_24076() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbRobustness _format = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _type = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Arb.ReadnPixels(_x,_y,_width,_height,_format,_type,_bufSize,_data); -} -static unsafe void Test_ReadnPixels_24077() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbRobustness _format = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _type = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Arb.ReadnPixels(_x,_y,_width,_height,_format,_type,_bufSize,_data); -} -static unsafe void Test_ReadnPixels_24078() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbRobustness _format = default(OpenTK.Graphics.OpenGL.ArbRobustness); - OpenTK.Graphics.OpenGL.ArbRobustness _type = default(OpenTK.Graphics.OpenGL.ArbRobustness); - System.Int32 _bufSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.Arb.ReadnPixels(_x,_y,_width,_height,_format,_type,_bufSize,ref _data); -} -static unsafe void Test_SampleCoverage_24079() { - System.Single _value = default(System.Single); - System.Boolean _invert = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Arb.SampleCoverage(_value,_invert); -} -static unsafe void Test_ShaderSource_24080() { - System.Int32 _shaderObj = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.String[] _string = default(System.String[]); - System.Int32[] _length = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.ShaderSource(_shaderObj,_count,_string,_length); -} -static unsafe void Test_ShaderSource_24081() { - System.Int32 _shaderObj = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.String[] _string = default(System.String[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.ShaderSource(_shaderObj,_count,_string,ref _length); -} -static unsafe void Test_ShaderSource_24082() { - System.Int32 _shaderObj = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.String[] _string = default(System.String[]); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.ShaderSource(_shaderObj,_count,_string,_length); -} -static unsafe void Test_ShaderSource_24083() { - System.UInt32 _shaderObj = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.String[] _string = default(System.String[]); - System.Int32[] _length = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.ShaderSource(_shaderObj,_count,_string,_length); -} -static unsafe void Test_ShaderSource_24084() { - System.UInt32 _shaderObj = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.String[] _string = default(System.String[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.ShaderSource(_shaderObj,_count,_string,ref _length); -} -static unsafe void Test_ShaderSource_24085() { - System.UInt32 _shaderObj = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.String[] _string = default(System.String[]); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.ShaderSource(_shaderObj,_count,_string,_length); -} -static unsafe void Test_TexBuffer_24086() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.ArbTextureBufferObject _internalformat = default(OpenTK.Graphics.OpenGL.ArbTextureBufferObject); - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.TexBuffer(_target,_internalformat,_buffer); -} -static unsafe void Test_TexBuffer_24087() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.ArbTextureBufferObject _internalformat = default(OpenTK.Graphics.OpenGL.ArbTextureBufferObject); - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Arb.TexBuffer(_target,_internalformat,_buffer); -} -static unsafe void Test_TexPageCommitment_24088() { - OpenTK.Graphics.OpenGL.ArbSparseTexture _target = default(OpenTK.Graphics.OpenGL.ArbSparseTexture); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Boolean _resident = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Arb.TexPageCommitment(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_resident); -} -static unsafe void Test_Uniform1_24089() { - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.Uniform1(_location,_v0); -} -static unsafe void Test_Uniform1_24090() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.Uniform1(_location,_count,_value); -} -static unsafe void Test_Uniform1_24091() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.Uniform1(_location,_count,ref _value); -} -static unsafe void Test_Uniform1_24092() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.Uniform1(_location,_count,_value); -} -static unsafe void Test_Uniform1_24093() { - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.Uniform1(_location,_v0); -} -static unsafe void Test_Uniform1_24094() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.Uniform1(_location,_count,_value); -} -static unsafe void Test_Uniform1_24095() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.Uniform1(_location,_count,ref _value); -} -static unsafe void Test_Uniform1_24096() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.Uniform1(_location,_count,_value); -} -static unsafe void Test_Uniform2_24097() { - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.Uniform2(_location,_v0,_v1); -} -static unsafe void Test_Uniform2_24098() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.Uniform2(_location,_count,_value); -} -static unsafe void Test_Uniform2_24099() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.Uniform2(_location,_count,ref _value); -} -static unsafe void Test_Uniform2_24100() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.Uniform2(_location,_count,_value); -} -static unsafe void Test_Uniform2_24101() { - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.Uniform2(_location,_v0,_v1); -} -static unsafe void Test_Uniform2_24102() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.Uniform2(_location,_count,_value); -} -static unsafe void Test_Uniform2_24103() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.Uniform2(_location,_count,_value); -} -static unsafe void Test_Uniform3_24104() { - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.Uniform3(_location,_v0,_v1,_v2); -} -static unsafe void Test_Uniform3_24105() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.Uniform3(_location,_count,_value); -} -static unsafe void Test_Uniform3_24106() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.Uniform3(_location,_count,ref _value); -} -static unsafe void Test_Uniform3_24107() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.Uniform3(_location,_count,_value); -} -static unsafe void Test_Uniform3_24108() { - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - System.Int32 _v2 = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.Uniform3(_location,_v0,_v1,_v2); -} -static unsafe void Test_Uniform3_24109() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.Uniform3(_location,_count,_value); -} -static unsafe void Test_Uniform3_24110() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.Uniform3(_location,_count,ref _value); -} -static unsafe void Test_Uniform3_24111() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.Uniform3(_location,_count,_value); -} -static unsafe void Test_Uniform4_24112() { - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - System.Single _v3 = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.Uniform4(_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_Uniform4_24113() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.Uniform4(_location,_count,_value); -} -static unsafe void Test_Uniform4_24114() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.Uniform4(_location,_count,ref _value); -} -static unsafe void Test_Uniform4_24115() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.Uniform4(_location,_count,_value); -} -static unsafe void Test_Uniform4_24116() { - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - System.Int32 _v2 = default(System.Int32); - System.Int32 _v3 = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.Uniform4(_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_Uniform4_24117() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.Uniform4(_location,_count,_value); -} -static unsafe void Test_Uniform4_24118() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.Uniform4(_location,_count,ref _value); -} -static unsafe void Test_Uniform4_24119() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.Uniform4(_location,_count,_value); -} -static unsafe void Test_UniformHandle_24120() { - System.Int32 _location = default(System.Int32); - System.Int64 _value = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.Arb.UniformHandle(_location,_value); -} -static unsafe void Test_UniformHandle_24121() { - System.Int32 _location = default(System.Int32); - System.UInt64 _value = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.Arb.UniformHandle(_location,_value); -} -static unsafe void Test_UniformHandle_24122() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64[] _value = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.Arb.UniformHandle(_location,_count,_value); -} -static unsafe void Test_UniformHandle_24123() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64 _value = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.Arb.UniformHandle(_location,_count,ref _value); -} -static unsafe void Test_UniformHandle_24124() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64* _value = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.Arb.UniformHandle(_location,_count,_value); -} -static unsafe void Test_UniformHandle_24125() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64[] _value = default(System.UInt64[]); - OpenTK.Graphics.OpenGL.GL.Arb.UniformHandle(_location,_count,_value); -} -static unsafe void Test_UniformHandle_24126() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64 _value = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.Arb.UniformHandle(_location,_count,ref _value); -} -static unsafe void Test_UniformHandle_24127() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64* _value = default(System.UInt64*); - OpenTK.Graphics.OpenGL.GL.Arb.UniformHandle(_location,_count,_value); -} -static unsafe void Test_UniformMatrix2_24128() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.UniformMatrix2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix2_24129() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.UniformMatrix2(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix2_24130() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.UniformMatrix2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3_24131() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.UniformMatrix3(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3_24132() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.UniformMatrix3(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix3_24133() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.UniformMatrix3(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4_24134() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.UniformMatrix4(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4_24135() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.UniformMatrix4(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix4_24136() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.UniformMatrix4(_location,_count,_transpose,_value); -} -static unsafe void Test_UnmapBuffer_24137() { - OpenTK.Graphics.OpenGL.BufferTargetArb _target = default(OpenTK.Graphics.OpenGL.BufferTargetArb); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Arb.UnmapBuffer(_target); -} -static unsafe void Test_UseProgramObject_24138() { - System.Int32 _programObj = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.UseProgramObject(_programObj); -} -static unsafe void Test_UseProgramObject_24139() { - System.UInt32 _programObj = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Arb.UseProgramObject(_programObj); -} -static unsafe void Test_ValidateProgram_24140() { - System.Int32 _programObj = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.ValidateProgram(_programObj); -} -static unsafe void Test_ValidateProgram_24141() { - System.UInt32 _programObj = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Arb.ValidateProgram(_programObj); -} -static unsafe void Test_VertexAttrib1_24142() { - System.Int32 _index = default(System.Int32); - System.Double _x = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib1(_index,_x); -} -static unsafe void Test_VertexAttrib1_24143() { - System.UInt32 _index = default(System.UInt32); - System.Double _x = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib1(_index,_x); -} -static unsafe void Test_VertexAttrib1_24144() { - System.Int32 _index = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib1(_index,_v); -} -static unsafe void Test_VertexAttrib1_24145() { - System.UInt32 _index = default(System.UInt32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib1(_index,_v); -} -static unsafe void Test_VertexAttrib1_24146() { - System.Int32 _index = default(System.Int32); - System.Single _x = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib1(_index,_x); -} -static unsafe void Test_VertexAttrib1_24147() { - System.UInt32 _index = default(System.UInt32); - System.Single _x = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib1(_index,_x); -} -static unsafe void Test_VertexAttrib1_24148() { - System.Int32 _index = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib1(_index,_v); -} -static unsafe void Test_VertexAttrib1_24149() { - System.UInt32 _index = default(System.UInt32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib1(_index,_v); -} -static unsafe void Test_VertexAttrib1_24150() { - System.Int32 _index = default(System.Int32); - System.Int16 _x = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib1(_index,_x); -} -static unsafe void Test_VertexAttrib1_24151() { - System.UInt32 _index = default(System.UInt32); - System.Int16 _x = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib1(_index,_x); -} -static unsafe void Test_VertexAttrib1_24152() { - System.Int32 _index = default(System.Int32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib1(_index,_v); -} -static unsafe void Test_VertexAttrib1_24153() { - System.UInt32 _index = default(System.UInt32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib1(_index,_v); -} -static unsafe void Test_VertexAttrib2_24154() { - System.Int32 _index = default(System.Int32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib2(_index,_x,_y); -} -static unsafe void Test_VertexAttrib2_24155() { - System.UInt32 _index = default(System.UInt32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib2(_index,_x,_y); -} -static unsafe void Test_VertexAttrib2_24156() { - System.Int32 _index = default(System.Int32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_24157() { - System.Int32 _index = default(System.Int32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib2(_index,ref _v); -} -static unsafe void Test_VertexAttrib2_24158() { - System.Int32 _index = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_24159() { - System.UInt32 _index = default(System.UInt32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_24160() { - System.UInt32 _index = default(System.UInt32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib2(_index,ref _v); -} -static unsafe void Test_VertexAttrib2_24161() { - System.UInt32 _index = default(System.UInt32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_24162() { - System.Int32 _index = default(System.Int32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib2(_index,_x,_y); -} -static unsafe void Test_VertexAttrib2_24163() { - System.UInt32 _index = default(System.UInt32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib2(_index,_x,_y); -} -static unsafe void Test_VertexAttrib2_24164() { - System.Int32 _index = default(System.Int32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_24165() { - System.Int32 _index = default(System.Int32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib2(_index,ref _v); -} -static unsafe void Test_VertexAttrib2_24166() { - System.Int32 _index = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_24167() { - System.UInt32 _index = default(System.UInt32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_24168() { - System.UInt32 _index = default(System.UInt32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib2(_index,ref _v); -} -static unsafe void Test_VertexAttrib2_24169() { - System.UInt32 _index = default(System.UInt32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_24170() { - System.Int32 _index = default(System.Int32); - System.Int16 _x = default(System.Int16); - System.Int16 _y = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib2(_index,_x,_y); -} -static unsafe void Test_VertexAttrib2_24171() { - System.UInt32 _index = default(System.UInt32); - System.Int16 _x = default(System.Int16); - System.Int16 _y = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib2(_index,_x,_y); -} -static unsafe void Test_VertexAttrib2_24172() { - System.Int32 _index = default(System.Int32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_24173() { - System.Int32 _index = default(System.Int32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib2(_index,ref _v); -} -static unsafe void Test_VertexAttrib2_24174() { - System.Int32 _index = default(System.Int32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_24175() { - System.UInt32 _index = default(System.UInt32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_24176() { - System.UInt32 _index = default(System.UInt32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib2(_index,ref _v); -} -static unsafe void Test_VertexAttrib2_24177() { - System.UInt32 _index = default(System.UInt32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib3_24178() { - System.Int32 _index = default(System.Int32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttrib3_24179() { - System.UInt32 _index = default(System.UInt32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttrib3_24180() { - System.Int32 _index = default(System.Int32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_24181() { - System.Int32 _index = default(System.Int32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib3(_index,ref _v); -} -static unsafe void Test_VertexAttrib3_24182() { - System.Int32 _index = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_24183() { - System.UInt32 _index = default(System.UInt32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_24184() { - System.UInt32 _index = default(System.UInt32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib3(_index,ref _v); -} -static unsafe void Test_VertexAttrib3_24185() { - System.UInt32 _index = default(System.UInt32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_24186() { - System.Int32 _index = default(System.Int32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttrib3_24187() { - System.UInt32 _index = default(System.UInt32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttrib3_24188() { - System.Int32 _index = default(System.Int32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_24189() { - System.Int32 _index = default(System.Int32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib3(_index,ref _v); -} -static unsafe void Test_VertexAttrib3_24190() { - System.Int32 _index = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_24191() { - System.UInt32 _index = default(System.UInt32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_24192() { - System.UInt32 _index = default(System.UInt32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib3(_index,ref _v); -} -static unsafe void Test_VertexAttrib3_24193() { - System.UInt32 _index = default(System.UInt32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_24194() { - System.Int32 _index = default(System.Int32); - System.Int16 _x = default(System.Int16); - System.Int16 _y = default(System.Int16); - System.Int16 _z = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttrib3_24195() { - System.UInt32 _index = default(System.UInt32); - System.Int16 _x = default(System.Int16); - System.Int16 _y = default(System.Int16); - System.Int16 _z = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttrib3_24196() { - System.Int32 _index = default(System.Int32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_24197() { - System.Int32 _index = default(System.Int32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib3(_index,ref _v); -} -static unsafe void Test_VertexAttrib3_24198() { - System.Int32 _index = default(System.Int32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_24199() { - System.UInt32 _index = default(System.UInt32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_24200() { - System.UInt32 _index = default(System.UInt32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib3(_index,ref _v); -} -static unsafe void Test_VertexAttrib3_24201() { - System.UInt32 _index = default(System.UInt32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib4_24202() { - System.UInt32 _index = default(System.UInt32); - System.SByte[] _v = default(System.SByte[]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_24203() { - System.UInt32 _index = default(System.UInt32); - System.SByte _v = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_24204() { - System.UInt32 _index = default(System.UInt32); - System.SByte* _v = default(System.SByte*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_24205() { - System.Int32 _index = default(System.Int32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - System.Double _w = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttrib4_24206() { - System.UInt32 _index = default(System.UInt32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - System.Double _w = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttrib4_24207() { - System.Int32 _index = default(System.Int32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_24208() { - System.Int32 _index = default(System.Int32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_24209() { - System.Int32 _index = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_24210() { - System.UInt32 _index = default(System.UInt32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_24211() { - System.UInt32 _index = default(System.UInt32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_24212() { - System.UInt32 _index = default(System.UInt32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_24213() { - System.Int32 _index = default(System.Int32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - System.Single _w = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttrib4_24214() { - System.UInt32 _index = default(System.UInt32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - System.Single _w = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttrib4_24215() { - System.Int32 _index = default(System.Int32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_24216() { - System.Int32 _index = default(System.Int32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_24217() { - System.Int32 _index = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_24218() { - System.UInt32 _index = default(System.UInt32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_24219() { - System.UInt32 _index = default(System.UInt32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_24220() { - System.UInt32 _index = default(System.UInt32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_24221() { - System.Int32 _index = default(System.Int32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_24222() { - System.Int32 _index = default(System.Int32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_24223() { - System.Int32 _index = default(System.Int32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_24224() { - System.UInt32 _index = default(System.UInt32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_24225() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_24226() { - System.UInt32 _index = default(System.UInt32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4N_24227() { - System.UInt32 _index = default(System.UInt32); - System.SByte[] _v = default(System.SByte[]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_24228() { - System.UInt32 _index = default(System.UInt32); - System.SByte _v = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4N(_index,ref _v); -} -static unsafe void Test_VertexAttrib4N_24229() { - System.UInt32 _index = default(System.UInt32); - System.SByte* _v = default(System.SByte*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_24230() { - System.Int32 _index = default(System.Int32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_24231() { - System.Int32 _index = default(System.Int32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4N(_index,ref _v); -} -static unsafe void Test_VertexAttrib4N_24232() { - System.Int32 _index = default(System.Int32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_24233() { - System.UInt32 _index = default(System.UInt32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_24234() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4N(_index,ref _v); -} -static unsafe void Test_VertexAttrib4N_24235() { - System.UInt32 _index = default(System.UInt32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_24236() { - System.Int32 _index = default(System.Int32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_24237() { - System.Int32 _index = default(System.Int32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4N(_index,ref _v); -} -static unsafe void Test_VertexAttrib4N_24238() { - System.Int32 _index = default(System.Int32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_24239() { - System.UInt32 _index = default(System.UInt32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_24240() { - System.UInt32 _index = default(System.UInt32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4N(_index,ref _v); -} -static unsafe void Test_VertexAttrib4N_24241() { - System.UInt32 _index = default(System.UInt32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_24242() { - System.Int32 _index = default(System.Int32); - System.Byte _x = default(System.Byte); - System.Byte _y = default(System.Byte); - System.Byte _z = default(System.Byte); - System.Byte _w = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4N(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttrib4N_24243() { - System.UInt32 _index = default(System.UInt32); - System.Byte _x = default(System.Byte); - System.Byte _y = default(System.Byte); - System.Byte _z = default(System.Byte); - System.Byte _w = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4N(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttrib4N_24244() { - System.Int32 _index = default(System.Int32); - System.Byte[] _v = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_24245() { - System.Int32 _index = default(System.Int32); - System.Byte _v = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4N(_index,ref _v); -} -static unsafe void Test_VertexAttrib4N_24246() { - System.Int32 _index = default(System.Int32); - System.Byte* _v = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_24247() { - System.UInt32 _index = default(System.UInt32); - System.Byte[] _v = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_24248() { - System.UInt32 _index = default(System.UInt32); - System.Byte _v = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4N(_index,ref _v); -} -static unsafe void Test_VertexAttrib4N_24249() { - System.UInt32 _index = default(System.UInt32); - System.Byte* _v = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_24250() { - System.UInt32 _index = default(System.UInt32); - System.UInt32[] _v = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_24251() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _v = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4N(_index,ref _v); -} -static unsafe void Test_VertexAttrib4N_24252() { - System.UInt32 _index = default(System.UInt32); - System.UInt32* _v = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_24253() { - System.UInt32 _index = default(System.UInt32); - System.UInt16[] _v = default(System.UInt16[]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_24254() { - System.UInt32 _index = default(System.UInt32); - System.UInt16 _v = default(System.UInt16); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4N(_index,ref _v); -} -static unsafe void Test_VertexAttrib4N_24255() { - System.UInt32 _index = default(System.UInt32); - System.UInt16* _v = default(System.UInt16*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4_24256() { - System.Int32 _index = default(System.Int32); - System.Int16 _x = default(System.Int16); - System.Int16 _y = default(System.Int16); - System.Int16 _z = default(System.Int16); - System.Int16 _w = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttrib4_24257() { - System.UInt32 _index = default(System.UInt32); - System.Int16 _x = default(System.Int16); - System.Int16 _y = default(System.Int16); - System.Int16 _z = default(System.Int16); - System.Int16 _w = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttrib4_24258() { - System.Int32 _index = default(System.Int32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_24259() { - System.Int32 _index = default(System.Int32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_24260() { - System.Int32 _index = default(System.Int32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_24261() { - System.UInt32 _index = default(System.UInt32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_24262() { - System.UInt32 _index = default(System.UInt32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_24263() { - System.UInt32 _index = default(System.UInt32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_24264() { - System.Int32 _index = default(System.Int32); - System.Byte[] _v = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_24265() { - System.Int32 _index = default(System.Int32); - System.Byte _v = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_24266() { - System.Int32 _index = default(System.Int32); - System.Byte* _v = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_24267() { - System.UInt32 _index = default(System.UInt32); - System.Byte[] _v = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_24268() { - System.UInt32 _index = default(System.UInt32); - System.Byte _v = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_24269() { - System.UInt32 _index = default(System.UInt32); - System.Byte* _v = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_24270() { - System.UInt32 _index = default(System.UInt32); - System.UInt32[] _v = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_24271() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _v = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_24272() { - System.UInt32 _index = default(System.UInt32); - System.UInt32* _v = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_24273() { - System.UInt32 _index = default(System.UInt32); - System.UInt16[] _v = default(System.UInt16[]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_24274() { - System.UInt32 _index = default(System.UInt32); - System.UInt16 _v = default(System.UInt16); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_24275() { - System.UInt32 _index = default(System.UInt32); - System.UInt16* _v = default(System.UInt16*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttribDivisor_24276() { - System.Int32 _index = default(System.Int32); - System.Int32 _divisor = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttribDivisor(_index,_divisor); -} -static unsafe void Test_VertexAttribDivisor_24277() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _divisor = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttribDivisor(_index,_divisor); -} -static unsafe void Test_VertexAttribL1_24278() { - System.Int32 _index = default(System.Int32); - System.Int64 _x = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttribL1(_index,_x); -} -static unsafe void Test_VertexAttribL1_24279() { - System.UInt32 _index = default(System.UInt32); - System.UInt64 _x = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttribL1(_index,_x); -} -static unsafe void Test_VertexAttribL1_24280() { - System.Int32 _index = default(System.Int32); - System.Int64[] _v = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttribL1(_index,_v); -} -static unsafe void Test_VertexAttribL1_24281() { - System.Int32 _index = default(System.Int32); - System.Int64* _v = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttribL1(_index,_v); -} -static unsafe void Test_VertexAttribL1_24282() { - System.UInt32 _index = default(System.UInt32); - System.UInt64[] _v = default(System.UInt64[]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttribL1(_index,_v); -} -static unsafe void Test_VertexAttribL1_24283() { - System.UInt32 _index = default(System.UInt32); - System.UInt64* _v = default(System.UInt64*); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttribL1(_index,_v); -} -static unsafe void Test_VertexAttribPointer_24284() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb _type = default(OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_24285() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb _type = default(OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_24286() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb _type = default(OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_24287() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb _type = default(OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_24288() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb _type = default(OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttribPointer(_index,_size,_type,_normalized,_stride,ref _pointer); -} -static unsafe void Test_VertexAttribPointer_24289() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb _type = default(OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_24290() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb _type = default(OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_24291() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb _type = default(OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_24292() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb _type = default(OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_24293() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb _type = default(OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.Arb.VertexAttribPointer(_index,_size,_type,_normalized,_stride,ref _pointer); -} -static unsafe void Test_VertexBlend_24294() { - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.VertexBlend(_count); -} -static unsafe void Test_Weight_24295() { - System.Int32 _size = default(System.Int32); - System.SByte[] _weights = default(System.SByte[]); - OpenTK.Graphics.OpenGL.GL.Arb.Weight(_size,_weights); -} -static unsafe void Test_Weight_24296() { - System.Int32 _size = default(System.Int32); - System.SByte _weights = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.Arb.Weight(_size,ref _weights); -} -static unsafe void Test_Weight_24297() { - System.Int32 _size = default(System.Int32); - System.SByte* _weights = default(System.SByte*); - OpenTK.Graphics.OpenGL.GL.Arb.Weight(_size,_weights); -} -static unsafe void Test_Weight_24298() { - System.Int32 _size = default(System.Int32); - System.Double[] _weights = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Arb.Weight(_size,_weights); -} -static unsafe void Test_Weight_24299() { - System.Int32 _size = default(System.Int32); - System.Double _weights = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.Weight(_size,ref _weights); -} -static unsafe void Test_Weight_24300() { - System.Int32 _size = default(System.Int32); - System.Double* _weights = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Arb.Weight(_size,_weights); -} -static unsafe void Test_Weight_24301() { - System.Int32 _size = default(System.Int32); - System.Single[] _weights = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.Weight(_size,_weights); -} -static unsafe void Test_Weight_24302() { - System.Int32 _size = default(System.Int32); - System.Single _weights = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.Weight(_size,ref _weights); -} -static unsafe void Test_Weight_24303() { - System.Int32 _size = default(System.Int32); - System.Single* _weights = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.Weight(_size,_weights); -} -static unsafe void Test_Weight_24304() { - System.Int32 _size = default(System.Int32); - System.Int32[] _weights = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.Weight(_size,_weights); -} -static unsafe void Test_Weight_24305() { - System.Int32 _size = default(System.Int32); - System.Int32 _weights = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.Weight(_size,ref _weights); -} -static unsafe void Test_Weight_24306() { - System.Int32 _size = default(System.Int32); - System.Int32* _weights = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.Weight(_size,_weights); -} -static unsafe void Test_WeightPointer_24307() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbVertexBlend _type = default(OpenTK.Graphics.OpenGL.ArbVertexBlend); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Arb.WeightPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_WeightPointer_24308() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbVertexBlend _type = default(OpenTK.Graphics.OpenGL.ArbVertexBlend); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.Arb.WeightPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_WeightPointer_24309() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbVertexBlend _type = default(OpenTK.Graphics.OpenGL.ArbVertexBlend); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Arb.WeightPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_WeightPointer_24310() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbVertexBlend _type = default(OpenTK.Graphics.OpenGL.ArbVertexBlend); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Arb.WeightPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_WeightPointer_24311() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbVertexBlend _type = default(OpenTK.Graphics.OpenGL.ArbVertexBlend); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.Arb.WeightPointer(_size,_type,_stride,ref _pointer); -} -static unsafe void Test_Weight_24312() { - System.Int32 _size = default(System.Int32); - System.Int16[] _weights = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.Arb.Weight(_size,_weights); -} -static unsafe void Test_Weight_24313() { - System.Int32 _size = default(System.Int32); - System.Int16 _weights = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Arb.Weight(_size,ref _weights); -} -static unsafe void Test_Weight_24314() { - System.Int32 _size = default(System.Int32); - System.Int16* _weights = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Arb.Weight(_size,_weights); -} -static unsafe void Test_Weight_24315() { - System.Int32 _size = default(System.Int32); - System.Byte[] _weights = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.Arb.Weight(_size,_weights); -} -static unsafe void Test_Weight_24316() { - System.Int32 _size = default(System.Int32); - System.Byte _weights = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Arb.Weight(_size,ref _weights); -} -static unsafe void Test_Weight_24317() { - System.Int32 _size = default(System.Int32); - System.Byte* _weights = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.Arb.Weight(_size,_weights); -} -static unsafe void Test_Weight_24318() { - System.Int32 _size = default(System.Int32); - System.UInt32[] _weights = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Arb.Weight(_size,_weights); -} -static unsafe void Test_Weight_24319() { - System.Int32 _size = default(System.Int32); - System.UInt32 _weights = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Arb.Weight(_size,ref _weights); -} -static unsafe void Test_Weight_24320() { - System.Int32 _size = default(System.Int32); - System.UInt32* _weights = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Arb.Weight(_size,_weights); -} -static unsafe void Test_Weight_24321() { - System.Int32 _size = default(System.Int32); - System.UInt16[] _weights = default(System.UInt16[]); - OpenTK.Graphics.OpenGL.GL.Arb.Weight(_size,_weights); -} -static unsafe void Test_Weight_24322() { - System.Int32 _size = default(System.Int32); - System.UInt16 _weights = default(System.UInt16); - OpenTK.Graphics.OpenGL.GL.Arb.Weight(_size,ref _weights); -} -static unsafe void Test_Weight_24323() { - System.Int32 _size = default(System.Int32); - System.UInt16* _weights = default(System.UInt16*); - OpenTK.Graphics.OpenGL.GL.Arb.Weight(_size,_weights); -} -static unsafe void Test_WindowPos2_24324() { - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.WindowPos2(_x,_y); -} -static unsafe void Test_WindowPos2_24325() { - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Arb.WindowPos2(_v); -} -static unsafe void Test_WindowPos2_24326() { - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.WindowPos2(ref _v); -} -static unsafe void Test_WindowPos2_24327() { - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Arb.WindowPos2(_v); -} -static unsafe void Test_WindowPos2_24328() { - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.WindowPos2(_x,_y); -} -static unsafe void Test_WindowPos2_24329() { - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.WindowPos2(_v); -} -static unsafe void Test_WindowPos2_24330() { - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.WindowPos2(ref _v); -} -static unsafe void Test_WindowPos2_24331() { - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.WindowPos2(_v); -} -static unsafe void Test_WindowPos2_24332() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.WindowPos2(_x,_y); -} -static unsafe void Test_WindowPos2_24333() { - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.WindowPos2(_v); -} -static unsafe void Test_WindowPos2_24334() { - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.WindowPos2(ref _v); -} -static unsafe void Test_WindowPos2_24335() { - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.WindowPos2(_v); -} -static unsafe void Test_WindowPos2_24336() { - System.Int16 _x = default(System.Int16); - System.Int16 _y = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Arb.WindowPos2(_x,_y); -} -static unsafe void Test_WindowPos2_24337() { - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.Arb.WindowPos2(_v); -} -static unsafe void Test_WindowPos2_24338() { - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Arb.WindowPos2(ref _v); -} -static unsafe void Test_WindowPos2_24339() { - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Arb.WindowPos2(_v); -} -static unsafe void Test_WindowPos3_24340() { - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.WindowPos3(_x,_y,_z); -} -static unsafe void Test_WindowPos3_24341() { - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Arb.WindowPos3(_v); -} -static unsafe void Test_WindowPos3_24342() { - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Arb.WindowPos3(ref _v); -} -static unsafe void Test_WindowPos3_24343() { - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Arb.WindowPos3(_v); -} -static unsafe void Test_WindowPos3_24344() { - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.WindowPos3(_x,_y,_z); -} -static unsafe void Test_WindowPos3_24345() { - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Arb.WindowPos3(_v); -} -static unsafe void Test_WindowPos3_24346() { - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Arb.WindowPos3(ref _v); -} -static unsafe void Test_WindowPos3_24347() { - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Arb.WindowPos3(_v); -} -static unsafe void Test_WindowPos3_24348() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.WindowPos3(_x,_y,_z); -} -static unsafe void Test_WindowPos3_24349() { - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.WindowPos3(_v); -} -static unsafe void Test_WindowPos3_24350() { - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.WindowPos3(ref _v); -} -static unsafe void Test_WindowPos3_24351() { - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Arb.WindowPos3(_v); -} -static unsafe void Test_WindowPos3_24352() { - System.Int16 _x = default(System.Int16); - System.Int16 _y = default(System.Int16); - System.Int16 _z = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Arb.WindowPos3(_x,_y,_z); -} -static unsafe void Test_WindowPos3_24353() { - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.Arb.WindowPos3(_v); -} -static unsafe void Test_WindowPos3_24354() { - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Arb.WindowPos3(ref _v); -} -static unsafe void Test_WindowPos3_24355() { - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Arb.WindowPos3(_v); -} -static unsafe void Test_ProgramParameter_24356() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ArbGeometryShader4 _pname = default(OpenTK.Graphics.OpenGL.ArbGeometryShader4); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramParameter(_program,_pname,_value); -} -static unsafe void Test_ProgramParameter_24357() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ArbGeometryShader4 _pname = default(OpenTK.Graphics.OpenGL.ArbGeometryShader4); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Arb.ProgramParameter(_program,_pname,_value); -} -static unsafe void Test_GetAttachedObjects_24358() { - System.Int32 _containerObj = default(System.Int32); - System.Int32 _maxCount = default(System.Int32); - System.Int32* _count = default(System.Int32*); - System.Int32[] _obj = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetAttachedObjects(_containerObj,_maxCount,_count,_obj); -} -static unsafe void Test_GetAttachedObjects_24359() { - System.UInt32 _containerObj = default(System.UInt32); - System.Int32 _maxCount = default(System.Int32); - System.Int32* _count = default(System.Int32*); - System.UInt32[] _obj = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Arb.GetAttachedObjects(_containerObj,_maxCount,_count,_obj); -} -static unsafe void Test_AlphaFragmentOp1_24360() { - OpenTK.Graphics.OpenGL.AtiFragmentShader _op = default(OpenTK.Graphics.OpenGL.AtiFragmentShader); - System.Int32 _dst = default(System.Int32); - System.Int32 _dstMod = default(System.Int32); - System.Int32 _arg1 = default(System.Int32); - System.Int32 _arg1Rep = default(System.Int32); - System.Int32 _arg1Mod = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ati.AlphaFragmentOp1(_op,_dst,_dstMod,_arg1,_arg1Rep,_arg1Mod); -} -static unsafe void Test_AlphaFragmentOp1_24361() { - OpenTK.Graphics.OpenGL.AtiFragmentShader _op = default(OpenTK.Graphics.OpenGL.AtiFragmentShader); - System.UInt32 _dst = default(System.UInt32); - System.UInt32 _dstMod = default(System.UInt32); - System.UInt32 _arg1 = default(System.UInt32); - System.UInt32 _arg1Rep = default(System.UInt32); - System.UInt32 _arg1Mod = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ati.AlphaFragmentOp1(_op,_dst,_dstMod,_arg1,_arg1Rep,_arg1Mod); -} -static unsafe void Test_AlphaFragmentOp2_24362() { - OpenTK.Graphics.OpenGL.AtiFragmentShader _op = default(OpenTK.Graphics.OpenGL.AtiFragmentShader); - System.Int32 _dst = default(System.Int32); - System.Int32 _dstMod = default(System.Int32); - System.Int32 _arg1 = default(System.Int32); - System.Int32 _arg1Rep = default(System.Int32); - System.Int32 _arg1Mod = default(System.Int32); - System.Int32 _arg2 = default(System.Int32); - System.Int32 _arg2Rep = default(System.Int32); - System.Int32 _arg2Mod = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ati.AlphaFragmentOp2(_op,_dst,_dstMod,_arg1,_arg1Rep,_arg1Mod,_arg2,_arg2Rep,_arg2Mod); -} -static unsafe void Test_AlphaFragmentOp2_24363() { - OpenTK.Graphics.OpenGL.AtiFragmentShader _op = default(OpenTK.Graphics.OpenGL.AtiFragmentShader); - System.UInt32 _dst = default(System.UInt32); - System.UInt32 _dstMod = default(System.UInt32); - System.UInt32 _arg1 = default(System.UInt32); - System.UInt32 _arg1Rep = default(System.UInt32); - System.UInt32 _arg1Mod = default(System.UInt32); - System.UInt32 _arg2 = default(System.UInt32); - System.UInt32 _arg2Rep = default(System.UInt32); - System.UInt32 _arg2Mod = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ati.AlphaFragmentOp2(_op,_dst,_dstMod,_arg1,_arg1Rep,_arg1Mod,_arg2,_arg2Rep,_arg2Mod); -} -static unsafe void Test_AlphaFragmentOp3_24364() { - OpenTK.Graphics.OpenGL.AtiFragmentShader _op = default(OpenTK.Graphics.OpenGL.AtiFragmentShader); - System.Int32 _dst = default(System.Int32); - System.Int32 _dstMod = default(System.Int32); - System.Int32 _arg1 = default(System.Int32); - System.Int32 _arg1Rep = default(System.Int32); - System.Int32 _arg1Mod = default(System.Int32); - System.Int32 _arg2 = default(System.Int32); - System.Int32 _arg2Rep = default(System.Int32); - System.Int32 _arg2Mod = default(System.Int32); - System.Int32 _arg3 = default(System.Int32); - System.Int32 _arg3Rep = default(System.Int32); - System.Int32 _arg3Mod = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ati.AlphaFragmentOp3(_op,_dst,_dstMod,_arg1,_arg1Rep,_arg1Mod,_arg2,_arg2Rep,_arg2Mod,_arg3,_arg3Rep,_arg3Mod); -} -static unsafe void Test_AlphaFragmentOp3_24365() { - OpenTK.Graphics.OpenGL.AtiFragmentShader _op = default(OpenTK.Graphics.OpenGL.AtiFragmentShader); - System.UInt32 _dst = default(System.UInt32); - System.UInt32 _dstMod = default(System.UInt32); - System.UInt32 _arg1 = default(System.UInt32); - System.UInt32 _arg1Rep = default(System.UInt32); - System.UInt32 _arg1Mod = default(System.UInt32); - System.UInt32 _arg2 = default(System.UInt32); - System.UInt32 _arg2Rep = default(System.UInt32); - System.UInt32 _arg2Mod = default(System.UInt32); - System.UInt32 _arg3 = default(System.UInt32); - System.UInt32 _arg3Rep = default(System.UInt32); - System.UInt32 _arg3Mod = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ati.AlphaFragmentOp3(_op,_dst,_dstMod,_arg1,_arg1Rep,_arg1Mod,_arg2,_arg2Rep,_arg2Mod,_arg3,_arg3Rep,_arg3Mod); -} -static unsafe void Test_ArrayObject_24366() { - OpenTK.Graphics.OpenGL.EnableCap _array = default(OpenTK.Graphics.OpenGL.EnableCap); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.AtiVertexArrayObject _type = default(OpenTK.Graphics.OpenGL.AtiVertexArrayObject); - System.Int32 _stride = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - System.Int32 _offset = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ati.ArrayObject(_array,_size,_type,_stride,_buffer,_offset); -} -static unsafe void Test_ArrayObject_24367() { - OpenTK.Graphics.OpenGL.EnableCap _array = default(OpenTK.Graphics.OpenGL.EnableCap); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.AtiVertexArrayObject _type = default(OpenTK.Graphics.OpenGL.AtiVertexArrayObject); - System.Int32 _stride = default(System.Int32); - System.UInt32 _buffer = default(System.UInt32); - System.UInt32 _offset = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ati.ArrayObject(_array,_size,_type,_stride,_buffer,_offset); -} -static unsafe void Test_BeginFragmentShader_24368() { - OpenTK.Graphics.OpenGL.GL.Ati.BeginFragmentShader(); -} -static unsafe void Test_BindFragmentShader_24369() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ati.BindFragmentShader(_id); -} -static unsafe void Test_BindFragmentShader_24370() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ati.BindFragmentShader(_id); -} -static unsafe void Test_ClientActiveVertexStream_24371() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - OpenTK.Graphics.OpenGL.GL.Ati.ClientActiveVertexStream(_stream); -} -static unsafe void Test_ColorFragmentOp1_24372() { - OpenTK.Graphics.OpenGL.AtiFragmentShader _op = default(OpenTK.Graphics.OpenGL.AtiFragmentShader); - System.Int32 _dst = default(System.Int32); - System.Int32 _dstMask = default(System.Int32); - System.Int32 _dstMod = default(System.Int32); - System.Int32 _arg1 = default(System.Int32); - System.Int32 _arg1Rep = default(System.Int32); - System.Int32 _arg1Mod = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ati.ColorFragmentOp1(_op,_dst,_dstMask,_dstMod,_arg1,_arg1Rep,_arg1Mod); -} -static unsafe void Test_ColorFragmentOp1_24373() { - OpenTK.Graphics.OpenGL.AtiFragmentShader _op = default(OpenTK.Graphics.OpenGL.AtiFragmentShader); - System.UInt32 _dst = default(System.UInt32); - System.UInt32 _dstMask = default(System.UInt32); - System.UInt32 _dstMod = default(System.UInt32); - System.UInt32 _arg1 = default(System.UInt32); - System.UInt32 _arg1Rep = default(System.UInt32); - System.UInt32 _arg1Mod = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ati.ColorFragmentOp1(_op,_dst,_dstMask,_dstMod,_arg1,_arg1Rep,_arg1Mod); -} -static unsafe void Test_ColorFragmentOp2_24374() { - OpenTK.Graphics.OpenGL.AtiFragmentShader _op = default(OpenTK.Graphics.OpenGL.AtiFragmentShader); - System.Int32 _dst = default(System.Int32); - System.Int32 _dstMask = default(System.Int32); - System.Int32 _dstMod = default(System.Int32); - System.Int32 _arg1 = default(System.Int32); - System.Int32 _arg1Rep = default(System.Int32); - System.Int32 _arg1Mod = default(System.Int32); - System.Int32 _arg2 = default(System.Int32); - System.Int32 _arg2Rep = default(System.Int32); - System.Int32 _arg2Mod = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ati.ColorFragmentOp2(_op,_dst,_dstMask,_dstMod,_arg1,_arg1Rep,_arg1Mod,_arg2,_arg2Rep,_arg2Mod); -} -static unsafe void Test_ColorFragmentOp2_24375() { - OpenTK.Graphics.OpenGL.AtiFragmentShader _op = default(OpenTK.Graphics.OpenGL.AtiFragmentShader); - System.UInt32 _dst = default(System.UInt32); - System.UInt32 _dstMask = default(System.UInt32); - System.UInt32 _dstMod = default(System.UInt32); - System.UInt32 _arg1 = default(System.UInt32); - System.UInt32 _arg1Rep = default(System.UInt32); - System.UInt32 _arg1Mod = default(System.UInt32); - System.UInt32 _arg2 = default(System.UInt32); - System.UInt32 _arg2Rep = default(System.UInt32); - System.UInt32 _arg2Mod = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ati.ColorFragmentOp2(_op,_dst,_dstMask,_dstMod,_arg1,_arg1Rep,_arg1Mod,_arg2,_arg2Rep,_arg2Mod); -} -static unsafe void Test_ColorFragmentOp3_24376() { - OpenTK.Graphics.OpenGL.AtiFragmentShader _op = default(OpenTK.Graphics.OpenGL.AtiFragmentShader); - System.Int32 _dst = default(System.Int32); - System.Int32 _dstMask = default(System.Int32); - System.Int32 _dstMod = default(System.Int32); - System.Int32 _arg1 = default(System.Int32); - System.Int32 _arg1Rep = default(System.Int32); - System.Int32 _arg1Mod = default(System.Int32); - System.Int32 _arg2 = default(System.Int32); - System.Int32 _arg2Rep = default(System.Int32); - System.Int32 _arg2Mod = default(System.Int32); - System.Int32 _arg3 = default(System.Int32); - System.Int32 _arg3Rep = default(System.Int32); - System.Int32 _arg3Mod = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ati.ColorFragmentOp3(_op,_dst,_dstMask,_dstMod,_arg1,_arg1Rep,_arg1Mod,_arg2,_arg2Rep,_arg2Mod,_arg3,_arg3Rep,_arg3Mod); -} -static unsafe void Test_ColorFragmentOp3_24377() { - OpenTK.Graphics.OpenGL.AtiFragmentShader _op = default(OpenTK.Graphics.OpenGL.AtiFragmentShader); - System.UInt32 _dst = default(System.UInt32); - System.UInt32 _dstMask = default(System.UInt32); - System.UInt32 _dstMod = default(System.UInt32); - System.UInt32 _arg1 = default(System.UInt32); - System.UInt32 _arg1Rep = default(System.UInt32); - System.UInt32 _arg1Mod = default(System.UInt32); - System.UInt32 _arg2 = default(System.UInt32); - System.UInt32 _arg2Rep = default(System.UInt32); - System.UInt32 _arg2Mod = default(System.UInt32); - System.UInt32 _arg3 = default(System.UInt32); - System.UInt32 _arg3Rep = default(System.UInt32); - System.UInt32 _arg3Mod = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ati.ColorFragmentOp3(_op,_dst,_dstMask,_dstMod,_arg1,_arg1Rep,_arg1Mod,_arg2,_arg2Rep,_arg2Mod,_arg3,_arg3Rep,_arg3Mod); -} -static unsafe void Test_DeleteFragmentShader_24378() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ati.DeleteFragmentShader(_id); -} -static unsafe void Test_DeleteFragmentShader_24379() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ati.DeleteFragmentShader(_id); -} -static unsafe void Test_DrawBuffers_24380() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.OpenGL.AtiDrawBuffers[] _bufs = default(OpenTK.Graphics.OpenGL.AtiDrawBuffers[]); - OpenTK.Graphics.OpenGL.GL.Ati.DrawBuffers(_n,_bufs); -} -static unsafe void Test_DrawBuffers_24381() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.OpenGL.AtiDrawBuffers _bufs = default(OpenTK.Graphics.OpenGL.AtiDrawBuffers); - OpenTK.Graphics.OpenGL.GL.Ati.DrawBuffers(_n,ref _bufs); -} -static unsafe void Test_DrawBuffers_24382() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.OpenGL.AtiDrawBuffers* _bufs = default(OpenTK.Graphics.OpenGL.AtiDrawBuffers*); - OpenTK.Graphics.OpenGL.GL.Ati.DrawBuffers(_n,_bufs); -} -static unsafe void Test_DrawElementArray_24383() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ati.DrawElementArray(_mode,_count); -} -static unsafe void Test_DrawElementArray_24384() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ati.DrawElementArray(_mode,_count); -} -static unsafe void Test_DrawRangeElementArray_24385() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ati.DrawRangeElementArray(_mode,_start,_end,_count); -} -static unsafe void Test_DrawRangeElementArray_24386() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ati.DrawRangeElementArray(_mode,_start,_end,_count); -} -static unsafe void Test_DrawRangeElementArray_24387() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ati.DrawRangeElementArray(_mode,_start,_end,_count); -} -static unsafe void Test_DrawRangeElementArray_24388() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ati.DrawRangeElementArray(_mode,_start,_end,_count); -} -static unsafe void Test_ElementPointer_24389() { - OpenTK.Graphics.OpenGL.AtiElementArray _type = default(OpenTK.Graphics.OpenGL.AtiElementArray); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ati.ElementPointer(_type,_pointer); -} -static unsafe void Test_ElementPointer_24390() { - OpenTK.Graphics.OpenGL.AtiElementArray _type = default(OpenTK.Graphics.OpenGL.AtiElementArray); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ati.ElementPointer(_type,_pointer); -} -static unsafe void Test_ElementPointer_24391() { - OpenTK.Graphics.OpenGL.AtiElementArray _type = default(OpenTK.Graphics.OpenGL.AtiElementArray); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ati.ElementPointer(_type,_pointer); -} -static unsafe void Test_ElementPointer_24392() { - OpenTK.Graphics.OpenGL.AtiElementArray _type = default(OpenTK.Graphics.OpenGL.AtiElementArray); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ati.ElementPointer(_type,_pointer); -} -static unsafe void Test_ElementPointer_24393() { - OpenTK.Graphics.OpenGL.AtiElementArray _type = default(OpenTK.Graphics.OpenGL.AtiElementArray); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.Ati.ElementPointer(_type,ref _pointer); -} -static unsafe void Test_EndFragmentShader_24394() { - OpenTK.Graphics.OpenGL.GL.Ati.EndFragmentShader(); -} -static unsafe void Test_FreeObjectBuffer_24395() { - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ati.FreeObjectBuffer(_buffer); -} -static unsafe void Test_FreeObjectBuffer_24396() { - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ati.FreeObjectBuffer(_buffer); -} -static unsafe void Test_GenFragmentShaders_24397() { - System.Int32 _range = default(System.Int32); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Ati.GenFragmentShaders(_range); -} -static unsafe void Test_GenFragmentShaders_24398() { - System.UInt32 _range = default(System.UInt32); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Ati.GenFragmentShaders(_range); -} -static unsafe void Test_GetArrayObject_24399() { - OpenTK.Graphics.OpenGL.EnableCap _array = default(OpenTK.Graphics.OpenGL.EnableCap); - OpenTK.Graphics.OpenGL.AtiVertexArrayObject _pname = default(OpenTK.Graphics.OpenGL.AtiVertexArrayObject); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ati.GetArrayObject(_array,_pname,out _params); -} -static unsafe void Test_GetArrayObject_24400() { - OpenTK.Graphics.OpenGL.EnableCap _array = default(OpenTK.Graphics.OpenGL.EnableCap); - OpenTK.Graphics.OpenGL.AtiVertexArrayObject _pname = default(OpenTK.Graphics.OpenGL.AtiVertexArrayObject); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ati.GetArrayObject(_array,_pname,_params); -} -static unsafe void Test_GetArrayObject_24401() { - OpenTK.Graphics.OpenGL.EnableCap _array = default(OpenTK.Graphics.OpenGL.EnableCap); - OpenTK.Graphics.OpenGL.AtiVertexArrayObject _pname = default(OpenTK.Graphics.OpenGL.AtiVertexArrayObject); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ati.GetArrayObject(_array,_pname,out _params); -} -static unsafe void Test_GetArrayObject_24402() { - OpenTK.Graphics.OpenGL.EnableCap _array = default(OpenTK.Graphics.OpenGL.EnableCap); - OpenTK.Graphics.OpenGL.AtiVertexArrayObject _pname = default(OpenTK.Graphics.OpenGL.AtiVertexArrayObject); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ati.GetArrayObject(_array,_pname,_params); -} -static unsafe void Test_GetObjectBuffer_24403() { - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.AtiVertexArrayObject _pname = default(OpenTK.Graphics.OpenGL.AtiVertexArrayObject); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ati.GetObjectBuffer(_buffer,_pname,out _params); -} -static unsafe void Test_GetObjectBuffer_24404() { - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.AtiVertexArrayObject _pname = default(OpenTK.Graphics.OpenGL.AtiVertexArrayObject); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ati.GetObjectBuffer(_buffer,_pname,_params); -} -static unsafe void Test_GetObjectBuffer_24405() { - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.AtiVertexArrayObject _pname = default(OpenTK.Graphics.OpenGL.AtiVertexArrayObject); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ati.GetObjectBuffer(_buffer,_pname,out _params); -} -static unsafe void Test_GetObjectBuffer_24406() { - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.AtiVertexArrayObject _pname = default(OpenTK.Graphics.OpenGL.AtiVertexArrayObject); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ati.GetObjectBuffer(_buffer,_pname,_params); -} -static unsafe void Test_GetObjectBuffer_24407() { - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.AtiVertexArrayObject _pname = default(OpenTK.Graphics.OpenGL.AtiVertexArrayObject); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ati.GetObjectBuffer(_buffer,_pname,out _params); -} -static unsafe void Test_GetObjectBuffer_24408() { - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.AtiVertexArrayObject _pname = default(OpenTK.Graphics.OpenGL.AtiVertexArrayObject); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ati.GetObjectBuffer(_buffer,_pname,_params); -} -static unsafe void Test_GetObjectBuffer_24409() { - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.AtiVertexArrayObject _pname = default(OpenTK.Graphics.OpenGL.AtiVertexArrayObject); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ati.GetObjectBuffer(_buffer,_pname,out _params); -} -static unsafe void Test_GetObjectBuffer_24410() { - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.AtiVertexArrayObject _pname = default(OpenTK.Graphics.OpenGL.AtiVertexArrayObject); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ati.GetObjectBuffer(_buffer,_pname,_params); -} -static unsafe void Test_GetTexBumpParameter_24411() { - OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap _pname = default(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap); - System.Single r = OpenTK.Graphics.OpenGL.GL.Ati.GetTexBumpParameter(_pname); -} -static unsafe void Test_GetTexBumpParameter_24412() { - OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap _pname = default(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap); - System.Single[] _param = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ati.GetTexBumpParameter(_pname,_param); -} -static unsafe void Test_GetTexBumpParameter_24413() { - OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap _pname = default(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ati.GetTexBumpParameter(_pname,out _param); -} -static unsafe void Test_GetTexBumpParameter_24414() { - OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap _pname = default(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap); - System.Single* _param = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ati.GetTexBumpParameter(_pname,_param); -} -static unsafe void Test_GetTexBumpParameter_24415() { - OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap _pname = default(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap); - System.Int32[] _param = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ati.GetTexBumpParameter(_pname,_param); -} -static unsafe void Test_GetTexBumpParameter_24416() { - OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap _pname = default(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ati.GetTexBumpParameter(_pname,out _param); -} -static unsafe void Test_GetTexBumpParameter_24417() { - OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap _pname = default(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap); - System.Int32* _param = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ati.GetTexBumpParameter(_pname,_param); -} -static unsafe void Test_GetVariantArrayObject_24418() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.AtiVertexArrayObject _pname = default(OpenTK.Graphics.OpenGL.AtiVertexArrayObject); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ati.GetVariantArrayObject(_id,_pname,out _params); -} -static unsafe void Test_GetVariantArrayObject_24419() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.AtiVertexArrayObject _pname = default(OpenTK.Graphics.OpenGL.AtiVertexArrayObject); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ati.GetVariantArrayObject(_id,_pname,_params); -} -static unsafe void Test_GetVariantArrayObject_24420() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.AtiVertexArrayObject _pname = default(OpenTK.Graphics.OpenGL.AtiVertexArrayObject); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ati.GetVariantArrayObject(_id,_pname,out _params); -} -static unsafe void Test_GetVariantArrayObject_24421() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.AtiVertexArrayObject _pname = default(OpenTK.Graphics.OpenGL.AtiVertexArrayObject); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ati.GetVariantArrayObject(_id,_pname,_params); -} -static unsafe void Test_GetVariantArrayObject_24422() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.AtiVertexArrayObject _pname = default(OpenTK.Graphics.OpenGL.AtiVertexArrayObject); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ati.GetVariantArrayObject(_id,_pname,out _params); -} -static unsafe void Test_GetVariantArrayObject_24423() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.AtiVertexArrayObject _pname = default(OpenTK.Graphics.OpenGL.AtiVertexArrayObject); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ati.GetVariantArrayObject(_id,_pname,_params); -} -static unsafe void Test_GetVariantArrayObject_24424() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.AtiVertexArrayObject _pname = default(OpenTK.Graphics.OpenGL.AtiVertexArrayObject); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ati.GetVariantArrayObject(_id,_pname,out _params); -} -static unsafe void Test_GetVariantArrayObject_24425() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.AtiVertexArrayObject _pname = default(OpenTK.Graphics.OpenGL.AtiVertexArrayObject); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ati.GetVariantArrayObject(_id,_pname,_params); -} -static unsafe void Test_GetVertexAttribArrayObject_24426() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject _pname = default(OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ati.GetVertexAttribArrayObject(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribArrayObject_24427() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject _pname = default(OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ati.GetVertexAttribArrayObject(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttribArrayObject_24428() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject _pname = default(OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ati.GetVertexAttribArrayObject(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribArrayObject_24429() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject _pname = default(OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ati.GetVertexAttribArrayObject(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribArrayObject_24430() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject _pname = default(OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ati.GetVertexAttribArrayObject(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttribArrayObject_24431() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject _pname = default(OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ati.GetVertexAttribArrayObject(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribArrayObject_24432() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject _pname = default(OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ati.GetVertexAttribArrayObject(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribArrayObject_24433() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject _pname = default(OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ati.GetVertexAttribArrayObject(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttribArrayObject_24434() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject _pname = default(OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ati.GetVertexAttribArrayObject(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribArrayObject_24435() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject _pname = default(OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ati.GetVertexAttribArrayObject(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribArrayObject_24436() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject _pname = default(OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ati.GetVertexAttribArrayObject(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttribArrayObject_24437() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject _pname = default(OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ati.GetVertexAttribArrayObject(_index,_pname,_params); -} -static unsafe void Test_IsObjectBuffer_24438() { - System.Int32 _buffer = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Ati.IsObjectBuffer(_buffer); -} -static unsafe void Test_IsObjectBuffer_24439() { - System.UInt32 _buffer = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Ati.IsObjectBuffer(_buffer); -} -static unsafe void Test_MapObjectBuffer_24440() { - System.Int32 _buffer = default(System.Int32); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.Ati.MapObjectBuffer(_buffer); -} -static unsafe void Test_MapObjectBuffer_24441() { - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.Ati.MapObjectBuffer(_buffer); -} -static unsafe void Test_NewObjectBuffer_24442() { - System.Int32 _size = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.AtiVertexArrayObject _usage = default(OpenTK.Graphics.OpenGL.AtiVertexArrayObject); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Ati.NewObjectBuffer(_size,_pointer,_usage); -} -static unsafe void Test_NewObjectBuffer_24443() { - System.Int32 _size = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.AtiVertexArrayObject _usage = default(OpenTK.Graphics.OpenGL.AtiVertexArrayObject); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Ati.NewObjectBuffer(_size,_pointer,_usage); -} -static unsafe void Test_NewObjectBuffer_24444() { - System.Int32 _size = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.AtiVertexArrayObject _usage = default(OpenTK.Graphics.OpenGL.AtiVertexArrayObject); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Ati.NewObjectBuffer(_size,_pointer,_usage); -} -static unsafe void Test_NewObjectBuffer_24445() { - System.Int32 _size = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.AtiVertexArrayObject _usage = default(OpenTK.Graphics.OpenGL.AtiVertexArrayObject); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Ati.NewObjectBuffer(_size,_pointer,_usage); -} -static unsafe void Test_NewObjectBuffer_24446() { - System.Int32 _size = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.AtiVertexArrayObject _usage = default(OpenTK.Graphics.OpenGL.AtiVertexArrayObject); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Ati.NewObjectBuffer(_size,ref _pointer,_usage); -} -static unsafe void Test_NormalStream3_24447() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Byte _nx = default(System.Byte); - System.Byte _ny = default(System.Byte); - System.Byte _nz = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Ati.NormalStream3(_stream,_nx,_ny,_nz); -} -static unsafe void Test_NormalStream3_24448() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.SByte _nx = default(System.SByte); - System.SByte _ny = default(System.SByte); - System.SByte _nz = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.Ati.NormalStream3(_stream,_nx,_ny,_nz); -} -static unsafe void Test_NormalStream3_24449() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Byte[] _coords = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.Ati.NormalStream3(_stream,_coords); -} -static unsafe void Test_NormalStream3_24450() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Byte _coords = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Ati.NormalStream3(_stream,ref _coords); -} -static unsafe void Test_NormalStream3_24451() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Byte* _coords = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.Ati.NormalStream3(_stream,_coords); -} -static unsafe void Test_NormalStream3_24452() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.SByte[] _coords = default(System.SByte[]); - OpenTK.Graphics.OpenGL.GL.Ati.NormalStream3(_stream,_coords); -} -static unsafe void Test_NormalStream3_24453() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.SByte _coords = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.Ati.NormalStream3(_stream,ref _coords); -} -static unsafe void Test_NormalStream3_24454() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.SByte* _coords = default(System.SByte*); - OpenTK.Graphics.OpenGL.GL.Ati.NormalStream3(_stream,_coords); -} -static unsafe void Test_NormalStream3_24455() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Double _nx = default(System.Double); - System.Double _ny = default(System.Double); - System.Double _nz = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ati.NormalStream3(_stream,_nx,_ny,_nz); -} -static unsafe void Test_NormalStream3_24456() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Double[] _coords = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ati.NormalStream3(_stream,_coords); -} -static unsafe void Test_NormalStream3_24457() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Double _coords = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ati.NormalStream3(_stream,ref _coords); -} -static unsafe void Test_NormalStream3_24458() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Double* _coords = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ati.NormalStream3(_stream,_coords); -} -static unsafe void Test_NormalStream3_24459() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Single _nx = default(System.Single); - System.Single _ny = default(System.Single); - System.Single _nz = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ati.NormalStream3(_stream,_nx,_ny,_nz); -} -static unsafe void Test_NormalStream3_24460() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Single[] _coords = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ati.NormalStream3(_stream,_coords); -} -static unsafe void Test_NormalStream3_24461() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Single _coords = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ati.NormalStream3(_stream,ref _coords); -} -static unsafe void Test_NormalStream3_24462() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Single* _coords = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ati.NormalStream3(_stream,_coords); -} -static unsafe void Test_NormalStream3_24463() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Int32 _nx = default(System.Int32); - System.Int32 _ny = default(System.Int32); - System.Int32 _nz = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ati.NormalStream3(_stream,_nx,_ny,_nz); -} -static unsafe void Test_NormalStream3_24464() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Int32[] _coords = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ati.NormalStream3(_stream,_coords); -} -static unsafe void Test_NormalStream3_24465() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ati.NormalStream3(_stream,ref _coords); -} -static unsafe void Test_NormalStream3_24466() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ati.NormalStream3(_stream,_coords); -} -static unsafe void Test_NormalStream3_24467() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Int16 _nx = default(System.Int16); - System.Int16 _ny = default(System.Int16); - System.Int16 _nz = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Ati.NormalStream3(_stream,_nx,_ny,_nz); -} -static unsafe void Test_NormalStream3_24468() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Int16[] _coords = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.Ati.NormalStream3(_stream,_coords); -} -static unsafe void Test_NormalStream3_24469() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Int16 _coords = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Ati.NormalStream3(_stream,ref _coords); -} -static unsafe void Test_NormalStream3_24470() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Int16* _coords = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Ati.NormalStream3(_stream,_coords); -} -static unsafe void Test_PassTexCoord_24471() { - System.Int32 _dst = default(System.Int32); - System.Int32 _coord = default(System.Int32); - OpenTK.Graphics.OpenGL.AtiFragmentShader _swizzle = default(OpenTK.Graphics.OpenGL.AtiFragmentShader); - OpenTK.Graphics.OpenGL.GL.Ati.PassTexCoord(_dst,_coord,_swizzle); -} -static unsafe void Test_PassTexCoord_24472() { - System.UInt32 _dst = default(System.UInt32); - System.UInt32 _coord = default(System.UInt32); - OpenTK.Graphics.OpenGL.AtiFragmentShader _swizzle = default(OpenTK.Graphics.OpenGL.AtiFragmentShader); - OpenTK.Graphics.OpenGL.GL.Ati.PassTexCoord(_dst,_coord,_swizzle); -} -static unsafe void Test_PNTriangles_24473() { - OpenTK.Graphics.OpenGL.AtiPnTriangles _pname = default(OpenTK.Graphics.OpenGL.AtiPnTriangles); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ati.PNTriangles(_pname,_param); -} -static unsafe void Test_PNTriangles_24474() { - OpenTK.Graphics.OpenGL.AtiPnTriangles _pname = default(OpenTK.Graphics.OpenGL.AtiPnTriangles); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ati.PNTriangles(_pname,_param); -} -static unsafe void Test_SampleMap_24475() { - System.Int32 _dst = default(System.Int32); - System.Int32 _interp = default(System.Int32); - OpenTK.Graphics.OpenGL.AtiFragmentShader _swizzle = default(OpenTK.Graphics.OpenGL.AtiFragmentShader); - OpenTK.Graphics.OpenGL.GL.Ati.SampleMap(_dst,_interp,_swizzle); -} -static unsafe void Test_SampleMap_24476() { - System.UInt32 _dst = default(System.UInt32); - System.UInt32 _interp = default(System.UInt32); - OpenTK.Graphics.OpenGL.AtiFragmentShader _swizzle = default(OpenTK.Graphics.OpenGL.AtiFragmentShader); - OpenTK.Graphics.OpenGL.GL.Ati.SampleMap(_dst,_interp,_swizzle); -} -static unsafe void Test_SetFragmentShaderConstant_24477() { - System.Int32 _dst = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ati.SetFragmentShaderConstant(_dst,_value); -} -static unsafe void Test_SetFragmentShaderConstant_24478() { - System.Int32 _dst = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ati.SetFragmentShaderConstant(_dst,ref _value); -} -static unsafe void Test_SetFragmentShaderConstant_24479() { - System.Int32 _dst = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ati.SetFragmentShaderConstant(_dst,_value); -} -static unsafe void Test_SetFragmentShaderConstant_24480() { - System.UInt32 _dst = default(System.UInt32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ati.SetFragmentShaderConstant(_dst,_value); -} -static unsafe void Test_SetFragmentShaderConstant_24481() { - System.UInt32 _dst = default(System.UInt32); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ati.SetFragmentShaderConstant(_dst,ref _value); -} -static unsafe void Test_SetFragmentShaderConstant_24482() { - System.UInt32 _dst = default(System.UInt32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ati.SetFragmentShaderConstant(_dst,_value); -} -static unsafe void Test_StencilFuncSeparate_24483() { - OpenTK.Graphics.OpenGL.StencilFunction _frontfunc = default(OpenTK.Graphics.OpenGL.StencilFunction); - OpenTK.Graphics.OpenGL.StencilFunction _backfunc = default(OpenTK.Graphics.OpenGL.StencilFunction); - System.Int32 _ref = default(System.Int32); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ati.StencilFuncSeparate(_frontfunc,_backfunc,_ref,_mask); -} -static unsafe void Test_StencilFuncSeparate_24484() { - OpenTK.Graphics.OpenGL.StencilFunction _frontfunc = default(OpenTK.Graphics.OpenGL.StencilFunction); - OpenTK.Graphics.OpenGL.StencilFunction _backfunc = default(OpenTK.Graphics.OpenGL.StencilFunction); - System.Int32 _ref = default(System.Int32); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ati.StencilFuncSeparate(_frontfunc,_backfunc,_ref,_mask); -} -static unsafe void Test_StencilOpSeparate_24485() { - OpenTK.Graphics.OpenGL.AtiSeparateStencil _face = default(OpenTK.Graphics.OpenGL.AtiSeparateStencil); - OpenTK.Graphics.OpenGL.StencilOp _sfail = default(OpenTK.Graphics.OpenGL.StencilOp); - OpenTK.Graphics.OpenGL.StencilOp _dpfail = default(OpenTK.Graphics.OpenGL.StencilOp); - OpenTK.Graphics.OpenGL.StencilOp _dppass = default(OpenTK.Graphics.OpenGL.StencilOp); - OpenTK.Graphics.OpenGL.GL.Ati.StencilOpSeparate(_face,_sfail,_dpfail,_dppass); -} -static unsafe void Test_TexBumpParameter_24486() { - OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap _pname = default(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap); - System.Single[] _param = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ati.TexBumpParameter(_pname,_param); -} -static unsafe void Test_TexBumpParameter_24487() { - OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap _pname = default(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ati.TexBumpParameter(_pname,ref _param); -} -static unsafe void Test_TexBumpParameter_24488() { - OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap _pname = default(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap); - System.Single* _param = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ati.TexBumpParameter(_pname,_param); -} -static unsafe void Test_TexBumpParameter_24489() { - OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap _pname = default(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap); - System.Int32[] _param = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ati.TexBumpParameter(_pname,_param); -} -static unsafe void Test_TexBumpParameter_24490() { - OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap _pname = default(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ati.TexBumpParameter(_pname,ref _param); -} -static unsafe void Test_TexBumpParameter_24491() { - OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap _pname = default(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap); - System.Int32* _param = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ati.TexBumpParameter(_pname,_param); -} -static unsafe void Test_UnmapObjectBuffer_24492() { - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ati.UnmapObjectBuffer(_buffer); -} -static unsafe void Test_UnmapObjectBuffer_24493() { - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ati.UnmapObjectBuffer(_buffer); -} -static unsafe void Test_UpdateObjectBuffer_24494() { - System.Int32 _buffer = default(System.Int32); - System.Int32 _offset = default(System.Int32); - System.Int32 _size = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.AtiVertexArrayObject _preserve = default(OpenTK.Graphics.OpenGL.AtiVertexArrayObject); - OpenTK.Graphics.OpenGL.GL.Ati.UpdateObjectBuffer(_buffer,_offset,_size,_pointer,_preserve); -} -static unsafe void Test_UpdateObjectBuffer_24495() { - System.Int32 _buffer = default(System.Int32); - System.Int32 _offset = default(System.Int32); - System.Int32 _size = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.AtiVertexArrayObject _preserve = default(OpenTK.Graphics.OpenGL.AtiVertexArrayObject); - OpenTK.Graphics.OpenGL.GL.Ati.UpdateObjectBuffer(_buffer,_offset,_size,_pointer,_preserve); -} -static unsafe void Test_UpdateObjectBuffer_24496() { - System.Int32 _buffer = default(System.Int32); - System.Int32 _offset = default(System.Int32); - System.Int32 _size = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.AtiVertexArrayObject _preserve = default(OpenTK.Graphics.OpenGL.AtiVertexArrayObject); - OpenTK.Graphics.OpenGL.GL.Ati.UpdateObjectBuffer(_buffer,_offset,_size,_pointer,_preserve); -} -static unsafe void Test_UpdateObjectBuffer_24497() { - System.Int32 _buffer = default(System.Int32); - System.Int32 _offset = default(System.Int32); - System.Int32 _size = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.AtiVertexArrayObject _preserve = default(OpenTK.Graphics.OpenGL.AtiVertexArrayObject); - OpenTK.Graphics.OpenGL.GL.Ati.UpdateObjectBuffer(_buffer,_offset,_size,_pointer,_preserve); -} -static unsafe void Test_UpdateObjectBuffer_24498() { - System.Int32 _buffer = default(System.Int32); - System.Int32 _offset = default(System.Int32); - System.Int32 _size = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.AtiVertexArrayObject _preserve = default(OpenTK.Graphics.OpenGL.AtiVertexArrayObject); - OpenTK.Graphics.OpenGL.GL.Ati.UpdateObjectBuffer(_buffer,_offset,_size,ref _pointer,_preserve); -} -static unsafe void Test_UpdateObjectBuffer_24499() { - System.UInt32 _buffer = default(System.UInt32); - System.UInt32 _offset = default(System.UInt32); - System.Int32 _size = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.AtiVertexArrayObject _preserve = default(OpenTK.Graphics.OpenGL.AtiVertexArrayObject); - OpenTK.Graphics.OpenGL.GL.Ati.UpdateObjectBuffer(_buffer,_offset,_size,_pointer,_preserve); -} -static unsafe void Test_UpdateObjectBuffer_24500() { - System.UInt32 _buffer = default(System.UInt32); - System.UInt32 _offset = default(System.UInt32); - System.Int32 _size = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.AtiVertexArrayObject _preserve = default(OpenTK.Graphics.OpenGL.AtiVertexArrayObject); - OpenTK.Graphics.OpenGL.GL.Ati.UpdateObjectBuffer(_buffer,_offset,_size,_pointer,_preserve); -} -static unsafe void Test_UpdateObjectBuffer_24501() { - System.UInt32 _buffer = default(System.UInt32); - System.UInt32 _offset = default(System.UInt32); - System.Int32 _size = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.AtiVertexArrayObject _preserve = default(OpenTK.Graphics.OpenGL.AtiVertexArrayObject); - OpenTK.Graphics.OpenGL.GL.Ati.UpdateObjectBuffer(_buffer,_offset,_size,_pointer,_preserve); -} -static unsafe void Test_UpdateObjectBuffer_24502() { - System.UInt32 _buffer = default(System.UInt32); - System.UInt32 _offset = default(System.UInt32); - System.Int32 _size = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.AtiVertexArrayObject _preserve = default(OpenTK.Graphics.OpenGL.AtiVertexArrayObject); - OpenTK.Graphics.OpenGL.GL.Ati.UpdateObjectBuffer(_buffer,_offset,_size,_pointer,_preserve); -} -static unsafe void Test_UpdateObjectBuffer_24503() { - System.UInt32 _buffer = default(System.UInt32); - System.UInt32 _offset = default(System.UInt32); - System.Int32 _size = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.AtiVertexArrayObject _preserve = default(OpenTK.Graphics.OpenGL.AtiVertexArrayObject); - OpenTK.Graphics.OpenGL.GL.Ati.UpdateObjectBuffer(_buffer,_offset,_size,ref _pointer,_preserve); -} -static unsafe void Test_VariantArrayObject_24504() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.AtiVertexArrayObject _type = default(OpenTK.Graphics.OpenGL.AtiVertexArrayObject); - System.Int32 _stride = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - System.Int32 _offset = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ati.VariantArrayObject(_id,_type,_stride,_buffer,_offset); -} -static unsafe void Test_VariantArrayObject_24505() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.AtiVertexArrayObject _type = default(OpenTK.Graphics.OpenGL.AtiVertexArrayObject); - System.Int32 _stride = default(System.Int32); - System.UInt32 _buffer = default(System.UInt32); - System.UInt32 _offset = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ati.VariantArrayObject(_id,_type,_stride,_buffer,_offset); -} -static unsafe void Test_VertexAttribArrayObject_24506() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject _type = default(OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - System.Int32 _offset = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ati.VertexAttribArrayObject(_index,_size,_type,_normalized,_stride,_buffer,_offset); -} -static unsafe void Test_VertexAttribArrayObject_24507() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribPointerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - System.Int32 _offset = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ati.VertexAttribArrayObject(_index,_size,_type,_normalized,_stride,_buffer,_offset); -} -static unsafe void Test_VertexAttribArrayObject_24508() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject _type = default(OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - System.UInt32 _buffer = default(System.UInt32); - System.UInt32 _offset = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ati.VertexAttribArrayObject(_index,_size,_type,_normalized,_stride,_buffer,_offset); -} -static unsafe void Test_VertexAttribArrayObject_24509() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribPointerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - System.UInt32 _buffer = default(System.UInt32); - System.UInt32 _offset = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ati.VertexAttribArrayObject(_index,_size,_type,_normalized,_stride,_buffer,_offset); -} -static unsafe void Test_VertexBlendEnv_24510() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _pname = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ati.VertexBlendEnv(_pname,_param); -} -static unsafe void Test_VertexBlendEnv_24511() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _pname = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ati.VertexBlendEnv(_pname,_param); -} -static unsafe void Test_VertexStream1_24512() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Double _x = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream1(_stream,_x); -} -static unsafe void Test_VertexStream1_24513() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Double* _coords = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream1(_stream,_coords); -} -static unsafe void Test_VertexStream1_24514() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Single _x = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream1(_stream,_x); -} -static unsafe void Test_VertexStream1_24515() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Single* _coords = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream1(_stream,_coords); -} -static unsafe void Test_VertexStream1_24516() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Int32 _x = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream1(_stream,_x); -} -static unsafe void Test_VertexStream1_24517() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream1(_stream,_coords); -} -static unsafe void Test_VertexStream1_24518() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Int16 _x = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream1(_stream,_x); -} -static unsafe void Test_VertexStream1_24519() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Int16* _coords = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream1(_stream,_coords); -} -static unsafe void Test_VertexStream2_24520() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream2(_stream,_x,_y); -} -static unsafe void Test_VertexStream2_24521() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Double[] _coords = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream2(_stream,_coords); -} -static unsafe void Test_VertexStream2_24522() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Double _coords = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream2(_stream,ref _coords); -} -static unsafe void Test_VertexStream2_24523() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Double* _coords = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream2(_stream,_coords); -} -static unsafe void Test_VertexStream2_24524() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream2(_stream,_x,_y); -} -static unsafe void Test_VertexStream2_24525() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Single[] _coords = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream2(_stream,_coords); -} -static unsafe void Test_VertexStream2_24526() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Single _coords = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream2(_stream,ref _coords); -} -static unsafe void Test_VertexStream2_24527() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Single* _coords = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream2(_stream,_coords); -} -static unsafe void Test_VertexStream2_24528() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream2(_stream,_x,_y); -} -static unsafe void Test_VertexStream2_24529() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Int32[] _coords = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream2(_stream,_coords); -} -static unsafe void Test_VertexStream2_24530() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream2(_stream,ref _coords); -} -static unsafe void Test_VertexStream2_24531() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream2(_stream,_coords); -} -static unsafe void Test_VertexStream2_24532() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Int16 _x = default(System.Int16); - System.Int16 _y = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream2(_stream,_x,_y); -} -static unsafe void Test_VertexStream2_24533() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Int16[] _coords = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream2(_stream,_coords); -} -static unsafe void Test_VertexStream2_24534() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Int16 _coords = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream2(_stream,ref _coords); -} -static unsafe void Test_VertexStream2_24535() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Int16* _coords = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream2(_stream,_coords); -} -static unsafe void Test_VertexStream3_24536() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream3(_stream,_x,_y,_z); -} -static unsafe void Test_VertexStream3_24537() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Double[] _coords = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream3(_stream,_coords); -} -static unsafe void Test_VertexStream3_24538() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Double _coords = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream3(_stream,ref _coords); -} -static unsafe void Test_VertexStream3_24539() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Double* _coords = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream3(_stream,_coords); -} -static unsafe void Test_VertexStream3_24540() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream3(_stream,_x,_y,_z); -} -static unsafe void Test_VertexStream3_24541() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Single[] _coords = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream3(_stream,_coords); -} -static unsafe void Test_VertexStream3_24542() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Single _coords = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream3(_stream,ref _coords); -} -static unsafe void Test_VertexStream3_24543() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Single* _coords = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream3(_stream,_coords); -} -static unsafe void Test_VertexStream3_24544() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream3(_stream,_x,_y,_z); -} -static unsafe void Test_VertexStream3_24545() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Int32[] _coords = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream3(_stream,_coords); -} -static unsafe void Test_VertexStream3_24546() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream3(_stream,ref _coords); -} -static unsafe void Test_VertexStream3_24547() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream3(_stream,_coords); -} -static unsafe void Test_VertexStream3_24548() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Int16 _x = default(System.Int16); - System.Int16 _y = default(System.Int16); - System.Int16 _z = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream3(_stream,_x,_y,_z); -} -static unsafe void Test_VertexStream3_24549() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Int16[] _coords = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream3(_stream,_coords); -} -static unsafe void Test_VertexStream3_24550() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Int16 _coords = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream3(_stream,ref _coords); -} -static unsafe void Test_VertexStream3_24551() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Int16* _coords = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream3(_stream,_coords); -} -static unsafe void Test_VertexStream4_24552() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - System.Double _w = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream4(_stream,_x,_y,_z,_w); -} -static unsafe void Test_VertexStream4_24553() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Double[] _coords = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream4(_stream,_coords); -} -static unsafe void Test_VertexStream4_24554() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Double _coords = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream4(_stream,ref _coords); -} -static unsafe void Test_VertexStream4_24555() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Double* _coords = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream4(_stream,_coords); -} -static unsafe void Test_VertexStream4_24556() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - System.Single _w = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream4(_stream,_x,_y,_z,_w); -} -static unsafe void Test_VertexStream4_24557() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Single[] _coords = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream4(_stream,_coords); -} -static unsafe void Test_VertexStream4_24558() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Single _coords = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream4(_stream,ref _coords); -} -static unsafe void Test_VertexStream4_24559() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Single* _coords = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream4(_stream,_coords); -} -static unsafe void Test_VertexStream4_24560() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - System.Int32 _w = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream4(_stream,_x,_y,_z,_w); -} -static unsafe void Test_VertexStream4_24561() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Int32[] _coords = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream4(_stream,_coords); -} -static unsafe void Test_VertexStream4_24562() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream4(_stream,ref _coords); -} -static unsafe void Test_VertexStream4_24563() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream4(_stream,_coords); -} -static unsafe void Test_VertexStream4_24564() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Int16 _x = default(System.Int16); - System.Int16 _y = default(System.Int16); - System.Int16 _z = default(System.Int16); - System.Int16 _w = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream4(_stream,_x,_y,_z,_w); -} -static unsafe void Test_VertexStream4_24565() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Int16[] _coords = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream4(_stream,_coords); -} -static unsafe void Test_VertexStream4_24566() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Int16 _coords = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream4(_stream,ref _coords); -} -static unsafe void Test_VertexStream4_24567() { - OpenTK.Graphics.OpenGL.AtiVertexStreams _stream = default(OpenTK.Graphics.OpenGL.AtiVertexStreams); - System.Int16* _coords = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Ati.VertexStream4(_stream,_coords); -} -static unsafe void Test_PassTexCoor_24568() { - System.Int32 _dst = default(System.Int32); - System.Int32 _coord = default(System.Int32); - OpenTK.Graphics.OpenGL.AtiFragmentShader _swizzle = default(OpenTK.Graphics.OpenGL.AtiFragmentShader); - OpenTK.Graphics.OpenGL.GL.Ati.PassTexCoor(_dst,_coord,_swizzle); -} -static unsafe void Test_PassTexCoor_24569() { - System.UInt32 _dst = default(System.UInt32); - System.UInt32 _coord = default(System.UInt32); - OpenTK.Graphics.OpenGL.AtiFragmentShader _swizzle = default(OpenTK.Graphics.OpenGL.AtiFragmentShader); - OpenTK.Graphics.OpenGL.GL.Ati.PassTexCoor(_dst,_coord,_swizzle); -} -static unsafe void Test_ActiveProgram_24570() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.ActiveProgram(_program); -} -static unsafe void Test_ActiveProgram_24571() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.ActiveProgram(_program); -} -static unsafe void Test_ActiveShaderProgram_24572() { - System.Int32 _pipeline = default(System.Int32); - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.ActiveShaderProgram(_pipeline,_program); -} -static unsafe void Test_ActiveShaderProgram_24573() { - System.UInt32 _pipeline = default(System.UInt32); - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.ActiveShaderProgram(_pipeline,_program); -} -static unsafe void Test_ActiveStencilFace_24574() { - OpenTK.Graphics.OpenGL.ExtStencilTwoSide _face = default(OpenTK.Graphics.OpenGL.ExtStencilTwoSide); - OpenTK.Graphics.OpenGL.GL.Ext.ActiveStencilFace(_face); -} -static unsafe void Test_ApplyTexture_24575() { - OpenTK.Graphics.OpenGL.ExtLightTexture _mode = default(OpenTK.Graphics.OpenGL.ExtLightTexture); - OpenTK.Graphics.OpenGL.GL.Ext.ApplyTexture(_mode); -} -static unsafe void Test_AreTexturesResident_24576() { - System.Int32 _n = default(System.Int32); - System.Int32[] _textures = default(System.Int32[]); - System.Boolean[] _residences = default(System.Boolean[]); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Ext.AreTexturesResident(_n,_textures,_residences); -} -static unsafe void Test_AreTexturesResident_24577() { - System.Int32 _n = default(System.Int32); - System.Int32 _textures = default(System.Int32); - System.Boolean _residences = default(System.Boolean); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Ext.AreTexturesResident(_n,ref _textures,out _residences); -} -static unsafe void Test_AreTexturesResident_24578() { - System.Int32 _n = default(System.Int32); - System.Int32* _textures = default(System.Int32*); - System.Boolean* _residences = default(System.Boolean*); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Ext.AreTexturesResident(_n,_textures,_residences); -} -static unsafe void Test_AreTexturesResident_24579() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _textures = default(System.UInt32[]); - System.Boolean[] _residences = default(System.Boolean[]); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Ext.AreTexturesResident(_n,_textures,_residences); -} -static unsafe void Test_AreTexturesResident_24580() { - System.Int32 _n = default(System.Int32); - System.UInt32 _textures = default(System.UInt32); - System.Boolean _residences = default(System.Boolean); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Ext.AreTexturesResident(_n,ref _textures,out _residences); -} -static unsafe void Test_AreTexturesResident_24581() { - System.Int32 _n = default(System.Int32); - System.UInt32* _textures = default(System.UInt32*); - System.Boolean* _residences = default(System.Boolean*); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Ext.AreTexturesResident(_n,_textures,_residences); -} -static unsafe void Test_ArrayElement_24582() { - System.Int32 _i = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.ArrayElement(_i); -} -static unsafe void Test_BeginTransformFeedback_24583() { - OpenTK.Graphics.OpenGL.ExtTransformFeedback _primitiveMode = default(OpenTK.Graphics.OpenGL.ExtTransformFeedback); - OpenTK.Graphics.OpenGL.GL.Ext.BeginTransformFeedback(_primitiveMode); -} -static unsafe void Test_BeginVertexShader_24584() { - OpenTK.Graphics.OpenGL.GL.Ext.BeginVertexShader(); -} -static unsafe void Test_BindBufferBase_24585() { - OpenTK.Graphics.OpenGL.ExtTransformFeedback _target = default(OpenTK.Graphics.OpenGL.ExtTransformFeedback); - System.Int32 _index = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.BindBufferBase(_target,_index,_buffer); -} -static unsafe void Test_BindBufferBase_24586() { - OpenTK.Graphics.OpenGL.ExtTransformFeedback _target = default(OpenTK.Graphics.OpenGL.ExtTransformFeedback); - System.UInt32 _index = default(System.UInt32); - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.BindBufferBase(_target,_index,_buffer); -} -static unsafe void Test_BindBufferOffset_24587() { - OpenTK.Graphics.OpenGL.ExtTransformFeedback _target = default(OpenTK.Graphics.OpenGL.ExtTransformFeedback); - System.Int32 _index = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.BindBufferOffset(_target,_index,_buffer,_offset); -} -static unsafe void Test_BindBufferOffset_24588() { - OpenTK.Graphics.OpenGL.ExtTransformFeedback _target = default(OpenTK.Graphics.OpenGL.ExtTransformFeedback); - System.UInt32 _index = default(System.UInt32); - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr _offset = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.BindBufferOffset(_target,_index,_buffer,_offset); -} -static unsafe void Test_BindBufferRange_24589() { - OpenTK.Graphics.OpenGL.ExtTransformFeedback _target = default(OpenTK.Graphics.OpenGL.ExtTransformFeedback); - System.Int32 _index = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.BindBufferRange(_target,_index,_buffer,_offset,_size); -} -static unsafe void Test_BindBufferRange_24590() { - OpenTK.Graphics.OpenGL.ExtTransformFeedback _target = default(OpenTK.Graphics.OpenGL.ExtTransformFeedback); - System.UInt32 _index = default(System.UInt32); - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.BindBufferRange(_target,_index,_buffer,_offset,_size); -} -static unsafe void Test_BindFragDataLocation_24591() { - System.Int32 _program = default(System.Int32); - System.Int32 _color = default(System.Int32); - System.String _name = default(System.String); - OpenTK.Graphics.OpenGL.GL.Ext.BindFragDataLocation(_program,_color,_name); -} -static unsafe void Test_BindFragDataLocation_24592() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _color = default(System.UInt32); - System.String _name = default(System.String); - OpenTK.Graphics.OpenGL.GL.Ext.BindFragDataLocation(_program,_color,_name); -} -static unsafe void Test_BindFramebuffer_24593() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - System.Int32 _framebuffer = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.BindFramebuffer(_target,_framebuffer); -} -static unsafe void Test_BindFramebuffer_24594() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - System.UInt32 _framebuffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.BindFramebuffer(_target,_framebuffer); -} -static unsafe void Test_BindImageTexture_24595() { - System.Int32 _index = default(System.Int32); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - System.Boolean _layered = default(System.Boolean); - System.Int32 _layer = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore _access = default(OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore); - System.Int32 _format = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.BindImageTexture(_index,_texture,_level,_layered,_layer,_access,_format); -} -static unsafe void Test_BindImageTexture_24596() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - System.Boolean _layered = default(System.Boolean); - System.Int32 _layer = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore _access = default(OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore); - System.Int32 _format = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.BindImageTexture(_index,_texture,_level,_layered,_layer,_access,_format); -} -static unsafe void Test_BindLightParameter_24597() { - OpenTK.Graphics.OpenGL.LightName _light = default(OpenTK.Graphics.OpenGL.LightName); - OpenTK.Graphics.OpenGL.LightParameter _value = default(OpenTK.Graphics.OpenGL.LightParameter); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Ext.BindLightParameter(_light,_value); -} -static unsafe void Test_BindMaterialParameter_24598() { - OpenTK.Graphics.OpenGL.MaterialFace _face = default(OpenTK.Graphics.OpenGL.MaterialFace); - OpenTK.Graphics.OpenGL.MaterialParameter _value = default(OpenTK.Graphics.OpenGL.MaterialParameter); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Ext.BindMaterialParameter(_face,_value); -} -static unsafe void Test_BindMultiTexture_24599() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.BindMultiTexture(_texunit,_target,_texture); -} -static unsafe void Test_BindMultiTexture_24600() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.BindMultiTexture(_texunit,_target,_texture); -} -static unsafe void Test_BindParameter_24601() { - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Ext.BindParameter(_value); -} -static unsafe void Test_BindProgramPipeline_24602() { - System.Int32 _pipeline = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.BindProgramPipeline(_pipeline); -} -static unsafe void Test_BindProgramPipeline_24603() { - System.UInt32 _pipeline = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.BindProgramPipeline(_pipeline); -} -static unsafe void Test_BindRenderbuffer_24604() { - OpenTK.Graphics.OpenGL.RenderbufferTarget _target = default(OpenTK.Graphics.OpenGL.RenderbufferTarget); - System.Int32 _renderbuffer = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.BindRenderbuffer(_target,_renderbuffer); -} -static unsafe void Test_BindRenderbuffer_24605() { - OpenTK.Graphics.OpenGL.RenderbufferTarget _target = default(OpenTK.Graphics.OpenGL.RenderbufferTarget); - System.UInt32 _renderbuffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.BindRenderbuffer(_target,_renderbuffer); -} -static unsafe void Test_BindTexGenParameter_24606() { - OpenTK.Graphics.OpenGL.TextureUnit _unit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureCoordName _coord = default(OpenTK.Graphics.OpenGL.TextureCoordName); - OpenTK.Graphics.OpenGL.TextureGenParameter _value = default(OpenTK.Graphics.OpenGL.TextureGenParameter); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Ext.BindTexGenParameter(_unit,_coord,_value); -} -static unsafe void Test_BindTexture_24607() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.BindTexture(_target,_texture); -} -static unsafe void Test_BindTexture_24608() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.BindTexture(_target,_texture); -} -static unsafe void Test_BindTextureUnitParameter_24609() { - OpenTK.Graphics.OpenGL.TextureUnit _unit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Ext.BindTextureUnitParameter(_unit,_value); -} -static unsafe void Test_BindVertexShader_24610() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.BindVertexShader(_id); -} -static unsafe void Test_BindVertexShader_24611() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.BindVertexShader(_id); -} -static unsafe void Test_Binormal3_24612() { - System.Byte _bx = default(System.Byte); - System.Byte _by = default(System.Byte); - System.Byte _bz = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Ext.Binormal3(_bx,_by,_bz); -} -static unsafe void Test_Binormal3_24613() { - System.SByte _bx = default(System.SByte); - System.SByte _by = default(System.SByte); - System.SByte _bz = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.Ext.Binormal3(_bx,_by,_bz); -} -static unsafe void Test_Binormal3_24614() { - System.Byte[] _v = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.Ext.Binormal3(_v); -} -static unsafe void Test_Binormal3_24615() { - System.Byte _v = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Ext.Binormal3(ref _v); -} -static unsafe void Test_Binormal3_24616() { - System.Byte* _v = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.Ext.Binormal3(_v); -} -static unsafe void Test_Binormal3_24617() { - System.SByte[] _v = default(System.SByte[]); - OpenTK.Graphics.OpenGL.GL.Ext.Binormal3(_v); -} -static unsafe void Test_Binormal3_24618() { - System.SByte _v = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.Ext.Binormal3(ref _v); -} -static unsafe void Test_Binormal3_24619() { - System.SByte* _v = default(System.SByte*); - OpenTK.Graphics.OpenGL.GL.Ext.Binormal3(_v); -} -static unsafe void Test_Binormal3_24620() { - System.Double _bx = default(System.Double); - System.Double _by = default(System.Double); - System.Double _bz = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.Binormal3(_bx,_by,_bz); -} -static unsafe void Test_Binormal3_24621() { - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.Binormal3(_v); -} -static unsafe void Test_Binormal3_24622() { - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.Binormal3(ref _v); -} -static unsafe void Test_Binormal3_24623() { - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.Binormal3(_v); -} -static unsafe void Test_Binormal3_24624() { - System.Single _bx = default(System.Single); - System.Single _by = default(System.Single); - System.Single _bz = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.Binormal3(_bx,_by,_bz); -} -static unsafe void Test_Binormal3_24625() { - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.Binormal3(_v); -} -static unsafe void Test_Binormal3_24626() { - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.Binormal3(ref _v); -} -static unsafe void Test_Binormal3_24627() { - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.Binormal3(_v); -} -static unsafe void Test_Binormal3_24628() { - System.Int32 _bx = default(System.Int32); - System.Int32 _by = default(System.Int32); - System.Int32 _bz = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.Binormal3(_bx,_by,_bz); -} -static unsafe void Test_Binormal3_24629() { - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.Binormal3(_v); -} -static unsafe void Test_Binormal3_24630() { - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.Binormal3(ref _v); -} -static unsafe void Test_Binormal3_24631() { - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.Binormal3(_v); -} -static unsafe void Test_Binormal3_24632() { - System.Int16 _bx = default(System.Int16); - System.Int16 _by = default(System.Int16); - System.Int16 _bz = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Ext.Binormal3(_bx,_by,_bz); -} -static unsafe void Test_Binormal3_24633() { - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.Ext.Binormal3(_v); -} -static unsafe void Test_Binormal3_24634() { - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Ext.Binormal3(ref _v); -} -static unsafe void Test_Binormal3_24635() { - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Ext.Binormal3(_v); -} -static unsafe void Test_BinormalPointer_24636() { - OpenTK.Graphics.OpenGL.NormalPointerType _type = default(OpenTK.Graphics.OpenGL.NormalPointerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.BinormalPointer(_type,_stride,_pointer); -} -static unsafe void Test_BinormalPointer_24637() { - OpenTK.Graphics.OpenGL.NormalPointerType _type = default(OpenTK.Graphics.OpenGL.NormalPointerType); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.BinormalPointer(_type,_stride,_pointer); -} -static unsafe void Test_BinormalPointer_24638() { - OpenTK.Graphics.OpenGL.NormalPointerType _type = default(OpenTK.Graphics.OpenGL.NormalPointerType); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.BinormalPointer(_type,_stride,_pointer); -} -static unsafe void Test_BinormalPointer_24639() { - OpenTK.Graphics.OpenGL.NormalPointerType _type = default(OpenTK.Graphics.OpenGL.NormalPointerType); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.BinormalPointer(_type,_stride,_pointer); -} -static unsafe void Test_BinormalPointer_24640() { - OpenTK.Graphics.OpenGL.NormalPointerType _type = default(OpenTK.Graphics.OpenGL.NormalPointerType); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.BinormalPointer(_type,_stride,ref _pointer); -} -static unsafe void Test_BlendColor_24641() { - System.Single _red = default(System.Single); - System.Single _green = default(System.Single); - System.Single _blue = default(System.Single); - System.Single _alpha = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.BlendColor(_red,_green,_blue,_alpha); -} -static unsafe void Test_BlendEquation_24642() { - OpenTK.Graphics.OpenGL.BlendEquationMode _mode = default(OpenTK.Graphics.OpenGL.BlendEquationMode); - OpenTK.Graphics.OpenGL.GL.Ext.BlendEquation(_mode); -} -static unsafe void Test_BlendEquation_24643() { - OpenTK.Graphics.OpenGL.ExtBlendMinmax _mode = default(OpenTK.Graphics.OpenGL.ExtBlendMinmax); - OpenTK.Graphics.OpenGL.GL.Ext.BlendEquation(_mode); -} -static unsafe void Test_BlendEquationSeparate_24644() { - OpenTK.Graphics.OpenGL.BlendEquationModeExt _modeRGB = default(OpenTK.Graphics.OpenGL.BlendEquationModeExt); - OpenTK.Graphics.OpenGL.BlendEquationModeExt _modeAlpha = default(OpenTK.Graphics.OpenGL.BlendEquationModeExt); - OpenTK.Graphics.OpenGL.GL.Ext.BlendEquationSeparate(_modeRGB,_modeAlpha); -} -static unsafe void Test_BlendEquationSeparate_24645() { - OpenTK.Graphics.OpenGL.ExtBlendEquationSeparate _modeRGB = default(OpenTK.Graphics.OpenGL.ExtBlendEquationSeparate); - OpenTK.Graphics.OpenGL.ExtBlendEquationSeparate _modeAlpha = default(OpenTK.Graphics.OpenGL.ExtBlendEquationSeparate); - OpenTK.Graphics.OpenGL.GL.Ext.BlendEquationSeparate(_modeRGB,_modeAlpha); -} -static unsafe void Test_BlendFuncSeparate_24646() { - OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate _sfactorRGB = default(OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate); - OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate _dfactorRGB = default(OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate); - OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate _sfactorAlpha = default(OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate); - OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate _dfactorAlpha = default(OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate); - OpenTK.Graphics.OpenGL.GL.Ext.BlendFuncSeparate(_sfactorRGB,_dfactorRGB,_sfactorAlpha,_dfactorAlpha); -} -static unsafe void Test_BlitFramebuffer_24647() { - System.Int32 _srcX0 = default(System.Int32); - System.Int32 _srcY0 = default(System.Int32); - System.Int32 _srcX1 = default(System.Int32); - System.Int32 _srcY1 = default(System.Int32); - System.Int32 _dstX0 = default(System.Int32); - System.Int32 _dstY0 = default(System.Int32); - System.Int32 _dstX1 = default(System.Int32); - System.Int32 _dstY1 = default(System.Int32); - OpenTK.Graphics.OpenGL.ClearBufferMask _mask = default(OpenTK.Graphics.OpenGL.ClearBufferMask); - OpenTK.Graphics.OpenGL.BlitFramebufferFilter _filter = default(OpenTK.Graphics.OpenGL.BlitFramebufferFilter); - OpenTK.Graphics.OpenGL.GL.Ext.BlitFramebuffer(_srcX0,_srcY0,_srcX1,_srcY1,_dstX0,_dstY0,_dstX1,_dstY1,_mask,_filter); -} -static unsafe void Test_BlitFramebuffer_24648() { - System.Int32 _srcX0 = default(System.Int32); - System.Int32 _srcY0 = default(System.Int32); - System.Int32 _srcX1 = default(System.Int32); - System.Int32 _srcY1 = default(System.Int32); - System.Int32 _dstX0 = default(System.Int32); - System.Int32 _dstY0 = default(System.Int32); - System.Int32 _dstX1 = default(System.Int32); - System.Int32 _dstY1 = default(System.Int32); - OpenTK.Graphics.OpenGL.ClearBufferMask _mask = default(OpenTK.Graphics.OpenGL.ClearBufferMask); - OpenTK.Graphics.OpenGL.ExtFramebufferBlit _filter = default(OpenTK.Graphics.OpenGL.ExtFramebufferBlit); - OpenTK.Graphics.OpenGL.GL.Ext.BlitFramebuffer(_srcX0,_srcY0,_srcX1,_srcY1,_dstX0,_dstY0,_dstX1,_dstY1,_mask,_filter); -} -static unsafe void Test_CheckFramebufferStatus_24649() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferErrorCode r = OpenTK.Graphics.OpenGL.GL.Ext.CheckFramebufferStatus(_target); -} -static unsafe void Test_CheckNamedFramebufferStatus_24650() { - System.Int32 _framebuffer = default(System.Int32); - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess r = OpenTK.Graphics.OpenGL.GL.Ext.CheckNamedFramebufferStatus(_framebuffer,_target); -} -static unsafe void Test_CheckNamedFramebufferStatus_24651() { - System.UInt32 _framebuffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess r = OpenTK.Graphics.OpenGL.GL.Ext.CheckNamedFramebufferStatus(_framebuffer,_target); -} -static unsafe void Test_ClearColorI_24652() { - System.Int32 _red = default(System.Int32); - System.Int32 _green = default(System.Int32); - System.Int32 _blue = default(System.Int32); - System.Int32 _alpha = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.ClearColorI(_red,_green,_blue,_alpha); -} -static unsafe void Test_ClearColorI_24653() { - System.UInt32 _red = default(System.UInt32); - System.UInt32 _green = default(System.UInt32); - System.UInt32 _blue = default(System.UInt32); - System.UInt32 _alpha = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.ClearColorI(_red,_green,_blue,_alpha); -} -static unsafe void Test_ClearNamedBufferData_24654() { - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.ClearNamedBufferData(_buffer,_internalformat,_format,_type,_data); -} -static unsafe void Test_ClearNamedBufferData_24655() { - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.ClearNamedBufferData(_buffer,_internalformat,_format,_type,_data); -} -static unsafe void Test_ClearNamedBufferData_24656() { - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.ClearNamedBufferData(_buffer,_internalformat,_format,_type,_data); -} -static unsafe void Test_ClearNamedBufferData_24657() { - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.ClearNamedBufferData(_buffer,_internalformat,_format,_type,_data); -} -static unsafe void Test_ClearNamedBufferData_24658() { - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.ClearNamedBufferData(_buffer,_internalformat,_format,_type,ref _data); -} -static unsafe void Test_ClearNamedBufferData_24659() { - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.ClearNamedBufferData(_buffer,_internalformat,_format,_type,_data); -} -static unsafe void Test_ClearNamedBufferData_24660() { - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.ClearNamedBufferData(_buffer,_internalformat,_format,_type,_data); -} -static unsafe void Test_ClearNamedBufferData_24661() { - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.ClearNamedBufferData(_buffer,_internalformat,_format,_type,_data); -} -static unsafe void Test_ClearNamedBufferData_24662() { - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.ClearNamedBufferData(_buffer,_internalformat,_format,_type,_data); -} -static unsafe void Test_ClearNamedBufferData_24663() { - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.ClearNamedBufferData(_buffer,_internalformat,_format,_type,ref _data); -} -static unsafe void Test_ClearNamedBufferSubData_24664() { - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.ClearNamedBufferSubData(_buffer,_internalformat,_offset,_size,_format,_type,_data); -} -static unsafe void Test_ClearNamedBufferSubData_24665() { - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.ClearNamedBufferSubData(_buffer,_internalformat,_offset,_size,_format,_type,_data); -} -static unsafe void Test_ClearNamedBufferSubData_24666() { - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.ClearNamedBufferSubData(_buffer,_internalformat,_offset,_size,_format,_type,_data); -} -static unsafe void Test_ClearNamedBufferSubData_24667() { - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.ClearNamedBufferSubData(_buffer,_internalformat,_offset,_size,_format,_type,_data); -} -static unsafe void Test_ClearNamedBufferSubData_24668() { - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.ClearNamedBufferSubData(_buffer,_internalformat,_offset,_size,_format,_type,ref _data); -} -static unsafe void Test_ClearNamedBufferSubData_24669() { - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.ClearNamedBufferSubData(_buffer,_internalformat,_offset,_size,_format,_type,_data); -} -static unsafe void Test_ClearNamedBufferSubData_24670() { - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.ClearNamedBufferSubData(_buffer,_internalformat,_offset,_size,_format,_type,_data); -} -static unsafe void Test_ClearNamedBufferSubData_24671() { - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.ClearNamedBufferSubData(_buffer,_internalformat,_offset,_size,_format,_type,_data); -} -static unsafe void Test_ClearNamedBufferSubData_24672() { - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.ClearNamedBufferSubData(_buffer,_internalformat,_offset,_size,_format,_type,_data); -} -static unsafe void Test_ClearNamedBufferSubData_24673() { - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.ClearNamedBufferSubData(_buffer,_internalformat,_offset,_size,_format,_type,ref _data); -} -static unsafe void Test_ClientAttribDefault_24674() { - OpenTK.Graphics.OpenGL.ClientAttribMask _mask = default(OpenTK.Graphics.OpenGL.ClientAttribMask); - OpenTK.Graphics.OpenGL.GL.Ext.ClientAttribDefault(_mask); -} -static unsafe void Test_ColorMaskIndexed_24675() { - System.Int32 _index = default(System.Int32); - System.Boolean _r = default(System.Boolean); - System.Boolean _g = default(System.Boolean); - System.Boolean _b = default(System.Boolean); - System.Boolean _a = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Ext.ColorMaskIndexed(_index,_r,_g,_b,_a); -} -static unsafe void Test_ColorMaskIndexed_24676() { - System.UInt32 _index = default(System.UInt32); - System.Boolean _r = default(System.Boolean); - System.Boolean _g = default(System.Boolean); - System.Boolean _b = default(System.Boolean); - System.Boolean _a = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Ext.ColorMaskIndexed(_index,_r,_g,_b,_a); -} -static unsafe void Test_ColorPointer_24677() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ColorPointerType _type = default(OpenTK.Graphics.OpenGL.ColorPointerType); - System.Int32 _stride = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.ColorPointer(_size,_type,_stride,_count,_pointer); -} -static unsafe void Test_ColorPointer_24678() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ColorPointerType _type = default(OpenTK.Graphics.OpenGL.ColorPointerType); - System.Int32 _stride = default(System.Int32); - System.Int32 _count = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.ColorPointer(_size,_type,_stride,_count,_pointer); -} -static unsafe void Test_ColorPointer_24679() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ColorPointerType _type = default(OpenTK.Graphics.OpenGL.ColorPointerType); - System.Int32 _stride = default(System.Int32); - System.Int32 _count = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.ColorPointer(_size,_type,_stride,_count,_pointer); -} -static unsafe void Test_ColorPointer_24680() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ColorPointerType _type = default(OpenTK.Graphics.OpenGL.ColorPointerType); - System.Int32 _stride = default(System.Int32); - System.Int32 _count = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.ColorPointer(_size,_type,_stride,_count,_pointer); -} -static unsafe void Test_ColorPointer_24681() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ColorPointerType _type = default(OpenTK.Graphics.OpenGL.ColorPointerType); - System.Int32 _stride = default(System.Int32); - System.Int32 _count = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.ColorPointer(_size,_type,_stride,_count,ref _pointer); -} -static unsafe void Test_ColorSubTable_24682() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - System.Int32 _start = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.ColorSubTable(_target,_start,_count,_format,_type,_data); -} -static unsafe void Test_ColorSubTable_24683() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - System.Int32 _start = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.ColorSubTable(_target,_start,_count,_format,_type,_data); -} -static unsafe void Test_ColorSubTable_24684() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - System.Int32 _start = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.ColorSubTable(_target,_start,_count,_format,_type,_data); -} -static unsafe void Test_ColorSubTable_24685() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - System.Int32 _start = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.ColorSubTable(_target,_start,_count,_format,_type,_data); -} -static unsafe void Test_ColorSubTable_24686() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - System.Int32 _start = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.ColorSubTable(_target,_start,_count,_format,_type,ref _data); -} -static unsafe void Test_ColorTable_24687() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalFormat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _table = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.ColorTable(_target,_internalFormat,_width,_format,_type,_table); -} -static unsafe void Test_ColorTable_24688() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalFormat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _table = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.ColorTable(_target,_internalFormat,_width,_format,_type,_table); -} -static unsafe void Test_ColorTable_24689() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalFormat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _table = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.ColorTable(_target,_internalFormat,_width,_format,_type,_table); -} -static unsafe void Test_ColorTable_24690() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalFormat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _table = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.ColorTable(_target,_internalFormat,_width,_format,_type,_table); -} -static unsafe void Test_ColorTable_24691() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalFormat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _table = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.ColorTable(_target,_internalFormat,_width,_format,_type,ref _table); -} -static unsafe void Test_CompressedMultiTexImage1D_24692() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _bits = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedMultiTexImage1D(_texunit,_target,_level,_internalformat,_width,_border,_imageSize,_bits); -} -static unsafe void Test_CompressedMultiTexImage1D_24693() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[] _bits = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedMultiTexImage1D(_texunit,_target,_level,_internalformat,_width,_border,_imageSize,_bits); -} -static unsafe void Test_CompressedMultiTexImage1D_24694() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,] _bits = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedMultiTexImage1D(_texunit,_target,_level,_internalformat,_width,_border,_imageSize,_bits); -} -static unsafe void Test_CompressedMultiTexImage1D_24695() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,,] _bits = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedMultiTexImage1D(_texunit,_target,_level,_internalformat,_width,_border,_imageSize,_bits); -} -static unsafe void Test_CompressedMultiTexImage1D_24696() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int _bits = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedMultiTexImage1D(_texunit,_target,_level,_internalformat,_width,_border,_imageSize,ref _bits); -} -static unsafe void Test_CompressedMultiTexImage2D_24697() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _bits = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedMultiTexImage2D(_texunit,_target,_level,_internalformat,_width,_height,_border,_imageSize,_bits); -} -static unsafe void Test_CompressedMultiTexImage2D_24698() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[] _bits = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedMultiTexImage2D(_texunit,_target,_level,_internalformat,_width,_height,_border,_imageSize,_bits); -} -static unsafe void Test_CompressedMultiTexImage2D_24699() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,] _bits = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedMultiTexImage2D(_texunit,_target,_level,_internalformat,_width,_height,_border,_imageSize,_bits); -} -static unsafe void Test_CompressedMultiTexImage2D_24700() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,,] _bits = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedMultiTexImage2D(_texunit,_target,_level,_internalformat,_width,_height,_border,_imageSize,_bits); -} -static unsafe void Test_CompressedMultiTexImage2D_24701() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int _bits = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedMultiTexImage2D(_texunit,_target,_level,_internalformat,_width,_height,_border,_imageSize,ref _bits); -} -static unsafe void Test_CompressedMultiTexImage3D_24702() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _bits = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedMultiTexImage3D(_texunit,_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_bits); -} -static unsafe void Test_CompressedMultiTexImage3D_24703() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[] _bits = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedMultiTexImage3D(_texunit,_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_bits); -} -static unsafe void Test_CompressedMultiTexImage3D_24704() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,] _bits = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedMultiTexImage3D(_texunit,_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_bits); -} -static unsafe void Test_CompressedMultiTexImage3D_24705() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,,] _bits = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedMultiTexImage3D(_texunit,_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_bits); -} -static unsafe void Test_CompressedMultiTexImage3D_24706() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int _bits = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedMultiTexImage3D(_texunit,_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,ref _bits); -} -static unsafe void Test_CompressedMultiTexSubImage1D_24707() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _bits = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedMultiTexSubImage1D(_texunit,_target,_level,_xoffset,_width,_format,_imageSize,_bits); -} -static unsafe void Test_CompressedMultiTexSubImage1D_24708() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[] _bits = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedMultiTexSubImage1D(_texunit,_target,_level,_xoffset,_width,_format,_imageSize,_bits); -} -static unsafe void Test_CompressedMultiTexSubImage1D_24709() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,] _bits = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedMultiTexSubImage1D(_texunit,_target,_level,_xoffset,_width,_format,_imageSize,_bits); -} -static unsafe void Test_CompressedMultiTexSubImage1D_24710() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,,] _bits = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedMultiTexSubImage1D(_texunit,_target,_level,_xoffset,_width,_format,_imageSize,_bits); -} -static unsafe void Test_CompressedMultiTexSubImage1D_24711() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int _bits = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedMultiTexSubImage1D(_texunit,_target,_level,_xoffset,_width,_format,_imageSize,ref _bits); -} -static unsafe void Test_CompressedMultiTexSubImage2D_24712() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _bits = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedMultiTexSubImage2D(_texunit,_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_bits); -} -static unsafe void Test_CompressedMultiTexSubImage2D_24713() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[] _bits = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedMultiTexSubImage2D(_texunit,_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_bits); -} -static unsafe void Test_CompressedMultiTexSubImage2D_24714() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,] _bits = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedMultiTexSubImage2D(_texunit,_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_bits); -} -static unsafe void Test_CompressedMultiTexSubImage2D_24715() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,,] _bits = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedMultiTexSubImage2D(_texunit,_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_bits); -} -static unsafe void Test_CompressedMultiTexSubImage2D_24716() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int _bits = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedMultiTexSubImage2D(_texunit,_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,ref _bits); -} -static unsafe void Test_CompressedMultiTexSubImage3D_24717() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _bits = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedMultiTexSubImage3D(_texunit,_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_bits); -} -static unsafe void Test_CompressedMultiTexSubImage3D_24718() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[] _bits = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedMultiTexSubImage3D(_texunit,_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_bits); -} -static unsafe void Test_CompressedMultiTexSubImage3D_24719() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,] _bits = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedMultiTexSubImage3D(_texunit,_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_bits); -} -static unsafe void Test_CompressedMultiTexSubImage3D_24720() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,,] _bits = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedMultiTexSubImage3D(_texunit,_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_bits); -} -static unsafe void Test_CompressedMultiTexSubImage3D_24721() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int _bits = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedMultiTexSubImage3D(_texunit,_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,ref _bits); -} -static unsafe void Test_CompressedTextureImage1D_24722() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _bits = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureImage1D(_texture,_target,_level,_internalformat,_width,_border,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureImage1D_24723() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[] _bits = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureImage1D(_texture,_target,_level,_internalformat,_width,_border,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureImage1D_24724() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,] _bits = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureImage1D(_texture,_target,_level,_internalformat,_width,_border,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureImage1D_24725() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,,] _bits = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureImage1D(_texture,_target,_level,_internalformat,_width,_border,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureImage1D_24726() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int _bits = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureImage1D(_texture,_target,_level,_internalformat,_width,_border,_imageSize,ref _bits); -} -static unsafe void Test_CompressedTextureImage1D_24727() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _bits = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureImage1D(_texture,_target,_level,_internalformat,_width,_border,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureImage1D_24728() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[] _bits = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureImage1D(_texture,_target,_level,_internalformat,_width,_border,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureImage1D_24729() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,] _bits = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureImage1D(_texture,_target,_level,_internalformat,_width,_border,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureImage1D_24730() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,,] _bits = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureImage1D(_texture,_target,_level,_internalformat,_width,_border,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureImage1D_24731() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int _bits = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureImage1D(_texture,_target,_level,_internalformat,_width,_border,_imageSize,ref _bits); -} -static unsafe void Test_CompressedTextureImage2D_24732() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _bits = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureImage2D(_texture,_target,_level,_internalformat,_width,_height,_border,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureImage2D_24733() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[] _bits = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureImage2D(_texture,_target,_level,_internalformat,_width,_height,_border,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureImage2D_24734() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,] _bits = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureImage2D(_texture,_target,_level,_internalformat,_width,_height,_border,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureImage2D_24735() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,,] _bits = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureImage2D(_texture,_target,_level,_internalformat,_width,_height,_border,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureImage2D_24736() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int _bits = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureImage2D(_texture,_target,_level,_internalformat,_width,_height,_border,_imageSize,ref _bits); -} -static unsafe void Test_CompressedTextureImage2D_24737() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _bits = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureImage2D(_texture,_target,_level,_internalformat,_width,_height,_border,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureImage2D_24738() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[] _bits = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureImage2D(_texture,_target,_level,_internalformat,_width,_height,_border,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureImage2D_24739() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,] _bits = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureImage2D(_texture,_target,_level,_internalformat,_width,_height,_border,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureImage2D_24740() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,,] _bits = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureImage2D(_texture,_target,_level,_internalformat,_width,_height,_border,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureImage2D_24741() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int _bits = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureImage2D(_texture,_target,_level,_internalformat,_width,_height,_border,_imageSize,ref _bits); -} -static unsafe void Test_CompressedTextureImage3D_24742() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _bits = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureImage3D(_texture,_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureImage3D_24743() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[] _bits = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureImage3D(_texture,_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureImage3D_24744() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,] _bits = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureImage3D(_texture,_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureImage3D_24745() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,,] _bits = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureImage3D(_texture,_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureImage3D_24746() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int _bits = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureImage3D(_texture,_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,ref _bits); -} -static unsafe void Test_CompressedTextureImage3D_24747() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _bits = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureImage3D(_texture,_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureImage3D_24748() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[] _bits = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureImage3D(_texture,_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureImage3D_24749() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,] _bits = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureImage3D(_texture,_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureImage3D_24750() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,,] _bits = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureImage3D(_texture,_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureImage3D_24751() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int _bits = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureImage3D(_texture,_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,ref _bits); -} -static unsafe void Test_CompressedTextureSubImage1D_24752() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _bits = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureSubImage1D(_texture,_target,_level,_xoffset,_width,_format,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureSubImage1D_24753() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[] _bits = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureSubImage1D(_texture,_target,_level,_xoffset,_width,_format,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureSubImage1D_24754() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,] _bits = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureSubImage1D(_texture,_target,_level,_xoffset,_width,_format,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureSubImage1D_24755() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,,] _bits = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureSubImage1D(_texture,_target,_level,_xoffset,_width,_format,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureSubImage1D_24756() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int _bits = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureSubImage1D(_texture,_target,_level,_xoffset,_width,_format,_imageSize,ref _bits); -} -static unsafe void Test_CompressedTextureSubImage1D_24757() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _bits = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureSubImage1D(_texture,_target,_level,_xoffset,_width,_format,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureSubImage1D_24758() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[] _bits = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureSubImage1D(_texture,_target,_level,_xoffset,_width,_format,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureSubImage1D_24759() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,] _bits = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureSubImage1D(_texture,_target,_level,_xoffset,_width,_format,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureSubImage1D_24760() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,,] _bits = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureSubImage1D(_texture,_target,_level,_xoffset,_width,_format,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureSubImage1D_24761() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int _bits = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureSubImage1D(_texture,_target,_level,_xoffset,_width,_format,_imageSize,ref _bits); -} -static unsafe void Test_CompressedTextureSubImage2D_24762() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _bits = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureSubImage2D(_texture,_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureSubImage2D_24763() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[] _bits = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureSubImage2D(_texture,_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureSubImage2D_24764() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,] _bits = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureSubImage2D(_texture,_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureSubImage2D_24765() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,,] _bits = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureSubImage2D(_texture,_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureSubImage2D_24766() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int _bits = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureSubImage2D(_texture,_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,ref _bits); -} -static unsafe void Test_CompressedTextureSubImage2D_24767() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _bits = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureSubImage2D(_texture,_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureSubImage2D_24768() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[] _bits = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureSubImage2D(_texture,_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureSubImage2D_24769() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,] _bits = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureSubImage2D(_texture,_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureSubImage2D_24770() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,,] _bits = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureSubImage2D(_texture,_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureSubImage2D_24771() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int _bits = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureSubImage2D(_texture,_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,ref _bits); -} -static unsafe void Test_CompressedTextureSubImage3D_24772() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _bits = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureSubImage3D(_texture,_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureSubImage3D_24773() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[] _bits = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureSubImage3D(_texture,_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureSubImage3D_24774() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,] _bits = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureSubImage3D(_texture,_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureSubImage3D_24775() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,,] _bits = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureSubImage3D(_texture,_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureSubImage3D_24776() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int _bits = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureSubImage3D(_texture,_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,ref _bits); -} -static unsafe void Test_CompressedTextureSubImage3D_24777() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _bits = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureSubImage3D(_texture,_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureSubImage3D_24778() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[] _bits = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureSubImage3D(_texture,_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureSubImage3D_24779() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,] _bits = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureSubImage3D(_texture,_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureSubImage3D_24780() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,,] _bits = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureSubImage3D(_texture,_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_bits); -} -static unsafe void Test_CompressedTextureSubImage3D_24781() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int _bits = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.CompressedTextureSubImage3D(_texture,_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,ref _bits); -} -static unsafe void Test_ConvolutionFilter1D_24782() { - OpenTK.Graphics.OpenGL.ConvolutionTargetExt _target = default(OpenTK.Graphics.OpenGL.ConvolutionTargetExt); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _image = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.ConvolutionFilter1D(_target,_internalformat,_width,_format,_type,_image); -} -static unsafe void Test_ConvolutionFilter1D_24783() { - OpenTK.Graphics.OpenGL.ConvolutionTargetExt _target = default(OpenTK.Graphics.OpenGL.ConvolutionTargetExt); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _image = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.ConvolutionFilter1D(_target,_internalformat,_width,_format,_type,_image); -} -static unsafe void Test_ConvolutionFilter1D_24784() { - OpenTK.Graphics.OpenGL.ConvolutionTargetExt _target = default(OpenTK.Graphics.OpenGL.ConvolutionTargetExt); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _image = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.ConvolutionFilter1D(_target,_internalformat,_width,_format,_type,_image); -} -static unsafe void Test_ConvolutionFilter1D_24785() { - OpenTK.Graphics.OpenGL.ConvolutionTargetExt _target = default(OpenTK.Graphics.OpenGL.ConvolutionTargetExt); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _image = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.ConvolutionFilter1D(_target,_internalformat,_width,_format,_type,_image); -} -static unsafe void Test_ConvolutionFilter1D_24786() { - OpenTK.Graphics.OpenGL.ConvolutionTargetExt _target = default(OpenTK.Graphics.OpenGL.ConvolutionTargetExt); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _image = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.ConvolutionFilter1D(_target,_internalformat,_width,_format,_type,ref _image); -} -static unsafe void Test_ConvolutionFilter1D_24787() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _image = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.ConvolutionFilter1D(_target,_internalformat,_width,_format,_type,_image); -} -static unsafe void Test_ConvolutionFilter1D_24788() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _image = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.ConvolutionFilter1D(_target,_internalformat,_width,_format,_type,_image); -} -static unsafe void Test_ConvolutionFilter1D_24789() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _image = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.ConvolutionFilter1D(_target,_internalformat,_width,_format,_type,_image); -} -static unsafe void Test_ConvolutionFilter1D_24790() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _image = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.ConvolutionFilter1D(_target,_internalformat,_width,_format,_type,_image); -} -static unsafe void Test_ConvolutionFilter1D_24791() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _image = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.ConvolutionFilter1D(_target,_internalformat,_width,_format,_type,ref _image); -} -static unsafe void Test_ConvolutionFilter2D_24792() { - OpenTK.Graphics.OpenGL.ConvolutionTargetExt _target = default(OpenTK.Graphics.OpenGL.ConvolutionTargetExt); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _image = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.ConvolutionFilter2D(_target,_internalformat,_width,_height,_format,_type,_image); -} -static unsafe void Test_ConvolutionFilter2D_24793() { - OpenTK.Graphics.OpenGL.ConvolutionTargetExt _target = default(OpenTK.Graphics.OpenGL.ConvolutionTargetExt); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _image = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.ConvolutionFilter2D(_target,_internalformat,_width,_height,_format,_type,_image); -} -static unsafe void Test_ConvolutionFilter2D_24794() { - OpenTK.Graphics.OpenGL.ConvolutionTargetExt _target = default(OpenTK.Graphics.OpenGL.ConvolutionTargetExt); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _image = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.ConvolutionFilter2D(_target,_internalformat,_width,_height,_format,_type,_image); -} -static unsafe void Test_ConvolutionFilter2D_24795() { - OpenTK.Graphics.OpenGL.ConvolutionTargetExt _target = default(OpenTK.Graphics.OpenGL.ConvolutionTargetExt); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _image = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.ConvolutionFilter2D(_target,_internalformat,_width,_height,_format,_type,_image); -} -static unsafe void Test_ConvolutionFilter2D_24796() { - OpenTK.Graphics.OpenGL.ConvolutionTargetExt _target = default(OpenTK.Graphics.OpenGL.ConvolutionTargetExt); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _image = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.ConvolutionFilter2D(_target,_internalformat,_width,_height,_format,_type,ref _image); -} -static unsafe void Test_ConvolutionFilter2D_24797() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _image = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.ConvolutionFilter2D(_target,_internalformat,_width,_height,_format,_type,_image); -} -static unsafe void Test_ConvolutionFilter2D_24798() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _image = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.ConvolutionFilter2D(_target,_internalformat,_width,_height,_format,_type,_image); -} -static unsafe void Test_ConvolutionFilter2D_24799() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _image = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.ConvolutionFilter2D(_target,_internalformat,_width,_height,_format,_type,_image); -} -static unsafe void Test_ConvolutionFilter2D_24800() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _image = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.ConvolutionFilter2D(_target,_internalformat,_width,_height,_format,_type,_image); -} -static unsafe void Test_ConvolutionFilter2D_24801() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _image = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.ConvolutionFilter2D(_target,_internalformat,_width,_height,_format,_type,ref _image); -} -static unsafe void Test_ConvolutionParameter_24802() { - OpenTK.Graphics.OpenGL.ConvolutionTargetExt _target = default(OpenTK.Graphics.OpenGL.ConvolutionTargetExt); - OpenTK.Graphics.OpenGL.ConvolutionParameterExt _pname = default(OpenTK.Graphics.OpenGL.ConvolutionParameterExt); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.ConvolutionParameter(_target,_pname,_params); -} -static unsafe void Test_ConvolutionParameter_24803() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.ExtConvolution _pname = default(OpenTK.Graphics.OpenGL.ExtConvolution); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.ConvolutionParameter(_target,_pname,_params); -} -static unsafe void Test_ConvolutionParameter_24804() { - OpenTK.Graphics.OpenGL.ConvolutionTargetExt _target = default(OpenTK.Graphics.OpenGL.ConvolutionTargetExt); - OpenTK.Graphics.OpenGL.ConvolutionParameterExt _pname = default(OpenTK.Graphics.OpenGL.ConvolutionParameterExt); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.ConvolutionParameter(_target,_pname,_params); -} -static unsafe void Test_ConvolutionParameter_24805() { - OpenTK.Graphics.OpenGL.ConvolutionTargetExt _target = default(OpenTK.Graphics.OpenGL.ConvolutionTargetExt); - OpenTK.Graphics.OpenGL.ConvolutionParameterExt _pname = default(OpenTK.Graphics.OpenGL.ConvolutionParameterExt); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.ConvolutionParameter(_target,_pname,_params); -} -static unsafe void Test_ConvolutionParameter_24806() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.ExtConvolution _pname = default(OpenTK.Graphics.OpenGL.ExtConvolution); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.ConvolutionParameter(_target,_pname,_params); -} -static unsafe void Test_ConvolutionParameter_24807() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.ExtConvolution _pname = default(OpenTK.Graphics.OpenGL.ExtConvolution); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.ConvolutionParameter(_target,_pname,_params); -} -static unsafe void Test_ConvolutionParameter_24808() { - OpenTK.Graphics.OpenGL.ConvolutionTargetExt _target = default(OpenTK.Graphics.OpenGL.ConvolutionTargetExt); - OpenTK.Graphics.OpenGL.ConvolutionParameterExt _pname = default(OpenTK.Graphics.OpenGL.ConvolutionParameterExt); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.ConvolutionParameter(_target,_pname,_params); -} -static unsafe void Test_ConvolutionParameter_24809() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.ExtConvolution _pname = default(OpenTK.Graphics.OpenGL.ExtConvolution); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.ConvolutionParameter(_target,_pname,_params); -} -static unsafe void Test_ConvolutionParameter_24810() { - OpenTK.Graphics.OpenGL.ConvolutionTargetExt _target = default(OpenTK.Graphics.OpenGL.ConvolutionTargetExt); - OpenTK.Graphics.OpenGL.ConvolutionParameterExt _pname = default(OpenTK.Graphics.OpenGL.ConvolutionParameterExt); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.ConvolutionParameter(_target,_pname,_params); -} -static unsafe void Test_ConvolutionParameter_24811() { - OpenTK.Graphics.OpenGL.ConvolutionTargetExt _target = default(OpenTK.Graphics.OpenGL.ConvolutionTargetExt); - OpenTK.Graphics.OpenGL.ConvolutionParameterExt _pname = default(OpenTK.Graphics.OpenGL.ConvolutionParameterExt); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.ConvolutionParameter(_target,_pname,_params); -} -static unsafe void Test_ConvolutionParameter_24812() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.ExtConvolution _pname = default(OpenTK.Graphics.OpenGL.ExtConvolution); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.ConvolutionParameter(_target,_pname,_params); -} -static unsafe void Test_ConvolutionParameter_24813() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.ExtConvolution _pname = default(OpenTK.Graphics.OpenGL.ExtConvolution); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.ConvolutionParameter(_target,_pname,_params); -} -static unsafe void Test_CopyColorSubTable_24814() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - System.Int32 _start = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.CopyColorSubTable(_target,_start,_x,_y,_width); -} -static unsafe void Test_CopyConvolutionFilter1D_24815() { - OpenTK.Graphics.OpenGL.ConvolutionTargetExt _target = default(OpenTK.Graphics.OpenGL.ConvolutionTargetExt); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.CopyConvolutionFilter1D(_target,_internalformat,_x,_y,_width); -} -static unsafe void Test_CopyConvolutionFilter1D_24816() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.CopyConvolutionFilter1D(_target,_internalformat,_x,_y,_width); -} -static unsafe void Test_CopyConvolutionFilter2D_24817() { - OpenTK.Graphics.OpenGL.ConvolutionTargetExt _target = default(OpenTK.Graphics.OpenGL.ConvolutionTargetExt); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.CopyConvolutionFilter2D(_target,_internalformat,_x,_y,_width,_height); -} -static unsafe void Test_CopyConvolutionFilter2D_24818() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.CopyConvolutionFilter2D(_target,_internalformat,_x,_y,_width,_height); -} -static unsafe void Test_CopyMultiTexImage1D_24819() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.CopyMultiTexImage1D(_texunit,_target,_level,_internalformat,_x,_y,_width,_border); -} -static unsafe void Test_CopyMultiTexImage2D_24820() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.CopyMultiTexImage2D(_texunit,_target,_level,_internalformat,_x,_y,_width,_height,_border); -} -static unsafe void Test_CopyMultiTexSubImage1D_24821() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.CopyMultiTexSubImage1D(_texunit,_target,_level,_xoffset,_x,_y,_width); -} -static unsafe void Test_CopyMultiTexSubImage2D_24822() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.CopyMultiTexSubImage2D(_texunit,_target,_level,_xoffset,_yoffset,_x,_y,_width,_height); -} -static unsafe void Test_CopyMultiTexSubImage3D_24823() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.CopyMultiTexSubImage3D(_texunit,_target,_level,_xoffset,_yoffset,_zoffset,_x,_y,_width,_height); -} -static unsafe void Test_CopyTexImage1D_24824() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.CopyTexImage1D(_target,_level,_internalformat,_x,_y,_width,_border); -} -static unsafe void Test_CopyTexImage2D_24825() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.CopyTexImage2D(_target,_level,_internalformat,_x,_y,_width,_height,_border); -} -static unsafe void Test_CopyTexSubImage1D_24826() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.CopyTexSubImage1D(_target,_level,_xoffset,_x,_y,_width); -} -static unsafe void Test_CopyTexSubImage2D_24827() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.CopyTexSubImage2D(_target,_level,_xoffset,_yoffset,_x,_y,_width,_height); -} -static unsafe void Test_CopyTexSubImage3D_24828() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.CopyTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_x,_y,_width,_height); -} -static unsafe void Test_CopyTextureImage1D_24829() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.CopyTextureImage1D(_texture,_target,_level,_internalformat,_x,_y,_width,_border); -} -static unsafe void Test_CopyTextureImage1D_24830() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.CopyTextureImage1D(_texture,_target,_level,_internalformat,_x,_y,_width,_border); -} -static unsafe void Test_CopyTextureImage2D_24831() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.CopyTextureImage2D(_texture,_target,_level,_internalformat,_x,_y,_width,_height,_border); -} -static unsafe void Test_CopyTextureImage2D_24832() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.CopyTextureImage2D(_texture,_target,_level,_internalformat,_x,_y,_width,_height,_border); -} -static unsafe void Test_CopyTextureSubImage1D_24833() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.CopyTextureSubImage1D(_texture,_target,_level,_xoffset,_x,_y,_width); -} -static unsafe void Test_CopyTextureSubImage1D_24834() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.CopyTextureSubImage1D(_texture,_target,_level,_xoffset,_x,_y,_width); -} -static unsafe void Test_CopyTextureSubImage2D_24835() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.CopyTextureSubImage2D(_texture,_target,_level,_xoffset,_yoffset,_x,_y,_width,_height); -} -static unsafe void Test_CopyTextureSubImage2D_24836() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.CopyTextureSubImage2D(_texture,_target,_level,_xoffset,_yoffset,_x,_y,_width,_height); -} -static unsafe void Test_CopyTextureSubImage3D_24837() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.CopyTextureSubImage3D(_texture,_target,_level,_xoffset,_yoffset,_zoffset,_x,_y,_width,_height); -} -static unsafe void Test_CopyTextureSubImage3D_24838() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.CopyTextureSubImage3D(_texture,_target,_level,_xoffset,_yoffset,_zoffset,_x,_y,_width,_height); -} -static unsafe void Test_CreateShaderProgram_24839() { - OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects _type = default(OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects); - System.String _string = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Ext.CreateShaderProgram(_type,_string); -} -static unsafe void Test_CreateShaderProgram_24840() { - OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects _type = default(OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects); - System.Int32 _count = default(System.Int32); - System.String[] _strings = default(System.String[]); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Ext.CreateShaderProgram(_type,_count,_strings); -} -static unsafe void Test_CullParameter_24841() { - OpenTK.Graphics.OpenGL.ExtCullVertex _pname = default(OpenTK.Graphics.OpenGL.ExtCullVertex); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.CullParameter(_pname,_params); -} -static unsafe void Test_CullParameter_24842() { - OpenTK.Graphics.OpenGL.ExtCullVertex _pname = default(OpenTK.Graphics.OpenGL.ExtCullVertex); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.CullParameter(_pname,out _params); -} -static unsafe void Test_CullParameter_24843() { - OpenTK.Graphics.OpenGL.ExtCullVertex _pname = default(OpenTK.Graphics.OpenGL.ExtCullVertex); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.CullParameter(_pname,_params); -} -static unsafe void Test_CullParameter_24844() { - OpenTK.Graphics.OpenGL.ExtCullVertex _pname = default(OpenTK.Graphics.OpenGL.ExtCullVertex); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.CullParameter(_pname,_params); -} -static unsafe void Test_CullParameter_24845() { - OpenTK.Graphics.OpenGL.ExtCullVertex _pname = default(OpenTK.Graphics.OpenGL.ExtCullVertex); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.CullParameter(_pname,out _params); -} -static unsafe void Test_CullParameter_24846() { - OpenTK.Graphics.OpenGL.ExtCullVertex _pname = default(OpenTK.Graphics.OpenGL.ExtCullVertex); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.CullParameter(_pname,_params); -} -static unsafe void Test_DeleteFramebuffer_24847() { - System.Int32 _framebuffers = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.DeleteFramebuffer(_framebuffers); -} -static unsafe void Test_DeleteFramebuffer_24848() { - System.UInt32 _framebuffers = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.DeleteFramebuffer(_framebuffers); -} -static unsafe void Test_DeleteFramebuffers_24849() { - System.Int32 _n = default(System.Int32); - System.Int32[] _framebuffers = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.DeleteFramebuffers(_n,_framebuffers); -} -static unsafe void Test_DeleteFramebuffers_24850() { - System.Int32 _n = default(System.Int32); - System.Int32 _framebuffers = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.DeleteFramebuffers(_n,ref _framebuffers); -} -static unsafe void Test_DeleteFramebuffers_24851() { - System.Int32 _n = default(System.Int32); - System.Int32* _framebuffers = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.DeleteFramebuffers(_n,_framebuffers); -} -static unsafe void Test_DeleteFramebuffers_24852() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _framebuffers = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Ext.DeleteFramebuffers(_n,_framebuffers); -} -static unsafe void Test_DeleteFramebuffers_24853() { - System.Int32 _n = default(System.Int32); - System.UInt32 _framebuffers = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.DeleteFramebuffers(_n,ref _framebuffers); -} -static unsafe void Test_DeleteFramebuffers_24854() { - System.Int32 _n = default(System.Int32); - System.UInt32* _framebuffers = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Ext.DeleteFramebuffers(_n,_framebuffers); -} -static unsafe void Test_DeleteProgramPipeline_24855() { - System.Int32 _pipelines = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.DeleteProgramPipeline(_pipelines); -} -static unsafe void Test_DeleteProgramPipeline_24856() { - System.UInt32 _pipelines = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.DeleteProgramPipeline(_pipelines); -} -static unsafe void Test_DeleteProgramPipelines_24857() { - System.Int32 _n = default(System.Int32); - System.Int32[] _pipelines = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.DeleteProgramPipelines(_n,_pipelines); -} -static unsafe void Test_DeleteProgramPipelines_24858() { - System.Int32 _n = default(System.Int32); - System.Int32 _pipelines = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.DeleteProgramPipelines(_n,ref _pipelines); -} -static unsafe void Test_DeleteProgramPipelines_24859() { - System.Int32 _n = default(System.Int32); - System.Int32* _pipelines = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.DeleteProgramPipelines(_n,_pipelines); -} -static unsafe void Test_DeleteProgramPipelines_24860() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _pipelines = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Ext.DeleteProgramPipelines(_n,_pipelines); -} -static unsafe void Test_DeleteProgramPipelines_24861() { - System.Int32 _n = default(System.Int32); - System.UInt32 _pipelines = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.DeleteProgramPipelines(_n,ref _pipelines); -} -static unsafe void Test_DeleteProgramPipelines_24862() { - System.Int32 _n = default(System.Int32); - System.UInt32* _pipelines = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Ext.DeleteProgramPipelines(_n,_pipelines); -} -static unsafe void Test_DeleteRenderbuffer_24863() { - System.Int32 _renderbuffers = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.DeleteRenderbuffer(_renderbuffers); -} -static unsafe void Test_DeleteRenderbuffer_24864() { - System.UInt32 _renderbuffers = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.DeleteRenderbuffer(_renderbuffers); -} -static unsafe void Test_DeleteRenderbuffers_24865() { - System.Int32 _n = default(System.Int32); - System.Int32[] _renderbuffers = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.DeleteRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_DeleteRenderbuffers_24866() { - System.Int32 _n = default(System.Int32); - System.Int32 _renderbuffers = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.DeleteRenderbuffers(_n,ref _renderbuffers); -} -static unsafe void Test_DeleteRenderbuffers_24867() { - System.Int32 _n = default(System.Int32); - System.Int32* _renderbuffers = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.DeleteRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_DeleteRenderbuffers_24868() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _renderbuffers = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Ext.DeleteRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_DeleteRenderbuffers_24869() { - System.Int32 _n = default(System.Int32); - System.UInt32 _renderbuffers = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.DeleteRenderbuffers(_n,ref _renderbuffers); -} -static unsafe void Test_DeleteRenderbuffers_24870() { - System.Int32 _n = default(System.Int32); - System.UInt32* _renderbuffers = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Ext.DeleteRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_DeleteTexture_24871() { - System.Int32 _textures = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.DeleteTexture(_textures); -} -static unsafe void Test_DeleteTexture_24872() { - System.UInt32 _textures = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.DeleteTexture(_textures); -} -static unsafe void Test_DeleteTextures_24873() { - System.Int32 _n = default(System.Int32); - System.Int32[] _textures = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.DeleteTextures(_n,_textures); -} -static unsafe void Test_DeleteTextures_24874() { - System.Int32 _n = default(System.Int32); - System.Int32 _textures = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.DeleteTextures(_n,ref _textures); -} -static unsafe void Test_DeleteTextures_24875() { - System.Int32 _n = default(System.Int32); - System.Int32* _textures = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.DeleteTextures(_n,_textures); -} -static unsafe void Test_DeleteTextures_24876() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _textures = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Ext.DeleteTextures(_n,_textures); -} -static unsafe void Test_DeleteTextures_24877() { - System.Int32 _n = default(System.Int32); - System.UInt32 _textures = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.DeleteTextures(_n,ref _textures); -} -static unsafe void Test_DeleteTextures_24878() { - System.Int32 _n = default(System.Int32); - System.UInt32* _textures = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Ext.DeleteTextures(_n,_textures); -} -static unsafe void Test_DeleteVertexShader_24879() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.DeleteVertexShader(_id); -} -static unsafe void Test_DeleteVertexShader_24880() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.DeleteVertexShader(_id); -} -static unsafe void Test_DepthBounds_24881() { - System.Double _zmin = default(System.Double); - System.Double _zmax = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.DepthBounds(_zmin,_zmax); -} -static unsafe void Test_DisableClientState_24882() { - OpenTK.Graphics.OpenGL.ArrayCap _array = default(OpenTK.Graphics.OpenGL.ArrayCap); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.DisableClientState(_array,_index); -} -static unsafe void Test_DisableClientState_24883() { - OpenTK.Graphics.OpenGL.ArrayCap _array = default(OpenTK.Graphics.OpenGL.ArrayCap); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.DisableClientState(_array,_index); -} -static unsafe void Test_DisableClientStateIndexed_24884() { - OpenTK.Graphics.OpenGL.ArrayCap _array = default(OpenTK.Graphics.OpenGL.ArrayCap); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.DisableClientStateIndexed(_array,_index); -} -static unsafe void Test_DisableClientStateIndexed_24885() { - OpenTK.Graphics.OpenGL.ArrayCap _array = default(OpenTK.Graphics.OpenGL.ArrayCap); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.DisableClientStateIndexed(_array,_index); -} -static unsafe void Test_DisableClientStateIndexed_24886() { - OpenTK.Graphics.OpenGL.EnableCap _array = default(OpenTK.Graphics.OpenGL.EnableCap); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.DisableClientStateIndexed(_array,_index); -} -static unsafe void Test_DisableClientStateIndexed_24887() { - OpenTK.Graphics.OpenGL.EnableCap _array = default(OpenTK.Graphics.OpenGL.EnableCap); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.DisableClientStateIndexed(_array,_index); -} -static unsafe void Test_DisableIndexed_24888() { - OpenTK.Graphics.OpenGL.ExtDrawBuffers2 _target = default(OpenTK.Graphics.OpenGL.ExtDrawBuffers2); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.DisableIndexed(_target,_index); -} -static unsafe void Test_DisableIndexed_24889() { - OpenTK.Graphics.OpenGL.ExtDrawBuffers2 _target = default(OpenTK.Graphics.OpenGL.ExtDrawBuffers2); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.DisableIndexed(_target,_index); -} -static unsafe void Test_DisableIndexed_24890() { - OpenTK.Graphics.OpenGL.IndexedEnableCap _target = default(OpenTK.Graphics.OpenGL.IndexedEnableCap); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.DisableIndexed(_target,_index); -} -static unsafe void Test_DisableIndexed_24891() { - OpenTK.Graphics.OpenGL.IndexedEnableCap _target = default(OpenTK.Graphics.OpenGL.IndexedEnableCap); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.DisableIndexed(_target,_index); -} -static unsafe void Test_DisableVariantClientState_24892() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.DisableVariantClientState(_id); -} -static unsafe void Test_DisableVariantClientState_24893() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.DisableVariantClientState(_id); -} -static unsafe void Test_DisableVertexArrayAttrib_24894() { - System.Int32 _vaobj = default(System.Int32); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.DisableVertexArrayAttrib(_vaobj,_index); -} -static unsafe void Test_DisableVertexArrayAttrib_24895() { - System.UInt32 _vaobj = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.DisableVertexArrayAttrib(_vaobj,_index); -} -static unsafe void Test_DisableVertexArray_24896() { - System.Int32 _vaobj = default(System.Int32); - OpenTK.Graphics.OpenGL.EnableCap _array = default(OpenTK.Graphics.OpenGL.EnableCap); - OpenTK.Graphics.OpenGL.GL.Ext.DisableVertexArray(_vaobj,_array); -} -static unsafe void Test_DisableVertexArray_24897() { - System.UInt32 _vaobj = default(System.UInt32); - OpenTK.Graphics.OpenGL.EnableCap _array = default(OpenTK.Graphics.OpenGL.EnableCap); - OpenTK.Graphics.OpenGL.GL.Ext.DisableVertexArray(_vaobj,_array); -} -static unsafe void Test_DrawArrays_24898() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.DrawArrays(_mode,_first,_count); -} -static unsafe void Test_DrawArrays_24899() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.DrawArrays(_mode,_first,_count); -} -static unsafe void Test_DrawArraysInstanced_24900() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _start = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.DrawArraysInstanced(_mode,_start,_count,_primcount); -} -static unsafe void Test_DrawArraysInstanced_24901() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _start = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.DrawArraysInstanced(_mode,_start,_count,_primcount); -} -static unsafe void Test_DrawElementsInstanced_24902() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_24903() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_24904() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_24905() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_24906() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.DrawElementsInstanced(_mode,_count,_type,ref _indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_24907() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_24908() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_24909() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_24910() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_24911() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.DrawElementsInstanced(_mode,_count,_type,ref _indices,_primcount); -} -static unsafe void Test_DrawRangeElements_24912() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_24913() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_24914() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_24915() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_24916() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.DrawRangeElements(_mode,_start,_end,_count,_type,ref _indices); -} -static unsafe void Test_DrawRangeElements_24917() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_24918() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_24919() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_24920() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_24921() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.DrawRangeElements(_mode,_start,_end,_count,_type,ref _indices); -} -static unsafe void Test_DrawRangeElements_24922() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_24923() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_24924() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_24925() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_24926() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.DrawRangeElements(_mode,_start,_end,_count,_type,ref _indices); -} -static unsafe void Test_DrawRangeElements_24927() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_24928() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_24929() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_24930() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_24931() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.DrawRangeElements(_mode,_start,_end,_count,_type,ref _indices); -} -static unsafe void Test_EdgeFlagPointer_24932() { - System.Int32 _stride = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean[] _pointer = default(System.Boolean[]); - OpenTK.Graphics.OpenGL.GL.Ext.EdgeFlagPointer(_stride,_count,_pointer); -} -static unsafe void Test_EdgeFlagPointer_24933() { - System.Int32 _stride = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _pointer = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Ext.EdgeFlagPointer(_stride,_count,ref _pointer); -} -static unsafe void Test_EdgeFlagPointer_24934() { - System.Int32 _stride = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean* _pointer = default(System.Boolean*); - OpenTK.Graphics.OpenGL.GL.Ext.EdgeFlagPointer(_stride,_count,_pointer); -} -static unsafe void Test_EnableClientState_24935() { - OpenTK.Graphics.OpenGL.ArrayCap _array = default(OpenTK.Graphics.OpenGL.ArrayCap); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.EnableClientState(_array,_index); -} -static unsafe void Test_EnableClientState_24936() { - OpenTK.Graphics.OpenGL.ArrayCap _array = default(OpenTK.Graphics.OpenGL.ArrayCap); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.EnableClientState(_array,_index); -} -static unsafe void Test_EnableClientStateIndexed_24937() { - OpenTK.Graphics.OpenGL.ArrayCap _array = default(OpenTK.Graphics.OpenGL.ArrayCap); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.EnableClientStateIndexed(_array,_index); -} -static unsafe void Test_EnableClientStateIndexed_24938() { - OpenTK.Graphics.OpenGL.ArrayCap _array = default(OpenTK.Graphics.OpenGL.ArrayCap); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.EnableClientStateIndexed(_array,_index); -} -static unsafe void Test_EnableClientStateIndexed_24939() { - OpenTK.Graphics.OpenGL.EnableCap _array = default(OpenTK.Graphics.OpenGL.EnableCap); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.EnableClientStateIndexed(_array,_index); -} -static unsafe void Test_EnableClientStateIndexed_24940() { - OpenTK.Graphics.OpenGL.EnableCap _array = default(OpenTK.Graphics.OpenGL.EnableCap); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.EnableClientStateIndexed(_array,_index); -} -static unsafe void Test_EnableIndexed_24941() { - OpenTK.Graphics.OpenGL.ExtDrawBuffers2 _target = default(OpenTK.Graphics.OpenGL.ExtDrawBuffers2); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.EnableIndexed(_target,_index); -} -static unsafe void Test_EnableIndexed_24942() { - OpenTK.Graphics.OpenGL.ExtDrawBuffers2 _target = default(OpenTK.Graphics.OpenGL.ExtDrawBuffers2); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.EnableIndexed(_target,_index); -} -static unsafe void Test_EnableIndexed_24943() { - OpenTK.Graphics.OpenGL.IndexedEnableCap _target = default(OpenTK.Graphics.OpenGL.IndexedEnableCap); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.EnableIndexed(_target,_index); -} -static unsafe void Test_EnableIndexed_24944() { - OpenTK.Graphics.OpenGL.IndexedEnableCap _target = default(OpenTK.Graphics.OpenGL.IndexedEnableCap); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.EnableIndexed(_target,_index); -} -static unsafe void Test_EnableVariantClientState_24945() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.EnableVariantClientState(_id); -} -static unsafe void Test_EnableVariantClientState_24946() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.EnableVariantClientState(_id); -} -static unsafe void Test_EnableVertexArrayAttrib_24947() { - System.Int32 _vaobj = default(System.Int32); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.EnableVertexArrayAttrib(_vaobj,_index); -} -static unsafe void Test_EnableVertexArrayAttrib_24948() { - System.UInt32 _vaobj = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.EnableVertexArrayAttrib(_vaobj,_index); -} -static unsafe void Test_EnableVertexArray_24949() { - System.Int32 _vaobj = default(System.Int32); - OpenTK.Graphics.OpenGL.EnableCap _array = default(OpenTK.Graphics.OpenGL.EnableCap); - OpenTK.Graphics.OpenGL.GL.Ext.EnableVertexArray(_vaobj,_array); -} -static unsafe void Test_EnableVertexArray_24950() { - System.UInt32 _vaobj = default(System.UInt32); - OpenTK.Graphics.OpenGL.EnableCap _array = default(OpenTK.Graphics.OpenGL.EnableCap); - OpenTK.Graphics.OpenGL.GL.Ext.EnableVertexArray(_vaobj,_array); -} -static unsafe void Test_EndTransformFeedback_24951() { - OpenTK.Graphics.OpenGL.GL.Ext.EndTransformFeedback(); -} -static unsafe void Test_EndVertexShader_24952() { - OpenTK.Graphics.OpenGL.GL.Ext.EndVertexShader(); -} -static unsafe void Test_ExtractComponent_24953() { - System.Int32 _res = default(System.Int32); - System.Int32 _src = default(System.Int32); - System.Int32 _num = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.ExtractComponent(_res,_src,_num); -} -static unsafe void Test_ExtractComponent_24954() { - System.UInt32 _res = default(System.UInt32); - System.UInt32 _src = default(System.UInt32); - System.UInt32 _num = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.ExtractComponent(_res,_src,_num); -} -static unsafe void Test_FlushMappedNamedBufferRange_24955() { - System.Int32 _buffer = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _length = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.FlushMappedNamedBufferRange(_buffer,_offset,_length); -} -static unsafe void Test_FlushMappedNamedBufferRange_24956() { - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _length = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.FlushMappedNamedBufferRange(_buffer,_offset,_length); -} -static unsafe void Test_FogCoord_24957() { - System.Double _coord = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.FogCoord(_coord); -} -static unsafe void Test_FogCoord_24958() { - System.Double* _coord = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.FogCoord(_coord); -} -static unsafe void Test_FogCoord_24959() { - System.Single _coord = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.FogCoord(_coord); -} -static unsafe void Test_FogCoord_24960() { - System.Single* _coord = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.FogCoord(_coord); -} -static unsafe void Test_FogCoordPointer_24961() { - OpenTK.Graphics.OpenGL.ExtFogCoord _type = default(OpenTK.Graphics.OpenGL.ExtFogCoord); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.FogCoordPointer(_type,_stride,_pointer); -} -static unsafe void Test_FogCoordPointer_24962() { - OpenTK.Graphics.OpenGL.ExtFogCoord _type = default(OpenTK.Graphics.OpenGL.ExtFogCoord); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.FogCoordPointer(_type,_stride,_pointer); -} -static unsafe void Test_FogCoordPointer_24963() { - OpenTK.Graphics.OpenGL.ExtFogCoord _type = default(OpenTK.Graphics.OpenGL.ExtFogCoord); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.FogCoordPointer(_type,_stride,_pointer); -} -static unsafe void Test_FogCoordPointer_24964() { - OpenTK.Graphics.OpenGL.ExtFogCoord _type = default(OpenTK.Graphics.OpenGL.ExtFogCoord); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.FogCoordPointer(_type,_stride,_pointer); -} -static unsafe void Test_FogCoordPointer_24965() { - OpenTK.Graphics.OpenGL.ExtFogCoord _type = default(OpenTK.Graphics.OpenGL.ExtFogCoord); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.FogCoordPointer(_type,_stride,ref _pointer); -} -static unsafe void Test_FogCoordPointer_24966() { - OpenTK.Graphics.OpenGL.FogPointerTypeExt _type = default(OpenTK.Graphics.OpenGL.FogPointerTypeExt); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.FogCoordPointer(_type,_stride,_pointer); -} -static unsafe void Test_FogCoordPointer_24967() { - OpenTK.Graphics.OpenGL.FogPointerTypeExt _type = default(OpenTK.Graphics.OpenGL.FogPointerTypeExt); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.FogCoordPointer(_type,_stride,_pointer); -} -static unsafe void Test_FogCoordPointer_24968() { - OpenTK.Graphics.OpenGL.FogPointerTypeExt _type = default(OpenTK.Graphics.OpenGL.FogPointerTypeExt); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.FogCoordPointer(_type,_stride,_pointer); -} -static unsafe void Test_FogCoordPointer_24969() { - OpenTK.Graphics.OpenGL.FogPointerTypeExt _type = default(OpenTK.Graphics.OpenGL.FogPointerTypeExt); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.FogCoordPointer(_type,_stride,_pointer); -} -static unsafe void Test_FogCoordPointer_24970() { - OpenTK.Graphics.OpenGL.FogPointerTypeExt _type = default(OpenTK.Graphics.OpenGL.FogPointerTypeExt); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.FogCoordPointer(_type,_stride,ref _pointer); -} -static unsafe void Test_FramebufferDrawBuffer_24971() { - System.Int32 _framebuffer = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawBufferMode _mode = default(OpenTK.Graphics.OpenGL.DrawBufferMode); - OpenTK.Graphics.OpenGL.GL.Ext.FramebufferDrawBuffer(_framebuffer,_mode); -} -static unsafe void Test_FramebufferDrawBuffer_24972() { - System.UInt32 _framebuffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.DrawBufferMode _mode = default(OpenTK.Graphics.OpenGL.DrawBufferMode); - OpenTK.Graphics.OpenGL.GL.Ext.FramebufferDrawBuffer(_framebuffer,_mode); -} -static unsafe void Test_FramebufferDrawBuffers_24973() { - System.Int32 _framebuffer = default(System.Int32); - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawBufferMode[] _bufs = default(OpenTK.Graphics.OpenGL.DrawBufferMode[]); - OpenTK.Graphics.OpenGL.GL.Ext.FramebufferDrawBuffers(_framebuffer,_n,_bufs); -} -static unsafe void Test_FramebufferDrawBuffers_24974() { - System.Int32 _framebuffer = default(System.Int32); - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawBufferMode _bufs = default(OpenTK.Graphics.OpenGL.DrawBufferMode); - OpenTK.Graphics.OpenGL.GL.Ext.FramebufferDrawBuffers(_framebuffer,_n,ref _bufs); -} -static unsafe void Test_FramebufferDrawBuffers_24975() { - System.Int32 _framebuffer = default(System.Int32); - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawBufferMode* _bufs = default(OpenTK.Graphics.OpenGL.DrawBufferMode*); - OpenTK.Graphics.OpenGL.GL.Ext.FramebufferDrawBuffers(_framebuffer,_n,_bufs); -} -static unsafe void Test_FramebufferDrawBuffers_24976() { - System.UInt32 _framebuffer = default(System.UInt32); - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawBufferMode[] _bufs = default(OpenTK.Graphics.OpenGL.DrawBufferMode[]); - OpenTK.Graphics.OpenGL.GL.Ext.FramebufferDrawBuffers(_framebuffer,_n,_bufs); -} -static unsafe void Test_FramebufferDrawBuffers_24977() { - System.UInt32 _framebuffer = default(System.UInt32); - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawBufferMode _bufs = default(OpenTK.Graphics.OpenGL.DrawBufferMode); - OpenTK.Graphics.OpenGL.GL.Ext.FramebufferDrawBuffers(_framebuffer,_n,ref _bufs); -} -static unsafe void Test_FramebufferDrawBuffers_24978() { - System.UInt32 _framebuffer = default(System.UInt32); - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawBufferMode* _bufs = default(OpenTK.Graphics.OpenGL.DrawBufferMode*); - OpenTK.Graphics.OpenGL.GL.Ext.FramebufferDrawBuffers(_framebuffer,_n,_bufs); -} -static unsafe void Test_FramebufferReadBuffer_24979() { - System.Int32 _framebuffer = default(System.Int32); - OpenTK.Graphics.OpenGL.ReadBufferMode _mode = default(OpenTK.Graphics.OpenGL.ReadBufferMode); - OpenTK.Graphics.OpenGL.GL.Ext.FramebufferReadBuffer(_framebuffer,_mode); -} -static unsafe void Test_FramebufferReadBuffer_24980() { - System.UInt32 _framebuffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.ReadBufferMode _mode = default(OpenTK.Graphics.OpenGL.ReadBufferMode); - OpenTK.Graphics.OpenGL.GL.Ext.FramebufferReadBuffer(_framebuffer,_mode); -} -static unsafe void Test_FramebufferRenderbuffer_24981() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - OpenTK.Graphics.OpenGL.RenderbufferTarget _renderbuffertarget = default(OpenTK.Graphics.OpenGL.RenderbufferTarget); - System.Int32 _renderbuffer = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.FramebufferRenderbuffer(_target,_attachment,_renderbuffertarget,_renderbuffer); -} -static unsafe void Test_FramebufferRenderbuffer_24982() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - OpenTK.Graphics.OpenGL.RenderbufferTarget _renderbuffertarget = default(OpenTK.Graphics.OpenGL.RenderbufferTarget); - System.UInt32 _renderbuffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.FramebufferRenderbuffer(_target,_attachment,_renderbuffertarget,_renderbuffer); -} -static unsafe void Test_FramebufferTexture1D_24983() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - OpenTK.Graphics.OpenGL.TextureTarget _textarget = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.FramebufferTexture1D(_target,_attachment,_textarget,_texture,_level); -} -static unsafe void Test_FramebufferTexture1D_24984() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - OpenTK.Graphics.OpenGL.TextureTarget _textarget = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.FramebufferTexture1D(_target,_attachment,_textarget,_texture,_level); -} -static unsafe void Test_FramebufferTexture2D_24985() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - OpenTK.Graphics.OpenGL.TextureTarget _textarget = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.FramebufferTexture2D(_target,_attachment,_textarget,_texture,_level); -} -static unsafe void Test_FramebufferTexture2D_24986() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - OpenTK.Graphics.OpenGL.TextureTarget _textarget = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.FramebufferTexture2D(_target,_attachment,_textarget,_texture,_level); -} -static unsafe void Test_FramebufferTexture3D_24987() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - OpenTK.Graphics.OpenGL.TextureTarget _textarget = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.FramebufferTexture3D(_target,_attachment,_textarget,_texture,_level,_zoffset); -} -static unsafe void Test_FramebufferTexture3D_24988() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - OpenTK.Graphics.OpenGL.TextureTarget _textarget = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.FramebufferTexture3D(_target,_attachment,_textarget,_texture,_level,_zoffset); -} -static unsafe void Test_FramebufferTexture_24989() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.FramebufferTexture(_target,_attachment,_texture,_level); -} -static unsafe void Test_FramebufferTexture_24990() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.FramebufferTexture(_target,_attachment,_texture,_level); -} -static unsafe void Test_FramebufferTextureFace_24991() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _face = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GL.Ext.FramebufferTextureFace(_target,_attachment,_texture,_level,_face); -} -static unsafe void Test_FramebufferTextureFace_24992() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _face = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GL.Ext.FramebufferTextureFace(_target,_attachment,_texture,_level,_face); -} -static unsafe void Test_FramebufferTextureLayer_24993() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - System.Int32 _layer = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.FramebufferTextureLayer(_target,_attachment,_texture,_level,_layer); -} -static unsafe void Test_FramebufferTextureLayer_24994() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - System.Int32 _layer = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.FramebufferTextureLayer(_target,_attachment,_texture,_level,_layer); -} -static unsafe void Test_GenerateMipmap_24995() { - OpenTK.Graphics.OpenGL.GenerateMipmapTarget _target = default(OpenTK.Graphics.OpenGL.GenerateMipmapTarget); - OpenTK.Graphics.OpenGL.GL.Ext.GenerateMipmap(_target); -} -static unsafe void Test_GenerateMultiTexMipmap_24996() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GL.Ext.GenerateMultiTexMipmap(_texunit,_target); -} -static unsafe void Test_GenerateTextureMipmap_24997() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GL.Ext.GenerateTextureMipmap(_texture,_target); -} -static unsafe void Test_GenerateTextureMipmap_24998() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GL.Ext.GenerateTextureMipmap(_texture,_target); -} -static unsafe void Test_GenFramebuffer_24999() { - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Ext.GenFramebuffer(); -} -static unsafe void Test_GenFramebuffers_25000() { - System.Int32 _n = default(System.Int32); - System.Int32[] _framebuffers = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GenFramebuffers(_n,_framebuffers); -} -static unsafe void Test_GenFramebuffers_25001() { - System.Int32 _n = default(System.Int32); - System.Int32 _framebuffers = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GenFramebuffers(_n,out _framebuffers); -} -static unsafe void Test_GenFramebuffers_25002() { - System.Int32 _n = default(System.Int32); - System.Int32* _framebuffers = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GenFramebuffers(_n,_framebuffers); -} -static unsafe void Test_GenFramebuffers_25003() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _framebuffers = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GenFramebuffers(_n,_framebuffers); -} -static unsafe void Test_GenFramebuffers_25004() { - System.Int32 _n = default(System.Int32); - System.UInt32 _framebuffers = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.GenFramebuffers(_n,out _framebuffers); -} -static unsafe void Test_GenFramebuffers_25005() { - System.Int32 _n = default(System.Int32); - System.UInt32* _framebuffers = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Ext.GenFramebuffers(_n,_framebuffers); -} -static unsafe void Test_GenProgramPipeline_25006() { - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Ext.GenProgramPipeline(); -} -static unsafe void Test_GenProgramPipelines_25007() { - System.Int32 _n = default(System.Int32); - System.Int32[] _pipelines = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GenProgramPipelines(_n,_pipelines); -} -static unsafe void Test_GenProgramPipelines_25008() { - System.Int32 _n = default(System.Int32); - System.Int32 _pipelines = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GenProgramPipelines(_n,out _pipelines); -} -static unsafe void Test_GenProgramPipelines_25009() { - System.Int32 _n = default(System.Int32); - System.Int32* _pipelines = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GenProgramPipelines(_n,_pipelines); -} -static unsafe void Test_GenProgramPipelines_25010() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _pipelines = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GenProgramPipelines(_n,_pipelines); -} -static unsafe void Test_GenProgramPipelines_25011() { - System.Int32 _n = default(System.Int32); - System.UInt32 _pipelines = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.GenProgramPipelines(_n,out _pipelines); -} -static unsafe void Test_GenProgramPipelines_25012() { - System.Int32 _n = default(System.Int32); - System.UInt32* _pipelines = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Ext.GenProgramPipelines(_n,_pipelines); -} -static unsafe void Test_GenRenderbuffer_25013() { - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Ext.GenRenderbuffer(); -} -static unsafe void Test_GenRenderbuffers_25014() { - System.Int32 _n = default(System.Int32); - System.Int32[] _renderbuffers = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GenRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_GenRenderbuffers_25015() { - System.Int32 _n = default(System.Int32); - System.Int32 _renderbuffers = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GenRenderbuffers(_n,out _renderbuffers); -} -static unsafe void Test_GenRenderbuffers_25016() { - System.Int32 _n = default(System.Int32); - System.Int32* _renderbuffers = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GenRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_GenRenderbuffers_25017() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _renderbuffers = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GenRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_GenRenderbuffers_25018() { - System.Int32 _n = default(System.Int32); - System.UInt32 _renderbuffers = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.GenRenderbuffers(_n,out _renderbuffers); -} -static unsafe void Test_GenRenderbuffers_25019() { - System.Int32 _n = default(System.Int32); - System.UInt32* _renderbuffers = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Ext.GenRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_GenSymbol_25020() { - OpenTK.Graphics.OpenGL.ExtVertexShader _datatype = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - OpenTK.Graphics.OpenGL.ExtVertexShader _storagetype = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - OpenTK.Graphics.OpenGL.ExtVertexShader _range = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Int32 _components = default(System.Int32); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Ext.GenSymbol(_datatype,_storagetype,_range,_components); -} -static unsafe void Test_GenSymbol_25021() { - OpenTK.Graphics.OpenGL.ExtVertexShader _datatype = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - OpenTK.Graphics.OpenGL.ExtVertexShader _storagetype = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - OpenTK.Graphics.OpenGL.ExtVertexShader _range = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.UInt32 _components = default(System.UInt32); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Ext.GenSymbol(_datatype,_storagetype,_range,_components); -} -static unsafe void Test_GenTexture_25022() { - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Ext.GenTexture(); -} -static unsafe void Test_GenTextures_25023() { - System.Int32 _n = default(System.Int32); - System.Int32[] _textures = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GenTextures(_n,_textures); -} -static unsafe void Test_GenTextures_25024() { - System.Int32 _n = default(System.Int32); - System.Int32 _textures = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GenTextures(_n,out _textures); -} -static unsafe void Test_GenTextures_25025() { - System.Int32 _n = default(System.Int32); - System.Int32* _textures = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GenTextures(_n,_textures); -} -static unsafe void Test_GenTextures_25026() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _textures = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GenTextures(_n,_textures); -} -static unsafe void Test_GenTextures_25027() { - System.Int32 _n = default(System.Int32); - System.UInt32 _textures = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.GenTextures(_n,out _textures); -} -static unsafe void Test_GenTextures_25028() { - System.Int32 _n = default(System.Int32); - System.UInt32* _textures = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Ext.GenTextures(_n,_textures); -} -static unsafe void Test_GenVertexShaders_25029() { - System.Int32 _range = default(System.Int32); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Ext.GenVertexShaders(_range); -} -static unsafe void Test_GenVertexShaders_25030() { - System.UInt32 _range = default(System.UInt32); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Ext.GenVertexShaders(_range); -} -static unsafe void Test_GetBooleanIndexed_25031() { - OpenTK.Graphics.OpenGL.All _target = default(OpenTK.Graphics.OpenGL.All); - System.Int32 _index = default(System.Int32); - System.Boolean[] _data = default(System.Boolean[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetBooleanIndexed(_target,_index,_data); -} -static unsafe void Test_GetBooleanIndexed_25032() { - OpenTK.Graphics.OpenGL.All _target = default(OpenTK.Graphics.OpenGL.All); - System.Int32 _index = default(System.Int32); - System.Boolean _data = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Ext.GetBooleanIndexed(_target,_index,out _data); -} -static unsafe void Test_GetBooleanIndexed_25033() { - OpenTK.Graphics.OpenGL.All _target = default(OpenTK.Graphics.OpenGL.All); - System.Int32 _index = default(System.Int32); - System.Boolean* _data = default(System.Boolean*); - OpenTK.Graphics.OpenGL.GL.Ext.GetBooleanIndexed(_target,_index,_data); -} -static unsafe void Test_GetBooleanIndexed_25034() { - OpenTK.Graphics.OpenGL.All _target = default(OpenTK.Graphics.OpenGL.All); - System.UInt32 _index = default(System.UInt32); - System.Boolean[] _data = default(System.Boolean[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetBooleanIndexed(_target,_index,_data); -} -static unsafe void Test_GetBooleanIndexed_25035() { - OpenTK.Graphics.OpenGL.All _target = default(OpenTK.Graphics.OpenGL.All); - System.UInt32 _index = default(System.UInt32); - System.Boolean _data = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Ext.GetBooleanIndexed(_target,_index,out _data); -} -static unsafe void Test_GetBooleanIndexed_25036() { - OpenTK.Graphics.OpenGL.All _target = default(OpenTK.Graphics.OpenGL.All); - System.UInt32 _index = default(System.UInt32); - System.Boolean* _data = default(System.Boolean*); - OpenTK.Graphics.OpenGL.GL.Ext.GetBooleanIndexed(_target,_index,_data); -} -static unsafe void Test_GetBooleanIndexed_25037() { - OpenTK.Graphics.OpenGL.ExtDrawBuffers2 _target = default(OpenTK.Graphics.OpenGL.ExtDrawBuffers2); - System.Int32 _index = default(System.Int32); - System.Boolean[] _data = default(System.Boolean[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetBooleanIndexed(_target,_index,_data); -} -static unsafe void Test_GetBooleanIndexed_25038() { - OpenTK.Graphics.OpenGL.ExtDrawBuffers2 _target = default(OpenTK.Graphics.OpenGL.ExtDrawBuffers2); - System.Int32 _index = default(System.Int32); - System.Boolean _data = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Ext.GetBooleanIndexed(_target,_index,out _data); -} -static unsafe void Test_GetBooleanIndexed_25039() { - OpenTK.Graphics.OpenGL.ExtDrawBuffers2 _target = default(OpenTK.Graphics.OpenGL.ExtDrawBuffers2); - System.Int32 _index = default(System.Int32); - System.Boolean* _data = default(System.Boolean*); - OpenTK.Graphics.OpenGL.GL.Ext.GetBooleanIndexed(_target,_index,_data); -} -static unsafe void Test_GetBooleanIndexed_25040() { - OpenTK.Graphics.OpenGL.ExtDrawBuffers2 _target = default(OpenTK.Graphics.OpenGL.ExtDrawBuffers2); - System.UInt32 _index = default(System.UInt32); - System.Boolean[] _data = default(System.Boolean[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetBooleanIndexed(_target,_index,_data); -} -static unsafe void Test_GetBooleanIndexed_25041() { - OpenTK.Graphics.OpenGL.ExtDrawBuffers2 _target = default(OpenTK.Graphics.OpenGL.ExtDrawBuffers2); - System.UInt32 _index = default(System.UInt32); - System.Boolean _data = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Ext.GetBooleanIndexed(_target,_index,out _data); -} -static unsafe void Test_GetBooleanIndexed_25042() { - OpenTK.Graphics.OpenGL.ExtDrawBuffers2 _target = default(OpenTK.Graphics.OpenGL.ExtDrawBuffers2); - System.UInt32 _index = default(System.UInt32); - System.Boolean* _data = default(System.Boolean*); - OpenTK.Graphics.OpenGL.GL.Ext.GetBooleanIndexed(_target,_index,_data); -} -static unsafe void Test_GetColorTable_25043() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.GetColorTable(_target,_format,_type,_data); -} -static unsafe void Test_GetColorTable_25044() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetColorTable(_target,_format,_type,_data); -} -static unsafe void Test_GetColorTable_25045() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetColorTable(_target,_format,_type,_data); -} -static unsafe void Test_GetColorTable_25046() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetColorTable(_target,_format,_type,_data); -} -static unsafe void Test_GetColorTable_25047() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.GetColorTable(_target,_format,_type,ref _data); -} -static unsafe void Test_GetColorTableParameter_25048() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - OpenTK.Graphics.OpenGL.GetColorTableParameterPName _pname = default(OpenTK.Graphics.OpenGL.GetColorTableParameterPName); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetColorTableParameter(_target,_pname,_params); -} -static unsafe void Test_GetColorTableParameter_25049() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - OpenTK.Graphics.OpenGL.GetColorTableParameterPName _pname = default(OpenTK.Graphics.OpenGL.GetColorTableParameterPName); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.GetColorTableParameter(_target,_pname,out _params); -} -static unsafe void Test_GetColorTableParameter_25050() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - OpenTK.Graphics.OpenGL.GetColorTableParameterPName _pname = default(OpenTK.Graphics.OpenGL.GetColorTableParameterPName); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.GetColorTableParameter(_target,_pname,_params); -} -static unsafe void Test_GetColorTableParameter_25051() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - OpenTK.Graphics.OpenGL.GetColorTableParameterPName _pname = default(OpenTK.Graphics.OpenGL.GetColorTableParameterPName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetColorTableParameter(_target,_pname,_params); -} -static unsafe void Test_GetColorTableParameter_25052() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - OpenTK.Graphics.OpenGL.GetColorTableParameterPName _pname = default(OpenTK.Graphics.OpenGL.GetColorTableParameterPName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetColorTableParameter(_target,_pname,out _params); -} -static unsafe void Test_GetColorTableParameter_25053() { - OpenTK.Graphics.OpenGL.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL.ColorTableTarget); - OpenTK.Graphics.OpenGL.GetColorTableParameterPName _pname = default(OpenTK.Graphics.OpenGL.GetColorTableParameterPName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetColorTableParameter(_target,_pname,_params); -} -static unsafe void Test_GetCompressedMultiTexImage_25054() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _lod = default(System.Int32); - System.IntPtr _img = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.GetCompressedMultiTexImage(_texunit,_target,_lod,_img); -} -static unsafe void Test_GetCompressedMultiTexImage_25055() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _lod = default(System.Int32); - int[] _img = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetCompressedMultiTexImage(_texunit,_target,_lod,_img); -} -static unsafe void Test_GetCompressedMultiTexImage_25056() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _lod = default(System.Int32); - int[,] _img = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetCompressedMultiTexImage(_texunit,_target,_lod,_img); -} -static unsafe void Test_GetCompressedMultiTexImage_25057() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _lod = default(System.Int32); - int[,,] _img = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetCompressedMultiTexImage(_texunit,_target,_lod,_img); -} -static unsafe void Test_GetCompressedMultiTexImage_25058() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _lod = default(System.Int32); - int _img = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.GetCompressedMultiTexImage(_texunit,_target,_lod,ref _img); -} -static unsafe void Test_GetCompressedTextureImage_25059() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _lod = default(System.Int32); - System.IntPtr _img = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.GetCompressedTextureImage(_texture,_target,_lod,_img); -} -static unsafe void Test_GetCompressedTextureImage_25060() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _lod = default(System.Int32); - int[] _img = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetCompressedTextureImage(_texture,_target,_lod,_img); -} -static unsafe void Test_GetCompressedTextureImage_25061() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _lod = default(System.Int32); - int[,] _img = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetCompressedTextureImage(_texture,_target,_lod,_img); -} -static unsafe void Test_GetCompressedTextureImage_25062() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _lod = default(System.Int32); - int[,,] _img = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetCompressedTextureImage(_texture,_target,_lod,_img); -} -static unsafe void Test_GetCompressedTextureImage_25063() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _lod = default(System.Int32); - int _img = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.GetCompressedTextureImage(_texture,_target,_lod,ref _img); -} -static unsafe void Test_GetCompressedTextureImage_25064() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _lod = default(System.Int32); - System.IntPtr _img = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.GetCompressedTextureImage(_texture,_target,_lod,_img); -} -static unsafe void Test_GetCompressedTextureImage_25065() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _lod = default(System.Int32); - int[] _img = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetCompressedTextureImage(_texture,_target,_lod,_img); -} -static unsafe void Test_GetCompressedTextureImage_25066() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _lod = default(System.Int32); - int[,] _img = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetCompressedTextureImage(_texture,_target,_lod,_img); -} -static unsafe void Test_GetCompressedTextureImage_25067() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _lod = default(System.Int32); - int[,,] _img = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetCompressedTextureImage(_texture,_target,_lod,_img); -} -static unsafe void Test_GetCompressedTextureImage_25068() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _lod = default(System.Int32); - int _img = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.GetCompressedTextureImage(_texture,_target,_lod,ref _img); -} -static unsafe void Test_GetConvolutionFilter_25069() { - OpenTK.Graphics.OpenGL.ConvolutionTargetExt _target = default(OpenTK.Graphics.OpenGL.ConvolutionTargetExt); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _image = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.GetConvolutionFilter(_target,_format,_type,_image); -} -static unsafe void Test_GetConvolutionFilter_25070() { - OpenTK.Graphics.OpenGL.ConvolutionTargetExt _target = default(OpenTK.Graphics.OpenGL.ConvolutionTargetExt); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _image = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetConvolutionFilter(_target,_format,_type,_image); -} -static unsafe void Test_GetConvolutionFilter_25071() { - OpenTK.Graphics.OpenGL.ConvolutionTargetExt _target = default(OpenTK.Graphics.OpenGL.ConvolutionTargetExt); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _image = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetConvolutionFilter(_target,_format,_type,_image); -} -static unsafe void Test_GetConvolutionFilter_25072() { - OpenTK.Graphics.OpenGL.ConvolutionTargetExt _target = default(OpenTK.Graphics.OpenGL.ConvolutionTargetExt); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _image = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetConvolutionFilter(_target,_format,_type,_image); -} -static unsafe void Test_GetConvolutionFilter_25073() { - OpenTK.Graphics.OpenGL.ConvolutionTargetExt _target = default(OpenTK.Graphics.OpenGL.ConvolutionTargetExt); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _image = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.GetConvolutionFilter(_target,_format,_type,ref _image); -} -static unsafe void Test_GetConvolutionFilter_25074() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _image = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.GetConvolutionFilter(_target,_format,_type,_image); -} -static unsafe void Test_GetConvolutionFilter_25075() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _image = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetConvolutionFilter(_target,_format,_type,_image); -} -static unsafe void Test_GetConvolutionFilter_25076() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _image = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetConvolutionFilter(_target,_format,_type,_image); -} -static unsafe void Test_GetConvolutionFilter_25077() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _image = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetConvolutionFilter(_target,_format,_type,_image); -} -static unsafe void Test_GetConvolutionFilter_25078() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _image = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.GetConvolutionFilter(_target,_format,_type,ref _image); -} -static unsafe void Test_GetConvolutionParameter_25079() { - OpenTK.Graphics.OpenGL.ConvolutionTargetExt _target = default(OpenTK.Graphics.OpenGL.ConvolutionTargetExt); - OpenTK.Graphics.OpenGL.ConvolutionParameterExt _pname = default(OpenTK.Graphics.OpenGL.ConvolutionParameterExt); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetConvolutionParameter(_target,_pname,_params); -} -static unsafe void Test_GetConvolutionParameter_25080() { - OpenTK.Graphics.OpenGL.ConvolutionTargetExt _target = default(OpenTK.Graphics.OpenGL.ConvolutionTargetExt); - OpenTK.Graphics.OpenGL.ConvolutionParameterExt _pname = default(OpenTK.Graphics.OpenGL.ConvolutionParameterExt); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.GetConvolutionParameter(_target,_pname,out _params); -} -static unsafe void Test_GetConvolutionParameter_25081() { - OpenTK.Graphics.OpenGL.ConvolutionTargetExt _target = default(OpenTK.Graphics.OpenGL.ConvolutionTargetExt); - OpenTK.Graphics.OpenGL.ConvolutionParameterExt _pname = default(OpenTK.Graphics.OpenGL.ConvolutionParameterExt); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.GetConvolutionParameter(_target,_pname,_params); -} -static unsafe void Test_GetConvolutionParameter_25082() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.ExtConvolution _pname = default(OpenTK.Graphics.OpenGL.ExtConvolution); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetConvolutionParameter(_target,_pname,_params); -} -static unsafe void Test_GetConvolutionParameter_25083() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.ExtConvolution _pname = default(OpenTK.Graphics.OpenGL.ExtConvolution); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.GetConvolutionParameter(_target,_pname,out _params); -} -static unsafe void Test_GetConvolutionParameter_25084() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.ExtConvolution _pname = default(OpenTK.Graphics.OpenGL.ExtConvolution); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.GetConvolutionParameter(_target,_pname,_params); -} -static unsafe void Test_GetConvolutionParameter_25085() { - OpenTK.Graphics.OpenGL.ConvolutionTargetExt _target = default(OpenTK.Graphics.OpenGL.ConvolutionTargetExt); - OpenTK.Graphics.OpenGL.ConvolutionParameterExt _pname = default(OpenTK.Graphics.OpenGL.ConvolutionParameterExt); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetConvolutionParameter(_target,_pname,_params); -} -static unsafe void Test_GetConvolutionParameter_25086() { - OpenTK.Graphics.OpenGL.ConvolutionTargetExt _target = default(OpenTK.Graphics.OpenGL.ConvolutionTargetExt); - OpenTK.Graphics.OpenGL.ConvolutionParameterExt _pname = default(OpenTK.Graphics.OpenGL.ConvolutionParameterExt); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetConvolutionParameter(_target,_pname,out _params); -} -static unsafe void Test_GetConvolutionParameter_25087() { - OpenTK.Graphics.OpenGL.ConvolutionTargetExt _target = default(OpenTK.Graphics.OpenGL.ConvolutionTargetExt); - OpenTK.Graphics.OpenGL.ConvolutionParameterExt _pname = default(OpenTK.Graphics.OpenGL.ConvolutionParameterExt); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetConvolutionParameter(_target,_pname,_params); -} -static unsafe void Test_GetConvolutionParameter_25088() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.ExtConvolution _pname = default(OpenTK.Graphics.OpenGL.ExtConvolution); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetConvolutionParameter(_target,_pname,_params); -} -static unsafe void Test_GetConvolutionParameter_25089() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.ExtConvolution _pname = default(OpenTK.Graphics.OpenGL.ExtConvolution); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetConvolutionParameter(_target,_pname,out _params); -} -static unsafe void Test_GetConvolutionParameter_25090() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.ExtConvolution _pname = default(OpenTK.Graphics.OpenGL.ExtConvolution); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetConvolutionParameter(_target,_pname,_params); -} -static unsafe void Test_GetDouble_25091() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetDouble(_pname,_index,_params); -} -static unsafe void Test_GetDouble_25092() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.GetDouble(_pname,_index,out _params); -} -static unsafe void Test_GetDouble_25093() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.GetDouble(_pname,_index,_params); -} -static unsafe void Test_GetDouble_25094() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetDouble(_pname,_index,_params); -} -static unsafe void Test_GetDouble_25095() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.GetDouble(_pname,_index,out _params); -} -static unsafe void Test_GetDouble_25096() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.GetDouble(_pname,_index,_params); -} -static unsafe void Test_GetDoubleIndexed_25097() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - System.Double[] _data = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetDoubleIndexed(_target,_index,_data); -} -static unsafe void Test_GetDoubleIndexed_25098() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - System.Double _data = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.GetDoubleIndexed(_target,_index,out _data); -} -static unsafe void Test_GetDoubleIndexed_25099() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - System.Double* _data = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.GetDoubleIndexed(_target,_index,_data); -} -static unsafe void Test_GetDoubleIndexed_25100() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Double[] _data = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetDoubleIndexed(_target,_index,_data); -} -static unsafe void Test_GetDoubleIndexed_25101() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Double _data = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.GetDoubleIndexed(_target,_index,out _data); -} -static unsafe void Test_GetDoubleIndexed_25102() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Double* _data = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.GetDoubleIndexed(_target,_index,_data); -} -static unsafe void Test_GetFloat_25103() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetFloat(_pname,_index,_params); -} -static unsafe void Test_GetFloat_25104() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.GetFloat(_pname,_index,out _params); -} -static unsafe void Test_GetFloat_25105() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.GetFloat(_pname,_index,_params); -} -static unsafe void Test_GetFloat_25106() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetFloat(_pname,_index,_params); -} -static unsafe void Test_GetFloat_25107() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.GetFloat(_pname,_index,out _params); -} -static unsafe void Test_GetFloat_25108() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.GetFloat(_pname,_index,_params); -} -static unsafe void Test_GetFloatIndexed_25109() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - System.Single[] _data = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetFloatIndexed(_target,_index,_data); -} -static unsafe void Test_GetFloatIndexed_25110() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - System.Single _data = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.GetFloatIndexed(_target,_index,out _data); -} -static unsafe void Test_GetFloatIndexed_25111() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - System.Single* _data = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.GetFloatIndexed(_target,_index,_data); -} -static unsafe void Test_GetFloatIndexed_25112() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Single[] _data = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetFloatIndexed(_target,_index,_data); -} -static unsafe void Test_GetFloatIndexed_25113() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Single _data = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.GetFloatIndexed(_target,_index,out _data); -} -static unsafe void Test_GetFloatIndexed_25114() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Single* _data = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.GetFloatIndexed(_target,_index,_data); -} -static unsafe void Test_GetFragDataLocation_25115() { - System.Int32 _program = default(System.Int32); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Ext.GetFragDataLocation(_program,_name); -} -static unsafe void Test_GetFragDataLocation_25116() { - System.UInt32 _program = default(System.UInt32); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Ext.GetFragDataLocation(_program,_name); -} -static unsafe void Test_GetFramebufferAttachmentParameter_25117() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - OpenTK.Graphics.OpenGL.FramebufferParameterName _pname = default(OpenTK.Graphics.OpenGL.FramebufferParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetFramebufferAttachmentParameter(_target,_attachment,_pname,_params); -} -static unsafe void Test_GetFramebufferAttachmentParameter_25118() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - OpenTK.Graphics.OpenGL.FramebufferParameterName _pname = default(OpenTK.Graphics.OpenGL.FramebufferParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetFramebufferAttachmentParameter(_target,_attachment,_pname,out _params); -} -static unsafe void Test_GetFramebufferAttachmentParameter_25119() { - OpenTK.Graphics.OpenGL.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL.FramebufferTarget); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - OpenTK.Graphics.OpenGL.FramebufferParameterName _pname = default(OpenTK.Graphics.OpenGL.FramebufferParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetFramebufferAttachmentParameter(_target,_attachment,_pname,_params); -} -static unsafe void Test_GetFramebufferParameter_25120() { - System.Int32 _framebuffer = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetFramebufferParameter(_framebuffer,_pname,_params); -} -static unsafe void Test_GetFramebufferParameter_25121() { - System.Int32 _framebuffer = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetFramebufferParameter(_framebuffer,_pname,out _params); -} -static unsafe void Test_GetFramebufferParameter_25122() { - System.Int32 _framebuffer = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetFramebufferParameter(_framebuffer,_pname,_params); -} -static unsafe void Test_GetFramebufferParameter_25123() { - System.UInt32 _framebuffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetFramebufferParameter(_framebuffer,_pname,_params); -} -static unsafe void Test_GetFramebufferParameter_25124() { - System.UInt32 _framebuffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetFramebufferParameter(_framebuffer,_pname,out _params); -} -static unsafe void Test_GetFramebufferParameter_25125() { - System.UInt32 _framebuffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetFramebufferParameter(_framebuffer,_pname,_params); -} -static unsafe void Test_GetHistogram_25126() { - OpenTK.Graphics.OpenGL.ExtHistogram _target = default(OpenTK.Graphics.OpenGL.ExtHistogram); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _values = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.GetHistogram(_target,_reset,_format,_type,_values); -} -static unsafe void Test_GetHistogram_25127() { - OpenTK.Graphics.OpenGL.ExtHistogram _target = default(OpenTK.Graphics.OpenGL.ExtHistogram); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _values = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetHistogram(_target,_reset,_format,_type,_values); -} -static unsafe void Test_GetHistogram_25128() { - OpenTK.Graphics.OpenGL.ExtHistogram _target = default(OpenTK.Graphics.OpenGL.ExtHistogram); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _values = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetHistogram(_target,_reset,_format,_type,_values); -} -static unsafe void Test_GetHistogram_25129() { - OpenTK.Graphics.OpenGL.ExtHistogram _target = default(OpenTK.Graphics.OpenGL.ExtHistogram); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _values = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetHistogram(_target,_reset,_format,_type,_values); -} -static unsafe void Test_GetHistogram_25130() { - OpenTK.Graphics.OpenGL.ExtHistogram _target = default(OpenTK.Graphics.OpenGL.ExtHistogram); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _values = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.GetHistogram(_target,_reset,_format,_type,ref _values); -} -static unsafe void Test_GetHistogram_25131() { - OpenTK.Graphics.OpenGL.HistogramTargetExt _target = default(OpenTK.Graphics.OpenGL.HistogramTargetExt); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _values = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.GetHistogram(_target,_reset,_format,_type,_values); -} -static unsafe void Test_GetHistogram_25132() { - OpenTK.Graphics.OpenGL.HistogramTargetExt _target = default(OpenTK.Graphics.OpenGL.HistogramTargetExt); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _values = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetHistogram(_target,_reset,_format,_type,_values); -} -static unsafe void Test_GetHistogram_25133() { - OpenTK.Graphics.OpenGL.HistogramTargetExt _target = default(OpenTK.Graphics.OpenGL.HistogramTargetExt); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _values = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetHistogram(_target,_reset,_format,_type,_values); -} -static unsafe void Test_GetHistogram_25134() { - OpenTK.Graphics.OpenGL.HistogramTargetExt _target = default(OpenTK.Graphics.OpenGL.HistogramTargetExt); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _values = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetHistogram(_target,_reset,_format,_type,_values); -} -static unsafe void Test_GetHistogram_25135() { - OpenTK.Graphics.OpenGL.HistogramTargetExt _target = default(OpenTK.Graphics.OpenGL.HistogramTargetExt); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _values = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.GetHistogram(_target,_reset,_format,_type,ref _values); -} -static unsafe void Test_GetHistogramParameter_25136() { - OpenTK.Graphics.OpenGL.ExtHistogram _target = default(OpenTK.Graphics.OpenGL.ExtHistogram); - OpenTK.Graphics.OpenGL.ExtHistogram _pname = default(OpenTK.Graphics.OpenGL.ExtHistogram); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetHistogramParameter(_target,_pname,_params); -} -static unsafe void Test_GetHistogramParameter_25137() { - OpenTK.Graphics.OpenGL.ExtHistogram _target = default(OpenTK.Graphics.OpenGL.ExtHistogram); - OpenTK.Graphics.OpenGL.ExtHistogram _pname = default(OpenTK.Graphics.OpenGL.ExtHistogram); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.GetHistogramParameter(_target,_pname,out _params); -} -static unsafe void Test_GetHistogramParameter_25138() { - OpenTK.Graphics.OpenGL.ExtHistogram _target = default(OpenTK.Graphics.OpenGL.ExtHistogram); - OpenTK.Graphics.OpenGL.ExtHistogram _pname = default(OpenTK.Graphics.OpenGL.ExtHistogram); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.GetHistogramParameter(_target,_pname,_params); -} -static unsafe void Test_GetHistogramParameter_25139() { - OpenTK.Graphics.OpenGL.HistogramTargetExt _target = default(OpenTK.Graphics.OpenGL.HistogramTargetExt); - OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt _pname = default(OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetHistogramParameter(_target,_pname,_params); -} -static unsafe void Test_GetHistogramParameter_25140() { - OpenTK.Graphics.OpenGL.HistogramTargetExt _target = default(OpenTK.Graphics.OpenGL.HistogramTargetExt); - OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt _pname = default(OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.GetHistogramParameter(_target,_pname,out _params); -} -static unsafe void Test_GetHistogramParameter_25141() { - OpenTK.Graphics.OpenGL.HistogramTargetExt _target = default(OpenTK.Graphics.OpenGL.HistogramTargetExt); - OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt _pname = default(OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.GetHistogramParameter(_target,_pname,_params); -} -static unsafe void Test_GetHistogramParameter_25142() { - OpenTK.Graphics.OpenGL.ExtHistogram _target = default(OpenTK.Graphics.OpenGL.ExtHistogram); - OpenTK.Graphics.OpenGL.ExtHistogram _pname = default(OpenTK.Graphics.OpenGL.ExtHistogram); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetHistogramParameter(_target,_pname,_params); -} -static unsafe void Test_GetHistogramParameter_25143() { - OpenTK.Graphics.OpenGL.ExtHistogram _target = default(OpenTK.Graphics.OpenGL.ExtHistogram); - OpenTK.Graphics.OpenGL.ExtHistogram _pname = default(OpenTK.Graphics.OpenGL.ExtHistogram); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetHistogramParameter(_target,_pname,out _params); -} -static unsafe void Test_GetHistogramParameter_25144() { - OpenTK.Graphics.OpenGL.ExtHistogram _target = default(OpenTK.Graphics.OpenGL.ExtHistogram); - OpenTK.Graphics.OpenGL.ExtHistogram _pname = default(OpenTK.Graphics.OpenGL.ExtHistogram); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetHistogramParameter(_target,_pname,_params); -} -static unsafe void Test_GetHistogramParameter_25145() { - OpenTK.Graphics.OpenGL.HistogramTargetExt _target = default(OpenTK.Graphics.OpenGL.HistogramTargetExt); - OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt _pname = default(OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetHistogramParameter(_target,_pname,_params); -} -static unsafe void Test_GetHistogramParameter_25146() { - OpenTK.Graphics.OpenGL.HistogramTargetExt _target = default(OpenTK.Graphics.OpenGL.HistogramTargetExt); - OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt _pname = default(OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetHistogramParameter(_target,_pname,out _params); -} -static unsafe void Test_GetHistogramParameter_25147() { - OpenTK.Graphics.OpenGL.HistogramTargetExt _target = default(OpenTK.Graphics.OpenGL.HistogramTargetExt); - OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt _pname = default(OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetHistogramParameter(_target,_pname,_params); -} -static unsafe void Test_GetIntegerIndexed_25148() { - OpenTK.Graphics.OpenGL.ExtDrawBuffers2 _target = default(OpenTK.Graphics.OpenGL.ExtDrawBuffers2); - System.Int32 _index = default(System.Int32); - System.Int32[] _data = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetIntegerIndexed(_target,_index,_data); -} -static unsafe void Test_GetIntegerIndexed_25149() { - OpenTK.Graphics.OpenGL.ExtDrawBuffers2 _target = default(OpenTK.Graphics.OpenGL.ExtDrawBuffers2); - System.Int32 _index = default(System.Int32); - System.Int32 _data = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetIntegerIndexed(_target,_index,out _data); -} -static unsafe void Test_GetIntegerIndexed_25150() { - OpenTK.Graphics.OpenGL.ExtDrawBuffers2 _target = default(OpenTK.Graphics.OpenGL.ExtDrawBuffers2); - System.Int32 _index = default(System.Int32); - System.Int32* _data = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetIntegerIndexed(_target,_index,_data); -} -static unsafe void Test_GetIntegerIndexed_25151() { - OpenTK.Graphics.OpenGL.ExtDrawBuffers2 _target = default(OpenTK.Graphics.OpenGL.ExtDrawBuffers2); - System.UInt32 _index = default(System.UInt32); - System.Int32[] _data = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetIntegerIndexed(_target,_index,_data); -} -static unsafe void Test_GetIntegerIndexed_25152() { - OpenTK.Graphics.OpenGL.ExtDrawBuffers2 _target = default(OpenTK.Graphics.OpenGL.ExtDrawBuffers2); - System.UInt32 _index = default(System.UInt32); - System.Int32 _data = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetIntegerIndexed(_target,_index,out _data); -} -static unsafe void Test_GetIntegerIndexed_25153() { - OpenTK.Graphics.OpenGL.ExtDrawBuffers2 _target = default(OpenTK.Graphics.OpenGL.ExtDrawBuffers2); - System.UInt32 _index = default(System.UInt32); - System.Int32* _data = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetIntegerIndexed(_target,_index,_data); -} -static unsafe void Test_GetIntegerIndexed_25154() { - OpenTK.Graphics.OpenGL.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Int32[] _data = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetIntegerIndexed(_target,_index,_data); -} -static unsafe void Test_GetIntegerIndexed_25155() { - OpenTK.Graphics.OpenGL.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Int32 _data = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetIntegerIndexed(_target,_index,out _data); -} -static unsafe void Test_GetIntegerIndexed_25156() { - OpenTK.Graphics.OpenGL.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Int32* _data = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetIntegerIndexed(_target,_index,_data); -} -static unsafe void Test_GetIntegerIndexed_25157() { - OpenTK.Graphics.OpenGL.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Int32[] _data = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetIntegerIndexed(_target,_index,_data); -} -static unsafe void Test_GetIntegerIndexed_25158() { - OpenTK.Graphics.OpenGL.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Int32 _data = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetIntegerIndexed(_target,_index,out _data); -} -static unsafe void Test_GetIntegerIndexed_25159() { - OpenTK.Graphics.OpenGL.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Int32* _data = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetIntegerIndexed(_target,_index,_data); -} -static unsafe void Test_GetInvariantBoolean_25160() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Boolean[] _data = default(System.Boolean[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetInvariantBoolean(_id,_value,_data); -} -static unsafe void Test_GetInvariantBoolean_25161() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Boolean _data = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Ext.GetInvariantBoolean(_id,_value,out _data); -} -static unsafe void Test_GetInvariantBoolean_25162() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Boolean* _data = default(System.Boolean*); - OpenTK.Graphics.OpenGL.GL.Ext.GetInvariantBoolean(_id,_value,_data); -} -static unsafe void Test_GetInvariantBoolean_25163() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Boolean[] _data = default(System.Boolean[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetInvariantBoolean(_id,_value,_data); -} -static unsafe void Test_GetInvariantBoolean_25164() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Boolean _data = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Ext.GetInvariantBoolean(_id,_value,out _data); -} -static unsafe void Test_GetInvariantBoolean_25165() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Boolean* _data = default(System.Boolean*); - OpenTK.Graphics.OpenGL.GL.Ext.GetInvariantBoolean(_id,_value,_data); -} -static unsafe void Test_GetInvariantFloat_25166() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Single[] _data = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetInvariantFloat(_id,_value,_data); -} -static unsafe void Test_GetInvariantFloat_25167() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Single _data = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.GetInvariantFloat(_id,_value,out _data); -} -static unsafe void Test_GetInvariantFloat_25168() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Single* _data = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.GetInvariantFloat(_id,_value,_data); -} -static unsafe void Test_GetInvariantFloat_25169() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Single[] _data = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetInvariantFloat(_id,_value,_data); -} -static unsafe void Test_GetInvariantFloat_25170() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Single _data = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.GetInvariantFloat(_id,_value,out _data); -} -static unsafe void Test_GetInvariantFloat_25171() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Single* _data = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.GetInvariantFloat(_id,_value,_data); -} -static unsafe void Test_GetInvariantInteger_25172() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Int32[] _data = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetInvariantInteger(_id,_value,_data); -} -static unsafe void Test_GetInvariantInteger_25173() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Int32 _data = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetInvariantInteger(_id,_value,out _data); -} -static unsafe void Test_GetInvariantInteger_25174() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Int32* _data = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetInvariantInteger(_id,_value,_data); -} -static unsafe void Test_GetInvariantInteger_25175() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Int32[] _data = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetInvariantInteger(_id,_value,_data); -} -static unsafe void Test_GetInvariantInteger_25176() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Int32 _data = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetInvariantInteger(_id,_value,out _data); -} -static unsafe void Test_GetInvariantInteger_25177() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Int32* _data = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetInvariantInteger(_id,_value,_data); -} -static unsafe void Test_GetLocalConstantBoolean_25178() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Boolean[] _data = default(System.Boolean[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetLocalConstantBoolean(_id,_value,_data); -} -static unsafe void Test_GetLocalConstantBoolean_25179() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Boolean _data = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Ext.GetLocalConstantBoolean(_id,_value,out _data); -} -static unsafe void Test_GetLocalConstantBoolean_25180() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Boolean* _data = default(System.Boolean*); - OpenTK.Graphics.OpenGL.GL.Ext.GetLocalConstantBoolean(_id,_value,_data); -} -static unsafe void Test_GetLocalConstantBoolean_25181() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Boolean[] _data = default(System.Boolean[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetLocalConstantBoolean(_id,_value,_data); -} -static unsafe void Test_GetLocalConstantBoolean_25182() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Boolean _data = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Ext.GetLocalConstantBoolean(_id,_value,out _data); -} -static unsafe void Test_GetLocalConstantBoolean_25183() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Boolean* _data = default(System.Boolean*); - OpenTK.Graphics.OpenGL.GL.Ext.GetLocalConstantBoolean(_id,_value,_data); -} -static unsafe void Test_GetLocalConstantFloat_25184() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Single[] _data = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetLocalConstantFloat(_id,_value,_data); -} -static unsafe void Test_GetLocalConstantFloat_25185() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Single _data = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.GetLocalConstantFloat(_id,_value,out _data); -} -static unsafe void Test_GetLocalConstantFloat_25186() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Single* _data = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.GetLocalConstantFloat(_id,_value,_data); -} -static unsafe void Test_GetLocalConstantFloat_25187() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Single[] _data = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetLocalConstantFloat(_id,_value,_data); -} -static unsafe void Test_GetLocalConstantFloat_25188() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Single _data = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.GetLocalConstantFloat(_id,_value,out _data); -} -static unsafe void Test_GetLocalConstantFloat_25189() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Single* _data = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.GetLocalConstantFloat(_id,_value,_data); -} -static unsafe void Test_GetLocalConstantInteger_25190() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Int32[] _data = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetLocalConstantInteger(_id,_value,_data); -} -static unsafe void Test_GetLocalConstantInteger_25191() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Int32 _data = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetLocalConstantInteger(_id,_value,out _data); -} -static unsafe void Test_GetLocalConstantInteger_25192() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Int32* _data = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetLocalConstantInteger(_id,_value,_data); -} -static unsafe void Test_GetLocalConstantInteger_25193() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Int32[] _data = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetLocalConstantInteger(_id,_value,_data); -} -static unsafe void Test_GetLocalConstantInteger_25194() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Int32 _data = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetLocalConstantInteger(_id,_value,out _data); -} -static unsafe void Test_GetLocalConstantInteger_25195() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Int32* _data = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetLocalConstantInteger(_id,_value,_data); -} -static unsafe void Test_GetMinmax_25196() { - OpenTK.Graphics.OpenGL.ExtHistogram _target = default(OpenTK.Graphics.OpenGL.ExtHistogram); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _values = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.GetMinmax(_target,_reset,_format,_type,_values); -} -static unsafe void Test_GetMinmax_25197() { - OpenTK.Graphics.OpenGL.ExtHistogram _target = default(OpenTK.Graphics.OpenGL.ExtHistogram); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _values = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetMinmax(_target,_reset,_format,_type,_values); -} -static unsafe void Test_GetMinmax_25198() { - OpenTK.Graphics.OpenGL.ExtHistogram _target = default(OpenTK.Graphics.OpenGL.ExtHistogram); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _values = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetMinmax(_target,_reset,_format,_type,_values); -} -static unsafe void Test_GetMinmax_25199() { - OpenTK.Graphics.OpenGL.ExtHistogram _target = default(OpenTK.Graphics.OpenGL.ExtHistogram); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _values = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetMinmax(_target,_reset,_format,_type,_values); -} -static unsafe void Test_GetMinmax_25200() { - OpenTK.Graphics.OpenGL.ExtHistogram _target = default(OpenTK.Graphics.OpenGL.ExtHistogram); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _values = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.GetMinmax(_target,_reset,_format,_type,ref _values); -} -static unsafe void Test_GetMinmax_25201() { - OpenTK.Graphics.OpenGL.MinmaxTargetExt _target = default(OpenTK.Graphics.OpenGL.MinmaxTargetExt); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _values = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.GetMinmax(_target,_reset,_format,_type,_values); -} -static unsafe void Test_GetMinmax_25202() { - OpenTK.Graphics.OpenGL.MinmaxTargetExt _target = default(OpenTK.Graphics.OpenGL.MinmaxTargetExt); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _values = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetMinmax(_target,_reset,_format,_type,_values); -} -static unsafe void Test_GetMinmax_25203() { - OpenTK.Graphics.OpenGL.MinmaxTargetExt _target = default(OpenTK.Graphics.OpenGL.MinmaxTargetExt); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _values = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetMinmax(_target,_reset,_format,_type,_values); -} -static unsafe void Test_GetMinmax_25204() { - OpenTK.Graphics.OpenGL.MinmaxTargetExt _target = default(OpenTK.Graphics.OpenGL.MinmaxTargetExt); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _values = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetMinmax(_target,_reset,_format,_type,_values); -} -static unsafe void Test_GetMinmax_25205() { - OpenTK.Graphics.OpenGL.MinmaxTargetExt _target = default(OpenTK.Graphics.OpenGL.MinmaxTargetExt); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _values = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.GetMinmax(_target,_reset,_format,_type,ref _values); -} -static unsafe void Test_GetMinmaxParameter_25206() { - OpenTK.Graphics.OpenGL.ExtHistogram _target = default(OpenTK.Graphics.OpenGL.ExtHistogram); - OpenTK.Graphics.OpenGL.ExtHistogram _pname = default(OpenTK.Graphics.OpenGL.ExtHistogram); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetMinmaxParameter(_target,_pname,_params); -} -static unsafe void Test_GetMinmaxParameter_25207() { - OpenTK.Graphics.OpenGL.ExtHistogram _target = default(OpenTK.Graphics.OpenGL.ExtHistogram); - OpenTK.Graphics.OpenGL.ExtHistogram _pname = default(OpenTK.Graphics.OpenGL.ExtHistogram); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.GetMinmaxParameter(_target,_pname,out _params); -} -static unsafe void Test_GetMinmaxParameter_25208() { - OpenTK.Graphics.OpenGL.ExtHistogram _target = default(OpenTK.Graphics.OpenGL.ExtHistogram); - OpenTK.Graphics.OpenGL.ExtHistogram _pname = default(OpenTK.Graphics.OpenGL.ExtHistogram); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.GetMinmaxParameter(_target,_pname,_params); -} -static unsafe void Test_GetMinmaxParameter_25209() { - OpenTK.Graphics.OpenGL.MinmaxTargetExt _target = default(OpenTK.Graphics.OpenGL.MinmaxTargetExt); - OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt _pname = default(OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetMinmaxParameter(_target,_pname,_params); -} -static unsafe void Test_GetMinmaxParameter_25210() { - OpenTK.Graphics.OpenGL.MinmaxTargetExt _target = default(OpenTK.Graphics.OpenGL.MinmaxTargetExt); - OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt _pname = default(OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.GetMinmaxParameter(_target,_pname,out _params); -} -static unsafe void Test_GetMinmaxParameter_25211() { - OpenTK.Graphics.OpenGL.MinmaxTargetExt _target = default(OpenTK.Graphics.OpenGL.MinmaxTargetExt); - OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt _pname = default(OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.GetMinmaxParameter(_target,_pname,_params); -} -static unsafe void Test_GetMinmaxParameter_25212() { - OpenTK.Graphics.OpenGL.ExtHistogram _target = default(OpenTK.Graphics.OpenGL.ExtHistogram); - OpenTK.Graphics.OpenGL.ExtHistogram _pname = default(OpenTK.Graphics.OpenGL.ExtHistogram); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetMinmaxParameter(_target,_pname,_params); -} -static unsafe void Test_GetMinmaxParameter_25213() { - OpenTK.Graphics.OpenGL.ExtHistogram _target = default(OpenTK.Graphics.OpenGL.ExtHistogram); - OpenTK.Graphics.OpenGL.ExtHistogram _pname = default(OpenTK.Graphics.OpenGL.ExtHistogram); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetMinmaxParameter(_target,_pname,out _params); -} -static unsafe void Test_GetMinmaxParameter_25214() { - OpenTK.Graphics.OpenGL.ExtHistogram _target = default(OpenTK.Graphics.OpenGL.ExtHistogram); - OpenTK.Graphics.OpenGL.ExtHistogram _pname = default(OpenTK.Graphics.OpenGL.ExtHistogram); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetMinmaxParameter(_target,_pname,_params); -} -static unsafe void Test_GetMinmaxParameter_25215() { - OpenTK.Graphics.OpenGL.MinmaxTargetExt _target = default(OpenTK.Graphics.OpenGL.MinmaxTargetExt); - OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt _pname = default(OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetMinmaxParameter(_target,_pname,_params); -} -static unsafe void Test_GetMinmaxParameter_25216() { - OpenTK.Graphics.OpenGL.MinmaxTargetExt _target = default(OpenTK.Graphics.OpenGL.MinmaxTargetExt); - OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt _pname = default(OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetMinmaxParameter(_target,_pname,out _params); -} -static unsafe void Test_GetMinmaxParameter_25217() { - OpenTK.Graphics.OpenGL.MinmaxTargetExt _target = default(OpenTK.Graphics.OpenGL.MinmaxTargetExt); - OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt _pname = default(OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetMinmaxParameter(_target,_pname,_params); -} -static unsafe void Test_GetMultiTexEnv_25218() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureEnvTarget _target = default(OpenTK.Graphics.OpenGL.TextureEnvTarget); - OpenTK.Graphics.OpenGL.TextureEnvParameter _pname = default(OpenTK.Graphics.OpenGL.TextureEnvParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetMultiTexEnv(_texunit,_target,_pname,_params); -} -static unsafe void Test_GetMultiTexEnv_25219() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureEnvTarget _target = default(OpenTK.Graphics.OpenGL.TextureEnvTarget); - OpenTK.Graphics.OpenGL.TextureEnvParameter _pname = default(OpenTK.Graphics.OpenGL.TextureEnvParameter); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.GetMultiTexEnv(_texunit,_target,_pname,out _params); -} -static unsafe void Test_GetMultiTexEnv_25220() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureEnvTarget _target = default(OpenTK.Graphics.OpenGL.TextureEnvTarget); - OpenTK.Graphics.OpenGL.TextureEnvParameter _pname = default(OpenTK.Graphics.OpenGL.TextureEnvParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.GetMultiTexEnv(_texunit,_target,_pname,_params); -} -static unsafe void Test_GetMultiTexEnv_25221() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureEnvTarget _target = default(OpenTK.Graphics.OpenGL.TextureEnvTarget); - OpenTK.Graphics.OpenGL.TextureEnvParameter _pname = default(OpenTK.Graphics.OpenGL.TextureEnvParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetMultiTexEnv(_texunit,_target,_pname,_params); -} -static unsafe void Test_GetMultiTexEnv_25222() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureEnvTarget _target = default(OpenTK.Graphics.OpenGL.TextureEnvTarget); - OpenTK.Graphics.OpenGL.TextureEnvParameter _pname = default(OpenTK.Graphics.OpenGL.TextureEnvParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetMultiTexEnv(_texunit,_target,_pname,out _params); -} -static unsafe void Test_GetMultiTexEnv_25223() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureEnvTarget _target = default(OpenTK.Graphics.OpenGL.TextureEnvTarget); - OpenTK.Graphics.OpenGL.TextureEnvParameter _pname = default(OpenTK.Graphics.OpenGL.TextureEnvParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetMultiTexEnv(_texunit,_target,_pname,_params); -} -static unsafe void Test_GetMultiTexGen_25224() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureCoordName _coord = default(OpenTK.Graphics.OpenGL.TextureCoordName); - OpenTK.Graphics.OpenGL.TextureGenParameter _pname = default(OpenTK.Graphics.OpenGL.TextureGenParameter); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetMultiTexGen(_texunit,_coord,_pname,_params); -} -static unsafe void Test_GetMultiTexGen_25225() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureCoordName _coord = default(OpenTK.Graphics.OpenGL.TextureCoordName); - OpenTK.Graphics.OpenGL.TextureGenParameter _pname = default(OpenTK.Graphics.OpenGL.TextureGenParameter); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.GetMultiTexGen(_texunit,_coord,_pname,out _params); -} -static unsafe void Test_GetMultiTexGen_25226() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureCoordName _coord = default(OpenTK.Graphics.OpenGL.TextureCoordName); - OpenTK.Graphics.OpenGL.TextureGenParameter _pname = default(OpenTK.Graphics.OpenGL.TextureGenParameter); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.GetMultiTexGen(_texunit,_coord,_pname,_params); -} -static unsafe void Test_GetMultiTexGen_25227() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureCoordName _coord = default(OpenTK.Graphics.OpenGL.TextureCoordName); - OpenTK.Graphics.OpenGL.TextureGenParameter _pname = default(OpenTK.Graphics.OpenGL.TextureGenParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetMultiTexGen(_texunit,_coord,_pname,_params); -} -static unsafe void Test_GetMultiTexGen_25228() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureCoordName _coord = default(OpenTK.Graphics.OpenGL.TextureCoordName); - OpenTK.Graphics.OpenGL.TextureGenParameter _pname = default(OpenTK.Graphics.OpenGL.TextureGenParameter); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.GetMultiTexGen(_texunit,_coord,_pname,out _params); -} -static unsafe void Test_GetMultiTexGen_25229() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureCoordName _coord = default(OpenTK.Graphics.OpenGL.TextureCoordName); - OpenTK.Graphics.OpenGL.TextureGenParameter _pname = default(OpenTK.Graphics.OpenGL.TextureGenParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.GetMultiTexGen(_texunit,_coord,_pname,_params); -} -static unsafe void Test_GetMultiTexGen_25230() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureCoordName _coord = default(OpenTK.Graphics.OpenGL.TextureCoordName); - OpenTK.Graphics.OpenGL.TextureGenParameter _pname = default(OpenTK.Graphics.OpenGL.TextureGenParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetMultiTexGen(_texunit,_coord,_pname,_params); -} -static unsafe void Test_GetMultiTexGen_25231() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureCoordName _coord = default(OpenTK.Graphics.OpenGL.TextureCoordName); - OpenTK.Graphics.OpenGL.TextureGenParameter _pname = default(OpenTK.Graphics.OpenGL.TextureGenParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetMultiTexGen(_texunit,_coord,_pname,out _params); -} -static unsafe void Test_GetMultiTexGen_25232() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureCoordName _coord = default(OpenTK.Graphics.OpenGL.TextureCoordName); - OpenTK.Graphics.OpenGL.TextureGenParameter _pname = default(OpenTK.Graphics.OpenGL.TextureGenParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetMultiTexGen(_texunit,_coord,_pname,_params); -} -static unsafe void Test_GetMultiTexImage_25233() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.GetMultiTexImage(_texunit,_target,_level,_format,_type,_pixels); -} -static unsafe void Test_GetMultiTexImage_25234() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetMultiTexImage(_texunit,_target,_level,_format,_type,_pixels); -} -static unsafe void Test_GetMultiTexImage_25235() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetMultiTexImage(_texunit,_target,_level,_format,_type,_pixels); -} -static unsafe void Test_GetMultiTexImage_25236() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetMultiTexImage(_texunit,_target,_level,_format,_type,_pixels); -} -static unsafe void Test_GetMultiTexImage_25237() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.GetMultiTexImage(_texunit,_target,_level,_format,_type,ref _pixels); -} -static unsafe void Test_GetMultiTexLevelParameter_25238() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetMultiTexLevelParameter(_texunit,_target,_level,_pname,_params); -} -static unsafe void Test_GetMultiTexLevelParameter_25239() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.GetMultiTexLevelParameter(_texunit,_target,_level,_pname,out _params); -} -static unsafe void Test_GetMultiTexLevelParameter_25240() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.GetMultiTexLevelParameter(_texunit,_target,_level,_pname,_params); -} -static unsafe void Test_GetMultiTexLevelParameter_25241() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetMultiTexLevelParameter(_texunit,_target,_level,_pname,_params); -} -static unsafe void Test_GetMultiTexLevelParameter_25242() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetMultiTexLevelParameter(_texunit,_target,_level,_pname,out _params); -} -static unsafe void Test_GetMultiTexLevelParameter_25243() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetMultiTexLevelParameter(_texunit,_target,_level,_pname,_params); -} -static unsafe void Test_GetMultiTexParameter_25244() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetMultiTexParameter(_texunit,_target,_pname,_params); -} -static unsafe void Test_GetMultiTexParameter_25245() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.GetMultiTexParameter(_texunit,_target,_pname,out _params); -} -static unsafe void Test_GetMultiTexParameter_25246() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.GetMultiTexParameter(_texunit,_target,_pname,_params); -} -static unsafe void Test_GetMultiTexParameterI_25247() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetMultiTexParameterI(_texunit,_target,_pname,_params); -} -static unsafe void Test_GetMultiTexParameterI_25248() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetMultiTexParameterI(_texunit,_target,_pname,out _params); -} -static unsafe void Test_GetMultiTexParameterI_25249() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetMultiTexParameterI(_texunit,_target,_pname,_params); -} -static unsafe void Test_GetMultiTexParameterI_25250() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetMultiTexParameterI(_texunit,_target,_pname,_params); -} -static unsafe void Test_GetMultiTexParameterI_25251() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.GetMultiTexParameterI(_texunit,_target,_pname,out _params); -} -static unsafe void Test_GetMultiTexParameterI_25252() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetMultiTexParameterI(_texunit,_target,_pname,_params); -} -static unsafe void Test_GetMultiTexParameter_25253() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetMultiTexParameter(_texunit,_target,_pname,_params); -} -static unsafe void Test_GetMultiTexParameter_25254() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetMultiTexParameter(_texunit,_target,_pname,out _params); -} -static unsafe void Test_GetMultiTexParameter_25255() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetMultiTexParameter(_texunit,_target,_pname,_params); -} -static unsafe void Test_GetNamedBufferParameter_25256() { - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedBufferParameter(_buffer,_pname,_params); -} -static unsafe void Test_GetNamedBufferParameter_25257() { - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedBufferParameter(_buffer,_pname,out _params); -} -static unsafe void Test_GetNamedBufferParameter_25258() { - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedBufferParameter(_buffer,_pname,_params); -} -static unsafe void Test_GetNamedBufferParameter_25259() { - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedBufferParameter(_buffer,_pname,_params); -} -static unsafe void Test_GetNamedBufferParameter_25260() { - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedBufferParameter(_buffer,_pname,out _params); -} -static unsafe void Test_GetNamedBufferParameter_25261() { - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedBufferParameter(_buffer,_pname,_params); -} -static unsafe void Test_GetNamedBufferPointer_25262() { - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.IntPtr _params = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedBufferPointer(_buffer,_pname,_params); -} -static unsafe void Test_GetNamedBufferPointer_25263() { - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - int[] _params = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedBufferPointer(_buffer,_pname,_params); -} -static unsafe void Test_GetNamedBufferPointer_25264() { - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - int[,] _params = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedBufferPointer(_buffer,_pname,_params); -} -static unsafe void Test_GetNamedBufferPointer_25265() { - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - int[,,] _params = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedBufferPointer(_buffer,_pname,_params); -} -static unsafe void Test_GetNamedBufferPointer_25266() { - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - int _params = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedBufferPointer(_buffer,_pname,ref _params); -} -static unsafe void Test_GetNamedBufferPointer_25267() { - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.IntPtr _params = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedBufferPointer(_buffer,_pname,_params); -} -static unsafe void Test_GetNamedBufferPointer_25268() { - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - int[] _params = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedBufferPointer(_buffer,_pname,_params); -} -static unsafe void Test_GetNamedBufferPointer_25269() { - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - int[,] _params = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedBufferPointer(_buffer,_pname,_params); -} -static unsafe void Test_GetNamedBufferPointer_25270() { - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - int[,,] _params = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedBufferPointer(_buffer,_pname,_params); -} -static unsafe void Test_GetNamedBufferPointer_25271() { - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - int _params = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedBufferPointer(_buffer,_pname,ref _params); -} -static unsafe void Test_GetNamedBufferSubData_25272() { - System.Int32 _buffer = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedBufferSubData(_buffer,_offset,_size,_data); -} -static unsafe void Test_GetNamedBufferSubData_25273() { - System.Int32 _buffer = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedBufferSubData(_buffer,_offset,_size,_data); -} -static unsafe void Test_GetNamedBufferSubData_25274() { - System.Int32 _buffer = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedBufferSubData(_buffer,_offset,_size,_data); -} -static unsafe void Test_GetNamedBufferSubData_25275() { - System.Int32 _buffer = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedBufferSubData(_buffer,_offset,_size,_data); -} -static unsafe void Test_GetNamedBufferSubData_25276() { - System.Int32 _buffer = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedBufferSubData(_buffer,_offset,_size,ref _data); -} -static unsafe void Test_GetNamedBufferSubData_25277() { - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedBufferSubData(_buffer,_offset,_size,_data); -} -static unsafe void Test_GetNamedBufferSubData_25278() { - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedBufferSubData(_buffer,_offset,_size,_data); -} -static unsafe void Test_GetNamedBufferSubData_25279() { - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedBufferSubData(_buffer,_offset,_size,_data); -} -static unsafe void Test_GetNamedBufferSubData_25280() { - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedBufferSubData(_buffer,_offset,_size,_data); -} -static unsafe void Test_GetNamedBufferSubData_25281() { - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedBufferSubData(_buffer,_offset,_size,ref _data); -} -static unsafe void Test_GetNamedFramebufferAttachmentParameter_25282() { - System.Int32 _framebuffer = default(System.Int32); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedFramebufferAttachmentParameter(_framebuffer,_attachment,_pname,_params); -} -static unsafe void Test_GetNamedFramebufferAttachmentParameter_25283() { - System.Int32 _framebuffer = default(System.Int32); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedFramebufferAttachmentParameter(_framebuffer,_attachment,_pname,out _params); -} -static unsafe void Test_GetNamedFramebufferAttachmentParameter_25284() { - System.Int32 _framebuffer = default(System.Int32); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedFramebufferAttachmentParameter(_framebuffer,_attachment,_pname,_params); -} -static unsafe void Test_GetNamedFramebufferAttachmentParameter_25285() { - System.UInt32 _framebuffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedFramebufferAttachmentParameter(_framebuffer,_attachment,_pname,_params); -} -static unsafe void Test_GetNamedFramebufferAttachmentParameter_25286() { - System.UInt32 _framebuffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedFramebufferAttachmentParameter(_framebuffer,_attachment,_pname,out _params); -} -static unsafe void Test_GetNamedFramebufferAttachmentParameter_25287() { - System.UInt32 _framebuffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedFramebufferAttachmentParameter(_framebuffer,_attachment,_pname,_params); -} -static unsafe void Test_GetNamedFramebufferParameter_25288() { - System.Int32 _framebuffer = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedFramebufferParameter(_framebuffer,_pname,_params); -} -static unsafe void Test_GetNamedFramebufferParameter_25289() { - System.Int32 _framebuffer = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedFramebufferParameter(_framebuffer,_pname,out _params); -} -static unsafe void Test_GetNamedFramebufferParameter_25290() { - System.Int32 _framebuffer = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedFramebufferParameter(_framebuffer,_pname,_params); -} -static unsafe void Test_GetNamedFramebufferParameter_25291() { - System.UInt32 _framebuffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedFramebufferParameter(_framebuffer,_pname,_params); -} -static unsafe void Test_GetNamedFramebufferParameter_25292() { - System.UInt32 _framebuffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedFramebufferParameter(_framebuffer,_pname,out _params); -} -static unsafe void Test_GetNamedFramebufferParameter_25293() { - System.UInt32 _framebuffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedFramebufferParameter(_framebuffer,_pname,_params); -} -static unsafe void Test_GetNamedProgram_25294() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedProgram(_program,_target,_pname,out _params); -} -static unsafe void Test_GetNamedProgram_25295() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedProgram(_program,_target,_pname,_params); -} -static unsafe void Test_GetNamedProgram_25296() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.ProgramProperty _pname = default(OpenTK.Graphics.OpenGL.ProgramProperty); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedProgram(_program,_target,_pname,out _params); -} -static unsafe void Test_GetNamedProgram_25297() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.ProgramProperty _pname = default(OpenTK.Graphics.OpenGL.ProgramProperty); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedProgram(_program,_target,_pname,_params); -} -static unsafe void Test_GetNamedProgram_25298() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedProgram(_program,_target,_pname,out _params); -} -static unsafe void Test_GetNamedProgram_25299() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedProgram(_program,_target,_pname,_params); -} -static unsafe void Test_GetNamedProgram_25300() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.ProgramProperty _pname = default(OpenTK.Graphics.OpenGL.ProgramProperty); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedProgram(_program,_target,_pname,out _params); -} -static unsafe void Test_GetNamedProgram_25301() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.ProgramProperty _pname = default(OpenTK.Graphics.OpenGL.ProgramProperty); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedProgram(_program,_target,_pname,_params); -} -static unsafe void Test_GetNamedProgramLocalParameter_25302() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedProgramLocalParameter(_program,_target,_index,_params); -} -static unsafe void Test_GetNamedProgramLocalParameter_25303() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedProgramLocalParameter(_program,_target,_index,out _params); -} -static unsafe void Test_GetNamedProgramLocalParameter_25304() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedProgramLocalParameter(_program,_target,_index,_params); -} -static unsafe void Test_GetNamedProgramLocalParameter_25305() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedProgramLocalParameter(_program,_target,_index,_params); -} -static unsafe void Test_GetNamedProgramLocalParameter_25306() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedProgramLocalParameter(_program,_target,_index,out _params); -} -static unsafe void Test_GetNamedProgramLocalParameter_25307() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedProgramLocalParameter(_program,_target,_index,_params); -} -static unsafe void Test_GetNamedProgramLocalParameter_25308() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedProgramLocalParameter(_program,_target,_index,_params); -} -static unsafe void Test_GetNamedProgramLocalParameter_25309() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedProgramLocalParameter(_program,_target,_index,out _params); -} -static unsafe void Test_GetNamedProgramLocalParameter_25310() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedProgramLocalParameter(_program,_target,_index,_params); -} -static unsafe void Test_GetNamedProgramLocalParameter_25311() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedProgramLocalParameter(_program,_target,_index,_params); -} -static unsafe void Test_GetNamedProgramLocalParameter_25312() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedProgramLocalParameter(_program,_target,_index,out _params); -} -static unsafe void Test_GetNamedProgramLocalParameter_25313() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedProgramLocalParameter(_program,_target,_index,_params); -} -static unsafe void Test_GetNamedProgramLocalParameterI_25314() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedProgramLocalParameterI(_program,_target,_index,_params); -} -static unsafe void Test_GetNamedProgramLocalParameterI_25315() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedProgramLocalParameterI(_program,_target,_index,out _params); -} -static unsafe void Test_GetNamedProgramLocalParameterI_25316() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedProgramLocalParameterI(_program,_target,_index,_params); -} -static unsafe void Test_GetNamedProgramLocalParameterI_25317() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedProgramLocalParameterI(_program,_target,_index,_params); -} -static unsafe void Test_GetNamedProgramLocalParameterI_25318() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedProgramLocalParameterI(_program,_target,_index,out _params); -} -static unsafe void Test_GetNamedProgramLocalParameterI_25319() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedProgramLocalParameterI(_program,_target,_index,_params); -} -static unsafe void Test_GetNamedProgramLocalParameterI_25320() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedProgramLocalParameterI(_program,_target,_index,_params); -} -static unsafe void Test_GetNamedProgramLocalParameterI_25321() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedProgramLocalParameterI(_program,_target,_index,out _params); -} -static unsafe void Test_GetNamedProgramLocalParameterI_25322() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedProgramLocalParameterI(_program,_target,_index,_params); -} -static unsafe void Test_GetNamedProgramString_25323() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.IntPtr _string = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedProgramString(_program,_target,_pname,_string); -} -static unsafe void Test_GetNamedProgramString_25324() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - int[] _string = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedProgramString(_program,_target,_pname,_string); -} -static unsafe void Test_GetNamedProgramString_25325() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - int[,] _string = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedProgramString(_program,_target,_pname,_string); -} -static unsafe void Test_GetNamedProgramString_25326() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - int[,,] _string = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedProgramString(_program,_target,_pname,_string); -} -static unsafe void Test_GetNamedProgramString_25327() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - int _string = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedProgramString(_program,_target,_pname,ref _string); -} -static unsafe void Test_GetNamedProgramString_25328() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.IntPtr _string = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedProgramString(_program,_target,_pname,_string); -} -static unsafe void Test_GetNamedProgramString_25329() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - int[] _string = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedProgramString(_program,_target,_pname,_string); -} -static unsafe void Test_GetNamedProgramString_25330() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - int[,] _string = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedProgramString(_program,_target,_pname,_string); -} -static unsafe void Test_GetNamedProgramString_25331() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - int[,,] _string = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedProgramString(_program,_target,_pname,_string); -} -static unsafe void Test_GetNamedProgramString_25332() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - int _string = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedProgramString(_program,_target,_pname,ref _string); -} -static unsafe void Test_GetNamedRenderbufferParameter_25333() { - System.Int32 _renderbuffer = default(System.Int32); - OpenTK.Graphics.OpenGL.RenderbufferParameterName _pname = default(OpenTK.Graphics.OpenGL.RenderbufferParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedRenderbufferParameter(_renderbuffer,_pname,_params); -} -static unsafe void Test_GetNamedRenderbufferParameter_25334() { - System.Int32 _renderbuffer = default(System.Int32); - OpenTK.Graphics.OpenGL.RenderbufferParameterName _pname = default(OpenTK.Graphics.OpenGL.RenderbufferParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedRenderbufferParameter(_renderbuffer,_pname,out _params); -} -static unsafe void Test_GetNamedRenderbufferParameter_25335() { - System.Int32 _renderbuffer = default(System.Int32); - OpenTK.Graphics.OpenGL.RenderbufferParameterName _pname = default(OpenTK.Graphics.OpenGL.RenderbufferParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedRenderbufferParameter(_renderbuffer,_pname,_params); -} -static unsafe void Test_GetNamedRenderbufferParameter_25336() { - System.UInt32 _renderbuffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.RenderbufferParameterName _pname = default(OpenTK.Graphics.OpenGL.RenderbufferParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedRenderbufferParameter(_renderbuffer,_pname,_params); -} -static unsafe void Test_GetNamedRenderbufferParameter_25337() { - System.UInt32 _renderbuffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.RenderbufferParameterName _pname = default(OpenTK.Graphics.OpenGL.RenderbufferParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedRenderbufferParameter(_renderbuffer,_pname,out _params); -} -static unsafe void Test_GetNamedRenderbufferParameter_25338() { - System.UInt32 _renderbuffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.RenderbufferParameterName _pname = default(OpenTK.Graphics.OpenGL.RenderbufferParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetNamedRenderbufferParameter(_renderbuffer,_pname,_params); -} -static unsafe void Test_GetObjectLabel_25339() { - OpenTK.Graphics.OpenGL.ExtDebugLabel _type = default(OpenTK.Graphics.OpenGL.ExtDebugLabel); - System.Int32 _object = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Ext.GetObjectLabel(_type,_object,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_25340() { - OpenTK.Graphics.OpenGL.ExtDebugLabel _type = default(OpenTK.Graphics.OpenGL.ExtDebugLabel); - System.Int32 _object = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Ext.GetObjectLabel(_type,_object,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectLabel_25341() { - OpenTK.Graphics.OpenGL.ExtDebugLabel _type = default(OpenTK.Graphics.OpenGL.ExtDebugLabel); - System.Int32 _object = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Ext.GetObjectLabel(_type,_object,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_25342() { - OpenTK.Graphics.OpenGL.ExtDebugLabel _type = default(OpenTK.Graphics.OpenGL.ExtDebugLabel); - System.UInt32 _object = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Ext.GetObjectLabel(_type,_object,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_25343() { - OpenTK.Graphics.OpenGL.ExtDebugLabel _type = default(OpenTK.Graphics.OpenGL.ExtDebugLabel); - System.UInt32 _object = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Ext.GetObjectLabel(_type,_object,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectLabel_25344() { - OpenTK.Graphics.OpenGL.ExtDebugLabel _type = default(OpenTK.Graphics.OpenGL.ExtDebugLabel); - System.UInt32 _object = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Ext.GetObjectLabel(_type,_object,_bufSize,_length,_label); -} -static unsafe void Test_GetPixelTransformParameter_25345() { - OpenTK.Graphics.OpenGL.ExtPixelTransform _target = default(OpenTK.Graphics.OpenGL.ExtPixelTransform); - OpenTK.Graphics.OpenGL.ExtPixelTransform _pname = default(OpenTK.Graphics.OpenGL.ExtPixelTransform); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetPixelTransformParameter(_target,_pname,_params); -} -static unsafe void Test_GetPixelTransformParameter_25346() { - OpenTK.Graphics.OpenGL.ExtPixelTransform _target = default(OpenTK.Graphics.OpenGL.ExtPixelTransform); - OpenTK.Graphics.OpenGL.ExtPixelTransform _pname = default(OpenTK.Graphics.OpenGL.ExtPixelTransform); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.GetPixelTransformParameter(_target,_pname,out _params); -} -static unsafe void Test_GetPixelTransformParameter_25347() { - OpenTK.Graphics.OpenGL.ExtPixelTransform _target = default(OpenTK.Graphics.OpenGL.ExtPixelTransform); - OpenTK.Graphics.OpenGL.ExtPixelTransform _pname = default(OpenTK.Graphics.OpenGL.ExtPixelTransform); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.GetPixelTransformParameter(_target,_pname,_params); -} -static unsafe void Test_GetPixelTransformParameter_25348() { - OpenTK.Graphics.OpenGL.ExtPixelTransform _target = default(OpenTK.Graphics.OpenGL.ExtPixelTransform); - OpenTK.Graphics.OpenGL.ExtPixelTransform _pname = default(OpenTK.Graphics.OpenGL.ExtPixelTransform); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetPixelTransformParameter(_target,_pname,_params); -} -static unsafe void Test_GetPixelTransformParameter_25349() { - OpenTK.Graphics.OpenGL.ExtPixelTransform _target = default(OpenTK.Graphics.OpenGL.ExtPixelTransform); - OpenTK.Graphics.OpenGL.ExtPixelTransform _pname = default(OpenTK.Graphics.OpenGL.ExtPixelTransform); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetPixelTransformParameter(_target,_pname,out _params); -} -static unsafe void Test_GetPixelTransformParameter_25350() { - OpenTK.Graphics.OpenGL.ExtPixelTransform _target = default(OpenTK.Graphics.OpenGL.ExtPixelTransform); - OpenTK.Graphics.OpenGL.ExtPixelTransform _pname = default(OpenTK.Graphics.OpenGL.ExtPixelTransform); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetPixelTransformParameter(_target,_pname,_params); -} -static unsafe void Test_GetPointer_25351() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - System.IntPtr _params = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.GetPointer(_pname,_index,_params); -} -static unsafe void Test_GetPointer_25352() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - int[] _params = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetPointer(_pname,_index,_params); -} -static unsafe void Test_GetPointer_25353() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - int[,] _params = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetPointer(_pname,_index,_params); -} -static unsafe void Test_GetPointer_25354() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - int[,,] _params = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetPointer(_pname,_index,_params); -} -static unsafe void Test_GetPointer_25355() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - int _params = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.GetPointer(_pname,_index,ref _params); -} -static unsafe void Test_GetPointer_25356() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.IntPtr _params = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.GetPointer(_pname,_index,_params); -} -static unsafe void Test_GetPointer_25357() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - int[] _params = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetPointer(_pname,_index,_params); -} -static unsafe void Test_GetPointer_25358() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - int[,] _params = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetPointer(_pname,_index,_params); -} -static unsafe void Test_GetPointer_25359() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - int[,,] _params = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetPointer(_pname,_index,_params); -} -static unsafe void Test_GetPointer_25360() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - int _params = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.GetPointer(_pname,_index,ref _params); -} -static unsafe void Test_GetPointerIndexed_25361() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.GetPointerIndexed(_target,_index,_data); -} -static unsafe void Test_GetPointerIndexed_25362() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetPointerIndexed(_target,_index,_data); -} -static unsafe void Test_GetPointerIndexed_25363() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetPointerIndexed(_target,_index,_data); -} -static unsafe void Test_GetPointerIndexed_25364() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetPointerIndexed(_target,_index,_data); -} -static unsafe void Test_GetPointerIndexed_25365() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.GetPointerIndexed(_target,_index,ref _data); -} -static unsafe void Test_GetPointerIndexed_25366() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.GetPointerIndexed(_target,_index,_data); -} -static unsafe void Test_GetPointerIndexed_25367() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetPointerIndexed(_target,_index,_data); -} -static unsafe void Test_GetPointerIndexed_25368() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetPointerIndexed(_target,_index,_data); -} -static unsafe void Test_GetPointerIndexed_25369() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetPointerIndexed(_target,_index,_data); -} -static unsafe void Test_GetPointerIndexed_25370() { - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.GetPointerIndexed(_target,_index,ref _data); -} -static unsafe void Test_GetPointer_25371() { - OpenTK.Graphics.OpenGL.GetPointervPName _pname = default(OpenTK.Graphics.OpenGL.GetPointervPName); - System.IntPtr _params = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_25372() { - OpenTK.Graphics.OpenGL.GetPointervPName _pname = default(OpenTK.Graphics.OpenGL.GetPointervPName); - int[] _params = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_25373() { - OpenTK.Graphics.OpenGL.GetPointervPName _pname = default(OpenTK.Graphics.OpenGL.GetPointervPName); - int[,] _params = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_25374() { - OpenTK.Graphics.OpenGL.GetPointervPName _pname = default(OpenTK.Graphics.OpenGL.GetPointervPName); - int[,,] _params = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_25375() { - OpenTK.Graphics.OpenGL.GetPointervPName _pname = default(OpenTK.Graphics.OpenGL.GetPointervPName); - int _params = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.GetPointer(_pname,ref _params); -} -static unsafe void Test_GetProgramPipelineInfoLog_25376() { - System.Int32 _pipeline = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Ext.GetProgramPipelineInfoLog(_pipeline,_bufSize,_length,_infoLog); -} -static unsafe void Test_GetProgramPipelineInfoLog_25377() { - System.Int32 _pipeline = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Ext.GetProgramPipelineInfoLog(_pipeline,_bufSize,out _length,_infoLog); -} -static unsafe void Test_GetProgramPipelineInfoLog_25378() { - System.Int32 _pipeline = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Ext.GetProgramPipelineInfoLog(_pipeline,_bufSize,_length,_infoLog); -} -static unsafe void Test_GetProgramPipelineInfoLog_25379() { - System.UInt32 _pipeline = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Ext.GetProgramPipelineInfoLog(_pipeline,_bufSize,_length,_infoLog); -} -static unsafe void Test_GetProgramPipelineInfoLog_25380() { - System.UInt32 _pipeline = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Ext.GetProgramPipelineInfoLog(_pipeline,_bufSize,out _length,_infoLog); -} -static unsafe void Test_GetProgramPipelineInfoLog_25381() { - System.UInt32 _pipeline = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Ext.GetProgramPipelineInfoLog(_pipeline,_bufSize,_length,_infoLog); -} -static unsafe void Test_GetProgramPipeline_25382() { - System.Int32 _pipeline = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects _pname = default(OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetProgramPipeline(_pipeline,_pname,_params); -} -static unsafe void Test_GetProgramPipeline_25383() { - System.Int32 _pipeline = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects _pname = default(OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetProgramPipeline(_pipeline,_pname,out _params); -} -static unsafe void Test_GetProgramPipeline_25384() { - System.Int32 _pipeline = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects _pname = default(OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetProgramPipeline(_pipeline,_pname,_params); -} -static unsafe void Test_GetProgramPipeline_25385() { - System.UInt32 _pipeline = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects _pname = default(OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetProgramPipeline(_pipeline,_pname,_params); -} -static unsafe void Test_GetProgramPipeline_25386() { - System.UInt32 _pipeline = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects _pname = default(OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetProgramPipeline(_pipeline,_pname,out _params); -} -static unsafe void Test_GetProgramPipeline_25387() { - System.UInt32 _pipeline = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects _pname = default(OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetProgramPipeline(_pipeline,_pname,_params); -} -static unsafe void Test_GetQueryObject_25388() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtTimerQuery _pname = default(OpenTK.Graphics.OpenGL.ExtTimerQuery); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_25389() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtTimerQuery _pname = default(OpenTK.Graphics.OpenGL.ExtTimerQuery); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.Ext.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_25390() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtTimerQuery _pname = default(OpenTK.Graphics.OpenGL.ExtTimerQuery); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_25391() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtTimerQuery _pname = default(OpenTK.Graphics.OpenGL.ExtTimerQuery); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_25392() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtTimerQuery _pname = default(OpenTK.Graphics.OpenGL.ExtTimerQuery); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.Ext.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_25393() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtTimerQuery _pname = default(OpenTK.Graphics.OpenGL.ExtTimerQuery); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_25394() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtTimerQuery _pname = default(OpenTK.Graphics.OpenGL.ExtTimerQuery); - System.UInt64[] _params = default(System.UInt64[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_25395() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtTimerQuery _pname = default(OpenTK.Graphics.OpenGL.ExtTimerQuery); - System.UInt64 _params = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.Ext.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_25396() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtTimerQuery _pname = default(OpenTK.Graphics.OpenGL.ExtTimerQuery); - System.UInt64* _params = default(System.UInt64*); - OpenTK.Graphics.OpenGL.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetRenderbufferParameter_25397() { - OpenTK.Graphics.OpenGL.RenderbufferTarget _target = default(OpenTK.Graphics.OpenGL.RenderbufferTarget); - OpenTK.Graphics.OpenGL.RenderbufferParameterName _pname = default(OpenTK.Graphics.OpenGL.RenderbufferParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetRenderbufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetRenderbufferParameter_25398() { - OpenTK.Graphics.OpenGL.RenderbufferTarget _target = default(OpenTK.Graphics.OpenGL.RenderbufferTarget); - OpenTK.Graphics.OpenGL.RenderbufferParameterName _pname = default(OpenTK.Graphics.OpenGL.RenderbufferParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetRenderbufferParameter(_target,_pname,out _params); -} -static unsafe void Test_GetRenderbufferParameter_25399() { - OpenTK.Graphics.OpenGL.RenderbufferTarget _target = default(OpenTK.Graphics.OpenGL.RenderbufferTarget); - OpenTK.Graphics.OpenGL.RenderbufferParameterName _pname = default(OpenTK.Graphics.OpenGL.RenderbufferParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetRenderbufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetSeparableFilter_25400() { - OpenTK.Graphics.OpenGL.SeparableTargetExt _target = default(OpenTK.Graphics.OpenGL.SeparableTargetExt); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _row = default(System.IntPtr); - System.IntPtr _column = default(System.IntPtr); - System.IntPtr _span = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.GetSeparableFilter(_target,_format,_type,_row,_column,_span); -} -static unsafe void Test_GetSeparableFilter_25401() { - OpenTK.Graphics.OpenGL.SeparableTargetExt _target = default(OpenTK.Graphics.OpenGL.SeparableTargetExt); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _row = default(int[]); - int[] _column = default(int[]); - int[] _span = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetSeparableFilter(_target,_format,_type,_row,_column,_span); -} -static unsafe void Test_GetSeparableFilter_25402() { - OpenTK.Graphics.OpenGL.SeparableTargetExt _target = default(OpenTK.Graphics.OpenGL.SeparableTargetExt); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _row = default(int[,]); - int[,] _column = default(int[,]); - int[,] _span = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetSeparableFilter(_target,_format,_type,_row,_column,_span); -} -static unsafe void Test_GetSeparableFilter_25403() { - OpenTK.Graphics.OpenGL.SeparableTargetExt _target = default(OpenTK.Graphics.OpenGL.SeparableTargetExt); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _row = default(int[,,]); - int[,,] _column = default(int[,,]); - int[,,] _span = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetSeparableFilter(_target,_format,_type,_row,_column,_span); -} -static unsafe void Test_GetSeparableFilter_25404() { - OpenTK.Graphics.OpenGL.SeparableTargetExt _target = default(OpenTK.Graphics.OpenGL.SeparableTargetExt); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _row = default(int); - int _column = default(int); - int _span = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.GetSeparableFilter(_target,_format,_type,ref _row,ref _column,ref _span); -} -static unsafe void Test_GetTexParameterI_25405() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetTexParameterI(_target,_pname,_params); -} -static unsafe void Test_GetTexParameterI_25406() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetTexParameterI(_target,_pname,out _params); -} -static unsafe void Test_GetTexParameterI_25407() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetTexParameterI(_target,_pname,_params); -} -static unsafe void Test_GetTexParameterI_25408() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetTexParameterI(_target,_pname,_params); -} -static unsafe void Test_GetTexParameterI_25409() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.GetTexParameterI(_target,_pname,out _params); -} -static unsafe void Test_GetTexParameterI_25410() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetTexParameterI(_target,_pname,_params); -} -static unsafe void Test_GetTextureImage_25411() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureImage(_texture,_target,_level,_format,_type,_pixels); -} -static unsafe void Test_GetTextureImage_25412() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureImage(_texture,_target,_level,_format,_type,_pixels); -} -static unsafe void Test_GetTextureImage_25413() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureImage(_texture,_target,_level,_format,_type,_pixels); -} -static unsafe void Test_GetTextureImage_25414() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureImage(_texture,_target,_level,_format,_type,_pixels); -} -static unsafe void Test_GetTextureImage_25415() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureImage(_texture,_target,_level,_format,_type,ref _pixels); -} -static unsafe void Test_GetTextureImage_25416() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureImage(_texture,_target,_level,_format,_type,_pixels); -} -static unsafe void Test_GetTextureImage_25417() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureImage(_texture,_target,_level,_format,_type,_pixels); -} -static unsafe void Test_GetTextureImage_25418() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureImage(_texture,_target,_level,_format,_type,_pixels); -} -static unsafe void Test_GetTextureImage_25419() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureImage(_texture,_target,_level,_format,_type,_pixels); -} -static unsafe void Test_GetTextureImage_25420() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureImage(_texture,_target,_level,_format,_type,ref _pixels); -} -static unsafe void Test_GetTextureLevelParameter_25421() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureLevelParameter(_texture,_target,_level,_pname,_params); -} -static unsafe void Test_GetTextureLevelParameter_25422() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureLevelParameter(_texture,_target,_level,_pname,out _params); -} -static unsafe void Test_GetTextureLevelParameter_25423() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureLevelParameter(_texture,_target,_level,_pname,_params); -} -static unsafe void Test_GetTextureLevelParameter_25424() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureLevelParameter(_texture,_target,_level,_pname,_params); -} -static unsafe void Test_GetTextureLevelParameter_25425() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureLevelParameter(_texture,_target,_level,_pname,out _params); -} -static unsafe void Test_GetTextureLevelParameter_25426() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureLevelParameter(_texture,_target,_level,_pname,_params); -} -static unsafe void Test_GetTextureLevelParameter_25427() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureLevelParameter(_texture,_target,_level,_pname,_params); -} -static unsafe void Test_GetTextureLevelParameter_25428() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureLevelParameter(_texture,_target,_level,_pname,out _params); -} -static unsafe void Test_GetTextureLevelParameter_25429() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureLevelParameter(_texture,_target,_level,_pname,_params); -} -static unsafe void Test_GetTextureLevelParameter_25430() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureLevelParameter(_texture,_target,_level,_pname,_params); -} -static unsafe void Test_GetTextureLevelParameter_25431() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureLevelParameter(_texture,_target,_level,_pname,out _params); -} -static unsafe void Test_GetTextureLevelParameter_25432() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureLevelParameter(_texture,_target,_level,_pname,_params); -} -static unsafe void Test_GetTextureParameter_25433() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureParameter(_texture,_target,_pname,_params); -} -static unsafe void Test_GetTextureParameter_25434() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureParameter(_texture,_target,_pname,out _params); -} -static unsafe void Test_GetTextureParameter_25435() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureParameter(_texture,_target,_pname,_params); -} -static unsafe void Test_GetTextureParameter_25436() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureParameter(_texture,_target,_pname,_params); -} -static unsafe void Test_GetTextureParameter_25437() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureParameter(_texture,_target,_pname,out _params); -} -static unsafe void Test_GetTextureParameter_25438() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureParameter(_texture,_target,_pname,_params); -} -static unsafe void Test_GetTextureParameterI_25439() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureParameterI(_texture,_target,_pname,_params); -} -static unsafe void Test_GetTextureParameterI_25440() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureParameterI(_texture,_target,_pname,out _params); -} -static unsafe void Test_GetTextureParameterI_25441() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureParameterI(_texture,_target,_pname,_params); -} -static unsafe void Test_GetTextureParameterI_25442() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureParameterI(_texture,_target,_pname,_params); -} -static unsafe void Test_GetTextureParameterI_25443() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureParameterI(_texture,_target,_pname,out _params); -} -static unsafe void Test_GetTextureParameterI_25444() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureParameterI(_texture,_target,_pname,_params); -} -static unsafe void Test_GetTextureParameterI_25445() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureParameterI(_texture,_target,_pname,_params); -} -static unsafe void Test_GetTextureParameterI_25446() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureParameterI(_texture,_target,_pname,out _params); -} -static unsafe void Test_GetTextureParameterI_25447() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureParameterI(_texture,_target,_pname,_params); -} -static unsafe void Test_GetTextureParameter_25448() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureParameter(_texture,_target,_pname,_params); -} -static unsafe void Test_GetTextureParameter_25449() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureParameter(_texture,_target,_pname,out _params); -} -static unsafe void Test_GetTextureParameter_25450() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureParameter(_texture,_target,_pname,_params); -} -static unsafe void Test_GetTextureParameter_25451() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureParameter(_texture,_target,_pname,_params); -} -static unsafe void Test_GetTextureParameter_25452() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureParameter(_texture,_target,_pname,out _params); -} -static unsafe void Test_GetTextureParameter_25453() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL.GetTextureParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetTextureParameter(_texture,_target,_pname,_params); -} -static unsafe void Test_GetTransformFeedbackVarying_25454() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ActiveAttribType _type = default(OpenTK.Graphics.OpenGL.ActiveAttribType); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Ext.GetTransformFeedbackVarying(_program,_index,_bufSize,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetTransformFeedbackVarying_25455() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtTransformFeedback _type = default(OpenTK.Graphics.OpenGL.ExtTransformFeedback); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Ext.GetTransformFeedbackVarying(_program,_index,_bufSize,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetTransformFeedbackVarying_25456() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.OpenGL.ActiveAttribType* _type = default(OpenTK.Graphics.OpenGL.ActiveAttribType*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Ext.GetTransformFeedbackVarying(_program,_index,_bufSize,_length,_size,_type,_name); -} -static unsafe void Test_GetTransformFeedbackVarying_25457() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.OpenGL.ExtTransformFeedback* _type = default(OpenTK.Graphics.OpenGL.ExtTransformFeedback*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Ext.GetTransformFeedbackVarying(_program,_index,_bufSize,_length,_size,_type,_name); -} -static unsafe void Test_GetTransformFeedbackVarying_25458() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ActiveAttribType _type = default(OpenTK.Graphics.OpenGL.ActiveAttribType); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Ext.GetTransformFeedbackVarying(_program,_index,_bufSize,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetTransformFeedbackVarying_25459() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtTransformFeedback _type = default(OpenTK.Graphics.OpenGL.ExtTransformFeedback); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Ext.GetTransformFeedbackVarying(_program,_index,_bufSize,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetTransformFeedbackVarying_25460() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.OpenGL.ActiveAttribType* _type = default(OpenTK.Graphics.OpenGL.ActiveAttribType*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Ext.GetTransformFeedbackVarying(_program,_index,_bufSize,_length,_size,_type,_name); -} -static unsafe void Test_GetTransformFeedbackVarying_25461() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.OpenGL.ExtTransformFeedback* _type = default(OpenTK.Graphics.OpenGL.ExtTransformFeedback*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Ext.GetTransformFeedbackVarying(_program,_index,_bufSize,_length,_size,_type,_name); -} -static unsafe void Test_GetUniformBufferSize_25462() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Ext.GetUniformBufferSize(_program,_location); -} -static unsafe void Test_GetUniformBufferSize_25463() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Ext.GetUniformBufferSize(_program,_location); -} -static unsafe void Test_GetUniformOffset_25464() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.Ext.GetUniformOffset(_program,_location); -} -static unsafe void Test_GetUniformOffset_25465() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.Ext.GetUniformOffset(_program,_location); -} -static unsafe void Test_GetUniform_25466() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_25467() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetUniform(_program,_location,out _params); -} -static unsafe void Test_GetUniform_25468() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_25469() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_25470() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.GetUniform(_program,_location,out _params); -} -static unsafe void Test_GetUniform_25471() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetVariantBoolean_25472() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Boolean[] _data = default(System.Boolean[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetVariantBoolean(_id,_value,_data); -} -static unsafe void Test_GetVariantBoolean_25473() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Boolean _data = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Ext.GetVariantBoolean(_id,_value,out _data); -} -static unsafe void Test_GetVariantBoolean_25474() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Boolean* _data = default(System.Boolean*); - OpenTK.Graphics.OpenGL.GL.Ext.GetVariantBoolean(_id,_value,_data); -} -static unsafe void Test_GetVariantBoolean_25475() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Boolean[] _data = default(System.Boolean[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetVariantBoolean(_id,_value,_data); -} -static unsafe void Test_GetVariantBoolean_25476() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Boolean _data = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Ext.GetVariantBoolean(_id,_value,out _data); -} -static unsafe void Test_GetVariantBoolean_25477() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Boolean* _data = default(System.Boolean*); - OpenTK.Graphics.OpenGL.GL.Ext.GetVariantBoolean(_id,_value,_data); -} -static unsafe void Test_GetVariantFloat_25478() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Single[] _data = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetVariantFloat(_id,_value,_data); -} -static unsafe void Test_GetVariantFloat_25479() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Single _data = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.GetVariantFloat(_id,_value,out _data); -} -static unsafe void Test_GetVariantFloat_25480() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Single* _data = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.GetVariantFloat(_id,_value,_data); -} -static unsafe void Test_GetVariantFloat_25481() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Single[] _data = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetVariantFloat(_id,_value,_data); -} -static unsafe void Test_GetVariantFloat_25482() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Single _data = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.GetVariantFloat(_id,_value,out _data); -} -static unsafe void Test_GetVariantFloat_25483() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Single* _data = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.GetVariantFloat(_id,_value,_data); -} -static unsafe void Test_GetVariantInteger_25484() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Int32[] _data = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetVariantInteger(_id,_value,_data); -} -static unsafe void Test_GetVariantInteger_25485() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Int32 _data = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetVariantInteger(_id,_value,out _data); -} -static unsafe void Test_GetVariantInteger_25486() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Int32* _data = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetVariantInteger(_id,_value,_data); -} -static unsafe void Test_GetVariantInteger_25487() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Int32[] _data = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetVariantInteger(_id,_value,_data); -} -static unsafe void Test_GetVariantInteger_25488() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Int32 _data = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetVariantInteger(_id,_value,out _data); -} -static unsafe void Test_GetVariantInteger_25489() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Int32* _data = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetVariantInteger(_id,_value,_data); -} -static unsafe void Test_GetVariantPointer_25490() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.GetVariantPointer(_id,_value,_data); -} -static unsafe void Test_GetVariantPointer_25491() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetVariantPointer(_id,_value,_data); -} -static unsafe void Test_GetVariantPointer_25492() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetVariantPointer(_id,_value,_data); -} -static unsafe void Test_GetVariantPointer_25493() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetVariantPointer(_id,_value,_data); -} -static unsafe void Test_GetVariantPointer_25494() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.GetVariantPointer(_id,_value,ref _data); -} -static unsafe void Test_GetVariantPointer_25495() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.GetVariantPointer(_id,_value,_data); -} -static unsafe void Test_GetVariantPointer_25496() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetVariantPointer(_id,_value,_data); -} -static unsafe void Test_GetVariantPointer_25497() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetVariantPointer(_id,_value,_data); -} -static unsafe void Test_GetVariantPointer_25498() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetVariantPointer(_id,_value,_data); -} -static unsafe void Test_GetVariantPointer_25499() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _value = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.GetVariantPointer(_id,_value,ref _data); -} -static unsafe void Test_GetVertexArrayInteger_25500() { - System.Int32 _vaobj = default(System.Int32); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32[] _param = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexArrayInteger(_vaobj,_index,_pname,_param); -} -static unsafe void Test_GetVertexArrayInteger_25501() { - System.Int32 _vaobj = default(System.Int32); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexArrayInteger(_vaobj,_index,_pname,out _param); -} -static unsafe void Test_GetVertexArrayInteger_25502() { - System.Int32 _vaobj = default(System.Int32); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32* _param = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexArrayInteger(_vaobj,_index,_pname,_param); -} -static unsafe void Test_GetVertexArrayInteger_25503() { - System.UInt32 _vaobj = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32[] _param = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexArrayInteger(_vaobj,_index,_pname,_param); -} -static unsafe void Test_GetVertexArrayInteger_25504() { - System.UInt32 _vaobj = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexArrayInteger(_vaobj,_index,_pname,out _param); -} -static unsafe void Test_GetVertexArrayInteger_25505() { - System.UInt32 _vaobj = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32* _param = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexArrayInteger(_vaobj,_index,_pname,_param); -} -static unsafe void Test_GetVertexArrayInteger_25506() { - System.Int32 _vaobj = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32[] _param = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexArrayInteger(_vaobj,_pname,_param); -} -static unsafe void Test_GetVertexArrayInteger_25507() { - System.Int32 _vaobj = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexArrayInteger(_vaobj,_pname,out _param); -} -static unsafe void Test_GetVertexArrayInteger_25508() { - System.Int32 _vaobj = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32* _param = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexArrayInteger(_vaobj,_pname,_param); -} -static unsafe void Test_GetVertexArrayInteger_25509() { - System.UInt32 _vaobj = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32[] _param = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexArrayInteger(_vaobj,_pname,_param); -} -static unsafe void Test_GetVertexArrayInteger_25510() { - System.UInt32 _vaobj = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexArrayInteger(_vaobj,_pname,out _param); -} -static unsafe void Test_GetVertexArrayInteger_25511() { - System.UInt32 _vaobj = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32* _param = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexArrayInteger(_vaobj,_pname,_param); -} -static unsafe void Test_GetVertexArrayPointer_25512() { - System.Int32 _vaobj = default(System.Int32); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.IntPtr _param = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexArrayPointer(_vaobj,_index,_pname,_param); -} -static unsafe void Test_GetVertexArrayPointer_25513() { - System.Int32 _vaobj = default(System.Int32); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - int[] _param = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexArrayPointer(_vaobj,_index,_pname,_param); -} -static unsafe void Test_GetVertexArrayPointer_25514() { - System.Int32 _vaobj = default(System.Int32); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - int[,] _param = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexArrayPointer(_vaobj,_index,_pname,_param); -} -static unsafe void Test_GetVertexArrayPointer_25515() { - System.Int32 _vaobj = default(System.Int32); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - int[,,] _param = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexArrayPointer(_vaobj,_index,_pname,_param); -} -static unsafe void Test_GetVertexArrayPointer_25516() { - System.Int32 _vaobj = default(System.Int32); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - int _param = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexArrayPointer(_vaobj,_index,_pname,ref _param); -} -static unsafe void Test_GetVertexArrayPointer_25517() { - System.UInt32 _vaobj = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.IntPtr _param = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexArrayPointer(_vaobj,_index,_pname,_param); -} -static unsafe void Test_GetVertexArrayPointer_25518() { - System.UInt32 _vaobj = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - int[] _param = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexArrayPointer(_vaobj,_index,_pname,_param); -} -static unsafe void Test_GetVertexArrayPointer_25519() { - System.UInt32 _vaobj = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - int[,] _param = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexArrayPointer(_vaobj,_index,_pname,_param); -} -static unsafe void Test_GetVertexArrayPointer_25520() { - System.UInt32 _vaobj = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - int[,,] _param = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexArrayPointer(_vaobj,_index,_pname,_param); -} -static unsafe void Test_GetVertexArrayPointer_25521() { - System.UInt32 _vaobj = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - int _param = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexArrayPointer(_vaobj,_index,_pname,ref _param); -} -static unsafe void Test_GetVertexArrayPointer_25522() { - System.Int32 _vaobj = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.IntPtr _param = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexArrayPointer(_vaobj,_pname,_param); -} -static unsafe void Test_GetVertexArrayPointer_25523() { - System.Int32 _vaobj = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - int[] _param = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexArrayPointer(_vaobj,_pname,_param); -} -static unsafe void Test_GetVertexArrayPointer_25524() { - System.Int32 _vaobj = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - int[,] _param = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexArrayPointer(_vaobj,_pname,_param); -} -static unsafe void Test_GetVertexArrayPointer_25525() { - System.Int32 _vaobj = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - int[,,] _param = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexArrayPointer(_vaobj,_pname,_param); -} -static unsafe void Test_GetVertexArrayPointer_25526() { - System.Int32 _vaobj = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - int _param = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexArrayPointer(_vaobj,_pname,ref _param); -} -static unsafe void Test_GetVertexArrayPointer_25527() { - System.UInt32 _vaobj = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.IntPtr _param = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexArrayPointer(_vaobj,_pname,_param); -} -static unsafe void Test_GetVertexArrayPointer_25528() { - System.UInt32 _vaobj = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - int[] _param = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexArrayPointer(_vaobj,_pname,_param); -} -static unsafe void Test_GetVertexArrayPointer_25529() { - System.UInt32 _vaobj = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - int[,] _param = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexArrayPointer(_vaobj,_pname,_param); -} -static unsafe void Test_GetVertexArrayPointer_25530() { - System.UInt32 _vaobj = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - int[,,] _param = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexArrayPointer(_vaobj,_pname,_param); -} -static unsafe void Test_GetVertexArrayPointer_25531() { - System.UInt32 _vaobj = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _pname = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - int _param = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexArrayPointer(_vaobj,_pname,ref _param); -} -static unsafe void Test_GetVertexAttribI_25532() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexProgram4 _pname = default(OpenTK.Graphics.OpenGL.NvVertexProgram4); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexAttribI(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttribI_25533() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexProgram4 _pname = default(OpenTK.Graphics.OpenGL.NvVertexProgram4); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexAttribI(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribI_25534() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVertexProgram4 _pname = default(OpenTK.Graphics.OpenGL.NvVertexProgram4); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexAttribI(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttribI_25535() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVertexProgram4 _pname = default(OpenTK.Graphics.OpenGL.NvVertexProgram4); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexAttribI(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribI_25536() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVertexProgram4 _pname = default(OpenTK.Graphics.OpenGL.NvVertexProgram4); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexAttribI(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttribI_25537() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVertexProgram4 _pname = default(OpenTK.Graphics.OpenGL.NvVertexProgram4); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexAttribI(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribL_25538() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit _pname = default(OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexAttribL(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribL_25539() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit _pname = default(OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexAttribL(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttribL_25540() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit _pname = default(OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexAttribL(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribL_25541() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit _pname = default(OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexAttribL(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribL_25542() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit _pname = default(OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexAttribL(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttribL_25543() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit _pname = default(OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.GetVertexAttribL(_index,_pname,_params); -} -static unsafe void Test_Histogram_25544() { - OpenTK.Graphics.OpenGL.ExtHistogram _target = default(OpenTK.Graphics.OpenGL.ExtHistogram); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Boolean _sink = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Ext.Histogram(_target,_width,_internalformat,_sink); -} -static unsafe void Test_Histogram_25545() { - OpenTK.Graphics.OpenGL.HistogramTargetExt _target = default(OpenTK.Graphics.OpenGL.HistogramTargetExt); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Boolean _sink = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Ext.Histogram(_target,_width,_internalformat,_sink); -} -static unsafe void Test_ImportSync_25546() { - OpenTK.Graphics.OpenGL.ExtX11SyncObject _external_sync_type = default(OpenTK.Graphics.OpenGL.ExtX11SyncObject); - System.IntPtr _external_sync = default(System.IntPtr); - System.Int32 _flags = default(System.Int32); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.Ext.ImportSync(_external_sync_type,_external_sync,_flags); -} -static unsafe void Test_ImportSync_25547() { - OpenTK.Graphics.OpenGL.ExtX11SyncObject _external_sync_type = default(OpenTK.Graphics.OpenGL.ExtX11SyncObject); - System.IntPtr _external_sync = default(System.IntPtr); - System.UInt32 _flags = default(System.UInt32); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.Ext.ImportSync(_external_sync_type,_external_sync,_flags); -} -static unsafe void Test_IndexFunc_25548() { - OpenTK.Graphics.OpenGL.ExtIndexFunc _func = default(OpenTK.Graphics.OpenGL.ExtIndexFunc); - System.Single _ref = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.IndexFunc(_func,_ref); -} -static unsafe void Test_IndexMaterial_25549() { - OpenTK.Graphics.OpenGL.MaterialFace _face = default(OpenTK.Graphics.OpenGL.MaterialFace); - OpenTK.Graphics.OpenGL.ExtIndexMaterial _mode = default(OpenTK.Graphics.OpenGL.ExtIndexMaterial); - OpenTK.Graphics.OpenGL.GL.Ext.IndexMaterial(_face,_mode); -} -static unsafe void Test_IndexPointer_25550() { - OpenTK.Graphics.OpenGL.IndexPointerType _type = default(OpenTK.Graphics.OpenGL.IndexPointerType); - System.Int32 _stride = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.IndexPointer(_type,_stride,_count,_pointer); -} -static unsafe void Test_IndexPointer_25551() { - OpenTK.Graphics.OpenGL.IndexPointerType _type = default(OpenTK.Graphics.OpenGL.IndexPointerType); - System.Int32 _stride = default(System.Int32); - System.Int32 _count = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.IndexPointer(_type,_stride,_count,_pointer); -} -static unsafe void Test_IndexPointer_25552() { - OpenTK.Graphics.OpenGL.IndexPointerType _type = default(OpenTK.Graphics.OpenGL.IndexPointerType); - System.Int32 _stride = default(System.Int32); - System.Int32 _count = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.IndexPointer(_type,_stride,_count,_pointer); -} -static unsafe void Test_IndexPointer_25553() { - OpenTK.Graphics.OpenGL.IndexPointerType _type = default(OpenTK.Graphics.OpenGL.IndexPointerType); - System.Int32 _stride = default(System.Int32); - System.Int32 _count = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.IndexPointer(_type,_stride,_count,_pointer); -} -static unsafe void Test_IndexPointer_25554() { - OpenTK.Graphics.OpenGL.IndexPointerType _type = default(OpenTK.Graphics.OpenGL.IndexPointerType); - System.Int32 _stride = default(System.Int32); - System.Int32 _count = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.IndexPointer(_type,_stride,_count,ref _pointer); -} -static unsafe void Test_InsertComponent_25555() { - System.Int32 _res = default(System.Int32); - System.Int32 _src = default(System.Int32); - System.Int32 _num = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.InsertComponent(_res,_src,_num); -} -static unsafe void Test_InsertComponent_25556() { - System.UInt32 _res = default(System.UInt32); - System.UInt32 _src = default(System.UInt32); - System.UInt32 _num = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.InsertComponent(_res,_src,_num); -} -static unsafe void Test_InsertEventMarker_25557() { - System.Int32 _length = default(System.Int32); - System.String _marker = default(System.String); - OpenTK.Graphics.OpenGL.GL.Ext.InsertEventMarker(_length,_marker); -} -static unsafe void Test_IsEnabledIndexed_25558() { - OpenTK.Graphics.OpenGL.ExtDrawBuffers2 _target = default(OpenTK.Graphics.OpenGL.ExtDrawBuffers2); - System.Int32 _index = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Ext.IsEnabledIndexed(_target,_index); -} -static unsafe void Test_IsEnabledIndexed_25559() { - OpenTK.Graphics.OpenGL.ExtDrawBuffers2 _target = default(OpenTK.Graphics.OpenGL.ExtDrawBuffers2); - System.UInt32 _index = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Ext.IsEnabledIndexed(_target,_index); -} -static unsafe void Test_IsEnabledIndexed_25560() { - OpenTK.Graphics.OpenGL.IndexedEnableCap _target = default(OpenTK.Graphics.OpenGL.IndexedEnableCap); - System.Int32 _index = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Ext.IsEnabledIndexed(_target,_index); -} -static unsafe void Test_IsEnabledIndexed_25561() { - OpenTK.Graphics.OpenGL.IndexedEnableCap _target = default(OpenTK.Graphics.OpenGL.IndexedEnableCap); - System.UInt32 _index = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Ext.IsEnabledIndexed(_target,_index); -} -static unsafe void Test_IsFramebuffer_25562() { - System.Int32 _framebuffer = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Ext.IsFramebuffer(_framebuffer); -} -static unsafe void Test_IsFramebuffer_25563() { - System.UInt32 _framebuffer = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Ext.IsFramebuffer(_framebuffer); -} -static unsafe void Test_IsProgramPipeline_25564() { - System.Int32 _pipeline = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Ext.IsProgramPipeline(_pipeline); -} -static unsafe void Test_IsProgramPipeline_25565() { - System.UInt32 _pipeline = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Ext.IsProgramPipeline(_pipeline); -} -static unsafe void Test_IsRenderbuffer_25566() { - System.Int32 _renderbuffer = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Ext.IsRenderbuffer(_renderbuffer); -} -static unsafe void Test_IsRenderbuffer_25567() { - System.UInt32 _renderbuffer = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Ext.IsRenderbuffer(_renderbuffer); -} -static unsafe void Test_IsTexture_25568() { - System.Int32 _texture = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Ext.IsTexture(_texture); -} -static unsafe void Test_IsTexture_25569() { - System.UInt32 _texture = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Ext.IsTexture(_texture); -} -static unsafe void Test_IsVariantEnabled_25570() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _cap = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Ext.IsVariantEnabled(_id,_cap); -} -static unsafe void Test_IsVariantEnabled_25571() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _cap = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Ext.IsVariantEnabled(_id,_cap); -} -static unsafe void Test_LabelObject_25572() { - OpenTK.Graphics.OpenGL.ExtDebugLabel _type = default(OpenTK.Graphics.OpenGL.ExtDebugLabel); - System.Int32 _object = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.OpenGL.GL.Ext.LabelObject(_type,_object,_length,_label); -} -static unsafe void Test_LabelObject_25573() { - OpenTK.Graphics.OpenGL.ExtDebugLabel _type = default(OpenTK.Graphics.OpenGL.ExtDebugLabel); - System.UInt32 _object = default(System.UInt32); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.OpenGL.GL.Ext.LabelObject(_type,_object,_length,_label); -} -static unsafe void Test_LockArrays_25574() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.LockArrays(_first,_count); -} -static unsafe void Test_MapNamedBuffer_25575() { - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _access = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.Ext.MapNamedBuffer(_buffer,_access); -} -static unsafe void Test_MapNamedBuffer_25576() { - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _access = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.Ext.MapNamedBuffer(_buffer,_access); -} -static unsafe void Test_MapNamedBufferRange_25577() { - System.Int32 _buffer = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _length = default(System.IntPtr); - OpenTK.Graphics.OpenGL.BufferAccessMask _access = default(OpenTK.Graphics.OpenGL.BufferAccessMask); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.Ext.MapNamedBufferRange(_buffer,_offset,_length,_access); -} -static unsafe void Test_MapNamedBufferRange_25578() { - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _length = default(System.IntPtr); - OpenTK.Graphics.OpenGL.BufferAccessMask _access = default(OpenTK.Graphics.OpenGL.BufferAccessMask); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.Ext.MapNamedBufferRange(_buffer,_offset,_length,_access); -} -static unsafe void Test_MatrixFrustum_25579() { - OpenTK.Graphics.OpenGL.MatrixMode _mode = default(OpenTK.Graphics.OpenGL.MatrixMode); - System.Double _left = default(System.Double); - System.Double _right = default(System.Double); - System.Double _bottom = default(System.Double); - System.Double _top = default(System.Double); - System.Double _zNear = default(System.Double); - System.Double _zFar = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.MatrixFrustum(_mode,_left,_right,_bottom,_top,_zNear,_zFar); -} -static unsafe void Test_MatrixLoad_25580() { - OpenTK.Graphics.OpenGL.MatrixMode _mode = default(OpenTK.Graphics.OpenGL.MatrixMode); - System.Double[] _m = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.MatrixLoad(_mode,_m); -} -static unsafe void Test_MatrixLoad_25581() { - OpenTK.Graphics.OpenGL.MatrixMode _mode = default(OpenTK.Graphics.OpenGL.MatrixMode); - System.Double _m = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.MatrixLoad(_mode,ref _m); -} -static unsafe void Test_MatrixLoad_25582() { - OpenTK.Graphics.OpenGL.MatrixMode _mode = default(OpenTK.Graphics.OpenGL.MatrixMode); - System.Double* _m = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.MatrixLoad(_mode,_m); -} -static unsafe void Test_MatrixLoad_25583() { - OpenTK.Graphics.OpenGL.MatrixMode _mode = default(OpenTK.Graphics.OpenGL.MatrixMode); - System.Single[] _m = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.MatrixLoad(_mode,_m); -} -static unsafe void Test_MatrixLoad_25584() { - OpenTK.Graphics.OpenGL.MatrixMode _mode = default(OpenTK.Graphics.OpenGL.MatrixMode); - System.Single _m = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.MatrixLoad(_mode,ref _m); -} -static unsafe void Test_MatrixLoad_25585() { - OpenTK.Graphics.OpenGL.MatrixMode _mode = default(OpenTK.Graphics.OpenGL.MatrixMode); - System.Single* _m = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.MatrixLoad(_mode,_m); -} -static unsafe void Test_MatrixLoadIdentity_25586() { - OpenTK.Graphics.OpenGL.MatrixMode _mode = default(OpenTK.Graphics.OpenGL.MatrixMode); - OpenTK.Graphics.OpenGL.GL.Ext.MatrixLoadIdentity(_mode); -} -static unsafe void Test_MatrixLoadTranspose_25587() { - OpenTK.Graphics.OpenGL.MatrixMode _mode = default(OpenTK.Graphics.OpenGL.MatrixMode); - System.Double[] _m = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.MatrixLoadTranspose(_mode,_m); -} -static unsafe void Test_MatrixLoadTranspose_25588() { - OpenTK.Graphics.OpenGL.MatrixMode _mode = default(OpenTK.Graphics.OpenGL.MatrixMode); - System.Double _m = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.MatrixLoadTranspose(_mode,ref _m); -} -static unsafe void Test_MatrixLoadTranspose_25589() { - OpenTK.Graphics.OpenGL.MatrixMode _mode = default(OpenTK.Graphics.OpenGL.MatrixMode); - System.Double* _m = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.MatrixLoadTranspose(_mode,_m); -} -static unsafe void Test_MatrixLoadTranspose_25590() { - OpenTK.Graphics.OpenGL.MatrixMode _mode = default(OpenTK.Graphics.OpenGL.MatrixMode); - System.Single[] _m = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.MatrixLoadTranspose(_mode,_m); -} -static unsafe void Test_MatrixLoadTranspose_25591() { - OpenTK.Graphics.OpenGL.MatrixMode _mode = default(OpenTK.Graphics.OpenGL.MatrixMode); - System.Single _m = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.MatrixLoadTranspose(_mode,ref _m); -} -static unsafe void Test_MatrixLoadTranspose_25592() { - OpenTK.Graphics.OpenGL.MatrixMode _mode = default(OpenTK.Graphics.OpenGL.MatrixMode); - System.Single* _m = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.MatrixLoadTranspose(_mode,_m); -} -static unsafe void Test_MatrixMult_25593() { - OpenTK.Graphics.OpenGL.MatrixMode _mode = default(OpenTK.Graphics.OpenGL.MatrixMode); - System.Double[] _m = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.MatrixMult(_mode,_m); -} -static unsafe void Test_MatrixMult_25594() { - OpenTK.Graphics.OpenGL.MatrixMode _mode = default(OpenTK.Graphics.OpenGL.MatrixMode); - System.Double _m = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.MatrixMult(_mode,ref _m); -} -static unsafe void Test_MatrixMult_25595() { - OpenTK.Graphics.OpenGL.MatrixMode _mode = default(OpenTK.Graphics.OpenGL.MatrixMode); - System.Double* _m = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.MatrixMult(_mode,_m); -} -static unsafe void Test_MatrixMult_25596() { - OpenTK.Graphics.OpenGL.MatrixMode _mode = default(OpenTK.Graphics.OpenGL.MatrixMode); - System.Single[] _m = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.MatrixMult(_mode,_m); -} -static unsafe void Test_MatrixMult_25597() { - OpenTK.Graphics.OpenGL.MatrixMode _mode = default(OpenTK.Graphics.OpenGL.MatrixMode); - System.Single _m = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.MatrixMult(_mode,ref _m); -} -static unsafe void Test_MatrixMult_25598() { - OpenTK.Graphics.OpenGL.MatrixMode _mode = default(OpenTK.Graphics.OpenGL.MatrixMode); - System.Single* _m = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.MatrixMult(_mode,_m); -} -static unsafe void Test_MatrixMultTranspose_25599() { - OpenTK.Graphics.OpenGL.MatrixMode _mode = default(OpenTK.Graphics.OpenGL.MatrixMode); - System.Double[] _m = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.MatrixMultTranspose(_mode,_m); -} -static unsafe void Test_MatrixMultTranspose_25600() { - OpenTK.Graphics.OpenGL.MatrixMode _mode = default(OpenTK.Graphics.OpenGL.MatrixMode); - System.Double _m = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.MatrixMultTranspose(_mode,ref _m); -} -static unsafe void Test_MatrixMultTranspose_25601() { - OpenTK.Graphics.OpenGL.MatrixMode _mode = default(OpenTK.Graphics.OpenGL.MatrixMode); - System.Double* _m = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.MatrixMultTranspose(_mode,_m); -} -static unsafe void Test_MatrixMultTranspose_25602() { - OpenTK.Graphics.OpenGL.MatrixMode _mode = default(OpenTK.Graphics.OpenGL.MatrixMode); - System.Single[] _m = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.MatrixMultTranspose(_mode,_m); -} -static unsafe void Test_MatrixMultTranspose_25603() { - OpenTK.Graphics.OpenGL.MatrixMode _mode = default(OpenTK.Graphics.OpenGL.MatrixMode); - System.Single _m = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.MatrixMultTranspose(_mode,ref _m); -} -static unsafe void Test_MatrixMultTranspose_25604() { - OpenTK.Graphics.OpenGL.MatrixMode _mode = default(OpenTK.Graphics.OpenGL.MatrixMode); - System.Single* _m = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.MatrixMultTranspose(_mode,_m); -} -static unsafe void Test_MatrixOrtho_25605() { - OpenTK.Graphics.OpenGL.MatrixMode _mode = default(OpenTK.Graphics.OpenGL.MatrixMode); - System.Double _left = default(System.Double); - System.Double _right = default(System.Double); - System.Double _bottom = default(System.Double); - System.Double _top = default(System.Double); - System.Double _zNear = default(System.Double); - System.Double _zFar = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.MatrixOrtho(_mode,_left,_right,_bottom,_top,_zNear,_zFar); -} -static unsafe void Test_MatrixPop_25606() { - OpenTK.Graphics.OpenGL.MatrixMode _mode = default(OpenTK.Graphics.OpenGL.MatrixMode); - OpenTK.Graphics.OpenGL.GL.Ext.MatrixPop(_mode); -} -static unsafe void Test_MatrixPush_25607() { - OpenTK.Graphics.OpenGL.MatrixMode _mode = default(OpenTK.Graphics.OpenGL.MatrixMode); - OpenTK.Graphics.OpenGL.GL.Ext.MatrixPush(_mode); -} -static unsafe void Test_MatrixRotate_25608() { - OpenTK.Graphics.OpenGL.MatrixMode _mode = default(OpenTK.Graphics.OpenGL.MatrixMode); - System.Double _angle = default(System.Double); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.MatrixRotate(_mode,_angle,_x,_y,_z); -} -static unsafe void Test_MatrixRotate_25609() { - OpenTK.Graphics.OpenGL.MatrixMode _mode = default(OpenTK.Graphics.OpenGL.MatrixMode); - System.Single _angle = default(System.Single); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.MatrixRotate(_mode,_angle,_x,_y,_z); -} -static unsafe void Test_MatrixScale_25610() { - OpenTK.Graphics.OpenGL.MatrixMode _mode = default(OpenTK.Graphics.OpenGL.MatrixMode); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.MatrixScale(_mode,_x,_y,_z); -} -static unsafe void Test_MatrixScale_25611() { - OpenTK.Graphics.OpenGL.MatrixMode _mode = default(OpenTK.Graphics.OpenGL.MatrixMode); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.MatrixScale(_mode,_x,_y,_z); -} -static unsafe void Test_MatrixTranslate_25612() { - OpenTK.Graphics.OpenGL.MatrixMode _mode = default(OpenTK.Graphics.OpenGL.MatrixMode); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.MatrixTranslate(_mode,_x,_y,_z); -} -static unsafe void Test_MatrixTranslate_25613() { - OpenTK.Graphics.OpenGL.MatrixMode _mode = default(OpenTK.Graphics.OpenGL.MatrixMode); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.MatrixTranslate(_mode,_x,_y,_z); -} -static unsafe void Test_MemoryBarrier_25614() { - System.Int32 _barriers = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MemoryBarrier(_barriers); -} -static unsafe void Test_MemoryBarrier_25615() { - System.UInt32 _barriers = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.MemoryBarrier(_barriers); -} -static unsafe void Test_Minmax_25616() { - OpenTK.Graphics.OpenGL.ExtHistogram _target = default(OpenTK.Graphics.OpenGL.ExtHistogram); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Boolean _sink = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Ext.Minmax(_target,_internalformat,_sink); -} -static unsafe void Test_Minmax_25617() { - OpenTK.Graphics.OpenGL.MinmaxTargetExt _target = default(OpenTK.Graphics.OpenGL.MinmaxTargetExt); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Boolean _sink = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Ext.Minmax(_target,_internalformat,_sink); -} -static unsafe void Test_MultiDrawArrays_25618() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32[] _first = default(System.Int32[]); - System.Int32[] _count = default(System.Int32[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiDrawArrays(_mode,_first,_count,_primcount); -} -static unsafe void Test_MultiDrawArrays_25619() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiDrawArrays(_mode,ref _first,ref _count,_primcount); -} -static unsafe void Test_MultiDrawArrays_25620() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32* _first = default(System.Int32*); - System.Int32* _count = default(System.Int32*); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiDrawArrays(_mode,_first,_count,_primcount); -} -static unsafe void Test_MultiDrawArrays_25621() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32[] _first = default(System.Int32[]); - System.Int32[] _count = default(System.Int32[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiDrawArrays(_mode,_first,_count,_primcount); -} -static unsafe void Test_MultiDrawArrays_25622() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiDrawArrays(_mode,ref _first,ref _count,_primcount); -} -static unsafe void Test_MultiDrawArrays_25623() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32* _first = default(System.Int32*); - System.Int32* _count = default(System.Int32*); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiDrawArrays(_mode,_first,_count,_primcount); -} -static unsafe void Test_MultiDrawElements_25624() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_25625() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_25626() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_25627() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_25628() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiDrawElements(_mode,_count,_type,ref _indices,_primcount); -} -static unsafe void Test_MultiDrawElements_25629() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiDrawElements(_mode,ref _count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_25630() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiDrawElements(_mode,ref _count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_25631() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiDrawElements(_mode,ref _count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_25632() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiDrawElements(_mode,ref _count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_25633() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiDrawElements(_mode,ref _count,_type,ref _indices,_primcount); -} -static unsafe void Test_MultiDrawElements_25634() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_25635() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_25636() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_25637() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_25638() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiDrawElements(_mode,_count,_type,ref _indices,_primcount); -} -static unsafe void Test_MultiDrawElements_25639() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_25640() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_25641() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_25642() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_25643() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiDrawElements(_mode,_count,_type,ref _indices,_primcount); -} -static unsafe void Test_MultiDrawElements_25644() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiDrawElements(_mode,ref _count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_25645() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiDrawElements(_mode,ref _count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_25646() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiDrawElements(_mode,ref _count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_25647() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiDrawElements(_mode,ref _count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_25648() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiDrawElements(_mode,ref _count,_type,ref _indices,_primcount); -} -static unsafe void Test_MultiDrawElements_25649() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_25650() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_25651() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_25652() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_25653() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiDrawElements(_mode,_count,_type,ref _indices,_primcount); -} -static unsafe void Test_MultiTexBuffer_25654() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexBuffer(_texunit,_target,_internalformat,_buffer); -} -static unsafe void Test_MultiTexBuffer_25655() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexBuffer(_texunit,_target,_internalformat,_buffer); -} -static unsafe void Test_MultiTexCoordPointer_25656() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.TexCoordPointerType _type = default(OpenTK.Graphics.OpenGL.TexCoordPointerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexCoordPointer(_texunit,_size,_type,_stride,_pointer); -} -static unsafe void Test_MultiTexCoordPointer_25657() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.TexCoordPointerType _type = default(OpenTK.Graphics.OpenGL.TexCoordPointerType); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexCoordPointer(_texunit,_size,_type,_stride,_pointer); -} -static unsafe void Test_MultiTexCoordPointer_25658() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.TexCoordPointerType _type = default(OpenTK.Graphics.OpenGL.TexCoordPointerType); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexCoordPointer(_texunit,_size,_type,_stride,_pointer); -} -static unsafe void Test_MultiTexCoordPointer_25659() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.TexCoordPointerType _type = default(OpenTK.Graphics.OpenGL.TexCoordPointerType); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexCoordPointer(_texunit,_size,_type,_stride,_pointer); -} -static unsafe void Test_MultiTexCoordPointer_25660() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.TexCoordPointerType _type = default(OpenTK.Graphics.OpenGL.TexCoordPointerType); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexCoordPointer(_texunit,_size,_type,_stride,ref _pointer); -} -static unsafe void Test_MultiTexEnv_25661() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureEnvTarget _target = default(OpenTK.Graphics.OpenGL.TextureEnvTarget); - OpenTK.Graphics.OpenGL.TextureEnvParameter _pname = default(OpenTK.Graphics.OpenGL.TextureEnvParameter); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexEnv(_texunit,_target,_pname,_param); -} -static unsafe void Test_MultiTexEnv_25662() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureEnvTarget _target = default(OpenTK.Graphics.OpenGL.TextureEnvTarget); - OpenTK.Graphics.OpenGL.TextureEnvParameter _pname = default(OpenTK.Graphics.OpenGL.TextureEnvParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexEnv(_texunit,_target,_pname,_params); -} -static unsafe void Test_MultiTexEnv_25663() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureEnvTarget _target = default(OpenTK.Graphics.OpenGL.TextureEnvTarget); - OpenTK.Graphics.OpenGL.TextureEnvParameter _pname = default(OpenTK.Graphics.OpenGL.TextureEnvParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexEnv(_texunit,_target,_pname,_params); -} -static unsafe void Test_MultiTexEnv_25664() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureEnvTarget _target = default(OpenTK.Graphics.OpenGL.TextureEnvTarget); - OpenTK.Graphics.OpenGL.TextureEnvParameter _pname = default(OpenTK.Graphics.OpenGL.TextureEnvParameter); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexEnv(_texunit,_target,_pname,_param); -} -static unsafe void Test_MultiTexEnv_25665() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureEnvTarget _target = default(OpenTK.Graphics.OpenGL.TextureEnvTarget); - OpenTK.Graphics.OpenGL.TextureEnvParameter _pname = default(OpenTK.Graphics.OpenGL.TextureEnvParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexEnv(_texunit,_target,_pname,_params); -} -static unsafe void Test_MultiTexEnv_25666() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureEnvTarget _target = default(OpenTK.Graphics.OpenGL.TextureEnvTarget); - OpenTK.Graphics.OpenGL.TextureEnvParameter _pname = default(OpenTK.Graphics.OpenGL.TextureEnvParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexEnv(_texunit,_target,_pname,_params); -} -static unsafe void Test_MultiTexGend_25667() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureCoordName _coord = default(OpenTK.Graphics.OpenGL.TextureCoordName); - OpenTK.Graphics.OpenGL.TextureGenParameter _pname = default(OpenTK.Graphics.OpenGL.TextureGenParameter); - System.Double _param = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexGend(_texunit,_coord,_pname,_param); -} -static unsafe void Test_MultiTexGen_25668() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureCoordName _coord = default(OpenTK.Graphics.OpenGL.TextureCoordName); - OpenTK.Graphics.OpenGL.TextureGenParameter _pname = default(OpenTK.Graphics.OpenGL.TextureGenParameter); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexGen(_texunit,_coord,_pname,_params); -} -static unsafe void Test_MultiTexGen_25669() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureCoordName _coord = default(OpenTK.Graphics.OpenGL.TextureCoordName); - OpenTK.Graphics.OpenGL.TextureGenParameter _pname = default(OpenTK.Graphics.OpenGL.TextureGenParameter); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexGen(_texunit,_coord,_pname,ref _params); -} -static unsafe void Test_MultiTexGen_25670() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureCoordName _coord = default(OpenTK.Graphics.OpenGL.TextureCoordName); - OpenTK.Graphics.OpenGL.TextureGenParameter _pname = default(OpenTK.Graphics.OpenGL.TextureGenParameter); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexGen(_texunit,_coord,_pname,_params); -} -static unsafe void Test_MultiTexGen_25671() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureCoordName _coord = default(OpenTK.Graphics.OpenGL.TextureCoordName); - OpenTK.Graphics.OpenGL.TextureGenParameter _pname = default(OpenTK.Graphics.OpenGL.TextureGenParameter); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexGen(_texunit,_coord,_pname,_param); -} -static unsafe void Test_MultiTexGen_25672() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureCoordName _coord = default(OpenTK.Graphics.OpenGL.TextureCoordName); - OpenTK.Graphics.OpenGL.TextureGenParameter _pname = default(OpenTK.Graphics.OpenGL.TextureGenParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexGen(_texunit,_coord,_pname,_params); -} -static unsafe void Test_MultiTexGen_25673() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureCoordName _coord = default(OpenTK.Graphics.OpenGL.TextureCoordName); - OpenTK.Graphics.OpenGL.TextureGenParameter _pname = default(OpenTK.Graphics.OpenGL.TextureGenParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexGen(_texunit,_coord,_pname,_params); -} -static unsafe void Test_MultiTexGen_25674() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureCoordName _coord = default(OpenTK.Graphics.OpenGL.TextureCoordName); - OpenTK.Graphics.OpenGL.TextureGenParameter _pname = default(OpenTK.Graphics.OpenGL.TextureGenParameter); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexGen(_texunit,_coord,_pname,_param); -} -static unsafe void Test_MultiTexGen_25675() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureCoordName _coord = default(OpenTK.Graphics.OpenGL.TextureCoordName); - OpenTK.Graphics.OpenGL.TextureGenParameter _pname = default(OpenTK.Graphics.OpenGL.TextureGenParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexGen(_texunit,_coord,_pname,_params); -} -static unsafe void Test_MultiTexGen_25676() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureCoordName _coord = default(OpenTK.Graphics.OpenGL.TextureCoordName); - OpenTK.Graphics.OpenGL.TextureGenParameter _pname = default(OpenTK.Graphics.OpenGL.TextureGenParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexGen(_texunit,_coord,_pname,_params); -} -static unsafe void Test_MultiTexImage1D_25677() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexImage1D(_texunit,_target,_level,_internalformat,_width,_border,_format,_type,_pixels); -} -static unsafe void Test_MultiTexImage1D_25678() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexImage1D(_texunit,_target,_level,_internalformat,_width,_border,_format,_type,_pixels); -} -static unsafe void Test_MultiTexImage1D_25679() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexImage1D(_texunit,_target,_level,_internalformat,_width,_border,_format,_type,_pixels); -} -static unsafe void Test_MultiTexImage1D_25680() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexImage1D(_texunit,_target,_level,_internalformat,_width,_border,_format,_type,_pixels); -} -static unsafe void Test_MultiTexImage1D_25681() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexImage1D(_texunit,_target,_level,_internalformat,_width,_border,_format,_type,ref _pixels); -} -static unsafe void Test_MultiTexImage1D_25682() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexImage1D(_texunit,_target,_level,_internalformat,_width,_border,_format,_type,_pixels); -} -static unsafe void Test_MultiTexImage1D_25683() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexImage1D(_texunit,_target,_level,_internalformat,_width,_border,_format,_type,_pixels); -} -static unsafe void Test_MultiTexImage1D_25684() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexImage1D(_texunit,_target,_level,_internalformat,_width,_border,_format,_type,_pixels); -} -static unsafe void Test_MultiTexImage1D_25685() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexImage1D(_texunit,_target,_level,_internalformat,_width,_border,_format,_type,_pixels); -} -static unsafe void Test_MultiTexImage1D_25686() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexImage1D(_texunit,_target,_level,_internalformat,_width,_border,_format,_type,ref _pixels); -} -static unsafe void Test_MultiTexImage2D_25687() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexImage2D(_texunit,_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_MultiTexImage2D_25688() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexImage2D(_texunit,_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_MultiTexImage2D_25689() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexImage2D(_texunit,_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_MultiTexImage2D_25690() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexImage2D(_texunit,_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_MultiTexImage2D_25691() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexImage2D(_texunit,_target,_level,_internalformat,_width,_height,_border,_format,_type,ref _pixels); -} -static unsafe void Test_MultiTexImage2D_25692() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexImage2D(_texunit,_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_MultiTexImage2D_25693() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexImage2D(_texunit,_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_MultiTexImage2D_25694() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexImage2D(_texunit,_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_MultiTexImage2D_25695() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexImage2D(_texunit,_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_MultiTexImage2D_25696() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexImage2D(_texunit,_target,_level,_internalformat,_width,_height,_border,_format,_type,ref _pixels); -} -static unsafe void Test_MultiTexImage3D_25697() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexImage3D(_texunit,_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_MultiTexImage3D_25698() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexImage3D(_texunit,_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_MultiTexImage3D_25699() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexImage3D(_texunit,_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_MultiTexImage3D_25700() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexImage3D(_texunit,_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_MultiTexImage3D_25701() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexImage3D(_texunit,_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,ref _pixels); -} -static unsafe void Test_MultiTexImage3D_25702() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexImage3D(_texunit,_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_MultiTexImage3D_25703() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexImage3D(_texunit,_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_MultiTexImage3D_25704() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexImage3D(_texunit,_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_MultiTexImage3D_25705() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexImage3D(_texunit,_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_MultiTexImage3D_25706() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexImage3D(_texunit,_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,ref _pixels); -} -static unsafe void Test_MultiTexParameter_25707() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexParameter(_texunit,_target,_pname,_param); -} -static unsafe void Test_MultiTexParameter_25708() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexParameter(_texunit,_target,_pname,_params); -} -static unsafe void Test_MultiTexParameter_25709() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexParameter(_texunit,_target,_pname,_params); -} -static unsafe void Test_MultiTexParameter_25710() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexParameter(_texunit,_target,_pname,_param); -} -static unsafe void Test_MultiTexParameterI_25711() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexParameterI(_texunit,_target,_pname,_params); -} -static unsafe void Test_MultiTexParameterI_25712() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexParameterI(_texunit,_target,_pname,ref _params); -} -static unsafe void Test_MultiTexParameterI_25713() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexParameterI(_texunit,_target,_pname,_params); -} -static unsafe void Test_MultiTexParameterI_25714() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexParameterI(_texunit,_target,_pname,_params); -} -static unsafe void Test_MultiTexParameterI_25715() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexParameterI(_texunit,_target,_pname,ref _params); -} -static unsafe void Test_MultiTexParameterI_25716() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexParameterI(_texunit,_target,_pname,_params); -} -static unsafe void Test_MultiTexParameter_25717() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexParameter(_texunit,_target,_pname,_params); -} -static unsafe void Test_MultiTexParameter_25718() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexParameter(_texunit,_target,_pname,_params); -} -static unsafe void Test_MultiTexRenderbuffer_25719() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _renderbuffer = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexRenderbuffer(_texunit,_target,_renderbuffer); -} -static unsafe void Test_MultiTexRenderbuffer_25720() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.UInt32 _renderbuffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexRenderbuffer(_texunit,_target,_renderbuffer); -} -static unsafe void Test_MultiTexSubImage1D_25721() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexSubImage1D(_texunit,_target,_level,_xoffset,_width,_format,_type,_pixels); -} -static unsafe void Test_MultiTexSubImage1D_25722() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexSubImage1D(_texunit,_target,_level,_xoffset,_width,_format,_type,_pixels); -} -static unsafe void Test_MultiTexSubImage1D_25723() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexSubImage1D(_texunit,_target,_level,_xoffset,_width,_format,_type,_pixels); -} -static unsafe void Test_MultiTexSubImage1D_25724() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexSubImage1D(_texunit,_target,_level,_xoffset,_width,_format,_type,_pixels); -} -static unsafe void Test_MultiTexSubImage1D_25725() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexSubImage1D(_texunit,_target,_level,_xoffset,_width,_format,_type,ref _pixels); -} -static unsafe void Test_MultiTexSubImage2D_25726() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexSubImage2D(_texunit,_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_MultiTexSubImage2D_25727() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexSubImage2D(_texunit,_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_MultiTexSubImage2D_25728() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexSubImage2D(_texunit,_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_MultiTexSubImage2D_25729() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexSubImage2D(_texunit,_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_MultiTexSubImage2D_25730() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexSubImage2D(_texunit,_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,ref _pixels); -} -static unsafe void Test_MultiTexSubImage3D_25731() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexSubImage3D(_texunit,_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_MultiTexSubImage3D_25732() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexSubImage3D(_texunit,_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_MultiTexSubImage3D_25733() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexSubImage3D(_texunit,_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_MultiTexSubImage3D_25734() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexSubImage3D(_texunit,_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_MultiTexSubImage3D_25735() { - OpenTK.Graphics.OpenGL.TextureUnit _texunit = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.MultiTexSubImage3D(_texunit,_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,ref _pixels); -} -static unsafe void Test_NamedBufferData_25736() { - System.Int32 _buffer = default(System.Int32); - System.IntPtr _size = default(System.IntPtr); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _usage = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.GL.Ext.NamedBufferData(_buffer,_size,_data,_usage); -} -static unsafe void Test_NamedBufferData_25737() { - System.Int32 _buffer = default(System.Int32); - System.IntPtr _size = default(System.IntPtr); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _usage = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.GL.Ext.NamedBufferData(_buffer,_size,_data,_usage); -} -static unsafe void Test_NamedBufferData_25738() { - System.Int32 _buffer = default(System.Int32); - System.IntPtr _size = default(System.IntPtr); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _usage = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.GL.Ext.NamedBufferData(_buffer,_size,_data,_usage); -} -static unsafe void Test_NamedBufferData_25739() { - System.Int32 _buffer = default(System.Int32); - System.IntPtr _size = default(System.IntPtr); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _usage = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.GL.Ext.NamedBufferData(_buffer,_size,_data,_usage); -} -static unsafe void Test_NamedBufferData_25740() { - System.Int32 _buffer = default(System.Int32); - System.IntPtr _size = default(System.IntPtr); - int _data = default(int); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _usage = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.GL.Ext.NamedBufferData(_buffer,_size,ref _data,_usage); -} -static unsafe void Test_NamedBufferData_25741() { - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr _size = default(System.IntPtr); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _usage = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.GL.Ext.NamedBufferData(_buffer,_size,_data,_usage); -} -static unsafe void Test_NamedBufferData_25742() { - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr _size = default(System.IntPtr); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _usage = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.GL.Ext.NamedBufferData(_buffer,_size,_data,_usage); -} -static unsafe void Test_NamedBufferData_25743() { - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr _size = default(System.IntPtr); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _usage = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.GL.Ext.NamedBufferData(_buffer,_size,_data,_usage); -} -static unsafe void Test_NamedBufferData_25744() { - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr _size = default(System.IntPtr); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _usage = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.GL.Ext.NamedBufferData(_buffer,_size,_data,_usage); -} -static unsafe void Test_NamedBufferData_25745() { - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr _size = default(System.IntPtr); - int _data = default(int); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _usage = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.GL.Ext.NamedBufferData(_buffer,_size,ref _data,_usage); -} -static unsafe void Test_NamedBufferStorage_25746() { - System.Int32 _buffer = default(System.Int32); - System.IntPtr _size = default(System.IntPtr); - System.IntPtr _data = default(System.IntPtr); - System.Int32 _flags = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.NamedBufferStorage(_buffer,_size,_data,_flags); -} -static unsafe void Test_NamedBufferStorage_25747() { - System.Int32 _buffer = default(System.Int32); - System.IntPtr _size = default(System.IntPtr); - int[] _data = default(int[]); - System.Int32 _flags = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.NamedBufferStorage(_buffer,_size,_data,_flags); -} -static unsafe void Test_NamedBufferStorage_25748() { - System.Int32 _buffer = default(System.Int32); - System.IntPtr _size = default(System.IntPtr); - int[,] _data = default(int[,]); - System.Int32 _flags = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.NamedBufferStorage(_buffer,_size,_data,_flags); -} -static unsafe void Test_NamedBufferStorage_25749() { - System.Int32 _buffer = default(System.Int32); - System.IntPtr _size = default(System.IntPtr); - int[,,] _data = default(int[,,]); - System.Int32 _flags = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.NamedBufferStorage(_buffer,_size,_data,_flags); -} -static unsafe void Test_NamedBufferStorage_25750() { - System.Int32 _buffer = default(System.Int32); - System.IntPtr _size = default(System.IntPtr); - int _data = default(int); - System.Int32 _flags = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.NamedBufferStorage(_buffer,_size,ref _data,_flags); -} -static unsafe void Test_NamedBufferStorage_25751() { - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr _size = default(System.IntPtr); - System.IntPtr _data = default(System.IntPtr); - System.UInt32 _flags = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.NamedBufferStorage(_buffer,_size,_data,_flags); -} -static unsafe void Test_NamedBufferStorage_25752() { - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr _size = default(System.IntPtr); - int[] _data = default(int[]); - System.UInt32 _flags = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.NamedBufferStorage(_buffer,_size,_data,_flags); -} -static unsafe void Test_NamedBufferStorage_25753() { - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr _size = default(System.IntPtr); - int[,] _data = default(int[,]); - System.UInt32 _flags = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.NamedBufferStorage(_buffer,_size,_data,_flags); -} -static unsafe void Test_NamedBufferStorage_25754() { - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr _size = default(System.IntPtr); - int[,,] _data = default(int[,,]); - System.UInt32 _flags = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.NamedBufferStorage(_buffer,_size,_data,_flags); -} -static unsafe void Test_NamedBufferStorage_25755() { - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr _size = default(System.IntPtr); - int _data = default(int); - System.UInt32 _flags = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.NamedBufferStorage(_buffer,_size,ref _data,_flags); -} -static unsafe void Test_NamedBufferSubData_25756() { - System.Int32 _buffer = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.NamedBufferSubData(_buffer,_offset,_size,_data); -} -static unsafe void Test_NamedBufferSubData_25757() { - System.Int32 _buffer = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.NamedBufferSubData(_buffer,_offset,_size,_data); -} -static unsafe void Test_NamedBufferSubData_25758() { - System.Int32 _buffer = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.NamedBufferSubData(_buffer,_offset,_size,_data); -} -static unsafe void Test_NamedBufferSubData_25759() { - System.Int32 _buffer = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.NamedBufferSubData(_buffer,_offset,_size,_data); -} -static unsafe void Test_NamedBufferSubData_25760() { - System.Int32 _buffer = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.NamedBufferSubData(_buffer,_offset,_size,ref _data); -} -static unsafe void Test_NamedBufferSubData_25761() { - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.NamedBufferSubData(_buffer,_offset,_size,_data); -} -static unsafe void Test_NamedBufferSubData_25762() { - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.NamedBufferSubData(_buffer,_offset,_size,_data); -} -static unsafe void Test_NamedBufferSubData_25763() { - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.NamedBufferSubData(_buffer,_offset,_size,_data); -} -static unsafe void Test_NamedBufferSubData_25764() { - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.NamedBufferSubData(_buffer,_offset,_size,_data); -} -static unsafe void Test_NamedBufferSubData_25765() { - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.NamedBufferSubData(_buffer,_offset,_size,ref _data); -} -static unsafe void Test_NamedCopyBufferSubData_25766() { - System.Int32 _readBuffer = default(System.Int32); - System.Int32 _writeBuffer = default(System.Int32); - System.IntPtr _readOffset = default(System.IntPtr); - System.IntPtr _writeOffset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.NamedCopyBufferSubData(_readBuffer,_writeBuffer,_readOffset,_writeOffset,_size); -} -static unsafe void Test_NamedCopyBufferSubData_25767() { - System.UInt32 _readBuffer = default(System.UInt32); - System.UInt32 _writeBuffer = default(System.UInt32); - System.IntPtr _readOffset = default(System.IntPtr); - System.IntPtr _writeOffset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.NamedCopyBufferSubData(_readBuffer,_writeBuffer,_readOffset,_writeOffset,_size); -} -static unsafe void Test_NamedFramebufferParameter_25768() { - System.Int32 _framebuffer = default(System.Int32); - OpenTK.Graphics.OpenGL.FramebufferParameterName _pname = default(OpenTK.Graphics.OpenGL.FramebufferParameterName); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.NamedFramebufferParameter(_framebuffer,_pname,_param); -} -static unsafe void Test_NamedFramebufferParameter_25769() { - System.UInt32 _framebuffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.FramebufferParameterName _pname = default(OpenTK.Graphics.OpenGL.FramebufferParameterName); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.NamedFramebufferParameter(_framebuffer,_pname,_param); -} -static unsafe void Test_NamedFramebufferRenderbuffer_25770() { - System.Int32 _framebuffer = default(System.Int32); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - OpenTK.Graphics.OpenGL.RenderbufferTarget _renderbuffertarget = default(OpenTK.Graphics.OpenGL.RenderbufferTarget); - System.Int32 _renderbuffer = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.NamedFramebufferRenderbuffer(_framebuffer,_attachment,_renderbuffertarget,_renderbuffer); -} -static unsafe void Test_NamedFramebufferRenderbuffer_25771() { - System.UInt32 _framebuffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - OpenTK.Graphics.OpenGL.RenderbufferTarget _renderbuffertarget = default(OpenTK.Graphics.OpenGL.RenderbufferTarget); - System.UInt32 _renderbuffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.NamedFramebufferRenderbuffer(_framebuffer,_attachment,_renderbuffertarget,_renderbuffer); -} -static unsafe void Test_NamedFramebufferTexture1D_25772() { - System.Int32 _framebuffer = default(System.Int32); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - OpenTK.Graphics.OpenGL.TextureTarget _textarget = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.NamedFramebufferTexture1D(_framebuffer,_attachment,_textarget,_texture,_level); -} -static unsafe void Test_NamedFramebufferTexture1D_25773() { - System.UInt32 _framebuffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - OpenTK.Graphics.OpenGL.TextureTarget _textarget = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.NamedFramebufferTexture1D(_framebuffer,_attachment,_textarget,_texture,_level); -} -static unsafe void Test_NamedFramebufferTexture2D_25774() { - System.Int32 _framebuffer = default(System.Int32); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - OpenTK.Graphics.OpenGL.TextureTarget _textarget = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.NamedFramebufferTexture2D(_framebuffer,_attachment,_textarget,_texture,_level); -} -static unsafe void Test_NamedFramebufferTexture2D_25775() { - System.UInt32 _framebuffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - OpenTK.Graphics.OpenGL.TextureTarget _textarget = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.NamedFramebufferTexture2D(_framebuffer,_attachment,_textarget,_texture,_level); -} -static unsafe void Test_NamedFramebufferTexture3D_25776() { - System.Int32 _framebuffer = default(System.Int32); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - OpenTK.Graphics.OpenGL.TextureTarget _textarget = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.NamedFramebufferTexture3D(_framebuffer,_attachment,_textarget,_texture,_level,_zoffset); -} -static unsafe void Test_NamedFramebufferTexture3D_25777() { - System.UInt32 _framebuffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - OpenTK.Graphics.OpenGL.TextureTarget _textarget = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.NamedFramebufferTexture3D(_framebuffer,_attachment,_textarget,_texture,_level,_zoffset); -} -static unsafe void Test_NamedFramebufferTexture_25778() { - System.Int32 _framebuffer = default(System.Int32); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.NamedFramebufferTexture(_framebuffer,_attachment,_texture,_level); -} -static unsafe void Test_NamedFramebufferTexture_25779() { - System.UInt32 _framebuffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.NamedFramebufferTexture(_framebuffer,_attachment,_texture,_level); -} -static unsafe void Test_NamedFramebufferTextureFace_25780() { - System.Int32 _framebuffer = default(System.Int32); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _face = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GL.Ext.NamedFramebufferTextureFace(_framebuffer,_attachment,_texture,_level,_face); -} -static unsafe void Test_NamedFramebufferTextureFace_25781() { - System.UInt32 _framebuffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _face = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.GL.Ext.NamedFramebufferTextureFace(_framebuffer,_attachment,_texture,_level,_face); -} -static unsafe void Test_NamedFramebufferTextureLayer_25782() { - System.Int32 _framebuffer = default(System.Int32); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - System.Int32 _layer = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.NamedFramebufferTextureLayer(_framebuffer,_attachment,_texture,_level,_layer); -} -static unsafe void Test_NamedFramebufferTextureLayer_25783() { - System.UInt32 _framebuffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL.FramebufferAttachment); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - System.Int32 _layer = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.NamedFramebufferTextureLayer(_framebuffer,_attachment,_texture,_level,_layer); -} -static unsafe void Test_NamedProgramLocalParameter4_25784() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - System.Double _w = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParameter4(_program,_target,_index,_x,_y,_z,_w); -} -static unsafe void Test_NamedProgramLocalParameter4_25785() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - System.Double _w = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParameter4(_program,_target,_index,_x,_y,_z,_w); -} -static unsafe void Test_NamedProgramLocalParameter4_25786() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParameter4(_program,_target,_index,_params); -} -static unsafe void Test_NamedProgramLocalParameter4_25787() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParameter4(_program,_target,_index,ref _params); -} -static unsafe void Test_NamedProgramLocalParameter4_25788() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParameter4(_program,_target,_index,_params); -} -static unsafe void Test_NamedProgramLocalParameter4_25789() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParameter4(_program,_target,_index,_params); -} -static unsafe void Test_NamedProgramLocalParameter4_25790() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParameter4(_program,_target,_index,ref _params); -} -static unsafe void Test_NamedProgramLocalParameter4_25791() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParameter4(_program,_target,_index,_params); -} -static unsafe void Test_NamedProgramLocalParameter4_25792() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - System.Single _w = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParameter4(_program,_target,_index,_x,_y,_z,_w); -} -static unsafe void Test_NamedProgramLocalParameter4_25793() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - System.Single _w = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParameter4(_program,_target,_index,_x,_y,_z,_w); -} -static unsafe void Test_NamedProgramLocalParameter4_25794() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParameter4(_program,_target,_index,_params); -} -static unsafe void Test_NamedProgramLocalParameter4_25795() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParameter4(_program,_target,_index,ref _params); -} -static unsafe void Test_NamedProgramLocalParameter4_25796() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParameter4(_program,_target,_index,_params); -} -static unsafe void Test_NamedProgramLocalParameter4_25797() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParameter4(_program,_target,_index,_params); -} -static unsafe void Test_NamedProgramLocalParameter4_25798() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParameter4(_program,_target,_index,ref _params); -} -static unsafe void Test_NamedProgramLocalParameter4_25799() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParameter4(_program,_target,_index,_params); -} -static unsafe void Test_NamedProgramLocalParameterI4_25800() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - System.Int32 _w = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParameterI4(_program,_target,_index,_x,_y,_z,_w); -} -static unsafe void Test_NamedProgramLocalParameterI4_25801() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - System.Int32 _w = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParameterI4(_program,_target,_index,_x,_y,_z,_w); -} -static unsafe void Test_NamedProgramLocalParameterI4_25802() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParameterI4(_program,_target,_index,_params); -} -static unsafe void Test_NamedProgramLocalParameterI4_25803() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParameterI4(_program,_target,_index,ref _params); -} -static unsafe void Test_NamedProgramLocalParameterI4_25804() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParameterI4(_program,_target,_index,_params); -} -static unsafe void Test_NamedProgramLocalParameterI4_25805() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParameterI4(_program,_target,_index,_params); -} -static unsafe void Test_NamedProgramLocalParameterI4_25806() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParameterI4(_program,_target,_index,ref _params); -} -static unsafe void Test_NamedProgramLocalParameterI4_25807() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParameterI4(_program,_target,_index,_params); -} -static unsafe void Test_NamedProgramLocalParameterI4_25808() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.UInt32 _x = default(System.UInt32); - System.UInt32 _y = default(System.UInt32); - System.UInt32 _z = default(System.UInt32); - System.UInt32 _w = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParameterI4(_program,_target,_index,_x,_y,_z,_w); -} -static unsafe void Test_NamedProgramLocalParameterI4_25809() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParameterI4(_program,_target,_index,_params); -} -static unsafe void Test_NamedProgramLocalParameterI4_25810() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParameterI4(_program,_target,_index,ref _params); -} -static unsafe void Test_NamedProgramLocalParameterI4_25811() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParameterI4(_program,_target,_index,_params); -} -static unsafe void Test_NamedProgramLocalParameters4_25812() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParameters4(_program,_target,_index,_count,_params); -} -static unsafe void Test_NamedProgramLocalParameters4_25813() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParameters4(_program,_target,_index,_count,ref _params); -} -static unsafe void Test_NamedProgramLocalParameters4_25814() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParameters4(_program,_target,_index,_count,_params); -} -static unsafe void Test_NamedProgramLocalParameters4_25815() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParameters4(_program,_target,_index,_count,_params); -} -static unsafe void Test_NamedProgramLocalParameters4_25816() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParameters4(_program,_target,_index,_count,ref _params); -} -static unsafe void Test_NamedProgramLocalParameters4_25817() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParameters4(_program,_target,_index,_count,_params); -} -static unsafe void Test_NamedProgramLocalParametersI4_25818() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParametersI4(_program,_target,_index,_count,_params); -} -static unsafe void Test_NamedProgramLocalParametersI4_25819() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParametersI4(_program,_target,_index,_count,ref _params); -} -static unsafe void Test_NamedProgramLocalParametersI4_25820() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParametersI4(_program,_target,_index,_count,_params); -} -static unsafe void Test_NamedProgramLocalParametersI4_25821() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParametersI4(_program,_target,_index,_count,_params); -} -static unsafe void Test_NamedProgramLocalParametersI4_25822() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParametersI4(_program,_target,_index,_count,ref _params); -} -static unsafe void Test_NamedProgramLocalParametersI4_25823() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParametersI4(_program,_target,_index,_count,_params); -} -static unsafe void Test_NamedProgramLocalParametersI4_25824() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParametersI4(_program,_target,_index,_count,_params); -} -static unsafe void Test_NamedProgramLocalParametersI4_25825() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParametersI4(_program,_target,_index,_count,ref _params); -} -static unsafe void Test_NamedProgramLocalParametersI4_25826() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramLocalParametersI4(_program,_target,_index,_count,_params); -} -static unsafe void Test_NamedProgramString_25827() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _format = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _len = default(System.Int32); - System.IntPtr _string = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramString(_program,_target,_format,_len,_string); -} -static unsafe void Test_NamedProgramString_25828() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _format = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _len = default(System.Int32); - int[] _string = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramString(_program,_target,_format,_len,_string); -} -static unsafe void Test_NamedProgramString_25829() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _format = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _len = default(System.Int32); - int[,] _string = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramString(_program,_target,_format,_len,_string); -} -static unsafe void Test_NamedProgramString_25830() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _format = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _len = default(System.Int32); - int[,,] _string = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramString(_program,_target,_format,_len,_string); -} -static unsafe void Test_NamedProgramString_25831() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _format = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _len = default(System.Int32); - int _string = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramString(_program,_target,_format,_len,ref _string); -} -static unsafe void Test_NamedProgramString_25832() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _format = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _len = default(System.Int32); - System.IntPtr _string = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramString(_program,_target,_format,_len,_string); -} -static unsafe void Test_NamedProgramString_25833() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _format = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _len = default(System.Int32); - int[] _string = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramString(_program,_target,_format,_len,_string); -} -static unsafe void Test_NamedProgramString_25834() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _format = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _len = default(System.Int32); - int[,] _string = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramString(_program,_target,_format,_len,_string); -} -static unsafe void Test_NamedProgramString_25835() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _format = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _len = default(System.Int32); - int[,,] _string = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramString(_program,_target,_format,_len,_string); -} -static unsafe void Test_NamedProgramString_25836() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _format = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _len = default(System.Int32); - int _string = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.NamedProgramString(_program,_target,_format,_len,ref _string); -} -static unsafe void Test_NamedRenderbufferStorage_25837() { - System.Int32 _renderbuffer = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.NamedRenderbufferStorage(_renderbuffer,_internalformat,_width,_height); -} -static unsafe void Test_NamedRenderbufferStorage_25838() { - System.UInt32 _renderbuffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.NamedRenderbufferStorage(_renderbuffer,_internalformat,_width,_height); -} -static unsafe void Test_NamedRenderbufferStorageMultisampleCoverage_25839() { - System.Int32 _renderbuffer = default(System.Int32); - System.Int32 _coverageSamples = default(System.Int32); - System.Int32 _colorSamples = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.NamedRenderbufferStorageMultisampleCoverage(_renderbuffer,_coverageSamples,_colorSamples,_internalformat,_width,_height); -} -static unsafe void Test_NamedRenderbufferStorageMultisampleCoverage_25840() { - System.UInt32 _renderbuffer = default(System.UInt32); - System.Int32 _coverageSamples = default(System.Int32); - System.Int32 _colorSamples = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.NamedRenderbufferStorageMultisampleCoverage(_renderbuffer,_coverageSamples,_colorSamples,_internalformat,_width,_height); -} -static unsafe void Test_NamedRenderbufferStorageMultisample_25841() { - System.Int32 _renderbuffer = default(System.Int32); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.NamedRenderbufferStorageMultisample(_renderbuffer,_samples,_internalformat,_width,_height); -} -static unsafe void Test_NamedRenderbufferStorageMultisample_25842() { - System.UInt32 _renderbuffer = default(System.UInt32); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.NamedRenderbufferStorageMultisample(_renderbuffer,_samples,_internalformat,_width,_height); -} -static unsafe void Test_NormalPointer_25843() { - OpenTK.Graphics.OpenGL.NormalPointerType _type = default(OpenTK.Graphics.OpenGL.NormalPointerType); - System.Int32 _stride = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.NormalPointer(_type,_stride,_count,_pointer); -} -static unsafe void Test_NormalPointer_25844() { - OpenTK.Graphics.OpenGL.NormalPointerType _type = default(OpenTK.Graphics.OpenGL.NormalPointerType); - System.Int32 _stride = default(System.Int32); - System.Int32 _count = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.NormalPointer(_type,_stride,_count,_pointer); -} -static unsafe void Test_NormalPointer_25845() { - OpenTK.Graphics.OpenGL.NormalPointerType _type = default(OpenTK.Graphics.OpenGL.NormalPointerType); - System.Int32 _stride = default(System.Int32); - System.Int32 _count = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.NormalPointer(_type,_stride,_count,_pointer); -} -static unsafe void Test_NormalPointer_25846() { - OpenTK.Graphics.OpenGL.NormalPointerType _type = default(OpenTK.Graphics.OpenGL.NormalPointerType); - System.Int32 _stride = default(System.Int32); - System.Int32 _count = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.NormalPointer(_type,_stride,_count,_pointer); -} -static unsafe void Test_NormalPointer_25847() { - OpenTK.Graphics.OpenGL.NormalPointerType _type = default(OpenTK.Graphics.OpenGL.NormalPointerType); - System.Int32 _stride = default(System.Int32); - System.Int32 _count = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.NormalPointer(_type,_stride,_count,ref _pointer); -} -static unsafe void Test_PixelTransformParameter_25848() { - OpenTK.Graphics.OpenGL.ExtPixelTransform _target = default(OpenTK.Graphics.OpenGL.ExtPixelTransform); - OpenTK.Graphics.OpenGL.ExtPixelTransform _pname = default(OpenTK.Graphics.OpenGL.ExtPixelTransform); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.PixelTransformParameter(_target,_pname,_param); -} -static unsafe void Test_PixelTransformParameter_25849() { - OpenTK.Graphics.OpenGL.ExtPixelTransform _target = default(OpenTK.Graphics.OpenGL.ExtPixelTransform); - OpenTK.Graphics.OpenGL.ExtPixelTransform _pname = default(OpenTK.Graphics.OpenGL.ExtPixelTransform); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.PixelTransformParameter(_target,_pname,_params); -} -static unsafe void Test_PixelTransformParameter_25850() { - OpenTK.Graphics.OpenGL.ExtPixelTransform _target = default(OpenTK.Graphics.OpenGL.ExtPixelTransform); - OpenTK.Graphics.OpenGL.ExtPixelTransform _pname = default(OpenTK.Graphics.OpenGL.ExtPixelTransform); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.PixelTransformParameter(_target,_pname,_param); -} -static unsafe void Test_PixelTransformParameter_25851() { - OpenTK.Graphics.OpenGL.ExtPixelTransform _target = default(OpenTK.Graphics.OpenGL.ExtPixelTransform); - OpenTK.Graphics.OpenGL.ExtPixelTransform _pname = default(OpenTK.Graphics.OpenGL.ExtPixelTransform); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.PixelTransformParameter(_target,_pname,_params); -} -static unsafe void Test_PointParameter_25852() { - OpenTK.Graphics.OpenGL.ExtPointParameters _pname = default(OpenTK.Graphics.OpenGL.ExtPointParameters); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.PointParameter(_pname,_param); -} -static unsafe void Test_PointParameter_25853() { - OpenTK.Graphics.OpenGL.ExtPointParameters _pname = default(OpenTK.Graphics.OpenGL.ExtPointParameters); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.PointParameter(_pname,_params); -} -static unsafe void Test_PointParameter_25854() { - OpenTK.Graphics.OpenGL.ExtPointParameters _pname = default(OpenTK.Graphics.OpenGL.ExtPointParameters); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.PointParameter(_pname,_params); -} -static unsafe void Test_PolygonOffset_25855() { - System.Single _factor = default(System.Single); - System.Single _bias = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.PolygonOffset(_factor,_bias); -} -static unsafe void Test_PopGroupMarker_25856() { - OpenTK.Graphics.OpenGL.GL.Ext.PopGroupMarker(); -} -static unsafe void Test_PrioritizeTextures_25857() { - System.Int32 _n = default(System.Int32); - System.Int32[] _textures = default(System.Int32[]); - System.Single[] _priorities = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.PrioritizeTextures(_n,_textures,_priorities); -} -static unsafe void Test_PrioritizeTextures_25858() { - System.Int32 _n = default(System.Int32); - System.Int32 _textures = default(System.Int32); - System.Single _priorities = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.PrioritizeTextures(_n,ref _textures,ref _priorities); -} -static unsafe void Test_PrioritizeTextures_25859() { - System.Int32 _n = default(System.Int32); - System.Int32* _textures = default(System.Int32*); - System.Single* _priorities = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.PrioritizeTextures(_n,_textures,_priorities); -} -static unsafe void Test_PrioritizeTextures_25860() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _textures = default(System.UInt32[]); - System.Single[] _priorities = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.PrioritizeTextures(_n,_textures,_priorities); -} -static unsafe void Test_PrioritizeTextures_25861() { - System.Int32 _n = default(System.Int32); - System.UInt32 _textures = default(System.UInt32); - System.Single _priorities = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.PrioritizeTextures(_n,ref _textures,ref _priorities); -} -static unsafe void Test_PrioritizeTextures_25862() { - System.Int32 _n = default(System.Int32); - System.UInt32* _textures = default(System.UInt32*); - System.Single* _priorities = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.PrioritizeTextures(_n,_textures,_priorities); -} -static unsafe void Test_ProgramEnvParameters4_25863() { - OpenTK.Graphics.OpenGL.ExtGpuProgramParameters _target = default(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters); - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramEnvParameters4(_target,_index,_count,_params); -} -static unsafe void Test_ProgramEnvParameters4_25864() { - OpenTK.Graphics.OpenGL.ExtGpuProgramParameters _target = default(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters); - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramEnvParameters4(_target,_index,_count,ref _params); -} -static unsafe void Test_ProgramEnvParameters4_25865() { - OpenTK.Graphics.OpenGL.ExtGpuProgramParameters _target = default(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters); - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramEnvParameters4(_target,_index,_count,_params); -} -static unsafe void Test_ProgramEnvParameters4_25866() { - OpenTK.Graphics.OpenGL.ExtGpuProgramParameters _target = default(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters); - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramEnvParameters4(_target,_index,_count,_params); -} -static unsafe void Test_ProgramEnvParameters4_25867() { - OpenTK.Graphics.OpenGL.ExtGpuProgramParameters _target = default(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters); - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramEnvParameters4(_target,_index,_count,ref _params); -} -static unsafe void Test_ProgramEnvParameters4_25868() { - OpenTK.Graphics.OpenGL.ExtGpuProgramParameters _target = default(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters); - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramEnvParameters4(_target,_index,_count,_params); -} -static unsafe void Test_ProgramLocalParameters4_25869() { - OpenTK.Graphics.OpenGL.ExtGpuProgramParameters _target = default(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters); - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramLocalParameters4(_target,_index,_count,_params); -} -static unsafe void Test_ProgramLocalParameters4_25870() { - OpenTK.Graphics.OpenGL.ExtGpuProgramParameters _target = default(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters); - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramLocalParameters4(_target,_index,_count,ref _params); -} -static unsafe void Test_ProgramLocalParameters4_25871() { - OpenTK.Graphics.OpenGL.ExtGpuProgramParameters _target = default(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters); - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramLocalParameters4(_target,_index,_count,_params); -} -static unsafe void Test_ProgramLocalParameters4_25872() { - OpenTK.Graphics.OpenGL.ExtGpuProgramParameters _target = default(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters); - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramLocalParameters4(_target,_index,_count,_params); -} -static unsafe void Test_ProgramLocalParameters4_25873() { - OpenTK.Graphics.OpenGL.ExtGpuProgramParameters _target = default(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters); - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramLocalParameters4(_target,_index,_count,ref _params); -} -static unsafe void Test_ProgramLocalParameters4_25874() { - OpenTK.Graphics.OpenGL.ExtGpuProgramParameters _target = default(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters); - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramLocalParameters4(_target,_index,_count,_params); -} -static unsafe void Test_ProgramParameter_25875() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb _pname = default(OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramParameter(_program,_pname,_value); -} -static unsafe void Test_ProgramParameter_25876() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb _pname = default(OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramParameter(_program,_pname,_value); -} -static unsafe void Test_ProgramUniform1_25877() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Double _x = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform1(_program,_location,_x); -} -static unsafe void Test_ProgramUniform1_25878() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Double _x = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform1(_program,_location,_x); -} -static unsafe void Test_ProgramUniform1_25879() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_25880() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform1(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform1_25881() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_25882() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_25883() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform1(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform1_25884() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_25885() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform1(_program,_location,_v0); -} -static unsafe void Test_ProgramUniform1_25886() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform1(_program,_location,_v0); -} -static unsafe void Test_ProgramUniform1_25887() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_25888() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform1(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform1_25889() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_25890() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_25891() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform1(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform1_25892() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_25893() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform1(_program,_location,_v0); -} -static unsafe void Test_ProgramUniform1_25894() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform1(_program,_location,_v0); -} -static unsafe void Test_ProgramUniform1_25895() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_25896() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform1(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform1_25897() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_25898() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_25899() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform1(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform1_25900() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_25901() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt32 _v0 = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform1(_program,_location,_v0); -} -static unsafe void Test_ProgramUniform1_25902() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _value = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_25903() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform1(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform1_25904() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_25905() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform2(_program,_location,_x,_y); -} -static unsafe void Test_ProgramUniform2_25906() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform2(_program,_location,_x,_y); -} -static unsafe void Test_ProgramUniform2_25907() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_25908() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform2(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform2_25909() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_25910() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_25911() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform2(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform2_25912() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_25913() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform2(_program,_location,_v0,_v1); -} -static unsafe void Test_ProgramUniform2_25914() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform2(_program,_location,_v0,_v1); -} -static unsafe void Test_ProgramUniform2_25915() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_25916() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform2(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform2_25917() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_25918() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_25919() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform2(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform2_25920() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_25921() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform2(_program,_location,_v0,_v1); -} -static unsafe void Test_ProgramUniform2_25922() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform2(_program,_location,_v0,_v1); -} -static unsafe void Test_ProgramUniform2_25923() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_25924() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_25925() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_25926() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_25927() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt32 _v0 = default(System.UInt32); - System.UInt32 _v1 = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform2(_program,_location,_v0,_v1); -} -static unsafe void Test_ProgramUniform2_25928() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _value = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_25929() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform2(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform2_25930() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_25931() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform3(_program,_location,_x,_y,_z); -} -static unsafe void Test_ProgramUniform3_25932() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform3(_program,_location,_x,_y,_z); -} -static unsafe void Test_ProgramUniform3_25933() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_25934() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform3(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform3_25935() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_25936() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_25937() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform3(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform3_25938() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_25939() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform3(_program,_location,_v0,_v1,_v2); -} -static unsafe void Test_ProgramUniform3_25940() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform3(_program,_location,_v0,_v1,_v2); -} -static unsafe void Test_ProgramUniform3_25941() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_25942() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform3(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform3_25943() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_25944() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_25945() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform3(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform3_25946() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_25947() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - System.Int32 _v2 = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform3(_program,_location,_v0,_v1,_v2); -} -static unsafe void Test_ProgramUniform3_25948() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - System.Int32 _v2 = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform3(_program,_location,_v0,_v1,_v2); -} -static unsafe void Test_ProgramUniform3_25949() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_25950() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform3(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform3_25951() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_25952() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_25953() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform3(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform3_25954() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_25955() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt32 _v0 = default(System.UInt32); - System.UInt32 _v1 = default(System.UInt32); - System.UInt32 _v2 = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform3(_program,_location,_v0,_v1,_v2); -} -static unsafe void Test_ProgramUniform3_25956() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _value = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_25957() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform3(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform3_25958() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_25959() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - System.Double _w = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform4(_program,_location,_x,_y,_z,_w); -} -static unsafe void Test_ProgramUniform4_25960() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - System.Double _w = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform4(_program,_location,_x,_y,_z,_w); -} -static unsafe void Test_ProgramUniform4_25961() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_25962() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform4(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform4_25963() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_25964() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_25965() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform4(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform4_25966() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_25967() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - System.Single _v3 = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform4(_program,_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_ProgramUniform4_25968() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - System.Single _v3 = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform4(_program,_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_ProgramUniform4_25969() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_25970() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform4(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform4_25971() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_25972() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_25973() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform4(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform4_25974() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_25975() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - System.Int32 _v2 = default(System.Int32); - System.Int32 _v3 = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform4(_program,_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_ProgramUniform4_25976() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - System.Int32 _v2 = default(System.Int32); - System.Int32 _v3 = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform4(_program,_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_ProgramUniform4_25977() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_25978() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform4(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform4_25979() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_25980() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_25981() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform4(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform4_25982() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_25983() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt32 _v0 = default(System.UInt32); - System.UInt32 _v1 = default(System.UInt32); - System.UInt32 _v2 = default(System.UInt32); - System.UInt32 _v3 = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform4(_program,_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_ProgramUniform4_25984() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _value = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_25985() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform4(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform4_25986() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniformMatrix2_25987() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2_25988() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2_25989() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2_25990() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2_25991() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2_25992() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2_25993() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2_25994() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2_25995() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2_25996() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2_25997() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2_25998() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x3_25999() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x3_26000() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2x3_26001() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x3_26002() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x3_26003() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2x3_26004() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x3_26005() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x3_26006() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2x3_26007() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x3_26008() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x3_26009() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2x3_26010() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x4_26011() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x4_26012() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2x4_26013() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x4_26014() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x4_26015() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2x4_26016() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x4_26017() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x4_26018() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2x4_26019() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x4_26020() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x4_26021() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2x4_26022() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3_26023() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3_26024() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3_26025() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3_26026() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3_26027() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3_26028() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3_26029() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3_26030() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3_26031() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3_26032() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3_26033() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3_26034() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x2_26035() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x2_26036() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3x2_26037() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x2_26038() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x2_26039() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3x2_26040() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x2_26041() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x2_26042() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3x2_26043() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x2_26044() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x2_26045() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3x2_26046() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x4_26047() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x4_26048() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3x4_26049() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x4_26050() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x4_26051() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3x4_26052() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x4_26053() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x4_26054() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3x4_26055() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x4_26056() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x4_26057() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3x4_26058() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4_26059() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4_26060() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4_26061() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4_26062() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4_26063() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4_26064() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4_26065() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4_26066() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4_26067() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4_26068() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4_26069() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4_26070() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x2_26071() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x2_26072() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4x2_26073() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x2_26074() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x2_26075() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4x2_26076() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x2_26077() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x2_26078() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4x2_26079() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x2_26080() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x2_26081() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4x2_26082() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x3_26083() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x3_26084() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4x3_26085() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x3_26086() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x3_26087() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4x3_26088() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x3_26089() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x3_26090() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4x3_26091() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x3_26092() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x3_26093() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4x3_26094() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProvokingVertex_26095() { - OpenTK.Graphics.OpenGL.ExtProvokingVertex _mode = default(OpenTK.Graphics.OpenGL.ExtProvokingVertex); - OpenTK.Graphics.OpenGL.GL.Ext.ProvokingVertex(_mode); -} -static unsafe void Test_PushClientAttribDefault_26096() { - OpenTK.Graphics.OpenGL.ClientAttribMask _mask = default(OpenTK.Graphics.OpenGL.ClientAttribMask); - OpenTK.Graphics.OpenGL.GL.Ext.PushClientAttribDefault(_mask); -} -static unsafe void Test_PushGroupMarker_26097() { - System.Int32 _length = default(System.Int32); - System.String _marker = default(System.String); - OpenTK.Graphics.OpenGL.GL.Ext.PushGroupMarker(_length,_marker); -} -static unsafe void Test_RenderbufferStorage_26098() { - OpenTK.Graphics.OpenGL.RenderbufferTarget _target = default(OpenTK.Graphics.OpenGL.RenderbufferTarget); - OpenTK.Graphics.OpenGL.RenderbufferStorage _internalformat = default(OpenTK.Graphics.OpenGL.RenderbufferStorage); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.RenderbufferStorage(_target,_internalformat,_width,_height); -} -static unsafe void Test_RenderbufferStorageMultisample_26099() { - OpenTK.Graphics.OpenGL.ExtFramebufferMultisample _target = default(OpenTK.Graphics.OpenGL.ExtFramebufferMultisample); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtFramebufferMultisample _internalformat = default(OpenTK.Graphics.OpenGL.ExtFramebufferMultisample); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.RenderbufferStorageMultisample(_target,_samples,_internalformat,_width,_height); -} -static unsafe void Test_RenderbufferStorageMultisample_26100() { - OpenTK.Graphics.OpenGL.RenderbufferTarget _target = default(OpenTK.Graphics.OpenGL.RenderbufferTarget); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.OpenGL.RenderbufferStorage _internalformat = default(OpenTK.Graphics.OpenGL.RenderbufferStorage); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.RenderbufferStorageMultisample(_target,_samples,_internalformat,_width,_height); -} -static unsafe void Test_ResetHistogram_26101() { - OpenTK.Graphics.OpenGL.ExtHistogram _target = default(OpenTK.Graphics.OpenGL.ExtHistogram); - OpenTK.Graphics.OpenGL.GL.Ext.ResetHistogram(_target); -} -static unsafe void Test_ResetHistogram_26102() { - OpenTK.Graphics.OpenGL.HistogramTargetExt _target = default(OpenTK.Graphics.OpenGL.HistogramTargetExt); - OpenTK.Graphics.OpenGL.GL.Ext.ResetHistogram(_target); -} -static unsafe void Test_ResetMinmax_26103() { - OpenTK.Graphics.OpenGL.ExtHistogram _target = default(OpenTK.Graphics.OpenGL.ExtHistogram); - OpenTK.Graphics.OpenGL.GL.Ext.ResetMinmax(_target); -} -static unsafe void Test_ResetMinmax_26104() { - OpenTK.Graphics.OpenGL.MinmaxTargetExt _target = default(OpenTK.Graphics.OpenGL.MinmaxTargetExt); - OpenTK.Graphics.OpenGL.GL.Ext.ResetMinmax(_target); -} -static unsafe void Test_SampleMask_26105() { - System.Single _value = default(System.Single); - System.Boolean _invert = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Ext.SampleMask(_value,_invert); -} -static unsafe void Test_SamplePattern_26106() { - OpenTK.Graphics.OpenGL.ExtMultisample _pattern = default(OpenTK.Graphics.OpenGL.ExtMultisample); - OpenTK.Graphics.OpenGL.GL.Ext.SamplePattern(_pattern); -} -static unsafe void Test_SecondaryColor3_26107() { - System.SByte _red = default(System.SByte); - System.SByte _green = default(System.SByte); - System.SByte _blue = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.Ext.SecondaryColor3(_red,_green,_blue); -} -static unsafe void Test_SecondaryColor3_26108() { - System.SByte[] _v = default(System.SByte[]); - OpenTK.Graphics.OpenGL.GL.Ext.SecondaryColor3(_v); -} -static unsafe void Test_SecondaryColor3_26109() { - System.SByte _v = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.Ext.SecondaryColor3(ref _v); -} -static unsafe void Test_SecondaryColor3_26110() { - System.SByte* _v = default(System.SByte*); - OpenTK.Graphics.OpenGL.GL.Ext.SecondaryColor3(_v); -} -static unsafe void Test_SecondaryColor3_26111() { - System.Double _red = default(System.Double); - System.Double _green = default(System.Double); - System.Double _blue = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.SecondaryColor3(_red,_green,_blue); -} -static unsafe void Test_SecondaryColor3_26112() { - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.SecondaryColor3(_v); -} -static unsafe void Test_SecondaryColor3_26113() { - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.SecondaryColor3(ref _v); -} -static unsafe void Test_SecondaryColor3_26114() { - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.SecondaryColor3(_v); -} -static unsafe void Test_SecondaryColor3_26115() { - System.Single _red = default(System.Single); - System.Single _green = default(System.Single); - System.Single _blue = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.SecondaryColor3(_red,_green,_blue); -} -static unsafe void Test_SecondaryColor3_26116() { - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.SecondaryColor3(_v); -} -static unsafe void Test_SecondaryColor3_26117() { - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.SecondaryColor3(ref _v); -} -static unsafe void Test_SecondaryColor3_26118() { - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.SecondaryColor3(_v); -} -static unsafe void Test_SecondaryColor3_26119() { - System.Int32 _red = default(System.Int32); - System.Int32 _green = default(System.Int32); - System.Int32 _blue = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.SecondaryColor3(_red,_green,_blue); -} -static unsafe void Test_SecondaryColor3_26120() { - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.SecondaryColor3(_v); -} -static unsafe void Test_SecondaryColor3_26121() { - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.SecondaryColor3(ref _v); -} -static unsafe void Test_SecondaryColor3_26122() { - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.SecondaryColor3(_v); -} -static unsafe void Test_SecondaryColor3_26123() { - System.Int16 _red = default(System.Int16); - System.Int16 _green = default(System.Int16); - System.Int16 _blue = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Ext.SecondaryColor3(_red,_green,_blue); -} -static unsafe void Test_SecondaryColor3_26124() { - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.Ext.SecondaryColor3(_v); -} -static unsafe void Test_SecondaryColor3_26125() { - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Ext.SecondaryColor3(ref _v); -} -static unsafe void Test_SecondaryColor3_26126() { - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Ext.SecondaryColor3(_v); -} -static unsafe void Test_SecondaryColor3_26127() { - System.Byte _red = default(System.Byte); - System.Byte _green = default(System.Byte); - System.Byte _blue = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Ext.SecondaryColor3(_red,_green,_blue); -} -static unsafe void Test_SecondaryColor3_26128() { - System.Byte[] _v = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.Ext.SecondaryColor3(_v); -} -static unsafe void Test_SecondaryColor3_26129() { - System.Byte _v = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Ext.SecondaryColor3(ref _v); -} -static unsafe void Test_SecondaryColor3_26130() { - System.Byte* _v = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.Ext.SecondaryColor3(_v); -} -static unsafe void Test_SecondaryColor3_26131() { - System.UInt32 _red = default(System.UInt32); - System.UInt32 _green = default(System.UInt32); - System.UInt32 _blue = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.SecondaryColor3(_red,_green,_blue); -} -static unsafe void Test_SecondaryColor3_26132() { - System.UInt32[] _v = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Ext.SecondaryColor3(_v); -} -static unsafe void Test_SecondaryColor3_26133() { - System.UInt32 _v = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.SecondaryColor3(ref _v); -} -static unsafe void Test_SecondaryColor3_26134() { - System.UInt32* _v = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Ext.SecondaryColor3(_v); -} -static unsafe void Test_SecondaryColor3_26135() { - System.UInt16 _red = default(System.UInt16); - System.UInt16 _green = default(System.UInt16); - System.UInt16 _blue = default(System.UInt16); - OpenTK.Graphics.OpenGL.GL.Ext.SecondaryColor3(_red,_green,_blue); -} -static unsafe void Test_SecondaryColor3_26136() { - System.UInt16[] _v = default(System.UInt16[]); - OpenTK.Graphics.OpenGL.GL.Ext.SecondaryColor3(_v); -} -static unsafe void Test_SecondaryColor3_26137() { - System.UInt16 _v = default(System.UInt16); - OpenTK.Graphics.OpenGL.GL.Ext.SecondaryColor3(ref _v); -} -static unsafe void Test_SecondaryColor3_26138() { - System.UInt16* _v = default(System.UInt16*); - OpenTK.Graphics.OpenGL.GL.Ext.SecondaryColor3(_v); -} -static unsafe void Test_SecondaryColorPointer_26139() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ColorPointerType _type = default(OpenTK.Graphics.OpenGL.ColorPointerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.SecondaryColorPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_SecondaryColorPointer_26140() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ColorPointerType _type = default(OpenTK.Graphics.OpenGL.ColorPointerType); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.SecondaryColorPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_SecondaryColorPointer_26141() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ColorPointerType _type = default(OpenTK.Graphics.OpenGL.ColorPointerType); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.SecondaryColorPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_SecondaryColorPointer_26142() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ColorPointerType _type = default(OpenTK.Graphics.OpenGL.ColorPointerType); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.SecondaryColorPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_SecondaryColorPointer_26143() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ColorPointerType _type = default(OpenTK.Graphics.OpenGL.ColorPointerType); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.SecondaryColorPointer(_size,_type,_stride,ref _pointer); -} -static unsafe void Test_SeparableFilter2D_26144() { - OpenTK.Graphics.OpenGL.SeparableTargetExt _target = default(OpenTK.Graphics.OpenGL.SeparableTargetExt); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _row = default(System.IntPtr); - System.IntPtr _column = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.SeparableFilter2D(_target,_internalformat,_width,_height,_format,_type,_row,_column); -} -static unsafe void Test_SeparableFilter2D_26145() { - OpenTK.Graphics.OpenGL.SeparableTargetExt _target = default(OpenTK.Graphics.OpenGL.SeparableTargetExt); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _row = default(int[]); - int[] _column = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.SeparableFilter2D(_target,_internalformat,_width,_height,_format,_type,_row,_column); -} -static unsafe void Test_SeparableFilter2D_26146() { - OpenTK.Graphics.OpenGL.SeparableTargetExt _target = default(OpenTK.Graphics.OpenGL.SeparableTargetExt); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _row = default(int[,]); - int[,] _column = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.SeparableFilter2D(_target,_internalformat,_width,_height,_format,_type,_row,_column); -} -static unsafe void Test_SeparableFilter2D_26147() { - OpenTK.Graphics.OpenGL.SeparableTargetExt _target = default(OpenTK.Graphics.OpenGL.SeparableTargetExt); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _row = default(int[,,]); - int[,,] _column = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.SeparableFilter2D(_target,_internalformat,_width,_height,_format,_type,_row,_column); -} -static unsafe void Test_SeparableFilter2D_26148() { - OpenTK.Graphics.OpenGL.SeparableTargetExt _target = default(OpenTK.Graphics.OpenGL.SeparableTargetExt); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _row = default(int); - int _column = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.SeparableFilter2D(_target,_internalformat,_width,_height,_format,_type,ref _row,ref _column); -} -static unsafe void Test_SetInvariant_26149() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _type = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.IntPtr _addr = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.SetInvariant(_id,_type,_addr); -} -static unsafe void Test_SetInvariant_26150() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _type = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - int[] _addr = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.SetInvariant(_id,_type,_addr); -} -static unsafe void Test_SetInvariant_26151() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _type = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - int[,] _addr = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.SetInvariant(_id,_type,_addr); -} -static unsafe void Test_SetInvariant_26152() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _type = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - int[,,] _addr = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.SetInvariant(_id,_type,_addr); -} -static unsafe void Test_SetInvariant_26153() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _type = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - int _addr = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.SetInvariant(_id,_type,ref _addr); -} -static unsafe void Test_SetInvariant_26154() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _type = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.IntPtr _addr = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.SetInvariant(_id,_type,_addr); -} -static unsafe void Test_SetInvariant_26155() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _type = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - int[] _addr = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.SetInvariant(_id,_type,_addr); -} -static unsafe void Test_SetInvariant_26156() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _type = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - int[,] _addr = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.SetInvariant(_id,_type,_addr); -} -static unsafe void Test_SetInvariant_26157() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _type = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - int[,,] _addr = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.SetInvariant(_id,_type,_addr); -} -static unsafe void Test_SetInvariant_26158() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _type = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - int _addr = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.SetInvariant(_id,_type,ref _addr); -} -static unsafe void Test_SetLocalConstant_26159() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _type = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.IntPtr _addr = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.SetLocalConstant(_id,_type,_addr); -} -static unsafe void Test_SetLocalConstant_26160() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _type = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - int[] _addr = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.SetLocalConstant(_id,_type,_addr); -} -static unsafe void Test_SetLocalConstant_26161() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _type = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - int[,] _addr = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.SetLocalConstant(_id,_type,_addr); -} -static unsafe void Test_SetLocalConstant_26162() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _type = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - int[,,] _addr = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.SetLocalConstant(_id,_type,_addr); -} -static unsafe void Test_SetLocalConstant_26163() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _type = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - int _addr = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.SetLocalConstant(_id,_type,ref _addr); -} -static unsafe void Test_SetLocalConstant_26164() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _type = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.IntPtr _addr = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.SetLocalConstant(_id,_type,_addr); -} -static unsafe void Test_SetLocalConstant_26165() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _type = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - int[] _addr = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.SetLocalConstant(_id,_type,_addr); -} -static unsafe void Test_SetLocalConstant_26166() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _type = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - int[,] _addr = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.SetLocalConstant(_id,_type,_addr); -} -static unsafe void Test_SetLocalConstant_26167() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _type = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - int[,,] _addr = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.SetLocalConstant(_id,_type,_addr); -} -static unsafe void Test_SetLocalConstant_26168() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _type = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - int _addr = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.SetLocalConstant(_id,_type,ref _addr); -} -static unsafe void Test_ShaderOp1_26169() { - OpenTK.Graphics.OpenGL.ExtVertexShader _op = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Int32 _res = default(System.Int32); - System.Int32 _arg1 = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.ShaderOp1(_op,_res,_arg1); -} -static unsafe void Test_ShaderOp1_26170() { - OpenTK.Graphics.OpenGL.ExtVertexShader _op = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.UInt32 _res = default(System.UInt32); - System.UInt32 _arg1 = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.ShaderOp1(_op,_res,_arg1); -} -static unsafe void Test_ShaderOp2_26171() { - OpenTK.Graphics.OpenGL.ExtVertexShader _op = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Int32 _res = default(System.Int32); - System.Int32 _arg1 = default(System.Int32); - System.Int32 _arg2 = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.ShaderOp2(_op,_res,_arg1,_arg2); -} -static unsafe void Test_ShaderOp2_26172() { - OpenTK.Graphics.OpenGL.ExtVertexShader _op = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.UInt32 _res = default(System.UInt32); - System.UInt32 _arg1 = default(System.UInt32); - System.UInt32 _arg2 = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.ShaderOp2(_op,_res,_arg1,_arg2); -} -static unsafe void Test_ShaderOp3_26173() { - OpenTK.Graphics.OpenGL.ExtVertexShader _op = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Int32 _res = default(System.Int32); - System.Int32 _arg1 = default(System.Int32); - System.Int32 _arg2 = default(System.Int32); - System.Int32 _arg3 = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.ShaderOp3(_op,_res,_arg1,_arg2,_arg3); -} -static unsafe void Test_ShaderOp3_26174() { - OpenTK.Graphics.OpenGL.ExtVertexShader _op = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.UInt32 _res = default(System.UInt32); - System.UInt32 _arg1 = default(System.UInt32); - System.UInt32 _arg2 = default(System.UInt32); - System.UInt32 _arg3 = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.ShaderOp3(_op,_res,_arg1,_arg2,_arg3); -} -static unsafe void Test_StencilClearTag_26175() { - System.Int32 _stencilTagBits = default(System.Int32); - System.Int32 _stencilClearTag = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.StencilClearTag(_stencilTagBits,_stencilClearTag); -} -static unsafe void Test_StencilClearTag_26176() { - System.Int32 _stencilTagBits = default(System.Int32); - System.UInt32 _stencilClearTag = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.StencilClearTag(_stencilTagBits,_stencilClearTag); -} -static unsafe void Test_Swizzle_26177() { - System.Int32 _res = default(System.Int32); - System.Int32 _in = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _outX = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - OpenTK.Graphics.OpenGL.ExtVertexShader _outY = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - OpenTK.Graphics.OpenGL.ExtVertexShader _outZ = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - OpenTK.Graphics.OpenGL.ExtVertexShader _outW = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - OpenTK.Graphics.OpenGL.GL.Ext.Swizzle(_res,_in,_outX,_outY,_outZ,_outW); -} -static unsafe void Test_Swizzle_26178() { - System.UInt32 _res = default(System.UInt32); - System.UInt32 _in = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _outX = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - OpenTK.Graphics.OpenGL.ExtVertexShader _outY = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - OpenTK.Graphics.OpenGL.ExtVertexShader _outZ = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - OpenTK.Graphics.OpenGL.ExtVertexShader _outW = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - OpenTK.Graphics.OpenGL.GL.Ext.Swizzle(_res,_in,_outX,_outY,_outZ,_outW); -} -static unsafe void Test_Tangent3_26179() { - System.Byte _tx = default(System.Byte); - System.Byte _ty = default(System.Byte); - System.Byte _tz = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Ext.Tangent3(_tx,_ty,_tz); -} -static unsafe void Test_Tangent3_26180() { - System.SByte _tx = default(System.SByte); - System.SByte _ty = default(System.SByte); - System.SByte _tz = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.Ext.Tangent3(_tx,_ty,_tz); -} -static unsafe void Test_Tangent3_26181() { - System.Byte[] _v = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.Ext.Tangent3(_v); -} -static unsafe void Test_Tangent3_26182() { - System.Byte _v = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Ext.Tangent3(ref _v); -} -static unsafe void Test_Tangent3_26183() { - System.Byte* _v = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.Ext.Tangent3(_v); -} -static unsafe void Test_Tangent3_26184() { - System.SByte[] _v = default(System.SByte[]); - OpenTK.Graphics.OpenGL.GL.Ext.Tangent3(_v); -} -static unsafe void Test_Tangent3_26185() { - System.SByte _v = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.Ext.Tangent3(ref _v); -} -static unsafe void Test_Tangent3_26186() { - System.SByte* _v = default(System.SByte*); - OpenTK.Graphics.OpenGL.GL.Ext.Tangent3(_v); -} -static unsafe void Test_Tangent3_26187() { - System.Double _tx = default(System.Double); - System.Double _ty = default(System.Double); - System.Double _tz = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.Tangent3(_tx,_ty,_tz); -} -static unsafe void Test_Tangent3_26188() { - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.Tangent3(_v); -} -static unsafe void Test_Tangent3_26189() { - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.Tangent3(ref _v); -} -static unsafe void Test_Tangent3_26190() { - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.Tangent3(_v); -} -static unsafe void Test_Tangent3_26191() { - System.Single _tx = default(System.Single); - System.Single _ty = default(System.Single); - System.Single _tz = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.Tangent3(_tx,_ty,_tz); -} -static unsafe void Test_Tangent3_26192() { - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.Tangent3(_v); -} -static unsafe void Test_Tangent3_26193() { - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.Tangent3(ref _v); -} -static unsafe void Test_Tangent3_26194() { - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.Tangent3(_v); -} -static unsafe void Test_Tangent3_26195() { - System.Int32 _tx = default(System.Int32); - System.Int32 _ty = default(System.Int32); - System.Int32 _tz = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.Tangent3(_tx,_ty,_tz); -} -static unsafe void Test_Tangent3_26196() { - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.Tangent3(_v); -} -static unsafe void Test_Tangent3_26197() { - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.Tangent3(ref _v); -} -static unsafe void Test_Tangent3_26198() { - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.Tangent3(_v); -} -static unsafe void Test_Tangent3_26199() { - System.Int16 _tx = default(System.Int16); - System.Int16 _ty = default(System.Int16); - System.Int16 _tz = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Ext.Tangent3(_tx,_ty,_tz); -} -static unsafe void Test_Tangent3_26200() { - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.Ext.Tangent3(_v); -} -static unsafe void Test_Tangent3_26201() { - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Ext.Tangent3(ref _v); -} -static unsafe void Test_Tangent3_26202() { - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Ext.Tangent3(_v); -} -static unsafe void Test_TangentPointer_26203() { - OpenTK.Graphics.OpenGL.NormalPointerType _type = default(OpenTK.Graphics.OpenGL.NormalPointerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.TangentPointer(_type,_stride,_pointer); -} -static unsafe void Test_TangentPointer_26204() { - OpenTK.Graphics.OpenGL.NormalPointerType _type = default(OpenTK.Graphics.OpenGL.NormalPointerType); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.TangentPointer(_type,_stride,_pointer); -} -static unsafe void Test_TangentPointer_26205() { - OpenTK.Graphics.OpenGL.NormalPointerType _type = default(OpenTK.Graphics.OpenGL.NormalPointerType); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.TangentPointer(_type,_stride,_pointer); -} -static unsafe void Test_TangentPointer_26206() { - OpenTK.Graphics.OpenGL.NormalPointerType _type = default(OpenTK.Graphics.OpenGL.NormalPointerType); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.TangentPointer(_type,_stride,_pointer); -} -static unsafe void Test_TangentPointer_26207() { - OpenTK.Graphics.OpenGL.NormalPointerType _type = default(OpenTK.Graphics.OpenGL.NormalPointerType); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.TangentPointer(_type,_stride,ref _pointer); -} -static unsafe void Test_TexBuffer_26208() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.ExtTextureBufferObject _internalformat = default(OpenTK.Graphics.OpenGL.ExtTextureBufferObject); - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.TexBuffer(_target,_internalformat,_buffer); -} -static unsafe void Test_TexBuffer_26209() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.ExtTextureBufferObject _internalformat = default(OpenTK.Graphics.OpenGL.ExtTextureBufferObject); - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.TexBuffer(_target,_internalformat,_buffer); -} -static unsafe void Test_TexCoordPointer_26210() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.TexCoordPointerType _type = default(OpenTK.Graphics.OpenGL.TexCoordPointerType); - System.Int32 _stride = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.TexCoordPointer(_size,_type,_stride,_count,_pointer); -} -static unsafe void Test_TexCoordPointer_26211() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.TexCoordPointerType _type = default(OpenTK.Graphics.OpenGL.TexCoordPointerType); - System.Int32 _stride = default(System.Int32); - System.Int32 _count = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.TexCoordPointer(_size,_type,_stride,_count,_pointer); -} -static unsafe void Test_TexCoordPointer_26212() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.TexCoordPointerType _type = default(OpenTK.Graphics.OpenGL.TexCoordPointerType); - System.Int32 _stride = default(System.Int32); - System.Int32 _count = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.TexCoordPointer(_size,_type,_stride,_count,_pointer); -} -static unsafe void Test_TexCoordPointer_26213() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.TexCoordPointerType _type = default(OpenTK.Graphics.OpenGL.TexCoordPointerType); - System.Int32 _stride = default(System.Int32); - System.Int32 _count = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.TexCoordPointer(_size,_type,_stride,_count,_pointer); -} -static unsafe void Test_TexCoordPointer_26214() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.TexCoordPointerType _type = default(OpenTK.Graphics.OpenGL.TexCoordPointerType); - System.Int32 _stride = default(System.Int32); - System.Int32 _count = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.TexCoordPointer(_size,_type,_stride,_count,ref _pointer); -} -static unsafe void Test_TexImage3D_26215() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_26216() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_26217() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_26218() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_26219() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,ref _pixels); -} -static unsafe void Test_TexParameterI_26220() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.TexParameterI(_target,_pname,_params); -} -static unsafe void Test_TexParameterI_26221() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.TexParameterI(_target,_pname,ref _params); -} -static unsafe void Test_TexParameterI_26222() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.TexParameterI(_target,_pname,_params); -} -static unsafe void Test_TexParameterI_26223() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Ext.TexParameterI(_target,_pname,_params); -} -static unsafe void Test_TexParameterI_26224() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.TexParameterI(_target,_pname,ref _params); -} -static unsafe void Test_TexParameterI_26225() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Ext.TexParameterI(_target,_pname,_params); -} -static unsafe void Test_TexSubImage1D_26226() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.TexSubImage1D(_target,_level,_xoffset,_width,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage1D_26227() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.TexSubImage1D(_target,_level,_xoffset,_width,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage1D_26228() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.TexSubImage1D(_target,_level,_xoffset,_width,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage1D_26229() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.TexSubImage1D(_target,_level,_xoffset,_width,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage1D_26230() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.TexSubImage1D(_target,_level,_xoffset,_width,_format,_type,ref _pixels); -} -static unsafe void Test_TexSubImage2D_26231() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_26232() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_26233() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_26234() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_26235() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,ref _pixels); -} -static unsafe void Test_TexSubImage3D_26236() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage3D_26237() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage3D_26238() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage3D_26239() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage3D_26240() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,ref _pixels); -} -static unsafe void Test_TextureBuffer_26241() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.TextureBuffer(_texture,_target,_internalformat,_buffer); -} -static unsafe void Test_TextureBuffer_26242() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.TextureBuffer(_texture,_target,_internalformat,_buffer); -} -static unsafe void Test_TextureBufferRange_26243() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _buffer = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.TextureBufferRange(_texture,_target,_internalformat,_buffer,_offset,_size); -} -static unsafe void Test_TextureBufferRange_26244() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.TextureBufferRange(_texture,_target,_internalformat,_buffer,_offset,_size); -} -static unsafe void Test_TextureImage1D_26245() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage1D(_texture,_target,_level,_internalformat,_width,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage1D_26246() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage1D(_texture,_target,_level,_internalformat,_width,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage1D_26247() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage1D(_texture,_target,_level,_internalformat,_width,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage1D_26248() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage1D(_texture,_target,_level,_internalformat,_width,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage1D_26249() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage1D(_texture,_target,_level,_internalformat,_width,_border,_format,_type,ref _pixels); -} -static unsafe void Test_TextureImage1D_26250() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage1D(_texture,_target,_level,_internalformat,_width,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage1D_26251() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage1D(_texture,_target,_level,_internalformat,_width,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage1D_26252() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage1D(_texture,_target,_level,_internalformat,_width,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage1D_26253() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage1D(_texture,_target,_level,_internalformat,_width,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage1D_26254() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage1D(_texture,_target,_level,_internalformat,_width,_border,_format,_type,ref _pixels); -} -static unsafe void Test_TextureImage1D_26255() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage1D(_texture,_target,_level,_internalformat,_width,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage1D_26256() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage1D(_texture,_target,_level,_internalformat,_width,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage1D_26257() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage1D(_texture,_target,_level,_internalformat,_width,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage1D_26258() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage1D(_texture,_target,_level,_internalformat,_width,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage1D_26259() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage1D(_texture,_target,_level,_internalformat,_width,_border,_format,_type,ref _pixels); -} -static unsafe void Test_TextureImage1D_26260() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage1D(_texture,_target,_level,_internalformat,_width,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage1D_26261() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage1D(_texture,_target,_level,_internalformat,_width,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage1D_26262() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage1D(_texture,_target,_level,_internalformat,_width,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage1D_26263() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage1D(_texture,_target,_level,_internalformat,_width,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage1D_26264() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage1D(_texture,_target,_level,_internalformat,_width,_border,_format,_type,ref _pixels); -} -static unsafe void Test_TextureImage2D_26265() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage2D(_texture,_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage2D_26266() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage2D(_texture,_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage2D_26267() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage2D(_texture,_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage2D_26268() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage2D(_texture,_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage2D_26269() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage2D(_texture,_target,_level,_internalformat,_width,_height,_border,_format,_type,ref _pixels); -} -static unsafe void Test_TextureImage2D_26270() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage2D(_texture,_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage2D_26271() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage2D(_texture,_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage2D_26272() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage2D(_texture,_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage2D_26273() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage2D(_texture,_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage2D_26274() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage2D(_texture,_target,_level,_internalformat,_width,_height,_border,_format,_type,ref _pixels); -} -static unsafe void Test_TextureImage2D_26275() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage2D(_texture,_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage2D_26276() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage2D(_texture,_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage2D_26277() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage2D(_texture,_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage2D_26278() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage2D(_texture,_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage2D_26279() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage2D(_texture,_target,_level,_internalformat,_width,_height,_border,_format,_type,ref _pixels); -} -static unsafe void Test_TextureImage2D_26280() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage2D(_texture,_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage2D_26281() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage2D(_texture,_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage2D_26282() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage2D(_texture,_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage2D_26283() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage2D(_texture,_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage2D_26284() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage2D(_texture,_target,_level,_internalformat,_width,_height,_border,_format,_type,ref _pixels); -} -static unsafe void Test_TextureImage3D_26285() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage3D(_texture,_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage3D_26286() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage3D(_texture,_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage3D_26287() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage3D(_texture,_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage3D_26288() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage3D(_texture,_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage3D_26289() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage3D(_texture,_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,ref _pixels); -} -static unsafe void Test_TextureImage3D_26290() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage3D(_texture,_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage3D_26291() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage3D(_texture,_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage3D_26292() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage3D(_texture,_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage3D_26293() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage3D(_texture,_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage3D_26294() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage3D(_texture,_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,ref _pixels); -} -static unsafe void Test_TextureImage3D_26295() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage3D(_texture,_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage3D_26296() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage3D(_texture,_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage3D_26297() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage3D(_texture,_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage3D_26298() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage3D(_texture,_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage3D_26299() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage3D(_texture,_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,ref _pixels); -} -static unsafe void Test_TextureImage3D_26300() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage3D(_texture,_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage3D_26301() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage3D(_texture,_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage3D_26302() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage3D(_texture,_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage3D_26303() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage3D(_texture,_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TextureImage3D_26304() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.TextureImage3D(_texture,_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,ref _pixels); -} -static unsafe void Test_TextureLight_26305() { - OpenTK.Graphics.OpenGL.ExtLightTexture _pname = default(OpenTK.Graphics.OpenGL.ExtLightTexture); - OpenTK.Graphics.OpenGL.GL.Ext.TextureLight(_pname); -} -static unsafe void Test_TextureMaterial_26306() { - OpenTK.Graphics.OpenGL.MaterialFace _face = default(OpenTK.Graphics.OpenGL.MaterialFace); - OpenTK.Graphics.OpenGL.MaterialParameter _mode = default(OpenTK.Graphics.OpenGL.MaterialParameter); - OpenTK.Graphics.OpenGL.GL.Ext.TextureMaterial(_face,_mode); -} -static unsafe void Test_TextureNormal_26307() { - OpenTK.Graphics.OpenGL.ExtTexturePerturbNormal _mode = default(OpenTK.Graphics.OpenGL.ExtTexturePerturbNormal); - OpenTK.Graphics.OpenGL.GL.Ext.TextureNormal(_mode); -} -static unsafe void Test_TexturePageCommitment_26308() { - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Boolean _resident = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Ext.TexturePageCommitment(_texture,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_resident); -} -static unsafe void Test_TexturePageCommitment_26309() { - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Boolean _resident = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Ext.TexturePageCommitment(_texture,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_resident); -} -static unsafe void Test_TextureParameter_26310() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.TextureParameter(_texture,_target,_pname,_param); -} -static unsafe void Test_TextureParameter_26311() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.TextureParameter(_texture,_target,_pname,_param); -} -static unsafe void Test_TextureParameter_26312() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureParameter(_texture,_target,_pname,_params); -} -static unsafe void Test_TextureParameter_26313() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.TextureParameter(_texture,_target,_pname,_params); -} -static unsafe void Test_TextureParameter_26314() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureParameter(_texture,_target,_pname,_params); -} -static unsafe void Test_TextureParameter_26315() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.TextureParameter(_texture,_target,_pname,_params); -} -static unsafe void Test_TextureParameter_26316() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.TextureParameter(_texture,_target,_pname,_param); -} -static unsafe void Test_TextureParameter_26317() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.TextureParameter(_texture,_target,_pname,_param); -} -static unsafe void Test_TextureParameterI_26318() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureParameterI(_texture,_target,_pname,_params); -} -static unsafe void Test_TextureParameterI_26319() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.TextureParameterI(_texture,_target,_pname,ref _params); -} -static unsafe void Test_TextureParameterI_26320() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.TextureParameterI(_texture,_target,_pname,_params); -} -static unsafe void Test_TextureParameterI_26321() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureParameterI(_texture,_target,_pname,_params); -} -static unsafe void Test_TextureParameterI_26322() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.TextureParameterI(_texture,_target,_pname,ref _params); -} -static unsafe void Test_TextureParameterI_26323() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.TextureParameterI(_texture,_target,_pname,_params); -} -static unsafe void Test_TextureParameterI_26324() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureParameterI(_texture,_target,_pname,_params); -} -static unsafe void Test_TextureParameterI_26325() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.TextureParameterI(_texture,_target,_pname,ref _params); -} -static unsafe void Test_TextureParameterI_26326() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Ext.TextureParameterI(_texture,_target,_pname,_params); -} -static unsafe void Test_TextureParameter_26327() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureParameter(_texture,_target,_pname,_params); -} -static unsafe void Test_TextureParameter_26328() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.TextureParameter(_texture,_target,_pname,_params); -} -static unsafe void Test_TextureParameter_26329() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureParameter(_texture,_target,_pname,_params); -} -static unsafe void Test_TextureParameter_26330() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL.TextureParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.TextureParameter(_texture,_target,_pname,_params); -} -static unsafe void Test_TextureRenderbuffer_26331() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _renderbuffer = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.TextureRenderbuffer(_texture,_target,_renderbuffer); -} -static unsafe void Test_TextureRenderbuffer_26332() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.UInt32 _renderbuffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.TextureRenderbuffer(_texture,_target,_renderbuffer); -} -static unsafe void Test_TextureStorage1D_26333() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.TextureStorage1D(_texture,_target,_levels,_internalformat,_width); -} -static unsafe void Test_TextureStorage1D_26334() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.TextureStorage1D(_texture,_target,_levels,_internalformat,_width); -} -static unsafe void Test_TextureStorage2D_26335() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.TextureStorage2D(_texture,_target,_levels,_internalformat,_width,_height); -} -static unsafe void Test_TextureStorage2D_26336() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.TextureStorage2D(_texture,_target,_levels,_internalformat,_width,_height); -} -static unsafe void Test_TextureStorage2DMultisample_26337() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Boolean _fixedsamplelocations = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Ext.TextureStorage2DMultisample(_texture,_target,_samples,_internalformat,_width,_height,_fixedsamplelocations); -} -static unsafe void Test_TextureStorage2DMultisample_26338() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Boolean _fixedsamplelocations = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Ext.TextureStorage2DMultisample(_texture,_target,_samples,_internalformat,_width,_height,_fixedsamplelocations); -} -static unsafe void Test_TextureStorage3D_26339() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.TextureStorage3D(_texture,_target,_levels,_internalformat,_width,_height,_depth); -} -static unsafe void Test_TextureStorage3D_26340() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.TextureStorage3D(_texture,_target,_levels,_internalformat,_width,_height,_depth); -} -static unsafe void Test_TextureStorage3DMultisample_26341() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Boolean _fixedsamplelocations = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Ext.TextureStorage3DMultisample(_texture,_target,_samples,_internalformat,_width,_height,_depth,_fixedsamplelocations); -} -static unsafe void Test_TextureStorage3DMultisample_26342() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _target = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Boolean _fixedsamplelocations = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Ext.TextureStorage3DMultisample(_texture,_target,_samples,_internalformat,_width,_height,_depth,_fixedsamplelocations); -} -static unsafe void Test_TextureSubImage1D_26343() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.TextureSubImage1D(_texture,_target,_level,_xoffset,_width,_format,_type,_pixels); -} -static unsafe void Test_TextureSubImage1D_26344() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureSubImage1D(_texture,_target,_level,_xoffset,_width,_format,_type,_pixels); -} -static unsafe void Test_TextureSubImage1D_26345() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureSubImage1D(_texture,_target,_level,_xoffset,_width,_format,_type,_pixels); -} -static unsafe void Test_TextureSubImage1D_26346() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureSubImage1D(_texture,_target,_level,_xoffset,_width,_format,_type,_pixels); -} -static unsafe void Test_TextureSubImage1D_26347() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.TextureSubImage1D(_texture,_target,_level,_xoffset,_width,_format,_type,ref _pixels); -} -static unsafe void Test_TextureSubImage1D_26348() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.TextureSubImage1D(_texture,_target,_level,_xoffset,_width,_format,_type,_pixels); -} -static unsafe void Test_TextureSubImage1D_26349() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureSubImage1D(_texture,_target,_level,_xoffset,_width,_format,_type,_pixels); -} -static unsafe void Test_TextureSubImage1D_26350() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureSubImage1D(_texture,_target,_level,_xoffset,_width,_format,_type,_pixels); -} -static unsafe void Test_TextureSubImage1D_26351() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureSubImage1D(_texture,_target,_level,_xoffset,_width,_format,_type,_pixels); -} -static unsafe void Test_TextureSubImage1D_26352() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.TextureSubImage1D(_texture,_target,_level,_xoffset,_width,_format,_type,ref _pixels); -} -static unsafe void Test_TextureSubImage2D_26353() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.TextureSubImage2D(_texture,_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TextureSubImage2D_26354() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureSubImage2D(_texture,_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TextureSubImage2D_26355() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureSubImage2D(_texture,_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TextureSubImage2D_26356() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureSubImage2D(_texture,_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TextureSubImage2D_26357() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.TextureSubImage2D(_texture,_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,ref _pixels); -} -static unsafe void Test_TextureSubImage2D_26358() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.TextureSubImage2D(_texture,_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TextureSubImage2D_26359() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureSubImage2D(_texture,_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TextureSubImage2D_26360() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureSubImage2D(_texture,_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TextureSubImage2D_26361() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureSubImage2D(_texture,_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TextureSubImage2D_26362() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.TextureSubImage2D(_texture,_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,ref _pixels); -} -static unsafe void Test_TextureSubImage3D_26363() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.TextureSubImage3D(_texture,_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TextureSubImage3D_26364() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureSubImage3D(_texture,_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TextureSubImage3D_26365() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureSubImage3D(_texture,_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TextureSubImage3D_26366() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureSubImage3D(_texture,_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TextureSubImage3D_26367() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.TextureSubImage3D(_texture,_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,ref _pixels); -} -static unsafe void Test_TextureSubImage3D_26368() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.TextureSubImage3D(_texture,_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TextureSubImage3D_26369() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureSubImage3D(_texture,_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TextureSubImage3D_26370() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureSubImage3D(_texture,_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TextureSubImage3D_26371() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.TextureSubImage3D(_texture,_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TextureSubImage3D_26372() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.TextureSubImage3D(_texture,_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,ref _pixels); -} -static unsafe void Test_TransformFeedbackVaryings_26373() { - System.Int32 _program = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.String[] _varyings = default(System.String[]); - OpenTK.Graphics.OpenGL.ExtTransformFeedback _bufferMode = default(OpenTK.Graphics.OpenGL.ExtTransformFeedback); - OpenTK.Graphics.OpenGL.GL.Ext.TransformFeedbackVaryings(_program,_count,_varyings,_bufferMode); -} -static unsafe void Test_TransformFeedbackVaryings_26374() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.String[] _varyings = default(System.String[]); - OpenTK.Graphics.OpenGL.ExtTransformFeedback _bufferMode = default(OpenTK.Graphics.OpenGL.ExtTransformFeedback); - OpenTK.Graphics.OpenGL.GL.Ext.TransformFeedbackVaryings(_program,_count,_varyings,_bufferMode); -} -static unsafe void Test_Uniform1_26375() { - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.Uniform1(_location,_v0); -} -static unsafe void Test_Uniform1_26376() { - System.Int32 _location = default(System.Int32); - System.UInt32 _v0 = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.Uniform1(_location,_v0); -} -static unsafe void Test_Uniform1_26377() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.Uniform1(_location,_count,_value); -} -static unsafe void Test_Uniform1_26378() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.Uniform1(_location,_count,ref _value); -} -static unsafe void Test_Uniform1_26379() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.Uniform1(_location,_count,_value); -} -static unsafe void Test_Uniform1_26380() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _value = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Ext.Uniform1(_location,_count,_value); -} -static unsafe void Test_Uniform1_26381() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.Uniform1(_location,_count,ref _value); -} -static unsafe void Test_Uniform1_26382() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Ext.Uniform1(_location,_count,_value); -} -static unsafe void Test_Uniform2_26383() { - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.Uniform2(_location,_v0,_v1); -} -static unsafe void Test_Uniform2_26384() { - System.Int32 _location = default(System.Int32); - System.UInt32 _v0 = default(System.UInt32); - System.UInt32 _v1 = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.Uniform2(_location,_v0,_v1); -} -static unsafe void Test_Uniform2_26385() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.Uniform2(_location,_count,_value); -} -static unsafe void Test_Uniform2_26386() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.Uniform2(_location,_count,_value); -} -static unsafe void Test_Uniform2_26387() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _value = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Ext.Uniform2(_location,_count,_value); -} -static unsafe void Test_Uniform2_26388() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.Uniform2(_location,_count,ref _value); -} -static unsafe void Test_Uniform2_26389() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Ext.Uniform2(_location,_count,_value); -} -static unsafe void Test_Uniform3_26390() { - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - System.Int32 _v2 = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.Uniform3(_location,_v0,_v1,_v2); -} -static unsafe void Test_Uniform3_26391() { - System.Int32 _location = default(System.Int32); - System.UInt32 _v0 = default(System.UInt32); - System.UInt32 _v1 = default(System.UInt32); - System.UInt32 _v2 = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.Uniform3(_location,_v0,_v1,_v2); -} -static unsafe void Test_Uniform3_26392() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.Uniform3(_location,_count,_value); -} -static unsafe void Test_Uniform3_26393() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.Uniform3(_location,_count,ref _value); -} -static unsafe void Test_Uniform3_26394() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.Uniform3(_location,_count,_value); -} -static unsafe void Test_Uniform3_26395() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _value = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Ext.Uniform3(_location,_count,_value); -} -static unsafe void Test_Uniform3_26396() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.Uniform3(_location,_count,ref _value); -} -static unsafe void Test_Uniform3_26397() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Ext.Uniform3(_location,_count,_value); -} -static unsafe void Test_Uniform4_26398() { - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - System.Int32 _v2 = default(System.Int32); - System.Int32 _v3 = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.Uniform4(_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_Uniform4_26399() { - System.Int32 _location = default(System.Int32); - System.UInt32 _v0 = default(System.UInt32); - System.UInt32 _v1 = default(System.UInt32); - System.UInt32 _v2 = default(System.UInt32); - System.UInt32 _v3 = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.Uniform4(_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_Uniform4_26400() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.Uniform4(_location,_count,_value); -} -static unsafe void Test_Uniform4_26401() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.Uniform4(_location,_count,ref _value); -} -static unsafe void Test_Uniform4_26402() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.Uniform4(_location,_count,_value); -} -static unsafe void Test_Uniform4_26403() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _value = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Ext.Uniform4(_location,_count,_value); -} -static unsafe void Test_Uniform4_26404() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.Uniform4(_location,_count,ref _value); -} -static unsafe void Test_Uniform4_26405() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Ext.Uniform4(_location,_count,_value); -} -static unsafe void Test_UniformBuffer_26406() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.UniformBuffer(_program,_location,_buffer); -} -static unsafe void Test_UniformBuffer_26407() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.UniformBuffer(_program,_location,_buffer); -} -static unsafe void Test_UnlockArrays_26408() { - OpenTK.Graphics.OpenGL.GL.Ext.UnlockArrays(); -} -static unsafe void Test_UnmapNamedBuffer_26409() { - System.Int32 _buffer = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Ext.UnmapNamedBuffer(_buffer); -} -static unsafe void Test_UnmapNamedBuffer_26410() { - System.UInt32 _buffer = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Ext.UnmapNamedBuffer(_buffer); -} -static unsafe void Test_UseProgramStages_26411() { - System.Int32 _pipeline = default(System.Int32); - System.Int32 _stages = default(System.Int32); - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.UseProgramStages(_pipeline,_stages,_program); -} -static unsafe void Test_UseProgramStages_26412() { - System.UInt32 _pipeline = default(System.UInt32); - System.UInt32 _stages = default(System.UInt32); - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.UseProgramStages(_pipeline,_stages,_program); -} -static unsafe void Test_UseShaderProgram_26413() { - OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects _type = default(OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects); - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.UseShaderProgram(_type,_program); -} -static unsafe void Test_UseShaderProgram_26414() { - OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects _type = default(OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects); - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.UseShaderProgram(_type,_program); -} -static unsafe void Test_ValidateProgramPipeline_26415() { - System.Int32 _pipeline = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.ValidateProgramPipeline(_pipeline); -} -static unsafe void Test_ValidateProgramPipeline_26416() { - System.UInt32 _pipeline = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.ValidateProgramPipeline(_pipeline); -} -static unsafe void Test_Variant_26417() { - System.UInt32 _id = default(System.UInt32); - System.SByte[] _addr = default(System.SByte[]); - OpenTK.Graphics.OpenGL.GL.Ext.Variant(_id,_addr); -} -static unsafe void Test_Variant_26418() { - System.UInt32 _id = default(System.UInt32); - System.SByte _addr = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.Ext.Variant(_id,ref _addr); -} -static unsafe void Test_Variant_26419() { - System.UInt32 _id = default(System.UInt32); - System.SByte* _addr = default(System.SByte*); - OpenTK.Graphics.OpenGL.GL.Ext.Variant(_id,_addr); -} -static unsafe void Test_Variant_26420() { - System.Int32 _id = default(System.Int32); - System.Double[] _addr = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.Variant(_id,_addr); -} -static unsafe void Test_Variant_26421() { - System.Int32 _id = default(System.Int32); - System.Double _addr = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.Variant(_id,ref _addr); -} -static unsafe void Test_Variant_26422() { - System.Int32 _id = default(System.Int32); - System.Double* _addr = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.Variant(_id,_addr); -} -static unsafe void Test_Variant_26423() { - System.UInt32 _id = default(System.UInt32); - System.Double[] _addr = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.Variant(_id,_addr); -} -static unsafe void Test_Variant_26424() { - System.UInt32 _id = default(System.UInt32); - System.Double _addr = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.Variant(_id,ref _addr); -} -static unsafe void Test_Variant_26425() { - System.UInt32 _id = default(System.UInt32); - System.Double* _addr = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.Variant(_id,_addr); -} -static unsafe void Test_Variant_26426() { - System.Int32 _id = default(System.Int32); - System.Single[] _addr = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.Variant(_id,_addr); -} -static unsafe void Test_Variant_26427() { - System.Int32 _id = default(System.Int32); - System.Single _addr = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.Variant(_id,ref _addr); -} -static unsafe void Test_Variant_26428() { - System.Int32 _id = default(System.Int32); - System.Single* _addr = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.Variant(_id,_addr); -} -static unsafe void Test_Variant_26429() { - System.UInt32 _id = default(System.UInt32); - System.Single[] _addr = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Ext.Variant(_id,_addr); -} -static unsafe void Test_Variant_26430() { - System.UInt32 _id = default(System.UInt32); - System.Single _addr = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.Variant(_id,ref _addr); -} -static unsafe void Test_Variant_26431() { - System.UInt32 _id = default(System.UInt32); - System.Single* _addr = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.Variant(_id,_addr); -} -static unsafe void Test_Variant_26432() { - System.Int32 _id = default(System.Int32); - System.Int32[] _addr = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.Variant(_id,_addr); -} -static unsafe void Test_Variant_26433() { - System.Int32 _id = default(System.Int32); - System.Int32 _addr = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.Variant(_id,ref _addr); -} -static unsafe void Test_Variant_26434() { - System.Int32 _id = default(System.Int32); - System.Int32* _addr = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.Variant(_id,_addr); -} -static unsafe void Test_Variant_26435() { - System.UInt32 _id = default(System.UInt32); - System.Int32[] _addr = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.Variant(_id,_addr); -} -static unsafe void Test_Variant_26436() { - System.UInt32 _id = default(System.UInt32); - System.Int32 _addr = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.Variant(_id,ref _addr); -} -static unsafe void Test_Variant_26437() { - System.UInt32 _id = default(System.UInt32); - System.Int32* _addr = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.Variant(_id,_addr); -} -static unsafe void Test_VariantPointer_26438() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _type = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Int32 _stride = default(System.Int32); - System.IntPtr _addr = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.VariantPointer(_id,_type,_stride,_addr); -} -static unsafe void Test_VariantPointer_26439() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _type = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Int32 _stride = default(System.Int32); - int[] _addr = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.VariantPointer(_id,_type,_stride,_addr); -} -static unsafe void Test_VariantPointer_26440() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _type = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Int32 _stride = default(System.Int32); - int[,] _addr = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.VariantPointer(_id,_type,_stride,_addr); -} -static unsafe void Test_VariantPointer_26441() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _type = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Int32 _stride = default(System.Int32); - int[,,] _addr = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.VariantPointer(_id,_type,_stride,_addr); -} -static unsafe void Test_VariantPointer_26442() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _type = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.Int32 _stride = default(System.Int32); - int _addr = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.VariantPointer(_id,_type,_stride,ref _addr); -} -static unsafe void Test_VariantPointer_26443() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _type = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.UInt32 _stride = default(System.UInt32); - System.IntPtr _addr = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.VariantPointer(_id,_type,_stride,_addr); -} -static unsafe void Test_VariantPointer_26444() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _type = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.UInt32 _stride = default(System.UInt32); - int[] _addr = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.VariantPointer(_id,_type,_stride,_addr); -} -static unsafe void Test_VariantPointer_26445() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _type = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.UInt32 _stride = default(System.UInt32); - int[,] _addr = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.VariantPointer(_id,_type,_stride,_addr); -} -static unsafe void Test_VariantPointer_26446() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _type = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.UInt32 _stride = default(System.UInt32); - int[,,] _addr = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.VariantPointer(_id,_type,_stride,_addr); -} -static unsafe void Test_VariantPointer_26447() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _type = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - System.UInt32 _stride = default(System.UInt32); - int _addr = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.VariantPointer(_id,_type,_stride,ref _addr); -} -static unsafe void Test_Variant_26448() { - System.Int32 _id = default(System.Int32); - System.Int16[] _addr = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.Ext.Variant(_id,_addr); -} -static unsafe void Test_Variant_26449() { - System.Int32 _id = default(System.Int32); - System.Int16 _addr = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Ext.Variant(_id,ref _addr); -} -static unsafe void Test_Variant_26450() { - System.Int32 _id = default(System.Int32); - System.Int16* _addr = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Ext.Variant(_id,_addr); -} -static unsafe void Test_Variant_26451() { - System.UInt32 _id = default(System.UInt32); - System.Int16[] _addr = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.Ext.Variant(_id,_addr); -} -static unsafe void Test_Variant_26452() { - System.UInt32 _id = default(System.UInt32); - System.Int16 _addr = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Ext.Variant(_id,ref _addr); -} -static unsafe void Test_Variant_26453() { - System.UInt32 _id = default(System.UInt32); - System.Int16* _addr = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Ext.Variant(_id,_addr); -} -static unsafe void Test_Variant_26454() { - System.Int32 _id = default(System.Int32); - System.Byte[] _addr = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.Ext.Variant(_id,_addr); -} -static unsafe void Test_Variant_26455() { - System.Int32 _id = default(System.Int32); - System.Byte _addr = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Ext.Variant(_id,ref _addr); -} -static unsafe void Test_Variant_26456() { - System.Int32 _id = default(System.Int32); - System.Byte* _addr = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.Ext.Variant(_id,_addr); -} -static unsafe void Test_Variant_26457() { - System.UInt32 _id = default(System.UInt32); - System.Byte[] _addr = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.Ext.Variant(_id,_addr); -} -static unsafe void Test_Variant_26458() { - System.UInt32 _id = default(System.UInt32); - System.Byte _addr = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Ext.Variant(_id,ref _addr); -} -static unsafe void Test_Variant_26459() { - System.UInt32 _id = default(System.UInt32); - System.Byte* _addr = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.Ext.Variant(_id,_addr); -} -static unsafe void Test_Variant_26460() { - System.UInt32 _id = default(System.UInt32); - System.UInt32[] _addr = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Ext.Variant(_id,_addr); -} -static unsafe void Test_Variant_26461() { - System.UInt32 _id = default(System.UInt32); - System.UInt32 _addr = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.Variant(_id,ref _addr); -} -static unsafe void Test_Variant_26462() { - System.UInt32 _id = default(System.UInt32); - System.UInt32* _addr = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Ext.Variant(_id,_addr); -} -static unsafe void Test_Variant_26463() { - System.UInt32 _id = default(System.UInt32); - System.UInt16[] _addr = default(System.UInt16[]); - OpenTK.Graphics.OpenGL.GL.Ext.Variant(_id,_addr); -} -static unsafe void Test_Variant_26464() { - System.UInt32 _id = default(System.UInt32); - System.UInt16 _addr = default(System.UInt16); - OpenTK.Graphics.OpenGL.GL.Ext.Variant(_id,ref _addr); -} -static unsafe void Test_Variant_26465() { - System.UInt32 _id = default(System.UInt32); - System.UInt16* _addr = default(System.UInt16*); - OpenTK.Graphics.OpenGL.GL.Ext.Variant(_id,_addr); -} -static unsafe void Test_VertexArrayBindVertexBuffer_26466() { - System.Int32 _vaobj = default(System.Int32); - System.Int32 _bindingindex = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.VertexArrayBindVertexBuffer(_vaobj,_bindingindex,_buffer,_offset,_stride); -} -static unsafe void Test_VertexArrayBindVertexBuffer_26467() { - System.UInt32 _vaobj = default(System.UInt32); - System.UInt32 _bindingindex = default(System.UInt32); - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr _offset = default(System.IntPtr); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.VertexArrayBindVertexBuffer(_vaobj,_bindingindex,_buffer,_offset,_stride); -} -static unsafe void Test_VertexArrayColorOffset_26468() { - System.Int32 _vaobj = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ColorPointerType _type = default(OpenTK.Graphics.OpenGL.ColorPointerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.VertexArrayColorOffset(_vaobj,_buffer,_size,_type,_stride,_offset); -} -static unsafe void Test_VertexArrayColorOffset_26469() { - System.UInt32 _vaobj = default(System.UInt32); - System.UInt32 _buffer = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ColorPointerType _type = default(OpenTK.Graphics.OpenGL.ColorPointerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.VertexArrayColorOffset(_vaobj,_buffer,_size,_type,_stride,_offset); -} -static unsafe void Test_VertexArrayEdgeFlagOffset_26470() { - System.Int32 _vaobj = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - System.Int32 _stride = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.VertexArrayEdgeFlagOffset(_vaobj,_buffer,_stride,_offset); -} -static unsafe void Test_VertexArrayEdgeFlagOffset_26471() { - System.UInt32 _vaobj = default(System.UInt32); - System.UInt32 _buffer = default(System.UInt32); - System.Int32 _stride = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.VertexArrayEdgeFlagOffset(_vaobj,_buffer,_stride,_offset); -} -static unsafe void Test_VertexArrayFogCoordOffset_26472() { - System.Int32 _vaobj = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.FogPointerType _type = default(OpenTK.Graphics.OpenGL.FogPointerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.VertexArrayFogCoordOffset(_vaobj,_buffer,_type,_stride,_offset); -} -static unsafe void Test_VertexArrayFogCoordOffset_26473() { - System.UInt32 _vaobj = default(System.UInt32); - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.FogPointerType _type = default(OpenTK.Graphics.OpenGL.FogPointerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.VertexArrayFogCoordOffset(_vaobj,_buffer,_type,_stride,_offset); -} -static unsafe void Test_VertexArrayIndexOffset_26474() { - System.Int32 _vaobj = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.IndexPointerType _type = default(OpenTK.Graphics.OpenGL.IndexPointerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.VertexArrayIndexOffset(_vaobj,_buffer,_type,_stride,_offset); -} -static unsafe void Test_VertexArrayIndexOffset_26475() { - System.UInt32 _vaobj = default(System.UInt32); - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.IndexPointerType _type = default(OpenTK.Graphics.OpenGL.IndexPointerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.VertexArrayIndexOffset(_vaobj,_buffer,_type,_stride,_offset); -} -static unsafe void Test_VertexArrayMultiTexCoordOffset_26476() { - System.Int32 _vaobj = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _texunit = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.TexCoordPointerType _type = default(OpenTK.Graphics.OpenGL.TexCoordPointerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.VertexArrayMultiTexCoordOffset(_vaobj,_buffer,_texunit,_size,_type,_stride,_offset); -} -static unsafe void Test_VertexArrayMultiTexCoordOffset_26477() { - System.UInt32 _vaobj = default(System.UInt32); - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _texunit = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.TexCoordPointerType _type = default(OpenTK.Graphics.OpenGL.TexCoordPointerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.VertexArrayMultiTexCoordOffset(_vaobj,_buffer,_texunit,_size,_type,_stride,_offset); -} -static unsafe void Test_VertexArrayNormalOffset_26478() { - System.Int32 _vaobj = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.NormalPointerType _type = default(OpenTK.Graphics.OpenGL.NormalPointerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.VertexArrayNormalOffset(_vaobj,_buffer,_type,_stride,_offset); -} -static unsafe void Test_VertexArrayNormalOffset_26479() { - System.UInt32 _vaobj = default(System.UInt32); - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.NormalPointerType _type = default(OpenTK.Graphics.OpenGL.NormalPointerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.VertexArrayNormalOffset(_vaobj,_buffer,_type,_stride,_offset); -} -static unsafe void Test_VertexArraySecondaryColorOffset_26480() { - System.Int32 _vaobj = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ColorPointerType _type = default(OpenTK.Graphics.OpenGL.ColorPointerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.VertexArraySecondaryColorOffset(_vaobj,_buffer,_size,_type,_stride,_offset); -} -static unsafe void Test_VertexArraySecondaryColorOffset_26481() { - System.UInt32 _vaobj = default(System.UInt32); - System.UInt32 _buffer = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ColorPointerType _type = default(OpenTK.Graphics.OpenGL.ColorPointerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.VertexArraySecondaryColorOffset(_vaobj,_buffer,_size,_type,_stride,_offset); -} -static unsafe void Test_VertexArrayTexCoordOffset_26482() { - System.Int32 _vaobj = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.TexCoordPointerType _type = default(OpenTK.Graphics.OpenGL.TexCoordPointerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.VertexArrayTexCoordOffset(_vaobj,_buffer,_size,_type,_stride,_offset); -} -static unsafe void Test_VertexArrayTexCoordOffset_26483() { - System.UInt32 _vaobj = default(System.UInt32); - System.UInt32 _buffer = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.TexCoordPointerType _type = default(OpenTK.Graphics.OpenGL.TexCoordPointerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.VertexArrayTexCoordOffset(_vaobj,_buffer,_size,_type,_stride,_offset); -} -static unsafe void Test_VertexArrayVertexAttribBinding_26484() { - System.Int32 _vaobj = default(System.Int32); - System.Int32 _attribindex = default(System.Int32); - System.Int32 _bindingindex = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.VertexArrayVertexAttribBinding(_vaobj,_attribindex,_bindingindex); -} -static unsafe void Test_VertexArrayVertexAttribBinding_26485() { - System.UInt32 _vaobj = default(System.UInt32); - System.UInt32 _attribindex = default(System.UInt32); - System.UInt32 _bindingindex = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.VertexArrayVertexAttribBinding(_vaobj,_attribindex,_bindingindex); -} -static unsafe void Test_VertexArrayVertexAttribDivisor_26486() { - System.Int32 _vaobj = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _divisor = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.VertexArrayVertexAttribDivisor(_vaobj,_index,_divisor); -} -static unsafe void Test_VertexArrayVertexAttribDivisor_26487() { - System.UInt32 _vaobj = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.UInt32 _divisor = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.VertexArrayVertexAttribDivisor(_vaobj,_index,_divisor); -} -static unsafe void Test_VertexArrayVertexAttribFormat_26488() { - System.Int32 _vaobj = default(System.Int32); - System.Int32 _attribindex = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _type = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _relativeoffset = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.VertexArrayVertexAttribFormat(_vaobj,_attribindex,_size,_type,_normalized,_relativeoffset); -} -static unsafe void Test_VertexArrayVertexAttribFormat_26489() { - System.UInt32 _vaobj = default(System.UInt32); - System.UInt32 _attribindex = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _type = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Boolean _normalized = default(System.Boolean); - System.UInt32 _relativeoffset = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.VertexArrayVertexAttribFormat(_vaobj,_attribindex,_size,_type,_normalized,_relativeoffset); -} -static unsafe void Test_VertexArrayVertexAttribIFormat_26490() { - System.Int32 _vaobj = default(System.Int32); - System.Int32 _attribindex = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _type = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _relativeoffset = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.VertexArrayVertexAttribIFormat(_vaobj,_attribindex,_size,_type,_relativeoffset); -} -static unsafe void Test_VertexArrayVertexAttribIFormat_26491() { - System.UInt32 _vaobj = default(System.UInt32); - System.UInt32 _attribindex = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _type = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _relativeoffset = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.VertexArrayVertexAttribIFormat(_vaobj,_attribindex,_size,_type,_relativeoffset); -} -static unsafe void Test_VertexArrayVertexAttribIOffset_26492() { - System.Int32 _vaobj = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _type = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _stride = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.VertexArrayVertexAttribIOffset(_vaobj,_buffer,_index,_size,_type,_stride,_offset); -} -static unsafe void Test_VertexArrayVertexAttribIOffset_26493() { - System.UInt32 _vaobj = default(System.UInt32); - System.UInt32 _buffer = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _type = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _stride = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.VertexArrayVertexAttribIOffset(_vaobj,_buffer,_index,_size,_type,_stride,_offset); -} -static unsafe void Test_VertexArrayVertexAttribLFormat_26494() { - System.Int32 _vaobj = default(System.Int32); - System.Int32 _attribindex = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _type = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _relativeoffset = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.VertexArrayVertexAttribLFormat(_vaobj,_attribindex,_size,_type,_relativeoffset); -} -static unsafe void Test_VertexArrayVertexAttribLFormat_26495() { - System.UInt32 _vaobj = default(System.UInt32); - System.UInt32 _attribindex = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _type = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.UInt32 _relativeoffset = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.VertexArrayVertexAttribLFormat(_vaobj,_attribindex,_size,_type,_relativeoffset); -} -static unsafe void Test_VertexArrayVertexAttribLOffset_26496() { - System.Int32 _vaobj = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _type = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _stride = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.VertexArrayVertexAttribLOffset(_vaobj,_buffer,_index,_size,_type,_stride,_offset); -} -static unsafe void Test_VertexArrayVertexAttribLOffset_26497() { - System.Int32 _vaobj = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit _type = default(OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit); - System.Int32 _stride = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.VertexArrayVertexAttribLOffset(_vaobj,_buffer,_index,_size,_type,_stride,_offset); -} -static unsafe void Test_VertexArrayVertexAttribLOffset_26498() { - System.UInt32 _vaobj = default(System.UInt32); - System.UInt32 _buffer = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _type = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - System.Int32 _stride = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.VertexArrayVertexAttribLOffset(_vaobj,_buffer,_index,_size,_type,_stride,_offset); -} -static unsafe void Test_VertexArrayVertexAttribLOffset_26499() { - System.UInt32 _vaobj = default(System.UInt32); - System.UInt32 _buffer = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit _type = default(OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit); - System.Int32 _stride = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.VertexArrayVertexAttribLOffset(_vaobj,_buffer,_index,_size,_type,_stride,_offset); -} -static unsafe void Test_VertexArrayVertexAttribOffset_26500() { - System.Int32 _vaobj = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribPointerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.VertexArrayVertexAttribOffset(_vaobj,_buffer,_index,_size,_type,_normalized,_stride,_offset); -} -static unsafe void Test_VertexArrayVertexAttribOffset_26501() { - System.UInt32 _vaobj = default(System.UInt32); - System.UInt32 _buffer = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribPointerType _type = default(OpenTK.Graphics.OpenGL.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.VertexArrayVertexAttribOffset(_vaobj,_buffer,_index,_size,_type,_normalized,_stride,_offset); -} -static unsafe void Test_VertexArrayVertexBindingDivisor_26502() { - System.Int32 _vaobj = default(System.Int32); - System.Int32 _bindingindex = default(System.Int32); - System.Int32 _divisor = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.VertexArrayVertexBindingDivisor(_vaobj,_bindingindex,_divisor); -} -static unsafe void Test_VertexArrayVertexBindingDivisor_26503() { - System.UInt32 _vaobj = default(System.UInt32); - System.UInt32 _bindingindex = default(System.UInt32); - System.UInt32 _divisor = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.VertexArrayVertexBindingDivisor(_vaobj,_bindingindex,_divisor); -} -static unsafe void Test_VertexArrayVertexOffset_26504() { - System.Int32 _vaobj = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexPointerType _type = default(OpenTK.Graphics.OpenGL.VertexPointerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.VertexArrayVertexOffset(_vaobj,_buffer,_size,_type,_stride,_offset); -} -static unsafe void Test_VertexArrayVertexOffset_26505() { - System.UInt32 _vaobj = default(System.UInt32); - System.UInt32 _buffer = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexPointerType _type = default(OpenTK.Graphics.OpenGL.VertexPointerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.VertexArrayVertexOffset(_vaobj,_buffer,_size,_type,_stride,_offset); -} -static unsafe void Test_VertexAttribI1_26506() { - System.Int32 _index = default(System.Int32); - System.Int32 _x = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI1(_index,_x); -} -static unsafe void Test_VertexAttribI1_26507() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _x = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI1(_index,_x); -} -static unsafe void Test_VertexAttribI1_26508() { - System.Int32 _index = default(System.Int32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI1(_index,_v); -} -static unsafe void Test_VertexAttribI1_26509() { - System.UInt32 _index = default(System.UInt32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI1(_index,_v); -} -static unsafe void Test_VertexAttribI1_26510() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _x = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI1(_index,_x); -} -static unsafe void Test_VertexAttribI1_26511() { - System.UInt32 _index = default(System.UInt32); - System.UInt32* _v = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI1(_index,_v); -} -static unsafe void Test_VertexAttribI2_26512() { - System.Int32 _index = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI2(_index,_x,_y); -} -static unsafe void Test_VertexAttribI2_26513() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI2(_index,_x,_y); -} -static unsafe void Test_VertexAttribI2_26514() { - System.Int32 _index = default(System.Int32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI2(_index,_v); -} -static unsafe void Test_VertexAttribI2_26515() { - System.Int32 _index = default(System.Int32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI2(_index,ref _v); -} -static unsafe void Test_VertexAttribI2_26516() { - System.Int32 _index = default(System.Int32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI2(_index,_v); -} -static unsafe void Test_VertexAttribI2_26517() { - System.UInt32 _index = default(System.UInt32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI2(_index,_v); -} -static unsafe void Test_VertexAttribI2_26518() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI2(_index,ref _v); -} -static unsafe void Test_VertexAttribI2_26519() { - System.UInt32 _index = default(System.UInt32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI2(_index,_v); -} -static unsafe void Test_VertexAttribI2_26520() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _x = default(System.UInt32); - System.UInt32 _y = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI2(_index,_x,_y); -} -static unsafe void Test_VertexAttribI2_26521() { - System.UInt32 _index = default(System.UInt32); - System.UInt32[] _v = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI2(_index,_v); -} -static unsafe void Test_VertexAttribI2_26522() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _v = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI2(_index,ref _v); -} -static unsafe void Test_VertexAttribI2_26523() { - System.UInt32 _index = default(System.UInt32); - System.UInt32* _v = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI2(_index,_v); -} -static unsafe void Test_VertexAttribI3_26524() { - System.Int32 _index = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttribI3_26525() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttribI3_26526() { - System.Int32 _index = default(System.Int32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI3(_index,_v); -} -static unsafe void Test_VertexAttribI3_26527() { - System.Int32 _index = default(System.Int32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI3(_index,ref _v); -} -static unsafe void Test_VertexAttribI3_26528() { - System.Int32 _index = default(System.Int32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI3(_index,_v); -} -static unsafe void Test_VertexAttribI3_26529() { - System.UInt32 _index = default(System.UInt32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI3(_index,_v); -} -static unsafe void Test_VertexAttribI3_26530() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI3(_index,ref _v); -} -static unsafe void Test_VertexAttribI3_26531() { - System.UInt32 _index = default(System.UInt32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI3(_index,_v); -} -static unsafe void Test_VertexAttribI3_26532() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _x = default(System.UInt32); - System.UInt32 _y = default(System.UInt32); - System.UInt32 _z = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttribI3_26533() { - System.UInt32 _index = default(System.UInt32); - System.UInt32[] _v = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI3(_index,_v); -} -static unsafe void Test_VertexAttribI3_26534() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _v = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI3(_index,ref _v); -} -static unsafe void Test_VertexAttribI3_26535() { - System.UInt32 _index = default(System.UInt32); - System.UInt32* _v = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI3(_index,_v); -} -static unsafe void Test_VertexAttribI4_26536() { - System.UInt32 _index = default(System.UInt32); - System.SByte[] _v = default(System.SByte[]); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_26537() { - System.UInt32 _index = default(System.UInt32); - System.SByte _v = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI4(_index,ref _v); -} -static unsafe void Test_VertexAttribI4_26538() { - System.UInt32 _index = default(System.UInt32); - System.SByte* _v = default(System.SByte*); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_26539() { - System.Int32 _index = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - System.Int32 _w = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttribI4_26540() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - System.Int32 _w = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttribI4_26541() { - System.Int32 _index = default(System.Int32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_26542() { - System.Int32 _index = default(System.Int32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI4(_index,ref _v); -} -static unsafe void Test_VertexAttribI4_26543() { - System.Int32 _index = default(System.Int32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_26544() { - System.UInt32 _index = default(System.UInt32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_26545() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI4(_index,ref _v); -} -static unsafe void Test_VertexAttribI4_26546() { - System.UInt32 _index = default(System.UInt32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_26547() { - System.Int32 _index = default(System.Int32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_26548() { - System.Int32 _index = default(System.Int32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI4(_index,ref _v); -} -static unsafe void Test_VertexAttribI4_26549() { - System.Int32 _index = default(System.Int32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_26550() { - System.UInt32 _index = default(System.UInt32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_26551() { - System.UInt32 _index = default(System.UInt32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI4(_index,ref _v); -} -static unsafe void Test_VertexAttribI4_26552() { - System.UInt32 _index = default(System.UInt32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_26553() { - System.Int32 _index = default(System.Int32); - System.Byte[] _v = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_26554() { - System.Int32 _index = default(System.Int32); - System.Byte _v = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI4(_index,ref _v); -} -static unsafe void Test_VertexAttribI4_26555() { - System.Int32 _index = default(System.Int32); - System.Byte* _v = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_26556() { - System.UInt32 _index = default(System.UInt32); - System.Byte[] _v = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_26557() { - System.UInt32 _index = default(System.UInt32); - System.Byte _v = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI4(_index,ref _v); -} -static unsafe void Test_VertexAttribI4_26558() { - System.UInt32 _index = default(System.UInt32); - System.Byte* _v = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_26559() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _x = default(System.UInt32); - System.UInt32 _y = default(System.UInt32); - System.UInt32 _z = default(System.UInt32); - System.UInt32 _w = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttribI4_26560() { - System.UInt32 _index = default(System.UInt32); - System.UInt32[] _v = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_26561() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _v = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI4(_index,ref _v); -} -static unsafe void Test_VertexAttribI4_26562() { - System.UInt32 _index = default(System.UInt32); - System.UInt32* _v = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_26563() { - System.UInt32 _index = default(System.UInt32); - System.UInt16[] _v = default(System.UInt16[]); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_26564() { - System.UInt32 _index = default(System.UInt32); - System.UInt16 _v = default(System.UInt16); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI4(_index,ref _v); -} -static unsafe void Test_VertexAttribI4_26565() { - System.UInt32 _index = default(System.UInt32); - System.UInt16* _v = default(System.UInt16*); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribIPointer_26566() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexProgram4 _type = default(OpenTK.Graphics.OpenGL.NvVertexProgram4); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_26567() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexProgram4 _type = default(OpenTK.Graphics.OpenGL.NvVertexProgram4); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_26568() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexProgram4 _type = default(OpenTK.Graphics.OpenGL.NvVertexProgram4); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_26569() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexProgram4 _type = default(OpenTK.Graphics.OpenGL.NvVertexProgram4); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_26570() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexProgram4 _type = default(OpenTK.Graphics.OpenGL.NvVertexProgram4); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribIPointer(_index,_size,_type,_stride,ref _pointer); -} -static unsafe void Test_VertexAttribIPointer_26571() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexProgram4 _type = default(OpenTK.Graphics.OpenGL.NvVertexProgram4); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_26572() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexProgram4 _type = default(OpenTK.Graphics.OpenGL.NvVertexProgram4); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_26573() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexProgram4 _type = default(OpenTK.Graphics.OpenGL.NvVertexProgram4); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_26574() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexProgram4 _type = default(OpenTK.Graphics.OpenGL.NvVertexProgram4); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_26575() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexProgram4 _type = default(OpenTK.Graphics.OpenGL.NvVertexProgram4); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribIPointer(_index,_size,_type,_stride,ref _pointer); -} -static unsafe void Test_VertexAttribL1_26576() { - System.Int32 _index = default(System.Int32); - System.Double _x = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribL1(_index,_x); -} -static unsafe void Test_VertexAttribL1_26577() { - System.UInt32 _index = default(System.UInt32); - System.Double _x = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribL1(_index,_x); -} -static unsafe void Test_VertexAttribL1_26578() { - System.Int32 _index = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribL1(_index,_v); -} -static unsafe void Test_VertexAttribL1_26579() { - System.UInt32 _index = default(System.UInt32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribL1(_index,_v); -} -static unsafe void Test_VertexAttribL2_26580() { - System.Int32 _index = default(System.Int32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribL2(_index,_x,_y); -} -static unsafe void Test_VertexAttribL2_26581() { - System.UInt32 _index = default(System.UInt32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribL2(_index,_x,_y); -} -static unsafe void Test_VertexAttribL2_26582() { - System.Int32 _index = default(System.Int32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribL2(_index,_v); -} -static unsafe void Test_VertexAttribL2_26583() { - System.Int32 _index = default(System.Int32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribL2(_index,ref _v); -} -static unsafe void Test_VertexAttribL2_26584() { - System.Int32 _index = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribL2(_index,_v); -} -static unsafe void Test_VertexAttribL2_26585() { - System.UInt32 _index = default(System.UInt32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribL2(_index,_v); -} -static unsafe void Test_VertexAttribL2_26586() { - System.UInt32 _index = default(System.UInt32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribL2(_index,ref _v); -} -static unsafe void Test_VertexAttribL2_26587() { - System.UInt32 _index = default(System.UInt32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribL2(_index,_v); -} -static unsafe void Test_VertexAttribL3_26588() { - System.Int32 _index = default(System.Int32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribL3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttribL3_26589() { - System.UInt32 _index = default(System.UInt32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribL3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttribL3_26590() { - System.Int32 _index = default(System.Int32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribL3(_index,_v); -} -static unsafe void Test_VertexAttribL3_26591() { - System.Int32 _index = default(System.Int32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribL3(_index,ref _v); -} -static unsafe void Test_VertexAttribL3_26592() { - System.Int32 _index = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribL3(_index,_v); -} -static unsafe void Test_VertexAttribL3_26593() { - System.UInt32 _index = default(System.UInt32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribL3(_index,_v); -} -static unsafe void Test_VertexAttribL3_26594() { - System.UInt32 _index = default(System.UInt32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribL3(_index,ref _v); -} -static unsafe void Test_VertexAttribL3_26595() { - System.UInt32 _index = default(System.UInt32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribL3(_index,_v); -} -static unsafe void Test_VertexAttribL4_26596() { - System.Int32 _index = default(System.Int32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - System.Double _w = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribL4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttribL4_26597() { - System.UInt32 _index = default(System.UInt32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - System.Double _w = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribL4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttribL4_26598() { - System.Int32 _index = default(System.Int32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribL4(_index,_v); -} -static unsafe void Test_VertexAttribL4_26599() { - System.Int32 _index = default(System.Int32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribL4(_index,ref _v); -} -static unsafe void Test_VertexAttribL4_26600() { - System.Int32 _index = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribL4(_index,_v); -} -static unsafe void Test_VertexAttribL4_26601() { - System.UInt32 _index = default(System.UInt32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribL4(_index,_v); -} -static unsafe void Test_VertexAttribL4_26602() { - System.UInt32 _index = default(System.UInt32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribL4(_index,ref _v); -} -static unsafe void Test_VertexAttribL4_26603() { - System.UInt32 _index = default(System.UInt32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribL4(_index,_v); -} -static unsafe void Test_VertexAttribLPointer_26604() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit _type = default(OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribLPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribLPointer_26605() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit _type = default(OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribLPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribLPointer_26606() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit _type = default(OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribLPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribLPointer_26607() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit _type = default(OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribLPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribLPointer_26608() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit _type = default(OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribLPointer(_index,_size,_type,_stride,ref _pointer); -} -static unsafe void Test_VertexAttribLPointer_26609() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit _type = default(OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribLPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribLPointer_26610() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit _type = default(OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribLPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribLPointer_26611() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit _type = default(OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribLPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribLPointer_26612() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit _type = default(OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribLPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribLPointer_26613() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit _type = default(OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.VertexAttribLPointer(_index,_size,_type,_stride,ref _pointer); -} -static unsafe void Test_VertexPointer_26614() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexPointerType _type = default(OpenTK.Graphics.OpenGL.VertexPointerType); - System.Int32 _stride = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.VertexPointer(_size,_type,_stride,_count,_pointer); -} -static unsafe void Test_VertexPointer_26615() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexPointerType _type = default(OpenTK.Graphics.OpenGL.VertexPointerType); - System.Int32 _stride = default(System.Int32); - System.Int32 _count = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.VertexPointer(_size,_type,_stride,_count,_pointer); -} -static unsafe void Test_VertexPointer_26616() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexPointerType _type = default(OpenTK.Graphics.OpenGL.VertexPointerType); - System.Int32 _stride = default(System.Int32); - System.Int32 _count = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.VertexPointer(_size,_type,_stride,_count,_pointer); -} -static unsafe void Test_VertexPointer_26617() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexPointerType _type = default(OpenTK.Graphics.OpenGL.VertexPointerType); - System.Int32 _stride = default(System.Int32); - System.Int32 _count = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.VertexPointer(_size,_type,_stride,_count,_pointer); -} -static unsafe void Test_VertexPointer_26618() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexPointerType _type = default(OpenTK.Graphics.OpenGL.VertexPointerType); - System.Int32 _stride = default(System.Int32); - System.Int32 _count = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.VertexPointer(_size,_type,_stride,_count,ref _pointer); -} -static unsafe void Test_VertexWeight_26619() { - System.Single _weight = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Ext.VertexWeight(_weight); -} -static unsafe void Test_VertexWeight_26620() { - System.Single* _weight = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Ext.VertexWeight(_weight); -} -static unsafe void Test_VertexWeightPointer_26621() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexWeighting _type = default(OpenTK.Graphics.OpenGL.ExtVertexWeighting); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.VertexWeightPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexWeightPointer_26622() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexWeighting _type = default(OpenTK.Graphics.OpenGL.ExtVertexWeighting); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.VertexWeightPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexWeightPointer_26623() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexWeighting _type = default(OpenTK.Graphics.OpenGL.ExtVertexWeighting); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.VertexWeightPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexWeightPointer_26624() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexWeighting _type = default(OpenTK.Graphics.OpenGL.ExtVertexWeighting); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.VertexWeightPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexWeightPointer_26625() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexWeighting _type = default(OpenTK.Graphics.OpenGL.ExtVertexWeighting); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.VertexWeightPointer(_size,_type,_stride,ref _pointer); -} -static unsafe void Test_WriteMask_26626() { - System.Int32 _res = default(System.Int32); - System.Int32 _in = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtVertexShader _outX = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - OpenTK.Graphics.OpenGL.ExtVertexShader _outY = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - OpenTK.Graphics.OpenGL.ExtVertexShader _outZ = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - OpenTK.Graphics.OpenGL.ExtVertexShader _outW = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - OpenTK.Graphics.OpenGL.GL.Ext.WriteMask(_res,_in,_outX,_outY,_outZ,_outW); -} -static unsafe void Test_WriteMask_26627() { - System.UInt32 _res = default(System.UInt32); - System.UInt32 _in = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtVertexShader _outX = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - OpenTK.Graphics.OpenGL.ExtVertexShader _outY = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - OpenTK.Graphics.OpenGL.ExtVertexShader _outZ = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - OpenTK.Graphics.OpenGL.ExtVertexShader _outW = default(OpenTK.Graphics.OpenGL.ExtVertexShader); - OpenTK.Graphics.OpenGL.GL.Ext.WriteMask(_res,_in,_outX,_outY,_outZ,_outW); -} -static unsafe void Test_ClearNamedBufferSubData_26628() { - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.ClearNamedBufferSubData(_buffer,_internalformat,_format,_type,_offset,_size,_data); -} -static unsafe void Test_ClearNamedBufferSubData_26629() { - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.ClearNamedBufferSubData(_buffer,_internalformat,_format,_type,_offset,_size,_data); -} -static unsafe void Test_ClearNamedBufferSubData_26630() { - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.ClearNamedBufferSubData(_buffer,_internalformat,_format,_type,_offset,_size,_data); -} -static unsafe void Test_ClearNamedBufferSubData_26631() { - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.ClearNamedBufferSubData(_buffer,_internalformat,_format,_type,_offset,_size,_data); -} -static unsafe void Test_ClearNamedBufferSubData_26632() { - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.ClearNamedBufferSubData(_buffer,_internalformat,_format,_type,_offset,_size,ref _data); -} -static unsafe void Test_ClearNamedBufferSubData_26633() { - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.ClearNamedBufferSubData(_buffer,_internalformat,_format,_type,_offset,_size,_data); -} -static unsafe void Test_ClearNamedBufferSubData_26634() { - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.ClearNamedBufferSubData(_buffer,_internalformat,_format,_type,_offset,_size,_data); -} -static unsafe void Test_ClearNamedBufferSubData_26635() { - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.ClearNamedBufferSubData(_buffer,_internalformat,_format,_type,_offset,_size,_data); -} -static unsafe void Test_ClearNamedBufferSubData_26636() { - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.ClearNamedBufferSubData(_buffer,_internalformat,_format,_type,_offset,_size,_data); -} -static unsafe void Test_ClearNamedBufferSubData_26637() { - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtDirectStateAccess _internalformat = default(OpenTK.Graphics.OpenGL.ExtDirectStateAccess); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int _data = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.ClearNamedBufferSubData(_buffer,_internalformat,_format,_type,_offset,_size,ref _data); -} -static unsafe void Test_ProgramParameter_26638() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtGeometryShader4 _pname = default(OpenTK.Graphics.OpenGL.ExtGeometryShader4); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramParameter(_program,_pname,_value); -} -static unsafe void Test_ProgramParameter_26639() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtGeometryShader4 _pname = default(OpenTK.Graphics.OpenGL.ExtGeometryShader4); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ext.ProgramParameter(_program,_pname,_value); -} -static unsafe void Test_GetQueryObjecti64_26640() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtTimerQuery _pname = default(OpenTK.Graphics.OpenGL.ExtTimerQuery); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetQueryObjecti64(_id,_pname,_params); -} -static unsafe void Test_GetQueryObjecti64_26641() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtTimerQuery _pname = default(OpenTK.Graphics.OpenGL.ExtTimerQuery); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.Ext.GetQueryObjecti64(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObjecti64_26642() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtTimerQuery _pname = default(OpenTK.Graphics.OpenGL.ExtTimerQuery); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.Ext.GetQueryObjecti64(_id,_pname,_params); -} -static unsafe void Test_GetQueryObjecti64_26643() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtTimerQuery _pname = default(OpenTK.Graphics.OpenGL.ExtTimerQuery); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetQueryObjecti64(_id,_pname,_params); -} -static unsafe void Test_GetQueryObjecti64_26644() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtTimerQuery _pname = default(OpenTK.Graphics.OpenGL.ExtTimerQuery); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.Ext.GetQueryObjecti64(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObjecti64_26645() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtTimerQuery _pname = default(OpenTK.Graphics.OpenGL.ExtTimerQuery); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.Ext.GetQueryObjecti64(_id,_pname,_params); -} -static unsafe void Test_GetQueryObjectui64_26646() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtTimerQuery _pname = default(OpenTK.Graphics.OpenGL.ExtTimerQuery); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetQueryObjectui64(_id,_pname,_params); -} -static unsafe void Test_GetQueryObjectui64_26647() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtTimerQuery _pname = default(OpenTK.Graphics.OpenGL.ExtTimerQuery); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.Ext.GetQueryObjectui64(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObjectui64_26648() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.ExtTimerQuery _pname = default(OpenTK.Graphics.OpenGL.ExtTimerQuery); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.Ext.GetQueryObjectui64(_id,_pname,_params); -} -static unsafe void Test_GetQueryObjectui64_26649() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtTimerQuery _pname = default(OpenTK.Graphics.OpenGL.ExtTimerQuery); - System.UInt64[] _params = default(System.UInt64[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetQueryObjectui64(_id,_pname,_params); -} -static unsafe void Test_GetQueryObjectui64_26650() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtTimerQuery _pname = default(OpenTK.Graphics.OpenGL.ExtTimerQuery); - System.UInt64 _params = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.Ext.GetQueryObjectui64(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObjectui64_26651() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.ExtTimerQuery _pname = default(OpenTK.Graphics.OpenGL.ExtTimerQuery); - System.UInt64* _params = default(System.UInt64*); - OpenTK.Graphics.OpenGL.GL.Ext.GetQueryObjectui64(_id,_pname,_params); -} -static unsafe void Test_GetSeparableFilter_26652() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _row = default(System.IntPtr); - System.IntPtr _column = default(System.IntPtr); - System.IntPtr _span = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.GetSeparableFilter(_target,_format,_type,_row,_column,_span); -} -static unsafe void Test_GetSeparableFilter_26653() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _row = default(int); - int _column = default(int); - int _span = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.GetSeparableFilter(_target,_format,_type,ref _row,ref _column,ref _span); -} -static unsafe void Test_GetSeparableFilter_26654() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _row = default(int[]); - int[] _column = default(int[]); - int[] _span = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetSeparableFilter(_target,_format,_type,_row,_column,_span); -} -static unsafe void Test_GetSeparableFilter_26655() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _row = default(int[,]); - int[,] _column = default(int[,]); - int[,] _span = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetSeparableFilter(_target,_format,_type,_row,_column,_span); -} -static unsafe void Test_GetSeparableFilter_26656() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _row = default(int[,,]); - int[,,] _column = default(int[,,]); - int[,,] _span = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetSeparableFilter(_target,_format,_type,_row,_column,_span); -} -static unsafe void Test_GetSeparableFilter_26657() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _row = default(System.IntPtr); - System.IntPtr _column = default(System.IntPtr); - int[] _span = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.GetSeparableFilter(_target,_format,_type,_row,_column,_span); -} -static unsafe void Test_GetSeparableFilter_26658() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _row = default(System.IntPtr); - System.IntPtr _column = default(System.IntPtr); - int[,] _span = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetSeparableFilter(_target,_format,_type,_row,_column,_span); -} -static unsafe void Test_GetSeparableFilter_26659() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _row = default(System.IntPtr); - System.IntPtr _column = default(System.IntPtr); - int[,,] _span = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetSeparableFilter(_target,_format,_type,_row,_column,_span); -} -static unsafe void Test_GetSeparableFilter_26660() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _row = default(System.IntPtr); - System.IntPtr _column = default(System.IntPtr); - int _span = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.GetSeparableFilter(_target,_format,_type,_row,_column,ref _span); -} -static unsafe void Test_GetSeparableFilter_26661() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _row = default(System.IntPtr); - int[] _column = default(int[]); - int[,,] _span = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetSeparableFilter(_target,_format,_type,_row,_column,_span); -} -static unsafe void Test_GetSeparableFilter_26662() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _row = default(System.IntPtr); - int[,] _column = default(int[,]); - int[,,] _span = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetSeparableFilter(_target,_format,_type,_row,_column,_span); -} -static unsafe void Test_GetSeparableFilter_26663() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _row = default(System.IntPtr); - int[,,] _column = default(int[,,]); - int[,,] _span = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetSeparableFilter(_target,_format,_type,_row,_column,_span); -} -static unsafe void Test_GetSeparableFilter_26664() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _row = default(System.IntPtr); - int _column = default(int); - int[,,] _span = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetSeparableFilter(_target,_format,_type,_row,ref _column,_span); -} -static unsafe void Test_GetSeparableFilter_26665() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _row = default(int[]); - int[,,] _column = default(int[,,]); - int[,,] _span = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetSeparableFilter(_target,_format,_type,_row,_column,_span); -} -static unsafe void Test_GetSeparableFilter_26666() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _row = default(int[,]); - int[,,] _column = default(int[,,]); - int[,,] _span = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetSeparableFilter(_target,_format,_type,_row,_column,_span); -} -static unsafe void Test_GetSeparableFilter_26667() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _row = default(int); - int[,,] _column = default(int[,,]); - int[,,] _span = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.GetSeparableFilter(_target,_format,_type,ref _row,_column,_span); -} -static unsafe void Test_SeparableFilter2D_26668() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _row = default(System.IntPtr); - System.IntPtr _column = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Ext.SeparableFilter2D(_target,_internalformat,_width,_height,_format,_type,_row,_column); -} -static unsafe void Test_SeparableFilter2D_26669() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _row = default(int); - int _column = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.SeparableFilter2D(_target,_internalformat,_width,_height,_format,_type,ref _row,ref _column); -} -static unsafe void Test_SeparableFilter2D_26670() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _row = default(int[]); - int[] _column = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.SeparableFilter2D(_target,_internalformat,_width,_height,_format,_type,_row,_column); -} -static unsafe void Test_SeparableFilter2D_26671() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _row = default(int[,]); - int[,] _column = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.SeparableFilter2D(_target,_internalformat,_width,_height,_format,_type,_row,_column); -} -static unsafe void Test_SeparableFilter2D_26672() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _row = default(int[,,]); - int[,,] _column = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.SeparableFilter2D(_target,_internalformat,_width,_height,_format,_type,_row,_column); -} -static unsafe void Test_SeparableFilter2D_26673() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _row = default(System.IntPtr); - int[] _column = default(int[]); - OpenTK.Graphics.OpenGL.GL.Ext.SeparableFilter2D(_target,_internalformat,_width,_height,_format,_type,_row,_column); -} -static unsafe void Test_SeparableFilter2D_26674() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _row = default(System.IntPtr); - int[,] _column = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Ext.SeparableFilter2D(_target,_internalformat,_width,_height,_format,_type,_row,_column); -} -static unsafe void Test_SeparableFilter2D_26675() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _row = default(System.IntPtr); - int[,,] _column = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.SeparableFilter2D(_target,_internalformat,_width,_height,_format,_type,_row,_column); -} -static unsafe void Test_SeparableFilter2D_26676() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _row = default(System.IntPtr); - int _column = default(int); - OpenTK.Graphics.OpenGL.GL.Ext.SeparableFilter2D(_target,_internalformat,_width,_height,_format,_type,_row,ref _column); -} -static unsafe void Test_SeparableFilter2D_26677() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _row = default(int[]); - int[,,] _column = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.SeparableFilter2D(_target,_internalformat,_width,_height,_format,_type,_row,_column); -} -static unsafe void Test_SeparableFilter2D_26678() { - OpenTK.Graphics.OpenGL.ExtConvolution _target = default(OpenTK.Graphics.OpenGL.ExtConvolution); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _row = default(int[,]); - int[,,] _column = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Ext.SeparableFilter2D(_target,_internalformat,_width,_height,_format,_type,_row,_column); -} -static unsafe void Test_FrameTerminator_26679() { - OpenTK.Graphics.OpenGL.GL.Gremedy.FrameTerminator(); -} -static unsafe void Test_StringMarker_26680() { - System.Int32 _len = default(System.Int32); - System.IntPtr _string = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Gremedy.StringMarker(_len,_string); -} -static unsafe void Test_StringMarker_26681() { - System.Int32 _len = default(System.Int32); - int[] _string = default(int[]); - OpenTK.Graphics.OpenGL.GL.Gremedy.StringMarker(_len,_string); -} -static unsafe void Test_StringMarker_26682() { - System.Int32 _len = default(System.Int32); - int[,] _string = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Gremedy.StringMarker(_len,_string); -} -static unsafe void Test_StringMarker_26683() { - System.Int32 _len = default(System.Int32); - int[,,] _string = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Gremedy.StringMarker(_len,_string); -} -static unsafe void Test_StringMarker_26684() { - System.Int32 _len = default(System.Int32); - int _string = default(int); - OpenTK.Graphics.OpenGL.GL.Gremedy.StringMarker(_len,ref _string); -} -static unsafe void Test_GetImageTransformParameter_26685() { - OpenTK.Graphics.OpenGL.HpImageTransform _target = default(OpenTK.Graphics.OpenGL.HpImageTransform); - OpenTK.Graphics.OpenGL.HpImageTransform _pname = default(OpenTK.Graphics.OpenGL.HpImageTransform); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.HP.GetImageTransformParameter(_target,_pname,_params); -} -static unsafe void Test_GetImageTransformParameter_26686() { - OpenTK.Graphics.OpenGL.HpImageTransform _target = default(OpenTK.Graphics.OpenGL.HpImageTransform); - OpenTK.Graphics.OpenGL.HpImageTransform _pname = default(OpenTK.Graphics.OpenGL.HpImageTransform); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.HP.GetImageTransformParameter(_target,_pname,out _params); -} -static unsafe void Test_GetImageTransformParameter_26687() { - OpenTK.Graphics.OpenGL.HpImageTransform _target = default(OpenTK.Graphics.OpenGL.HpImageTransform); - OpenTK.Graphics.OpenGL.HpImageTransform _pname = default(OpenTK.Graphics.OpenGL.HpImageTransform); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.HP.GetImageTransformParameter(_target,_pname,_params); -} -static unsafe void Test_GetImageTransformParameter_26688() { - OpenTK.Graphics.OpenGL.HpImageTransform _target = default(OpenTK.Graphics.OpenGL.HpImageTransform); - OpenTK.Graphics.OpenGL.HpImageTransform _pname = default(OpenTK.Graphics.OpenGL.HpImageTransform); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.HP.GetImageTransformParameter(_target,_pname,_params); -} -static unsafe void Test_GetImageTransformParameter_26689() { - OpenTK.Graphics.OpenGL.HpImageTransform _target = default(OpenTK.Graphics.OpenGL.HpImageTransform); - OpenTK.Graphics.OpenGL.HpImageTransform _pname = default(OpenTK.Graphics.OpenGL.HpImageTransform); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.HP.GetImageTransformParameter(_target,_pname,out _params); -} -static unsafe void Test_GetImageTransformParameter_26690() { - OpenTK.Graphics.OpenGL.HpImageTransform _target = default(OpenTK.Graphics.OpenGL.HpImageTransform); - OpenTK.Graphics.OpenGL.HpImageTransform _pname = default(OpenTK.Graphics.OpenGL.HpImageTransform); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.HP.GetImageTransformParameter(_target,_pname,_params); -} -static unsafe void Test_ImageTransformParameter_26691() { - OpenTK.Graphics.OpenGL.HpImageTransform _target = default(OpenTK.Graphics.OpenGL.HpImageTransform); - OpenTK.Graphics.OpenGL.HpImageTransform _pname = default(OpenTK.Graphics.OpenGL.HpImageTransform); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL.GL.HP.ImageTransformParameter(_target,_pname,_param); -} -static unsafe void Test_ImageTransformParameter_26692() { - OpenTK.Graphics.OpenGL.HpImageTransform _target = default(OpenTK.Graphics.OpenGL.HpImageTransform); - OpenTK.Graphics.OpenGL.HpImageTransform _pname = default(OpenTK.Graphics.OpenGL.HpImageTransform); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.HP.ImageTransformParameter(_target,_pname,_params); -} -static unsafe void Test_ImageTransformParameter_26693() { - OpenTK.Graphics.OpenGL.HpImageTransform _target = default(OpenTK.Graphics.OpenGL.HpImageTransform); - OpenTK.Graphics.OpenGL.HpImageTransform _pname = default(OpenTK.Graphics.OpenGL.HpImageTransform); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.HP.ImageTransformParameter(_target,_pname,_params); -} -static unsafe void Test_ImageTransformParameter_26694() { - OpenTK.Graphics.OpenGL.HpImageTransform _target = default(OpenTK.Graphics.OpenGL.HpImageTransform); - OpenTK.Graphics.OpenGL.HpImageTransform _pname = default(OpenTK.Graphics.OpenGL.HpImageTransform); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.HP.ImageTransformParameter(_target,_pname,_param); -} -static unsafe void Test_ImageTransformParameter_26695() { - OpenTK.Graphics.OpenGL.HpImageTransform _target = default(OpenTK.Graphics.OpenGL.HpImageTransform); - OpenTK.Graphics.OpenGL.HpImageTransform _pname = default(OpenTK.Graphics.OpenGL.HpImageTransform); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.HP.ImageTransformParameter(_target,_pname,_params); -} -static unsafe void Test_ImageTransformParameter_26696() { - OpenTK.Graphics.OpenGL.HpImageTransform _target = default(OpenTK.Graphics.OpenGL.HpImageTransform); - OpenTK.Graphics.OpenGL.HpImageTransform _pname = default(OpenTK.Graphics.OpenGL.HpImageTransform); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.HP.ImageTransformParameter(_target,_pname,_params); -} -static unsafe void Test_ColorPointerList_26697() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ColorPointerType _type = default(OpenTK.Graphics.OpenGL.ColorPointerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.ColorPointerList(_size,_type,_stride,_pointer,_ptrstride); -} -static unsafe void Test_ColorPointerList_26698() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ColorPointerType _type = default(OpenTK.Graphics.OpenGL.ColorPointerType); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.ColorPointerList(_size,_type,_stride,_pointer,_ptrstride); -} -static unsafe void Test_ColorPointerList_26699() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ColorPointerType _type = default(OpenTK.Graphics.OpenGL.ColorPointerType); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.ColorPointerList(_size,_type,_stride,_pointer,_ptrstride); -} -static unsafe void Test_ColorPointerList_26700() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ColorPointerType _type = default(OpenTK.Graphics.OpenGL.ColorPointerType); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.ColorPointerList(_size,_type,_stride,_pointer,_ptrstride); -} -static unsafe void Test_ColorPointerList_26701() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.ColorPointerType _type = default(OpenTK.Graphics.OpenGL.ColorPointerType); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.ColorPointerList(_size,_type,_stride,ref _pointer,_ptrstride); -} -static unsafe void Test_EdgeFlagPointerList_26702() { - System.Int32 _stride = default(System.Int32); - System.Boolean*[] _pointer = default(System.Boolean*[]); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.EdgeFlagPointerList(_stride,_pointer,_ptrstride); -} -static unsafe void Test_EdgeFlagPointerList_26703() { - System.Int32 _stride = default(System.Int32); - System.Boolean* _pointer = default(System.Boolean*); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.EdgeFlagPointerList(_stride,ref _pointer,_ptrstride); -} -static unsafe void Test_EdgeFlagPointerList_26704() { - System.Int32 _stride = default(System.Int32); - System.Boolean** _pointer = default(System.Boolean**); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.EdgeFlagPointerList(_stride,_pointer,_ptrstride); -} -static unsafe void Test_FlushStaticData_26705() { - OpenTK.Graphics.OpenGL.IbmStaticData _target = default(OpenTK.Graphics.OpenGL.IbmStaticData); - OpenTK.Graphics.OpenGL.GL.Ibm.FlushStaticData(_target); -} -static unsafe void Test_FogCoordPointerList_26706() { - OpenTK.Graphics.OpenGL.FogPointerType _type = default(OpenTK.Graphics.OpenGL.FogPointerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.FogCoordPointerList(_type,_stride,_pointer,_ptrstride); -} -static unsafe void Test_FogCoordPointerList_26707() { - OpenTK.Graphics.OpenGL.FogPointerType _type = default(OpenTK.Graphics.OpenGL.FogPointerType); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.FogCoordPointerList(_type,_stride,_pointer,_ptrstride); -} -static unsafe void Test_FogCoordPointerList_26708() { - OpenTK.Graphics.OpenGL.FogPointerType _type = default(OpenTK.Graphics.OpenGL.FogPointerType); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.FogCoordPointerList(_type,_stride,_pointer,_ptrstride); -} -static unsafe void Test_FogCoordPointerList_26709() { - OpenTK.Graphics.OpenGL.FogPointerType _type = default(OpenTK.Graphics.OpenGL.FogPointerType); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.FogCoordPointerList(_type,_stride,_pointer,_ptrstride); -} -static unsafe void Test_FogCoordPointerList_26710() { - OpenTK.Graphics.OpenGL.FogPointerType _type = default(OpenTK.Graphics.OpenGL.FogPointerType); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.FogCoordPointerList(_type,_stride,ref _pointer,_ptrstride); -} -static unsafe void Test_FogCoordPointerList_26711() { - OpenTK.Graphics.OpenGL.IbmVertexArrayLists _type = default(OpenTK.Graphics.OpenGL.IbmVertexArrayLists); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.FogCoordPointerList(_type,_stride,_pointer,_ptrstride); -} -static unsafe void Test_FogCoordPointerList_26712() { - OpenTK.Graphics.OpenGL.IbmVertexArrayLists _type = default(OpenTK.Graphics.OpenGL.IbmVertexArrayLists); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.FogCoordPointerList(_type,_stride,_pointer,_ptrstride); -} -static unsafe void Test_FogCoordPointerList_26713() { - OpenTK.Graphics.OpenGL.IbmVertexArrayLists _type = default(OpenTK.Graphics.OpenGL.IbmVertexArrayLists); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.FogCoordPointerList(_type,_stride,_pointer,_ptrstride); -} -static unsafe void Test_FogCoordPointerList_26714() { - OpenTK.Graphics.OpenGL.IbmVertexArrayLists _type = default(OpenTK.Graphics.OpenGL.IbmVertexArrayLists); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.FogCoordPointerList(_type,_stride,_pointer,_ptrstride); -} -static unsafe void Test_FogCoordPointerList_26715() { - OpenTK.Graphics.OpenGL.IbmVertexArrayLists _type = default(OpenTK.Graphics.OpenGL.IbmVertexArrayLists); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.FogCoordPointerList(_type,_stride,ref _pointer,_ptrstride); -} -static unsafe void Test_IndexPointerList_26716() { - OpenTK.Graphics.OpenGL.IndexPointerType _type = default(OpenTK.Graphics.OpenGL.IndexPointerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.IndexPointerList(_type,_stride,_pointer,_ptrstride); -} -static unsafe void Test_IndexPointerList_26717() { - OpenTK.Graphics.OpenGL.IndexPointerType _type = default(OpenTK.Graphics.OpenGL.IndexPointerType); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.IndexPointerList(_type,_stride,_pointer,_ptrstride); -} -static unsafe void Test_IndexPointerList_26718() { - OpenTK.Graphics.OpenGL.IndexPointerType _type = default(OpenTK.Graphics.OpenGL.IndexPointerType); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.IndexPointerList(_type,_stride,_pointer,_ptrstride); -} -static unsafe void Test_IndexPointerList_26719() { - OpenTK.Graphics.OpenGL.IndexPointerType _type = default(OpenTK.Graphics.OpenGL.IndexPointerType); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.IndexPointerList(_type,_stride,_pointer,_ptrstride); -} -static unsafe void Test_IndexPointerList_26720() { - OpenTK.Graphics.OpenGL.IndexPointerType _type = default(OpenTK.Graphics.OpenGL.IndexPointerType); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.IndexPointerList(_type,_stride,ref _pointer,_ptrstride); -} -static unsafe void Test_MultiModeDrawArrays_26721() { - OpenTK.Graphics.OpenGL.PrimitiveType[] _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType[]); - System.Int32[] _first = default(System.Int32[]); - System.Int32[] _count = default(System.Int32[]); - System.Int32 _primcount = default(System.Int32); - System.Int32 _modestride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.MultiModeDrawArrays(_mode,_first,_count,_primcount,_modestride); -} -static unsafe void Test_MultiModeDrawArrays_26722() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _primcount = default(System.Int32); - System.Int32 _modestride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.MultiModeDrawArrays(ref _mode,ref _first,ref _count,_primcount,_modestride); -} -static unsafe void Test_MultiModeDrawArrays_26723() { - OpenTK.Graphics.OpenGL.PrimitiveType* _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType*); - System.Int32* _first = default(System.Int32*); - System.Int32* _count = default(System.Int32*); - System.Int32 _primcount = default(System.Int32); - System.Int32 _modestride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.MultiModeDrawArrays(_mode,_first,_count,_primcount,_modestride); -} -static unsafe void Test_MultiModeDrawElements_26724() { - OpenTK.Graphics.OpenGL.PrimitiveType[] _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType[]); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - System.Int32 _modestride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.MultiModeDrawElements(_mode,_count,_type,_indices,_primcount,_modestride); -} -static unsafe void Test_MultiModeDrawElements_26725() { - OpenTK.Graphics.OpenGL.PrimitiveType[] _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType[]); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - System.Int32 _modestride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.MultiModeDrawElements(_mode,_count,_type,_indices,_primcount,_modestride); -} -static unsafe void Test_MultiModeDrawElements_26726() { - OpenTK.Graphics.OpenGL.PrimitiveType[] _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType[]); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - System.Int32 _modestride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.MultiModeDrawElements(_mode,_count,_type,_indices,_primcount,_modestride); -} -static unsafe void Test_MultiModeDrawElements_26727() { - OpenTK.Graphics.OpenGL.PrimitiveType[] _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType[]); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - System.Int32 _modestride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.MultiModeDrawElements(_mode,_count,_type,_indices,_primcount,_modestride); -} -static unsafe void Test_MultiModeDrawElements_26728() { - OpenTK.Graphics.OpenGL.PrimitiveType[] _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType[]); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - System.Int32 _modestride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.MultiModeDrawElements(_mode,_count,_type,ref _indices,_primcount,_modestride); -} -static unsafe void Test_MultiModeDrawElements_26729() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - System.Int32 _modestride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.MultiModeDrawElements(ref _mode,ref _count,_type,_indices,_primcount,_modestride); -} -static unsafe void Test_MultiModeDrawElements_26730() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - System.Int32 _modestride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.MultiModeDrawElements(ref _mode,ref _count,_type,_indices,_primcount,_modestride); -} -static unsafe void Test_MultiModeDrawElements_26731() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - System.Int32 _modestride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.MultiModeDrawElements(ref _mode,ref _count,_type,_indices,_primcount,_modestride); -} -static unsafe void Test_MultiModeDrawElements_26732() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - System.Int32 _modestride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.MultiModeDrawElements(ref _mode,ref _count,_type,_indices,_primcount,_modestride); -} -static unsafe void Test_MultiModeDrawElements_26733() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - System.Int32 _modestride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.MultiModeDrawElements(ref _mode,ref _count,_type,ref _indices,_primcount,_modestride); -} -static unsafe void Test_MultiModeDrawElements_26734() { - OpenTK.Graphics.OpenGL.PrimitiveType* _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType*); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - System.Int32 _modestride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.MultiModeDrawElements(_mode,_count,_type,_indices,_primcount,_modestride); -} -static unsafe void Test_MultiModeDrawElements_26735() { - OpenTK.Graphics.OpenGL.PrimitiveType* _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType*); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - System.Int32 _modestride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.MultiModeDrawElements(_mode,_count,_type,_indices,_primcount,_modestride); -} -static unsafe void Test_MultiModeDrawElements_26736() { - OpenTK.Graphics.OpenGL.PrimitiveType* _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType*); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - System.Int32 _modestride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.MultiModeDrawElements(_mode,_count,_type,_indices,_primcount,_modestride); -} -static unsafe void Test_MultiModeDrawElements_26737() { - OpenTK.Graphics.OpenGL.PrimitiveType* _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType*); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - System.Int32 _modestride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.MultiModeDrawElements(_mode,_count,_type,_indices,_primcount,_modestride); -} -static unsafe void Test_MultiModeDrawElements_26738() { - OpenTK.Graphics.OpenGL.PrimitiveType* _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType*); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - System.Int32 _modestride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.MultiModeDrawElements(_mode,_count,_type,ref _indices,_primcount,_modestride); -} -static unsafe void Test_NormalPointerList_26739() { - OpenTK.Graphics.OpenGL.NormalPointerType _type = default(OpenTK.Graphics.OpenGL.NormalPointerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.NormalPointerList(_type,_stride,_pointer,_ptrstride); -} -static unsafe void Test_NormalPointerList_26740() { - OpenTK.Graphics.OpenGL.NormalPointerType _type = default(OpenTK.Graphics.OpenGL.NormalPointerType); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.NormalPointerList(_type,_stride,_pointer,_ptrstride); -} -static unsafe void Test_NormalPointerList_26741() { - OpenTK.Graphics.OpenGL.NormalPointerType _type = default(OpenTK.Graphics.OpenGL.NormalPointerType); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.NormalPointerList(_type,_stride,_pointer,_ptrstride); -} -static unsafe void Test_NormalPointerList_26742() { - OpenTK.Graphics.OpenGL.NormalPointerType _type = default(OpenTK.Graphics.OpenGL.NormalPointerType); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.NormalPointerList(_type,_stride,_pointer,_ptrstride); -} -static unsafe void Test_NormalPointerList_26743() { - OpenTK.Graphics.OpenGL.NormalPointerType _type = default(OpenTK.Graphics.OpenGL.NormalPointerType); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.NormalPointerList(_type,_stride,ref _pointer,_ptrstride); -} -static unsafe void Test_SecondaryColorPointerList_26744() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.IbmVertexArrayLists _type = default(OpenTK.Graphics.OpenGL.IbmVertexArrayLists); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.SecondaryColorPointerList(_size,_type,_stride,_pointer,_ptrstride); -} -static unsafe void Test_SecondaryColorPointerList_26745() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.IbmVertexArrayLists _type = default(OpenTK.Graphics.OpenGL.IbmVertexArrayLists); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.SecondaryColorPointerList(_size,_type,_stride,_pointer,_ptrstride); -} -static unsafe void Test_SecondaryColorPointerList_26746() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.IbmVertexArrayLists _type = default(OpenTK.Graphics.OpenGL.IbmVertexArrayLists); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.SecondaryColorPointerList(_size,_type,_stride,_pointer,_ptrstride); -} -static unsafe void Test_SecondaryColorPointerList_26747() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.IbmVertexArrayLists _type = default(OpenTK.Graphics.OpenGL.IbmVertexArrayLists); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.SecondaryColorPointerList(_size,_type,_stride,_pointer,_ptrstride); -} -static unsafe void Test_SecondaryColorPointerList_26748() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.IbmVertexArrayLists _type = default(OpenTK.Graphics.OpenGL.IbmVertexArrayLists); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.SecondaryColorPointerList(_size,_type,_stride,ref _pointer,_ptrstride); -} -static unsafe void Test_TexCoordPointerList_26749() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.TexCoordPointerType _type = default(OpenTK.Graphics.OpenGL.TexCoordPointerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.TexCoordPointerList(_size,_type,_stride,_pointer,_ptrstride); -} -static unsafe void Test_TexCoordPointerList_26750() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.TexCoordPointerType _type = default(OpenTK.Graphics.OpenGL.TexCoordPointerType); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.TexCoordPointerList(_size,_type,_stride,_pointer,_ptrstride); -} -static unsafe void Test_TexCoordPointerList_26751() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.TexCoordPointerType _type = default(OpenTK.Graphics.OpenGL.TexCoordPointerType); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.TexCoordPointerList(_size,_type,_stride,_pointer,_ptrstride); -} -static unsafe void Test_TexCoordPointerList_26752() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.TexCoordPointerType _type = default(OpenTK.Graphics.OpenGL.TexCoordPointerType); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.TexCoordPointerList(_size,_type,_stride,_pointer,_ptrstride); -} -static unsafe void Test_TexCoordPointerList_26753() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.TexCoordPointerType _type = default(OpenTK.Graphics.OpenGL.TexCoordPointerType); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.TexCoordPointerList(_size,_type,_stride,ref _pointer,_ptrstride); -} -static unsafe void Test_VertexPointerList_26754() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexPointerType _type = default(OpenTK.Graphics.OpenGL.VertexPointerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.VertexPointerList(_size,_type,_stride,_pointer,_ptrstride); -} -static unsafe void Test_VertexPointerList_26755() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexPointerType _type = default(OpenTK.Graphics.OpenGL.VertexPointerType); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.VertexPointerList(_size,_type,_stride,_pointer,_ptrstride); -} -static unsafe void Test_VertexPointerList_26756() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexPointerType _type = default(OpenTK.Graphics.OpenGL.VertexPointerType); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.VertexPointerList(_size,_type,_stride,_pointer,_ptrstride); -} -static unsafe void Test_VertexPointerList_26757() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexPointerType _type = default(OpenTK.Graphics.OpenGL.VertexPointerType); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.VertexPointerList(_size,_type,_stride,_pointer,_ptrstride); -} -static unsafe void Test_VertexPointerList_26758() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexPointerType _type = default(OpenTK.Graphics.OpenGL.VertexPointerType); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - System.Int32 _ptrstride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.VertexPointerList(_size,_type,_stride,ref _pointer,_ptrstride); -} -static unsafe void Test_MultiModeDrawArrays_26759() { - OpenTK.Graphics.OpenGL.BeginMode[] _mode = default(OpenTK.Graphics.OpenGL.BeginMode[]); - System.Int32[] _first = default(System.Int32[]); - System.Int32[] _count = default(System.Int32[]); - System.Int32 _primcount = default(System.Int32); - System.Int32 _modestride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.MultiModeDrawArrays(_mode,_first,_count,_primcount,_modestride); -} -static unsafe void Test_MultiModeDrawArrays_26760() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _primcount = default(System.Int32); - System.Int32 _modestride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.MultiModeDrawArrays(ref _mode,ref _first,ref _count,_primcount,_modestride); -} -static unsafe void Test_MultiModeDrawArrays_26761() { - OpenTK.Graphics.OpenGL.BeginMode* _mode = default(OpenTK.Graphics.OpenGL.BeginMode*); - System.Int32* _first = default(System.Int32*); - System.Int32* _count = default(System.Int32*); - System.Int32 _primcount = default(System.Int32); - System.Int32 _modestride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.MultiModeDrawArrays(_mode,_first,_count,_primcount,_modestride); -} -static unsafe void Test_MultiModeDrawElements_26762() { - OpenTK.Graphics.OpenGL.BeginMode[] _mode = default(OpenTK.Graphics.OpenGL.BeginMode[]); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - System.Int32 _modestride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.MultiModeDrawElements(_mode,_count,_type,_indices,_primcount,_modestride); -} -static unsafe void Test_MultiModeDrawElements_26763() { - OpenTK.Graphics.OpenGL.BeginMode[] _mode = default(OpenTK.Graphics.OpenGL.BeginMode[]); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - System.Int32 _modestride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.MultiModeDrawElements(_mode,_count,_type,_indices,_primcount,_modestride); -} -static unsafe void Test_MultiModeDrawElements_26764() { - OpenTK.Graphics.OpenGL.BeginMode[] _mode = default(OpenTK.Graphics.OpenGL.BeginMode[]); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - System.Int32 _modestride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.MultiModeDrawElements(_mode,_count,_type,_indices,_primcount,_modestride); -} -static unsafe void Test_MultiModeDrawElements_26765() { - OpenTK.Graphics.OpenGL.BeginMode[] _mode = default(OpenTK.Graphics.OpenGL.BeginMode[]); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - System.Int32 _modestride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.MultiModeDrawElements(_mode,_count,_type,_indices,_primcount,_modestride); -} -static unsafe void Test_MultiModeDrawElements_26766() { - OpenTK.Graphics.OpenGL.BeginMode[] _mode = default(OpenTK.Graphics.OpenGL.BeginMode[]); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - System.Int32 _modestride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.MultiModeDrawElements(_mode,_count,_type,ref _indices,_primcount,_modestride); -} -static unsafe void Test_MultiModeDrawElements_26767() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - System.Int32 _modestride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.MultiModeDrawElements(ref _mode,ref _count,_type,_indices,_primcount,_modestride); -} -static unsafe void Test_MultiModeDrawElements_26768() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - System.Int32 _modestride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.MultiModeDrawElements(ref _mode,ref _count,_type,_indices,_primcount,_modestride); -} -static unsafe void Test_MultiModeDrawElements_26769() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - System.Int32 _modestride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.MultiModeDrawElements(ref _mode,ref _count,_type,_indices,_primcount,_modestride); -} -static unsafe void Test_MultiModeDrawElements_26770() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - System.Int32 _modestride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.MultiModeDrawElements(ref _mode,ref _count,_type,_indices,_primcount,_modestride); -} -static unsafe void Test_MultiModeDrawElements_26771() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - System.Int32 _modestride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.MultiModeDrawElements(ref _mode,ref _count,_type,ref _indices,_primcount,_modestride); -} -static unsafe void Test_MultiModeDrawElements_26772() { - OpenTK.Graphics.OpenGL.BeginMode* _mode = default(OpenTK.Graphics.OpenGL.BeginMode*); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - System.Int32 _modestride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.MultiModeDrawElements(_mode,_count,_type,_indices,_primcount,_modestride); -} -static unsafe void Test_MultiModeDrawElements_26773() { - OpenTK.Graphics.OpenGL.BeginMode* _mode = default(OpenTK.Graphics.OpenGL.BeginMode*); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - System.Int32 _modestride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.MultiModeDrawElements(_mode,_count,_type,_indices,_primcount,_modestride); -} -static unsafe void Test_MultiModeDrawElements_26774() { - OpenTK.Graphics.OpenGL.BeginMode* _mode = default(OpenTK.Graphics.OpenGL.BeginMode*); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - System.Int32 _modestride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.MultiModeDrawElements(_mode,_count,_type,_indices,_primcount,_modestride); -} -static unsafe void Test_MultiModeDrawElements_26775() { - OpenTK.Graphics.OpenGL.BeginMode* _mode = default(OpenTK.Graphics.OpenGL.BeginMode*); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - System.Int32 _modestride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.MultiModeDrawElements(_mode,_count,_type,_indices,_primcount,_modestride); -} -static unsafe void Test_MultiModeDrawElements_26776() { - OpenTK.Graphics.OpenGL.BeginMode* _mode = default(OpenTK.Graphics.OpenGL.BeginMode*); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL.DrawElementsType _type = default(OpenTK.Graphics.OpenGL.DrawElementsType); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - System.Int32 _modestride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Ibm.MultiModeDrawElements(_mode,_count,_type,ref _indices,_primcount,_modestride); -} -static unsafe void Test_BlendFuncSeparate_26777() { - OpenTK.Graphics.OpenGL.All _sfactorRGB = default(OpenTK.Graphics.OpenGL.All); - OpenTK.Graphics.OpenGL.All _dfactorRGB = default(OpenTK.Graphics.OpenGL.All); - OpenTK.Graphics.OpenGL.All _sfactorAlpha = default(OpenTK.Graphics.OpenGL.All); - OpenTK.Graphics.OpenGL.All _dfactorAlpha = default(OpenTK.Graphics.OpenGL.All); - OpenTK.Graphics.OpenGL.GL.Ingr.BlendFuncSeparate(_sfactorRGB,_dfactorRGB,_sfactorAlpha,_dfactorAlpha); -} -static unsafe void Test_BlendFuncSeparate_26778() { - OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate _sfactorRGB = default(OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate); - OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate _dfactorRGB = default(OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate); - OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate _sfactorAlpha = default(OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate); - OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate _dfactorAlpha = default(OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate); - OpenTK.Graphics.OpenGL.GL.Ingr.BlendFuncSeparate(_sfactorRGB,_dfactorRGB,_sfactorAlpha,_dfactorAlpha); -} -static unsafe void Test_BeginPerfQuery_26779() { - System.Int32 _queryHandle = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Intel.BeginPerfQuery(_queryHandle); -} -static unsafe void Test_BeginPerfQuery_26780() { - System.UInt32 _queryHandle = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Intel.BeginPerfQuery(_queryHandle); -} -static unsafe void Test_ColorPointer_26781() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexPointerType _type = default(OpenTK.Graphics.OpenGL.VertexPointerType); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Intel.ColorPointer(_size,_type,_pointer); -} -static unsafe void Test_ColorPointer_26782() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexPointerType _type = default(OpenTK.Graphics.OpenGL.VertexPointerType); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.Intel.ColorPointer(_size,_type,_pointer); -} -static unsafe void Test_ColorPointer_26783() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexPointerType _type = default(OpenTK.Graphics.OpenGL.VertexPointerType); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Intel.ColorPointer(_size,_type,_pointer); -} -static unsafe void Test_ColorPointer_26784() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexPointerType _type = default(OpenTK.Graphics.OpenGL.VertexPointerType); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Intel.ColorPointer(_size,_type,_pointer); -} -static unsafe void Test_ColorPointer_26785() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexPointerType _type = default(OpenTK.Graphics.OpenGL.VertexPointerType); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.Intel.ColorPointer(_size,_type,ref _pointer); -} -static unsafe void Test_CreatePerfQuery_26786() { - System.Int32 _queryId = default(System.Int32); - System.Int32[] _queryHandle = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Intel.CreatePerfQuery(_queryId,_queryHandle); -} -static unsafe void Test_CreatePerfQuery_26787() { - System.Int32 _queryId = default(System.Int32); - System.Int32 _queryHandle = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Intel.CreatePerfQuery(_queryId,out _queryHandle); -} -static unsafe void Test_CreatePerfQuery_26788() { - System.Int32 _queryId = default(System.Int32); - System.Int32* _queryHandle = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Intel.CreatePerfQuery(_queryId,_queryHandle); -} -static unsafe void Test_CreatePerfQuery_26789() { - System.UInt32 _queryId = default(System.UInt32); - System.UInt32[] _queryHandle = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Intel.CreatePerfQuery(_queryId,_queryHandle); -} -static unsafe void Test_CreatePerfQuery_26790() { - System.UInt32 _queryId = default(System.UInt32); - System.UInt32 _queryHandle = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Intel.CreatePerfQuery(_queryId,out _queryHandle); -} -static unsafe void Test_CreatePerfQuery_26791() { - System.UInt32 _queryId = default(System.UInt32); - System.UInt32* _queryHandle = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Intel.CreatePerfQuery(_queryId,_queryHandle); -} -static unsafe void Test_DeletePerfQuery_26792() { - System.Int32 _queryHandle = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Intel.DeletePerfQuery(_queryHandle); -} -static unsafe void Test_DeletePerfQuery_26793() { - System.UInt32 _queryHandle = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Intel.DeletePerfQuery(_queryHandle); -} -static unsafe void Test_EndPerfQuery_26794() { - System.Int32 _queryHandle = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Intel.EndPerfQuery(_queryHandle); -} -static unsafe void Test_EndPerfQuery_26795() { - System.UInt32 _queryHandle = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Intel.EndPerfQuery(_queryHandle); -} -static unsafe void Test_GetFirstPerfQueryI_26796() { - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Intel.GetFirstPerfQueryI(); -} -static unsafe void Test_GetFirstPerfQueryI_26797() { - System.Int32[] _queryId = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Intel.GetFirstPerfQueryI(_queryId); -} -static unsafe void Test_GetFirstPerfQueryI_26798() { - System.Int32 _queryId = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Intel.GetFirstPerfQueryI(out _queryId); -} -static unsafe void Test_GetFirstPerfQueryI_26799() { - System.Int32* _queryId = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Intel.GetFirstPerfQueryI(_queryId); -} -static unsafe void Test_GetFirstPerfQueryI_26800() { - System.UInt32[] _queryId = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Intel.GetFirstPerfQueryI(_queryId); -} -static unsafe void Test_GetFirstPerfQueryI_26801() { - System.UInt32 _queryId = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Intel.GetFirstPerfQueryI(out _queryId); -} -static unsafe void Test_GetFirstPerfQueryI_26802() { - System.UInt32* _queryId = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Intel.GetFirstPerfQueryI(_queryId); -} -static unsafe void Test_GetNextPerfQueryI_26803() { - System.Int32 _queryId = default(System.Int32); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Intel.GetNextPerfQueryI(_queryId); -} -static unsafe void Test_GetNextPerfQueryI_26804() { - System.UInt32 _queryId = default(System.UInt32); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Intel.GetNextPerfQueryI(_queryId); -} -static unsafe void Test_GetNextPerfQueryI_26805() { - System.Int32 _queryId = default(System.Int32); - System.Int32[] _nextQueryId = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Intel.GetNextPerfQueryI(_queryId,_nextQueryId); -} -static unsafe void Test_GetNextPerfQueryI_26806() { - System.Int32 _queryId = default(System.Int32); - System.Int32 _nextQueryId = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Intel.GetNextPerfQueryI(_queryId,out _nextQueryId); -} -static unsafe void Test_GetNextPerfQueryI_26807() { - System.Int32 _queryId = default(System.Int32); - System.Int32* _nextQueryId = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Intel.GetNextPerfQueryI(_queryId,_nextQueryId); -} -static unsafe void Test_GetNextPerfQueryI_26808() { - System.UInt32 _queryId = default(System.UInt32); - System.UInt32[] _nextQueryId = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Intel.GetNextPerfQueryI(_queryId,_nextQueryId); -} -static unsafe void Test_GetNextPerfQueryI_26809() { - System.UInt32 _queryId = default(System.UInt32); - System.UInt32 _nextQueryId = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Intel.GetNextPerfQueryI(_queryId,out _nextQueryId); -} -static unsafe void Test_GetNextPerfQueryI_26810() { - System.UInt32 _queryId = default(System.UInt32); - System.UInt32* _nextQueryId = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Intel.GetNextPerfQueryI(_queryId,_nextQueryId); -} -static unsafe void Test_GetPerfCounterInfo_26811() { - System.Int32 _queryId = default(System.Int32); - System.Int32 _counterId = default(System.Int32); - System.Int32 _counterNameLength = default(System.Int32); - System.Text.StringBuilder _counterName = default(System.Text.StringBuilder); - System.Int32 _counterDescLength = default(System.Int32); - System.Text.StringBuilder _counterDesc = default(System.Text.StringBuilder); - System.Int32[] _counterOffset = default(System.Int32[]); - System.Int32[] _counterDataSize = default(System.Int32[]); - System.Int32[] _counterTypeEnum = default(System.Int32[]); - System.Int32[] _counterDataTypeEnum = default(System.Int32[]); - System.Int64[] _rawCounterMaxValue = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfCounterInfo(_queryId,_counterId,_counterNameLength,_counterName,_counterDescLength,_counterDesc,_counterOffset,_counterDataSize,_counterTypeEnum,_counterDataTypeEnum,_rawCounterMaxValue); -} -static unsafe void Test_GetPerfCounterInfo_26812() { - System.Int32 _queryId = default(System.Int32); - System.Int32 _counterId = default(System.Int32); - System.Int32 _counterNameLength = default(System.Int32); - System.Text.StringBuilder _counterName = default(System.Text.StringBuilder); - System.Int32 _counterDescLength = default(System.Int32); - System.Text.StringBuilder _counterDesc = default(System.Text.StringBuilder); - System.Int32 _counterOffset = default(System.Int32); - System.Int32 _counterDataSize = default(System.Int32); - System.Int32 _counterTypeEnum = default(System.Int32); - System.Int32 _counterDataTypeEnum = default(System.Int32); - System.Int64 _rawCounterMaxValue = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfCounterInfo(_queryId,_counterId,_counterNameLength,_counterName,_counterDescLength,_counterDesc,out _counterOffset,out _counterDataSize,out _counterTypeEnum,out _counterDataTypeEnum,out _rawCounterMaxValue); -} -static unsafe void Test_GetPerfCounterInfo_26813() { - System.Int32 _queryId = default(System.Int32); - System.Int32 _counterId = default(System.Int32); - System.Int32 _counterNameLength = default(System.Int32); - System.Text.StringBuilder _counterName = default(System.Text.StringBuilder); - System.Int32 _counterDescLength = default(System.Int32); - System.Text.StringBuilder _counterDesc = default(System.Text.StringBuilder); - System.Int32* _counterOffset = default(System.Int32*); - System.Int32* _counterDataSize = default(System.Int32*); - System.Int32* _counterTypeEnum = default(System.Int32*); - System.Int32* _counterDataTypeEnum = default(System.Int32*); - System.Int64* _rawCounterMaxValue = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfCounterInfo(_queryId,_counterId,_counterNameLength,_counterName,_counterDescLength,_counterDesc,_counterOffset,_counterDataSize,_counterTypeEnum,_counterDataTypeEnum,_rawCounterMaxValue); -} -static unsafe void Test_GetPerfCounterInfo_26814() { - System.UInt32 _queryId = default(System.UInt32); - System.UInt32 _counterId = default(System.UInt32); - System.UInt32 _counterNameLength = default(System.UInt32); - System.Text.StringBuilder _counterName = default(System.Text.StringBuilder); - System.UInt32 _counterDescLength = default(System.UInt32); - System.Text.StringBuilder _counterDesc = default(System.Text.StringBuilder); - System.UInt32[] _counterOffset = default(System.UInt32[]); - System.UInt32[] _counterDataSize = default(System.UInt32[]); - System.UInt32[] _counterTypeEnum = default(System.UInt32[]); - System.UInt32[] _counterDataTypeEnum = default(System.UInt32[]); - System.UInt64[] _rawCounterMaxValue = default(System.UInt64[]); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfCounterInfo(_queryId,_counterId,_counterNameLength,_counterName,_counterDescLength,_counterDesc,_counterOffset,_counterDataSize,_counterTypeEnum,_counterDataTypeEnum,_rawCounterMaxValue); -} -static unsafe void Test_GetPerfCounterInfo_26815() { - System.UInt32 _queryId = default(System.UInt32); - System.UInt32 _counterId = default(System.UInt32); - System.UInt32 _counterNameLength = default(System.UInt32); - System.Text.StringBuilder _counterName = default(System.Text.StringBuilder); - System.UInt32 _counterDescLength = default(System.UInt32); - System.Text.StringBuilder _counterDesc = default(System.Text.StringBuilder); - System.UInt32 _counterOffset = default(System.UInt32); - System.UInt32 _counterDataSize = default(System.UInt32); - System.UInt32 _counterTypeEnum = default(System.UInt32); - System.UInt32 _counterDataTypeEnum = default(System.UInt32); - System.UInt64 _rawCounterMaxValue = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfCounterInfo(_queryId,_counterId,_counterNameLength,_counterName,_counterDescLength,_counterDesc,out _counterOffset,out _counterDataSize,out _counterTypeEnum,out _counterDataTypeEnum,out _rawCounterMaxValue); -} -static unsafe void Test_GetPerfCounterInfo_26816() { - System.UInt32 _queryId = default(System.UInt32); - System.UInt32 _counterId = default(System.UInt32); - System.UInt32 _counterNameLength = default(System.UInt32); - System.Text.StringBuilder _counterName = default(System.Text.StringBuilder); - System.UInt32 _counterDescLength = default(System.UInt32); - System.Text.StringBuilder _counterDesc = default(System.Text.StringBuilder); - System.UInt32* _counterOffset = default(System.UInt32*); - System.UInt32* _counterDataSize = default(System.UInt32*); - System.UInt32* _counterTypeEnum = default(System.UInt32*); - System.UInt32* _counterDataTypeEnum = default(System.UInt32*); - System.UInt64* _rawCounterMaxValue = default(System.UInt64*); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfCounterInfo(_queryId,_counterId,_counterNameLength,_counterName,_counterDescLength,_counterDesc,_counterOffset,_counterDataSize,_counterTypeEnum,_counterDataTypeEnum,_rawCounterMaxValue); -} -static unsafe void Test_GetPerfQueryData_26817() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - System.Int32[] _bytesWritten = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_26818() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - System.Int32 _bytesWritten = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,out _bytesWritten); -} -static unsafe void Test_GetPerfQueryData_26819() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - System.Int32* _bytesWritten = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_26820() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - int[] _data = default(int[]); - System.Int32[] _bytesWritten = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_26821() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - int[] _data = default(int[]); - System.Int32 _bytesWritten = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,out _bytesWritten); -} -static unsafe void Test_GetPerfQueryData_26822() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - int[] _data = default(int[]); - System.Int32* _bytesWritten = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_26823() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - int[,] _data = default(int[,]); - System.Int32[] _bytesWritten = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_26824() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - int[,] _data = default(int[,]); - System.Int32 _bytesWritten = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,out _bytesWritten); -} -static unsafe void Test_GetPerfQueryData_26825() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - int[,] _data = default(int[,]); - System.Int32* _bytesWritten = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_26826() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - int[,,] _data = default(int[,,]); - System.Int32[] _bytesWritten = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_26827() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - int[,,] _data = default(int[,,]); - System.Int32 _bytesWritten = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,out _bytesWritten); -} -static unsafe void Test_GetPerfQueryData_26828() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - int[,,] _data = default(int[,,]); - System.Int32* _bytesWritten = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_26829() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - int _data = default(int); - System.Int32[] _bytesWritten = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,ref _data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_26830() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - int _data = default(int); - System.Int32 _bytesWritten = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,ref _data,out _bytesWritten); -} -static unsafe void Test_GetPerfQueryData_26831() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - int _data = default(int); - System.Int32* _bytesWritten = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,ref _data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_26832() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - System.UInt32[] _bytesWritten = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_26833() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - System.UInt32 _bytesWritten = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,out _bytesWritten); -} -static unsafe void Test_GetPerfQueryData_26834() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - System.UInt32* _bytesWritten = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_26835() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - int[] _data = default(int[]); - System.UInt32[] _bytesWritten = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_26836() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - int[] _data = default(int[]); - System.UInt32 _bytesWritten = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,out _bytesWritten); -} -static unsafe void Test_GetPerfQueryData_26837() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - int[] _data = default(int[]); - System.UInt32* _bytesWritten = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_26838() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - int[,] _data = default(int[,]); - System.UInt32[] _bytesWritten = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_26839() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - int[,] _data = default(int[,]); - System.UInt32 _bytesWritten = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,out _bytesWritten); -} -static unsafe void Test_GetPerfQueryData_26840() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - int[,] _data = default(int[,]); - System.UInt32* _bytesWritten = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_26841() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - int[,,] _data = default(int[,,]); - System.UInt32[] _bytesWritten = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_26842() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - int[,,] _data = default(int[,,]); - System.UInt32 _bytesWritten = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,out _bytesWritten); -} -static unsafe void Test_GetPerfQueryData_26843() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - int[,,] _data = default(int[,,]); - System.UInt32* _bytesWritten = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_26844() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - int _data = default(int); - System.UInt32[] _bytesWritten = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,ref _data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_26845() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - int _data = default(int); - System.UInt32 _bytesWritten = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,ref _data,out _bytesWritten); -} -static unsafe void Test_GetPerfQueryData_26846() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - int _data = default(int); - System.UInt32* _bytesWritten = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,ref _data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryIdByName_26847() { - System.Text.StringBuilder _queryName = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryIdByName(_queryName); -} -static unsafe void Test_GetPerfQueryIdByName_26848() { - System.Text.StringBuilder _queryName = default(System.Text.StringBuilder); - System.Int32[] _queryId = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryIdByName(_queryName,_queryId); -} -static unsafe void Test_GetPerfQueryIdByName_26849() { - System.Text.StringBuilder _queryName = default(System.Text.StringBuilder); - System.Int32 _queryId = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryIdByName(_queryName,out _queryId); -} -static unsafe void Test_GetPerfQueryIdByName_26850() { - System.Text.StringBuilder _queryName = default(System.Text.StringBuilder); - System.Int32* _queryId = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryIdByName(_queryName,_queryId); -} -static unsafe void Test_GetPerfQueryIdByName_26851() { - System.Text.StringBuilder _queryName = default(System.Text.StringBuilder); - System.UInt32[] _queryId = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryIdByName(_queryName,_queryId); -} -static unsafe void Test_GetPerfQueryIdByName_26852() { - System.Text.StringBuilder _queryName = default(System.Text.StringBuilder); - System.UInt32 _queryId = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryIdByName(_queryName,out _queryId); -} -static unsafe void Test_GetPerfQueryIdByName_26853() { - System.Text.StringBuilder _queryName = default(System.Text.StringBuilder); - System.UInt32* _queryId = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryIdByName(_queryName,_queryId); -} -static unsafe void Test_GetPerfQueryInfo_26854() { - System.Int32 _queryId = default(System.Int32); - System.Int32 _queryNameLength = default(System.Int32); - System.Text.StringBuilder _queryName = default(System.Text.StringBuilder); - System.Int32[] _dataSize = default(System.Int32[]); - System.Int32[] _noCounters = default(System.Int32[]); - System.Int32[] _noInstances = default(System.Int32[]); - System.Int32[] _capsMask = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryInfo(_queryId,_queryNameLength,_queryName,_dataSize,_noCounters,_noInstances,_capsMask); -} -static unsafe void Test_GetPerfQueryInfo_26855() { - System.Int32 _queryId = default(System.Int32); - System.Int32 _queryNameLength = default(System.Int32); - System.Text.StringBuilder _queryName = default(System.Text.StringBuilder); - System.Int32 _dataSize = default(System.Int32); - System.Int32 _noCounters = default(System.Int32); - System.Int32 _noInstances = default(System.Int32); - System.Int32 _capsMask = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryInfo(_queryId,_queryNameLength,_queryName,out _dataSize,out _noCounters,out _noInstances,out _capsMask); -} -static unsafe void Test_GetPerfQueryInfo_26856() { - System.Int32 _queryId = default(System.Int32); - System.Int32 _queryNameLength = default(System.Int32); - System.Text.StringBuilder _queryName = default(System.Text.StringBuilder); - System.Int32* _dataSize = default(System.Int32*); - System.Int32* _noCounters = default(System.Int32*); - System.Int32* _noInstances = default(System.Int32*); - System.Int32* _capsMask = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryInfo(_queryId,_queryNameLength,_queryName,_dataSize,_noCounters,_noInstances,_capsMask); -} -static unsafe void Test_GetPerfQueryInfo_26857() { - System.UInt32 _queryId = default(System.UInt32); - System.UInt32 _queryNameLength = default(System.UInt32); - System.Text.StringBuilder _queryName = default(System.Text.StringBuilder); - System.UInt32[] _dataSize = default(System.UInt32[]); - System.UInt32[] _noCounters = default(System.UInt32[]); - System.UInt32[] _noInstances = default(System.UInt32[]); - System.UInt32[] _capsMask = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryInfo(_queryId,_queryNameLength,_queryName,_dataSize,_noCounters,_noInstances,_capsMask); -} -static unsafe void Test_GetPerfQueryInfo_26858() { - System.UInt32 _queryId = default(System.UInt32); - System.UInt32 _queryNameLength = default(System.UInt32); - System.Text.StringBuilder _queryName = default(System.Text.StringBuilder); - System.UInt32 _dataSize = default(System.UInt32); - System.UInt32 _noCounters = default(System.UInt32); - System.UInt32 _noInstances = default(System.UInt32); - System.UInt32 _capsMask = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryInfo(_queryId,_queryNameLength,_queryName,out _dataSize,out _noCounters,out _noInstances,out _capsMask); -} -static unsafe void Test_GetPerfQueryInfo_26859() { - System.UInt32 _queryId = default(System.UInt32); - System.UInt32 _queryNameLength = default(System.UInt32); - System.Text.StringBuilder _queryName = default(System.Text.StringBuilder); - System.UInt32* _dataSize = default(System.UInt32*); - System.UInt32* _noCounters = default(System.UInt32*); - System.UInt32* _noInstances = default(System.UInt32*); - System.UInt32* _capsMask = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Intel.GetPerfQueryInfo(_queryId,_queryNameLength,_queryName,_dataSize,_noCounters,_noInstances,_capsMask); -} -static unsafe void Test_MapTexture2D_26860() { - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - System.Int32 _access = default(System.Int32); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.IntelMapTexture _layout = default(OpenTK.Graphics.OpenGL.IntelMapTexture); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.Intel.MapTexture2D(_texture,_level,_access,out _stride,out _layout); -} -static unsafe void Test_MapTexture2D_26861() { - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - System.Int32 _access = default(System.Int32); - System.Int32* _stride = default(System.Int32*); - OpenTK.Graphics.OpenGL.IntelMapTexture* _layout = default(OpenTK.Graphics.OpenGL.IntelMapTexture*); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.Intel.MapTexture2D(_texture,_level,_access,_stride,_layout); -} -static unsafe void Test_MapTexture2D_26862() { - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - System.UInt32 _access = default(System.UInt32); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.IntelMapTexture _layout = default(OpenTK.Graphics.OpenGL.IntelMapTexture); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.Intel.MapTexture2D(_texture,_level,_access,out _stride,out _layout); -} -static unsafe void Test_MapTexture2D_26863() { - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - System.UInt32 _access = default(System.UInt32); - System.Int32* _stride = default(System.Int32*); - OpenTK.Graphics.OpenGL.IntelMapTexture* _layout = default(OpenTK.Graphics.OpenGL.IntelMapTexture*); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.Intel.MapTexture2D(_texture,_level,_access,_stride,_layout); -} -static unsafe void Test_NormalPointer_26864() { - OpenTK.Graphics.OpenGL.NormalPointerType _type = default(OpenTK.Graphics.OpenGL.NormalPointerType); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Intel.NormalPointer(_type,_pointer); -} -static unsafe void Test_NormalPointer_26865() { - OpenTK.Graphics.OpenGL.NormalPointerType _type = default(OpenTK.Graphics.OpenGL.NormalPointerType); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.Intel.NormalPointer(_type,_pointer); -} -static unsafe void Test_NormalPointer_26866() { - OpenTK.Graphics.OpenGL.NormalPointerType _type = default(OpenTK.Graphics.OpenGL.NormalPointerType); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Intel.NormalPointer(_type,_pointer); -} -static unsafe void Test_NormalPointer_26867() { - OpenTK.Graphics.OpenGL.NormalPointerType _type = default(OpenTK.Graphics.OpenGL.NormalPointerType); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Intel.NormalPointer(_type,_pointer); -} -static unsafe void Test_NormalPointer_26868() { - OpenTK.Graphics.OpenGL.NormalPointerType _type = default(OpenTK.Graphics.OpenGL.NormalPointerType); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.Intel.NormalPointer(_type,ref _pointer); -} -static unsafe void Test_SyncTexture_26869() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Intel.SyncTexture(_texture); -} -static unsafe void Test_SyncTexture_26870() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Intel.SyncTexture(_texture); -} -static unsafe void Test_TexCoordPointer_26871() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexPointerType _type = default(OpenTK.Graphics.OpenGL.VertexPointerType); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Intel.TexCoordPointer(_size,_type,_pointer); -} -static unsafe void Test_TexCoordPointer_26872() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexPointerType _type = default(OpenTK.Graphics.OpenGL.VertexPointerType); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.Intel.TexCoordPointer(_size,_type,_pointer); -} -static unsafe void Test_TexCoordPointer_26873() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexPointerType _type = default(OpenTK.Graphics.OpenGL.VertexPointerType); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Intel.TexCoordPointer(_size,_type,_pointer); -} -static unsafe void Test_TexCoordPointer_26874() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexPointerType _type = default(OpenTK.Graphics.OpenGL.VertexPointerType); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Intel.TexCoordPointer(_size,_type,_pointer); -} -static unsafe void Test_TexCoordPointer_26875() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexPointerType _type = default(OpenTK.Graphics.OpenGL.VertexPointerType); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.Intel.TexCoordPointer(_size,_type,ref _pointer); -} -static unsafe void Test_UnmapTexture2D_26876() { - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Intel.UnmapTexture2D(_texture,_level); -} -static unsafe void Test_UnmapTexture2D_26877() { - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Intel.UnmapTexture2D(_texture,_level); -} -static unsafe void Test_VertexPointer_26878() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexPointerType _type = default(OpenTK.Graphics.OpenGL.VertexPointerType); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Intel.VertexPointer(_size,_type,_pointer); -} -static unsafe void Test_VertexPointer_26879() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexPointerType _type = default(OpenTK.Graphics.OpenGL.VertexPointerType); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.Intel.VertexPointer(_size,_type,_pointer); -} -static unsafe void Test_VertexPointer_26880() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexPointerType _type = default(OpenTK.Graphics.OpenGL.VertexPointerType); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Intel.VertexPointer(_size,_type,_pointer); -} -static unsafe void Test_VertexPointer_26881() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexPointerType _type = default(OpenTK.Graphics.OpenGL.VertexPointerType); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Intel.VertexPointer(_size,_type,_pointer); -} -static unsafe void Test_VertexPointer_26882() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexPointerType _type = default(OpenTK.Graphics.OpenGL.VertexPointerType); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.Intel.VertexPointer(_size,_type,ref _pointer); -} -static unsafe void Test_DebugMessageCallback_26883() { - OpenTK.Graphics.OpenGL.DebugProcKhr _callback = default(OpenTK.Graphics.OpenGL.DebugProcKhr); - System.IntPtr _userParam = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Khr.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_26884() { - OpenTK.Graphics.OpenGL.DebugProcKhr _callback = default(OpenTK.Graphics.OpenGL.DebugProcKhr); - int[] _userParam = default(int[]); - OpenTK.Graphics.OpenGL.GL.Khr.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_26885() { - OpenTK.Graphics.OpenGL.DebugProcKhr _callback = default(OpenTK.Graphics.OpenGL.DebugProcKhr); - int[,] _userParam = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Khr.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_26886() { - OpenTK.Graphics.OpenGL.DebugProcKhr _callback = default(OpenTK.Graphics.OpenGL.DebugProcKhr); - int[,,] _userParam = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Khr.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_26887() { - OpenTK.Graphics.OpenGL.DebugProcKhr _callback = default(OpenTK.Graphics.OpenGL.DebugProcKhr); - int _userParam = default(int); - OpenTK.Graphics.OpenGL.GL.Khr.DebugMessageCallback(_callback,ref _userParam); -} -static unsafe void Test_DebugMessageControl_26888() { - OpenTK.Graphics.OpenGL.KhrDebug _source = default(OpenTK.Graphics.OpenGL.KhrDebug); - OpenTK.Graphics.OpenGL.KhrDebug _type = default(OpenTK.Graphics.OpenGL.KhrDebug); - OpenTK.Graphics.OpenGL.KhrDebug _severity = default(OpenTK.Graphics.OpenGL.KhrDebug); - System.Int32 _count = default(System.Int32); - System.Int32[] _ids = default(System.Int32[]); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Khr.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_26889() { - OpenTK.Graphics.OpenGL.KhrDebug _source = default(OpenTK.Graphics.OpenGL.KhrDebug); - OpenTK.Graphics.OpenGL.KhrDebug _type = default(OpenTK.Graphics.OpenGL.KhrDebug); - OpenTK.Graphics.OpenGL.KhrDebug _severity = default(OpenTK.Graphics.OpenGL.KhrDebug); - System.Int32 _count = default(System.Int32); - System.Int32 _ids = default(System.Int32); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Khr.DebugMessageControl(_source,_type,_severity,_count,ref _ids,_enabled); -} -static unsafe void Test_DebugMessageControl_26890() { - OpenTK.Graphics.OpenGL.KhrDebug _source = default(OpenTK.Graphics.OpenGL.KhrDebug); - OpenTK.Graphics.OpenGL.KhrDebug _type = default(OpenTK.Graphics.OpenGL.KhrDebug); - OpenTK.Graphics.OpenGL.KhrDebug _severity = default(OpenTK.Graphics.OpenGL.KhrDebug); - System.Int32 _count = default(System.Int32); - System.Int32* _ids = default(System.Int32*); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Khr.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_26891() { - OpenTK.Graphics.OpenGL.KhrDebug _source = default(OpenTK.Graphics.OpenGL.KhrDebug); - OpenTK.Graphics.OpenGL.KhrDebug _type = default(OpenTK.Graphics.OpenGL.KhrDebug); - OpenTK.Graphics.OpenGL.KhrDebug _severity = default(OpenTK.Graphics.OpenGL.KhrDebug); - System.Int32 _count = default(System.Int32); - System.UInt32[] _ids = default(System.UInt32[]); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Khr.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_26892() { - OpenTK.Graphics.OpenGL.KhrDebug _source = default(OpenTK.Graphics.OpenGL.KhrDebug); - OpenTK.Graphics.OpenGL.KhrDebug _type = default(OpenTK.Graphics.OpenGL.KhrDebug); - OpenTK.Graphics.OpenGL.KhrDebug _severity = default(OpenTK.Graphics.OpenGL.KhrDebug); - System.Int32 _count = default(System.Int32); - System.UInt32 _ids = default(System.UInt32); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Khr.DebugMessageControl(_source,_type,_severity,_count,ref _ids,_enabled); -} -static unsafe void Test_DebugMessageControl_26893() { - OpenTK.Graphics.OpenGL.KhrDebug _source = default(OpenTK.Graphics.OpenGL.KhrDebug); - OpenTK.Graphics.OpenGL.KhrDebug _type = default(OpenTK.Graphics.OpenGL.KhrDebug); - OpenTK.Graphics.OpenGL.KhrDebug _severity = default(OpenTK.Graphics.OpenGL.KhrDebug); - System.Int32 _count = default(System.Int32); - System.UInt32* _ids = default(System.UInt32*); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Khr.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageInsert_26894() { - OpenTK.Graphics.OpenGL.KhrDebug _source = default(OpenTK.Graphics.OpenGL.KhrDebug); - OpenTK.Graphics.OpenGL.KhrDebug _type = default(OpenTK.Graphics.OpenGL.KhrDebug); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.KhrDebug _severity = default(OpenTK.Graphics.OpenGL.KhrDebug); - System.Int32 _length = default(System.Int32); - System.String _buf = default(System.String); - OpenTK.Graphics.OpenGL.GL.Khr.DebugMessageInsert(_source,_type,_id,_severity,_length,_buf); -} -static unsafe void Test_DebugMessageInsert_26895() { - OpenTK.Graphics.OpenGL.KhrDebug _source = default(OpenTK.Graphics.OpenGL.KhrDebug); - OpenTK.Graphics.OpenGL.KhrDebug _type = default(OpenTK.Graphics.OpenGL.KhrDebug); - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.KhrDebug _severity = default(OpenTK.Graphics.OpenGL.KhrDebug); - System.Int32 _length = default(System.Int32); - System.String _buf = default(System.String); - OpenTK.Graphics.OpenGL.GL.Khr.DebugMessageInsert(_source,_type,_id,_severity,_length,_buf); -} -static unsafe void Test_GetDebugMessageLog_26896() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.OpenGL.KhrDebug[] _sources = default(OpenTK.Graphics.OpenGL.KhrDebug[]); - OpenTK.Graphics.OpenGL.KhrDebug[] _types = default(OpenTK.Graphics.OpenGL.KhrDebug[]); - System.Int32[] _ids = default(System.Int32[]); - OpenTK.Graphics.OpenGL.KhrDebug[] _severities = default(OpenTK.Graphics.OpenGL.KhrDebug[]); - System.Int32[] _lengths = default(System.Int32[]); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Khr.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_26897() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.OpenGL.KhrDebug _sources = default(OpenTK.Graphics.OpenGL.KhrDebug); - OpenTK.Graphics.OpenGL.KhrDebug _types = default(OpenTK.Graphics.OpenGL.KhrDebug); - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.OpenGL.KhrDebug _severities = default(OpenTK.Graphics.OpenGL.KhrDebug); - System.Int32 _lengths = default(System.Int32); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Khr.GetDebugMessageLog(_count,_bufSize,out _sources,out _types,out _ids,out _severities,out _lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_26898() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.OpenGL.KhrDebug* _sources = default(OpenTK.Graphics.OpenGL.KhrDebug*); - OpenTK.Graphics.OpenGL.KhrDebug* _types = default(OpenTK.Graphics.OpenGL.KhrDebug*); - System.Int32* _ids = default(System.Int32*); - OpenTK.Graphics.OpenGL.KhrDebug* _severities = default(OpenTK.Graphics.OpenGL.KhrDebug*); - System.Int32* _lengths = default(System.Int32*); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Khr.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_26899() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.OpenGL.KhrDebug[] _sources = default(OpenTK.Graphics.OpenGL.KhrDebug[]); - OpenTK.Graphics.OpenGL.KhrDebug[] _types = default(OpenTK.Graphics.OpenGL.KhrDebug[]); - System.UInt32[] _ids = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.KhrDebug[] _severities = default(OpenTK.Graphics.OpenGL.KhrDebug[]); - System.Int32[] _lengths = default(System.Int32[]); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Khr.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_26900() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.OpenGL.KhrDebug _sources = default(OpenTK.Graphics.OpenGL.KhrDebug); - OpenTK.Graphics.OpenGL.KhrDebug _types = default(OpenTK.Graphics.OpenGL.KhrDebug); - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.OpenGL.KhrDebug _severities = default(OpenTK.Graphics.OpenGL.KhrDebug); - System.Int32 _lengths = default(System.Int32); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Khr.GetDebugMessageLog(_count,_bufSize,out _sources,out _types,out _ids,out _severities,out _lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_26901() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.OpenGL.KhrDebug* _sources = default(OpenTK.Graphics.OpenGL.KhrDebug*); - OpenTK.Graphics.OpenGL.KhrDebug* _types = default(OpenTK.Graphics.OpenGL.KhrDebug*); - System.UInt32* _ids = default(System.UInt32*); - OpenTK.Graphics.OpenGL.KhrDebug* _severities = default(OpenTK.Graphics.OpenGL.KhrDebug*); - System.Int32* _lengths = default(System.Int32*); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Khr.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetObjectLabel_26902() { - OpenTK.Graphics.OpenGL.KhrDebug _identifier = default(OpenTK.Graphics.OpenGL.KhrDebug); - System.Int32 _name = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Khr.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_26903() { - OpenTK.Graphics.OpenGL.KhrDebug _identifier = default(OpenTK.Graphics.OpenGL.KhrDebug); - System.Int32 _name = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Khr.GetObjectLabel(_identifier,_name,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectLabel_26904() { - OpenTK.Graphics.OpenGL.KhrDebug _identifier = default(OpenTK.Graphics.OpenGL.KhrDebug); - System.Int32 _name = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Khr.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_26905() { - OpenTK.Graphics.OpenGL.KhrDebug _identifier = default(OpenTK.Graphics.OpenGL.KhrDebug); - System.UInt32 _name = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Khr.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_26906() { - OpenTK.Graphics.OpenGL.KhrDebug _identifier = default(OpenTK.Graphics.OpenGL.KhrDebug); - System.UInt32 _name = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Khr.GetObjectLabel(_identifier,_name,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectLabel_26907() { - OpenTK.Graphics.OpenGL.KhrDebug _identifier = default(OpenTK.Graphics.OpenGL.KhrDebug); - System.UInt32 _name = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Khr.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_26908() { - System.IntPtr _ptr = default(System.IntPtr); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_26909() { - System.IntPtr _ptr = default(System.IntPtr); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectPtrLabel_26910() { - System.IntPtr _ptr = default(System.IntPtr); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_26911() { - int[] _ptr = default(int[]); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_26912() { - int[] _ptr = default(int[]); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectPtrLabel_26913() { - int[] _ptr = default(int[]); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_26914() { - int[,] _ptr = default(int[,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_26915() { - int[,] _ptr = default(int[,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectPtrLabel_26916() { - int[,] _ptr = default(int[,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_26917() { - int[,,] _ptr = default(int[,,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_26918() { - int[,,] _ptr = default(int[,,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectPtrLabel_26919() { - int[,,] _ptr = default(int[,,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_26920() { - int _ptr = default(int); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Khr.GetObjectPtrLabel(ref _ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_26921() { - int _ptr = default(int); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Khr.GetObjectPtrLabel(ref _ptr,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectPtrLabel_26922() { - int _ptr = default(int); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.Khr.GetObjectPtrLabel(ref _ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetPointer_26923() { - OpenTK.Graphics.OpenGL.KhrDebug _pname = default(OpenTK.Graphics.OpenGL.KhrDebug); - System.IntPtr _params = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Khr.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_26924() { - OpenTK.Graphics.OpenGL.KhrDebug _pname = default(OpenTK.Graphics.OpenGL.KhrDebug); - int[] _params = default(int[]); - OpenTK.Graphics.OpenGL.GL.Khr.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_26925() { - OpenTK.Graphics.OpenGL.KhrDebug _pname = default(OpenTK.Graphics.OpenGL.KhrDebug); - int[,] _params = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Khr.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_26926() { - OpenTK.Graphics.OpenGL.KhrDebug _pname = default(OpenTK.Graphics.OpenGL.KhrDebug); - int[,,] _params = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Khr.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_26927() { - OpenTK.Graphics.OpenGL.KhrDebug _pname = default(OpenTK.Graphics.OpenGL.KhrDebug); - int _params = default(int); - OpenTK.Graphics.OpenGL.GL.Khr.GetPointer(_pname,ref _params); -} -static unsafe void Test_ObjectLabel_26928() { - OpenTK.Graphics.OpenGL.KhrDebug _identifier = default(OpenTK.Graphics.OpenGL.KhrDebug); - System.Int32 _name = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.OpenGL.GL.Khr.ObjectLabel(_identifier,_name,_length,_label); -} -static unsafe void Test_ObjectLabel_26929() { - OpenTK.Graphics.OpenGL.KhrDebug _identifier = default(OpenTK.Graphics.OpenGL.KhrDebug); - System.UInt32 _name = default(System.UInt32); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.OpenGL.GL.Khr.ObjectLabel(_identifier,_name,_length,_label); -} -static unsafe void Test_ObjectPtrLabel_26930() { - System.IntPtr _ptr = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.OpenGL.GL.Khr.ObjectPtrLabel(_ptr,_length,_label); -} -static unsafe void Test_ObjectPtrLabel_26931() { - int[] _ptr = default(int[]); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.OpenGL.GL.Khr.ObjectPtrLabel(_ptr,_length,_label); -} -static unsafe void Test_ObjectPtrLabel_26932() { - int[,] _ptr = default(int[,]); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.OpenGL.GL.Khr.ObjectPtrLabel(_ptr,_length,_label); -} -static unsafe void Test_ObjectPtrLabel_26933() { - int[,,] _ptr = default(int[,,]); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.OpenGL.GL.Khr.ObjectPtrLabel(_ptr,_length,_label); -} -static unsafe void Test_ObjectPtrLabel_26934() { - int _ptr = default(int); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.OpenGL.GL.Khr.ObjectPtrLabel(ref _ptr,_length,_label); -} -static unsafe void Test_PopDebugGroup_26935() { - OpenTK.Graphics.OpenGL.GL.Khr.PopDebugGroup(); -} -static unsafe void Test_PushDebugGroup_26936() { - OpenTK.Graphics.OpenGL.KhrDebug _source = default(OpenTK.Graphics.OpenGL.KhrDebug); - System.Int32 _id = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.String _message = default(System.String); - OpenTK.Graphics.OpenGL.GL.Khr.PushDebugGroup(_source,_id,_length,_message); -} -static unsafe void Test_PushDebugGroup_26937() { - OpenTK.Graphics.OpenGL.KhrDebug _source = default(OpenTK.Graphics.OpenGL.KhrDebug); - System.UInt32 _id = default(System.UInt32); - System.Int32 _length = default(System.Int32); - System.String _message = default(System.String); - OpenTK.Graphics.OpenGL.GL.Khr.PushDebugGroup(_source,_id,_length,_message); -} -static unsafe void Test_ResizeBuffers_26938() { - OpenTK.Graphics.OpenGL.GL.Mesa.ResizeBuffers(); -} -static unsafe void Test_WindowPos2_26939() { - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos2(_x,_y); -} -static unsafe void Test_WindowPos2_26940() { - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos2(_v); -} -static unsafe void Test_WindowPos2_26941() { - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos2(ref _v); -} -static unsafe void Test_WindowPos2_26942() { - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos2(_v); -} -static unsafe void Test_WindowPos2_26943() { - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos2(_x,_y); -} -static unsafe void Test_WindowPos2_26944() { - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos2(_v); -} -static unsafe void Test_WindowPos2_26945() { - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos2(ref _v); -} -static unsafe void Test_WindowPos2_26946() { - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos2(_v); -} -static unsafe void Test_WindowPos2_26947() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos2(_x,_y); -} -static unsafe void Test_WindowPos2_26948() { - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos2(_v); -} -static unsafe void Test_WindowPos2_26949() { - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos2(ref _v); -} -static unsafe void Test_WindowPos2_26950() { - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos2(_v); -} -static unsafe void Test_WindowPos2_26951() { - System.Int16 _x = default(System.Int16); - System.Int16 _y = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos2(_x,_y); -} -static unsafe void Test_WindowPos2_26952() { - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos2(_v); -} -static unsafe void Test_WindowPos2_26953() { - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos2(ref _v); -} -static unsafe void Test_WindowPos2_26954() { - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos2(_v); -} -static unsafe void Test_WindowPos3_26955() { - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos3(_x,_y,_z); -} -static unsafe void Test_WindowPos3_26956() { - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos3(_v); -} -static unsafe void Test_WindowPos3_26957() { - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos3(ref _v); -} -static unsafe void Test_WindowPos3_26958() { - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos3(_v); -} -static unsafe void Test_WindowPos3_26959() { - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos3(_x,_y,_z); -} -static unsafe void Test_WindowPos3_26960() { - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos3(_v); -} -static unsafe void Test_WindowPos3_26961() { - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos3(ref _v); -} -static unsafe void Test_WindowPos3_26962() { - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos3(_v); -} -static unsafe void Test_WindowPos3_26963() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos3(_x,_y,_z); -} -static unsafe void Test_WindowPos3_26964() { - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos3(_v); -} -static unsafe void Test_WindowPos3_26965() { - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos3(ref _v); -} -static unsafe void Test_WindowPos3_26966() { - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos3(_v); -} -static unsafe void Test_WindowPos3_26967() { - System.Int16 _x = default(System.Int16); - System.Int16 _y = default(System.Int16); - System.Int16 _z = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos3(_x,_y,_z); -} -static unsafe void Test_WindowPos3_26968() { - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos3(_v); -} -static unsafe void Test_WindowPos3_26969() { - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos3(ref _v); -} -static unsafe void Test_WindowPos3_26970() { - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos3(_v); -} -static unsafe void Test_WindowPos4_26971() { - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - System.Double _w = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos4(_x,_y,_z,_w); -} -static unsafe void Test_WindowPos4_26972() { - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos4(_v); -} -static unsafe void Test_WindowPos4_26973() { - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos4(ref _v); -} -static unsafe void Test_WindowPos4_26974() { - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos4(_v); -} -static unsafe void Test_WindowPos4_26975() { - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - System.Single _w = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos4(_x,_y,_z,_w); -} -static unsafe void Test_WindowPos4_26976() { - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos4(_v); -} -static unsafe void Test_WindowPos4_26977() { - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos4(ref _v); -} -static unsafe void Test_WindowPos4_26978() { - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos4(_v); -} -static unsafe void Test_WindowPos4_26979() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - System.Int32 _w = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos4(_x,_y,_z,_w); -} -static unsafe void Test_WindowPos4_26980() { - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos4(_v); -} -static unsafe void Test_WindowPos4_26981() { - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos4(ref _v); -} -static unsafe void Test_WindowPos4_26982() { - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos4(_v); -} -static unsafe void Test_WindowPos4_26983() { - System.Int16 _x = default(System.Int16); - System.Int16 _y = default(System.Int16); - System.Int16 _z = default(System.Int16); - System.Int16 _w = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos4(_x,_y,_z,_w); -} -static unsafe void Test_WindowPos4_26984() { - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos4(_v); -} -static unsafe void Test_WindowPos4_26985() { - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos4(ref _v); -} -static unsafe void Test_WindowPos4_26986() { - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Mesa.WindowPos4(_v); -} -static unsafe void Test_ActiveVarying_26987() { - System.Int32 _program = default(System.Int32); - System.String _name = default(System.String); - OpenTK.Graphics.OpenGL.GL.NV.ActiveVarying(_program,_name); -} -static unsafe void Test_ActiveVarying_26988() { - System.UInt32 _program = default(System.UInt32); - System.String _name = default(System.String); - OpenTK.Graphics.OpenGL.GL.NV.ActiveVarying(_program,_name); -} -static unsafe void Test_AreProgramsResident_26989() { - System.Int32 _n = default(System.Int32); - System.Int32[] _programs = default(System.Int32[]); - System.Boolean[] _residences = default(System.Boolean[]); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.NV.AreProgramsResident(_n,_programs,_residences); -} -static unsafe void Test_AreProgramsResident_26990() { - System.Int32 _n = default(System.Int32); - System.Int32 _programs = default(System.Int32); - System.Boolean _residences = default(System.Boolean); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.NV.AreProgramsResident(_n,ref _programs,out _residences); -} -static unsafe void Test_AreProgramsResident_26991() { - System.Int32 _n = default(System.Int32); - System.Int32* _programs = default(System.Int32*); - System.Boolean* _residences = default(System.Boolean*); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.NV.AreProgramsResident(_n,_programs,_residences); -} -static unsafe void Test_AreProgramsResident_26992() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _programs = default(System.UInt32[]); - System.Boolean[] _residences = default(System.Boolean[]); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.NV.AreProgramsResident(_n,_programs,_residences); -} -static unsafe void Test_AreProgramsResident_26993() { - System.Int32 _n = default(System.Int32); - System.UInt32 _programs = default(System.UInt32); - System.Boolean _residences = default(System.Boolean); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.NV.AreProgramsResident(_n,ref _programs,out _residences); -} -static unsafe void Test_AreProgramsResident_26994() { - System.Int32 _n = default(System.Int32); - System.UInt32* _programs = default(System.UInt32*); - System.Boolean* _residences = default(System.Boolean*); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.NV.AreProgramsResident(_n,_programs,_residences); -} -static unsafe void Test_BeginConditionalRender_26995() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.NvConditionalRender _mode = default(OpenTK.Graphics.OpenGL.NvConditionalRender); - OpenTK.Graphics.OpenGL.GL.NV.BeginConditionalRender(_id,_mode); -} -static unsafe void Test_BeginConditionalRender_26996() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvConditionalRender _mode = default(OpenTK.Graphics.OpenGL.NvConditionalRender); - OpenTK.Graphics.OpenGL.GL.NV.BeginConditionalRender(_id,_mode); -} -static unsafe void Test_BeginOcclusionQuery_26997() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.BeginOcclusionQuery(_id); -} -static unsafe void Test_BeginOcclusionQuery_26998() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.BeginOcclusionQuery(_id); -} -static unsafe void Test_BeginTransformFeedback_26999() { - OpenTK.Graphics.OpenGL.NvTransformFeedback _primitiveMode = default(OpenTK.Graphics.OpenGL.NvTransformFeedback); - OpenTK.Graphics.OpenGL.GL.NV.BeginTransformFeedback(_primitiveMode); -} -static unsafe void Test_BeginVideoCapture_27000() { - System.Int32 _video_capture_slot = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.BeginVideoCapture(_video_capture_slot); -} -static unsafe void Test_BeginVideoCapture_27001() { - System.UInt32 _video_capture_slot = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.BeginVideoCapture(_video_capture_slot); -} -static unsafe void Test_BindBufferBase_27002() { - OpenTK.Graphics.OpenGL.NvTransformFeedback _target = default(OpenTK.Graphics.OpenGL.NvTransformFeedback); - System.Int32 _index = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.BindBufferBase(_target,_index,_buffer); -} -static unsafe void Test_BindBufferBase_27003() { - OpenTK.Graphics.OpenGL.NvTransformFeedback _target = default(OpenTK.Graphics.OpenGL.NvTransformFeedback); - System.UInt32 _index = default(System.UInt32); - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.BindBufferBase(_target,_index,_buffer); -} -static unsafe void Test_BindBufferOffset_27004() { - OpenTK.Graphics.OpenGL.NvTransformFeedback _target = default(OpenTK.Graphics.OpenGL.NvTransformFeedback); - System.Int32 _index = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.NV.BindBufferOffset(_target,_index,_buffer,_offset); -} -static unsafe void Test_BindBufferOffset_27005() { - OpenTK.Graphics.OpenGL.NvTransformFeedback _target = default(OpenTK.Graphics.OpenGL.NvTransformFeedback); - System.UInt32 _index = default(System.UInt32); - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr _offset = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.NV.BindBufferOffset(_target,_index,_buffer,_offset); -} -static unsafe void Test_BindBufferRange_27006() { - OpenTK.Graphics.OpenGL.NvTransformFeedback _target = default(OpenTK.Graphics.OpenGL.NvTransformFeedback); - System.Int32 _index = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.NV.BindBufferRange(_target,_index,_buffer,_offset,_size); -} -static unsafe void Test_BindBufferRange_27007() { - OpenTK.Graphics.OpenGL.NvTransformFeedback _target = default(OpenTK.Graphics.OpenGL.NvTransformFeedback); - System.UInt32 _index = default(System.UInt32); - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.NV.BindBufferRange(_target,_index,_buffer,_offset,_size); -} -static unsafe void Test_BindProgram_27008() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.BindProgram(_target,_id); -} -static unsafe void Test_BindProgram_27009() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.BindProgram(_target,_id); -} -static unsafe void Test_BindTransformFeedback_27010() { - OpenTK.Graphics.OpenGL.BufferTargetArb _target = default(OpenTK.Graphics.OpenGL.BufferTargetArb); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.BindTransformFeedback(_target,_id); -} -static unsafe void Test_BindTransformFeedback_27011() { - OpenTK.Graphics.OpenGL.BufferTargetArb _target = default(OpenTK.Graphics.OpenGL.BufferTargetArb); - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.BindTransformFeedback(_target,_id); -} -static unsafe void Test_BindTransformFeedback_27012() { - OpenTK.Graphics.OpenGL.NvTransformFeedback2 _target = default(OpenTK.Graphics.OpenGL.NvTransformFeedback2); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.BindTransformFeedback(_target,_id); -} -static unsafe void Test_BindTransformFeedback_27013() { - OpenTK.Graphics.OpenGL.NvTransformFeedback2 _target = default(OpenTK.Graphics.OpenGL.NvTransformFeedback2); - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.BindTransformFeedback(_target,_id); -} -static unsafe void Test_BindVideoCaptureStreamBuffer_27014() { - System.Int32 _video_capture_slot = default(System.Int32); - System.Int32 _stream = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVideoCapture _frame_region = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.IntPtr _offset = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.NV.BindVideoCaptureStreamBuffer(_video_capture_slot,_stream,_frame_region,_offset); -} -static unsafe void Test_BindVideoCaptureStreamBuffer_27015() { - System.UInt32 _video_capture_slot = default(System.UInt32); - System.UInt32 _stream = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVideoCapture _frame_region = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.IntPtr _offset = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.NV.BindVideoCaptureStreamBuffer(_video_capture_slot,_stream,_frame_region,_offset); -} -static unsafe void Test_BindVideoCaptureStreamTexture_27016() { - System.Int32 _video_capture_slot = default(System.Int32); - System.Int32 _stream = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVideoCapture _frame_region = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - OpenTK.Graphics.OpenGL.NvVideoCapture _target = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.BindVideoCaptureStreamTexture(_video_capture_slot,_stream,_frame_region,_target,_texture); -} -static unsafe void Test_BindVideoCaptureStreamTexture_27017() { - System.UInt32 _video_capture_slot = default(System.UInt32); - System.UInt32 _stream = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVideoCapture _frame_region = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - OpenTK.Graphics.OpenGL.NvVideoCapture _target = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.BindVideoCaptureStreamTexture(_video_capture_slot,_stream,_frame_region,_target,_texture); -} -static unsafe void Test_BlendBarrier_27018() { - OpenTK.Graphics.OpenGL.GL.NV.BlendBarrier(); -} -static unsafe void Test_BlendParameter_27019() { - OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced _pname = default(OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.BlendParameter(_pname,_value); -} -static unsafe void Test_BufferAddressRange_27020() { - OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory _pname = default(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory); - System.Int32 _index = default(System.Int32); - System.Int64 _address = default(System.Int64); - System.IntPtr _length = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.NV.BufferAddressRange(_pname,_index,_address,_length); -} -static unsafe void Test_BufferAddressRange_27021() { - OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory _pname = default(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory); - System.UInt32 _index = default(System.UInt32); - System.UInt64 _address = default(System.UInt64); - System.IntPtr _length = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.NV.BufferAddressRange(_pname,_index,_address,_length); -} -static unsafe void Test_ClearDepth_27022() { - System.Double _depth = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.ClearDepth(_depth); -} -static unsafe void Test_Color3h_27023() { - OpenTK.Half _red = default(OpenTK.Half); - OpenTK.Half _green = default(OpenTK.Half); - OpenTK.Half _blue = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.Color3h(_red,_green,_blue); -} -static unsafe void Test_Color3h_27024() { - OpenTK.Half[] _v = default(OpenTK.Half[]); - OpenTK.Graphics.OpenGL.GL.NV.Color3h(_v); -} -static unsafe void Test_Color3h_27025() { - OpenTK.Half _v = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.Color3h(ref _v); -} -static unsafe void Test_Color3h_27026() { - OpenTK.Half* _v = default(OpenTK.Half*); - OpenTK.Graphics.OpenGL.GL.NV.Color3h(_v); -} -static unsafe void Test_Color4h_27027() { - OpenTK.Half _red = default(OpenTK.Half); - OpenTK.Half _green = default(OpenTK.Half); - OpenTK.Half _blue = default(OpenTK.Half); - OpenTK.Half _alpha = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.Color4h(_red,_green,_blue,_alpha); -} -static unsafe void Test_Color4h_27028() { - OpenTK.Half[] _v = default(OpenTK.Half[]); - OpenTK.Graphics.OpenGL.GL.NV.Color4h(_v); -} -static unsafe void Test_Color4h_27029() { - OpenTK.Half _v = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.Color4h(ref _v); -} -static unsafe void Test_Color4h_27030() { - OpenTK.Half* _v = default(OpenTK.Half*); - OpenTK.Graphics.OpenGL.GL.NV.Color4h(_v); -} -static unsafe void Test_ColorFormat_27031() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory _type = default(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.ColorFormat(_size,_type,_stride); -} -static unsafe void Test_CombinerInput_27032() { - OpenTK.Graphics.OpenGL.NvRegisterCombiners _stage = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _portion = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _variable = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _input = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _mapping = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _componentUsage = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.GL.NV.CombinerInput(_stage,_portion,_variable,_input,_mapping,_componentUsage); -} -static unsafe void Test_CombinerOutput_27033() { - OpenTK.Graphics.OpenGL.NvRegisterCombiners _stage = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _portion = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _abOutput = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _cdOutput = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _sumOutput = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _scale = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _bias = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - System.Boolean _abDotProduct = default(System.Boolean); - System.Boolean _cdDotProduct = default(System.Boolean); - System.Boolean _muxSum = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.NV.CombinerOutput(_stage,_portion,_abOutput,_cdOutput,_sumOutput,_scale,_bias,_abDotProduct,_cdDotProduct,_muxSum); -} -static unsafe void Test_CombinerParameter_27034() { - OpenTK.Graphics.OpenGL.NvRegisterCombiners _pname = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.CombinerParameter(_pname,_param); -} -static unsafe void Test_CombinerParameter_27035() { - OpenTK.Graphics.OpenGL.NvRegisterCombiners _pname = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.CombinerParameter(_pname,_params); -} -static unsafe void Test_CombinerParameter_27036() { - OpenTK.Graphics.OpenGL.NvRegisterCombiners _pname = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.CombinerParameter(_pname,_params); -} -static unsafe void Test_CombinerParameter_27037() { - OpenTK.Graphics.OpenGL.NvRegisterCombiners _pname = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.CombinerParameter(_pname,_param); -} -static unsafe void Test_CombinerParameter_27038() { - OpenTK.Graphics.OpenGL.NvRegisterCombiners _pname = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.CombinerParameter(_pname,_params); -} -static unsafe void Test_CombinerParameter_27039() { - OpenTK.Graphics.OpenGL.NvRegisterCombiners _pname = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.CombinerParameter(_pname,_params); -} -static unsafe void Test_CombinerStageParameter_27040() { - OpenTK.Graphics.OpenGL.NvRegisterCombiners2 _stage = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners2); - OpenTK.Graphics.OpenGL.NvRegisterCombiners2 _pname = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners2); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.CombinerStageParameter(_stage,_pname,_params); -} -static unsafe void Test_CombinerStageParameter_27041() { - OpenTK.Graphics.OpenGL.NvRegisterCombiners2 _stage = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners2); - OpenTK.Graphics.OpenGL.NvRegisterCombiners2 _pname = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners2); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.CombinerStageParameter(_stage,_pname,ref _params); -} -static unsafe void Test_CombinerStageParameter_27042() { - OpenTK.Graphics.OpenGL.NvRegisterCombiners2 _stage = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners2); - OpenTK.Graphics.OpenGL.NvRegisterCombiners2 _pname = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners2); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.CombinerStageParameter(_stage,_pname,_params); -} -static unsafe void Test_CopyImageSubData_27043() { - System.Int32 _srcName = default(System.Int32); - OpenTK.Graphics.OpenGL.NvCopyImage _srcTarget = default(OpenTK.Graphics.OpenGL.NvCopyImage); - System.Int32 _srcLevel = default(System.Int32); - System.Int32 _srcX = default(System.Int32); - System.Int32 _srcY = default(System.Int32); - System.Int32 _srcZ = default(System.Int32); - System.Int32 _dstName = default(System.Int32); - OpenTK.Graphics.OpenGL.NvCopyImage _dstTarget = default(OpenTK.Graphics.OpenGL.NvCopyImage); - System.Int32 _dstLevel = default(System.Int32); - System.Int32 _dstX = default(System.Int32); - System.Int32 _dstY = default(System.Int32); - System.Int32 _dstZ = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.CopyImageSubData(_srcName,_srcTarget,_srcLevel,_srcX,_srcY,_srcZ,_dstName,_dstTarget,_dstLevel,_dstX,_dstY,_dstZ,_width,_height,_depth); -} -static unsafe void Test_CopyImageSubData_27044() { - System.UInt32 _srcName = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvCopyImage _srcTarget = default(OpenTK.Graphics.OpenGL.NvCopyImage); - System.Int32 _srcLevel = default(System.Int32); - System.Int32 _srcX = default(System.Int32); - System.Int32 _srcY = default(System.Int32); - System.Int32 _srcZ = default(System.Int32); - System.UInt32 _dstName = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvCopyImage _dstTarget = default(OpenTK.Graphics.OpenGL.NvCopyImage); - System.Int32 _dstLevel = default(System.Int32); - System.Int32 _dstX = default(System.Int32); - System.Int32 _dstY = default(System.Int32); - System.Int32 _dstZ = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.CopyImageSubData(_srcName,_srcTarget,_srcLevel,_srcX,_srcY,_srcZ,_dstName,_dstTarget,_dstLevel,_dstX,_dstY,_dstZ,_width,_height,_depth); -} -static unsafe void Test_CopyPath_27045() { - System.Int32 _resultPath = default(System.Int32); - System.Int32 _srcPath = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.CopyPath(_resultPath,_srcPath); -} -static unsafe void Test_CopyPath_27046() { - System.UInt32 _resultPath = default(System.UInt32); - System.UInt32 _srcPath = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.CopyPath(_resultPath,_srcPath); -} -static unsafe void Test_CoverFillPathInstanced_27047() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _paths = default(System.IntPtr); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.CoverFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,_transformValues); -} -static unsafe void Test_CoverFillPathInstanced_27048() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _paths = default(System.IntPtr); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.CoverFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,ref _transformValues); -} -static unsafe void Test_CoverFillPathInstanced_27049() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _paths = default(System.IntPtr); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.CoverFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,_transformValues); -} -static unsafe void Test_CoverFillPathInstanced_27050() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _paths = default(System.IntPtr); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.CoverFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,_transformValues); -} -static unsafe void Test_CoverFillPathInstanced_27051() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _paths = default(System.IntPtr); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.CoverFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,ref _transformValues); -} -static unsafe void Test_CoverFillPathInstanced_27052() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _paths = default(System.IntPtr); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.CoverFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,_transformValues); -} -static unsafe void Test_CoverFillPathInstanced_27053() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _paths = default(int[]); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.CoverFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,_transformValues); -} -static unsafe void Test_CoverFillPathInstanced_27054() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _paths = default(int[]); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.CoverFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,ref _transformValues); -} -static unsafe void Test_CoverFillPathInstanced_27055() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _paths = default(int[]); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.CoverFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,_transformValues); -} -static unsafe void Test_CoverFillPathInstanced_27056() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _paths = default(int[]); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.CoverFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,_transformValues); -} -static unsafe void Test_CoverFillPathInstanced_27057() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _paths = default(int[]); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.CoverFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,ref _transformValues); -} -static unsafe void Test_CoverFillPathInstanced_27058() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _paths = default(int[]); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.CoverFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,_transformValues); -} -static unsafe void Test_CoverFillPathInstanced_27059() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _paths = default(int[,]); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.CoverFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,_transformValues); -} -static unsafe void Test_CoverFillPathInstanced_27060() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _paths = default(int[,]); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.CoverFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,ref _transformValues); -} -static unsafe void Test_CoverFillPathInstanced_27061() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _paths = default(int[,]); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.CoverFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,_transformValues); -} -static unsafe void Test_CoverFillPathInstanced_27062() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _paths = default(int[,]); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.CoverFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,_transformValues); -} -static unsafe void Test_CoverFillPathInstanced_27063() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _paths = default(int[,]); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.CoverFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,ref _transformValues); -} -static unsafe void Test_CoverFillPathInstanced_27064() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _paths = default(int[,]); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.CoverFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,_transformValues); -} -static unsafe void Test_CoverFillPathInstanced_27065() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _paths = default(int[,,]); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.CoverFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,_transformValues); -} -static unsafe void Test_CoverFillPathInstanced_27066() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _paths = default(int[,,]); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.CoverFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,ref _transformValues); -} -static unsafe void Test_CoverFillPathInstanced_27067() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _paths = default(int[,,]); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.CoverFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,_transformValues); -} -static unsafe void Test_CoverFillPathInstanced_27068() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _paths = default(int[,,]); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.CoverFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,_transformValues); -} -static unsafe void Test_CoverFillPathInstanced_27069() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _paths = default(int[,,]); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.CoverFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,ref _transformValues); -} -static unsafe void Test_CoverFillPathInstanced_27070() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _paths = default(int[,,]); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.CoverFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,_transformValues); -} -static unsafe void Test_CoverFillPathInstanced_27071() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _paths = default(int); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.CoverFillPathInstanced(_numPaths,_pathNameType,ref _paths,_pathBase,_coverMode,_transformType,_transformValues); -} -static unsafe void Test_CoverFillPathInstanced_27072() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _paths = default(int); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.CoverFillPathInstanced(_numPaths,_pathNameType,ref _paths,_pathBase,_coverMode,_transformType,ref _transformValues); -} -static unsafe void Test_CoverFillPathInstanced_27073() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _paths = default(int); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.CoverFillPathInstanced(_numPaths,_pathNameType,ref _paths,_pathBase,_coverMode,_transformType,_transformValues); -} -static unsafe void Test_CoverFillPathInstanced_27074() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _paths = default(int); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.CoverFillPathInstanced(_numPaths,_pathNameType,ref _paths,_pathBase,_coverMode,_transformType,_transformValues); -} -static unsafe void Test_CoverFillPathInstanced_27075() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _paths = default(int); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.CoverFillPathInstanced(_numPaths,_pathNameType,ref _paths,_pathBase,_coverMode,_transformType,ref _transformValues); -} -static unsafe void Test_CoverFillPathInstanced_27076() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _paths = default(int); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.CoverFillPathInstanced(_numPaths,_pathNameType,ref _paths,_pathBase,_coverMode,_transformType,_transformValues); -} -static unsafe void Test_CoverFillPath_27077() { - System.Int32 _path = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.GL.NV.CoverFillPath(_path,_coverMode); -} -static unsafe void Test_CoverFillPath_27078() { - System.UInt32 _path = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.GL.NV.CoverFillPath(_path,_coverMode); -} -static unsafe void Test_CoverStrokePathInstanced_27079() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _paths = default(System.IntPtr); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.CoverStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,_transformValues); -} -static unsafe void Test_CoverStrokePathInstanced_27080() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _paths = default(System.IntPtr); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.CoverStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,ref _transformValues); -} -static unsafe void Test_CoverStrokePathInstanced_27081() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _paths = default(System.IntPtr); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.CoverStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,_transformValues); -} -static unsafe void Test_CoverStrokePathInstanced_27082() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _paths = default(System.IntPtr); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.CoverStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,_transformValues); -} -static unsafe void Test_CoverStrokePathInstanced_27083() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _paths = default(System.IntPtr); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.CoverStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,ref _transformValues); -} -static unsafe void Test_CoverStrokePathInstanced_27084() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _paths = default(System.IntPtr); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.CoverStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,_transformValues); -} -static unsafe void Test_CoverStrokePathInstanced_27085() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _paths = default(int[]); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.CoverStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,_transformValues); -} -static unsafe void Test_CoverStrokePathInstanced_27086() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _paths = default(int[]); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.CoverStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,ref _transformValues); -} -static unsafe void Test_CoverStrokePathInstanced_27087() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _paths = default(int[]); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.CoverStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,_transformValues); -} -static unsafe void Test_CoverStrokePathInstanced_27088() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _paths = default(int[]); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.CoverStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,_transformValues); -} -static unsafe void Test_CoverStrokePathInstanced_27089() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _paths = default(int[]); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.CoverStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,ref _transformValues); -} -static unsafe void Test_CoverStrokePathInstanced_27090() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _paths = default(int[]); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.CoverStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,_transformValues); -} -static unsafe void Test_CoverStrokePathInstanced_27091() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _paths = default(int[,]); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.CoverStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,_transformValues); -} -static unsafe void Test_CoverStrokePathInstanced_27092() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _paths = default(int[,]); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.CoverStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,ref _transformValues); -} -static unsafe void Test_CoverStrokePathInstanced_27093() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _paths = default(int[,]); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.CoverStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,_transformValues); -} -static unsafe void Test_CoverStrokePathInstanced_27094() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _paths = default(int[,]); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.CoverStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,_transformValues); -} -static unsafe void Test_CoverStrokePathInstanced_27095() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _paths = default(int[,]); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.CoverStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,ref _transformValues); -} -static unsafe void Test_CoverStrokePathInstanced_27096() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _paths = default(int[,]); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.CoverStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,_transformValues); -} -static unsafe void Test_CoverStrokePathInstanced_27097() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _paths = default(int[,,]); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.CoverStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,_transformValues); -} -static unsafe void Test_CoverStrokePathInstanced_27098() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _paths = default(int[,,]); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.CoverStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,ref _transformValues); -} -static unsafe void Test_CoverStrokePathInstanced_27099() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _paths = default(int[,,]); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.CoverStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,_transformValues); -} -static unsafe void Test_CoverStrokePathInstanced_27100() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _paths = default(int[,,]); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.CoverStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,_transformValues); -} -static unsafe void Test_CoverStrokePathInstanced_27101() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _paths = default(int[,,]); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.CoverStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,ref _transformValues); -} -static unsafe void Test_CoverStrokePathInstanced_27102() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _paths = default(int[,,]); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.CoverStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_coverMode,_transformType,_transformValues); -} -static unsafe void Test_CoverStrokePathInstanced_27103() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _paths = default(int); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.CoverStrokePathInstanced(_numPaths,_pathNameType,ref _paths,_pathBase,_coverMode,_transformType,_transformValues); -} -static unsafe void Test_CoverStrokePathInstanced_27104() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _paths = default(int); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.CoverStrokePathInstanced(_numPaths,_pathNameType,ref _paths,_pathBase,_coverMode,_transformType,ref _transformValues); -} -static unsafe void Test_CoverStrokePathInstanced_27105() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _paths = default(int); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.CoverStrokePathInstanced(_numPaths,_pathNameType,ref _paths,_pathBase,_coverMode,_transformType,_transformValues); -} -static unsafe void Test_CoverStrokePathInstanced_27106() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _paths = default(int); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.CoverStrokePathInstanced(_numPaths,_pathNameType,ref _paths,_pathBase,_coverMode,_transformType,_transformValues); -} -static unsafe void Test_CoverStrokePathInstanced_27107() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _paths = default(int); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.CoverStrokePathInstanced(_numPaths,_pathNameType,ref _paths,_pathBase,_coverMode,_transformType,ref _transformValues); -} -static unsafe void Test_CoverStrokePathInstanced_27108() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _paths = default(int); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.CoverStrokePathInstanced(_numPaths,_pathNameType,ref _paths,_pathBase,_coverMode,_transformType,_transformValues); -} -static unsafe void Test_CoverStrokePath_27109() { - System.Int32 _path = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.GL.NV.CoverStrokePath(_path,_coverMode); -} -static unsafe void Test_CoverStrokePath_27110() { - System.UInt32 _path = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _coverMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.GL.NV.CoverStrokePath(_path,_coverMode); -} -static unsafe void Test_DeleteFence_27111() { - System.Int32 _fences = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.DeleteFence(_fences); -} -static unsafe void Test_DeleteFence_27112() { - System.UInt32 _fences = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.DeleteFence(_fences); -} -static unsafe void Test_DeleteFences_27113() { - System.Int32 _n = default(System.Int32); - System.Int32[] _fences = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.DeleteFences(_n,_fences); -} -static unsafe void Test_DeleteFences_27114() { - System.Int32 _n = default(System.Int32); - System.Int32 _fences = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.DeleteFences(_n,ref _fences); -} -static unsafe void Test_DeleteFences_27115() { - System.Int32 _n = default(System.Int32); - System.Int32* _fences = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.DeleteFences(_n,_fences); -} -static unsafe void Test_DeleteFences_27116() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _fences = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.NV.DeleteFences(_n,_fences); -} -static unsafe void Test_DeleteFences_27117() { - System.Int32 _n = default(System.Int32); - System.UInt32 _fences = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.DeleteFences(_n,ref _fences); -} -static unsafe void Test_DeleteFences_27118() { - System.Int32 _n = default(System.Int32); - System.UInt32* _fences = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.NV.DeleteFences(_n,_fences); -} -static unsafe void Test_DeleteOcclusionQuery_27119() { - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.DeleteOcclusionQuery(_ids); -} -static unsafe void Test_DeleteOcclusionQuery_27120() { - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.DeleteOcclusionQuery(_ids); -} -static unsafe void Test_DeleteOcclusionQueries_27121() { - System.Int32 _n = default(System.Int32); - System.Int32[] _ids = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.DeleteOcclusionQueries(_n,_ids); -} -static unsafe void Test_DeleteOcclusionQueries_27122() { - System.Int32 _n = default(System.Int32); - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.DeleteOcclusionQueries(_n,ref _ids); -} -static unsafe void Test_DeleteOcclusionQueries_27123() { - System.Int32 _n = default(System.Int32); - System.Int32* _ids = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.DeleteOcclusionQueries(_n,_ids); -} -static unsafe void Test_DeleteOcclusionQueries_27124() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _ids = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.NV.DeleteOcclusionQueries(_n,_ids); -} -static unsafe void Test_DeleteOcclusionQueries_27125() { - System.Int32 _n = default(System.Int32); - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.DeleteOcclusionQueries(_n,ref _ids); -} -static unsafe void Test_DeleteOcclusionQueries_27126() { - System.Int32 _n = default(System.Int32); - System.UInt32* _ids = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.NV.DeleteOcclusionQueries(_n,_ids); -} -static unsafe void Test_DeletePath_27127() { - System.Int32 _path = default(System.Int32); - System.Int32 _range = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.DeletePath(_path,_range); -} -static unsafe void Test_DeletePath_27128() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _range = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.DeletePath(_path,_range); -} -static unsafe void Test_DeleteProgram_27129() { - System.Int32 _programs = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.DeleteProgram(_programs); -} -static unsafe void Test_DeleteProgram_27130() { - System.UInt32 _programs = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.DeleteProgram(_programs); -} -static unsafe void Test_DeleteProgram_27131() { - System.Int32 _n = default(System.Int32); - System.Int32[] _programs = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.DeleteProgram(_n,_programs); -} -static unsafe void Test_DeleteProgram_27132() { - System.Int32 _n = default(System.Int32); - System.Int32 _programs = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.DeleteProgram(_n,ref _programs); -} -static unsafe void Test_DeleteProgram_27133() { - System.Int32 _n = default(System.Int32); - System.Int32* _programs = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.DeleteProgram(_n,_programs); -} -static unsafe void Test_DeleteProgram_27134() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _programs = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.NV.DeleteProgram(_n,_programs); -} -static unsafe void Test_DeleteProgram_27135() { - System.Int32 _n = default(System.Int32); - System.UInt32 _programs = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.DeleteProgram(_n,ref _programs); -} -static unsafe void Test_DeleteProgram_27136() { - System.Int32 _n = default(System.Int32); - System.UInt32* _programs = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.NV.DeleteProgram(_n,_programs); -} -static unsafe void Test_DeleteTransformFeedback_27137() { - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.DeleteTransformFeedback(_ids); -} -static unsafe void Test_DeleteTransformFeedback_27138() { - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.DeleteTransformFeedback(_ids); -} -static unsafe void Test_DeleteTransformFeedbacks_27139() { - System.Int32 _n = default(System.Int32); - System.Int32[] _ids = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.DeleteTransformFeedbacks(_n,_ids); -} -static unsafe void Test_DeleteTransformFeedbacks_27140() { - System.Int32 _n = default(System.Int32); - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.DeleteTransformFeedbacks(_n,ref _ids); -} -static unsafe void Test_DeleteTransformFeedbacks_27141() { - System.Int32 _n = default(System.Int32); - System.Int32* _ids = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.DeleteTransformFeedbacks(_n,_ids); -} -static unsafe void Test_DeleteTransformFeedbacks_27142() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _ids = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.NV.DeleteTransformFeedbacks(_n,_ids); -} -static unsafe void Test_DeleteTransformFeedbacks_27143() { - System.Int32 _n = default(System.Int32); - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.DeleteTransformFeedbacks(_n,ref _ids); -} -static unsafe void Test_DeleteTransformFeedbacks_27144() { - System.Int32 _n = default(System.Int32); - System.UInt32* _ids = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.NV.DeleteTransformFeedbacks(_n,_ids); -} -static unsafe void Test_DepthBounds_27145() { - System.Double _zmin = default(System.Double); - System.Double _zmax = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.DepthBounds(_zmin,_zmax); -} -static unsafe void Test_DepthRange_27146() { - System.Double _zNear = default(System.Double); - System.Double _zFar = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.DepthRange(_zNear,_zFar); -} -static unsafe void Test_DrawTexture_27147() { - System.Int32 _texture = default(System.Int32); - System.Int32 _sampler = default(System.Int32); - System.Single _x0 = default(System.Single); - System.Single _y0 = default(System.Single); - System.Single _x1 = default(System.Single); - System.Single _y1 = default(System.Single); - System.Single _z = default(System.Single); - System.Single _s0 = default(System.Single); - System.Single _t0 = default(System.Single); - System.Single _s1 = default(System.Single); - System.Single _t1 = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.DrawTexture(_texture,_sampler,_x0,_y0,_x1,_y1,_z,_s0,_t0,_s1,_t1); -} -static unsafe void Test_DrawTexture_27148() { - System.UInt32 _texture = default(System.UInt32); - System.UInt32 _sampler = default(System.UInt32); - System.Single _x0 = default(System.Single); - System.Single _y0 = default(System.Single); - System.Single _x1 = default(System.Single); - System.Single _y1 = default(System.Single); - System.Single _z = default(System.Single); - System.Single _s0 = default(System.Single); - System.Single _t0 = default(System.Single); - System.Single _s1 = default(System.Single); - System.Single _t1 = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.DrawTexture(_texture,_sampler,_x0,_y0,_x1,_y1,_z,_s0,_t0,_s1,_t1); -} -static unsafe void Test_DrawTransformFeedback_27149() { - OpenTK.Graphics.OpenGL.NvTransformFeedback2 _mode = default(OpenTK.Graphics.OpenGL.NvTransformFeedback2); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.DrawTransformFeedback(_mode,_id); -} -static unsafe void Test_DrawTransformFeedback_27150() { - OpenTK.Graphics.OpenGL.NvTransformFeedback2 _mode = default(OpenTK.Graphics.OpenGL.NvTransformFeedback2); - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.DrawTransformFeedback(_mode,_id); -} -static unsafe void Test_DrawTransformFeedback_27151() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.DrawTransformFeedback(_mode,_id); -} -static unsafe void Test_DrawTransformFeedback_27152() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.DrawTransformFeedback(_mode,_id); -} -static unsafe void Test_EdgeFlagFormat_27153() { - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.EdgeFlagFormat(_stride); -} -static unsafe void Test_EndConditionalRender_27154() { - OpenTK.Graphics.OpenGL.GL.NV.EndConditionalRender(); -} -static unsafe void Test_EndOcclusionQuery_27155() { - OpenTK.Graphics.OpenGL.GL.NV.EndOcclusionQuery(); -} -static unsafe void Test_EndTransformFeedback_27156() { - OpenTK.Graphics.OpenGL.GL.NV.EndTransformFeedback(); -} -static unsafe void Test_EndVideoCapture_27157() { - System.Int32 _video_capture_slot = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.EndVideoCapture(_video_capture_slot); -} -static unsafe void Test_EndVideoCapture_27158() { - System.UInt32 _video_capture_slot = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.EndVideoCapture(_video_capture_slot); -} -static unsafe void Test_EvalMap_27159() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - OpenTK.Graphics.OpenGL.NvEvaluators _mode = default(OpenTK.Graphics.OpenGL.NvEvaluators); - OpenTK.Graphics.OpenGL.GL.NV.EvalMap(_target,_mode); -} -static unsafe void Test_ExecuteProgram_27160() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _id = default(System.Int32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.ExecuteProgram(_target,_id,_params); -} -static unsafe void Test_ExecuteProgram_27161() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _id = default(System.Int32); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.ExecuteProgram(_target,_id,ref _params); -} -static unsafe void Test_ExecuteProgram_27162() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _id = default(System.Int32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.ExecuteProgram(_target,_id,_params); -} -static unsafe void Test_ExecuteProgram_27163() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _id = default(System.UInt32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.ExecuteProgram(_target,_id,_params); -} -static unsafe void Test_ExecuteProgram_27164() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _id = default(System.UInt32); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.ExecuteProgram(_target,_id,ref _params); -} -static unsafe void Test_ExecuteProgram_27165() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _id = default(System.UInt32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.ExecuteProgram(_target,_id,_params); -} -static unsafe void Test_FinalCombinerInput_27166() { - OpenTK.Graphics.OpenGL.NvRegisterCombiners _variable = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _input = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _mapping = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _componentUsage = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.GL.NV.FinalCombinerInput(_variable,_input,_mapping,_componentUsage); -} -static unsafe void Test_FinishFence_27167() { - System.Int32 _fence = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.FinishFence(_fence); -} -static unsafe void Test_FinishFence_27168() { - System.UInt32 _fence = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.FinishFence(_fence); -} -static unsafe void Test_FlushPixelDataRange_27169() { - OpenTK.Graphics.OpenGL.NvPixelDataRange _target = default(OpenTK.Graphics.OpenGL.NvPixelDataRange); - OpenTK.Graphics.OpenGL.GL.NV.FlushPixelDataRange(_target); -} -static unsafe void Test_FlushVertexArrayRange_27170() { - OpenTK.Graphics.OpenGL.GL.NV.FlushVertexArrayRange(); -} -static unsafe void Test_FogCoordFormat_27171() { - OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory _type = default(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.FogCoordFormat(_type,_stride); -} -static unsafe void Test_FogCoordh_27172() { - OpenTK.Half _fog = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.FogCoordh(_fog); -} -static unsafe void Test_FogCoordh_27173() { - OpenTK.Half* _fog = default(OpenTK.Half*); - OpenTK.Graphics.OpenGL.GL.NV.FogCoordh(_fog); -} -static unsafe void Test_GenFence_27174() { - System.Int32 r = OpenTK.Graphics.OpenGL.GL.NV.GenFence(); -} -static unsafe void Test_GenFences_27175() { - System.Int32 _n = default(System.Int32); - System.Int32[] _fences = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.GenFences(_n,_fences); -} -static unsafe void Test_GenFences_27176() { - System.Int32 _n = default(System.Int32); - System.Int32 _fences = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.GenFences(_n,out _fences); -} -static unsafe void Test_GenFences_27177() { - System.Int32 _n = default(System.Int32); - System.Int32* _fences = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.GenFences(_n,_fences); -} -static unsafe void Test_GenFences_27178() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _fences = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.NV.GenFences(_n,_fences); -} -static unsafe void Test_GenFences_27179() { - System.Int32 _n = default(System.Int32); - System.UInt32 _fences = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.GenFences(_n,out _fences); -} -static unsafe void Test_GenFences_27180() { - System.Int32 _n = default(System.Int32); - System.UInt32* _fences = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.NV.GenFences(_n,_fences); -} -static unsafe void Test_GenOcclusionQuery_27181() { - System.Int32 r = OpenTK.Graphics.OpenGL.GL.NV.GenOcclusionQuery(); -} -static unsafe void Test_GenOcclusionQueries_27182() { - System.Int32 _n = default(System.Int32); - System.Int32[] _ids = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.GenOcclusionQueries(_n,_ids); -} -static unsafe void Test_GenOcclusionQueries_27183() { - System.Int32 _n = default(System.Int32); - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.GenOcclusionQueries(_n,out _ids); -} -static unsafe void Test_GenOcclusionQueries_27184() { - System.Int32 _n = default(System.Int32); - System.Int32* _ids = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.GenOcclusionQueries(_n,_ids); -} -static unsafe void Test_GenOcclusionQueries_27185() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _ids = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.NV.GenOcclusionQueries(_n,_ids); -} -static unsafe void Test_GenOcclusionQueries_27186() { - System.Int32 _n = default(System.Int32); - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.GenOcclusionQueries(_n,out _ids); -} -static unsafe void Test_GenOcclusionQueries_27187() { - System.Int32 _n = default(System.Int32); - System.UInt32* _ids = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.NV.GenOcclusionQueries(_n,_ids); -} -static unsafe void Test_GenPath_27188() { - System.Int32 _range = default(System.Int32); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.NV.GenPath(_range); -} -static unsafe void Test_GenProgram_27189() { - System.Int32 r = OpenTK.Graphics.OpenGL.GL.NV.GenProgram(); -} -static unsafe void Test_GenProgram_27190() { - System.Int32 _n = default(System.Int32); - System.Int32[] _programs = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.GenProgram(_n,_programs); -} -static unsafe void Test_GenProgram_27191() { - System.Int32 _n = default(System.Int32); - System.Int32 _programs = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.GenProgram(_n,out _programs); -} -static unsafe void Test_GenProgram_27192() { - System.Int32 _n = default(System.Int32); - System.Int32* _programs = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.GenProgram(_n,_programs); -} -static unsafe void Test_GenProgram_27193() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _programs = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.NV.GenProgram(_n,_programs); -} -static unsafe void Test_GenProgram_27194() { - System.Int32 _n = default(System.Int32); - System.UInt32 _programs = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.GenProgram(_n,out _programs); -} -static unsafe void Test_GenProgram_27195() { - System.Int32 _n = default(System.Int32); - System.UInt32* _programs = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.NV.GenProgram(_n,_programs); -} -static unsafe void Test_GenTransformFeedback_27196() { - System.Int32 r = OpenTK.Graphics.OpenGL.GL.NV.GenTransformFeedback(); -} -static unsafe void Test_GenTransformFeedbacks_27197() { - System.Int32 _n = default(System.Int32); - System.Int32[] _ids = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.GenTransformFeedbacks(_n,_ids); -} -static unsafe void Test_GenTransformFeedbacks_27198() { - System.Int32 _n = default(System.Int32); - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.GenTransformFeedbacks(_n,out _ids); -} -static unsafe void Test_GenTransformFeedbacks_27199() { - System.Int32 _n = default(System.Int32); - System.Int32* _ids = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.GenTransformFeedbacks(_n,_ids); -} -static unsafe void Test_GenTransformFeedbacks_27200() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _ids = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.NV.GenTransformFeedbacks(_n,_ids); -} -static unsafe void Test_GenTransformFeedbacks_27201() { - System.Int32 _n = default(System.Int32); - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.GenTransformFeedbacks(_n,out _ids); -} -static unsafe void Test_GenTransformFeedbacks_27202() { - System.Int32 _n = default(System.Int32); - System.UInt32* _ids = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.NV.GenTransformFeedbacks(_n,_ids); -} -static unsafe void Test_GetActiveVarying_27203() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.NvTransformFeedback _type = default(OpenTK.Graphics.OpenGL.NvTransformFeedback); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.NV.GetActiveVarying(_program,_index,_bufSize,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetActiveVarying_27204() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.OpenGL.NvTransformFeedback* _type = default(OpenTK.Graphics.OpenGL.NvTransformFeedback*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.NV.GetActiveVarying(_program,_index,_bufSize,_length,_size,_type,_name); -} -static unsafe void Test_GetActiveVarying_27205() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.NvTransformFeedback _type = default(OpenTK.Graphics.OpenGL.NvTransformFeedback); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.NV.GetActiveVarying(_program,_index,_bufSize,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetActiveVarying_27206() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.OpenGL.NvTransformFeedback* _type = default(OpenTK.Graphics.OpenGL.NvTransformFeedback*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL.GL.NV.GetActiveVarying(_program,_index,_bufSize,_length,_size,_type,_name); -} -static unsafe void Test_GetBufferParameter_27207() { - OpenTK.Graphics.OpenGL.NvShaderBufferLoad _target = default(OpenTK.Graphics.OpenGL.NvShaderBufferLoad); - OpenTK.Graphics.OpenGL.NvShaderBufferLoad _pname = default(OpenTK.Graphics.OpenGL.NvShaderBufferLoad); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.NV.GetBufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetBufferParameter_27208() { - OpenTK.Graphics.OpenGL.NvShaderBufferLoad _target = default(OpenTK.Graphics.OpenGL.NvShaderBufferLoad); - OpenTK.Graphics.OpenGL.NvShaderBufferLoad _pname = default(OpenTK.Graphics.OpenGL.NvShaderBufferLoad); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.GetBufferParameter(_target,_pname,out _params); -} -static unsafe void Test_GetBufferParameter_27209() { - OpenTK.Graphics.OpenGL.NvShaderBufferLoad _target = default(OpenTK.Graphics.OpenGL.NvShaderBufferLoad); - OpenTK.Graphics.OpenGL.NvShaderBufferLoad _pname = default(OpenTK.Graphics.OpenGL.NvShaderBufferLoad); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.NV.GetBufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetBufferParameter_27210() { - OpenTK.Graphics.OpenGL.NvShaderBufferLoad _target = default(OpenTK.Graphics.OpenGL.NvShaderBufferLoad); - OpenTK.Graphics.OpenGL.NvShaderBufferLoad _pname = default(OpenTK.Graphics.OpenGL.NvShaderBufferLoad); - System.UInt64[] _params = default(System.UInt64[]); - OpenTK.Graphics.OpenGL.GL.NV.GetBufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetBufferParameter_27211() { - OpenTK.Graphics.OpenGL.NvShaderBufferLoad _target = default(OpenTK.Graphics.OpenGL.NvShaderBufferLoad); - OpenTK.Graphics.OpenGL.NvShaderBufferLoad _pname = default(OpenTK.Graphics.OpenGL.NvShaderBufferLoad); - System.UInt64 _params = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.GetBufferParameter(_target,_pname,out _params); -} -static unsafe void Test_GetBufferParameter_27212() { - OpenTK.Graphics.OpenGL.NvShaderBufferLoad _target = default(OpenTK.Graphics.OpenGL.NvShaderBufferLoad); - OpenTK.Graphics.OpenGL.NvShaderBufferLoad _pname = default(OpenTK.Graphics.OpenGL.NvShaderBufferLoad); - System.UInt64* _params = default(System.UInt64*); - OpenTK.Graphics.OpenGL.GL.NV.GetBufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetCombinerInputParameter_27213() { - OpenTK.Graphics.OpenGL.NvRegisterCombiners _stage = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _portion = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _variable = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _pname = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetCombinerInputParameter(_stage,_portion,_variable,_pname,_params); -} -static unsafe void Test_GetCombinerInputParameter_27214() { - OpenTK.Graphics.OpenGL.NvRegisterCombiners _stage = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _portion = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _variable = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _pname = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetCombinerInputParameter(_stage,_portion,_variable,_pname,out _params); -} -static unsafe void Test_GetCombinerInputParameter_27215() { - OpenTK.Graphics.OpenGL.NvRegisterCombiners _stage = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _portion = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _variable = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _pname = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetCombinerInputParameter(_stage,_portion,_variable,_pname,_params); -} -static unsafe void Test_GetCombinerInputParameter_27216() { - OpenTK.Graphics.OpenGL.NvRegisterCombiners _stage = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _portion = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _variable = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _pname = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.GetCombinerInputParameter(_stage,_portion,_variable,_pname,_params); -} -static unsafe void Test_GetCombinerInputParameter_27217() { - OpenTK.Graphics.OpenGL.NvRegisterCombiners _stage = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _portion = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _variable = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _pname = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.GetCombinerInputParameter(_stage,_portion,_variable,_pname,out _params); -} -static unsafe void Test_GetCombinerInputParameter_27218() { - OpenTK.Graphics.OpenGL.NvRegisterCombiners _stage = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _portion = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _variable = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _pname = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.GetCombinerInputParameter(_stage,_portion,_variable,_pname,_params); -} -static unsafe void Test_GetCombinerOutputParameter_27219() { - OpenTK.Graphics.OpenGL.NvRegisterCombiners _stage = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _portion = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _pname = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetCombinerOutputParameter(_stage,_portion,_pname,_params); -} -static unsafe void Test_GetCombinerOutputParameter_27220() { - OpenTK.Graphics.OpenGL.NvRegisterCombiners _stage = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _portion = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _pname = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetCombinerOutputParameter(_stage,_portion,_pname,out _params); -} -static unsafe void Test_GetCombinerOutputParameter_27221() { - OpenTK.Graphics.OpenGL.NvRegisterCombiners _stage = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _portion = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _pname = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetCombinerOutputParameter(_stage,_portion,_pname,_params); -} -static unsafe void Test_GetCombinerOutputParameter_27222() { - OpenTK.Graphics.OpenGL.NvRegisterCombiners _stage = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _portion = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _pname = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.GetCombinerOutputParameter(_stage,_portion,_pname,_params); -} -static unsafe void Test_GetCombinerOutputParameter_27223() { - OpenTK.Graphics.OpenGL.NvRegisterCombiners _stage = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _portion = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _pname = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.GetCombinerOutputParameter(_stage,_portion,_pname,out _params); -} -static unsafe void Test_GetCombinerOutputParameter_27224() { - OpenTK.Graphics.OpenGL.NvRegisterCombiners _stage = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _portion = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _pname = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.GetCombinerOutputParameter(_stage,_portion,_pname,_params); -} -static unsafe void Test_GetCombinerStageParameter_27225() { - OpenTK.Graphics.OpenGL.NvRegisterCombiners2 _stage = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners2); - OpenTK.Graphics.OpenGL.NvRegisterCombiners2 _pname = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners2); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetCombinerStageParameter(_stage,_pname,_params); -} -static unsafe void Test_GetCombinerStageParameter_27226() { - OpenTK.Graphics.OpenGL.NvRegisterCombiners2 _stage = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners2); - OpenTK.Graphics.OpenGL.NvRegisterCombiners2 _pname = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners2); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetCombinerStageParameter(_stage,_pname,out _params); -} -static unsafe void Test_GetCombinerStageParameter_27227() { - OpenTK.Graphics.OpenGL.NvRegisterCombiners2 _stage = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners2); - OpenTK.Graphics.OpenGL.NvRegisterCombiners2 _pname = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners2); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetCombinerStageParameter(_stage,_pname,_params); -} -static unsafe void Test_GetFence_27228() { - System.Int32 _fence = default(System.Int32); - OpenTK.Graphics.OpenGL.NvFence _pname = default(OpenTK.Graphics.OpenGL.NvFence); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.GetFence(_fence,_pname,_params); -} -static unsafe void Test_GetFence_27229() { - System.Int32 _fence = default(System.Int32); - OpenTK.Graphics.OpenGL.NvFence _pname = default(OpenTK.Graphics.OpenGL.NvFence); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.GetFence(_fence,_pname,out _params); -} -static unsafe void Test_GetFence_27230() { - System.Int32 _fence = default(System.Int32); - OpenTK.Graphics.OpenGL.NvFence _pname = default(OpenTK.Graphics.OpenGL.NvFence); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.GetFence(_fence,_pname,_params); -} -static unsafe void Test_GetFence_27231() { - System.UInt32 _fence = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvFence _pname = default(OpenTK.Graphics.OpenGL.NvFence); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.GetFence(_fence,_pname,_params); -} -static unsafe void Test_GetFence_27232() { - System.UInt32 _fence = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvFence _pname = default(OpenTK.Graphics.OpenGL.NvFence); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.GetFence(_fence,_pname,out _params); -} -static unsafe void Test_GetFence_27233() { - System.UInt32 _fence = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvFence _pname = default(OpenTK.Graphics.OpenGL.NvFence); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.GetFence(_fence,_pname,_params); -} -static unsafe void Test_GetFinalCombinerInputParameter_27234() { - OpenTK.Graphics.OpenGL.NvRegisterCombiners _variable = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _pname = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetFinalCombinerInputParameter(_variable,_pname,_params); -} -static unsafe void Test_GetFinalCombinerInputParameter_27235() { - OpenTK.Graphics.OpenGL.NvRegisterCombiners _variable = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _pname = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetFinalCombinerInputParameter(_variable,_pname,out _params); -} -static unsafe void Test_GetFinalCombinerInputParameter_27236() { - OpenTK.Graphics.OpenGL.NvRegisterCombiners _variable = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _pname = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetFinalCombinerInputParameter(_variable,_pname,_params); -} -static unsafe void Test_GetFinalCombinerInputParameter_27237() { - OpenTK.Graphics.OpenGL.NvRegisterCombiners _variable = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _pname = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.GetFinalCombinerInputParameter(_variable,_pname,_params); -} -static unsafe void Test_GetFinalCombinerInputParameter_27238() { - OpenTK.Graphics.OpenGL.NvRegisterCombiners _variable = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _pname = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.GetFinalCombinerInputParameter(_variable,_pname,out _params); -} -static unsafe void Test_GetFinalCombinerInputParameter_27239() { - OpenTK.Graphics.OpenGL.NvRegisterCombiners _variable = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - OpenTK.Graphics.OpenGL.NvRegisterCombiners _pname = default(OpenTK.Graphics.OpenGL.NvRegisterCombiners); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.GetFinalCombinerInputParameter(_variable,_pname,_params); -} -static unsafe void Test_GetImageHandle_27240() { - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - System.Boolean _layered = default(System.Boolean); - System.Int32 _layer = default(System.Int32); - OpenTK.Graphics.OpenGL.NvBindlessTexture _format = default(OpenTK.Graphics.OpenGL.NvBindlessTexture); - System.Int64 r = OpenTK.Graphics.OpenGL.GL.NV.GetImageHandle(_texture,_level,_layered,_layer,_format); -} -static unsafe void Test_GetImageHandle_27241() { - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - System.Boolean _layered = default(System.Boolean); - System.Int32 _layer = default(System.Int32); - OpenTK.Graphics.OpenGL.NvBindlessTexture _format = default(OpenTK.Graphics.OpenGL.NvBindlessTexture); - System.Int64 r = OpenTK.Graphics.OpenGL.GL.NV.GetImageHandle(_texture,_level,_layered,_layer,_format); -} -static unsafe void Test_GetIntegerui64_27242() { - OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory _value = default(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory); - System.Int32 _index = default(System.Int32); - System.Int64[] _result = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.NV.GetIntegerui64(_value,_index,_result); -} -static unsafe void Test_GetIntegerui64_27243() { - OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory _value = default(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory); - System.Int32 _index = default(System.Int32); - System.Int64 _result = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.GetIntegerui64(_value,_index,out _result); -} -static unsafe void Test_GetIntegerui64_27244() { - OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory _value = default(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory); - System.Int32 _index = default(System.Int32); - System.Int64* _result = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.NV.GetIntegerui64(_value,_index,_result); -} -static unsafe void Test_GetIntegerui64_27245() { - OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory _value = default(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory); - System.UInt32 _index = default(System.UInt32); - System.UInt64[] _result = default(System.UInt64[]); - OpenTK.Graphics.OpenGL.GL.NV.GetIntegerui64(_value,_index,_result); -} -static unsafe void Test_GetIntegerui64_27246() { - OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory _value = default(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory); - System.UInt32 _index = default(System.UInt32); - System.UInt64 _result = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.GetIntegerui64(_value,_index,out _result); -} -static unsafe void Test_GetIntegerui64_27247() { - OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory _value = default(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory); - System.UInt32 _index = default(System.UInt32); - System.UInt64* _result = default(System.UInt64*); - OpenTK.Graphics.OpenGL.GL.NV.GetIntegerui64(_value,_index,_result); -} -static unsafe void Test_GetInteger_27248() { - OpenTK.Graphics.OpenGL.NvShaderBufferLoad _value = default(OpenTK.Graphics.OpenGL.NvShaderBufferLoad); - System.Int64 r = OpenTK.Graphics.OpenGL.GL.NV.GetInteger(_value); -} -static unsafe void Test_GetInteger_27249() { - OpenTK.Graphics.OpenGL.NvShaderBufferLoad _value = default(OpenTK.Graphics.OpenGL.NvShaderBufferLoad); - System.Int64[] _result = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.NV.GetInteger(_value,_result); -} -static unsafe void Test_GetInteger_27250() { - OpenTK.Graphics.OpenGL.NvShaderBufferLoad _value = default(OpenTK.Graphics.OpenGL.NvShaderBufferLoad); - System.Int64 _result = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.GetInteger(_value,out _result); -} -static unsafe void Test_GetInteger_27251() { - OpenTK.Graphics.OpenGL.NvShaderBufferLoad _value = default(OpenTK.Graphics.OpenGL.NvShaderBufferLoad); - System.Int64* _result = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.NV.GetInteger(_value,_result); -} -static unsafe void Test_GetInteger_27252() { - OpenTK.Graphics.OpenGL.NvShaderBufferLoad _value = default(OpenTK.Graphics.OpenGL.NvShaderBufferLoad); - System.UInt64[] _result = default(System.UInt64[]); - OpenTK.Graphics.OpenGL.GL.NV.GetInteger(_value,_result); -} -static unsafe void Test_GetInteger_27253() { - OpenTK.Graphics.OpenGL.NvShaderBufferLoad _value = default(OpenTK.Graphics.OpenGL.NvShaderBufferLoad); - System.UInt64 _result = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.GetInteger(_value,out _result); -} -static unsafe void Test_GetInteger_27254() { - OpenTK.Graphics.OpenGL.NvShaderBufferLoad _value = default(OpenTK.Graphics.OpenGL.NvShaderBufferLoad); - System.UInt64* _result = default(System.UInt64*); - OpenTK.Graphics.OpenGL.GL.NV.GetInteger(_value,_result); -} -static unsafe void Test_GetMapAttribParameter_27255() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.NvEvaluators _pname = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetMapAttribParameter(_target,_index,_pname,_params); -} -static unsafe void Test_GetMapAttribParameter_27256() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.NvEvaluators _pname = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetMapAttribParameter(_target,_index,_pname,out _params); -} -static unsafe void Test_GetMapAttribParameter_27257() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.NvEvaluators _pname = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetMapAttribParameter(_target,_index,_pname,_params); -} -static unsafe void Test_GetMapAttribParameter_27258() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvEvaluators _pname = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetMapAttribParameter(_target,_index,_pname,_params); -} -static unsafe void Test_GetMapAttribParameter_27259() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvEvaluators _pname = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetMapAttribParameter(_target,_index,_pname,out _params); -} -static unsafe void Test_GetMapAttribParameter_27260() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvEvaluators _pname = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetMapAttribParameter(_target,_index,_pname,_params); -} -static unsafe void Test_GetMapAttribParameter_27261() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.NvEvaluators _pname = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.GetMapAttribParameter(_target,_index,_pname,_params); -} -static unsafe void Test_GetMapAttribParameter_27262() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.NvEvaluators _pname = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.GetMapAttribParameter(_target,_index,_pname,out _params); -} -static unsafe void Test_GetMapAttribParameter_27263() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.NvEvaluators _pname = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.GetMapAttribParameter(_target,_index,_pname,_params); -} -static unsafe void Test_GetMapAttribParameter_27264() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvEvaluators _pname = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.GetMapAttribParameter(_target,_index,_pname,_params); -} -static unsafe void Test_GetMapAttribParameter_27265() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvEvaluators _pname = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.GetMapAttribParameter(_target,_index,_pname,out _params); -} -static unsafe void Test_GetMapAttribParameter_27266() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvEvaluators _pname = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.GetMapAttribParameter(_target,_index,_pname,_params); -} -static unsafe void Test_GetMapControlPoints_27267() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.NvEvaluators _type = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32 _ustride = default(System.Int32); - System.Int32 _vstride = default(System.Int32); - System.Boolean _packed = default(System.Boolean); - System.IntPtr _points = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.NV.GetMapControlPoints(_target,_index,_type,_ustride,_vstride,_packed,_points); -} -static unsafe void Test_GetMapControlPoints_27268() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.NvEvaluators _type = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32 _ustride = default(System.Int32); - System.Int32 _vstride = default(System.Int32); - System.Boolean _packed = default(System.Boolean); - int[] _points = default(int[]); - OpenTK.Graphics.OpenGL.GL.NV.GetMapControlPoints(_target,_index,_type,_ustride,_vstride,_packed,_points); -} -static unsafe void Test_GetMapControlPoints_27269() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.NvEvaluators _type = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32 _ustride = default(System.Int32); - System.Int32 _vstride = default(System.Int32); - System.Boolean _packed = default(System.Boolean); - int[,] _points = default(int[,]); - OpenTK.Graphics.OpenGL.GL.NV.GetMapControlPoints(_target,_index,_type,_ustride,_vstride,_packed,_points); -} -static unsafe void Test_GetMapControlPoints_27270() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.NvEvaluators _type = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32 _ustride = default(System.Int32); - System.Int32 _vstride = default(System.Int32); - System.Boolean _packed = default(System.Boolean); - int[,,] _points = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.NV.GetMapControlPoints(_target,_index,_type,_ustride,_vstride,_packed,_points); -} -static unsafe void Test_GetMapControlPoints_27271() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.NvEvaluators _type = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32 _ustride = default(System.Int32); - System.Int32 _vstride = default(System.Int32); - System.Boolean _packed = default(System.Boolean); - int _points = default(int); - OpenTK.Graphics.OpenGL.GL.NV.GetMapControlPoints(_target,_index,_type,_ustride,_vstride,_packed,ref _points); -} -static unsafe void Test_GetMapControlPoints_27272() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvEvaluators _type = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32 _ustride = default(System.Int32); - System.Int32 _vstride = default(System.Int32); - System.Boolean _packed = default(System.Boolean); - System.IntPtr _points = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.NV.GetMapControlPoints(_target,_index,_type,_ustride,_vstride,_packed,_points); -} -static unsafe void Test_GetMapControlPoints_27273() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvEvaluators _type = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32 _ustride = default(System.Int32); - System.Int32 _vstride = default(System.Int32); - System.Boolean _packed = default(System.Boolean); - int[] _points = default(int[]); - OpenTK.Graphics.OpenGL.GL.NV.GetMapControlPoints(_target,_index,_type,_ustride,_vstride,_packed,_points); -} -static unsafe void Test_GetMapControlPoints_27274() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvEvaluators _type = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32 _ustride = default(System.Int32); - System.Int32 _vstride = default(System.Int32); - System.Boolean _packed = default(System.Boolean); - int[,] _points = default(int[,]); - OpenTK.Graphics.OpenGL.GL.NV.GetMapControlPoints(_target,_index,_type,_ustride,_vstride,_packed,_points); -} -static unsafe void Test_GetMapControlPoints_27275() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvEvaluators _type = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32 _ustride = default(System.Int32); - System.Int32 _vstride = default(System.Int32); - System.Boolean _packed = default(System.Boolean); - int[,,] _points = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.NV.GetMapControlPoints(_target,_index,_type,_ustride,_vstride,_packed,_points); -} -static unsafe void Test_GetMapControlPoints_27276() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvEvaluators _type = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32 _ustride = default(System.Int32); - System.Int32 _vstride = default(System.Int32); - System.Boolean _packed = default(System.Boolean); - int _points = default(int); - OpenTK.Graphics.OpenGL.GL.NV.GetMapControlPoints(_target,_index,_type,_ustride,_vstride,_packed,ref _points); -} -static unsafe void Test_GetMapParameter_27277() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - OpenTK.Graphics.OpenGL.NvEvaluators _pname = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetMapParameter(_target,_pname,_params); -} -static unsafe void Test_GetMapParameter_27278() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - OpenTK.Graphics.OpenGL.NvEvaluators _pname = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetMapParameter(_target,_pname,out _params); -} -static unsafe void Test_GetMapParameter_27279() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - OpenTK.Graphics.OpenGL.NvEvaluators _pname = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetMapParameter(_target,_pname,_params); -} -static unsafe void Test_GetMapParameter_27280() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - OpenTK.Graphics.OpenGL.NvEvaluators _pname = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.GetMapParameter(_target,_pname,_params); -} -static unsafe void Test_GetMapParameter_27281() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - OpenTK.Graphics.OpenGL.NvEvaluators _pname = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.GetMapParameter(_target,_pname,out _params); -} -static unsafe void Test_GetMapParameter_27282() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - OpenTK.Graphics.OpenGL.NvEvaluators _pname = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.GetMapParameter(_target,_pname,_params); -} -static unsafe void Test_GetMultisample_27283() { - OpenTK.Graphics.OpenGL.NvExplicitMultisample _pname = default(OpenTK.Graphics.OpenGL.NvExplicitMultisample); - System.Int32 _index = default(System.Int32); - System.Single[] _val = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetMultisample(_pname,_index,_val); -} -static unsafe void Test_GetMultisample_27284() { - OpenTK.Graphics.OpenGL.NvExplicitMultisample _pname = default(OpenTK.Graphics.OpenGL.NvExplicitMultisample); - System.Int32 _index = default(System.Int32); - System.Single _val = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetMultisample(_pname,_index,out _val); -} -static unsafe void Test_GetMultisample_27285() { - OpenTK.Graphics.OpenGL.NvExplicitMultisample _pname = default(OpenTK.Graphics.OpenGL.NvExplicitMultisample); - System.Int32 _index = default(System.Int32); - System.Single* _val = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetMultisample(_pname,_index,_val); -} -static unsafe void Test_GetMultisample_27286() { - OpenTK.Graphics.OpenGL.NvExplicitMultisample _pname = default(OpenTK.Graphics.OpenGL.NvExplicitMultisample); - System.UInt32 _index = default(System.UInt32); - System.Single[] _val = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetMultisample(_pname,_index,_val); -} -static unsafe void Test_GetMultisample_27287() { - OpenTK.Graphics.OpenGL.NvExplicitMultisample _pname = default(OpenTK.Graphics.OpenGL.NvExplicitMultisample); - System.UInt32 _index = default(System.UInt32); - System.Single _val = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetMultisample(_pname,_index,out _val); -} -static unsafe void Test_GetMultisample_27288() { - OpenTK.Graphics.OpenGL.NvExplicitMultisample _pname = default(OpenTK.Graphics.OpenGL.NvExplicitMultisample); - System.UInt32 _index = default(System.UInt32); - System.Single* _val = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetMultisample(_pname,_index,_val); -} -static unsafe void Test_GetNamedBufferParameter_27289() { - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.NvShaderBufferLoad _pname = default(OpenTK.Graphics.OpenGL.NvShaderBufferLoad); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.NV.GetNamedBufferParameter(_buffer,_pname,_params); -} -static unsafe void Test_GetNamedBufferParameter_27290() { - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.NvShaderBufferLoad _pname = default(OpenTK.Graphics.OpenGL.NvShaderBufferLoad); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.GetNamedBufferParameter(_buffer,_pname,out _params); -} -static unsafe void Test_GetNamedBufferParameter_27291() { - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.NvShaderBufferLoad _pname = default(OpenTK.Graphics.OpenGL.NvShaderBufferLoad); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.NV.GetNamedBufferParameter(_buffer,_pname,_params); -} -static unsafe void Test_GetNamedBufferParameter_27292() { - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvShaderBufferLoad _pname = default(OpenTK.Graphics.OpenGL.NvShaderBufferLoad); - System.UInt64[] _params = default(System.UInt64[]); - OpenTK.Graphics.OpenGL.GL.NV.GetNamedBufferParameter(_buffer,_pname,_params); -} -static unsafe void Test_GetNamedBufferParameter_27293() { - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvShaderBufferLoad _pname = default(OpenTK.Graphics.OpenGL.NvShaderBufferLoad); - System.UInt64 _params = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.GetNamedBufferParameter(_buffer,_pname,out _params); -} -static unsafe void Test_GetNamedBufferParameter_27294() { - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvShaderBufferLoad _pname = default(OpenTK.Graphics.OpenGL.NvShaderBufferLoad); - System.UInt64* _params = default(System.UInt64*); - OpenTK.Graphics.OpenGL.GL.NV.GetNamedBufferParameter(_buffer,_pname,_params); -} -static unsafe void Test_GetOcclusionQuery_27295() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.NvOcclusionQuery _pname = default(OpenTK.Graphics.OpenGL.NvOcclusionQuery); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.GetOcclusionQuery(_id,_pname,_params); -} -static unsafe void Test_GetOcclusionQuery_27296() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.NvOcclusionQuery _pname = default(OpenTK.Graphics.OpenGL.NvOcclusionQuery); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.GetOcclusionQuery(_id,_pname,out _params); -} -static unsafe void Test_GetOcclusionQuery_27297() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.NvOcclusionQuery _pname = default(OpenTK.Graphics.OpenGL.NvOcclusionQuery); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.GetOcclusionQuery(_id,_pname,_params); -} -static unsafe void Test_GetOcclusionQuery_27298() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvOcclusionQuery _pname = default(OpenTK.Graphics.OpenGL.NvOcclusionQuery); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.GetOcclusionQuery(_id,_pname,_params); -} -static unsafe void Test_GetOcclusionQuery_27299() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvOcclusionQuery _pname = default(OpenTK.Graphics.OpenGL.NvOcclusionQuery); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.GetOcclusionQuery(_id,_pname,out _params); -} -static unsafe void Test_GetOcclusionQuery_27300() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvOcclusionQuery _pname = default(OpenTK.Graphics.OpenGL.NvOcclusionQuery); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.GetOcclusionQuery(_id,_pname,_params); -} -static unsafe void Test_GetOcclusionQuery_27301() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvOcclusionQuery _pname = default(OpenTK.Graphics.OpenGL.NvOcclusionQuery); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.NV.GetOcclusionQuery(_id,_pname,_params); -} -static unsafe void Test_GetOcclusionQuery_27302() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvOcclusionQuery _pname = default(OpenTK.Graphics.OpenGL.NvOcclusionQuery); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.GetOcclusionQuery(_id,_pname,out _params); -} -static unsafe void Test_GetOcclusionQuery_27303() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvOcclusionQuery _pname = default(OpenTK.Graphics.OpenGL.NvOcclusionQuery); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.NV.GetOcclusionQuery(_id,_pname,_params); -} -static unsafe void Test_GetPathColorGen_27304() { - OpenTK.Graphics.OpenGL.NvPathRendering _color = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _pname = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetPathColorGen(_color,_pname,_value); -} -static unsafe void Test_GetPathColorGen_27305() { - OpenTK.Graphics.OpenGL.NvPathRendering _color = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _pname = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetPathColorGen(_color,_pname,out _value); -} -static unsafe void Test_GetPathColorGen_27306() { - OpenTK.Graphics.OpenGL.NvPathRendering _color = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _pname = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetPathColorGen(_color,_pname,_value); -} -static unsafe void Test_GetPathColorGen_27307() { - OpenTK.Graphics.OpenGL.NvPathRendering _color = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _pname = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.GetPathColorGen(_color,_pname,_value); -} -static unsafe void Test_GetPathColorGen_27308() { - OpenTK.Graphics.OpenGL.NvPathRendering _color = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _pname = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.GetPathColorGen(_color,_pname,out _value); -} -static unsafe void Test_GetPathColorGen_27309() { - OpenTK.Graphics.OpenGL.NvPathRendering _color = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _pname = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.GetPathColorGen(_color,_pname,_value); -} -static unsafe void Test_GetPathCommand_27310() { - System.Int32 _path = default(System.Int32); - System.Byte r = OpenTK.Graphics.OpenGL.GL.NV.GetPathCommand(_path); -} -static unsafe void Test_GetPathCommand_27311() { - System.UInt32 _path = default(System.UInt32); - System.Byte r = OpenTK.Graphics.OpenGL.GL.NV.GetPathCommand(_path); -} -static unsafe void Test_GetPathCommands_27312() { - System.Int32 _path = default(System.Int32); - System.Byte[] _commands = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.NV.GetPathCommands(_path,_commands); -} -static unsafe void Test_GetPathCommands_27313() { - System.Int32 _path = default(System.Int32); - System.Byte _commands = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.NV.GetPathCommands(_path,out _commands); -} -static unsafe void Test_GetPathCommands_27314() { - System.Int32 _path = default(System.Int32); - System.Byte* _commands = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.NV.GetPathCommands(_path,_commands); -} -static unsafe void Test_GetPathCommands_27315() { - System.UInt32 _path = default(System.UInt32); - System.Byte[] _commands = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.NV.GetPathCommands(_path,_commands); -} -static unsafe void Test_GetPathCommands_27316() { - System.UInt32 _path = default(System.UInt32); - System.Byte _commands = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.NV.GetPathCommands(_path,out _commands); -} -static unsafe void Test_GetPathCommands_27317() { - System.UInt32 _path = default(System.UInt32); - System.Byte* _commands = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.NV.GetPathCommands(_path,_commands); -} -static unsafe void Test_GetPathCoord_27318() { - System.Int32 _path = default(System.Int32); - System.Single r = OpenTK.Graphics.OpenGL.GL.NV.GetPathCoord(_path); -} -static unsafe void Test_GetPathCoord_27319() { - System.UInt32 _path = default(System.UInt32); - System.Single r = OpenTK.Graphics.OpenGL.GL.NV.GetPathCoord(_path); -} -static unsafe void Test_GetPathCoords_27320() { - System.Int32 _path = default(System.Int32); - System.Single[] _coords = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetPathCoords(_path,_coords); -} -static unsafe void Test_GetPathCoords_27321() { - System.Int32 _path = default(System.Int32); - System.Single _coords = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetPathCoords(_path,out _coords); -} -static unsafe void Test_GetPathCoords_27322() { - System.Int32 _path = default(System.Int32); - System.Single* _coords = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetPathCoords(_path,_coords); -} -static unsafe void Test_GetPathCoords_27323() { - System.UInt32 _path = default(System.UInt32); - System.Single[] _coords = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetPathCoords(_path,_coords); -} -static unsafe void Test_GetPathCoords_27324() { - System.UInt32 _path = default(System.UInt32); - System.Single _coords = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetPathCoords(_path,out _coords); -} -static unsafe void Test_GetPathCoords_27325() { - System.UInt32 _path = default(System.UInt32); - System.Single* _coords = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetPathCoords(_path,_coords); -} -static unsafe void Test_GetPathDashArray_27326() { - System.Int32 _path = default(System.Int32); - System.Single r = OpenTK.Graphics.OpenGL.GL.NV.GetPathDashArray(_path); -} -static unsafe void Test_GetPathDashArray_27327() { - System.UInt32 _path = default(System.UInt32); - System.Single r = OpenTK.Graphics.OpenGL.GL.NV.GetPathDashArray(_path); -} -static unsafe void Test_GetPathDashArray_27328() { - System.Int32 _path = default(System.Int32); - System.Single[] _dashArray = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetPathDashArray(_path,_dashArray); -} -static unsafe void Test_GetPathDashArray_27329() { - System.Int32 _path = default(System.Int32); - System.Single _dashArray = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetPathDashArray(_path,out _dashArray); -} -static unsafe void Test_GetPathDashArray_27330() { - System.Int32 _path = default(System.Int32); - System.Single* _dashArray = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetPathDashArray(_path,_dashArray); -} -static unsafe void Test_GetPathDashArray_27331() { - System.UInt32 _path = default(System.UInt32); - System.Single[] _dashArray = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetPathDashArray(_path,_dashArray); -} -static unsafe void Test_GetPathDashArray_27332() { - System.UInt32 _path = default(System.UInt32); - System.Single _dashArray = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetPathDashArray(_path,out _dashArray); -} -static unsafe void Test_GetPathDashArray_27333() { - System.UInt32 _path = default(System.UInt32); - System.Single* _dashArray = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetPathDashArray(_path,_dashArray); -} -static unsafe void Test_GetPathLength_27334() { - System.Int32 _path = default(System.Int32); - System.Int32 _startSegment = default(System.Int32); - System.Int32 _numSegments = default(System.Int32); - System.Single r = OpenTK.Graphics.OpenGL.GL.NV.GetPathLength(_path,_startSegment,_numSegments); -} -static unsafe void Test_GetPathLength_27335() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _startSegment = default(System.Int32); - System.Int32 _numSegments = default(System.Int32); - System.Single r = OpenTK.Graphics.OpenGL.GL.NV.GetPathLength(_path,_startSegment,_numSegments); -} -static unsafe void Test_GetPathMetricRange_27336() { - System.Int32 _metricQueryMask = default(System.Int32); - System.Int32 _firstPathName = default(System.Int32); - System.Int32 _numPaths = default(System.Int32); - System.Int32 _stride = default(System.Int32); - System.Single[] _metrics = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetPathMetricRange(_metricQueryMask,_firstPathName,_numPaths,_stride,_metrics); -} -static unsafe void Test_GetPathMetricRange_27337() { - System.Int32 _metricQueryMask = default(System.Int32); - System.Int32 _firstPathName = default(System.Int32); - System.Int32 _numPaths = default(System.Int32); - System.Int32 _stride = default(System.Int32); - System.Single _metrics = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetPathMetricRange(_metricQueryMask,_firstPathName,_numPaths,_stride,out _metrics); -} -static unsafe void Test_GetPathMetricRange_27338() { - System.Int32 _metricQueryMask = default(System.Int32); - System.Int32 _firstPathName = default(System.Int32); - System.Int32 _numPaths = default(System.Int32); - System.Int32 _stride = default(System.Int32); - System.Single* _metrics = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetPathMetricRange(_metricQueryMask,_firstPathName,_numPaths,_stride,_metrics); -} -static unsafe void Test_GetPathMetricRange_27339() { - System.UInt32 _metricQueryMask = default(System.UInt32); - System.UInt32 _firstPathName = default(System.UInt32); - System.Int32 _numPaths = default(System.Int32); - System.Int32 _stride = default(System.Int32); - System.Single[] _metrics = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetPathMetricRange(_metricQueryMask,_firstPathName,_numPaths,_stride,_metrics); -} -static unsafe void Test_GetPathMetricRange_27340() { - System.UInt32 _metricQueryMask = default(System.UInt32); - System.UInt32 _firstPathName = default(System.UInt32); - System.Int32 _numPaths = default(System.Int32); - System.Int32 _stride = default(System.Int32); - System.Single _metrics = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetPathMetricRange(_metricQueryMask,_firstPathName,_numPaths,_stride,out _metrics); -} -static unsafe void Test_GetPathMetricRange_27341() { - System.UInt32 _metricQueryMask = default(System.UInt32); - System.UInt32 _firstPathName = default(System.UInt32); - System.Int32 _numPaths = default(System.Int32); - System.Int32 _stride = default(System.Int32); - System.Single* _metrics = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetPathMetricRange(_metricQueryMask,_firstPathName,_numPaths,_stride,_metrics); -} -static unsafe void Test_GetPathMetric_27342() { - System.Int32 _metricQueryMask = default(System.Int32); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _paths = default(System.IntPtr); - System.Int32 _pathBase = default(System.Int32); - System.Int32 _stride = default(System.Int32); - System.Single[] _metrics = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetPathMetric(_metricQueryMask,_numPaths,_pathNameType,_paths,_pathBase,_stride,_metrics); -} -static unsafe void Test_GetPathMetric_27343() { - System.Int32 _metricQueryMask = default(System.Int32); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _paths = default(System.IntPtr); - System.Int32 _pathBase = default(System.Int32); - System.Int32 _stride = default(System.Int32); - System.Single _metrics = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetPathMetric(_metricQueryMask,_numPaths,_pathNameType,_paths,_pathBase,_stride,out _metrics); -} -static unsafe void Test_GetPathMetric_27344() { - System.Int32 _metricQueryMask = default(System.Int32); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _paths = default(System.IntPtr); - System.Int32 _pathBase = default(System.Int32); - System.Int32 _stride = default(System.Int32); - System.Single* _metrics = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetPathMetric(_metricQueryMask,_numPaths,_pathNameType,_paths,_pathBase,_stride,_metrics); -} -static unsafe void Test_GetPathMetric_27345() { - System.Int32 _metricQueryMask = default(System.Int32); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _paths = default(int[]); - System.Int32 _pathBase = default(System.Int32); - System.Int32 _stride = default(System.Int32); - System.Single[] _metrics = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetPathMetric(_metricQueryMask,_numPaths,_pathNameType,_paths,_pathBase,_stride,_metrics); -} -static unsafe void Test_GetPathMetric_27346() { - System.Int32 _metricQueryMask = default(System.Int32); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _paths = default(int[]); - System.Int32 _pathBase = default(System.Int32); - System.Int32 _stride = default(System.Int32); - System.Single _metrics = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetPathMetric(_metricQueryMask,_numPaths,_pathNameType,_paths,_pathBase,_stride,out _metrics); -} -static unsafe void Test_GetPathMetric_27347() { - System.Int32 _metricQueryMask = default(System.Int32); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _paths = default(int[]); - System.Int32 _pathBase = default(System.Int32); - System.Int32 _stride = default(System.Int32); - System.Single* _metrics = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetPathMetric(_metricQueryMask,_numPaths,_pathNameType,_paths,_pathBase,_stride,_metrics); -} -static unsafe void Test_GetPathMetric_27348() { - System.Int32 _metricQueryMask = default(System.Int32); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _paths = default(int[,]); - System.Int32 _pathBase = default(System.Int32); - System.Int32 _stride = default(System.Int32); - System.Single[] _metrics = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetPathMetric(_metricQueryMask,_numPaths,_pathNameType,_paths,_pathBase,_stride,_metrics); -} -static unsafe void Test_GetPathMetric_27349() { - System.Int32 _metricQueryMask = default(System.Int32); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _paths = default(int[,]); - System.Int32 _pathBase = default(System.Int32); - System.Int32 _stride = default(System.Int32); - System.Single _metrics = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetPathMetric(_metricQueryMask,_numPaths,_pathNameType,_paths,_pathBase,_stride,out _metrics); -} -static unsafe void Test_GetPathMetric_27350() { - System.Int32 _metricQueryMask = default(System.Int32); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _paths = default(int[,]); - System.Int32 _pathBase = default(System.Int32); - System.Int32 _stride = default(System.Int32); - System.Single* _metrics = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetPathMetric(_metricQueryMask,_numPaths,_pathNameType,_paths,_pathBase,_stride,_metrics); -} -static unsafe void Test_GetPathMetric_27351() { - System.Int32 _metricQueryMask = default(System.Int32); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _paths = default(int[,,]); - System.Int32 _pathBase = default(System.Int32); - System.Int32 _stride = default(System.Int32); - System.Single[] _metrics = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetPathMetric(_metricQueryMask,_numPaths,_pathNameType,_paths,_pathBase,_stride,_metrics); -} -static unsafe void Test_GetPathMetric_27352() { - System.Int32 _metricQueryMask = default(System.Int32); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _paths = default(int[,,]); - System.Int32 _pathBase = default(System.Int32); - System.Int32 _stride = default(System.Int32); - System.Single _metrics = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetPathMetric(_metricQueryMask,_numPaths,_pathNameType,_paths,_pathBase,_stride,out _metrics); -} -static unsafe void Test_GetPathMetric_27353() { - System.Int32 _metricQueryMask = default(System.Int32); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _paths = default(int[,,]); - System.Int32 _pathBase = default(System.Int32); - System.Int32 _stride = default(System.Int32); - System.Single* _metrics = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetPathMetric(_metricQueryMask,_numPaths,_pathNameType,_paths,_pathBase,_stride,_metrics); -} -static unsafe void Test_GetPathMetric_27354() { - System.Int32 _metricQueryMask = default(System.Int32); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _paths = default(int); - System.Int32 _pathBase = default(System.Int32); - System.Int32 _stride = default(System.Int32); - System.Single[] _metrics = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetPathMetric(_metricQueryMask,_numPaths,_pathNameType,ref _paths,_pathBase,_stride,_metrics); -} -static unsafe void Test_GetPathMetric_27355() { - System.Int32 _metricQueryMask = default(System.Int32); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _paths = default(int); - System.Int32 _pathBase = default(System.Int32); - System.Int32 _stride = default(System.Int32); - System.Single _metrics = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetPathMetric(_metricQueryMask,_numPaths,_pathNameType,ref _paths,_pathBase,_stride,out _metrics); -} -static unsafe void Test_GetPathMetric_27356() { - System.Int32 _metricQueryMask = default(System.Int32); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _paths = default(int); - System.Int32 _pathBase = default(System.Int32); - System.Int32 _stride = default(System.Int32); - System.Single* _metrics = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetPathMetric(_metricQueryMask,_numPaths,_pathNameType,ref _paths,_pathBase,_stride,_metrics); -} -static unsafe void Test_GetPathMetric_27357() { - System.UInt32 _metricQueryMask = default(System.UInt32); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _paths = default(System.IntPtr); - System.UInt32 _pathBase = default(System.UInt32); - System.Int32 _stride = default(System.Int32); - System.Single[] _metrics = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetPathMetric(_metricQueryMask,_numPaths,_pathNameType,_paths,_pathBase,_stride,_metrics); -} -static unsafe void Test_GetPathMetric_27358() { - System.UInt32 _metricQueryMask = default(System.UInt32); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _paths = default(System.IntPtr); - System.UInt32 _pathBase = default(System.UInt32); - System.Int32 _stride = default(System.Int32); - System.Single _metrics = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetPathMetric(_metricQueryMask,_numPaths,_pathNameType,_paths,_pathBase,_stride,out _metrics); -} -static unsafe void Test_GetPathMetric_27359() { - System.UInt32 _metricQueryMask = default(System.UInt32); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _paths = default(System.IntPtr); - System.UInt32 _pathBase = default(System.UInt32); - System.Int32 _stride = default(System.Int32); - System.Single* _metrics = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetPathMetric(_metricQueryMask,_numPaths,_pathNameType,_paths,_pathBase,_stride,_metrics); -} -static unsafe void Test_GetPathMetric_27360() { - System.UInt32 _metricQueryMask = default(System.UInt32); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _paths = default(int[]); - System.UInt32 _pathBase = default(System.UInt32); - System.Int32 _stride = default(System.Int32); - System.Single[] _metrics = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetPathMetric(_metricQueryMask,_numPaths,_pathNameType,_paths,_pathBase,_stride,_metrics); -} -static unsafe void Test_GetPathMetric_27361() { - System.UInt32 _metricQueryMask = default(System.UInt32); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _paths = default(int[]); - System.UInt32 _pathBase = default(System.UInt32); - System.Int32 _stride = default(System.Int32); - System.Single _metrics = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetPathMetric(_metricQueryMask,_numPaths,_pathNameType,_paths,_pathBase,_stride,out _metrics); -} -static unsafe void Test_GetPathMetric_27362() { - System.UInt32 _metricQueryMask = default(System.UInt32); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _paths = default(int[]); - System.UInt32 _pathBase = default(System.UInt32); - System.Int32 _stride = default(System.Int32); - System.Single* _metrics = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetPathMetric(_metricQueryMask,_numPaths,_pathNameType,_paths,_pathBase,_stride,_metrics); -} -static unsafe void Test_GetPathMetric_27363() { - System.UInt32 _metricQueryMask = default(System.UInt32); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _paths = default(int[,]); - System.UInt32 _pathBase = default(System.UInt32); - System.Int32 _stride = default(System.Int32); - System.Single[] _metrics = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetPathMetric(_metricQueryMask,_numPaths,_pathNameType,_paths,_pathBase,_stride,_metrics); -} -static unsafe void Test_GetPathMetric_27364() { - System.UInt32 _metricQueryMask = default(System.UInt32); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _paths = default(int[,]); - System.UInt32 _pathBase = default(System.UInt32); - System.Int32 _stride = default(System.Int32); - System.Single _metrics = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetPathMetric(_metricQueryMask,_numPaths,_pathNameType,_paths,_pathBase,_stride,out _metrics); -} -static unsafe void Test_GetPathMetric_27365() { - System.UInt32 _metricQueryMask = default(System.UInt32); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _paths = default(int[,]); - System.UInt32 _pathBase = default(System.UInt32); - System.Int32 _stride = default(System.Int32); - System.Single* _metrics = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetPathMetric(_metricQueryMask,_numPaths,_pathNameType,_paths,_pathBase,_stride,_metrics); -} -static unsafe void Test_GetPathMetric_27366() { - System.UInt32 _metricQueryMask = default(System.UInt32); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _paths = default(int[,,]); - System.UInt32 _pathBase = default(System.UInt32); - System.Int32 _stride = default(System.Int32); - System.Single[] _metrics = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetPathMetric(_metricQueryMask,_numPaths,_pathNameType,_paths,_pathBase,_stride,_metrics); -} -static unsafe void Test_GetPathMetric_27367() { - System.UInt32 _metricQueryMask = default(System.UInt32); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _paths = default(int[,,]); - System.UInt32 _pathBase = default(System.UInt32); - System.Int32 _stride = default(System.Int32); - System.Single _metrics = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetPathMetric(_metricQueryMask,_numPaths,_pathNameType,_paths,_pathBase,_stride,out _metrics); -} -static unsafe void Test_GetPathMetric_27368() { - System.UInt32 _metricQueryMask = default(System.UInt32); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _paths = default(int[,,]); - System.UInt32 _pathBase = default(System.UInt32); - System.Int32 _stride = default(System.Int32); - System.Single* _metrics = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetPathMetric(_metricQueryMask,_numPaths,_pathNameType,_paths,_pathBase,_stride,_metrics); -} -static unsafe void Test_GetPathMetric_27369() { - System.UInt32 _metricQueryMask = default(System.UInt32); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _paths = default(int); - System.UInt32 _pathBase = default(System.UInt32); - System.Int32 _stride = default(System.Int32); - System.Single[] _metrics = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetPathMetric(_metricQueryMask,_numPaths,_pathNameType,ref _paths,_pathBase,_stride,_metrics); -} -static unsafe void Test_GetPathMetric_27370() { - System.UInt32 _metricQueryMask = default(System.UInt32); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _paths = default(int); - System.UInt32 _pathBase = default(System.UInt32); - System.Int32 _stride = default(System.Int32); - System.Single _metrics = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetPathMetric(_metricQueryMask,_numPaths,_pathNameType,ref _paths,_pathBase,_stride,out _metrics); -} -static unsafe void Test_GetPathMetric_27371() { - System.UInt32 _metricQueryMask = default(System.UInt32); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _paths = default(int); - System.UInt32 _pathBase = default(System.UInt32); - System.Int32 _stride = default(System.Int32); - System.Single* _metrics = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetPathMetric(_metricQueryMask,_numPaths,_pathNameType,ref _paths,_pathBase,_stride,_metrics); -} -static unsafe void Test_GetPathParameter_27372() { - System.Int32 _path = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pname = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetPathParameter(_path,_pname,_value); -} -static unsafe void Test_GetPathParameter_27373() { - System.Int32 _path = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pname = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetPathParameter(_path,_pname,out _value); -} -static unsafe void Test_GetPathParameter_27374() { - System.Int32 _path = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pname = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetPathParameter(_path,_pname,_value); -} -static unsafe void Test_GetPathParameter_27375() { - System.UInt32 _path = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _pname = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetPathParameter(_path,_pname,_value); -} -static unsafe void Test_GetPathParameter_27376() { - System.UInt32 _path = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _pname = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetPathParameter(_path,_pname,out _value); -} -static unsafe void Test_GetPathParameter_27377() { - System.UInt32 _path = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _pname = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetPathParameter(_path,_pname,_value); -} -static unsafe void Test_GetPathParameter_27378() { - System.Int32 _path = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pname = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.GetPathParameter(_path,_pname,_value); -} -static unsafe void Test_GetPathParameter_27379() { - System.Int32 _path = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pname = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.GetPathParameter(_path,_pname,out _value); -} -static unsafe void Test_GetPathParameter_27380() { - System.Int32 _path = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pname = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.GetPathParameter(_path,_pname,_value); -} -static unsafe void Test_GetPathParameter_27381() { - System.UInt32 _path = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _pname = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.GetPathParameter(_path,_pname,_value); -} -static unsafe void Test_GetPathParameter_27382() { - System.UInt32 _path = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _pname = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.GetPathParameter(_path,_pname,out _value); -} -static unsafe void Test_GetPathParameter_27383() { - System.UInt32 _path = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _pname = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.GetPathParameter(_path,_pname,_value); -} -static unsafe void Test_GetPathSpacing_27384() { - OpenTK.Graphics.OpenGL.NvPathRendering _pathListMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _paths = default(System.IntPtr); - System.Int32 _pathBase = default(System.Int32); - System.Single _advanceScale = default(System.Single); - System.Single _kerningScale = default(System.Single); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _returnedSpacing = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetPathSpacing(_pathListMode,_numPaths,_pathNameType,_paths,_pathBase,_advanceScale,_kerningScale,_transformType,_returnedSpacing); -} -static unsafe void Test_GetPathSpacing_27385() { - OpenTK.Graphics.OpenGL.NvPathRendering _pathListMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _paths = default(System.IntPtr); - System.Int32 _pathBase = default(System.Int32); - System.Single _advanceScale = default(System.Single); - System.Single _kerningScale = default(System.Single); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _returnedSpacing = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetPathSpacing(_pathListMode,_numPaths,_pathNameType,_paths,_pathBase,_advanceScale,_kerningScale,_transformType,out _returnedSpacing); -} -static unsafe void Test_GetPathSpacing_27386() { - OpenTK.Graphics.OpenGL.NvPathRendering _pathListMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _paths = default(System.IntPtr); - System.Int32 _pathBase = default(System.Int32); - System.Single _advanceScale = default(System.Single); - System.Single _kerningScale = default(System.Single); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _returnedSpacing = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetPathSpacing(_pathListMode,_numPaths,_pathNameType,_paths,_pathBase,_advanceScale,_kerningScale,_transformType,_returnedSpacing); -} -static unsafe void Test_GetPathSpacing_27387() { - OpenTK.Graphics.OpenGL.NvPathRendering _pathListMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _paths = default(System.IntPtr); - System.UInt32 _pathBase = default(System.UInt32); - System.Single _advanceScale = default(System.Single); - System.Single _kerningScale = default(System.Single); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _returnedSpacing = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetPathSpacing(_pathListMode,_numPaths,_pathNameType,_paths,_pathBase,_advanceScale,_kerningScale,_transformType,_returnedSpacing); -} -static unsafe void Test_GetPathSpacing_27388() { - OpenTK.Graphics.OpenGL.NvPathRendering _pathListMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _paths = default(System.IntPtr); - System.UInt32 _pathBase = default(System.UInt32); - System.Single _advanceScale = default(System.Single); - System.Single _kerningScale = default(System.Single); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _returnedSpacing = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetPathSpacing(_pathListMode,_numPaths,_pathNameType,_paths,_pathBase,_advanceScale,_kerningScale,_transformType,out _returnedSpacing); -} -static unsafe void Test_GetPathSpacing_27389() { - OpenTK.Graphics.OpenGL.NvPathRendering _pathListMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _paths = default(System.IntPtr); - System.UInt32 _pathBase = default(System.UInt32); - System.Single _advanceScale = default(System.Single); - System.Single _kerningScale = default(System.Single); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _returnedSpacing = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetPathSpacing(_pathListMode,_numPaths,_pathNameType,_paths,_pathBase,_advanceScale,_kerningScale,_transformType,_returnedSpacing); -} -static unsafe void Test_GetPathSpacing_27390() { - OpenTK.Graphics.OpenGL.NvPathRendering _pathListMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _paths = default(int[]); - System.Int32 _pathBase = default(System.Int32); - System.Single _advanceScale = default(System.Single); - System.Single _kerningScale = default(System.Single); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _returnedSpacing = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetPathSpacing(_pathListMode,_numPaths,_pathNameType,_paths,_pathBase,_advanceScale,_kerningScale,_transformType,_returnedSpacing); -} -static unsafe void Test_GetPathSpacing_27391() { - OpenTK.Graphics.OpenGL.NvPathRendering _pathListMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _paths = default(int[]); - System.Int32 _pathBase = default(System.Int32); - System.Single _advanceScale = default(System.Single); - System.Single _kerningScale = default(System.Single); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _returnedSpacing = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetPathSpacing(_pathListMode,_numPaths,_pathNameType,_paths,_pathBase,_advanceScale,_kerningScale,_transformType,out _returnedSpacing); -} -static unsafe void Test_GetPathSpacing_27392() { - OpenTK.Graphics.OpenGL.NvPathRendering _pathListMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _paths = default(int[]); - System.Int32 _pathBase = default(System.Int32); - System.Single _advanceScale = default(System.Single); - System.Single _kerningScale = default(System.Single); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _returnedSpacing = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetPathSpacing(_pathListMode,_numPaths,_pathNameType,_paths,_pathBase,_advanceScale,_kerningScale,_transformType,_returnedSpacing); -} -static unsafe void Test_GetPathSpacing_27393() { - OpenTK.Graphics.OpenGL.NvPathRendering _pathListMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _paths = default(int[]); - System.UInt32 _pathBase = default(System.UInt32); - System.Single _advanceScale = default(System.Single); - System.Single _kerningScale = default(System.Single); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _returnedSpacing = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetPathSpacing(_pathListMode,_numPaths,_pathNameType,_paths,_pathBase,_advanceScale,_kerningScale,_transformType,_returnedSpacing); -} -static unsafe void Test_GetPathSpacing_27394() { - OpenTK.Graphics.OpenGL.NvPathRendering _pathListMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _paths = default(int[]); - System.UInt32 _pathBase = default(System.UInt32); - System.Single _advanceScale = default(System.Single); - System.Single _kerningScale = default(System.Single); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _returnedSpacing = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetPathSpacing(_pathListMode,_numPaths,_pathNameType,_paths,_pathBase,_advanceScale,_kerningScale,_transformType,out _returnedSpacing); -} -static unsafe void Test_GetPathSpacing_27395() { - OpenTK.Graphics.OpenGL.NvPathRendering _pathListMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _paths = default(int[]); - System.UInt32 _pathBase = default(System.UInt32); - System.Single _advanceScale = default(System.Single); - System.Single _kerningScale = default(System.Single); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _returnedSpacing = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetPathSpacing(_pathListMode,_numPaths,_pathNameType,_paths,_pathBase,_advanceScale,_kerningScale,_transformType,_returnedSpacing); -} -static unsafe void Test_GetPathSpacing_27396() { - OpenTK.Graphics.OpenGL.NvPathRendering _pathListMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _paths = default(int[,]); - System.Int32 _pathBase = default(System.Int32); - System.Single _advanceScale = default(System.Single); - System.Single _kerningScale = default(System.Single); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _returnedSpacing = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetPathSpacing(_pathListMode,_numPaths,_pathNameType,_paths,_pathBase,_advanceScale,_kerningScale,_transformType,_returnedSpacing); -} -static unsafe void Test_GetPathSpacing_27397() { - OpenTK.Graphics.OpenGL.NvPathRendering _pathListMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _paths = default(int[,]); - System.Int32 _pathBase = default(System.Int32); - System.Single _advanceScale = default(System.Single); - System.Single _kerningScale = default(System.Single); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _returnedSpacing = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetPathSpacing(_pathListMode,_numPaths,_pathNameType,_paths,_pathBase,_advanceScale,_kerningScale,_transformType,out _returnedSpacing); -} -static unsafe void Test_GetPathSpacing_27398() { - OpenTK.Graphics.OpenGL.NvPathRendering _pathListMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _paths = default(int[,]); - System.Int32 _pathBase = default(System.Int32); - System.Single _advanceScale = default(System.Single); - System.Single _kerningScale = default(System.Single); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _returnedSpacing = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetPathSpacing(_pathListMode,_numPaths,_pathNameType,_paths,_pathBase,_advanceScale,_kerningScale,_transformType,_returnedSpacing); -} -static unsafe void Test_GetPathSpacing_27399() { - OpenTK.Graphics.OpenGL.NvPathRendering _pathListMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _paths = default(int[,]); - System.UInt32 _pathBase = default(System.UInt32); - System.Single _advanceScale = default(System.Single); - System.Single _kerningScale = default(System.Single); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _returnedSpacing = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetPathSpacing(_pathListMode,_numPaths,_pathNameType,_paths,_pathBase,_advanceScale,_kerningScale,_transformType,_returnedSpacing); -} -static unsafe void Test_GetPathSpacing_27400() { - OpenTK.Graphics.OpenGL.NvPathRendering _pathListMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _paths = default(int[,]); - System.UInt32 _pathBase = default(System.UInt32); - System.Single _advanceScale = default(System.Single); - System.Single _kerningScale = default(System.Single); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _returnedSpacing = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetPathSpacing(_pathListMode,_numPaths,_pathNameType,_paths,_pathBase,_advanceScale,_kerningScale,_transformType,out _returnedSpacing); -} -static unsafe void Test_GetPathSpacing_27401() { - OpenTK.Graphics.OpenGL.NvPathRendering _pathListMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _paths = default(int[,]); - System.UInt32 _pathBase = default(System.UInt32); - System.Single _advanceScale = default(System.Single); - System.Single _kerningScale = default(System.Single); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _returnedSpacing = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetPathSpacing(_pathListMode,_numPaths,_pathNameType,_paths,_pathBase,_advanceScale,_kerningScale,_transformType,_returnedSpacing); -} -static unsafe void Test_GetPathSpacing_27402() { - OpenTK.Graphics.OpenGL.NvPathRendering _pathListMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _paths = default(int[,,]); - System.Int32 _pathBase = default(System.Int32); - System.Single _advanceScale = default(System.Single); - System.Single _kerningScale = default(System.Single); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _returnedSpacing = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetPathSpacing(_pathListMode,_numPaths,_pathNameType,_paths,_pathBase,_advanceScale,_kerningScale,_transformType,_returnedSpacing); -} -static unsafe void Test_GetPathSpacing_27403() { - OpenTK.Graphics.OpenGL.NvPathRendering _pathListMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _paths = default(int[,,]); - System.Int32 _pathBase = default(System.Int32); - System.Single _advanceScale = default(System.Single); - System.Single _kerningScale = default(System.Single); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _returnedSpacing = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetPathSpacing(_pathListMode,_numPaths,_pathNameType,_paths,_pathBase,_advanceScale,_kerningScale,_transformType,out _returnedSpacing); -} -static unsafe void Test_GetPathSpacing_27404() { - OpenTK.Graphics.OpenGL.NvPathRendering _pathListMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _paths = default(int[,,]); - System.Int32 _pathBase = default(System.Int32); - System.Single _advanceScale = default(System.Single); - System.Single _kerningScale = default(System.Single); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _returnedSpacing = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetPathSpacing(_pathListMode,_numPaths,_pathNameType,_paths,_pathBase,_advanceScale,_kerningScale,_transformType,_returnedSpacing); -} -static unsafe void Test_GetPathSpacing_27405() { - OpenTK.Graphics.OpenGL.NvPathRendering _pathListMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _paths = default(int[,,]); - System.UInt32 _pathBase = default(System.UInt32); - System.Single _advanceScale = default(System.Single); - System.Single _kerningScale = default(System.Single); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _returnedSpacing = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetPathSpacing(_pathListMode,_numPaths,_pathNameType,_paths,_pathBase,_advanceScale,_kerningScale,_transformType,_returnedSpacing); -} -static unsafe void Test_GetPathSpacing_27406() { - OpenTK.Graphics.OpenGL.NvPathRendering _pathListMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _paths = default(int[,,]); - System.UInt32 _pathBase = default(System.UInt32); - System.Single _advanceScale = default(System.Single); - System.Single _kerningScale = default(System.Single); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _returnedSpacing = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetPathSpacing(_pathListMode,_numPaths,_pathNameType,_paths,_pathBase,_advanceScale,_kerningScale,_transformType,out _returnedSpacing); -} -static unsafe void Test_GetPathSpacing_27407() { - OpenTK.Graphics.OpenGL.NvPathRendering _pathListMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _paths = default(int[,,]); - System.UInt32 _pathBase = default(System.UInt32); - System.Single _advanceScale = default(System.Single); - System.Single _kerningScale = default(System.Single); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _returnedSpacing = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetPathSpacing(_pathListMode,_numPaths,_pathNameType,_paths,_pathBase,_advanceScale,_kerningScale,_transformType,_returnedSpacing); -} -static unsafe void Test_GetPathSpacing_27408() { - OpenTK.Graphics.OpenGL.NvPathRendering _pathListMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _paths = default(int); - System.Int32 _pathBase = default(System.Int32); - System.Single _advanceScale = default(System.Single); - System.Single _kerningScale = default(System.Single); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _returnedSpacing = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetPathSpacing(_pathListMode,_numPaths,_pathNameType,ref _paths,_pathBase,_advanceScale,_kerningScale,_transformType,_returnedSpacing); -} -static unsafe void Test_GetPathSpacing_27409() { - OpenTK.Graphics.OpenGL.NvPathRendering _pathListMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _paths = default(int); - System.Int32 _pathBase = default(System.Int32); - System.Single _advanceScale = default(System.Single); - System.Single _kerningScale = default(System.Single); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _returnedSpacing = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetPathSpacing(_pathListMode,_numPaths,_pathNameType,ref _paths,_pathBase,_advanceScale,_kerningScale,_transformType,out _returnedSpacing); -} -static unsafe void Test_GetPathSpacing_27410() { - OpenTK.Graphics.OpenGL.NvPathRendering _pathListMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _paths = default(int); - System.Int32 _pathBase = default(System.Int32); - System.Single _advanceScale = default(System.Single); - System.Single _kerningScale = default(System.Single); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _returnedSpacing = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetPathSpacing(_pathListMode,_numPaths,_pathNameType,ref _paths,_pathBase,_advanceScale,_kerningScale,_transformType,_returnedSpacing); -} -static unsafe void Test_GetPathSpacing_27411() { - OpenTK.Graphics.OpenGL.NvPathRendering _pathListMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _paths = default(int); - System.UInt32 _pathBase = default(System.UInt32); - System.Single _advanceScale = default(System.Single); - System.Single _kerningScale = default(System.Single); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _returnedSpacing = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetPathSpacing(_pathListMode,_numPaths,_pathNameType,ref _paths,_pathBase,_advanceScale,_kerningScale,_transformType,_returnedSpacing); -} -static unsafe void Test_GetPathSpacing_27412() { - OpenTK.Graphics.OpenGL.NvPathRendering _pathListMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _paths = default(int); - System.UInt32 _pathBase = default(System.UInt32); - System.Single _advanceScale = default(System.Single); - System.Single _kerningScale = default(System.Single); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _returnedSpacing = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetPathSpacing(_pathListMode,_numPaths,_pathNameType,ref _paths,_pathBase,_advanceScale,_kerningScale,_transformType,out _returnedSpacing); -} -static unsafe void Test_GetPathSpacing_27413() { - OpenTK.Graphics.OpenGL.NvPathRendering _pathListMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _paths = default(int); - System.UInt32 _pathBase = default(System.UInt32); - System.Single _advanceScale = default(System.Single); - System.Single _kerningScale = default(System.Single); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _returnedSpacing = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetPathSpacing(_pathListMode,_numPaths,_pathNameType,ref _paths,_pathBase,_advanceScale,_kerningScale,_transformType,_returnedSpacing); -} -static unsafe void Test_GetPathTexGen_27414() { - OpenTK.Graphics.OpenGL.TextureUnit _texCoordSet = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.NvPathRendering _pname = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetPathTexGen(_texCoordSet,_pname,_value); -} -static unsafe void Test_GetPathTexGen_27415() { - OpenTK.Graphics.OpenGL.TextureUnit _texCoordSet = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.NvPathRendering _pname = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetPathTexGen(_texCoordSet,_pname,out _value); -} -static unsafe void Test_GetPathTexGen_27416() { - OpenTK.Graphics.OpenGL.TextureUnit _texCoordSet = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.NvPathRendering _pname = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetPathTexGen(_texCoordSet,_pname,_value); -} -static unsafe void Test_GetPathTexGen_27417() { - OpenTK.Graphics.OpenGL.TextureUnit _texCoordSet = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.NvPathRendering _pname = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.GetPathTexGen(_texCoordSet,_pname,_value); -} -static unsafe void Test_GetPathTexGen_27418() { - OpenTK.Graphics.OpenGL.TextureUnit _texCoordSet = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.NvPathRendering _pname = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.GetPathTexGen(_texCoordSet,_pname,out _value); -} -static unsafe void Test_GetPathTexGen_27419() { - OpenTK.Graphics.OpenGL.TextureUnit _texCoordSet = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Graphics.OpenGL.NvPathRendering _pname = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.GetPathTexGen(_texCoordSet,_pname,_value); -} -static unsafe void Test_GetProgramEnvParameterI_27420() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.Int32 _index = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramEnvParameterI(_target,_index,_params); -} -static unsafe void Test_GetProgramEnvParameterI_27421() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.Int32 _index = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramEnvParameterI(_target,_index,out _params); -} -static unsafe void Test_GetProgramEnvParameterI_27422() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.Int32 _index = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramEnvParameterI(_target,_index,_params); -} -static unsafe void Test_GetProgramEnvParameterI_27423() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.UInt32 _index = default(System.UInt32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramEnvParameterI(_target,_index,_params); -} -static unsafe void Test_GetProgramEnvParameterI_27424() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.UInt32 _index = default(System.UInt32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramEnvParameterI(_target,_index,out _params); -} -static unsafe void Test_GetProgramEnvParameterI_27425() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.UInt32 _index = default(System.UInt32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramEnvParameterI(_target,_index,_params); -} -static unsafe void Test_GetProgramEnvParameterI_27426() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.UInt32 _index = default(System.UInt32); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramEnvParameterI(_target,_index,_params); -} -static unsafe void Test_GetProgramEnvParameterI_27427() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.UInt32 _index = default(System.UInt32); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramEnvParameterI(_target,_index,out _params); -} -static unsafe void Test_GetProgramEnvParameterI_27428() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.UInt32 _index = default(System.UInt32); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramEnvParameterI(_target,_index,_params); -} -static unsafe void Test_GetProgram_27429() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexProgram _pname = default(OpenTK.Graphics.OpenGL.NvVertexProgram); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.GetProgram(_id,_pname,_params); -} -static unsafe void Test_GetProgram_27430() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexProgram _pname = default(OpenTK.Graphics.OpenGL.NvVertexProgram); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.GetProgram(_id,_pname,out _params); -} -static unsafe void Test_GetProgram_27431() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexProgram _pname = default(OpenTK.Graphics.OpenGL.NvVertexProgram); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.GetProgram(_id,_pname,_params); -} -static unsafe void Test_GetProgram_27432() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVertexProgram _pname = default(OpenTK.Graphics.OpenGL.NvVertexProgram); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.GetProgram(_id,_pname,_params); -} -static unsafe void Test_GetProgram_27433() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVertexProgram _pname = default(OpenTK.Graphics.OpenGL.NvVertexProgram); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.GetProgram(_id,_pname,out _params); -} -static unsafe void Test_GetProgram_27434() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVertexProgram _pname = default(OpenTK.Graphics.OpenGL.NvVertexProgram); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.GetProgram(_id,_pname,_params); -} -static unsafe void Test_GetProgramLocalParameterI_27435() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.Int32 _index = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramLocalParameterI(_target,_index,_params); -} -static unsafe void Test_GetProgramLocalParameterI_27436() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.Int32 _index = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramLocalParameterI(_target,_index,out _params); -} -static unsafe void Test_GetProgramLocalParameterI_27437() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.Int32 _index = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramLocalParameterI(_target,_index,_params); -} -static unsafe void Test_GetProgramLocalParameterI_27438() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.UInt32 _index = default(System.UInt32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramLocalParameterI(_target,_index,_params); -} -static unsafe void Test_GetProgramLocalParameterI_27439() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.UInt32 _index = default(System.UInt32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramLocalParameterI(_target,_index,out _params); -} -static unsafe void Test_GetProgramLocalParameterI_27440() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.UInt32 _index = default(System.UInt32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramLocalParameterI(_target,_index,_params); -} -static unsafe void Test_GetProgramLocalParameterI_27441() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.UInt32 _index = default(System.UInt32); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramLocalParameterI(_target,_index,_params); -} -static unsafe void Test_GetProgramLocalParameterI_27442() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.UInt32 _index = default(System.UInt32); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramLocalParameterI(_target,_index,out _params); -} -static unsafe void Test_GetProgramLocalParameterI_27443() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.UInt32 _index = default(System.UInt32); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramLocalParameterI(_target,_index,_params); -} -static unsafe void Test_GetProgramNamedParameter_27444() { - System.Int32 _id = default(System.Int32); - System.Int32 _len = default(System.Int32); - System.Byte _name = default(System.Byte); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramNamedParameter(_id,_len,ref _name,_params); -} -static unsafe void Test_GetProgramNamedParameter_27445() { - System.Int32 _id = default(System.Int32); - System.Int32 _len = default(System.Int32); - System.Byte _name = default(System.Byte); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramNamedParameter(_id,_len,ref _name,out _params); -} -static unsafe void Test_GetProgramNamedParameter_27446() { - System.Int32 _id = default(System.Int32); - System.Int32 _len = default(System.Int32); - System.Byte* _name = default(System.Byte*); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramNamedParameter(_id,_len,_name,_params); -} -static unsafe void Test_GetProgramNamedParameter_27447() { - System.UInt32 _id = default(System.UInt32); - System.Int32 _len = default(System.Int32); - System.Byte _name = default(System.Byte); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramNamedParameter(_id,_len,ref _name,_params); -} -static unsafe void Test_GetProgramNamedParameter_27448() { - System.UInt32 _id = default(System.UInt32); - System.Int32 _len = default(System.Int32); - System.Byte _name = default(System.Byte); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramNamedParameter(_id,_len,ref _name,out _params); -} -static unsafe void Test_GetProgramNamedParameter_27449() { - System.UInt32 _id = default(System.UInt32); - System.Int32 _len = default(System.Int32); - System.Byte* _name = default(System.Byte*); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramNamedParameter(_id,_len,_name,_params); -} -static unsafe void Test_GetProgramNamedParameter_27450() { - System.Int32 _id = default(System.Int32); - System.Int32 _len = default(System.Int32); - System.Byte _name = default(System.Byte); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramNamedParameter(_id,_len,ref _name,_params); -} -static unsafe void Test_GetProgramNamedParameter_27451() { - System.Int32 _id = default(System.Int32); - System.Int32 _len = default(System.Int32); - System.Byte _name = default(System.Byte); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramNamedParameter(_id,_len,ref _name,out _params); -} -static unsafe void Test_GetProgramNamedParameter_27452() { - System.Int32 _id = default(System.Int32); - System.Int32 _len = default(System.Int32); - System.Byte* _name = default(System.Byte*); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramNamedParameter(_id,_len,_name,_params); -} -static unsafe void Test_GetProgramNamedParameter_27453() { - System.UInt32 _id = default(System.UInt32); - System.Int32 _len = default(System.Int32); - System.Byte _name = default(System.Byte); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramNamedParameter(_id,_len,ref _name,_params); -} -static unsafe void Test_GetProgramNamedParameter_27454() { - System.UInt32 _id = default(System.UInt32); - System.Int32 _len = default(System.Int32); - System.Byte _name = default(System.Byte); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramNamedParameter(_id,_len,ref _name,out _params); -} -static unsafe void Test_GetProgramNamedParameter_27455() { - System.UInt32 _id = default(System.UInt32); - System.Int32 _len = default(System.Int32); - System.Byte* _name = default(System.Byte*); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramNamedParameter(_id,_len,_name,_params); -} -static unsafe void Test_GetProgramParameter_27456() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb _pname = default(OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramParameter(_target,_index,_pname,_params); -} -static unsafe void Test_GetProgramParameter_27457() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb _pname = default(OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramParameter(_target,_index,_pname,out _params); -} -static unsafe void Test_GetProgramParameter_27458() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb _pname = default(OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramParameter(_target,_index,_pname,_params); -} -static unsafe void Test_GetProgramParameter_27459() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb _pname = default(OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramParameter(_target,_index,_pname,_params); -} -static unsafe void Test_GetProgramParameter_27460() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb _pname = default(OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramParameter(_target,_index,_pname,out _params); -} -static unsafe void Test_GetProgramParameter_27461() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb _pname = default(OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramParameter(_target,_index,_pname,_params); -} -static unsafe void Test_GetProgramParameter_27462() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb _pname = default(OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramParameter(_target,_index,_pname,_params); -} -static unsafe void Test_GetProgramParameter_27463() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb _pname = default(OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramParameter(_target,_index,_pname,out _params); -} -static unsafe void Test_GetProgramParameter_27464() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb _pname = default(OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramParameter(_target,_index,_pname,_params); -} -static unsafe void Test_GetProgramParameter_27465() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb _pname = default(OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramParameter(_target,_index,_pname,_params); -} -static unsafe void Test_GetProgramParameter_27466() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb _pname = default(OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramParameter(_target,_index,_pname,out _params); -} -static unsafe void Test_GetProgramParameter_27467() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb _pname = default(OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramParameter(_target,_index,_pname,_params); -} -static unsafe void Test_GetProgramString_27468() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexProgram _pname = default(OpenTK.Graphics.OpenGL.NvVertexProgram); - System.Byte[] _program = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramString(_id,_pname,_program); -} -static unsafe void Test_GetProgramString_27469() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexProgram _pname = default(OpenTK.Graphics.OpenGL.NvVertexProgram); - System.Byte _program = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramString(_id,_pname,out _program); -} -static unsafe void Test_GetProgramString_27470() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexProgram _pname = default(OpenTK.Graphics.OpenGL.NvVertexProgram); - System.Byte* _program = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramString(_id,_pname,_program); -} -static unsafe void Test_GetProgramString_27471() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVertexProgram _pname = default(OpenTK.Graphics.OpenGL.NvVertexProgram); - System.Byte[] _program = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramString(_id,_pname,_program); -} -static unsafe void Test_GetProgramString_27472() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVertexProgram _pname = default(OpenTK.Graphics.OpenGL.NvVertexProgram); - System.Byte _program = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramString(_id,_pname,out _program); -} -static unsafe void Test_GetProgramString_27473() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVertexProgram _pname = default(OpenTK.Graphics.OpenGL.NvVertexProgram); - System.Byte* _program = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramString(_id,_pname,_program); -} -static unsafe void Test_GetProgramSubroutineParameter_27474() { - OpenTK.Graphics.OpenGL.NvGpuProgram5 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram5); - System.Int32 _index = default(System.Int32); - System.Int32[] _param = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramSubroutineParameter(_target,_index,_param); -} -static unsafe void Test_GetProgramSubroutineParameter_27475() { - OpenTK.Graphics.OpenGL.NvGpuProgram5 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram5); - System.Int32 _index = default(System.Int32); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramSubroutineParameter(_target,_index,out _param); -} -static unsafe void Test_GetProgramSubroutineParameter_27476() { - OpenTK.Graphics.OpenGL.NvGpuProgram5 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram5); - System.Int32 _index = default(System.Int32); - System.Int32* _param = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramSubroutineParameter(_target,_index,_param); -} -static unsafe void Test_GetProgramSubroutineParameter_27477() { - OpenTK.Graphics.OpenGL.NvGpuProgram5 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram5); - System.UInt32 _index = default(System.UInt32); - System.UInt32[] _param = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramSubroutineParameter(_target,_index,_param); -} -static unsafe void Test_GetProgramSubroutineParameter_27478() { - OpenTK.Graphics.OpenGL.NvGpuProgram5 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram5); - System.UInt32 _index = default(System.UInt32); - System.UInt32 _param = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramSubroutineParameter(_target,_index,out _param); -} -static unsafe void Test_GetProgramSubroutineParameter_27479() { - OpenTK.Graphics.OpenGL.NvGpuProgram5 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram5); - System.UInt32 _index = default(System.UInt32); - System.UInt32* _param = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramSubroutineParameter(_target,_index,_param); -} -static unsafe void Test_GetTextureHandle_27480() { - System.Int32 _texture = default(System.Int32); - System.Int64 r = OpenTK.Graphics.OpenGL.GL.NV.GetTextureHandle(_texture); -} -static unsafe void Test_GetTextureHandle_27481() { - System.UInt32 _texture = default(System.UInt32); - System.Int64 r = OpenTK.Graphics.OpenGL.GL.NV.GetTextureHandle(_texture); -} -static unsafe void Test_GetTextureSamplerHandle_27482() { - System.Int32 _texture = default(System.Int32); - System.Int32 _sampler = default(System.Int32); - System.Int64 r = OpenTK.Graphics.OpenGL.GL.NV.GetTextureSamplerHandle(_texture,_sampler); -} -static unsafe void Test_GetTextureSamplerHandle_27483() { - System.UInt32 _texture = default(System.UInt32); - System.UInt32 _sampler = default(System.UInt32); - System.Int64 r = OpenTK.Graphics.OpenGL.GL.NV.GetTextureSamplerHandle(_texture,_sampler); -} -static unsafe void Test_GetTrackMatrix_27484() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _address = default(System.Int32); - OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb _pname = default(OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.GetTrackMatrix(_target,_address,_pname,out _params); -} -static unsafe void Test_GetTrackMatrix_27485() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _address = default(System.Int32); - OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb _pname = default(OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.GetTrackMatrix(_target,_address,_pname,_params); -} -static unsafe void Test_GetTrackMatrix_27486() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _address = default(System.UInt32); - OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb _pname = default(OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.GetTrackMatrix(_target,_address,_pname,out _params); -} -static unsafe void Test_GetTrackMatrix_27487() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _address = default(System.UInt32); - OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb _pname = default(OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.GetTrackMatrix(_target,_address,_pname,_params); -} -static unsafe void Test_GetTransformFeedbackVarying_27488() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _location = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.GetTransformFeedbackVarying(_program,_index,out _location); -} -static unsafe void Test_GetTransformFeedbackVarying_27489() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32* _location = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.GetTransformFeedbackVarying(_program,_index,_location); -} -static unsafe void Test_GetTransformFeedbackVarying_27490() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _location = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.GetTransformFeedbackVarying(_program,_index,out _location); -} -static unsafe void Test_GetTransformFeedbackVarying_27491() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32* _location = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.GetTransformFeedbackVarying(_program,_index,_location); -} -static unsafe void Test_GetUniform_27492() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.NV.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_27493() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.GetUniform(_program,_location,out _params); -} -static unsafe void Test_GetUniform_27494() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.NV.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_27495() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.NV.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_27496() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.GetUniform(_program,_location,out _params); -} -static unsafe void Test_GetUniform_27497() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.NV.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_27498() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt64[] _params = default(System.UInt64[]); - OpenTK.Graphics.OpenGL.GL.NV.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_27499() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt64 _params = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.GetUniform(_program,_location,out _params); -} -static unsafe void Test_GetUniform_27500() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt64* _params = default(System.UInt64*); - OpenTK.Graphics.OpenGL.GL.NV.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetVaryingLocation_27501() { - System.Int32 _program = default(System.Int32); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.NV.GetVaryingLocation(_program,_name); -} -static unsafe void Test_GetVaryingLocation_27502() { - System.UInt32 _program = default(System.UInt32); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.NV.GetVaryingLocation(_program,_name); -} -static unsafe void Test_GetVertexAttrib_27503() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit _pname = default(OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_27504() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit _pname = default(OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_27505() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexProgram _pname = default(OpenTK.Graphics.OpenGL.NvVertexProgram); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_27506() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexProgram _pname = default(OpenTK.Graphics.OpenGL.NvVertexProgram); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_27507() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit _pname = default(OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_27508() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit _pname = default(OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_27509() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVertexProgram _pname = default(OpenTK.Graphics.OpenGL.NvVertexProgram); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_27510() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVertexProgram _pname = default(OpenTK.Graphics.OpenGL.NvVertexProgram); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_27511() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit _pname = default(OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_27512() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit _pname = default(OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_27513() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexProgram _pname = default(OpenTK.Graphics.OpenGL.NvVertexProgram); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_27514() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexProgram _pname = default(OpenTK.Graphics.OpenGL.NvVertexProgram); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_27515() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit _pname = default(OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_27516() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit _pname = default(OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_27517() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVertexProgram _pname = default(OpenTK.Graphics.OpenGL.NvVertexProgram); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_27518() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVertexProgram _pname = default(OpenTK.Graphics.OpenGL.NvVertexProgram); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_27519() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit _pname = default(OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_27520() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit _pname = default(OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_27521() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexProgram _pname = default(OpenTK.Graphics.OpenGL.NvVertexProgram); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_27522() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexProgram _pname = default(OpenTK.Graphics.OpenGL.NvVertexProgram); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_27523() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit _pname = default(OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_27524() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit _pname = default(OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_27525() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVertexProgram _pname = default(OpenTK.Graphics.OpenGL.NvVertexProgram); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_27526() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVertexProgram _pname = default(OpenTK.Graphics.OpenGL.NvVertexProgram); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribL_27527() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit _pname = default(OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttribL(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribL_27528() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit _pname = default(OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttribL(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttribL_27529() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit _pname = default(OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttribL(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribL_27530() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit _pname = default(OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttribL(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribL_27531() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit _pname = default(OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttribL(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttribL_27532() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit _pname = default(OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttribL(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribL_27533() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit _pname = default(OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit); - System.UInt64[] _params = default(System.UInt64[]); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttribL(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribL_27534() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit _pname = default(OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit); - System.UInt64 _params = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttribL(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttribL_27535() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit _pname = default(OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit); - System.UInt64* _params = default(System.UInt64*); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttribL(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribPointer_27536() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexProgram _pname = default(OpenTK.Graphics.OpenGL.NvVertexProgram); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_27537() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexProgram _pname = default(OpenTK.Graphics.OpenGL.NvVertexProgram); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_27538() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexProgram _pname = default(OpenTK.Graphics.OpenGL.NvVertexProgram); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_27539() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexProgram _pname = default(OpenTK.Graphics.OpenGL.NvVertexProgram); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_27540() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexProgram _pname = default(OpenTK.Graphics.OpenGL.NvVertexProgram); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttribPointer(_index,_pname,ref _pointer); -} -static unsafe void Test_GetVertexAttribPointer_27541() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVertexProgram _pname = default(OpenTK.Graphics.OpenGL.NvVertexProgram); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_27542() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVertexProgram _pname = default(OpenTK.Graphics.OpenGL.NvVertexProgram); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_27543() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVertexProgram _pname = default(OpenTK.Graphics.OpenGL.NvVertexProgram); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_27544() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVertexProgram _pname = default(OpenTK.Graphics.OpenGL.NvVertexProgram); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_27545() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVertexProgram _pname = default(OpenTK.Graphics.OpenGL.NvVertexProgram); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.NV.GetVertexAttribPointer(_index,_pname,ref _pointer); -} -static unsafe void Test_GetVideoCapture_27546() { - System.Int32 _video_capture_slot = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.GetVideoCapture(_video_capture_slot,_pname,_params); -} -static unsafe void Test_GetVideoCapture_27547() { - System.Int32 _video_capture_slot = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.GetVideoCapture(_video_capture_slot,_pname,out _params); -} -static unsafe void Test_GetVideoCapture_27548() { - System.Int32 _video_capture_slot = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.GetVideoCapture(_video_capture_slot,_pname,_params); -} -static unsafe void Test_GetVideoCapture_27549() { - System.UInt32 _video_capture_slot = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.GetVideoCapture(_video_capture_slot,_pname,_params); -} -static unsafe void Test_GetVideoCapture_27550() { - System.UInt32 _video_capture_slot = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.GetVideoCapture(_video_capture_slot,_pname,out _params); -} -static unsafe void Test_GetVideoCapture_27551() { - System.UInt32 _video_capture_slot = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.GetVideoCapture(_video_capture_slot,_pname,_params); -} -static unsafe void Test_GetVideoCaptureStream_27552() { - System.Int32 _video_capture_slot = default(System.Int32); - System.Int32 _stream = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.NV.GetVideoCaptureStream(_video_capture_slot,_stream,_pname,_params); -} -static unsafe void Test_GetVideoCaptureStream_27553() { - System.Int32 _video_capture_slot = default(System.Int32); - System.Int32 _stream = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.GetVideoCaptureStream(_video_capture_slot,_stream,_pname,out _params); -} -static unsafe void Test_GetVideoCaptureStream_27554() { - System.Int32 _video_capture_slot = default(System.Int32); - System.Int32 _stream = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.NV.GetVideoCaptureStream(_video_capture_slot,_stream,_pname,_params); -} -static unsafe void Test_GetVideoCaptureStream_27555() { - System.UInt32 _video_capture_slot = default(System.UInt32); - System.UInt32 _stream = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.NV.GetVideoCaptureStream(_video_capture_slot,_stream,_pname,_params); -} -static unsafe void Test_GetVideoCaptureStream_27556() { - System.UInt32 _video_capture_slot = default(System.UInt32); - System.UInt32 _stream = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.GetVideoCaptureStream(_video_capture_slot,_stream,_pname,out _params); -} -static unsafe void Test_GetVideoCaptureStream_27557() { - System.UInt32 _video_capture_slot = default(System.UInt32); - System.UInt32 _stream = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.NV.GetVideoCaptureStream(_video_capture_slot,_stream,_pname,_params); -} -static unsafe void Test_GetVideoCaptureStream_27558() { - System.Int32 _video_capture_slot = default(System.Int32); - System.Int32 _stream = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetVideoCaptureStream(_video_capture_slot,_stream,_pname,_params); -} -static unsafe void Test_GetVideoCaptureStream_27559() { - System.Int32 _video_capture_slot = default(System.Int32); - System.Int32 _stream = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetVideoCaptureStream(_video_capture_slot,_stream,_pname,out _params); -} -static unsafe void Test_GetVideoCaptureStream_27560() { - System.Int32 _video_capture_slot = default(System.Int32); - System.Int32 _stream = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetVideoCaptureStream(_video_capture_slot,_stream,_pname,_params); -} -static unsafe void Test_GetVideoCaptureStream_27561() { - System.UInt32 _video_capture_slot = default(System.UInt32); - System.UInt32 _stream = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetVideoCaptureStream(_video_capture_slot,_stream,_pname,_params); -} -static unsafe void Test_GetVideoCaptureStream_27562() { - System.UInt32 _video_capture_slot = default(System.UInt32); - System.UInt32 _stream = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.GetVideoCaptureStream(_video_capture_slot,_stream,_pname,out _params); -} -static unsafe void Test_GetVideoCaptureStream_27563() { - System.UInt32 _video_capture_slot = default(System.UInt32); - System.UInt32 _stream = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.GetVideoCaptureStream(_video_capture_slot,_stream,_pname,_params); -} -static unsafe void Test_GetVideoCaptureStream_27564() { - System.Int32 _video_capture_slot = default(System.Int32); - System.Int32 _stream = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.GetVideoCaptureStream(_video_capture_slot,_stream,_pname,_params); -} -static unsafe void Test_GetVideoCaptureStream_27565() { - System.Int32 _video_capture_slot = default(System.Int32); - System.Int32 _stream = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.GetVideoCaptureStream(_video_capture_slot,_stream,_pname,out _params); -} -static unsafe void Test_GetVideoCaptureStream_27566() { - System.Int32 _video_capture_slot = default(System.Int32); - System.Int32 _stream = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.GetVideoCaptureStream(_video_capture_slot,_stream,_pname,_params); -} -static unsafe void Test_GetVideoCaptureStream_27567() { - System.UInt32 _video_capture_slot = default(System.UInt32); - System.UInt32 _stream = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.GetVideoCaptureStream(_video_capture_slot,_stream,_pname,_params); -} -static unsafe void Test_GetVideoCaptureStream_27568() { - System.UInt32 _video_capture_slot = default(System.UInt32); - System.UInt32 _stream = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.GetVideoCaptureStream(_video_capture_slot,_stream,_pname,out _params); -} -static unsafe void Test_GetVideoCaptureStream_27569() { - System.UInt32 _video_capture_slot = default(System.UInt32); - System.UInt32 _stream = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.GetVideoCaptureStream(_video_capture_slot,_stream,_pname,_params); -} -static unsafe void Test_GetVideo_27570() { - System.Int32 _video_slot = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPresentVideo _pname = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.NV.GetVideo(_video_slot,_pname,_params); -} -static unsafe void Test_GetVideo_27571() { - System.Int32 _video_slot = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPresentVideo _pname = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.GetVideo(_video_slot,_pname,out _params); -} -static unsafe void Test_GetVideo_27572() { - System.Int32 _video_slot = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPresentVideo _pname = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.NV.GetVideo(_video_slot,_pname,_params); -} -static unsafe void Test_GetVideo_27573() { - System.UInt32 _video_slot = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPresentVideo _pname = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.NV.GetVideo(_video_slot,_pname,_params); -} -static unsafe void Test_GetVideo_27574() { - System.UInt32 _video_slot = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPresentVideo _pname = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.GetVideo(_video_slot,_pname,out _params); -} -static unsafe void Test_GetVideo_27575() { - System.UInt32 _video_slot = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPresentVideo _pname = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.NV.GetVideo(_video_slot,_pname,_params); -} -static unsafe void Test_GetVideo_27576() { - System.Int32 _video_slot = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPresentVideo _pname = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.GetVideo(_video_slot,_pname,_params); -} -static unsafe void Test_GetVideo_27577() { - System.Int32 _video_slot = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPresentVideo _pname = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.GetVideo(_video_slot,_pname,out _params); -} -static unsafe void Test_GetVideo_27578() { - System.Int32 _video_slot = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPresentVideo _pname = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.GetVideo(_video_slot,_pname,_params); -} -static unsafe void Test_GetVideo_27579() { - System.UInt32 _video_slot = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPresentVideo _pname = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.GetVideo(_video_slot,_pname,_params); -} -static unsafe void Test_GetVideo_27580() { - System.UInt32 _video_slot = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPresentVideo _pname = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.GetVideo(_video_slot,_pname,out _params); -} -static unsafe void Test_GetVideo_27581() { - System.UInt32 _video_slot = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPresentVideo _pname = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.GetVideo(_video_slot,_pname,_params); -} -static unsafe void Test_GetVideo_27582() { - System.UInt32 _video_slot = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPresentVideo _pname = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.UInt64[] _params = default(System.UInt64[]); - OpenTK.Graphics.OpenGL.GL.NV.GetVideo(_video_slot,_pname,_params); -} -static unsafe void Test_GetVideo_27583() { - System.UInt32 _video_slot = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPresentVideo _pname = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.UInt64 _params = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.GetVideo(_video_slot,_pname,out _params); -} -static unsafe void Test_GetVideo_27584() { - System.UInt32 _video_slot = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPresentVideo _pname = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.UInt64* _params = default(System.UInt64*); - OpenTK.Graphics.OpenGL.GL.NV.GetVideo(_video_slot,_pname,_params); -} -static unsafe void Test_GetVideo_27585() { - System.UInt32 _video_slot = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPresentVideo _pname = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.NV.GetVideo(_video_slot,_pname,_params); -} -static unsafe void Test_GetVideo_27586() { - System.UInt32 _video_slot = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPresentVideo _pname = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.GetVideo(_video_slot,_pname,out _params); -} -static unsafe void Test_GetVideo_27587() { - System.UInt32 _video_slot = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPresentVideo _pname = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.NV.GetVideo(_video_slot,_pname,_params); -} -static unsafe void Test_IndexFormat_27588() { - OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory _type = default(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.IndexFormat(_type,_stride); -} -static unsafe void Test_InterpolatePath_27589() { - System.Int32 _resultPath = default(System.Int32); - System.Int32 _pathA = default(System.Int32); - System.Int32 _pathB = default(System.Int32); - System.Single _weight = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.InterpolatePath(_resultPath,_pathA,_pathB,_weight); -} -static unsafe void Test_InterpolatePath_27590() { - System.UInt32 _resultPath = default(System.UInt32); - System.UInt32 _pathA = default(System.UInt32); - System.UInt32 _pathB = default(System.UInt32); - System.Single _weight = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.InterpolatePath(_resultPath,_pathA,_pathB,_weight); -} -static unsafe void Test_IsBufferResident_27591() { - OpenTK.Graphics.OpenGL.NvShaderBufferLoad _target = default(OpenTK.Graphics.OpenGL.NvShaderBufferLoad); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.NV.IsBufferResident(_target); -} -static unsafe void Test_IsFence_27592() { - System.Int32 _fence = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.NV.IsFence(_fence); -} -static unsafe void Test_IsFence_27593() { - System.UInt32 _fence = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.NV.IsFence(_fence); -} -static unsafe void Test_IsImageHandleResident_27594() { - System.Int64 _handle = default(System.Int64); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.NV.IsImageHandleResident(_handle); -} -static unsafe void Test_IsImageHandleResident_27595() { - System.UInt64 _handle = default(System.UInt64); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.NV.IsImageHandleResident(_handle); -} -static unsafe void Test_IsNamedBufferResident_27596() { - System.Int32 _buffer = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.NV.IsNamedBufferResident(_buffer); -} -static unsafe void Test_IsNamedBufferResident_27597() { - System.UInt32 _buffer = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.NV.IsNamedBufferResident(_buffer); -} -static unsafe void Test_IsOcclusionQuery_27598() { - System.Int32 _id = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.NV.IsOcclusionQuery(_id); -} -static unsafe void Test_IsOcclusionQuery_27599() { - System.UInt32 _id = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.NV.IsOcclusionQuery(_id); -} -static unsafe void Test_IsPath_27600() { - System.Int32 _path = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.NV.IsPath(_path); -} -static unsafe void Test_IsPath_27601() { - System.UInt32 _path = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.NV.IsPath(_path); -} -static unsafe void Test_IsPointInFillPath_27602() { - System.Int32 _path = default(System.Int32); - System.Int32 _mask = default(System.Int32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.NV.IsPointInFillPath(_path,_mask,_x,_y); -} -static unsafe void Test_IsPointInFillPath_27603() { - System.UInt32 _path = default(System.UInt32); - System.UInt32 _mask = default(System.UInt32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.NV.IsPointInFillPath(_path,_mask,_x,_y); -} -static unsafe void Test_IsPointInStrokePath_27604() { - System.Int32 _path = default(System.Int32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.NV.IsPointInStrokePath(_path,_x,_y); -} -static unsafe void Test_IsPointInStrokePath_27605() { - System.UInt32 _path = default(System.UInt32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.NV.IsPointInStrokePath(_path,_x,_y); -} -static unsafe void Test_IsProgram_27606() { - System.Int32 _id = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.NV.IsProgram(_id); -} -static unsafe void Test_IsProgram_27607() { - System.UInt32 _id = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.NV.IsProgram(_id); -} -static unsafe void Test_IsTextureHandleResident_27608() { - System.Int64 _handle = default(System.Int64); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.NV.IsTextureHandleResident(_handle); -} -static unsafe void Test_IsTextureHandleResident_27609() { - System.UInt64 _handle = default(System.UInt64); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.NV.IsTextureHandleResident(_handle); -} -static unsafe void Test_IsTransformFeedback_27610() { - System.Int32 _id = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.NV.IsTransformFeedback(_id); -} -static unsafe void Test_IsTransformFeedback_27611() { - System.UInt32 _id = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.NV.IsTransformFeedback(_id); -} -static unsafe void Test_LoadProgram_27612() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _id = default(System.Int32); - System.Int32 _len = default(System.Int32); - System.Byte[] _program = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.NV.LoadProgram(_target,_id,_len,_program); -} -static unsafe void Test_LoadProgram_27613() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _id = default(System.Int32); - System.Int32 _len = default(System.Int32); - System.Byte _program = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.NV.LoadProgram(_target,_id,_len,ref _program); -} -static unsafe void Test_LoadProgram_27614() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _id = default(System.Int32); - System.Int32 _len = default(System.Int32); - System.Byte* _program = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.NV.LoadProgram(_target,_id,_len,_program); -} -static unsafe void Test_LoadProgram_27615() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _id = default(System.UInt32); - System.Int32 _len = default(System.Int32); - System.Byte[] _program = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.NV.LoadProgram(_target,_id,_len,_program); -} -static unsafe void Test_LoadProgram_27616() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _id = default(System.UInt32); - System.Int32 _len = default(System.Int32); - System.Byte _program = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.NV.LoadProgram(_target,_id,_len,ref _program); -} -static unsafe void Test_LoadProgram_27617() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _id = default(System.UInt32); - System.Int32 _len = default(System.Int32); - System.Byte* _program = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.NV.LoadProgram(_target,_id,_len,_program); -} -static unsafe void Test_MakeBufferNonResident_27618() { - OpenTK.Graphics.OpenGL.NvShaderBufferLoad _target = default(OpenTK.Graphics.OpenGL.NvShaderBufferLoad); - OpenTK.Graphics.OpenGL.GL.NV.MakeBufferNonResident(_target); -} -static unsafe void Test_MakeBufferResident_27619() { - OpenTK.Graphics.OpenGL.NvShaderBufferLoad _target = default(OpenTK.Graphics.OpenGL.NvShaderBufferLoad); - OpenTK.Graphics.OpenGL.NvShaderBufferLoad _access = default(OpenTK.Graphics.OpenGL.NvShaderBufferLoad); - OpenTK.Graphics.OpenGL.GL.NV.MakeBufferResident(_target,_access); -} -static unsafe void Test_MakeImageHandleNonResident_27620() { - System.Int64 _handle = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.MakeImageHandleNonResident(_handle); -} -static unsafe void Test_MakeImageHandleNonResident_27621() { - System.UInt64 _handle = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.MakeImageHandleNonResident(_handle); -} -static unsafe void Test_MakeImageHandleResident_27622() { - System.Int64 _handle = default(System.Int64); - OpenTK.Graphics.OpenGL.NvBindlessTexture _access = default(OpenTK.Graphics.OpenGL.NvBindlessTexture); - OpenTK.Graphics.OpenGL.GL.NV.MakeImageHandleResident(_handle,_access); -} -static unsafe void Test_MakeImageHandleResident_27623() { - System.UInt64 _handle = default(System.UInt64); - OpenTK.Graphics.OpenGL.NvBindlessTexture _access = default(OpenTK.Graphics.OpenGL.NvBindlessTexture); - OpenTK.Graphics.OpenGL.GL.NV.MakeImageHandleResident(_handle,_access); -} -static unsafe void Test_MakeNamedBufferNonResident_27624() { - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.MakeNamedBufferNonResident(_buffer); -} -static unsafe void Test_MakeNamedBufferNonResident_27625() { - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.MakeNamedBufferNonResident(_buffer); -} -static unsafe void Test_MakeNamedBufferResident_27626() { - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.NvShaderBufferLoad _access = default(OpenTK.Graphics.OpenGL.NvShaderBufferLoad); - OpenTK.Graphics.OpenGL.GL.NV.MakeNamedBufferResident(_buffer,_access); -} -static unsafe void Test_MakeNamedBufferResident_27627() { - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvShaderBufferLoad _access = default(OpenTK.Graphics.OpenGL.NvShaderBufferLoad); - OpenTK.Graphics.OpenGL.GL.NV.MakeNamedBufferResident(_buffer,_access); -} -static unsafe void Test_MakeTextureHandleNonResident_27628() { - System.Int64 _handle = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.MakeTextureHandleNonResident(_handle); -} -static unsafe void Test_MakeTextureHandleNonResident_27629() { - System.UInt64 _handle = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.MakeTextureHandleNonResident(_handle); -} -static unsafe void Test_MakeTextureHandleResident_27630() { - System.Int64 _handle = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.MakeTextureHandleResident(_handle); -} -static unsafe void Test_MakeTextureHandleResident_27631() { - System.UInt64 _handle = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.MakeTextureHandleResident(_handle); -} -static unsafe void Test_MapControlPoints_27632() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.NvEvaluators _type = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32 _ustride = default(System.Int32); - System.Int32 _vstride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Boolean _packed = default(System.Boolean); - System.IntPtr _points = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.NV.MapControlPoints(_target,_index,_type,_ustride,_vstride,_uorder,_vorder,_packed,_points); -} -static unsafe void Test_MapControlPoints_27633() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.NvEvaluators _type = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32 _ustride = default(System.Int32); - System.Int32 _vstride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Boolean _packed = default(System.Boolean); - int[] _points = default(int[]); - OpenTK.Graphics.OpenGL.GL.NV.MapControlPoints(_target,_index,_type,_ustride,_vstride,_uorder,_vorder,_packed,_points); -} -static unsafe void Test_MapControlPoints_27634() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.NvEvaluators _type = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32 _ustride = default(System.Int32); - System.Int32 _vstride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Boolean _packed = default(System.Boolean); - int[,] _points = default(int[,]); - OpenTK.Graphics.OpenGL.GL.NV.MapControlPoints(_target,_index,_type,_ustride,_vstride,_uorder,_vorder,_packed,_points); -} -static unsafe void Test_MapControlPoints_27635() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.NvEvaluators _type = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32 _ustride = default(System.Int32); - System.Int32 _vstride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Boolean _packed = default(System.Boolean); - int[,,] _points = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.NV.MapControlPoints(_target,_index,_type,_ustride,_vstride,_uorder,_vorder,_packed,_points); -} -static unsafe void Test_MapControlPoints_27636() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.NvEvaluators _type = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32 _ustride = default(System.Int32); - System.Int32 _vstride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Boolean _packed = default(System.Boolean); - int _points = default(int); - OpenTK.Graphics.OpenGL.GL.NV.MapControlPoints(_target,_index,_type,_ustride,_vstride,_uorder,_vorder,_packed,ref _points); -} -static unsafe void Test_MapControlPoints_27637() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvEvaluators _type = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32 _ustride = default(System.Int32); - System.Int32 _vstride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Boolean _packed = default(System.Boolean); - System.IntPtr _points = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.NV.MapControlPoints(_target,_index,_type,_ustride,_vstride,_uorder,_vorder,_packed,_points); -} -static unsafe void Test_MapControlPoints_27638() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvEvaluators _type = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32 _ustride = default(System.Int32); - System.Int32 _vstride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Boolean _packed = default(System.Boolean); - int[] _points = default(int[]); - OpenTK.Graphics.OpenGL.GL.NV.MapControlPoints(_target,_index,_type,_ustride,_vstride,_uorder,_vorder,_packed,_points); -} -static unsafe void Test_MapControlPoints_27639() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvEvaluators _type = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32 _ustride = default(System.Int32); - System.Int32 _vstride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Boolean _packed = default(System.Boolean); - int[,] _points = default(int[,]); - OpenTK.Graphics.OpenGL.GL.NV.MapControlPoints(_target,_index,_type,_ustride,_vstride,_uorder,_vorder,_packed,_points); -} -static unsafe void Test_MapControlPoints_27640() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvEvaluators _type = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32 _ustride = default(System.Int32); - System.Int32 _vstride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Boolean _packed = default(System.Boolean); - int[,,] _points = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.NV.MapControlPoints(_target,_index,_type,_ustride,_vstride,_uorder,_vorder,_packed,_points); -} -static unsafe void Test_MapControlPoints_27641() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvEvaluators _type = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32 _ustride = default(System.Int32); - System.Int32 _vstride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Boolean _packed = default(System.Boolean); - int _points = default(int); - OpenTK.Graphics.OpenGL.GL.NV.MapControlPoints(_target,_index,_type,_ustride,_vstride,_uorder,_vorder,_packed,ref _points); -} -static unsafe void Test_MapParameter_27642() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - OpenTK.Graphics.OpenGL.NvEvaluators _pname = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.MapParameter(_target,_pname,_params); -} -static unsafe void Test_MapParameter_27643() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - OpenTK.Graphics.OpenGL.NvEvaluators _pname = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.MapParameter(_target,_pname,ref _params); -} -static unsafe void Test_MapParameter_27644() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - OpenTK.Graphics.OpenGL.NvEvaluators _pname = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.MapParameter(_target,_pname,_params); -} -static unsafe void Test_MapParameter_27645() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - OpenTK.Graphics.OpenGL.NvEvaluators _pname = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.MapParameter(_target,_pname,_params); -} -static unsafe void Test_MapParameter_27646() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - OpenTK.Graphics.OpenGL.NvEvaluators _pname = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.MapParameter(_target,_pname,ref _params); -} -static unsafe void Test_MapParameter_27647() { - OpenTK.Graphics.OpenGL.NvEvaluators _target = default(OpenTK.Graphics.OpenGL.NvEvaluators); - OpenTK.Graphics.OpenGL.NvEvaluators _pname = default(OpenTK.Graphics.OpenGL.NvEvaluators); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.MapParameter(_target,_pname,_params); -} -static unsafe void Test_MultiDrawArraysIndirectBindles_27648() { - OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect _mode = default(OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect); - System.IntPtr _indirect = default(System.IntPtr); - System.Int32 _drawCount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - System.Int32 _vertexBufferCount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.MultiDrawArraysIndirectBindles(_mode,_indirect,_drawCount,_stride,_vertexBufferCount); -} -static unsafe void Test_MultiDrawArraysIndirectBindles_27649() { - OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect _mode = default(OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect); - int[] _indirect = default(int[]); - System.Int32 _drawCount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - System.Int32 _vertexBufferCount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.MultiDrawArraysIndirectBindles(_mode,_indirect,_drawCount,_stride,_vertexBufferCount); -} -static unsafe void Test_MultiDrawArraysIndirectBindles_27650() { - OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect _mode = default(OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect); - int[,] _indirect = default(int[,]); - System.Int32 _drawCount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - System.Int32 _vertexBufferCount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.MultiDrawArraysIndirectBindles(_mode,_indirect,_drawCount,_stride,_vertexBufferCount); -} -static unsafe void Test_MultiDrawArraysIndirectBindles_27651() { - OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect _mode = default(OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect); - int[,,] _indirect = default(int[,,]); - System.Int32 _drawCount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - System.Int32 _vertexBufferCount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.MultiDrawArraysIndirectBindles(_mode,_indirect,_drawCount,_stride,_vertexBufferCount); -} -static unsafe void Test_MultiDrawArraysIndirectBindles_27652() { - OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect _mode = default(OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect); - int _indirect = default(int); - System.Int32 _drawCount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - System.Int32 _vertexBufferCount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.MultiDrawArraysIndirectBindles(_mode,ref _indirect,_drawCount,_stride,_vertexBufferCount); -} -static unsafe void Test_MultiDrawElementsIndirectBindles_27653() { - OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect _mode = default(OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect); - OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect _type = default(OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect); - System.IntPtr _indirect = default(System.IntPtr); - System.Int32 _drawCount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - System.Int32 _vertexBufferCount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.MultiDrawElementsIndirectBindles(_mode,_type,_indirect,_drawCount,_stride,_vertexBufferCount); -} -static unsafe void Test_MultiDrawElementsIndirectBindles_27654() { - OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect _mode = default(OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect); - OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect _type = default(OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect); - int[] _indirect = default(int[]); - System.Int32 _drawCount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - System.Int32 _vertexBufferCount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.MultiDrawElementsIndirectBindles(_mode,_type,_indirect,_drawCount,_stride,_vertexBufferCount); -} -static unsafe void Test_MultiDrawElementsIndirectBindles_27655() { - OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect _mode = default(OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect); - OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect _type = default(OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect); - int[,] _indirect = default(int[,]); - System.Int32 _drawCount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - System.Int32 _vertexBufferCount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.MultiDrawElementsIndirectBindles(_mode,_type,_indirect,_drawCount,_stride,_vertexBufferCount); -} -static unsafe void Test_MultiDrawElementsIndirectBindles_27656() { - OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect _mode = default(OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect); - OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect _type = default(OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect); - int[,,] _indirect = default(int[,,]); - System.Int32 _drawCount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - System.Int32 _vertexBufferCount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.MultiDrawElementsIndirectBindles(_mode,_type,_indirect,_drawCount,_stride,_vertexBufferCount); -} -static unsafe void Test_MultiDrawElementsIndirectBindles_27657() { - OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect _mode = default(OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect); - OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect _type = default(OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect); - int _indirect = default(int); - System.Int32 _drawCount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - System.Int32 _vertexBufferCount = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.MultiDrawElementsIndirectBindles(_mode,_type,ref _indirect,_drawCount,_stride,_vertexBufferCount); -} -static unsafe void Test_MultiTexCoord1h_27658() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Half _s = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.MultiTexCoord1h(_target,_s); -} -static unsafe void Test_MultiTexCoord1h_27659() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Half* _v = default(OpenTK.Half*); - OpenTK.Graphics.OpenGL.GL.NV.MultiTexCoord1h(_target,_v); -} -static unsafe void Test_MultiTexCoord2h_27660() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Half _s = default(OpenTK.Half); - OpenTK.Half _t = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.MultiTexCoord2h(_target,_s,_t); -} -static unsafe void Test_MultiTexCoord2h_27661() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Half[] _v = default(OpenTK.Half[]); - OpenTK.Graphics.OpenGL.GL.NV.MultiTexCoord2h(_target,_v); -} -static unsafe void Test_MultiTexCoord2h_27662() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Half _v = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.MultiTexCoord2h(_target,ref _v); -} -static unsafe void Test_MultiTexCoord2h_27663() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Half* _v = default(OpenTK.Half*); - OpenTK.Graphics.OpenGL.GL.NV.MultiTexCoord2h(_target,_v); -} -static unsafe void Test_MultiTexCoord3h_27664() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Half _s = default(OpenTK.Half); - OpenTK.Half _t = default(OpenTK.Half); - OpenTK.Half _r = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.MultiTexCoord3h(_target,_s,_t,_r); -} -static unsafe void Test_MultiTexCoord3h_27665() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Half[] _v = default(OpenTK.Half[]); - OpenTK.Graphics.OpenGL.GL.NV.MultiTexCoord3h(_target,_v); -} -static unsafe void Test_MultiTexCoord3h_27666() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Half _v = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.MultiTexCoord3h(_target,ref _v); -} -static unsafe void Test_MultiTexCoord3h_27667() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Half* _v = default(OpenTK.Half*); - OpenTK.Graphics.OpenGL.GL.NV.MultiTexCoord3h(_target,_v); -} -static unsafe void Test_MultiTexCoord4h_27668() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Half _s = default(OpenTK.Half); - OpenTK.Half _t = default(OpenTK.Half); - OpenTK.Half _r = default(OpenTK.Half); - OpenTK.Half _q = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.MultiTexCoord4h(_target,_s,_t,_r,_q); -} -static unsafe void Test_MultiTexCoord4h_27669() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Half[] _v = default(OpenTK.Half[]); - OpenTK.Graphics.OpenGL.GL.NV.MultiTexCoord4h(_target,_v); -} -static unsafe void Test_MultiTexCoord4h_27670() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Half _v = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.MultiTexCoord4h(_target,ref _v); -} -static unsafe void Test_MultiTexCoord4h_27671() { - OpenTK.Graphics.OpenGL.TextureUnit _target = default(OpenTK.Graphics.OpenGL.TextureUnit); - OpenTK.Half* _v = default(OpenTK.Half*); - OpenTK.Graphics.OpenGL.GL.NV.MultiTexCoord4h(_target,_v); -} -static unsafe void Test_Normal3h_27672() { - OpenTK.Half _nx = default(OpenTK.Half); - OpenTK.Half _ny = default(OpenTK.Half); - OpenTK.Half _nz = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.Normal3h(_nx,_ny,_nz); -} -static unsafe void Test_Normal3h_27673() { - OpenTK.Half[] _v = default(OpenTK.Half[]); - OpenTK.Graphics.OpenGL.GL.NV.Normal3h(_v); -} -static unsafe void Test_Normal3h_27674() { - OpenTK.Half _v = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.Normal3h(ref _v); -} -static unsafe void Test_Normal3h_27675() { - OpenTK.Half* _v = default(OpenTK.Half*); - OpenTK.Graphics.OpenGL.GL.NV.Normal3h(_v); -} -static unsafe void Test_NormalFormat_27676() { - OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory _type = default(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.NormalFormat(_type,_stride); -} -static unsafe void Test_PathColorGen_27677() { - OpenTK.Graphics.OpenGL.NvPathRendering _color = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _genMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _colorFormat = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _coeffs = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.PathColorGen(_color,_genMode,_colorFormat,_coeffs); -} -static unsafe void Test_PathColorGen_27678() { - OpenTK.Graphics.OpenGL.NvPathRendering _color = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _genMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _colorFormat = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _coeffs = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.PathColorGen(_color,_genMode,_colorFormat,ref _coeffs); -} -static unsafe void Test_PathColorGen_27679() { - OpenTK.Graphics.OpenGL.NvPathRendering _color = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _genMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _colorFormat = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _coeffs = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.PathColorGen(_color,_genMode,_colorFormat,_coeffs); -} -static unsafe void Test_PathCommands_27680() { - System.Int32 _path = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte[] _commands = default(System.Byte[]); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _coords = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.NV.PathCommands(_path,_numCommands,_commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathCommands_27681() { - System.Int32 _path = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte[] _commands = default(System.Byte[]); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _coords = default(int[]); - OpenTK.Graphics.OpenGL.GL.NV.PathCommands(_path,_numCommands,_commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathCommands_27682() { - System.Int32 _path = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte[] _commands = default(System.Byte[]); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _coords = default(int[,]); - OpenTK.Graphics.OpenGL.GL.NV.PathCommands(_path,_numCommands,_commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathCommands_27683() { - System.Int32 _path = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte[] _commands = default(System.Byte[]); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _coords = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.NV.PathCommands(_path,_numCommands,_commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathCommands_27684() { - System.Int32 _path = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte[] _commands = default(System.Byte[]); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _coords = default(int); - OpenTK.Graphics.OpenGL.GL.NV.PathCommands(_path,_numCommands,_commands,_numCoords,_coordType,ref _coords); -} -static unsafe void Test_PathCommands_27685() { - System.Int32 _path = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte _commands = default(System.Byte); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _coords = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.NV.PathCommands(_path,_numCommands,ref _commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathCommands_27686() { - System.Int32 _path = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte _commands = default(System.Byte); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _coords = default(int[]); - OpenTK.Graphics.OpenGL.GL.NV.PathCommands(_path,_numCommands,ref _commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathCommands_27687() { - System.Int32 _path = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte _commands = default(System.Byte); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _coords = default(int[,]); - OpenTK.Graphics.OpenGL.GL.NV.PathCommands(_path,_numCommands,ref _commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathCommands_27688() { - System.Int32 _path = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte _commands = default(System.Byte); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _coords = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.NV.PathCommands(_path,_numCommands,ref _commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathCommands_27689() { - System.Int32 _path = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte _commands = default(System.Byte); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _coords = default(int); - OpenTK.Graphics.OpenGL.GL.NV.PathCommands(_path,_numCommands,ref _commands,_numCoords,_coordType,ref _coords); -} -static unsafe void Test_PathCommands_27690() { - System.Int32 _path = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte* _commands = default(System.Byte*); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _coords = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.NV.PathCommands(_path,_numCommands,_commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathCommands_27691() { - System.Int32 _path = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte* _commands = default(System.Byte*); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _coords = default(int[]); - OpenTK.Graphics.OpenGL.GL.NV.PathCommands(_path,_numCommands,_commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathCommands_27692() { - System.Int32 _path = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte* _commands = default(System.Byte*); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _coords = default(int[,]); - OpenTK.Graphics.OpenGL.GL.NV.PathCommands(_path,_numCommands,_commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathCommands_27693() { - System.Int32 _path = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte* _commands = default(System.Byte*); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _coords = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.NV.PathCommands(_path,_numCommands,_commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathCommands_27694() { - System.Int32 _path = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte* _commands = default(System.Byte*); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _coords = default(int); - OpenTK.Graphics.OpenGL.GL.NV.PathCommands(_path,_numCommands,_commands,_numCoords,_coordType,ref _coords); -} -static unsafe void Test_PathCommands_27695() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _numCommands = default(System.Int32); - System.Byte[] _commands = default(System.Byte[]); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _coords = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.NV.PathCommands(_path,_numCommands,_commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathCommands_27696() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _numCommands = default(System.Int32); - System.Byte[] _commands = default(System.Byte[]); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _coords = default(int[]); - OpenTK.Graphics.OpenGL.GL.NV.PathCommands(_path,_numCommands,_commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathCommands_27697() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _numCommands = default(System.Int32); - System.Byte[] _commands = default(System.Byte[]); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _coords = default(int[,]); - OpenTK.Graphics.OpenGL.GL.NV.PathCommands(_path,_numCommands,_commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathCommands_27698() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _numCommands = default(System.Int32); - System.Byte[] _commands = default(System.Byte[]); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _coords = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.NV.PathCommands(_path,_numCommands,_commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathCommands_27699() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _numCommands = default(System.Int32); - System.Byte[] _commands = default(System.Byte[]); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _coords = default(int); - OpenTK.Graphics.OpenGL.GL.NV.PathCommands(_path,_numCommands,_commands,_numCoords,_coordType,ref _coords); -} -static unsafe void Test_PathCommands_27700() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _numCommands = default(System.Int32); - System.Byte _commands = default(System.Byte); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _coords = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.NV.PathCommands(_path,_numCommands,ref _commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathCommands_27701() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _numCommands = default(System.Int32); - System.Byte _commands = default(System.Byte); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _coords = default(int[]); - OpenTK.Graphics.OpenGL.GL.NV.PathCommands(_path,_numCommands,ref _commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathCommands_27702() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _numCommands = default(System.Int32); - System.Byte _commands = default(System.Byte); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _coords = default(int[,]); - OpenTK.Graphics.OpenGL.GL.NV.PathCommands(_path,_numCommands,ref _commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathCommands_27703() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _numCommands = default(System.Int32); - System.Byte _commands = default(System.Byte); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _coords = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.NV.PathCommands(_path,_numCommands,ref _commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathCommands_27704() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _numCommands = default(System.Int32); - System.Byte _commands = default(System.Byte); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _coords = default(int); - OpenTK.Graphics.OpenGL.GL.NV.PathCommands(_path,_numCommands,ref _commands,_numCoords,_coordType,ref _coords); -} -static unsafe void Test_PathCommands_27705() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _numCommands = default(System.Int32); - System.Byte* _commands = default(System.Byte*); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _coords = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.NV.PathCommands(_path,_numCommands,_commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathCommands_27706() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _numCommands = default(System.Int32); - System.Byte* _commands = default(System.Byte*); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _coords = default(int[]); - OpenTK.Graphics.OpenGL.GL.NV.PathCommands(_path,_numCommands,_commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathCommands_27707() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _numCommands = default(System.Int32); - System.Byte* _commands = default(System.Byte*); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _coords = default(int[,]); - OpenTK.Graphics.OpenGL.GL.NV.PathCommands(_path,_numCommands,_commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathCommands_27708() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _numCommands = default(System.Int32); - System.Byte* _commands = default(System.Byte*); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _coords = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.NV.PathCommands(_path,_numCommands,_commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathCommands_27709() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _numCommands = default(System.Int32); - System.Byte* _commands = default(System.Byte*); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _coords = default(int); - OpenTK.Graphics.OpenGL.GL.NV.PathCommands(_path,_numCommands,_commands,_numCoords,_coordType,ref _coords); -} -static unsafe void Test_PathCoords_27710() { - System.Int32 _path = default(System.Int32); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _coords = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.NV.PathCoords(_path,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathCoords_27711() { - System.Int32 _path = default(System.Int32); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _coords = default(int[]); - OpenTK.Graphics.OpenGL.GL.NV.PathCoords(_path,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathCoords_27712() { - System.Int32 _path = default(System.Int32); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _coords = default(int[,]); - OpenTK.Graphics.OpenGL.GL.NV.PathCoords(_path,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathCoords_27713() { - System.Int32 _path = default(System.Int32); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _coords = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.NV.PathCoords(_path,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathCoords_27714() { - System.Int32 _path = default(System.Int32); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _coords = default(int); - OpenTK.Graphics.OpenGL.GL.NV.PathCoords(_path,_numCoords,_coordType,ref _coords); -} -static unsafe void Test_PathCoords_27715() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _coords = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.NV.PathCoords(_path,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathCoords_27716() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _coords = default(int[]); - OpenTK.Graphics.OpenGL.GL.NV.PathCoords(_path,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathCoords_27717() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _coords = default(int[,]); - OpenTK.Graphics.OpenGL.GL.NV.PathCoords(_path,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathCoords_27718() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _coords = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.NV.PathCoords(_path,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathCoords_27719() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _coords = default(int); - OpenTK.Graphics.OpenGL.GL.NV.PathCoords(_path,_numCoords,_coordType,ref _coords); -} -static unsafe void Test_PathCoverDepthFunc_27720() { - OpenTK.Graphics.OpenGL.DepthFunction _func = default(OpenTK.Graphics.OpenGL.DepthFunction); - OpenTK.Graphics.OpenGL.GL.NV.PathCoverDepthFunc(_func); -} -static unsafe void Test_PathDashArray_27721() { - System.Int32 _path = default(System.Int32); - System.Int32 _dashCount = default(System.Int32); - System.Single[] _dashArray = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.PathDashArray(_path,_dashCount,_dashArray); -} -static unsafe void Test_PathDashArray_27722() { - System.Int32 _path = default(System.Int32); - System.Int32 _dashCount = default(System.Int32); - System.Single _dashArray = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.PathDashArray(_path,_dashCount,ref _dashArray); -} -static unsafe void Test_PathDashArray_27723() { - System.Int32 _path = default(System.Int32); - System.Int32 _dashCount = default(System.Int32); - System.Single* _dashArray = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.PathDashArray(_path,_dashCount,_dashArray); -} -static unsafe void Test_PathDashArray_27724() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _dashCount = default(System.Int32); - System.Single[] _dashArray = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.PathDashArray(_path,_dashCount,_dashArray); -} -static unsafe void Test_PathDashArray_27725() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _dashCount = default(System.Int32); - System.Single _dashArray = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.PathDashArray(_path,_dashCount,ref _dashArray); -} -static unsafe void Test_PathDashArray_27726() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _dashCount = default(System.Int32); - System.Single* _dashArray = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.PathDashArray(_path,_dashCount,_dashArray); -} -static unsafe void Test_PathFogGen_27727() { - OpenTK.Graphics.OpenGL.NvPathRendering _genMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.GL.NV.PathFogGen(_genMode); -} -static unsafe void Test_PathGlyphRange_27728() { - System.Int32 _firstPathName = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _fontTarget = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _fontName = default(System.IntPtr); - System.Int32 _fontStyle = default(System.Int32); - System.Int32 _firstGlyph = default(System.Int32); - System.Int32 _numGlyphs = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _handleMissingGlyphs = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _pathParameterTemplate = default(System.Int32); - System.Single _emScale = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.PathGlyphRange(_firstPathName,_fontTarget,_fontName,_fontStyle,_firstGlyph,_numGlyphs,_handleMissingGlyphs,_pathParameterTemplate,_emScale); -} -static unsafe void Test_PathGlyphRange_27729() { - System.Int32 _firstPathName = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _fontTarget = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _fontName = default(int[]); - System.Int32 _fontStyle = default(System.Int32); - System.Int32 _firstGlyph = default(System.Int32); - System.Int32 _numGlyphs = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _handleMissingGlyphs = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _pathParameterTemplate = default(System.Int32); - System.Single _emScale = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.PathGlyphRange(_firstPathName,_fontTarget,_fontName,_fontStyle,_firstGlyph,_numGlyphs,_handleMissingGlyphs,_pathParameterTemplate,_emScale); -} -static unsafe void Test_PathGlyphRange_27730() { - System.Int32 _firstPathName = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _fontTarget = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _fontName = default(int[,]); - System.Int32 _fontStyle = default(System.Int32); - System.Int32 _firstGlyph = default(System.Int32); - System.Int32 _numGlyphs = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _handleMissingGlyphs = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _pathParameterTemplate = default(System.Int32); - System.Single _emScale = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.PathGlyphRange(_firstPathName,_fontTarget,_fontName,_fontStyle,_firstGlyph,_numGlyphs,_handleMissingGlyphs,_pathParameterTemplate,_emScale); -} -static unsafe void Test_PathGlyphRange_27731() { - System.Int32 _firstPathName = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _fontTarget = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _fontName = default(int[,,]); - System.Int32 _fontStyle = default(System.Int32); - System.Int32 _firstGlyph = default(System.Int32); - System.Int32 _numGlyphs = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _handleMissingGlyphs = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _pathParameterTemplate = default(System.Int32); - System.Single _emScale = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.PathGlyphRange(_firstPathName,_fontTarget,_fontName,_fontStyle,_firstGlyph,_numGlyphs,_handleMissingGlyphs,_pathParameterTemplate,_emScale); -} -static unsafe void Test_PathGlyphRange_27732() { - System.Int32 _firstPathName = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _fontTarget = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _fontName = default(int); - System.Int32 _fontStyle = default(System.Int32); - System.Int32 _firstGlyph = default(System.Int32); - System.Int32 _numGlyphs = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _handleMissingGlyphs = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _pathParameterTemplate = default(System.Int32); - System.Single _emScale = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.PathGlyphRange(_firstPathName,_fontTarget,ref _fontName,_fontStyle,_firstGlyph,_numGlyphs,_handleMissingGlyphs,_pathParameterTemplate,_emScale); -} -static unsafe void Test_PathGlyphRange_27733() { - System.UInt32 _firstPathName = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _fontTarget = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _fontName = default(System.IntPtr); - System.UInt32 _fontStyle = default(System.UInt32); - System.UInt32 _firstGlyph = default(System.UInt32); - System.Int32 _numGlyphs = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _handleMissingGlyphs = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.UInt32 _pathParameterTemplate = default(System.UInt32); - System.Single _emScale = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.PathGlyphRange(_firstPathName,_fontTarget,_fontName,_fontStyle,_firstGlyph,_numGlyphs,_handleMissingGlyphs,_pathParameterTemplate,_emScale); -} -static unsafe void Test_PathGlyphRange_27734() { - System.UInt32 _firstPathName = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _fontTarget = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _fontName = default(int[]); - System.UInt32 _fontStyle = default(System.UInt32); - System.UInt32 _firstGlyph = default(System.UInt32); - System.Int32 _numGlyphs = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _handleMissingGlyphs = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.UInt32 _pathParameterTemplate = default(System.UInt32); - System.Single _emScale = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.PathGlyphRange(_firstPathName,_fontTarget,_fontName,_fontStyle,_firstGlyph,_numGlyphs,_handleMissingGlyphs,_pathParameterTemplate,_emScale); -} -static unsafe void Test_PathGlyphRange_27735() { - System.UInt32 _firstPathName = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _fontTarget = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _fontName = default(int[,]); - System.UInt32 _fontStyle = default(System.UInt32); - System.UInt32 _firstGlyph = default(System.UInt32); - System.Int32 _numGlyphs = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _handleMissingGlyphs = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.UInt32 _pathParameterTemplate = default(System.UInt32); - System.Single _emScale = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.PathGlyphRange(_firstPathName,_fontTarget,_fontName,_fontStyle,_firstGlyph,_numGlyphs,_handleMissingGlyphs,_pathParameterTemplate,_emScale); -} -static unsafe void Test_PathGlyphRange_27736() { - System.UInt32 _firstPathName = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _fontTarget = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _fontName = default(int[,,]); - System.UInt32 _fontStyle = default(System.UInt32); - System.UInt32 _firstGlyph = default(System.UInt32); - System.Int32 _numGlyphs = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _handleMissingGlyphs = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.UInt32 _pathParameterTemplate = default(System.UInt32); - System.Single _emScale = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.PathGlyphRange(_firstPathName,_fontTarget,_fontName,_fontStyle,_firstGlyph,_numGlyphs,_handleMissingGlyphs,_pathParameterTemplate,_emScale); -} -static unsafe void Test_PathGlyphRange_27737() { - System.UInt32 _firstPathName = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _fontTarget = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _fontName = default(int); - System.UInt32 _fontStyle = default(System.UInt32); - System.UInt32 _firstGlyph = default(System.UInt32); - System.Int32 _numGlyphs = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _handleMissingGlyphs = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.UInt32 _pathParameterTemplate = default(System.UInt32); - System.Single _emScale = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.PathGlyphRange(_firstPathName,_fontTarget,ref _fontName,_fontStyle,_firstGlyph,_numGlyphs,_handleMissingGlyphs,_pathParameterTemplate,_emScale); -} -static unsafe void Test_PathGlyph_27738() { - System.Int32 _firstPathName = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _fontTarget = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _fontName = default(System.IntPtr); - System.Int32 _fontStyle = default(System.Int32); - System.Int32 _numGlyphs = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _type = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _charcodes = default(System.IntPtr); - OpenTK.Graphics.OpenGL.NvPathRendering _handleMissingGlyphs = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _pathParameterTemplate = default(System.Int32); - System.Single _emScale = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.PathGlyph(_firstPathName,_fontTarget,_fontName,_fontStyle,_numGlyphs,_type,_charcodes,_handleMissingGlyphs,_pathParameterTemplate,_emScale); -} -static unsafe void Test_PathGlyph_27739() { - System.Int32 _firstPathName = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _fontTarget = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _fontName = default(int[]); - System.Int32 _fontStyle = default(System.Int32); - System.Int32 _numGlyphs = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _type = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _charcodes = default(int[]); - OpenTK.Graphics.OpenGL.NvPathRendering _handleMissingGlyphs = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _pathParameterTemplate = default(System.Int32); - System.Single _emScale = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.PathGlyph(_firstPathName,_fontTarget,_fontName,_fontStyle,_numGlyphs,_type,_charcodes,_handleMissingGlyphs,_pathParameterTemplate,_emScale); -} -static unsafe void Test_PathGlyph_27740() { - System.Int32 _firstPathName = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _fontTarget = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _fontName = default(int[,]); - System.Int32 _fontStyle = default(System.Int32); - System.Int32 _numGlyphs = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _type = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _charcodes = default(int[,]); - OpenTK.Graphics.OpenGL.NvPathRendering _handleMissingGlyphs = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _pathParameterTemplate = default(System.Int32); - System.Single _emScale = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.PathGlyph(_firstPathName,_fontTarget,_fontName,_fontStyle,_numGlyphs,_type,_charcodes,_handleMissingGlyphs,_pathParameterTemplate,_emScale); -} -static unsafe void Test_PathGlyph_27741() { - System.Int32 _firstPathName = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _fontTarget = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _fontName = default(int[,,]); - System.Int32 _fontStyle = default(System.Int32); - System.Int32 _numGlyphs = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _type = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _charcodes = default(int[,,]); - OpenTK.Graphics.OpenGL.NvPathRendering _handleMissingGlyphs = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _pathParameterTemplate = default(System.Int32); - System.Single _emScale = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.PathGlyph(_firstPathName,_fontTarget,_fontName,_fontStyle,_numGlyphs,_type,_charcodes,_handleMissingGlyphs,_pathParameterTemplate,_emScale); -} -static unsafe void Test_PathGlyph_27742() { - System.Int32 _firstPathName = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _fontTarget = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _fontName = default(int); - System.Int32 _fontStyle = default(System.Int32); - System.Int32 _numGlyphs = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _type = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _charcodes = default(int); - OpenTK.Graphics.OpenGL.NvPathRendering _handleMissingGlyphs = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _pathParameterTemplate = default(System.Int32); - System.Single _emScale = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.PathGlyph(_firstPathName,_fontTarget,ref _fontName,_fontStyle,_numGlyphs,_type,ref _charcodes,_handleMissingGlyphs,_pathParameterTemplate,_emScale); -} -static unsafe void Test_PathGlyph_27743() { - System.UInt32 _firstPathName = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _fontTarget = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _fontName = default(System.IntPtr); - System.UInt32 _fontStyle = default(System.UInt32); - System.Int32 _numGlyphs = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _type = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _charcodes = default(System.IntPtr); - OpenTK.Graphics.OpenGL.NvPathRendering _handleMissingGlyphs = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.UInt32 _pathParameterTemplate = default(System.UInt32); - System.Single _emScale = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.PathGlyph(_firstPathName,_fontTarget,_fontName,_fontStyle,_numGlyphs,_type,_charcodes,_handleMissingGlyphs,_pathParameterTemplate,_emScale); -} -static unsafe void Test_PathGlyph_27744() { - System.UInt32 _firstPathName = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _fontTarget = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _fontName = default(int[]); - System.UInt32 _fontStyle = default(System.UInt32); - System.Int32 _numGlyphs = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _type = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _charcodes = default(int[]); - OpenTK.Graphics.OpenGL.NvPathRendering _handleMissingGlyphs = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.UInt32 _pathParameterTemplate = default(System.UInt32); - System.Single _emScale = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.PathGlyph(_firstPathName,_fontTarget,_fontName,_fontStyle,_numGlyphs,_type,_charcodes,_handleMissingGlyphs,_pathParameterTemplate,_emScale); -} -static unsafe void Test_PathGlyph_27745() { - System.UInt32 _firstPathName = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _fontTarget = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _fontName = default(int[,]); - System.UInt32 _fontStyle = default(System.UInt32); - System.Int32 _numGlyphs = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _type = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _charcodes = default(int[,]); - OpenTK.Graphics.OpenGL.NvPathRendering _handleMissingGlyphs = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.UInt32 _pathParameterTemplate = default(System.UInt32); - System.Single _emScale = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.PathGlyph(_firstPathName,_fontTarget,_fontName,_fontStyle,_numGlyphs,_type,_charcodes,_handleMissingGlyphs,_pathParameterTemplate,_emScale); -} -static unsafe void Test_PathGlyph_27746() { - System.UInt32 _firstPathName = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _fontTarget = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _fontName = default(int[,,]); - System.UInt32 _fontStyle = default(System.UInt32); - System.Int32 _numGlyphs = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _type = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _charcodes = default(int[,,]); - OpenTK.Graphics.OpenGL.NvPathRendering _handleMissingGlyphs = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.UInt32 _pathParameterTemplate = default(System.UInt32); - System.Single _emScale = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.PathGlyph(_firstPathName,_fontTarget,_fontName,_fontStyle,_numGlyphs,_type,_charcodes,_handleMissingGlyphs,_pathParameterTemplate,_emScale); -} -static unsafe void Test_PathGlyph_27747() { - System.UInt32 _firstPathName = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _fontTarget = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _fontName = default(int); - System.UInt32 _fontStyle = default(System.UInt32); - System.Int32 _numGlyphs = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _type = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _charcodes = default(int); - OpenTK.Graphics.OpenGL.NvPathRendering _handleMissingGlyphs = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.UInt32 _pathParameterTemplate = default(System.UInt32); - System.Single _emScale = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.PathGlyph(_firstPathName,_fontTarget,ref _fontName,_fontStyle,_numGlyphs,_type,ref _charcodes,_handleMissingGlyphs,_pathParameterTemplate,_emScale); -} -static unsafe void Test_PathParameter_27748() { - System.Int32 _path = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pname = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.PathParameter(_path,_pname,_value); -} -static unsafe void Test_PathParameter_27749() { - System.UInt32 _path = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _pname = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.PathParameter(_path,_pname,_value); -} -static unsafe void Test_PathParameter_27750() { - System.Int32 _path = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pname = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.PathParameter(_path,_pname,_value); -} -static unsafe void Test_PathParameter_27751() { - System.Int32 _path = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pname = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.PathParameter(_path,_pname,_value); -} -static unsafe void Test_PathParameter_27752() { - System.UInt32 _path = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _pname = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.PathParameter(_path,_pname,_value); -} -static unsafe void Test_PathParameter_27753() { - System.UInt32 _path = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _pname = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.PathParameter(_path,_pname,_value); -} -static unsafe void Test_PathParameter_27754() { - System.Int32 _path = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pname = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.PathParameter(_path,_pname,_value); -} -static unsafe void Test_PathParameter_27755() { - System.UInt32 _path = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _pname = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.PathParameter(_path,_pname,_value); -} -static unsafe void Test_PathParameter_27756() { - System.Int32 _path = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pname = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.PathParameter(_path,_pname,_value); -} -static unsafe void Test_PathParameter_27757() { - System.Int32 _path = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pname = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.PathParameter(_path,_pname,_value); -} -static unsafe void Test_PathParameter_27758() { - System.UInt32 _path = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _pname = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.PathParameter(_path,_pname,_value); -} -static unsafe void Test_PathParameter_27759() { - System.UInt32 _path = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _pname = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.PathParameter(_path,_pname,_value); -} -static unsafe void Test_PathStencilDepthOffset_27760() { - System.Single _factor = default(System.Single); - System.Single _units = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.PathStencilDepthOffset(_factor,_units); -} -static unsafe void Test_PathStencilFunc_27761() { - OpenTK.Graphics.OpenGL.StencilFunction _func = default(OpenTK.Graphics.OpenGL.StencilFunction); - System.Int32 _ref = default(System.Int32); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.PathStencilFunc(_func,_ref,_mask); -} -static unsafe void Test_PathStencilFunc_27762() { - OpenTK.Graphics.OpenGL.StencilFunction _func = default(OpenTK.Graphics.OpenGL.StencilFunction); - System.Int32 _ref = default(System.Int32); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.PathStencilFunc(_func,_ref,_mask); -} -static unsafe void Test_PathString_27763() { - System.Int32 _path = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _format = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _length = default(System.Int32); - System.IntPtr _pathString = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.NV.PathString(_path,_format,_length,_pathString); -} -static unsafe void Test_PathString_27764() { - System.Int32 _path = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _format = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _length = default(System.Int32); - int[] _pathString = default(int[]); - OpenTK.Graphics.OpenGL.GL.NV.PathString(_path,_format,_length,_pathString); -} -static unsafe void Test_PathString_27765() { - System.Int32 _path = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _format = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _length = default(System.Int32); - int[,] _pathString = default(int[,]); - OpenTK.Graphics.OpenGL.GL.NV.PathString(_path,_format,_length,_pathString); -} -static unsafe void Test_PathString_27766() { - System.Int32 _path = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _format = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _length = default(System.Int32); - int[,,] _pathString = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.NV.PathString(_path,_format,_length,_pathString); -} -static unsafe void Test_PathString_27767() { - System.Int32 _path = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _format = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _length = default(System.Int32); - int _pathString = default(int); - OpenTK.Graphics.OpenGL.GL.NV.PathString(_path,_format,_length,ref _pathString); -} -static unsafe void Test_PathString_27768() { - System.UInt32 _path = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _format = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _length = default(System.Int32); - System.IntPtr _pathString = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.NV.PathString(_path,_format,_length,_pathString); -} -static unsafe void Test_PathString_27769() { - System.UInt32 _path = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _format = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _length = default(System.Int32); - int[] _pathString = default(int[]); - OpenTK.Graphics.OpenGL.GL.NV.PathString(_path,_format,_length,_pathString); -} -static unsafe void Test_PathString_27770() { - System.UInt32 _path = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _format = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _length = default(System.Int32); - int[,] _pathString = default(int[,]); - OpenTK.Graphics.OpenGL.GL.NV.PathString(_path,_format,_length,_pathString); -} -static unsafe void Test_PathString_27771() { - System.UInt32 _path = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _format = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _length = default(System.Int32); - int[,,] _pathString = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.NV.PathString(_path,_format,_length,_pathString); -} -static unsafe void Test_PathString_27772() { - System.UInt32 _path = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _format = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _length = default(System.Int32); - int _pathString = default(int); - OpenTK.Graphics.OpenGL.GL.NV.PathString(_path,_format,_length,ref _pathString); -} -static unsafe void Test_PathSubCommands_27773() { - System.Int32 _path = default(System.Int32); - System.Int32 _commandStart = default(System.Int32); - System.Int32 _commandsToDelete = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte[] _commands = default(System.Byte[]); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _coords = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.NV.PathSubCommands(_path,_commandStart,_commandsToDelete,_numCommands,_commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathSubCommands_27774() { - System.Int32 _path = default(System.Int32); - System.Int32 _commandStart = default(System.Int32); - System.Int32 _commandsToDelete = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte[] _commands = default(System.Byte[]); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _coords = default(int[]); - OpenTK.Graphics.OpenGL.GL.NV.PathSubCommands(_path,_commandStart,_commandsToDelete,_numCommands,_commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathSubCommands_27775() { - System.Int32 _path = default(System.Int32); - System.Int32 _commandStart = default(System.Int32); - System.Int32 _commandsToDelete = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte[] _commands = default(System.Byte[]); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _coords = default(int[,]); - OpenTK.Graphics.OpenGL.GL.NV.PathSubCommands(_path,_commandStart,_commandsToDelete,_numCommands,_commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathSubCommands_27776() { - System.Int32 _path = default(System.Int32); - System.Int32 _commandStart = default(System.Int32); - System.Int32 _commandsToDelete = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte[] _commands = default(System.Byte[]); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _coords = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.NV.PathSubCommands(_path,_commandStart,_commandsToDelete,_numCommands,_commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathSubCommands_27777() { - System.Int32 _path = default(System.Int32); - System.Int32 _commandStart = default(System.Int32); - System.Int32 _commandsToDelete = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte[] _commands = default(System.Byte[]); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _coords = default(int); - OpenTK.Graphics.OpenGL.GL.NV.PathSubCommands(_path,_commandStart,_commandsToDelete,_numCommands,_commands,_numCoords,_coordType,ref _coords); -} -static unsafe void Test_PathSubCommands_27778() { - System.Int32 _path = default(System.Int32); - System.Int32 _commandStart = default(System.Int32); - System.Int32 _commandsToDelete = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte _commands = default(System.Byte); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _coords = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.NV.PathSubCommands(_path,_commandStart,_commandsToDelete,_numCommands,ref _commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathSubCommands_27779() { - System.Int32 _path = default(System.Int32); - System.Int32 _commandStart = default(System.Int32); - System.Int32 _commandsToDelete = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte _commands = default(System.Byte); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _coords = default(int[]); - OpenTK.Graphics.OpenGL.GL.NV.PathSubCommands(_path,_commandStart,_commandsToDelete,_numCommands,ref _commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathSubCommands_27780() { - System.Int32 _path = default(System.Int32); - System.Int32 _commandStart = default(System.Int32); - System.Int32 _commandsToDelete = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte _commands = default(System.Byte); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _coords = default(int[,]); - OpenTK.Graphics.OpenGL.GL.NV.PathSubCommands(_path,_commandStart,_commandsToDelete,_numCommands,ref _commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathSubCommands_27781() { - System.Int32 _path = default(System.Int32); - System.Int32 _commandStart = default(System.Int32); - System.Int32 _commandsToDelete = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte _commands = default(System.Byte); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _coords = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.NV.PathSubCommands(_path,_commandStart,_commandsToDelete,_numCommands,ref _commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathSubCommands_27782() { - System.Int32 _path = default(System.Int32); - System.Int32 _commandStart = default(System.Int32); - System.Int32 _commandsToDelete = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte _commands = default(System.Byte); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _coords = default(int); - OpenTK.Graphics.OpenGL.GL.NV.PathSubCommands(_path,_commandStart,_commandsToDelete,_numCommands,ref _commands,_numCoords,_coordType,ref _coords); -} -static unsafe void Test_PathSubCommands_27783() { - System.Int32 _path = default(System.Int32); - System.Int32 _commandStart = default(System.Int32); - System.Int32 _commandsToDelete = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte* _commands = default(System.Byte*); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _coords = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.NV.PathSubCommands(_path,_commandStart,_commandsToDelete,_numCommands,_commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathSubCommands_27784() { - System.Int32 _path = default(System.Int32); - System.Int32 _commandStart = default(System.Int32); - System.Int32 _commandsToDelete = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte* _commands = default(System.Byte*); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _coords = default(int[]); - OpenTK.Graphics.OpenGL.GL.NV.PathSubCommands(_path,_commandStart,_commandsToDelete,_numCommands,_commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathSubCommands_27785() { - System.Int32 _path = default(System.Int32); - System.Int32 _commandStart = default(System.Int32); - System.Int32 _commandsToDelete = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte* _commands = default(System.Byte*); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _coords = default(int[,]); - OpenTK.Graphics.OpenGL.GL.NV.PathSubCommands(_path,_commandStart,_commandsToDelete,_numCommands,_commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathSubCommands_27786() { - System.Int32 _path = default(System.Int32); - System.Int32 _commandStart = default(System.Int32); - System.Int32 _commandsToDelete = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte* _commands = default(System.Byte*); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _coords = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.NV.PathSubCommands(_path,_commandStart,_commandsToDelete,_numCommands,_commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathSubCommands_27787() { - System.Int32 _path = default(System.Int32); - System.Int32 _commandStart = default(System.Int32); - System.Int32 _commandsToDelete = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte* _commands = default(System.Byte*); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _coords = default(int); - OpenTK.Graphics.OpenGL.GL.NV.PathSubCommands(_path,_commandStart,_commandsToDelete,_numCommands,_commands,_numCoords,_coordType,ref _coords); -} -static unsafe void Test_PathSubCommands_27788() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _commandStart = default(System.Int32); - System.Int32 _commandsToDelete = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte[] _commands = default(System.Byte[]); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _coords = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.NV.PathSubCommands(_path,_commandStart,_commandsToDelete,_numCommands,_commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathSubCommands_27789() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _commandStart = default(System.Int32); - System.Int32 _commandsToDelete = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte[] _commands = default(System.Byte[]); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _coords = default(int[]); - OpenTK.Graphics.OpenGL.GL.NV.PathSubCommands(_path,_commandStart,_commandsToDelete,_numCommands,_commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathSubCommands_27790() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _commandStart = default(System.Int32); - System.Int32 _commandsToDelete = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte[] _commands = default(System.Byte[]); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _coords = default(int[,]); - OpenTK.Graphics.OpenGL.GL.NV.PathSubCommands(_path,_commandStart,_commandsToDelete,_numCommands,_commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathSubCommands_27791() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _commandStart = default(System.Int32); - System.Int32 _commandsToDelete = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte[] _commands = default(System.Byte[]); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _coords = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.NV.PathSubCommands(_path,_commandStart,_commandsToDelete,_numCommands,_commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathSubCommands_27792() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _commandStart = default(System.Int32); - System.Int32 _commandsToDelete = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte[] _commands = default(System.Byte[]); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _coords = default(int); - OpenTK.Graphics.OpenGL.GL.NV.PathSubCommands(_path,_commandStart,_commandsToDelete,_numCommands,_commands,_numCoords,_coordType,ref _coords); -} -static unsafe void Test_PathSubCommands_27793() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _commandStart = default(System.Int32); - System.Int32 _commandsToDelete = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte _commands = default(System.Byte); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _coords = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.NV.PathSubCommands(_path,_commandStart,_commandsToDelete,_numCommands,ref _commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathSubCommands_27794() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _commandStart = default(System.Int32); - System.Int32 _commandsToDelete = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte _commands = default(System.Byte); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _coords = default(int[]); - OpenTK.Graphics.OpenGL.GL.NV.PathSubCommands(_path,_commandStart,_commandsToDelete,_numCommands,ref _commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathSubCommands_27795() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _commandStart = default(System.Int32); - System.Int32 _commandsToDelete = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte _commands = default(System.Byte); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _coords = default(int[,]); - OpenTK.Graphics.OpenGL.GL.NV.PathSubCommands(_path,_commandStart,_commandsToDelete,_numCommands,ref _commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathSubCommands_27796() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _commandStart = default(System.Int32); - System.Int32 _commandsToDelete = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte _commands = default(System.Byte); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _coords = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.NV.PathSubCommands(_path,_commandStart,_commandsToDelete,_numCommands,ref _commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathSubCommands_27797() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _commandStart = default(System.Int32); - System.Int32 _commandsToDelete = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte _commands = default(System.Byte); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _coords = default(int); - OpenTK.Graphics.OpenGL.GL.NV.PathSubCommands(_path,_commandStart,_commandsToDelete,_numCommands,ref _commands,_numCoords,_coordType,ref _coords); -} -static unsafe void Test_PathSubCommands_27798() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _commandStart = default(System.Int32); - System.Int32 _commandsToDelete = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte* _commands = default(System.Byte*); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _coords = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.NV.PathSubCommands(_path,_commandStart,_commandsToDelete,_numCommands,_commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathSubCommands_27799() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _commandStart = default(System.Int32); - System.Int32 _commandsToDelete = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte* _commands = default(System.Byte*); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _coords = default(int[]); - OpenTK.Graphics.OpenGL.GL.NV.PathSubCommands(_path,_commandStart,_commandsToDelete,_numCommands,_commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathSubCommands_27800() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _commandStart = default(System.Int32); - System.Int32 _commandsToDelete = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte* _commands = default(System.Byte*); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _coords = default(int[,]); - OpenTK.Graphics.OpenGL.GL.NV.PathSubCommands(_path,_commandStart,_commandsToDelete,_numCommands,_commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathSubCommands_27801() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _commandStart = default(System.Int32); - System.Int32 _commandsToDelete = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte* _commands = default(System.Byte*); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _coords = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.NV.PathSubCommands(_path,_commandStart,_commandsToDelete,_numCommands,_commands,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathSubCommands_27802() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _commandStart = default(System.Int32); - System.Int32 _commandsToDelete = default(System.Int32); - System.Int32 _numCommands = default(System.Int32); - System.Byte* _commands = default(System.Byte*); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _coords = default(int); - OpenTK.Graphics.OpenGL.GL.NV.PathSubCommands(_path,_commandStart,_commandsToDelete,_numCommands,_commands,_numCoords,_coordType,ref _coords); -} -static unsafe void Test_PathSubCoords_27803() { - System.Int32 _path = default(System.Int32); - System.Int32 _coordStart = default(System.Int32); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _coords = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.NV.PathSubCoords(_path,_coordStart,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathSubCoords_27804() { - System.Int32 _path = default(System.Int32); - System.Int32 _coordStart = default(System.Int32); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _coords = default(int[]); - OpenTK.Graphics.OpenGL.GL.NV.PathSubCoords(_path,_coordStart,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathSubCoords_27805() { - System.Int32 _path = default(System.Int32); - System.Int32 _coordStart = default(System.Int32); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _coords = default(int[,]); - OpenTK.Graphics.OpenGL.GL.NV.PathSubCoords(_path,_coordStart,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathSubCoords_27806() { - System.Int32 _path = default(System.Int32); - System.Int32 _coordStart = default(System.Int32); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _coords = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.NV.PathSubCoords(_path,_coordStart,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathSubCoords_27807() { - System.Int32 _path = default(System.Int32); - System.Int32 _coordStart = default(System.Int32); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _coords = default(int); - OpenTK.Graphics.OpenGL.GL.NV.PathSubCoords(_path,_coordStart,_numCoords,_coordType,ref _coords); -} -static unsafe void Test_PathSubCoords_27808() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _coordStart = default(System.Int32); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _coords = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.NV.PathSubCoords(_path,_coordStart,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathSubCoords_27809() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _coordStart = default(System.Int32); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _coords = default(int[]); - OpenTK.Graphics.OpenGL.GL.NV.PathSubCoords(_path,_coordStart,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathSubCoords_27810() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _coordStart = default(System.Int32); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _coords = default(int[,]); - OpenTK.Graphics.OpenGL.GL.NV.PathSubCoords(_path,_coordStart,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathSubCoords_27811() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _coordStart = default(System.Int32); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _coords = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.NV.PathSubCoords(_path,_coordStart,_numCoords,_coordType,_coords); -} -static unsafe void Test_PathSubCoords_27812() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _coordStart = default(System.Int32); - System.Int32 _numCoords = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _coordType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _coords = default(int); - OpenTK.Graphics.OpenGL.GL.NV.PathSubCoords(_path,_coordStart,_numCoords,_coordType,ref _coords); -} -static unsafe void Test_PathTexGen_27813() { - OpenTK.Graphics.OpenGL.NvPathRendering _texCoordSet = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _genMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _components = default(System.Int32); - System.Single[] _coeffs = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.PathTexGen(_texCoordSet,_genMode,_components,_coeffs); -} -static unsafe void Test_PathTexGen_27814() { - OpenTK.Graphics.OpenGL.NvPathRendering _texCoordSet = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _genMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _components = default(System.Int32); - System.Single _coeffs = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.PathTexGen(_texCoordSet,_genMode,_components,ref _coeffs); -} -static unsafe void Test_PathTexGen_27815() { - OpenTK.Graphics.OpenGL.NvPathRendering _texCoordSet = default(OpenTK.Graphics.OpenGL.NvPathRendering); - OpenTK.Graphics.OpenGL.NvPathRendering _genMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _components = default(System.Int32); - System.Single* _coeffs = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.PathTexGen(_texCoordSet,_genMode,_components,_coeffs); -} -static unsafe void Test_PauseTransformFeedback_27816() { - OpenTK.Graphics.OpenGL.GL.NV.PauseTransformFeedback(); -} -static unsafe void Test_PixelDataRange_27817() { - OpenTK.Graphics.OpenGL.NvPixelDataRange _target = default(OpenTK.Graphics.OpenGL.NvPixelDataRange); - System.Int32 _length = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.NV.PixelDataRange(_target,_length,_pointer); -} -static unsafe void Test_PixelDataRange_27818() { - OpenTK.Graphics.OpenGL.NvPixelDataRange _target = default(OpenTK.Graphics.OpenGL.NvPixelDataRange); - System.Int32 _length = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.NV.PixelDataRange(_target,_length,_pointer); -} -static unsafe void Test_PixelDataRange_27819() { - OpenTK.Graphics.OpenGL.NvPixelDataRange _target = default(OpenTK.Graphics.OpenGL.NvPixelDataRange); - System.Int32 _length = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.NV.PixelDataRange(_target,_length,_pointer); -} -static unsafe void Test_PixelDataRange_27820() { - OpenTK.Graphics.OpenGL.NvPixelDataRange _target = default(OpenTK.Graphics.OpenGL.NvPixelDataRange); - System.Int32 _length = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.NV.PixelDataRange(_target,_length,_pointer); -} -static unsafe void Test_PixelDataRange_27821() { - OpenTK.Graphics.OpenGL.NvPixelDataRange _target = default(OpenTK.Graphics.OpenGL.NvPixelDataRange); - System.Int32 _length = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.NV.PixelDataRange(_target,_length,ref _pointer); -} -static unsafe void Test_PointAlongPath_27822() { - System.Int32 _path = default(System.Int32); - System.Int32 _startSegment = default(System.Int32); - System.Int32 _numSegments = default(System.Int32); - System.Single _distance = default(System.Single); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _tangentX = default(System.Single); - System.Single _tangentY = default(System.Single); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.NV.PointAlongPath(_path,_startSegment,_numSegments,_distance,out _x,out _y,out _tangentX,out _tangentY); -} -static unsafe void Test_PointAlongPath_27823() { - System.Int32 _path = default(System.Int32); - System.Int32 _startSegment = default(System.Int32); - System.Int32 _numSegments = default(System.Int32); - System.Single _distance = default(System.Single); - System.Single* _x = default(System.Single*); - System.Single* _y = default(System.Single*); - System.Single* _tangentX = default(System.Single*); - System.Single* _tangentY = default(System.Single*); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.NV.PointAlongPath(_path,_startSegment,_numSegments,_distance,_x,_y,_tangentX,_tangentY); -} -static unsafe void Test_PointAlongPath_27824() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _startSegment = default(System.Int32); - System.Int32 _numSegments = default(System.Int32); - System.Single _distance = default(System.Single); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _tangentX = default(System.Single); - System.Single _tangentY = default(System.Single); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.NV.PointAlongPath(_path,_startSegment,_numSegments,_distance,out _x,out _y,out _tangentX,out _tangentY); -} -static unsafe void Test_PointAlongPath_27825() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _startSegment = default(System.Int32); - System.Int32 _numSegments = default(System.Int32); - System.Single _distance = default(System.Single); - System.Single* _x = default(System.Single*); - System.Single* _y = default(System.Single*); - System.Single* _tangentX = default(System.Single*); - System.Single* _tangentY = default(System.Single*); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.NV.PointAlongPath(_path,_startSegment,_numSegments,_distance,_x,_y,_tangentX,_tangentY); -} -static unsafe void Test_PointParameter_27826() { - OpenTK.Graphics.OpenGL.NvPointSprite _pname = default(OpenTK.Graphics.OpenGL.NvPointSprite); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.PointParameter(_pname,_param); -} -static unsafe void Test_PointParameter_27827() { - OpenTK.Graphics.OpenGL.NvPointSprite _pname = default(OpenTK.Graphics.OpenGL.NvPointSprite); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.PointParameter(_pname,_params); -} -static unsafe void Test_PointParameter_27828() { - OpenTK.Graphics.OpenGL.NvPointSprite _pname = default(OpenTK.Graphics.OpenGL.NvPointSprite); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.PointParameter(_pname,_params); -} -static unsafe void Test_PresentFrameDualFill_27829() { - System.Int32 _video_slot = default(System.Int32); - System.Int64 _minPresentTime = default(System.Int64); - System.Int32 _beginPresentTimeId = default(System.Int32); - System.Int32 _presentDurationId = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPresentVideo _type = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - OpenTK.Graphics.OpenGL.NvPresentVideo _target0 = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.Int32 _fill0 = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPresentVideo _target1 = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.Int32 _fill1 = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPresentVideo _target2 = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.Int32 _fill2 = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPresentVideo _target3 = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.Int32 _fill3 = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.PresentFrameDualFill(_video_slot,_minPresentTime,_beginPresentTimeId,_presentDurationId,_type,_target0,_fill0,_target1,_fill1,_target2,_fill2,_target3,_fill3); -} -static unsafe void Test_PresentFrameDualFill_27830() { - System.UInt32 _video_slot = default(System.UInt32); - System.UInt64 _minPresentTime = default(System.UInt64); - System.UInt32 _beginPresentTimeId = default(System.UInt32); - System.UInt32 _presentDurationId = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPresentVideo _type = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - OpenTK.Graphics.OpenGL.NvPresentVideo _target0 = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.UInt32 _fill0 = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPresentVideo _target1 = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.UInt32 _fill1 = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPresentVideo _target2 = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.UInt32 _fill2 = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPresentVideo _target3 = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.UInt32 _fill3 = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.PresentFrameDualFill(_video_slot,_minPresentTime,_beginPresentTimeId,_presentDurationId,_type,_target0,_fill0,_target1,_fill1,_target2,_fill2,_target3,_fill3); -} -static unsafe void Test_PresentFrameKeye_27831() { - System.Int32 _video_slot = default(System.Int32); - System.Int64 _minPresentTime = default(System.Int64); - System.Int32 _beginPresentTimeId = default(System.Int32); - System.Int32 _presentDurationId = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPresentVideo _type = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - OpenTK.Graphics.OpenGL.NvPresentVideo _target0 = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.Int32 _fill0 = default(System.Int32); - System.Int32 _key0 = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPresentVideo _target1 = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.Int32 _fill1 = default(System.Int32); - System.Int32 _key1 = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.PresentFrameKeye(_video_slot,_minPresentTime,_beginPresentTimeId,_presentDurationId,_type,_target0,_fill0,_key0,_target1,_fill1,_key1); -} -static unsafe void Test_PresentFrameKeye_27832() { - System.UInt32 _video_slot = default(System.UInt32); - System.UInt64 _minPresentTime = default(System.UInt64); - System.UInt32 _beginPresentTimeId = default(System.UInt32); - System.UInt32 _presentDurationId = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPresentVideo _type = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - OpenTK.Graphics.OpenGL.NvPresentVideo _target0 = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.UInt32 _fill0 = default(System.UInt32); - System.UInt32 _key0 = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPresentVideo _target1 = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.UInt32 _fill1 = default(System.UInt32); - System.UInt32 _key1 = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.PresentFrameKeye(_video_slot,_minPresentTime,_beginPresentTimeId,_presentDurationId,_type,_target0,_fill0,_key0,_target1,_fill1,_key1); -} -static unsafe void Test_PrimitiveRestartIndex_27833() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.PrimitiveRestartIndex(_index); -} -static unsafe void Test_PrimitiveRestartIndex_27834() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.PrimitiveRestartIndex(_index); -} -static unsafe void Test_PrimitiveRestart_27835() { - OpenTK.Graphics.OpenGL.GL.NV.PrimitiveRestart(); -} -static unsafe void Test_ProgramBufferParameters_27836() { - OpenTK.Graphics.OpenGL.NvParameterBufferObject _target = default(OpenTK.Graphics.OpenGL.NvParameterBufferObject); - System.Int32 _bindingIndex = default(System.Int32); - System.Int32 _wordIndex = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramBufferParameters(_target,_bindingIndex,_wordIndex,_count,_params); -} -static unsafe void Test_ProgramBufferParameters_27837() { - OpenTK.Graphics.OpenGL.NvParameterBufferObject _target = default(OpenTK.Graphics.OpenGL.NvParameterBufferObject); - System.Int32 _bindingIndex = default(System.Int32); - System.Int32 _wordIndex = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.ProgramBufferParameters(_target,_bindingIndex,_wordIndex,_count,ref _params); -} -static unsafe void Test_ProgramBufferParameters_27838() { - OpenTK.Graphics.OpenGL.NvParameterBufferObject _target = default(OpenTK.Graphics.OpenGL.NvParameterBufferObject); - System.Int32 _bindingIndex = default(System.Int32); - System.Int32 _wordIndex = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramBufferParameters(_target,_bindingIndex,_wordIndex,_count,_params); -} -static unsafe void Test_ProgramBufferParameters_27839() { - OpenTK.Graphics.OpenGL.NvParameterBufferObject _target = default(OpenTK.Graphics.OpenGL.NvParameterBufferObject); - System.UInt32 _bindingIndex = default(System.UInt32); - System.UInt32 _wordIndex = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramBufferParameters(_target,_bindingIndex,_wordIndex,_count,_params); -} -static unsafe void Test_ProgramBufferParameters_27840() { - OpenTK.Graphics.OpenGL.NvParameterBufferObject _target = default(OpenTK.Graphics.OpenGL.NvParameterBufferObject); - System.UInt32 _bindingIndex = default(System.UInt32); - System.UInt32 _wordIndex = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.ProgramBufferParameters(_target,_bindingIndex,_wordIndex,_count,ref _params); -} -static unsafe void Test_ProgramBufferParameters_27841() { - OpenTK.Graphics.OpenGL.NvParameterBufferObject _target = default(OpenTK.Graphics.OpenGL.NvParameterBufferObject); - System.UInt32 _bindingIndex = default(System.UInt32); - System.UInt32 _wordIndex = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramBufferParameters(_target,_bindingIndex,_wordIndex,_count,_params); -} -static unsafe void Test_ProgramBufferParametersI_27842() { - OpenTK.Graphics.OpenGL.NvParameterBufferObject _target = default(OpenTK.Graphics.OpenGL.NvParameterBufferObject); - System.Int32 _bindingIndex = default(System.Int32); - System.Int32 _wordIndex = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramBufferParametersI(_target,_bindingIndex,_wordIndex,_count,_params); -} -static unsafe void Test_ProgramBufferParametersI_27843() { - OpenTK.Graphics.OpenGL.NvParameterBufferObject _target = default(OpenTK.Graphics.OpenGL.NvParameterBufferObject); - System.Int32 _bindingIndex = default(System.Int32); - System.Int32 _wordIndex = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.ProgramBufferParametersI(_target,_bindingIndex,_wordIndex,_count,ref _params); -} -static unsafe void Test_ProgramBufferParametersI_27844() { - OpenTK.Graphics.OpenGL.NvParameterBufferObject _target = default(OpenTK.Graphics.OpenGL.NvParameterBufferObject); - System.Int32 _bindingIndex = default(System.Int32); - System.Int32 _wordIndex = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramBufferParametersI(_target,_bindingIndex,_wordIndex,_count,_params); -} -static unsafe void Test_ProgramBufferParametersI_27845() { - OpenTK.Graphics.OpenGL.NvParameterBufferObject _target = default(OpenTK.Graphics.OpenGL.NvParameterBufferObject); - System.UInt32 _bindingIndex = default(System.UInt32); - System.UInt32 _wordIndex = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramBufferParametersI(_target,_bindingIndex,_wordIndex,_count,_params); -} -static unsafe void Test_ProgramBufferParametersI_27846() { - OpenTK.Graphics.OpenGL.NvParameterBufferObject _target = default(OpenTK.Graphics.OpenGL.NvParameterBufferObject); - System.UInt32 _bindingIndex = default(System.UInt32); - System.UInt32 _wordIndex = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.ProgramBufferParametersI(_target,_bindingIndex,_wordIndex,_count,ref _params); -} -static unsafe void Test_ProgramBufferParametersI_27847() { - OpenTK.Graphics.OpenGL.NvParameterBufferObject _target = default(OpenTK.Graphics.OpenGL.NvParameterBufferObject); - System.UInt32 _bindingIndex = default(System.UInt32); - System.UInt32 _wordIndex = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramBufferParametersI(_target,_bindingIndex,_wordIndex,_count,_params); -} -static unsafe void Test_ProgramBufferParametersI_27848() { - OpenTK.Graphics.OpenGL.NvParameterBufferObject _target = default(OpenTK.Graphics.OpenGL.NvParameterBufferObject); - System.UInt32 _bindingIndex = default(System.UInt32); - System.UInt32 _wordIndex = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramBufferParametersI(_target,_bindingIndex,_wordIndex,_count,_params); -} -static unsafe void Test_ProgramBufferParametersI_27849() { - OpenTK.Graphics.OpenGL.NvParameterBufferObject _target = default(OpenTK.Graphics.OpenGL.NvParameterBufferObject); - System.UInt32 _bindingIndex = default(System.UInt32); - System.UInt32 _wordIndex = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.ProgramBufferParametersI(_target,_bindingIndex,_wordIndex,_count,ref _params); -} -static unsafe void Test_ProgramBufferParametersI_27850() { - OpenTK.Graphics.OpenGL.NvParameterBufferObject _target = default(OpenTK.Graphics.OpenGL.NvParameterBufferObject); - System.UInt32 _bindingIndex = default(System.UInt32); - System.UInt32 _wordIndex = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramBufferParametersI(_target,_bindingIndex,_wordIndex,_count,_params); -} -static unsafe void Test_ProgramEnvParameterI4_27851() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.Int32 _index = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - System.Int32 _w = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.ProgramEnvParameterI4(_target,_index,_x,_y,_z,_w); -} -static unsafe void Test_ProgramEnvParameterI4_27852() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.UInt32 _index = default(System.UInt32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - System.Int32 _w = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.ProgramEnvParameterI4(_target,_index,_x,_y,_z,_w); -} -static unsafe void Test_ProgramEnvParameterI4_27853() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.Int32 _index = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramEnvParameterI4(_target,_index,_params); -} -static unsafe void Test_ProgramEnvParameterI4_27854() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.Int32 _index = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.ProgramEnvParameterI4(_target,_index,ref _params); -} -static unsafe void Test_ProgramEnvParameterI4_27855() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.Int32 _index = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramEnvParameterI4(_target,_index,_params); -} -static unsafe void Test_ProgramEnvParameterI4_27856() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.UInt32 _index = default(System.UInt32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramEnvParameterI4(_target,_index,_params); -} -static unsafe void Test_ProgramEnvParameterI4_27857() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.UInt32 _index = default(System.UInt32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.ProgramEnvParameterI4(_target,_index,ref _params); -} -static unsafe void Test_ProgramEnvParameterI4_27858() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.UInt32 _index = default(System.UInt32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramEnvParameterI4(_target,_index,_params); -} -static unsafe void Test_ProgramEnvParameterI4_27859() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.UInt32 _index = default(System.UInt32); - System.UInt32 _x = default(System.UInt32); - System.UInt32 _y = default(System.UInt32); - System.UInt32 _z = default(System.UInt32); - System.UInt32 _w = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.ProgramEnvParameterI4(_target,_index,_x,_y,_z,_w); -} -static unsafe void Test_ProgramEnvParameterI4_27860() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.UInt32 _index = default(System.UInt32); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramEnvParameterI4(_target,_index,_params); -} -static unsafe void Test_ProgramEnvParameterI4_27861() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.UInt32 _index = default(System.UInt32); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.ProgramEnvParameterI4(_target,_index,ref _params); -} -static unsafe void Test_ProgramEnvParameterI4_27862() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.UInt32 _index = default(System.UInt32); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramEnvParameterI4(_target,_index,_params); -} -static unsafe void Test_ProgramEnvParametersI4_27863() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramEnvParametersI4(_target,_index,_count,_params); -} -static unsafe void Test_ProgramEnvParametersI4_27864() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.ProgramEnvParametersI4(_target,_index,_count,ref _params); -} -static unsafe void Test_ProgramEnvParametersI4_27865() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramEnvParametersI4(_target,_index,_count,_params); -} -static unsafe void Test_ProgramEnvParametersI4_27866() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramEnvParametersI4(_target,_index,_count,_params); -} -static unsafe void Test_ProgramEnvParametersI4_27867() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.ProgramEnvParametersI4(_target,_index,_count,ref _params); -} -static unsafe void Test_ProgramEnvParametersI4_27868() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramEnvParametersI4(_target,_index,_count,_params); -} -static unsafe void Test_ProgramEnvParametersI4_27869() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramEnvParametersI4(_target,_index,_count,_params); -} -static unsafe void Test_ProgramEnvParametersI4_27870() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.ProgramEnvParametersI4(_target,_index,_count,ref _params); -} -static unsafe void Test_ProgramEnvParametersI4_27871() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramEnvParametersI4(_target,_index,_count,_params); -} -static unsafe void Test_ProgramLocalParameterI4_27872() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.Int32 _index = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - System.Int32 _w = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.ProgramLocalParameterI4(_target,_index,_x,_y,_z,_w); -} -static unsafe void Test_ProgramLocalParameterI4_27873() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.UInt32 _index = default(System.UInt32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - System.Int32 _w = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.ProgramLocalParameterI4(_target,_index,_x,_y,_z,_w); -} -static unsafe void Test_ProgramLocalParameterI4_27874() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.Int32 _index = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramLocalParameterI4(_target,_index,_params); -} -static unsafe void Test_ProgramLocalParameterI4_27875() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.Int32 _index = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.ProgramLocalParameterI4(_target,_index,ref _params); -} -static unsafe void Test_ProgramLocalParameterI4_27876() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.Int32 _index = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramLocalParameterI4(_target,_index,_params); -} -static unsafe void Test_ProgramLocalParameterI4_27877() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.UInt32 _index = default(System.UInt32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramLocalParameterI4(_target,_index,_params); -} -static unsafe void Test_ProgramLocalParameterI4_27878() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.UInt32 _index = default(System.UInt32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.ProgramLocalParameterI4(_target,_index,ref _params); -} -static unsafe void Test_ProgramLocalParameterI4_27879() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.UInt32 _index = default(System.UInt32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramLocalParameterI4(_target,_index,_params); -} -static unsafe void Test_ProgramLocalParameterI4_27880() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.UInt32 _index = default(System.UInt32); - System.UInt32 _x = default(System.UInt32); - System.UInt32 _y = default(System.UInt32); - System.UInt32 _z = default(System.UInt32); - System.UInt32 _w = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.ProgramLocalParameterI4(_target,_index,_x,_y,_z,_w); -} -static unsafe void Test_ProgramLocalParameterI4_27881() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.UInt32 _index = default(System.UInt32); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramLocalParameterI4(_target,_index,_params); -} -static unsafe void Test_ProgramLocalParameterI4_27882() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.UInt32 _index = default(System.UInt32); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.ProgramLocalParameterI4(_target,_index,ref _params); -} -static unsafe void Test_ProgramLocalParameterI4_27883() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.UInt32 _index = default(System.UInt32); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramLocalParameterI4(_target,_index,_params); -} -static unsafe void Test_ProgramLocalParametersI4_27884() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramLocalParametersI4(_target,_index,_count,_params); -} -static unsafe void Test_ProgramLocalParametersI4_27885() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.ProgramLocalParametersI4(_target,_index,_count,ref _params); -} -static unsafe void Test_ProgramLocalParametersI4_27886() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramLocalParametersI4(_target,_index,_count,_params); -} -static unsafe void Test_ProgramLocalParametersI4_27887() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramLocalParametersI4(_target,_index,_count,_params); -} -static unsafe void Test_ProgramLocalParametersI4_27888() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.ProgramLocalParametersI4(_target,_index,_count,ref _params); -} -static unsafe void Test_ProgramLocalParametersI4_27889() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramLocalParametersI4(_target,_index,_count,_params); -} -static unsafe void Test_ProgramLocalParametersI4_27890() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramLocalParametersI4(_target,_index,_count,_params); -} -static unsafe void Test_ProgramLocalParametersI4_27891() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.ProgramLocalParametersI4(_target,_index,_count,ref _params); -} -static unsafe void Test_ProgramLocalParametersI4_27892() { - OpenTK.Graphics.OpenGL.NvGpuProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram4); - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramLocalParametersI4(_target,_index,_count,_params); -} -static unsafe void Test_ProgramNamedParameter4_27893() { - System.Int32 _id = default(System.Int32); - System.Int32 _len = default(System.Int32); - System.Byte _name = default(System.Byte); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - System.Double _w = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.ProgramNamedParameter4(_id,_len,ref _name,_x,_y,_z,_w); -} -static unsafe void Test_ProgramNamedParameter4_27894() { - System.Int32 _id = default(System.Int32); - System.Int32 _len = default(System.Int32); - System.Byte* _name = default(System.Byte*); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - System.Double _w = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.ProgramNamedParameter4(_id,_len,_name,_x,_y,_z,_w); -} -static unsafe void Test_ProgramNamedParameter4_27895() { - System.UInt32 _id = default(System.UInt32); - System.Int32 _len = default(System.Int32); - System.Byte _name = default(System.Byte); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - System.Double _w = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.ProgramNamedParameter4(_id,_len,ref _name,_x,_y,_z,_w); -} -static unsafe void Test_ProgramNamedParameter4_27896() { - System.UInt32 _id = default(System.UInt32); - System.Int32 _len = default(System.Int32); - System.Byte* _name = default(System.Byte*); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - System.Double _w = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.ProgramNamedParameter4(_id,_len,_name,_x,_y,_z,_w); -} -static unsafe void Test_ProgramNamedParameter4_27897() { - System.Int32 _id = default(System.Int32); - System.Int32 _len = default(System.Int32); - System.Byte _name = default(System.Byte); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramNamedParameter4(_id,_len,ref _name,_v); -} -static unsafe void Test_ProgramNamedParameter4_27898() { - System.Int32 _id = default(System.Int32); - System.Int32 _len = default(System.Int32); - System.Byte _name = default(System.Byte); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.ProgramNamedParameter4(_id,_len,ref _name,ref _v); -} -static unsafe void Test_ProgramNamedParameter4_27899() { - System.Int32 _id = default(System.Int32); - System.Int32 _len = default(System.Int32); - System.Byte* _name = default(System.Byte*); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramNamedParameter4(_id,_len,_name,_v); -} -static unsafe void Test_ProgramNamedParameter4_27900() { - System.UInt32 _id = default(System.UInt32); - System.Int32 _len = default(System.Int32); - System.Byte _name = default(System.Byte); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramNamedParameter4(_id,_len,ref _name,_v); -} -static unsafe void Test_ProgramNamedParameter4_27901() { - System.UInt32 _id = default(System.UInt32); - System.Int32 _len = default(System.Int32); - System.Byte _name = default(System.Byte); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.ProgramNamedParameter4(_id,_len,ref _name,ref _v); -} -static unsafe void Test_ProgramNamedParameter4_27902() { - System.UInt32 _id = default(System.UInt32); - System.Int32 _len = default(System.Int32); - System.Byte* _name = default(System.Byte*); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramNamedParameter4(_id,_len,_name,_v); -} -static unsafe void Test_ProgramNamedParameter4_27903() { - System.Int32 _id = default(System.Int32); - System.Int32 _len = default(System.Int32); - System.Byte _name = default(System.Byte); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - System.Single _w = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.ProgramNamedParameter4(_id,_len,ref _name,_x,_y,_z,_w); -} -static unsafe void Test_ProgramNamedParameter4_27904() { - System.Int32 _id = default(System.Int32); - System.Int32 _len = default(System.Int32); - System.Byte* _name = default(System.Byte*); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - System.Single _w = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.ProgramNamedParameter4(_id,_len,_name,_x,_y,_z,_w); -} -static unsafe void Test_ProgramNamedParameter4_27905() { - System.UInt32 _id = default(System.UInt32); - System.Int32 _len = default(System.Int32); - System.Byte _name = default(System.Byte); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - System.Single _w = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.ProgramNamedParameter4(_id,_len,ref _name,_x,_y,_z,_w); -} -static unsafe void Test_ProgramNamedParameter4_27906() { - System.UInt32 _id = default(System.UInt32); - System.Int32 _len = default(System.Int32); - System.Byte* _name = default(System.Byte*); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - System.Single _w = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.ProgramNamedParameter4(_id,_len,_name,_x,_y,_z,_w); -} -static unsafe void Test_ProgramNamedParameter4_27907() { - System.Int32 _id = default(System.Int32); - System.Int32 _len = default(System.Int32); - System.Byte _name = default(System.Byte); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramNamedParameter4(_id,_len,ref _name,_v); -} -static unsafe void Test_ProgramNamedParameter4_27908() { - System.Int32 _id = default(System.Int32); - System.Int32 _len = default(System.Int32); - System.Byte _name = default(System.Byte); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.ProgramNamedParameter4(_id,_len,ref _name,ref _v); -} -static unsafe void Test_ProgramNamedParameter4_27909() { - System.Int32 _id = default(System.Int32); - System.Int32 _len = default(System.Int32); - System.Byte* _name = default(System.Byte*); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramNamedParameter4(_id,_len,_name,_v); -} -static unsafe void Test_ProgramNamedParameter4_27910() { - System.UInt32 _id = default(System.UInt32); - System.Int32 _len = default(System.Int32); - System.Byte _name = default(System.Byte); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramNamedParameter4(_id,_len,ref _name,_v); -} -static unsafe void Test_ProgramNamedParameter4_27911() { - System.UInt32 _id = default(System.UInt32); - System.Int32 _len = default(System.Int32); - System.Byte _name = default(System.Byte); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.ProgramNamedParameter4(_id,_len,ref _name,ref _v); -} -static unsafe void Test_ProgramNamedParameter4_27912() { - System.UInt32 _id = default(System.UInt32); - System.Int32 _len = default(System.Int32); - System.Byte* _name = default(System.Byte*); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramNamedParameter4(_id,_len,_name,_v); -} -static unsafe void Test_ProgramParameter4_27913() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _index = default(System.Int32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - System.Double _w = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.ProgramParameter4(_target,_index,_x,_y,_z,_w); -} -static unsafe void Test_ProgramParameter4_27914() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - System.Double _w = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.ProgramParameter4(_target,_index,_x,_y,_z,_w); -} -static unsafe void Test_ProgramParameter4_27915() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _index = default(System.Int32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramParameter4(_target,_index,_v); -} -static unsafe void Test_ProgramParameter4_27916() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _index = default(System.Int32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.ProgramParameter4(_target,_index,ref _v); -} -static unsafe void Test_ProgramParameter4_27917() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _index = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramParameter4(_target,_index,_v); -} -static unsafe void Test_ProgramParameter4_27918() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramParameter4(_target,_index,_v); -} -static unsafe void Test_ProgramParameter4_27919() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.ProgramParameter4(_target,_index,ref _v); -} -static unsafe void Test_ProgramParameter4_27920() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramParameter4(_target,_index,_v); -} -static unsafe void Test_ProgramParameter4_27921() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _index = default(System.Int32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - System.Single _w = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.ProgramParameter4(_target,_index,_x,_y,_z,_w); -} -static unsafe void Test_ProgramParameter4_27922() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - System.Single _w = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.ProgramParameter4(_target,_index,_x,_y,_z,_w); -} -static unsafe void Test_ProgramParameter4_27923() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _index = default(System.Int32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramParameter4(_target,_index,_v); -} -static unsafe void Test_ProgramParameter4_27924() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _index = default(System.Int32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.ProgramParameter4(_target,_index,ref _v); -} -static unsafe void Test_ProgramParameter4_27925() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _index = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramParameter4(_target,_index,_v); -} -static unsafe void Test_ProgramParameter4_27926() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramParameter4(_target,_index,_v); -} -static unsafe void Test_ProgramParameter4_27927() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.ProgramParameter4(_target,_index,ref _v); -} -static unsafe void Test_ProgramParameter4_27928() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramParameter4(_target,_index,_v); -} -static unsafe void Test_ProgramParameters4_27929() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramParameters4(_target,_index,_count,_v); -} -static unsafe void Test_ProgramParameters4_27930() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.ProgramParameters4(_target,_index,_count,ref _v); -} -static unsafe void Test_ProgramParameters4_27931() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramParameters4(_target,_index,_count,_v); -} -static unsafe void Test_ProgramParameters4_27932() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramParameters4(_target,_index,_count,_v); -} -static unsafe void Test_ProgramParameters4_27933() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.ProgramParameters4(_target,_index,_count,ref _v); -} -static unsafe void Test_ProgramParameters4_27934() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramParameters4(_target,_index,_count,_v); -} -static unsafe void Test_ProgramParameters4_27935() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - System.UInt32 _count = default(System.UInt32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramParameters4(_target,_index,_count,_v); -} -static unsafe void Test_ProgramParameters4_27936() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - System.UInt32 _count = default(System.UInt32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.ProgramParameters4(_target,_index,_count,ref _v); -} -static unsafe void Test_ProgramParameters4_27937() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - System.UInt32 _count = default(System.UInt32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramParameters4(_target,_index,_count,_v); -} -static unsafe void Test_ProgramParameters4_27938() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramParameters4(_target,_index,_count,_v); -} -static unsafe void Test_ProgramParameters4_27939() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.ProgramParameters4(_target,_index,_count,ref _v); -} -static unsafe void Test_ProgramParameters4_27940() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramParameters4(_target,_index,_count,_v); -} -static unsafe void Test_ProgramParameters4_27941() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramParameters4(_target,_index,_count,_v); -} -static unsafe void Test_ProgramParameters4_27942() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.ProgramParameters4(_target,_index,_count,ref _v); -} -static unsafe void Test_ProgramParameters4_27943() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramParameters4(_target,_index,_count,_v); -} -static unsafe void Test_ProgramParameters4_27944() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - System.UInt32 _count = default(System.UInt32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramParameters4(_target,_index,_count,_v); -} -static unsafe void Test_ProgramParameters4_27945() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - System.UInt32 _count = default(System.UInt32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.ProgramParameters4(_target,_index,_count,ref _v); -} -static unsafe void Test_ProgramParameters4_27946() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _index = default(System.UInt32); - System.UInt32 _count = default(System.UInt32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramParameters4(_target,_index,_count,_v); -} -static unsafe void Test_ProgramSubroutineParameters_27947() { - OpenTK.Graphics.OpenGL.NvGpuProgram5 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram5); - System.Int32 _count = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramSubroutineParameters(_target,_count,_params); -} -static unsafe void Test_ProgramSubroutineParameters_27948() { - OpenTK.Graphics.OpenGL.NvGpuProgram5 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram5); - System.Int32 _count = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.ProgramSubroutineParameters(_target,_count,ref _params); -} -static unsafe void Test_ProgramSubroutineParameters_27949() { - OpenTK.Graphics.OpenGL.NvGpuProgram5 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram5); - System.Int32 _count = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramSubroutineParameters(_target,_count,_params); -} -static unsafe void Test_ProgramSubroutineParameters_27950() { - OpenTK.Graphics.OpenGL.NvGpuProgram5 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram5); - System.Int32 _count = default(System.Int32); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramSubroutineParameters(_target,_count,_params); -} -static unsafe void Test_ProgramSubroutineParameters_27951() { - OpenTK.Graphics.OpenGL.NvGpuProgram5 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram5); - System.Int32 _count = default(System.Int32); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.ProgramSubroutineParameters(_target,_count,ref _params); -} -static unsafe void Test_ProgramSubroutineParameters_27952() { - OpenTK.Graphics.OpenGL.NvGpuProgram5 _target = default(OpenTK.Graphics.OpenGL.NvGpuProgram5); - System.Int32 _count = default(System.Int32); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramSubroutineParameters(_target,_count,_params); -} -static unsafe void Test_ProgramUniform1_27953() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int64 _x = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform1(_program,_location,_x); -} -static unsafe void Test_ProgramUniform1_27954() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int64 _x = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform1(_program,_location,_x); -} -static unsafe void Test_ProgramUniform1_27955() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64[] _value = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_27956() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64 _value = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform1(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform1_27957() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64* _value = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_27958() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64[] _value = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_27959() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64 _value = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform1(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform1_27960() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64* _value = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_27961() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt64 _x = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform1(_program,_location,_x); -} -static unsafe void Test_ProgramUniform1_27962() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64[] _value = default(System.UInt64[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_27963() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64 _value = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform1(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform1_27964() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64* _value = default(System.UInt64*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_27965() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int64 _x = default(System.Int64); - System.Int64 _y = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform2(_program,_location,_x,_y); -} -static unsafe void Test_ProgramUniform2_27966() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int64 _x = default(System.Int64); - System.Int64 _y = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform2(_program,_location,_x,_y); -} -static unsafe void Test_ProgramUniform2_27967() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64[] _value = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_27968() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64 _value = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform2(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform2_27969() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64* _value = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_27970() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64[] _value = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_27971() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64 _value = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform2(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform2_27972() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64* _value = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_27973() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt64 _x = default(System.UInt64); - System.UInt64 _y = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform2(_program,_location,_x,_y); -} -static unsafe void Test_ProgramUniform2_27974() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64[] _value = default(System.UInt64[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_27975() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64 _value = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform2(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform2_27976() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64* _value = default(System.UInt64*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_27977() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int64 _x = default(System.Int64); - System.Int64 _y = default(System.Int64); - System.Int64 _z = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform3(_program,_location,_x,_y,_z); -} -static unsafe void Test_ProgramUniform3_27978() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int64 _x = default(System.Int64); - System.Int64 _y = default(System.Int64); - System.Int64 _z = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform3(_program,_location,_x,_y,_z); -} -static unsafe void Test_ProgramUniform3_27979() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64[] _value = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_27980() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64 _value = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform3(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform3_27981() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64* _value = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_27982() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64[] _value = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_27983() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64 _value = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform3(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform3_27984() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64* _value = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_27985() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt64 _x = default(System.UInt64); - System.UInt64 _y = default(System.UInt64); - System.UInt64 _z = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform3(_program,_location,_x,_y,_z); -} -static unsafe void Test_ProgramUniform3_27986() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64[] _value = default(System.UInt64[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_27987() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64 _value = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform3(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform3_27988() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64* _value = default(System.UInt64*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_27989() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int64 _x = default(System.Int64); - System.Int64 _y = default(System.Int64); - System.Int64 _z = default(System.Int64); - System.Int64 _w = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform4(_program,_location,_x,_y,_z,_w); -} -static unsafe void Test_ProgramUniform4_27990() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int64 _x = default(System.Int64); - System.Int64 _y = default(System.Int64); - System.Int64 _z = default(System.Int64); - System.Int64 _w = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform4(_program,_location,_x,_y,_z,_w); -} -static unsafe void Test_ProgramUniform4_27991() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64[] _value = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_27992() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64 _value = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform4(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform4_27993() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64* _value = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_27994() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64[] _value = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_27995() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64 _value = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform4(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform4_27996() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64* _value = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_27997() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt64 _x = default(System.UInt64); - System.UInt64 _y = default(System.UInt64); - System.UInt64 _z = default(System.UInt64); - System.UInt64 _w = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform4(_program,_location,_x,_y,_z,_w); -} -static unsafe void Test_ProgramUniform4_27998() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64[] _value = default(System.UInt64[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_27999() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64 _value = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform4(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform4_28000() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64* _value = default(System.UInt64*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniformHandle_28001() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int64 _value = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniformHandle(_program,_location,_value); -} -static unsafe void Test_ProgramUniformHandle_28002() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt64 _value = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniformHandle(_program,_location,_value); -} -static unsafe void Test_ProgramUniformHandle_28003() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64[] _values = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniformHandle(_program,_location,_count,_values); -} -static unsafe void Test_ProgramUniformHandle_28004() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64 _values = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniformHandle(_program,_location,_count,ref _values); -} -static unsafe void Test_ProgramUniformHandle_28005() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64* _values = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniformHandle(_program,_location,_count,_values); -} -static unsafe void Test_ProgramUniformHandle_28006() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64[] _values = default(System.UInt64[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniformHandle(_program,_location,_count,_values); -} -static unsafe void Test_ProgramUniformHandle_28007() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64 _values = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniformHandle(_program,_location,_count,ref _values); -} -static unsafe void Test_ProgramUniformHandle_28008() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64* _values = default(System.UInt64*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniformHandle(_program,_location,_count,_values); -} -static unsafe void Test_ProgramUniform_28009() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int64 _value = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform(_program,_location,_value); -} -static unsafe void Test_ProgramUniform_28010() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt64 _value = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform(_program,_location,_value); -} -static unsafe void Test_ProgramUniform_28011() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64[] _value = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform_28012() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64 _value = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform_28013() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64* _value = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform_28014() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64[] _value = default(System.UInt64[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform_28015() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64 _value = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform_28016() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64* _value = default(System.UInt64*); - OpenTK.Graphics.OpenGL.GL.NV.ProgramUniform(_program,_location,_count,_value); -} -static unsafe void Test_ProgramVertexLimit_28017() { - OpenTK.Graphics.OpenGL.NvGeometryProgram4 _target = default(OpenTK.Graphics.OpenGL.NvGeometryProgram4); - System.Int32 _limit = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.ProgramVertexLimit(_target,_limit); -} -static unsafe void Test_RenderbufferStorageMultisampleCoverage_28018() { - OpenTK.Graphics.OpenGL.RenderbufferTarget _target = default(OpenTK.Graphics.OpenGL.RenderbufferTarget); - System.Int32 _coverageSamples = default(System.Int32); - System.Int32 _colorSamples = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.RenderbufferStorageMultisampleCoverage(_target,_coverageSamples,_colorSamples,_internalformat,_width,_height); -} -static unsafe void Test_RequestResidentProgram_28019() { - System.Int32 _n = default(System.Int32); - System.Int32[] _programs = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.RequestResidentProgram(_n,_programs); -} -static unsafe void Test_RequestResidentProgram_28020() { - System.Int32 _n = default(System.Int32); - System.Int32 _programs = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.RequestResidentProgram(_n,ref _programs); -} -static unsafe void Test_RequestResidentProgram_28021() { - System.Int32 _n = default(System.Int32); - System.Int32* _programs = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.RequestResidentProgram(_n,_programs); -} -static unsafe void Test_RequestResidentProgram_28022() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _programs = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.NV.RequestResidentProgram(_n,_programs); -} -static unsafe void Test_RequestResidentProgram_28023() { - System.Int32 _n = default(System.Int32); - System.UInt32 _programs = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.RequestResidentProgram(_n,ref _programs); -} -static unsafe void Test_RequestResidentProgram_28024() { - System.Int32 _n = default(System.Int32); - System.UInt32* _programs = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.NV.RequestResidentProgram(_n,_programs); -} -static unsafe void Test_ResumeTransformFeedback_28025() { - OpenTK.Graphics.OpenGL.GL.NV.ResumeTransformFeedback(); -} -static unsafe void Test_SampleMaskIndexed_28026() { - System.Int32 _index = default(System.Int32); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.SampleMaskIndexed(_index,_mask); -} -static unsafe void Test_SampleMaskIndexed_28027() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.SampleMaskIndexed(_index,_mask); -} -static unsafe void Test_SecondaryColor3h_28028() { - OpenTK.Half _red = default(OpenTK.Half); - OpenTK.Half _green = default(OpenTK.Half); - OpenTK.Half _blue = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.SecondaryColor3h(_red,_green,_blue); -} -static unsafe void Test_SecondaryColor3h_28029() { - OpenTK.Half[] _v = default(OpenTK.Half[]); - OpenTK.Graphics.OpenGL.GL.NV.SecondaryColor3h(_v); -} -static unsafe void Test_SecondaryColor3h_28030() { - OpenTK.Half _v = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.SecondaryColor3h(ref _v); -} -static unsafe void Test_SecondaryColor3h_28031() { - OpenTK.Half* _v = default(OpenTK.Half*); - OpenTK.Graphics.OpenGL.GL.NV.SecondaryColor3h(_v); -} -static unsafe void Test_SecondaryColorFormat_28032() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory _type = default(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.SecondaryColorFormat(_size,_type,_stride); -} -static unsafe void Test_SetFence_28033() { - System.Int32 _fence = default(System.Int32); - OpenTK.Graphics.OpenGL.NvFence _condition = default(OpenTK.Graphics.OpenGL.NvFence); - OpenTK.Graphics.OpenGL.GL.NV.SetFence(_fence,_condition); -} -static unsafe void Test_SetFence_28034() { - System.UInt32 _fence = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvFence _condition = default(OpenTK.Graphics.OpenGL.NvFence); - OpenTK.Graphics.OpenGL.GL.NV.SetFence(_fence,_condition); -} -static unsafe void Test_StencilFillPathInstanced_28035() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _paths = default(System.IntPtr); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _fillMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.StencilFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_fillMode,_mask,_transformType,_transformValues); -} -static unsafe void Test_StencilFillPathInstanced_28036() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _paths = default(System.IntPtr); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _fillMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.StencilFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_fillMode,_mask,_transformType,ref _transformValues); -} -static unsafe void Test_StencilFillPathInstanced_28037() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _paths = default(System.IntPtr); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _fillMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.StencilFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_fillMode,_mask,_transformType,_transformValues); -} -static unsafe void Test_StencilFillPathInstanced_28038() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _paths = default(System.IntPtr); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _fillMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.StencilFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_fillMode,_mask,_transformType,_transformValues); -} -static unsafe void Test_StencilFillPathInstanced_28039() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _paths = default(System.IntPtr); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _fillMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.StencilFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_fillMode,_mask,_transformType,ref _transformValues); -} -static unsafe void Test_StencilFillPathInstanced_28040() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _paths = default(System.IntPtr); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _fillMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.StencilFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_fillMode,_mask,_transformType,_transformValues); -} -static unsafe void Test_StencilFillPathInstanced_28041() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _paths = default(int[]); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _fillMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.StencilFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_fillMode,_mask,_transformType,_transformValues); -} -static unsafe void Test_StencilFillPathInstanced_28042() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _paths = default(int[]); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _fillMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.StencilFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_fillMode,_mask,_transformType,ref _transformValues); -} -static unsafe void Test_StencilFillPathInstanced_28043() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _paths = default(int[]); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _fillMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.StencilFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_fillMode,_mask,_transformType,_transformValues); -} -static unsafe void Test_StencilFillPathInstanced_28044() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _paths = default(int[]); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _fillMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.StencilFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_fillMode,_mask,_transformType,_transformValues); -} -static unsafe void Test_StencilFillPathInstanced_28045() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _paths = default(int[]); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _fillMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.StencilFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_fillMode,_mask,_transformType,ref _transformValues); -} -static unsafe void Test_StencilFillPathInstanced_28046() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _paths = default(int[]); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _fillMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.StencilFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_fillMode,_mask,_transformType,_transformValues); -} -static unsafe void Test_StencilFillPathInstanced_28047() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _paths = default(int[,]); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _fillMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.StencilFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_fillMode,_mask,_transformType,_transformValues); -} -static unsafe void Test_StencilFillPathInstanced_28048() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _paths = default(int[,]); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _fillMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.StencilFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_fillMode,_mask,_transformType,ref _transformValues); -} -static unsafe void Test_StencilFillPathInstanced_28049() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _paths = default(int[,]); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _fillMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.StencilFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_fillMode,_mask,_transformType,_transformValues); -} -static unsafe void Test_StencilFillPathInstanced_28050() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _paths = default(int[,]); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _fillMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.StencilFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_fillMode,_mask,_transformType,_transformValues); -} -static unsafe void Test_StencilFillPathInstanced_28051() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _paths = default(int[,]); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _fillMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.StencilFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_fillMode,_mask,_transformType,ref _transformValues); -} -static unsafe void Test_StencilFillPathInstanced_28052() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _paths = default(int[,]); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _fillMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.StencilFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_fillMode,_mask,_transformType,_transformValues); -} -static unsafe void Test_StencilFillPathInstanced_28053() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _paths = default(int[,,]); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _fillMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.StencilFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_fillMode,_mask,_transformType,_transformValues); -} -static unsafe void Test_StencilFillPathInstanced_28054() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _paths = default(int[,,]); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _fillMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.StencilFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_fillMode,_mask,_transformType,ref _transformValues); -} -static unsafe void Test_StencilFillPathInstanced_28055() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _paths = default(int[,,]); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _fillMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.StencilFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_fillMode,_mask,_transformType,_transformValues); -} -static unsafe void Test_StencilFillPathInstanced_28056() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _paths = default(int[,,]); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _fillMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.StencilFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_fillMode,_mask,_transformType,_transformValues); -} -static unsafe void Test_StencilFillPathInstanced_28057() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _paths = default(int[,,]); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _fillMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.StencilFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_fillMode,_mask,_transformType,ref _transformValues); -} -static unsafe void Test_StencilFillPathInstanced_28058() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _paths = default(int[,,]); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _fillMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.StencilFillPathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_fillMode,_mask,_transformType,_transformValues); -} -static unsafe void Test_StencilFillPathInstanced_28059() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _paths = default(int); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _fillMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.StencilFillPathInstanced(_numPaths,_pathNameType,ref _paths,_pathBase,_fillMode,_mask,_transformType,_transformValues); -} -static unsafe void Test_StencilFillPathInstanced_28060() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _paths = default(int); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _fillMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.StencilFillPathInstanced(_numPaths,_pathNameType,ref _paths,_pathBase,_fillMode,_mask,_transformType,ref _transformValues); -} -static unsafe void Test_StencilFillPathInstanced_28061() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _paths = default(int); - System.Int32 _pathBase = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _fillMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.StencilFillPathInstanced(_numPaths,_pathNameType,ref _paths,_pathBase,_fillMode,_mask,_transformType,_transformValues); -} -static unsafe void Test_StencilFillPathInstanced_28062() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _paths = default(int); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _fillMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.StencilFillPathInstanced(_numPaths,_pathNameType,ref _paths,_pathBase,_fillMode,_mask,_transformType,_transformValues); -} -static unsafe void Test_StencilFillPathInstanced_28063() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _paths = default(int); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _fillMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.StencilFillPathInstanced(_numPaths,_pathNameType,ref _paths,_pathBase,_fillMode,_mask,_transformType,ref _transformValues); -} -static unsafe void Test_StencilFillPathInstanced_28064() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _paths = default(int); - System.UInt32 _pathBase = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _fillMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.StencilFillPathInstanced(_numPaths,_pathNameType,ref _paths,_pathBase,_fillMode,_mask,_transformType,_transformValues); -} -static unsafe void Test_StencilFillPath_28065() { - System.Int32 _path = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _fillMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.StencilFillPath(_path,_fillMode,_mask); -} -static unsafe void Test_StencilFillPath_28066() { - System.UInt32 _path = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _fillMode = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.StencilFillPath(_path,_fillMode,_mask); -} -static unsafe void Test_StencilStrokePathInstanced_28067() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _paths = default(System.IntPtr); - System.Int32 _pathBase = default(System.Int32); - System.Int32 _reference = default(System.Int32); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.StencilStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_reference,_mask,_transformType,_transformValues); -} -static unsafe void Test_StencilStrokePathInstanced_28068() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _paths = default(System.IntPtr); - System.Int32 _pathBase = default(System.Int32); - System.Int32 _reference = default(System.Int32); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.StencilStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_reference,_mask,_transformType,ref _transformValues); -} -static unsafe void Test_StencilStrokePathInstanced_28069() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _paths = default(System.IntPtr); - System.Int32 _pathBase = default(System.Int32); - System.Int32 _reference = default(System.Int32); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.StencilStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_reference,_mask,_transformType,_transformValues); -} -static unsafe void Test_StencilStrokePathInstanced_28070() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _paths = default(System.IntPtr); - System.UInt32 _pathBase = default(System.UInt32); - System.Int32 _reference = default(System.Int32); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.StencilStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_reference,_mask,_transformType,_transformValues); -} -static unsafe void Test_StencilStrokePathInstanced_28071() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _paths = default(System.IntPtr); - System.UInt32 _pathBase = default(System.UInt32); - System.Int32 _reference = default(System.Int32); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.StencilStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_reference,_mask,_transformType,ref _transformValues); -} -static unsafe void Test_StencilStrokePathInstanced_28072() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.IntPtr _paths = default(System.IntPtr); - System.UInt32 _pathBase = default(System.UInt32); - System.Int32 _reference = default(System.Int32); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.StencilStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_reference,_mask,_transformType,_transformValues); -} -static unsafe void Test_StencilStrokePathInstanced_28073() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _paths = default(int[]); - System.Int32 _pathBase = default(System.Int32); - System.Int32 _reference = default(System.Int32); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.StencilStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_reference,_mask,_transformType,_transformValues); -} -static unsafe void Test_StencilStrokePathInstanced_28074() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _paths = default(int[]); - System.Int32 _pathBase = default(System.Int32); - System.Int32 _reference = default(System.Int32); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.StencilStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_reference,_mask,_transformType,ref _transformValues); -} -static unsafe void Test_StencilStrokePathInstanced_28075() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _paths = default(int[]); - System.Int32 _pathBase = default(System.Int32); - System.Int32 _reference = default(System.Int32); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.StencilStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_reference,_mask,_transformType,_transformValues); -} -static unsafe void Test_StencilStrokePathInstanced_28076() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _paths = default(int[]); - System.UInt32 _pathBase = default(System.UInt32); - System.Int32 _reference = default(System.Int32); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.StencilStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_reference,_mask,_transformType,_transformValues); -} -static unsafe void Test_StencilStrokePathInstanced_28077() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _paths = default(int[]); - System.UInt32 _pathBase = default(System.UInt32); - System.Int32 _reference = default(System.Int32); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.StencilStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_reference,_mask,_transformType,ref _transformValues); -} -static unsafe void Test_StencilStrokePathInstanced_28078() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[] _paths = default(int[]); - System.UInt32 _pathBase = default(System.UInt32); - System.Int32 _reference = default(System.Int32); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.StencilStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_reference,_mask,_transformType,_transformValues); -} -static unsafe void Test_StencilStrokePathInstanced_28079() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _paths = default(int[,]); - System.Int32 _pathBase = default(System.Int32); - System.Int32 _reference = default(System.Int32); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.StencilStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_reference,_mask,_transformType,_transformValues); -} -static unsafe void Test_StencilStrokePathInstanced_28080() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _paths = default(int[,]); - System.Int32 _pathBase = default(System.Int32); - System.Int32 _reference = default(System.Int32); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.StencilStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_reference,_mask,_transformType,ref _transformValues); -} -static unsafe void Test_StencilStrokePathInstanced_28081() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _paths = default(int[,]); - System.Int32 _pathBase = default(System.Int32); - System.Int32 _reference = default(System.Int32); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.StencilStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_reference,_mask,_transformType,_transformValues); -} -static unsafe void Test_StencilStrokePathInstanced_28082() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _paths = default(int[,]); - System.UInt32 _pathBase = default(System.UInt32); - System.Int32 _reference = default(System.Int32); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.StencilStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_reference,_mask,_transformType,_transformValues); -} -static unsafe void Test_StencilStrokePathInstanced_28083() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _paths = default(int[,]); - System.UInt32 _pathBase = default(System.UInt32); - System.Int32 _reference = default(System.Int32); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.StencilStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_reference,_mask,_transformType,ref _transformValues); -} -static unsafe void Test_StencilStrokePathInstanced_28084() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,] _paths = default(int[,]); - System.UInt32 _pathBase = default(System.UInt32); - System.Int32 _reference = default(System.Int32); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.StencilStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_reference,_mask,_transformType,_transformValues); -} -static unsafe void Test_StencilStrokePathInstanced_28085() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _paths = default(int[,,]); - System.Int32 _pathBase = default(System.Int32); - System.Int32 _reference = default(System.Int32); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.StencilStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_reference,_mask,_transformType,_transformValues); -} -static unsafe void Test_StencilStrokePathInstanced_28086() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _paths = default(int[,,]); - System.Int32 _pathBase = default(System.Int32); - System.Int32 _reference = default(System.Int32); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.StencilStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_reference,_mask,_transformType,ref _transformValues); -} -static unsafe void Test_StencilStrokePathInstanced_28087() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _paths = default(int[,,]); - System.Int32 _pathBase = default(System.Int32); - System.Int32 _reference = default(System.Int32); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.StencilStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_reference,_mask,_transformType,_transformValues); -} -static unsafe void Test_StencilStrokePathInstanced_28088() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _paths = default(int[,,]); - System.UInt32 _pathBase = default(System.UInt32); - System.Int32 _reference = default(System.Int32); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.StencilStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_reference,_mask,_transformType,_transformValues); -} -static unsafe void Test_StencilStrokePathInstanced_28089() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _paths = default(int[,,]); - System.UInt32 _pathBase = default(System.UInt32); - System.Int32 _reference = default(System.Int32); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.StencilStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_reference,_mask,_transformType,ref _transformValues); -} -static unsafe void Test_StencilStrokePathInstanced_28090() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int[,,] _paths = default(int[,,]); - System.UInt32 _pathBase = default(System.UInt32); - System.Int32 _reference = default(System.Int32); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.StencilStrokePathInstanced(_numPaths,_pathNameType,_paths,_pathBase,_reference,_mask,_transformType,_transformValues); -} -static unsafe void Test_StencilStrokePathInstanced_28091() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _paths = default(int); - System.Int32 _pathBase = default(System.Int32); - System.Int32 _reference = default(System.Int32); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.StencilStrokePathInstanced(_numPaths,_pathNameType,ref _paths,_pathBase,_reference,_mask,_transformType,_transformValues); -} -static unsafe void Test_StencilStrokePathInstanced_28092() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _paths = default(int); - System.Int32 _pathBase = default(System.Int32); - System.Int32 _reference = default(System.Int32); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.StencilStrokePathInstanced(_numPaths,_pathNameType,ref _paths,_pathBase,_reference,_mask,_transformType,ref _transformValues); -} -static unsafe void Test_StencilStrokePathInstanced_28093() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _paths = default(int); - System.Int32 _pathBase = default(System.Int32); - System.Int32 _reference = default(System.Int32); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.StencilStrokePathInstanced(_numPaths,_pathNameType,ref _paths,_pathBase,_reference,_mask,_transformType,_transformValues); -} -static unsafe void Test_StencilStrokePathInstanced_28094() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _paths = default(int); - System.UInt32 _pathBase = default(System.UInt32); - System.Int32 _reference = default(System.Int32); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.StencilStrokePathInstanced(_numPaths,_pathNameType,ref _paths,_pathBase,_reference,_mask,_transformType,_transformValues); -} -static unsafe void Test_StencilStrokePathInstanced_28095() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _paths = default(int); - System.UInt32 _pathBase = default(System.UInt32); - System.Int32 _reference = default(System.Int32); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.StencilStrokePathInstanced(_numPaths,_pathNameType,ref _paths,_pathBase,_reference,_mask,_transformType,ref _transformValues); -} -static unsafe void Test_StencilStrokePathInstanced_28096() { - System.Int32 _numPaths = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _pathNameType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - int _paths = default(int); - System.UInt32 _pathBase = default(System.UInt32); - System.Int32 _reference = default(System.Int32); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.StencilStrokePathInstanced(_numPaths,_pathNameType,ref _paths,_pathBase,_reference,_mask,_transformType,_transformValues); -} -static unsafe void Test_StencilStrokePath_28097() { - System.Int32 _path = default(System.Int32); - System.Int32 _reference = default(System.Int32); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.StencilStrokePath(_path,_reference,_mask); -} -static unsafe void Test_StencilStrokePath_28098() { - System.UInt32 _path = default(System.UInt32); - System.Int32 _reference = default(System.Int32); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.StencilStrokePath(_path,_reference,_mask); -} -static unsafe void Test_TestFence_28099() { - System.Int32 _fence = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.NV.TestFence(_fence); -} -static unsafe void Test_TestFence_28100() { - System.UInt32 _fence = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.NV.TestFence(_fence); -} -static unsafe void Test_TexCoord1h_28101() { - OpenTK.Half _s = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.TexCoord1h(_s); -} -static unsafe void Test_TexCoord1h_28102() { - OpenTK.Half* _v = default(OpenTK.Half*); - OpenTK.Graphics.OpenGL.GL.NV.TexCoord1h(_v); -} -static unsafe void Test_TexCoord2h_28103() { - OpenTK.Half _s = default(OpenTK.Half); - OpenTK.Half _t = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.TexCoord2h(_s,_t); -} -static unsafe void Test_TexCoord2h_28104() { - OpenTK.Half[] _v = default(OpenTK.Half[]); - OpenTK.Graphics.OpenGL.GL.NV.TexCoord2h(_v); -} -static unsafe void Test_TexCoord2h_28105() { - OpenTK.Half _v = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.TexCoord2h(ref _v); -} -static unsafe void Test_TexCoord2h_28106() { - OpenTK.Half* _v = default(OpenTK.Half*); - OpenTK.Graphics.OpenGL.GL.NV.TexCoord2h(_v); -} -static unsafe void Test_TexCoord3h_28107() { - OpenTK.Half _s = default(OpenTK.Half); - OpenTK.Half _t = default(OpenTK.Half); - OpenTK.Half _r = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.TexCoord3h(_s,_t,_r); -} -static unsafe void Test_TexCoord3h_28108() { - OpenTK.Half[] _v = default(OpenTK.Half[]); - OpenTK.Graphics.OpenGL.GL.NV.TexCoord3h(_v); -} -static unsafe void Test_TexCoord3h_28109() { - OpenTK.Half _v = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.TexCoord3h(ref _v); -} -static unsafe void Test_TexCoord3h_28110() { - OpenTK.Half* _v = default(OpenTK.Half*); - OpenTK.Graphics.OpenGL.GL.NV.TexCoord3h(_v); -} -static unsafe void Test_TexCoord4h_28111() { - OpenTK.Half _s = default(OpenTK.Half); - OpenTK.Half _t = default(OpenTK.Half); - OpenTK.Half _r = default(OpenTK.Half); - OpenTK.Half _q = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.TexCoord4h(_s,_t,_r,_q); -} -static unsafe void Test_TexCoord4h_28112() { - OpenTK.Half[] _v = default(OpenTK.Half[]); - OpenTK.Graphics.OpenGL.GL.NV.TexCoord4h(_v); -} -static unsafe void Test_TexCoord4h_28113() { - OpenTK.Half _v = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.TexCoord4h(ref _v); -} -static unsafe void Test_TexCoord4h_28114() { - OpenTK.Half* _v = default(OpenTK.Half*); - OpenTK.Graphics.OpenGL.GL.NV.TexCoord4h(_v); -} -static unsafe void Test_TexCoordFormat_28115() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory _type = default(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.TexCoordFormat(_size,_type,_stride); -} -static unsafe void Test_TexImage2DMultisampleCoverage_28116() { - OpenTK.Graphics.OpenGL.NvTextureMultisample _target = default(OpenTK.Graphics.OpenGL.NvTextureMultisample); - System.Int32 _coverageSamples = default(System.Int32); - System.Int32 _colorSamples = default(System.Int32); - System.Int32 _internalFormat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Boolean _fixedSampleLocations = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.NV.TexImage2DMultisampleCoverage(_target,_coverageSamples,_colorSamples,_internalFormat,_width,_height,_fixedSampleLocations); -} -static unsafe void Test_TexImage3DMultisampleCoverage_28117() { - OpenTK.Graphics.OpenGL.NvTextureMultisample _target = default(OpenTK.Graphics.OpenGL.NvTextureMultisample); - System.Int32 _coverageSamples = default(System.Int32); - System.Int32 _colorSamples = default(System.Int32); - System.Int32 _internalFormat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Boolean _fixedSampleLocations = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.NV.TexImage3DMultisampleCoverage(_target,_coverageSamples,_colorSamples,_internalFormat,_width,_height,_depth,_fixedSampleLocations); -} -static unsafe void Test_TexRenderbuffer_28118() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _renderbuffer = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.TexRenderbuffer(_target,_renderbuffer); -} -static unsafe void Test_TexRenderbuffer_28119() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.UInt32 _renderbuffer = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.TexRenderbuffer(_target,_renderbuffer); -} -static unsafe void Test_TextureBarrier_28120() { - OpenTK.Graphics.OpenGL.GL.NV.TextureBarrier(); -} -static unsafe void Test_TextureImage2DMultisampleCoverage_28121() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.NvTextureMultisample _target = default(OpenTK.Graphics.OpenGL.NvTextureMultisample); - System.Int32 _coverageSamples = default(System.Int32); - System.Int32 _colorSamples = default(System.Int32); - System.Int32 _internalFormat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Boolean _fixedSampleLocations = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.NV.TextureImage2DMultisampleCoverage(_texture,_target,_coverageSamples,_colorSamples,_internalFormat,_width,_height,_fixedSampleLocations); -} -static unsafe void Test_TextureImage2DMultisampleCoverage_28122() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvTextureMultisample _target = default(OpenTK.Graphics.OpenGL.NvTextureMultisample); - System.Int32 _coverageSamples = default(System.Int32); - System.Int32 _colorSamples = default(System.Int32); - System.Int32 _internalFormat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Boolean _fixedSampleLocations = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.NV.TextureImage2DMultisampleCoverage(_texture,_target,_coverageSamples,_colorSamples,_internalFormat,_width,_height,_fixedSampleLocations); -} -static unsafe void Test_TextureImage2DMultisample_28123() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.NvTextureMultisample _target = default(OpenTK.Graphics.OpenGL.NvTextureMultisample); - System.Int32 _samples = default(System.Int32); - System.Int32 _internalFormat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Boolean _fixedSampleLocations = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.NV.TextureImage2DMultisample(_texture,_target,_samples,_internalFormat,_width,_height,_fixedSampleLocations); -} -static unsafe void Test_TextureImage2DMultisample_28124() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvTextureMultisample _target = default(OpenTK.Graphics.OpenGL.NvTextureMultisample); - System.Int32 _samples = default(System.Int32); - System.Int32 _internalFormat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Boolean _fixedSampleLocations = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.NV.TextureImage2DMultisample(_texture,_target,_samples,_internalFormat,_width,_height,_fixedSampleLocations); -} -static unsafe void Test_TextureImage3DMultisampleCoverage_28125() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.NvTextureMultisample _target = default(OpenTK.Graphics.OpenGL.NvTextureMultisample); - System.Int32 _coverageSamples = default(System.Int32); - System.Int32 _colorSamples = default(System.Int32); - System.Int32 _internalFormat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Boolean _fixedSampleLocations = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.NV.TextureImage3DMultisampleCoverage(_texture,_target,_coverageSamples,_colorSamples,_internalFormat,_width,_height,_depth,_fixedSampleLocations); -} -static unsafe void Test_TextureImage3DMultisampleCoverage_28126() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvTextureMultisample _target = default(OpenTK.Graphics.OpenGL.NvTextureMultisample); - System.Int32 _coverageSamples = default(System.Int32); - System.Int32 _colorSamples = default(System.Int32); - System.Int32 _internalFormat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Boolean _fixedSampleLocations = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.NV.TextureImage3DMultisampleCoverage(_texture,_target,_coverageSamples,_colorSamples,_internalFormat,_width,_height,_depth,_fixedSampleLocations); -} -static unsafe void Test_TextureImage3DMultisample_28127() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL.NvTextureMultisample _target = default(OpenTK.Graphics.OpenGL.NvTextureMultisample); - System.Int32 _samples = default(System.Int32); - System.Int32 _internalFormat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Boolean _fixedSampleLocations = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.NV.TextureImage3DMultisample(_texture,_target,_samples,_internalFormat,_width,_height,_depth,_fixedSampleLocations); -} -static unsafe void Test_TextureImage3DMultisample_28128() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvTextureMultisample _target = default(OpenTK.Graphics.OpenGL.NvTextureMultisample); - System.Int32 _samples = default(System.Int32); - System.Int32 _internalFormat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Boolean _fixedSampleLocations = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.NV.TextureImage3DMultisample(_texture,_target,_samples,_internalFormat,_width,_height,_depth,_fixedSampleLocations); -} -static unsafe void Test_TrackMatrix_28129() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.Int32 _address = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexProgram _matrix = default(OpenTK.Graphics.OpenGL.NvVertexProgram); - OpenTK.Graphics.OpenGL.NvVertexProgram _transform = default(OpenTK.Graphics.OpenGL.NvVertexProgram); - OpenTK.Graphics.OpenGL.GL.NV.TrackMatrix(_target,_address,_matrix,_transform); -} -static unsafe void Test_TrackMatrix_28130() { - OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb _target = default(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb); - System.UInt32 _address = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVertexProgram _matrix = default(OpenTK.Graphics.OpenGL.NvVertexProgram); - OpenTK.Graphics.OpenGL.NvVertexProgram _transform = default(OpenTK.Graphics.OpenGL.NvVertexProgram); - OpenTK.Graphics.OpenGL.GL.NV.TrackMatrix(_target,_address,_matrix,_transform); -} -static unsafe void Test_TransformFeedbackAttrib_28131() { - System.Int32 _count = default(System.Int32); - System.Int32[] _attribs = default(System.Int32[]); - OpenTK.Graphics.OpenGL.NvTransformFeedback _bufferMode = default(OpenTK.Graphics.OpenGL.NvTransformFeedback); - OpenTK.Graphics.OpenGL.GL.NV.TransformFeedbackAttrib(_count,_attribs,_bufferMode); -} -static unsafe void Test_TransformFeedbackAttrib_28132() { - System.Int32 _count = default(System.Int32); - System.Int32 _attribs = default(System.Int32); - OpenTK.Graphics.OpenGL.NvTransformFeedback _bufferMode = default(OpenTK.Graphics.OpenGL.NvTransformFeedback); - OpenTK.Graphics.OpenGL.GL.NV.TransformFeedbackAttrib(_count,ref _attribs,_bufferMode); -} -static unsafe void Test_TransformFeedbackAttrib_28133() { - System.Int32 _count = default(System.Int32); - System.Int32* _attribs = default(System.Int32*); - OpenTK.Graphics.OpenGL.NvTransformFeedback _bufferMode = default(OpenTK.Graphics.OpenGL.NvTransformFeedback); - OpenTK.Graphics.OpenGL.GL.NV.TransformFeedbackAttrib(_count,_attribs,_bufferMode); -} -static unsafe void Test_TransformFeedbackStreamAttrib_28134() { - System.Int32 _count = default(System.Int32); - System.Int32[] _attribs = default(System.Int32[]); - System.Int32 _nbuffers = default(System.Int32); - System.Int32[] _bufstreams = default(System.Int32[]); - OpenTK.Graphics.OpenGL.NvTransformFeedback _bufferMode = default(OpenTK.Graphics.OpenGL.NvTransformFeedback); - OpenTK.Graphics.OpenGL.GL.NV.TransformFeedbackStreamAttrib(_count,_attribs,_nbuffers,_bufstreams,_bufferMode); -} -static unsafe void Test_TransformFeedbackStreamAttrib_28135() { - System.Int32 _count = default(System.Int32); - System.Int32 _attribs = default(System.Int32); - System.Int32 _nbuffers = default(System.Int32); - System.Int32 _bufstreams = default(System.Int32); - OpenTK.Graphics.OpenGL.NvTransformFeedback _bufferMode = default(OpenTK.Graphics.OpenGL.NvTransformFeedback); - OpenTK.Graphics.OpenGL.GL.NV.TransformFeedbackStreamAttrib(_count,ref _attribs,_nbuffers,ref _bufstreams,_bufferMode); -} -static unsafe void Test_TransformFeedbackStreamAttrib_28136() { - System.Int32 _count = default(System.Int32); - System.Int32* _attribs = default(System.Int32*); - System.Int32 _nbuffers = default(System.Int32); - System.Int32* _bufstreams = default(System.Int32*); - OpenTK.Graphics.OpenGL.NvTransformFeedback _bufferMode = default(OpenTK.Graphics.OpenGL.NvTransformFeedback); - OpenTK.Graphics.OpenGL.GL.NV.TransformFeedbackStreamAttrib(_count,_attribs,_nbuffers,_bufstreams,_bufferMode); -} -static unsafe void Test_TransformFeedbackVaryings_28137() { - System.Int32 _program = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _locations = default(System.Int32[]); - OpenTK.Graphics.OpenGL.NvTransformFeedback _bufferMode = default(OpenTK.Graphics.OpenGL.NvTransformFeedback); - OpenTK.Graphics.OpenGL.GL.NV.TransformFeedbackVaryings(_program,_count,_locations,_bufferMode); -} -static unsafe void Test_TransformFeedbackVaryings_28138() { - System.Int32 _program = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _locations = default(System.Int32); - OpenTK.Graphics.OpenGL.NvTransformFeedback _bufferMode = default(OpenTK.Graphics.OpenGL.NvTransformFeedback); - OpenTK.Graphics.OpenGL.GL.NV.TransformFeedbackVaryings(_program,_count,ref _locations,_bufferMode); -} -static unsafe void Test_TransformFeedbackVaryings_28139() { - System.Int32 _program = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _locations = default(System.Int32*); - OpenTK.Graphics.OpenGL.NvTransformFeedback _bufferMode = default(OpenTK.Graphics.OpenGL.NvTransformFeedback); - OpenTK.Graphics.OpenGL.GL.NV.TransformFeedbackVaryings(_program,_count,_locations,_bufferMode); -} -static unsafe void Test_TransformFeedbackVaryings_28140() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Int32[] _locations = default(System.Int32[]); - OpenTK.Graphics.OpenGL.NvTransformFeedback _bufferMode = default(OpenTK.Graphics.OpenGL.NvTransformFeedback); - OpenTK.Graphics.OpenGL.GL.NV.TransformFeedbackVaryings(_program,_count,_locations,_bufferMode); -} -static unsafe void Test_TransformFeedbackVaryings_28141() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Int32 _locations = default(System.Int32); - OpenTK.Graphics.OpenGL.NvTransformFeedback _bufferMode = default(OpenTK.Graphics.OpenGL.NvTransformFeedback); - OpenTK.Graphics.OpenGL.GL.NV.TransformFeedbackVaryings(_program,_count,ref _locations,_bufferMode); -} -static unsafe void Test_TransformFeedbackVaryings_28142() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Int32* _locations = default(System.Int32*); - OpenTK.Graphics.OpenGL.NvTransformFeedback _bufferMode = default(OpenTK.Graphics.OpenGL.NvTransformFeedback); - OpenTK.Graphics.OpenGL.GL.NV.TransformFeedbackVaryings(_program,_count,_locations,_bufferMode); -} -static unsafe void Test_TransformPath_28143() { - System.Int32 _resultPath = default(System.Int32); - System.Int32 _srcPath = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.TransformPath(_resultPath,_srcPath,_transformType,_transformValues); -} -static unsafe void Test_TransformPath_28144() { - System.Int32 _resultPath = default(System.Int32); - System.Int32 _srcPath = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.TransformPath(_resultPath,_srcPath,_transformType,ref _transformValues); -} -static unsafe void Test_TransformPath_28145() { - System.Int32 _resultPath = default(System.Int32); - System.Int32 _srcPath = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.TransformPath(_resultPath,_srcPath,_transformType,_transformValues); -} -static unsafe void Test_TransformPath_28146() { - System.UInt32 _resultPath = default(System.UInt32); - System.UInt32 _srcPath = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single[] _transformValues = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.TransformPath(_resultPath,_srcPath,_transformType,_transformValues); -} -static unsafe void Test_TransformPath_28147() { - System.UInt32 _resultPath = default(System.UInt32); - System.UInt32 _srcPath = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single _transformValues = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.TransformPath(_resultPath,_srcPath,_transformType,ref _transformValues); -} -static unsafe void Test_TransformPath_28148() { - System.UInt32 _resultPath = default(System.UInt32); - System.UInt32 _srcPath = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPathRendering _transformType = default(OpenTK.Graphics.OpenGL.NvPathRendering); - System.Single* _transformValues = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.TransformPath(_resultPath,_srcPath,_transformType,_transformValues); -} -static unsafe void Test_Uniform1_28149() { - System.Int32 _location = default(System.Int32); - System.Int64 _x = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.Uniform1(_location,_x); -} -static unsafe void Test_Uniform1_28150() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64[] _value = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.NV.Uniform1(_location,_count,_value); -} -static unsafe void Test_Uniform1_28151() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64 _value = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.Uniform1(_location,_count,ref _value); -} -static unsafe void Test_Uniform1_28152() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64* _value = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.NV.Uniform1(_location,_count,_value); -} -static unsafe void Test_Uniform1_28153() { - System.Int32 _location = default(System.Int32); - System.UInt64 _x = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.Uniform1(_location,_x); -} -static unsafe void Test_Uniform1_28154() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64[] _value = default(System.UInt64[]); - OpenTK.Graphics.OpenGL.GL.NV.Uniform1(_location,_count,_value); -} -static unsafe void Test_Uniform1_28155() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64 _value = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.Uniform1(_location,_count,ref _value); -} -static unsafe void Test_Uniform1_28156() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64* _value = default(System.UInt64*); - OpenTK.Graphics.OpenGL.GL.NV.Uniform1(_location,_count,_value); -} -static unsafe void Test_Uniform2_28157() { - System.Int32 _location = default(System.Int32); - System.Int64 _x = default(System.Int64); - System.Int64 _y = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.Uniform2(_location,_x,_y); -} -static unsafe void Test_Uniform2_28158() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64[] _value = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.NV.Uniform2(_location,_count,_value); -} -static unsafe void Test_Uniform2_28159() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64 _value = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.Uniform2(_location,_count,ref _value); -} -static unsafe void Test_Uniform2_28160() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64* _value = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.NV.Uniform2(_location,_count,_value); -} -static unsafe void Test_Uniform2_28161() { - System.Int32 _location = default(System.Int32); - System.UInt64 _x = default(System.UInt64); - System.UInt64 _y = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.Uniform2(_location,_x,_y); -} -static unsafe void Test_Uniform2_28162() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64[] _value = default(System.UInt64[]); - OpenTK.Graphics.OpenGL.GL.NV.Uniform2(_location,_count,_value); -} -static unsafe void Test_Uniform2_28163() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64 _value = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.Uniform2(_location,_count,ref _value); -} -static unsafe void Test_Uniform2_28164() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64* _value = default(System.UInt64*); - OpenTK.Graphics.OpenGL.GL.NV.Uniform2(_location,_count,_value); -} -static unsafe void Test_Uniform3_28165() { - System.Int32 _location = default(System.Int32); - System.Int64 _x = default(System.Int64); - System.Int64 _y = default(System.Int64); - System.Int64 _z = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.Uniform3(_location,_x,_y,_z); -} -static unsafe void Test_Uniform3_28166() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64[] _value = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.NV.Uniform3(_location,_count,_value); -} -static unsafe void Test_Uniform3_28167() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64 _value = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.Uniform3(_location,_count,ref _value); -} -static unsafe void Test_Uniform3_28168() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64* _value = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.NV.Uniform3(_location,_count,_value); -} -static unsafe void Test_Uniform3_28169() { - System.Int32 _location = default(System.Int32); - System.UInt64 _x = default(System.UInt64); - System.UInt64 _y = default(System.UInt64); - System.UInt64 _z = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.Uniform3(_location,_x,_y,_z); -} -static unsafe void Test_Uniform3_28170() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64[] _value = default(System.UInt64[]); - OpenTK.Graphics.OpenGL.GL.NV.Uniform3(_location,_count,_value); -} -static unsafe void Test_Uniform3_28171() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64 _value = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.Uniform3(_location,_count,ref _value); -} -static unsafe void Test_Uniform3_28172() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64* _value = default(System.UInt64*); - OpenTK.Graphics.OpenGL.GL.NV.Uniform3(_location,_count,_value); -} -static unsafe void Test_Uniform4_28173() { - System.Int32 _location = default(System.Int32); - System.Int64 _x = default(System.Int64); - System.Int64 _y = default(System.Int64); - System.Int64 _z = default(System.Int64); - System.Int64 _w = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.Uniform4(_location,_x,_y,_z,_w); -} -static unsafe void Test_Uniform4_28174() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64[] _value = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.NV.Uniform4(_location,_count,_value); -} -static unsafe void Test_Uniform4_28175() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64 _value = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.Uniform4(_location,_count,ref _value); -} -static unsafe void Test_Uniform4_28176() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64* _value = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.NV.Uniform4(_location,_count,_value); -} -static unsafe void Test_Uniform4_28177() { - System.Int32 _location = default(System.Int32); - System.UInt64 _x = default(System.UInt64); - System.UInt64 _y = default(System.UInt64); - System.UInt64 _z = default(System.UInt64); - System.UInt64 _w = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.Uniform4(_location,_x,_y,_z,_w); -} -static unsafe void Test_Uniform4_28178() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64[] _value = default(System.UInt64[]); - OpenTK.Graphics.OpenGL.GL.NV.Uniform4(_location,_count,_value); -} -static unsafe void Test_Uniform4_28179() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64 _value = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.Uniform4(_location,_count,ref _value); -} -static unsafe void Test_Uniform4_28180() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64* _value = default(System.UInt64*); - OpenTK.Graphics.OpenGL.GL.NV.Uniform4(_location,_count,_value); -} -static unsafe void Test_UniformHandle_28181() { - System.Int32 _location = default(System.Int32); - System.Int64 _value = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.UniformHandle(_location,_value); -} -static unsafe void Test_UniformHandle_28182() { - System.Int32 _location = default(System.Int32); - System.UInt64 _value = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.UniformHandle(_location,_value); -} -static unsafe void Test_UniformHandle_28183() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64[] _value = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.NV.UniformHandle(_location,_count,_value); -} -static unsafe void Test_UniformHandle_28184() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64 _value = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.UniformHandle(_location,_count,ref _value); -} -static unsafe void Test_UniformHandle_28185() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64* _value = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.NV.UniformHandle(_location,_count,_value); -} -static unsafe void Test_UniformHandle_28186() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64[] _value = default(System.UInt64[]); - OpenTK.Graphics.OpenGL.GL.NV.UniformHandle(_location,_count,_value); -} -static unsafe void Test_UniformHandle_28187() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64 _value = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.UniformHandle(_location,_count,ref _value); -} -static unsafe void Test_UniformHandle_28188() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64* _value = default(System.UInt64*); - OpenTK.Graphics.OpenGL.GL.NV.UniformHandle(_location,_count,_value); -} -static unsafe void Test_Uniform_28189() { - System.Int32 _location = default(System.Int32); - System.Int64 _value = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.Uniform(_location,_value); -} -static unsafe void Test_Uniform_28190() { - System.Int32 _location = default(System.Int32); - System.UInt64 _value = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.Uniform(_location,_value); -} -static unsafe void Test_Uniform_28191() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64[] _value = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.NV.Uniform(_location,_count,_value); -} -static unsafe void Test_Uniform_28192() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64 _value = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.Uniform(_location,_count,ref _value); -} -static unsafe void Test_Uniform_28193() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64* _value = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.NV.Uniform(_location,_count,_value); -} -static unsafe void Test_Uniform_28194() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64[] _value = default(System.UInt64[]); - OpenTK.Graphics.OpenGL.GL.NV.Uniform(_location,_count,_value); -} -static unsafe void Test_Uniform_28195() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64 _value = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.Uniform(_location,_count,ref _value); -} -static unsafe void Test_Uniform_28196() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64* _value = default(System.UInt64*); - OpenTK.Graphics.OpenGL.GL.NV.Uniform(_location,_count,_value); -} -static unsafe void Test_VDPAUFin_28197() { - OpenTK.Graphics.OpenGL.GL.NV.VDPAUFin(); -} -static unsafe void Test_VDPAUGetSurface_28198() { - System.IntPtr _surface = default(System.IntPtr); - OpenTK.Graphics.OpenGL.NvVdpauInterop _pname = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Int32[] _values = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.VDPAUGetSurface(_surface,_pname,_bufSize,_length,_values); -} -static unsafe void Test_VDPAUGetSurface_28199() { - System.IntPtr _surface = default(System.IntPtr); - OpenTK.Graphics.OpenGL.NvVdpauInterop _pname = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _values = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.VDPAUGetSurface(_surface,_pname,_bufSize,out _length,out _values); -} -static unsafe void Test_VDPAUGetSurface_28200() { - System.IntPtr _surface = default(System.IntPtr); - OpenTK.Graphics.OpenGL.NvVdpauInterop _pname = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _values = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.VDPAUGetSurface(_surface,_pname,_bufSize,_length,_values); -} -static unsafe void Test_VDPAUInit_28201() { - System.IntPtr _vdpDevice = default(System.IntPtr); - System.IntPtr _getProcAddress = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.NV.VDPAUInit(_vdpDevice,_getProcAddress); -} -static unsafe void Test_VDPAUInit_28202() { - int[] _vdpDevice = default(int[]); - int[] _getProcAddress = default(int[]); - OpenTK.Graphics.OpenGL.GL.NV.VDPAUInit(_vdpDevice,_getProcAddress); -} -static unsafe void Test_VDPAUInit_28203() { - int[,] _vdpDevice = default(int[,]); - int[,] _getProcAddress = default(int[,]); - OpenTK.Graphics.OpenGL.GL.NV.VDPAUInit(_vdpDevice,_getProcAddress); -} -static unsafe void Test_VDPAUInit_28204() { - int[,,] _vdpDevice = default(int[,,]); - int[,,] _getProcAddress = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.NV.VDPAUInit(_vdpDevice,_getProcAddress); -} -static unsafe void Test_VDPAUInit_28205() { - int _vdpDevice = default(int); - int _getProcAddress = default(int); - OpenTK.Graphics.OpenGL.GL.NV.VDPAUInit(ref _vdpDevice,ref _getProcAddress); -} -static unsafe void Test_VDPAUIsSurface_28206() { - System.IntPtr _surface = default(System.IntPtr); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.NV.VDPAUIsSurface(_surface); -} -static unsafe void Test_VDPAUMapSurfaces_28207() { - System.Int32 _numSurfaces = default(System.Int32); - System.IntPtr[] _surfaces = default(System.IntPtr[]); - OpenTK.Graphics.OpenGL.GL.NV.VDPAUMapSurfaces(_numSurfaces,_surfaces); -} -static unsafe void Test_VDPAUMapSurfaces_28208() { - System.Int32 _numSurfaces = default(System.Int32); - System.IntPtr _surfaces = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.NV.VDPAUMapSurfaces(_numSurfaces,ref _surfaces); -} -static unsafe void Test_VDPAUMapSurfaces_28209() { - System.Int32 _numSurfaces = default(System.Int32); - System.IntPtr* _surfaces = default(System.IntPtr*); - OpenTK.Graphics.OpenGL.GL.NV.VDPAUMapSurfaces(_numSurfaces,_surfaces); -} -static unsafe void Test_VDPAURegisterOutputSurface_28210() { - System.IntPtr _vdpSurface = default(System.IntPtr); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.Int32[] _textureNames = default(System.Int32[]); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterOutputSurface(_vdpSurface,_target,_numTextureNames,_textureNames); -} -static unsafe void Test_VDPAURegisterOutputSurface_28211() { - System.IntPtr _vdpSurface = default(System.IntPtr); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.Int32 _textureNames = default(System.Int32); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterOutputSurface(_vdpSurface,_target,_numTextureNames,ref _textureNames); -} -static unsafe void Test_VDPAURegisterOutputSurface_28212() { - System.IntPtr _vdpSurface = default(System.IntPtr); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.Int32* _textureNames = default(System.Int32*); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterOutputSurface(_vdpSurface,_target,_numTextureNames,_textureNames); -} -static unsafe void Test_VDPAURegisterOutputSurface_28213() { - System.IntPtr _vdpSurface = default(System.IntPtr); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.UInt32[] _textureNames = default(System.UInt32[]); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterOutputSurface(_vdpSurface,_target,_numTextureNames,_textureNames); -} -static unsafe void Test_VDPAURegisterOutputSurface_28214() { - System.IntPtr _vdpSurface = default(System.IntPtr); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.UInt32 _textureNames = default(System.UInt32); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterOutputSurface(_vdpSurface,_target,_numTextureNames,ref _textureNames); -} -static unsafe void Test_VDPAURegisterOutputSurface_28215() { - System.IntPtr _vdpSurface = default(System.IntPtr); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.UInt32* _textureNames = default(System.UInt32*); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterOutputSurface(_vdpSurface,_target,_numTextureNames,_textureNames); -} -static unsafe void Test_VDPAURegisterOutputSurface_28216() { - int[] _vdpSurface = default(int[]); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.Int32[] _textureNames = default(System.Int32[]); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterOutputSurface(_vdpSurface,_target,_numTextureNames,_textureNames); -} -static unsafe void Test_VDPAURegisterOutputSurface_28217() { - int[] _vdpSurface = default(int[]); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.Int32 _textureNames = default(System.Int32); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterOutputSurface(_vdpSurface,_target,_numTextureNames,ref _textureNames); -} -static unsafe void Test_VDPAURegisterOutputSurface_28218() { - int[] _vdpSurface = default(int[]); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.Int32* _textureNames = default(System.Int32*); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterOutputSurface(_vdpSurface,_target,_numTextureNames,_textureNames); -} -static unsafe void Test_VDPAURegisterOutputSurface_28219() { - int[] _vdpSurface = default(int[]); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.UInt32[] _textureNames = default(System.UInt32[]); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterOutputSurface(_vdpSurface,_target,_numTextureNames,_textureNames); -} -static unsafe void Test_VDPAURegisterOutputSurface_28220() { - int[] _vdpSurface = default(int[]); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.UInt32 _textureNames = default(System.UInt32); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterOutputSurface(_vdpSurface,_target,_numTextureNames,ref _textureNames); -} -static unsafe void Test_VDPAURegisterOutputSurface_28221() { - int[] _vdpSurface = default(int[]); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.UInt32* _textureNames = default(System.UInt32*); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterOutputSurface(_vdpSurface,_target,_numTextureNames,_textureNames); -} -static unsafe void Test_VDPAURegisterOutputSurface_28222() { - int[,] _vdpSurface = default(int[,]); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.Int32[] _textureNames = default(System.Int32[]); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterOutputSurface(_vdpSurface,_target,_numTextureNames,_textureNames); -} -static unsafe void Test_VDPAURegisterOutputSurface_28223() { - int[,] _vdpSurface = default(int[,]); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.Int32 _textureNames = default(System.Int32); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterOutputSurface(_vdpSurface,_target,_numTextureNames,ref _textureNames); -} -static unsafe void Test_VDPAURegisterOutputSurface_28224() { - int[,] _vdpSurface = default(int[,]); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.Int32* _textureNames = default(System.Int32*); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterOutputSurface(_vdpSurface,_target,_numTextureNames,_textureNames); -} -static unsafe void Test_VDPAURegisterOutputSurface_28225() { - int[,] _vdpSurface = default(int[,]); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.UInt32[] _textureNames = default(System.UInt32[]); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterOutputSurface(_vdpSurface,_target,_numTextureNames,_textureNames); -} -static unsafe void Test_VDPAURegisterOutputSurface_28226() { - int[,] _vdpSurface = default(int[,]); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.UInt32 _textureNames = default(System.UInt32); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterOutputSurface(_vdpSurface,_target,_numTextureNames,ref _textureNames); -} -static unsafe void Test_VDPAURegisterOutputSurface_28227() { - int[,] _vdpSurface = default(int[,]); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.UInt32* _textureNames = default(System.UInt32*); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterOutputSurface(_vdpSurface,_target,_numTextureNames,_textureNames); -} -static unsafe void Test_VDPAURegisterOutputSurface_28228() { - int[,,] _vdpSurface = default(int[,,]); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.Int32[] _textureNames = default(System.Int32[]); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterOutputSurface(_vdpSurface,_target,_numTextureNames,_textureNames); -} -static unsafe void Test_VDPAURegisterOutputSurface_28229() { - int[,,] _vdpSurface = default(int[,,]); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.Int32 _textureNames = default(System.Int32); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterOutputSurface(_vdpSurface,_target,_numTextureNames,ref _textureNames); -} -static unsafe void Test_VDPAURegisterOutputSurface_28230() { - int[,,] _vdpSurface = default(int[,,]); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.Int32* _textureNames = default(System.Int32*); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterOutputSurface(_vdpSurface,_target,_numTextureNames,_textureNames); -} -static unsafe void Test_VDPAURegisterOutputSurface_28231() { - int[,,] _vdpSurface = default(int[,,]); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.UInt32[] _textureNames = default(System.UInt32[]); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterOutputSurface(_vdpSurface,_target,_numTextureNames,_textureNames); -} -static unsafe void Test_VDPAURegisterOutputSurface_28232() { - int[,,] _vdpSurface = default(int[,,]); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.UInt32 _textureNames = default(System.UInt32); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterOutputSurface(_vdpSurface,_target,_numTextureNames,ref _textureNames); -} -static unsafe void Test_VDPAURegisterOutputSurface_28233() { - int[,,] _vdpSurface = default(int[,,]); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.UInt32* _textureNames = default(System.UInt32*); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterOutputSurface(_vdpSurface,_target,_numTextureNames,_textureNames); -} -static unsafe void Test_VDPAURegisterOutputSurface_28234() { - int _vdpSurface = default(int); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.Int32[] _textureNames = default(System.Int32[]); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterOutputSurface(ref _vdpSurface,_target,_numTextureNames,_textureNames); -} -static unsafe void Test_VDPAURegisterOutputSurface_28235() { - int _vdpSurface = default(int); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.Int32 _textureNames = default(System.Int32); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterOutputSurface(ref _vdpSurface,_target,_numTextureNames,ref _textureNames); -} -static unsafe void Test_VDPAURegisterOutputSurface_28236() { - int _vdpSurface = default(int); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.Int32* _textureNames = default(System.Int32*); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterOutputSurface(ref _vdpSurface,_target,_numTextureNames,_textureNames); -} -static unsafe void Test_VDPAURegisterOutputSurface_28237() { - int _vdpSurface = default(int); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.UInt32[] _textureNames = default(System.UInt32[]); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterOutputSurface(ref _vdpSurface,_target,_numTextureNames,_textureNames); -} -static unsafe void Test_VDPAURegisterOutputSurface_28238() { - int _vdpSurface = default(int); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.UInt32 _textureNames = default(System.UInt32); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterOutputSurface(ref _vdpSurface,_target,_numTextureNames,ref _textureNames); -} -static unsafe void Test_VDPAURegisterOutputSurface_28239() { - int _vdpSurface = default(int); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.UInt32* _textureNames = default(System.UInt32*); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterOutputSurface(ref _vdpSurface,_target,_numTextureNames,_textureNames); -} -static unsafe void Test_VDPAURegisterVideoSurface_28240() { - System.IntPtr _vdpSurface = default(System.IntPtr); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.Int32[] _textureNames = default(System.Int32[]); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterVideoSurface(_vdpSurface,_target,_numTextureNames,_textureNames); -} -static unsafe void Test_VDPAURegisterVideoSurface_28241() { - System.IntPtr _vdpSurface = default(System.IntPtr); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.Int32 _textureNames = default(System.Int32); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterVideoSurface(_vdpSurface,_target,_numTextureNames,ref _textureNames); -} -static unsafe void Test_VDPAURegisterVideoSurface_28242() { - System.IntPtr _vdpSurface = default(System.IntPtr); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.Int32* _textureNames = default(System.Int32*); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterVideoSurface(_vdpSurface,_target,_numTextureNames,_textureNames); -} -static unsafe void Test_VDPAURegisterVideoSurface_28243() { - System.IntPtr _vdpSurface = default(System.IntPtr); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.UInt32[] _textureNames = default(System.UInt32[]); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterVideoSurface(_vdpSurface,_target,_numTextureNames,_textureNames); -} -static unsafe void Test_VDPAURegisterVideoSurface_28244() { - System.IntPtr _vdpSurface = default(System.IntPtr); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.UInt32 _textureNames = default(System.UInt32); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterVideoSurface(_vdpSurface,_target,_numTextureNames,ref _textureNames); -} -static unsafe void Test_VDPAURegisterVideoSurface_28245() { - System.IntPtr _vdpSurface = default(System.IntPtr); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.UInt32* _textureNames = default(System.UInt32*); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterVideoSurface(_vdpSurface,_target,_numTextureNames,_textureNames); -} -static unsafe void Test_VDPAURegisterVideoSurface_28246() { - int[] _vdpSurface = default(int[]); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.Int32[] _textureNames = default(System.Int32[]); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterVideoSurface(_vdpSurface,_target,_numTextureNames,_textureNames); -} -static unsafe void Test_VDPAURegisterVideoSurface_28247() { - int[] _vdpSurface = default(int[]); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.Int32 _textureNames = default(System.Int32); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterVideoSurface(_vdpSurface,_target,_numTextureNames,ref _textureNames); -} -static unsafe void Test_VDPAURegisterVideoSurface_28248() { - int[] _vdpSurface = default(int[]); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.Int32* _textureNames = default(System.Int32*); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterVideoSurface(_vdpSurface,_target,_numTextureNames,_textureNames); -} -static unsafe void Test_VDPAURegisterVideoSurface_28249() { - int[] _vdpSurface = default(int[]); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.UInt32[] _textureNames = default(System.UInt32[]); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterVideoSurface(_vdpSurface,_target,_numTextureNames,_textureNames); -} -static unsafe void Test_VDPAURegisterVideoSurface_28250() { - int[] _vdpSurface = default(int[]); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.UInt32 _textureNames = default(System.UInt32); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterVideoSurface(_vdpSurface,_target,_numTextureNames,ref _textureNames); -} -static unsafe void Test_VDPAURegisterVideoSurface_28251() { - int[] _vdpSurface = default(int[]); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.UInt32* _textureNames = default(System.UInt32*); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterVideoSurface(_vdpSurface,_target,_numTextureNames,_textureNames); -} -static unsafe void Test_VDPAURegisterVideoSurface_28252() { - int[,] _vdpSurface = default(int[,]); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.Int32[] _textureNames = default(System.Int32[]); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterVideoSurface(_vdpSurface,_target,_numTextureNames,_textureNames); -} -static unsafe void Test_VDPAURegisterVideoSurface_28253() { - int[,] _vdpSurface = default(int[,]); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.Int32 _textureNames = default(System.Int32); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterVideoSurface(_vdpSurface,_target,_numTextureNames,ref _textureNames); -} -static unsafe void Test_VDPAURegisterVideoSurface_28254() { - int[,] _vdpSurface = default(int[,]); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.Int32* _textureNames = default(System.Int32*); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterVideoSurface(_vdpSurface,_target,_numTextureNames,_textureNames); -} -static unsafe void Test_VDPAURegisterVideoSurface_28255() { - int[,] _vdpSurface = default(int[,]); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.UInt32[] _textureNames = default(System.UInt32[]); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterVideoSurface(_vdpSurface,_target,_numTextureNames,_textureNames); -} -static unsafe void Test_VDPAURegisterVideoSurface_28256() { - int[,] _vdpSurface = default(int[,]); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.UInt32 _textureNames = default(System.UInt32); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterVideoSurface(_vdpSurface,_target,_numTextureNames,ref _textureNames); -} -static unsafe void Test_VDPAURegisterVideoSurface_28257() { - int[,] _vdpSurface = default(int[,]); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.UInt32* _textureNames = default(System.UInt32*); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterVideoSurface(_vdpSurface,_target,_numTextureNames,_textureNames); -} -static unsafe void Test_VDPAURegisterVideoSurface_28258() { - int[,,] _vdpSurface = default(int[,,]); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.Int32[] _textureNames = default(System.Int32[]); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterVideoSurface(_vdpSurface,_target,_numTextureNames,_textureNames); -} -static unsafe void Test_VDPAURegisterVideoSurface_28259() { - int[,,] _vdpSurface = default(int[,,]); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.Int32 _textureNames = default(System.Int32); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterVideoSurface(_vdpSurface,_target,_numTextureNames,ref _textureNames); -} -static unsafe void Test_VDPAURegisterVideoSurface_28260() { - int[,,] _vdpSurface = default(int[,,]); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.Int32* _textureNames = default(System.Int32*); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterVideoSurface(_vdpSurface,_target,_numTextureNames,_textureNames); -} -static unsafe void Test_VDPAURegisterVideoSurface_28261() { - int[,,] _vdpSurface = default(int[,,]); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.UInt32[] _textureNames = default(System.UInt32[]); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterVideoSurface(_vdpSurface,_target,_numTextureNames,_textureNames); -} -static unsafe void Test_VDPAURegisterVideoSurface_28262() { - int[,,] _vdpSurface = default(int[,,]); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.UInt32 _textureNames = default(System.UInt32); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterVideoSurface(_vdpSurface,_target,_numTextureNames,ref _textureNames); -} -static unsafe void Test_VDPAURegisterVideoSurface_28263() { - int[,,] _vdpSurface = default(int[,,]); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.UInt32* _textureNames = default(System.UInt32*); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterVideoSurface(_vdpSurface,_target,_numTextureNames,_textureNames); -} -static unsafe void Test_VDPAURegisterVideoSurface_28264() { - int _vdpSurface = default(int); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.Int32[] _textureNames = default(System.Int32[]); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterVideoSurface(ref _vdpSurface,_target,_numTextureNames,_textureNames); -} -static unsafe void Test_VDPAURegisterVideoSurface_28265() { - int _vdpSurface = default(int); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.Int32 _textureNames = default(System.Int32); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterVideoSurface(ref _vdpSurface,_target,_numTextureNames,ref _textureNames); -} -static unsafe void Test_VDPAURegisterVideoSurface_28266() { - int _vdpSurface = default(int); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.Int32* _textureNames = default(System.Int32*); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterVideoSurface(ref _vdpSurface,_target,_numTextureNames,_textureNames); -} -static unsafe void Test_VDPAURegisterVideoSurface_28267() { - int _vdpSurface = default(int); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.UInt32[] _textureNames = default(System.UInt32[]); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterVideoSurface(ref _vdpSurface,_target,_numTextureNames,_textureNames); -} -static unsafe void Test_VDPAURegisterVideoSurface_28268() { - int _vdpSurface = default(int); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.UInt32 _textureNames = default(System.UInt32); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterVideoSurface(ref _vdpSurface,_target,_numTextureNames,ref _textureNames); -} -static unsafe void Test_VDPAURegisterVideoSurface_28269() { - int _vdpSurface = default(int); - OpenTK.Graphics.OpenGL.NvVdpauInterop _target = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - System.Int32 _numTextureNames = default(System.Int32); - System.UInt32* _textureNames = default(System.UInt32*); - System.IntPtr r = OpenTK.Graphics.OpenGL.GL.NV.VDPAURegisterVideoSurface(ref _vdpSurface,_target,_numTextureNames,_textureNames); -} -static unsafe void Test_VDPAUSurfaceAccess_28270() { - System.IntPtr _surface = default(System.IntPtr); - OpenTK.Graphics.OpenGL.NvVdpauInterop _access = default(OpenTK.Graphics.OpenGL.NvVdpauInterop); - OpenTK.Graphics.OpenGL.GL.NV.VDPAUSurfaceAccess(_surface,_access); -} -static unsafe void Test_VDPAUUnmapSurfaces_28271() { - System.Int32 _numSurface = default(System.Int32); - System.IntPtr[] _surfaces = default(System.IntPtr[]); - OpenTK.Graphics.OpenGL.GL.NV.VDPAUUnmapSurfaces(_numSurface,_surfaces); -} -static unsafe void Test_VDPAUUnmapSurfaces_28272() { - System.Int32 _numSurface = default(System.Int32); - System.IntPtr _surfaces = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.NV.VDPAUUnmapSurfaces(_numSurface,ref _surfaces); -} -static unsafe void Test_VDPAUUnmapSurfaces_28273() { - System.Int32 _numSurface = default(System.Int32); - System.IntPtr* _surfaces = default(System.IntPtr*); - OpenTK.Graphics.OpenGL.GL.NV.VDPAUUnmapSurfaces(_numSurface,_surfaces); -} -static unsafe void Test_VDPAUUnregisterSurface_28274() { - System.IntPtr _surface = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.NV.VDPAUUnregisterSurface(_surface); -} -static unsafe void Test_Vertex2h_28275() { - OpenTK.Half _x = default(OpenTK.Half); - OpenTK.Half _y = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.Vertex2h(_x,_y); -} -static unsafe void Test_Vertex2h_28276() { - OpenTK.Half[] _v = default(OpenTK.Half[]); - OpenTK.Graphics.OpenGL.GL.NV.Vertex2h(_v); -} -static unsafe void Test_Vertex2h_28277() { - OpenTK.Half _v = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.Vertex2h(ref _v); -} -static unsafe void Test_Vertex2h_28278() { - OpenTK.Half* _v = default(OpenTK.Half*); - OpenTK.Graphics.OpenGL.GL.NV.Vertex2h(_v); -} -static unsafe void Test_Vertex3h_28279() { - OpenTK.Half _x = default(OpenTK.Half); - OpenTK.Half _y = default(OpenTK.Half); - OpenTK.Half _z = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.Vertex3h(_x,_y,_z); -} -static unsafe void Test_Vertex3h_28280() { - OpenTK.Half[] _v = default(OpenTK.Half[]); - OpenTK.Graphics.OpenGL.GL.NV.Vertex3h(_v); -} -static unsafe void Test_Vertex3h_28281() { - OpenTK.Half _v = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.Vertex3h(ref _v); -} -static unsafe void Test_Vertex3h_28282() { - OpenTK.Half* _v = default(OpenTK.Half*); - OpenTK.Graphics.OpenGL.GL.NV.Vertex3h(_v); -} -static unsafe void Test_Vertex4h_28283() { - OpenTK.Half _x = default(OpenTK.Half); - OpenTK.Half _y = default(OpenTK.Half); - OpenTK.Half _z = default(OpenTK.Half); - OpenTK.Half _w = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.Vertex4h(_x,_y,_z,_w); -} -static unsafe void Test_Vertex4h_28284() { - OpenTK.Half[] _v = default(OpenTK.Half[]); - OpenTK.Graphics.OpenGL.GL.NV.Vertex4h(_v); -} -static unsafe void Test_Vertex4h_28285() { - OpenTK.Half _v = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.Vertex4h(ref _v); -} -static unsafe void Test_Vertex4h_28286() { - OpenTK.Half* _v = default(OpenTK.Half*); - OpenTK.Graphics.OpenGL.GL.NV.Vertex4h(_v); -} -static unsafe void Test_VertexArrayRange_28287() { - System.Int32 _length = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.NV.VertexArrayRange(_length,_pointer); -} -static unsafe void Test_VertexArrayRange_28288() { - System.Int32 _length = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexArrayRange(_length,_pointer); -} -static unsafe void Test_VertexArrayRange_28289() { - System.Int32 _length = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.NV.VertexArrayRange(_length,_pointer); -} -static unsafe void Test_VertexArrayRange_28290() { - System.Int32 _length = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.NV.VertexArrayRange(_length,_pointer); -} -static unsafe void Test_VertexArrayRange_28291() { - System.Int32 _length = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.NV.VertexArrayRange(_length,ref _pointer); -} -static unsafe void Test_VertexAttrib1_28292() { - System.Int32 _index = default(System.Int32); - System.Double _x = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib1(_index,_x); -} -static unsafe void Test_VertexAttrib1_28293() { - System.UInt32 _index = default(System.UInt32); - System.Double _x = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib1(_index,_x); -} -static unsafe void Test_VertexAttrib1_28294() { - System.Int32 _index = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib1(_index,_v); -} -static unsafe void Test_VertexAttrib1_28295() { - System.UInt32 _index = default(System.UInt32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib1(_index,_v); -} -static unsafe void Test_VertexAttrib1_28296() { - System.Int32 _index = default(System.Int32); - System.Single _x = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib1(_index,_x); -} -static unsafe void Test_VertexAttrib1_28297() { - System.UInt32 _index = default(System.UInt32); - System.Single _x = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib1(_index,_x); -} -static unsafe void Test_VertexAttrib1_28298() { - System.Int32 _index = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib1(_index,_v); -} -static unsafe void Test_VertexAttrib1_28299() { - System.UInt32 _index = default(System.UInt32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib1(_index,_v); -} -static unsafe void Test_VertexAttrib1h_28300() { - System.Int32 _index = default(System.Int32); - OpenTK.Half _x = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib1h(_index,_x); -} -static unsafe void Test_VertexAttrib1h_28301() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Half _x = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib1h(_index,_x); -} -static unsafe void Test_VertexAttrib1h_28302() { - System.Int32 _index = default(System.Int32); - OpenTK.Half* _v = default(OpenTK.Half*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib1h(_index,_v); -} -static unsafe void Test_VertexAttrib1h_28303() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Half* _v = default(OpenTK.Half*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib1h(_index,_v); -} -static unsafe void Test_VertexAttrib1_28304() { - System.Int32 _index = default(System.Int32); - System.Int16 _x = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib1(_index,_x); -} -static unsafe void Test_VertexAttrib1_28305() { - System.UInt32 _index = default(System.UInt32); - System.Int16 _x = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib1(_index,_x); -} -static unsafe void Test_VertexAttrib1_28306() { - System.Int32 _index = default(System.Int32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib1(_index,_v); -} -static unsafe void Test_VertexAttrib1_28307() { - System.UInt32 _index = default(System.UInt32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib1(_index,_v); -} -static unsafe void Test_VertexAttrib2_28308() { - System.Int32 _index = default(System.Int32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib2(_index,_x,_y); -} -static unsafe void Test_VertexAttrib2_28309() { - System.UInt32 _index = default(System.UInt32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib2(_index,_x,_y); -} -static unsafe void Test_VertexAttrib2_28310() { - System.Int32 _index = default(System.Int32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_28311() { - System.Int32 _index = default(System.Int32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib2(_index,ref _v); -} -static unsafe void Test_VertexAttrib2_28312() { - System.Int32 _index = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_28313() { - System.UInt32 _index = default(System.UInt32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_28314() { - System.UInt32 _index = default(System.UInt32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib2(_index,ref _v); -} -static unsafe void Test_VertexAttrib2_28315() { - System.UInt32 _index = default(System.UInt32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_28316() { - System.Int32 _index = default(System.Int32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib2(_index,_x,_y); -} -static unsafe void Test_VertexAttrib2_28317() { - System.UInt32 _index = default(System.UInt32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib2(_index,_x,_y); -} -static unsafe void Test_VertexAttrib2_28318() { - System.Int32 _index = default(System.Int32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_28319() { - System.Int32 _index = default(System.Int32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib2(_index,ref _v); -} -static unsafe void Test_VertexAttrib2_28320() { - System.Int32 _index = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_28321() { - System.UInt32 _index = default(System.UInt32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_28322() { - System.UInt32 _index = default(System.UInt32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib2(_index,ref _v); -} -static unsafe void Test_VertexAttrib2_28323() { - System.UInt32 _index = default(System.UInt32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2h_28324() { - System.Int32 _index = default(System.Int32); - OpenTK.Half _x = default(OpenTK.Half); - OpenTK.Half _y = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib2h(_index,_x,_y); -} -static unsafe void Test_VertexAttrib2h_28325() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Half _x = default(OpenTK.Half); - OpenTK.Half _y = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib2h(_index,_x,_y); -} -static unsafe void Test_VertexAttrib2h_28326() { - System.Int32 _index = default(System.Int32); - OpenTK.Half[] _v = default(OpenTK.Half[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib2h(_index,_v); -} -static unsafe void Test_VertexAttrib2h_28327() { - System.Int32 _index = default(System.Int32); - OpenTK.Half _v = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib2h(_index,ref _v); -} -static unsafe void Test_VertexAttrib2h_28328() { - System.Int32 _index = default(System.Int32); - OpenTK.Half* _v = default(OpenTK.Half*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib2h(_index,_v); -} -static unsafe void Test_VertexAttrib2h_28329() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Half[] _v = default(OpenTK.Half[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib2h(_index,_v); -} -static unsafe void Test_VertexAttrib2h_28330() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Half _v = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib2h(_index,ref _v); -} -static unsafe void Test_VertexAttrib2h_28331() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Half* _v = default(OpenTK.Half*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib2h(_index,_v); -} -static unsafe void Test_VertexAttrib2_28332() { - System.Int32 _index = default(System.Int32); - System.Int16 _x = default(System.Int16); - System.Int16 _y = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib2(_index,_x,_y); -} -static unsafe void Test_VertexAttrib2_28333() { - System.UInt32 _index = default(System.UInt32); - System.Int16 _x = default(System.Int16); - System.Int16 _y = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib2(_index,_x,_y); -} -static unsafe void Test_VertexAttrib2_28334() { - System.Int32 _index = default(System.Int32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_28335() { - System.Int32 _index = default(System.Int32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib2(_index,ref _v); -} -static unsafe void Test_VertexAttrib2_28336() { - System.Int32 _index = default(System.Int32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_28337() { - System.UInt32 _index = default(System.UInt32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_28338() { - System.UInt32 _index = default(System.UInt32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib2(_index,ref _v); -} -static unsafe void Test_VertexAttrib2_28339() { - System.UInt32 _index = default(System.UInt32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib3_28340() { - System.Int32 _index = default(System.Int32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttrib3_28341() { - System.UInt32 _index = default(System.UInt32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttrib3_28342() { - System.Int32 _index = default(System.Int32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_28343() { - System.Int32 _index = default(System.Int32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib3(_index,ref _v); -} -static unsafe void Test_VertexAttrib3_28344() { - System.Int32 _index = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_28345() { - System.UInt32 _index = default(System.UInt32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_28346() { - System.UInt32 _index = default(System.UInt32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib3(_index,ref _v); -} -static unsafe void Test_VertexAttrib3_28347() { - System.UInt32 _index = default(System.UInt32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_28348() { - System.Int32 _index = default(System.Int32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttrib3_28349() { - System.UInt32 _index = default(System.UInt32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttrib3_28350() { - System.Int32 _index = default(System.Int32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_28351() { - System.Int32 _index = default(System.Int32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib3(_index,ref _v); -} -static unsafe void Test_VertexAttrib3_28352() { - System.Int32 _index = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_28353() { - System.UInt32 _index = default(System.UInt32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_28354() { - System.UInt32 _index = default(System.UInt32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib3(_index,ref _v); -} -static unsafe void Test_VertexAttrib3_28355() { - System.UInt32 _index = default(System.UInt32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3h_28356() { - System.Int32 _index = default(System.Int32); - OpenTK.Half _x = default(OpenTK.Half); - OpenTK.Half _y = default(OpenTK.Half); - OpenTK.Half _z = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib3h(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttrib3h_28357() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Half _x = default(OpenTK.Half); - OpenTK.Half _y = default(OpenTK.Half); - OpenTK.Half _z = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib3h(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttrib3h_28358() { - System.Int32 _index = default(System.Int32); - OpenTK.Half[] _v = default(OpenTK.Half[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib3h(_index,_v); -} -static unsafe void Test_VertexAttrib3h_28359() { - System.Int32 _index = default(System.Int32); - OpenTK.Half _v = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib3h(_index,ref _v); -} -static unsafe void Test_VertexAttrib3h_28360() { - System.Int32 _index = default(System.Int32); - OpenTK.Half* _v = default(OpenTK.Half*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib3h(_index,_v); -} -static unsafe void Test_VertexAttrib3h_28361() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Half[] _v = default(OpenTK.Half[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib3h(_index,_v); -} -static unsafe void Test_VertexAttrib3h_28362() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Half _v = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib3h(_index,ref _v); -} -static unsafe void Test_VertexAttrib3h_28363() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Half* _v = default(OpenTK.Half*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib3h(_index,_v); -} -static unsafe void Test_VertexAttrib3_28364() { - System.Int32 _index = default(System.Int32); - System.Int16 _x = default(System.Int16); - System.Int16 _y = default(System.Int16); - System.Int16 _z = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttrib3_28365() { - System.UInt32 _index = default(System.UInt32); - System.Int16 _x = default(System.Int16); - System.Int16 _y = default(System.Int16); - System.Int16 _z = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttrib3_28366() { - System.Int32 _index = default(System.Int32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_28367() { - System.Int32 _index = default(System.Int32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib3(_index,ref _v); -} -static unsafe void Test_VertexAttrib3_28368() { - System.Int32 _index = default(System.Int32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_28369() { - System.UInt32 _index = default(System.UInt32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_28370() { - System.UInt32 _index = default(System.UInt32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib3(_index,ref _v); -} -static unsafe void Test_VertexAttrib3_28371() { - System.UInt32 _index = default(System.UInt32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib4_28372() { - System.Int32 _index = default(System.Int32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - System.Double _w = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttrib4_28373() { - System.UInt32 _index = default(System.UInt32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - System.Double _w = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttrib4_28374() { - System.Int32 _index = default(System.Int32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_28375() { - System.Int32 _index = default(System.Int32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_28376() { - System.Int32 _index = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_28377() { - System.UInt32 _index = default(System.UInt32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_28378() { - System.UInt32 _index = default(System.UInt32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_28379() { - System.UInt32 _index = default(System.UInt32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_28380() { - System.Int32 _index = default(System.Int32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - System.Single _w = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttrib4_28381() { - System.UInt32 _index = default(System.UInt32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - System.Single _w = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttrib4_28382() { - System.Int32 _index = default(System.Int32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_28383() { - System.Int32 _index = default(System.Int32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_28384() { - System.Int32 _index = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_28385() { - System.UInt32 _index = default(System.UInt32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_28386() { - System.UInt32 _index = default(System.UInt32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_28387() { - System.UInt32 _index = default(System.UInt32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4h_28388() { - System.Int32 _index = default(System.Int32); - OpenTK.Half _x = default(OpenTK.Half); - OpenTK.Half _y = default(OpenTK.Half); - OpenTK.Half _z = default(OpenTK.Half); - OpenTK.Half _w = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib4h(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttrib4h_28389() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Half _x = default(OpenTK.Half); - OpenTK.Half _y = default(OpenTK.Half); - OpenTK.Half _z = default(OpenTK.Half); - OpenTK.Half _w = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib4h(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttrib4h_28390() { - System.Int32 _index = default(System.Int32); - OpenTK.Half[] _v = default(OpenTK.Half[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib4h(_index,_v); -} -static unsafe void Test_VertexAttrib4h_28391() { - System.Int32 _index = default(System.Int32); - OpenTK.Half _v = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib4h(_index,ref _v); -} -static unsafe void Test_VertexAttrib4h_28392() { - System.Int32 _index = default(System.Int32); - OpenTK.Half* _v = default(OpenTK.Half*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib4h(_index,_v); -} -static unsafe void Test_VertexAttrib4h_28393() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Half[] _v = default(OpenTK.Half[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib4h(_index,_v); -} -static unsafe void Test_VertexAttrib4h_28394() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Half _v = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib4h(_index,ref _v); -} -static unsafe void Test_VertexAttrib4h_28395() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Half* _v = default(OpenTK.Half*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib4h(_index,_v); -} -static unsafe void Test_VertexAttrib4_28396() { - System.Int32 _index = default(System.Int32); - System.Int16 _x = default(System.Int16); - System.Int16 _y = default(System.Int16); - System.Int16 _z = default(System.Int16); - System.Int16 _w = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttrib4_28397() { - System.UInt32 _index = default(System.UInt32); - System.Int16 _x = default(System.Int16); - System.Int16 _y = default(System.Int16); - System.Int16 _z = default(System.Int16); - System.Int16 _w = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttrib4_28398() { - System.Int32 _index = default(System.Int32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_28399() { - System.Int32 _index = default(System.Int32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_28400() { - System.Int32 _index = default(System.Int32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_28401() { - System.UInt32 _index = default(System.UInt32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_28402() { - System.UInt32 _index = default(System.UInt32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_28403() { - System.UInt32 _index = default(System.UInt32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_28404() { - System.Int32 _index = default(System.Int32); - System.Byte _x = default(System.Byte); - System.Byte _y = default(System.Byte); - System.Byte _z = default(System.Byte); - System.Byte _w = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttrib4_28405() { - System.UInt32 _index = default(System.UInt32); - System.Byte _x = default(System.Byte); - System.Byte _y = default(System.Byte); - System.Byte _z = default(System.Byte); - System.Byte _w = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttrib4_28406() { - System.Int32 _index = default(System.Int32); - System.Byte[] _v = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_28407() { - System.Int32 _index = default(System.Int32); - System.Byte _v = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_28408() { - System.Int32 _index = default(System.Int32); - System.Byte* _v = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_28409() { - System.UInt32 _index = default(System.UInt32); - System.Byte[] _v = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_28410() { - System.UInt32 _index = default(System.UInt32); - System.Byte _v = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_28411() { - System.UInt32 _index = default(System.UInt32); - System.Byte* _v = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttribFormat_28412() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory _type = default(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribFormat(_index,_size,_type,_normalized,_stride); -} -static unsafe void Test_VertexAttribFormat_28413() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory _type = default(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribFormat(_index,_size,_type,_normalized,_stride); -} -static unsafe void Test_VertexAttribIFormat_28414() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory _type = default(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribIFormat(_index,_size,_type,_stride); -} -static unsafe void Test_VertexAttribIFormat_28415() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory _type = default(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribIFormat(_index,_size,_type,_stride); -} -static unsafe void Test_VertexAttribL1_28416() { - System.Int32 _index = default(System.Int32); - System.Int64 _x = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL1(_index,_x); -} -static unsafe void Test_VertexAttribL1_28417() { - System.UInt32 _index = default(System.UInt32); - System.Int64 _x = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL1(_index,_x); -} -static unsafe void Test_VertexAttribL1_28418() { - System.Int32 _index = default(System.Int32); - System.Int64* _v = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL1(_index,_v); -} -static unsafe void Test_VertexAttribL1_28419() { - System.UInt32 _index = default(System.UInt32); - System.Int64* _v = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL1(_index,_v); -} -static unsafe void Test_VertexAttribL1_28420() { - System.UInt32 _index = default(System.UInt32); - System.UInt64 _x = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL1(_index,_x); -} -static unsafe void Test_VertexAttribL1_28421() { - System.UInt32 _index = default(System.UInt32); - System.UInt64* _v = default(System.UInt64*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL1(_index,_v); -} -static unsafe void Test_VertexAttribL2_28422() { - System.Int32 _index = default(System.Int32); - System.Int64 _x = default(System.Int64); - System.Int64 _y = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL2(_index,_x,_y); -} -static unsafe void Test_VertexAttribL2_28423() { - System.UInt32 _index = default(System.UInt32); - System.Int64 _x = default(System.Int64); - System.Int64 _y = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL2(_index,_x,_y); -} -static unsafe void Test_VertexAttribL2_28424() { - System.Int32 _index = default(System.Int32); - System.Int64[] _v = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL2(_index,_v); -} -static unsafe void Test_VertexAttribL2_28425() { - System.Int32 _index = default(System.Int32); - System.Int64 _v = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL2(_index,ref _v); -} -static unsafe void Test_VertexAttribL2_28426() { - System.Int32 _index = default(System.Int32); - System.Int64* _v = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL2(_index,_v); -} -static unsafe void Test_VertexAttribL2_28427() { - System.UInt32 _index = default(System.UInt32); - System.Int64[] _v = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL2(_index,_v); -} -static unsafe void Test_VertexAttribL2_28428() { - System.UInt32 _index = default(System.UInt32); - System.Int64 _v = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL2(_index,ref _v); -} -static unsafe void Test_VertexAttribL2_28429() { - System.UInt32 _index = default(System.UInt32); - System.Int64* _v = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL2(_index,_v); -} -static unsafe void Test_VertexAttribL2_28430() { - System.UInt32 _index = default(System.UInt32); - System.UInt64 _x = default(System.UInt64); - System.UInt64 _y = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL2(_index,_x,_y); -} -static unsafe void Test_VertexAttribL2_28431() { - System.UInt32 _index = default(System.UInt32); - System.UInt64[] _v = default(System.UInt64[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL2(_index,_v); -} -static unsafe void Test_VertexAttribL2_28432() { - System.UInt32 _index = default(System.UInt32); - System.UInt64 _v = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL2(_index,ref _v); -} -static unsafe void Test_VertexAttribL2_28433() { - System.UInt32 _index = default(System.UInt32); - System.UInt64* _v = default(System.UInt64*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL2(_index,_v); -} -static unsafe void Test_VertexAttribL3_28434() { - System.Int32 _index = default(System.Int32); - System.Int64 _x = default(System.Int64); - System.Int64 _y = default(System.Int64); - System.Int64 _z = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttribL3_28435() { - System.UInt32 _index = default(System.UInt32); - System.Int64 _x = default(System.Int64); - System.Int64 _y = default(System.Int64); - System.Int64 _z = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttribL3_28436() { - System.Int32 _index = default(System.Int32); - System.Int64[] _v = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL3(_index,_v); -} -static unsafe void Test_VertexAttribL3_28437() { - System.Int32 _index = default(System.Int32); - System.Int64 _v = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL3(_index,ref _v); -} -static unsafe void Test_VertexAttribL3_28438() { - System.Int32 _index = default(System.Int32); - System.Int64* _v = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL3(_index,_v); -} -static unsafe void Test_VertexAttribL3_28439() { - System.UInt32 _index = default(System.UInt32); - System.Int64[] _v = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL3(_index,_v); -} -static unsafe void Test_VertexAttribL3_28440() { - System.UInt32 _index = default(System.UInt32); - System.Int64 _v = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL3(_index,ref _v); -} -static unsafe void Test_VertexAttribL3_28441() { - System.UInt32 _index = default(System.UInt32); - System.Int64* _v = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL3(_index,_v); -} -static unsafe void Test_VertexAttribL3_28442() { - System.UInt32 _index = default(System.UInt32); - System.UInt64 _x = default(System.UInt64); - System.UInt64 _y = default(System.UInt64); - System.UInt64 _z = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttribL3_28443() { - System.UInt32 _index = default(System.UInt32); - System.UInt64[] _v = default(System.UInt64[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL3(_index,_v); -} -static unsafe void Test_VertexAttribL3_28444() { - System.UInt32 _index = default(System.UInt32); - System.UInt64 _v = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL3(_index,ref _v); -} -static unsafe void Test_VertexAttribL3_28445() { - System.UInt32 _index = default(System.UInt32); - System.UInt64* _v = default(System.UInt64*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL3(_index,_v); -} -static unsafe void Test_VertexAttribL4_28446() { - System.Int32 _index = default(System.Int32); - System.Int64 _x = default(System.Int64); - System.Int64 _y = default(System.Int64); - System.Int64 _z = default(System.Int64); - System.Int64 _w = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttribL4_28447() { - System.UInt32 _index = default(System.UInt32); - System.Int64 _x = default(System.Int64); - System.Int64 _y = default(System.Int64); - System.Int64 _z = default(System.Int64); - System.Int64 _w = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttribL4_28448() { - System.Int32 _index = default(System.Int32); - System.Int64[] _v = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL4(_index,_v); -} -static unsafe void Test_VertexAttribL4_28449() { - System.Int32 _index = default(System.Int32); - System.Int64 _v = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL4(_index,ref _v); -} -static unsafe void Test_VertexAttribL4_28450() { - System.Int32 _index = default(System.Int32); - System.Int64* _v = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL4(_index,_v); -} -static unsafe void Test_VertexAttribL4_28451() { - System.UInt32 _index = default(System.UInt32); - System.Int64[] _v = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL4(_index,_v); -} -static unsafe void Test_VertexAttribL4_28452() { - System.UInt32 _index = default(System.UInt32); - System.Int64 _v = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL4(_index,ref _v); -} -static unsafe void Test_VertexAttribL4_28453() { - System.UInt32 _index = default(System.UInt32); - System.Int64* _v = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL4(_index,_v); -} -static unsafe void Test_VertexAttribL4_28454() { - System.UInt32 _index = default(System.UInt32); - System.UInt64 _x = default(System.UInt64); - System.UInt64 _y = default(System.UInt64); - System.UInt64 _z = default(System.UInt64); - System.UInt64 _w = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttribL4_28455() { - System.UInt32 _index = default(System.UInt32); - System.UInt64[] _v = default(System.UInt64[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL4(_index,_v); -} -static unsafe void Test_VertexAttribL4_28456() { - System.UInt32 _index = default(System.UInt32); - System.UInt64 _v = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL4(_index,ref _v); -} -static unsafe void Test_VertexAttribL4_28457() { - System.UInt32 _index = default(System.UInt32); - System.UInt64* _v = default(System.UInt64*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribL4(_index,_v); -} -static unsafe void Test_VertexAttribLFormat_28458() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit _type = default(OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribLFormat(_index,_size,_type,_stride); -} -static unsafe void Test_VertexAttribLFormat_28459() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit _type = default(OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribLFormat(_index,_size,_type,_stride); -} -static unsafe void Test_VertexAttribPointer_28460() { - System.Int32 _index = default(System.Int32); - System.Int32 _fsize = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribParameterArb _type = default(OpenTK.Graphics.OpenGL.VertexAttribParameterArb); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribPointer(_index,_fsize,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_28461() { - System.Int32 _index = default(System.Int32); - System.Int32 _fsize = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribParameterArb _type = default(OpenTK.Graphics.OpenGL.VertexAttribParameterArb); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribPointer(_index,_fsize,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_28462() { - System.Int32 _index = default(System.Int32); - System.Int32 _fsize = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribParameterArb _type = default(OpenTK.Graphics.OpenGL.VertexAttribParameterArb); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribPointer(_index,_fsize,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_28463() { - System.Int32 _index = default(System.Int32); - System.Int32 _fsize = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribParameterArb _type = default(OpenTK.Graphics.OpenGL.VertexAttribParameterArb); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribPointer(_index,_fsize,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_28464() { - System.Int32 _index = default(System.Int32); - System.Int32 _fsize = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribParameterArb _type = default(OpenTK.Graphics.OpenGL.VertexAttribParameterArb); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribPointer(_index,_fsize,_type,_stride,ref _pointer); -} -static unsafe void Test_VertexAttribPointer_28465() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _fsize = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribParameterArb _type = default(OpenTK.Graphics.OpenGL.VertexAttribParameterArb); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribPointer(_index,_fsize,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_28466() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _fsize = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribParameterArb _type = default(OpenTK.Graphics.OpenGL.VertexAttribParameterArb); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribPointer(_index,_fsize,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_28467() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _fsize = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribParameterArb _type = default(OpenTK.Graphics.OpenGL.VertexAttribParameterArb); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribPointer(_index,_fsize,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_28468() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _fsize = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribParameterArb _type = default(OpenTK.Graphics.OpenGL.VertexAttribParameterArb); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribPointer(_index,_fsize,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_28469() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _fsize = default(System.Int32); - OpenTK.Graphics.OpenGL.VertexAttribParameterArb _type = default(OpenTK.Graphics.OpenGL.VertexAttribParameterArb); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribPointer(_index,_fsize,_type,_stride,ref _pointer); -} -static unsafe void Test_VertexAttribs1_28470() { - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs1(_index,_count,_v); -} -static unsafe void Test_VertexAttribs1_28471() { - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs1(_index,_count,ref _v); -} -static unsafe void Test_VertexAttribs1_28472() { - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs1(_index,_count,_v); -} -static unsafe void Test_VertexAttribs1_28473() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs1(_index,_count,_v); -} -static unsafe void Test_VertexAttribs1_28474() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs1(_index,_count,ref _v); -} -static unsafe void Test_VertexAttribs1_28475() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs1(_index,_count,_v); -} -static unsafe void Test_VertexAttribs1_28476() { - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs1(_index,_count,_v); -} -static unsafe void Test_VertexAttribs1_28477() { - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs1(_index,_count,ref _v); -} -static unsafe void Test_VertexAttribs1_28478() { - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs1(_index,_count,_v); -} -static unsafe void Test_VertexAttribs1_28479() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs1(_index,_count,_v); -} -static unsafe void Test_VertexAttribs1_28480() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs1(_index,_count,ref _v); -} -static unsafe void Test_VertexAttribs1_28481() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs1(_index,_count,_v); -} -static unsafe void Test_VertexAttribs1h_28482() { - System.Int32 _index = default(System.Int32); - System.Int32 _n = default(System.Int32); - OpenTK.Half[] _v = default(OpenTK.Half[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs1h(_index,_n,_v); -} -static unsafe void Test_VertexAttribs1h_28483() { - System.Int32 _index = default(System.Int32); - System.Int32 _n = default(System.Int32); - OpenTK.Half _v = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs1h(_index,_n,ref _v); -} -static unsafe void Test_VertexAttribs1h_28484() { - System.Int32 _index = default(System.Int32); - System.Int32 _n = default(System.Int32); - OpenTK.Half* _v = default(OpenTK.Half*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs1h(_index,_n,_v); -} -static unsafe void Test_VertexAttribs1h_28485() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _n = default(System.Int32); - OpenTK.Half[] _v = default(OpenTK.Half[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs1h(_index,_n,_v); -} -static unsafe void Test_VertexAttribs1h_28486() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _n = default(System.Int32); - OpenTK.Half _v = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs1h(_index,_n,ref _v); -} -static unsafe void Test_VertexAttribs1h_28487() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _n = default(System.Int32); - OpenTK.Half* _v = default(OpenTK.Half*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs1h(_index,_n,_v); -} -static unsafe void Test_VertexAttribs1_28488() { - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs1(_index,_count,_v); -} -static unsafe void Test_VertexAttribs1_28489() { - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs1(_index,_count,ref _v); -} -static unsafe void Test_VertexAttribs1_28490() { - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs1(_index,_count,_v); -} -static unsafe void Test_VertexAttribs1_28491() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs1(_index,_count,_v); -} -static unsafe void Test_VertexAttribs1_28492() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs1(_index,_count,ref _v); -} -static unsafe void Test_VertexAttribs1_28493() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs1(_index,_count,_v); -} -static unsafe void Test_VertexAttribs2_28494() { - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs2(_index,_count,_v); -} -static unsafe void Test_VertexAttribs2_28495() { - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs2(_index,_count,ref _v); -} -static unsafe void Test_VertexAttribs2_28496() { - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs2(_index,_count,_v); -} -static unsafe void Test_VertexAttribs2_28497() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs2(_index,_count,_v); -} -static unsafe void Test_VertexAttribs2_28498() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs2(_index,_count,ref _v); -} -static unsafe void Test_VertexAttribs2_28499() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs2(_index,_count,_v); -} -static unsafe void Test_VertexAttribs2_28500() { - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs2(_index,_count,_v); -} -static unsafe void Test_VertexAttribs2_28501() { - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs2(_index,_count,ref _v); -} -static unsafe void Test_VertexAttribs2_28502() { - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs2(_index,_count,_v); -} -static unsafe void Test_VertexAttribs2_28503() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs2(_index,_count,_v); -} -static unsafe void Test_VertexAttribs2_28504() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs2(_index,_count,ref _v); -} -static unsafe void Test_VertexAttribs2_28505() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs2(_index,_count,_v); -} -static unsafe void Test_VertexAttribs2h_28506() { - System.Int32 _index = default(System.Int32); - System.Int32 _n = default(System.Int32); - OpenTK.Half[] _v = default(OpenTK.Half[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs2h(_index,_n,_v); -} -static unsafe void Test_VertexAttribs2h_28507() { - System.Int32 _index = default(System.Int32); - System.Int32 _n = default(System.Int32); - OpenTK.Half _v = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs2h(_index,_n,ref _v); -} -static unsafe void Test_VertexAttribs2h_28508() { - System.Int32 _index = default(System.Int32); - System.Int32 _n = default(System.Int32); - OpenTK.Half* _v = default(OpenTK.Half*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs2h(_index,_n,_v); -} -static unsafe void Test_VertexAttribs2h_28509() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _n = default(System.Int32); - OpenTK.Half[] _v = default(OpenTK.Half[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs2h(_index,_n,_v); -} -static unsafe void Test_VertexAttribs2h_28510() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _n = default(System.Int32); - OpenTK.Half _v = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs2h(_index,_n,ref _v); -} -static unsafe void Test_VertexAttribs2h_28511() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _n = default(System.Int32); - OpenTK.Half* _v = default(OpenTK.Half*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs2h(_index,_n,_v); -} -static unsafe void Test_VertexAttribs2_28512() { - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs2(_index,_count,_v); -} -static unsafe void Test_VertexAttribs2_28513() { - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs2(_index,_count,ref _v); -} -static unsafe void Test_VertexAttribs2_28514() { - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs2(_index,_count,_v); -} -static unsafe void Test_VertexAttribs2_28515() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs2(_index,_count,_v); -} -static unsafe void Test_VertexAttribs2_28516() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs2(_index,_count,ref _v); -} -static unsafe void Test_VertexAttribs2_28517() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs2(_index,_count,_v); -} -static unsafe void Test_VertexAttribs3_28518() { - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs3(_index,_count,_v); -} -static unsafe void Test_VertexAttribs3_28519() { - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs3(_index,_count,ref _v); -} -static unsafe void Test_VertexAttribs3_28520() { - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs3(_index,_count,_v); -} -static unsafe void Test_VertexAttribs3_28521() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs3(_index,_count,_v); -} -static unsafe void Test_VertexAttribs3_28522() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs3(_index,_count,ref _v); -} -static unsafe void Test_VertexAttribs3_28523() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs3(_index,_count,_v); -} -static unsafe void Test_VertexAttribs3_28524() { - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs3(_index,_count,_v); -} -static unsafe void Test_VertexAttribs3_28525() { - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs3(_index,_count,ref _v); -} -static unsafe void Test_VertexAttribs3_28526() { - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs3(_index,_count,_v); -} -static unsafe void Test_VertexAttribs3_28527() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs3(_index,_count,_v); -} -static unsafe void Test_VertexAttribs3_28528() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs3(_index,_count,ref _v); -} -static unsafe void Test_VertexAttribs3_28529() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs3(_index,_count,_v); -} -static unsafe void Test_VertexAttribs3h_28530() { - System.Int32 _index = default(System.Int32); - System.Int32 _n = default(System.Int32); - OpenTK.Half[] _v = default(OpenTK.Half[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs3h(_index,_n,_v); -} -static unsafe void Test_VertexAttribs3h_28531() { - System.Int32 _index = default(System.Int32); - System.Int32 _n = default(System.Int32); - OpenTK.Half _v = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs3h(_index,_n,ref _v); -} -static unsafe void Test_VertexAttribs3h_28532() { - System.Int32 _index = default(System.Int32); - System.Int32 _n = default(System.Int32); - OpenTK.Half* _v = default(OpenTK.Half*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs3h(_index,_n,_v); -} -static unsafe void Test_VertexAttribs3h_28533() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _n = default(System.Int32); - OpenTK.Half[] _v = default(OpenTK.Half[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs3h(_index,_n,_v); -} -static unsafe void Test_VertexAttribs3h_28534() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _n = default(System.Int32); - OpenTK.Half _v = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs3h(_index,_n,ref _v); -} -static unsafe void Test_VertexAttribs3h_28535() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _n = default(System.Int32); - OpenTK.Half* _v = default(OpenTK.Half*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs3h(_index,_n,_v); -} -static unsafe void Test_VertexAttribs3_28536() { - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs3(_index,_count,_v); -} -static unsafe void Test_VertexAttribs3_28537() { - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs3(_index,_count,ref _v); -} -static unsafe void Test_VertexAttribs3_28538() { - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs3(_index,_count,_v); -} -static unsafe void Test_VertexAttribs3_28539() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs3(_index,_count,_v); -} -static unsafe void Test_VertexAttribs3_28540() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs3(_index,_count,ref _v); -} -static unsafe void Test_VertexAttribs3_28541() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs3(_index,_count,_v); -} -static unsafe void Test_VertexAttribs4_28542() { - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs4(_index,_count,_v); -} -static unsafe void Test_VertexAttribs4_28543() { - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs4(_index,_count,ref _v); -} -static unsafe void Test_VertexAttribs4_28544() { - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs4(_index,_count,_v); -} -static unsafe void Test_VertexAttribs4_28545() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs4(_index,_count,_v); -} -static unsafe void Test_VertexAttribs4_28546() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs4(_index,_count,ref _v); -} -static unsafe void Test_VertexAttribs4_28547() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs4(_index,_count,_v); -} -static unsafe void Test_VertexAttribs4_28548() { - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs4(_index,_count,_v); -} -static unsafe void Test_VertexAttribs4_28549() { - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs4(_index,_count,ref _v); -} -static unsafe void Test_VertexAttribs4_28550() { - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs4(_index,_count,_v); -} -static unsafe void Test_VertexAttribs4_28551() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs4(_index,_count,_v); -} -static unsafe void Test_VertexAttribs4_28552() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs4(_index,_count,ref _v); -} -static unsafe void Test_VertexAttribs4_28553() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs4(_index,_count,_v); -} -static unsafe void Test_VertexAttribs4h_28554() { - System.Int32 _index = default(System.Int32); - System.Int32 _n = default(System.Int32); - OpenTK.Half[] _v = default(OpenTK.Half[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs4h(_index,_n,_v); -} -static unsafe void Test_VertexAttribs4h_28555() { - System.Int32 _index = default(System.Int32); - System.Int32 _n = default(System.Int32); - OpenTK.Half _v = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs4h(_index,_n,ref _v); -} -static unsafe void Test_VertexAttribs4h_28556() { - System.Int32 _index = default(System.Int32); - System.Int32 _n = default(System.Int32); - OpenTK.Half* _v = default(OpenTK.Half*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs4h(_index,_n,_v); -} -static unsafe void Test_VertexAttribs4h_28557() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _n = default(System.Int32); - OpenTK.Half[] _v = default(OpenTK.Half[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs4h(_index,_n,_v); -} -static unsafe void Test_VertexAttribs4h_28558() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _n = default(System.Int32); - OpenTK.Half _v = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs4h(_index,_n,ref _v); -} -static unsafe void Test_VertexAttribs4h_28559() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _n = default(System.Int32); - OpenTK.Half* _v = default(OpenTK.Half*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs4h(_index,_n,_v); -} -static unsafe void Test_VertexAttribs4_28560() { - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs4(_index,_count,_v); -} -static unsafe void Test_VertexAttribs4_28561() { - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs4(_index,_count,ref _v); -} -static unsafe void Test_VertexAttribs4_28562() { - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs4(_index,_count,_v); -} -static unsafe void Test_VertexAttribs4_28563() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs4(_index,_count,_v); -} -static unsafe void Test_VertexAttribs4_28564() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs4(_index,_count,ref _v); -} -static unsafe void Test_VertexAttribs4_28565() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs4(_index,_count,_v); -} -static unsafe void Test_VertexAttribs4_28566() { - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Byte[] _v = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs4(_index,_count,_v); -} -static unsafe void Test_VertexAttribs4_28567() { - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Byte _v = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs4(_index,_count,ref _v); -} -static unsafe void Test_VertexAttribs4_28568() { - System.Int32 _index = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Byte* _v = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs4(_index,_count,_v); -} -static unsafe void Test_VertexAttribs4_28569() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Byte[] _v = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs4(_index,_count,_v); -} -static unsafe void Test_VertexAttribs4_28570() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Byte _v = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs4(_index,_count,ref _v); -} -static unsafe void Test_VertexAttribs4_28571() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Byte* _v = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.NV.VertexAttribs4(_index,_count,_v); -} -static unsafe void Test_VertexFormat_28572() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory _type = default(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.VertexFormat(_size,_type,_stride); -} -static unsafe void Test_VertexWeighth_28573() { - OpenTK.Half _weight = default(OpenTK.Half); - OpenTK.Graphics.OpenGL.GL.NV.VertexWeighth(_weight); -} -static unsafe void Test_VertexWeighth_28574() { - OpenTK.Half* _weight = default(OpenTK.Half*); - OpenTK.Graphics.OpenGL.GL.NV.VertexWeighth(_weight); -} -static unsafe void Test_VideoCapture_28575() { - System.Int32 _video_capture_slot = default(System.Int32); - System.Int32[] _sequence_num = default(System.Int32[]); - System.Int64[] _capture_time = default(System.Int64[]); - OpenTK.Graphics.OpenGL.NvVideoCapture r = OpenTK.Graphics.OpenGL.GL.NV.VideoCapture(_video_capture_slot,_sequence_num,_capture_time); -} -static unsafe void Test_VideoCapture_28576() { - System.Int32 _video_capture_slot = default(System.Int32); - System.Int32 _sequence_num = default(System.Int32); - System.Int64 _capture_time = default(System.Int64); - OpenTK.Graphics.OpenGL.NvVideoCapture r = OpenTK.Graphics.OpenGL.GL.NV.VideoCapture(_video_capture_slot,out _sequence_num,out _capture_time); -} -static unsafe void Test_VideoCapture_28577() { - System.Int32 _video_capture_slot = default(System.Int32); - System.Int32* _sequence_num = default(System.Int32*); - System.Int64* _capture_time = default(System.Int64*); - OpenTK.Graphics.OpenGL.NvVideoCapture r = OpenTK.Graphics.OpenGL.GL.NV.VideoCapture(_video_capture_slot,_sequence_num,_capture_time); -} -static unsafe void Test_VideoCapture_28578() { - System.UInt32 _video_capture_slot = default(System.UInt32); - System.UInt32[] _sequence_num = default(System.UInt32[]); - System.UInt64[] _capture_time = default(System.UInt64[]); - OpenTK.Graphics.OpenGL.NvVideoCapture r = OpenTK.Graphics.OpenGL.GL.NV.VideoCapture(_video_capture_slot,_sequence_num,_capture_time); -} -static unsafe void Test_VideoCapture_28579() { - System.UInt32 _video_capture_slot = default(System.UInt32); - System.UInt32 _sequence_num = default(System.UInt32); - System.UInt64 _capture_time = default(System.UInt64); - OpenTK.Graphics.OpenGL.NvVideoCapture r = OpenTK.Graphics.OpenGL.GL.NV.VideoCapture(_video_capture_slot,out _sequence_num,out _capture_time); -} -static unsafe void Test_VideoCapture_28580() { - System.UInt32 _video_capture_slot = default(System.UInt32); - System.UInt32* _sequence_num = default(System.UInt32*); - System.UInt64* _capture_time = default(System.UInt64*); - OpenTK.Graphics.OpenGL.NvVideoCapture r = OpenTK.Graphics.OpenGL.GL.NV.VideoCapture(_video_capture_slot,_sequence_num,_capture_time); -} -static unsafe void Test_VideoCaptureStreamParameter_28581() { - System.Int32 _video_capture_slot = default(System.Int32); - System.Int32 _stream = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.NV.VideoCaptureStreamParameter(_video_capture_slot,_stream,_pname,_params); -} -static unsafe void Test_VideoCaptureStreamParameter_28582() { - System.Int32 _video_capture_slot = default(System.Int32); - System.Int32 _stream = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.VideoCaptureStreamParameter(_video_capture_slot,_stream,_pname,ref _params); -} -static unsafe void Test_VideoCaptureStreamParameter_28583() { - System.Int32 _video_capture_slot = default(System.Int32); - System.Int32 _stream = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.NV.VideoCaptureStreamParameter(_video_capture_slot,_stream,_pname,_params); -} -static unsafe void Test_VideoCaptureStreamParameter_28584() { - System.UInt32 _video_capture_slot = default(System.UInt32); - System.UInt32 _stream = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.NV.VideoCaptureStreamParameter(_video_capture_slot,_stream,_pname,_params); -} -static unsafe void Test_VideoCaptureStreamParameter_28585() { - System.UInt32 _video_capture_slot = default(System.UInt32); - System.UInt32 _stream = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL.GL.NV.VideoCaptureStreamParameter(_video_capture_slot,_stream,_pname,ref _params); -} -static unsafe void Test_VideoCaptureStreamParameter_28586() { - System.UInt32 _video_capture_slot = default(System.UInt32); - System.UInt32 _stream = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.NV.VideoCaptureStreamParameter(_video_capture_slot,_stream,_pname,_params); -} -static unsafe void Test_VideoCaptureStreamParameter_28587() { - System.Int32 _video_capture_slot = default(System.Int32); - System.Int32 _stream = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.VideoCaptureStreamParameter(_video_capture_slot,_stream,_pname,_params); -} -static unsafe void Test_VideoCaptureStreamParameter_28588() { - System.Int32 _video_capture_slot = default(System.Int32); - System.Int32 _stream = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.VideoCaptureStreamParameter(_video_capture_slot,_stream,_pname,ref _params); -} -static unsafe void Test_VideoCaptureStreamParameter_28589() { - System.Int32 _video_capture_slot = default(System.Int32); - System.Int32 _stream = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.VideoCaptureStreamParameter(_video_capture_slot,_stream,_pname,_params); -} -static unsafe void Test_VideoCaptureStreamParameter_28590() { - System.UInt32 _video_capture_slot = default(System.UInt32); - System.UInt32 _stream = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.VideoCaptureStreamParameter(_video_capture_slot,_stream,_pname,_params); -} -static unsafe void Test_VideoCaptureStreamParameter_28591() { - System.UInt32 _video_capture_slot = default(System.UInt32); - System.UInt32 _stream = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.VideoCaptureStreamParameter(_video_capture_slot,_stream,_pname,ref _params); -} -static unsafe void Test_VideoCaptureStreamParameter_28592() { - System.UInt32 _video_capture_slot = default(System.UInt32); - System.UInt32 _stream = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.VideoCaptureStreamParameter(_video_capture_slot,_stream,_pname,_params); -} -static unsafe void Test_VideoCaptureStreamParameter_28593() { - System.Int32 _video_capture_slot = default(System.Int32); - System.Int32 _stream = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.VideoCaptureStreamParameter(_video_capture_slot,_stream,_pname,_params); -} -static unsafe void Test_VideoCaptureStreamParameter_28594() { - System.Int32 _video_capture_slot = default(System.Int32); - System.Int32 _stream = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.VideoCaptureStreamParameter(_video_capture_slot,_stream,_pname,ref _params); -} -static unsafe void Test_VideoCaptureStreamParameter_28595() { - System.Int32 _video_capture_slot = default(System.Int32); - System.Int32 _stream = default(System.Int32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.VideoCaptureStreamParameter(_video_capture_slot,_stream,_pname,_params); -} -static unsafe void Test_VideoCaptureStreamParameter_28596() { - System.UInt32 _video_capture_slot = default(System.UInt32); - System.UInt32 _stream = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.VideoCaptureStreamParameter(_video_capture_slot,_stream,_pname,_params); -} -static unsafe void Test_VideoCaptureStreamParameter_28597() { - System.UInt32 _video_capture_slot = default(System.UInt32); - System.UInt32 _stream = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.VideoCaptureStreamParameter(_video_capture_slot,_stream,_pname,ref _params); -} -static unsafe void Test_VideoCaptureStreamParameter_28598() { - System.UInt32 _video_capture_slot = default(System.UInt32); - System.UInt32 _stream = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvVideoCapture _pname = default(OpenTK.Graphics.OpenGL.NvVideoCapture); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.VideoCaptureStreamParameter(_video_capture_slot,_stream,_pname,_params); -} -static unsafe void Test_WeightPath_28599() { - System.Int32 _resultPath = default(System.Int32); - System.Int32 _numPaths = default(System.Int32); - System.Int32[] _paths = default(System.Int32[]); - System.Single[] _weights = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.WeightPath(_resultPath,_numPaths,_paths,_weights); -} -static unsafe void Test_WeightPath_28600() { - System.Int32 _resultPath = default(System.Int32); - System.Int32 _numPaths = default(System.Int32); - System.Int32 _paths = default(System.Int32); - System.Single _weights = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.WeightPath(_resultPath,_numPaths,ref _paths,ref _weights); -} -static unsafe void Test_WeightPath_28601() { - System.Int32 _resultPath = default(System.Int32); - System.Int32 _numPaths = default(System.Int32); - System.Int32* _paths = default(System.Int32*); - System.Single* _weights = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.WeightPath(_resultPath,_numPaths,_paths,_weights); -} -static unsafe void Test_WeightPath_28602() { - System.UInt32 _resultPath = default(System.UInt32); - System.Int32 _numPaths = default(System.Int32); - System.UInt32[] _paths = default(System.UInt32[]); - System.Single[] _weights = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.WeightPath(_resultPath,_numPaths,_paths,_weights); -} -static unsafe void Test_WeightPath_28603() { - System.UInt32 _resultPath = default(System.UInt32); - System.Int32 _numPaths = default(System.Int32); - System.UInt32 _paths = default(System.UInt32); - System.Single _weights = default(System.Single); - OpenTK.Graphics.OpenGL.GL.NV.WeightPath(_resultPath,_numPaths,ref _paths,ref _weights); -} -static unsafe void Test_WeightPath_28604() { - System.UInt32 _resultPath = default(System.UInt32); - System.Int32 _numPaths = default(System.Int32); - System.UInt32* _paths = default(System.UInt32*); - System.Single* _weights = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.NV.WeightPath(_resultPath,_numPaths,_paths,_weights); -} -static unsafe void Test_DeleteTransformFeedback_28605() { - System.Int32 _n = default(System.Int32); - System.Int32[] _ids = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.DeleteTransformFeedback(_n,_ids); -} -static unsafe void Test_DeleteTransformFeedback_28606() { - System.Int32 _n = default(System.Int32); - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.DeleteTransformFeedback(_n,ref _ids); -} -static unsafe void Test_DeleteTransformFeedback_28607() { - System.Int32 _n = default(System.Int32); - System.Int32* _ids = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.DeleteTransformFeedback(_n,_ids); -} -static unsafe void Test_DeleteTransformFeedback_28608() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _ids = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.NV.DeleteTransformFeedback(_n,_ids); -} -static unsafe void Test_DeleteTransformFeedback_28609() { - System.Int32 _n = default(System.Int32); - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.DeleteTransformFeedback(_n,ref _ids); -} -static unsafe void Test_DeleteTransformFeedback_28610() { - System.Int32 _n = default(System.Int32); - System.UInt32* _ids = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.NV.DeleteTransformFeedback(_n,_ids); -} -static unsafe void Test_GenTransformFeedback_28611() { - System.Int32 _n = default(System.Int32); - System.Int32[] _ids = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.NV.GenTransformFeedback(_n,_ids); -} -static unsafe void Test_GenTransformFeedback_28612() { - System.Int32 _n = default(System.Int32); - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.NV.GenTransformFeedback(_n,out _ids); -} -static unsafe void Test_GenTransformFeedback_28613() { - System.Int32 _n = default(System.Int32); - System.Int32* _ids = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.NV.GenTransformFeedback(_n,_ids); -} -static unsafe void Test_GenTransformFeedback_28614() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _ids = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.NV.GenTransformFeedback(_n,_ids); -} -static unsafe void Test_GenTransformFeedback_28615() { - System.Int32 _n = default(System.Int32); - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.NV.GenTransformFeedback(_n,out _ids); -} -static unsafe void Test_GenTransformFeedback_28616() { - System.Int32 _n = default(System.Int32); - System.UInt32* _ids = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.NV.GenTransformFeedback(_n,_ids); -} -static unsafe void Test_GetProgramNamedParameter_28617() { - System.Int32 _id = default(System.Int32); - System.Int32 _len = default(System.Int32); - System.Byte* _name = default(System.Byte*); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramNamedParameter(_id,_len,_name,_params); -} -static unsafe void Test_GetProgramNamedParameter_28618() { - System.UInt32 _id = default(System.UInt32); - System.Int32 _len = default(System.Int32); - System.Byte* _name = default(System.Byte*); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramNamedParameter(_id,_len,_name,_params); -} -static unsafe void Test_GetProgramNamedParameter_28619() { - System.Int32 _id = default(System.Int32); - System.Int32 _len = default(System.Int32); - System.Byte* _name = default(System.Byte*); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramNamedParameter(_id,_len,_name,_params); -} -static unsafe void Test_GetProgramNamedParameter_28620() { - System.UInt32 _id = default(System.UInt32); - System.Int32 _len = default(System.Int32); - System.Byte* _name = default(System.Byte*); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.GetProgramNamedParameter(_id,_len,_name,_params); -} -static unsafe void Test_GetVideoi64_28621() { - System.Int32 _video_slot = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPresentVideo _pname = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.NV.GetVideoi64(_video_slot,_pname,_params); -} -static unsafe void Test_GetVideoi64_28622() { - System.Int32 _video_slot = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPresentVideo _pname = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.GetVideoi64(_video_slot,_pname,out _params); -} -static unsafe void Test_GetVideoi64_28623() { - System.Int32 _video_slot = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPresentVideo _pname = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.NV.GetVideoi64(_video_slot,_pname,_params); -} -static unsafe void Test_GetVideoi64_28624() { - System.UInt32 _video_slot = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPresentVideo _pname = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.NV.GetVideoi64(_video_slot,_pname,_params); -} -static unsafe void Test_GetVideoi64_28625() { - System.UInt32 _video_slot = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPresentVideo _pname = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.GetVideoi64(_video_slot,_pname,out _params); -} -static unsafe void Test_GetVideoi64_28626() { - System.UInt32 _video_slot = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPresentVideo _pname = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.NV.GetVideoi64(_video_slot,_pname,_params); -} -static unsafe void Test_GetVideoui64_28627() { - System.Int32 _video_slot = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPresentVideo _pname = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.OpenGL.GL.NV.GetVideoui64(_video_slot,_pname,_params); -} -static unsafe void Test_GetVideoui64_28628() { - System.Int32 _video_slot = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPresentVideo _pname = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.OpenGL.GL.NV.GetVideoui64(_video_slot,_pname,out _params); -} -static unsafe void Test_GetVideoui64_28629() { - System.Int32 _video_slot = default(System.Int32); - OpenTK.Graphics.OpenGL.NvPresentVideo _pname = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.OpenGL.GL.NV.GetVideoui64(_video_slot,_pname,_params); -} -static unsafe void Test_GetVideoui64_28630() { - System.UInt32 _video_slot = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPresentVideo _pname = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.UInt64[] _params = default(System.UInt64[]); - OpenTK.Graphics.OpenGL.GL.NV.GetVideoui64(_video_slot,_pname,_params); -} -static unsafe void Test_GetVideoui64_28631() { - System.UInt32 _video_slot = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPresentVideo _pname = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.UInt64 _params = default(System.UInt64); - OpenTK.Graphics.OpenGL.GL.NV.GetVideoui64(_video_slot,_pname,out _params); -} -static unsafe void Test_GetVideoui64_28632() { - System.UInt32 _video_slot = default(System.UInt32); - OpenTK.Graphics.OpenGL.NvPresentVideo _pname = default(OpenTK.Graphics.OpenGL.NvPresentVideo); - System.UInt64* _params = default(System.UInt64*); - OpenTK.Graphics.OpenGL.GL.NV.GetVideoui64(_video_slot,_pname,_params); -} -static unsafe void Test_ProgramNamedParameter4_28633() { - System.Int32 _id = default(System.Int32); - System.Int32 _len = default(System.Int32); - System.Byte* _name = default(System.Byte*); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramNamedParameter4(_id,_len,_name,_v); -} -static unsafe void Test_ProgramNamedParameter4_28634() { - System.UInt32 _id = default(System.UInt32); - System.Int32 _len = default(System.Int32); - System.Byte* _name = default(System.Byte*); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramNamedParameter4(_id,_len,_name,_v); -} -static unsafe void Test_ProgramNamedParameter4_28635() { - System.Int32 _id = default(System.Int32); - System.Int32 _len = default(System.Int32); - System.Byte* _name = default(System.Byte*); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramNamedParameter4(_id,_len,_name,_v); -} -static unsafe void Test_ProgramNamedParameter4_28636() { - System.UInt32 _id = default(System.UInt32); - System.Int32 _len = default(System.Int32); - System.Byte* _name = default(System.Byte*); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.NV.ProgramNamedParameter4(_id,_len,_name,_v); -} -static unsafe void Test_BeginConditionalRender_28637() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Nvx.BeginConditionalRender(_id); -} -static unsafe void Test_BeginConditionalRender_28638() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Nvx.BeginConditionalRender(_id); -} -static unsafe void Test_EndConditionalRender_28639() { - OpenTK.Graphics.OpenGL.GL.Nvx.EndConditionalRender(); -} -static unsafe void Test_Accumx_28640() { - OpenTK.Graphics.OpenGL.OesFixedPoint _op = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.Accumx(_op,_value); -} -static unsafe void Test_AlphaFuncx_28641() { - OpenTK.Graphics.OpenGL.OesFixedPoint _func = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _ref = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.AlphaFuncx(_func,_ref); -} -static unsafe void Test_Bitmapx_28642() { - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _xorig = default(System.Int32); - System.Int32 _yorig = default(System.Int32); - System.Int32 _xmove = default(System.Int32); - System.Int32 _ymove = default(System.Int32); - System.Byte[] _bitmap = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.Oes.Bitmapx(_width,_height,_xorig,_yorig,_xmove,_ymove,_bitmap); -} -static unsafe void Test_Bitmapx_28643() { - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _xorig = default(System.Int32); - System.Int32 _yorig = default(System.Int32); - System.Int32 _xmove = default(System.Int32); - System.Int32 _ymove = default(System.Int32); - System.Byte _bitmap = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Oes.Bitmapx(_width,_height,_xorig,_yorig,_xmove,_ymove,ref _bitmap); -} -static unsafe void Test_Bitmapx_28644() { - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _xorig = default(System.Int32); - System.Int32 _yorig = default(System.Int32); - System.Int32 _xmove = default(System.Int32); - System.Int32 _ymove = default(System.Int32); - System.Byte* _bitmap = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.Oes.Bitmapx(_width,_height,_xorig,_yorig,_xmove,_ymove,_bitmap); -} -static unsafe void Test_BlendColorx_28645() { - System.Int32 _red = default(System.Int32); - System.Int32 _green = default(System.Int32); - System.Int32 _blue = default(System.Int32); - System.Int32 _alpha = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.BlendColorx(_red,_green,_blue,_alpha); -} -static unsafe void Test_ClearAccumx_28646() { - System.Int32 _red = default(System.Int32); - System.Int32 _green = default(System.Int32); - System.Int32 _blue = default(System.Int32); - System.Int32 _alpha = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.ClearAccumx(_red,_green,_blue,_alpha); -} -static unsafe void Test_ClearColorx_28647() { - System.Int32 _red = default(System.Int32); - System.Int32 _green = default(System.Int32); - System.Int32 _blue = default(System.Int32); - System.Int32 _alpha = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.ClearColorx(_red,_green,_blue,_alpha); -} -static unsafe void Test_ClearDepth_28648() { - System.Single _depth = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Oes.ClearDepth(_depth); -} -static unsafe void Test_ClearDepthx_28649() { - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.ClearDepthx(_depth); -} -static unsafe void Test_ClipPlane_28650() { - OpenTK.Graphics.OpenGL.OesSinglePrecision _plane = default(OpenTK.Graphics.OpenGL.OesSinglePrecision); - System.Single[] _equation = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Oes.ClipPlane(_plane,_equation); -} -static unsafe void Test_ClipPlane_28651() { - OpenTK.Graphics.OpenGL.OesSinglePrecision _plane = default(OpenTK.Graphics.OpenGL.OesSinglePrecision); - System.Single _equation = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Oes.ClipPlane(_plane,ref _equation); -} -static unsafe void Test_ClipPlane_28652() { - OpenTK.Graphics.OpenGL.OesSinglePrecision _plane = default(OpenTK.Graphics.OpenGL.OesSinglePrecision); - System.Single* _equation = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Oes.ClipPlane(_plane,_equation); -} -static unsafe void Test_ClipPlanex_28653() { - OpenTK.Graphics.OpenGL.OesFixedPoint _plane = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32[] _equation = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.ClipPlanex(_plane,_equation); -} -static unsafe void Test_ClipPlanex_28654() { - OpenTK.Graphics.OpenGL.OesFixedPoint _plane = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _equation = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.ClipPlanex(_plane,ref _equation); -} -static unsafe void Test_ClipPlanex_28655() { - OpenTK.Graphics.OpenGL.OesFixedPoint _plane = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32* _equation = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.ClipPlanex(_plane,_equation); -} -static unsafe void Test_Color3x_28656() { - System.Int32 _red = default(System.Int32); - System.Int32 _green = default(System.Int32); - System.Int32 _blue = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.Color3x(_red,_green,_blue); -} -static unsafe void Test_Color3x_28657() { - System.Int32[] _components = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.Color3x(_components); -} -static unsafe void Test_Color3x_28658() { - System.Int32 _components = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.Color3x(ref _components); -} -static unsafe void Test_Color3x_28659() { - System.Int32* _components = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.Color3x(_components); -} -static unsafe void Test_Color4x_28660() { - System.Int32 _red = default(System.Int32); - System.Int32 _green = default(System.Int32); - System.Int32 _blue = default(System.Int32); - System.Int32 _alpha = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.Color4x(_red,_green,_blue,_alpha); -} -static unsafe void Test_Color4x_28661() { - System.Int32[] _components = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.Color4x(_components); -} -static unsafe void Test_Color4x_28662() { - System.Int32 _components = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.Color4x(ref _components); -} -static unsafe void Test_Color4x_28663() { - System.Int32* _components = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.Color4x(_components); -} -static unsafe void Test_ConvolutionParameterx_28664() { - OpenTK.Graphics.OpenGL.OesFixedPoint _target = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.ConvolutionParameterx(_target,_pname,_param); -} -static unsafe void Test_ConvolutionParameterx_28665() { - OpenTK.Graphics.OpenGL.OesFixedPoint _target = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.ConvolutionParameterx(_target,_pname,_params); -} -static unsafe void Test_ConvolutionParameterx_28666() { - OpenTK.Graphics.OpenGL.OesFixedPoint _target = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.ConvolutionParameterx(_target,_pname,_params); -} -static unsafe void Test_DepthRange_28667() { - System.Single _n = default(System.Single); - System.Single _f = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Oes.DepthRange(_n,_f); -} -static unsafe void Test_DepthRangex_28668() { - System.Int32 _n = default(System.Int32); - System.Int32 _f = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.DepthRangex(_n,_f); -} -static unsafe void Test_EvalCoord1x_28669() { - System.Int32 _u = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.EvalCoord1x(_u); -} -static unsafe void Test_EvalCoord1x_28670() { - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.EvalCoord1x(_coords); -} -static unsafe void Test_EvalCoord2x_28671() { - System.Int32 _u = default(System.Int32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.EvalCoord2x(_u,_v); -} -static unsafe void Test_EvalCoord2x_28672() { - System.Int32[] _coords = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.EvalCoord2x(_coords); -} -static unsafe void Test_EvalCoord2x_28673() { - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.EvalCoord2x(ref _coords); -} -static unsafe void Test_EvalCoord2x_28674() { - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.EvalCoord2x(_coords); -} -static unsafe void Test_FeedbackBufferx_28675() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.OpenGL.OesFixedPoint _type = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32[] _buffer = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.FeedbackBufferx(_n,_type,_buffer); -} -static unsafe void Test_FeedbackBufferx_28676() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.OpenGL.OesFixedPoint _type = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.FeedbackBufferx(_n,_type,ref _buffer); -} -static unsafe void Test_FeedbackBufferx_28677() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.OpenGL.OesFixedPoint _type = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32* _buffer = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.FeedbackBufferx(_n,_type,_buffer); -} -static unsafe void Test_Fogx_28678() { - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.Fogx(_pname,_param); -} -static unsafe void Test_Fogx_28679() { - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32[] _param = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.Fogx(_pname,_param); -} -static unsafe void Test_Fogx_28680() { - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32* _param = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.Fogx(_pname,_param); -} -static unsafe void Test_Frustum_28681() { - System.Single _l = default(System.Single); - System.Single _r = default(System.Single); - System.Single _b = default(System.Single); - System.Single _t = default(System.Single); - System.Single _n = default(System.Single); - System.Single _f = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Oes.Frustum(_l,_r,_b,_t,_n,_f); -} -static unsafe void Test_Frustumx_28682() { - System.Int32 _l = default(System.Int32); - System.Int32 _r = default(System.Int32); - System.Int32 _b = default(System.Int32); - System.Int32 _t = default(System.Int32); - System.Int32 _n = default(System.Int32); - System.Int32 _f = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.Frustumx(_l,_r,_b,_t,_n,_f); -} -static unsafe void Test_GetClipPlane_28683() { - OpenTK.Graphics.OpenGL.OesSinglePrecision _plane = default(OpenTK.Graphics.OpenGL.OesSinglePrecision); - System.Single[] _equation = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Oes.GetClipPlane(_plane,_equation); -} -static unsafe void Test_GetClipPlane_28684() { - OpenTK.Graphics.OpenGL.OesSinglePrecision _plane = default(OpenTK.Graphics.OpenGL.OesSinglePrecision); - System.Single _equation = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Oes.GetClipPlane(_plane,out _equation); -} -static unsafe void Test_GetClipPlane_28685() { - OpenTK.Graphics.OpenGL.OesSinglePrecision _plane = default(OpenTK.Graphics.OpenGL.OesSinglePrecision); - System.Single* _equation = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Oes.GetClipPlane(_plane,_equation); -} -static unsafe void Test_GetClipPlanex_28686() { - OpenTK.Graphics.OpenGL.OesFixedPoint _plane = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32[] _equation = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.GetClipPlanex(_plane,_equation); -} -static unsafe void Test_GetClipPlanex_28687() { - OpenTK.Graphics.OpenGL.OesFixedPoint _plane = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _equation = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.GetClipPlanex(_plane,out _equation); -} -static unsafe void Test_GetClipPlanex_28688() { - OpenTK.Graphics.OpenGL.OesFixedPoint _plane = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32* _equation = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.GetClipPlanex(_plane,_equation); -} -static unsafe void Test_GetConvolutionParameterx_28689() { - OpenTK.Graphics.OpenGL.OesFixedPoint _target = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.GetConvolutionParameterx(_target,_pname,_params); -} -static unsafe void Test_GetConvolutionParameterx_28690() { - OpenTK.Graphics.OpenGL.OesFixedPoint _target = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.GetConvolutionParameterx(_target,_pname,out _params); -} -static unsafe void Test_GetConvolutionParameterx_28691() { - OpenTK.Graphics.OpenGL.OesFixedPoint _target = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.GetConvolutionParameterx(_target,_pname,_params); -} -static unsafe void Test_GetFixed_28692() { - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Oes.GetFixed(_pname); -} -static unsafe void Test_GetFixed_28693() { - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.GetFixed(_pname,_params); -} -static unsafe void Test_GetFixed_28694() { - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.GetFixed(_pname,out _params); -} -static unsafe void Test_GetFixed_28695() { - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.GetFixed(_pname,_params); -} -static unsafe void Test_GetHistogramParameterx_28696() { - OpenTK.Graphics.OpenGL.OesFixedPoint _target = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.GetHistogramParameterx(_target,_pname,_params); -} -static unsafe void Test_GetHistogramParameterx_28697() { - OpenTK.Graphics.OpenGL.OesFixedPoint _target = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.GetHistogramParameterx(_target,_pname,out _params); -} -static unsafe void Test_GetHistogramParameterx_28698() { - OpenTK.Graphics.OpenGL.OesFixedPoint _target = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.GetHistogramParameterx(_target,_pname,_params); -} -static unsafe void Test_GetLightx_28699() { - OpenTK.Graphics.OpenGL.OesFixedPoint _light = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.GetLightx(_light,_pname,_params); -} -static unsafe void Test_GetLightx_28700() { - OpenTK.Graphics.OpenGL.OesFixedPoint _light = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.GetLightx(_light,_pname,out _params); -} -static unsafe void Test_GetLightx_28701() { - OpenTK.Graphics.OpenGL.OesFixedPoint _light = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.GetLightx(_light,_pname,_params); -} -static unsafe void Test_GetMapx_28702() { - OpenTK.Graphics.OpenGL.OesFixedPoint _target = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _query = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.GetMapx(_target,_query,_v); -} -static unsafe void Test_GetMapx_28703() { - OpenTK.Graphics.OpenGL.OesFixedPoint _target = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _query = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.GetMapx(_target,_query,out _v); -} -static unsafe void Test_GetMapx_28704() { - OpenTK.Graphics.OpenGL.OesFixedPoint _target = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _query = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.GetMapx(_target,_query,_v); -} -static unsafe void Test_GetMaterialx_28705() { - OpenTK.Graphics.OpenGL.OesFixedPoint _face = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.GetMaterialx(_face,_pname,_param); -} -static unsafe void Test_GetMaterialx_28706() { - OpenTK.Graphics.OpenGL.OesFixedPoint _face = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.GetMaterialx(_face,_pname,_params); -} -static unsafe void Test_GetMaterialx_28707() { - OpenTK.Graphics.OpenGL.OesFixedPoint _face = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.GetMaterialx(_face,_pname,_params); -} -static unsafe void Test_GetTexEnvx_28708() { - OpenTK.Graphics.OpenGL.OesFixedPoint _target = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.GetTexEnvx(_target,_pname,_params); -} -static unsafe void Test_GetTexEnvx_28709() { - OpenTK.Graphics.OpenGL.OesFixedPoint _target = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.GetTexEnvx(_target,_pname,out _params); -} -static unsafe void Test_GetTexEnvx_28710() { - OpenTK.Graphics.OpenGL.OesFixedPoint _target = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.GetTexEnvx(_target,_pname,_params); -} -static unsafe void Test_GetTexGenx_28711() { - OpenTK.Graphics.OpenGL.OesFixedPoint _coord = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.GetTexGenx(_coord,_pname,_params); -} -static unsafe void Test_GetTexGenx_28712() { - OpenTK.Graphics.OpenGL.OesFixedPoint _coord = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.GetTexGenx(_coord,_pname,out _params); -} -static unsafe void Test_GetTexGenx_28713() { - OpenTK.Graphics.OpenGL.OesFixedPoint _coord = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.GetTexGenx(_coord,_pname,_params); -} -static unsafe void Test_GetTexLevelParameterx_28714() { - OpenTK.Graphics.OpenGL.OesFixedPoint _target = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.GetTexLevelParameterx(_target,_level,_pname,_params); -} -static unsafe void Test_GetTexLevelParameterx_28715() { - OpenTK.Graphics.OpenGL.OesFixedPoint _target = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.GetTexLevelParameterx(_target,_level,_pname,out _params); -} -static unsafe void Test_GetTexLevelParameterx_28716() { - OpenTK.Graphics.OpenGL.OesFixedPoint _target = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.GetTexLevelParameterx(_target,_level,_pname,_params); -} -static unsafe void Test_GetTexParameterx_28717() { - OpenTK.Graphics.OpenGL.OesFixedPoint _target = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.GetTexParameterx(_target,_pname,_params); -} -static unsafe void Test_GetTexParameterx_28718() { - OpenTK.Graphics.OpenGL.OesFixedPoint _target = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.GetTexParameterx(_target,_pname,out _params); -} -static unsafe void Test_GetTexParameterx_28719() { - OpenTK.Graphics.OpenGL.OesFixedPoint _target = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.GetTexParameterx(_target,_pname,_params); -} -static unsafe void Test_Indexx_28720() { - System.Int32 _component = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.Indexx(_component); -} -static unsafe void Test_Indexx_28721() { - System.Int32* _component = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.Indexx(_component); -} -static unsafe void Test_LightModelx_28722() { - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.LightModelx(_pname,_param); -} -static unsafe void Test_LightModelx_28723() { - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32[] _param = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.LightModelx(_pname,_param); -} -static unsafe void Test_LightModelx_28724() { - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32* _param = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.LightModelx(_pname,_param); -} -static unsafe void Test_Lightx_28725() { - OpenTK.Graphics.OpenGL.OesFixedPoint _light = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.Lightx(_light,_pname,_param); -} -static unsafe void Test_Lightx_28726() { - OpenTK.Graphics.OpenGL.OesFixedPoint _light = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.Lightx(_light,_pname,_params); -} -static unsafe void Test_Lightx_28727() { - OpenTK.Graphics.OpenGL.OesFixedPoint _light = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.Lightx(_light,_pname,_params); -} -static unsafe void Test_LineWidthx_28728() { - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.LineWidthx(_width); -} -static unsafe void Test_LoadMatrixx_28729() { - System.Int32[] _m = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.LoadMatrixx(_m); -} -static unsafe void Test_LoadMatrixx_28730() { - System.Int32 _m = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.LoadMatrixx(ref _m); -} -static unsafe void Test_LoadMatrixx_28731() { - System.Int32* _m = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.LoadMatrixx(_m); -} -static unsafe void Test_LoadTransposeMatrixx_28732() { - System.Int32[] _m = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.LoadTransposeMatrixx(_m); -} -static unsafe void Test_LoadTransposeMatrixx_28733() { - System.Int32 _m = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.LoadTransposeMatrixx(ref _m); -} -static unsafe void Test_LoadTransposeMatrixx_28734() { - System.Int32* _m = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.LoadTransposeMatrixx(_m); -} -static unsafe void Test_Map1x_28735() { - OpenTK.Graphics.OpenGL.OesFixedPoint _target = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _u1 = default(System.Int32); - System.Int32 _u2 = default(System.Int32); - System.Int32 _stride = default(System.Int32); - System.Int32 _order = default(System.Int32); - System.Int32 _points = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.Map1x(_target,_u1,_u2,_stride,_order,_points); -} -static unsafe void Test_Map2x_28736() { - OpenTK.Graphics.OpenGL.OesFixedPoint _target = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _u1 = default(System.Int32); - System.Int32 _u2 = default(System.Int32); - System.Int32 _ustride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - System.Int32 _v2 = default(System.Int32); - System.Int32 _vstride = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Int32 _points = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.Map2x(_target,_u1,_u2,_ustride,_uorder,_v1,_v2,_vstride,_vorder,_points); -} -static unsafe void Test_MapGrid1x_28737() { - System.Int32 _n = default(System.Int32); - System.Int32 _u1 = default(System.Int32); - System.Int32 _u2 = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.MapGrid1x(_n,_u1,_u2); -} -static unsafe void Test_MapGrid2x_28738() { - System.Int32 _n = default(System.Int32); - System.Int32 _u1 = default(System.Int32); - System.Int32 _u2 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - System.Int32 _v2 = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.MapGrid2x(_n,_u1,_u2,_v1,_v2); -} -static unsafe void Test_Materialx_28739() { - OpenTK.Graphics.OpenGL.OesFixedPoint _face = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.Materialx(_face,_pname,_param); -} -static unsafe void Test_Materialx_28740() { - OpenTK.Graphics.OpenGL.OesFixedPoint _face = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32[] _param = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.Materialx(_face,_pname,_param); -} -static unsafe void Test_Materialx_28741() { - OpenTK.Graphics.OpenGL.OesFixedPoint _face = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32* _param = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.Materialx(_face,_pname,_param); -} -static unsafe void Test_MultiTexCoord1_28742() { - OpenTK.Graphics.OpenGL.OesByteCoordinates _texture = default(OpenTK.Graphics.OpenGL.OesByteCoordinates); - System.Byte _s = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord1(_texture,_s); -} -static unsafe void Test_MultiTexCoord1_28743() { - OpenTK.Graphics.OpenGL.OesByteCoordinates _texture = default(OpenTK.Graphics.OpenGL.OesByteCoordinates); - System.SByte _s = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord1(_texture,_s); -} -static unsafe void Test_MultiTexCoord1_28744() { - OpenTK.Graphics.OpenGL.OesByteCoordinates _texture = default(OpenTK.Graphics.OpenGL.OesByteCoordinates); - System.Byte* _coords = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord1(_texture,_coords); -} -static unsafe void Test_MultiTexCoord1_28745() { - OpenTK.Graphics.OpenGL.OesByteCoordinates _texture = default(OpenTK.Graphics.OpenGL.OesByteCoordinates); - System.SByte* _coords = default(System.SByte*); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord1(_texture,_coords); -} -static unsafe void Test_MultiTexCoord1x_28746() { - OpenTK.Graphics.OpenGL.OesFixedPoint _texture = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _s = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord1x(_texture,_s); -} -static unsafe void Test_MultiTexCoord1x_28747() { - OpenTK.Graphics.OpenGL.OesFixedPoint _texture = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord1x(_texture,_coords); -} -static unsafe void Test_MultiTexCoord2_28748() { - OpenTK.Graphics.OpenGL.OesByteCoordinates _texture = default(OpenTK.Graphics.OpenGL.OesByteCoordinates); - System.Byte _s = default(System.Byte); - System.Byte _t = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord2(_texture,_s,_t); -} -static unsafe void Test_MultiTexCoord2_28749() { - OpenTK.Graphics.OpenGL.OesByteCoordinates _texture = default(OpenTK.Graphics.OpenGL.OesByteCoordinates); - System.SByte _s = default(System.SByte); - System.SByte _t = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord2(_texture,_s,_t); -} -static unsafe void Test_MultiTexCoord2_28750() { - OpenTK.Graphics.OpenGL.OesByteCoordinates _texture = default(OpenTK.Graphics.OpenGL.OesByteCoordinates); - System.Byte[] _coords = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord2(_texture,_coords); -} -static unsafe void Test_MultiTexCoord2_28751() { - OpenTK.Graphics.OpenGL.OesByteCoordinates _texture = default(OpenTK.Graphics.OpenGL.OesByteCoordinates); - System.Byte _coords = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord2(_texture,ref _coords); -} -static unsafe void Test_MultiTexCoord2_28752() { - OpenTK.Graphics.OpenGL.OesByteCoordinates _texture = default(OpenTK.Graphics.OpenGL.OesByteCoordinates); - System.Byte* _coords = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord2(_texture,_coords); -} -static unsafe void Test_MultiTexCoord2_28753() { - OpenTK.Graphics.OpenGL.OesByteCoordinates _texture = default(OpenTK.Graphics.OpenGL.OesByteCoordinates); - System.SByte[] _coords = default(System.SByte[]); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord2(_texture,_coords); -} -static unsafe void Test_MultiTexCoord2_28754() { - OpenTK.Graphics.OpenGL.OesByteCoordinates _texture = default(OpenTK.Graphics.OpenGL.OesByteCoordinates); - System.SByte _coords = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord2(_texture,ref _coords); -} -static unsafe void Test_MultiTexCoord2_28755() { - OpenTK.Graphics.OpenGL.OesByteCoordinates _texture = default(OpenTK.Graphics.OpenGL.OesByteCoordinates); - System.SByte* _coords = default(System.SByte*); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord2(_texture,_coords); -} -static unsafe void Test_MultiTexCoord2x_28756() { - OpenTK.Graphics.OpenGL.OesFixedPoint _texture = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _s = default(System.Int32); - System.Int32 _t = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord2x(_texture,_s,_t); -} -static unsafe void Test_MultiTexCoord2x_28757() { - OpenTK.Graphics.OpenGL.OesFixedPoint _texture = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32[] _coords = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord2x(_texture,_coords); -} -static unsafe void Test_MultiTexCoord2x_28758() { - OpenTK.Graphics.OpenGL.OesFixedPoint _texture = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord2x(_texture,ref _coords); -} -static unsafe void Test_MultiTexCoord2x_28759() { - OpenTK.Graphics.OpenGL.OesFixedPoint _texture = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord2x(_texture,_coords); -} -static unsafe void Test_MultiTexCoord3_28760() { - OpenTK.Graphics.OpenGL.OesByteCoordinates _texture = default(OpenTK.Graphics.OpenGL.OesByteCoordinates); - System.Byte _s = default(System.Byte); - System.Byte _t = default(System.Byte); - System.Byte _r = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord3(_texture,_s,_t,_r); -} -static unsafe void Test_MultiTexCoord3_28761() { - OpenTK.Graphics.OpenGL.OesByteCoordinates _texture = default(OpenTK.Graphics.OpenGL.OesByteCoordinates); - System.SByte _s = default(System.SByte); - System.SByte _t = default(System.SByte); - System.SByte _r = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord3(_texture,_s,_t,_r); -} -static unsafe void Test_MultiTexCoord3_28762() { - OpenTK.Graphics.OpenGL.OesByteCoordinates _texture = default(OpenTK.Graphics.OpenGL.OesByteCoordinates); - System.Byte[] _coords = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord3(_texture,_coords); -} -static unsafe void Test_MultiTexCoord3_28763() { - OpenTK.Graphics.OpenGL.OesByteCoordinates _texture = default(OpenTK.Graphics.OpenGL.OesByteCoordinates); - System.Byte _coords = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord3(_texture,ref _coords); -} -static unsafe void Test_MultiTexCoord3_28764() { - OpenTK.Graphics.OpenGL.OesByteCoordinates _texture = default(OpenTK.Graphics.OpenGL.OesByteCoordinates); - System.Byte* _coords = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord3(_texture,_coords); -} -static unsafe void Test_MultiTexCoord3_28765() { - OpenTK.Graphics.OpenGL.OesByteCoordinates _texture = default(OpenTK.Graphics.OpenGL.OesByteCoordinates); - System.SByte[] _coords = default(System.SByte[]); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord3(_texture,_coords); -} -static unsafe void Test_MultiTexCoord3_28766() { - OpenTK.Graphics.OpenGL.OesByteCoordinates _texture = default(OpenTK.Graphics.OpenGL.OesByteCoordinates); - System.SByte _coords = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord3(_texture,ref _coords); -} -static unsafe void Test_MultiTexCoord3_28767() { - OpenTK.Graphics.OpenGL.OesByteCoordinates _texture = default(OpenTK.Graphics.OpenGL.OesByteCoordinates); - System.SByte* _coords = default(System.SByte*); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord3(_texture,_coords); -} -static unsafe void Test_MultiTexCoord3x_28768() { - OpenTK.Graphics.OpenGL.OesFixedPoint _texture = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _s = default(System.Int32); - System.Int32 _t = default(System.Int32); - System.Int32 _r = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord3x(_texture,_s,_t,_r); -} -static unsafe void Test_MultiTexCoord3x_28769() { - OpenTK.Graphics.OpenGL.OesFixedPoint _texture = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32[] _coords = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord3x(_texture,_coords); -} -static unsafe void Test_MultiTexCoord3x_28770() { - OpenTK.Graphics.OpenGL.OesFixedPoint _texture = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord3x(_texture,ref _coords); -} -static unsafe void Test_MultiTexCoord3x_28771() { - OpenTK.Graphics.OpenGL.OesFixedPoint _texture = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord3x(_texture,_coords); -} -static unsafe void Test_MultiTexCoord4_28772() { - OpenTK.Graphics.OpenGL.OesByteCoordinates _texture = default(OpenTK.Graphics.OpenGL.OesByteCoordinates); - System.Byte _s = default(System.Byte); - System.Byte _t = default(System.Byte); - System.Byte _r = default(System.Byte); - System.Byte _q = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord4(_texture,_s,_t,_r,_q); -} -static unsafe void Test_MultiTexCoord4_28773() { - OpenTK.Graphics.OpenGL.OesByteCoordinates _texture = default(OpenTK.Graphics.OpenGL.OesByteCoordinates); - System.SByte _s = default(System.SByte); - System.SByte _t = default(System.SByte); - System.SByte _r = default(System.SByte); - System.SByte _q = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord4(_texture,_s,_t,_r,_q); -} -static unsafe void Test_MultiTexCoord4_28774() { - OpenTK.Graphics.OpenGL.OesByteCoordinates _texture = default(OpenTK.Graphics.OpenGL.OesByteCoordinates); - System.Byte[] _coords = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord4(_texture,_coords); -} -static unsafe void Test_MultiTexCoord4_28775() { - OpenTK.Graphics.OpenGL.OesByteCoordinates _texture = default(OpenTK.Graphics.OpenGL.OesByteCoordinates); - System.Byte _coords = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord4(_texture,ref _coords); -} -static unsafe void Test_MultiTexCoord4_28776() { - OpenTK.Graphics.OpenGL.OesByteCoordinates _texture = default(OpenTK.Graphics.OpenGL.OesByteCoordinates); - System.Byte* _coords = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord4(_texture,_coords); -} -static unsafe void Test_MultiTexCoord4_28777() { - OpenTK.Graphics.OpenGL.OesByteCoordinates _texture = default(OpenTK.Graphics.OpenGL.OesByteCoordinates); - System.SByte[] _coords = default(System.SByte[]); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord4(_texture,_coords); -} -static unsafe void Test_MultiTexCoord4_28778() { - OpenTK.Graphics.OpenGL.OesByteCoordinates _texture = default(OpenTK.Graphics.OpenGL.OesByteCoordinates); - System.SByte _coords = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord4(_texture,ref _coords); -} -static unsafe void Test_MultiTexCoord4_28779() { - OpenTK.Graphics.OpenGL.OesByteCoordinates _texture = default(OpenTK.Graphics.OpenGL.OesByteCoordinates); - System.SByte* _coords = default(System.SByte*); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord4(_texture,_coords); -} -static unsafe void Test_MultiTexCoord4x_28780() { - OpenTK.Graphics.OpenGL.OesFixedPoint _texture = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _s = default(System.Int32); - System.Int32 _t = default(System.Int32); - System.Int32 _r = default(System.Int32); - System.Int32 _q = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord4x(_texture,_s,_t,_r,_q); -} -static unsafe void Test_MultiTexCoord4x_28781() { - OpenTK.Graphics.OpenGL.OesFixedPoint _texture = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32[] _coords = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord4x(_texture,_coords); -} -static unsafe void Test_MultiTexCoord4x_28782() { - OpenTK.Graphics.OpenGL.OesFixedPoint _texture = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord4x(_texture,ref _coords); -} -static unsafe void Test_MultiTexCoord4x_28783() { - OpenTK.Graphics.OpenGL.OesFixedPoint _texture = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.MultiTexCoord4x(_texture,_coords); -} -static unsafe void Test_MultMatrixx_28784() { - System.Int32[] _m = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.MultMatrixx(_m); -} -static unsafe void Test_MultMatrixx_28785() { - System.Int32 _m = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.MultMatrixx(ref _m); -} -static unsafe void Test_MultMatrixx_28786() { - System.Int32* _m = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.MultMatrixx(_m); -} -static unsafe void Test_MultTransposeMatrixx_28787() { - System.Int32[] _m = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.MultTransposeMatrixx(_m); -} -static unsafe void Test_MultTransposeMatrixx_28788() { - System.Int32 _m = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.MultTransposeMatrixx(ref _m); -} -static unsafe void Test_MultTransposeMatrixx_28789() { - System.Int32* _m = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.MultTransposeMatrixx(_m); -} -static unsafe void Test_Normal3x_28790() { - System.Int32 _nx = default(System.Int32); - System.Int32 _ny = default(System.Int32); - System.Int32 _nz = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.Normal3x(_nx,_ny,_nz); -} -static unsafe void Test_Normal3x_28791() { - System.Int32[] _coords = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.Normal3x(_coords); -} -static unsafe void Test_Normal3x_28792() { - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.Normal3x(ref _coords); -} -static unsafe void Test_Normal3x_28793() { - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.Normal3x(_coords); -} -static unsafe void Test_Ortho_28794() { - System.Single _l = default(System.Single); - System.Single _r = default(System.Single); - System.Single _b = default(System.Single); - System.Single _t = default(System.Single); - System.Single _n = default(System.Single); - System.Single _f = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Oes.Ortho(_l,_r,_b,_t,_n,_f); -} -static unsafe void Test_Orthox_28795() { - System.Int32 _l = default(System.Int32); - System.Int32 _r = default(System.Int32); - System.Int32 _b = default(System.Int32); - System.Int32 _t = default(System.Int32); - System.Int32 _n = default(System.Int32); - System.Int32 _f = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.Orthox(_l,_r,_b,_t,_n,_f); -} -static unsafe void Test_PassThroughx_28796() { - System.Int32 _token = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.PassThroughx(_token); -} -static unsafe void Test_PixelTransferx_28797() { - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.PixelTransferx(_pname,_param); -} -static unsafe void Test_PixelZoomx_28798() { - System.Int32 _xfactor = default(System.Int32); - System.Int32 _yfactor = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.PixelZoomx(_xfactor,_yfactor); -} -static unsafe void Test_PointParameterx_28799() { - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.PointParameterx(_pname,_param); -} -static unsafe void Test_PointParameterx_28800() { - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.PointParameterx(_pname,_params); -} -static unsafe void Test_PointParameterx_28801() { - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.PointParameterx(_pname,_params); -} -static unsafe void Test_PointSizex_28802() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.PointSizex(_size); -} -static unsafe void Test_PolygonOffsetx_28803() { - System.Int32 _factor = default(System.Int32); - System.Int32 _units = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.PolygonOffsetx(_factor,_units); -} -static unsafe void Test_PrioritizeTexturesx_28804() { - System.Int32 _n = default(System.Int32); - System.Int32[] _textures = default(System.Int32[]); - System.Int32[] _priorities = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.PrioritizeTexturesx(_n,_textures,_priorities); -} -static unsafe void Test_PrioritizeTexturesx_28805() { - System.Int32 _n = default(System.Int32); - System.Int32 _textures = default(System.Int32); - System.Int32 _priorities = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.PrioritizeTexturesx(_n,ref _textures,ref _priorities); -} -static unsafe void Test_PrioritizeTexturesx_28806() { - System.Int32 _n = default(System.Int32); - System.Int32* _textures = default(System.Int32*); - System.Int32* _priorities = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.PrioritizeTexturesx(_n,_textures,_priorities); -} -static unsafe void Test_PrioritizeTexturesx_28807() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _textures = default(System.UInt32[]); - System.Int32[] _priorities = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.PrioritizeTexturesx(_n,_textures,_priorities); -} -static unsafe void Test_PrioritizeTexturesx_28808() { - System.Int32 _n = default(System.Int32); - System.UInt32 _textures = default(System.UInt32); - System.Int32 _priorities = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.PrioritizeTexturesx(_n,ref _textures,ref _priorities); -} -static unsafe void Test_PrioritizeTexturesx_28809() { - System.Int32 _n = default(System.Int32); - System.UInt32* _textures = default(System.UInt32*); - System.Int32* _priorities = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.PrioritizeTexturesx(_n,_textures,_priorities); -} -static unsafe void Test_QueryMatrixx_28810() { - System.Int32[] _mantissa = default(System.Int32[]); - System.Int32[] _exponent = default(System.Int32[]); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Oes.QueryMatrixx(_mantissa,_exponent); -} -static unsafe void Test_QueryMatrixx_28811() { - System.Int32 _mantissa = default(System.Int32); - System.Int32 _exponent = default(System.Int32); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Oes.QueryMatrixx(out _mantissa,out _exponent); -} -static unsafe void Test_QueryMatrixx_28812() { - System.Int32* _mantissa = default(System.Int32*); - System.Int32* _exponent = default(System.Int32*); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Oes.QueryMatrixx(_mantissa,_exponent); -} -static unsafe void Test_RasterPos2x_28813() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.RasterPos2x(_x,_y); -} -static unsafe void Test_RasterPos2x_28814() { - System.Int32[] _coords = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.RasterPos2x(_coords); -} -static unsafe void Test_RasterPos2x_28815() { - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.RasterPos2x(ref _coords); -} -static unsafe void Test_RasterPos2x_28816() { - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.RasterPos2x(_coords); -} -static unsafe void Test_RasterPos3x_28817() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.RasterPos3x(_x,_y,_z); -} -static unsafe void Test_RasterPos3x_28818() { - System.Int32[] _coords = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.RasterPos3x(_coords); -} -static unsafe void Test_RasterPos3x_28819() { - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.RasterPos3x(ref _coords); -} -static unsafe void Test_RasterPos3x_28820() { - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.RasterPos3x(_coords); -} -static unsafe void Test_RasterPos4x_28821() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - System.Int32 _w = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.RasterPos4x(_x,_y,_z,_w); -} -static unsafe void Test_RasterPos4x_28822() { - System.Int32[] _coords = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.RasterPos4x(_coords); -} -static unsafe void Test_RasterPos4x_28823() { - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.RasterPos4x(ref _coords); -} -static unsafe void Test_RasterPos4x_28824() { - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.RasterPos4x(_coords); -} -static unsafe void Test_Rectx_28825() { - System.Int32 _x1 = default(System.Int32); - System.Int32 _y1 = default(System.Int32); - System.Int32 _x2 = default(System.Int32); - System.Int32 _y2 = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.Rectx(_x1,_y1,_x2,_y2); -} -static unsafe void Test_Rectx_28826() { - System.Int32[] _v1 = default(System.Int32[]); - System.Int32[] _v2 = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.Rectx(_v1,_v2); -} -static unsafe void Test_Rectx_28827() { - System.Int32 _v1 = default(System.Int32); - System.Int32 _v2 = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.Rectx(ref _v1,ref _v2); -} -static unsafe void Test_Rectx_28828() { - System.Int32* _v1 = default(System.Int32*); - System.Int32* _v2 = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.Rectx(_v1,_v2); -} -static unsafe void Test_Rotatex_28829() { - System.Int32 _angle = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.Rotatex(_angle,_x,_y,_z); -} -static unsafe void Test_SampleCoverage_28830() { - System.Int32 _value = default(System.Int32); - System.Boolean _invert = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Oes.SampleCoverage(_value,_invert); -} -static unsafe void Test_SampleCoveragex_28831() { - System.Int32 _value = default(System.Int32); - System.Boolean _invert = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Oes.SampleCoveragex(_value,_invert); -} -static unsafe void Test_Scalex_28832() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.Scalex(_x,_y,_z); -} -static unsafe void Test_TexCoord1_28833() { - System.Byte _s = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord1(_s); -} -static unsafe void Test_TexCoord1_28834() { - System.SByte _s = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord1(_s); -} -static unsafe void Test_TexCoord1_28835() { - System.Byte* _coords = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord1(_coords); -} -static unsafe void Test_TexCoord1_28836() { - System.SByte* _coords = default(System.SByte*); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord1(_coords); -} -static unsafe void Test_TexCoord1x_28837() { - System.Int32 _s = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord1x(_s); -} -static unsafe void Test_TexCoord1x_28838() { - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord1x(_coords); -} -static unsafe void Test_TexCoord2_28839() { - System.Byte _s = default(System.Byte); - System.Byte _t = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord2(_s,_t); -} -static unsafe void Test_TexCoord2_28840() { - System.SByte _s = default(System.SByte); - System.SByte _t = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord2(_s,_t); -} -static unsafe void Test_TexCoord2_28841() { - System.Byte[] _coords = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord2(_coords); -} -static unsafe void Test_TexCoord2_28842() { - System.Byte _coords = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord2(ref _coords); -} -static unsafe void Test_TexCoord2_28843() { - System.Byte* _coords = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord2(_coords); -} -static unsafe void Test_TexCoord2_28844() { - System.SByte[] _coords = default(System.SByte[]); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord2(_coords); -} -static unsafe void Test_TexCoord2_28845() { - System.SByte _coords = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord2(ref _coords); -} -static unsafe void Test_TexCoord2_28846() { - System.SByte* _coords = default(System.SByte*); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord2(_coords); -} -static unsafe void Test_TexCoord2x_28847() { - System.Int32 _s = default(System.Int32); - System.Int32 _t = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord2x(_s,_t); -} -static unsafe void Test_TexCoord2x_28848() { - System.Int32[] _coords = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord2x(_coords); -} -static unsafe void Test_TexCoord2x_28849() { - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord2x(ref _coords); -} -static unsafe void Test_TexCoord2x_28850() { - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord2x(_coords); -} -static unsafe void Test_TexCoord3_28851() { - System.Byte _s = default(System.Byte); - System.Byte _t = default(System.Byte); - System.Byte _r = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord3(_s,_t,_r); -} -static unsafe void Test_TexCoord3_28852() { - System.SByte _s = default(System.SByte); - System.SByte _t = default(System.SByte); - System.SByte _r = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord3(_s,_t,_r); -} -static unsafe void Test_TexCoord3_28853() { - System.Byte[] _coords = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord3(_coords); -} -static unsafe void Test_TexCoord3_28854() { - System.Byte _coords = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord3(ref _coords); -} -static unsafe void Test_TexCoord3_28855() { - System.Byte* _coords = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord3(_coords); -} -static unsafe void Test_TexCoord3_28856() { - System.SByte[] _coords = default(System.SByte[]); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord3(_coords); -} -static unsafe void Test_TexCoord3_28857() { - System.SByte _coords = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord3(ref _coords); -} -static unsafe void Test_TexCoord3_28858() { - System.SByte* _coords = default(System.SByte*); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord3(_coords); -} -static unsafe void Test_TexCoord3x_28859() { - System.Int32 _s = default(System.Int32); - System.Int32 _t = default(System.Int32); - System.Int32 _r = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord3x(_s,_t,_r); -} -static unsafe void Test_TexCoord3x_28860() { - System.Int32[] _coords = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord3x(_coords); -} -static unsafe void Test_TexCoord3x_28861() { - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord3x(ref _coords); -} -static unsafe void Test_TexCoord3x_28862() { - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord3x(_coords); -} -static unsafe void Test_TexCoord4_28863() { - System.Byte _s = default(System.Byte); - System.Byte _t = default(System.Byte); - System.Byte _r = default(System.Byte); - System.Byte _q = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord4(_s,_t,_r,_q); -} -static unsafe void Test_TexCoord4_28864() { - System.SByte _s = default(System.SByte); - System.SByte _t = default(System.SByte); - System.SByte _r = default(System.SByte); - System.SByte _q = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord4(_s,_t,_r,_q); -} -static unsafe void Test_TexCoord4_28865() { - System.Byte[] _coords = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord4(_coords); -} -static unsafe void Test_TexCoord4_28866() { - System.Byte _coords = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord4(ref _coords); -} -static unsafe void Test_TexCoord4_28867() { - System.Byte* _coords = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord4(_coords); -} -static unsafe void Test_TexCoord4_28868() { - System.SByte[] _coords = default(System.SByte[]); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord4(_coords); -} -static unsafe void Test_TexCoord4_28869() { - System.SByte _coords = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord4(ref _coords); -} -static unsafe void Test_TexCoord4_28870() { - System.SByte* _coords = default(System.SByte*); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord4(_coords); -} -static unsafe void Test_TexCoord4x_28871() { - System.Int32 _s = default(System.Int32); - System.Int32 _t = default(System.Int32); - System.Int32 _r = default(System.Int32); - System.Int32 _q = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord4x(_s,_t,_r,_q); -} -static unsafe void Test_TexCoord4x_28872() { - System.Int32[] _coords = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord4x(_coords); -} -static unsafe void Test_TexCoord4x_28873() { - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord4x(ref _coords); -} -static unsafe void Test_TexCoord4x_28874() { - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.TexCoord4x(_coords); -} -static unsafe void Test_TexEnvx_28875() { - OpenTK.Graphics.OpenGL.OesFixedPoint _target = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.TexEnvx(_target,_pname,_param); -} -static unsafe void Test_TexEnvx_28876() { - OpenTK.Graphics.OpenGL.OesFixedPoint _target = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.TexEnvx(_target,_pname,_params); -} -static unsafe void Test_TexEnvx_28877() { - OpenTK.Graphics.OpenGL.OesFixedPoint _target = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.TexEnvx(_target,_pname,_params); -} -static unsafe void Test_TexGenx_28878() { - OpenTK.Graphics.OpenGL.OesFixedPoint _coord = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.TexGenx(_coord,_pname,_param); -} -static unsafe void Test_TexGenx_28879() { - OpenTK.Graphics.OpenGL.OesFixedPoint _coord = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.TexGenx(_coord,_pname,_params); -} -static unsafe void Test_TexGenx_28880() { - OpenTK.Graphics.OpenGL.OesFixedPoint _coord = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.TexGenx(_coord,_pname,_params); -} -static unsafe void Test_TexParameterx_28881() { - OpenTK.Graphics.OpenGL.OesFixedPoint _target = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.TexParameterx(_target,_pname,_param); -} -static unsafe void Test_TexParameterx_28882() { - OpenTK.Graphics.OpenGL.OesFixedPoint _target = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.TexParameterx(_target,_pname,_params); -} -static unsafe void Test_TexParameterx_28883() { - OpenTK.Graphics.OpenGL.OesFixedPoint _target = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - OpenTK.Graphics.OpenGL.OesFixedPoint _pname = default(OpenTK.Graphics.OpenGL.OesFixedPoint); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.TexParameterx(_target,_pname,_params); -} -static unsafe void Test_Translatex_28884() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.Translatex(_x,_y,_z); -} -static unsafe void Test_Vertex2_28885() { - System.Byte _x = default(System.Byte); - System.Byte _y = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Oes.Vertex2(_x,_y); -} -static unsafe void Test_Vertex2_28886() { - System.SByte _x = default(System.SByte); - System.SByte _y = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.Oes.Vertex2(_x,_y); -} -static unsafe void Test_Vertex2_28887() { - System.Byte[] _coords = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.Oes.Vertex2(_coords); -} -static unsafe void Test_Vertex2_28888() { - System.Byte _coords = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Oes.Vertex2(ref _coords); -} -static unsafe void Test_Vertex2_28889() { - System.Byte* _coords = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.Oes.Vertex2(_coords); -} -static unsafe void Test_Vertex2_28890() { - System.SByte[] _coords = default(System.SByte[]); - OpenTK.Graphics.OpenGL.GL.Oes.Vertex2(_coords); -} -static unsafe void Test_Vertex2_28891() { - System.SByte _coords = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.Oes.Vertex2(ref _coords); -} -static unsafe void Test_Vertex2_28892() { - System.SByte* _coords = default(System.SByte*); - OpenTK.Graphics.OpenGL.GL.Oes.Vertex2(_coords); -} -static unsafe void Test_Vertex2x_28893() { - System.Int32 _x = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.Vertex2x(_x); -} -static unsafe void Test_Vertex2x_28894() { - System.Int32[] _coords = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.Vertex2x(_coords); -} -static unsafe void Test_Vertex2x_28895() { - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.Vertex2x(_coords); -} -static unsafe void Test_Vertex3_28896() { - System.Byte _x = default(System.Byte); - System.Byte _y = default(System.Byte); - System.Byte _z = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Oes.Vertex3(_x,_y,_z); -} -static unsafe void Test_Vertex3_28897() { - System.SByte _x = default(System.SByte); - System.SByte _y = default(System.SByte); - System.SByte _z = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.Oes.Vertex3(_x,_y,_z); -} -static unsafe void Test_Vertex3_28898() { - System.Byte[] _coords = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.Oes.Vertex3(_coords); -} -static unsafe void Test_Vertex3_28899() { - System.Byte _coords = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Oes.Vertex3(ref _coords); -} -static unsafe void Test_Vertex3_28900() { - System.Byte* _coords = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.Oes.Vertex3(_coords); -} -static unsafe void Test_Vertex3_28901() { - System.SByte[] _coords = default(System.SByte[]); - OpenTK.Graphics.OpenGL.GL.Oes.Vertex3(_coords); -} -static unsafe void Test_Vertex3_28902() { - System.SByte _coords = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.Oes.Vertex3(ref _coords); -} -static unsafe void Test_Vertex3_28903() { - System.SByte* _coords = default(System.SByte*); - OpenTK.Graphics.OpenGL.GL.Oes.Vertex3(_coords); -} -static unsafe void Test_Vertex3x_28904() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.Vertex3x(_x,_y); -} -static unsafe void Test_Vertex3x_28905() { - System.Int32[] _coords = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.Vertex3x(_coords); -} -static unsafe void Test_Vertex3x_28906() { - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.Vertex3x(ref _coords); -} -static unsafe void Test_Vertex3x_28907() { - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.Vertex3x(_coords); -} -static unsafe void Test_Vertex4_28908() { - System.Byte _x = default(System.Byte); - System.Byte _y = default(System.Byte); - System.Byte _z = default(System.Byte); - System.Byte _w = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Oes.Vertex4(_x,_y,_z,_w); -} -static unsafe void Test_Vertex4_28909() { - System.SByte _x = default(System.SByte); - System.SByte _y = default(System.SByte); - System.SByte _z = default(System.SByte); - System.SByte _w = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.Oes.Vertex4(_x,_y,_z,_w); -} -static unsafe void Test_Vertex4_28910() { - System.Byte[] _coords = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.Oes.Vertex4(_coords); -} -static unsafe void Test_Vertex4_28911() { - System.Byte _coords = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Oes.Vertex4(ref _coords); -} -static unsafe void Test_Vertex4_28912() { - System.Byte* _coords = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.Oes.Vertex4(_coords); -} -static unsafe void Test_Vertex4_28913() { - System.SByte[] _coords = default(System.SByte[]); - OpenTK.Graphics.OpenGL.GL.Oes.Vertex4(_coords); -} -static unsafe void Test_Vertex4_28914() { - System.SByte _coords = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.Oes.Vertex4(ref _coords); -} -static unsafe void Test_Vertex4_28915() { - System.SByte* _coords = default(System.SByte*); - OpenTK.Graphics.OpenGL.GL.Oes.Vertex4(_coords); -} -static unsafe void Test_Vertex4x_28916() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.Vertex4x(_x,_y,_z); -} -static unsafe void Test_Vertex4x_28917() { - System.Int32[] _coords = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Oes.Vertex4x(_coords); -} -static unsafe void Test_Vertex4x_28918() { - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Oes.Vertex4x(ref _coords); -} -static unsafe void Test_Vertex4x_28919() { - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Oes.Vertex4x(_coords); -} -static unsafe void Test_Hint_28920() { - OpenTK.Graphics.OpenGL.PgiMiscHints _target = default(OpenTK.Graphics.OpenGL.PgiMiscHints); - System.Int32 _mode = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Pgi.Hint(_target,_mode); -} -static unsafe void Test_ColorTableParameter_28921() { - OpenTK.Graphics.OpenGL.ColorTableTargetSgi _target = default(OpenTK.Graphics.OpenGL.ColorTableTargetSgi); - OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi _pname = default(OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sgi.ColorTableParameter(_target,_pname,_params); -} -static unsafe void Test_ColorTableParameter_28922() { - OpenTK.Graphics.OpenGL.ColorTableTargetSgi _target = default(OpenTK.Graphics.OpenGL.ColorTableTargetSgi); - OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi _pname = default(OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sgi.ColorTableParameter(_target,_pname,ref _params); -} -static unsafe void Test_ColorTableParameter_28923() { - OpenTK.Graphics.OpenGL.ColorTableTargetSgi _target = default(OpenTK.Graphics.OpenGL.ColorTableTargetSgi); - OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi _pname = default(OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sgi.ColorTableParameter(_target,_pname,_params); -} -static unsafe void Test_ColorTableParameter_28924() { - OpenTK.Graphics.OpenGL.SgiColorTable _target = default(OpenTK.Graphics.OpenGL.SgiColorTable); - OpenTK.Graphics.OpenGL.SgiColorTable _pname = default(OpenTK.Graphics.OpenGL.SgiColorTable); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sgi.ColorTableParameter(_target,_pname,_params); -} -static unsafe void Test_ColorTableParameter_28925() { - OpenTK.Graphics.OpenGL.SgiColorTable _target = default(OpenTK.Graphics.OpenGL.SgiColorTable); - OpenTK.Graphics.OpenGL.SgiColorTable _pname = default(OpenTK.Graphics.OpenGL.SgiColorTable); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sgi.ColorTableParameter(_target,_pname,ref _params); -} -static unsafe void Test_ColorTableParameter_28926() { - OpenTK.Graphics.OpenGL.SgiColorTable _target = default(OpenTK.Graphics.OpenGL.SgiColorTable); - OpenTK.Graphics.OpenGL.SgiColorTable _pname = default(OpenTK.Graphics.OpenGL.SgiColorTable); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sgi.ColorTableParameter(_target,_pname,_params); -} -static unsafe void Test_ColorTableParameter_28927() { - OpenTK.Graphics.OpenGL.ColorTableTargetSgi _target = default(OpenTK.Graphics.OpenGL.ColorTableTargetSgi); - OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi _pname = default(OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Sgi.ColorTableParameter(_target,_pname,_params); -} -static unsafe void Test_ColorTableParameter_28928() { - OpenTK.Graphics.OpenGL.ColorTableTargetSgi _target = default(OpenTK.Graphics.OpenGL.ColorTableTargetSgi); - OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi _pname = default(OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Sgi.ColorTableParameter(_target,_pname,ref _params); -} -static unsafe void Test_ColorTableParameter_28929() { - OpenTK.Graphics.OpenGL.ColorTableTargetSgi _target = default(OpenTK.Graphics.OpenGL.ColorTableTargetSgi); - OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi _pname = default(OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Sgi.ColorTableParameter(_target,_pname,_params); -} -static unsafe void Test_ColorTableParameter_28930() { - OpenTK.Graphics.OpenGL.SgiColorTable _target = default(OpenTK.Graphics.OpenGL.SgiColorTable); - OpenTK.Graphics.OpenGL.SgiColorTable _pname = default(OpenTK.Graphics.OpenGL.SgiColorTable); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Sgi.ColorTableParameter(_target,_pname,_params); -} -static unsafe void Test_ColorTableParameter_28931() { - OpenTK.Graphics.OpenGL.SgiColorTable _target = default(OpenTK.Graphics.OpenGL.SgiColorTable); - OpenTK.Graphics.OpenGL.SgiColorTable _pname = default(OpenTK.Graphics.OpenGL.SgiColorTable); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Sgi.ColorTableParameter(_target,_pname,ref _params); -} -static unsafe void Test_ColorTableParameter_28932() { - OpenTK.Graphics.OpenGL.SgiColorTable _target = default(OpenTK.Graphics.OpenGL.SgiColorTable); - OpenTK.Graphics.OpenGL.SgiColorTable _pname = default(OpenTK.Graphics.OpenGL.SgiColorTable); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Sgi.ColorTableParameter(_target,_pname,_params); -} -static unsafe void Test_ColorTable_28933() { - OpenTK.Graphics.OpenGL.ColorTableTargetSgi _target = default(OpenTK.Graphics.OpenGL.ColorTableTargetSgi); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _table = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Sgi.ColorTable(_target,_internalformat,_width,_format,_type,_table); -} -static unsafe void Test_ColorTable_28934() { - OpenTK.Graphics.OpenGL.ColorTableTargetSgi _target = default(OpenTK.Graphics.OpenGL.ColorTableTargetSgi); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _table = default(int[]); - OpenTK.Graphics.OpenGL.GL.Sgi.ColorTable(_target,_internalformat,_width,_format,_type,_table); -} -static unsafe void Test_ColorTable_28935() { - OpenTK.Graphics.OpenGL.ColorTableTargetSgi _target = default(OpenTK.Graphics.OpenGL.ColorTableTargetSgi); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _table = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Sgi.ColorTable(_target,_internalformat,_width,_format,_type,_table); -} -static unsafe void Test_ColorTable_28936() { - OpenTK.Graphics.OpenGL.ColorTableTargetSgi _target = default(OpenTK.Graphics.OpenGL.ColorTableTargetSgi); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _table = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Sgi.ColorTable(_target,_internalformat,_width,_format,_type,_table); -} -static unsafe void Test_ColorTable_28937() { - OpenTK.Graphics.OpenGL.ColorTableTargetSgi _target = default(OpenTK.Graphics.OpenGL.ColorTableTargetSgi); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _table = default(int); - OpenTK.Graphics.OpenGL.GL.Sgi.ColorTable(_target,_internalformat,_width,_format,_type,ref _table); -} -static unsafe void Test_ColorTable_28938() { - OpenTK.Graphics.OpenGL.SgiColorTable _target = default(OpenTK.Graphics.OpenGL.SgiColorTable); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _table = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Sgi.ColorTable(_target,_internalformat,_width,_format,_type,_table); -} -static unsafe void Test_ColorTable_28939() { - OpenTK.Graphics.OpenGL.SgiColorTable _target = default(OpenTK.Graphics.OpenGL.SgiColorTable); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _table = default(int[]); - OpenTK.Graphics.OpenGL.GL.Sgi.ColorTable(_target,_internalformat,_width,_format,_type,_table); -} -static unsafe void Test_ColorTable_28940() { - OpenTK.Graphics.OpenGL.SgiColorTable _target = default(OpenTK.Graphics.OpenGL.SgiColorTable); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _table = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Sgi.ColorTable(_target,_internalformat,_width,_format,_type,_table); -} -static unsafe void Test_ColorTable_28941() { - OpenTK.Graphics.OpenGL.SgiColorTable _target = default(OpenTK.Graphics.OpenGL.SgiColorTable); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _table = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Sgi.ColorTable(_target,_internalformat,_width,_format,_type,_table); -} -static unsafe void Test_ColorTable_28942() { - OpenTK.Graphics.OpenGL.SgiColorTable _target = default(OpenTK.Graphics.OpenGL.SgiColorTable); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _table = default(int); - OpenTK.Graphics.OpenGL.GL.Sgi.ColorTable(_target,_internalformat,_width,_format,_type,ref _table); -} -static unsafe void Test_CopyColorTable_28943() { - OpenTK.Graphics.OpenGL.ColorTableTargetSgi _target = default(OpenTK.Graphics.OpenGL.ColorTableTargetSgi); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Sgi.CopyColorTable(_target,_internalformat,_x,_y,_width); -} -static unsafe void Test_CopyColorTable_28944() { - OpenTK.Graphics.OpenGL.SgiColorTable _target = default(OpenTK.Graphics.OpenGL.SgiColorTable); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Sgi.CopyColorTable(_target,_internalformat,_x,_y,_width); -} -static unsafe void Test_GetColorTableParameter_28945() { - OpenTK.Graphics.OpenGL.ColorTableTargetSgi _target = default(OpenTK.Graphics.OpenGL.ColorTableTargetSgi); - OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi _pname = default(OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sgi.GetColorTableParameter(_target,_pname,_params); -} -static unsafe void Test_GetColorTableParameter_28946() { - OpenTK.Graphics.OpenGL.ColorTableTargetSgi _target = default(OpenTK.Graphics.OpenGL.ColorTableTargetSgi); - OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi _pname = default(OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sgi.GetColorTableParameter(_target,_pname,out _params); -} -static unsafe void Test_GetColorTableParameter_28947() { - OpenTK.Graphics.OpenGL.ColorTableTargetSgi _target = default(OpenTK.Graphics.OpenGL.ColorTableTargetSgi); - OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi _pname = default(OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sgi.GetColorTableParameter(_target,_pname,_params); -} -static unsafe void Test_GetColorTableParameter_28948() { - OpenTK.Graphics.OpenGL.SgiColorTable _target = default(OpenTK.Graphics.OpenGL.SgiColorTable); - OpenTK.Graphics.OpenGL.SgiColorTable _pname = default(OpenTK.Graphics.OpenGL.SgiColorTable); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sgi.GetColorTableParameter(_target,_pname,_params); -} -static unsafe void Test_GetColorTableParameter_28949() { - OpenTK.Graphics.OpenGL.SgiColorTable _target = default(OpenTK.Graphics.OpenGL.SgiColorTable); - OpenTK.Graphics.OpenGL.SgiColorTable _pname = default(OpenTK.Graphics.OpenGL.SgiColorTable); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sgi.GetColorTableParameter(_target,_pname,out _params); -} -static unsafe void Test_GetColorTableParameter_28950() { - OpenTK.Graphics.OpenGL.SgiColorTable _target = default(OpenTK.Graphics.OpenGL.SgiColorTable); - OpenTK.Graphics.OpenGL.SgiColorTable _pname = default(OpenTK.Graphics.OpenGL.SgiColorTable); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sgi.GetColorTableParameter(_target,_pname,_params); -} -static unsafe void Test_GetColorTableParameter_28951() { - OpenTK.Graphics.OpenGL.ColorTableTargetSgi _target = default(OpenTK.Graphics.OpenGL.ColorTableTargetSgi); - OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi _pname = default(OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Sgi.GetColorTableParameter(_target,_pname,_params); -} -static unsafe void Test_GetColorTableParameter_28952() { - OpenTK.Graphics.OpenGL.ColorTableTargetSgi _target = default(OpenTK.Graphics.OpenGL.ColorTableTargetSgi); - OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi _pname = default(OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Sgi.GetColorTableParameter(_target,_pname,out _params); -} -static unsafe void Test_GetColorTableParameter_28953() { - OpenTK.Graphics.OpenGL.ColorTableTargetSgi _target = default(OpenTK.Graphics.OpenGL.ColorTableTargetSgi); - OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi _pname = default(OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Sgi.GetColorTableParameter(_target,_pname,_params); -} -static unsafe void Test_GetColorTableParameter_28954() { - OpenTK.Graphics.OpenGL.SgiColorTable _target = default(OpenTK.Graphics.OpenGL.SgiColorTable); - OpenTK.Graphics.OpenGL.SgiColorTable _pname = default(OpenTK.Graphics.OpenGL.SgiColorTable); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Sgi.GetColorTableParameter(_target,_pname,_params); -} -static unsafe void Test_GetColorTableParameter_28955() { - OpenTK.Graphics.OpenGL.SgiColorTable _target = default(OpenTK.Graphics.OpenGL.SgiColorTable); - OpenTK.Graphics.OpenGL.SgiColorTable _pname = default(OpenTK.Graphics.OpenGL.SgiColorTable); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Sgi.GetColorTableParameter(_target,_pname,out _params); -} -static unsafe void Test_GetColorTableParameter_28956() { - OpenTK.Graphics.OpenGL.SgiColorTable _target = default(OpenTK.Graphics.OpenGL.SgiColorTable); - OpenTK.Graphics.OpenGL.SgiColorTable _pname = default(OpenTK.Graphics.OpenGL.SgiColorTable); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Sgi.GetColorTableParameter(_target,_pname,_params); -} -static unsafe void Test_GetColorTable_28957() { - OpenTK.Graphics.OpenGL.ColorTableTargetSgi _target = default(OpenTK.Graphics.OpenGL.ColorTableTargetSgi); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _table = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Sgi.GetColorTable(_target,_format,_type,_table); -} -static unsafe void Test_GetColorTable_28958() { - OpenTK.Graphics.OpenGL.ColorTableTargetSgi _target = default(OpenTK.Graphics.OpenGL.ColorTableTargetSgi); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _table = default(int[]); - OpenTK.Graphics.OpenGL.GL.Sgi.GetColorTable(_target,_format,_type,_table); -} -static unsafe void Test_GetColorTable_28959() { - OpenTK.Graphics.OpenGL.ColorTableTargetSgi _target = default(OpenTK.Graphics.OpenGL.ColorTableTargetSgi); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _table = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Sgi.GetColorTable(_target,_format,_type,_table); -} -static unsafe void Test_GetColorTable_28960() { - OpenTK.Graphics.OpenGL.ColorTableTargetSgi _target = default(OpenTK.Graphics.OpenGL.ColorTableTargetSgi); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _table = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Sgi.GetColorTable(_target,_format,_type,_table); -} -static unsafe void Test_GetColorTable_28961() { - OpenTK.Graphics.OpenGL.ColorTableTargetSgi _target = default(OpenTK.Graphics.OpenGL.ColorTableTargetSgi); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _table = default(int); - OpenTK.Graphics.OpenGL.GL.Sgi.GetColorTable(_target,_format,_type,ref _table); -} -static unsafe void Test_GetColorTable_28962() { - OpenTK.Graphics.OpenGL.SgiColorTable _target = default(OpenTK.Graphics.OpenGL.SgiColorTable); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _table = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Sgi.GetColorTable(_target,_format,_type,_table); -} -static unsafe void Test_GetColorTable_28963() { - OpenTK.Graphics.OpenGL.SgiColorTable _target = default(OpenTK.Graphics.OpenGL.SgiColorTable); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _table = default(int[]); - OpenTK.Graphics.OpenGL.GL.Sgi.GetColorTable(_target,_format,_type,_table); -} -static unsafe void Test_GetColorTable_28964() { - OpenTK.Graphics.OpenGL.SgiColorTable _target = default(OpenTK.Graphics.OpenGL.SgiColorTable); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _table = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Sgi.GetColorTable(_target,_format,_type,_table); -} -static unsafe void Test_GetColorTable_28965() { - OpenTK.Graphics.OpenGL.SgiColorTable _target = default(OpenTK.Graphics.OpenGL.SgiColorTable); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _table = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Sgi.GetColorTable(_target,_format,_type,_table); -} -static unsafe void Test_GetColorTable_28966() { - OpenTK.Graphics.OpenGL.SgiColorTable _target = default(OpenTK.Graphics.OpenGL.SgiColorTable); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _table = default(int); - OpenTK.Graphics.OpenGL.GL.Sgi.GetColorTable(_target,_format,_type,ref _table); -} -static unsafe void Test_DetailTexFunc_28967() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _n = default(System.Int32); - System.Single[] _points = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sgis.DetailTexFunc(_target,_n,_points); -} -static unsafe void Test_DetailTexFunc_28968() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _n = default(System.Int32); - System.Single _points = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sgis.DetailTexFunc(_target,_n,ref _points); -} -static unsafe void Test_DetailTexFunc_28969() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _n = default(System.Int32); - System.Single* _points = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sgis.DetailTexFunc(_target,_n,_points); -} -static unsafe void Test_FogFunc_28970() { - System.Int32 _n = default(System.Int32); - System.Single[] _points = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sgis.FogFunc(_n,_points); -} -static unsafe void Test_FogFunc_28971() { - System.Int32 _n = default(System.Int32); - System.Single _points = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sgis.FogFunc(_n,ref _points); -} -static unsafe void Test_FogFunc_28972() { - System.Int32 _n = default(System.Int32); - System.Single* _points = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sgis.FogFunc(_n,_points); -} -static unsafe void Test_GetDetailTexFunc_28973() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Single r = OpenTK.Graphics.OpenGL.GL.Sgis.GetDetailTexFunc(_target); -} -static unsafe void Test_GetDetailTexFunc_28974() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Single[] _points = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sgis.GetDetailTexFunc(_target,_points); -} -static unsafe void Test_GetDetailTexFunc_28975() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Single _points = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sgis.GetDetailTexFunc(_target,out _points); -} -static unsafe void Test_GetDetailTexFunc_28976() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Single* _points = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sgis.GetDetailTexFunc(_target,_points); -} -static unsafe void Test_GetFogFunc_28977() { - System.Single r = OpenTK.Graphics.OpenGL.GL.Sgis.GetFogFunc(); -} -static unsafe void Test_GetFogFunc_28978() { - System.Single[] _points = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sgis.GetFogFunc(_points); -} -static unsafe void Test_GetFogFunc_28979() { - System.Single _points = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sgis.GetFogFunc(out _points); -} -static unsafe void Test_GetFogFunc_28980() { - System.Single* _points = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sgis.GetFogFunc(_points); -} -static unsafe void Test_GetPixelTexGenParameter_28981() { - OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis _pname = default(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis); - System.Single r = OpenTK.Graphics.OpenGL.GL.Sgis.GetPixelTexGenParameter(_pname); -} -static unsafe void Test_GetPixelTexGenParameter_28982() { - OpenTK.Graphics.OpenGL.SgisPixelTexture _pname = default(OpenTK.Graphics.OpenGL.SgisPixelTexture); - System.Single r = OpenTK.Graphics.OpenGL.GL.Sgis.GetPixelTexGenParameter(_pname); -} -static unsafe void Test_GetPixelTexGenParameter_28983() { - OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis _pname = default(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sgis.GetPixelTexGenParameter(_pname,_params); -} -static unsafe void Test_GetPixelTexGenParameter_28984() { - OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis _pname = default(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sgis.GetPixelTexGenParameter(_pname,out _params); -} -static unsafe void Test_GetPixelTexGenParameter_28985() { - OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis _pname = default(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sgis.GetPixelTexGenParameter(_pname,_params); -} -static unsafe void Test_GetPixelTexGenParameter_28986() { - OpenTK.Graphics.OpenGL.SgisPixelTexture _pname = default(OpenTK.Graphics.OpenGL.SgisPixelTexture); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sgis.GetPixelTexGenParameter(_pname,_params); -} -static unsafe void Test_GetPixelTexGenParameter_28987() { - OpenTK.Graphics.OpenGL.SgisPixelTexture _pname = default(OpenTK.Graphics.OpenGL.SgisPixelTexture); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sgis.GetPixelTexGenParameter(_pname,out _params); -} -static unsafe void Test_GetPixelTexGenParameter_28988() { - OpenTK.Graphics.OpenGL.SgisPixelTexture _pname = default(OpenTK.Graphics.OpenGL.SgisPixelTexture); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sgis.GetPixelTexGenParameter(_pname,_params); -} -static unsafe void Test_GetPixelTexGenParameter_28989() { - OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis _pname = default(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Sgis.GetPixelTexGenParameter(_pname,_params); -} -static unsafe void Test_GetPixelTexGenParameter_28990() { - OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis _pname = default(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Sgis.GetPixelTexGenParameter(_pname,out _params); -} -static unsafe void Test_GetPixelTexGenParameter_28991() { - OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis _pname = default(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Sgis.GetPixelTexGenParameter(_pname,_params); -} -static unsafe void Test_GetPixelTexGenParameter_28992() { - OpenTK.Graphics.OpenGL.SgisPixelTexture _pname = default(OpenTK.Graphics.OpenGL.SgisPixelTexture); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Sgis.GetPixelTexGenParameter(_pname,_params); -} -static unsafe void Test_GetPixelTexGenParameter_28993() { - OpenTK.Graphics.OpenGL.SgisPixelTexture _pname = default(OpenTK.Graphics.OpenGL.SgisPixelTexture); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Sgis.GetPixelTexGenParameter(_pname,out _params); -} -static unsafe void Test_GetPixelTexGenParameter_28994() { - OpenTK.Graphics.OpenGL.SgisPixelTexture _pname = default(OpenTK.Graphics.OpenGL.SgisPixelTexture); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Sgis.GetPixelTexGenParameter(_pname,_params); -} -static unsafe void Test_GetSharpenTexFunc_28995() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Single r = OpenTK.Graphics.OpenGL.GL.Sgis.GetSharpenTexFunc(_target); -} -static unsafe void Test_GetSharpenTexFunc_28996() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Single[] _points = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sgis.GetSharpenTexFunc(_target,_points); -} -static unsafe void Test_GetSharpenTexFunc_28997() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Single _points = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sgis.GetSharpenTexFunc(_target,out _points); -} -static unsafe void Test_GetSharpenTexFunc_28998() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Single* _points = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sgis.GetSharpenTexFunc(_target,_points); -} -static unsafe void Test_GetTexFilterFunc_28999() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.SgisTextureFilter4 _filter = default(OpenTK.Graphics.OpenGL.SgisTextureFilter4); - System.Single[] _weights = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sgis.GetTexFilterFunc(_target,_filter,_weights); -} -static unsafe void Test_GetTexFilterFunc_29000() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.SgisTextureFilter4 _filter = default(OpenTK.Graphics.OpenGL.SgisTextureFilter4); - System.Single _weights = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sgis.GetTexFilterFunc(_target,_filter,out _weights); -} -static unsafe void Test_GetTexFilterFunc_29001() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.SgisTextureFilter4 _filter = default(OpenTK.Graphics.OpenGL.SgisTextureFilter4); - System.Single* _weights = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sgis.GetTexFilterFunc(_target,_filter,_weights); -} -static unsafe void Test_PixelTexGenParameter_29002() { - OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis _pname = default(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sgis.PixelTexGenParameter(_pname,_param); -} -static unsafe void Test_PixelTexGenParameter_29003() { - OpenTK.Graphics.OpenGL.SgisPixelTexture _pname = default(OpenTK.Graphics.OpenGL.SgisPixelTexture); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sgis.PixelTexGenParameter(_pname,_param); -} -static unsafe void Test_PixelTexGenParameter_29004() { - OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis _pname = default(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sgis.PixelTexGenParameter(_pname,_params); -} -static unsafe void Test_PixelTexGenParameter_29005() { - OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis _pname = default(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sgis.PixelTexGenParameter(_pname,_params); -} -static unsafe void Test_PixelTexGenParameter_29006() { - OpenTK.Graphics.OpenGL.SgisPixelTexture _pname = default(OpenTK.Graphics.OpenGL.SgisPixelTexture); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sgis.PixelTexGenParameter(_pname,_params); -} -static unsafe void Test_PixelTexGenParameter_29007() { - OpenTK.Graphics.OpenGL.SgisPixelTexture _pname = default(OpenTK.Graphics.OpenGL.SgisPixelTexture); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sgis.PixelTexGenParameter(_pname,_params); -} -static unsafe void Test_PixelTexGenParameter_29008() { - OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis _pname = default(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Sgis.PixelTexGenParameter(_pname,_param); -} -static unsafe void Test_PixelTexGenParameter_29009() { - OpenTK.Graphics.OpenGL.SgisPixelTexture _pname = default(OpenTK.Graphics.OpenGL.SgisPixelTexture); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Sgis.PixelTexGenParameter(_pname,_param); -} -static unsafe void Test_PixelTexGenParameter_29010() { - OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis _pname = default(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Sgis.PixelTexGenParameter(_pname,_params); -} -static unsafe void Test_PixelTexGenParameter_29011() { - OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis _pname = default(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Sgis.PixelTexGenParameter(_pname,_params); -} -static unsafe void Test_PixelTexGenParameter_29012() { - OpenTK.Graphics.OpenGL.SgisPixelTexture _pname = default(OpenTK.Graphics.OpenGL.SgisPixelTexture); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Sgis.PixelTexGenParameter(_pname,_params); -} -static unsafe void Test_PixelTexGenParameter_29013() { - OpenTK.Graphics.OpenGL.SgisPixelTexture _pname = default(OpenTK.Graphics.OpenGL.SgisPixelTexture); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Sgis.PixelTexGenParameter(_pname,_params); -} -static unsafe void Test_PointParameter_29014() { - OpenTK.Graphics.OpenGL.SgisPointParameters _pname = default(OpenTK.Graphics.OpenGL.SgisPointParameters); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sgis.PointParameter(_pname,_param); -} -static unsafe void Test_PointParameter_29015() { - OpenTK.Graphics.OpenGL.SgisPointParameters _pname = default(OpenTK.Graphics.OpenGL.SgisPointParameters); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sgis.PointParameter(_pname,_params); -} -static unsafe void Test_PointParameter_29016() { - OpenTK.Graphics.OpenGL.SgisPointParameters _pname = default(OpenTK.Graphics.OpenGL.SgisPointParameters); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sgis.PointParameter(_pname,_params); -} -static unsafe void Test_SampleMask_29017() { - System.Single _value = default(System.Single); - System.Boolean _invert = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Sgis.SampleMask(_value,_invert); -} -static unsafe void Test_SamplePattern_29018() { - OpenTK.Graphics.OpenGL.SamplePatternSgis _pattern = default(OpenTK.Graphics.OpenGL.SamplePatternSgis); - OpenTK.Graphics.OpenGL.GL.Sgis.SamplePattern(_pattern); -} -static unsafe void Test_SamplePattern_29019() { - OpenTK.Graphics.OpenGL.SgisMultisample _pattern = default(OpenTK.Graphics.OpenGL.SgisMultisample); - OpenTK.Graphics.OpenGL.GL.Sgis.SamplePattern(_pattern); -} -static unsafe void Test_SharpenTexFunc_29020() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _n = default(System.Int32); - System.Single[] _points = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sgis.SharpenTexFunc(_target,_n,_points); -} -static unsafe void Test_SharpenTexFunc_29021() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _n = default(System.Int32); - System.Single _points = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sgis.SharpenTexFunc(_target,_n,ref _points); -} -static unsafe void Test_SharpenTexFunc_29022() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _n = default(System.Int32); - System.Single* _points = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sgis.SharpenTexFunc(_target,_n,_points); -} -static unsafe void Test_TexFilterFunc_29023() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.SgisTextureFilter4 _filter = default(OpenTK.Graphics.OpenGL.SgisTextureFilter4); - System.Int32 _n = default(System.Int32); - System.Single[] _weights = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sgis.TexFilterFunc(_target,_filter,_n,_weights); -} -static unsafe void Test_TexFilterFunc_29024() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.SgisTextureFilter4 _filter = default(OpenTK.Graphics.OpenGL.SgisTextureFilter4); - System.Int32 _n = default(System.Int32); - System.Single _weights = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sgis.TexFilterFunc(_target,_filter,_n,ref _weights); -} -static unsafe void Test_TexFilterFunc_29025() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - OpenTK.Graphics.OpenGL.SgisTextureFilter4 _filter = default(OpenTK.Graphics.OpenGL.SgisTextureFilter4); - System.Int32 _n = default(System.Int32); - System.Single* _weights = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sgis.TexFilterFunc(_target,_filter,_n,_weights); -} -static unsafe void Test_TexImage4D_29026() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _size4d = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Sgis.TexImage4D(_target,_level,_internalformat,_width,_height,_depth,_size4d,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage4D_29027() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _size4d = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.Sgis.TexImage4D(_target,_level,_internalformat,_width,_height,_depth,_size4d,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage4D_29028() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _size4d = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Sgis.TexImage4D(_target,_level,_internalformat,_width,_height,_depth,_size4d,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage4D_29029() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _size4d = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Sgis.TexImage4D(_target,_level,_internalformat,_width,_height,_depth,_size4d,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage4D_29030() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _size4d = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.Sgis.TexImage4D(_target,_level,_internalformat,_width,_height,_depth,_size4d,_border,_format,_type,ref _pixels); -} -static unsafe void Test_TexSubImage4D_29031() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _woffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _size4d = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Sgis.TexSubImage4D(_target,_level,_xoffset,_yoffset,_zoffset,_woffset,_width,_height,_depth,_size4d,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage4D_29032() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _woffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _size4d = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL.GL.Sgis.TexSubImage4D(_target,_level,_xoffset,_yoffset,_zoffset,_woffset,_width,_height,_depth,_size4d,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage4D_29033() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _woffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _size4d = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Sgis.TexSubImage4D(_target,_level,_xoffset,_yoffset,_zoffset,_woffset,_width,_height,_depth,_size4d,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage4D_29034() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _woffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _size4d = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Sgis.TexSubImage4D(_target,_level,_xoffset,_yoffset,_zoffset,_woffset,_width,_height,_depth,_size4d,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage4D_29035() { - OpenTK.Graphics.OpenGL.TextureTarget _target = default(OpenTK.Graphics.OpenGL.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _woffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _size4d = default(System.Int32); - OpenTK.Graphics.OpenGL.PixelFormat _format = default(OpenTK.Graphics.OpenGL.PixelFormat); - OpenTK.Graphics.OpenGL.PixelType _type = default(OpenTK.Graphics.OpenGL.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL.GL.Sgis.TexSubImage4D(_target,_level,_xoffset,_yoffset,_zoffset,_woffset,_width,_height,_depth,_size4d,_format,_type,ref _pixels); -} -static unsafe void Test_TextureColorMask_29036() { - System.Boolean _red = default(System.Boolean); - System.Boolean _green = default(System.Boolean); - System.Boolean _blue = default(System.Boolean); - System.Boolean _alpha = default(System.Boolean); - OpenTK.Graphics.OpenGL.GL.Sgis.TextureColorMask(_red,_green,_blue,_alpha); -} -static unsafe void Test_AsyncMarker_29037() { - System.Int32 _marker = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Sgix.AsyncMarker(_marker); -} -static unsafe void Test_AsyncMarker_29038() { - System.UInt32 _marker = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Sgix.AsyncMarker(_marker); -} -static unsafe void Test_DeformationMap3_29039() { - OpenTK.Graphics.OpenGL.FfdTargetSgix _target = default(OpenTK.Graphics.OpenGL.FfdTargetSgix); - System.Double _u1 = default(System.Double); - System.Double _u2 = default(System.Double); - System.Int32 _ustride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Double _v1 = default(System.Double); - System.Double _v2 = default(System.Double); - System.Int32 _vstride = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Double _w1 = default(System.Double); - System.Double _w2 = default(System.Double); - System.Int32 _wstride = default(System.Int32); - System.Int32 _worder = default(System.Int32); - System.Double[] _points = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Sgix.DeformationMap3(_target,_u1,_u2,_ustride,_uorder,_v1,_v2,_vstride,_vorder,_w1,_w2,_wstride,_worder,_points); -} -static unsafe void Test_DeformationMap3_29040() { - OpenTK.Graphics.OpenGL.FfdTargetSgix _target = default(OpenTK.Graphics.OpenGL.FfdTargetSgix); - System.Double _u1 = default(System.Double); - System.Double _u2 = default(System.Double); - System.Int32 _ustride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Double _v1 = default(System.Double); - System.Double _v2 = default(System.Double); - System.Int32 _vstride = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Double _w1 = default(System.Double); - System.Double _w2 = default(System.Double); - System.Int32 _wstride = default(System.Int32); - System.Int32 _worder = default(System.Int32); - System.Double _points = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Sgix.DeformationMap3(_target,_u1,_u2,_ustride,_uorder,_v1,_v2,_vstride,_vorder,_w1,_w2,_wstride,_worder,ref _points); -} -static unsafe void Test_DeformationMap3_29041() { - OpenTK.Graphics.OpenGL.FfdTargetSgix _target = default(OpenTK.Graphics.OpenGL.FfdTargetSgix); - System.Double _u1 = default(System.Double); - System.Double _u2 = default(System.Double); - System.Int32 _ustride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Double _v1 = default(System.Double); - System.Double _v2 = default(System.Double); - System.Int32 _vstride = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Double _w1 = default(System.Double); - System.Double _w2 = default(System.Double); - System.Int32 _wstride = default(System.Int32); - System.Int32 _worder = default(System.Int32); - System.Double* _points = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Sgix.DeformationMap3(_target,_u1,_u2,_ustride,_uorder,_v1,_v2,_vstride,_vorder,_w1,_w2,_wstride,_worder,_points); -} -static unsafe void Test_DeformationMap3_29042() { - OpenTK.Graphics.OpenGL.SgixPolynomialFfd _target = default(OpenTK.Graphics.OpenGL.SgixPolynomialFfd); - System.Double _u1 = default(System.Double); - System.Double _u2 = default(System.Double); - System.Int32 _ustride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Double _v1 = default(System.Double); - System.Double _v2 = default(System.Double); - System.Int32 _vstride = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Double _w1 = default(System.Double); - System.Double _w2 = default(System.Double); - System.Int32 _wstride = default(System.Int32); - System.Int32 _worder = default(System.Int32); - System.Double[] _points = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Sgix.DeformationMap3(_target,_u1,_u2,_ustride,_uorder,_v1,_v2,_vstride,_vorder,_w1,_w2,_wstride,_worder,_points); -} -static unsafe void Test_DeformationMap3_29043() { - OpenTK.Graphics.OpenGL.SgixPolynomialFfd _target = default(OpenTK.Graphics.OpenGL.SgixPolynomialFfd); - System.Double _u1 = default(System.Double); - System.Double _u2 = default(System.Double); - System.Int32 _ustride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Double _v1 = default(System.Double); - System.Double _v2 = default(System.Double); - System.Int32 _vstride = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Double _w1 = default(System.Double); - System.Double _w2 = default(System.Double); - System.Int32 _wstride = default(System.Int32); - System.Int32 _worder = default(System.Int32); - System.Double _points = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Sgix.DeformationMap3(_target,_u1,_u2,_ustride,_uorder,_v1,_v2,_vstride,_vorder,_w1,_w2,_wstride,_worder,ref _points); -} -static unsafe void Test_DeformationMap3_29044() { - OpenTK.Graphics.OpenGL.SgixPolynomialFfd _target = default(OpenTK.Graphics.OpenGL.SgixPolynomialFfd); - System.Double _u1 = default(System.Double); - System.Double _u2 = default(System.Double); - System.Int32 _ustride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Double _v1 = default(System.Double); - System.Double _v2 = default(System.Double); - System.Int32 _vstride = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Double _w1 = default(System.Double); - System.Double _w2 = default(System.Double); - System.Int32 _wstride = default(System.Int32); - System.Int32 _worder = default(System.Int32); - System.Double* _points = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Sgix.DeformationMap3(_target,_u1,_u2,_ustride,_uorder,_v1,_v2,_vstride,_vorder,_w1,_w2,_wstride,_worder,_points); -} -static unsafe void Test_DeformationMap3_29045() { - OpenTK.Graphics.OpenGL.FfdTargetSgix _target = default(OpenTK.Graphics.OpenGL.FfdTargetSgix); - System.Single _u1 = default(System.Single); - System.Single _u2 = default(System.Single); - System.Int32 _ustride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - System.Int32 _vstride = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Single _w1 = default(System.Single); - System.Single _w2 = default(System.Single); - System.Int32 _wstride = default(System.Int32); - System.Int32 _worder = default(System.Int32); - System.Single[] _points = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sgix.DeformationMap3(_target,_u1,_u2,_ustride,_uorder,_v1,_v2,_vstride,_vorder,_w1,_w2,_wstride,_worder,_points); -} -static unsafe void Test_DeformationMap3_29046() { - OpenTK.Graphics.OpenGL.FfdTargetSgix _target = default(OpenTK.Graphics.OpenGL.FfdTargetSgix); - System.Single _u1 = default(System.Single); - System.Single _u2 = default(System.Single); - System.Int32 _ustride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - System.Int32 _vstride = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Single _w1 = default(System.Single); - System.Single _w2 = default(System.Single); - System.Int32 _wstride = default(System.Int32); - System.Int32 _worder = default(System.Int32); - System.Single _points = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sgix.DeformationMap3(_target,_u1,_u2,_ustride,_uorder,_v1,_v2,_vstride,_vorder,_w1,_w2,_wstride,_worder,ref _points); -} -static unsafe void Test_DeformationMap3_29047() { - OpenTK.Graphics.OpenGL.FfdTargetSgix _target = default(OpenTK.Graphics.OpenGL.FfdTargetSgix); - System.Single _u1 = default(System.Single); - System.Single _u2 = default(System.Single); - System.Int32 _ustride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - System.Int32 _vstride = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Single _w1 = default(System.Single); - System.Single _w2 = default(System.Single); - System.Int32 _wstride = default(System.Int32); - System.Int32 _worder = default(System.Int32); - System.Single* _points = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sgix.DeformationMap3(_target,_u1,_u2,_ustride,_uorder,_v1,_v2,_vstride,_vorder,_w1,_w2,_wstride,_worder,_points); -} -static unsafe void Test_DeformationMap3_29048() { - OpenTK.Graphics.OpenGL.SgixPolynomialFfd _target = default(OpenTK.Graphics.OpenGL.SgixPolynomialFfd); - System.Single _u1 = default(System.Single); - System.Single _u2 = default(System.Single); - System.Int32 _ustride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - System.Int32 _vstride = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Single _w1 = default(System.Single); - System.Single _w2 = default(System.Single); - System.Int32 _wstride = default(System.Int32); - System.Int32 _worder = default(System.Int32); - System.Single[] _points = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sgix.DeformationMap3(_target,_u1,_u2,_ustride,_uorder,_v1,_v2,_vstride,_vorder,_w1,_w2,_wstride,_worder,_points); -} -static unsafe void Test_DeformationMap3_29049() { - OpenTK.Graphics.OpenGL.SgixPolynomialFfd _target = default(OpenTK.Graphics.OpenGL.SgixPolynomialFfd); - System.Single _u1 = default(System.Single); - System.Single _u2 = default(System.Single); - System.Int32 _ustride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - System.Int32 _vstride = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Single _w1 = default(System.Single); - System.Single _w2 = default(System.Single); - System.Int32 _wstride = default(System.Int32); - System.Int32 _worder = default(System.Int32); - System.Single _points = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sgix.DeformationMap3(_target,_u1,_u2,_ustride,_uorder,_v1,_v2,_vstride,_vorder,_w1,_w2,_wstride,_worder,ref _points); -} -static unsafe void Test_DeformationMap3_29050() { - OpenTK.Graphics.OpenGL.SgixPolynomialFfd _target = default(OpenTK.Graphics.OpenGL.SgixPolynomialFfd); - System.Single _u1 = default(System.Single); - System.Single _u2 = default(System.Single); - System.Int32 _ustride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - System.Int32 _vstride = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Single _w1 = default(System.Single); - System.Single _w2 = default(System.Single); - System.Int32 _wstride = default(System.Int32); - System.Int32 _worder = default(System.Int32); - System.Single* _points = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sgix.DeformationMap3(_target,_u1,_u2,_ustride,_uorder,_v1,_v2,_vstride,_vorder,_w1,_w2,_wstride,_worder,_points); -} -static unsafe void Test_Deform_29051() { - OpenTK.Graphics.OpenGL.FfdMaskSgix _mask = default(OpenTK.Graphics.OpenGL.FfdMaskSgix); - OpenTK.Graphics.OpenGL.GL.Sgix.Deform(_mask); -} -static unsafe void Test_Deform_29052() { - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Sgix.Deform(_mask); -} -static unsafe void Test_Deform_29053() { - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Sgix.Deform(_mask); -} -static unsafe void Test_DeleteAsyncMarkers_29054() { - System.Int32 _marker = default(System.Int32); - System.Int32 _range = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Sgix.DeleteAsyncMarkers(_marker,_range); -} -static unsafe void Test_DeleteAsyncMarkers_29055() { - System.UInt32 _marker = default(System.UInt32); - System.Int32 _range = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Sgix.DeleteAsyncMarkers(_marker,_range); -} -static unsafe void Test_FinishAsync_29056() { - System.Int32 _markerp = default(System.Int32); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Sgix.FinishAsync(out _markerp); -} -static unsafe void Test_FinishAsync_29057() { - System.Int32* _markerp = default(System.Int32*); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Sgix.FinishAsync(_markerp); -} -static unsafe void Test_FinishAsync_29058() { - System.UInt32 _markerp = default(System.UInt32); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Sgix.FinishAsync(out _markerp); -} -static unsafe void Test_FinishAsync_29059() { - System.UInt32* _markerp = default(System.UInt32*); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Sgix.FinishAsync(_markerp); -} -static unsafe void Test_FlushRaster_29060() { - OpenTK.Graphics.OpenGL.GL.Sgix.FlushRaster(); -} -static unsafe void Test_FragmentColorMaterial_29061() { - OpenTK.Graphics.OpenGL.MaterialFace _face = default(OpenTK.Graphics.OpenGL.MaterialFace); - OpenTK.Graphics.OpenGL.MaterialParameter _mode = default(OpenTK.Graphics.OpenGL.MaterialParameter); - OpenTK.Graphics.OpenGL.GL.Sgix.FragmentColorMaterial(_face,_mode); -} -static unsafe void Test_FragmentLight_29062() { - OpenTK.Graphics.OpenGL.SgixFragmentLighting _light = default(OpenTK.Graphics.OpenGL.SgixFragmentLighting); - OpenTK.Graphics.OpenGL.SgixFragmentLighting _pname = default(OpenTK.Graphics.OpenGL.SgixFragmentLighting); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sgix.FragmentLight(_light,_pname,_param); -} -static unsafe void Test_FragmentLight_29063() { - OpenTK.Graphics.OpenGL.SgixFragmentLighting _light = default(OpenTK.Graphics.OpenGL.SgixFragmentLighting); - OpenTK.Graphics.OpenGL.SgixFragmentLighting _pname = default(OpenTK.Graphics.OpenGL.SgixFragmentLighting); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sgix.FragmentLight(_light,_pname,_params); -} -static unsafe void Test_FragmentLight_29064() { - OpenTK.Graphics.OpenGL.SgixFragmentLighting _light = default(OpenTK.Graphics.OpenGL.SgixFragmentLighting); - OpenTK.Graphics.OpenGL.SgixFragmentLighting _pname = default(OpenTK.Graphics.OpenGL.SgixFragmentLighting); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sgix.FragmentLight(_light,_pname,_params); -} -static unsafe void Test_FragmentLight_29065() { - OpenTK.Graphics.OpenGL.SgixFragmentLighting _light = default(OpenTK.Graphics.OpenGL.SgixFragmentLighting); - OpenTK.Graphics.OpenGL.SgixFragmentLighting _pname = default(OpenTK.Graphics.OpenGL.SgixFragmentLighting); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Sgix.FragmentLight(_light,_pname,_param); -} -static unsafe void Test_FragmentLight_29066() { - OpenTK.Graphics.OpenGL.SgixFragmentLighting _light = default(OpenTK.Graphics.OpenGL.SgixFragmentLighting); - OpenTK.Graphics.OpenGL.SgixFragmentLighting _pname = default(OpenTK.Graphics.OpenGL.SgixFragmentLighting); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Sgix.FragmentLight(_light,_pname,_params); -} -static unsafe void Test_FragmentLight_29067() { - OpenTK.Graphics.OpenGL.SgixFragmentLighting _light = default(OpenTK.Graphics.OpenGL.SgixFragmentLighting); - OpenTK.Graphics.OpenGL.SgixFragmentLighting _pname = default(OpenTK.Graphics.OpenGL.SgixFragmentLighting); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Sgix.FragmentLight(_light,_pname,_params); -} -static unsafe void Test_FragmentLightModel_29068() { - OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix _pname = default(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sgix.FragmentLightModel(_pname,_param); -} -static unsafe void Test_FragmentLightModel_29069() { - OpenTK.Graphics.OpenGL.SgixFragmentLighting _pname = default(OpenTK.Graphics.OpenGL.SgixFragmentLighting); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sgix.FragmentLightModel(_pname,_param); -} -static unsafe void Test_FragmentLightModel_29070() { - OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix _pname = default(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sgix.FragmentLightModel(_pname,_params); -} -static unsafe void Test_FragmentLightModel_29071() { - OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix _pname = default(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sgix.FragmentLightModel(_pname,_params); -} -static unsafe void Test_FragmentLightModel_29072() { - OpenTK.Graphics.OpenGL.SgixFragmentLighting _pname = default(OpenTK.Graphics.OpenGL.SgixFragmentLighting); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sgix.FragmentLightModel(_pname,_params); -} -static unsafe void Test_FragmentLightModel_29073() { - OpenTK.Graphics.OpenGL.SgixFragmentLighting _pname = default(OpenTK.Graphics.OpenGL.SgixFragmentLighting); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sgix.FragmentLightModel(_pname,_params); -} -static unsafe void Test_FragmentLightModel_29074() { - OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix _pname = default(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Sgix.FragmentLightModel(_pname,_param); -} -static unsafe void Test_FragmentLightModel_29075() { - OpenTK.Graphics.OpenGL.SgixFragmentLighting _pname = default(OpenTK.Graphics.OpenGL.SgixFragmentLighting); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Sgix.FragmentLightModel(_pname,_param); -} -static unsafe void Test_FragmentLightModel_29076() { - OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix _pname = default(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Sgix.FragmentLightModel(_pname,_params); -} -static unsafe void Test_FragmentLightModel_29077() { - OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix _pname = default(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Sgix.FragmentLightModel(_pname,_params); -} -static unsafe void Test_FragmentLightModel_29078() { - OpenTK.Graphics.OpenGL.SgixFragmentLighting _pname = default(OpenTK.Graphics.OpenGL.SgixFragmentLighting); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Sgix.FragmentLightModel(_pname,_params); -} -static unsafe void Test_FragmentLightModel_29079() { - OpenTK.Graphics.OpenGL.SgixFragmentLighting _pname = default(OpenTK.Graphics.OpenGL.SgixFragmentLighting); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Sgix.FragmentLightModel(_pname,_params); -} -static unsafe void Test_FragmentMaterial_29080() { - OpenTK.Graphics.OpenGL.MaterialFace _face = default(OpenTK.Graphics.OpenGL.MaterialFace); - OpenTK.Graphics.OpenGL.MaterialParameter _pname = default(OpenTK.Graphics.OpenGL.MaterialParameter); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sgix.FragmentMaterial(_face,_pname,_param); -} -static unsafe void Test_FragmentMaterial_29081() { - OpenTK.Graphics.OpenGL.MaterialFace _face = default(OpenTK.Graphics.OpenGL.MaterialFace); - OpenTK.Graphics.OpenGL.MaterialParameter _pname = default(OpenTK.Graphics.OpenGL.MaterialParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sgix.FragmentMaterial(_face,_pname,_params); -} -static unsafe void Test_FragmentMaterial_29082() { - OpenTK.Graphics.OpenGL.MaterialFace _face = default(OpenTK.Graphics.OpenGL.MaterialFace); - OpenTK.Graphics.OpenGL.MaterialParameter _pname = default(OpenTK.Graphics.OpenGL.MaterialParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sgix.FragmentMaterial(_face,_pname,_params); -} -static unsafe void Test_FragmentMaterial_29083() { - OpenTK.Graphics.OpenGL.MaterialFace _face = default(OpenTK.Graphics.OpenGL.MaterialFace); - OpenTK.Graphics.OpenGL.MaterialParameter _pname = default(OpenTK.Graphics.OpenGL.MaterialParameter); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Sgix.FragmentMaterial(_face,_pname,_param); -} -static unsafe void Test_FragmentMaterial_29084() { - OpenTK.Graphics.OpenGL.MaterialFace _face = default(OpenTK.Graphics.OpenGL.MaterialFace); - OpenTK.Graphics.OpenGL.MaterialParameter _pname = default(OpenTK.Graphics.OpenGL.MaterialParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Sgix.FragmentMaterial(_face,_pname,_params); -} -static unsafe void Test_FragmentMaterial_29085() { - OpenTK.Graphics.OpenGL.MaterialFace _face = default(OpenTK.Graphics.OpenGL.MaterialFace); - OpenTK.Graphics.OpenGL.MaterialParameter _pname = default(OpenTK.Graphics.OpenGL.MaterialParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Sgix.FragmentMaterial(_face,_pname,_params); -} -static unsafe void Test_FrameZoom_29086() { - System.Int32 _factor = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Sgix.FrameZoom(_factor); -} -static unsafe void Test_GenAsyncMarkers_29087() { - System.Int32 _range = default(System.Int32); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Sgix.GenAsyncMarkers(_range); -} -static unsafe void Test_GetFragmentLight_29088() { - OpenTK.Graphics.OpenGL.SgixFragmentLighting _light = default(OpenTK.Graphics.OpenGL.SgixFragmentLighting); - OpenTK.Graphics.OpenGL.SgixFragmentLighting _pname = default(OpenTK.Graphics.OpenGL.SgixFragmentLighting); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sgix.GetFragmentLight(_light,_pname,_params); -} -static unsafe void Test_GetFragmentLight_29089() { - OpenTK.Graphics.OpenGL.SgixFragmentLighting _light = default(OpenTK.Graphics.OpenGL.SgixFragmentLighting); - OpenTK.Graphics.OpenGL.SgixFragmentLighting _pname = default(OpenTK.Graphics.OpenGL.SgixFragmentLighting); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sgix.GetFragmentLight(_light,_pname,out _params); -} -static unsafe void Test_GetFragmentLight_29090() { - OpenTK.Graphics.OpenGL.SgixFragmentLighting _light = default(OpenTK.Graphics.OpenGL.SgixFragmentLighting); - OpenTK.Graphics.OpenGL.SgixFragmentLighting _pname = default(OpenTK.Graphics.OpenGL.SgixFragmentLighting); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sgix.GetFragmentLight(_light,_pname,_params); -} -static unsafe void Test_GetFragmentLight_29091() { - OpenTK.Graphics.OpenGL.SgixFragmentLighting _light = default(OpenTK.Graphics.OpenGL.SgixFragmentLighting); - OpenTK.Graphics.OpenGL.SgixFragmentLighting _pname = default(OpenTK.Graphics.OpenGL.SgixFragmentLighting); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Sgix.GetFragmentLight(_light,_pname,_params); -} -static unsafe void Test_GetFragmentLight_29092() { - OpenTK.Graphics.OpenGL.SgixFragmentLighting _light = default(OpenTK.Graphics.OpenGL.SgixFragmentLighting); - OpenTK.Graphics.OpenGL.SgixFragmentLighting _pname = default(OpenTK.Graphics.OpenGL.SgixFragmentLighting); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Sgix.GetFragmentLight(_light,_pname,out _params); -} -static unsafe void Test_GetFragmentLight_29093() { - OpenTK.Graphics.OpenGL.SgixFragmentLighting _light = default(OpenTK.Graphics.OpenGL.SgixFragmentLighting); - OpenTK.Graphics.OpenGL.SgixFragmentLighting _pname = default(OpenTK.Graphics.OpenGL.SgixFragmentLighting); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Sgix.GetFragmentLight(_light,_pname,_params); -} -static unsafe void Test_GetFragmentMaterial_29094() { - OpenTK.Graphics.OpenGL.MaterialFace _face = default(OpenTK.Graphics.OpenGL.MaterialFace); - OpenTK.Graphics.OpenGL.MaterialParameter _pname = default(OpenTK.Graphics.OpenGL.MaterialParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sgix.GetFragmentMaterial(_face,_pname,_params); -} -static unsafe void Test_GetFragmentMaterial_29095() { - OpenTK.Graphics.OpenGL.MaterialFace _face = default(OpenTK.Graphics.OpenGL.MaterialFace); - OpenTK.Graphics.OpenGL.MaterialParameter _pname = default(OpenTK.Graphics.OpenGL.MaterialParameter); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sgix.GetFragmentMaterial(_face,_pname,out _params); -} -static unsafe void Test_GetFragmentMaterial_29096() { - OpenTK.Graphics.OpenGL.MaterialFace _face = default(OpenTK.Graphics.OpenGL.MaterialFace); - OpenTK.Graphics.OpenGL.MaterialParameter _pname = default(OpenTK.Graphics.OpenGL.MaterialParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sgix.GetFragmentMaterial(_face,_pname,_params); -} -static unsafe void Test_GetFragmentMaterial_29097() { - OpenTK.Graphics.OpenGL.MaterialFace _face = default(OpenTK.Graphics.OpenGL.MaterialFace); - OpenTK.Graphics.OpenGL.MaterialParameter _pname = default(OpenTK.Graphics.OpenGL.MaterialParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Sgix.GetFragmentMaterial(_face,_pname,_params); -} -static unsafe void Test_GetFragmentMaterial_29098() { - OpenTK.Graphics.OpenGL.MaterialFace _face = default(OpenTK.Graphics.OpenGL.MaterialFace); - OpenTK.Graphics.OpenGL.MaterialParameter _pname = default(OpenTK.Graphics.OpenGL.MaterialParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Sgix.GetFragmentMaterial(_face,_pname,out _params); -} -static unsafe void Test_GetFragmentMaterial_29099() { - OpenTK.Graphics.OpenGL.MaterialFace _face = default(OpenTK.Graphics.OpenGL.MaterialFace); - OpenTK.Graphics.OpenGL.MaterialParameter _pname = default(OpenTK.Graphics.OpenGL.MaterialParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Sgix.GetFragmentMaterial(_face,_pname,_params); -} -static unsafe void Test_GetInstruments_29100() { - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Sgix.GetInstruments(); -} -static unsafe void Test_GetListParameter_29101() { - System.Int32 _list = default(System.Int32); - OpenTK.Graphics.OpenGL.ListParameterName _pname = default(OpenTK.Graphics.OpenGL.ListParameterName); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sgix.GetListParameter(_list,_pname,_params); -} -static unsafe void Test_GetListParameter_29102() { - System.Int32 _list = default(System.Int32); - OpenTK.Graphics.OpenGL.ListParameterName _pname = default(OpenTK.Graphics.OpenGL.ListParameterName); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sgix.GetListParameter(_list,_pname,out _params); -} -static unsafe void Test_GetListParameter_29103() { - System.Int32 _list = default(System.Int32); - OpenTK.Graphics.OpenGL.ListParameterName _pname = default(OpenTK.Graphics.OpenGL.ListParameterName); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sgix.GetListParameter(_list,_pname,_params); -} -static unsafe void Test_GetListParameter_29104() { - System.UInt32 _list = default(System.UInt32); - OpenTK.Graphics.OpenGL.ListParameterName _pname = default(OpenTK.Graphics.OpenGL.ListParameterName); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sgix.GetListParameter(_list,_pname,_params); -} -static unsafe void Test_GetListParameter_29105() { - System.UInt32 _list = default(System.UInt32); - OpenTK.Graphics.OpenGL.ListParameterName _pname = default(OpenTK.Graphics.OpenGL.ListParameterName); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sgix.GetListParameter(_list,_pname,out _params); -} -static unsafe void Test_GetListParameter_29106() { - System.UInt32 _list = default(System.UInt32); - OpenTK.Graphics.OpenGL.ListParameterName _pname = default(OpenTK.Graphics.OpenGL.ListParameterName); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sgix.GetListParameter(_list,_pname,_params); -} -static unsafe void Test_GetListParameter_29107() { - System.Int32 _list = default(System.Int32); - OpenTK.Graphics.OpenGL.ListParameterName _pname = default(OpenTK.Graphics.OpenGL.ListParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Sgix.GetListParameter(_list,_pname,_params); -} -static unsafe void Test_GetListParameter_29108() { - System.Int32 _list = default(System.Int32); - OpenTK.Graphics.OpenGL.ListParameterName _pname = default(OpenTK.Graphics.OpenGL.ListParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Sgix.GetListParameter(_list,_pname,out _params); -} -static unsafe void Test_GetListParameter_29109() { - System.Int32 _list = default(System.Int32); - OpenTK.Graphics.OpenGL.ListParameterName _pname = default(OpenTK.Graphics.OpenGL.ListParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Sgix.GetListParameter(_list,_pname,_params); -} -static unsafe void Test_GetListParameter_29110() { - System.UInt32 _list = default(System.UInt32); - OpenTK.Graphics.OpenGL.ListParameterName _pname = default(OpenTK.Graphics.OpenGL.ListParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Sgix.GetListParameter(_list,_pname,_params); -} -static unsafe void Test_GetListParameter_29111() { - System.UInt32 _list = default(System.UInt32); - OpenTK.Graphics.OpenGL.ListParameterName _pname = default(OpenTK.Graphics.OpenGL.ListParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Sgix.GetListParameter(_list,_pname,out _params); -} -static unsafe void Test_GetListParameter_29112() { - System.UInt32 _list = default(System.UInt32); - OpenTK.Graphics.OpenGL.ListParameterName _pname = default(OpenTK.Graphics.OpenGL.ListParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Sgix.GetListParameter(_list,_pname,_params); -} -static unsafe void Test_IglooInterface_29113() { - OpenTK.Graphics.OpenGL.All _pname = default(OpenTK.Graphics.OpenGL.All); - System.IntPtr _params = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Sgix.IglooInterface(_pname,_params); -} -static unsafe void Test_IglooInterface_29114() { - OpenTK.Graphics.OpenGL.All _pname = default(OpenTK.Graphics.OpenGL.All); - int[] _params = default(int[]); - OpenTK.Graphics.OpenGL.GL.Sgix.IglooInterface(_pname,_params); -} -static unsafe void Test_IglooInterface_29115() { - OpenTK.Graphics.OpenGL.All _pname = default(OpenTK.Graphics.OpenGL.All); - int[,] _params = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Sgix.IglooInterface(_pname,_params); -} -static unsafe void Test_IglooInterface_29116() { - OpenTK.Graphics.OpenGL.All _pname = default(OpenTK.Graphics.OpenGL.All); - int[,,] _params = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Sgix.IglooInterface(_pname,_params); -} -static unsafe void Test_IglooInterface_29117() { - OpenTK.Graphics.OpenGL.All _pname = default(OpenTK.Graphics.OpenGL.All); - int _params = default(int); - OpenTK.Graphics.OpenGL.GL.Sgix.IglooInterface(_pname,ref _params); -} -static unsafe void Test_IglooInterface_29118() { - OpenTK.Graphics.OpenGL.SgixIglooInterface _pname = default(OpenTK.Graphics.OpenGL.SgixIglooInterface); - System.IntPtr _params = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Sgix.IglooInterface(_pname,_params); -} -static unsafe void Test_IglooInterface_29119() { - OpenTK.Graphics.OpenGL.SgixIglooInterface _pname = default(OpenTK.Graphics.OpenGL.SgixIglooInterface); - int[] _params = default(int[]); - OpenTK.Graphics.OpenGL.GL.Sgix.IglooInterface(_pname,_params); -} -static unsafe void Test_IglooInterface_29120() { - OpenTK.Graphics.OpenGL.SgixIglooInterface _pname = default(OpenTK.Graphics.OpenGL.SgixIglooInterface); - int[,] _params = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Sgix.IglooInterface(_pname,_params); -} -static unsafe void Test_IglooInterface_29121() { - OpenTK.Graphics.OpenGL.SgixIglooInterface _pname = default(OpenTK.Graphics.OpenGL.SgixIglooInterface); - int[,,] _params = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Sgix.IglooInterface(_pname,_params); -} -static unsafe void Test_IglooInterface_29122() { - OpenTK.Graphics.OpenGL.SgixIglooInterface _pname = default(OpenTK.Graphics.OpenGL.SgixIglooInterface); - int _params = default(int); - OpenTK.Graphics.OpenGL.GL.Sgix.IglooInterface(_pname,ref _params); -} -static unsafe void Test_InstrumentsBuffer_29123() { - System.Int32 _size = default(System.Int32); - System.Int32[] _buffer = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Sgix.InstrumentsBuffer(_size,_buffer); -} -static unsafe void Test_InstrumentsBuffer_29124() { - System.Int32 _size = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Sgix.InstrumentsBuffer(_size,out _buffer); -} -static unsafe void Test_InstrumentsBuffer_29125() { - System.Int32 _size = default(System.Int32); - System.Int32* _buffer = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Sgix.InstrumentsBuffer(_size,_buffer); -} -static unsafe void Test_IsAsyncMarker_29126() { - System.Int32 _marker = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Sgix.IsAsyncMarker(_marker); -} -static unsafe void Test_IsAsyncMarker_29127() { - System.UInt32 _marker = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL.GL.Sgix.IsAsyncMarker(_marker); -} -static unsafe void Test_LightEnv_29128() { - OpenTK.Graphics.OpenGL.LightEnvParameterSgix _pname = default(OpenTK.Graphics.OpenGL.LightEnvParameterSgix); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Sgix.LightEnv(_pname,_param); -} -static unsafe void Test_LightEnv_29129() { - OpenTK.Graphics.OpenGL.SgixFragmentLighting _pname = default(OpenTK.Graphics.OpenGL.SgixFragmentLighting); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Sgix.LightEnv(_pname,_param); -} -static unsafe void Test_ListParameter_29130() { - System.Int32 _list = default(System.Int32); - OpenTK.Graphics.OpenGL.ListParameterName _pname = default(OpenTK.Graphics.OpenGL.ListParameterName); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sgix.ListParameter(_list,_pname,_param); -} -static unsafe void Test_ListParameter_29131() { - System.UInt32 _list = default(System.UInt32); - OpenTK.Graphics.OpenGL.ListParameterName _pname = default(OpenTK.Graphics.OpenGL.ListParameterName); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sgix.ListParameter(_list,_pname,_param); -} -static unsafe void Test_ListParameter_29132() { - System.Int32 _list = default(System.Int32); - OpenTK.Graphics.OpenGL.ListParameterName _pname = default(OpenTK.Graphics.OpenGL.ListParameterName); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sgix.ListParameter(_list,_pname,_params); -} -static unsafe void Test_ListParameter_29133() { - System.Int32 _list = default(System.Int32); - OpenTK.Graphics.OpenGL.ListParameterName _pname = default(OpenTK.Graphics.OpenGL.ListParameterName); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sgix.ListParameter(_list,_pname,_params); -} -static unsafe void Test_ListParameter_29134() { - System.UInt32 _list = default(System.UInt32); - OpenTK.Graphics.OpenGL.ListParameterName _pname = default(OpenTK.Graphics.OpenGL.ListParameterName); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sgix.ListParameter(_list,_pname,_params); -} -static unsafe void Test_ListParameter_29135() { - System.UInt32 _list = default(System.UInt32); - OpenTK.Graphics.OpenGL.ListParameterName _pname = default(OpenTK.Graphics.OpenGL.ListParameterName); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sgix.ListParameter(_list,_pname,_params); -} -static unsafe void Test_ListParameter_29136() { - System.Int32 _list = default(System.Int32); - OpenTK.Graphics.OpenGL.ListParameterName _pname = default(OpenTK.Graphics.OpenGL.ListParameterName); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Sgix.ListParameter(_list,_pname,_param); -} -static unsafe void Test_ListParameter_29137() { - System.UInt32 _list = default(System.UInt32); - OpenTK.Graphics.OpenGL.ListParameterName _pname = default(OpenTK.Graphics.OpenGL.ListParameterName); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Sgix.ListParameter(_list,_pname,_param); -} -static unsafe void Test_ListParameter_29138() { - System.Int32 _list = default(System.Int32); - OpenTK.Graphics.OpenGL.ListParameterName _pname = default(OpenTK.Graphics.OpenGL.ListParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Sgix.ListParameter(_list,_pname,_params); -} -static unsafe void Test_ListParameter_29139() { - System.Int32 _list = default(System.Int32); - OpenTK.Graphics.OpenGL.ListParameterName _pname = default(OpenTK.Graphics.OpenGL.ListParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Sgix.ListParameter(_list,_pname,_params); -} -static unsafe void Test_ListParameter_29140() { - System.UInt32 _list = default(System.UInt32); - OpenTK.Graphics.OpenGL.ListParameterName _pname = default(OpenTK.Graphics.OpenGL.ListParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Sgix.ListParameter(_list,_pname,_params); -} -static unsafe void Test_ListParameter_29141() { - System.UInt32 _list = default(System.UInt32); - OpenTK.Graphics.OpenGL.ListParameterName _pname = default(OpenTK.Graphics.OpenGL.ListParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Sgix.ListParameter(_list,_pname,_params); -} -static unsafe void Test_LoadIdentityDeformationMap_29142() { - OpenTK.Graphics.OpenGL.FfdMaskSgix _mask = default(OpenTK.Graphics.OpenGL.FfdMaskSgix); - OpenTK.Graphics.OpenGL.GL.Sgix.LoadIdentityDeformationMap(_mask); -} -static unsafe void Test_LoadIdentityDeformationMap_29143() { - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Sgix.LoadIdentityDeformationMap(_mask); -} -static unsafe void Test_LoadIdentityDeformationMap_29144() { - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Sgix.LoadIdentityDeformationMap(_mask); -} -static unsafe void Test_PixelTexGen_29145() { - OpenTK.Graphics.OpenGL.SgixPixelTexture _mode = default(OpenTK.Graphics.OpenGL.SgixPixelTexture); - OpenTK.Graphics.OpenGL.GL.Sgix.PixelTexGen(_mode); -} -static unsafe void Test_PollAsync_29146() { - System.Int32 _markerp = default(System.Int32); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Sgix.PollAsync(out _markerp); -} -static unsafe void Test_PollAsync_29147() { - System.Int32* _markerp = default(System.Int32*); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Sgix.PollAsync(_markerp); -} -static unsafe void Test_PollAsync_29148() { - System.UInt32 _markerp = default(System.UInt32); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Sgix.PollAsync(out _markerp); -} -static unsafe void Test_PollAsync_29149() { - System.UInt32* _markerp = default(System.UInt32*); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Sgix.PollAsync(_markerp); -} -static unsafe void Test_PollInstruments_29150() { - System.Int32 _marker_p = default(System.Int32); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Sgix.PollInstruments(out _marker_p); -} -static unsafe void Test_PollInstruments_29151() { - System.Int32* _marker_p = default(System.Int32*); - System.Int32 r = OpenTK.Graphics.OpenGL.GL.Sgix.PollInstruments(_marker_p); -} -static unsafe void Test_ReadInstruments_29152() { - System.Int32 _marker = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Sgix.ReadInstruments(_marker); -} -static unsafe void Test_ReferencePlane_29153() { - System.Double[] _equation = default(System.Double[]); - OpenTK.Graphics.OpenGL.GL.Sgix.ReferencePlane(_equation); -} -static unsafe void Test_ReferencePlane_29154() { - System.Double _equation = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Sgix.ReferencePlane(ref _equation); -} -static unsafe void Test_ReferencePlane_29155() { - System.Double* _equation = default(System.Double*); - OpenTK.Graphics.OpenGL.GL.Sgix.ReferencePlane(_equation); -} -static unsafe void Test_SpriteParameter_29156() { - OpenTK.Graphics.OpenGL.SgixSprite _pname = default(OpenTK.Graphics.OpenGL.SgixSprite); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sgix.SpriteParameter(_pname,_param); -} -static unsafe void Test_SpriteParameter_29157() { - OpenTK.Graphics.OpenGL.SgixSprite _pname = default(OpenTK.Graphics.OpenGL.SgixSprite); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sgix.SpriteParameter(_pname,_params); -} -static unsafe void Test_SpriteParameter_29158() { - OpenTK.Graphics.OpenGL.SgixSprite _pname = default(OpenTK.Graphics.OpenGL.SgixSprite); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sgix.SpriteParameter(_pname,_params); -} -static unsafe void Test_SpriteParameter_29159() { - OpenTK.Graphics.OpenGL.SgixSprite _pname = default(OpenTK.Graphics.OpenGL.SgixSprite); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Sgix.SpriteParameter(_pname,_param); -} -static unsafe void Test_SpriteParameter_29160() { - OpenTK.Graphics.OpenGL.SgixSprite _pname = default(OpenTK.Graphics.OpenGL.SgixSprite); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Sgix.SpriteParameter(_pname,_params); -} -static unsafe void Test_SpriteParameter_29161() { - OpenTK.Graphics.OpenGL.SgixSprite _pname = default(OpenTK.Graphics.OpenGL.SgixSprite); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Sgix.SpriteParameter(_pname,_params); -} -static unsafe void Test_StartInstruments_29162() { - OpenTK.Graphics.OpenGL.GL.Sgix.StartInstruments(); -} -static unsafe void Test_StopInstruments_29163() { - System.Int32 _marker = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Sgix.StopInstruments(_marker); -} -static unsafe void Test_TagSampleBuffer_29164() { - OpenTK.Graphics.OpenGL.GL.Sgix.TagSampleBuffer(); -} -static unsafe void Test_Color3fVertex3_29165() { - System.Single _r = default(System.Single); - System.Single _g = default(System.Single); - System.Single _b = default(System.Single); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.Color3fVertex3(_r,_g,_b,_x,_y,_z); -} -static unsafe void Test_Color3fVertex3_29166() { - System.Single[] _c = default(System.Single[]); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.Color3fVertex3(_c,_v); -} -static unsafe void Test_Color3fVertex3_29167() { - System.Single _c = default(System.Single); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.Color3fVertex3(ref _c,ref _v); -} -static unsafe void Test_Color3fVertex3_29168() { - System.Single* _c = default(System.Single*); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sun.Color3fVertex3(_c,_v); -} -static unsafe void Test_Color4fNormal3fVertex3_29169() { - System.Single _r = default(System.Single); - System.Single _g = default(System.Single); - System.Single _b = default(System.Single); - System.Single _a = default(System.Single); - System.Single _nx = default(System.Single); - System.Single _ny = default(System.Single); - System.Single _nz = default(System.Single); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.Color4fNormal3fVertex3(_r,_g,_b,_a,_nx,_ny,_nz,_x,_y,_z); -} -static unsafe void Test_Color4fNormal3fVertex3_29170() { - System.Single[] _c = default(System.Single[]); - System.Single[] _n = default(System.Single[]); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.Color4fNormal3fVertex3(_c,_n,_v); -} -static unsafe void Test_Color4fNormal3fVertex3_29171() { - System.Single _c = default(System.Single); - System.Single _n = default(System.Single); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.Color4fNormal3fVertex3(ref _c,ref _n,ref _v); -} -static unsafe void Test_Color4fNormal3fVertex3_29172() { - System.Single* _c = default(System.Single*); - System.Single* _n = default(System.Single*); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sun.Color4fNormal3fVertex3(_c,_n,_v); -} -static unsafe void Test_Color4ubVertex2_29173() { - System.Byte _r = default(System.Byte); - System.Byte _g = default(System.Byte); - System.Byte _b = default(System.Byte); - System.Byte _a = default(System.Byte); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.Color4ubVertex2(_r,_g,_b,_a,_x,_y); -} -static unsafe void Test_Color4ubVertex2_29174() { - System.Byte[] _c = default(System.Byte[]); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.Color4ubVertex2(_c,_v); -} -static unsafe void Test_Color4ubVertex2_29175() { - System.Byte _c = default(System.Byte); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.Color4ubVertex2(ref _c,ref _v); -} -static unsafe void Test_Color4ubVertex2_29176() { - System.Byte* _c = default(System.Byte*); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sun.Color4ubVertex2(_c,_v); -} -static unsafe void Test_Color4ubVertex3_29177() { - System.Byte _r = default(System.Byte); - System.Byte _g = default(System.Byte); - System.Byte _b = default(System.Byte); - System.Byte _a = default(System.Byte); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.Color4ubVertex3(_r,_g,_b,_a,_x,_y,_z); -} -static unsafe void Test_Color4ubVertex3_29178() { - System.Byte[] _c = default(System.Byte[]); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.Color4ubVertex3(_c,_v); -} -static unsafe void Test_Color4ubVertex3_29179() { - System.Byte _c = default(System.Byte); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.Color4ubVertex3(ref _c,ref _v); -} -static unsafe void Test_Color4ubVertex3_29180() { - System.Byte* _c = default(System.Byte*); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sun.Color4ubVertex3(_c,_v); -} -static unsafe void Test_DrawMeshArrays_29181() { - OpenTK.Graphics.OpenGL.BeginMode _mode = default(OpenTK.Graphics.OpenGL.BeginMode); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Sun.DrawMeshArrays(_mode,_first,_count,_width); -} -static unsafe void Test_DrawMeshArrays_29182() { - OpenTK.Graphics.OpenGL.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL.PrimitiveType); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Sun.DrawMeshArrays(_mode,_first,_count,_width); -} -static unsafe void Test_GlobalAlphaFactor_29183() { - System.SByte _factor = default(System.SByte); - OpenTK.Graphics.OpenGL.GL.Sun.GlobalAlphaFactor(_factor); -} -static unsafe void Test_GlobalAlphaFactor_29184() { - System.Double _factor = default(System.Double); - OpenTK.Graphics.OpenGL.GL.Sun.GlobalAlphaFactor(_factor); -} -static unsafe void Test_GlobalAlphaFactor_29185() { - System.Single _factor = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.GlobalAlphaFactor(_factor); -} -static unsafe void Test_GlobalAlphaFactor_29186() { - System.Int32 _factor = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Sun.GlobalAlphaFactor(_factor); -} -static unsafe void Test_GlobalAlphaFactors_29187() { - System.Int16 _factor = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Sun.GlobalAlphaFactors(_factor); -} -static unsafe void Test_GlobalAlphaFactor_29188() { - System.Byte _factor = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Sun.GlobalAlphaFactor(_factor); -} -static unsafe void Test_GlobalAlphaFactor_29189() { - System.UInt32 _factor = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Sun.GlobalAlphaFactor(_factor); -} -static unsafe void Test_GlobalAlphaFactor_29190() { - System.Int16 _factor = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Sun.GlobalAlphaFactor(_factor); -} -static unsafe void Test_GlobalAlphaFactor_29191() { - System.UInt16 _factor = default(System.UInt16); - OpenTK.Graphics.OpenGL.GL.Sun.GlobalAlphaFactor(_factor); -} -static unsafe void Test_Normal3fVertex3_29192() { - System.Single _nx = default(System.Single); - System.Single _ny = default(System.Single); - System.Single _nz = default(System.Single); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.Normal3fVertex3(_nx,_ny,_nz,_x,_y,_z); -} -static unsafe void Test_Normal3fVertex3_29193() { - System.Single[] _n = default(System.Single[]); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.Normal3fVertex3(_n,_v); -} -static unsafe void Test_Normal3fVertex3_29194() { - System.Single _n = default(System.Single); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.Normal3fVertex3(ref _n,ref _v); -} -static unsafe void Test_Normal3fVertex3_29195() { - System.Single* _n = default(System.Single*); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sun.Normal3fVertex3(_n,_v); -} -static unsafe void Test_ReplacementCodePointer_29196() { - OpenTK.Graphics.OpenGL.SunTriangleList _type = default(OpenTK.Graphics.OpenGL.SunTriangleList); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodePointer(_type,_stride,_pointer); -} -static unsafe void Test_ReplacementCodePointer_29197() { - OpenTK.Graphics.OpenGL.SunTriangleList _type = default(OpenTK.Graphics.OpenGL.SunTriangleList); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodePointer(_type,_stride,_pointer); -} -static unsafe void Test_ReplacementCodePointer_29198() { - OpenTK.Graphics.OpenGL.SunTriangleList _type = default(OpenTK.Graphics.OpenGL.SunTriangleList); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodePointer(_type,_stride,_pointer); -} -static unsafe void Test_ReplacementCodePointer_29199() { - OpenTK.Graphics.OpenGL.SunTriangleList _type = default(OpenTK.Graphics.OpenGL.SunTriangleList); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodePointer(_type,_stride,_pointer); -} -static unsafe void Test_ReplacementCodePointer_29200() { - OpenTK.Graphics.OpenGL.SunTriangleList _type = default(OpenTK.Graphics.OpenGL.SunTriangleList); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodePointer(_type,_stride,ref _pointer); -} -static unsafe void Test_ReplacementCode_29201() { - System.Byte _code = default(System.Byte); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCode(_code); -} -static unsafe void Test_ReplacementCode_29202() { - System.Byte[] _code = default(System.Byte[]); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCode(_code); -} -static unsafe void Test_ReplacementCode_29203() { - System.Byte* _code = default(System.Byte*); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCode(_code); -} -static unsafe void Test_ReplacementCodeuiColor3fVertex3_29204() { - System.Int32 _rc = default(System.Int32); - System.Single _r = default(System.Single); - System.Single _g = default(System.Single); - System.Single _b = default(System.Single); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiColor3fVertex3(_rc,_r,_g,_b,_x,_y,_z); -} -static unsafe void Test_ReplacementCodeuiColor3fVertex3_29205() { - System.UInt32 _rc = default(System.UInt32); - System.Single _r = default(System.Single); - System.Single _g = default(System.Single); - System.Single _b = default(System.Single); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiColor3fVertex3(_rc,_r,_g,_b,_x,_y,_z); -} -static unsafe void Test_ReplacementCodeuiColor3fVertex3_29206() { - System.Int32 _rc = default(System.Int32); - System.Single[] _c = default(System.Single[]); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiColor3fVertex3(ref _rc,_c,_v); -} -static unsafe void Test_ReplacementCodeuiColor3fVertex3_29207() { - System.Int32 _rc = default(System.Int32); - System.Single _c = default(System.Single); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiColor3fVertex3(ref _rc,ref _c,ref _v); -} -static unsafe void Test_ReplacementCodeuiColor3fVertex3_29208() { - System.Int32* _rc = default(System.Int32*); - System.Single* _c = default(System.Single*); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiColor3fVertex3(_rc,_c,_v); -} -static unsafe void Test_ReplacementCodeuiColor3fVertex3_29209() { - System.UInt32 _rc = default(System.UInt32); - System.Single[] _c = default(System.Single[]); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiColor3fVertex3(ref _rc,_c,_v); -} -static unsafe void Test_ReplacementCodeuiColor3fVertex3_29210() { - System.UInt32 _rc = default(System.UInt32); - System.Single _c = default(System.Single); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiColor3fVertex3(ref _rc,ref _c,ref _v); -} -static unsafe void Test_ReplacementCodeuiColor3fVertex3_29211() { - System.UInt32* _rc = default(System.UInt32*); - System.Single* _c = default(System.Single*); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiColor3fVertex3(_rc,_c,_v); -} -static unsafe void Test_ReplacementCodeuiColor4fNormal3fVertex3_29212() { - System.Int32 _rc = default(System.Int32); - System.Single _r = default(System.Single); - System.Single _g = default(System.Single); - System.Single _b = default(System.Single); - System.Single _a = default(System.Single); - System.Single _nx = default(System.Single); - System.Single _ny = default(System.Single); - System.Single _nz = default(System.Single); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiColor4fNormal3fVertex3(_rc,_r,_g,_b,_a,_nx,_ny,_nz,_x,_y,_z); -} -static unsafe void Test_ReplacementCodeuiColor4fNormal3fVertex3_29213() { - System.UInt32 _rc = default(System.UInt32); - System.Single _r = default(System.Single); - System.Single _g = default(System.Single); - System.Single _b = default(System.Single); - System.Single _a = default(System.Single); - System.Single _nx = default(System.Single); - System.Single _ny = default(System.Single); - System.Single _nz = default(System.Single); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiColor4fNormal3fVertex3(_rc,_r,_g,_b,_a,_nx,_ny,_nz,_x,_y,_z); -} -static unsafe void Test_ReplacementCodeuiColor4fNormal3fVertex3_29214() { - System.Int32 _rc = default(System.Int32); - System.Single[] _c = default(System.Single[]); - System.Single[] _n = default(System.Single[]); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiColor4fNormal3fVertex3(ref _rc,_c,_n,_v); -} -static unsafe void Test_ReplacementCodeuiColor4fNormal3fVertex3_29215() { - System.Int32 _rc = default(System.Int32); - System.Single _c = default(System.Single); - System.Single _n = default(System.Single); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiColor4fNormal3fVertex3(ref _rc,ref _c,ref _n,ref _v); -} -static unsafe void Test_ReplacementCodeuiColor4fNormal3fVertex3_29216() { - System.Int32* _rc = default(System.Int32*); - System.Single* _c = default(System.Single*); - System.Single* _n = default(System.Single*); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiColor4fNormal3fVertex3(_rc,_c,_n,_v); -} -static unsafe void Test_ReplacementCodeuiColor4fNormal3fVertex3_29217() { - System.UInt32 _rc = default(System.UInt32); - System.Single[] _c = default(System.Single[]); - System.Single[] _n = default(System.Single[]); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiColor4fNormal3fVertex3(ref _rc,_c,_n,_v); -} -static unsafe void Test_ReplacementCodeuiColor4fNormal3fVertex3_29218() { - System.UInt32 _rc = default(System.UInt32); - System.Single _c = default(System.Single); - System.Single _n = default(System.Single); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiColor4fNormal3fVertex3(ref _rc,ref _c,ref _n,ref _v); -} -static unsafe void Test_ReplacementCodeuiColor4fNormal3fVertex3_29219() { - System.UInt32* _rc = default(System.UInt32*); - System.Single* _c = default(System.Single*); - System.Single* _n = default(System.Single*); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiColor4fNormal3fVertex3(_rc,_c,_n,_v); -} -static unsafe void Test_ReplacementCodeuiColor4ubVertex3_29220() { - System.Int32 _rc = default(System.Int32); - System.Byte _r = default(System.Byte); - System.Byte _g = default(System.Byte); - System.Byte _b = default(System.Byte); - System.Byte _a = default(System.Byte); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiColor4ubVertex3(_rc,_r,_g,_b,_a,_x,_y,_z); -} -static unsafe void Test_ReplacementCodeuiColor4ubVertex3_29221() { - System.UInt32 _rc = default(System.UInt32); - System.Byte _r = default(System.Byte); - System.Byte _g = default(System.Byte); - System.Byte _b = default(System.Byte); - System.Byte _a = default(System.Byte); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiColor4ubVertex3(_rc,_r,_g,_b,_a,_x,_y,_z); -} -static unsafe void Test_ReplacementCodeuiColor4ubVertex3_29222() { - System.Int32 _rc = default(System.Int32); - System.Byte[] _c = default(System.Byte[]); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiColor4ubVertex3(ref _rc,_c,_v); -} -static unsafe void Test_ReplacementCodeuiColor4ubVertex3_29223() { - System.Int32 _rc = default(System.Int32); - System.Byte _c = default(System.Byte); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiColor4ubVertex3(ref _rc,ref _c,ref _v); -} -static unsafe void Test_ReplacementCodeuiColor4ubVertex3_29224() { - System.Int32* _rc = default(System.Int32*); - System.Byte* _c = default(System.Byte*); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiColor4ubVertex3(_rc,_c,_v); -} -static unsafe void Test_ReplacementCodeuiColor4ubVertex3_29225() { - System.UInt32 _rc = default(System.UInt32); - System.Byte[] _c = default(System.Byte[]); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiColor4ubVertex3(ref _rc,_c,_v); -} -static unsafe void Test_ReplacementCodeuiColor4ubVertex3_29226() { - System.UInt32 _rc = default(System.UInt32); - System.Byte _c = default(System.Byte); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiColor4ubVertex3(ref _rc,ref _c,ref _v); -} -static unsafe void Test_ReplacementCodeuiColor4ubVertex3_29227() { - System.UInt32* _rc = default(System.UInt32*); - System.Byte* _c = default(System.Byte*); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiColor4ubVertex3(_rc,_c,_v); -} -static unsafe void Test_ReplacementCodeuiNormal3fVertex3_29228() { - System.Int32 _rc = default(System.Int32); - System.Single _nx = default(System.Single); - System.Single _ny = default(System.Single); - System.Single _nz = default(System.Single); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiNormal3fVertex3(_rc,_nx,_ny,_nz,_x,_y,_z); -} -static unsafe void Test_ReplacementCodeuiNormal3fVertex3_29229() { - System.UInt32 _rc = default(System.UInt32); - System.Single _nx = default(System.Single); - System.Single _ny = default(System.Single); - System.Single _nz = default(System.Single); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiNormal3fVertex3(_rc,_nx,_ny,_nz,_x,_y,_z); -} -static unsafe void Test_ReplacementCodeuiNormal3fVertex3_29230() { - System.Int32 _rc = default(System.Int32); - System.Single[] _n = default(System.Single[]); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiNormal3fVertex3(ref _rc,_n,_v); -} -static unsafe void Test_ReplacementCodeuiNormal3fVertex3_29231() { - System.Int32 _rc = default(System.Int32); - System.Single _n = default(System.Single); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiNormal3fVertex3(ref _rc,ref _n,ref _v); -} -static unsafe void Test_ReplacementCodeuiNormal3fVertex3_29232() { - System.Int32* _rc = default(System.Int32*); - System.Single* _n = default(System.Single*); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiNormal3fVertex3(_rc,_n,_v); -} -static unsafe void Test_ReplacementCodeuiNormal3fVertex3_29233() { - System.UInt32 _rc = default(System.UInt32); - System.Single[] _n = default(System.Single[]); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiNormal3fVertex3(ref _rc,_n,_v); -} -static unsafe void Test_ReplacementCodeuiNormal3fVertex3_29234() { - System.UInt32 _rc = default(System.UInt32); - System.Single _n = default(System.Single); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiNormal3fVertex3(ref _rc,ref _n,ref _v); -} -static unsafe void Test_ReplacementCodeuiNormal3fVertex3_29235() { - System.UInt32* _rc = default(System.UInt32*); - System.Single* _n = default(System.Single*); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiNormal3fVertex3(_rc,_n,_v); -} -static unsafe void Test_ReplacementCode_29236() { - System.Int32 _code = default(System.Int32); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCode(_code); -} -static unsafe void Test_ReplacementCode_29237() { - System.UInt32 _code = default(System.UInt32); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCode(_code); -} -static unsafe void Test_ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3_29238() { - System.Int32 _rc = default(System.Int32); - System.Single _s = default(System.Single); - System.Single _t = default(System.Single); - System.Single _r = default(System.Single); - System.Single _g = default(System.Single); - System.Single _b = default(System.Single); - System.Single _a = default(System.Single); - System.Single _nx = default(System.Single); - System.Single _ny = default(System.Single); - System.Single _nz = default(System.Single); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(_rc,_s,_t,_r,_g,_b,_a,_nx,_ny,_nz,_x,_y,_z); -} -static unsafe void Test_ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3_29239() { - System.UInt32 _rc = default(System.UInt32); - System.Single _s = default(System.Single); - System.Single _t = default(System.Single); - System.Single _r = default(System.Single); - System.Single _g = default(System.Single); - System.Single _b = default(System.Single); - System.Single _a = default(System.Single); - System.Single _nx = default(System.Single); - System.Single _ny = default(System.Single); - System.Single _nz = default(System.Single); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(_rc,_s,_t,_r,_g,_b,_a,_nx,_ny,_nz,_x,_y,_z); -} -static unsafe void Test_ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3_29240() { - System.Int32 _rc = default(System.Int32); - System.Single[] _tc = default(System.Single[]); - System.Single[] _c = default(System.Single[]); - System.Single[] _n = default(System.Single[]); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref _rc,_tc,_c,_n,_v); -} -static unsafe void Test_ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3_29241() { - System.Int32 _rc = default(System.Int32); - System.Single _tc = default(System.Single); - System.Single _c = default(System.Single); - System.Single _n = default(System.Single); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref _rc,ref _tc,ref _c,ref _n,ref _v); -} -static unsafe void Test_ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3_29242() { - System.Int32* _rc = default(System.Int32*); - System.Single* _tc = default(System.Single*); - System.Single* _c = default(System.Single*); - System.Single* _n = default(System.Single*); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(_rc,_tc,_c,_n,_v); -} -static unsafe void Test_ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3_29243() { - System.UInt32 _rc = default(System.UInt32); - System.Single[] _tc = default(System.Single[]); - System.Single[] _c = default(System.Single[]); - System.Single[] _n = default(System.Single[]); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref _rc,_tc,_c,_n,_v); -} -static unsafe void Test_ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3_29244() { - System.UInt32 _rc = default(System.UInt32); - System.Single _tc = default(System.Single); - System.Single _c = default(System.Single); - System.Single _n = default(System.Single); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref _rc,ref _tc,ref _c,ref _n,ref _v); -} -static unsafe void Test_ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3_29245() { - System.UInt32* _rc = default(System.UInt32*); - System.Single* _tc = default(System.Single*); - System.Single* _c = default(System.Single*); - System.Single* _n = default(System.Single*); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(_rc,_tc,_c,_n,_v); -} -static unsafe void Test_ReplacementCodeuiTexCoord2fNormal3fVertex3_29246() { - System.Int32 _rc = default(System.Int32); - System.Single _s = default(System.Single); - System.Single _t = default(System.Single); - System.Single _nx = default(System.Single); - System.Single _ny = default(System.Single); - System.Single _nz = default(System.Single); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiTexCoord2fNormal3fVertex3(_rc,_s,_t,_nx,_ny,_nz,_x,_y,_z); -} -static unsafe void Test_ReplacementCodeuiTexCoord2fNormal3fVertex3_29247() { - System.UInt32 _rc = default(System.UInt32); - System.Single _s = default(System.Single); - System.Single _t = default(System.Single); - System.Single _nx = default(System.Single); - System.Single _ny = default(System.Single); - System.Single _nz = default(System.Single); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiTexCoord2fNormal3fVertex3(_rc,_s,_t,_nx,_ny,_nz,_x,_y,_z); -} -static unsafe void Test_ReplacementCodeuiTexCoord2fNormal3fVertex3_29248() { - System.Int32 _rc = default(System.Int32); - System.Single[] _tc = default(System.Single[]); - System.Single[] _n = default(System.Single[]); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiTexCoord2fNormal3fVertex3(ref _rc,_tc,_n,_v); -} -static unsafe void Test_ReplacementCodeuiTexCoord2fNormal3fVertex3_29249() { - System.Int32 _rc = default(System.Int32); - System.Single _tc = default(System.Single); - System.Single _n = default(System.Single); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiTexCoord2fNormal3fVertex3(ref _rc,ref _tc,ref _n,ref _v); -} -static unsafe void Test_ReplacementCodeuiTexCoord2fNormal3fVertex3_29250() { - System.Int32* _rc = default(System.Int32*); - System.Single* _tc = default(System.Single*); - System.Single* _n = default(System.Single*); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiTexCoord2fNormal3fVertex3(_rc,_tc,_n,_v); -} -static unsafe void Test_ReplacementCodeuiTexCoord2fNormal3fVertex3_29251() { - System.UInt32 _rc = default(System.UInt32); - System.Single[] _tc = default(System.Single[]); - System.Single[] _n = default(System.Single[]); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiTexCoord2fNormal3fVertex3(ref _rc,_tc,_n,_v); -} -static unsafe void Test_ReplacementCodeuiTexCoord2fNormal3fVertex3_29252() { - System.UInt32 _rc = default(System.UInt32); - System.Single _tc = default(System.Single); - System.Single _n = default(System.Single); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiTexCoord2fNormal3fVertex3(ref _rc,ref _tc,ref _n,ref _v); -} -static unsafe void Test_ReplacementCodeuiTexCoord2fNormal3fVertex3_29253() { - System.UInt32* _rc = default(System.UInt32*); - System.Single* _tc = default(System.Single*); - System.Single* _n = default(System.Single*); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiTexCoord2fNormal3fVertex3(_rc,_tc,_n,_v); -} -static unsafe void Test_ReplacementCodeuiTexCoord2fVertex3_29254() { - System.Int32 _rc = default(System.Int32); - System.Single _s = default(System.Single); - System.Single _t = default(System.Single); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiTexCoord2fVertex3(_rc,_s,_t,_x,_y,_z); -} -static unsafe void Test_ReplacementCodeuiTexCoord2fVertex3_29255() { - System.UInt32 _rc = default(System.UInt32); - System.Single _s = default(System.Single); - System.Single _t = default(System.Single); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiTexCoord2fVertex3(_rc,_s,_t,_x,_y,_z); -} -static unsafe void Test_ReplacementCodeuiTexCoord2fVertex3_29256() { - System.Int32 _rc = default(System.Int32); - System.Single[] _tc = default(System.Single[]); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiTexCoord2fVertex3(ref _rc,_tc,_v); -} -static unsafe void Test_ReplacementCodeuiTexCoord2fVertex3_29257() { - System.Int32 _rc = default(System.Int32); - System.Single _tc = default(System.Single); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiTexCoord2fVertex3(ref _rc,ref _tc,ref _v); -} -static unsafe void Test_ReplacementCodeuiTexCoord2fVertex3_29258() { - System.Int32* _rc = default(System.Int32*); - System.Single* _tc = default(System.Single*); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiTexCoord2fVertex3(_rc,_tc,_v); -} -static unsafe void Test_ReplacementCodeuiTexCoord2fVertex3_29259() { - System.UInt32 _rc = default(System.UInt32); - System.Single[] _tc = default(System.Single[]); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiTexCoord2fVertex3(ref _rc,_tc,_v); -} -static unsafe void Test_ReplacementCodeuiTexCoord2fVertex3_29260() { - System.UInt32 _rc = default(System.UInt32); - System.Single _tc = default(System.Single); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiTexCoord2fVertex3(ref _rc,ref _tc,ref _v); -} -static unsafe void Test_ReplacementCodeuiTexCoord2fVertex3_29261() { - System.UInt32* _rc = default(System.UInt32*); - System.Single* _tc = default(System.Single*); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiTexCoord2fVertex3(_rc,_tc,_v); -} -static unsafe void Test_ReplacementCodeuiVertex3_29262() { - System.Int32 _rc = default(System.Int32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiVertex3(_rc,_x,_y,_z); -} -static unsafe void Test_ReplacementCodeuiVertex3_29263() { - System.UInt32 _rc = default(System.UInt32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiVertex3(_rc,_x,_y,_z); -} -static unsafe void Test_ReplacementCodeuiVertex3_29264() { - System.Int32 _rc = default(System.Int32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiVertex3(ref _rc,_v); -} -static unsafe void Test_ReplacementCodeuiVertex3_29265() { - System.Int32 _rc = default(System.Int32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiVertex3(ref _rc,ref _v); -} -static unsafe void Test_ReplacementCodeuiVertex3_29266() { - System.Int32* _rc = default(System.Int32*); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiVertex3(_rc,_v); -} -static unsafe void Test_ReplacementCodeuiVertex3_29267() { - System.UInt32 _rc = default(System.UInt32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiVertex3(ref _rc,_v); -} -static unsafe void Test_ReplacementCodeuiVertex3_29268() { - System.UInt32 _rc = default(System.UInt32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiVertex3(ref _rc,ref _v); -} -static unsafe void Test_ReplacementCodeuiVertex3_29269() { - System.UInt32* _rc = default(System.UInt32*); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiVertex3(_rc,_v); -} -static unsafe void Test_ReplacementCode_29270() { - System.Int32[] _code = default(System.Int32[]); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCode(_code); -} -static unsafe void Test_ReplacementCode_29271() { - System.Int32* _code = default(System.Int32*); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCode(_code); -} -static unsafe void Test_ReplacementCode_29272() { - System.UInt32[] _code = default(System.UInt32[]); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCode(_code); -} -static unsafe void Test_ReplacementCode_29273() { - System.UInt32* _code = default(System.UInt32*); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCode(_code); -} -static unsafe void Test_ReplacementCode_29274() { - System.Int16 _code = default(System.Int16); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCode(_code); -} -static unsafe void Test_ReplacementCode_29275() { - System.UInt16 _code = default(System.UInt16); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCode(_code); -} -static unsafe void Test_ReplacementCode_29276() { - System.Int16[] _code = default(System.Int16[]); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCode(_code); -} -static unsafe void Test_ReplacementCode_29277() { - System.Int16* _code = default(System.Int16*); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCode(_code); -} -static unsafe void Test_ReplacementCode_29278() { - System.UInt16[] _code = default(System.UInt16[]); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCode(_code); -} -static unsafe void Test_ReplacementCode_29279() { - System.UInt16* _code = default(System.UInt16*); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCode(_code); -} -static unsafe void Test_TexCoord2fColor3fVertex3_29280() { - System.Single _s = default(System.Single); - System.Single _t = default(System.Single); - System.Single _r = default(System.Single); - System.Single _g = default(System.Single); - System.Single _b = default(System.Single); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.TexCoord2fColor3fVertex3(_s,_t,_r,_g,_b,_x,_y,_z); -} -static unsafe void Test_TexCoord2fColor3fVertex3_29281() { - System.Single[] _tc = default(System.Single[]); - System.Single[] _c = default(System.Single[]); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.TexCoord2fColor3fVertex3(_tc,_c,_v); -} -static unsafe void Test_TexCoord2fColor3fVertex3_29282() { - System.Single _tc = default(System.Single); - System.Single _c = default(System.Single); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.TexCoord2fColor3fVertex3(ref _tc,ref _c,ref _v); -} -static unsafe void Test_TexCoord2fColor3fVertex3_29283() { - System.Single* _tc = default(System.Single*); - System.Single* _c = default(System.Single*); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sun.TexCoord2fColor3fVertex3(_tc,_c,_v); -} -static unsafe void Test_TexCoord2fColor4fNormal3fVertex3_29284() { - System.Single _s = default(System.Single); - System.Single _t = default(System.Single); - System.Single _r = default(System.Single); - System.Single _g = default(System.Single); - System.Single _b = default(System.Single); - System.Single _a = default(System.Single); - System.Single _nx = default(System.Single); - System.Single _ny = default(System.Single); - System.Single _nz = default(System.Single); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.TexCoord2fColor4fNormal3fVertex3(_s,_t,_r,_g,_b,_a,_nx,_ny,_nz,_x,_y,_z); -} -static unsafe void Test_TexCoord2fColor4fNormal3fVertex3_29285() { - System.Single[] _tc = default(System.Single[]); - System.Single[] _c = default(System.Single[]); - System.Single[] _n = default(System.Single[]); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.TexCoord2fColor4fNormal3fVertex3(_tc,_c,_n,_v); -} -static unsafe void Test_TexCoord2fColor4fNormal3fVertex3_29286() { - System.Single _tc = default(System.Single); - System.Single _c = default(System.Single); - System.Single _n = default(System.Single); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.TexCoord2fColor4fNormal3fVertex3(ref _tc,ref _c,ref _n,ref _v); -} -static unsafe void Test_TexCoord2fColor4fNormal3fVertex3_29287() { - System.Single* _tc = default(System.Single*); - System.Single* _c = default(System.Single*); - System.Single* _n = default(System.Single*); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sun.TexCoord2fColor4fNormal3fVertex3(_tc,_c,_n,_v); -} -static unsafe void Test_TexCoord2fColor4ubVertex3_29288() { - System.Single _s = default(System.Single); - System.Single _t = default(System.Single); - System.Byte _r = default(System.Byte); - System.Byte _g = default(System.Byte); - System.Byte _b = default(System.Byte); - System.Byte _a = default(System.Byte); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.TexCoord2fColor4ubVertex3(_s,_t,_r,_g,_b,_a,_x,_y,_z); -} -static unsafe void Test_TexCoord2fColor4ubVertex3_29289() { - System.Single[] _tc = default(System.Single[]); - System.Byte[] _c = default(System.Byte[]); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.TexCoord2fColor4ubVertex3(_tc,_c,_v); -} -static unsafe void Test_TexCoord2fColor4ubVertex3_29290() { - System.Single _tc = default(System.Single); - System.Byte _c = default(System.Byte); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.TexCoord2fColor4ubVertex3(ref _tc,ref _c,ref _v); -} -static unsafe void Test_TexCoord2fColor4ubVertex3_29291() { - System.Single* _tc = default(System.Single*); - System.Byte* _c = default(System.Byte*); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sun.TexCoord2fColor4ubVertex3(_tc,_c,_v); -} -static unsafe void Test_TexCoord2fNormal3fVertex3_29292() { - System.Single _s = default(System.Single); - System.Single _t = default(System.Single); - System.Single _nx = default(System.Single); - System.Single _ny = default(System.Single); - System.Single _nz = default(System.Single); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.TexCoord2fNormal3fVertex3(_s,_t,_nx,_ny,_nz,_x,_y,_z); -} -static unsafe void Test_TexCoord2fNormal3fVertex3_29293() { - System.Single[] _tc = default(System.Single[]); - System.Single[] _n = default(System.Single[]); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.TexCoord2fNormal3fVertex3(_tc,_n,_v); -} -static unsafe void Test_TexCoord2fNormal3fVertex3_29294() { - System.Single _tc = default(System.Single); - System.Single _n = default(System.Single); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.TexCoord2fNormal3fVertex3(ref _tc,ref _n,ref _v); -} -static unsafe void Test_TexCoord2fNormal3fVertex3_29295() { - System.Single* _tc = default(System.Single*); - System.Single* _n = default(System.Single*); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sun.TexCoord2fNormal3fVertex3(_tc,_n,_v); -} -static unsafe void Test_TexCoord2fVertex3_29296() { - System.Single _s = default(System.Single); - System.Single _t = default(System.Single); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.TexCoord2fVertex3(_s,_t,_x,_y,_z); -} -static unsafe void Test_TexCoord2fVertex3_29297() { - System.Single[] _tc = default(System.Single[]); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.TexCoord2fVertex3(_tc,_v); -} -static unsafe void Test_TexCoord2fVertex3_29298() { - System.Single _tc = default(System.Single); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.TexCoord2fVertex3(ref _tc,ref _v); -} -static unsafe void Test_TexCoord2fVertex3_29299() { - System.Single* _tc = default(System.Single*); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sun.TexCoord2fVertex3(_tc,_v); -} -static unsafe void Test_TexCoord4fColor4fNormal3fVertex4_29300() { - System.Single _s = default(System.Single); - System.Single _t = default(System.Single); - System.Single _p = default(System.Single); - System.Single _q = default(System.Single); - System.Single _r = default(System.Single); - System.Single _g = default(System.Single); - System.Single _b = default(System.Single); - System.Single _a = default(System.Single); - System.Single _nx = default(System.Single); - System.Single _ny = default(System.Single); - System.Single _nz = default(System.Single); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - System.Single _w = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.TexCoord4fColor4fNormal3fVertex4(_s,_t,_p,_q,_r,_g,_b,_a,_nx,_ny,_nz,_x,_y,_z,_w); -} -static unsafe void Test_TexCoord4fColor4fNormal3fVertex4_29301() { - System.Single[] _tc = default(System.Single[]); - System.Single[] _c = default(System.Single[]); - System.Single[] _n = default(System.Single[]); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.TexCoord4fColor4fNormal3fVertex4(_tc,_c,_n,_v); -} -static unsafe void Test_TexCoord4fColor4fNormal3fVertex4_29302() { - System.Single _tc = default(System.Single); - System.Single _c = default(System.Single); - System.Single _n = default(System.Single); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.TexCoord4fColor4fNormal3fVertex4(ref _tc,ref _c,ref _n,ref _v); -} -static unsafe void Test_TexCoord4fColor4fNormal3fVertex4_29303() { - System.Single* _tc = default(System.Single*); - System.Single* _c = default(System.Single*); - System.Single* _n = default(System.Single*); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sun.TexCoord4fColor4fNormal3fVertex4(_tc,_c,_n,_v); -} -static unsafe void Test_TexCoord4fVertex4_29304() { - System.Single _s = default(System.Single); - System.Single _t = default(System.Single); - System.Single _p = default(System.Single); - System.Single _q = default(System.Single); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - System.Single _w = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.TexCoord4fVertex4(_s,_t,_p,_q,_x,_y,_z,_w); -} -static unsafe void Test_TexCoord4fVertex4_29305() { - System.Single[] _tc = default(System.Single[]); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.TexCoord4fVertex4(_tc,_v); -} -static unsafe void Test_TexCoord4fVertex4_29306() { - System.Single _tc = default(System.Single); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL.GL.Sun.TexCoord4fVertex4(ref _tc,ref _v); -} -static unsafe void Test_TexCoord4fVertex4_29307() { - System.Single* _tc = default(System.Single*); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL.GL.Sun.TexCoord4fVertex4(_tc,_v); -} -static unsafe void Test_ReplacementCodeuiColor3fVertex3_29308() { - System.Int32* _rc = default(System.Int32*); - System.Single[] _c = default(System.Single[]); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiColor3fVertex3(_rc,_c,_v); -} -static unsafe void Test_ReplacementCodeuiColor3fVertex3_29309() { - System.UInt32* _rc = default(System.UInt32*); - System.Single[] _c = default(System.Single[]); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiColor3fVertex3(_rc,_c,_v); -} -static unsafe void Test_ReplacementCodeuiColor4fNormal3fVertex3_29310() { - System.Int32* _rc = default(System.Int32*); - System.Single[] _c = default(System.Single[]); - System.Single[] _n = default(System.Single[]); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiColor4fNormal3fVertex3(_rc,_c,_n,_v); -} -static unsafe void Test_ReplacementCodeuiColor4fNormal3fVertex3_29311() { - System.UInt32* _rc = default(System.UInt32*); - System.Single[] _c = default(System.Single[]); - System.Single[] _n = default(System.Single[]); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiColor4fNormal3fVertex3(_rc,_c,_n,_v); -} -static unsafe void Test_ReplacementCodeuiColor4ubVertex3_29312() { - System.Int32* _rc = default(System.Int32*); - System.Byte[] _c = default(System.Byte[]); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiColor4ubVertex3(_rc,_c,_v); -} -static unsafe void Test_ReplacementCodeuiColor4ubVertex3_29313() { - System.UInt32* _rc = default(System.UInt32*); - System.Byte[] _c = default(System.Byte[]); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiColor4ubVertex3(_rc,_c,_v); -} -static unsafe void Test_ReplacementCodeuiNormal3fVertex3_29314() { - System.Int32* _rc = default(System.Int32*); - System.Single[] _n = default(System.Single[]); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiNormal3fVertex3(_rc,_n,_v); -} -static unsafe void Test_ReplacementCodeuiNormal3fVertex3_29315() { - System.UInt32* _rc = default(System.UInt32*); - System.Single[] _n = default(System.Single[]); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiNormal3fVertex3(_rc,_n,_v); -} -static unsafe void Test_ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3_29316() { - System.Int32* _rc = default(System.Int32*); - System.Single[] _tc = default(System.Single[]); - System.Single[] _c = default(System.Single[]); - System.Single[] _n = default(System.Single[]); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(_rc,_tc,_c,_n,_v); -} -static unsafe void Test_ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3_29317() { - System.UInt32* _rc = default(System.UInt32*); - System.Single[] _tc = default(System.Single[]); - System.Single[] _c = default(System.Single[]); - System.Single[] _n = default(System.Single[]); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(_rc,_tc,_c,_n,_v); -} -static unsafe void Test_ReplacementCodeuiTexCoord2fNormal3fVertex3_29318() { - System.Int32* _rc = default(System.Int32*); - System.Single[] _tc = default(System.Single[]); - System.Single[] _n = default(System.Single[]); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiTexCoord2fNormal3fVertex3(_rc,_tc,_n,_v); -} -static unsafe void Test_ReplacementCodeuiTexCoord2fNormal3fVertex3_29319() { - System.UInt32* _rc = default(System.UInt32*); - System.Single[] _tc = default(System.Single[]); - System.Single[] _n = default(System.Single[]); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiTexCoord2fNormal3fVertex3(_rc,_tc,_n,_v); -} -static unsafe void Test_ReplacementCodeuiTexCoord2fVertex3_29320() { - System.Int32* _rc = default(System.Int32*); - System.Single[] _tc = default(System.Single[]); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiTexCoord2fVertex3(_rc,_tc,_v); -} -static unsafe void Test_ReplacementCodeuiTexCoord2fVertex3_29321() { - System.UInt32* _rc = default(System.UInt32*); - System.Single[] _tc = default(System.Single[]); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiTexCoord2fVertex3(_rc,_tc,_v); -} -static unsafe void Test_ReplacementCodeuiVertex3_29322() { - System.Int32* _rc = default(System.Int32*); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiVertex3(_rc,_v); -} -static unsafe void Test_ReplacementCodeuiVertex3_29323() { - System.UInt32* _rc = default(System.UInt32*); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL.GL.Sun.ReplacementCodeuiVertex3(_rc,_v); -} -static unsafe void Test_FinishTexture_29324() { - OpenTK.Graphics.OpenGL.GL.Sunx.FinishTexture(); -} - -static unsafe void Test_Invoke_29326() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.AmdDebugOutput _category = default(OpenTK.Graphics.OpenGL.AmdDebugOutput); - OpenTK.Graphics.OpenGL.AmdDebugOutput _severity = default(OpenTK.Graphics.OpenGL.AmdDebugOutput); - System.Int32 _length = default(System.Int32); - System.IntPtr _message = default(System.IntPtr); - System.IntPtr _userParam = default(System.IntPtr); - default(OpenTK.Graphics.OpenGL.DebugProcAmd).Invoke(_id,_category,_severity,_length,_message,_userParam); -} -static unsafe void Test_BeginInvoke_29327() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.AmdDebugOutput _category = default(OpenTK.Graphics.OpenGL.AmdDebugOutput); - OpenTK.Graphics.OpenGL.AmdDebugOutput _severity = default(OpenTK.Graphics.OpenGL.AmdDebugOutput); - System.Int32 _length = default(System.Int32); - System.IntPtr _message = default(System.IntPtr); - System.IntPtr _userParam = default(System.IntPtr); - System.AsyncCallback _callback = default(System.AsyncCallback); - System.Object _object = default(System.Object); - System.IAsyncResult r = default(OpenTK.Graphics.OpenGL.DebugProcAmd).BeginInvoke(_id,_category,_severity,_length,_message,_userParam,_callback,_object); -} -static unsafe void Test_EndInvoke_29328() { - System.IAsyncResult _result = default(System.IAsyncResult); - default(OpenTK.Graphics.OpenGL.DebugProcAmd).EndInvoke(_result); -} - -static unsafe void Test_Invoke_29330() { - OpenTK.Graphics.OpenGL.DebugSource _source = default(OpenTK.Graphics.OpenGL.DebugSource); - OpenTK.Graphics.OpenGL.DebugType _type = default(OpenTK.Graphics.OpenGL.DebugType); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.DebugSeverity _severity = default(OpenTK.Graphics.OpenGL.DebugSeverity); - System.Int32 _length = default(System.Int32); - System.IntPtr _message = default(System.IntPtr); - System.IntPtr _userParam = default(System.IntPtr); - default(OpenTK.Graphics.OpenGL.DebugProcArb).Invoke(_source,_type,_id,_severity,_length,_message,_userParam); -} -static unsafe void Test_BeginInvoke_29331() { - OpenTK.Graphics.OpenGL.DebugSource _source = default(OpenTK.Graphics.OpenGL.DebugSource); - OpenTK.Graphics.OpenGL.DebugType _type = default(OpenTK.Graphics.OpenGL.DebugType); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.DebugSeverity _severity = default(OpenTK.Graphics.OpenGL.DebugSeverity); - System.Int32 _length = default(System.Int32); - System.IntPtr _message = default(System.IntPtr); - System.IntPtr _userParam = default(System.IntPtr); - System.AsyncCallback _callback = default(System.AsyncCallback); - System.Object _object = default(System.Object); - System.IAsyncResult r = default(OpenTK.Graphics.OpenGL.DebugProcArb).BeginInvoke(_source,_type,_id,_severity,_length,_message,_userParam,_callback,_object); -} -static unsafe void Test_EndInvoke_29332() { - System.IAsyncResult _result = default(System.IAsyncResult); - default(OpenTK.Graphics.OpenGL.DebugProcArb).EndInvoke(_result); -} - -static unsafe void Test_Invoke_29334() { - OpenTK.Graphics.OpenGL.DebugSource _source = default(OpenTK.Graphics.OpenGL.DebugSource); - OpenTK.Graphics.OpenGL.DebugType _type = default(OpenTK.Graphics.OpenGL.DebugType); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.DebugSeverity _severity = default(OpenTK.Graphics.OpenGL.DebugSeverity); - System.Int32 _length = default(System.Int32); - System.IntPtr _message = default(System.IntPtr); - System.IntPtr _userParam = default(System.IntPtr); - default(OpenTK.Graphics.OpenGL.DebugProc).Invoke(_source,_type,_id,_severity,_length,_message,_userParam); -} -static unsafe void Test_BeginInvoke_29335() { - OpenTK.Graphics.OpenGL.DebugSource _source = default(OpenTK.Graphics.OpenGL.DebugSource); - OpenTK.Graphics.OpenGL.DebugType _type = default(OpenTK.Graphics.OpenGL.DebugType); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.DebugSeverity _severity = default(OpenTK.Graphics.OpenGL.DebugSeverity); - System.Int32 _length = default(System.Int32); - System.IntPtr _message = default(System.IntPtr); - System.IntPtr _userParam = default(System.IntPtr); - System.AsyncCallback _callback = default(System.AsyncCallback); - System.Object _object = default(System.Object); - System.IAsyncResult r = default(OpenTK.Graphics.OpenGL.DebugProc).BeginInvoke(_source,_type,_id,_severity,_length,_message,_userParam,_callback,_object); -} -static unsafe void Test_EndInvoke_29336() { - System.IAsyncResult _result = default(System.IAsyncResult); - default(OpenTK.Graphics.OpenGL.DebugProc).EndInvoke(_result); -} - -static unsafe void Test_Invoke_29338() { - OpenTK.Graphics.OpenGL.DebugSource _source = default(OpenTK.Graphics.OpenGL.DebugSource); - OpenTK.Graphics.OpenGL.DebugType _type = default(OpenTK.Graphics.OpenGL.DebugType); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.DebugSeverity _severity = default(OpenTK.Graphics.OpenGL.DebugSeverity); - System.Int32 _length = default(System.Int32); - System.IntPtr _message = default(System.IntPtr); - System.IntPtr _userParam = default(System.IntPtr); - default(OpenTK.Graphics.OpenGL.DebugProcKhr).Invoke(_source,_type,_id,_severity,_length,_message,_userParam); -} -static unsafe void Test_BeginInvoke_29339() { - OpenTK.Graphics.OpenGL.DebugSource _source = default(OpenTK.Graphics.OpenGL.DebugSource); - OpenTK.Graphics.OpenGL.DebugType _type = default(OpenTK.Graphics.OpenGL.DebugType); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL.DebugSeverity _severity = default(OpenTK.Graphics.OpenGL.DebugSeverity); - System.Int32 _length = default(System.Int32); - System.IntPtr _message = default(System.IntPtr); - System.IntPtr _userParam = default(System.IntPtr); - System.AsyncCallback _callback = default(System.AsyncCallback); - System.Object _object = default(System.Object); - System.IAsyncResult r = default(OpenTK.Graphics.OpenGL.DebugProcKhr).BeginInvoke(_source,_type,_id,_severity,_length,_message,_userParam,_callback,_object); -} -static unsafe void Test_EndInvoke_29340() { - System.IAsyncResult _result = default(System.IAsyncResult); - default(OpenTK.Graphics.OpenGL.DebugProcKhr).EndInvoke(_result); -} -static unsafe void Test_ActiveTexture_29341() { - OpenTK.Graphics.ES10.All _texture = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.GL.ActiveTexture(_texture); -} -static unsafe void Test_AlphaFunc_29342() { - OpenTK.Graphics.ES10.All _func = default(OpenTK.Graphics.ES10.All); - System.Single _ref = default(System.Single); - OpenTK.Graphics.ES10.GL.AlphaFunc(_func,_ref); -} -static unsafe void Test_AlphaFuncx_29343() { - OpenTK.Graphics.ES10.All _func = default(OpenTK.Graphics.ES10.All); - System.Int32 _ref = default(System.Int32); - OpenTK.Graphics.ES10.GL.AlphaFuncx(_func,_ref); -} -static unsafe void Test_BindTexture_29344() { - OpenTK.Graphics.ES10.All _target = default(OpenTK.Graphics.ES10.All); - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.ES10.GL.BindTexture(_target,_texture); -} -static unsafe void Test_BindTexture_29345() { - OpenTK.Graphics.ES10.All _target = default(OpenTK.Graphics.ES10.All); - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.ES10.GL.BindTexture(_target,_texture); -} -static unsafe void Test_BlendFunc_29346() { - OpenTK.Graphics.ES10.All _sfactor = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.All _dfactor = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.GL.BlendFunc(_sfactor,_dfactor); -} -static unsafe void Test_Clear_29347() { - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.ES10.GL.Clear(_mask); -} -static unsafe void Test_Clear_29348() { - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.ES10.GL.Clear(_mask); -} -static unsafe void Test_ClearColor_29349() { - System.Single _red = default(System.Single); - System.Single _green = default(System.Single); - System.Single _blue = default(System.Single); - System.Single _alpha = default(System.Single); - OpenTK.Graphics.ES10.GL.ClearColor(_red,_green,_blue,_alpha); -} -static unsafe void Test_ClearColorx_29350() { - System.Int32 _red = default(System.Int32); - System.Int32 _green = default(System.Int32); - System.Int32 _blue = default(System.Int32); - System.Int32 _alpha = default(System.Int32); - OpenTK.Graphics.ES10.GL.ClearColorx(_red,_green,_blue,_alpha); -} -static unsafe void Test_ClearDepth_29351() { - System.Single _depth = default(System.Single); - OpenTK.Graphics.ES10.GL.ClearDepth(_depth); -} -static unsafe void Test_ClearDepthx_29352() { - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES10.GL.ClearDepthx(_depth); -} -static unsafe void Test_ClearStencil_29353() { - System.Int32 _s = default(System.Int32); - OpenTK.Graphics.ES10.GL.ClearStencil(_s); -} -static unsafe void Test_ClientActiveTexture_29354() { - OpenTK.Graphics.ES10.All _texture = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.GL.ClientActiveTexture(_texture); -} -static unsafe void Test_Color4_29355() { - System.Single _red = default(System.Single); - System.Single _green = default(System.Single); - System.Single _blue = default(System.Single); - System.Single _alpha = default(System.Single); - OpenTK.Graphics.ES10.GL.Color4(_red,_green,_blue,_alpha); -} -static unsafe void Test_Color4x_29356() { - System.Int32 _red = default(System.Int32); - System.Int32 _green = default(System.Int32); - System.Int32 _blue = default(System.Int32); - System.Int32 _alpha = default(System.Int32); - OpenTK.Graphics.ES10.GL.Color4x(_red,_green,_blue,_alpha); -} -static unsafe void Test_ColorMask_29357() { - System.Boolean _red = default(System.Boolean); - System.Boolean _green = default(System.Boolean); - System.Boolean _blue = default(System.Boolean); - System.Boolean _alpha = default(System.Boolean); - OpenTK.Graphics.ES10.GL.ColorMask(_red,_green,_blue,_alpha); -} -static unsafe void Test_ColorPointer_29358() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES10.All _type = default(OpenTK.Graphics.ES10.All); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.ES10.GL.ColorPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_ColorPointer_29359() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES10.All _type = default(OpenTK.Graphics.ES10.All); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.ES10.GL.ColorPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_ColorPointer_29360() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES10.All _type = default(OpenTK.Graphics.ES10.All); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.ES10.GL.ColorPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_ColorPointer_29361() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES10.All _type = default(OpenTK.Graphics.ES10.All); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.ES10.GL.ColorPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_ColorPointer_29362() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES10.All _type = default(OpenTK.Graphics.ES10.All); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.ES10.GL.ColorPointer(_size,_type,_stride,ref _pointer); -} -static unsafe void Test_CompressedTexImage2D_29363() { - OpenTK.Graphics.ES10.All _target = default(OpenTK.Graphics.ES10.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES10.All _internalformat = default(OpenTK.Graphics.ES10.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES10.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_29364() { - OpenTK.Graphics.ES10.All _target = default(OpenTK.Graphics.ES10.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES10.All _internalformat = default(OpenTK.Graphics.ES10.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.ES10.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_29365() { - OpenTK.Graphics.ES10.All _target = default(OpenTK.Graphics.ES10.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES10.All _internalformat = default(OpenTK.Graphics.ES10.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES10.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_29366() { - OpenTK.Graphics.ES10.All _target = default(OpenTK.Graphics.ES10.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES10.All _internalformat = default(OpenTK.Graphics.ES10.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES10.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_29367() { - OpenTK.Graphics.ES10.All _target = default(OpenTK.Graphics.ES10.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES10.All _internalformat = default(OpenTK.Graphics.ES10.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.ES10.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,ref _data); -} -static unsafe void Test_CompressedTexSubImage2D_29368() { - OpenTK.Graphics.ES10.All _target = default(OpenTK.Graphics.ES10.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES10.All _format = default(OpenTK.Graphics.ES10.All); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES10.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_29369() { - OpenTK.Graphics.ES10.All _target = default(OpenTK.Graphics.ES10.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES10.All _format = default(OpenTK.Graphics.ES10.All); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.ES10.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_29370() { - OpenTK.Graphics.ES10.All _target = default(OpenTK.Graphics.ES10.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES10.All _format = default(OpenTK.Graphics.ES10.All); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES10.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_29371() { - OpenTK.Graphics.ES10.All _target = default(OpenTK.Graphics.ES10.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES10.All _format = default(OpenTK.Graphics.ES10.All); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES10.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_29372() { - OpenTK.Graphics.ES10.All _target = default(OpenTK.Graphics.ES10.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES10.All _format = default(OpenTK.Graphics.ES10.All); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.ES10.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,ref _data); -} -static unsafe void Test_CopyTexImage2D_29373() { - OpenTK.Graphics.ES10.All _target = default(OpenTK.Graphics.ES10.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES10.All _internalformat = default(OpenTK.Graphics.ES10.All); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES10.GL.CopyTexImage2D(_target,_level,_internalformat,_x,_y,_width,_height,_border); -} -static unsafe void Test_CopyTexSubImage2D_29374() { - OpenTK.Graphics.ES10.All _target = default(OpenTK.Graphics.ES10.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES10.GL.CopyTexSubImage2D(_target,_level,_xoffset,_yoffset,_x,_y,_width,_height); -} -static unsafe void Test_CullFace_29375() { - OpenTK.Graphics.ES10.All _mode = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.GL.CullFace(_mode); -} -static unsafe void Test_DeleteTextures_29376() { - System.Int32 _n = default(System.Int32); - System.Int32[] _textures = default(System.Int32[]); - OpenTK.Graphics.ES10.GL.DeleteTextures(_n,_textures); -} -static unsafe void Test_DeleteTextures_29377() { - System.Int32 _n = default(System.Int32); - System.Int32 _textures = default(System.Int32); - OpenTK.Graphics.ES10.GL.DeleteTextures(_n,ref _textures); -} -static unsafe void Test_DeleteTextures_29378() { - System.Int32 _n = default(System.Int32); - System.Int32* _textures = default(System.Int32*); - OpenTK.Graphics.ES10.GL.DeleteTextures(_n,_textures); -} -static unsafe void Test_DeleteTextures_29379() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _textures = default(System.UInt32[]); - OpenTK.Graphics.ES10.GL.DeleteTextures(_n,_textures); -} -static unsafe void Test_DeleteTextures_29380() { - System.Int32 _n = default(System.Int32); - System.UInt32 _textures = default(System.UInt32); - OpenTK.Graphics.ES10.GL.DeleteTextures(_n,ref _textures); -} -static unsafe void Test_DeleteTextures_29381() { - System.Int32 _n = default(System.Int32); - System.UInt32* _textures = default(System.UInt32*); - OpenTK.Graphics.ES10.GL.DeleteTextures(_n,_textures); -} -static unsafe void Test_DepthFunc_29382() { - OpenTK.Graphics.ES10.All _func = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.GL.DepthFunc(_func); -} -static unsafe void Test_DepthMask_29383() { - System.Boolean _flag = default(System.Boolean); - OpenTK.Graphics.ES10.GL.DepthMask(_flag); -} -static unsafe void Test_DepthRange_29384() { - System.Single _zNear = default(System.Single); - System.Single _zFar = default(System.Single); - OpenTK.Graphics.ES10.GL.DepthRange(_zNear,_zFar); -} -static unsafe void Test_DepthRangex_29385() { - System.Int32 _zNear = default(System.Int32); - System.Int32 _zFar = default(System.Int32); - OpenTK.Graphics.ES10.GL.DepthRangex(_zNear,_zFar); -} -static unsafe void Test_Disable_29386() { - OpenTK.Graphics.ES10.All _cap = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.GL.Disable(_cap); -} -static unsafe void Test_DisableClientState_29387() { - OpenTK.Graphics.ES10.All _array = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.GL.DisableClientState(_array); -} -static unsafe void Test_DrawArrays_29388() { - OpenTK.Graphics.ES10.All _mode = default(OpenTK.Graphics.ES10.All); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES10.GL.DrawArrays(_mode,_first,_count); -} -static unsafe void Test_DrawElements_29389() { - OpenTK.Graphics.ES10.All _mode = default(OpenTK.Graphics.ES10.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES10.All _type = default(OpenTK.Graphics.ES10.All); - System.IntPtr _indices = default(System.IntPtr); - OpenTK.Graphics.ES10.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_29390() { - OpenTK.Graphics.ES10.All _mode = default(OpenTK.Graphics.ES10.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES10.All _type = default(OpenTK.Graphics.ES10.All); - int[] _indices = default(int[]); - OpenTK.Graphics.ES10.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_29391() { - OpenTK.Graphics.ES10.All _mode = default(OpenTK.Graphics.ES10.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES10.All _type = default(OpenTK.Graphics.ES10.All); - int[,] _indices = default(int[,]); - OpenTK.Graphics.ES10.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_29392() { - OpenTK.Graphics.ES10.All _mode = default(OpenTK.Graphics.ES10.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES10.All _type = default(OpenTK.Graphics.ES10.All); - int[,,] _indices = default(int[,,]); - OpenTK.Graphics.ES10.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_29393() { - OpenTK.Graphics.ES10.All _mode = default(OpenTK.Graphics.ES10.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES10.All _type = default(OpenTK.Graphics.ES10.All); - int _indices = default(int); - OpenTK.Graphics.ES10.GL.DrawElements(_mode,_count,_type,ref _indices); -} -static unsafe void Test_Enable_29394() { - OpenTK.Graphics.ES10.All _cap = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.GL.Enable(_cap); -} -static unsafe void Test_EnableClientState_29395() { - OpenTK.Graphics.ES10.All _array = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.GL.EnableClientState(_array); -} -static unsafe void Test_Finish_29396() { - OpenTK.Graphics.ES10.GL.Finish(); -} -static unsafe void Test_Flush_29397() { - OpenTK.Graphics.ES10.GL.Flush(); -} -static unsafe void Test_Fog_29398() { - OpenTK.Graphics.ES10.All _pname = default(OpenTK.Graphics.ES10.All); - System.Single _param = default(System.Single); - OpenTK.Graphics.ES10.GL.Fog(_pname,_param); -} -static unsafe void Test_Fog_29399() { - OpenTK.Graphics.ES10.All _pname = default(OpenTK.Graphics.ES10.All); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES10.GL.Fog(_pname,_params); -} -static unsafe void Test_Fog_29400() { - OpenTK.Graphics.ES10.All _pname = default(OpenTK.Graphics.ES10.All); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES10.GL.Fog(_pname,_params); -} -static unsafe void Test_Fogx_29401() { - OpenTK.Graphics.ES10.All _pname = default(OpenTK.Graphics.ES10.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES10.GL.Fogx(_pname,_param); -} -static unsafe void Test_Fogx_29402() { - OpenTK.Graphics.ES10.All _pname = default(OpenTK.Graphics.ES10.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES10.GL.Fogx(_pname,_params); -} -static unsafe void Test_Fogx_29403() { - OpenTK.Graphics.ES10.All _pname = default(OpenTK.Graphics.ES10.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES10.GL.Fogx(_pname,_params); -} -static unsafe void Test_FrontFace_29404() { - OpenTK.Graphics.ES10.All _mode = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.GL.FrontFace(_mode); -} -static unsafe void Test_Frustum_29405() { - System.Single _left = default(System.Single); - System.Single _right = default(System.Single); - System.Single _bottom = default(System.Single); - System.Single _top = default(System.Single); - System.Single _zNear = default(System.Single); - System.Single _zFar = default(System.Single); - OpenTK.Graphics.ES10.GL.Frustum(_left,_right,_bottom,_top,_zNear,_zFar); -} -static unsafe void Test_Frustumx_29406() { - System.Int32 _left = default(System.Int32); - System.Int32 _right = default(System.Int32); - System.Int32 _bottom = default(System.Int32); - System.Int32 _top = default(System.Int32); - System.Int32 _zNear = default(System.Int32); - System.Int32 _zFar = default(System.Int32); - OpenTK.Graphics.ES10.GL.Frustumx(_left,_right,_bottom,_top,_zNear,_zFar); -} -static unsafe void Test_GenTextures_29407() { - System.Int32 _n = default(System.Int32); - System.Int32[] _textures = default(System.Int32[]); - OpenTK.Graphics.ES10.GL.GenTextures(_n,_textures); -} -static unsafe void Test_GenTextures_29408() { - System.Int32 _n = default(System.Int32); - System.Int32 _textures = default(System.Int32); - OpenTK.Graphics.ES10.GL.GenTextures(_n,ref _textures); -} -static unsafe void Test_GenTextures_29409() { - System.Int32 _n = default(System.Int32); - System.Int32* _textures = default(System.Int32*); - OpenTK.Graphics.ES10.GL.GenTextures(_n,_textures); -} -static unsafe void Test_GenTextures_29410() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _textures = default(System.UInt32[]); - OpenTK.Graphics.ES10.GL.GenTextures(_n,_textures); -} -static unsafe void Test_GenTextures_29411() { - System.Int32 _n = default(System.Int32); - System.UInt32 _textures = default(System.UInt32); - OpenTK.Graphics.ES10.GL.GenTextures(_n,ref _textures); -} -static unsafe void Test_GenTextures_29412() { - System.Int32 _n = default(System.Int32); - System.UInt32* _textures = default(System.UInt32*); - OpenTK.Graphics.ES10.GL.GenTextures(_n,_textures); -} -static unsafe void Test_GetError_29413() { - OpenTK.Graphics.ES10.All r = OpenTK.Graphics.ES10.GL.GetError(); -} -static unsafe void Test_GetInteger_29414() { - OpenTK.Graphics.ES10.All _pname = default(OpenTK.Graphics.ES10.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES10.GL.GetInteger(_pname,_params); -} -static unsafe void Test_GetInteger_29415() { - OpenTK.Graphics.ES10.All _pname = default(OpenTK.Graphics.ES10.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES10.GL.GetInteger(_pname,ref _params); -} -static unsafe void Test_GetInteger_29416() { - OpenTK.Graphics.ES10.All _pname = default(OpenTK.Graphics.ES10.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES10.GL.GetInteger(_pname,_params); -} -static unsafe void Test_GetString_29417() { - OpenTK.Graphics.ES10.All _name = default(OpenTK.Graphics.ES10.All); - System.String r = OpenTK.Graphics.ES10.GL.GetString(_name); -} -static unsafe void Test_Hint_29418() { - OpenTK.Graphics.ES10.All _target = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.All _mode = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.GL.Hint(_target,_mode); -} -static unsafe void Test_Light_29419() { - OpenTK.Graphics.ES10.All _light = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.All _pname = default(OpenTK.Graphics.ES10.All); - System.Single _param = default(System.Single); - OpenTK.Graphics.ES10.GL.Light(_light,_pname,_param); -} -static unsafe void Test_Light_29420() { - OpenTK.Graphics.ES10.All _light = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.All _pname = default(OpenTK.Graphics.ES10.All); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES10.GL.Light(_light,_pname,_params); -} -static unsafe void Test_Light_29421() { - OpenTK.Graphics.ES10.All _light = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.All _pname = default(OpenTK.Graphics.ES10.All); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES10.GL.Light(_light,_pname,_params); -} -static unsafe void Test_LightModel_29422() { - OpenTK.Graphics.ES10.All _pname = default(OpenTK.Graphics.ES10.All); - System.Single _param = default(System.Single); - OpenTK.Graphics.ES10.GL.LightModel(_pname,_param); -} -static unsafe void Test_LightModel_29423() { - OpenTK.Graphics.ES10.All _pname = default(OpenTK.Graphics.ES10.All); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES10.GL.LightModel(_pname,_params); -} -static unsafe void Test_LightModel_29424() { - OpenTK.Graphics.ES10.All _pname = default(OpenTK.Graphics.ES10.All); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES10.GL.LightModel(_pname,_params); -} -static unsafe void Test_LightModelx_29425() { - OpenTK.Graphics.ES10.All _pname = default(OpenTK.Graphics.ES10.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES10.GL.LightModelx(_pname,_param); -} -static unsafe void Test_LightModelx_29426() { - OpenTK.Graphics.ES10.All _pname = default(OpenTK.Graphics.ES10.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES10.GL.LightModelx(_pname,_params); -} -static unsafe void Test_LightModelx_29427() { - OpenTK.Graphics.ES10.All _pname = default(OpenTK.Graphics.ES10.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES10.GL.LightModelx(_pname,_params); -} -static unsafe void Test_Lightx_29428() { - OpenTK.Graphics.ES10.All _light = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.All _pname = default(OpenTK.Graphics.ES10.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES10.GL.Lightx(_light,_pname,_param); -} -static unsafe void Test_Lightx_29429() { - OpenTK.Graphics.ES10.All _light = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.All _pname = default(OpenTK.Graphics.ES10.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES10.GL.Lightx(_light,_pname,_params); -} -static unsafe void Test_Lightx_29430() { - OpenTK.Graphics.ES10.All _light = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.All _pname = default(OpenTK.Graphics.ES10.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES10.GL.Lightx(_light,_pname,_params); -} -static unsafe void Test_LineWidth_29431() { - System.Single _width = default(System.Single); - OpenTK.Graphics.ES10.GL.LineWidth(_width); -} -static unsafe void Test_LineWidthx_29432() { - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.ES10.GL.LineWidthx(_width); -} -static unsafe void Test_LoadIdentity_29433() { - OpenTK.Graphics.ES10.GL.LoadIdentity(); -} -static unsafe void Test_LoadMatrix_29434() { - System.Single[] _m = default(System.Single[]); - OpenTK.Graphics.ES10.GL.LoadMatrix(_m); -} -static unsafe void Test_LoadMatrix_29435() { - System.Single _m = default(System.Single); - OpenTK.Graphics.ES10.GL.LoadMatrix(ref _m); -} -static unsafe void Test_LoadMatrix_29436() { - System.Single* _m = default(System.Single*); - OpenTK.Graphics.ES10.GL.LoadMatrix(_m); -} -static unsafe void Test_LoadMatrixx_29437() { - System.Int32[] _m = default(System.Int32[]); - OpenTK.Graphics.ES10.GL.LoadMatrixx(_m); -} -static unsafe void Test_LoadMatrixx_29438() { - System.Int32 _m = default(System.Int32); - OpenTK.Graphics.ES10.GL.LoadMatrixx(ref _m); -} -static unsafe void Test_LoadMatrixx_29439() { - System.Int32* _m = default(System.Int32*); - OpenTK.Graphics.ES10.GL.LoadMatrixx(_m); -} -static unsafe void Test_LogicOp_29440() { - OpenTK.Graphics.ES10.All _opcode = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.GL.LogicOp(_opcode); -} -static unsafe void Test_Material_29441() { - OpenTK.Graphics.ES10.All _face = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.All _pname = default(OpenTK.Graphics.ES10.All); - System.Single _param = default(System.Single); - OpenTK.Graphics.ES10.GL.Material(_face,_pname,_param); -} -static unsafe void Test_Material_29442() { - OpenTK.Graphics.ES10.All _face = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.All _pname = default(OpenTK.Graphics.ES10.All); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES10.GL.Material(_face,_pname,_params); -} -static unsafe void Test_Material_29443() { - OpenTK.Graphics.ES10.All _face = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.All _pname = default(OpenTK.Graphics.ES10.All); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES10.GL.Material(_face,_pname,_params); -} -static unsafe void Test_Materialx_29444() { - OpenTK.Graphics.ES10.All _face = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.All _pname = default(OpenTK.Graphics.ES10.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES10.GL.Materialx(_face,_pname,_param); -} -static unsafe void Test_Materialx_29445() { - OpenTK.Graphics.ES10.All _face = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.All _pname = default(OpenTK.Graphics.ES10.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES10.GL.Materialx(_face,_pname,_params); -} -static unsafe void Test_Materialx_29446() { - OpenTK.Graphics.ES10.All _face = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.All _pname = default(OpenTK.Graphics.ES10.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES10.GL.Materialx(_face,_pname,_params); -} -static unsafe void Test_MatrixMode_29447() { - OpenTK.Graphics.ES10.All _mode = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.GL.MatrixMode(_mode); -} -static unsafe void Test_MultiTexCoord4_29448() { - OpenTK.Graphics.ES10.All _target = default(OpenTK.Graphics.ES10.All); - System.Single _s = default(System.Single); - System.Single _t = default(System.Single); - System.Single _r = default(System.Single); - System.Single _q = default(System.Single); - OpenTK.Graphics.ES10.GL.MultiTexCoord4(_target,_s,_t,_r,_q); -} -static unsafe void Test_MultiTexCoord4x_29449() { - OpenTK.Graphics.ES10.All _target = default(OpenTK.Graphics.ES10.All); - System.Int32 _s = default(System.Int32); - System.Int32 _t = default(System.Int32); - System.Int32 _r = default(System.Int32); - System.Int32 _q = default(System.Int32); - OpenTK.Graphics.ES10.GL.MultiTexCoord4x(_target,_s,_t,_r,_q); -} -static unsafe void Test_MultMatrix_29450() { - System.Single[] _m = default(System.Single[]); - OpenTK.Graphics.ES10.GL.MultMatrix(_m); -} -static unsafe void Test_MultMatrix_29451() { - System.Single _m = default(System.Single); - OpenTK.Graphics.ES10.GL.MultMatrix(ref _m); -} -static unsafe void Test_MultMatrix_29452() { - System.Single* _m = default(System.Single*); - OpenTK.Graphics.ES10.GL.MultMatrix(_m); -} -static unsafe void Test_MultMatrixx_29453() { - System.Int32[] _m = default(System.Int32[]); - OpenTK.Graphics.ES10.GL.MultMatrixx(_m); -} -static unsafe void Test_MultMatrixx_29454() { - System.Int32 _m = default(System.Int32); - OpenTK.Graphics.ES10.GL.MultMatrixx(ref _m); -} -static unsafe void Test_MultMatrixx_29455() { - System.Int32* _m = default(System.Int32*); - OpenTK.Graphics.ES10.GL.MultMatrixx(_m); -} -static unsafe void Test_Normal3_29456() { - System.Single _nx = default(System.Single); - System.Single _ny = default(System.Single); - System.Single _nz = default(System.Single); - OpenTK.Graphics.ES10.GL.Normal3(_nx,_ny,_nz); -} -static unsafe void Test_Normal3x_29457() { - System.Int32 _nx = default(System.Int32); - System.Int32 _ny = default(System.Int32); - System.Int32 _nz = default(System.Int32); - OpenTK.Graphics.ES10.GL.Normal3x(_nx,_ny,_nz); -} -static unsafe void Test_NormalPointer_29458() { - OpenTK.Graphics.ES10.All _type = default(OpenTK.Graphics.ES10.All); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.ES10.GL.NormalPointer(_type,_stride,_pointer); -} -static unsafe void Test_NormalPointer_29459() { - OpenTK.Graphics.ES10.All _type = default(OpenTK.Graphics.ES10.All); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.ES10.GL.NormalPointer(_type,_stride,_pointer); -} -static unsafe void Test_NormalPointer_29460() { - OpenTK.Graphics.ES10.All _type = default(OpenTK.Graphics.ES10.All); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.ES10.GL.NormalPointer(_type,_stride,_pointer); -} -static unsafe void Test_NormalPointer_29461() { - OpenTK.Graphics.ES10.All _type = default(OpenTK.Graphics.ES10.All); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.ES10.GL.NormalPointer(_type,_stride,_pointer); -} -static unsafe void Test_NormalPointer_29462() { - OpenTK.Graphics.ES10.All _type = default(OpenTK.Graphics.ES10.All); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.ES10.GL.NormalPointer(_type,_stride,ref _pointer); -} -static unsafe void Test_Ortho_29463() { - System.Single _left = default(System.Single); - System.Single _right = default(System.Single); - System.Single _bottom = default(System.Single); - System.Single _top = default(System.Single); - System.Single _zNear = default(System.Single); - System.Single _zFar = default(System.Single); - OpenTK.Graphics.ES10.GL.Ortho(_left,_right,_bottom,_top,_zNear,_zFar); -} -static unsafe void Test_Orthox_29464() { - System.Int32 _left = default(System.Int32); - System.Int32 _right = default(System.Int32); - System.Int32 _bottom = default(System.Int32); - System.Int32 _top = default(System.Int32); - System.Int32 _zNear = default(System.Int32); - System.Int32 _zFar = default(System.Int32); - OpenTK.Graphics.ES10.GL.Orthox(_left,_right,_bottom,_top,_zNear,_zFar); -} -static unsafe void Test_PixelStore_29465() { - OpenTK.Graphics.ES10.All _pname = default(OpenTK.Graphics.ES10.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES10.GL.PixelStore(_pname,_param); -} -static unsafe void Test_PointSize_29466() { - System.Single _size = default(System.Single); - OpenTK.Graphics.ES10.GL.PointSize(_size); -} -static unsafe void Test_PointSizex_29467() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES10.GL.PointSizex(_size); -} -static unsafe void Test_PolygonOffset_29468() { - System.Single _factor = default(System.Single); - System.Single _units = default(System.Single); - OpenTK.Graphics.ES10.GL.PolygonOffset(_factor,_units); -} -static unsafe void Test_PolygonOffsetx_29469() { - System.Int32 _factor = default(System.Int32); - System.Int32 _units = default(System.Int32); - OpenTK.Graphics.ES10.GL.PolygonOffsetx(_factor,_units); -} -static unsafe void Test_PopMatrix_29470() { - OpenTK.Graphics.ES10.GL.PopMatrix(); -} -static unsafe void Test_PushMatrix_29471() { - OpenTK.Graphics.ES10.GL.PushMatrix(); -} -static unsafe void Test_ReadPixels_29472() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES10.All _format = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.All _type = default(OpenTK.Graphics.ES10.All); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.ES10.GL.ReadPixels(_x,_y,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_ReadPixels_29473() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES10.All _format = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.All _type = default(OpenTK.Graphics.ES10.All); - int[] _pixels = default(int[]); - OpenTK.Graphics.ES10.GL.ReadPixels(_x,_y,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_ReadPixels_29474() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES10.All _format = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.All _type = default(OpenTK.Graphics.ES10.All); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.ES10.GL.ReadPixels(_x,_y,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_ReadPixels_29475() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES10.All _format = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.All _type = default(OpenTK.Graphics.ES10.All); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.ES10.GL.ReadPixels(_x,_y,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_ReadPixels_29476() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES10.All _format = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.All _type = default(OpenTK.Graphics.ES10.All); - int _pixels = default(int); - OpenTK.Graphics.ES10.GL.ReadPixels(_x,_y,_width,_height,_format,_type,ref _pixels); -} -static unsafe void Test_Rotate_29477() { - System.Single _angle = default(System.Single); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.ES10.GL.Rotate(_angle,_x,_y,_z); -} -static unsafe void Test_Rotatex_29478() { - System.Int32 _angle = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - OpenTK.Graphics.ES10.GL.Rotatex(_angle,_x,_y,_z); -} -static unsafe void Test_SampleCoverage_29479() { - System.Single _value = default(System.Single); - System.Boolean _invert = default(System.Boolean); - OpenTK.Graphics.ES10.GL.SampleCoverage(_value,_invert); -} -static unsafe void Test_SampleCoveragex_29480() { - System.Int32 _value = default(System.Int32); - System.Boolean _invert = default(System.Boolean); - OpenTK.Graphics.ES10.GL.SampleCoveragex(_value,_invert); -} -static unsafe void Test_Scale_29481() { - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.ES10.GL.Scale(_x,_y,_z); -} -static unsafe void Test_Scalex_29482() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - OpenTK.Graphics.ES10.GL.Scalex(_x,_y,_z); -} -static unsafe void Test_Scissor_29483() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES10.GL.Scissor(_x,_y,_width,_height); -} -static unsafe void Test_ShadeModel_29484() { - OpenTK.Graphics.ES10.All _mode = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.GL.ShadeModel(_mode); -} -static unsafe void Test_StencilFunc_29485() { - OpenTK.Graphics.ES10.All _func = default(OpenTK.Graphics.ES10.All); - System.Int32 _ref = default(System.Int32); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.ES10.GL.StencilFunc(_func,_ref,_mask); -} -static unsafe void Test_StencilFunc_29486() { - OpenTK.Graphics.ES10.All _func = default(OpenTK.Graphics.ES10.All); - System.Int32 _ref = default(System.Int32); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.ES10.GL.StencilFunc(_func,_ref,_mask); -} -static unsafe void Test_StencilMask_29487() { - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.ES10.GL.StencilMask(_mask); -} -static unsafe void Test_StencilMask_29488() { - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.ES10.GL.StencilMask(_mask); -} -static unsafe void Test_StencilOp_29489() { - OpenTK.Graphics.ES10.All _fail = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.All _zfail = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.All _zpass = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.GL.StencilOp(_fail,_zfail,_zpass); -} -static unsafe void Test_TexCoordPointer_29490() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES10.All _type = default(OpenTK.Graphics.ES10.All); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.ES10.GL.TexCoordPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_TexCoordPointer_29491() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES10.All _type = default(OpenTK.Graphics.ES10.All); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.ES10.GL.TexCoordPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_TexCoordPointer_29492() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES10.All _type = default(OpenTK.Graphics.ES10.All); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.ES10.GL.TexCoordPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_TexCoordPointer_29493() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES10.All _type = default(OpenTK.Graphics.ES10.All); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.ES10.GL.TexCoordPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_TexCoordPointer_29494() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES10.All _type = default(OpenTK.Graphics.ES10.All); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.ES10.GL.TexCoordPointer(_size,_type,_stride,ref _pointer); -} -static unsafe void Test_TexEnv_29495() { - OpenTK.Graphics.ES10.All _target = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.All _pname = default(OpenTK.Graphics.ES10.All); - System.Single _param = default(System.Single); - OpenTK.Graphics.ES10.GL.TexEnv(_target,_pname,_param); -} -static unsafe void Test_TexEnv_29496() { - OpenTK.Graphics.ES10.All _target = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.All _pname = default(OpenTK.Graphics.ES10.All); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES10.GL.TexEnv(_target,_pname,_params); -} -static unsafe void Test_TexEnv_29497() { - OpenTK.Graphics.ES10.All _target = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.All _pname = default(OpenTK.Graphics.ES10.All); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES10.GL.TexEnv(_target,_pname,_params); -} -static unsafe void Test_TexEnvx_29498() { - OpenTK.Graphics.ES10.All _target = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.All _pname = default(OpenTK.Graphics.ES10.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES10.GL.TexEnvx(_target,_pname,_param); -} -static unsafe void Test_TexEnvx_29499() { - OpenTK.Graphics.ES10.All _target = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.All _pname = default(OpenTK.Graphics.ES10.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES10.GL.TexEnvx(_target,_pname,_params); -} -static unsafe void Test_TexEnvx_29500() { - OpenTK.Graphics.ES10.All _target = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.All _pname = default(OpenTK.Graphics.ES10.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES10.GL.TexEnvx(_target,_pname,_params); -} -static unsafe void Test_TexImage2D_29501() { - OpenTK.Graphics.ES10.All _target = default(OpenTK.Graphics.ES10.All); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES10.All _format = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.All _type = default(OpenTK.Graphics.ES10.All); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.ES10.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage2D_29502() { - OpenTK.Graphics.ES10.All _target = default(OpenTK.Graphics.ES10.All); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES10.All _format = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.All _type = default(OpenTK.Graphics.ES10.All); - int[] _pixels = default(int[]); - OpenTK.Graphics.ES10.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage2D_29503() { - OpenTK.Graphics.ES10.All _target = default(OpenTK.Graphics.ES10.All); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES10.All _format = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.All _type = default(OpenTK.Graphics.ES10.All); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.ES10.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage2D_29504() { - OpenTK.Graphics.ES10.All _target = default(OpenTK.Graphics.ES10.All); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES10.All _format = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.All _type = default(OpenTK.Graphics.ES10.All); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.ES10.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage2D_29505() { - OpenTK.Graphics.ES10.All _target = default(OpenTK.Graphics.ES10.All); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES10.All _format = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.All _type = default(OpenTK.Graphics.ES10.All); - int _pixels = default(int); - OpenTK.Graphics.ES10.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,ref _pixels); -} -static unsafe void Test_TexParameter_29506() { - OpenTK.Graphics.ES10.All _target = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.All _pname = default(OpenTK.Graphics.ES10.All); - System.Single _param = default(System.Single); - OpenTK.Graphics.ES10.GL.TexParameter(_target,_pname,_param); -} -static unsafe void Test_TexParameterx_29507() { - OpenTK.Graphics.ES10.All _target = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.All _pname = default(OpenTK.Graphics.ES10.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES10.GL.TexParameterx(_target,_pname,_param); -} -static unsafe void Test_TexSubImage2D_29508() { - OpenTK.Graphics.ES10.All _target = default(OpenTK.Graphics.ES10.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES10.All _format = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.All _type = default(OpenTK.Graphics.ES10.All); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.ES10.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_29509() { - OpenTK.Graphics.ES10.All _target = default(OpenTK.Graphics.ES10.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES10.All _format = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.All _type = default(OpenTK.Graphics.ES10.All); - int[] _pixels = default(int[]); - OpenTK.Graphics.ES10.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_29510() { - OpenTK.Graphics.ES10.All _target = default(OpenTK.Graphics.ES10.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES10.All _format = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.All _type = default(OpenTK.Graphics.ES10.All); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.ES10.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_29511() { - OpenTK.Graphics.ES10.All _target = default(OpenTK.Graphics.ES10.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES10.All _format = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.All _type = default(OpenTK.Graphics.ES10.All); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.ES10.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_29512() { - OpenTK.Graphics.ES10.All _target = default(OpenTK.Graphics.ES10.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES10.All _format = default(OpenTK.Graphics.ES10.All); - OpenTK.Graphics.ES10.All _type = default(OpenTK.Graphics.ES10.All); - int _pixels = default(int); - OpenTK.Graphics.ES10.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,ref _pixels); -} -static unsafe void Test_Translate_29513() { - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.ES10.GL.Translate(_x,_y,_z); -} -static unsafe void Test_Translatex_29514() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - OpenTK.Graphics.ES10.GL.Translatex(_x,_y,_z); -} -static unsafe void Test_VertexPointer_29515() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES10.All _type = default(OpenTK.Graphics.ES10.All); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.ES10.GL.VertexPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexPointer_29516() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES10.All _type = default(OpenTK.Graphics.ES10.All); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.ES10.GL.VertexPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexPointer_29517() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES10.All _type = default(OpenTK.Graphics.ES10.All); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.ES10.GL.VertexPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexPointer_29518() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES10.All _type = default(OpenTK.Graphics.ES10.All); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.ES10.GL.VertexPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexPointer_29519() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES10.All _type = default(OpenTK.Graphics.ES10.All); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.ES10.GL.VertexPointer(_size,_type,_stride,ref _pointer); -} -static unsafe void Test_Viewport_29520() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES10.GL.Viewport(_x,_y,_width,_height); -} - -static void Test_All_29522() { - var _False = OpenTK.Graphics.ES10.All.False; - var _NoError = OpenTK.Graphics.ES10.All.NoError; - var _Zero = OpenTK.Graphics.ES10.All.Zero; - var _Points = OpenTK.Graphics.ES10.All.Points; - var _DepthBufferBit = OpenTK.Graphics.ES10.All.DepthBufferBit; - var _StencilBufferBit = OpenTK.Graphics.ES10.All.StencilBufferBit; - var _ColorBufferBit = OpenTK.Graphics.ES10.All.ColorBufferBit; - var _Lines = OpenTK.Graphics.ES10.All.Lines; - var _LineLoop = OpenTK.Graphics.ES10.All.LineLoop; - var _LineStrip = OpenTK.Graphics.ES10.All.LineStrip; - var _Triangles = OpenTK.Graphics.ES10.All.Triangles; - var _TriangleStrip = OpenTK.Graphics.ES10.All.TriangleStrip; - var _TriangleFan = OpenTK.Graphics.ES10.All.TriangleFan; - var _Add = OpenTK.Graphics.ES10.All.Add; - var _Never = OpenTK.Graphics.ES10.All.Never; - var _Less = OpenTK.Graphics.ES10.All.Less; - var _Equal = OpenTK.Graphics.ES10.All.Equal; - var _Lequal = OpenTK.Graphics.ES10.All.Lequal; - var _Greater = OpenTK.Graphics.ES10.All.Greater; - var _Notequal = OpenTK.Graphics.ES10.All.Notequal; - var _Gequal = OpenTK.Graphics.ES10.All.Gequal; - var _Always = OpenTK.Graphics.ES10.All.Always; - var _SrcColor = OpenTK.Graphics.ES10.All.SrcColor; - var _OneMinusSrcColor = OpenTK.Graphics.ES10.All.OneMinusSrcColor; - var _SrcAlpha = OpenTK.Graphics.ES10.All.SrcAlpha; - var _OneMinusSrcAlpha = OpenTK.Graphics.ES10.All.OneMinusSrcAlpha; - var _DstAlpha = OpenTK.Graphics.ES10.All.DstAlpha; - var _OneMinusDstAlpha = OpenTK.Graphics.ES10.All.OneMinusDstAlpha; - var _DstColor = OpenTK.Graphics.ES10.All.DstColor; - var _OneMinusDstColor = OpenTK.Graphics.ES10.All.OneMinusDstColor; - var _SrcAlphaSaturate = OpenTK.Graphics.ES10.All.SrcAlphaSaturate; - var _Front = OpenTK.Graphics.ES10.All.Front; - var _Back = OpenTK.Graphics.ES10.All.Back; - var _FrontAndBack = OpenTK.Graphics.ES10.All.FrontAndBack; - var _InvalidEnum = OpenTK.Graphics.ES10.All.InvalidEnum; - var _InvalidValue = OpenTK.Graphics.ES10.All.InvalidValue; - var _InvalidOperation = OpenTK.Graphics.ES10.All.InvalidOperation; - var _StackOverflow = OpenTK.Graphics.ES10.All.StackOverflow; - var _StackUnderflow = OpenTK.Graphics.ES10.All.StackUnderflow; - var _OutOfMemory = OpenTK.Graphics.ES10.All.OutOfMemory; - var _Exp = OpenTK.Graphics.ES10.All.Exp; - var _Exp2 = OpenTK.Graphics.ES10.All.Exp2; - var _Cw = OpenTK.Graphics.ES10.All.Cw; - var _Ccw = OpenTK.Graphics.ES10.All.Ccw; - var _PointSmooth = OpenTK.Graphics.ES10.All.PointSmooth; - var _SmoothPointSizeRange = OpenTK.Graphics.ES10.All.SmoothPointSizeRange; - var _LineSmooth = OpenTK.Graphics.ES10.All.LineSmooth; - var _SmoothLineWidthRange = OpenTK.Graphics.ES10.All.SmoothLineWidthRange; - var _CullFace = OpenTK.Graphics.ES10.All.CullFace; - var _Lighting = OpenTK.Graphics.ES10.All.Lighting; - var _LightModelTwoSide = OpenTK.Graphics.ES10.All.LightModelTwoSide; - var _LightModelAmbient = OpenTK.Graphics.ES10.All.LightModelAmbient; - var _ColorMaterial = OpenTK.Graphics.ES10.All.ColorMaterial; - var _Fog = OpenTK.Graphics.ES10.All.Fog; - var _FogDensity = OpenTK.Graphics.ES10.All.FogDensity; - var _FogStart = OpenTK.Graphics.ES10.All.FogStart; - var _FogEnd = OpenTK.Graphics.ES10.All.FogEnd; - var _FogMode = OpenTK.Graphics.ES10.All.FogMode; - var _FogColor = OpenTK.Graphics.ES10.All.FogColor; - var _DepthTest = OpenTK.Graphics.ES10.All.DepthTest; - var _StencilTest = OpenTK.Graphics.ES10.All.StencilTest; - var _Normalize = OpenTK.Graphics.ES10.All.Normalize; - var _AlphaTest = OpenTK.Graphics.ES10.All.AlphaTest; - var _Dither = OpenTK.Graphics.ES10.All.Dither; - var _Blend = OpenTK.Graphics.ES10.All.Blend; - var _ColorLogicOp = OpenTK.Graphics.ES10.All.ColorLogicOp; - var _ScissorTest = OpenTK.Graphics.ES10.All.ScissorTest; - var _PerspectiveCorrectionHint = OpenTK.Graphics.ES10.All.PerspectiveCorrectionHint; - var _PointSmoothHint = OpenTK.Graphics.ES10.All.PointSmoothHint; - var _LineSmoothHint = OpenTK.Graphics.ES10.All.LineSmoothHint; - var _PolygonSmoothHint = OpenTK.Graphics.ES10.All.PolygonSmoothHint; - var _FogHint = OpenTK.Graphics.ES10.All.FogHint; - var _UnpackAlignment = OpenTK.Graphics.ES10.All.UnpackAlignment; - var _PackAlignment = OpenTK.Graphics.ES10.All.PackAlignment; - var _MaxLights = OpenTK.Graphics.ES10.All.MaxLights; - var _MaxTextureSize = OpenTK.Graphics.ES10.All.MaxTextureSize; - var _MaxModelviewStackDepth = OpenTK.Graphics.ES10.All.MaxModelviewStackDepth; - var _MaxProjectionStackDepth = OpenTK.Graphics.ES10.All.MaxProjectionStackDepth; - var _MaxTextureStackDepth = OpenTK.Graphics.ES10.All.MaxTextureStackDepth; - var _MaxViewportDims = OpenTK.Graphics.ES10.All.MaxViewportDims; - var _SubpixelBits = OpenTK.Graphics.ES10.All.SubpixelBits; - var _RedBits = OpenTK.Graphics.ES10.All.RedBits; - var _GreenBits = OpenTK.Graphics.ES10.All.GreenBits; - var _BlueBits = OpenTK.Graphics.ES10.All.BlueBits; - var _AlphaBits = OpenTK.Graphics.ES10.All.AlphaBits; - var _DepthBits = OpenTK.Graphics.ES10.All.DepthBits; - var _StencilBits = OpenTK.Graphics.ES10.All.StencilBits; - var _Texture2D = OpenTK.Graphics.ES10.All.Texture2D; - var _DontCare = OpenTK.Graphics.ES10.All.DontCare; - var _Fastest = OpenTK.Graphics.ES10.All.Fastest; - var _Nicest = OpenTK.Graphics.ES10.All.Nicest; - var _Ambient = OpenTK.Graphics.ES10.All.Ambient; - var _Diffuse = OpenTK.Graphics.ES10.All.Diffuse; - var _Specular = OpenTK.Graphics.ES10.All.Specular; - var _Position = OpenTK.Graphics.ES10.All.Position; - var _SpotDirection = OpenTK.Graphics.ES10.All.SpotDirection; - var _SpotExponent = OpenTK.Graphics.ES10.All.SpotExponent; - var _SpotCutoff = OpenTK.Graphics.ES10.All.SpotCutoff; - var _ConstantAttenuation = OpenTK.Graphics.ES10.All.ConstantAttenuation; - var _LinearAttenuation = OpenTK.Graphics.ES10.All.LinearAttenuation; - var _QuadraticAttenuation = OpenTK.Graphics.ES10.All.QuadraticAttenuation; - var _Byte = OpenTK.Graphics.ES10.All.Byte; - var _UnsignedByte = OpenTK.Graphics.ES10.All.UnsignedByte; - var _Short = OpenTK.Graphics.ES10.All.Short; - var _UnsignedShort = OpenTK.Graphics.ES10.All.UnsignedShort; - var _Float = OpenTK.Graphics.ES10.All.Float; - var _Fixed = OpenTK.Graphics.ES10.All.Fixed; - var _Clear = OpenTK.Graphics.ES10.All.Clear; - var _And = OpenTK.Graphics.ES10.All.And; - var _AndReverse = OpenTK.Graphics.ES10.All.AndReverse; - var _Copy = OpenTK.Graphics.ES10.All.Copy; - var _AndInverted = OpenTK.Graphics.ES10.All.AndInverted; - var _Noop = OpenTK.Graphics.ES10.All.Noop; - var _Xor = OpenTK.Graphics.ES10.All.Xor; - var _Or = OpenTK.Graphics.ES10.All.Or; - var _Nor = OpenTK.Graphics.ES10.All.Nor; - var _Equiv = OpenTK.Graphics.ES10.All.Equiv; - var _Invert = OpenTK.Graphics.ES10.All.Invert; - var _OrReverse = OpenTK.Graphics.ES10.All.OrReverse; - var _CopyInverted = OpenTK.Graphics.ES10.All.CopyInverted; - var _OrInverted = OpenTK.Graphics.ES10.All.OrInverted; - var _Nand = OpenTK.Graphics.ES10.All.Nand; - var _Set = OpenTK.Graphics.ES10.All.Set; - var _Emission = OpenTK.Graphics.ES10.All.Emission; - var _Shininess = OpenTK.Graphics.ES10.All.Shininess; - var _AmbientAndDiffuse = OpenTK.Graphics.ES10.All.AmbientAndDiffuse; - var _Modelview = OpenTK.Graphics.ES10.All.Modelview; - var _Projection = OpenTK.Graphics.ES10.All.Projection; - var _Texture = OpenTK.Graphics.ES10.All.Texture; - var _Alpha = OpenTK.Graphics.ES10.All.Alpha; - var _Rgb = OpenTK.Graphics.ES10.All.Rgb; - var _Rgba = OpenTK.Graphics.ES10.All.Rgba; - var _Luminance = OpenTK.Graphics.ES10.All.Luminance; - var _LuminanceAlpha = OpenTK.Graphics.ES10.All.LuminanceAlpha; - var _Flat = OpenTK.Graphics.ES10.All.Flat; - var _Smooth = OpenTK.Graphics.ES10.All.Smooth; - var _Keep = OpenTK.Graphics.ES10.All.Keep; - var _Replace = OpenTK.Graphics.ES10.All.Replace; - var _Incr = OpenTK.Graphics.ES10.All.Incr; - var _Decr = OpenTK.Graphics.ES10.All.Decr; - var _Vendor = OpenTK.Graphics.ES10.All.Vendor; - var _Renderer = OpenTK.Graphics.ES10.All.Renderer; - var _Version = OpenTK.Graphics.ES10.All.Version; - var _Extensions = OpenTK.Graphics.ES10.All.Extensions; - var _Modulate = OpenTK.Graphics.ES10.All.Modulate; - var _Decal = OpenTK.Graphics.ES10.All.Decal; - var _TextureEnvMode = OpenTK.Graphics.ES10.All.TextureEnvMode; - var _TextureEnvColor = OpenTK.Graphics.ES10.All.TextureEnvColor; - var _TextureEnv = OpenTK.Graphics.ES10.All.TextureEnv; - var _Nearest = OpenTK.Graphics.ES10.All.Nearest; - var _Linear = OpenTK.Graphics.ES10.All.Linear; - var _NearestMipmapNearest = OpenTK.Graphics.ES10.All.NearestMipmapNearest; - var _LinearMipmapNearest = OpenTK.Graphics.ES10.All.LinearMipmapNearest; - var _NearestMipmapLinear = OpenTK.Graphics.ES10.All.NearestMipmapLinear; - var _LinearMipmapLinear = OpenTK.Graphics.ES10.All.LinearMipmapLinear; - var _TextureMagFilter = OpenTK.Graphics.ES10.All.TextureMagFilter; - var _TextureMinFilter = OpenTK.Graphics.ES10.All.TextureMinFilter; - var _TextureWrapS = OpenTK.Graphics.ES10.All.TextureWrapS; - var _TextureWrapT = OpenTK.Graphics.ES10.All.TextureWrapT; - var _Repeat = OpenTK.Graphics.ES10.All.Repeat; - var _Light0 = OpenTK.Graphics.ES10.All.Light0; - var _Light1 = OpenTK.Graphics.ES10.All.Light1; - var _Light2 = OpenTK.Graphics.ES10.All.Light2; - var _Light3 = OpenTK.Graphics.ES10.All.Light3; - var _Light4 = OpenTK.Graphics.ES10.All.Light4; - var _Light5 = OpenTK.Graphics.ES10.All.Light5; - var _Light6 = OpenTK.Graphics.ES10.All.Light6; - var _Light7 = OpenTK.Graphics.ES10.All.Light7; - var _UnsignedShort4444 = OpenTK.Graphics.ES10.All.UnsignedShort4444; - var _UnsignedShort5551 = OpenTK.Graphics.ES10.All.UnsignedShort5551; - var _PolygonOffsetFill = OpenTK.Graphics.ES10.All.PolygonOffsetFill; - var _RescaleNormal = OpenTK.Graphics.ES10.All.RescaleNormal; - var _VertexArray = OpenTK.Graphics.ES10.All.VertexArray; - var _NormalArray = OpenTK.Graphics.ES10.All.NormalArray; - var _ColorArray = OpenTK.Graphics.ES10.All.ColorArray; - var _TextureCoordArray = OpenTK.Graphics.ES10.All.TextureCoordArray; - var _Multisample = OpenTK.Graphics.ES10.All.Multisample; - var _SampleAlphaToCoverage = OpenTK.Graphics.ES10.All.SampleAlphaToCoverage; - var _SampleAlphaToOne = OpenTK.Graphics.ES10.All.SampleAlphaToOne; - var _SampleCoverage = OpenTK.Graphics.ES10.All.SampleCoverage; - var _MaxElementsVertices = OpenTK.Graphics.ES10.All.MaxElementsVertices; - var _MaxElementsIndices = OpenTK.Graphics.ES10.All.MaxElementsIndices; - var _ClampToEdge = OpenTK.Graphics.ES10.All.ClampToEdge; - var _UnsignedShort565 = OpenTK.Graphics.ES10.All.UnsignedShort565; - var _AliasedPointSizeRange = OpenTK.Graphics.ES10.All.AliasedPointSizeRange; - var _AliasedLineWidthRange = OpenTK.Graphics.ES10.All.AliasedLineWidthRange; - var _Texture0 = OpenTK.Graphics.ES10.All.Texture0; - var _Texture1 = OpenTK.Graphics.ES10.All.Texture1; - var _Texture2 = OpenTK.Graphics.ES10.All.Texture2; - var _Texture3 = OpenTK.Graphics.ES10.All.Texture3; - var _Texture4 = OpenTK.Graphics.ES10.All.Texture4; - var _Texture5 = OpenTK.Graphics.ES10.All.Texture5; - var _Texture6 = OpenTK.Graphics.ES10.All.Texture6; - var _Texture7 = OpenTK.Graphics.ES10.All.Texture7; - var _Texture8 = OpenTK.Graphics.ES10.All.Texture8; - var _Texture9 = OpenTK.Graphics.ES10.All.Texture9; - var _Texture10 = OpenTK.Graphics.ES10.All.Texture10; - var _Texture11 = OpenTK.Graphics.ES10.All.Texture11; - var _Texture12 = OpenTK.Graphics.ES10.All.Texture12; - var _Texture13 = OpenTK.Graphics.ES10.All.Texture13; - var _Texture14 = OpenTK.Graphics.ES10.All.Texture14; - var _Texture15 = OpenTK.Graphics.ES10.All.Texture15; - var _Texture16 = OpenTK.Graphics.ES10.All.Texture16; - var _Texture17 = OpenTK.Graphics.ES10.All.Texture17; - var _Texture18 = OpenTK.Graphics.ES10.All.Texture18; - var _Texture19 = OpenTK.Graphics.ES10.All.Texture19; - var _Texture20 = OpenTK.Graphics.ES10.All.Texture20; - var _Texture21 = OpenTK.Graphics.ES10.All.Texture21; - var _Texture22 = OpenTK.Graphics.ES10.All.Texture22; - var _Texture23 = OpenTK.Graphics.ES10.All.Texture23; - var _Texture24 = OpenTK.Graphics.ES10.All.Texture24; - var _Texture25 = OpenTK.Graphics.ES10.All.Texture25; - var _Texture26 = OpenTK.Graphics.ES10.All.Texture26; - var _Texture27 = OpenTK.Graphics.ES10.All.Texture27; - var _Texture28 = OpenTK.Graphics.ES10.All.Texture28; - var _Texture29 = OpenTK.Graphics.ES10.All.Texture29; - var _Texture30 = OpenTK.Graphics.ES10.All.Texture30; - var _Texture31 = OpenTK.Graphics.ES10.All.Texture31; - var _MaxTextureUnits = OpenTK.Graphics.ES10.All.MaxTextureUnits; - var _NumCompressedTextureFormats = OpenTK.Graphics.ES10.All.NumCompressedTextureFormats; - var _CompressedTextureFormats = OpenTK.Graphics.ES10.All.CompressedTextureFormats; - var _Palette4Rgb8Oes = OpenTK.Graphics.ES10.All.Palette4Rgb8Oes; - var _Palette4Rgba8Oes = OpenTK.Graphics.ES10.All.Palette4Rgba8Oes; - var _Palette4R5G6B5Oes = OpenTK.Graphics.ES10.All.Palette4R5G6B5Oes; - var _Palette4Rgba4Oes = OpenTK.Graphics.ES10.All.Palette4Rgba4Oes; - var _Palette4Rgb5A1Oes = OpenTK.Graphics.ES10.All.Palette4Rgb5A1Oes; - var _Palette8Rgb8Oes = OpenTK.Graphics.ES10.All.Palette8Rgb8Oes; - var _Palette8Rgba8Oes = OpenTK.Graphics.ES10.All.Palette8Rgba8Oes; - var _Palette8R5G6B5Oes = OpenTK.Graphics.ES10.All.Palette8R5G6B5Oes; - var _Palette8Rgba4Oes = OpenTK.Graphics.ES10.All.Palette8Rgba4Oes; - var _Palette8Rgb5A1Oes = OpenTK.Graphics.ES10.All.Palette8Rgb5A1Oes; - var _ImplementationColorReadTypeOes = OpenTK.Graphics.ES10.All.ImplementationColorReadTypeOes; - var _ImplementationColorReadFormatOes = OpenTK.Graphics.ES10.All.ImplementationColorReadFormatOes; - var _OesCompressedPalettedTexture = OpenTK.Graphics.ES10.All.OesCompressedPalettedTexture; - var _OesReadFormat = OpenTK.Graphics.ES10.All.OesReadFormat; - var _OesVersion10 = OpenTK.Graphics.ES10.All.OesVersion10; - var _One = OpenTK.Graphics.ES10.All.One; - var _True = OpenTK.Graphics.ES10.All.True; -} -static void Test_AlphaFunction_29523() { - var _Never = OpenTK.Graphics.ES10.AlphaFunction.Never; - var _Less = OpenTK.Graphics.ES10.AlphaFunction.Less; - var _Equal = OpenTK.Graphics.ES10.AlphaFunction.Equal; - var _Lequal = OpenTK.Graphics.ES10.AlphaFunction.Lequal; - var _Greater = OpenTK.Graphics.ES10.AlphaFunction.Greater; - var _Notequal = OpenTK.Graphics.ES10.AlphaFunction.Notequal; - var _Gequal = OpenTK.Graphics.ES10.AlphaFunction.Gequal; - var _Always = OpenTK.Graphics.ES10.AlphaFunction.Always; -} -static void Test_BeginMode_29524() { - var _Points = OpenTK.Graphics.ES10.BeginMode.Points; - var _Lines = OpenTK.Graphics.ES10.BeginMode.Lines; - var _LineLoop = OpenTK.Graphics.ES10.BeginMode.LineLoop; - var _LineStrip = OpenTK.Graphics.ES10.BeginMode.LineStrip; - var _Triangles = OpenTK.Graphics.ES10.BeginMode.Triangles; - var _TriangleStrip = OpenTK.Graphics.ES10.BeginMode.TriangleStrip; - var _TriangleFan = OpenTK.Graphics.ES10.BeginMode.TriangleFan; -} -static void Test_BlendingFactorDest_29525() { - var _Zero = OpenTK.Graphics.ES10.BlendingFactorDest.Zero; - var _SrcColor = OpenTK.Graphics.ES10.BlendingFactorDest.SrcColor; - var _OneMinusSrcColor = OpenTK.Graphics.ES10.BlendingFactorDest.OneMinusSrcColor; - var _SrcAlpha = OpenTK.Graphics.ES10.BlendingFactorDest.SrcAlpha; - var _OneMinusSrcAlpha = OpenTK.Graphics.ES10.BlendingFactorDest.OneMinusSrcAlpha; - var _DstAlpha = OpenTK.Graphics.ES10.BlendingFactorDest.DstAlpha; - var _OneMinusDstAlpha = OpenTK.Graphics.ES10.BlendingFactorDest.OneMinusDstAlpha; - var _One = OpenTK.Graphics.ES10.BlendingFactorDest.One; -} -static void Test_BlendingFactorSrc_29526() { - var _DstColor = OpenTK.Graphics.ES10.BlendingFactorSrc.DstColor; - var _OneMinusDstColor = OpenTK.Graphics.ES10.BlendingFactorSrc.OneMinusDstColor; - var _SrcAlphaSaturate = OpenTK.Graphics.ES10.BlendingFactorSrc.SrcAlphaSaturate; -} -static void Test_Boolean_29527() { - var _False = OpenTK.Graphics.ES10.Boolean.False; - var _True = OpenTK.Graphics.ES10.Boolean.True; -} -static void Test_ClearBufferMask_29528() { - var _DepthBufferBit = OpenTK.Graphics.ES10.ClearBufferMask.DepthBufferBit; - var _StencilBufferBit = OpenTK.Graphics.ES10.ClearBufferMask.StencilBufferBit; - var _ColorBufferBit = OpenTK.Graphics.ES10.ClearBufferMask.ColorBufferBit; -} -static void Test_CullFaceMode_29529() { - var _Front = OpenTK.Graphics.ES10.CullFaceMode.Front; - var _Back = OpenTK.Graphics.ES10.CullFaceMode.Back; - var _FrontAndBack = OpenTK.Graphics.ES10.CullFaceMode.FrontAndBack; -} -static void Test_DataType_29530() { - var _Byte = OpenTK.Graphics.ES10.DataType.Byte; - var _UnsignedByte = OpenTK.Graphics.ES10.DataType.UnsignedByte; - var _Short = OpenTK.Graphics.ES10.DataType.Short; - var _UnsignedShort = OpenTK.Graphics.ES10.DataType.UnsignedShort; - var _Float = OpenTK.Graphics.ES10.DataType.Float; - var _Fixed = OpenTK.Graphics.ES10.DataType.Fixed; -} -static void Test_EnableCap_29531() { - var _PointSmooth = OpenTK.Graphics.ES10.EnableCap.PointSmooth; - var _LineSmooth = OpenTK.Graphics.ES10.EnableCap.LineSmooth; - var _CullFace = OpenTK.Graphics.ES10.EnableCap.CullFace; - var _Lighting = OpenTK.Graphics.ES10.EnableCap.Lighting; - var _ColorMaterial = OpenTK.Graphics.ES10.EnableCap.ColorMaterial; - var _Fog = OpenTK.Graphics.ES10.EnableCap.Fog; - var _DepthTest = OpenTK.Graphics.ES10.EnableCap.DepthTest; - var _StencilTest = OpenTK.Graphics.ES10.EnableCap.StencilTest; - var _Normalize = OpenTK.Graphics.ES10.EnableCap.Normalize; - var _AlphaTest = OpenTK.Graphics.ES10.EnableCap.AlphaTest; - var _Dither = OpenTK.Graphics.ES10.EnableCap.Dither; - var _Blend = OpenTK.Graphics.ES10.EnableCap.Blend; - var _ColorLogicOp = OpenTK.Graphics.ES10.EnableCap.ColorLogicOp; - var _ScissorTest = OpenTK.Graphics.ES10.EnableCap.ScissorTest; - var _Texture2D = OpenTK.Graphics.ES10.EnableCap.Texture2D; - var _PolygonOffsetFill = OpenTK.Graphics.ES10.EnableCap.PolygonOffsetFill; - var _RescaleNormal = OpenTK.Graphics.ES10.EnableCap.RescaleNormal; - var _VertexArray = OpenTK.Graphics.ES10.EnableCap.VertexArray; - var _NormalArray = OpenTK.Graphics.ES10.EnableCap.NormalArray; - var _ColorArray = OpenTK.Graphics.ES10.EnableCap.ColorArray; - var _TextureCoordArray = OpenTK.Graphics.ES10.EnableCap.TextureCoordArray; - var _Multisample = OpenTK.Graphics.ES10.EnableCap.Multisample; - var _SampleAlphaToCoverage = OpenTK.Graphics.ES10.EnableCap.SampleAlphaToCoverage; - var _SampleAlphaToOne = OpenTK.Graphics.ES10.EnableCap.SampleAlphaToOne; - var _SampleCoverage = OpenTK.Graphics.ES10.EnableCap.SampleCoverage; -} -static void Test_ErrorCode_29532() { - var _NoError = OpenTK.Graphics.ES10.ErrorCode.NoError; - var _InvalidEnum = OpenTK.Graphics.ES10.ErrorCode.InvalidEnum; - var _InvalidValue = OpenTK.Graphics.ES10.ErrorCode.InvalidValue; - var _InvalidOperation = OpenTK.Graphics.ES10.ErrorCode.InvalidOperation; - var _StackOverflow = OpenTK.Graphics.ES10.ErrorCode.StackOverflow; - var _StackUnderflow = OpenTK.Graphics.ES10.ErrorCode.StackUnderflow; - var _OutOfMemory = OpenTK.Graphics.ES10.ErrorCode.OutOfMemory; -} -static void Test_Extensions_29533() { - var _OesCompressedPalettedTexture = OpenTK.Graphics.ES10.Extensions.OesCompressedPalettedTexture; - var _OesReadFormat = OpenTK.Graphics.ES10.Extensions.OesReadFormat; - var _OesVersion10 = OpenTK.Graphics.ES10.Extensions.OesVersion10; -} -static void Test_FogMode_29534() { - var _Exp = OpenTK.Graphics.ES10.FogMode.Exp; - var _Exp2 = OpenTK.Graphics.ES10.FogMode.Exp2; -} -static void Test_FogParameter_29535() { - var _FogDensity = OpenTK.Graphics.ES10.FogParameter.FogDensity; - var _FogStart = OpenTK.Graphics.ES10.FogParameter.FogStart; - var _FogEnd = OpenTK.Graphics.ES10.FogParameter.FogEnd; - var _FogMode = OpenTK.Graphics.ES10.FogParameter.FogMode; - var _FogColor = OpenTK.Graphics.ES10.FogParameter.FogColor; -} -static void Test_FrontFaceDirection_29536() { - var _Cw = OpenTK.Graphics.ES10.FrontFaceDirection.Cw; - var _Ccw = OpenTK.Graphics.ES10.FrontFaceDirection.Ccw; -} -static void Test_GetPName_29537() { - var _SmoothPointSizeRange = OpenTK.Graphics.ES10.GetPName.SmoothPointSizeRange; - var _SmoothLineWidthRange = OpenTK.Graphics.ES10.GetPName.SmoothLineWidthRange; - var _MaxLights = OpenTK.Graphics.ES10.GetPName.MaxLights; - var _MaxTextureSize = OpenTK.Graphics.ES10.GetPName.MaxTextureSize; - var _MaxModelviewStackDepth = OpenTK.Graphics.ES10.GetPName.MaxModelviewStackDepth; - var _MaxProjectionStackDepth = OpenTK.Graphics.ES10.GetPName.MaxProjectionStackDepth; - var _MaxTextureStackDepth = OpenTK.Graphics.ES10.GetPName.MaxTextureStackDepth; - var _MaxViewportDims = OpenTK.Graphics.ES10.GetPName.MaxViewportDims; - var _SubpixelBits = OpenTK.Graphics.ES10.GetPName.SubpixelBits; - var _RedBits = OpenTK.Graphics.ES10.GetPName.RedBits; - var _GreenBits = OpenTK.Graphics.ES10.GetPName.GreenBits; - var _BlueBits = OpenTK.Graphics.ES10.GetPName.BlueBits; - var _AlphaBits = OpenTK.Graphics.ES10.GetPName.AlphaBits; - var _DepthBits = OpenTK.Graphics.ES10.GetPName.DepthBits; - var _StencilBits = OpenTK.Graphics.ES10.GetPName.StencilBits; - var _MaxElementsVertices = OpenTK.Graphics.ES10.GetPName.MaxElementsVertices; - var _MaxElementsIndices = OpenTK.Graphics.ES10.GetPName.MaxElementsIndices; - var _AliasedPointSizeRange = OpenTK.Graphics.ES10.GetPName.AliasedPointSizeRange; - var _AliasedLineWidthRange = OpenTK.Graphics.ES10.GetPName.AliasedLineWidthRange; - var _MaxTextureUnits = OpenTK.Graphics.ES10.GetPName.MaxTextureUnits; - var _NumCompressedTextureFormats = OpenTK.Graphics.ES10.GetPName.NumCompressedTextureFormats; - var _CompressedTextureFormats = OpenTK.Graphics.ES10.GetPName.CompressedTextureFormats; - var _ImplementationColorReadTypeOes = OpenTK.Graphics.ES10.GetPName.ImplementationColorReadTypeOes; - var _ImplementationColorReadFormatOes = OpenTK.Graphics.ES10.GetPName.ImplementationColorReadFormatOes; -} -static void Test_HintMode_29538() { - var _DontCare = OpenTK.Graphics.ES10.HintMode.DontCare; - var _Fastest = OpenTK.Graphics.ES10.HintMode.Fastest; - var _Nicest = OpenTK.Graphics.ES10.HintMode.Nicest; -} -static void Test_HintTarget_29539() { - var _PerspectiveCorrectionHint = OpenTK.Graphics.ES10.HintTarget.PerspectiveCorrectionHint; - var _PointSmoothHint = OpenTK.Graphics.ES10.HintTarget.PointSmoothHint; - var _LineSmoothHint = OpenTK.Graphics.ES10.HintTarget.LineSmoothHint; - var _PolygonSmoothHint = OpenTK.Graphics.ES10.HintTarget.PolygonSmoothHint; - var _FogHint = OpenTK.Graphics.ES10.HintTarget.FogHint; -} -static void Test_LightModelParameter_29540() { - var _LightModelTwoSide = OpenTK.Graphics.ES10.LightModelParameter.LightModelTwoSide; - var _LightModelAmbient = OpenTK.Graphics.ES10.LightModelParameter.LightModelAmbient; -} -static void Test_LightName_29541() { - var _Light0 = OpenTK.Graphics.ES10.LightName.Light0; - var _Light1 = OpenTK.Graphics.ES10.LightName.Light1; - var _Light2 = OpenTK.Graphics.ES10.LightName.Light2; - var _Light3 = OpenTK.Graphics.ES10.LightName.Light3; - var _Light4 = OpenTK.Graphics.ES10.LightName.Light4; - var _Light5 = OpenTK.Graphics.ES10.LightName.Light5; - var _Light6 = OpenTK.Graphics.ES10.LightName.Light6; - var _Light7 = OpenTK.Graphics.ES10.LightName.Light7; -} -static void Test_LightParameter_29542() { - var _Ambient = OpenTK.Graphics.ES10.LightParameter.Ambient; - var _Diffuse = OpenTK.Graphics.ES10.LightParameter.Diffuse; - var _Specular = OpenTK.Graphics.ES10.LightParameter.Specular; - var _Position = OpenTK.Graphics.ES10.LightParameter.Position; - var _SpotDirection = OpenTK.Graphics.ES10.LightParameter.SpotDirection; - var _SpotExponent = OpenTK.Graphics.ES10.LightParameter.SpotExponent; - var _SpotCutoff = OpenTK.Graphics.ES10.LightParameter.SpotCutoff; - var _ConstantAttenuation = OpenTK.Graphics.ES10.LightParameter.ConstantAttenuation; - var _LinearAttenuation = OpenTK.Graphics.ES10.LightParameter.LinearAttenuation; - var _QuadraticAttenuation = OpenTK.Graphics.ES10.LightParameter.QuadraticAttenuation; -} -static void Test_LogicOp_29543() { - var _Clear = OpenTK.Graphics.ES10.LogicOp.Clear; - var _And = OpenTK.Graphics.ES10.LogicOp.And; - var _AndReverse = OpenTK.Graphics.ES10.LogicOp.AndReverse; - var _Copy = OpenTK.Graphics.ES10.LogicOp.Copy; - var _AndInverted = OpenTK.Graphics.ES10.LogicOp.AndInverted; - var _Noop = OpenTK.Graphics.ES10.LogicOp.Noop; - var _Xor = OpenTK.Graphics.ES10.LogicOp.Xor; - var _Or = OpenTK.Graphics.ES10.LogicOp.Or; - var _Nor = OpenTK.Graphics.ES10.LogicOp.Nor; - var _Equiv = OpenTK.Graphics.ES10.LogicOp.Equiv; - var _Invert = OpenTK.Graphics.ES10.LogicOp.Invert; - var _OrReverse = OpenTK.Graphics.ES10.LogicOp.OrReverse; - var _CopyInverted = OpenTK.Graphics.ES10.LogicOp.CopyInverted; - var _OrInverted = OpenTK.Graphics.ES10.LogicOp.OrInverted; - var _Nand = OpenTK.Graphics.ES10.LogicOp.Nand; - var _Set = OpenTK.Graphics.ES10.LogicOp.Set; -} -static void Test_MaterialParameter_29544() { - var _Emission = OpenTK.Graphics.ES10.MaterialParameter.Emission; - var _Shininess = OpenTK.Graphics.ES10.MaterialParameter.Shininess; - var _AmbientAndDiffuse = OpenTK.Graphics.ES10.MaterialParameter.AmbientAndDiffuse; -} -static void Test_MatrixMode_29545() { - var _Modelview = OpenTK.Graphics.ES10.MatrixMode.Modelview; - var _Projection = OpenTK.Graphics.ES10.MatrixMode.Projection; - var _Texture = OpenTK.Graphics.ES10.MatrixMode.Texture; -} -static void Test_PixelFormat_29546() { - var _Alpha = OpenTK.Graphics.ES10.PixelFormat.Alpha; - var _Rgb = OpenTK.Graphics.ES10.PixelFormat.Rgb; - var _Rgba = OpenTK.Graphics.ES10.PixelFormat.Rgba; - var _Luminance = OpenTK.Graphics.ES10.PixelFormat.Luminance; - var _LuminanceAlpha = OpenTK.Graphics.ES10.PixelFormat.LuminanceAlpha; -} -static void Test_PixelInternalFormat_29547() { - var _Palette4Rgb8Oes = OpenTK.Graphics.ES10.PixelInternalFormat.Palette4Rgb8Oes; - var _Palette4Rgba8Oes = OpenTK.Graphics.ES10.PixelInternalFormat.Palette4Rgba8Oes; - var _Palette4R5G6B5Oes = OpenTK.Graphics.ES10.PixelInternalFormat.Palette4R5G6B5Oes; - var _Palette4Rgba4Oes = OpenTK.Graphics.ES10.PixelInternalFormat.Palette4Rgba4Oes; - var _Palette4Rgb5A1Oes = OpenTK.Graphics.ES10.PixelInternalFormat.Palette4Rgb5A1Oes; - var _Palette8Rgb8Oes = OpenTK.Graphics.ES10.PixelInternalFormat.Palette8Rgb8Oes; - var _Palette8Rgba8Oes = OpenTK.Graphics.ES10.PixelInternalFormat.Palette8Rgba8Oes; - var _Palette8R5G6B5Oes = OpenTK.Graphics.ES10.PixelInternalFormat.Palette8R5G6B5Oes; - var _Palette8Rgba4Oes = OpenTK.Graphics.ES10.PixelInternalFormat.Palette8Rgba4Oes; - var _Palette8Rgb5A1Oes = OpenTK.Graphics.ES10.PixelInternalFormat.Palette8Rgb5A1Oes; -} -static void Test_PixelStoreParameter_29548() { - var _UnpackAlignment = OpenTK.Graphics.ES10.PixelStoreParameter.UnpackAlignment; - var _PackAlignment = OpenTK.Graphics.ES10.PixelStoreParameter.PackAlignment; -} -static void Test_PixelType_29549() { - var _UnsignedShort4444 = OpenTK.Graphics.ES10.PixelType.UnsignedShort4444; - var _UnsignedShort5551 = OpenTK.Graphics.ES10.PixelType.UnsignedShort5551; - var _UnsignedShort565 = OpenTK.Graphics.ES10.PixelType.UnsignedShort565; -} -static void Test_ShadingModel_29550() { - var _Flat = OpenTK.Graphics.ES10.ShadingModel.Flat; - var _Smooth = OpenTK.Graphics.ES10.ShadingModel.Smooth; -} -static void Test_StencilOp_29551() { - var _Keep = OpenTK.Graphics.ES10.StencilOp.Keep; - var _Replace = OpenTK.Graphics.ES10.StencilOp.Replace; - var _Incr = OpenTK.Graphics.ES10.StencilOp.Incr; - var _Decr = OpenTK.Graphics.ES10.StencilOp.Decr; -} -static void Test_StringName_29552() { - var _Vendor = OpenTK.Graphics.ES10.StringName.Vendor; - var _Renderer = OpenTK.Graphics.ES10.StringName.Renderer; - var _Version = OpenTK.Graphics.ES10.StringName.Version; - var _Extensions = OpenTK.Graphics.ES10.StringName.Extensions; -} -static void Test_TextureEnvMode_29553() { - var _Add = OpenTK.Graphics.ES10.TextureEnvMode.Add; - var _Modulate = OpenTK.Graphics.ES10.TextureEnvMode.Modulate; - var _Decal = OpenTK.Graphics.ES10.TextureEnvMode.Decal; -} -static void Test_TextureEnvParameter_29554() { - var _TextureEnvMode = OpenTK.Graphics.ES10.TextureEnvParameter.TextureEnvMode; - var _TextureEnvColor = OpenTK.Graphics.ES10.TextureEnvParameter.TextureEnvColor; -} -static void Test_TextureEnvTarget_29555() { - var _TextureEnv = OpenTK.Graphics.ES10.TextureEnvTarget.TextureEnv; -} -static void Test_TextureMagFilter_29556() { - var _Nearest = OpenTK.Graphics.ES10.TextureMagFilter.Nearest; - var _Linear = OpenTK.Graphics.ES10.TextureMagFilter.Linear; -} -static void Test_TextureMinFilter_29557() { - var _NearestMipmapNearest = OpenTK.Graphics.ES10.TextureMinFilter.NearestMipmapNearest; - var _LinearMipmapNearest = OpenTK.Graphics.ES10.TextureMinFilter.LinearMipmapNearest; - var _NearestMipmapLinear = OpenTK.Graphics.ES10.TextureMinFilter.NearestMipmapLinear; - var _LinearMipmapLinear = OpenTK.Graphics.ES10.TextureMinFilter.LinearMipmapLinear; -} -static void Test_TextureParameterName_29558() { - var _TextureMagFilter = OpenTK.Graphics.ES10.TextureParameterName.TextureMagFilter; - var _TextureMinFilter = OpenTK.Graphics.ES10.TextureParameterName.TextureMinFilter; - var _TextureWrapS = OpenTK.Graphics.ES10.TextureParameterName.TextureWrapS; - var _TextureWrapT = OpenTK.Graphics.ES10.TextureParameterName.TextureWrapT; -} -static void Test_TextureUnit_29559() { - var _Texture0 = OpenTK.Graphics.ES10.TextureUnit.Texture0; - var _Texture1 = OpenTK.Graphics.ES10.TextureUnit.Texture1; - var _Texture2 = OpenTK.Graphics.ES10.TextureUnit.Texture2; - var _Texture3 = OpenTK.Graphics.ES10.TextureUnit.Texture3; - var _Texture4 = OpenTK.Graphics.ES10.TextureUnit.Texture4; - var _Texture5 = OpenTK.Graphics.ES10.TextureUnit.Texture5; - var _Texture6 = OpenTK.Graphics.ES10.TextureUnit.Texture6; - var _Texture7 = OpenTK.Graphics.ES10.TextureUnit.Texture7; - var _Texture8 = OpenTK.Graphics.ES10.TextureUnit.Texture8; - var _Texture9 = OpenTK.Graphics.ES10.TextureUnit.Texture9; - var _Texture10 = OpenTK.Graphics.ES10.TextureUnit.Texture10; - var _Texture11 = OpenTK.Graphics.ES10.TextureUnit.Texture11; - var _Texture12 = OpenTK.Graphics.ES10.TextureUnit.Texture12; - var _Texture13 = OpenTK.Graphics.ES10.TextureUnit.Texture13; - var _Texture14 = OpenTK.Graphics.ES10.TextureUnit.Texture14; - var _Texture15 = OpenTK.Graphics.ES10.TextureUnit.Texture15; - var _Texture16 = OpenTK.Graphics.ES10.TextureUnit.Texture16; - var _Texture17 = OpenTK.Graphics.ES10.TextureUnit.Texture17; - var _Texture18 = OpenTK.Graphics.ES10.TextureUnit.Texture18; - var _Texture19 = OpenTK.Graphics.ES10.TextureUnit.Texture19; - var _Texture20 = OpenTK.Graphics.ES10.TextureUnit.Texture20; - var _Texture21 = OpenTK.Graphics.ES10.TextureUnit.Texture21; - var _Texture22 = OpenTK.Graphics.ES10.TextureUnit.Texture22; - var _Texture23 = OpenTK.Graphics.ES10.TextureUnit.Texture23; - var _Texture24 = OpenTK.Graphics.ES10.TextureUnit.Texture24; - var _Texture25 = OpenTK.Graphics.ES10.TextureUnit.Texture25; - var _Texture26 = OpenTK.Graphics.ES10.TextureUnit.Texture26; - var _Texture27 = OpenTK.Graphics.ES10.TextureUnit.Texture27; - var _Texture28 = OpenTK.Graphics.ES10.TextureUnit.Texture28; - var _Texture29 = OpenTK.Graphics.ES10.TextureUnit.Texture29; - var _Texture30 = OpenTK.Graphics.ES10.TextureUnit.Texture30; - var _Texture31 = OpenTK.Graphics.ES10.TextureUnit.Texture31; -} -static void Test_TextureWrapMode_29560() { - var _Repeat = OpenTK.Graphics.ES10.TextureWrapMode.Repeat; - var _ClampToEdge = OpenTK.Graphics.ES10.TextureWrapMode.ClampToEdge; -} - -static unsafe void Test_ActiveTexture_29562() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.GL.ActiveTexture(_texture); -} -static unsafe void Test_ActiveTexture_29563() { - OpenTK.Graphics.ES11.TextureUnit _texture = default(OpenTK.Graphics.ES11.TextureUnit); - OpenTK.Graphics.ES11.GL.ActiveTexture(_texture); -} -static unsafe void Test_AlphaFunc_29564() { - OpenTK.Graphics.ES11.All _func = default(OpenTK.Graphics.ES11.All); - System.Single _ref = default(System.Single); - OpenTK.Graphics.ES11.GL.AlphaFunc(_func,_ref); -} -static unsafe void Test_AlphaFunc_29565() { - OpenTK.Graphics.ES11.AlphaFunction _func = default(OpenTK.Graphics.ES11.AlphaFunction); - System.Single _ref = default(System.Single); - OpenTK.Graphics.ES11.GL.AlphaFunc(_func,_ref); -} -static unsafe void Test_AlphaFuncx_29566() { - OpenTK.Graphics.ES11.All _func = default(OpenTK.Graphics.ES11.All); - System.Int32 _ref = default(System.Int32); - OpenTK.Graphics.ES11.GL.AlphaFuncx(_func,_ref); -} -static unsafe void Test_BindBuffer_29567() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.ES11.GL.BindBuffer(_target,_buffer); -} -static unsafe void Test_BindBuffer_29568() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.ES11.GL.BindBuffer(_target,_buffer); -} -static unsafe void Test_BindTexture_29569() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.ES11.GL.BindTexture(_target,_texture); -} -static unsafe void Test_BindTexture_29570() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.ES11.GL.BindTexture(_target,_texture); -} -static unsafe void Test_BindTexture_29571() { - OpenTK.Graphics.ES11.TextureTarget _target = default(OpenTK.Graphics.ES11.TextureTarget); - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.ES11.GL.BindTexture(_target,_texture); -} -static unsafe void Test_BindTexture_29572() { - OpenTK.Graphics.ES11.TextureTarget _target = default(OpenTK.Graphics.ES11.TextureTarget); - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.ES11.GL.BindTexture(_target,_texture); -} -static unsafe void Test_BlendFunc_29573() { - OpenTK.Graphics.ES11.All _sfactor = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _dfactor = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.GL.BlendFunc(_sfactor,_dfactor); -} -static unsafe void Test_BlendFunc_29574() { - OpenTK.Graphics.ES11.BlendingFactorSrc _sfactor = default(OpenTK.Graphics.ES11.BlendingFactorSrc); - OpenTK.Graphics.ES11.BlendingFactorDest _dfactor = default(OpenTK.Graphics.ES11.BlendingFactorDest); - OpenTK.Graphics.ES11.GL.BlendFunc(_sfactor,_dfactor); -} -static unsafe void Test_BufferData_29575() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.IntPtr _size = default(System.IntPtr); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES11.All _usage = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.GL.BufferData(_target,_size,_data,_usage); -} -static unsafe void Test_BufferData_29576() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.IntPtr _size = default(System.IntPtr); - int[] _data = default(int[]); - OpenTK.Graphics.ES11.All _usage = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.GL.BufferData(_target,_size,_data,_usage); -} -static unsafe void Test_BufferData_29577() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.IntPtr _size = default(System.IntPtr); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES11.All _usage = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.GL.BufferData(_target,_size,_data,_usage); -} -static unsafe void Test_BufferData_29578() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.IntPtr _size = default(System.IntPtr); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES11.All _usage = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.GL.BufferData(_target,_size,_data,_usage); -} -static unsafe void Test_BufferData_29579() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.IntPtr _size = default(System.IntPtr); - int _data = default(int); - OpenTK.Graphics.ES11.All _usage = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.GL.BufferData(_target,_size,ref _data,_usage); -} -static unsafe void Test_BufferSubData_29580() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES11.GL.BufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_BufferSubData_29581() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[] _data = default(int[]); - OpenTK.Graphics.ES11.GL.BufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_BufferSubData_29582() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES11.GL.BufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_BufferSubData_29583() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES11.GL.BufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_BufferSubData_29584() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int _data = default(int); - OpenTK.Graphics.ES11.GL.BufferSubData(_target,_offset,_size,ref _data); -} -static unsafe void Test_Clear_29585() { - OpenTK.Graphics.ES11.All _mask = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.GL.Clear(_mask); -} -static unsafe void Test_Clear_29586() { - OpenTK.Graphics.ES11.ClearBufferMask _mask = default(OpenTK.Graphics.ES11.ClearBufferMask); - OpenTK.Graphics.ES11.GL.Clear(_mask); -} -static unsafe void Test_Clear_29587() { - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.ES11.GL.Clear(_mask); -} -static unsafe void Test_Clear_29588() { - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.ES11.GL.Clear(_mask); -} -static unsafe void Test_ClearColor_29589() { - System.Single _red = default(System.Single); - System.Single _green = default(System.Single); - System.Single _blue = default(System.Single); - System.Single _alpha = default(System.Single); - OpenTK.Graphics.ES11.GL.ClearColor(_red,_green,_blue,_alpha); -} -static unsafe void Test_ClearColorx_29590() { - System.Int32 _red = default(System.Int32); - System.Int32 _green = default(System.Int32); - System.Int32 _blue = default(System.Int32); - System.Int32 _alpha = default(System.Int32); - OpenTK.Graphics.ES11.GL.ClearColorx(_red,_green,_blue,_alpha); -} -static unsafe void Test_ClearDepth_29591() { - System.Single _d = default(System.Single); - OpenTK.Graphics.ES11.GL.ClearDepth(_d); -} -static unsafe void Test_ClearDepthx_29592() { - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES11.GL.ClearDepthx(_depth); -} -static unsafe void Test_ClearStencil_29593() { - System.Int32 _s = default(System.Int32); - OpenTK.Graphics.ES11.GL.ClearStencil(_s); -} -static unsafe void Test_ClientActiveTexture_29594() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.GL.ClientActiveTexture(_texture); -} -static unsafe void Test_ClientActiveTexture_29595() { - OpenTK.Graphics.ES11.TextureUnit _texture = default(OpenTK.Graphics.ES11.TextureUnit); - OpenTK.Graphics.ES11.GL.ClientActiveTexture(_texture); -} -static unsafe void Test_ClipPlane_29596() { - OpenTK.Graphics.ES11.All _p = default(OpenTK.Graphics.ES11.All); - System.Single[] _eqn = default(System.Single[]); - OpenTK.Graphics.ES11.GL.ClipPlane(_p,_eqn); -} -static unsafe void Test_ClipPlane_29597() { - OpenTK.Graphics.ES11.All _p = default(OpenTK.Graphics.ES11.All); - System.Single _eqn = default(System.Single); - OpenTK.Graphics.ES11.GL.ClipPlane(_p,ref _eqn); -} -static unsafe void Test_ClipPlane_29598() { - OpenTK.Graphics.ES11.All _p = default(OpenTK.Graphics.ES11.All); - System.Single* _eqn = default(System.Single*); - OpenTK.Graphics.ES11.GL.ClipPlane(_p,_eqn); -} -static unsafe void Test_ClipPlanex_29599() { - OpenTK.Graphics.ES11.All _plane = default(OpenTK.Graphics.ES11.All); - System.Int32[] _equation = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.ClipPlanex(_plane,_equation); -} -static unsafe void Test_ClipPlanex_29600() { - OpenTK.Graphics.ES11.All _plane = default(OpenTK.Graphics.ES11.All); - System.Int32 _equation = default(System.Int32); - OpenTK.Graphics.ES11.GL.ClipPlanex(_plane,ref _equation); -} -static unsafe void Test_ClipPlanex_29601() { - OpenTK.Graphics.ES11.All _plane = default(OpenTK.Graphics.ES11.All); - System.Int32* _equation = default(System.Int32*); - OpenTK.Graphics.ES11.GL.ClipPlanex(_plane,_equation); -} -static unsafe void Test_Color4_29602() { - System.Single _red = default(System.Single); - System.Single _green = default(System.Single); - System.Single _blue = default(System.Single); - System.Single _alpha = default(System.Single); - OpenTK.Graphics.ES11.GL.Color4(_red,_green,_blue,_alpha); -} -static unsafe void Test_Color4_29603() { - System.Byte _red = default(System.Byte); - System.Byte _green = default(System.Byte); - System.Byte _blue = default(System.Byte); - System.Byte _alpha = default(System.Byte); - OpenTK.Graphics.ES11.GL.Color4(_red,_green,_blue,_alpha); -} -static unsafe void Test_Color4x_29604() { - System.Int32 _red = default(System.Int32); - System.Int32 _green = default(System.Int32); - System.Int32 _blue = default(System.Int32); - System.Int32 _alpha = default(System.Int32); - OpenTK.Graphics.ES11.GL.Color4x(_red,_green,_blue,_alpha); -} -static unsafe void Test_ColorMask_29605() { - System.Boolean _red = default(System.Boolean); - System.Boolean _green = default(System.Boolean); - System.Boolean _blue = default(System.Boolean); - System.Boolean _alpha = default(System.Boolean); - OpenTK.Graphics.ES11.GL.ColorMask(_red,_green,_blue,_alpha); -} -static unsafe void Test_ColorPointer_29606() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.ES11.GL.ColorPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_ColorPointer_29607() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.ES11.GL.ColorPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_ColorPointer_29608() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.ES11.GL.ColorPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_ColorPointer_29609() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.ES11.GL.ColorPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_ColorPointer_29610() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.ES11.GL.ColorPointer(_size,_type,_stride,ref _pointer); -} -static unsafe void Test_ColorPointer_29611() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.ColorPointerType _type = default(OpenTK.Graphics.ES11.ColorPointerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.ES11.GL.ColorPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_ColorPointer_29612() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.ColorPointerType _type = default(OpenTK.Graphics.ES11.ColorPointerType); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.ES11.GL.ColorPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_ColorPointer_29613() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.ColorPointerType _type = default(OpenTK.Graphics.ES11.ColorPointerType); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.ES11.GL.ColorPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_ColorPointer_29614() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.ColorPointerType _type = default(OpenTK.Graphics.ES11.ColorPointerType); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.ES11.GL.ColorPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_ColorPointer_29615() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.ColorPointerType _type = default(OpenTK.Graphics.ES11.ColorPointerType); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.ES11.GL.ColorPointer(_size,_type,_stride,ref _pointer); -} -static unsafe void Test_CompressedTexImage2D_29616() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES11.All _internalformat = default(OpenTK.Graphics.ES11.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES11.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_29617() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES11.All _internalformat = default(OpenTK.Graphics.ES11.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.ES11.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_29618() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES11.All _internalformat = default(OpenTK.Graphics.ES11.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES11.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_29619() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES11.All _internalformat = default(OpenTK.Graphics.ES11.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES11.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_29620() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES11.All _internalformat = default(OpenTK.Graphics.ES11.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.ES11.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,ref _data); -} -static unsafe void Test_CompressedTexImage2D_29621() { - OpenTK.Graphics.ES11.TextureTarget _target = default(OpenTK.Graphics.ES11.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES11.All _internalformat = default(OpenTK.Graphics.ES11.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES11.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_29622() { - OpenTK.Graphics.ES11.TextureTarget _target = default(OpenTK.Graphics.ES11.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES11.All _internalformat = default(OpenTK.Graphics.ES11.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.ES11.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_29623() { - OpenTK.Graphics.ES11.TextureTarget _target = default(OpenTK.Graphics.ES11.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES11.All _internalformat = default(OpenTK.Graphics.ES11.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES11.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_29624() { - OpenTK.Graphics.ES11.TextureTarget _target = default(OpenTK.Graphics.ES11.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES11.All _internalformat = default(OpenTK.Graphics.ES11.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES11.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_29625() { - OpenTK.Graphics.ES11.TextureTarget _target = default(OpenTK.Graphics.ES11.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES11.All _internalformat = default(OpenTK.Graphics.ES11.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.ES11.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,ref _data); -} -static unsafe void Test_CompressedTexSubImage2D_29626() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.All _format = default(OpenTK.Graphics.ES11.All); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES11.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_29627() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.All _format = default(OpenTK.Graphics.ES11.All); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.ES11.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_29628() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.All _format = default(OpenTK.Graphics.ES11.All); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES11.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_29629() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.All _format = default(OpenTK.Graphics.ES11.All); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES11.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_29630() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.All _format = default(OpenTK.Graphics.ES11.All); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.ES11.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,ref _data); -} -static unsafe void Test_CompressedTexSubImage2D_29631() { - OpenTK.Graphics.ES11.TextureTarget _target = default(OpenTK.Graphics.ES11.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.PixelFormat _format = default(OpenTK.Graphics.ES11.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES11.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_29632() { - OpenTK.Graphics.ES11.TextureTarget _target = default(OpenTK.Graphics.ES11.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.PixelFormat _format = default(OpenTK.Graphics.ES11.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.ES11.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_29633() { - OpenTK.Graphics.ES11.TextureTarget _target = default(OpenTK.Graphics.ES11.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.PixelFormat _format = default(OpenTK.Graphics.ES11.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES11.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_29634() { - OpenTK.Graphics.ES11.TextureTarget _target = default(OpenTK.Graphics.ES11.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.PixelFormat _format = default(OpenTK.Graphics.ES11.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES11.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_29635() { - OpenTK.Graphics.ES11.TextureTarget _target = default(OpenTK.Graphics.ES11.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.PixelFormat _format = default(OpenTK.Graphics.ES11.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.ES11.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,ref _data); -} -static unsafe void Test_CopyTexImage2D_29636() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES11.All _internalformat = default(OpenTK.Graphics.ES11.All); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES11.GL.CopyTexImage2D(_target,_level,_internalformat,_x,_y,_width,_height,_border); -} -static unsafe void Test_CopyTexImage2D_29637() { - OpenTK.Graphics.ES11.TextureTarget _target = default(OpenTK.Graphics.ES11.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES11.All _internalformat = default(OpenTK.Graphics.ES11.All); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES11.GL.CopyTexImage2D(_target,_level,_internalformat,_x,_y,_width,_height,_border); -} -static unsafe void Test_CopyTexSubImage2D_29638() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.GL.CopyTexSubImage2D(_target,_level,_xoffset,_yoffset,_x,_y,_width,_height); -} -static unsafe void Test_CopyTexSubImage2D_29639() { - OpenTK.Graphics.ES11.TextureTarget _target = default(OpenTK.Graphics.ES11.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.GL.CopyTexSubImage2D(_target,_level,_xoffset,_yoffset,_x,_y,_width,_height); -} -static unsafe void Test_CullFace_29640() { - OpenTK.Graphics.ES11.All _mode = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.GL.CullFace(_mode); -} -static unsafe void Test_CullFace_29641() { - OpenTK.Graphics.ES11.CullFaceMode _mode = default(OpenTK.Graphics.ES11.CullFaceMode); - OpenTK.Graphics.ES11.GL.CullFace(_mode); -} -static unsafe void Test_DeleteBuffer_29642() { - System.Int32 _buffers = default(System.Int32); - OpenTK.Graphics.ES11.GL.DeleteBuffer(_buffers); -} -static unsafe void Test_DeleteBuffer_29643() { - System.UInt32 _buffers = default(System.UInt32); - OpenTK.Graphics.ES11.GL.DeleteBuffer(_buffers); -} -static unsafe void Test_DeleteBuffers_29644() { - System.Int32 _n = default(System.Int32); - System.Int32[] _buffers = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.DeleteBuffers(_n,_buffers); -} -static unsafe void Test_DeleteBuffers_29645() { - System.Int32 _n = default(System.Int32); - System.Int32 _buffers = default(System.Int32); - OpenTK.Graphics.ES11.GL.DeleteBuffers(_n,ref _buffers); -} -static unsafe void Test_DeleteBuffers_29646() { - System.Int32 _n = default(System.Int32); - System.Int32* _buffers = default(System.Int32*); - OpenTK.Graphics.ES11.GL.DeleteBuffers(_n,_buffers); -} -static unsafe void Test_DeleteBuffers_29647() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _buffers = default(System.UInt32[]); - OpenTK.Graphics.ES11.GL.DeleteBuffers(_n,_buffers); -} -static unsafe void Test_DeleteBuffers_29648() { - System.Int32 _n = default(System.Int32); - System.UInt32 _buffers = default(System.UInt32); - OpenTK.Graphics.ES11.GL.DeleteBuffers(_n,ref _buffers); -} -static unsafe void Test_DeleteBuffers_29649() { - System.Int32 _n = default(System.Int32); - System.UInt32* _buffers = default(System.UInt32*); - OpenTK.Graphics.ES11.GL.DeleteBuffers(_n,_buffers); -} -static unsafe void Test_DeleteTexture_29650() { - System.Int32 _textures = default(System.Int32); - OpenTK.Graphics.ES11.GL.DeleteTexture(_textures); -} -static unsafe void Test_DeleteTexture_29651() { - System.UInt32 _textures = default(System.UInt32); - OpenTK.Graphics.ES11.GL.DeleteTexture(_textures); -} -static unsafe void Test_DeleteTextures_29652() { - System.Int32 _n = default(System.Int32); - System.Int32[] _textures = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.DeleteTextures(_n,_textures); -} -static unsafe void Test_DeleteTextures_29653() { - System.Int32 _n = default(System.Int32); - System.Int32 _textures = default(System.Int32); - OpenTK.Graphics.ES11.GL.DeleteTextures(_n,ref _textures); -} -static unsafe void Test_DeleteTextures_29654() { - System.Int32 _n = default(System.Int32); - System.Int32* _textures = default(System.Int32*); - OpenTK.Graphics.ES11.GL.DeleteTextures(_n,_textures); -} -static unsafe void Test_DeleteTextures_29655() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _textures = default(System.UInt32[]); - OpenTK.Graphics.ES11.GL.DeleteTextures(_n,_textures); -} -static unsafe void Test_DeleteTextures_29656() { - System.Int32 _n = default(System.Int32); - System.UInt32 _textures = default(System.UInt32); - OpenTK.Graphics.ES11.GL.DeleteTextures(_n,ref _textures); -} -static unsafe void Test_DeleteTextures_29657() { - System.Int32 _n = default(System.Int32); - System.UInt32* _textures = default(System.UInt32*); - OpenTK.Graphics.ES11.GL.DeleteTextures(_n,_textures); -} -static unsafe void Test_DepthFunc_29658() { - OpenTK.Graphics.ES11.All _func = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.GL.DepthFunc(_func); -} -static unsafe void Test_DepthFunc_29659() { - OpenTK.Graphics.ES11.DepthFunction _func = default(OpenTK.Graphics.ES11.DepthFunction); - OpenTK.Graphics.ES11.GL.DepthFunc(_func); -} -static unsafe void Test_DepthMask_29660() { - System.Boolean _flag = default(System.Boolean); - OpenTK.Graphics.ES11.GL.DepthMask(_flag); -} -static unsafe void Test_DepthRange_29661() { - System.Single _n = default(System.Single); - System.Single _f = default(System.Single); - OpenTK.Graphics.ES11.GL.DepthRange(_n,_f); -} -static unsafe void Test_DepthRangex_29662() { - System.Int32 _n = default(System.Int32); - System.Int32 _f = default(System.Int32); - OpenTK.Graphics.ES11.GL.DepthRangex(_n,_f); -} -static unsafe void Test_Disable_29663() { - OpenTK.Graphics.ES11.All _cap = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.GL.Disable(_cap); -} -static unsafe void Test_Disable_29664() { - OpenTK.Graphics.ES11.EnableCap _cap = default(OpenTK.Graphics.ES11.EnableCap); - OpenTK.Graphics.ES11.GL.Disable(_cap); -} -static unsafe void Test_DisableClientState_29665() { - OpenTK.Graphics.ES11.All _array = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.GL.DisableClientState(_array); -} -static unsafe void Test_DisableClientState_29666() { - OpenTK.Graphics.ES11.EnableCap _array = default(OpenTK.Graphics.ES11.EnableCap); - OpenTK.Graphics.ES11.GL.DisableClientState(_array); -} -static unsafe void Test_DrawArrays_29667() { - OpenTK.Graphics.ES11.All _mode = default(OpenTK.Graphics.ES11.All); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES11.GL.DrawArrays(_mode,_first,_count); -} -static unsafe void Test_DrawArrays_29668() { - OpenTK.Graphics.ES11.BeginMode _mode = default(OpenTK.Graphics.ES11.BeginMode); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES11.GL.DrawArrays(_mode,_first,_count); -} -static unsafe void Test_DrawArrays_29669() { - OpenTK.Graphics.ES11.PrimitiveType _mode = default(OpenTK.Graphics.ES11.PrimitiveType); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES11.GL.DrawArrays(_mode,_first,_count); -} -static unsafe void Test_DrawElements_29670() { - OpenTK.Graphics.ES11.All _mode = default(OpenTK.Graphics.ES11.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.IntPtr _indices = default(System.IntPtr); - OpenTK.Graphics.ES11.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_29671() { - OpenTK.Graphics.ES11.All _mode = default(OpenTK.Graphics.ES11.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int[] _indices = default(int[]); - OpenTK.Graphics.ES11.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_29672() { - OpenTK.Graphics.ES11.All _mode = default(OpenTK.Graphics.ES11.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int[,] _indices = default(int[,]); - OpenTK.Graphics.ES11.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_29673() { - OpenTK.Graphics.ES11.All _mode = default(OpenTK.Graphics.ES11.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int[,,] _indices = default(int[,,]); - OpenTK.Graphics.ES11.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_29674() { - OpenTK.Graphics.ES11.All _mode = default(OpenTK.Graphics.ES11.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int _indices = default(int); - OpenTK.Graphics.ES11.GL.DrawElements(_mode,_count,_type,ref _indices); -} -static unsafe void Test_DrawElements_29675() { - OpenTK.Graphics.ES11.BeginMode _mode = default(OpenTK.Graphics.ES11.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.IntPtr _indices = default(System.IntPtr); - OpenTK.Graphics.ES11.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_29676() { - OpenTK.Graphics.ES11.BeginMode _mode = default(OpenTK.Graphics.ES11.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int[] _indices = default(int[]); - OpenTK.Graphics.ES11.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_29677() { - OpenTK.Graphics.ES11.BeginMode _mode = default(OpenTK.Graphics.ES11.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int[,] _indices = default(int[,]); - OpenTK.Graphics.ES11.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_29678() { - OpenTK.Graphics.ES11.BeginMode _mode = default(OpenTK.Graphics.ES11.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int[,,] _indices = default(int[,,]); - OpenTK.Graphics.ES11.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_29679() { - OpenTK.Graphics.ES11.BeginMode _mode = default(OpenTK.Graphics.ES11.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int _indices = default(int); - OpenTK.Graphics.ES11.GL.DrawElements(_mode,_count,_type,ref _indices); -} -static unsafe void Test_DrawElements_29680() { - OpenTK.Graphics.ES11.PrimitiveType _mode = default(OpenTK.Graphics.ES11.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.IntPtr _indices = default(System.IntPtr); - OpenTK.Graphics.ES11.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_29681() { - OpenTK.Graphics.ES11.PrimitiveType _mode = default(OpenTK.Graphics.ES11.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int[] _indices = default(int[]); - OpenTK.Graphics.ES11.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_29682() { - OpenTK.Graphics.ES11.PrimitiveType _mode = default(OpenTK.Graphics.ES11.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int[,] _indices = default(int[,]); - OpenTK.Graphics.ES11.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_29683() { - OpenTK.Graphics.ES11.PrimitiveType _mode = default(OpenTK.Graphics.ES11.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int[,,] _indices = default(int[,,]); - OpenTK.Graphics.ES11.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_29684() { - OpenTK.Graphics.ES11.PrimitiveType _mode = default(OpenTK.Graphics.ES11.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int _indices = default(int); - OpenTK.Graphics.ES11.GL.DrawElements(_mode,_count,_type,ref _indices); -} -static unsafe void Test_Enable_29685() { - OpenTK.Graphics.ES11.All _cap = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.GL.Enable(_cap); -} -static unsafe void Test_Enable_29686() { - OpenTK.Graphics.ES11.EnableCap _cap = default(OpenTK.Graphics.ES11.EnableCap); - OpenTK.Graphics.ES11.GL.Enable(_cap); -} -static unsafe void Test_EnableClientState_29687() { - OpenTK.Graphics.ES11.All _array = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.GL.EnableClientState(_array); -} -static unsafe void Test_EnableClientState_29688() { - OpenTK.Graphics.ES11.EnableCap _array = default(OpenTK.Graphics.ES11.EnableCap); - OpenTK.Graphics.ES11.GL.EnableClientState(_array); -} -static unsafe void Test_Finish_29689() { - OpenTK.Graphics.ES11.GL.Finish(); -} -static unsafe void Test_Flush_29690() { - OpenTK.Graphics.ES11.GL.Flush(); -} -static unsafe void Test_Fog_29691() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single _param = default(System.Single); - OpenTK.Graphics.ES11.GL.Fog(_pname,_param); -} -static unsafe void Test_Fog_29692() { - OpenTK.Graphics.ES11.FogParameter _pname = default(OpenTK.Graphics.ES11.FogParameter); - System.Single _param = default(System.Single); - OpenTK.Graphics.ES11.GL.Fog(_pname,_param); -} -static unsafe void Test_Fog_29693() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES11.GL.Fog(_pname,_params); -} -static unsafe void Test_Fog_29694() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES11.GL.Fog(_pname,_params); -} -static unsafe void Test_Fog_29695() { - OpenTK.Graphics.ES11.FogParameter _pname = default(OpenTK.Graphics.ES11.FogParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES11.GL.Fog(_pname,_params); -} -static unsafe void Test_Fog_29696() { - OpenTK.Graphics.ES11.FogParameter _pname = default(OpenTK.Graphics.ES11.FogParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES11.GL.Fog(_pname,_params); -} -static unsafe void Test_Fogx_29697() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES11.GL.Fogx(_pname,_param); -} -static unsafe void Test_Fogx_29698() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _param = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Fogx(_pname,_param); -} -static unsafe void Test_Fogx_29699() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _param = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Fogx(_pname,_param); -} -static unsafe void Test_FrontFace_29700() { - OpenTK.Graphics.ES11.All _mode = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.GL.FrontFace(_mode); -} -static unsafe void Test_FrontFace_29701() { - OpenTK.Graphics.ES11.FrontFaceDirection _mode = default(OpenTK.Graphics.ES11.FrontFaceDirection); - OpenTK.Graphics.ES11.GL.FrontFace(_mode); -} -static unsafe void Test_Frustum_29702() { - System.Single _l = default(System.Single); - System.Single _r = default(System.Single); - System.Single _b = default(System.Single); - System.Single _t = default(System.Single); - System.Single _n = default(System.Single); - System.Single _f = default(System.Single); - OpenTK.Graphics.ES11.GL.Frustum(_l,_r,_b,_t,_n,_f); -} -static unsafe void Test_Frustumx_29703() { - System.Int32 _l = default(System.Int32); - System.Int32 _r = default(System.Int32); - System.Int32 _b = default(System.Int32); - System.Int32 _t = default(System.Int32); - System.Int32 _n = default(System.Int32); - System.Int32 _f = default(System.Int32); - OpenTK.Graphics.ES11.GL.Frustumx(_l,_r,_b,_t,_n,_f); -} -static unsafe void Test_GenBuffer_29704() { - System.Int32 r = OpenTK.Graphics.ES11.GL.GenBuffer(); -} -static unsafe void Test_GenBuffers_29705() { - System.Int32 _n = default(System.Int32); - System.Int32[] _buffers = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.GenBuffers(_n,_buffers); -} -static unsafe void Test_GenBuffers_29706() { - System.Int32 _n = default(System.Int32); - System.Int32 _buffers = default(System.Int32); - OpenTK.Graphics.ES11.GL.GenBuffers(_n,out _buffers); -} -static unsafe void Test_GenBuffers_29707() { - System.Int32 _n = default(System.Int32); - System.Int32* _buffers = default(System.Int32*); - OpenTK.Graphics.ES11.GL.GenBuffers(_n,_buffers); -} -static unsafe void Test_GenBuffers_29708() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _buffers = default(System.UInt32[]); - OpenTK.Graphics.ES11.GL.GenBuffers(_n,_buffers); -} -static unsafe void Test_GenBuffers_29709() { - System.Int32 _n = default(System.Int32); - System.UInt32 _buffers = default(System.UInt32); - OpenTK.Graphics.ES11.GL.GenBuffers(_n,out _buffers); -} -static unsafe void Test_GenBuffers_29710() { - System.Int32 _n = default(System.Int32); - System.UInt32* _buffers = default(System.UInt32*); - OpenTK.Graphics.ES11.GL.GenBuffers(_n,_buffers); -} -static unsafe void Test_GenTexture_29711() { - System.Int32 r = OpenTK.Graphics.ES11.GL.GenTexture(); -} -static unsafe void Test_GenTextures_29712() { - System.Int32 _n = default(System.Int32); - System.Int32[] _textures = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.GenTextures(_n,_textures); -} -static unsafe void Test_GenTextures_29713() { - System.Int32 _n = default(System.Int32); - System.Int32 _textures = default(System.Int32); - OpenTK.Graphics.ES11.GL.GenTextures(_n,out _textures); -} -static unsafe void Test_GenTextures_29714() { - System.Int32 _n = default(System.Int32); - System.Int32* _textures = default(System.Int32*); - OpenTK.Graphics.ES11.GL.GenTextures(_n,_textures); -} -static unsafe void Test_GenTextures_29715() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _textures = default(System.UInt32[]); - OpenTK.Graphics.ES11.GL.GenTextures(_n,_textures); -} -static unsafe void Test_GenTextures_29716() { - System.Int32 _n = default(System.Int32); - System.UInt32 _textures = default(System.UInt32); - OpenTK.Graphics.ES11.GL.GenTextures(_n,out _textures); -} -static unsafe void Test_GenTextures_29717() { - System.Int32 _n = default(System.Int32); - System.UInt32* _textures = default(System.UInt32*); - OpenTK.Graphics.ES11.GL.GenTextures(_n,_textures); -} -static unsafe void Test_GetBoolean_29718() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Boolean r = OpenTK.Graphics.ES11.GL.GetBoolean(_pname); -} -static unsafe void Test_GetBoolean_29719() { - OpenTK.Graphics.ES11.GetPName _pname = default(OpenTK.Graphics.ES11.GetPName); - System.Boolean r = OpenTK.Graphics.ES11.GL.GetBoolean(_pname); -} -static unsafe void Test_GetBoolean_29720() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Boolean[] _data = default(System.Boolean[]); - OpenTK.Graphics.ES11.GL.GetBoolean(_pname,_data); -} -static unsafe void Test_GetBoolean_29721() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Boolean _data = default(System.Boolean); - OpenTK.Graphics.ES11.GL.GetBoolean(_pname,out _data); -} -static unsafe void Test_GetBoolean_29722() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Boolean* _data = default(System.Boolean*); - OpenTK.Graphics.ES11.GL.GetBoolean(_pname,_data); -} -static unsafe void Test_GetBoolean_29723() { - OpenTK.Graphics.ES11.GetPName _pname = default(OpenTK.Graphics.ES11.GetPName); - System.Boolean[] _data = default(System.Boolean[]); - OpenTK.Graphics.ES11.GL.GetBoolean(_pname,_data); -} -static unsafe void Test_GetBoolean_29724() { - OpenTK.Graphics.ES11.GetPName _pname = default(OpenTK.Graphics.ES11.GetPName); - System.Boolean _data = default(System.Boolean); - OpenTK.Graphics.ES11.GL.GetBoolean(_pname,out _data); -} -static unsafe void Test_GetBoolean_29725() { - OpenTK.Graphics.ES11.GetPName _pname = default(OpenTK.Graphics.ES11.GetPName); - System.Boolean* _data = default(System.Boolean*); - OpenTK.Graphics.ES11.GL.GetBoolean(_pname,_data); -} -static unsafe void Test_GetBufferParameter_29726() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.GetBufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetBufferParameter_29727() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES11.GL.GetBufferParameter(_target,_pname,out _params); -} -static unsafe void Test_GetBufferParameter_29728() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.GetBufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetClipPlane_29729() { - OpenTK.Graphics.ES11.All _plane = default(OpenTK.Graphics.ES11.All); - System.Single[] _equation = default(System.Single[]); - OpenTK.Graphics.ES11.GL.GetClipPlane(_plane,_equation); -} -static unsafe void Test_GetClipPlane_29730() { - OpenTK.Graphics.ES11.All _plane = default(OpenTK.Graphics.ES11.All); - System.Single _equation = default(System.Single); - OpenTK.Graphics.ES11.GL.GetClipPlane(_plane,out _equation); -} -static unsafe void Test_GetClipPlane_29731() { - OpenTK.Graphics.ES11.All _plane = default(OpenTK.Graphics.ES11.All); - System.Single* _equation = default(System.Single*); - OpenTK.Graphics.ES11.GL.GetClipPlane(_plane,_equation); -} -static unsafe void Test_GetClipPlanex_29732() { - OpenTK.Graphics.ES11.All _plane = default(OpenTK.Graphics.ES11.All); - System.Int32[] _equation = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.GetClipPlanex(_plane,_equation); -} -static unsafe void Test_GetClipPlanex_29733() { - OpenTK.Graphics.ES11.All _plane = default(OpenTK.Graphics.ES11.All); - System.Int32 _equation = default(System.Int32); - OpenTK.Graphics.ES11.GL.GetClipPlanex(_plane,out _equation); -} -static unsafe void Test_GetClipPlanex_29734() { - OpenTK.Graphics.ES11.All _plane = default(OpenTK.Graphics.ES11.All); - System.Int32* _equation = default(System.Int32*); - OpenTK.Graphics.ES11.GL.GetClipPlanex(_plane,_equation); -} -static unsafe void Test_GetError_29735() { - OpenTK.Graphics.ES11.ErrorCode r = OpenTK.Graphics.ES11.GL.GetError(); -} -static unsafe void Test_GetFixed_29736() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 r = OpenTK.Graphics.ES11.GL.GetFixed(_pname); -} -static unsafe void Test_GetFixed_29737() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.GetFixed(_pname,_params); -} -static unsafe void Test_GetFixed_29738() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES11.GL.GetFixed(_pname,out _params); -} -static unsafe void Test_GetFixed_29739() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.GetFixed(_pname,_params); -} -static unsafe void Test_GetFloat_29740() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single r = OpenTK.Graphics.ES11.GL.GetFloat(_pname); -} -static unsafe void Test_GetFloat_29741() { - OpenTK.Graphics.ES11.GetPName _pname = default(OpenTK.Graphics.ES11.GetPName); - System.Single r = OpenTK.Graphics.ES11.GL.GetFloat(_pname); -} -static unsafe void Test_GetFloat_29742() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single[] _data = default(System.Single[]); - OpenTK.Graphics.ES11.GL.GetFloat(_pname,_data); -} -static unsafe void Test_GetFloat_29743() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single _data = default(System.Single); - OpenTK.Graphics.ES11.GL.GetFloat(_pname,out _data); -} -static unsafe void Test_GetFloat_29744() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single* _data = default(System.Single*); - OpenTK.Graphics.ES11.GL.GetFloat(_pname,_data); -} -static unsafe void Test_GetFloat_29745() { - OpenTK.Graphics.ES11.GetPName _pname = default(OpenTK.Graphics.ES11.GetPName); - System.Single[] _data = default(System.Single[]); - OpenTK.Graphics.ES11.GL.GetFloat(_pname,_data); -} -static unsafe void Test_GetFloat_29746() { - OpenTK.Graphics.ES11.GetPName _pname = default(OpenTK.Graphics.ES11.GetPName); - System.Single _data = default(System.Single); - OpenTK.Graphics.ES11.GL.GetFloat(_pname,out _data); -} -static unsafe void Test_GetFloat_29747() { - OpenTK.Graphics.ES11.GetPName _pname = default(OpenTK.Graphics.ES11.GetPName); - System.Single* _data = default(System.Single*); - OpenTK.Graphics.ES11.GL.GetFloat(_pname,_data); -} -static unsafe void Test_GetInteger_29748() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 r = OpenTK.Graphics.ES11.GL.GetInteger(_pname); -} -static unsafe void Test_GetInteger_29749() { - OpenTK.Graphics.ES11.GetPName _pname = default(OpenTK.Graphics.ES11.GetPName); - System.Int32 r = OpenTK.Graphics.ES11.GL.GetInteger(_pname); -} -static unsafe void Test_GetInteger_29750() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _data = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.GetInteger(_pname,_data); -} -static unsafe void Test_GetInteger_29751() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _data = default(System.Int32); - OpenTK.Graphics.ES11.GL.GetInteger(_pname,out _data); -} -static unsafe void Test_GetInteger_29752() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _data = default(System.Int32*); - OpenTK.Graphics.ES11.GL.GetInteger(_pname,_data); -} -static unsafe void Test_GetInteger_29753() { - OpenTK.Graphics.ES11.GetPName _pname = default(OpenTK.Graphics.ES11.GetPName); - System.Int32[] _data = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.GetInteger(_pname,_data); -} -static unsafe void Test_GetInteger_29754() { - OpenTK.Graphics.ES11.GetPName _pname = default(OpenTK.Graphics.ES11.GetPName); - System.Int32 _data = default(System.Int32); - OpenTK.Graphics.ES11.GL.GetInteger(_pname,out _data); -} -static unsafe void Test_GetInteger_29755() { - OpenTK.Graphics.ES11.GetPName _pname = default(OpenTK.Graphics.ES11.GetPName); - System.Int32* _data = default(System.Int32*); - OpenTK.Graphics.ES11.GL.GetInteger(_pname,_data); -} -static unsafe void Test_GetLight_29756() { - OpenTK.Graphics.ES11.All _light = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES11.GL.GetLight(_light,_pname,_params); -} -static unsafe void Test_GetLight_29757() { - OpenTK.Graphics.ES11.All _light = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single _params = default(System.Single); - OpenTK.Graphics.ES11.GL.GetLight(_light,_pname,out _params); -} -static unsafe void Test_GetLight_29758() { - OpenTK.Graphics.ES11.All _light = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES11.GL.GetLight(_light,_pname,_params); -} -static unsafe void Test_GetLight_29759() { - OpenTK.Graphics.ES11.LightName _light = default(OpenTK.Graphics.ES11.LightName); - OpenTK.Graphics.ES11.LightParameter _pname = default(OpenTK.Graphics.ES11.LightParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES11.GL.GetLight(_light,_pname,_params); -} -static unsafe void Test_GetLight_29760() { - OpenTK.Graphics.ES11.LightName _light = default(OpenTK.Graphics.ES11.LightName); - OpenTK.Graphics.ES11.LightParameter _pname = default(OpenTK.Graphics.ES11.LightParameter); - System.Single _params = default(System.Single); - OpenTK.Graphics.ES11.GL.GetLight(_light,_pname,out _params); -} -static unsafe void Test_GetLight_29761() { - OpenTK.Graphics.ES11.LightName _light = default(OpenTK.Graphics.ES11.LightName); - OpenTK.Graphics.ES11.LightParameter _pname = default(OpenTK.Graphics.ES11.LightParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES11.GL.GetLight(_light,_pname,_params); -} -static unsafe void Test_GetLightx_29762() { - OpenTK.Graphics.ES11.All _light = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.GetLightx(_light,_pname,_params); -} -static unsafe void Test_GetLightx_29763() { - OpenTK.Graphics.ES11.All _light = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES11.GL.GetLightx(_light,_pname,out _params); -} -static unsafe void Test_GetLightx_29764() { - OpenTK.Graphics.ES11.All _light = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.GetLightx(_light,_pname,_params); -} -static unsafe void Test_GetMaterial_29765() { - OpenTK.Graphics.ES11.All _face = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES11.GL.GetMaterial(_face,_pname,_params); -} -static unsafe void Test_GetMaterial_29766() { - OpenTK.Graphics.ES11.All _face = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single _params = default(System.Single); - OpenTK.Graphics.ES11.GL.GetMaterial(_face,_pname,out _params); -} -static unsafe void Test_GetMaterial_29767() { - OpenTK.Graphics.ES11.All _face = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES11.GL.GetMaterial(_face,_pname,_params); -} -static unsafe void Test_GetMaterial_29768() { - OpenTK.Graphics.ES11.MaterialFace _face = default(OpenTK.Graphics.ES11.MaterialFace); - OpenTK.Graphics.ES11.MaterialParameter _pname = default(OpenTK.Graphics.ES11.MaterialParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES11.GL.GetMaterial(_face,_pname,_params); -} -static unsafe void Test_GetMaterial_29769() { - OpenTK.Graphics.ES11.MaterialFace _face = default(OpenTK.Graphics.ES11.MaterialFace); - OpenTK.Graphics.ES11.MaterialParameter _pname = default(OpenTK.Graphics.ES11.MaterialParameter); - System.Single _params = default(System.Single); - OpenTK.Graphics.ES11.GL.GetMaterial(_face,_pname,out _params); -} -static unsafe void Test_GetMaterial_29770() { - OpenTK.Graphics.ES11.MaterialFace _face = default(OpenTK.Graphics.ES11.MaterialFace); - OpenTK.Graphics.ES11.MaterialParameter _pname = default(OpenTK.Graphics.ES11.MaterialParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES11.GL.GetMaterial(_face,_pname,_params); -} -static unsafe void Test_GetMaterialx_29771() { - OpenTK.Graphics.ES11.All _face = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.GetMaterialx(_face,_pname,_params); -} -static unsafe void Test_GetMaterialx_29772() { - OpenTK.Graphics.ES11.All _face = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES11.GL.GetMaterialx(_face,_pname,out _params); -} -static unsafe void Test_GetMaterialx_29773() { - OpenTK.Graphics.ES11.All _face = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.GetMaterialx(_face,_pname,_params); -} -static unsafe void Test_GetPixelMapx_29774() { - OpenTK.Graphics.ES11.All _map = default(OpenTK.Graphics.ES11.All); - System.Int32 _size = default(System.Int32); - System.Int32[] _values = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.GetPixelMapx(_map,_size,_values); -} -static unsafe void Test_GetPixelMapx_29775() { - OpenTK.Graphics.ES11.All _map = default(OpenTK.Graphics.ES11.All); - System.Int32 _size = default(System.Int32); - System.Int32 _values = default(System.Int32); - OpenTK.Graphics.ES11.GL.GetPixelMapx(_map,_size,out _values); -} -static unsafe void Test_GetPixelMapx_29776() { - OpenTK.Graphics.ES11.All _map = default(OpenTK.Graphics.ES11.All); - System.Int32 _size = default(System.Int32); - System.Int32* _values = default(System.Int32*); - OpenTK.Graphics.ES11.GL.GetPixelMapx(_map,_size,_values); -} -static unsafe void Test_GetPointer_29777() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.IntPtr _params = default(System.IntPtr); - OpenTK.Graphics.ES11.GL.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_29778() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - int[] _params = default(int[]); - OpenTK.Graphics.ES11.GL.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_29779() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - int[,] _params = default(int[,]); - OpenTK.Graphics.ES11.GL.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_29780() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - int[,,] _params = default(int[,,]); - OpenTK.Graphics.ES11.GL.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_29781() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - int _params = default(int); - OpenTK.Graphics.ES11.GL.GetPointer(_pname,ref _params); -} -static unsafe void Test_GetPointer_29782() { - OpenTK.Graphics.ES11.GetPointervPName _pname = default(OpenTK.Graphics.ES11.GetPointervPName); - System.IntPtr _params = default(System.IntPtr); - OpenTK.Graphics.ES11.GL.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_29783() { - OpenTK.Graphics.ES11.GetPointervPName _pname = default(OpenTK.Graphics.ES11.GetPointervPName); - int[] _params = default(int[]); - OpenTK.Graphics.ES11.GL.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_29784() { - OpenTK.Graphics.ES11.GetPointervPName _pname = default(OpenTK.Graphics.ES11.GetPointervPName); - int[,] _params = default(int[,]); - OpenTK.Graphics.ES11.GL.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_29785() { - OpenTK.Graphics.ES11.GetPointervPName _pname = default(OpenTK.Graphics.ES11.GetPointervPName); - int[,,] _params = default(int[,,]); - OpenTK.Graphics.ES11.GL.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_29786() { - OpenTK.Graphics.ES11.GetPointervPName _pname = default(OpenTK.Graphics.ES11.GetPointervPName); - int _params = default(int); - OpenTK.Graphics.ES11.GL.GetPointer(_pname,ref _params); -} -static unsafe void Test_GetString_29787() { - OpenTK.Graphics.ES11.All _name = default(OpenTK.Graphics.ES11.All); - System.String r = OpenTK.Graphics.ES11.GL.GetString(_name); -} -static unsafe void Test_GetString_29788() { - OpenTK.Graphics.ES11.StringName _name = default(OpenTK.Graphics.ES11.StringName); - System.String r = OpenTK.Graphics.ES11.GL.GetString(_name); -} -static unsafe void Test_GetTexEnv_29789() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES11.GL.GetTexEnv(_target,_pname,_params); -} -static unsafe void Test_GetTexEnv_29790() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single _params = default(System.Single); - OpenTK.Graphics.ES11.GL.GetTexEnv(_target,_pname,out _params); -} -static unsafe void Test_GetTexEnv_29791() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES11.GL.GetTexEnv(_target,_pname,_params); -} -static unsafe void Test_GetTexEnv_29792() { - OpenTK.Graphics.ES11.TextureEnvTarget _target = default(OpenTK.Graphics.ES11.TextureEnvTarget); - OpenTK.Graphics.ES11.TextureEnvParameter _pname = default(OpenTK.Graphics.ES11.TextureEnvParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES11.GL.GetTexEnv(_target,_pname,_params); -} -static unsafe void Test_GetTexEnv_29793() { - OpenTK.Graphics.ES11.TextureEnvTarget _target = default(OpenTK.Graphics.ES11.TextureEnvTarget); - OpenTK.Graphics.ES11.TextureEnvParameter _pname = default(OpenTK.Graphics.ES11.TextureEnvParameter); - System.Single _params = default(System.Single); - OpenTK.Graphics.ES11.GL.GetTexEnv(_target,_pname,out _params); -} -static unsafe void Test_GetTexEnv_29794() { - OpenTK.Graphics.ES11.TextureEnvTarget _target = default(OpenTK.Graphics.ES11.TextureEnvTarget); - OpenTK.Graphics.ES11.TextureEnvParameter _pname = default(OpenTK.Graphics.ES11.TextureEnvParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES11.GL.GetTexEnv(_target,_pname,_params); -} -static unsafe void Test_GetTexEnv_29795() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.GetTexEnv(_target,_pname,_params); -} -static unsafe void Test_GetTexEnv_29796() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES11.GL.GetTexEnv(_target,_pname,out _params); -} -static unsafe void Test_GetTexEnv_29797() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.GetTexEnv(_target,_pname,_params); -} -static unsafe void Test_GetTexEnv_29798() { - OpenTK.Graphics.ES11.TextureEnvTarget _target = default(OpenTK.Graphics.ES11.TextureEnvTarget); - OpenTK.Graphics.ES11.TextureEnvParameter _pname = default(OpenTK.Graphics.ES11.TextureEnvParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.GetTexEnv(_target,_pname,_params); -} -static unsafe void Test_GetTexEnv_29799() { - OpenTK.Graphics.ES11.TextureEnvTarget _target = default(OpenTK.Graphics.ES11.TextureEnvTarget); - OpenTK.Graphics.ES11.TextureEnvParameter _pname = default(OpenTK.Graphics.ES11.TextureEnvParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES11.GL.GetTexEnv(_target,_pname,out _params); -} -static unsafe void Test_GetTexEnv_29800() { - OpenTK.Graphics.ES11.TextureEnvTarget _target = default(OpenTK.Graphics.ES11.TextureEnvTarget); - OpenTK.Graphics.ES11.TextureEnvParameter _pname = default(OpenTK.Graphics.ES11.TextureEnvParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.GetTexEnv(_target,_pname,_params); -} -static unsafe void Test_GetTexEnvx_29801() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.GetTexEnvx(_target,_pname,_params); -} -static unsafe void Test_GetTexEnvx_29802() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES11.GL.GetTexEnvx(_target,_pname,out _params); -} -static unsafe void Test_GetTexEnvx_29803() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.GetTexEnvx(_target,_pname,_params); -} -static unsafe void Test_GetTexParameter_29804() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES11.GL.GetTexParameter(_target,_pname,_params); -} -static unsafe void Test_GetTexParameter_29805() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single _params = default(System.Single); - OpenTK.Graphics.ES11.GL.GetTexParameter(_target,_pname,out _params); -} -static unsafe void Test_GetTexParameter_29806() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES11.GL.GetTexParameter(_target,_pname,_params); -} -static unsafe void Test_GetTexParameter_29807() { - OpenTK.Graphics.ES11.TextureTarget _target = default(OpenTK.Graphics.ES11.TextureTarget); - OpenTK.Graphics.ES11.GetTextureParameter _pname = default(OpenTK.Graphics.ES11.GetTextureParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES11.GL.GetTexParameter(_target,_pname,_params); -} -static unsafe void Test_GetTexParameter_29808() { - OpenTK.Graphics.ES11.TextureTarget _target = default(OpenTK.Graphics.ES11.TextureTarget); - OpenTK.Graphics.ES11.GetTextureParameter _pname = default(OpenTK.Graphics.ES11.GetTextureParameter); - System.Single _params = default(System.Single); - OpenTK.Graphics.ES11.GL.GetTexParameter(_target,_pname,out _params); -} -static unsafe void Test_GetTexParameter_29809() { - OpenTK.Graphics.ES11.TextureTarget _target = default(OpenTK.Graphics.ES11.TextureTarget); - OpenTK.Graphics.ES11.GetTextureParameter _pname = default(OpenTK.Graphics.ES11.GetTextureParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES11.GL.GetTexParameter(_target,_pname,_params); -} -static unsafe void Test_GetTexParameter_29810() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.GetTexParameter(_target,_pname,_params); -} -static unsafe void Test_GetTexParameter_29811() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES11.GL.GetTexParameter(_target,_pname,out _params); -} -static unsafe void Test_GetTexParameter_29812() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.GetTexParameter(_target,_pname,_params); -} -static unsafe void Test_GetTexParameter_29813() { - OpenTK.Graphics.ES11.TextureTarget _target = default(OpenTK.Graphics.ES11.TextureTarget); - OpenTK.Graphics.ES11.GetTextureParameter _pname = default(OpenTK.Graphics.ES11.GetTextureParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.GetTexParameter(_target,_pname,_params); -} -static unsafe void Test_GetTexParameter_29814() { - OpenTK.Graphics.ES11.TextureTarget _target = default(OpenTK.Graphics.ES11.TextureTarget); - OpenTK.Graphics.ES11.GetTextureParameter _pname = default(OpenTK.Graphics.ES11.GetTextureParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES11.GL.GetTexParameter(_target,_pname,out _params); -} -static unsafe void Test_GetTexParameter_29815() { - OpenTK.Graphics.ES11.TextureTarget _target = default(OpenTK.Graphics.ES11.TextureTarget); - OpenTK.Graphics.ES11.GetTextureParameter _pname = default(OpenTK.Graphics.ES11.GetTextureParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.GetTexParameter(_target,_pname,_params); -} -static unsafe void Test_GetTexParameterx_29816() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.GetTexParameterx(_target,_pname,_params); -} -static unsafe void Test_GetTexParameterx_29817() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES11.GL.GetTexParameterx(_target,_pname,out _params); -} -static unsafe void Test_GetTexParameterx_29818() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.GetTexParameterx(_target,_pname,_params); -} -static unsafe void Test_Hint_29819() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _mode = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.GL.Hint(_target,_mode); -} -static unsafe void Test_Hint_29820() { - OpenTK.Graphics.ES11.HintTarget _target = default(OpenTK.Graphics.ES11.HintTarget); - OpenTK.Graphics.ES11.HintMode _mode = default(OpenTK.Graphics.ES11.HintMode); - OpenTK.Graphics.ES11.GL.Hint(_target,_mode); -} -static unsafe void Test_IsBuffer_29821() { - System.Int32 _buffer = default(System.Int32); - System.Boolean r = OpenTK.Graphics.ES11.GL.IsBuffer(_buffer); -} -static unsafe void Test_IsBuffer_29822() { - System.UInt32 _buffer = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.ES11.GL.IsBuffer(_buffer); -} -static unsafe void Test_IsEnabled_29823() { - OpenTK.Graphics.ES11.All _cap = default(OpenTK.Graphics.ES11.All); - System.Boolean r = OpenTK.Graphics.ES11.GL.IsEnabled(_cap); -} -static unsafe void Test_IsEnabled_29824() { - OpenTK.Graphics.ES11.EnableCap _cap = default(OpenTK.Graphics.ES11.EnableCap); - System.Boolean r = OpenTK.Graphics.ES11.GL.IsEnabled(_cap); -} -static unsafe void Test_IsTexture_29825() { - System.Int32 _texture = default(System.Int32); - System.Boolean r = OpenTK.Graphics.ES11.GL.IsTexture(_texture); -} -static unsafe void Test_IsTexture_29826() { - System.UInt32 _texture = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.ES11.GL.IsTexture(_texture); -} -static unsafe void Test_Light_29827() { - OpenTK.Graphics.ES11.All _light = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single _param = default(System.Single); - OpenTK.Graphics.ES11.GL.Light(_light,_pname,_param); -} -static unsafe void Test_Light_29828() { - OpenTK.Graphics.ES11.LightName _light = default(OpenTK.Graphics.ES11.LightName); - OpenTK.Graphics.ES11.LightParameter _pname = default(OpenTK.Graphics.ES11.LightParameter); - System.Single _param = default(System.Single); - OpenTK.Graphics.ES11.GL.Light(_light,_pname,_param); -} -static unsafe void Test_Light_29829() { - OpenTK.Graphics.ES11.All _light = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES11.GL.Light(_light,_pname,_params); -} -static unsafe void Test_Light_29830() { - OpenTK.Graphics.ES11.All _light = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES11.GL.Light(_light,_pname,_params); -} -static unsafe void Test_Light_29831() { - OpenTK.Graphics.ES11.LightName _light = default(OpenTK.Graphics.ES11.LightName); - OpenTK.Graphics.ES11.LightParameter _pname = default(OpenTK.Graphics.ES11.LightParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES11.GL.Light(_light,_pname,_params); -} -static unsafe void Test_Light_29832() { - OpenTK.Graphics.ES11.LightName _light = default(OpenTK.Graphics.ES11.LightName); - OpenTK.Graphics.ES11.LightParameter _pname = default(OpenTK.Graphics.ES11.LightParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES11.GL.Light(_light,_pname,_params); -} -static unsafe void Test_LightModel_29833() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single _param = default(System.Single); - OpenTK.Graphics.ES11.GL.LightModel(_pname,_param); -} -static unsafe void Test_LightModel_29834() { - OpenTK.Graphics.ES11.LightModelParameter _pname = default(OpenTK.Graphics.ES11.LightModelParameter); - System.Single _param = default(System.Single); - OpenTK.Graphics.ES11.GL.LightModel(_pname,_param); -} -static unsafe void Test_LightModel_29835() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES11.GL.LightModel(_pname,_params); -} -static unsafe void Test_LightModel_29836() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES11.GL.LightModel(_pname,_params); -} -static unsafe void Test_LightModel_29837() { - OpenTK.Graphics.ES11.LightModelParameter _pname = default(OpenTK.Graphics.ES11.LightModelParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES11.GL.LightModel(_pname,_params); -} -static unsafe void Test_LightModel_29838() { - OpenTK.Graphics.ES11.LightModelParameter _pname = default(OpenTK.Graphics.ES11.LightModelParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES11.GL.LightModel(_pname,_params); -} -static unsafe void Test_LightModelx_29839() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES11.GL.LightModelx(_pname,_param); -} -static unsafe void Test_LightModelx_29840() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _param = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.LightModelx(_pname,_param); -} -static unsafe void Test_LightModelx_29841() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _param = default(System.Int32*); - OpenTK.Graphics.ES11.GL.LightModelx(_pname,_param); -} -static unsafe void Test_Lightx_29842() { - OpenTK.Graphics.ES11.All _light = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES11.GL.Lightx(_light,_pname,_param); -} -static unsafe void Test_Lightx_29843() { - OpenTK.Graphics.ES11.All _light = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Lightx(_light,_pname,_params); -} -static unsafe void Test_Lightx_29844() { - OpenTK.Graphics.ES11.All _light = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Lightx(_light,_pname,_params); -} -static unsafe void Test_LineWidth_29845() { - System.Single _width = default(System.Single); - OpenTK.Graphics.ES11.GL.LineWidth(_width); -} -static unsafe void Test_LineWidthx_29846() { - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.ES11.GL.LineWidthx(_width); -} -static unsafe void Test_LoadIdentity_29847() { - OpenTK.Graphics.ES11.GL.LoadIdentity(); -} -static unsafe void Test_LoadMatrix_29848() { - System.Single[] _m = default(System.Single[]); - OpenTK.Graphics.ES11.GL.LoadMatrix(_m); -} -static unsafe void Test_LoadMatrix_29849() { - System.Single _m = default(System.Single); - OpenTK.Graphics.ES11.GL.LoadMatrix(ref _m); -} -static unsafe void Test_LoadMatrix_29850() { - System.Single* _m = default(System.Single*); - OpenTK.Graphics.ES11.GL.LoadMatrix(_m); -} -static unsafe void Test_LoadMatrixx_29851() { - System.Int32[] _m = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.LoadMatrixx(_m); -} -static unsafe void Test_LoadMatrixx_29852() { - System.Int32 _m = default(System.Int32); - OpenTK.Graphics.ES11.GL.LoadMatrixx(ref _m); -} -static unsafe void Test_LoadMatrixx_29853() { - System.Int32* _m = default(System.Int32*); - OpenTK.Graphics.ES11.GL.LoadMatrixx(_m); -} -static unsafe void Test_LogicOp_29854() { - OpenTK.Graphics.ES11.All _opcode = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.GL.LogicOp(_opcode); -} -static unsafe void Test_LogicOp_29855() { - OpenTK.Graphics.ES11.LogicOp _opcode = default(OpenTK.Graphics.ES11.LogicOp); - OpenTK.Graphics.ES11.GL.LogicOp(_opcode); -} -static unsafe void Test_Material_29856() { - OpenTK.Graphics.ES11.All _face = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single _param = default(System.Single); - OpenTK.Graphics.ES11.GL.Material(_face,_pname,_param); -} -static unsafe void Test_Material_29857() { - OpenTK.Graphics.ES11.MaterialFace _face = default(OpenTK.Graphics.ES11.MaterialFace); - OpenTK.Graphics.ES11.MaterialParameter _pname = default(OpenTK.Graphics.ES11.MaterialParameter); - System.Single _param = default(System.Single); - OpenTK.Graphics.ES11.GL.Material(_face,_pname,_param); -} -static unsafe void Test_Material_29858() { - OpenTK.Graphics.ES11.All _face = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES11.GL.Material(_face,_pname,_params); -} -static unsafe void Test_Material_29859() { - OpenTK.Graphics.ES11.All _face = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES11.GL.Material(_face,_pname,_params); -} -static unsafe void Test_Material_29860() { - OpenTK.Graphics.ES11.MaterialFace _face = default(OpenTK.Graphics.ES11.MaterialFace); - OpenTK.Graphics.ES11.MaterialParameter _pname = default(OpenTK.Graphics.ES11.MaterialParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES11.GL.Material(_face,_pname,_params); -} -static unsafe void Test_Material_29861() { - OpenTK.Graphics.ES11.MaterialFace _face = default(OpenTK.Graphics.ES11.MaterialFace); - OpenTK.Graphics.ES11.MaterialParameter _pname = default(OpenTK.Graphics.ES11.MaterialParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES11.GL.Material(_face,_pname,_params); -} -static unsafe void Test_Materialx_29862() { - OpenTK.Graphics.ES11.All _face = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES11.GL.Materialx(_face,_pname,_param); -} -static unsafe void Test_Materialx_29863() { - OpenTK.Graphics.ES11.All _face = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _param = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Materialx(_face,_pname,_param); -} -static unsafe void Test_Materialx_29864() { - OpenTK.Graphics.ES11.All _face = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _param = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Materialx(_face,_pname,_param); -} -static unsafe void Test_MatrixMode_29865() { - OpenTK.Graphics.ES11.All _mode = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.GL.MatrixMode(_mode); -} -static unsafe void Test_MatrixMode_29866() { - OpenTK.Graphics.ES11.MatrixMode _mode = default(OpenTK.Graphics.ES11.MatrixMode); - OpenTK.Graphics.ES11.GL.MatrixMode(_mode); -} -static unsafe void Test_MultiTexCoord4_29867() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Single _s = default(System.Single); - System.Single _t = default(System.Single); - System.Single _r = default(System.Single); - System.Single _q = default(System.Single); - OpenTK.Graphics.ES11.GL.MultiTexCoord4(_target,_s,_t,_r,_q); -} -static unsafe void Test_MultiTexCoord4_29868() { - OpenTK.Graphics.ES11.TextureUnit _target = default(OpenTK.Graphics.ES11.TextureUnit); - System.Single _s = default(System.Single); - System.Single _t = default(System.Single); - System.Single _r = default(System.Single); - System.Single _q = default(System.Single); - OpenTK.Graphics.ES11.GL.MultiTexCoord4(_target,_s,_t,_r,_q); -} -static unsafe void Test_MultiTexCoord4x_29869() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.Int32 _s = default(System.Int32); - System.Int32 _t = default(System.Int32); - System.Int32 _r = default(System.Int32); - System.Int32 _q = default(System.Int32); - OpenTK.Graphics.ES11.GL.MultiTexCoord4x(_texture,_s,_t,_r,_q); -} -static unsafe void Test_MultMatrix_29870() { - System.Single[] _m = default(System.Single[]); - OpenTK.Graphics.ES11.GL.MultMatrix(_m); -} -static unsafe void Test_MultMatrix_29871() { - System.Single _m = default(System.Single); - OpenTK.Graphics.ES11.GL.MultMatrix(ref _m); -} -static unsafe void Test_MultMatrix_29872() { - System.Single* _m = default(System.Single*); - OpenTK.Graphics.ES11.GL.MultMatrix(_m); -} -static unsafe void Test_MultMatrixx_29873() { - System.Int32[] _m = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.MultMatrixx(_m); -} -static unsafe void Test_MultMatrixx_29874() { - System.Int32 _m = default(System.Int32); - OpenTK.Graphics.ES11.GL.MultMatrixx(ref _m); -} -static unsafe void Test_MultMatrixx_29875() { - System.Int32* _m = default(System.Int32*); - OpenTK.Graphics.ES11.GL.MultMatrixx(_m); -} -static unsafe void Test_Normal3_29876() { - System.Single _nx = default(System.Single); - System.Single _ny = default(System.Single); - System.Single _nz = default(System.Single); - OpenTK.Graphics.ES11.GL.Normal3(_nx,_ny,_nz); -} -static unsafe void Test_Normal3x_29877() { - System.Int32 _nx = default(System.Int32); - System.Int32 _ny = default(System.Int32); - System.Int32 _nz = default(System.Int32); - OpenTK.Graphics.ES11.GL.Normal3x(_nx,_ny,_nz); -} -static unsafe void Test_NormalPointer_29878() { - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.ES11.GL.NormalPointer(_type,_stride,_pointer); -} -static unsafe void Test_NormalPointer_29879() { - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.ES11.GL.NormalPointer(_type,_stride,_pointer); -} -static unsafe void Test_NormalPointer_29880() { - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.ES11.GL.NormalPointer(_type,_stride,_pointer); -} -static unsafe void Test_NormalPointer_29881() { - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.ES11.GL.NormalPointer(_type,_stride,_pointer); -} -static unsafe void Test_NormalPointer_29882() { - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.ES11.GL.NormalPointer(_type,_stride,ref _pointer); -} -static unsafe void Test_NormalPointer_29883() { - OpenTK.Graphics.ES11.NormalPointerType _type = default(OpenTK.Graphics.ES11.NormalPointerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.ES11.GL.NormalPointer(_type,_stride,_pointer); -} -static unsafe void Test_NormalPointer_29884() { - OpenTK.Graphics.ES11.NormalPointerType _type = default(OpenTK.Graphics.ES11.NormalPointerType); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.ES11.GL.NormalPointer(_type,_stride,_pointer); -} -static unsafe void Test_NormalPointer_29885() { - OpenTK.Graphics.ES11.NormalPointerType _type = default(OpenTK.Graphics.ES11.NormalPointerType); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.ES11.GL.NormalPointer(_type,_stride,_pointer); -} -static unsafe void Test_NormalPointer_29886() { - OpenTK.Graphics.ES11.NormalPointerType _type = default(OpenTK.Graphics.ES11.NormalPointerType); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.ES11.GL.NormalPointer(_type,_stride,_pointer); -} -static unsafe void Test_NormalPointer_29887() { - OpenTK.Graphics.ES11.NormalPointerType _type = default(OpenTK.Graphics.ES11.NormalPointerType); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.ES11.GL.NormalPointer(_type,_stride,ref _pointer); -} -static unsafe void Test_Ortho_29888() { - System.Single _l = default(System.Single); - System.Single _r = default(System.Single); - System.Single _b = default(System.Single); - System.Single _t = default(System.Single); - System.Single _n = default(System.Single); - System.Single _f = default(System.Single); - OpenTK.Graphics.ES11.GL.Ortho(_l,_r,_b,_t,_n,_f); -} -static unsafe void Test_Orthox_29889() { - System.Int32 _l = default(System.Int32); - System.Int32 _r = default(System.Int32); - System.Int32 _b = default(System.Int32); - System.Int32 _t = default(System.Int32); - System.Int32 _n = default(System.Int32); - System.Int32 _f = default(System.Int32); - OpenTK.Graphics.ES11.GL.Orthox(_l,_r,_b,_t,_n,_f); -} -static unsafe void Test_PixelMapx_29890() { - OpenTK.Graphics.ES11.All _map = default(OpenTK.Graphics.ES11.All); - System.Int32 _size = default(System.Int32); - System.Int32[] _values = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.PixelMapx(_map,_size,_values); -} -static unsafe void Test_PixelMapx_29891() { - OpenTK.Graphics.ES11.All _map = default(OpenTK.Graphics.ES11.All); - System.Int32 _size = default(System.Int32); - System.Int32 _values = default(System.Int32); - OpenTK.Graphics.ES11.GL.PixelMapx(_map,_size,ref _values); -} -static unsafe void Test_PixelMapx_29892() { - OpenTK.Graphics.ES11.All _map = default(OpenTK.Graphics.ES11.All); - System.Int32 _size = default(System.Int32); - System.Int32* _values = default(System.Int32*); - OpenTK.Graphics.ES11.GL.PixelMapx(_map,_size,_values); -} -static unsafe void Test_PixelStore_29893() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES11.GL.PixelStore(_pname,_param); -} -static unsafe void Test_PixelStore_29894() { - OpenTK.Graphics.ES11.PixelStoreParameter _pname = default(OpenTK.Graphics.ES11.PixelStoreParameter); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES11.GL.PixelStore(_pname,_param); -} -static unsafe void Test_PixelStorex_29895() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES11.GL.PixelStorex(_pname,_param); -} -static unsafe void Test_PointParameter_29896() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single _param = default(System.Single); - OpenTK.Graphics.ES11.GL.PointParameter(_pname,_param); -} -static unsafe void Test_PointParameter_29897() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES11.GL.PointParameter(_pname,_params); -} -static unsafe void Test_PointParameter_29898() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES11.GL.PointParameter(_pname,_params); -} -static unsafe void Test_PointParameterx_29899() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES11.GL.PointParameterx(_pname,_param); -} -static unsafe void Test_PointParameterx_29900() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.PointParameterx(_pname,_params); -} -static unsafe void Test_PointParameterx_29901() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.PointParameterx(_pname,_params); -} -static unsafe void Test_PointSize_29902() { - System.Single _size = default(System.Single); - OpenTK.Graphics.ES11.GL.PointSize(_size); -} -static unsafe void Test_PointSizex_29903() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.GL.PointSizex(_size); -} -static unsafe void Test_PolygonOffset_29904() { - System.Single _factor = default(System.Single); - System.Single _units = default(System.Single); - OpenTK.Graphics.ES11.GL.PolygonOffset(_factor,_units); -} -static unsafe void Test_PolygonOffsetx_29905() { - System.Int32 _factor = default(System.Int32); - System.Int32 _units = default(System.Int32); - OpenTK.Graphics.ES11.GL.PolygonOffsetx(_factor,_units); -} -static unsafe void Test_PopMatrix_29906() { - OpenTK.Graphics.ES11.GL.PopMatrix(); -} -static unsafe void Test_PushMatrix_29907() { - OpenTK.Graphics.ES11.GL.PushMatrix(); -} -static unsafe void Test_ReadPixels_29908() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.All _format = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.ES11.GL.ReadPixels(_x,_y,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_ReadPixels_29909() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.All _format = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int[] _pixels = default(int[]); - OpenTK.Graphics.ES11.GL.ReadPixels(_x,_y,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_ReadPixels_29910() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.All _format = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.ES11.GL.ReadPixels(_x,_y,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_ReadPixels_29911() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.All _format = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.ES11.GL.ReadPixels(_x,_y,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_ReadPixels_29912() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.All _format = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int _pixels = default(int); - OpenTK.Graphics.ES11.GL.ReadPixels(_x,_y,_width,_height,_format,_type,ref _pixels); -} -static unsafe void Test_ReadPixels_29913() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.PixelFormat _format = default(OpenTK.Graphics.ES11.PixelFormat); - OpenTK.Graphics.ES11.PixelType _type = default(OpenTK.Graphics.ES11.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.ES11.GL.ReadPixels(_x,_y,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_ReadPixels_29914() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.PixelFormat _format = default(OpenTK.Graphics.ES11.PixelFormat); - OpenTK.Graphics.ES11.PixelType _type = default(OpenTK.Graphics.ES11.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.ES11.GL.ReadPixels(_x,_y,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_ReadPixels_29915() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.PixelFormat _format = default(OpenTK.Graphics.ES11.PixelFormat); - OpenTK.Graphics.ES11.PixelType _type = default(OpenTK.Graphics.ES11.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.ES11.GL.ReadPixels(_x,_y,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_ReadPixels_29916() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.PixelFormat _format = default(OpenTK.Graphics.ES11.PixelFormat); - OpenTK.Graphics.ES11.PixelType _type = default(OpenTK.Graphics.ES11.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.ES11.GL.ReadPixels(_x,_y,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_ReadPixels_29917() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.PixelFormat _format = default(OpenTK.Graphics.ES11.PixelFormat); - OpenTK.Graphics.ES11.PixelType _type = default(OpenTK.Graphics.ES11.PixelType); - int _pixels = default(int); - OpenTK.Graphics.ES11.GL.ReadPixels(_x,_y,_width,_height,_format,_type,ref _pixels); -} -static unsafe void Test_Rotate_29918() { - System.Single _angle = default(System.Single); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.ES11.GL.Rotate(_angle,_x,_y,_z); -} -static unsafe void Test_Rotatex_29919() { - System.Int32 _angle = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - OpenTK.Graphics.ES11.GL.Rotatex(_angle,_x,_y,_z); -} -static unsafe void Test_SampleCoverage_29920() { - System.Single _value = default(System.Single); - System.Boolean _invert = default(System.Boolean); - OpenTK.Graphics.ES11.GL.SampleCoverage(_value,_invert); -} -static unsafe void Test_SampleCoveragex_29921() { - System.Int32 _value = default(System.Int32); - System.Boolean _invert = default(System.Boolean); - OpenTK.Graphics.ES11.GL.SampleCoveragex(_value,_invert); -} -static unsafe void Test_Scale_29922() { - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.ES11.GL.Scale(_x,_y,_z); -} -static unsafe void Test_Scalex_29923() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - OpenTK.Graphics.ES11.GL.Scalex(_x,_y,_z); -} -static unsafe void Test_Scissor_29924() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.GL.Scissor(_x,_y,_width,_height); -} -static unsafe void Test_ShadeModel_29925() { - OpenTK.Graphics.ES11.All _mode = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.GL.ShadeModel(_mode); -} -static unsafe void Test_ShadeModel_29926() { - OpenTK.Graphics.ES11.ShadingModel _mode = default(OpenTK.Graphics.ES11.ShadingModel); - OpenTK.Graphics.ES11.GL.ShadeModel(_mode); -} -static unsafe void Test_StencilFunc_29927() { - OpenTK.Graphics.ES11.All _func = default(OpenTK.Graphics.ES11.All); - System.Int32 _ref = default(System.Int32); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.ES11.GL.StencilFunc(_func,_ref,_mask); -} -static unsafe void Test_StencilFunc_29928() { - OpenTK.Graphics.ES11.All _func = default(OpenTK.Graphics.ES11.All); - System.Int32 _ref = default(System.Int32); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.ES11.GL.StencilFunc(_func,_ref,_mask); -} -static unsafe void Test_StencilFunc_29929() { - OpenTK.Graphics.ES11.StencilFunction _func = default(OpenTK.Graphics.ES11.StencilFunction); - System.Int32 _ref = default(System.Int32); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.ES11.GL.StencilFunc(_func,_ref,_mask); -} -static unsafe void Test_StencilFunc_29930() { - OpenTK.Graphics.ES11.StencilFunction _func = default(OpenTK.Graphics.ES11.StencilFunction); - System.Int32 _ref = default(System.Int32); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.ES11.GL.StencilFunc(_func,_ref,_mask); -} -static unsafe void Test_StencilMask_29931() { - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.ES11.GL.StencilMask(_mask); -} -static unsafe void Test_StencilMask_29932() { - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.ES11.GL.StencilMask(_mask); -} -static unsafe void Test_StencilOp_29933() { - OpenTK.Graphics.ES11.All _fail = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _zfail = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _zpass = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.GL.StencilOp(_fail,_zfail,_zpass); -} -static unsafe void Test_StencilOp_29934() { - OpenTK.Graphics.ES11.StencilOp _fail = default(OpenTK.Graphics.ES11.StencilOp); - OpenTK.Graphics.ES11.StencilOp _zfail = default(OpenTK.Graphics.ES11.StencilOp); - OpenTK.Graphics.ES11.StencilOp _zpass = default(OpenTK.Graphics.ES11.StencilOp); - OpenTK.Graphics.ES11.GL.StencilOp(_fail,_zfail,_zpass); -} -static unsafe void Test_TexCoordPointer_29935() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.ES11.GL.TexCoordPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_TexCoordPointer_29936() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.ES11.GL.TexCoordPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_TexCoordPointer_29937() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.ES11.GL.TexCoordPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_TexCoordPointer_29938() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.ES11.GL.TexCoordPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_TexCoordPointer_29939() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.ES11.GL.TexCoordPointer(_size,_type,_stride,ref _pointer); -} -static unsafe void Test_TexCoordPointer_29940() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.TexCoordPointerType _type = default(OpenTK.Graphics.ES11.TexCoordPointerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.ES11.GL.TexCoordPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_TexCoordPointer_29941() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.TexCoordPointerType _type = default(OpenTK.Graphics.ES11.TexCoordPointerType); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.ES11.GL.TexCoordPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_TexCoordPointer_29942() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.TexCoordPointerType _type = default(OpenTK.Graphics.ES11.TexCoordPointerType); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.ES11.GL.TexCoordPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_TexCoordPointer_29943() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.TexCoordPointerType _type = default(OpenTK.Graphics.ES11.TexCoordPointerType); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.ES11.GL.TexCoordPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_TexCoordPointer_29944() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.TexCoordPointerType _type = default(OpenTK.Graphics.ES11.TexCoordPointerType); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.ES11.GL.TexCoordPointer(_size,_type,_stride,ref _pointer); -} -static unsafe void Test_TexEnv_29945() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single _param = default(System.Single); - OpenTK.Graphics.ES11.GL.TexEnv(_target,_pname,_param); -} -static unsafe void Test_TexEnv_29946() { - OpenTK.Graphics.ES11.TextureEnvTarget _target = default(OpenTK.Graphics.ES11.TextureEnvTarget); - OpenTK.Graphics.ES11.TextureEnvParameter _pname = default(OpenTK.Graphics.ES11.TextureEnvParameter); - System.Single _param = default(System.Single); - OpenTK.Graphics.ES11.GL.TexEnv(_target,_pname,_param); -} -static unsafe void Test_TexEnv_29947() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES11.GL.TexEnv(_target,_pname,_params); -} -static unsafe void Test_TexEnv_29948() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES11.GL.TexEnv(_target,_pname,_params); -} -static unsafe void Test_TexEnv_29949() { - OpenTK.Graphics.ES11.TextureEnvTarget _target = default(OpenTK.Graphics.ES11.TextureEnvTarget); - OpenTK.Graphics.ES11.TextureEnvParameter _pname = default(OpenTK.Graphics.ES11.TextureEnvParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES11.GL.TexEnv(_target,_pname,_params); -} -static unsafe void Test_TexEnv_29950() { - OpenTK.Graphics.ES11.TextureEnvTarget _target = default(OpenTK.Graphics.ES11.TextureEnvTarget); - OpenTK.Graphics.ES11.TextureEnvParameter _pname = default(OpenTK.Graphics.ES11.TextureEnvParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES11.GL.TexEnv(_target,_pname,_params); -} -static unsafe void Test_TexEnv_29951() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES11.GL.TexEnv(_target,_pname,_param); -} -static unsafe void Test_TexEnv_29952() { - OpenTK.Graphics.ES11.TextureEnvTarget _target = default(OpenTK.Graphics.ES11.TextureEnvTarget); - OpenTK.Graphics.ES11.TextureEnvParameter _pname = default(OpenTK.Graphics.ES11.TextureEnvParameter); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES11.GL.TexEnv(_target,_pname,_param); -} -static unsafe void Test_TexEnv_29953() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.TexEnv(_target,_pname,_params); -} -static unsafe void Test_TexEnv_29954() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.TexEnv(_target,_pname,_params); -} -static unsafe void Test_TexEnv_29955() { - OpenTK.Graphics.ES11.TextureEnvTarget _target = default(OpenTK.Graphics.ES11.TextureEnvTarget); - OpenTK.Graphics.ES11.TextureEnvParameter _pname = default(OpenTK.Graphics.ES11.TextureEnvParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.TexEnv(_target,_pname,_params); -} -static unsafe void Test_TexEnv_29956() { - OpenTK.Graphics.ES11.TextureEnvTarget _target = default(OpenTK.Graphics.ES11.TextureEnvTarget); - OpenTK.Graphics.ES11.TextureEnvParameter _pname = default(OpenTK.Graphics.ES11.TextureEnvParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.TexEnv(_target,_pname,_params); -} -static unsafe void Test_TexEnvx_29957() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES11.GL.TexEnvx(_target,_pname,_param); -} -static unsafe void Test_TexEnvx_29958() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.TexEnvx(_target,_pname,_params); -} -static unsafe void Test_TexEnvx_29959() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.TexEnvx(_target,_pname,_params); -} -static unsafe void Test_TexImage2D_29960() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES11.All _format = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.ES11.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage2D_29961() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES11.All _format = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int[] _pixels = default(int[]); - OpenTK.Graphics.ES11.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage2D_29962() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES11.All _format = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.ES11.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage2D_29963() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES11.All _format = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.ES11.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage2D_29964() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES11.All _format = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int _pixels = default(int); - OpenTK.Graphics.ES11.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,ref _pixels); -} -static unsafe void Test_TexImage2D_29965() { - OpenTK.Graphics.ES11.TextureTarget _target = default(OpenTK.Graphics.ES11.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES11.PixelFormat _format = default(OpenTK.Graphics.ES11.PixelFormat); - OpenTK.Graphics.ES11.PixelType _type = default(OpenTK.Graphics.ES11.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.ES11.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage2D_29966() { - OpenTK.Graphics.ES11.TextureTarget _target = default(OpenTK.Graphics.ES11.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES11.PixelFormat _format = default(OpenTK.Graphics.ES11.PixelFormat); - OpenTK.Graphics.ES11.PixelType _type = default(OpenTK.Graphics.ES11.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.ES11.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage2D_29967() { - OpenTK.Graphics.ES11.TextureTarget _target = default(OpenTK.Graphics.ES11.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES11.PixelFormat _format = default(OpenTK.Graphics.ES11.PixelFormat); - OpenTK.Graphics.ES11.PixelType _type = default(OpenTK.Graphics.ES11.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.ES11.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage2D_29968() { - OpenTK.Graphics.ES11.TextureTarget _target = default(OpenTK.Graphics.ES11.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES11.PixelFormat _format = default(OpenTK.Graphics.ES11.PixelFormat); - OpenTK.Graphics.ES11.PixelType _type = default(OpenTK.Graphics.ES11.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.ES11.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage2D_29969() { - OpenTK.Graphics.ES11.TextureTarget _target = default(OpenTK.Graphics.ES11.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES11.PixelFormat _format = default(OpenTK.Graphics.ES11.PixelFormat); - OpenTK.Graphics.ES11.PixelType _type = default(OpenTK.Graphics.ES11.PixelType); - int _pixels = default(int); - OpenTK.Graphics.ES11.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,ref _pixels); -} -static unsafe void Test_TexParameter_29970() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single _param = default(System.Single); - OpenTK.Graphics.ES11.GL.TexParameter(_target,_pname,_param); -} -static unsafe void Test_TexParameter_29971() { - OpenTK.Graphics.ES11.TextureTarget _target = default(OpenTK.Graphics.ES11.TextureTarget); - OpenTK.Graphics.ES11.TextureParameterName _pname = default(OpenTK.Graphics.ES11.TextureParameterName); - System.Single _param = default(System.Single); - OpenTK.Graphics.ES11.GL.TexParameter(_target,_pname,_param); -} -static unsafe void Test_TexParameter_29972() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES11.GL.TexParameter(_target,_pname,_params); -} -static unsafe void Test_TexParameter_29973() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES11.GL.TexParameter(_target,_pname,_params); -} -static unsafe void Test_TexParameter_29974() { - OpenTK.Graphics.ES11.TextureTarget _target = default(OpenTK.Graphics.ES11.TextureTarget); - OpenTK.Graphics.ES11.TextureParameterName _pname = default(OpenTK.Graphics.ES11.TextureParameterName); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES11.GL.TexParameter(_target,_pname,_params); -} -static unsafe void Test_TexParameter_29975() { - OpenTK.Graphics.ES11.TextureTarget _target = default(OpenTK.Graphics.ES11.TextureTarget); - OpenTK.Graphics.ES11.TextureParameterName _pname = default(OpenTK.Graphics.ES11.TextureParameterName); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES11.GL.TexParameter(_target,_pname,_params); -} -static unsafe void Test_TexParameter_29976() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES11.GL.TexParameter(_target,_pname,_param); -} -static unsafe void Test_TexParameter_29977() { - OpenTK.Graphics.ES11.TextureTarget _target = default(OpenTK.Graphics.ES11.TextureTarget); - OpenTK.Graphics.ES11.TextureParameterName _pname = default(OpenTK.Graphics.ES11.TextureParameterName); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES11.GL.TexParameter(_target,_pname,_param); -} -static unsafe void Test_TexParameter_29978() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.TexParameter(_target,_pname,_params); -} -static unsafe void Test_TexParameter_29979() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.TexParameter(_target,_pname,_params); -} -static unsafe void Test_TexParameter_29980() { - OpenTK.Graphics.ES11.TextureTarget _target = default(OpenTK.Graphics.ES11.TextureTarget); - OpenTK.Graphics.ES11.TextureParameterName _pname = default(OpenTK.Graphics.ES11.TextureParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.TexParameter(_target,_pname,_params); -} -static unsafe void Test_TexParameter_29981() { - OpenTK.Graphics.ES11.TextureTarget _target = default(OpenTK.Graphics.ES11.TextureTarget); - OpenTK.Graphics.ES11.TextureParameterName _pname = default(OpenTK.Graphics.ES11.TextureParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.TexParameter(_target,_pname,_params); -} -static unsafe void Test_TexParameterx_29982() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES11.GL.TexParameterx(_target,_pname,_param); -} -static unsafe void Test_TexParameterx_29983() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.TexParameterx(_target,_pname,_params); -} -static unsafe void Test_TexParameterx_29984() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.TexParameterx(_target,_pname,_params); -} -static unsafe void Test_TexSubImage2D_29985() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.All _format = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.ES11.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_29986() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.All _format = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int[] _pixels = default(int[]); - OpenTK.Graphics.ES11.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_29987() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.All _format = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.ES11.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_29988() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.All _format = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.ES11.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_29989() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.All _format = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int _pixels = default(int); - OpenTK.Graphics.ES11.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,ref _pixels); -} -static unsafe void Test_TexSubImage2D_29990() { - OpenTK.Graphics.ES11.TextureTarget _target = default(OpenTK.Graphics.ES11.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.PixelFormat _format = default(OpenTK.Graphics.ES11.PixelFormat); - OpenTK.Graphics.ES11.PixelType _type = default(OpenTK.Graphics.ES11.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.ES11.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_29991() { - OpenTK.Graphics.ES11.TextureTarget _target = default(OpenTK.Graphics.ES11.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.PixelFormat _format = default(OpenTK.Graphics.ES11.PixelFormat); - OpenTK.Graphics.ES11.PixelType _type = default(OpenTK.Graphics.ES11.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.ES11.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_29992() { - OpenTK.Graphics.ES11.TextureTarget _target = default(OpenTK.Graphics.ES11.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.PixelFormat _format = default(OpenTK.Graphics.ES11.PixelFormat); - OpenTK.Graphics.ES11.PixelType _type = default(OpenTK.Graphics.ES11.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.ES11.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_29993() { - OpenTK.Graphics.ES11.TextureTarget _target = default(OpenTK.Graphics.ES11.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.PixelFormat _format = default(OpenTK.Graphics.ES11.PixelFormat); - OpenTK.Graphics.ES11.PixelType _type = default(OpenTK.Graphics.ES11.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.ES11.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_29994() { - OpenTK.Graphics.ES11.TextureTarget _target = default(OpenTK.Graphics.ES11.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.PixelFormat _format = default(OpenTK.Graphics.ES11.PixelFormat); - OpenTK.Graphics.ES11.PixelType _type = default(OpenTK.Graphics.ES11.PixelType); - int _pixels = default(int); - OpenTK.Graphics.ES11.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,ref _pixels); -} -static unsafe void Test_Translate_29995() { - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.ES11.GL.Translate(_x,_y,_z); -} -static unsafe void Test_Translatex_29996() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - OpenTK.Graphics.ES11.GL.Translatex(_x,_y,_z); -} -static unsafe void Test_VertexPointer_29997() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.ES11.GL.VertexPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexPointer_29998() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.ES11.GL.VertexPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexPointer_29999() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.ES11.GL.VertexPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexPointer_30000() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.ES11.GL.VertexPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexPointer_30001() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.ES11.GL.VertexPointer(_size,_type,_stride,ref _pointer); -} -static unsafe void Test_VertexPointer_30002() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.VertexPointerType _type = default(OpenTK.Graphics.ES11.VertexPointerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.ES11.GL.VertexPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexPointer_30003() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.VertexPointerType _type = default(OpenTK.Graphics.ES11.VertexPointerType); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.ES11.GL.VertexPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexPointer_30004() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.VertexPointerType _type = default(OpenTK.Graphics.ES11.VertexPointerType); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.ES11.GL.VertexPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexPointer_30005() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.VertexPointerType _type = default(OpenTK.Graphics.ES11.VertexPointerType); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.ES11.GL.VertexPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexPointer_30006() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.VertexPointerType _type = default(OpenTK.Graphics.ES11.VertexPointerType); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.ES11.GL.VertexPointer(_size,_type,_stride,ref _pointer); -} -static unsafe void Test_Viewport_30007() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.GL.Viewport(_x,_y,_width,_height); -} -static unsafe void Test_GetClipPlane_30008() { - OpenTK.Graphics.ES11.All _plane = default(OpenTK.Graphics.ES11.All); - System.Single r = OpenTK.Graphics.ES11.GL.GetClipPlane(_plane); -} -static unsafe void Test_GetClipPlanex_30009() { - OpenTK.Graphics.ES11.All _plane = default(OpenTK.Graphics.ES11.All); - System.Int32 r = OpenTK.Graphics.ES11.GL.GetClipPlanex(_plane); -} -static unsafe void Test_ClientWaitSync_30010() { - System.IntPtr _sync = default(System.IntPtr); - System.Int32 _flags = default(System.Int32); - System.Int64 _timeout = default(System.Int64); - OpenTK.Graphics.ES11.All r = OpenTK.Graphics.ES11.GL.Apple.ClientWaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_ClientWaitSync_30011() { - System.IntPtr _sync = default(System.IntPtr); - System.UInt32 _flags = default(System.UInt32); - System.UInt64 _timeout = default(System.UInt64); - OpenTK.Graphics.ES11.All r = OpenTK.Graphics.ES11.GL.Apple.ClientWaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_CopyTextureLevel_30012() { - System.Int32 _destinationTexture = default(System.Int32); - System.Int32 _sourceTexture = default(System.Int32); - System.Int32 _sourceBaseLevel = default(System.Int32); - System.Int32 _sourceLevelCount = default(System.Int32); - OpenTK.Graphics.ES11.GL.Apple.CopyTextureLevel(_destinationTexture,_sourceTexture,_sourceBaseLevel,_sourceLevelCount); -} -static unsafe void Test_CopyTextureLevel_30013() { - System.UInt32 _destinationTexture = default(System.UInt32); - System.UInt32 _sourceTexture = default(System.UInt32); - System.Int32 _sourceBaseLevel = default(System.Int32); - System.Int32 _sourceLevelCount = default(System.Int32); - OpenTK.Graphics.ES11.GL.Apple.CopyTextureLevel(_destinationTexture,_sourceTexture,_sourceBaseLevel,_sourceLevelCount); -} -static unsafe void Test_DeleteSync_30014() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES11.GL.Apple.DeleteSync(_sync); -} -static unsafe void Test_FenceSync_30015() { - OpenTK.Graphics.ES11.All _condition = default(OpenTK.Graphics.ES11.All); - System.Int32 _flags = default(System.Int32); - System.IntPtr r = OpenTK.Graphics.ES11.GL.Apple.FenceSync(_condition,_flags); -} -static unsafe void Test_FenceSync_30016() { - OpenTK.Graphics.ES11.All _condition = default(OpenTK.Graphics.ES11.All); - System.UInt32 _flags = default(System.UInt32); - System.IntPtr r = OpenTK.Graphics.ES11.GL.Apple.FenceSync(_condition,_flags); -} -static unsafe void Test_GetInteger64_30017() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int64 r = OpenTK.Graphics.ES11.GL.Apple.GetInteger64(_pname); -} -static unsafe void Test_GetInteger64_30018() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.ES11.GL.Apple.GetInteger64(_pname,_params); -} -static unsafe void Test_GetInteger64_30019() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.ES11.GL.Apple.GetInteger64(_pname,out _params); -} -static unsafe void Test_GetInteger64_30020() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.ES11.GL.Apple.GetInteger64(_pname,_params); -} -static unsafe void Test_GetSync_30021() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Int32[] _values = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Apple.GetSync(_sync,_pname,_bufSize,_length,_values); -} -static unsafe void Test_GetSync_30022() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _values = default(System.Int32); - OpenTK.Graphics.ES11.GL.Apple.GetSync(_sync,_pname,_bufSize,out _length,out _values); -} -static unsafe void Test_GetSync_30023() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _values = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Apple.GetSync(_sync,_pname,_bufSize,_length,_values); -} -static unsafe void Test_IsSync_30024() { - System.IntPtr _sync = default(System.IntPtr); - System.Boolean r = OpenTK.Graphics.ES11.GL.Apple.IsSync(_sync); -} -static unsafe void Test_RenderbufferStorageMultisample_30025() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.ES11.All _internalformat = default(OpenTK.Graphics.ES11.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.GL.Apple.RenderbufferStorageMultisample(_target,_samples,_internalformat,_width,_height); -} -static unsafe void Test_ResolveMultisampleFramebuffer_30026() { - OpenTK.Graphics.ES11.GL.Apple.ResolveMultisampleFramebuffer(); -} -static unsafe void Test_WaitSync_30027() { - System.IntPtr _sync = default(System.IntPtr); - System.Int32 _flags = default(System.Int32); - System.Int64 _timeout = default(System.Int64); - OpenTK.Graphics.ES11.GL.Apple.WaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_WaitSync_30028() { - System.IntPtr _sync = default(System.IntPtr); - System.UInt32 _flags = default(System.UInt32); - System.UInt64 _timeout = default(System.UInt64); - OpenTK.Graphics.ES11.GL.Apple.WaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_BlendEquation_30029() { - OpenTK.Graphics.ES11.All _mode = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.GL.Ext.BlendEquation(_mode); -} -static unsafe void Test_BlendEquation_30030() { - OpenTK.Graphics.ES11.BlendEquationModeExt _mode = default(OpenTK.Graphics.ES11.BlendEquationModeExt); - OpenTK.Graphics.ES11.GL.Ext.BlendEquation(_mode); -} -static unsafe void Test_DiscardFramebuffer_30031() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _numAttachments = default(System.Int32); - OpenTK.Graphics.ES11.All[] _attachments = default(OpenTK.Graphics.ES11.All[]); - OpenTK.Graphics.ES11.GL.Ext.DiscardFramebuffer(_target,_numAttachments,_attachments); -} -static unsafe void Test_DiscardFramebuffer_30032() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _numAttachments = default(System.Int32); - OpenTK.Graphics.ES11.All _attachments = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.GL.Ext.DiscardFramebuffer(_target,_numAttachments,ref _attachments); -} -static unsafe void Test_DiscardFramebuffer_30033() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _numAttachments = default(System.Int32); - OpenTK.Graphics.ES11.All* _attachments = default(OpenTK.Graphics.ES11.All*); - OpenTK.Graphics.ES11.GL.Ext.DiscardFramebuffer(_target,_numAttachments,_attachments); -} -static unsafe void Test_FlushMappedBufferRange_30034() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _length = default(System.IntPtr); - OpenTK.Graphics.ES11.GL.Ext.FlushMappedBufferRange(_target,_offset,_length); -} -static unsafe void Test_FramebufferTexture2DMultisample_30035() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _attachment = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _textarget = default(OpenTK.Graphics.ES11.All); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.FramebufferTexture2DMultisample(_target,_attachment,_textarget,_texture,_level,_samples); -} -static unsafe void Test_FramebufferTexture2DMultisample_30036() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _attachment = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _textarget = default(OpenTK.Graphics.ES11.All); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.FramebufferTexture2DMultisample(_target,_attachment,_textarget,_texture,_level,_samples); -} -static unsafe void Test_GetGraphicsResetStatus_30037() { - OpenTK.Graphics.ES11.All r = OpenTK.Graphics.ES11.GL.Ext.GetGraphicsResetStatus(); -} -static unsafe void Test_GetnUniform_30038() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES11.GL.Ext.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_30039() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Single _params = default(System.Single); - OpenTK.Graphics.ES11.GL.Ext.GetnUniform(_program,_location,_bufSize,out _params); -} -static unsafe void Test_GetnUniform_30040() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES11.GL.Ext.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_30041() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES11.GL.Ext.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_30042() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Single _params = default(System.Single); - OpenTK.Graphics.ES11.GL.Ext.GetnUniform(_program,_location,_bufSize,out _params); -} -static unsafe void Test_GetnUniform_30043() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES11.GL.Ext.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_30044() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Ext.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_30045() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.GetnUniform(_program,_location,_bufSize,out _params); -} -static unsafe void Test_GetnUniform_30046() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Ext.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_30047() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Ext.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_30048() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.GetnUniform(_program,_location,_bufSize,out _params); -} -static unsafe void Test_GetnUniform_30049() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Ext.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_MapBufferRange_30050() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _length = default(System.IntPtr); - System.Int32 _access = default(System.Int32); - System.IntPtr r = OpenTK.Graphics.ES11.GL.Ext.MapBufferRange(_target,_offset,_length,_access); -} -static unsafe void Test_MapBufferRange_30051() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _length = default(System.IntPtr); - System.UInt32 _access = default(System.UInt32); - System.IntPtr r = OpenTK.Graphics.ES11.GL.Ext.MapBufferRange(_target,_offset,_length,_access); -} -static unsafe void Test_MultiDrawArrays_30052() { - OpenTK.Graphics.ES11.All _mode = default(OpenTK.Graphics.ES11.All); - System.Int32[] _first = default(System.Int32[]); - System.Int32[] _count = default(System.Int32[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.MultiDrawArrays(_mode,_first,_count,_primcount); -} -static unsafe void Test_MultiDrawArrays_30053() { - OpenTK.Graphics.ES11.All _mode = default(OpenTK.Graphics.ES11.All); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.MultiDrawArrays(_mode,ref _first,ref _count,_primcount); -} -static unsafe void Test_MultiDrawArrays_30054() { - OpenTK.Graphics.ES11.All _mode = default(OpenTK.Graphics.ES11.All); - System.Int32* _first = default(System.Int32*); - System.Int32* _count = default(System.Int32*); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.MultiDrawArrays(_mode,_first,_count,_primcount); -} -static unsafe void Test_MultiDrawArrays_30055() { - OpenTK.Graphics.ES11.PrimitiveType _mode = default(OpenTK.Graphics.ES11.PrimitiveType); - System.Int32[] _first = default(System.Int32[]); - System.Int32[] _count = default(System.Int32[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.MultiDrawArrays(_mode,_first,_count,_primcount); -} -static unsafe void Test_MultiDrawArrays_30056() { - OpenTK.Graphics.ES11.PrimitiveType _mode = default(OpenTK.Graphics.ES11.PrimitiveType); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.MultiDrawArrays(_mode,ref _first,ref _count,_primcount); -} -static unsafe void Test_MultiDrawArrays_30057() { - OpenTK.Graphics.ES11.PrimitiveType _mode = default(OpenTK.Graphics.ES11.PrimitiveType); - System.Int32* _first = default(System.Int32*); - System.Int32* _count = default(System.Int32*); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.MultiDrawArrays(_mode,_first,_count,_primcount); -} -static unsafe void Test_MultiDrawElements_30058() { - OpenTK.Graphics.ES11.All _mode = default(OpenTK.Graphics.ES11.All); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_30059() { - OpenTK.Graphics.ES11.All _mode = default(OpenTK.Graphics.ES11.All); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_30060() { - OpenTK.Graphics.ES11.All _mode = default(OpenTK.Graphics.ES11.All); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_30061() { - OpenTK.Graphics.ES11.All _mode = default(OpenTK.Graphics.ES11.All); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_30062() { - OpenTK.Graphics.ES11.All _mode = default(OpenTK.Graphics.ES11.All); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.MultiDrawElements(_mode,_count,_type,ref _indices,_primcount); -} -static unsafe void Test_MultiDrawElements_30063() { - OpenTK.Graphics.ES11.All _mode = default(OpenTK.Graphics.ES11.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.MultiDrawElements(_mode,ref _count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_30064() { - OpenTK.Graphics.ES11.All _mode = default(OpenTK.Graphics.ES11.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.MultiDrawElements(_mode,ref _count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_30065() { - OpenTK.Graphics.ES11.All _mode = default(OpenTK.Graphics.ES11.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.MultiDrawElements(_mode,ref _count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_30066() { - OpenTK.Graphics.ES11.All _mode = default(OpenTK.Graphics.ES11.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.MultiDrawElements(_mode,ref _count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_30067() { - OpenTK.Graphics.ES11.All _mode = default(OpenTK.Graphics.ES11.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.MultiDrawElements(_mode,ref _count,_type,ref _indices,_primcount); -} -static unsafe void Test_MultiDrawElements_30068() { - OpenTK.Graphics.ES11.All _mode = default(OpenTK.Graphics.ES11.All); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_30069() { - OpenTK.Graphics.ES11.All _mode = default(OpenTK.Graphics.ES11.All); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_30070() { - OpenTK.Graphics.ES11.All _mode = default(OpenTK.Graphics.ES11.All); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_30071() { - OpenTK.Graphics.ES11.All _mode = default(OpenTK.Graphics.ES11.All); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_30072() { - OpenTK.Graphics.ES11.All _mode = default(OpenTK.Graphics.ES11.All); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.MultiDrawElements(_mode,_count,_type,ref _indices,_primcount); -} -static unsafe void Test_MultiDrawElements_30073() { - OpenTK.Graphics.ES11.PrimitiveType _mode = default(OpenTK.Graphics.ES11.PrimitiveType); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_30074() { - OpenTK.Graphics.ES11.PrimitiveType _mode = default(OpenTK.Graphics.ES11.PrimitiveType); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_30075() { - OpenTK.Graphics.ES11.PrimitiveType _mode = default(OpenTK.Graphics.ES11.PrimitiveType); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_30076() { - OpenTK.Graphics.ES11.PrimitiveType _mode = default(OpenTK.Graphics.ES11.PrimitiveType); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_30077() { - OpenTK.Graphics.ES11.PrimitiveType _mode = default(OpenTK.Graphics.ES11.PrimitiveType); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.MultiDrawElements(_mode,_count,_type,ref _indices,_primcount); -} -static unsafe void Test_MultiDrawElements_30078() { - OpenTK.Graphics.ES11.PrimitiveType _mode = default(OpenTK.Graphics.ES11.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.MultiDrawElements(_mode,ref _count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_30079() { - OpenTK.Graphics.ES11.PrimitiveType _mode = default(OpenTK.Graphics.ES11.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.MultiDrawElements(_mode,ref _count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_30080() { - OpenTK.Graphics.ES11.PrimitiveType _mode = default(OpenTK.Graphics.ES11.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.MultiDrawElements(_mode,ref _count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_30081() { - OpenTK.Graphics.ES11.PrimitiveType _mode = default(OpenTK.Graphics.ES11.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.MultiDrawElements(_mode,ref _count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_30082() { - OpenTK.Graphics.ES11.PrimitiveType _mode = default(OpenTK.Graphics.ES11.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.MultiDrawElements(_mode,ref _count,_type,ref _indices,_primcount); -} -static unsafe void Test_MultiDrawElements_30083() { - OpenTK.Graphics.ES11.PrimitiveType _mode = default(OpenTK.Graphics.ES11.PrimitiveType); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_30084() { - OpenTK.Graphics.ES11.PrimitiveType _mode = default(OpenTK.Graphics.ES11.PrimitiveType); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_30085() { - OpenTK.Graphics.ES11.PrimitiveType _mode = default(OpenTK.Graphics.ES11.PrimitiveType); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_30086() { - OpenTK.Graphics.ES11.PrimitiveType _mode = default(OpenTK.Graphics.ES11.PrimitiveType); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_30087() { - OpenTK.Graphics.ES11.PrimitiveType _mode = default(OpenTK.Graphics.ES11.PrimitiveType); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.MultiDrawElements(_mode,_count,_type,ref _indices,_primcount); -} -static unsafe void Test_ReadnPixels_30088() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.All _format = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32 _bufSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES11.GL.Ext.ReadnPixels(_x,_y,_width,_height,_format,_type,_bufSize,_data); -} -static unsafe void Test_ReadnPixels_30089() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.All _format = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32 _bufSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.ES11.GL.Ext.ReadnPixels(_x,_y,_width,_height,_format,_type,_bufSize,_data); -} -static unsafe void Test_ReadnPixels_30090() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.All _format = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32 _bufSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES11.GL.Ext.ReadnPixels(_x,_y,_width,_height,_format,_type,_bufSize,_data); -} -static unsafe void Test_ReadnPixels_30091() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.All _format = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32 _bufSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES11.GL.Ext.ReadnPixels(_x,_y,_width,_height,_format,_type,_bufSize,_data); -} -static unsafe void Test_ReadnPixels_30092() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.All _format = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32 _bufSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.ES11.GL.Ext.ReadnPixels(_x,_y,_width,_height,_format,_type,_bufSize,ref _data); -} -static unsafe void Test_RenderbufferStorageMultisample_30093() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.ES11.All _internalformat = default(OpenTK.Graphics.ES11.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.RenderbufferStorageMultisample(_target,_samples,_internalformat,_width,_height); -} -static unsafe void Test_TexStorage1D_30094() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.ES11.All _internalformat = default(OpenTK.Graphics.ES11.All); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.TexStorage1D(_target,_levels,_internalformat,_width); -} -static unsafe void Test_TexStorage2D_30095() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.ES11.All _internalformat = default(OpenTK.Graphics.ES11.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.TexStorage2D(_target,_levels,_internalformat,_width,_height); -} -static unsafe void Test_TexStorage3D_30096() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.ES11.All _internalformat = default(OpenTK.Graphics.ES11.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.TexStorage3D(_target,_levels,_internalformat,_width,_height,_depth); -} -static unsafe void Test_TextureStorage1D_30097() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.ES11.All _internalformat = default(OpenTK.Graphics.ES11.All); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.TextureStorage1D(_texture,_target,_levels,_internalformat,_width); -} -static unsafe void Test_TextureStorage1D_30098() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.ES11.All _internalformat = default(OpenTK.Graphics.ES11.All); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.TextureStorage1D(_texture,_target,_levels,_internalformat,_width); -} -static unsafe void Test_TextureStorage2D_30099() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.ES11.All _internalformat = default(OpenTK.Graphics.ES11.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.TextureStorage2D(_texture,_target,_levels,_internalformat,_width,_height); -} -static unsafe void Test_TextureStorage2D_30100() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.ES11.All _internalformat = default(OpenTK.Graphics.ES11.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.TextureStorage2D(_texture,_target,_levels,_internalformat,_width,_height); -} -static unsafe void Test_TextureStorage3D_30101() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.ES11.All _internalformat = default(OpenTK.Graphics.ES11.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.TextureStorage3D(_texture,_target,_levels,_internalformat,_width,_height,_depth); -} -static unsafe void Test_TextureStorage3D_30102() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.ES11.All _internalformat = default(OpenTK.Graphics.ES11.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES11.GL.Ext.TextureStorage3D(_texture,_target,_levels,_internalformat,_width,_height,_depth); -} -static unsafe void Test_ClipPlane_30103() { - OpenTK.Graphics.ES11.All _p = default(OpenTK.Graphics.ES11.All); - System.Single[] _eqn = default(System.Single[]); - OpenTK.Graphics.ES11.GL.Img.ClipPlane(_p,_eqn); -} -static unsafe void Test_ClipPlane_30104() { - OpenTK.Graphics.ES11.All _p = default(OpenTK.Graphics.ES11.All); - System.Single _eqn = default(System.Single); - OpenTK.Graphics.ES11.GL.Img.ClipPlane(_p,ref _eqn); -} -static unsafe void Test_ClipPlane_30105() { - OpenTK.Graphics.ES11.All _p = default(OpenTK.Graphics.ES11.All); - System.Single* _eqn = default(System.Single*); - OpenTK.Graphics.ES11.GL.Img.ClipPlane(_p,_eqn); -} -static unsafe void Test_ClipPlanex_30106() { - OpenTK.Graphics.ES11.All _p = default(OpenTK.Graphics.ES11.All); - System.Int32[] _eqn = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Img.ClipPlanex(_p,_eqn); -} -static unsafe void Test_ClipPlanex_30107() { - OpenTK.Graphics.ES11.All _p = default(OpenTK.Graphics.ES11.All); - System.Int32 _eqn = default(System.Int32); - OpenTK.Graphics.ES11.GL.Img.ClipPlanex(_p,ref _eqn); -} -static unsafe void Test_ClipPlanex_30108() { - OpenTK.Graphics.ES11.All _p = default(OpenTK.Graphics.ES11.All); - System.Int32* _eqn = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Img.ClipPlanex(_p,_eqn); -} -static unsafe void Test_FramebufferTexture2DMultisample_30109() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _attachment = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _textarget = default(OpenTK.Graphics.ES11.All); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.ES11.GL.Img.FramebufferTexture2DMultisample(_target,_attachment,_textarget,_texture,_level,_samples); -} -static unsafe void Test_FramebufferTexture2DMultisample_30110() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _attachment = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _textarget = default(OpenTK.Graphics.ES11.All); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.ES11.GL.Img.FramebufferTexture2DMultisample(_target,_attachment,_textarget,_texture,_level,_samples); -} -static unsafe void Test_RenderbufferStorageMultisample_30111() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.ES11.All _internalformat = default(OpenTK.Graphics.ES11.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.GL.Img.RenderbufferStorageMultisample(_target,_samples,_internalformat,_width,_height); -} -static unsafe void Test_DeleteFence_30112() { - System.Int32 _fences = default(System.Int32); - OpenTK.Graphics.ES11.GL.NV.DeleteFence(_fences); -} -static unsafe void Test_DeleteFence_30113() { - System.UInt32 _fences = default(System.UInt32); - OpenTK.Graphics.ES11.GL.NV.DeleteFence(_fences); -} -static unsafe void Test_DeleteFences_30114() { - System.Int32 _n = default(System.Int32); - System.Int32[] _fences = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.NV.DeleteFences(_n,_fences); -} -static unsafe void Test_DeleteFences_30115() { - System.Int32 _n = default(System.Int32); - System.Int32 _fences = default(System.Int32); - OpenTK.Graphics.ES11.GL.NV.DeleteFences(_n,ref _fences); -} -static unsafe void Test_DeleteFences_30116() { - System.Int32 _n = default(System.Int32); - System.Int32* _fences = default(System.Int32*); - OpenTK.Graphics.ES11.GL.NV.DeleteFences(_n,_fences); -} -static unsafe void Test_DeleteFences_30117() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _fences = default(System.UInt32[]); - OpenTK.Graphics.ES11.GL.NV.DeleteFences(_n,_fences); -} -static unsafe void Test_DeleteFences_30118() { - System.Int32 _n = default(System.Int32); - System.UInt32 _fences = default(System.UInt32); - OpenTK.Graphics.ES11.GL.NV.DeleteFences(_n,ref _fences); -} -static unsafe void Test_DeleteFences_30119() { - System.Int32 _n = default(System.Int32); - System.UInt32* _fences = default(System.UInt32*); - OpenTK.Graphics.ES11.GL.NV.DeleteFences(_n,_fences); -} -static unsafe void Test_FinishFence_30120() { - System.Int32 _fence = default(System.Int32); - OpenTK.Graphics.ES11.GL.NV.FinishFence(_fence); -} -static unsafe void Test_FinishFence_30121() { - System.UInt32 _fence = default(System.UInt32); - OpenTK.Graphics.ES11.GL.NV.FinishFence(_fence); -} -static unsafe void Test_GenFence_30122() { - System.Int32 r = OpenTK.Graphics.ES11.GL.NV.GenFence(); -} -static unsafe void Test_GenFences_30123() { - System.Int32 _n = default(System.Int32); - System.Int32[] _fences = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.NV.GenFences(_n,_fences); -} -static unsafe void Test_GenFences_30124() { - System.Int32 _n = default(System.Int32); - System.Int32 _fences = default(System.Int32); - OpenTK.Graphics.ES11.GL.NV.GenFences(_n,out _fences); -} -static unsafe void Test_GenFences_30125() { - System.Int32 _n = default(System.Int32); - System.Int32* _fences = default(System.Int32*); - OpenTK.Graphics.ES11.GL.NV.GenFences(_n,_fences); -} -static unsafe void Test_GenFences_30126() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _fences = default(System.UInt32[]); - OpenTK.Graphics.ES11.GL.NV.GenFences(_n,_fences); -} -static unsafe void Test_GenFences_30127() { - System.Int32 _n = default(System.Int32); - System.UInt32 _fences = default(System.UInt32); - OpenTK.Graphics.ES11.GL.NV.GenFences(_n,out _fences); -} -static unsafe void Test_GenFences_30128() { - System.Int32 _n = default(System.Int32); - System.UInt32* _fences = default(System.UInt32*); - OpenTK.Graphics.ES11.GL.NV.GenFences(_n,_fences); -} -static unsafe void Test_GetFence_30129() { - System.Int32 _fence = default(System.Int32); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.NV.GetFence(_fence,_pname,_params); -} -static unsafe void Test_GetFence_30130() { - System.Int32 _fence = default(System.Int32); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES11.GL.NV.GetFence(_fence,_pname,out _params); -} -static unsafe void Test_GetFence_30131() { - System.Int32 _fence = default(System.Int32); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.NV.GetFence(_fence,_pname,_params); -} -static unsafe void Test_GetFence_30132() { - System.UInt32 _fence = default(System.UInt32); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.NV.GetFence(_fence,_pname,_params); -} -static unsafe void Test_GetFence_30133() { - System.UInt32 _fence = default(System.UInt32); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES11.GL.NV.GetFence(_fence,_pname,out _params); -} -static unsafe void Test_GetFence_30134() { - System.UInt32 _fence = default(System.UInt32); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.NV.GetFence(_fence,_pname,_params); -} -static unsafe void Test_IsFence_30135() { - System.Int32 _fence = default(System.Int32); - System.Boolean r = OpenTK.Graphics.ES11.GL.NV.IsFence(_fence); -} -static unsafe void Test_IsFence_30136() { - System.UInt32 _fence = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.ES11.GL.NV.IsFence(_fence); -} -static unsafe void Test_SetFence_30137() { - System.Int32 _fence = default(System.Int32); - OpenTK.Graphics.ES11.All _condition = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.GL.NV.SetFence(_fence,_condition); -} -static unsafe void Test_SetFence_30138() { - System.UInt32 _fence = default(System.UInt32); - OpenTK.Graphics.ES11.All _condition = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.GL.NV.SetFence(_fence,_condition); -} -static unsafe void Test_TestFence_30139() { - System.Int32 _fence = default(System.Int32); - System.Boolean r = OpenTK.Graphics.ES11.GL.NV.TestFence(_fence); -} -static unsafe void Test_TestFence_30140() { - System.UInt32 _fence = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.ES11.GL.NV.TestFence(_fence); -} -static unsafe void Test_Accumx_30141() { - OpenTK.Graphics.ES11.All _op = default(OpenTK.Graphics.ES11.All); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.Accumx(_op,_value); -} -static unsafe void Test_AlphaFuncx_30142() { - OpenTK.Graphics.ES11.All _func = default(OpenTK.Graphics.ES11.All); - System.Int32 _ref = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.AlphaFuncx(_func,_ref); -} -static unsafe void Test_BindFramebuffer_30143() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _framebuffer = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.BindFramebuffer(_target,_framebuffer); -} -static unsafe void Test_BindFramebuffer_30144() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.UInt32 _framebuffer = default(System.UInt32); - OpenTK.Graphics.ES11.GL.Oes.BindFramebuffer(_target,_framebuffer); -} -static unsafe void Test_BindRenderbuffer_30145() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _renderbuffer = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.BindRenderbuffer(_target,_renderbuffer); -} -static unsafe void Test_BindRenderbuffer_30146() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.UInt32 _renderbuffer = default(System.UInt32); - OpenTK.Graphics.ES11.GL.Oes.BindRenderbuffer(_target,_renderbuffer); -} -static unsafe void Test_BindVertexArray_30147() { - System.Int32 _array = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.BindVertexArray(_array); -} -static unsafe void Test_BindVertexArray_30148() { - System.UInt32 _array = default(System.UInt32); - OpenTK.Graphics.ES11.GL.Oes.BindVertexArray(_array); -} -static unsafe void Test_Bitmapx_30149() { - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _xorig = default(System.Int32); - System.Int32 _yorig = default(System.Int32); - System.Int32 _xmove = default(System.Int32); - System.Int32 _ymove = default(System.Int32); - System.Byte[] _bitmap = default(System.Byte[]); - OpenTK.Graphics.ES11.GL.Oes.Bitmapx(_width,_height,_xorig,_yorig,_xmove,_ymove,_bitmap); -} -static unsafe void Test_Bitmapx_30150() { - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _xorig = default(System.Int32); - System.Int32 _yorig = default(System.Int32); - System.Int32 _xmove = default(System.Int32); - System.Int32 _ymove = default(System.Int32); - System.Byte _bitmap = default(System.Byte); - OpenTK.Graphics.ES11.GL.Oes.Bitmapx(_width,_height,_xorig,_yorig,_xmove,_ymove,ref _bitmap); -} -static unsafe void Test_Bitmapx_30151() { - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _xorig = default(System.Int32); - System.Int32 _yorig = default(System.Int32); - System.Int32 _xmove = default(System.Int32); - System.Int32 _ymove = default(System.Int32); - System.Byte* _bitmap = default(System.Byte*); - OpenTK.Graphics.ES11.GL.Oes.Bitmapx(_width,_height,_xorig,_yorig,_xmove,_ymove,_bitmap); -} -static unsafe void Test_BlendColorx_30152() { - System.Int32 _red = default(System.Int32); - System.Int32 _green = default(System.Int32); - System.Int32 _blue = default(System.Int32); - System.Int32 _alpha = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.BlendColorx(_red,_green,_blue,_alpha); -} -static unsafe void Test_BlendEquation_30153() { - OpenTK.Graphics.ES11.All _mode = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.GL.Oes.BlendEquation(_mode); -} -static unsafe void Test_BlendEquationSeparate_30154() { - OpenTK.Graphics.ES11.All _modeRGB = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _modeAlpha = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.GL.Oes.BlendEquationSeparate(_modeRGB,_modeAlpha); -} -static unsafe void Test_BlendFuncSeparate_30155() { - OpenTK.Graphics.ES11.All _srcRGB = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _dstRGB = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _srcAlpha = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _dstAlpha = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.GL.Oes.BlendFuncSeparate(_srcRGB,_dstRGB,_srcAlpha,_dstAlpha); -} -static unsafe void Test_CheckFramebufferStatus_30156() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All r = OpenTK.Graphics.ES11.GL.Oes.CheckFramebufferStatus(_target); -} -static unsafe void Test_ClearAccumx_30157() { - System.Int32 _red = default(System.Int32); - System.Int32 _green = default(System.Int32); - System.Int32 _blue = default(System.Int32); - System.Int32 _alpha = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.ClearAccumx(_red,_green,_blue,_alpha); -} -static unsafe void Test_ClearColorx_30158() { - System.Int32 _red = default(System.Int32); - System.Int32 _green = default(System.Int32); - System.Int32 _blue = default(System.Int32); - System.Int32 _alpha = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.ClearColorx(_red,_green,_blue,_alpha); -} -static unsafe void Test_ClearDepth_30159() { - System.Single _depth = default(System.Single); - OpenTK.Graphics.ES11.GL.Oes.ClearDepth(_depth); -} -static unsafe void Test_ClearDepthx_30160() { - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.ClearDepthx(_depth); -} -static unsafe void Test_ClipPlane_30161() { - OpenTK.Graphics.ES11.All _plane = default(OpenTK.Graphics.ES11.All); - System.Single[] _equation = default(System.Single[]); - OpenTK.Graphics.ES11.GL.Oes.ClipPlane(_plane,_equation); -} -static unsafe void Test_ClipPlane_30162() { - OpenTK.Graphics.ES11.All _plane = default(OpenTK.Graphics.ES11.All); - System.Single _equation = default(System.Single); - OpenTK.Graphics.ES11.GL.Oes.ClipPlane(_plane,ref _equation); -} -static unsafe void Test_ClipPlane_30163() { - OpenTK.Graphics.ES11.All _plane = default(OpenTK.Graphics.ES11.All); - System.Single* _equation = default(System.Single*); - OpenTK.Graphics.ES11.GL.Oes.ClipPlane(_plane,_equation); -} -static unsafe void Test_ClipPlanex_30164() { - OpenTK.Graphics.ES11.All _plane = default(OpenTK.Graphics.ES11.All); - System.Int32[] _equation = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.ClipPlanex(_plane,_equation); -} -static unsafe void Test_ClipPlanex_30165() { - OpenTK.Graphics.ES11.All _plane = default(OpenTK.Graphics.ES11.All); - System.Int32 _equation = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.ClipPlanex(_plane,ref _equation); -} -static unsafe void Test_ClipPlanex_30166() { - OpenTK.Graphics.ES11.All _plane = default(OpenTK.Graphics.ES11.All); - System.Int32* _equation = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.ClipPlanex(_plane,_equation); -} -static unsafe void Test_Color3x_30167() { - System.Int32 _red = default(System.Int32); - System.Int32 _green = default(System.Int32); - System.Int32 _blue = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.Color3x(_red,_green,_blue); -} -static unsafe void Test_Color3x_30168() { - System.Int32[] _components = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.Color3x(_components); -} -static unsafe void Test_Color3x_30169() { - System.Int32 _components = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.Color3x(ref _components); -} -static unsafe void Test_Color3x_30170() { - System.Int32* _components = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.Color3x(_components); -} -static unsafe void Test_Color4x_30171() { - System.Int32 _red = default(System.Int32); - System.Int32 _green = default(System.Int32); - System.Int32 _blue = default(System.Int32); - System.Int32 _alpha = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.Color4x(_red,_green,_blue,_alpha); -} -static unsafe void Test_Color4x_30172() { - System.Int32[] _components = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.Color4x(_components); -} -static unsafe void Test_Color4x_30173() { - System.Int32 _components = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.Color4x(ref _components); -} -static unsafe void Test_Color4x_30174() { - System.Int32* _components = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.Color4x(_components); -} -static unsafe void Test_ConvolutionParameterx_30175() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.ConvolutionParameterx(_target,_pname,_param); -} -static unsafe void Test_ConvolutionParameterx_30176() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.ConvolutionParameterx(_target,_pname,_params); -} -static unsafe void Test_ConvolutionParameterx_30177() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.ConvolutionParameterx(_target,_pname,_params); -} -static unsafe void Test_CurrentPaletteMatrix_30178() { - System.Int32 _matrixpaletteindex = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.CurrentPaletteMatrix(_matrixpaletteindex); -} -static unsafe void Test_CurrentPaletteMatrix_30179() { - System.UInt32 _matrixpaletteindex = default(System.UInt32); - OpenTK.Graphics.ES11.GL.Oes.CurrentPaletteMatrix(_matrixpaletteindex); -} -static unsafe void Test_DeleteFramebuffer_30180() { - System.Int32 _framebuffers = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.DeleteFramebuffer(_framebuffers); -} -static unsafe void Test_DeleteFramebuffer_30181() { - System.UInt32 _framebuffers = default(System.UInt32); - OpenTK.Graphics.ES11.GL.Oes.DeleteFramebuffer(_framebuffers); -} -static unsafe void Test_DeleteFramebuffers_30182() { - System.Int32 _n = default(System.Int32); - System.Int32[] _framebuffers = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.DeleteFramebuffers(_n,_framebuffers); -} -static unsafe void Test_DeleteFramebuffers_30183() { - System.Int32 _n = default(System.Int32); - System.Int32 _framebuffers = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.DeleteFramebuffers(_n,ref _framebuffers); -} -static unsafe void Test_DeleteFramebuffers_30184() { - System.Int32 _n = default(System.Int32); - System.Int32* _framebuffers = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.DeleteFramebuffers(_n,_framebuffers); -} -static unsafe void Test_DeleteFramebuffers_30185() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _framebuffers = default(System.UInt32[]); - OpenTK.Graphics.ES11.GL.Oes.DeleteFramebuffers(_n,_framebuffers); -} -static unsafe void Test_DeleteFramebuffers_30186() { - System.Int32 _n = default(System.Int32); - System.UInt32 _framebuffers = default(System.UInt32); - OpenTK.Graphics.ES11.GL.Oes.DeleteFramebuffers(_n,ref _framebuffers); -} -static unsafe void Test_DeleteFramebuffers_30187() { - System.Int32 _n = default(System.Int32); - System.UInt32* _framebuffers = default(System.UInt32*); - OpenTK.Graphics.ES11.GL.Oes.DeleteFramebuffers(_n,_framebuffers); -} -static unsafe void Test_DeleteRenderbuffer_30188() { - System.Int32 _renderbuffers = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.DeleteRenderbuffer(_renderbuffers); -} -static unsafe void Test_DeleteRenderbuffer_30189() { - System.UInt32 _renderbuffers = default(System.UInt32); - OpenTK.Graphics.ES11.GL.Oes.DeleteRenderbuffer(_renderbuffers); -} -static unsafe void Test_DeleteRenderbuffers_30190() { - System.Int32 _n = default(System.Int32); - System.Int32[] _renderbuffers = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.DeleteRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_DeleteRenderbuffers_30191() { - System.Int32 _n = default(System.Int32); - System.Int32 _renderbuffers = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.DeleteRenderbuffers(_n,ref _renderbuffers); -} -static unsafe void Test_DeleteRenderbuffers_30192() { - System.Int32 _n = default(System.Int32); - System.Int32* _renderbuffers = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.DeleteRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_DeleteRenderbuffers_30193() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _renderbuffers = default(System.UInt32[]); - OpenTK.Graphics.ES11.GL.Oes.DeleteRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_DeleteRenderbuffers_30194() { - System.Int32 _n = default(System.Int32); - System.UInt32 _renderbuffers = default(System.UInt32); - OpenTK.Graphics.ES11.GL.Oes.DeleteRenderbuffers(_n,ref _renderbuffers); -} -static unsafe void Test_DeleteRenderbuffers_30195() { - System.Int32 _n = default(System.Int32); - System.UInt32* _renderbuffers = default(System.UInt32*); - OpenTK.Graphics.ES11.GL.Oes.DeleteRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_DeleteVertexArray_30196() { - System.Int32 _arrays = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.DeleteVertexArray(_arrays); -} -static unsafe void Test_DeleteVertexArray_30197() { - System.UInt32 _arrays = default(System.UInt32); - OpenTK.Graphics.ES11.GL.Oes.DeleteVertexArray(_arrays); -} -static unsafe void Test_DeleteVertexArrays_30198() { - System.Int32 _n = default(System.Int32); - System.Int32[] _arrays = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.DeleteVertexArrays(_n,_arrays); -} -static unsafe void Test_DeleteVertexArrays_30199() { - System.Int32 _n = default(System.Int32); - System.Int32 _arrays = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.DeleteVertexArrays(_n,ref _arrays); -} -static unsafe void Test_DeleteVertexArrays_30200() { - System.Int32 _n = default(System.Int32); - System.Int32* _arrays = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.DeleteVertexArrays(_n,_arrays); -} -static unsafe void Test_DeleteVertexArrays_30201() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _arrays = default(System.UInt32[]); - OpenTK.Graphics.ES11.GL.Oes.DeleteVertexArrays(_n,_arrays); -} -static unsafe void Test_DeleteVertexArrays_30202() { - System.Int32 _n = default(System.Int32); - System.UInt32 _arrays = default(System.UInt32); - OpenTK.Graphics.ES11.GL.Oes.DeleteVertexArrays(_n,ref _arrays); -} -static unsafe void Test_DeleteVertexArrays_30203() { - System.Int32 _n = default(System.Int32); - System.UInt32* _arrays = default(System.UInt32*); - OpenTK.Graphics.ES11.GL.Oes.DeleteVertexArrays(_n,_arrays); -} -static unsafe void Test_DepthRange_30204() { - System.Single _n = default(System.Single); - System.Single _f = default(System.Single); - OpenTK.Graphics.ES11.GL.Oes.DepthRange(_n,_f); -} -static unsafe void Test_DepthRangex_30205() { - System.Int32 _n = default(System.Int32); - System.Int32 _f = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.DepthRangex(_n,_f); -} -static unsafe void Test_DrawTex_30206() { - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - System.Single _width = default(System.Single); - System.Single _height = default(System.Single); - OpenTK.Graphics.ES11.GL.Oes.DrawTex(_x,_y,_z,_width,_height); -} -static unsafe void Test_DrawTex_30207() { - System.Single[] _coords = default(System.Single[]); - OpenTK.Graphics.ES11.GL.Oes.DrawTex(_coords); -} -static unsafe void Test_DrawTex_30208() { - System.Single _coords = default(System.Single); - OpenTK.Graphics.ES11.GL.Oes.DrawTex(ref _coords); -} -static unsafe void Test_DrawTex_30209() { - System.Single* _coords = default(System.Single*); - OpenTK.Graphics.ES11.GL.Oes.DrawTex(_coords); -} -static unsafe void Test_DrawTex_30210() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.DrawTex(_x,_y,_z,_width,_height); -} -static unsafe void Test_DrawTex_30211() { - System.Int32[] _coords = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.DrawTex(_coords); -} -static unsafe void Test_DrawTex_30212() { - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.DrawTex(ref _coords); -} -static unsafe void Test_DrawTex_30213() { - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.DrawTex(_coords); -} -static unsafe void Test_DrawTex_30214() { - System.Int16 _x = default(System.Int16); - System.Int16 _y = default(System.Int16); - System.Int16 _z = default(System.Int16); - System.Int16 _width = default(System.Int16); - System.Int16 _height = default(System.Int16); - OpenTK.Graphics.ES11.GL.Oes.DrawTex(_x,_y,_z,_width,_height); -} -static unsafe void Test_DrawTex_30215() { - System.Int16[] _coords = default(System.Int16[]); - OpenTK.Graphics.ES11.GL.Oes.DrawTex(_coords); -} -static unsafe void Test_DrawTex_30216() { - System.Int16 _coords = default(System.Int16); - OpenTK.Graphics.ES11.GL.Oes.DrawTex(ref _coords); -} -static unsafe void Test_DrawTex_30217() { - System.Int16* _coords = default(System.Int16*); - OpenTK.Graphics.ES11.GL.Oes.DrawTex(_coords); -} -static unsafe void Test_DrawTexx_30218() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.DrawTexx(_x,_y,_z,_width,_height); -} -static unsafe void Test_DrawTexx_30219() { - System.Int32[] _coords = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.DrawTexx(_coords); -} -static unsafe void Test_DrawTexx_30220() { - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.DrawTexx(ref _coords); -} -static unsafe void Test_DrawTexx_30221() { - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.DrawTexx(_coords); -} -static unsafe void Test_EGLImageTargetRenderbufferStorage_30222() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.IntPtr _image = default(System.IntPtr); - OpenTK.Graphics.ES11.GL.Oes.EGLImageTargetRenderbufferStorage(_target,_image); -} -static unsafe void Test_EGLImageTargetTexture2D_30223() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.IntPtr _image = default(System.IntPtr); - OpenTK.Graphics.ES11.GL.Oes.EGLImageTargetTexture2D(_target,_image); -} -static unsafe void Test_EvalCoord1x_30224() { - System.Int32 _u = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.EvalCoord1x(_u); -} -static unsafe void Test_EvalCoord1x_30225() { - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.EvalCoord1x(_coords); -} -static unsafe void Test_EvalCoord2x_30226() { - System.Int32 _u = default(System.Int32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.EvalCoord2x(_u,_v); -} -static unsafe void Test_EvalCoord2x_30227() { - System.Int32[] _coords = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.EvalCoord2x(_coords); -} -static unsafe void Test_EvalCoord2x_30228() { - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.EvalCoord2x(ref _coords); -} -static unsafe void Test_EvalCoord2x_30229() { - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.EvalCoord2x(_coords); -} -static unsafe void Test_FeedbackBufferx_30230() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32[] _buffer = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.FeedbackBufferx(_n,_type,_buffer); -} -static unsafe void Test_FeedbackBufferx_30231() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.FeedbackBufferx(_n,_type,ref _buffer); -} -static unsafe void Test_FeedbackBufferx_30232() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32* _buffer = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.FeedbackBufferx(_n,_type,_buffer); -} -static unsafe void Test_Fogx_30233() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.Fogx(_pname,_param); -} -static unsafe void Test_Fogx_30234() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _param = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.Fogx(_pname,_param); -} -static unsafe void Test_Fogx_30235() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _param = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.Fogx(_pname,_param); -} -static unsafe void Test_FramebufferRenderbuffer_30236() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _attachment = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _renderbuffertarget = default(OpenTK.Graphics.ES11.All); - System.Int32 _renderbuffer = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.FramebufferRenderbuffer(_target,_attachment,_renderbuffertarget,_renderbuffer); -} -static unsafe void Test_FramebufferRenderbuffer_30237() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _attachment = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _renderbuffertarget = default(OpenTK.Graphics.ES11.All); - System.UInt32 _renderbuffer = default(System.UInt32); - OpenTK.Graphics.ES11.GL.Oes.FramebufferRenderbuffer(_target,_attachment,_renderbuffertarget,_renderbuffer); -} -static unsafe void Test_FramebufferTexture2D_30238() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _attachment = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _textarget = default(OpenTK.Graphics.ES11.All); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.FramebufferTexture2D(_target,_attachment,_textarget,_texture,_level); -} -static unsafe void Test_FramebufferTexture2D_30239() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _attachment = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _textarget = default(OpenTK.Graphics.ES11.All); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.FramebufferTexture2D(_target,_attachment,_textarget,_texture,_level); -} -static unsafe void Test_Frustum_30240() { - System.Single _l = default(System.Single); - System.Single _r = default(System.Single); - System.Single _b = default(System.Single); - System.Single _t = default(System.Single); - System.Single _n = default(System.Single); - System.Single _f = default(System.Single); - OpenTK.Graphics.ES11.GL.Oes.Frustum(_l,_r,_b,_t,_n,_f); -} -static unsafe void Test_Frustumx_30241() { - System.Int32 _l = default(System.Int32); - System.Int32 _r = default(System.Int32); - System.Int32 _b = default(System.Int32); - System.Int32 _t = default(System.Int32); - System.Int32 _n = default(System.Int32); - System.Int32 _f = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.Frustumx(_l,_r,_b,_t,_n,_f); -} -static unsafe void Test_GenerateMipmap_30242() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.GL.Oes.GenerateMipmap(_target); -} -static unsafe void Test_GenFramebuffer_30243() { - System.Int32 r = OpenTK.Graphics.ES11.GL.Oes.GenFramebuffer(); -} -static unsafe void Test_GenFramebuffers_30244() { - System.Int32 _n = default(System.Int32); - System.Int32[] _framebuffers = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.GenFramebuffers(_n,_framebuffers); -} -static unsafe void Test_GenFramebuffers_30245() { - System.Int32 _n = default(System.Int32); - System.Int32 _framebuffers = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.GenFramebuffers(_n,out _framebuffers); -} -static unsafe void Test_GenFramebuffers_30246() { - System.Int32 _n = default(System.Int32); - System.Int32* _framebuffers = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.GenFramebuffers(_n,_framebuffers); -} -static unsafe void Test_GenFramebuffers_30247() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _framebuffers = default(System.UInt32[]); - OpenTK.Graphics.ES11.GL.Oes.GenFramebuffers(_n,_framebuffers); -} -static unsafe void Test_GenFramebuffers_30248() { - System.Int32 _n = default(System.Int32); - System.UInt32 _framebuffers = default(System.UInt32); - OpenTK.Graphics.ES11.GL.Oes.GenFramebuffers(_n,out _framebuffers); -} -static unsafe void Test_GenFramebuffers_30249() { - System.Int32 _n = default(System.Int32); - System.UInt32* _framebuffers = default(System.UInt32*); - OpenTK.Graphics.ES11.GL.Oes.GenFramebuffers(_n,_framebuffers); -} -static unsafe void Test_GenRenderbuffer_30250() { - System.Int32 r = OpenTK.Graphics.ES11.GL.Oes.GenRenderbuffer(); -} -static unsafe void Test_GenRenderbuffers_30251() { - System.Int32 _n = default(System.Int32); - System.Int32[] _renderbuffers = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.GenRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_GenRenderbuffers_30252() { - System.Int32 _n = default(System.Int32); - System.Int32 _renderbuffers = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.GenRenderbuffers(_n,out _renderbuffers); -} -static unsafe void Test_GenRenderbuffers_30253() { - System.Int32 _n = default(System.Int32); - System.Int32* _renderbuffers = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.GenRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_GenRenderbuffers_30254() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _renderbuffers = default(System.UInt32[]); - OpenTK.Graphics.ES11.GL.Oes.GenRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_GenRenderbuffers_30255() { - System.Int32 _n = default(System.Int32); - System.UInt32 _renderbuffers = default(System.UInt32); - OpenTK.Graphics.ES11.GL.Oes.GenRenderbuffers(_n,out _renderbuffers); -} -static unsafe void Test_GenRenderbuffers_30256() { - System.Int32 _n = default(System.Int32); - System.UInt32* _renderbuffers = default(System.UInt32*); - OpenTK.Graphics.ES11.GL.Oes.GenRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_GenVertexArray_30257() { - System.Int32 r = OpenTK.Graphics.ES11.GL.Oes.GenVertexArray(); -} -static unsafe void Test_GenVertexArrays_30258() { - System.Int32 _n = default(System.Int32); - System.Int32[] _arrays = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.GenVertexArrays(_n,_arrays); -} -static unsafe void Test_GenVertexArrays_30259() { - System.Int32 _n = default(System.Int32); - System.Int32 _arrays = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.GenVertexArrays(_n,out _arrays); -} -static unsafe void Test_GenVertexArrays_30260() { - System.Int32 _n = default(System.Int32); - System.Int32* _arrays = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.GenVertexArrays(_n,_arrays); -} -static unsafe void Test_GenVertexArrays_30261() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _arrays = default(System.UInt32[]); - OpenTK.Graphics.ES11.GL.Oes.GenVertexArrays(_n,_arrays); -} -static unsafe void Test_GenVertexArrays_30262() { - System.Int32 _n = default(System.Int32); - System.UInt32 _arrays = default(System.UInt32); - OpenTK.Graphics.ES11.GL.Oes.GenVertexArrays(_n,out _arrays); -} -static unsafe void Test_GenVertexArrays_30263() { - System.Int32 _n = default(System.Int32); - System.UInt32* _arrays = default(System.UInt32*); - OpenTK.Graphics.ES11.GL.Oes.GenVertexArrays(_n,_arrays); -} -static unsafe void Test_GetBufferPointer_30264() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.IntPtr _params = default(System.IntPtr); - OpenTK.Graphics.ES11.GL.Oes.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_30265() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - int[] _params = default(int[]); - OpenTK.Graphics.ES11.GL.Oes.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_30266() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - int[,] _params = default(int[,]); - OpenTK.Graphics.ES11.GL.Oes.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_30267() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - int[,,] _params = default(int[,,]); - OpenTK.Graphics.ES11.GL.Oes.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_30268() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - int _params = default(int); - OpenTK.Graphics.ES11.GL.Oes.GetBufferPointer(_target,_pname,ref _params); -} -static unsafe void Test_GetClipPlane_30269() { - OpenTK.Graphics.ES11.All _plane = default(OpenTK.Graphics.ES11.All); - System.Single[] _equation = default(System.Single[]); - OpenTK.Graphics.ES11.GL.Oes.GetClipPlane(_plane,_equation); -} -static unsafe void Test_GetClipPlane_30270() { - OpenTK.Graphics.ES11.All _plane = default(OpenTK.Graphics.ES11.All); - System.Single _equation = default(System.Single); - OpenTK.Graphics.ES11.GL.Oes.GetClipPlane(_plane,out _equation); -} -static unsafe void Test_GetClipPlane_30271() { - OpenTK.Graphics.ES11.All _plane = default(OpenTK.Graphics.ES11.All); - System.Single* _equation = default(System.Single*); - OpenTK.Graphics.ES11.GL.Oes.GetClipPlane(_plane,_equation); -} -static unsafe void Test_GetClipPlanex_30272() { - OpenTK.Graphics.ES11.All _plane = default(OpenTK.Graphics.ES11.All); - System.Int32[] _equation = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.GetClipPlanex(_plane,_equation); -} -static unsafe void Test_GetClipPlanex_30273() { - OpenTK.Graphics.ES11.All _plane = default(OpenTK.Graphics.ES11.All); - System.Int32 _equation = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.GetClipPlanex(_plane,out _equation); -} -static unsafe void Test_GetClipPlanex_30274() { - OpenTK.Graphics.ES11.All _plane = default(OpenTK.Graphics.ES11.All); - System.Int32* _equation = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.GetClipPlanex(_plane,_equation); -} -static unsafe void Test_GetConvolutionParameterx_30275() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.GetConvolutionParameterx(_target,_pname,_params); -} -static unsafe void Test_GetConvolutionParameterx_30276() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.GetConvolutionParameterx(_target,_pname,out _params); -} -static unsafe void Test_GetConvolutionParameterx_30277() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.GetConvolutionParameterx(_target,_pname,_params); -} -static unsafe void Test_GetFixed_30278() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 r = OpenTK.Graphics.ES11.GL.Oes.GetFixed(_pname); -} -static unsafe void Test_GetFixed_30279() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.GetFixed(_pname,_params); -} -static unsafe void Test_GetFixed_30280() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.GetFixed(_pname,out _params); -} -static unsafe void Test_GetFixed_30281() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.GetFixed(_pname,_params); -} -static unsafe void Test_GetFramebufferAttachmentParameter_30282() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _attachment = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.GetFramebufferAttachmentParameter(_target,_attachment,_pname,_params); -} -static unsafe void Test_GetFramebufferAttachmentParameter_30283() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _attachment = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.GetFramebufferAttachmentParameter(_target,_attachment,_pname,out _params); -} -static unsafe void Test_GetFramebufferAttachmentParameter_30284() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _attachment = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.GetFramebufferAttachmentParameter(_target,_attachment,_pname,_params); -} -static unsafe void Test_GetHistogramParameterx_30285() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.GetHistogramParameterx(_target,_pname,_params); -} -static unsafe void Test_GetHistogramParameterx_30286() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.GetHistogramParameterx(_target,_pname,out _params); -} -static unsafe void Test_GetHistogramParameterx_30287() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.GetHistogramParameterx(_target,_pname,_params); -} -static unsafe void Test_GetLightx_30288() { - OpenTK.Graphics.ES11.All _light = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.GetLightx(_light,_pname,_params); -} -static unsafe void Test_GetLightx_30289() { - OpenTK.Graphics.ES11.All _light = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.GetLightx(_light,_pname,out _params); -} -static unsafe void Test_GetLightx_30290() { - OpenTK.Graphics.ES11.All _light = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.GetLightx(_light,_pname,_params); -} -static unsafe void Test_GetMapx_30291() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _query = default(OpenTK.Graphics.ES11.All); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.GetMapx(_target,_query,_v); -} -static unsafe void Test_GetMapx_30292() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _query = default(OpenTK.Graphics.ES11.All); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.GetMapx(_target,_query,out _v); -} -static unsafe void Test_GetMapx_30293() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _query = default(OpenTK.Graphics.ES11.All); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.GetMapx(_target,_query,_v); -} -static unsafe void Test_GetMaterialx_30294() { - OpenTK.Graphics.ES11.All _face = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.GetMaterialx(_face,_pname,_param); -} -static unsafe void Test_GetMaterialx_30295() { - OpenTK.Graphics.ES11.All _face = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.GetMaterialx(_face,_pname,_params); -} -static unsafe void Test_GetMaterialx_30296() { - OpenTK.Graphics.ES11.All _face = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.GetMaterialx(_face,_pname,_params); -} -static unsafe void Test_GetRenderbufferParameter_30297() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.GetRenderbufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetRenderbufferParameter_30298() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.GetRenderbufferParameter(_target,_pname,out _params); -} -static unsafe void Test_GetRenderbufferParameter_30299() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.GetRenderbufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetTexEnvx_30300() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.GetTexEnvx(_target,_pname,_params); -} -static unsafe void Test_GetTexEnvx_30301() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.GetTexEnvx(_target,_pname,out _params); -} -static unsafe void Test_GetTexEnvx_30302() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.GetTexEnvx(_target,_pname,_params); -} -static unsafe void Test_GetTexGen_30303() { - OpenTK.Graphics.ES11.All _coord = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES11.GL.Oes.GetTexGen(_coord,_pname,_params); -} -static unsafe void Test_GetTexGen_30304() { - OpenTK.Graphics.ES11.All _coord = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single _params = default(System.Single); - OpenTK.Graphics.ES11.GL.Oes.GetTexGen(_coord,_pname,out _params); -} -static unsafe void Test_GetTexGen_30305() { - OpenTK.Graphics.ES11.All _coord = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES11.GL.Oes.GetTexGen(_coord,_pname,_params); -} -static unsafe void Test_GetTexGen_30306() { - OpenTK.Graphics.ES11.All _coord = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.GetTexGen(_coord,_pname,_params); -} -static unsafe void Test_GetTexGen_30307() { - OpenTK.Graphics.ES11.All _coord = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.GetTexGen(_coord,_pname,out _params); -} -static unsafe void Test_GetTexGen_30308() { - OpenTK.Graphics.ES11.All _coord = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.GetTexGen(_coord,_pname,_params); -} -static unsafe void Test_GetTexGenx_30309() { - OpenTK.Graphics.ES11.All _coord = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.GetTexGenx(_coord,_pname,_params); -} -static unsafe void Test_GetTexGenx_30310() { - OpenTK.Graphics.ES11.All _coord = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.GetTexGenx(_coord,_pname,out _params); -} -static unsafe void Test_GetTexGenx_30311() { - OpenTK.Graphics.ES11.All _coord = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.GetTexGenx(_coord,_pname,_params); -} -static unsafe void Test_GetTexLevelParameterx_30312() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.GetTexLevelParameterx(_target,_level,_pname,_params); -} -static unsafe void Test_GetTexLevelParameterx_30313() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.GetTexLevelParameterx(_target,_level,_pname,out _params); -} -static unsafe void Test_GetTexLevelParameterx_30314() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.GetTexLevelParameterx(_target,_level,_pname,_params); -} -static unsafe void Test_GetTexParameterx_30315() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.GetTexParameterx(_target,_pname,_params); -} -static unsafe void Test_GetTexParameterx_30316() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.GetTexParameterx(_target,_pname,out _params); -} -static unsafe void Test_GetTexParameterx_30317() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.GetTexParameterx(_target,_pname,_params); -} -static unsafe void Test_Indexx_30318() { - System.Int32 _component = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.Indexx(_component); -} -static unsafe void Test_Indexx_30319() { - System.Int32* _component = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.Indexx(_component); -} -static unsafe void Test_IsFramebuffer_30320() { - System.Int32 _framebuffer = default(System.Int32); - System.Boolean r = OpenTK.Graphics.ES11.GL.Oes.IsFramebuffer(_framebuffer); -} -static unsafe void Test_IsFramebuffer_30321() { - System.UInt32 _framebuffer = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.ES11.GL.Oes.IsFramebuffer(_framebuffer); -} -static unsafe void Test_IsRenderbuffer_30322() { - System.Int32 _renderbuffer = default(System.Int32); - System.Boolean r = OpenTK.Graphics.ES11.GL.Oes.IsRenderbuffer(_renderbuffer); -} -static unsafe void Test_IsRenderbuffer_30323() { - System.UInt32 _renderbuffer = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.ES11.GL.Oes.IsRenderbuffer(_renderbuffer); -} -static unsafe void Test_IsVertexArray_30324() { - System.Int32 _array = default(System.Int32); - System.Boolean r = OpenTK.Graphics.ES11.GL.Oes.IsVertexArray(_array); -} -static unsafe void Test_IsVertexArray_30325() { - System.UInt32 _array = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.ES11.GL.Oes.IsVertexArray(_array); -} -static unsafe void Test_LightModelx_30326() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.LightModelx(_pname,_param); -} -static unsafe void Test_LightModelx_30327() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _param = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.LightModelx(_pname,_param); -} -static unsafe void Test_LightModelx_30328() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _param = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.LightModelx(_pname,_param); -} -static unsafe void Test_Lightx_30329() { - OpenTK.Graphics.ES11.All _light = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.Lightx(_light,_pname,_param); -} -static unsafe void Test_Lightx_30330() { - OpenTK.Graphics.ES11.All _light = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.Lightx(_light,_pname,_params); -} -static unsafe void Test_Lightx_30331() { - OpenTK.Graphics.ES11.All _light = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.Lightx(_light,_pname,_params); -} -static unsafe void Test_LineWidthx_30332() { - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.LineWidthx(_width); -} -static unsafe void Test_LoadMatrixx_30333() { - System.Int32[] _m = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.LoadMatrixx(_m); -} -static unsafe void Test_LoadMatrixx_30334() { - System.Int32 _m = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.LoadMatrixx(ref _m); -} -static unsafe void Test_LoadMatrixx_30335() { - System.Int32* _m = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.LoadMatrixx(_m); -} -static unsafe void Test_LoadPaletteFromModelViewMatrix_30336() { - OpenTK.Graphics.ES11.GL.Oes.LoadPaletteFromModelViewMatrix(); -} -static unsafe void Test_LoadTransposeMatrixx_30337() { - System.Int32[] _m = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.LoadTransposeMatrixx(_m); -} -static unsafe void Test_LoadTransposeMatrixx_30338() { - System.Int32 _m = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.LoadTransposeMatrixx(ref _m); -} -static unsafe void Test_LoadTransposeMatrixx_30339() { - System.Int32* _m = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.LoadTransposeMatrixx(_m); -} -static unsafe void Test_Map1x_30340() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _u1 = default(System.Int32); - System.Int32 _u2 = default(System.Int32); - System.Int32 _stride = default(System.Int32); - System.Int32 _order = default(System.Int32); - System.Int32 _points = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.Map1x(_target,_u1,_u2,_stride,_order,_points); -} -static unsafe void Test_Map2x_30341() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _u1 = default(System.Int32); - System.Int32 _u2 = default(System.Int32); - System.Int32 _ustride = default(System.Int32); - System.Int32 _uorder = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - System.Int32 _v2 = default(System.Int32); - System.Int32 _vstride = default(System.Int32); - System.Int32 _vorder = default(System.Int32); - System.Int32 _points = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.Map2x(_target,_u1,_u2,_ustride,_uorder,_v1,_v2,_vstride,_vorder,_points); -} -static unsafe void Test_MapBuffer_30342() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _access = default(OpenTK.Graphics.ES11.All); - System.IntPtr r = OpenTK.Graphics.ES11.GL.Oes.MapBuffer(_target,_access); -} -static unsafe void Test_MapGrid1x_30343() { - System.Int32 _n = default(System.Int32); - System.Int32 _u1 = default(System.Int32); - System.Int32 _u2 = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.MapGrid1x(_n,_u1,_u2); -} -static unsafe void Test_MapGrid2x_30344() { - System.Int32 _n = default(System.Int32); - System.Int32 _u1 = default(System.Int32); - System.Int32 _u2 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - System.Int32 _v2 = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.MapGrid2x(_n,_u1,_u2,_v1,_v2); -} -static unsafe void Test_Materialx_30345() { - OpenTK.Graphics.ES11.All _face = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.Materialx(_face,_pname,_param); -} -static unsafe void Test_Materialx_30346() { - OpenTK.Graphics.ES11.All _face = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _param = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.Materialx(_face,_pname,_param); -} -static unsafe void Test_Materialx_30347() { - OpenTK.Graphics.ES11.All _face = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _param = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.Materialx(_face,_pname,_param); -} -static unsafe void Test_MatrixIndexPointer_30348() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.ES11.GL.Oes.MatrixIndexPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_MatrixIndexPointer_30349() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.ES11.GL.Oes.MatrixIndexPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_MatrixIndexPointer_30350() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.ES11.GL.Oes.MatrixIndexPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_MatrixIndexPointer_30351() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.ES11.GL.Oes.MatrixIndexPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_MatrixIndexPointer_30352() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.ES11.GL.Oes.MatrixIndexPointer(_size,_type,_stride,ref _pointer); -} -static unsafe void Test_MultiTexCoord1_30353() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.Byte _s = default(System.Byte); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord1(_texture,_s); -} -static unsafe void Test_MultiTexCoord1_30354() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.SByte _s = default(System.SByte); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord1(_texture,_s); -} -static unsafe void Test_MultiTexCoord1_30355() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.Byte* _coords = default(System.Byte*); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord1(_texture,_coords); -} -static unsafe void Test_MultiTexCoord1_30356() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.SByte* _coords = default(System.SByte*); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord1(_texture,_coords); -} -static unsafe void Test_MultiTexCoord1x_30357() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.Int32 _s = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord1x(_texture,_s); -} -static unsafe void Test_MultiTexCoord1x_30358() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord1x(_texture,_coords); -} -static unsafe void Test_MultiTexCoord2_30359() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.Byte _s = default(System.Byte); - System.Byte _t = default(System.Byte); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord2(_texture,_s,_t); -} -static unsafe void Test_MultiTexCoord2_30360() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.SByte _s = default(System.SByte); - System.SByte _t = default(System.SByte); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord2(_texture,_s,_t); -} -static unsafe void Test_MultiTexCoord2_30361() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.Byte[] _coords = default(System.Byte[]); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord2(_texture,_coords); -} -static unsafe void Test_MultiTexCoord2_30362() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.Byte _coords = default(System.Byte); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord2(_texture,ref _coords); -} -static unsafe void Test_MultiTexCoord2_30363() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.Byte* _coords = default(System.Byte*); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord2(_texture,_coords); -} -static unsafe void Test_MultiTexCoord2_30364() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.SByte[] _coords = default(System.SByte[]); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord2(_texture,_coords); -} -static unsafe void Test_MultiTexCoord2_30365() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.SByte _coords = default(System.SByte); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord2(_texture,ref _coords); -} -static unsafe void Test_MultiTexCoord2_30366() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.SByte* _coords = default(System.SByte*); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord2(_texture,_coords); -} -static unsafe void Test_MultiTexCoord2x_30367() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.Int32 _s = default(System.Int32); - System.Int32 _t = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord2x(_texture,_s,_t); -} -static unsafe void Test_MultiTexCoord2x_30368() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.Int32[] _coords = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord2x(_texture,_coords); -} -static unsafe void Test_MultiTexCoord2x_30369() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord2x(_texture,ref _coords); -} -static unsafe void Test_MultiTexCoord2x_30370() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord2x(_texture,_coords); -} -static unsafe void Test_MultiTexCoord3_30371() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.Byte _s = default(System.Byte); - System.Byte _t = default(System.Byte); - System.Byte _r = default(System.Byte); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord3(_texture,_s,_t,_r); -} -static unsafe void Test_MultiTexCoord3_30372() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.SByte _s = default(System.SByte); - System.SByte _t = default(System.SByte); - System.SByte _r = default(System.SByte); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord3(_texture,_s,_t,_r); -} -static unsafe void Test_MultiTexCoord3_30373() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.Byte[] _coords = default(System.Byte[]); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord3(_texture,_coords); -} -static unsafe void Test_MultiTexCoord3_30374() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.Byte _coords = default(System.Byte); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord3(_texture,ref _coords); -} -static unsafe void Test_MultiTexCoord3_30375() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.Byte* _coords = default(System.Byte*); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord3(_texture,_coords); -} -static unsafe void Test_MultiTexCoord3_30376() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.SByte[] _coords = default(System.SByte[]); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord3(_texture,_coords); -} -static unsafe void Test_MultiTexCoord3_30377() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.SByte _coords = default(System.SByte); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord3(_texture,ref _coords); -} -static unsafe void Test_MultiTexCoord3_30378() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.SByte* _coords = default(System.SByte*); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord3(_texture,_coords); -} -static unsafe void Test_MultiTexCoord3x_30379() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.Int32 _s = default(System.Int32); - System.Int32 _t = default(System.Int32); - System.Int32 _r = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord3x(_texture,_s,_t,_r); -} -static unsafe void Test_MultiTexCoord3x_30380() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.Int32[] _coords = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord3x(_texture,_coords); -} -static unsafe void Test_MultiTexCoord3x_30381() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord3x(_texture,ref _coords); -} -static unsafe void Test_MultiTexCoord3x_30382() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord3x(_texture,_coords); -} -static unsafe void Test_MultiTexCoord4_30383() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.Byte _s = default(System.Byte); - System.Byte _t = default(System.Byte); - System.Byte _r = default(System.Byte); - System.Byte _q = default(System.Byte); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord4(_texture,_s,_t,_r,_q); -} -static unsafe void Test_MultiTexCoord4_30384() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.SByte _s = default(System.SByte); - System.SByte _t = default(System.SByte); - System.SByte _r = default(System.SByte); - System.SByte _q = default(System.SByte); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord4(_texture,_s,_t,_r,_q); -} -static unsafe void Test_MultiTexCoord4_30385() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.Byte[] _coords = default(System.Byte[]); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord4(_texture,_coords); -} -static unsafe void Test_MultiTexCoord4_30386() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.Byte _coords = default(System.Byte); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord4(_texture,ref _coords); -} -static unsafe void Test_MultiTexCoord4_30387() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.Byte* _coords = default(System.Byte*); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord4(_texture,_coords); -} -static unsafe void Test_MultiTexCoord4_30388() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.SByte[] _coords = default(System.SByte[]); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord4(_texture,_coords); -} -static unsafe void Test_MultiTexCoord4_30389() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.SByte _coords = default(System.SByte); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord4(_texture,ref _coords); -} -static unsafe void Test_MultiTexCoord4_30390() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.SByte* _coords = default(System.SByte*); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord4(_texture,_coords); -} -static unsafe void Test_MultiTexCoord4x_30391() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.Int32 _s = default(System.Int32); - System.Int32 _t = default(System.Int32); - System.Int32 _r = default(System.Int32); - System.Int32 _q = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord4x(_texture,_s,_t,_r,_q); -} -static unsafe void Test_MultiTexCoord4x_30392() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.Int32[] _coords = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord4x(_texture,_coords); -} -static unsafe void Test_MultiTexCoord4x_30393() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord4x(_texture,ref _coords); -} -static unsafe void Test_MultiTexCoord4x_30394() { - OpenTK.Graphics.ES11.All _texture = default(OpenTK.Graphics.ES11.All); - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.MultiTexCoord4x(_texture,_coords); -} -static unsafe void Test_MultMatrixx_30395() { - System.Int32[] _m = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.MultMatrixx(_m); -} -static unsafe void Test_MultMatrixx_30396() { - System.Int32 _m = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.MultMatrixx(ref _m); -} -static unsafe void Test_MultMatrixx_30397() { - System.Int32* _m = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.MultMatrixx(_m); -} -static unsafe void Test_MultTransposeMatrixx_30398() { - System.Int32[] _m = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.MultTransposeMatrixx(_m); -} -static unsafe void Test_MultTransposeMatrixx_30399() { - System.Int32 _m = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.MultTransposeMatrixx(ref _m); -} -static unsafe void Test_MultTransposeMatrixx_30400() { - System.Int32* _m = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.MultTransposeMatrixx(_m); -} -static unsafe void Test_Normal3x_30401() { - System.Int32 _nx = default(System.Int32); - System.Int32 _ny = default(System.Int32); - System.Int32 _nz = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.Normal3x(_nx,_ny,_nz); -} -static unsafe void Test_Normal3x_30402() { - System.Int32[] _coords = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.Normal3x(_coords); -} -static unsafe void Test_Normal3x_30403() { - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.Normal3x(ref _coords); -} -static unsafe void Test_Normal3x_30404() { - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.Normal3x(_coords); -} -static unsafe void Test_Ortho_30405() { - System.Single _l = default(System.Single); - System.Single _r = default(System.Single); - System.Single _b = default(System.Single); - System.Single _t = default(System.Single); - System.Single _n = default(System.Single); - System.Single _f = default(System.Single); - OpenTK.Graphics.ES11.GL.Oes.Ortho(_l,_r,_b,_t,_n,_f); -} -static unsafe void Test_Orthox_30406() { - System.Int32 _l = default(System.Int32); - System.Int32 _r = default(System.Int32); - System.Int32 _b = default(System.Int32); - System.Int32 _t = default(System.Int32); - System.Int32 _n = default(System.Int32); - System.Int32 _f = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.Orthox(_l,_r,_b,_t,_n,_f); -} -static unsafe void Test_PassThroughx_30407() { - System.Int32 _token = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.PassThroughx(_token); -} -static unsafe void Test_PixelTransferx_30408() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.PixelTransferx(_pname,_param); -} -static unsafe void Test_PixelZoomx_30409() { - System.Int32 _xfactor = default(System.Int32); - System.Int32 _yfactor = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.PixelZoomx(_xfactor,_yfactor); -} -static unsafe void Test_PointParameterx_30410() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.PointParameterx(_pname,_param); -} -static unsafe void Test_PointParameterx_30411() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.PointParameterx(_pname,_params); -} -static unsafe void Test_PointParameterx_30412() { - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.PointParameterx(_pname,_params); -} -static unsafe void Test_PointSizePointer_30413() { - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.ES11.GL.Oes.PointSizePointer(_type,_stride,_pointer); -} -static unsafe void Test_PointSizePointer_30414() { - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.ES11.GL.Oes.PointSizePointer(_type,_stride,_pointer); -} -static unsafe void Test_PointSizePointer_30415() { - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.ES11.GL.Oes.PointSizePointer(_type,_stride,_pointer); -} -static unsafe void Test_PointSizePointer_30416() { - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.ES11.GL.Oes.PointSizePointer(_type,_stride,_pointer); -} -static unsafe void Test_PointSizePointer_30417() { - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.ES11.GL.Oes.PointSizePointer(_type,_stride,ref _pointer); -} -static unsafe void Test_PointSizex_30418() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.PointSizex(_size); -} -static unsafe void Test_PolygonOffsetx_30419() { - System.Int32 _factor = default(System.Int32); - System.Int32 _units = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.PolygonOffsetx(_factor,_units); -} -static unsafe void Test_PrioritizeTexturesx_30420() { - System.Int32 _n = default(System.Int32); - System.Int32[] _textures = default(System.Int32[]); - System.Int32[] _priorities = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.PrioritizeTexturesx(_n,_textures,_priorities); -} -static unsafe void Test_PrioritizeTexturesx_30421() { - System.Int32 _n = default(System.Int32); - System.Int32 _textures = default(System.Int32); - System.Int32 _priorities = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.PrioritizeTexturesx(_n,ref _textures,ref _priorities); -} -static unsafe void Test_PrioritizeTexturesx_30422() { - System.Int32 _n = default(System.Int32); - System.Int32* _textures = default(System.Int32*); - System.Int32* _priorities = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.PrioritizeTexturesx(_n,_textures,_priorities); -} -static unsafe void Test_PrioritizeTexturesx_30423() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _textures = default(System.UInt32[]); - System.Int32[] _priorities = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.PrioritizeTexturesx(_n,_textures,_priorities); -} -static unsafe void Test_PrioritizeTexturesx_30424() { - System.Int32 _n = default(System.Int32); - System.UInt32 _textures = default(System.UInt32); - System.Int32 _priorities = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.PrioritizeTexturesx(_n,ref _textures,ref _priorities); -} -static unsafe void Test_PrioritizeTexturesx_30425() { - System.Int32 _n = default(System.Int32); - System.UInt32* _textures = default(System.UInt32*); - System.Int32* _priorities = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.PrioritizeTexturesx(_n,_textures,_priorities); -} -static unsafe void Test_QueryMatrixx_30426() { - System.Int32[] _mantissa = default(System.Int32[]); - System.Int32[] _exponent = default(System.Int32[]); - System.Int32 r = OpenTK.Graphics.ES11.GL.Oes.QueryMatrixx(_mantissa,_exponent); -} -static unsafe void Test_QueryMatrixx_30427() { - System.Int32 _mantissa = default(System.Int32); - System.Int32 _exponent = default(System.Int32); - System.Int32 r = OpenTK.Graphics.ES11.GL.Oes.QueryMatrixx(out _mantissa,out _exponent); -} -static unsafe void Test_QueryMatrixx_30428() { - System.Int32* _mantissa = default(System.Int32*); - System.Int32* _exponent = default(System.Int32*); - System.Int32 r = OpenTK.Graphics.ES11.GL.Oes.QueryMatrixx(_mantissa,_exponent); -} -static unsafe void Test_RasterPos2x_30429() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.RasterPos2x(_x,_y); -} -static unsafe void Test_RasterPos2x_30430() { - System.Int32[] _coords = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.RasterPos2x(_coords); -} -static unsafe void Test_RasterPos2x_30431() { - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.RasterPos2x(ref _coords); -} -static unsafe void Test_RasterPos2x_30432() { - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.RasterPos2x(_coords); -} -static unsafe void Test_RasterPos3x_30433() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.RasterPos3x(_x,_y,_z); -} -static unsafe void Test_RasterPos3x_30434() { - System.Int32[] _coords = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.RasterPos3x(_coords); -} -static unsafe void Test_RasterPos3x_30435() { - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.RasterPos3x(ref _coords); -} -static unsafe void Test_RasterPos3x_30436() { - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.RasterPos3x(_coords); -} -static unsafe void Test_RasterPos4x_30437() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - System.Int32 _w = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.RasterPos4x(_x,_y,_z,_w); -} -static unsafe void Test_RasterPos4x_30438() { - System.Int32[] _coords = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.RasterPos4x(_coords); -} -static unsafe void Test_RasterPos4x_30439() { - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.RasterPos4x(ref _coords); -} -static unsafe void Test_RasterPos4x_30440() { - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.RasterPos4x(_coords); -} -static unsafe void Test_Rectx_30441() { - System.Int32 _x1 = default(System.Int32); - System.Int32 _y1 = default(System.Int32); - System.Int32 _x2 = default(System.Int32); - System.Int32 _y2 = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.Rectx(_x1,_y1,_x2,_y2); -} -static unsafe void Test_Rectx_30442() { - System.Int32[] _v1 = default(System.Int32[]); - System.Int32[] _v2 = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.Rectx(_v1,_v2); -} -static unsafe void Test_Rectx_30443() { - System.Int32 _v1 = default(System.Int32); - System.Int32 _v2 = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.Rectx(ref _v1,ref _v2); -} -static unsafe void Test_Rectx_30444() { - System.Int32* _v1 = default(System.Int32*); - System.Int32* _v2 = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.Rectx(_v1,_v2); -} -static unsafe void Test_RenderbufferStorage_30445() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _internalformat = default(OpenTK.Graphics.ES11.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.RenderbufferStorage(_target,_internalformat,_width,_height); -} -static unsafe void Test_Rotatex_30446() { - System.Int32 _angle = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.Rotatex(_angle,_x,_y,_z); -} -static unsafe void Test_SampleCoverage_30447() { - System.Int32 _value = default(System.Int32); - System.Boolean _invert = default(System.Boolean); - OpenTK.Graphics.ES11.GL.Oes.SampleCoverage(_value,_invert); -} -static unsafe void Test_SampleCoveragex_30448() { - System.Int32 _value = default(System.Int32); - System.Boolean _invert = default(System.Boolean); - OpenTK.Graphics.ES11.GL.Oes.SampleCoveragex(_value,_invert); -} -static unsafe void Test_Scalex_30449() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.Scalex(_x,_y,_z); -} -static unsafe void Test_TexCoord1_30450() { - System.Byte _s = default(System.Byte); - OpenTK.Graphics.ES11.GL.Oes.TexCoord1(_s); -} -static unsafe void Test_TexCoord1_30451() { - System.SByte _s = default(System.SByte); - OpenTK.Graphics.ES11.GL.Oes.TexCoord1(_s); -} -static unsafe void Test_TexCoord1_30452() { - System.Byte* _coords = default(System.Byte*); - OpenTK.Graphics.ES11.GL.Oes.TexCoord1(_coords); -} -static unsafe void Test_TexCoord1_30453() { - System.SByte* _coords = default(System.SByte*); - OpenTK.Graphics.ES11.GL.Oes.TexCoord1(_coords); -} -static unsafe void Test_TexCoord1x_30454() { - System.Int32 _s = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.TexCoord1x(_s); -} -static unsafe void Test_TexCoord1x_30455() { - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.TexCoord1x(_coords); -} -static unsafe void Test_TexCoord2_30456() { - System.Byte _s = default(System.Byte); - System.Byte _t = default(System.Byte); - OpenTK.Graphics.ES11.GL.Oes.TexCoord2(_s,_t); -} -static unsafe void Test_TexCoord2_30457() { - System.SByte _s = default(System.SByte); - System.SByte _t = default(System.SByte); - OpenTK.Graphics.ES11.GL.Oes.TexCoord2(_s,_t); -} -static unsafe void Test_TexCoord2_30458() { - System.Byte[] _coords = default(System.Byte[]); - OpenTK.Graphics.ES11.GL.Oes.TexCoord2(_coords); -} -static unsafe void Test_TexCoord2_30459() { - System.Byte _coords = default(System.Byte); - OpenTK.Graphics.ES11.GL.Oes.TexCoord2(ref _coords); -} -static unsafe void Test_TexCoord2_30460() { - System.Byte* _coords = default(System.Byte*); - OpenTK.Graphics.ES11.GL.Oes.TexCoord2(_coords); -} -static unsafe void Test_TexCoord2_30461() { - System.SByte[] _coords = default(System.SByte[]); - OpenTK.Graphics.ES11.GL.Oes.TexCoord2(_coords); -} -static unsafe void Test_TexCoord2_30462() { - System.SByte _coords = default(System.SByte); - OpenTK.Graphics.ES11.GL.Oes.TexCoord2(ref _coords); -} -static unsafe void Test_TexCoord2_30463() { - System.SByte* _coords = default(System.SByte*); - OpenTK.Graphics.ES11.GL.Oes.TexCoord2(_coords); -} -static unsafe void Test_TexCoord2x_30464() { - System.Int32 _s = default(System.Int32); - System.Int32 _t = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.TexCoord2x(_s,_t); -} -static unsafe void Test_TexCoord2x_30465() { - System.Int32[] _coords = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.TexCoord2x(_coords); -} -static unsafe void Test_TexCoord2x_30466() { - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.TexCoord2x(ref _coords); -} -static unsafe void Test_TexCoord2x_30467() { - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.TexCoord2x(_coords); -} -static unsafe void Test_TexCoord3_30468() { - System.Byte _s = default(System.Byte); - System.Byte _t = default(System.Byte); - System.Byte _r = default(System.Byte); - OpenTK.Graphics.ES11.GL.Oes.TexCoord3(_s,_t,_r); -} -static unsafe void Test_TexCoord3_30469() { - System.SByte _s = default(System.SByte); - System.SByte _t = default(System.SByte); - System.SByte _r = default(System.SByte); - OpenTK.Graphics.ES11.GL.Oes.TexCoord3(_s,_t,_r); -} -static unsafe void Test_TexCoord3_30470() { - System.Byte[] _coords = default(System.Byte[]); - OpenTK.Graphics.ES11.GL.Oes.TexCoord3(_coords); -} -static unsafe void Test_TexCoord3_30471() { - System.Byte _coords = default(System.Byte); - OpenTK.Graphics.ES11.GL.Oes.TexCoord3(ref _coords); -} -static unsafe void Test_TexCoord3_30472() { - System.Byte* _coords = default(System.Byte*); - OpenTK.Graphics.ES11.GL.Oes.TexCoord3(_coords); -} -static unsafe void Test_TexCoord3_30473() { - System.SByte[] _coords = default(System.SByte[]); - OpenTK.Graphics.ES11.GL.Oes.TexCoord3(_coords); -} -static unsafe void Test_TexCoord3_30474() { - System.SByte _coords = default(System.SByte); - OpenTK.Graphics.ES11.GL.Oes.TexCoord3(ref _coords); -} -static unsafe void Test_TexCoord3_30475() { - System.SByte* _coords = default(System.SByte*); - OpenTK.Graphics.ES11.GL.Oes.TexCoord3(_coords); -} -static unsafe void Test_TexCoord3x_30476() { - System.Int32 _s = default(System.Int32); - System.Int32 _t = default(System.Int32); - System.Int32 _r = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.TexCoord3x(_s,_t,_r); -} -static unsafe void Test_TexCoord3x_30477() { - System.Int32[] _coords = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.TexCoord3x(_coords); -} -static unsafe void Test_TexCoord3x_30478() { - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.TexCoord3x(ref _coords); -} -static unsafe void Test_TexCoord3x_30479() { - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.TexCoord3x(_coords); -} -static unsafe void Test_TexCoord4_30480() { - System.Byte _s = default(System.Byte); - System.Byte _t = default(System.Byte); - System.Byte _r = default(System.Byte); - System.Byte _q = default(System.Byte); - OpenTK.Graphics.ES11.GL.Oes.TexCoord4(_s,_t,_r,_q); -} -static unsafe void Test_TexCoord4_30481() { - System.SByte _s = default(System.SByte); - System.SByte _t = default(System.SByte); - System.SByte _r = default(System.SByte); - System.SByte _q = default(System.SByte); - OpenTK.Graphics.ES11.GL.Oes.TexCoord4(_s,_t,_r,_q); -} -static unsafe void Test_TexCoord4_30482() { - System.Byte[] _coords = default(System.Byte[]); - OpenTK.Graphics.ES11.GL.Oes.TexCoord4(_coords); -} -static unsafe void Test_TexCoord4_30483() { - System.Byte _coords = default(System.Byte); - OpenTK.Graphics.ES11.GL.Oes.TexCoord4(ref _coords); -} -static unsafe void Test_TexCoord4_30484() { - System.Byte* _coords = default(System.Byte*); - OpenTK.Graphics.ES11.GL.Oes.TexCoord4(_coords); -} -static unsafe void Test_TexCoord4_30485() { - System.SByte[] _coords = default(System.SByte[]); - OpenTK.Graphics.ES11.GL.Oes.TexCoord4(_coords); -} -static unsafe void Test_TexCoord4_30486() { - System.SByte _coords = default(System.SByte); - OpenTK.Graphics.ES11.GL.Oes.TexCoord4(ref _coords); -} -static unsafe void Test_TexCoord4_30487() { - System.SByte* _coords = default(System.SByte*); - OpenTK.Graphics.ES11.GL.Oes.TexCoord4(_coords); -} -static unsafe void Test_TexCoord4x_30488() { - System.Int32 _s = default(System.Int32); - System.Int32 _t = default(System.Int32); - System.Int32 _r = default(System.Int32); - System.Int32 _q = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.TexCoord4x(_s,_t,_r,_q); -} -static unsafe void Test_TexCoord4x_30489() { - System.Int32[] _coords = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.TexCoord4x(_coords); -} -static unsafe void Test_TexCoord4x_30490() { - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.TexCoord4x(ref _coords); -} -static unsafe void Test_TexCoord4x_30491() { - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.TexCoord4x(_coords); -} -static unsafe void Test_TexEnvx_30492() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.TexEnvx(_target,_pname,_param); -} -static unsafe void Test_TexEnvx_30493() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.TexEnvx(_target,_pname,_params); -} -static unsafe void Test_TexEnvx_30494() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.TexEnvx(_target,_pname,_params); -} -static unsafe void Test_TexGen_30495() { - OpenTK.Graphics.ES11.All _coord = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single _param = default(System.Single); - OpenTK.Graphics.ES11.GL.Oes.TexGen(_coord,_pname,_param); -} -static unsafe void Test_TexGen_30496() { - OpenTK.Graphics.ES11.All _coord = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES11.GL.Oes.TexGen(_coord,_pname,_params); -} -static unsafe void Test_TexGen_30497() { - OpenTK.Graphics.ES11.All _coord = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES11.GL.Oes.TexGen(_coord,_pname,_params); -} -static unsafe void Test_TexGen_30498() { - OpenTK.Graphics.ES11.All _coord = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.TexGen(_coord,_pname,_param); -} -static unsafe void Test_TexGen_30499() { - OpenTK.Graphics.ES11.All _coord = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.TexGen(_coord,_pname,_params); -} -static unsafe void Test_TexGen_30500() { - OpenTK.Graphics.ES11.All _coord = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.TexGen(_coord,_pname,_params); -} -static unsafe void Test_TexGenx_30501() { - OpenTK.Graphics.ES11.All _coord = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.TexGenx(_coord,_pname,_param); -} -static unsafe void Test_TexGenx_30502() { - OpenTK.Graphics.ES11.All _coord = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.TexGenx(_coord,_pname,_params); -} -static unsafe void Test_TexGenx_30503() { - OpenTK.Graphics.ES11.All _coord = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.TexGenx(_coord,_pname,_params); -} -static unsafe void Test_TexParameterx_30504() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.TexParameterx(_target,_pname,_param); -} -static unsafe void Test_TexParameterx_30505() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.TexParameterx(_target,_pname,_params); -} -static unsafe void Test_TexParameterx_30506() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.TexParameterx(_target,_pname,_params); -} -static unsafe void Test_Translatex_30507() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.Translatex(_x,_y,_z); -} -static unsafe void Test_UnmapBuffer_30508() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Boolean r = OpenTK.Graphics.ES11.GL.Oes.UnmapBuffer(_target); -} -static unsafe void Test_Vertex2_30509() { - System.Byte _x = default(System.Byte); - System.Byte _y = default(System.Byte); - OpenTK.Graphics.ES11.GL.Oes.Vertex2(_x,_y); -} -static unsafe void Test_Vertex2_30510() { - System.SByte _x = default(System.SByte); - System.SByte _y = default(System.SByte); - OpenTK.Graphics.ES11.GL.Oes.Vertex2(_x,_y); -} -static unsafe void Test_Vertex2_30511() { - System.Byte[] _coords = default(System.Byte[]); - OpenTK.Graphics.ES11.GL.Oes.Vertex2(_coords); -} -static unsafe void Test_Vertex2_30512() { - System.Byte _coords = default(System.Byte); - OpenTK.Graphics.ES11.GL.Oes.Vertex2(ref _coords); -} -static unsafe void Test_Vertex2_30513() { - System.Byte* _coords = default(System.Byte*); - OpenTK.Graphics.ES11.GL.Oes.Vertex2(_coords); -} -static unsafe void Test_Vertex2_30514() { - System.SByte[] _coords = default(System.SByte[]); - OpenTK.Graphics.ES11.GL.Oes.Vertex2(_coords); -} -static unsafe void Test_Vertex2_30515() { - System.SByte _coords = default(System.SByte); - OpenTK.Graphics.ES11.GL.Oes.Vertex2(ref _coords); -} -static unsafe void Test_Vertex2_30516() { - System.SByte* _coords = default(System.SByte*); - OpenTK.Graphics.ES11.GL.Oes.Vertex2(_coords); -} -static unsafe void Test_Vertex2x_30517() { - System.Int32 _x = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.Vertex2x(_x); -} -static unsafe void Test_Vertex2x_30518() { - System.Int32[] _coords = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.Vertex2x(_coords); -} -static unsafe void Test_Vertex2x_30519() { - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.Vertex2x(_coords); -} -static unsafe void Test_Vertex3_30520() { - System.Byte _x = default(System.Byte); - System.Byte _y = default(System.Byte); - System.Byte _z = default(System.Byte); - OpenTK.Graphics.ES11.GL.Oes.Vertex3(_x,_y,_z); -} -static unsafe void Test_Vertex3_30521() { - System.SByte _x = default(System.SByte); - System.SByte _y = default(System.SByte); - System.SByte _z = default(System.SByte); - OpenTK.Graphics.ES11.GL.Oes.Vertex3(_x,_y,_z); -} -static unsafe void Test_Vertex3_30522() { - System.Byte[] _coords = default(System.Byte[]); - OpenTK.Graphics.ES11.GL.Oes.Vertex3(_coords); -} -static unsafe void Test_Vertex3_30523() { - System.Byte _coords = default(System.Byte); - OpenTK.Graphics.ES11.GL.Oes.Vertex3(ref _coords); -} -static unsafe void Test_Vertex3_30524() { - System.Byte* _coords = default(System.Byte*); - OpenTK.Graphics.ES11.GL.Oes.Vertex3(_coords); -} -static unsafe void Test_Vertex3_30525() { - System.SByte[] _coords = default(System.SByte[]); - OpenTK.Graphics.ES11.GL.Oes.Vertex3(_coords); -} -static unsafe void Test_Vertex3_30526() { - System.SByte _coords = default(System.SByte); - OpenTK.Graphics.ES11.GL.Oes.Vertex3(ref _coords); -} -static unsafe void Test_Vertex3_30527() { - System.SByte* _coords = default(System.SByte*); - OpenTK.Graphics.ES11.GL.Oes.Vertex3(_coords); -} -static unsafe void Test_Vertex3x_30528() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.Vertex3x(_x,_y); -} -static unsafe void Test_Vertex3x_30529() { - System.Int32[] _coords = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.Vertex3x(_coords); -} -static unsafe void Test_Vertex3x_30530() { - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.Vertex3x(ref _coords); -} -static unsafe void Test_Vertex3x_30531() { - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.Vertex3x(_coords); -} -static unsafe void Test_Vertex4_30532() { - System.Byte _x = default(System.Byte); - System.Byte _y = default(System.Byte); - System.Byte _z = default(System.Byte); - System.Byte _w = default(System.Byte); - OpenTK.Graphics.ES11.GL.Oes.Vertex4(_x,_y,_z,_w); -} -static unsafe void Test_Vertex4_30533() { - System.SByte _x = default(System.SByte); - System.SByte _y = default(System.SByte); - System.SByte _z = default(System.SByte); - System.SByte _w = default(System.SByte); - OpenTK.Graphics.ES11.GL.Oes.Vertex4(_x,_y,_z,_w); -} -static unsafe void Test_Vertex4_30534() { - System.Byte[] _coords = default(System.Byte[]); - OpenTK.Graphics.ES11.GL.Oes.Vertex4(_coords); -} -static unsafe void Test_Vertex4_30535() { - System.Byte _coords = default(System.Byte); - OpenTK.Graphics.ES11.GL.Oes.Vertex4(ref _coords); -} -static unsafe void Test_Vertex4_30536() { - System.Byte* _coords = default(System.Byte*); - OpenTK.Graphics.ES11.GL.Oes.Vertex4(_coords); -} -static unsafe void Test_Vertex4_30537() { - System.SByte[] _coords = default(System.SByte[]); - OpenTK.Graphics.ES11.GL.Oes.Vertex4(_coords); -} -static unsafe void Test_Vertex4_30538() { - System.SByte _coords = default(System.SByte); - OpenTK.Graphics.ES11.GL.Oes.Vertex4(ref _coords); -} -static unsafe void Test_Vertex4_30539() { - System.SByte* _coords = default(System.SByte*); - OpenTK.Graphics.ES11.GL.Oes.Vertex4(_coords); -} -static unsafe void Test_Vertex4x_30540() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.Vertex4x(_x,_y,_z); -} -static unsafe void Test_Vertex4x_30541() { - System.Int32[] _coords = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Oes.Vertex4x(_coords); -} -static unsafe void Test_Vertex4x_30542() { - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.ES11.GL.Oes.Vertex4x(ref _coords); -} -static unsafe void Test_Vertex4x_30543() { - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Oes.Vertex4x(_coords); -} -static unsafe void Test_WeightPointer_30544() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.ES11.GL.Oes.WeightPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_WeightPointer_30545() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.ES11.GL.Oes.WeightPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_WeightPointer_30546() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.ES11.GL.Oes.WeightPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_WeightPointer_30547() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.ES11.GL.Oes.WeightPointer(_size,_type,_stride,_pointer); -} -static unsafe void Test_WeightPointer_30548() { - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.ES11.GL.Oes.WeightPointer(_size,_type,_stride,ref _pointer); -} -static unsafe void Test_DisableDriverControl_30549() { - System.Int32 _driverControl = default(System.Int32); - OpenTK.Graphics.ES11.GL.Qcom.DisableDriverControl(_driverControl); -} -static unsafe void Test_DisableDriverControl_30550() { - System.UInt32 _driverControl = default(System.UInt32); - OpenTK.Graphics.ES11.GL.Qcom.DisableDriverControl(_driverControl); -} -static unsafe void Test_EnableDriverControl_30551() { - System.Int32 _driverControl = default(System.Int32); - OpenTK.Graphics.ES11.GL.Qcom.EnableDriverControl(_driverControl); -} -static unsafe void Test_EnableDriverControl_30552() { - System.UInt32 _driverControl = default(System.UInt32); - OpenTK.Graphics.ES11.GL.Qcom.EnableDriverControl(_driverControl); -} -static unsafe void Test_EndTiling_30553() { - System.Int32 _preserveMask = default(System.Int32); - OpenTK.Graphics.ES11.GL.Qcom.EndTiling(_preserveMask); -} -static unsafe void Test_EndTiling_30554() { - System.UInt32 _preserveMask = default(System.UInt32); - OpenTK.Graphics.ES11.GL.Qcom.EndTiling(_preserveMask); -} -static unsafe void Test_ExtGetBufferPointer_30555() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.IntPtr _params = default(System.IntPtr); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetBufferPointer(_target,_params); -} -static unsafe void Test_ExtGetBufferPointer_30556() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - int[] _params = default(int[]); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetBufferPointer(_target,_params); -} -static unsafe void Test_ExtGetBufferPointer_30557() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - int[,] _params = default(int[,]); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetBufferPointer(_target,_params); -} -static unsafe void Test_ExtGetBufferPointer_30558() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - int[,,] _params = default(int[,,]); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetBufferPointer(_target,_params); -} -static unsafe void Test_ExtGetBufferPointer_30559() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - int _params = default(int); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetBufferPointer(_target,ref _params); -} -static unsafe void Test_ExtGetBuffers_30560() { - System.Int32[] _buffers = default(System.Int32[]); - System.Int32 _maxBuffers = default(System.Int32); - System.Int32[] _numBuffers = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetBuffers(_buffers,_maxBuffers,_numBuffers); -} -static unsafe void Test_ExtGetBuffers_30561() { - System.Int32[] _buffers = default(System.Int32[]); - System.Int32 _maxBuffers = default(System.Int32); - System.Int32 _numBuffers = default(System.Int32); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetBuffers(_buffers,_maxBuffers,out _numBuffers); -} -static unsafe void Test_ExtGetBuffers_30562() { - System.Int32 _buffers = default(System.Int32); - System.Int32 _maxBuffers = default(System.Int32); - System.Int32 _numBuffers = default(System.Int32); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetBuffers(out _buffers,_maxBuffers,out _numBuffers); -} -static unsafe void Test_ExtGetBuffers_30563() { - System.Int32* _buffers = default(System.Int32*); - System.Int32 _maxBuffers = default(System.Int32); - System.Int32* _numBuffers = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetBuffers(_buffers,_maxBuffers,_numBuffers); -} -static unsafe void Test_ExtGetBuffers_30564() { - System.UInt32[] _buffers = default(System.UInt32[]); - System.Int32 _maxBuffers = default(System.Int32); - System.Int32[] _numBuffers = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetBuffers(_buffers,_maxBuffers,_numBuffers); -} -static unsafe void Test_ExtGetBuffers_30565() { - System.UInt32[] _buffers = default(System.UInt32[]); - System.Int32 _maxBuffers = default(System.Int32); - System.Int32 _numBuffers = default(System.Int32); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetBuffers(_buffers,_maxBuffers,out _numBuffers); -} -static unsafe void Test_ExtGetBuffers_30566() { - System.UInt32 _buffers = default(System.UInt32); - System.Int32 _maxBuffers = default(System.Int32); - System.Int32 _numBuffers = default(System.Int32); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetBuffers(out _buffers,_maxBuffers,out _numBuffers); -} -static unsafe void Test_ExtGetBuffers_30567() { - System.UInt32* _buffers = default(System.UInt32*); - System.Int32 _maxBuffers = default(System.Int32); - System.Int32* _numBuffers = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetBuffers(_buffers,_maxBuffers,_numBuffers); -} -static unsafe void Test_ExtGetFramebuffers_30568() { - System.Int32[] _framebuffers = default(System.Int32[]); - System.Int32 _maxFramebuffers = default(System.Int32); - System.Int32[] _numFramebuffers = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetFramebuffers(_framebuffers,_maxFramebuffers,_numFramebuffers); -} -static unsafe void Test_ExtGetFramebuffers_30569() { - System.Int32[] _framebuffers = default(System.Int32[]); - System.Int32 _maxFramebuffers = default(System.Int32); - System.Int32 _numFramebuffers = default(System.Int32); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetFramebuffers(_framebuffers,_maxFramebuffers,out _numFramebuffers); -} -static unsafe void Test_ExtGetFramebuffers_30570() { - System.Int32 _framebuffers = default(System.Int32); - System.Int32 _maxFramebuffers = default(System.Int32); - System.Int32 _numFramebuffers = default(System.Int32); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetFramebuffers(out _framebuffers,_maxFramebuffers,out _numFramebuffers); -} -static unsafe void Test_ExtGetFramebuffers_30571() { - System.Int32* _framebuffers = default(System.Int32*); - System.Int32 _maxFramebuffers = default(System.Int32); - System.Int32* _numFramebuffers = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetFramebuffers(_framebuffers,_maxFramebuffers,_numFramebuffers); -} -static unsafe void Test_ExtGetFramebuffers_30572() { - System.UInt32[] _framebuffers = default(System.UInt32[]); - System.Int32 _maxFramebuffers = default(System.Int32); - System.Int32[] _numFramebuffers = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetFramebuffers(_framebuffers,_maxFramebuffers,_numFramebuffers); -} -static unsafe void Test_ExtGetFramebuffers_30573() { - System.UInt32[] _framebuffers = default(System.UInt32[]); - System.Int32 _maxFramebuffers = default(System.Int32); - System.Int32 _numFramebuffers = default(System.Int32); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetFramebuffers(_framebuffers,_maxFramebuffers,out _numFramebuffers); -} -static unsafe void Test_ExtGetFramebuffers_30574() { - System.UInt32 _framebuffers = default(System.UInt32); - System.Int32 _maxFramebuffers = default(System.Int32); - System.Int32 _numFramebuffers = default(System.Int32); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetFramebuffers(out _framebuffers,_maxFramebuffers,out _numFramebuffers); -} -static unsafe void Test_ExtGetFramebuffers_30575() { - System.UInt32* _framebuffers = default(System.UInt32*); - System.Int32 _maxFramebuffers = default(System.Int32); - System.Int32* _numFramebuffers = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetFramebuffers(_framebuffers,_maxFramebuffers,_numFramebuffers); -} -static unsafe void Test_ExtGetProgramBinarySource_30576() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES11.All _shadertype = default(OpenTK.Graphics.ES11.All); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - System.Int32[] _length = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetProgramBinarySource(_program,_shadertype,_source,_length); -} -static unsafe void Test_ExtGetProgramBinarySource_30577() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES11.All _shadertype = default(OpenTK.Graphics.ES11.All); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetProgramBinarySource(_program,_shadertype,_source,out _length); -} -static unsafe void Test_ExtGetProgramBinarySource_30578() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES11.All _shadertype = default(OpenTK.Graphics.ES11.All); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetProgramBinarySource(_program,_shadertype,_source,_length); -} -static unsafe void Test_ExtGetProgramBinarySource_30579() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES11.All _shadertype = default(OpenTK.Graphics.ES11.All); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - System.Int32[] _length = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetProgramBinarySource(_program,_shadertype,_source,_length); -} -static unsafe void Test_ExtGetProgramBinarySource_30580() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES11.All _shadertype = default(OpenTK.Graphics.ES11.All); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetProgramBinarySource(_program,_shadertype,_source,out _length); -} -static unsafe void Test_ExtGetProgramBinarySource_30581() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES11.All _shadertype = default(OpenTK.Graphics.ES11.All); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetProgramBinarySource(_program,_shadertype,_source,_length); -} -static unsafe void Test_ExtGetProgram_30582() { - System.Int32[] _programs = default(System.Int32[]); - System.Int32 _maxPrograms = default(System.Int32); - System.Int32[] _numPrograms = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetProgram(_programs,_maxPrograms,_numPrograms); -} -static unsafe void Test_ExtGetProgram_30583() { - System.Int32[] _programs = default(System.Int32[]); - System.Int32 _maxPrograms = default(System.Int32); - System.Int32 _numPrograms = default(System.Int32); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetProgram(_programs,_maxPrograms,out _numPrograms); -} -static unsafe void Test_ExtGetProgram_30584() { - System.Int32 _programs = default(System.Int32); - System.Int32 _maxPrograms = default(System.Int32); - System.Int32 _numPrograms = default(System.Int32); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetProgram(out _programs,_maxPrograms,out _numPrograms); -} -static unsafe void Test_ExtGetProgram_30585() { - System.Int32* _programs = default(System.Int32*); - System.Int32 _maxPrograms = default(System.Int32); - System.Int32* _numPrograms = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetProgram(_programs,_maxPrograms,_numPrograms); -} -static unsafe void Test_ExtGetProgram_30586() { - System.UInt32[] _programs = default(System.UInt32[]); - System.Int32 _maxPrograms = default(System.Int32); - System.Int32[] _numPrograms = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetProgram(_programs,_maxPrograms,_numPrograms); -} -static unsafe void Test_ExtGetProgram_30587() { - System.UInt32[] _programs = default(System.UInt32[]); - System.Int32 _maxPrograms = default(System.Int32); - System.Int32 _numPrograms = default(System.Int32); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetProgram(_programs,_maxPrograms,out _numPrograms); -} -static unsafe void Test_ExtGetProgram_30588() { - System.UInt32 _programs = default(System.UInt32); - System.Int32 _maxPrograms = default(System.Int32); - System.Int32 _numPrograms = default(System.Int32); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetProgram(out _programs,_maxPrograms,out _numPrograms); -} -static unsafe void Test_ExtGetProgram_30589() { - System.UInt32* _programs = default(System.UInt32*); - System.Int32 _maxPrograms = default(System.Int32); - System.Int32* _numPrograms = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetProgram(_programs,_maxPrograms,_numPrograms); -} -static unsafe void Test_ExtGetRenderbuffers_30590() { - System.Int32[] _renderbuffers = default(System.Int32[]); - System.Int32 _maxRenderbuffers = default(System.Int32); - System.Int32[] _numRenderbuffers = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetRenderbuffers(_renderbuffers,_maxRenderbuffers,_numRenderbuffers); -} -static unsafe void Test_ExtGetRenderbuffers_30591() { - System.Int32[] _renderbuffers = default(System.Int32[]); - System.Int32 _maxRenderbuffers = default(System.Int32); - System.Int32 _numRenderbuffers = default(System.Int32); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetRenderbuffers(_renderbuffers,_maxRenderbuffers,out _numRenderbuffers); -} -static unsafe void Test_ExtGetRenderbuffers_30592() { - System.Int32 _renderbuffers = default(System.Int32); - System.Int32 _maxRenderbuffers = default(System.Int32); - System.Int32 _numRenderbuffers = default(System.Int32); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetRenderbuffers(out _renderbuffers,_maxRenderbuffers,out _numRenderbuffers); -} -static unsafe void Test_ExtGetRenderbuffers_30593() { - System.Int32* _renderbuffers = default(System.Int32*); - System.Int32 _maxRenderbuffers = default(System.Int32); - System.Int32* _numRenderbuffers = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetRenderbuffers(_renderbuffers,_maxRenderbuffers,_numRenderbuffers); -} -static unsafe void Test_ExtGetRenderbuffers_30594() { - System.UInt32[] _renderbuffers = default(System.UInt32[]); - System.Int32 _maxRenderbuffers = default(System.Int32); - System.Int32[] _numRenderbuffers = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetRenderbuffers(_renderbuffers,_maxRenderbuffers,_numRenderbuffers); -} -static unsafe void Test_ExtGetRenderbuffers_30595() { - System.UInt32[] _renderbuffers = default(System.UInt32[]); - System.Int32 _maxRenderbuffers = default(System.Int32); - System.Int32 _numRenderbuffers = default(System.Int32); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetRenderbuffers(_renderbuffers,_maxRenderbuffers,out _numRenderbuffers); -} -static unsafe void Test_ExtGetRenderbuffers_30596() { - System.UInt32 _renderbuffers = default(System.UInt32); - System.Int32 _maxRenderbuffers = default(System.Int32); - System.Int32 _numRenderbuffers = default(System.Int32); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetRenderbuffers(out _renderbuffers,_maxRenderbuffers,out _numRenderbuffers); -} -static unsafe void Test_ExtGetRenderbuffers_30597() { - System.UInt32* _renderbuffers = default(System.UInt32*); - System.Int32 _maxRenderbuffers = default(System.Int32); - System.Int32* _numRenderbuffers = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetRenderbuffers(_renderbuffers,_maxRenderbuffers,_numRenderbuffers); -} -static unsafe void Test_ExtGetShaders_30598() { - System.Int32[] _shaders = default(System.Int32[]); - System.Int32 _maxShaders = default(System.Int32); - System.Int32[] _numShaders = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetShaders(_shaders,_maxShaders,_numShaders); -} -static unsafe void Test_ExtGetShaders_30599() { - System.Int32[] _shaders = default(System.Int32[]); - System.Int32 _maxShaders = default(System.Int32); - System.Int32 _numShaders = default(System.Int32); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetShaders(_shaders,_maxShaders,out _numShaders); -} -static unsafe void Test_ExtGetShaders_30600() { - System.Int32 _shaders = default(System.Int32); - System.Int32 _maxShaders = default(System.Int32); - System.Int32 _numShaders = default(System.Int32); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetShaders(out _shaders,_maxShaders,out _numShaders); -} -static unsafe void Test_ExtGetShaders_30601() { - System.Int32* _shaders = default(System.Int32*); - System.Int32 _maxShaders = default(System.Int32); - System.Int32* _numShaders = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetShaders(_shaders,_maxShaders,_numShaders); -} -static unsafe void Test_ExtGetShaders_30602() { - System.UInt32[] _shaders = default(System.UInt32[]); - System.Int32 _maxShaders = default(System.Int32); - System.Int32[] _numShaders = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetShaders(_shaders,_maxShaders,_numShaders); -} -static unsafe void Test_ExtGetShaders_30603() { - System.UInt32[] _shaders = default(System.UInt32[]); - System.Int32 _maxShaders = default(System.Int32); - System.Int32 _numShaders = default(System.Int32); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetShaders(_shaders,_maxShaders,out _numShaders); -} -static unsafe void Test_ExtGetShaders_30604() { - System.UInt32 _shaders = default(System.UInt32); - System.Int32 _maxShaders = default(System.Int32); - System.Int32 _numShaders = default(System.Int32); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetShaders(out _shaders,_maxShaders,out _numShaders); -} -static unsafe void Test_ExtGetShaders_30605() { - System.UInt32* _shaders = default(System.UInt32*); - System.Int32 _maxShaders = default(System.Int32); - System.Int32* _numShaders = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetShaders(_shaders,_maxShaders,_numShaders); -} -static unsafe void Test_ExtGetTexLevelParameter_30606() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.ES11.All _face = default(OpenTK.Graphics.ES11.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetTexLevelParameter(_texture,_face,_level,_pname,_params); -} -static unsafe void Test_ExtGetTexLevelParameter_30607() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.ES11.All _face = default(OpenTK.Graphics.ES11.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetTexLevelParameter(_texture,_face,_level,_pname,out _params); -} -static unsafe void Test_ExtGetTexLevelParameter_30608() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.ES11.All _face = default(OpenTK.Graphics.ES11.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetTexLevelParameter(_texture,_face,_level,_pname,_params); -} -static unsafe void Test_ExtGetTexLevelParameter_30609() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.ES11.All _face = default(OpenTK.Graphics.ES11.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetTexLevelParameter(_texture,_face,_level,_pname,_params); -} -static unsafe void Test_ExtGetTexLevelParameter_30610() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.ES11.All _face = default(OpenTK.Graphics.ES11.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetTexLevelParameter(_texture,_face,_level,_pname,out _params); -} -static unsafe void Test_ExtGetTexLevelParameter_30611() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.ES11.All _face = default(OpenTK.Graphics.ES11.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetTexLevelParameter(_texture,_face,_level,_pname,_params); -} -static unsafe void Test_ExtGetTexSubImage_30612() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES11.All _format = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - System.IntPtr _texels = default(System.IntPtr); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetTexSubImage(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_texels); -} -static unsafe void Test_ExtGetTexSubImage_30613() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES11.All _format = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int[] _texels = default(int[]); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetTexSubImage(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_texels); -} -static unsafe void Test_ExtGetTexSubImage_30614() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES11.All _format = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int[,] _texels = default(int[,]); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetTexSubImage(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_texels); -} -static unsafe void Test_ExtGetTexSubImage_30615() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES11.All _format = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int[,,] _texels = default(int[,,]); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetTexSubImage(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_texels); -} -static unsafe void Test_ExtGetTexSubImage_30616() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES11.All _format = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _type = default(OpenTK.Graphics.ES11.All); - int _texels = default(int); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetTexSubImage(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,ref _texels); -} -static unsafe void Test_ExtGetTextures_30617() { - System.Int32[] _textures = default(System.Int32[]); - System.Int32 _maxTextures = default(System.Int32); - System.Int32[] _numTextures = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetTextures(_textures,_maxTextures,_numTextures); -} -static unsafe void Test_ExtGetTextures_30618() { - System.Int32 _textures = default(System.Int32); - System.Int32 _maxTextures = default(System.Int32); - System.Int32 _numTextures = default(System.Int32); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetTextures(out _textures,_maxTextures,out _numTextures); -} -static unsafe void Test_ExtGetTextures_30619() { - System.Int32* _textures = default(System.Int32*); - System.Int32 _maxTextures = default(System.Int32); - System.Int32* _numTextures = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetTextures(_textures,_maxTextures,_numTextures); -} -static unsafe void Test_ExtGetTextures_30620() { - System.UInt32[] _textures = default(System.UInt32[]); - System.Int32 _maxTextures = default(System.Int32); - System.Int32[] _numTextures = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetTextures(_textures,_maxTextures,_numTextures); -} -static unsafe void Test_ExtGetTextures_30621() { - System.UInt32 _textures = default(System.UInt32); - System.Int32 _maxTextures = default(System.Int32); - System.Int32 _numTextures = default(System.Int32); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetTextures(out _textures,_maxTextures,out _numTextures); -} -static unsafe void Test_ExtGetTextures_30622() { - System.UInt32* _textures = default(System.UInt32*); - System.Int32 _maxTextures = default(System.Int32); - System.Int32* _numTextures = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Qcom.ExtGetTextures(_textures,_maxTextures,_numTextures); -} -static unsafe void Test_ExtIsProgramBinary_30623() { - System.Int32 _program = default(System.Int32); - System.Boolean r = OpenTK.Graphics.ES11.GL.Qcom.ExtIsProgramBinary(_program); -} -static unsafe void Test_ExtIsProgramBinary_30624() { - System.UInt32 _program = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.ES11.GL.Qcom.ExtIsProgramBinary(_program); -} -static unsafe void Test_ExtTexObjectStateOverride_30625() { - OpenTK.Graphics.ES11.All _target = default(OpenTK.Graphics.ES11.All); - OpenTK.Graphics.ES11.All _pname = default(OpenTK.Graphics.ES11.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES11.GL.Qcom.ExtTexObjectStateOverride(_target,_pname,_param); -} -static unsafe void Test_GetDriverControl_30626() { - System.Int32[] _num = default(System.Int32[]); - System.Int32 _size = default(System.Int32); - System.Int32[] _driverControls = default(System.Int32[]); - OpenTK.Graphics.ES11.GL.Qcom.GetDriverControl(_num,_size,_driverControls); -} -static unsafe void Test_GetDriverControl_30627() { - System.Int32[] _num = default(System.Int32[]); - System.Int32 _size = default(System.Int32); - System.UInt32[] _driverControls = default(System.UInt32[]); - OpenTK.Graphics.ES11.GL.Qcom.GetDriverControl(_num,_size,_driverControls); -} -static unsafe void Test_GetDriverControl_30628() { - System.Int32 _num = default(System.Int32); - System.Int32 _size = default(System.Int32); - System.Int32 _driverControls = default(System.Int32); - OpenTK.Graphics.ES11.GL.Qcom.GetDriverControl(out _num,_size,out _driverControls); -} -static unsafe void Test_GetDriverControl_30629() { - System.Int32 _num = default(System.Int32); - System.Int32 _size = default(System.Int32); - System.UInt32 _driverControls = default(System.UInt32); - OpenTK.Graphics.ES11.GL.Qcom.GetDriverControl(out _num,_size,out _driverControls); -} -static unsafe void Test_GetDriverControl_30630() { - System.Int32* _num = default(System.Int32*); - System.Int32 _size = default(System.Int32); - System.Int32* _driverControls = default(System.Int32*); - OpenTK.Graphics.ES11.GL.Qcom.GetDriverControl(_num,_size,_driverControls); -} -static unsafe void Test_GetDriverControl_30631() { - System.Int32* _num = default(System.Int32*); - System.Int32 _size = default(System.Int32); - System.UInt32* _driverControls = default(System.UInt32*); - OpenTK.Graphics.ES11.GL.Qcom.GetDriverControl(_num,_size,_driverControls); -} -static unsafe void Test_GetDriverControlString_30632() { - System.Int32 _driverControl = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _driverControlString = default(System.Text.StringBuilder); - OpenTK.Graphics.ES11.GL.Qcom.GetDriverControlString(_driverControl,_bufSize,_length,_driverControlString); -} -static unsafe void Test_GetDriverControlString_30633() { - System.Int32 _driverControl = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _driverControlString = default(System.Text.StringBuilder); - OpenTK.Graphics.ES11.GL.Qcom.GetDriverControlString(_driverControl,_bufSize,out _length,_driverControlString); -} -static unsafe void Test_GetDriverControlString_30634() { - System.Int32 _driverControl = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _driverControlString = default(System.Text.StringBuilder); - OpenTK.Graphics.ES11.GL.Qcom.GetDriverControlString(_driverControl,_bufSize,_length,_driverControlString); -} -static unsafe void Test_GetDriverControlString_30635() { - System.UInt32 _driverControl = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _driverControlString = default(System.Text.StringBuilder); - OpenTK.Graphics.ES11.GL.Qcom.GetDriverControlString(_driverControl,_bufSize,_length,_driverControlString); -} -static unsafe void Test_GetDriverControlString_30636() { - System.UInt32 _driverControl = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _driverControlString = default(System.Text.StringBuilder); - OpenTK.Graphics.ES11.GL.Qcom.GetDriverControlString(_driverControl,_bufSize,out _length,_driverControlString); -} -static unsafe void Test_GetDriverControlString_30637() { - System.UInt32 _driverControl = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _driverControlString = default(System.Text.StringBuilder); - OpenTK.Graphics.ES11.GL.Qcom.GetDriverControlString(_driverControl,_bufSize,_length,_driverControlString); -} -static unsafe void Test_StartTiling_30638() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _preserveMask = default(System.Int32); - OpenTK.Graphics.ES11.GL.Qcom.StartTiling(_x,_y,_width,_height,_preserveMask); -} -static unsafe void Test_StartTiling_30639() { - System.UInt32 _x = default(System.UInt32); - System.UInt32 _y = default(System.UInt32); - System.UInt32 _width = default(System.UInt32); - System.UInt32 _height = default(System.UInt32); - System.UInt32 _preserveMask = default(System.UInt32); - OpenTK.Graphics.ES11.GL.Qcom.StartTiling(_x,_y,_width,_height,_preserveMask); -} - -static unsafe void Test_ClearColor_30641() { - System.Drawing.Color _color = default(System.Drawing.Color); - OpenTK.Graphics.ES20.GL.ClearColor(_color); -} -static unsafe void Test_ClearColor_30642() { - OpenTK.Graphics.Color4 _color = default(OpenTK.Graphics.Color4); - OpenTK.Graphics.ES20.GL.ClearColor(_color); -} -static unsafe void Test_BlendColor_30643() { - System.Drawing.Color _color = default(System.Drawing.Color); - OpenTK.Graphics.ES20.GL.BlendColor(_color); -} -static unsafe void Test_BlendColor_30644() { - OpenTK.Graphics.Color4 _color = default(OpenTK.Graphics.Color4); - OpenTK.Graphics.ES20.GL.BlendColor(_color); -} -static unsafe void Test_Uniform2_30645() { - System.Int32 _location = default(System.Int32); - OpenTK.Vector2 _vector = default(OpenTK.Vector2); - OpenTK.Graphics.ES20.GL.Uniform2(_location,ref _vector); -} -static unsafe void Test_Uniform3_30646() { - System.Int32 _location = default(System.Int32); - OpenTK.Vector3 _vector = default(OpenTK.Vector3); - OpenTK.Graphics.ES20.GL.Uniform3(_location,ref _vector); -} -static unsafe void Test_Uniform4_30647() { - System.Int32 _location = default(System.Int32); - OpenTK.Vector4 _vector = default(OpenTK.Vector4); - OpenTK.Graphics.ES20.GL.Uniform4(_location,ref _vector); -} -static unsafe void Test_Uniform2_30648() { - System.Int32 _location = default(System.Int32); - OpenTK.Vector2 _vector = default(OpenTK.Vector2); - OpenTK.Graphics.ES20.GL.Uniform2(_location,_vector); -} -static unsafe void Test_Uniform3_30649() { - System.Int32 _location = default(System.Int32); - OpenTK.Vector3 _vector = default(OpenTK.Vector3); - OpenTK.Graphics.ES20.GL.Uniform3(_location,_vector); -} -static unsafe void Test_Uniform4_30650() { - System.Int32 _location = default(System.Int32); - OpenTK.Vector4 _vector = default(OpenTK.Vector4); - OpenTK.Graphics.ES20.GL.Uniform4(_location,_vector); -} -static unsafe void Test_Uniform4_30651() { - System.Int32 _location = default(System.Int32); - OpenTK.Graphics.Color4 _color = default(OpenTK.Graphics.Color4); - OpenTK.Graphics.ES20.GL.Uniform4(_location,_color); -} -static unsafe void Test_Uniform4_30652() { - System.Int32 _location = default(System.Int32); - OpenTK.Quaternion _quaternion = default(OpenTK.Quaternion); - OpenTK.Graphics.ES20.GL.Uniform4(_location,_quaternion); -} -static unsafe void Test_UniformMatrix2_30653() { - System.Int32 _location = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - OpenTK.Matrix2 _matrix = default(OpenTK.Matrix2); - OpenTK.Graphics.ES20.GL.UniformMatrix2(_location,_transpose,ref _matrix); -} -static unsafe void Test_UniformMatrix3_30654() { - System.Int32 _location = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - OpenTK.Matrix3 _matrix = default(OpenTK.Matrix3); - OpenTK.Graphics.ES20.GL.UniformMatrix3(_location,_transpose,ref _matrix); -} -static unsafe void Test_UniformMatrix4_30655() { - System.Int32 _location = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - OpenTK.Matrix4 _matrix = default(OpenTK.Matrix4); - OpenTK.Graphics.ES20.GL.UniformMatrix4(_location,_transpose,ref _matrix); -} -static unsafe void Test_GetActiveAttrib_30656() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES20.ActiveAttribType _type = default(OpenTK.Graphics.ES20.ActiveAttribType); - System.String r = OpenTK.Graphics.ES20.GL.GetActiveAttrib(_program,_index,out _size,out _type); -} -static unsafe void Test_GetActiveUniform_30657() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformIndex = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES20.ActiveUniformType _type = default(OpenTK.Graphics.ES20.ActiveUniformType); - System.String r = OpenTK.Graphics.ES20.GL.GetActiveUniform(_program,_uniformIndex,out _size,out _type); -} -static unsafe void Test_ShaderSource_30658() { - System.Int32 _shader = default(System.Int32); - System.String _string = default(System.String); - OpenTK.Graphics.ES20.GL.ShaderSource(_shader,_string); -} -static unsafe void Test_GetShaderInfoLog_30659() { - System.Int32 _shader = default(System.Int32); - System.String r = OpenTK.Graphics.ES20.GL.GetShaderInfoLog(_shader); -} -static unsafe void Test_GetShaderInfoLog_30660() { - System.Int32 _shader = default(System.Int32); - System.String _info = default(System.String); - OpenTK.Graphics.ES20.GL.GetShaderInfoLog(_shader,out _info); -} -static unsafe void Test_GetProgramInfoLog_30661() { - System.Int32 _program = default(System.Int32); - System.String r = OpenTK.Graphics.ES20.GL.GetProgramInfoLog(_program); -} -static unsafe void Test_GetProgramInfoLog_30662() { - System.Int32 _program = default(System.Int32); - System.String _info = default(System.String); - OpenTK.Graphics.ES20.GL.GetProgramInfoLog(_program,out _info); -} -static unsafe void Test_VertexAttrib2_30663() { - System.Int32 _index = default(System.Int32); - OpenTK.Vector2 _v = default(OpenTK.Vector2); - OpenTK.Graphics.ES20.GL.VertexAttrib2(_index,ref _v); -} -static unsafe void Test_VertexAttrib3_30664() { - System.Int32 _index = default(System.Int32); - OpenTK.Vector3 _v = default(OpenTK.Vector3); - OpenTK.Graphics.ES20.GL.VertexAttrib3(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_30665() { - System.Int32 _index = default(System.Int32); - OpenTK.Vector4 _v = default(OpenTK.Vector4); - OpenTK.Graphics.ES20.GL.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib2_30666() { - System.Int32 _index = default(System.Int32); - OpenTK.Vector2 _v = default(OpenTK.Vector2); - OpenTK.Graphics.ES20.GL.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib3_30667() { - System.Int32 _index = default(System.Int32); - OpenTK.Vector3 _v = default(OpenTK.Vector3); - OpenTK.Graphics.ES20.GL.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib4_30668() { - System.Int32 _index = default(System.Int32); - OpenTK.Vector4 _v = default(OpenTK.Vector4); - OpenTK.Graphics.ES20.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttribPointer_30669() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES20.VertexAttribPointerType _type = default(OpenTK.Graphics.ES20.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - System.Int32 _offset = default(System.Int32); - OpenTK.Graphics.ES20.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_offset); -} -static unsafe void Test_VertexAttribPointer_30670() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES20.VertexAttribPointerType _type = default(OpenTK.Graphics.ES20.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - System.Int32 _offset = default(System.Int32); - OpenTK.Graphics.ES20.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_offset); -} -static unsafe void Test_DrawElements_30671() { - OpenTK.Graphics.ES20.BeginMode _mode = default(OpenTK.Graphics.ES20.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.DrawElementsType _type = default(OpenTK.Graphics.ES20.DrawElementsType); - System.Int32 _offset = default(System.Int32); - OpenTK.Graphics.ES20.GL.DrawElements(_mode,_count,_type,_offset); -} -static unsafe void Test_GetFloat_30672() { - OpenTK.Graphics.ES20.GetPName _pname = default(OpenTK.Graphics.ES20.GetPName); - OpenTK.Vector2 _vector = default(OpenTK.Vector2); - OpenTK.Graphics.ES20.GL.GetFloat(_pname,out _vector); -} -static unsafe void Test_GetFloat_30673() { - OpenTK.Graphics.ES20.GetPName _pname = default(OpenTK.Graphics.ES20.GetPName); - OpenTK.Vector3 _vector = default(OpenTK.Vector3); - OpenTK.Graphics.ES20.GL.GetFloat(_pname,out _vector); -} -static unsafe void Test_GetFloat_30674() { - OpenTK.Graphics.ES20.GetPName _pname = default(OpenTK.Graphics.ES20.GetPName); - OpenTK.Vector4 _vector = default(OpenTK.Vector4); - OpenTK.Graphics.ES20.GL.GetFloat(_pname,out _vector); -} -static unsafe void Test_GetFloat_30675() { - OpenTK.Graphics.ES20.GetPName _pname = default(OpenTK.Graphics.ES20.GetPName); - OpenTK.Matrix4 _matrix = default(OpenTK.Matrix4); - OpenTK.Graphics.ES20.GL.GetFloat(_pname,out _matrix); -} -static unsafe void Test_Viewport_30676() { - System.Drawing.Size _size = default(System.Drawing.Size); - OpenTK.Graphics.ES20.GL.Viewport(_size); -} -static unsafe void Test_Viewport_30677() { - System.Drawing.Point _location = default(System.Drawing.Point); - System.Drawing.Size _size = default(System.Drawing.Size); - OpenTK.Graphics.ES20.GL.Viewport(_location,_size); -} -static unsafe void Test_Viewport_30678() { - System.Drawing.Rectangle _rectangle = default(System.Drawing.Rectangle); - OpenTK.Graphics.ES20.GL.Viewport(_rectangle); -} -static unsafe void Test_ActiveTexture_30679() { - OpenTK.Graphics.ES20.All _texture = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.GL.ActiveTexture(_texture); -} -static unsafe void Test_ActiveTexture_30680() { - OpenTK.Graphics.ES20.TextureUnit _texture = default(OpenTK.Graphics.ES20.TextureUnit); - OpenTK.Graphics.ES20.GL.ActiveTexture(_texture); -} -static unsafe void Test_AttachShader_30681() { - System.Int32 _program = default(System.Int32); - System.Int32 _shader = default(System.Int32); - OpenTK.Graphics.ES20.GL.AttachShader(_program,_shader); -} -static unsafe void Test_AttachShader_30682() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _shader = default(System.UInt32); - OpenTK.Graphics.ES20.GL.AttachShader(_program,_shader); -} -static unsafe void Test_BindAttribLocation_30683() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.String _name = default(System.String); - OpenTK.Graphics.ES20.GL.BindAttribLocation(_program,_index,_name); -} -static unsafe void Test_BindAttribLocation_30684() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.String _name = default(System.String); - OpenTK.Graphics.ES20.GL.BindAttribLocation(_program,_index,_name); -} -static unsafe void Test_BindBuffer_30685() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.ES20.GL.BindBuffer(_target,_buffer); -} -static unsafe void Test_BindBuffer_30686() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.ES20.GL.BindBuffer(_target,_buffer); -} -static unsafe void Test_BindBuffer_30687() { - OpenTK.Graphics.ES20.BufferTarget _target = default(OpenTK.Graphics.ES20.BufferTarget); - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.ES20.GL.BindBuffer(_target,_buffer); -} -static unsafe void Test_BindBuffer_30688() { - OpenTK.Graphics.ES20.BufferTarget _target = default(OpenTK.Graphics.ES20.BufferTarget); - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.ES20.GL.BindBuffer(_target,_buffer); -} -static unsafe void Test_BindFramebuffer_30689() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _framebuffer = default(System.Int32); - OpenTK.Graphics.ES20.GL.BindFramebuffer(_target,_framebuffer); -} -static unsafe void Test_BindFramebuffer_30690() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.UInt32 _framebuffer = default(System.UInt32); - OpenTK.Graphics.ES20.GL.BindFramebuffer(_target,_framebuffer); -} -static unsafe void Test_BindFramebuffer_30691() { - OpenTK.Graphics.ES20.FramebufferTarget _target = default(OpenTK.Graphics.ES20.FramebufferTarget); - System.Int32 _framebuffer = default(System.Int32); - OpenTK.Graphics.ES20.GL.BindFramebuffer(_target,_framebuffer); -} -static unsafe void Test_BindFramebuffer_30692() { - OpenTK.Graphics.ES20.FramebufferTarget _target = default(OpenTK.Graphics.ES20.FramebufferTarget); - System.UInt32 _framebuffer = default(System.UInt32); - OpenTK.Graphics.ES20.GL.BindFramebuffer(_target,_framebuffer); -} -static unsafe void Test_BindRenderbuffer_30693() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _renderbuffer = default(System.Int32); - OpenTK.Graphics.ES20.GL.BindRenderbuffer(_target,_renderbuffer); -} -static unsafe void Test_BindRenderbuffer_30694() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.UInt32 _renderbuffer = default(System.UInt32); - OpenTK.Graphics.ES20.GL.BindRenderbuffer(_target,_renderbuffer); -} -static unsafe void Test_BindRenderbuffer_30695() { - OpenTK.Graphics.ES20.RenderbufferTarget _target = default(OpenTK.Graphics.ES20.RenderbufferTarget); - System.Int32 _renderbuffer = default(System.Int32); - OpenTK.Graphics.ES20.GL.BindRenderbuffer(_target,_renderbuffer); -} -static unsafe void Test_BindRenderbuffer_30696() { - OpenTK.Graphics.ES20.RenderbufferTarget _target = default(OpenTK.Graphics.ES20.RenderbufferTarget); - System.UInt32 _renderbuffer = default(System.UInt32); - OpenTK.Graphics.ES20.GL.BindRenderbuffer(_target,_renderbuffer); -} -static unsafe void Test_BindTexture_30697() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.ES20.GL.BindTexture(_target,_texture); -} -static unsafe void Test_BindTexture_30698() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.ES20.GL.BindTexture(_target,_texture); -} -static unsafe void Test_BindTexture_30699() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.ES20.GL.BindTexture(_target,_texture); -} -static unsafe void Test_BindTexture_30700() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.ES20.GL.BindTexture(_target,_texture); -} -static unsafe void Test_BlendColor_30701() { - System.Single _red = default(System.Single); - System.Single _green = default(System.Single); - System.Single _blue = default(System.Single); - System.Single _alpha = default(System.Single); - OpenTK.Graphics.ES20.GL.BlendColor(_red,_green,_blue,_alpha); -} -static unsafe void Test_BlendEquation_30702() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.GL.BlendEquation(_mode); -} -static unsafe void Test_BlendEquation_30703() { - OpenTK.Graphics.ES20.BlendEquationMode _mode = default(OpenTK.Graphics.ES20.BlendEquationMode); - OpenTK.Graphics.ES20.GL.BlendEquation(_mode); -} -static unsafe void Test_BlendEquationSeparate_30704() { - OpenTK.Graphics.ES20.All _modeRGB = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _modeAlpha = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.GL.BlendEquationSeparate(_modeRGB,_modeAlpha); -} -static unsafe void Test_BlendEquationSeparate_30705() { - OpenTK.Graphics.ES20.BlendEquationMode _modeRGB = default(OpenTK.Graphics.ES20.BlendEquationMode); - OpenTK.Graphics.ES20.BlendEquationMode _modeAlpha = default(OpenTK.Graphics.ES20.BlendEquationMode); - OpenTK.Graphics.ES20.GL.BlendEquationSeparate(_modeRGB,_modeAlpha); -} -static unsafe void Test_BlendFunc_30706() { - OpenTK.Graphics.ES20.All _sfactor = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _dfactor = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.GL.BlendFunc(_sfactor,_dfactor); -} -static unsafe void Test_BlendFunc_30707() { - OpenTK.Graphics.ES20.BlendingFactorSrc _sfactor = default(OpenTK.Graphics.ES20.BlendingFactorSrc); - OpenTK.Graphics.ES20.BlendingFactorDest _dfactor = default(OpenTK.Graphics.ES20.BlendingFactorDest); - OpenTK.Graphics.ES20.GL.BlendFunc(_sfactor,_dfactor); -} -static unsafe void Test_BlendFuncSeparate_30708() { - OpenTK.Graphics.ES20.All _sfactorRGB = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _dfactorRGB = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _sfactorAlpha = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _dfactorAlpha = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.GL.BlendFuncSeparate(_sfactorRGB,_dfactorRGB,_sfactorAlpha,_dfactorAlpha); -} -static unsafe void Test_BlendFuncSeparate_30709() { - OpenTK.Graphics.ES20.BlendingFactorSrc _sfactorRGB = default(OpenTK.Graphics.ES20.BlendingFactorSrc); - OpenTK.Graphics.ES20.BlendingFactorDest _dfactorRGB = default(OpenTK.Graphics.ES20.BlendingFactorDest); - OpenTK.Graphics.ES20.BlendingFactorSrc _sfactorAlpha = default(OpenTK.Graphics.ES20.BlendingFactorSrc); - OpenTK.Graphics.ES20.BlendingFactorDest _dfactorAlpha = default(OpenTK.Graphics.ES20.BlendingFactorDest); - OpenTK.Graphics.ES20.GL.BlendFuncSeparate(_sfactorRGB,_dfactorRGB,_sfactorAlpha,_dfactorAlpha); -} -static unsafe void Test_BufferData_30710() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.IntPtr _size = default(System.IntPtr); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES20.All _usage = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.GL.BufferData(_target,_size,_data,_usage); -} -static unsafe void Test_BufferData_30711() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.IntPtr _size = default(System.IntPtr); - int[] _data = default(int[]); - OpenTK.Graphics.ES20.All _usage = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.GL.BufferData(_target,_size,_data,_usage); -} -static unsafe void Test_BufferData_30712() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.IntPtr _size = default(System.IntPtr); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES20.All _usage = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.GL.BufferData(_target,_size,_data,_usage); -} -static unsafe void Test_BufferData_30713() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.IntPtr _size = default(System.IntPtr); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES20.All _usage = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.GL.BufferData(_target,_size,_data,_usage); -} -static unsafe void Test_BufferData_30714() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.IntPtr _size = default(System.IntPtr); - int _data = default(int); - OpenTK.Graphics.ES20.All _usage = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.GL.BufferData(_target,_size,ref _data,_usage); -} -static unsafe void Test_BufferData_30715() { - OpenTK.Graphics.ES20.BufferTarget _target = default(OpenTK.Graphics.ES20.BufferTarget); - System.IntPtr _size = default(System.IntPtr); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES20.BufferUsage _usage = default(OpenTK.Graphics.ES20.BufferUsage); - OpenTK.Graphics.ES20.GL.BufferData(_target,_size,_data,_usage); -} -static unsafe void Test_BufferData_30716() { - OpenTK.Graphics.ES20.BufferTarget _target = default(OpenTK.Graphics.ES20.BufferTarget); - System.IntPtr _size = default(System.IntPtr); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES20.BufferUsageHint _usage = default(OpenTK.Graphics.ES20.BufferUsageHint); - OpenTK.Graphics.ES20.GL.BufferData(_target,_size,_data,_usage); -} -static unsafe void Test_BufferData_30717() { - OpenTK.Graphics.ES20.BufferTarget _target = default(OpenTK.Graphics.ES20.BufferTarget); - System.IntPtr _size = default(System.IntPtr); - int[] _data = default(int[]); - OpenTK.Graphics.ES20.BufferUsage _usage = default(OpenTK.Graphics.ES20.BufferUsage); - OpenTK.Graphics.ES20.GL.BufferData(_target,_size,_data,_usage); -} -static unsafe void Test_BufferData_30718() { - OpenTK.Graphics.ES20.BufferTarget _target = default(OpenTK.Graphics.ES20.BufferTarget); - System.IntPtr _size = default(System.IntPtr); - int[] _data = default(int[]); - OpenTK.Graphics.ES20.BufferUsageHint _usage = default(OpenTK.Graphics.ES20.BufferUsageHint); - OpenTK.Graphics.ES20.GL.BufferData(_target,_size,_data,_usage); -} -static unsafe void Test_BufferData_30719() { - OpenTK.Graphics.ES20.BufferTarget _target = default(OpenTK.Graphics.ES20.BufferTarget); - System.IntPtr _size = default(System.IntPtr); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES20.BufferUsage _usage = default(OpenTK.Graphics.ES20.BufferUsage); - OpenTK.Graphics.ES20.GL.BufferData(_target,_size,_data,_usage); -} -static unsafe void Test_BufferData_30720() { - OpenTK.Graphics.ES20.BufferTarget _target = default(OpenTK.Graphics.ES20.BufferTarget); - System.IntPtr _size = default(System.IntPtr); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES20.BufferUsageHint _usage = default(OpenTK.Graphics.ES20.BufferUsageHint); - OpenTK.Graphics.ES20.GL.BufferData(_target,_size,_data,_usage); -} -static unsafe void Test_BufferData_30721() { - OpenTK.Graphics.ES20.BufferTarget _target = default(OpenTK.Graphics.ES20.BufferTarget); - System.IntPtr _size = default(System.IntPtr); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES20.BufferUsage _usage = default(OpenTK.Graphics.ES20.BufferUsage); - OpenTK.Graphics.ES20.GL.BufferData(_target,_size,_data,_usage); -} -static unsafe void Test_BufferData_30722() { - OpenTK.Graphics.ES20.BufferTarget _target = default(OpenTK.Graphics.ES20.BufferTarget); - System.IntPtr _size = default(System.IntPtr); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES20.BufferUsageHint _usage = default(OpenTK.Graphics.ES20.BufferUsageHint); - OpenTK.Graphics.ES20.GL.BufferData(_target,_size,_data,_usage); -} -static unsafe void Test_BufferData_30723() { - OpenTK.Graphics.ES20.BufferTarget _target = default(OpenTK.Graphics.ES20.BufferTarget); - System.IntPtr _size = default(System.IntPtr); - int _data = default(int); - OpenTK.Graphics.ES20.BufferUsage _usage = default(OpenTK.Graphics.ES20.BufferUsage); - OpenTK.Graphics.ES20.GL.BufferData(_target,_size,ref _data,_usage); -} -static unsafe void Test_BufferData_30724() { - OpenTK.Graphics.ES20.BufferTarget _target = default(OpenTK.Graphics.ES20.BufferTarget); - System.IntPtr _size = default(System.IntPtr); - int _data = default(int); - OpenTK.Graphics.ES20.BufferUsageHint _usage = default(OpenTK.Graphics.ES20.BufferUsageHint); - OpenTK.Graphics.ES20.GL.BufferData(_target,_size,ref _data,_usage); -} -static unsafe void Test_BufferSubData_30725() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.BufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_BufferSubData_30726() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[] _data = default(int[]); - OpenTK.Graphics.ES20.GL.BufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_BufferSubData_30727() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES20.GL.BufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_BufferSubData_30728() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES20.GL.BufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_BufferSubData_30729() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int _data = default(int); - OpenTK.Graphics.ES20.GL.BufferSubData(_target,_offset,_size,ref _data); -} -static unsafe void Test_BufferSubData_30730() { - OpenTK.Graphics.ES20.BufferTarget _target = default(OpenTK.Graphics.ES20.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.BufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_BufferSubData_30731() { - OpenTK.Graphics.ES20.BufferTarget _target = default(OpenTK.Graphics.ES20.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[] _data = default(int[]); - OpenTK.Graphics.ES20.GL.BufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_BufferSubData_30732() { - OpenTK.Graphics.ES20.BufferTarget _target = default(OpenTK.Graphics.ES20.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES20.GL.BufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_BufferSubData_30733() { - OpenTK.Graphics.ES20.BufferTarget _target = default(OpenTK.Graphics.ES20.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES20.GL.BufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_BufferSubData_30734() { - OpenTK.Graphics.ES20.BufferTarget _target = default(OpenTK.Graphics.ES20.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int _data = default(int); - OpenTK.Graphics.ES20.GL.BufferSubData(_target,_offset,_size,ref _data); -} -static unsafe void Test_CheckFramebufferStatus_30735() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.FramebufferErrorCode r = OpenTK.Graphics.ES20.GL.CheckFramebufferStatus(_target); -} -static unsafe void Test_CheckFramebufferStatus_30736() { - OpenTK.Graphics.ES20.FramebufferTarget _target = default(OpenTK.Graphics.ES20.FramebufferTarget); - OpenTK.Graphics.ES20.FramebufferErrorCode r = OpenTK.Graphics.ES20.GL.CheckFramebufferStatus(_target); -} -static unsafe void Test_Clear_30737() { - OpenTK.Graphics.ES20.All _mask = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.GL.Clear(_mask); -} -static unsafe void Test_Clear_30738() { - OpenTK.Graphics.ES20.ClearBufferMask _mask = default(OpenTK.Graphics.ES20.ClearBufferMask); - OpenTK.Graphics.ES20.GL.Clear(_mask); -} -static unsafe void Test_ClearColor_30739() { - System.Single _red = default(System.Single); - System.Single _green = default(System.Single); - System.Single _blue = default(System.Single); - System.Single _alpha = default(System.Single); - OpenTK.Graphics.ES20.GL.ClearColor(_red,_green,_blue,_alpha); -} -static unsafe void Test_ClearDepth_30740() { - System.Single _d = default(System.Single); - OpenTK.Graphics.ES20.GL.ClearDepth(_d); -} -static unsafe void Test_ClearStencil_30741() { - System.Int32 _s = default(System.Int32); - OpenTK.Graphics.ES20.GL.ClearStencil(_s); -} -static unsafe void Test_ColorMask_30742() { - System.Boolean _red = default(System.Boolean); - System.Boolean _green = default(System.Boolean); - System.Boolean _blue = default(System.Boolean); - System.Boolean _alpha = default(System.Boolean); - OpenTK.Graphics.ES20.GL.ColorMask(_red,_green,_blue,_alpha); -} -static unsafe void Test_CompileShader_30743() { - System.Int32 _shader = default(System.Int32); - OpenTK.Graphics.ES20.GL.CompileShader(_shader); -} -static unsafe void Test_CompileShader_30744() { - System.UInt32 _shader = default(System.UInt32); - OpenTK.Graphics.ES20.GL.CompileShader(_shader); -} -static unsafe void Test_CompressedTexImage2D_30745() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_30746() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.ES20.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_30747() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES20.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_30748() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES20.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_30749() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.ES20.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,ref _data); -} -static unsafe void Test_CompressedTexImage2D_30750() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.PixelInternalFormat _internalformat = default(OpenTK.Graphics.ES20.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_30751() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.PixelInternalFormat _internalformat = default(OpenTK.Graphics.ES20.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.ES20.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_30752() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.PixelInternalFormat _internalformat = default(OpenTK.Graphics.ES20.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES20.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_30753() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.PixelInternalFormat _internalformat = default(OpenTK.Graphics.ES20.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES20.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_30754() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.PixelInternalFormat _internalformat = default(OpenTK.Graphics.ES20.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.ES20.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,ref _data); -} -static unsafe void Test_CompressedTexImage2D_30755() { - OpenTK.Graphics.ES20.TextureTarget2d _target = default(OpenTK.Graphics.ES20.TextureTarget2d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.CompressedInternalFormat _internalformat = default(OpenTK.Graphics.ES20.CompressedInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_30756() { - OpenTK.Graphics.ES20.TextureTarget2d _target = default(OpenTK.Graphics.ES20.TextureTarget2d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.CompressedInternalFormat _internalformat = default(OpenTK.Graphics.ES20.CompressedInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.ES20.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_30757() { - OpenTK.Graphics.ES20.TextureTarget2d _target = default(OpenTK.Graphics.ES20.TextureTarget2d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.CompressedInternalFormat _internalformat = default(OpenTK.Graphics.ES20.CompressedInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES20.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_30758() { - OpenTK.Graphics.ES20.TextureTarget2d _target = default(OpenTK.Graphics.ES20.TextureTarget2d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.CompressedInternalFormat _internalformat = default(OpenTK.Graphics.ES20.CompressedInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES20.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_30759() { - OpenTK.Graphics.ES20.TextureTarget2d _target = default(OpenTK.Graphics.ES20.TextureTarget2d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.CompressedInternalFormat _internalformat = default(OpenTK.Graphics.ES20.CompressedInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.ES20.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,ref _data); -} -static unsafe void Test_CompressedTexSubImage2D_30760() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_30761() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.ES20.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_30762() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES20.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_30763() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES20.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_30764() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.ES20.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,ref _data); -} -static unsafe void Test_CompressedTexSubImage2D_30765() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_30766() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.ES20.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_30767() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES20.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_30768() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES20.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_30769() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.ES20.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,ref _data); -} -static unsafe void Test_CompressedTexSubImage2D_30770() { - OpenTK.Graphics.ES20.TextureTarget2d _target = default(OpenTK.Graphics.ES20.TextureTarget2d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_30771() { - OpenTK.Graphics.ES20.TextureTarget2d _target = default(OpenTK.Graphics.ES20.TextureTarget2d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.ES20.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_30772() { - OpenTK.Graphics.ES20.TextureTarget2d _target = default(OpenTK.Graphics.ES20.TextureTarget2d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES20.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_30773() { - OpenTK.Graphics.ES20.TextureTarget2d _target = default(OpenTK.Graphics.ES20.TextureTarget2d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES20.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_30774() { - OpenTK.Graphics.ES20.TextureTarget2d _target = default(OpenTK.Graphics.ES20.TextureTarget2d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.ES20.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,ref _data); -} -static unsafe void Test_CopyTexImage2D_30775() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES20.GL.CopyTexImage2D(_target,_level,_internalformat,_x,_y,_width,_height,_border); -} -static unsafe void Test_CopyTexImage2D_30776() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.PixelInternalFormat _internalformat = default(OpenTK.Graphics.ES20.PixelInternalFormat); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES20.GL.CopyTexImage2D(_target,_level,_internalformat,_x,_y,_width,_height,_border); -} -static unsafe void Test_CopyTexImage2D_30777() { - OpenTK.Graphics.ES20.TextureTarget2d _target = default(OpenTK.Graphics.ES20.TextureTarget2d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.TextureCopyComponentCount _internalformat = default(OpenTK.Graphics.ES20.TextureCopyComponentCount); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES20.GL.CopyTexImage2D(_target,_level,_internalformat,_x,_y,_width,_height,_border); -} -static unsafe void Test_CopyTexSubImage2D_30778() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.GL.CopyTexSubImage2D(_target,_level,_xoffset,_yoffset,_x,_y,_width,_height); -} -static unsafe void Test_CopyTexSubImage2D_30779() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.GL.CopyTexSubImage2D(_target,_level,_xoffset,_yoffset,_x,_y,_width,_height); -} -static unsafe void Test_CopyTexSubImage2D_30780() { - OpenTK.Graphics.ES20.TextureTarget2d _target = default(OpenTK.Graphics.ES20.TextureTarget2d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.GL.CopyTexSubImage2D(_target,_level,_xoffset,_yoffset,_x,_y,_width,_height); -} -static unsafe void Test_CreateProgram_30781() { - System.Int32 r = OpenTK.Graphics.ES20.GL.CreateProgram(); -} -static unsafe void Test_CreateShader_30782() { - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.Int32 r = OpenTK.Graphics.ES20.GL.CreateShader(_type); -} -static unsafe void Test_CreateShader_30783() { - OpenTK.Graphics.ES20.ShaderType _type = default(OpenTK.Graphics.ES20.ShaderType); - System.Int32 r = OpenTK.Graphics.ES20.GL.CreateShader(_type); -} -static unsafe void Test_CullFace_30784() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.GL.CullFace(_mode); -} -static unsafe void Test_CullFace_30785() { - OpenTK.Graphics.ES20.CullFaceMode _mode = default(OpenTK.Graphics.ES20.CullFaceMode); - OpenTK.Graphics.ES20.GL.CullFace(_mode); -} -static unsafe void Test_DebugMessageCallback_30786() { - OpenTK.Graphics.ES20.DebugProc _callback = default(OpenTK.Graphics.ES20.DebugProc); - System.IntPtr _userParam = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_30787() { - OpenTK.Graphics.ES20.DebugProc _callback = default(OpenTK.Graphics.ES20.DebugProc); - int[] _userParam = default(int[]); - OpenTK.Graphics.ES20.GL.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_30788() { - OpenTK.Graphics.ES20.DebugProc _callback = default(OpenTK.Graphics.ES20.DebugProc); - int[,] _userParam = default(int[,]); - OpenTK.Graphics.ES20.GL.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_30789() { - OpenTK.Graphics.ES20.DebugProc _callback = default(OpenTK.Graphics.ES20.DebugProc); - int[,,] _userParam = default(int[,,]); - OpenTK.Graphics.ES20.GL.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_30790() { - OpenTK.Graphics.ES20.DebugProc _callback = default(OpenTK.Graphics.ES20.DebugProc); - int _userParam = default(int); - OpenTK.Graphics.ES20.GL.DebugMessageCallback(_callback,ref _userParam); -} -static unsafe void Test_DebugMessageControl_30791() { - OpenTK.Graphics.ES20.All _source = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _severity = default(OpenTK.Graphics.ES20.All); - System.Int32 _count = default(System.Int32); - System.Int32[] _ids = default(System.Int32[]); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES20.GL.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_30792() { - OpenTK.Graphics.ES20.All _source = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _severity = default(OpenTK.Graphics.ES20.All); - System.Int32 _count = default(System.Int32); - System.Int32 _ids = default(System.Int32); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES20.GL.DebugMessageControl(_source,_type,_severity,_count,ref _ids,_enabled); -} -static unsafe void Test_DebugMessageControl_30793() { - OpenTK.Graphics.ES20.All _source = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _severity = default(OpenTK.Graphics.ES20.All); - System.Int32 _count = default(System.Int32); - System.Int32* _ids = default(System.Int32*); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES20.GL.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_30794() { - OpenTK.Graphics.ES20.All _source = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _severity = default(OpenTK.Graphics.ES20.All); - System.Int32 _count = default(System.Int32); - System.UInt32[] _ids = default(System.UInt32[]); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES20.GL.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_30795() { - OpenTK.Graphics.ES20.All _source = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _severity = default(OpenTK.Graphics.ES20.All); - System.Int32 _count = default(System.Int32); - System.UInt32 _ids = default(System.UInt32); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES20.GL.DebugMessageControl(_source,_type,_severity,_count,ref _ids,_enabled); -} -static unsafe void Test_DebugMessageControl_30796() { - OpenTK.Graphics.ES20.All _source = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _severity = default(OpenTK.Graphics.ES20.All); - System.Int32 _count = default(System.Int32); - System.UInt32* _ids = default(System.UInt32*); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES20.GL.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_30797() { - OpenTK.Graphics.ES20.DebugSourceControl _source = default(OpenTK.Graphics.ES20.DebugSourceControl); - OpenTK.Graphics.ES20.DebugTypeControl _type = default(OpenTK.Graphics.ES20.DebugTypeControl); - OpenTK.Graphics.ES20.DebugSeverityControl _severity = default(OpenTK.Graphics.ES20.DebugSeverityControl); - System.Int32 _count = default(System.Int32); - System.Int32[] _ids = default(System.Int32[]); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES20.GL.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_30798() { - OpenTK.Graphics.ES20.DebugSourceControl _source = default(OpenTK.Graphics.ES20.DebugSourceControl); - OpenTK.Graphics.ES20.DebugTypeControl _type = default(OpenTK.Graphics.ES20.DebugTypeControl); - OpenTK.Graphics.ES20.DebugSeverityControl _severity = default(OpenTK.Graphics.ES20.DebugSeverityControl); - System.Int32 _count = default(System.Int32); - System.Int32 _ids = default(System.Int32); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES20.GL.DebugMessageControl(_source,_type,_severity,_count,ref _ids,_enabled); -} -static unsafe void Test_DebugMessageControl_30799() { - OpenTK.Graphics.ES20.DebugSourceControl _source = default(OpenTK.Graphics.ES20.DebugSourceControl); - OpenTK.Graphics.ES20.DebugTypeControl _type = default(OpenTK.Graphics.ES20.DebugTypeControl); - OpenTK.Graphics.ES20.DebugSeverityControl _severity = default(OpenTK.Graphics.ES20.DebugSeverityControl); - System.Int32 _count = default(System.Int32); - System.Int32* _ids = default(System.Int32*); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES20.GL.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_30800() { - OpenTK.Graphics.ES20.DebugSourceControl _source = default(OpenTK.Graphics.ES20.DebugSourceControl); - OpenTK.Graphics.ES20.DebugTypeControl _type = default(OpenTK.Graphics.ES20.DebugTypeControl); - OpenTK.Graphics.ES20.DebugSeverityControl _severity = default(OpenTK.Graphics.ES20.DebugSeverityControl); - System.Int32 _count = default(System.Int32); - System.UInt32[] _ids = default(System.UInt32[]); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES20.GL.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_30801() { - OpenTK.Graphics.ES20.DebugSourceControl _source = default(OpenTK.Graphics.ES20.DebugSourceControl); - OpenTK.Graphics.ES20.DebugTypeControl _type = default(OpenTK.Graphics.ES20.DebugTypeControl); - OpenTK.Graphics.ES20.DebugSeverityControl _severity = default(OpenTK.Graphics.ES20.DebugSeverityControl); - System.Int32 _count = default(System.Int32); - System.UInt32 _ids = default(System.UInt32); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES20.GL.DebugMessageControl(_source,_type,_severity,_count,ref _ids,_enabled); -} -static unsafe void Test_DebugMessageControl_30802() { - OpenTK.Graphics.ES20.DebugSourceControl _source = default(OpenTK.Graphics.ES20.DebugSourceControl); - OpenTK.Graphics.ES20.DebugTypeControl _type = default(OpenTK.Graphics.ES20.DebugTypeControl); - OpenTK.Graphics.ES20.DebugSeverityControl _severity = default(OpenTK.Graphics.ES20.DebugSeverityControl); - System.Int32 _count = default(System.Int32); - System.UInt32* _ids = default(System.UInt32*); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES20.GL.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageInsert_30803() { - OpenTK.Graphics.ES20.All _source = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES20.All _severity = default(OpenTK.Graphics.ES20.All); - System.Int32 _length = default(System.Int32); - System.String _buf = default(System.String); - OpenTK.Graphics.ES20.GL.DebugMessageInsert(_source,_type,_id,_severity,_length,_buf); -} -static unsafe void Test_DebugMessageInsert_30804() { - OpenTK.Graphics.ES20.All _source = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES20.All _severity = default(OpenTK.Graphics.ES20.All); - System.Int32 _length = default(System.Int32); - System.String _buf = default(System.String); - OpenTK.Graphics.ES20.GL.DebugMessageInsert(_source,_type,_id,_severity,_length,_buf); -} -static unsafe void Test_DebugMessageInsert_30805() { - OpenTK.Graphics.ES20.DebugSourceExternal _source = default(OpenTK.Graphics.ES20.DebugSourceExternal); - OpenTK.Graphics.ES20.DebugType _type = default(OpenTK.Graphics.ES20.DebugType); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES20.DebugSeverity _severity = default(OpenTK.Graphics.ES20.DebugSeverity); - System.Int32 _length = default(System.Int32); - System.String _buf = default(System.String); - OpenTK.Graphics.ES20.GL.DebugMessageInsert(_source,_type,_id,_severity,_length,_buf); -} -static unsafe void Test_DebugMessageInsert_30806() { - OpenTK.Graphics.ES20.DebugSourceExternal _source = default(OpenTK.Graphics.ES20.DebugSourceExternal); - OpenTK.Graphics.ES20.DebugType _type = default(OpenTK.Graphics.ES20.DebugType); - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES20.DebugSeverity _severity = default(OpenTK.Graphics.ES20.DebugSeverity); - System.Int32 _length = default(System.Int32); - System.String _buf = default(System.String); - OpenTK.Graphics.ES20.GL.DebugMessageInsert(_source,_type,_id,_severity,_length,_buf); -} -static unsafe void Test_DeleteBuffer_30807() { - System.Int32 _buffers = default(System.Int32); - OpenTK.Graphics.ES20.GL.DeleteBuffer(_buffers); -} -static unsafe void Test_DeleteBuffer_30808() { - System.UInt32 _buffers = default(System.UInt32); - OpenTK.Graphics.ES20.GL.DeleteBuffer(_buffers); -} -static unsafe void Test_DeleteBuffers_30809() { - System.Int32 _n = default(System.Int32); - System.Int32[] _buffers = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.DeleteBuffers(_n,_buffers); -} -static unsafe void Test_DeleteBuffers_30810() { - System.Int32 _n = default(System.Int32); - System.Int32 _buffers = default(System.Int32); - OpenTK.Graphics.ES20.GL.DeleteBuffers(_n,ref _buffers); -} -static unsafe void Test_DeleteBuffers_30811() { - System.Int32 _n = default(System.Int32); - System.Int32* _buffers = default(System.Int32*); - OpenTK.Graphics.ES20.GL.DeleteBuffers(_n,_buffers); -} -static unsafe void Test_DeleteBuffers_30812() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _buffers = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.DeleteBuffers(_n,_buffers); -} -static unsafe void Test_DeleteBuffers_30813() { - System.Int32 _n = default(System.Int32); - System.UInt32 _buffers = default(System.UInt32); - OpenTK.Graphics.ES20.GL.DeleteBuffers(_n,ref _buffers); -} -static unsafe void Test_DeleteBuffers_30814() { - System.Int32 _n = default(System.Int32); - System.UInt32* _buffers = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.DeleteBuffers(_n,_buffers); -} -static unsafe void Test_DeleteFramebuffer_30815() { - System.Int32 _framebuffers = default(System.Int32); - OpenTK.Graphics.ES20.GL.DeleteFramebuffer(_framebuffers); -} -static unsafe void Test_DeleteFramebuffer_30816() { - System.UInt32 _framebuffers = default(System.UInt32); - OpenTK.Graphics.ES20.GL.DeleteFramebuffer(_framebuffers); -} -static unsafe void Test_DeleteFramebuffers_30817() { - System.Int32 _n = default(System.Int32); - System.Int32[] _framebuffers = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.DeleteFramebuffers(_n,_framebuffers); -} -static unsafe void Test_DeleteFramebuffers_30818() { - System.Int32 _n = default(System.Int32); - System.Int32 _framebuffers = default(System.Int32); - OpenTK.Graphics.ES20.GL.DeleteFramebuffers(_n,ref _framebuffers); -} -static unsafe void Test_DeleteFramebuffers_30819() { - System.Int32 _n = default(System.Int32); - System.Int32* _framebuffers = default(System.Int32*); - OpenTK.Graphics.ES20.GL.DeleteFramebuffers(_n,_framebuffers); -} -static unsafe void Test_DeleteFramebuffers_30820() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _framebuffers = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.DeleteFramebuffers(_n,_framebuffers); -} -static unsafe void Test_DeleteFramebuffers_30821() { - System.Int32 _n = default(System.Int32); - System.UInt32 _framebuffers = default(System.UInt32); - OpenTK.Graphics.ES20.GL.DeleteFramebuffers(_n,ref _framebuffers); -} -static unsafe void Test_DeleteFramebuffers_30822() { - System.Int32 _n = default(System.Int32); - System.UInt32* _framebuffers = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.DeleteFramebuffers(_n,_framebuffers); -} -static unsafe void Test_DeleteProgram_30823() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES20.GL.DeleteProgram(_program); -} -static unsafe void Test_DeleteProgram_30824() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES20.GL.DeleteProgram(_program); -} -static unsafe void Test_DeleteRenderbuffer_30825() { - System.Int32 _renderbuffers = default(System.Int32); - OpenTK.Graphics.ES20.GL.DeleteRenderbuffer(_renderbuffers); -} -static unsafe void Test_DeleteRenderbuffer_30826() { - System.UInt32 _renderbuffers = default(System.UInt32); - OpenTK.Graphics.ES20.GL.DeleteRenderbuffer(_renderbuffers); -} -static unsafe void Test_DeleteRenderbuffers_30827() { - System.Int32 _n = default(System.Int32); - System.Int32[] _renderbuffers = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.DeleteRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_DeleteRenderbuffers_30828() { - System.Int32 _n = default(System.Int32); - System.Int32 _renderbuffers = default(System.Int32); - OpenTK.Graphics.ES20.GL.DeleteRenderbuffers(_n,ref _renderbuffers); -} -static unsafe void Test_DeleteRenderbuffers_30829() { - System.Int32 _n = default(System.Int32); - System.Int32* _renderbuffers = default(System.Int32*); - OpenTK.Graphics.ES20.GL.DeleteRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_DeleteRenderbuffers_30830() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _renderbuffers = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.DeleteRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_DeleteRenderbuffers_30831() { - System.Int32 _n = default(System.Int32); - System.UInt32 _renderbuffers = default(System.UInt32); - OpenTK.Graphics.ES20.GL.DeleteRenderbuffers(_n,ref _renderbuffers); -} -static unsafe void Test_DeleteRenderbuffers_30832() { - System.Int32 _n = default(System.Int32); - System.UInt32* _renderbuffers = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.DeleteRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_DeleteShader_30833() { - System.Int32 _shader = default(System.Int32); - OpenTK.Graphics.ES20.GL.DeleteShader(_shader); -} -static unsafe void Test_DeleteShader_30834() { - System.UInt32 _shader = default(System.UInt32); - OpenTK.Graphics.ES20.GL.DeleteShader(_shader); -} -static unsafe void Test_DeleteTexture_30835() { - System.Int32 _textures = default(System.Int32); - OpenTK.Graphics.ES20.GL.DeleteTexture(_textures); -} -static unsafe void Test_DeleteTexture_30836() { - System.UInt32 _textures = default(System.UInt32); - OpenTK.Graphics.ES20.GL.DeleteTexture(_textures); -} -static unsafe void Test_DeleteTextures_30837() { - System.Int32 _n = default(System.Int32); - System.Int32[] _textures = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.DeleteTextures(_n,_textures); -} -static unsafe void Test_DeleteTextures_30838() { - System.Int32 _n = default(System.Int32); - System.Int32 _textures = default(System.Int32); - OpenTK.Graphics.ES20.GL.DeleteTextures(_n,ref _textures); -} -static unsafe void Test_DeleteTextures_30839() { - System.Int32 _n = default(System.Int32); - System.Int32* _textures = default(System.Int32*); - OpenTK.Graphics.ES20.GL.DeleteTextures(_n,_textures); -} -static unsafe void Test_DeleteTextures_30840() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _textures = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.DeleteTextures(_n,_textures); -} -static unsafe void Test_DeleteTextures_30841() { - System.Int32 _n = default(System.Int32); - System.UInt32 _textures = default(System.UInt32); - OpenTK.Graphics.ES20.GL.DeleteTextures(_n,ref _textures); -} -static unsafe void Test_DeleteTextures_30842() { - System.Int32 _n = default(System.Int32); - System.UInt32* _textures = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.DeleteTextures(_n,_textures); -} -static unsafe void Test_DepthFunc_30843() { - OpenTK.Graphics.ES20.All _func = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.GL.DepthFunc(_func); -} -static unsafe void Test_DepthFunc_30844() { - OpenTK.Graphics.ES20.DepthFunction _func = default(OpenTK.Graphics.ES20.DepthFunction); - OpenTK.Graphics.ES20.GL.DepthFunc(_func); -} -static unsafe void Test_DepthMask_30845() { - System.Boolean _flag = default(System.Boolean); - OpenTK.Graphics.ES20.GL.DepthMask(_flag); -} -static unsafe void Test_DepthRange_30846() { - System.Single _n = default(System.Single); - System.Single _f = default(System.Single); - OpenTK.Graphics.ES20.GL.DepthRange(_n,_f); -} -static unsafe void Test_DetachShader_30847() { - System.Int32 _program = default(System.Int32); - System.Int32 _shader = default(System.Int32); - OpenTK.Graphics.ES20.GL.DetachShader(_program,_shader); -} -static unsafe void Test_DetachShader_30848() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _shader = default(System.UInt32); - OpenTK.Graphics.ES20.GL.DetachShader(_program,_shader); -} -static unsafe void Test_Disable_30849() { - OpenTK.Graphics.ES20.All _cap = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.GL.Disable(_cap); -} -static unsafe void Test_Disable_30850() { - OpenTK.Graphics.ES20.EnableCap _cap = default(OpenTK.Graphics.ES20.EnableCap); - OpenTK.Graphics.ES20.GL.Disable(_cap); -} -static unsafe void Test_DisableVertexAttribArray_30851() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES20.GL.DisableVertexAttribArray(_index); -} -static unsafe void Test_DisableVertexAttribArray_30852() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES20.GL.DisableVertexAttribArray(_index); -} -static unsafe void Test_DrawArrays_30853() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.GL.DrawArrays(_mode,_first,_count); -} -static unsafe void Test_DrawArrays_30854() { - OpenTK.Graphics.ES20.BeginMode _mode = default(OpenTK.Graphics.ES20.BeginMode); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.GL.DrawArrays(_mode,_first,_count); -} -static unsafe void Test_DrawArrays_30855() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.GL.DrawArrays(_mode,_first,_count); -} -static unsafe void Test_DrawElements_30856() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.IntPtr _indices = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_30857() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[] _indices = default(int[]); - OpenTK.Graphics.ES20.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_30858() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[,] _indices = default(int[,]); - OpenTK.Graphics.ES20.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_30859() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[,,] _indices = default(int[,,]); - OpenTK.Graphics.ES20.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_30860() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int _indices = default(int); - OpenTK.Graphics.ES20.GL.DrawElements(_mode,_count,_type,ref _indices); -} -static unsafe void Test_DrawElements_30861() { - OpenTK.Graphics.ES20.BeginMode _mode = default(OpenTK.Graphics.ES20.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.DrawElementsType _type = default(OpenTK.Graphics.ES20.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_30862() { - OpenTK.Graphics.ES20.BeginMode _mode = default(OpenTK.Graphics.ES20.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.DrawElementsType _type = default(OpenTK.Graphics.ES20.DrawElementsType); - int[] _indices = default(int[]); - OpenTK.Graphics.ES20.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_30863() { - OpenTK.Graphics.ES20.BeginMode _mode = default(OpenTK.Graphics.ES20.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.DrawElementsType _type = default(OpenTK.Graphics.ES20.DrawElementsType); - int[,] _indices = default(int[,]); - OpenTK.Graphics.ES20.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_30864() { - OpenTK.Graphics.ES20.BeginMode _mode = default(OpenTK.Graphics.ES20.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.DrawElementsType _type = default(OpenTK.Graphics.ES20.DrawElementsType); - int[,,] _indices = default(int[,,]); - OpenTK.Graphics.ES20.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_30865() { - OpenTK.Graphics.ES20.BeginMode _mode = default(OpenTK.Graphics.ES20.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.DrawElementsType _type = default(OpenTK.Graphics.ES20.DrawElementsType); - int _indices = default(int); - OpenTK.Graphics.ES20.GL.DrawElements(_mode,_count,_type,ref _indices); -} -static unsafe void Test_DrawElements_30866() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.DrawElementsType _type = default(OpenTK.Graphics.ES20.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_30867() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.DrawElementsType _type = default(OpenTK.Graphics.ES20.DrawElementsType); - int[] _indices = default(int[]); - OpenTK.Graphics.ES20.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_30868() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.DrawElementsType _type = default(OpenTK.Graphics.ES20.DrawElementsType); - int[,] _indices = default(int[,]); - OpenTK.Graphics.ES20.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_30869() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.DrawElementsType _type = default(OpenTK.Graphics.ES20.DrawElementsType); - int[,,] _indices = default(int[,,]); - OpenTK.Graphics.ES20.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_30870() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.DrawElementsType _type = default(OpenTK.Graphics.ES20.DrawElementsType); - int _indices = default(int); - OpenTK.Graphics.ES20.GL.DrawElements(_mode,_count,_type,ref _indices); -} -static unsafe void Test_Enable_30871() { - OpenTK.Graphics.ES20.All _cap = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.GL.Enable(_cap); -} -static unsafe void Test_Enable_30872() { - OpenTK.Graphics.ES20.EnableCap _cap = default(OpenTK.Graphics.ES20.EnableCap); - OpenTK.Graphics.ES20.GL.Enable(_cap); -} -static unsafe void Test_EnableVertexAttribArray_30873() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES20.GL.EnableVertexAttribArray(_index); -} -static unsafe void Test_EnableVertexAttribArray_30874() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES20.GL.EnableVertexAttribArray(_index); -} -static unsafe void Test_Finish_30875() { - OpenTK.Graphics.ES20.GL.Finish(); -} -static unsafe void Test_Flush_30876() { - OpenTK.Graphics.ES20.GL.Flush(); -} -static unsafe void Test_FramebufferRenderbuffer_30877() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _attachment = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _renderbuffertarget = default(OpenTK.Graphics.ES20.All); - System.Int32 _renderbuffer = default(System.Int32); - OpenTK.Graphics.ES20.GL.FramebufferRenderbuffer(_target,_attachment,_renderbuffertarget,_renderbuffer); -} -static unsafe void Test_FramebufferRenderbuffer_30878() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _attachment = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _renderbuffertarget = default(OpenTK.Graphics.ES20.All); - System.UInt32 _renderbuffer = default(System.UInt32); - OpenTK.Graphics.ES20.GL.FramebufferRenderbuffer(_target,_attachment,_renderbuffertarget,_renderbuffer); -} -static unsafe void Test_FramebufferRenderbuffer_30879() { - OpenTK.Graphics.ES20.FramebufferTarget _target = default(OpenTK.Graphics.ES20.FramebufferTarget); - OpenTK.Graphics.ES20.All _attachment = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.RenderbufferTarget _renderbuffertarget = default(OpenTK.Graphics.ES20.RenderbufferTarget); - System.Int32 _renderbuffer = default(System.Int32); - OpenTK.Graphics.ES20.GL.FramebufferRenderbuffer(_target,_attachment,_renderbuffertarget,_renderbuffer); -} -static unsafe void Test_FramebufferRenderbuffer_30880() { - OpenTK.Graphics.ES20.FramebufferTarget _target = default(OpenTK.Graphics.ES20.FramebufferTarget); - OpenTK.Graphics.ES20.All _attachment = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.RenderbufferTarget _renderbuffertarget = default(OpenTK.Graphics.ES20.RenderbufferTarget); - System.UInt32 _renderbuffer = default(System.UInt32); - OpenTK.Graphics.ES20.GL.FramebufferRenderbuffer(_target,_attachment,_renderbuffertarget,_renderbuffer); -} -static unsafe void Test_FramebufferRenderbuffer_30881() { - OpenTK.Graphics.ES20.FramebufferTarget _target = default(OpenTK.Graphics.ES20.FramebufferTarget); - OpenTK.Graphics.ES20.FramebufferSlot _attachment = default(OpenTK.Graphics.ES20.FramebufferSlot); - OpenTK.Graphics.ES20.RenderbufferTarget _renderbuffertarget = default(OpenTK.Graphics.ES20.RenderbufferTarget); - System.Int32 _renderbuffer = default(System.Int32); - OpenTK.Graphics.ES20.GL.FramebufferRenderbuffer(_target,_attachment,_renderbuffertarget,_renderbuffer); -} -static unsafe void Test_FramebufferRenderbuffer_30882() { - OpenTK.Graphics.ES20.FramebufferTarget _target = default(OpenTK.Graphics.ES20.FramebufferTarget); - OpenTK.Graphics.ES20.FramebufferSlot _attachment = default(OpenTK.Graphics.ES20.FramebufferSlot); - OpenTK.Graphics.ES20.RenderbufferTarget _renderbuffertarget = default(OpenTK.Graphics.ES20.RenderbufferTarget); - System.UInt32 _renderbuffer = default(System.UInt32); - OpenTK.Graphics.ES20.GL.FramebufferRenderbuffer(_target,_attachment,_renderbuffertarget,_renderbuffer); -} -static unsafe void Test_FramebufferTexture2D_30883() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _attachment = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _textarget = default(OpenTK.Graphics.ES20.All); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.GL.FramebufferTexture2D(_target,_attachment,_textarget,_texture,_level); -} -static unsafe void Test_FramebufferTexture2D_30884() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _attachment = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _textarget = default(OpenTK.Graphics.ES20.All); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.GL.FramebufferTexture2D(_target,_attachment,_textarget,_texture,_level); -} -static unsafe void Test_FramebufferTexture2D_30885() { - OpenTK.Graphics.ES20.FramebufferTarget _target = default(OpenTK.Graphics.ES20.FramebufferTarget); - OpenTK.Graphics.ES20.All _attachment = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.TextureTarget _textarget = default(OpenTK.Graphics.ES20.TextureTarget); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.GL.FramebufferTexture2D(_target,_attachment,_textarget,_texture,_level); -} -static unsafe void Test_FramebufferTexture2D_30886() { - OpenTK.Graphics.ES20.FramebufferTarget _target = default(OpenTK.Graphics.ES20.FramebufferTarget); - OpenTK.Graphics.ES20.All _attachment = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.TextureTarget _textarget = default(OpenTK.Graphics.ES20.TextureTarget); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.GL.FramebufferTexture2D(_target,_attachment,_textarget,_texture,_level); -} -static unsafe void Test_FramebufferTexture2D_30887() { - OpenTK.Graphics.ES20.FramebufferTarget _target = default(OpenTK.Graphics.ES20.FramebufferTarget); - OpenTK.Graphics.ES20.All _attachment = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.TextureTarget2d _textarget = default(OpenTK.Graphics.ES20.TextureTarget2d); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.GL.FramebufferTexture2D(_target,_attachment,_textarget,_texture,_level); -} -static unsafe void Test_FramebufferTexture2D_30888() { - OpenTK.Graphics.ES20.FramebufferTarget _target = default(OpenTK.Graphics.ES20.FramebufferTarget); - OpenTK.Graphics.ES20.All _attachment = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.TextureTarget2d _textarget = default(OpenTK.Graphics.ES20.TextureTarget2d); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.GL.FramebufferTexture2D(_target,_attachment,_textarget,_texture,_level); -} -static unsafe void Test_FramebufferTexture2D_30889() { - OpenTK.Graphics.ES20.FramebufferTarget _target = default(OpenTK.Graphics.ES20.FramebufferTarget); - OpenTK.Graphics.ES20.FramebufferSlot _attachment = default(OpenTK.Graphics.ES20.FramebufferSlot); - OpenTK.Graphics.ES20.TextureTarget _textarget = default(OpenTK.Graphics.ES20.TextureTarget); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.GL.FramebufferTexture2D(_target,_attachment,_textarget,_texture,_level); -} -static unsafe void Test_FramebufferTexture2D_30890() { - OpenTK.Graphics.ES20.FramebufferTarget _target = default(OpenTK.Graphics.ES20.FramebufferTarget); - OpenTK.Graphics.ES20.FramebufferSlot _attachment = default(OpenTK.Graphics.ES20.FramebufferSlot); - OpenTK.Graphics.ES20.TextureTarget _textarget = default(OpenTK.Graphics.ES20.TextureTarget); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.GL.FramebufferTexture2D(_target,_attachment,_textarget,_texture,_level); -} -static unsafe void Test_FrontFace_30891() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.GL.FrontFace(_mode); -} -static unsafe void Test_FrontFace_30892() { - OpenTK.Graphics.ES20.FrontFaceDirection _mode = default(OpenTK.Graphics.ES20.FrontFaceDirection); - OpenTK.Graphics.ES20.GL.FrontFace(_mode); -} -static unsafe void Test_GenBuffer_30893() { - System.Int32 r = OpenTK.Graphics.ES20.GL.GenBuffer(); -} -static unsafe void Test_GenBuffers_30894() { - System.Int32 _n = default(System.Int32); - System.Int32[] _buffers = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.GenBuffers(_n,_buffers); -} -static unsafe void Test_GenBuffers_30895() { - System.Int32 _n = default(System.Int32); - System.Int32 _buffers = default(System.Int32); - OpenTK.Graphics.ES20.GL.GenBuffers(_n,out _buffers); -} -static unsafe void Test_GenBuffers_30896() { - System.Int32 _n = default(System.Int32); - System.Int32* _buffers = default(System.Int32*); - OpenTK.Graphics.ES20.GL.GenBuffers(_n,_buffers); -} -static unsafe void Test_GenBuffers_30897() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _buffers = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.GenBuffers(_n,_buffers); -} -static unsafe void Test_GenBuffers_30898() { - System.Int32 _n = default(System.Int32); - System.UInt32 _buffers = default(System.UInt32); - OpenTK.Graphics.ES20.GL.GenBuffers(_n,out _buffers); -} -static unsafe void Test_GenBuffers_30899() { - System.Int32 _n = default(System.Int32); - System.UInt32* _buffers = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.GenBuffers(_n,_buffers); -} -static unsafe void Test_GenerateMipmap_30900() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.GL.GenerateMipmap(_target); -} -static unsafe void Test_GenerateMipmap_30901() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - OpenTK.Graphics.ES20.GL.GenerateMipmap(_target); -} -static unsafe void Test_GenFramebuffer_30902() { - System.Int32 r = OpenTK.Graphics.ES20.GL.GenFramebuffer(); -} -static unsafe void Test_GenFramebuffers_30903() { - System.Int32 _n = default(System.Int32); - System.Int32[] _framebuffers = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.GenFramebuffers(_n,_framebuffers); -} -static unsafe void Test_GenFramebuffers_30904() { - System.Int32 _n = default(System.Int32); - System.Int32 _framebuffers = default(System.Int32); - OpenTK.Graphics.ES20.GL.GenFramebuffers(_n,out _framebuffers); -} -static unsafe void Test_GenFramebuffers_30905() { - System.Int32 _n = default(System.Int32); - System.Int32* _framebuffers = default(System.Int32*); - OpenTK.Graphics.ES20.GL.GenFramebuffers(_n,_framebuffers); -} -static unsafe void Test_GenFramebuffers_30906() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _framebuffers = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.GenFramebuffers(_n,_framebuffers); -} -static unsafe void Test_GenFramebuffers_30907() { - System.Int32 _n = default(System.Int32); - System.UInt32 _framebuffers = default(System.UInt32); - OpenTK.Graphics.ES20.GL.GenFramebuffers(_n,out _framebuffers); -} -static unsafe void Test_GenFramebuffers_30908() { - System.Int32 _n = default(System.Int32); - System.UInt32* _framebuffers = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.GenFramebuffers(_n,_framebuffers); -} -static unsafe void Test_GenRenderbuffer_30909() { - System.Int32 r = OpenTK.Graphics.ES20.GL.GenRenderbuffer(); -} -static unsafe void Test_GenRenderbuffers_30910() { - System.Int32 _n = default(System.Int32); - System.Int32[] _renderbuffers = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.GenRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_GenRenderbuffers_30911() { - System.Int32 _n = default(System.Int32); - System.Int32 _renderbuffers = default(System.Int32); - OpenTK.Graphics.ES20.GL.GenRenderbuffers(_n,out _renderbuffers); -} -static unsafe void Test_GenRenderbuffers_30912() { - System.Int32 _n = default(System.Int32); - System.Int32* _renderbuffers = default(System.Int32*); - OpenTK.Graphics.ES20.GL.GenRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_GenRenderbuffers_30913() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _renderbuffers = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.GenRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_GenRenderbuffers_30914() { - System.Int32 _n = default(System.Int32); - System.UInt32 _renderbuffers = default(System.UInt32); - OpenTK.Graphics.ES20.GL.GenRenderbuffers(_n,out _renderbuffers); -} -static unsafe void Test_GenRenderbuffers_30915() { - System.Int32 _n = default(System.Int32); - System.UInt32* _renderbuffers = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.GenRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_GenTexture_30916() { - System.Int32 r = OpenTK.Graphics.ES20.GL.GenTexture(); -} -static unsafe void Test_GenTextures_30917() { - System.Int32 _n = default(System.Int32); - System.Int32[] _textures = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.GenTextures(_n,_textures); -} -static unsafe void Test_GenTextures_30918() { - System.Int32 _n = default(System.Int32); - System.Int32 _textures = default(System.Int32); - OpenTK.Graphics.ES20.GL.GenTextures(_n,out _textures); -} -static unsafe void Test_GenTextures_30919() { - System.Int32 _n = default(System.Int32); - System.Int32* _textures = default(System.Int32*); - OpenTK.Graphics.ES20.GL.GenTextures(_n,_textures); -} -static unsafe void Test_GenTextures_30920() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _textures = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.GenTextures(_n,_textures); -} -static unsafe void Test_GenTextures_30921() { - System.Int32 _n = default(System.Int32); - System.UInt32 _textures = default(System.UInt32); - OpenTK.Graphics.ES20.GL.GenTextures(_n,out _textures); -} -static unsafe void Test_GenTextures_30922() { - System.Int32 _n = default(System.Int32); - System.UInt32* _textures = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.GenTextures(_n,_textures); -} -static unsafe void Test_GetActiveAttrib_30923() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES20.ActiveAttribType _type = default(OpenTK.Graphics.ES20.ActiveAttribType); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetActiveAttrib(_program,_index,_bufSize,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetActiveAttrib_30924() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetActiveAttrib(_program,_index,_bufSize,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetActiveAttrib_30925() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.ES20.ActiveAttribType* _type = default(OpenTK.Graphics.ES20.ActiveAttribType*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetActiveAttrib(_program,_index,_bufSize,_length,_size,_type,_name); -} -static unsafe void Test_GetActiveAttrib_30926() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.ES20.All* _type = default(OpenTK.Graphics.ES20.All*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetActiveAttrib(_program,_index,_bufSize,_length,_size,_type,_name); -} -static unsafe void Test_GetActiveAttrib_30927() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES20.ActiveAttribType _type = default(OpenTK.Graphics.ES20.ActiveAttribType); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetActiveAttrib(_program,_index,_bufSize,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetActiveAttrib_30928() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetActiveAttrib(_program,_index,_bufSize,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetActiveAttrib_30929() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.ES20.ActiveAttribType* _type = default(OpenTK.Graphics.ES20.ActiveAttribType*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetActiveAttrib(_program,_index,_bufSize,_length,_size,_type,_name); -} -static unsafe void Test_GetActiveAttrib_30930() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.ES20.All* _type = default(OpenTK.Graphics.ES20.All*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetActiveAttrib(_program,_index,_bufSize,_length,_size,_type,_name); -} -static unsafe void Test_GetActiveUniform_30931() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES20.ActiveUniformType _type = default(OpenTK.Graphics.ES20.ActiveUniformType); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetActiveUniform(_program,_index,_bufSize,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetActiveUniform_30932() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetActiveUniform(_program,_index,_bufSize,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetActiveUniform_30933() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.ES20.ActiveUniformType* _type = default(OpenTK.Graphics.ES20.ActiveUniformType*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetActiveUniform(_program,_index,_bufSize,_length,_size,_type,_name); -} -static unsafe void Test_GetActiveUniform_30934() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.ES20.All* _type = default(OpenTK.Graphics.ES20.All*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetActiveUniform(_program,_index,_bufSize,_length,_size,_type,_name); -} -static unsafe void Test_GetActiveUniform_30935() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES20.ActiveUniformType _type = default(OpenTK.Graphics.ES20.ActiveUniformType); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetActiveUniform(_program,_index,_bufSize,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetActiveUniform_30936() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetActiveUniform(_program,_index,_bufSize,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetActiveUniform_30937() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.ES20.ActiveUniformType* _type = default(OpenTK.Graphics.ES20.ActiveUniformType*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetActiveUniform(_program,_index,_bufSize,_length,_size,_type,_name); -} -static unsafe void Test_GetActiveUniform_30938() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.ES20.All* _type = default(OpenTK.Graphics.ES20.All*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetActiveUniform(_program,_index,_bufSize,_length,_size,_type,_name); -} -static unsafe void Test_GetAttachedShaders_30939() { - System.Int32 _program = default(System.Int32); - System.Int32 _maxCount = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _shaders = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.GetAttachedShaders(_program,_maxCount,out _count,_shaders); -} -static unsafe void Test_GetAttachedShaders_30940() { - System.Int32 _program = default(System.Int32); - System.Int32 _maxCount = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _shaders = default(System.Int32); - OpenTK.Graphics.ES20.GL.GetAttachedShaders(_program,_maxCount,out _count,out _shaders); -} -static unsafe void Test_GetAttachedShaders_30941() { - System.Int32 _program = default(System.Int32); - System.Int32 _maxCount = default(System.Int32); - System.Int32* _count = default(System.Int32*); - System.Int32* _shaders = default(System.Int32*); - OpenTK.Graphics.ES20.GL.GetAttachedShaders(_program,_maxCount,_count,_shaders); -} -static unsafe void Test_GetAttachedShaders_30942() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _maxCount = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _shaders = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.GetAttachedShaders(_program,_maxCount,out _count,_shaders); -} -static unsafe void Test_GetAttachedShaders_30943() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _maxCount = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32 _shaders = default(System.UInt32); - OpenTK.Graphics.ES20.GL.GetAttachedShaders(_program,_maxCount,out _count,out _shaders); -} -static unsafe void Test_GetAttachedShaders_30944() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _maxCount = default(System.Int32); - System.Int32* _count = default(System.Int32*); - System.UInt32* _shaders = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.GetAttachedShaders(_program,_maxCount,_count,_shaders); -} -static unsafe void Test_GetAttribLocation_30945() { - System.Int32 _program = default(System.Int32); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.ES20.GL.GetAttribLocation(_program,_name); -} -static unsafe void Test_GetAttribLocation_30946() { - System.UInt32 _program = default(System.UInt32); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.ES20.GL.GetAttribLocation(_program,_name); -} -static unsafe void Test_GetBoolean_30947() { - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Boolean r = OpenTK.Graphics.ES20.GL.GetBoolean(_pname); -} -static unsafe void Test_GetBoolean_30948() { - OpenTK.Graphics.ES20.GetPName _pname = default(OpenTK.Graphics.ES20.GetPName); - System.Boolean r = OpenTK.Graphics.ES20.GL.GetBoolean(_pname); -} -static unsafe void Test_GetBoolean_30949() { - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Boolean[] _data = default(System.Boolean[]); - OpenTK.Graphics.ES20.GL.GetBoolean(_pname,_data); -} -static unsafe void Test_GetBoolean_30950() { - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Boolean _data = default(System.Boolean); - OpenTK.Graphics.ES20.GL.GetBoolean(_pname,out _data); -} -static unsafe void Test_GetBoolean_30951() { - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Boolean* _data = default(System.Boolean*); - OpenTK.Graphics.ES20.GL.GetBoolean(_pname,_data); -} -static unsafe void Test_GetBoolean_30952() { - OpenTK.Graphics.ES20.GetPName _pname = default(OpenTK.Graphics.ES20.GetPName); - System.Boolean[] _data = default(System.Boolean[]); - OpenTK.Graphics.ES20.GL.GetBoolean(_pname,_data); -} -static unsafe void Test_GetBoolean_30953() { - OpenTK.Graphics.ES20.GetPName _pname = default(OpenTK.Graphics.ES20.GetPName); - System.Boolean _data = default(System.Boolean); - OpenTK.Graphics.ES20.GL.GetBoolean(_pname,out _data); -} -static unsafe void Test_GetBoolean_30954() { - OpenTK.Graphics.ES20.GetPName _pname = default(OpenTK.Graphics.ES20.GetPName); - System.Boolean* _data = default(System.Boolean*); - OpenTK.Graphics.ES20.GL.GetBoolean(_pname,_data); -} -static unsafe void Test_GetBufferParameter_30955() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.GetBufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetBufferParameter_30956() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.GetBufferParameter(_target,_pname,out _params); -} -static unsafe void Test_GetBufferParameter_30957() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.GetBufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetBufferParameter_30958() { - OpenTK.Graphics.ES20.BufferTarget _target = default(OpenTK.Graphics.ES20.BufferTarget); - OpenTK.Graphics.ES20.BufferParameterName _pname = default(OpenTK.Graphics.ES20.BufferParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.GetBufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetBufferParameter_30959() { - OpenTK.Graphics.ES20.BufferTarget _target = default(OpenTK.Graphics.ES20.BufferTarget); - OpenTK.Graphics.ES20.BufferParameterName _pname = default(OpenTK.Graphics.ES20.BufferParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.GetBufferParameter(_target,_pname,out _params); -} -static unsafe void Test_GetBufferParameter_30960() { - OpenTK.Graphics.ES20.BufferTarget _target = default(OpenTK.Graphics.ES20.BufferTarget); - OpenTK.Graphics.ES20.BufferParameterName _pname = default(OpenTK.Graphics.ES20.BufferParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.GetBufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetDebugMessageLog_30961() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES20.All[] _sources = default(OpenTK.Graphics.ES20.All[]); - OpenTK.Graphics.ES20.All[] _types = default(OpenTK.Graphics.ES20.All[]); - System.Int32[] _ids = default(System.Int32[]); - OpenTK.Graphics.ES20.All[] _severities = default(OpenTK.Graphics.ES20.All[]); - System.Int32[] _lengths = default(System.Int32[]); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES20.GL.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_30962() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES20.All _sources = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _types = default(OpenTK.Graphics.ES20.All); - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.ES20.All _severities = default(OpenTK.Graphics.ES20.All); - System.Int32 _lengths = default(System.Int32); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES20.GL.GetDebugMessageLog(_count,_bufSize,out _sources,out _types,out _ids,out _severities,out _lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_30963() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES20.All* _sources = default(OpenTK.Graphics.ES20.All*); - OpenTK.Graphics.ES20.All* _types = default(OpenTK.Graphics.ES20.All*); - System.Int32* _ids = default(System.Int32*); - OpenTK.Graphics.ES20.All* _severities = default(OpenTK.Graphics.ES20.All*); - System.Int32* _lengths = default(System.Int32*); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES20.GL.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_30964() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES20.DebugSourceExternal[] _sources = default(OpenTK.Graphics.ES20.DebugSourceExternal[]); - OpenTK.Graphics.ES20.DebugType[] _types = default(OpenTK.Graphics.ES20.DebugType[]); - System.Int32[] _ids = default(System.Int32[]); - OpenTK.Graphics.ES20.DebugSeverity[] _severities = default(OpenTK.Graphics.ES20.DebugSeverity[]); - System.Int32[] _lengths = default(System.Int32[]); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES20.GL.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_30965() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES20.DebugSourceExternal _sources = default(OpenTK.Graphics.ES20.DebugSourceExternal); - OpenTK.Graphics.ES20.DebugType _types = default(OpenTK.Graphics.ES20.DebugType); - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.ES20.DebugSeverity _severities = default(OpenTK.Graphics.ES20.DebugSeverity); - System.Int32 _lengths = default(System.Int32); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES20.GL.GetDebugMessageLog(_count,_bufSize,out _sources,out _types,out _ids,out _severities,out _lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_30966() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES20.DebugSourceExternal* _sources = default(OpenTK.Graphics.ES20.DebugSourceExternal*); - OpenTK.Graphics.ES20.DebugType* _types = default(OpenTK.Graphics.ES20.DebugType*); - System.Int32* _ids = default(System.Int32*); - OpenTK.Graphics.ES20.DebugSeverity* _severities = default(OpenTK.Graphics.ES20.DebugSeverity*); - System.Int32* _lengths = default(System.Int32*); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES20.GL.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_30967() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES20.All[] _sources = default(OpenTK.Graphics.ES20.All[]); - OpenTK.Graphics.ES20.All[] _types = default(OpenTK.Graphics.ES20.All[]); - System.UInt32[] _ids = default(System.UInt32[]); - OpenTK.Graphics.ES20.All[] _severities = default(OpenTK.Graphics.ES20.All[]); - System.Int32[] _lengths = default(System.Int32[]); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES20.GL.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_30968() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES20.All _sources = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _types = default(OpenTK.Graphics.ES20.All); - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.ES20.All _severities = default(OpenTK.Graphics.ES20.All); - System.Int32 _lengths = default(System.Int32); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES20.GL.GetDebugMessageLog(_count,_bufSize,out _sources,out _types,out _ids,out _severities,out _lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_30969() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES20.All* _sources = default(OpenTK.Graphics.ES20.All*); - OpenTK.Graphics.ES20.All* _types = default(OpenTK.Graphics.ES20.All*); - System.UInt32* _ids = default(System.UInt32*); - OpenTK.Graphics.ES20.All* _severities = default(OpenTK.Graphics.ES20.All*); - System.Int32* _lengths = default(System.Int32*); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES20.GL.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_30970() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES20.DebugSourceExternal[] _sources = default(OpenTK.Graphics.ES20.DebugSourceExternal[]); - OpenTK.Graphics.ES20.DebugType[] _types = default(OpenTK.Graphics.ES20.DebugType[]); - System.UInt32[] _ids = default(System.UInt32[]); - OpenTK.Graphics.ES20.DebugSeverity[] _severities = default(OpenTK.Graphics.ES20.DebugSeverity[]); - System.Int32[] _lengths = default(System.Int32[]); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES20.GL.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_30971() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES20.DebugSourceExternal _sources = default(OpenTK.Graphics.ES20.DebugSourceExternal); - OpenTK.Graphics.ES20.DebugType _types = default(OpenTK.Graphics.ES20.DebugType); - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.ES20.DebugSeverity _severities = default(OpenTK.Graphics.ES20.DebugSeverity); - System.Int32 _lengths = default(System.Int32); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES20.GL.GetDebugMessageLog(_count,_bufSize,out _sources,out _types,out _ids,out _severities,out _lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_30972() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES20.DebugSourceExternal* _sources = default(OpenTK.Graphics.ES20.DebugSourceExternal*); - OpenTK.Graphics.ES20.DebugType* _types = default(OpenTK.Graphics.ES20.DebugType*); - System.UInt32* _ids = default(System.UInt32*); - OpenTK.Graphics.ES20.DebugSeverity* _severities = default(OpenTK.Graphics.ES20.DebugSeverity*); - System.Int32* _lengths = default(System.Int32*); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES20.GL.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetError_30973() { - OpenTK.Graphics.ES20.ErrorCode r = OpenTK.Graphics.ES20.GL.GetError(); -} -static unsafe void Test_GetFloat_30974() { - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Single r = OpenTK.Graphics.ES20.GL.GetFloat(_pname); -} -static unsafe void Test_GetFloat_30975() { - OpenTK.Graphics.ES20.GetPName _pname = default(OpenTK.Graphics.ES20.GetPName); - System.Single r = OpenTK.Graphics.ES20.GL.GetFloat(_pname); -} -static unsafe void Test_GetFloat_30976() { - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Single[] _data = default(System.Single[]); - OpenTK.Graphics.ES20.GL.GetFloat(_pname,_data); -} -static unsafe void Test_GetFloat_30977() { - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Single _data = default(System.Single); - OpenTK.Graphics.ES20.GL.GetFloat(_pname,out _data); -} -static unsafe void Test_GetFloat_30978() { - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Single* _data = default(System.Single*); - OpenTK.Graphics.ES20.GL.GetFloat(_pname,_data); -} -static unsafe void Test_GetFloat_30979() { - OpenTK.Graphics.ES20.GetPName _pname = default(OpenTK.Graphics.ES20.GetPName); - System.Single[] _data = default(System.Single[]); - OpenTK.Graphics.ES20.GL.GetFloat(_pname,_data); -} -static unsafe void Test_GetFloat_30980() { - OpenTK.Graphics.ES20.GetPName _pname = default(OpenTK.Graphics.ES20.GetPName); - System.Single _data = default(System.Single); - OpenTK.Graphics.ES20.GL.GetFloat(_pname,out _data); -} -static unsafe void Test_GetFloat_30981() { - OpenTK.Graphics.ES20.GetPName _pname = default(OpenTK.Graphics.ES20.GetPName); - System.Single* _data = default(System.Single*); - OpenTK.Graphics.ES20.GL.GetFloat(_pname,_data); -} -static unsafe void Test_GetFramebufferAttachmentParameter_30982() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _attachment = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.GetFramebufferAttachmentParameter(_target,_attachment,_pname,_params); -} -static unsafe void Test_GetFramebufferAttachmentParameter_30983() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _attachment = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.GetFramebufferAttachmentParameter(_target,_attachment,_pname,out _params); -} -static unsafe void Test_GetFramebufferAttachmentParameter_30984() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _attachment = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.GetFramebufferAttachmentParameter(_target,_attachment,_pname,_params); -} -static unsafe void Test_GetFramebufferAttachmentParameter_30985() { - OpenTK.Graphics.ES20.FramebufferTarget _target = default(OpenTK.Graphics.ES20.FramebufferTarget); - OpenTK.Graphics.ES20.All _attachment = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.FramebufferParameterName _pname = default(OpenTK.Graphics.ES20.FramebufferParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.GetFramebufferAttachmentParameter(_target,_attachment,_pname,_params); -} -static unsafe void Test_GetFramebufferAttachmentParameter_30986() { - OpenTK.Graphics.ES20.FramebufferTarget _target = default(OpenTK.Graphics.ES20.FramebufferTarget); - OpenTK.Graphics.ES20.All _attachment = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.FramebufferParameterName _pname = default(OpenTK.Graphics.ES20.FramebufferParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.GetFramebufferAttachmentParameter(_target,_attachment,_pname,out _params); -} -static unsafe void Test_GetFramebufferAttachmentParameter_30987() { - OpenTK.Graphics.ES20.FramebufferTarget _target = default(OpenTK.Graphics.ES20.FramebufferTarget); - OpenTK.Graphics.ES20.All _attachment = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.FramebufferParameterName _pname = default(OpenTK.Graphics.ES20.FramebufferParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.GetFramebufferAttachmentParameter(_target,_attachment,_pname,_params); -} -static unsafe void Test_GetFramebufferAttachmentParameter_30988() { - OpenTK.Graphics.ES20.FramebufferTarget _target = default(OpenTK.Graphics.ES20.FramebufferTarget); - OpenTK.Graphics.ES20.FramebufferSlot _attachment = default(OpenTK.Graphics.ES20.FramebufferSlot); - OpenTK.Graphics.ES20.FramebufferParameterName _pname = default(OpenTK.Graphics.ES20.FramebufferParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.GetFramebufferAttachmentParameter(_target,_attachment,_pname,_params); -} -static unsafe void Test_GetFramebufferAttachmentParameter_30989() { - OpenTK.Graphics.ES20.FramebufferTarget _target = default(OpenTK.Graphics.ES20.FramebufferTarget); - OpenTK.Graphics.ES20.FramebufferSlot _attachment = default(OpenTK.Graphics.ES20.FramebufferSlot); - OpenTK.Graphics.ES20.FramebufferParameterName _pname = default(OpenTK.Graphics.ES20.FramebufferParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.GetFramebufferAttachmentParameter(_target,_attachment,_pname,out _params); -} -static unsafe void Test_GetFramebufferAttachmentParameter_30990() { - OpenTK.Graphics.ES20.FramebufferTarget _target = default(OpenTK.Graphics.ES20.FramebufferTarget); - OpenTK.Graphics.ES20.FramebufferSlot _attachment = default(OpenTK.Graphics.ES20.FramebufferSlot); - OpenTK.Graphics.ES20.FramebufferParameterName _pname = default(OpenTK.Graphics.ES20.FramebufferParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.GetFramebufferAttachmentParameter(_target,_attachment,_pname,_params); -} -static unsafe void Test_GetInteger_30991() { - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 r = OpenTK.Graphics.ES20.GL.GetInteger(_pname); -} -static unsafe void Test_GetInteger_30992() { - OpenTK.Graphics.ES20.GetPName _pname = default(OpenTK.Graphics.ES20.GetPName); - System.Int32 r = OpenTK.Graphics.ES20.GL.GetInteger(_pname); -} -static unsafe void Test_GetInteger_30993() { - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32[] _data = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.GetInteger(_pname,_data); -} -static unsafe void Test_GetInteger_30994() { - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _data = default(System.Int32); - OpenTK.Graphics.ES20.GL.GetInteger(_pname,out _data); -} -static unsafe void Test_GetInteger_30995() { - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32* _data = default(System.Int32*); - OpenTK.Graphics.ES20.GL.GetInteger(_pname,_data); -} -static unsafe void Test_GetInteger_30996() { - OpenTK.Graphics.ES20.GetPName _pname = default(OpenTK.Graphics.ES20.GetPName); - System.Int32[] _data = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.GetInteger(_pname,_data); -} -static unsafe void Test_GetInteger_30997() { - OpenTK.Graphics.ES20.GetPName _pname = default(OpenTK.Graphics.ES20.GetPName); - System.Int32 _data = default(System.Int32); - OpenTK.Graphics.ES20.GL.GetInteger(_pname,out _data); -} -static unsafe void Test_GetInteger_30998() { - OpenTK.Graphics.ES20.GetPName _pname = default(OpenTK.Graphics.ES20.GetPName); - System.Int32* _data = default(System.Int32*); - OpenTK.Graphics.ES20.GL.GetInteger(_pname,_data); -} -static unsafe void Test_GetObjectLabel_30999() { - OpenTK.Graphics.ES20.All _identifier = default(OpenTK.Graphics.ES20.All); - System.Int32 _name = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_31000() { - OpenTK.Graphics.ES20.All _identifier = default(OpenTK.Graphics.ES20.All); - System.Int32 _name = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetObjectLabel(_identifier,_name,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectLabel_31001() { - OpenTK.Graphics.ES20.All _identifier = default(OpenTK.Graphics.ES20.All); - System.Int32 _name = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_31002() { - OpenTK.Graphics.ES20.All _identifier = default(OpenTK.Graphics.ES20.All); - System.UInt32 _name = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_31003() { - OpenTK.Graphics.ES20.All _identifier = default(OpenTK.Graphics.ES20.All); - System.UInt32 _name = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetObjectLabel(_identifier,_name,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectLabel_31004() { - OpenTK.Graphics.ES20.All _identifier = default(OpenTK.Graphics.ES20.All); - System.UInt32 _name = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_31005() { - OpenTK.Graphics.ES20.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.ES20.ObjectLabelIdentifier); - System.Int32 _name = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_31006() { - OpenTK.Graphics.ES20.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.ES20.ObjectLabelIdentifier); - System.Int32 _name = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetObjectLabel(_identifier,_name,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectLabel_31007() { - OpenTK.Graphics.ES20.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.ES20.ObjectLabelIdentifier); - System.Int32 _name = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_31008() { - OpenTK.Graphics.ES20.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.ES20.ObjectLabelIdentifier); - System.UInt32 _name = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_31009() { - OpenTK.Graphics.ES20.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.ES20.ObjectLabelIdentifier); - System.UInt32 _name = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetObjectLabel(_identifier,_name,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectLabel_31010() { - OpenTK.Graphics.ES20.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.ES20.ObjectLabelIdentifier); - System.UInt32 _name = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_31011() { - System.IntPtr _ptr = default(System.IntPtr); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_31012() { - System.IntPtr _ptr = default(System.IntPtr); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetObjectPtrLabel(_ptr,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectPtrLabel_31013() { - System.IntPtr _ptr = default(System.IntPtr); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_31014() { - int[] _ptr = default(int[]); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_31015() { - int[] _ptr = default(int[]); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetObjectPtrLabel(_ptr,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectPtrLabel_31016() { - int[] _ptr = default(int[]); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_31017() { - int[,] _ptr = default(int[,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_31018() { - int[,] _ptr = default(int[,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetObjectPtrLabel(_ptr,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectPtrLabel_31019() { - int[,] _ptr = default(int[,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_31020() { - int[,,] _ptr = default(int[,,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_31021() { - int[,,] _ptr = default(int[,,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetObjectPtrLabel(_ptr,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectPtrLabel_31022() { - int[,,] _ptr = default(int[,,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_31023() { - int _ptr = default(int); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetObjectPtrLabel(ref _ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_31024() { - int _ptr = default(int); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetObjectPtrLabel(ref _ptr,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectPtrLabel_31025() { - int _ptr = default(int); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetObjectPtrLabel(ref _ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetPointer_31026() { - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.IntPtr _params = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_31027() { - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - int[] _params = default(int[]); - OpenTK.Graphics.ES20.GL.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_31028() { - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - int[,] _params = default(int[,]); - OpenTK.Graphics.ES20.GL.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_31029() { - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - int[,,] _params = default(int[,,]); - OpenTK.Graphics.ES20.GL.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_31030() { - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - int _params = default(int); - OpenTK.Graphics.ES20.GL.GetPointer(_pname,ref _params); -} -static unsafe void Test_GetPointer_31031() { - OpenTK.Graphics.ES20.GetPointervPName _pname = default(OpenTK.Graphics.ES20.GetPointervPName); - System.IntPtr _params = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_31032() { - OpenTK.Graphics.ES20.GetPointervPName _pname = default(OpenTK.Graphics.ES20.GetPointervPName); - int[] _params = default(int[]); - OpenTK.Graphics.ES20.GL.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_31033() { - OpenTK.Graphics.ES20.GetPointervPName _pname = default(OpenTK.Graphics.ES20.GetPointervPName); - int[,] _params = default(int[,]); - OpenTK.Graphics.ES20.GL.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_31034() { - OpenTK.Graphics.ES20.GetPointervPName _pname = default(OpenTK.Graphics.ES20.GetPointervPName); - int[,,] _params = default(int[,,]); - OpenTK.Graphics.ES20.GL.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_31035() { - OpenTK.Graphics.ES20.GetPointervPName _pname = default(OpenTK.Graphics.ES20.GetPointervPName); - int _params = default(int); - OpenTK.Graphics.ES20.GL.GetPointer(_pname,ref _params); -} -static unsafe void Test_GetProgramInfoLog_31036() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetProgramInfoLog(_program,_bufSize,out _length,_infoLog); -} -static unsafe void Test_GetProgramInfoLog_31037() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetProgramInfoLog(_program,_bufSize,_length,_infoLog); -} -static unsafe void Test_GetProgramInfoLog_31038() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetProgramInfoLog(_program,_bufSize,out _length,_infoLog); -} -static unsafe void Test_GetProgramInfoLog_31039() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetProgramInfoLog(_program,_bufSize,_length,_infoLog); -} -static unsafe void Test_GetProgram_31040() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.GetProgram(_program,_pname,_params); -} -static unsafe void Test_GetProgram_31041() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.GetProgram(_program,_pname,out _params); -} -static unsafe void Test_GetProgram_31042() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.GetProgram(_program,_pname,_params); -} -static unsafe void Test_GetProgram_31043() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES20.GetProgramParameterName _pname = default(OpenTK.Graphics.ES20.GetProgramParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.GetProgram(_program,_pname,_params); -} -static unsafe void Test_GetProgram_31044() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES20.GetProgramParameterName _pname = default(OpenTK.Graphics.ES20.GetProgramParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.GetProgram(_program,_pname,out _params); -} -static unsafe void Test_GetProgram_31045() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES20.GetProgramParameterName _pname = default(OpenTK.Graphics.ES20.GetProgramParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.GetProgram(_program,_pname,_params); -} -static unsafe void Test_GetProgram_31046() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES20.ProgramParameter _pname = default(OpenTK.Graphics.ES20.ProgramParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.GetProgram(_program,_pname,_params); -} -static unsafe void Test_GetProgram_31047() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES20.ProgramParameter _pname = default(OpenTK.Graphics.ES20.ProgramParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.GetProgram(_program,_pname,out _params); -} -static unsafe void Test_GetProgram_31048() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES20.ProgramParameter _pname = default(OpenTK.Graphics.ES20.ProgramParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.GetProgram(_program,_pname,_params); -} -static unsafe void Test_GetProgram_31049() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.GetProgram(_program,_pname,_params); -} -static unsafe void Test_GetProgram_31050() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.GetProgram(_program,_pname,out _params); -} -static unsafe void Test_GetProgram_31051() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.GetProgram(_program,_pname,_params); -} -static unsafe void Test_GetProgram_31052() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES20.GetProgramParameterName _pname = default(OpenTK.Graphics.ES20.GetProgramParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.GetProgram(_program,_pname,_params); -} -static unsafe void Test_GetProgram_31053() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES20.GetProgramParameterName _pname = default(OpenTK.Graphics.ES20.GetProgramParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.GetProgram(_program,_pname,out _params); -} -static unsafe void Test_GetProgram_31054() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES20.GetProgramParameterName _pname = default(OpenTK.Graphics.ES20.GetProgramParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.GetProgram(_program,_pname,_params); -} -static unsafe void Test_GetProgram_31055() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES20.ProgramParameter _pname = default(OpenTK.Graphics.ES20.ProgramParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.GetProgram(_program,_pname,_params); -} -static unsafe void Test_GetProgram_31056() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES20.ProgramParameter _pname = default(OpenTK.Graphics.ES20.ProgramParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.GetProgram(_program,_pname,out _params); -} -static unsafe void Test_GetProgram_31057() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES20.ProgramParameter _pname = default(OpenTK.Graphics.ES20.ProgramParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.GetProgram(_program,_pname,_params); -} -static unsafe void Test_GetRenderbufferParameter_31058() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.GetRenderbufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetRenderbufferParameter_31059() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.GetRenderbufferParameter(_target,_pname,out _params); -} -static unsafe void Test_GetRenderbufferParameter_31060() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.GetRenderbufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetRenderbufferParameter_31061() { - OpenTK.Graphics.ES20.RenderbufferTarget _target = default(OpenTK.Graphics.ES20.RenderbufferTarget); - OpenTK.Graphics.ES20.RenderbufferParameterName _pname = default(OpenTK.Graphics.ES20.RenderbufferParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.GetRenderbufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetRenderbufferParameter_31062() { - OpenTK.Graphics.ES20.RenderbufferTarget _target = default(OpenTK.Graphics.ES20.RenderbufferTarget); - OpenTK.Graphics.ES20.RenderbufferParameterName _pname = default(OpenTK.Graphics.ES20.RenderbufferParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.GetRenderbufferParameter(_target,_pname,out _params); -} -static unsafe void Test_GetRenderbufferParameter_31063() { - OpenTK.Graphics.ES20.RenderbufferTarget _target = default(OpenTK.Graphics.ES20.RenderbufferTarget); - OpenTK.Graphics.ES20.RenderbufferParameterName _pname = default(OpenTK.Graphics.ES20.RenderbufferParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.GetRenderbufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetShaderInfoLog_31064() { - System.Int32 _shader = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetShaderInfoLog(_shader,_bufSize,out _length,_infoLog); -} -static unsafe void Test_GetShaderInfoLog_31065() { - System.Int32 _shader = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetShaderInfoLog(_shader,_bufSize,_length,_infoLog); -} -static unsafe void Test_GetShaderInfoLog_31066() { - System.UInt32 _shader = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetShaderInfoLog(_shader,_bufSize,out _length,_infoLog); -} -static unsafe void Test_GetShaderInfoLog_31067() { - System.UInt32 _shader = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetShaderInfoLog(_shader,_bufSize,_length,_infoLog); -} -static unsafe void Test_GetShader_31068() { - System.Int32 _shader = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.GetShader(_shader,_pname,_params); -} -static unsafe void Test_GetShader_31069() { - System.Int32 _shader = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.GetShader(_shader,_pname,out _params); -} -static unsafe void Test_GetShader_31070() { - System.Int32 _shader = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.GetShader(_shader,_pname,_params); -} -static unsafe void Test_GetShader_31071() { - System.Int32 _shader = default(System.Int32); - OpenTK.Graphics.ES20.ShaderParameter _pname = default(OpenTK.Graphics.ES20.ShaderParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.GetShader(_shader,_pname,_params); -} -static unsafe void Test_GetShader_31072() { - System.Int32 _shader = default(System.Int32); - OpenTK.Graphics.ES20.ShaderParameter _pname = default(OpenTK.Graphics.ES20.ShaderParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.GetShader(_shader,_pname,out _params); -} -static unsafe void Test_GetShader_31073() { - System.Int32 _shader = default(System.Int32); - OpenTK.Graphics.ES20.ShaderParameter _pname = default(OpenTK.Graphics.ES20.ShaderParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.GetShader(_shader,_pname,_params); -} -static unsafe void Test_GetShader_31074() { - System.UInt32 _shader = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.GetShader(_shader,_pname,_params); -} -static unsafe void Test_GetShader_31075() { - System.UInt32 _shader = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.GetShader(_shader,_pname,out _params); -} -static unsafe void Test_GetShader_31076() { - System.UInt32 _shader = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.GetShader(_shader,_pname,_params); -} -static unsafe void Test_GetShader_31077() { - System.UInt32 _shader = default(System.UInt32); - OpenTK.Graphics.ES20.ShaderParameter _pname = default(OpenTK.Graphics.ES20.ShaderParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.GetShader(_shader,_pname,_params); -} -static unsafe void Test_GetShader_31078() { - System.UInt32 _shader = default(System.UInt32); - OpenTK.Graphics.ES20.ShaderParameter _pname = default(OpenTK.Graphics.ES20.ShaderParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.GetShader(_shader,_pname,out _params); -} -static unsafe void Test_GetShader_31079() { - System.UInt32 _shader = default(System.UInt32); - OpenTK.Graphics.ES20.ShaderParameter _pname = default(OpenTK.Graphics.ES20.ShaderParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.GetShader(_shader,_pname,_params); -} -static unsafe void Test_GetShaderPrecisionFormat_31080() { - OpenTK.Graphics.ES20.All _shadertype = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _precisiontype = default(OpenTK.Graphics.ES20.All); - System.Int32[] _range = default(System.Int32[]); - System.Int32[] _precision = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.GetShaderPrecisionFormat(_shadertype,_precisiontype,_range,_precision); -} -static unsafe void Test_GetShaderPrecisionFormat_31081() { - OpenTK.Graphics.ES20.All _shadertype = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _precisiontype = default(OpenTK.Graphics.ES20.All); - System.Int32 _range = default(System.Int32); - System.Int32 _precision = default(System.Int32); - OpenTK.Graphics.ES20.GL.GetShaderPrecisionFormat(_shadertype,_precisiontype,out _range,out _precision); -} -static unsafe void Test_GetShaderPrecisionFormat_31082() { - OpenTK.Graphics.ES20.All _shadertype = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _precisiontype = default(OpenTK.Graphics.ES20.All); - System.Int32* _range = default(System.Int32*); - System.Int32* _precision = default(System.Int32*); - OpenTK.Graphics.ES20.GL.GetShaderPrecisionFormat(_shadertype,_precisiontype,_range,_precision); -} -static unsafe void Test_GetShaderPrecisionFormat_31083() { - OpenTK.Graphics.ES20.ShaderType _shadertype = default(OpenTK.Graphics.ES20.ShaderType); - OpenTK.Graphics.ES20.ShaderPrecision _precisiontype = default(OpenTK.Graphics.ES20.ShaderPrecision); - System.Int32[] _range = default(System.Int32[]); - System.Int32[] _precision = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.GetShaderPrecisionFormat(_shadertype,_precisiontype,_range,_precision); -} -static unsafe void Test_GetShaderPrecisionFormat_31084() { - OpenTK.Graphics.ES20.ShaderType _shadertype = default(OpenTK.Graphics.ES20.ShaderType); - OpenTK.Graphics.ES20.ShaderPrecision _precisiontype = default(OpenTK.Graphics.ES20.ShaderPrecision); - System.Int32 _range = default(System.Int32); - System.Int32 _precision = default(System.Int32); - OpenTK.Graphics.ES20.GL.GetShaderPrecisionFormat(_shadertype,_precisiontype,out _range,out _precision); -} -static unsafe void Test_GetShaderPrecisionFormat_31085() { - OpenTK.Graphics.ES20.ShaderType _shadertype = default(OpenTK.Graphics.ES20.ShaderType); - OpenTK.Graphics.ES20.ShaderPrecision _precisiontype = default(OpenTK.Graphics.ES20.ShaderPrecision); - System.Int32* _range = default(System.Int32*); - System.Int32* _precision = default(System.Int32*); - OpenTK.Graphics.ES20.GL.GetShaderPrecisionFormat(_shadertype,_precisiontype,_range,_precision); -} -static unsafe void Test_GetShaderSource_31086() { - System.Int32 _shader = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetShaderSource(_shader,_bufSize,out _length,_source); -} -static unsafe void Test_GetShaderSource_31087() { - System.Int32 _shader = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetShaderSource(_shader,_bufSize,_length,_source); -} -static unsafe void Test_GetShaderSource_31088() { - System.UInt32 _shader = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetShaderSource(_shader,_bufSize,out _length,_source); -} -static unsafe void Test_GetShaderSource_31089() { - System.UInt32 _shader = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.GetShaderSource(_shader,_bufSize,_length,_source); -} -static unsafe void Test_GetString_31090() { - OpenTK.Graphics.ES20.All _name = default(OpenTK.Graphics.ES20.All); - System.String r = OpenTK.Graphics.ES20.GL.GetString(_name); -} -static unsafe void Test_GetString_31091() { - OpenTK.Graphics.ES20.StringName _name = default(OpenTK.Graphics.ES20.StringName); - System.String r = OpenTK.Graphics.ES20.GL.GetString(_name); -} -static unsafe void Test_GetTexParameter_31092() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES20.GL.GetTexParameter(_target,_pname,_params); -} -static unsafe void Test_GetTexParameter_31093() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Single _params = default(System.Single); - OpenTK.Graphics.ES20.GL.GetTexParameter(_target,_pname,out _params); -} -static unsafe void Test_GetTexParameter_31094() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES20.GL.GetTexParameter(_target,_pname,_params); -} -static unsafe void Test_GetTexParameter_31095() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - OpenTK.Graphics.ES20.GetTextureParameter _pname = default(OpenTK.Graphics.ES20.GetTextureParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES20.GL.GetTexParameter(_target,_pname,_params); -} -static unsafe void Test_GetTexParameter_31096() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - OpenTK.Graphics.ES20.GetTextureParameter _pname = default(OpenTK.Graphics.ES20.GetTextureParameter); - System.Single _params = default(System.Single); - OpenTK.Graphics.ES20.GL.GetTexParameter(_target,_pname,out _params); -} -static unsafe void Test_GetTexParameter_31097() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - OpenTK.Graphics.ES20.GetTextureParameter _pname = default(OpenTK.Graphics.ES20.GetTextureParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES20.GL.GetTexParameter(_target,_pname,_params); -} -static unsafe void Test_GetTexParameter_31098() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - OpenTK.Graphics.ES20.GetTextureParameterName _pname = default(OpenTK.Graphics.ES20.GetTextureParameterName); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES20.GL.GetTexParameter(_target,_pname,_params); -} -static unsafe void Test_GetTexParameter_31099() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - OpenTK.Graphics.ES20.GetTextureParameterName _pname = default(OpenTK.Graphics.ES20.GetTextureParameterName); - System.Single _params = default(System.Single); - OpenTK.Graphics.ES20.GL.GetTexParameter(_target,_pname,out _params); -} -static unsafe void Test_GetTexParameter_31100() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - OpenTK.Graphics.ES20.GetTextureParameterName _pname = default(OpenTK.Graphics.ES20.GetTextureParameterName); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES20.GL.GetTexParameter(_target,_pname,_params); -} -static unsafe void Test_GetTexParameter_31101() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.GetTexParameter(_target,_pname,_params); -} -static unsafe void Test_GetTexParameter_31102() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.GetTexParameter(_target,_pname,out _params); -} -static unsafe void Test_GetTexParameter_31103() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.GetTexParameter(_target,_pname,_params); -} -static unsafe void Test_GetTexParameter_31104() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - OpenTK.Graphics.ES20.GetTextureParameter _pname = default(OpenTK.Graphics.ES20.GetTextureParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.GetTexParameter(_target,_pname,_params); -} -static unsafe void Test_GetTexParameter_31105() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - OpenTK.Graphics.ES20.GetTextureParameter _pname = default(OpenTK.Graphics.ES20.GetTextureParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.GetTexParameter(_target,_pname,out _params); -} -static unsafe void Test_GetTexParameter_31106() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - OpenTK.Graphics.ES20.GetTextureParameter _pname = default(OpenTK.Graphics.ES20.GetTextureParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.GetTexParameter(_target,_pname,_params); -} -static unsafe void Test_GetTexParameter_31107() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - OpenTK.Graphics.ES20.GetTextureParameterName _pname = default(OpenTK.Graphics.ES20.GetTextureParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.GetTexParameter(_target,_pname,_params); -} -static unsafe void Test_GetTexParameter_31108() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - OpenTK.Graphics.ES20.GetTextureParameterName _pname = default(OpenTK.Graphics.ES20.GetTextureParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.GetTexParameter(_target,_pname,out _params); -} -static unsafe void Test_GetTexParameter_31109() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - OpenTK.Graphics.ES20.GetTextureParameterName _pname = default(OpenTK.Graphics.ES20.GetTextureParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.GetTexParameter(_target,_pname,_params); -} -static unsafe void Test_GetUniform_31110() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES20.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_31111() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Single _params = default(System.Single); - OpenTK.Graphics.ES20.GL.GetUniform(_program,_location,out _params); -} -static unsafe void Test_GetUniform_31112() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES20.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_31113() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES20.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_31114() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Single _params = default(System.Single); - OpenTK.Graphics.ES20.GL.GetUniform(_program,_location,out _params); -} -static unsafe void Test_GetUniform_31115() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES20.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_31116() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_31117() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.GetUniform(_program,_location,out _params); -} -static unsafe void Test_GetUniform_31118() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_31119() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_31120() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.GetUniform(_program,_location,out _params); -} -static unsafe void Test_GetUniform_31121() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniformLocation_31122() { - System.Int32 _program = default(System.Int32); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.ES20.GL.GetUniformLocation(_program,_name); -} -static unsafe void Test_GetUniformLocation_31123() { - System.UInt32 _program = default(System.UInt32); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.ES20.GL.GetUniformLocation(_program,_name); -} -static unsafe void Test_GetVertexAttrib_31124() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES20.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_31125() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Single _params = default(System.Single); - OpenTK.Graphics.ES20.GL.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_31126() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES20.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_31127() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES20.VertexAttribParameter _pname = default(OpenTK.Graphics.ES20.VertexAttribParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES20.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_31128() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES20.VertexAttribParameter _pname = default(OpenTK.Graphics.ES20.VertexAttribParameter); - System.Single _params = default(System.Single); - OpenTK.Graphics.ES20.GL.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_31129() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES20.VertexAttribParameter _pname = default(OpenTK.Graphics.ES20.VertexAttribParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES20.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_31130() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES20.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_31131() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Single _params = default(System.Single); - OpenTK.Graphics.ES20.GL.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_31132() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES20.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_31133() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES20.VertexAttribParameter _pname = default(OpenTK.Graphics.ES20.VertexAttribParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES20.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_31134() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES20.VertexAttribParameter _pname = default(OpenTK.Graphics.ES20.VertexAttribParameter); - System.Single _params = default(System.Single); - OpenTK.Graphics.ES20.GL.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_31135() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES20.VertexAttribParameter _pname = default(OpenTK.Graphics.ES20.VertexAttribParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES20.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_31136() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_31137() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_31138() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_31139() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES20.VertexAttribParameter _pname = default(OpenTK.Graphics.ES20.VertexAttribParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_31140() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES20.VertexAttribParameter _pname = default(OpenTK.Graphics.ES20.VertexAttribParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_31141() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES20.VertexAttribParameter _pname = default(OpenTK.Graphics.ES20.VertexAttribParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_31142() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_31143() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_31144() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_31145() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES20.VertexAttribParameter _pname = default(OpenTK.Graphics.ES20.VertexAttribParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_31146() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES20.VertexAttribParameter _pname = default(OpenTK.Graphics.ES20.VertexAttribParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_31147() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES20.VertexAttribParameter _pname = default(OpenTK.Graphics.ES20.VertexAttribParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribPointer_31148() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_31149() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - int[] _pointer = default(int[]); - OpenTK.Graphics.ES20.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_31150() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.ES20.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_31151() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.ES20.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_31152() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - int _pointer = default(int); - OpenTK.Graphics.ES20.GL.GetVertexAttribPointer(_index,_pname,ref _pointer); -} -static unsafe void Test_GetVertexAttribPointer_31153() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES20.VertexAttribPointerParameter _pname = default(OpenTK.Graphics.ES20.VertexAttribPointerParameter); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_31154() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES20.VertexAttribPointerParameter _pname = default(OpenTK.Graphics.ES20.VertexAttribPointerParameter); - int[] _pointer = default(int[]); - OpenTK.Graphics.ES20.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_31155() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES20.VertexAttribPointerParameter _pname = default(OpenTK.Graphics.ES20.VertexAttribPointerParameter); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.ES20.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_31156() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES20.VertexAttribPointerParameter _pname = default(OpenTK.Graphics.ES20.VertexAttribPointerParameter); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.ES20.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_31157() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES20.VertexAttribPointerParameter _pname = default(OpenTK.Graphics.ES20.VertexAttribPointerParameter); - int _pointer = default(int); - OpenTK.Graphics.ES20.GL.GetVertexAttribPointer(_index,_pname,ref _pointer); -} -static unsafe void Test_GetVertexAttribPointer_31158() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_31159() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - int[] _pointer = default(int[]); - OpenTK.Graphics.ES20.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_31160() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.ES20.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_31161() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.ES20.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_31162() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - int _pointer = default(int); - OpenTK.Graphics.ES20.GL.GetVertexAttribPointer(_index,_pname,ref _pointer); -} -static unsafe void Test_GetVertexAttribPointer_31163() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES20.VertexAttribPointerParameter _pname = default(OpenTK.Graphics.ES20.VertexAttribPointerParameter); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_31164() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES20.VertexAttribPointerParameter _pname = default(OpenTK.Graphics.ES20.VertexAttribPointerParameter); - int[] _pointer = default(int[]); - OpenTK.Graphics.ES20.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_31165() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES20.VertexAttribPointerParameter _pname = default(OpenTK.Graphics.ES20.VertexAttribPointerParameter); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.ES20.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_31166() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES20.VertexAttribPointerParameter _pname = default(OpenTK.Graphics.ES20.VertexAttribPointerParameter); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.ES20.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_31167() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES20.VertexAttribPointerParameter _pname = default(OpenTK.Graphics.ES20.VertexAttribPointerParameter); - int _pointer = default(int); - OpenTK.Graphics.ES20.GL.GetVertexAttribPointer(_index,_pname,ref _pointer); -} -static unsafe void Test_Hint_31168() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.GL.Hint(_target,_mode); -} -static unsafe void Test_Hint_31169() { - OpenTK.Graphics.ES20.HintTarget _target = default(OpenTK.Graphics.ES20.HintTarget); - OpenTK.Graphics.ES20.HintMode _mode = default(OpenTK.Graphics.ES20.HintMode); - OpenTK.Graphics.ES20.GL.Hint(_target,_mode); -} -static unsafe void Test_IsBuffer_31170() { - System.Int32 _buffer = default(System.Int32); - System.Boolean r = OpenTK.Graphics.ES20.GL.IsBuffer(_buffer); -} -static unsafe void Test_IsBuffer_31171() { - System.UInt32 _buffer = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.ES20.GL.IsBuffer(_buffer); -} -static unsafe void Test_IsEnabled_31172() { - OpenTK.Graphics.ES20.All _cap = default(OpenTK.Graphics.ES20.All); - System.Boolean r = OpenTK.Graphics.ES20.GL.IsEnabled(_cap); -} -static unsafe void Test_IsEnabled_31173() { - OpenTK.Graphics.ES20.EnableCap _cap = default(OpenTK.Graphics.ES20.EnableCap); - System.Boolean r = OpenTK.Graphics.ES20.GL.IsEnabled(_cap); -} -static unsafe void Test_IsFramebuffer_31174() { - System.Int32 _framebuffer = default(System.Int32); - System.Boolean r = OpenTK.Graphics.ES20.GL.IsFramebuffer(_framebuffer); -} -static unsafe void Test_IsFramebuffer_31175() { - System.UInt32 _framebuffer = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.ES20.GL.IsFramebuffer(_framebuffer); -} -static unsafe void Test_IsProgram_31176() { - System.Int32 _program = default(System.Int32); - System.Boolean r = OpenTK.Graphics.ES20.GL.IsProgram(_program); -} -static unsafe void Test_IsProgram_31177() { - System.UInt32 _program = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.ES20.GL.IsProgram(_program); -} -static unsafe void Test_IsRenderbuffer_31178() { - System.Int32 _renderbuffer = default(System.Int32); - System.Boolean r = OpenTK.Graphics.ES20.GL.IsRenderbuffer(_renderbuffer); -} -static unsafe void Test_IsRenderbuffer_31179() { - System.UInt32 _renderbuffer = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.ES20.GL.IsRenderbuffer(_renderbuffer); -} -static unsafe void Test_IsShader_31180() { - System.Int32 _shader = default(System.Int32); - System.Boolean r = OpenTK.Graphics.ES20.GL.IsShader(_shader); -} -static unsafe void Test_IsShader_31181() { - System.UInt32 _shader = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.ES20.GL.IsShader(_shader); -} -static unsafe void Test_IsTexture_31182() { - System.Int32 _texture = default(System.Int32); - System.Boolean r = OpenTK.Graphics.ES20.GL.IsTexture(_texture); -} -static unsafe void Test_IsTexture_31183() { - System.UInt32 _texture = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.ES20.GL.IsTexture(_texture); -} -static unsafe void Test_LineWidth_31184() { - System.Single _width = default(System.Single); - OpenTK.Graphics.ES20.GL.LineWidth(_width); -} -static unsafe void Test_LinkProgram_31185() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES20.GL.LinkProgram(_program); -} -static unsafe void Test_LinkProgram_31186() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES20.GL.LinkProgram(_program); -} -static unsafe void Test_ObjectLabel_31187() { - OpenTK.Graphics.ES20.All _identifier = default(OpenTK.Graphics.ES20.All); - System.Int32 _name = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.ES20.GL.ObjectLabel(_identifier,_name,_length,_label); -} -static unsafe void Test_ObjectLabel_31188() { - OpenTK.Graphics.ES20.All _identifier = default(OpenTK.Graphics.ES20.All); - System.UInt32 _name = default(System.UInt32); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.ES20.GL.ObjectLabel(_identifier,_name,_length,_label); -} -static unsafe void Test_ObjectLabel_31189() { - OpenTK.Graphics.ES20.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.ES20.ObjectLabelIdentifier); - System.Int32 _name = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.ES20.GL.ObjectLabel(_identifier,_name,_length,_label); -} -static unsafe void Test_ObjectLabel_31190() { - OpenTK.Graphics.ES20.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.ES20.ObjectLabelIdentifier); - System.UInt32 _name = default(System.UInt32); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.ES20.GL.ObjectLabel(_identifier,_name,_length,_label); -} -static unsafe void Test_ObjectPtrLabel_31191() { - System.IntPtr _ptr = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.ES20.GL.ObjectPtrLabel(_ptr,_length,_label); -} -static unsafe void Test_ObjectPtrLabel_31192() { - int[] _ptr = default(int[]); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.ES20.GL.ObjectPtrLabel(_ptr,_length,_label); -} -static unsafe void Test_ObjectPtrLabel_31193() { - int[,] _ptr = default(int[,]); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.ES20.GL.ObjectPtrLabel(_ptr,_length,_label); -} -static unsafe void Test_ObjectPtrLabel_31194() { - int[,,] _ptr = default(int[,,]); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.ES20.GL.ObjectPtrLabel(_ptr,_length,_label); -} -static unsafe void Test_ObjectPtrLabel_31195() { - int _ptr = default(int); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.ES20.GL.ObjectPtrLabel(ref _ptr,_length,_label); -} -static unsafe void Test_PixelStore_31196() { - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES20.GL.PixelStore(_pname,_param); -} -static unsafe void Test_PixelStore_31197() { - OpenTK.Graphics.ES20.PixelStoreParameter _pname = default(OpenTK.Graphics.ES20.PixelStoreParameter); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES20.GL.PixelStore(_pname,_param); -} -static unsafe void Test_PolygonOffset_31198() { - System.Single _factor = default(System.Single); - System.Single _units = default(System.Single); - OpenTK.Graphics.ES20.GL.PolygonOffset(_factor,_units); -} -static unsafe void Test_PopDebugGroup_31199() { - OpenTK.Graphics.ES20.GL.PopDebugGroup(); -} -static unsafe void Test_PushDebugGroup_31200() { - OpenTK.Graphics.ES20.All _source = default(OpenTK.Graphics.ES20.All); - System.Int32 _id = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.String _message = default(System.String); - OpenTK.Graphics.ES20.GL.PushDebugGroup(_source,_id,_length,_message); -} -static unsafe void Test_PushDebugGroup_31201() { - OpenTK.Graphics.ES20.All _source = default(OpenTK.Graphics.ES20.All); - System.UInt32 _id = default(System.UInt32); - System.Int32 _length = default(System.Int32); - System.String _message = default(System.String); - OpenTK.Graphics.ES20.GL.PushDebugGroup(_source,_id,_length,_message); -} -static unsafe void Test_ReadPixels_31202() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.ReadPixels(_x,_y,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_ReadPixels_31203() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[] _pixels = default(int[]); - OpenTK.Graphics.ES20.GL.ReadPixels(_x,_y,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_ReadPixels_31204() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.ES20.GL.ReadPixels(_x,_y,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_ReadPixels_31205() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.ES20.GL.ReadPixels(_x,_y,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_ReadPixels_31206() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int _pixels = default(int); - OpenTK.Graphics.ES20.GL.ReadPixels(_x,_y,_width,_height,_format,_type,ref _pixels); -} -static unsafe void Test_ReadPixels_31207() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - OpenTK.Graphics.ES20.PixelType _type = default(OpenTK.Graphics.ES20.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.ReadPixels(_x,_y,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_ReadPixels_31208() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - OpenTK.Graphics.ES20.PixelType _type = default(OpenTK.Graphics.ES20.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.ES20.GL.ReadPixels(_x,_y,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_ReadPixels_31209() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - OpenTK.Graphics.ES20.PixelType _type = default(OpenTK.Graphics.ES20.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.ES20.GL.ReadPixels(_x,_y,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_ReadPixels_31210() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - OpenTK.Graphics.ES20.PixelType _type = default(OpenTK.Graphics.ES20.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.ES20.GL.ReadPixels(_x,_y,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_ReadPixels_31211() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - OpenTK.Graphics.ES20.PixelType _type = default(OpenTK.Graphics.ES20.PixelType); - int _pixels = default(int); - OpenTK.Graphics.ES20.GL.ReadPixels(_x,_y,_width,_height,_format,_type,ref _pixels); -} -static unsafe void Test_ReleaseShaderCompiler_31212() { - OpenTK.Graphics.ES20.GL.ReleaseShaderCompiler(); -} -static unsafe void Test_RenderbufferStorage_31213() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.GL.RenderbufferStorage(_target,_internalformat,_width,_height); -} -static unsafe void Test_RenderbufferStorage_31214() { - OpenTK.Graphics.ES20.RenderbufferTarget _target = default(OpenTK.Graphics.ES20.RenderbufferTarget); - OpenTK.Graphics.ES20.RenderbufferInternalFormat _internalformat = default(OpenTK.Graphics.ES20.RenderbufferInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.GL.RenderbufferStorage(_target,_internalformat,_width,_height); -} -static unsafe void Test_SampleCoverage_31215() { - System.Single _value = default(System.Single); - System.Boolean _invert = default(System.Boolean); - OpenTK.Graphics.ES20.GL.SampleCoverage(_value,_invert); -} -static unsafe void Test_Scissor_31216() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.GL.Scissor(_x,_y,_width,_height); -} -static unsafe void Test_ShaderBinary_31217() { - System.Int32 _count = default(System.Int32); - System.Int32[] _shaders = default(System.Int32[]); - OpenTK.Graphics.ES20.All _binaryformat = default(OpenTK.Graphics.ES20.All); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31218() { - System.Int32 _count = default(System.Int32); - System.Int32[] _shaders = default(System.Int32[]); - OpenTK.Graphics.ES20.All _binaryformat = default(OpenTK.Graphics.ES20.All); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31219() { - System.Int32 _count = default(System.Int32); - System.Int32[] _shaders = default(System.Int32[]); - OpenTK.Graphics.ES20.All _binaryformat = default(OpenTK.Graphics.ES20.All); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31220() { - System.Int32 _count = default(System.Int32); - System.Int32[] _shaders = default(System.Int32[]); - OpenTK.Graphics.ES20.All _binaryformat = default(OpenTK.Graphics.ES20.All); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31221() { - System.Int32 _count = default(System.Int32); - System.Int32[] _shaders = default(System.Int32[]); - OpenTK.Graphics.ES20.All _binaryformat = default(OpenTK.Graphics.ES20.All); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,_shaders,_binaryformat,ref _binary,_length); -} -static unsafe void Test_ShaderBinary_31222() { - System.Int32 _count = default(System.Int32); - System.Int32[] _shaders = default(System.Int32[]); - OpenTK.Graphics.ES20.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES20.ShaderBinaryFormat); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31223() { - System.Int32 _count = default(System.Int32); - System.Int32[] _shaders = default(System.Int32[]); - OpenTK.Graphics.ES20.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES20.ShaderBinaryFormat); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31224() { - System.Int32 _count = default(System.Int32); - System.Int32[] _shaders = default(System.Int32[]); - OpenTK.Graphics.ES20.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES20.ShaderBinaryFormat); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31225() { - System.Int32 _count = default(System.Int32); - System.Int32[] _shaders = default(System.Int32[]); - OpenTK.Graphics.ES20.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES20.ShaderBinaryFormat); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31226() { - System.Int32 _count = default(System.Int32); - System.Int32[] _shaders = default(System.Int32[]); - OpenTK.Graphics.ES20.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES20.ShaderBinaryFormat); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,_shaders,_binaryformat,ref _binary,_length); -} -static unsafe void Test_ShaderBinary_31227() { - System.Int32 _count = default(System.Int32); - System.Int32 _shaders = default(System.Int32); - OpenTK.Graphics.ES20.All _binaryformat = default(OpenTK.Graphics.ES20.All); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31228() { - System.Int32 _count = default(System.Int32); - System.Int32 _shaders = default(System.Int32); - OpenTK.Graphics.ES20.All _binaryformat = default(OpenTK.Graphics.ES20.All); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31229() { - System.Int32 _count = default(System.Int32); - System.Int32 _shaders = default(System.Int32); - OpenTK.Graphics.ES20.All _binaryformat = default(OpenTK.Graphics.ES20.All); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31230() { - System.Int32 _count = default(System.Int32); - System.Int32 _shaders = default(System.Int32); - OpenTK.Graphics.ES20.All _binaryformat = default(OpenTK.Graphics.ES20.All); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31231() { - System.Int32 _count = default(System.Int32); - System.Int32 _shaders = default(System.Int32); - OpenTK.Graphics.ES20.All _binaryformat = default(OpenTK.Graphics.ES20.All); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,ref _shaders,_binaryformat,ref _binary,_length); -} -static unsafe void Test_ShaderBinary_31232() { - System.Int32 _count = default(System.Int32); - System.Int32 _shaders = default(System.Int32); - OpenTK.Graphics.ES20.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES20.ShaderBinaryFormat); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31233() { - System.Int32 _count = default(System.Int32); - System.Int32 _shaders = default(System.Int32); - OpenTK.Graphics.ES20.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES20.ShaderBinaryFormat); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31234() { - System.Int32 _count = default(System.Int32); - System.Int32 _shaders = default(System.Int32); - OpenTK.Graphics.ES20.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES20.ShaderBinaryFormat); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31235() { - System.Int32 _count = default(System.Int32); - System.Int32 _shaders = default(System.Int32); - OpenTK.Graphics.ES20.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES20.ShaderBinaryFormat); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31236() { - System.Int32 _count = default(System.Int32); - System.Int32 _shaders = default(System.Int32); - OpenTK.Graphics.ES20.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES20.ShaderBinaryFormat); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,ref _shaders,_binaryformat,ref _binary,_length); -} -static unsafe void Test_ShaderBinary_31237() { - System.Int32 _count = default(System.Int32); - System.Int32* _shaders = default(System.Int32*); - OpenTK.Graphics.ES20.All _binaryformat = default(OpenTK.Graphics.ES20.All); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31238() { - System.Int32 _count = default(System.Int32); - System.Int32* _shaders = default(System.Int32*); - OpenTK.Graphics.ES20.All _binaryformat = default(OpenTK.Graphics.ES20.All); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31239() { - System.Int32 _count = default(System.Int32); - System.Int32* _shaders = default(System.Int32*); - OpenTK.Graphics.ES20.All _binaryformat = default(OpenTK.Graphics.ES20.All); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31240() { - System.Int32 _count = default(System.Int32); - System.Int32* _shaders = default(System.Int32*); - OpenTK.Graphics.ES20.All _binaryformat = default(OpenTK.Graphics.ES20.All); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31241() { - System.Int32 _count = default(System.Int32); - System.Int32* _shaders = default(System.Int32*); - OpenTK.Graphics.ES20.All _binaryformat = default(OpenTK.Graphics.ES20.All); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,_shaders,_binaryformat,ref _binary,_length); -} -static unsafe void Test_ShaderBinary_31242() { - System.Int32 _count = default(System.Int32); - System.Int32* _shaders = default(System.Int32*); - OpenTK.Graphics.ES20.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES20.ShaderBinaryFormat); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31243() { - System.Int32 _count = default(System.Int32); - System.Int32* _shaders = default(System.Int32*); - OpenTK.Graphics.ES20.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES20.ShaderBinaryFormat); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31244() { - System.Int32 _count = default(System.Int32); - System.Int32* _shaders = default(System.Int32*); - OpenTK.Graphics.ES20.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES20.ShaderBinaryFormat); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31245() { - System.Int32 _count = default(System.Int32); - System.Int32* _shaders = default(System.Int32*); - OpenTK.Graphics.ES20.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES20.ShaderBinaryFormat); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31246() { - System.Int32 _count = default(System.Int32); - System.Int32* _shaders = default(System.Int32*); - OpenTK.Graphics.ES20.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES20.ShaderBinaryFormat); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,_shaders,_binaryformat,ref _binary,_length); -} -static unsafe void Test_ShaderBinary_31247() { - System.Int32 _count = default(System.Int32); - System.UInt32[] _shaders = default(System.UInt32[]); - OpenTK.Graphics.ES20.All _binaryformat = default(OpenTK.Graphics.ES20.All); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31248() { - System.Int32 _count = default(System.Int32); - System.UInt32[] _shaders = default(System.UInt32[]); - OpenTK.Graphics.ES20.All _binaryformat = default(OpenTK.Graphics.ES20.All); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31249() { - System.Int32 _count = default(System.Int32); - System.UInt32[] _shaders = default(System.UInt32[]); - OpenTK.Graphics.ES20.All _binaryformat = default(OpenTK.Graphics.ES20.All); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31250() { - System.Int32 _count = default(System.Int32); - System.UInt32[] _shaders = default(System.UInt32[]); - OpenTK.Graphics.ES20.All _binaryformat = default(OpenTK.Graphics.ES20.All); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31251() { - System.Int32 _count = default(System.Int32); - System.UInt32[] _shaders = default(System.UInt32[]); - OpenTK.Graphics.ES20.All _binaryformat = default(OpenTK.Graphics.ES20.All); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,_shaders,_binaryformat,ref _binary,_length); -} -static unsafe void Test_ShaderBinary_31252() { - System.Int32 _count = default(System.Int32); - System.UInt32[] _shaders = default(System.UInt32[]); - OpenTK.Graphics.ES20.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES20.ShaderBinaryFormat); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31253() { - System.Int32 _count = default(System.Int32); - System.UInt32[] _shaders = default(System.UInt32[]); - OpenTK.Graphics.ES20.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES20.ShaderBinaryFormat); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31254() { - System.Int32 _count = default(System.Int32); - System.UInt32[] _shaders = default(System.UInt32[]); - OpenTK.Graphics.ES20.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES20.ShaderBinaryFormat); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31255() { - System.Int32 _count = default(System.Int32); - System.UInt32[] _shaders = default(System.UInt32[]); - OpenTK.Graphics.ES20.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES20.ShaderBinaryFormat); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31256() { - System.Int32 _count = default(System.Int32); - System.UInt32[] _shaders = default(System.UInt32[]); - OpenTK.Graphics.ES20.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES20.ShaderBinaryFormat); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,_shaders,_binaryformat,ref _binary,_length); -} -static unsafe void Test_ShaderBinary_31257() { - System.Int32 _count = default(System.Int32); - System.UInt32 _shaders = default(System.UInt32); - OpenTK.Graphics.ES20.All _binaryformat = default(OpenTK.Graphics.ES20.All); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31258() { - System.Int32 _count = default(System.Int32); - System.UInt32 _shaders = default(System.UInt32); - OpenTK.Graphics.ES20.All _binaryformat = default(OpenTK.Graphics.ES20.All); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31259() { - System.Int32 _count = default(System.Int32); - System.UInt32 _shaders = default(System.UInt32); - OpenTK.Graphics.ES20.All _binaryformat = default(OpenTK.Graphics.ES20.All); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31260() { - System.Int32 _count = default(System.Int32); - System.UInt32 _shaders = default(System.UInt32); - OpenTK.Graphics.ES20.All _binaryformat = default(OpenTK.Graphics.ES20.All); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31261() { - System.Int32 _count = default(System.Int32); - System.UInt32 _shaders = default(System.UInt32); - OpenTK.Graphics.ES20.All _binaryformat = default(OpenTK.Graphics.ES20.All); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,ref _shaders,_binaryformat,ref _binary,_length); -} -static unsafe void Test_ShaderBinary_31262() { - System.Int32 _count = default(System.Int32); - System.UInt32 _shaders = default(System.UInt32); - OpenTK.Graphics.ES20.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES20.ShaderBinaryFormat); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31263() { - System.Int32 _count = default(System.Int32); - System.UInt32 _shaders = default(System.UInt32); - OpenTK.Graphics.ES20.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES20.ShaderBinaryFormat); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31264() { - System.Int32 _count = default(System.Int32); - System.UInt32 _shaders = default(System.UInt32); - OpenTK.Graphics.ES20.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES20.ShaderBinaryFormat); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31265() { - System.Int32 _count = default(System.Int32); - System.UInt32 _shaders = default(System.UInt32); - OpenTK.Graphics.ES20.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES20.ShaderBinaryFormat); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31266() { - System.Int32 _count = default(System.Int32); - System.UInt32 _shaders = default(System.UInt32); - OpenTK.Graphics.ES20.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES20.ShaderBinaryFormat); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,ref _shaders,_binaryformat,ref _binary,_length); -} -static unsafe void Test_ShaderBinary_31267() { - System.Int32 _count = default(System.Int32); - System.UInt32* _shaders = default(System.UInt32*); - OpenTK.Graphics.ES20.All _binaryformat = default(OpenTK.Graphics.ES20.All); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31268() { - System.Int32 _count = default(System.Int32); - System.UInt32* _shaders = default(System.UInt32*); - OpenTK.Graphics.ES20.All _binaryformat = default(OpenTK.Graphics.ES20.All); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31269() { - System.Int32 _count = default(System.Int32); - System.UInt32* _shaders = default(System.UInt32*); - OpenTK.Graphics.ES20.All _binaryformat = default(OpenTK.Graphics.ES20.All); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31270() { - System.Int32 _count = default(System.Int32); - System.UInt32* _shaders = default(System.UInt32*); - OpenTK.Graphics.ES20.All _binaryformat = default(OpenTK.Graphics.ES20.All); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31271() { - System.Int32 _count = default(System.Int32); - System.UInt32* _shaders = default(System.UInt32*); - OpenTK.Graphics.ES20.All _binaryformat = default(OpenTK.Graphics.ES20.All); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,_shaders,_binaryformat,ref _binary,_length); -} -static unsafe void Test_ShaderBinary_31272() { - System.Int32 _count = default(System.Int32); - System.UInt32* _shaders = default(System.UInt32*); - OpenTK.Graphics.ES20.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES20.ShaderBinaryFormat); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31273() { - System.Int32 _count = default(System.Int32); - System.UInt32* _shaders = default(System.UInt32*); - OpenTK.Graphics.ES20.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES20.ShaderBinaryFormat); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31274() { - System.Int32 _count = default(System.Int32); - System.UInt32* _shaders = default(System.UInt32*); - OpenTK.Graphics.ES20.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES20.ShaderBinaryFormat); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31275() { - System.Int32 _count = default(System.Int32); - System.UInt32* _shaders = default(System.UInt32*); - OpenTK.Graphics.ES20.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES20.ShaderBinaryFormat); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_31276() { - System.Int32 _count = default(System.Int32); - System.UInt32* _shaders = default(System.UInt32*); - OpenTK.Graphics.ES20.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES20.ShaderBinaryFormat); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderBinary(_count,_shaders,_binaryformat,ref _binary,_length); -} -static unsafe void Test_ShaderSource_31277() { - System.Int32 _shader = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.String[] _string = default(System.String[]); - System.Int32[] _length = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.ShaderSource(_shader,_count,_string,_length); -} -static unsafe void Test_ShaderSource_31278() { - System.Int32 _shader = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.String[] _string = default(System.String[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderSource(_shader,_count,_string,ref _length); -} -static unsafe void Test_ShaderSource_31279() { - System.Int32 _shader = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.String[] _string = default(System.String[]); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.ES20.GL.ShaderSource(_shader,_count,_string,_length); -} -static unsafe void Test_ShaderSource_31280() { - System.UInt32 _shader = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.String[] _string = default(System.String[]); - System.Int32[] _length = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.ShaderSource(_shader,_count,_string,_length); -} -static unsafe void Test_ShaderSource_31281() { - System.UInt32 _shader = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.String[] _string = default(System.String[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.ShaderSource(_shader,_count,_string,ref _length); -} -static unsafe void Test_ShaderSource_31282() { - System.UInt32 _shader = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.String[] _string = default(System.String[]); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.ES20.GL.ShaderSource(_shader,_count,_string,_length); -} -static unsafe void Test_StencilFunc_31283() { - OpenTK.Graphics.ES20.All _func = default(OpenTK.Graphics.ES20.All); - System.Int32 _ref = default(System.Int32); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.ES20.GL.StencilFunc(_func,_ref,_mask); -} -static unsafe void Test_StencilFunc_31284() { - OpenTK.Graphics.ES20.All _func = default(OpenTK.Graphics.ES20.All); - System.Int32 _ref = default(System.Int32); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.ES20.GL.StencilFunc(_func,_ref,_mask); -} -static unsafe void Test_StencilFunc_31285() { - OpenTK.Graphics.ES20.StencilFunction _func = default(OpenTK.Graphics.ES20.StencilFunction); - System.Int32 _ref = default(System.Int32); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.ES20.GL.StencilFunc(_func,_ref,_mask); -} -static unsafe void Test_StencilFunc_31286() { - OpenTK.Graphics.ES20.StencilFunction _func = default(OpenTK.Graphics.ES20.StencilFunction); - System.Int32 _ref = default(System.Int32); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.ES20.GL.StencilFunc(_func,_ref,_mask); -} -static unsafe void Test_StencilFuncSeparate_31287() { - OpenTK.Graphics.ES20.All _face = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _func = default(OpenTK.Graphics.ES20.All); - System.Int32 _ref = default(System.Int32); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.ES20.GL.StencilFuncSeparate(_face,_func,_ref,_mask); -} -static unsafe void Test_StencilFuncSeparate_31288() { - OpenTK.Graphics.ES20.All _face = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _func = default(OpenTK.Graphics.ES20.All); - System.Int32 _ref = default(System.Int32); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.ES20.GL.StencilFuncSeparate(_face,_func,_ref,_mask); -} -static unsafe void Test_StencilFuncSeparate_31289() { - OpenTK.Graphics.ES20.CullFaceMode _face = default(OpenTK.Graphics.ES20.CullFaceMode); - OpenTK.Graphics.ES20.StencilFunction _func = default(OpenTK.Graphics.ES20.StencilFunction); - System.Int32 _ref = default(System.Int32); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.ES20.GL.StencilFuncSeparate(_face,_func,_ref,_mask); -} -static unsafe void Test_StencilFuncSeparate_31290() { - OpenTK.Graphics.ES20.CullFaceMode _face = default(OpenTK.Graphics.ES20.CullFaceMode); - OpenTK.Graphics.ES20.StencilFunction _func = default(OpenTK.Graphics.ES20.StencilFunction); - System.Int32 _ref = default(System.Int32); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.ES20.GL.StencilFuncSeparate(_face,_func,_ref,_mask); -} -static unsafe void Test_StencilFuncSeparate_31291() { - OpenTK.Graphics.ES20.StencilFace _face = default(OpenTK.Graphics.ES20.StencilFace); - OpenTK.Graphics.ES20.StencilFunction _func = default(OpenTK.Graphics.ES20.StencilFunction); - System.Int32 _ref = default(System.Int32); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.ES20.GL.StencilFuncSeparate(_face,_func,_ref,_mask); -} -static unsafe void Test_StencilFuncSeparate_31292() { - OpenTK.Graphics.ES20.StencilFace _face = default(OpenTK.Graphics.ES20.StencilFace); - OpenTK.Graphics.ES20.StencilFunction _func = default(OpenTK.Graphics.ES20.StencilFunction); - System.Int32 _ref = default(System.Int32); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.ES20.GL.StencilFuncSeparate(_face,_func,_ref,_mask); -} -static unsafe void Test_StencilMask_31293() { - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.ES20.GL.StencilMask(_mask); -} -static unsafe void Test_StencilMask_31294() { - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.ES20.GL.StencilMask(_mask); -} -static unsafe void Test_StencilMaskSeparate_31295() { - OpenTK.Graphics.ES20.All _face = default(OpenTK.Graphics.ES20.All); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.ES20.GL.StencilMaskSeparate(_face,_mask); -} -static unsafe void Test_StencilMaskSeparate_31296() { - OpenTK.Graphics.ES20.All _face = default(OpenTK.Graphics.ES20.All); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.ES20.GL.StencilMaskSeparate(_face,_mask); -} -static unsafe void Test_StencilMaskSeparate_31297() { - OpenTK.Graphics.ES20.CullFaceMode _face = default(OpenTK.Graphics.ES20.CullFaceMode); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.ES20.GL.StencilMaskSeparate(_face,_mask); -} -static unsafe void Test_StencilMaskSeparate_31298() { - OpenTK.Graphics.ES20.CullFaceMode _face = default(OpenTK.Graphics.ES20.CullFaceMode); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.ES20.GL.StencilMaskSeparate(_face,_mask); -} -static unsafe void Test_StencilMaskSeparate_31299() { - OpenTK.Graphics.ES20.StencilFace _face = default(OpenTK.Graphics.ES20.StencilFace); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.ES20.GL.StencilMaskSeparate(_face,_mask); -} -static unsafe void Test_StencilMaskSeparate_31300() { - OpenTK.Graphics.ES20.StencilFace _face = default(OpenTK.Graphics.ES20.StencilFace); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.ES20.GL.StencilMaskSeparate(_face,_mask); -} -static unsafe void Test_StencilOp_31301() { - OpenTK.Graphics.ES20.All _fail = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _zfail = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _zpass = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.GL.StencilOp(_fail,_zfail,_zpass); -} -static unsafe void Test_StencilOp_31302() { - OpenTK.Graphics.ES20.StencilOp _fail = default(OpenTK.Graphics.ES20.StencilOp); - OpenTK.Graphics.ES20.StencilOp _zfail = default(OpenTK.Graphics.ES20.StencilOp); - OpenTK.Graphics.ES20.StencilOp _zpass = default(OpenTK.Graphics.ES20.StencilOp); - OpenTK.Graphics.ES20.GL.StencilOp(_fail,_zfail,_zpass); -} -static unsafe void Test_StencilOpSeparate_31303() { - OpenTK.Graphics.ES20.All _face = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _sfail = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _dpfail = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _dppass = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.GL.StencilOpSeparate(_face,_sfail,_dpfail,_dppass); -} -static unsafe void Test_StencilOpSeparate_31304() { - OpenTK.Graphics.ES20.CullFaceMode _face = default(OpenTK.Graphics.ES20.CullFaceMode); - OpenTK.Graphics.ES20.StencilOp _sfail = default(OpenTK.Graphics.ES20.StencilOp); - OpenTK.Graphics.ES20.StencilOp _dpfail = default(OpenTK.Graphics.ES20.StencilOp); - OpenTK.Graphics.ES20.StencilOp _dppass = default(OpenTK.Graphics.ES20.StencilOp); - OpenTK.Graphics.ES20.GL.StencilOpSeparate(_face,_sfail,_dpfail,_dppass); -} -static unsafe void Test_StencilOpSeparate_31305() { - OpenTK.Graphics.ES20.StencilFace _face = default(OpenTK.Graphics.ES20.StencilFace); - OpenTK.Graphics.ES20.StencilOp _sfail = default(OpenTK.Graphics.ES20.StencilOp); - OpenTK.Graphics.ES20.StencilOp _dpfail = default(OpenTK.Graphics.ES20.StencilOp); - OpenTK.Graphics.ES20.StencilOp _dppass = default(OpenTK.Graphics.ES20.StencilOp); - OpenTK.Graphics.ES20.GL.StencilOpSeparate(_face,_sfail,_dpfail,_dppass); -} -static unsafe void Test_TexImage2D_31306() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage2D_31307() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[] _pixels = default(int[]); - OpenTK.Graphics.ES20.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage2D_31308() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.ES20.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage2D_31309() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.ES20.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage2D_31310() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int _pixels = default(int); - OpenTK.Graphics.ES20.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,ref _pixels); -} -static unsafe void Test_TexImage2D_31311() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.PixelInternalFormat _internalformat = default(OpenTK.Graphics.ES20.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - OpenTK.Graphics.ES20.PixelType _type = default(OpenTK.Graphics.ES20.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage2D_31312() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.PixelInternalFormat _internalformat = default(OpenTK.Graphics.ES20.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - OpenTK.Graphics.ES20.PixelType _type = default(OpenTK.Graphics.ES20.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.ES20.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage2D_31313() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.PixelInternalFormat _internalformat = default(OpenTK.Graphics.ES20.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - OpenTK.Graphics.ES20.PixelType _type = default(OpenTK.Graphics.ES20.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.ES20.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage2D_31314() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.PixelInternalFormat _internalformat = default(OpenTK.Graphics.ES20.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - OpenTK.Graphics.ES20.PixelType _type = default(OpenTK.Graphics.ES20.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.ES20.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage2D_31315() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.PixelInternalFormat _internalformat = default(OpenTK.Graphics.ES20.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - OpenTK.Graphics.ES20.PixelType _type = default(OpenTK.Graphics.ES20.PixelType); - int _pixels = default(int); - OpenTK.Graphics.ES20.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,ref _pixels); -} -static unsafe void Test_TexImage2D_31316() { - OpenTK.Graphics.ES20.TextureTarget2d _target = default(OpenTK.Graphics.ES20.TextureTarget2d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.TextureComponentCount _internalformat = default(OpenTK.Graphics.ES20.TextureComponentCount); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - OpenTK.Graphics.ES20.PixelType _type = default(OpenTK.Graphics.ES20.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage2D_31317() { - OpenTK.Graphics.ES20.TextureTarget2d _target = default(OpenTK.Graphics.ES20.TextureTarget2d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.TextureComponentCount _internalformat = default(OpenTK.Graphics.ES20.TextureComponentCount); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - OpenTK.Graphics.ES20.PixelType _type = default(OpenTK.Graphics.ES20.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.ES20.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage2D_31318() { - OpenTK.Graphics.ES20.TextureTarget2d _target = default(OpenTK.Graphics.ES20.TextureTarget2d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.TextureComponentCount _internalformat = default(OpenTK.Graphics.ES20.TextureComponentCount); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - OpenTK.Graphics.ES20.PixelType _type = default(OpenTK.Graphics.ES20.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.ES20.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage2D_31319() { - OpenTK.Graphics.ES20.TextureTarget2d _target = default(OpenTK.Graphics.ES20.TextureTarget2d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.TextureComponentCount _internalformat = default(OpenTK.Graphics.ES20.TextureComponentCount); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - OpenTK.Graphics.ES20.PixelType _type = default(OpenTK.Graphics.ES20.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.ES20.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage2D_31320() { - OpenTK.Graphics.ES20.TextureTarget2d _target = default(OpenTK.Graphics.ES20.TextureTarget2d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.TextureComponentCount _internalformat = default(OpenTK.Graphics.ES20.TextureComponentCount); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - OpenTK.Graphics.ES20.PixelType _type = default(OpenTK.Graphics.ES20.PixelType); - int _pixels = default(int); - OpenTK.Graphics.ES20.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,ref _pixels); -} -static unsafe void Test_TexParameter_31321() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Single _param = default(System.Single); - OpenTK.Graphics.ES20.GL.TexParameter(_target,_pname,_param); -} -static unsafe void Test_TexParameter_31322() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - OpenTK.Graphics.ES20.TextureParameterName _pname = default(OpenTK.Graphics.ES20.TextureParameterName); - System.Single _param = default(System.Single); - OpenTK.Graphics.ES20.GL.TexParameter(_target,_pname,_param); -} -static unsafe void Test_TexParameter_31323() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES20.GL.TexParameter(_target,_pname,_params); -} -static unsafe void Test_TexParameter_31324() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES20.GL.TexParameter(_target,_pname,_params); -} -static unsafe void Test_TexParameter_31325() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - OpenTK.Graphics.ES20.TextureParameterName _pname = default(OpenTK.Graphics.ES20.TextureParameterName); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES20.GL.TexParameter(_target,_pname,_params); -} -static unsafe void Test_TexParameter_31326() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - OpenTK.Graphics.ES20.TextureParameterName _pname = default(OpenTK.Graphics.ES20.TextureParameterName); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES20.GL.TexParameter(_target,_pname,_params); -} -static unsafe void Test_TexParameter_31327() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES20.GL.TexParameter(_target,_pname,_param); -} -static unsafe void Test_TexParameter_31328() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - OpenTK.Graphics.ES20.TextureParameterName _pname = default(OpenTK.Graphics.ES20.TextureParameterName); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES20.GL.TexParameter(_target,_pname,_param); -} -static unsafe void Test_TexParameter_31329() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.TexParameter(_target,_pname,_params); -} -static unsafe void Test_TexParameter_31330() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.TexParameter(_target,_pname,_params); -} -static unsafe void Test_TexParameter_31331() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - OpenTK.Graphics.ES20.TextureParameterName _pname = default(OpenTK.Graphics.ES20.TextureParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.TexParameter(_target,_pname,_params); -} -static unsafe void Test_TexParameter_31332() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - OpenTK.Graphics.ES20.TextureParameterName _pname = default(OpenTK.Graphics.ES20.TextureParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.TexParameter(_target,_pname,_params); -} -static unsafe void Test_TexSubImage2D_31333() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_31334() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[] _pixels = default(int[]); - OpenTK.Graphics.ES20.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_31335() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.ES20.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_31336() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.ES20.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_31337() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int _pixels = default(int); - OpenTK.Graphics.ES20.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,ref _pixels); -} -static unsafe void Test_TexSubImage2D_31338() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - OpenTK.Graphics.ES20.PixelType _type = default(OpenTK.Graphics.ES20.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_31339() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - OpenTK.Graphics.ES20.PixelType _type = default(OpenTK.Graphics.ES20.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.ES20.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_31340() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - OpenTK.Graphics.ES20.PixelType _type = default(OpenTK.Graphics.ES20.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.ES20.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_31341() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - OpenTK.Graphics.ES20.PixelType _type = default(OpenTK.Graphics.ES20.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.ES20.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_31342() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - OpenTK.Graphics.ES20.PixelType _type = default(OpenTK.Graphics.ES20.PixelType); - int _pixels = default(int); - OpenTK.Graphics.ES20.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,ref _pixels); -} -static unsafe void Test_TexSubImage2D_31343() { - OpenTK.Graphics.ES20.TextureTarget2d _target = default(OpenTK.Graphics.ES20.TextureTarget2d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - OpenTK.Graphics.ES20.PixelType _type = default(OpenTK.Graphics.ES20.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_31344() { - OpenTK.Graphics.ES20.TextureTarget2d _target = default(OpenTK.Graphics.ES20.TextureTarget2d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - OpenTK.Graphics.ES20.PixelType _type = default(OpenTK.Graphics.ES20.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.ES20.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_31345() { - OpenTK.Graphics.ES20.TextureTarget2d _target = default(OpenTK.Graphics.ES20.TextureTarget2d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - OpenTK.Graphics.ES20.PixelType _type = default(OpenTK.Graphics.ES20.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.ES20.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_31346() { - OpenTK.Graphics.ES20.TextureTarget2d _target = default(OpenTK.Graphics.ES20.TextureTarget2d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - OpenTK.Graphics.ES20.PixelType _type = default(OpenTK.Graphics.ES20.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.ES20.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_31347() { - OpenTK.Graphics.ES20.TextureTarget2d _target = default(OpenTK.Graphics.ES20.TextureTarget2d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - OpenTK.Graphics.ES20.PixelType _type = default(OpenTK.Graphics.ES20.PixelType); - int _pixels = default(int); - OpenTK.Graphics.ES20.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,ref _pixels); -} -static unsafe void Test_Uniform1_31348() { - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - OpenTK.Graphics.ES20.GL.Uniform1(_location,_v0); -} -static unsafe void Test_Uniform1_31349() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES20.GL.Uniform1(_location,_count,_value); -} -static unsafe void Test_Uniform1_31350() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES20.GL.Uniform1(_location,_count,ref _value); -} -static unsafe void Test_Uniform1_31351() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES20.GL.Uniform1(_location,_count,_value); -} -static unsafe void Test_Uniform1_31352() { - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - OpenTK.Graphics.ES20.GL.Uniform1(_location,_v0); -} -static unsafe void Test_Uniform1_31353() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Uniform1(_location,_count,_value); -} -static unsafe void Test_Uniform1_31354() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.ES20.GL.Uniform1(_location,_count,ref _value); -} -static unsafe void Test_Uniform1_31355() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Uniform1(_location,_count,_value); -} -static unsafe void Test_Uniform2_31356() { - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - OpenTK.Graphics.ES20.GL.Uniform2(_location,_v0,_v1); -} -static unsafe void Test_Uniform2_31357() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES20.GL.Uniform2(_location,_count,_value); -} -static unsafe void Test_Uniform2_31358() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES20.GL.Uniform2(_location,_count,ref _value); -} -static unsafe void Test_Uniform2_31359() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES20.GL.Uniform2(_location,_count,_value); -} -static unsafe void Test_Uniform2_31360() { - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - OpenTK.Graphics.ES20.GL.Uniform2(_location,_v0,_v1); -} -static unsafe void Test_Uniform2_31361() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Uniform2(_location,_count,_value); -} -static unsafe void Test_Uniform2_31362() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Uniform2(_location,_count,_value); -} -static unsafe void Test_Uniform3_31363() { - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - OpenTK.Graphics.ES20.GL.Uniform3(_location,_v0,_v1,_v2); -} -static unsafe void Test_Uniform3_31364() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES20.GL.Uniform3(_location,_count,_value); -} -static unsafe void Test_Uniform3_31365() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES20.GL.Uniform3(_location,_count,ref _value); -} -static unsafe void Test_Uniform3_31366() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES20.GL.Uniform3(_location,_count,_value); -} -static unsafe void Test_Uniform3_31367() { - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - System.Int32 _v2 = default(System.Int32); - OpenTK.Graphics.ES20.GL.Uniform3(_location,_v0,_v1,_v2); -} -static unsafe void Test_Uniform3_31368() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Uniform3(_location,_count,_value); -} -static unsafe void Test_Uniform3_31369() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.ES20.GL.Uniform3(_location,_count,ref _value); -} -static unsafe void Test_Uniform3_31370() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Uniform3(_location,_count,_value); -} -static unsafe void Test_Uniform4_31371() { - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - System.Single _v3 = default(System.Single); - OpenTK.Graphics.ES20.GL.Uniform4(_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_Uniform4_31372() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES20.GL.Uniform4(_location,_count,_value); -} -static unsafe void Test_Uniform4_31373() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES20.GL.Uniform4(_location,_count,ref _value); -} -static unsafe void Test_Uniform4_31374() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES20.GL.Uniform4(_location,_count,_value); -} -static unsafe void Test_Uniform4_31375() { - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - System.Int32 _v2 = default(System.Int32); - System.Int32 _v3 = default(System.Int32); - OpenTK.Graphics.ES20.GL.Uniform4(_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_Uniform4_31376() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Uniform4(_location,_count,_value); -} -static unsafe void Test_Uniform4_31377() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.ES20.GL.Uniform4(_location,_count,ref _value); -} -static unsafe void Test_Uniform4_31378() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Uniform4(_location,_count,_value); -} -static unsafe void Test_UniformMatrix2_31379() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES20.GL.UniformMatrix2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix2_31380() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES20.GL.UniformMatrix2(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix2_31381() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES20.GL.UniformMatrix2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3_31382() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES20.GL.UniformMatrix3(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3_31383() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES20.GL.UniformMatrix3(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix3_31384() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES20.GL.UniformMatrix3(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4_31385() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES20.GL.UniformMatrix4(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4_31386() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES20.GL.UniformMatrix4(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix4_31387() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES20.GL.UniformMatrix4(_location,_count,_transpose,_value); -} -static unsafe void Test_UseProgram_31388() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES20.GL.UseProgram(_program); -} -static unsafe void Test_UseProgram_31389() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES20.GL.UseProgram(_program); -} -static unsafe void Test_ValidateProgram_31390() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES20.GL.ValidateProgram(_program); -} -static unsafe void Test_ValidateProgram_31391() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES20.GL.ValidateProgram(_program); -} -static unsafe void Test_VertexAttrib1_31392() { - System.Int32 _index = default(System.Int32); - System.Single _x = default(System.Single); - OpenTK.Graphics.ES20.GL.VertexAttrib1(_index,_x); -} -static unsafe void Test_VertexAttrib1_31393() { - System.UInt32 _index = default(System.UInt32); - System.Single _x = default(System.Single); - OpenTK.Graphics.ES20.GL.VertexAttrib1(_index,_x); -} -static unsafe void Test_VertexAttrib1_31394() { - System.Int32 _index = default(System.Int32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.ES20.GL.VertexAttrib1(_index,_v); -} -static unsafe void Test_VertexAttrib1_31395() { - System.Int32 _index = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.ES20.GL.VertexAttrib1(_index,_v); -} -static unsafe void Test_VertexAttrib1_31396() { - System.UInt32 _index = default(System.UInt32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.ES20.GL.VertexAttrib1(_index,_v); -} -static unsafe void Test_VertexAttrib1_31397() { - System.UInt32 _index = default(System.UInt32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.ES20.GL.VertexAttrib1(_index,_v); -} -static unsafe void Test_VertexAttrib2_31398() { - System.Int32 _index = default(System.Int32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - OpenTK.Graphics.ES20.GL.VertexAttrib2(_index,_x,_y); -} -static unsafe void Test_VertexAttrib2_31399() { - System.UInt32 _index = default(System.UInt32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - OpenTK.Graphics.ES20.GL.VertexAttrib2(_index,_x,_y); -} -static unsafe void Test_VertexAttrib2_31400() { - System.Int32 _index = default(System.Int32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.ES20.GL.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_31401() { - System.Int32 _index = default(System.Int32); - System.Single _v = default(System.Single); - OpenTK.Graphics.ES20.GL.VertexAttrib2(_index,ref _v); -} -static unsafe void Test_VertexAttrib2_31402() { - System.Int32 _index = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.ES20.GL.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_31403() { - System.UInt32 _index = default(System.UInt32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.ES20.GL.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_31404() { - System.UInt32 _index = default(System.UInt32); - System.Single _v = default(System.Single); - OpenTK.Graphics.ES20.GL.VertexAttrib2(_index,ref _v); -} -static unsafe void Test_VertexAttrib2_31405() { - System.UInt32 _index = default(System.UInt32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.ES20.GL.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib3_31406() { - System.Int32 _index = default(System.Int32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.ES20.GL.VertexAttrib3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttrib3_31407() { - System.UInt32 _index = default(System.UInt32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.ES20.GL.VertexAttrib3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttrib3_31408() { - System.Int32 _index = default(System.Int32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.ES20.GL.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_31409() { - System.Int32 _index = default(System.Int32); - System.Single _v = default(System.Single); - OpenTK.Graphics.ES20.GL.VertexAttrib3(_index,ref _v); -} -static unsafe void Test_VertexAttrib3_31410() { - System.Int32 _index = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.ES20.GL.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_31411() { - System.UInt32 _index = default(System.UInt32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.ES20.GL.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_31412() { - System.UInt32 _index = default(System.UInt32); - System.Single _v = default(System.Single); - OpenTK.Graphics.ES20.GL.VertexAttrib3(_index,ref _v); -} -static unsafe void Test_VertexAttrib3_31413() { - System.UInt32 _index = default(System.UInt32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.ES20.GL.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib4_31414() { - System.Int32 _index = default(System.Int32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - System.Single _w = default(System.Single); - OpenTK.Graphics.ES20.GL.VertexAttrib4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttrib4_31415() { - System.UInt32 _index = default(System.UInt32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - System.Single _w = default(System.Single); - OpenTK.Graphics.ES20.GL.VertexAttrib4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttrib4_31416() { - System.Int32 _index = default(System.Int32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.ES20.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_31417() { - System.Int32 _index = default(System.Int32); - System.Single _v = default(System.Single); - OpenTK.Graphics.ES20.GL.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_31418() { - System.Int32 _index = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.ES20.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_31419() { - System.UInt32 _index = default(System.UInt32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.ES20.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_31420() { - System.UInt32 _index = default(System.UInt32); - System.Single _v = default(System.Single); - OpenTK.Graphics.ES20.GL.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_31421() { - System.UInt32 _index = default(System.UInt32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.ES20.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttribPointer_31422() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_31423() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.ES20.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_31424() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.ES20.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_31425() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.ES20.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_31426() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.ES20.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,ref _pointer); -} -static unsafe void Test_VertexAttribPointer_31427() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES20.VertexAttribPointerType _type = default(OpenTK.Graphics.ES20.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_31428() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES20.VertexAttribPointerType _type = default(OpenTK.Graphics.ES20.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.ES20.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_31429() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES20.VertexAttribPointerType _type = default(OpenTK.Graphics.ES20.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.ES20.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_31430() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES20.VertexAttribPointerType _type = default(OpenTK.Graphics.ES20.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.ES20.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_31431() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES20.VertexAttribPointerType _type = default(OpenTK.Graphics.ES20.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.ES20.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,ref _pointer); -} -static unsafe void Test_VertexAttribPointer_31432() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_31433() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.ES20.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_31434() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.ES20.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_31435() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.ES20.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_31436() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.ES20.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,ref _pointer); -} -static unsafe void Test_VertexAttribPointer_31437() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES20.VertexAttribPointerType _type = default(OpenTK.Graphics.ES20.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_31438() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES20.VertexAttribPointerType _type = default(OpenTK.Graphics.ES20.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.ES20.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_31439() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES20.VertexAttribPointerType _type = default(OpenTK.Graphics.ES20.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.ES20.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_31440() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES20.VertexAttribPointerType _type = default(OpenTK.Graphics.ES20.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.ES20.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_31441() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES20.VertexAttribPointerType _type = default(OpenTK.Graphics.ES20.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.ES20.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,ref _pointer); -} -static unsafe void Test_Viewport_31442() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.GL.Viewport(_x,_y,_width,_height); -} -static unsafe void Test_BeginPerfMonitor_31443() { - System.Int32 _monitor = default(System.Int32); - OpenTK.Graphics.ES20.GL.Amd.BeginPerfMonitor(_monitor); -} -static unsafe void Test_BeginPerfMonitor_31444() { - System.UInt32 _monitor = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Amd.BeginPerfMonitor(_monitor); -} -static unsafe void Test_DeletePerfMonitor_31445() { - System.Int32 _monitors = default(System.Int32); - OpenTK.Graphics.ES20.GL.Amd.DeletePerfMonitor(_monitors); -} -static unsafe void Test_DeletePerfMonitor_31446() { - System.UInt32 _monitors = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Amd.DeletePerfMonitor(_monitors); -} -static unsafe void Test_DeletePerfMonitors_31447() { - System.Int32 _n = default(System.Int32); - System.Int32[] _monitors = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Amd.DeletePerfMonitors(_n,_monitors); -} -static unsafe void Test_DeletePerfMonitors_31448() { - System.Int32 _n = default(System.Int32); - System.Int32 _monitors = default(System.Int32); - OpenTK.Graphics.ES20.GL.Amd.DeletePerfMonitors(_n,ref _monitors); -} -static unsafe void Test_DeletePerfMonitors_31449() { - System.Int32 _n = default(System.Int32); - System.Int32* _monitors = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Amd.DeletePerfMonitors(_n,_monitors); -} -static unsafe void Test_DeletePerfMonitors_31450() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _monitors = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.Amd.DeletePerfMonitors(_n,_monitors); -} -static unsafe void Test_DeletePerfMonitors_31451() { - System.Int32 _n = default(System.Int32); - System.UInt32 _monitors = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Amd.DeletePerfMonitors(_n,ref _monitors); -} -static unsafe void Test_DeletePerfMonitors_31452() { - System.Int32 _n = default(System.Int32); - System.UInt32* _monitors = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.Amd.DeletePerfMonitors(_n,_monitors); -} -static unsafe void Test_EndPerfMonitor_31453() { - System.Int32 _monitor = default(System.Int32); - OpenTK.Graphics.ES20.GL.Amd.EndPerfMonitor(_monitor); -} -static unsafe void Test_EndPerfMonitor_31454() { - System.UInt32 _monitor = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Amd.EndPerfMonitor(_monitor); -} -static unsafe void Test_GenPerfMonitor_31455() { - System.Int32 r = OpenTK.Graphics.ES20.GL.Amd.GenPerfMonitor(); -} -static unsafe void Test_GenPerfMonitors_31456() { - System.Int32 _n = default(System.Int32); - System.Int32[] _monitors = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Amd.GenPerfMonitors(_n,_monitors); -} -static unsafe void Test_GenPerfMonitors_31457() { - System.Int32 _n = default(System.Int32); - System.Int32 _monitors = default(System.Int32); - OpenTK.Graphics.ES20.GL.Amd.GenPerfMonitors(_n,out _monitors); -} -static unsafe void Test_GenPerfMonitors_31458() { - System.Int32 _n = default(System.Int32); - System.Int32* _monitors = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Amd.GenPerfMonitors(_n,_monitors); -} -static unsafe void Test_GenPerfMonitors_31459() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _monitors = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.Amd.GenPerfMonitors(_n,_monitors); -} -static unsafe void Test_GenPerfMonitors_31460() { - System.Int32 _n = default(System.Int32); - System.UInt32 _monitors = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Amd.GenPerfMonitors(_n,out _monitors); -} -static unsafe void Test_GenPerfMonitors_31461() { - System.Int32 _n = default(System.Int32); - System.UInt32* _monitors = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.Amd.GenPerfMonitors(_n,_monitors); -} -static unsafe void Test_GetPerfMonitorCounterData_31462() { - System.Int32 _monitor = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _dataSize = default(System.Int32); - System.Int32[] _data = default(System.Int32[]); - System.Int32 _bytesWritten = default(System.Int32); - OpenTK.Graphics.ES20.GL.Amd.GetPerfMonitorCounterData(_monitor,_pname,_dataSize,_data,out _bytesWritten); -} -static unsafe void Test_GetPerfMonitorCounterData_31463() { - System.Int32 _monitor = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _dataSize = default(System.Int32); - System.Int32 _data = default(System.Int32); - System.Int32 _bytesWritten = default(System.Int32); - OpenTK.Graphics.ES20.GL.Amd.GetPerfMonitorCounterData(_monitor,_pname,_dataSize,out _data,out _bytesWritten); -} -static unsafe void Test_GetPerfMonitorCounterData_31464() { - System.Int32 _monitor = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _dataSize = default(System.Int32); - System.Int32* _data = default(System.Int32*); - System.Int32* _bytesWritten = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Amd.GetPerfMonitorCounterData(_monitor,_pname,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfMonitorCounterData_31465() { - System.UInt32 _monitor = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _dataSize = default(System.Int32); - System.UInt32[] _data = default(System.UInt32[]); - System.Int32 _bytesWritten = default(System.Int32); - OpenTK.Graphics.ES20.GL.Amd.GetPerfMonitorCounterData(_monitor,_pname,_dataSize,_data,out _bytesWritten); -} -static unsafe void Test_GetPerfMonitorCounterData_31466() { - System.UInt32 _monitor = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _dataSize = default(System.Int32); - System.UInt32 _data = default(System.UInt32); - System.Int32 _bytesWritten = default(System.Int32); - OpenTK.Graphics.ES20.GL.Amd.GetPerfMonitorCounterData(_monitor,_pname,_dataSize,out _data,out _bytesWritten); -} -static unsafe void Test_GetPerfMonitorCounterData_31467() { - System.UInt32 _monitor = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _dataSize = default(System.Int32); - System.UInt32* _data = default(System.UInt32*); - System.Int32* _bytesWritten = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Amd.GetPerfMonitorCounterData(_monitor,_pname,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfMonitorCounterInfo_31468() { - System.Int32 _group = default(System.Int32); - System.Int32 _counter = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.Amd.GetPerfMonitorCounterInfo(_group,_counter,_pname,_data); -} -static unsafe void Test_GetPerfMonitorCounterInfo_31469() { - System.Int32 _group = default(System.Int32); - System.Int32 _counter = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - int[] _data = default(int[]); - OpenTK.Graphics.ES20.GL.Amd.GetPerfMonitorCounterInfo(_group,_counter,_pname,_data); -} -static unsafe void Test_GetPerfMonitorCounterInfo_31470() { - System.Int32 _group = default(System.Int32); - System.Int32 _counter = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES20.GL.Amd.GetPerfMonitorCounterInfo(_group,_counter,_pname,_data); -} -static unsafe void Test_GetPerfMonitorCounterInfo_31471() { - System.Int32 _group = default(System.Int32); - System.Int32 _counter = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES20.GL.Amd.GetPerfMonitorCounterInfo(_group,_counter,_pname,_data); -} -static unsafe void Test_GetPerfMonitorCounterInfo_31472() { - System.Int32 _group = default(System.Int32); - System.Int32 _counter = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - int _data = default(int); - OpenTK.Graphics.ES20.GL.Amd.GetPerfMonitorCounterInfo(_group,_counter,_pname,ref _data); -} -static unsafe void Test_GetPerfMonitorCounterInfo_31473() { - System.UInt32 _group = default(System.UInt32); - System.UInt32 _counter = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.Amd.GetPerfMonitorCounterInfo(_group,_counter,_pname,_data); -} -static unsafe void Test_GetPerfMonitorCounterInfo_31474() { - System.UInt32 _group = default(System.UInt32); - System.UInt32 _counter = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - int[] _data = default(int[]); - OpenTK.Graphics.ES20.GL.Amd.GetPerfMonitorCounterInfo(_group,_counter,_pname,_data); -} -static unsafe void Test_GetPerfMonitorCounterInfo_31475() { - System.UInt32 _group = default(System.UInt32); - System.UInt32 _counter = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES20.GL.Amd.GetPerfMonitorCounterInfo(_group,_counter,_pname,_data); -} -static unsafe void Test_GetPerfMonitorCounterInfo_31476() { - System.UInt32 _group = default(System.UInt32); - System.UInt32 _counter = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES20.GL.Amd.GetPerfMonitorCounterInfo(_group,_counter,_pname,_data); -} -static unsafe void Test_GetPerfMonitorCounterInfo_31477() { - System.UInt32 _group = default(System.UInt32); - System.UInt32 _counter = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - int _data = default(int); - OpenTK.Graphics.ES20.GL.Amd.GetPerfMonitorCounterInfo(_group,_counter,_pname,ref _data); -} -static unsafe void Test_GetPerfMonitorCounters_31478() { - System.Int32 _group = default(System.Int32); - System.Int32 _numCounters = default(System.Int32); - System.Int32 _maxActiveCounters = default(System.Int32); - System.Int32 _counterSize = default(System.Int32); - System.Int32[] _counters = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Amd.GetPerfMonitorCounters(_group,out _numCounters,out _maxActiveCounters,_counterSize,_counters); -} -static unsafe void Test_GetPerfMonitorCounters_31479() { - System.Int32 _group = default(System.Int32); - System.Int32 _numCounters = default(System.Int32); - System.Int32 _maxActiveCounters = default(System.Int32); - System.Int32 _counterSize = default(System.Int32); - System.Int32 _counters = default(System.Int32); - OpenTK.Graphics.ES20.GL.Amd.GetPerfMonitorCounters(_group,out _numCounters,out _maxActiveCounters,_counterSize,out _counters); -} -static unsafe void Test_GetPerfMonitorCounters_31480() { - System.Int32 _group = default(System.Int32); - System.Int32* _numCounters = default(System.Int32*); - System.Int32* _maxActiveCounters = default(System.Int32*); - System.Int32 _counterSize = default(System.Int32); - System.Int32* _counters = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Amd.GetPerfMonitorCounters(_group,_numCounters,_maxActiveCounters,_counterSize,_counters); -} -static unsafe void Test_GetPerfMonitorCounters_31481() { - System.UInt32 _group = default(System.UInt32); - System.Int32 _numCounters = default(System.Int32); - System.Int32 _maxActiveCounters = default(System.Int32); - System.Int32 _counterSize = default(System.Int32); - System.UInt32[] _counters = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.Amd.GetPerfMonitorCounters(_group,out _numCounters,out _maxActiveCounters,_counterSize,_counters); -} -static unsafe void Test_GetPerfMonitorCounters_31482() { - System.UInt32 _group = default(System.UInt32); - System.Int32 _numCounters = default(System.Int32); - System.Int32 _maxActiveCounters = default(System.Int32); - System.Int32 _counterSize = default(System.Int32); - System.UInt32 _counters = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Amd.GetPerfMonitorCounters(_group,out _numCounters,out _maxActiveCounters,_counterSize,out _counters); -} -static unsafe void Test_GetPerfMonitorCounters_31483() { - System.UInt32 _group = default(System.UInt32); - System.Int32* _numCounters = default(System.Int32*); - System.Int32* _maxActiveCounters = default(System.Int32*); - System.Int32 _counterSize = default(System.Int32); - System.UInt32* _counters = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.Amd.GetPerfMonitorCounters(_group,_numCounters,_maxActiveCounters,_counterSize,_counters); -} -static unsafe void Test_GetPerfMonitorCounterString_31484() { - System.Int32 _group = default(System.Int32); - System.Int32 _counter = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _counterString = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Amd.GetPerfMonitorCounterString(_group,_counter,_bufSize,out _length,_counterString); -} -static unsafe void Test_GetPerfMonitorCounterString_31485() { - System.Int32 _group = default(System.Int32); - System.Int32 _counter = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _counterString = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Amd.GetPerfMonitorCounterString(_group,_counter,_bufSize,_length,_counterString); -} -static unsafe void Test_GetPerfMonitorCounterString_31486() { - System.UInt32 _group = default(System.UInt32); - System.UInt32 _counter = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _counterString = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Amd.GetPerfMonitorCounterString(_group,_counter,_bufSize,out _length,_counterString); -} -static unsafe void Test_GetPerfMonitorCounterString_31487() { - System.UInt32 _group = default(System.UInt32); - System.UInt32 _counter = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _counterString = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Amd.GetPerfMonitorCounterString(_group,_counter,_bufSize,_length,_counterString); -} -static unsafe void Test_GetPerfMonitorGroups_31488() { - System.Int32 _numGroups = default(System.Int32); - System.Int32 _groupsSize = default(System.Int32); - System.Int32[] _groups = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Amd.GetPerfMonitorGroups(out _numGroups,_groupsSize,_groups); -} -static unsafe void Test_GetPerfMonitorGroups_31489() { - System.Int32 _numGroups = default(System.Int32); - System.Int32 _groupsSize = default(System.Int32); - System.Int32 _groups = default(System.Int32); - OpenTK.Graphics.ES20.GL.Amd.GetPerfMonitorGroups(out _numGroups,_groupsSize,out _groups); -} -static unsafe void Test_GetPerfMonitorGroups_31490() { - System.Int32 _numGroups = default(System.Int32); - System.Int32 _groupsSize = default(System.Int32); - System.UInt32[] _groups = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.Amd.GetPerfMonitorGroups(out _numGroups,_groupsSize,_groups); -} -static unsafe void Test_GetPerfMonitorGroups_31491() { - System.Int32 _numGroups = default(System.Int32); - System.Int32 _groupsSize = default(System.Int32); - System.UInt32 _groups = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Amd.GetPerfMonitorGroups(out _numGroups,_groupsSize,out _groups); -} -static unsafe void Test_GetPerfMonitorGroups_31492() { - System.Int32* _numGroups = default(System.Int32*); - System.Int32 _groupsSize = default(System.Int32); - System.Int32* _groups = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Amd.GetPerfMonitorGroups(_numGroups,_groupsSize,_groups); -} -static unsafe void Test_GetPerfMonitorGroups_31493() { - System.Int32* _numGroups = default(System.Int32*); - System.Int32 _groupsSize = default(System.Int32); - System.UInt32* _groups = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.Amd.GetPerfMonitorGroups(_numGroups,_groupsSize,_groups); -} -static unsafe void Test_GetPerfMonitorGroupString_31494() { - System.Int32 _group = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _groupString = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Amd.GetPerfMonitorGroupString(_group,_bufSize,out _length,_groupString); -} -static unsafe void Test_GetPerfMonitorGroupString_31495() { - System.Int32 _group = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _groupString = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Amd.GetPerfMonitorGroupString(_group,_bufSize,_length,_groupString); -} -static unsafe void Test_GetPerfMonitorGroupString_31496() { - System.UInt32 _group = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _groupString = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Amd.GetPerfMonitorGroupString(_group,_bufSize,out _length,_groupString); -} -static unsafe void Test_GetPerfMonitorGroupString_31497() { - System.UInt32 _group = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _groupString = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Amd.GetPerfMonitorGroupString(_group,_bufSize,_length,_groupString); -} -static unsafe void Test_SelectPerfMonitorCounters_31498() { - System.Int32 _monitor = default(System.Int32); - System.Boolean _enable = default(System.Boolean); - System.Int32 _group = default(System.Int32); - System.Int32 _numCounters = default(System.Int32); - System.Int32[] _counterList = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Amd.SelectPerfMonitorCounters(_monitor,_enable,_group,_numCounters,_counterList); -} -static unsafe void Test_SelectPerfMonitorCounters_31499() { - System.Int32 _monitor = default(System.Int32); - System.Boolean _enable = default(System.Boolean); - System.Int32 _group = default(System.Int32); - System.Int32 _numCounters = default(System.Int32); - System.Int32 _counterList = default(System.Int32); - OpenTK.Graphics.ES20.GL.Amd.SelectPerfMonitorCounters(_monitor,_enable,_group,_numCounters,out _counterList); -} -static unsafe void Test_SelectPerfMonitorCounters_31500() { - System.Int32 _monitor = default(System.Int32); - System.Boolean _enable = default(System.Boolean); - System.Int32 _group = default(System.Int32); - System.Int32 _numCounters = default(System.Int32); - System.Int32* _counterList = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Amd.SelectPerfMonitorCounters(_monitor,_enable,_group,_numCounters,_counterList); -} -static unsafe void Test_SelectPerfMonitorCounters_31501() { - System.UInt32 _monitor = default(System.UInt32); - System.Boolean _enable = default(System.Boolean); - System.UInt32 _group = default(System.UInt32); - System.Int32 _numCounters = default(System.Int32); - System.UInt32[] _counterList = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.Amd.SelectPerfMonitorCounters(_monitor,_enable,_group,_numCounters,_counterList); -} -static unsafe void Test_SelectPerfMonitorCounters_31502() { - System.UInt32 _monitor = default(System.UInt32); - System.Boolean _enable = default(System.Boolean); - System.UInt32 _group = default(System.UInt32); - System.Int32 _numCounters = default(System.Int32); - System.UInt32 _counterList = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Amd.SelectPerfMonitorCounters(_monitor,_enable,_group,_numCounters,out _counterList); -} -static unsafe void Test_SelectPerfMonitorCounters_31503() { - System.UInt32 _monitor = default(System.UInt32); - System.Boolean _enable = default(System.Boolean); - System.UInt32 _group = default(System.UInt32); - System.Int32 _numCounters = default(System.Int32); - System.UInt32* _counterList = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.Amd.SelectPerfMonitorCounters(_monitor,_enable,_group,_numCounters,_counterList); -} -static unsafe void Test_BlitFramebuffer_31504() { - System.Int32 _srcX0 = default(System.Int32); - System.Int32 _srcY0 = default(System.Int32); - System.Int32 _srcX1 = default(System.Int32); - System.Int32 _srcY1 = default(System.Int32); - System.Int32 _dstX0 = default(System.Int32); - System.Int32 _dstY0 = default(System.Int32); - System.Int32 _dstX1 = default(System.Int32); - System.Int32 _dstY1 = default(System.Int32); - OpenTK.Graphics.ES20.All _mask = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _filter = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.GL.Angle.BlitFramebuffer(_srcX0,_srcY0,_srcX1,_srcY1,_dstX0,_dstY0,_dstX1,_dstY1,_mask,_filter); -} -static unsafe void Test_BlitFramebuffer_31505() { - System.Int32 _srcX0 = default(System.Int32); - System.Int32 _srcY0 = default(System.Int32); - System.Int32 _srcX1 = default(System.Int32); - System.Int32 _srcY1 = default(System.Int32); - System.Int32 _dstX0 = default(System.Int32); - System.Int32 _dstY0 = default(System.Int32); - System.Int32 _dstX1 = default(System.Int32); - System.Int32 _dstY1 = default(System.Int32); - OpenTK.Graphics.ES20.ClearBufferMask _mask = default(OpenTK.Graphics.ES20.ClearBufferMask); - OpenTK.Graphics.ES20.BlitFramebufferFilter _filter = default(OpenTK.Graphics.ES20.BlitFramebufferFilter); - OpenTK.Graphics.ES20.GL.Angle.BlitFramebuffer(_srcX0,_srcY0,_srcX1,_srcY1,_dstX0,_dstY0,_dstX1,_dstY1,_mask,_filter); -} -static unsafe void Test_DrawArraysInstanced_31506() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Angle.DrawArraysInstanced(_mode,_first,_count,_primcount); -} -static unsafe void Test_DrawArraysInstanced_31507() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Angle.DrawArraysInstanced(_mode,_first,_count,_primcount); -} -static unsafe void Test_DrawElementsInstanced_31508() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Angle.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_31509() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Angle.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_31510() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Angle.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_31511() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Angle.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_31512() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Angle.DrawElementsInstanced(_mode,_count,_type,ref _indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_31513() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.DrawElementsType _type = default(OpenTK.Graphics.ES20.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Angle.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_31514() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.DrawElementsType _type = default(OpenTK.Graphics.ES20.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Angle.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_31515() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.DrawElementsType _type = default(OpenTK.Graphics.ES20.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Angle.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_31516() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.DrawElementsType _type = default(OpenTK.Graphics.ES20.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Angle.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_31517() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.DrawElementsType _type = default(OpenTK.Graphics.ES20.DrawElementsType); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Angle.DrawElementsInstanced(_mode,_count,_type,ref _indices,_primcount); -} -static unsafe void Test_GetTranslatedShaderSource_31518() { - System.Int32 _shader = default(System.Int32); - System.Int32 _bufsize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Angle.GetTranslatedShaderSource(_shader,_bufsize,_length,_source); -} -static unsafe void Test_GetTranslatedShaderSource_31519() { - System.Int32 _shader = default(System.Int32); - System.Int32 _bufsize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Angle.GetTranslatedShaderSource(_shader,_bufsize,out _length,_source); -} -static unsafe void Test_GetTranslatedShaderSource_31520() { - System.Int32 _shader = default(System.Int32); - System.Int32 _bufsize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Angle.GetTranslatedShaderSource(_shader,_bufsize,_length,_source); -} -static unsafe void Test_GetTranslatedShaderSource_31521() { - System.UInt32 _shader = default(System.UInt32); - System.Int32 _bufsize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Angle.GetTranslatedShaderSource(_shader,_bufsize,_length,_source); -} -static unsafe void Test_GetTranslatedShaderSource_31522() { - System.UInt32 _shader = default(System.UInt32); - System.Int32 _bufsize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Angle.GetTranslatedShaderSource(_shader,_bufsize,out _length,_source); -} -static unsafe void Test_GetTranslatedShaderSource_31523() { - System.UInt32 _shader = default(System.UInt32); - System.Int32 _bufsize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Angle.GetTranslatedShaderSource(_shader,_bufsize,_length,_source); -} -static unsafe void Test_RenderbufferStorageMultisample_31524() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.GL.Angle.RenderbufferStorageMultisample(_target,_samples,_internalformat,_width,_height); -} -static unsafe void Test_RenderbufferStorageMultisample_31525() { - OpenTK.Graphics.ES20.RenderbufferTarget _target = default(OpenTK.Graphics.ES20.RenderbufferTarget); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.ES20.RenderbufferInternalFormat _internalformat = default(OpenTK.Graphics.ES20.RenderbufferInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.GL.Angle.RenderbufferStorageMultisample(_target,_samples,_internalformat,_width,_height); -} -static unsafe void Test_VertexAttribDivisor_31526() { - System.Int32 _index = default(System.Int32); - System.Int32 _divisor = default(System.Int32); - OpenTK.Graphics.ES20.GL.Angle.VertexAttribDivisor(_index,_divisor); -} -static unsafe void Test_VertexAttribDivisor_31527() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _divisor = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Angle.VertexAttribDivisor(_index,_divisor); -} -static unsafe void Test_ClientWaitSync_31528() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES20.All _flags = default(OpenTK.Graphics.ES20.All); - System.Int64 _timeout = default(System.Int64); - OpenTK.Graphics.ES20.WaitSyncStatus r = OpenTK.Graphics.ES20.GL.Apple.ClientWaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_ClientWaitSync_31529() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES20.All _flags = default(OpenTK.Graphics.ES20.All); - System.UInt64 _timeout = default(System.UInt64); - OpenTK.Graphics.ES20.WaitSyncStatus r = OpenTK.Graphics.ES20.GL.Apple.ClientWaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_ClientWaitSync_31530() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES20.ClientWaitSyncFlags _flags = default(OpenTK.Graphics.ES20.ClientWaitSyncFlags); - System.Int64 _timeout = default(System.Int64); - OpenTK.Graphics.ES20.WaitSyncStatus r = OpenTK.Graphics.ES20.GL.Apple.ClientWaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_ClientWaitSync_31531() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES20.ClientWaitSyncFlags _flags = default(OpenTK.Graphics.ES20.ClientWaitSyncFlags); - System.UInt64 _timeout = default(System.UInt64); - OpenTK.Graphics.ES20.WaitSyncStatus r = OpenTK.Graphics.ES20.GL.Apple.ClientWaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_CopyTextureLevel_31532() { - System.Int32 _destinationTexture = default(System.Int32); - System.Int32 _sourceTexture = default(System.Int32); - System.Int32 _sourceBaseLevel = default(System.Int32); - System.Int32 _sourceLevelCount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Apple.CopyTextureLevel(_destinationTexture,_sourceTexture,_sourceBaseLevel,_sourceLevelCount); -} -static unsafe void Test_CopyTextureLevel_31533() { - System.UInt32 _destinationTexture = default(System.UInt32); - System.UInt32 _sourceTexture = default(System.UInt32); - System.Int32 _sourceBaseLevel = default(System.Int32); - System.Int32 _sourceLevelCount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Apple.CopyTextureLevel(_destinationTexture,_sourceTexture,_sourceBaseLevel,_sourceLevelCount); -} -static unsafe void Test_DeleteSync_31534() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.Apple.DeleteSync(_sync); -} -static unsafe void Test_FenceSync_31535() { - OpenTK.Graphics.ES20.All _condition = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _flags = default(OpenTK.Graphics.ES20.All); - System.IntPtr r = OpenTK.Graphics.ES20.GL.Apple.FenceSync(_condition,_flags); -} -static unsafe void Test_FenceSync_31536() { - OpenTK.Graphics.ES20.SyncCondition _condition = default(OpenTK.Graphics.ES20.SyncCondition); - OpenTK.Graphics.ES20.WaitSyncFlags _flags = default(OpenTK.Graphics.ES20.WaitSyncFlags); - System.IntPtr r = OpenTK.Graphics.ES20.GL.Apple.FenceSync(_condition,_flags); -} -static unsafe void Test_GetInteger64_31537() { - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int64 r = OpenTK.Graphics.ES20.GL.Apple.GetInteger64(_pname); -} -static unsafe void Test_GetInteger64_31538() { - OpenTK.Graphics.ES20.GetPName _pname = default(OpenTK.Graphics.ES20.GetPName); - System.Int64 r = OpenTK.Graphics.ES20.GL.Apple.GetInteger64(_pname); -} -static unsafe void Test_GetInteger64_31539() { - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.ES20.GL.Apple.GetInteger64(_pname,_params); -} -static unsafe void Test_GetInteger64_31540() { - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.ES20.GL.Apple.GetInteger64(_pname,out _params); -} -static unsafe void Test_GetInteger64_31541() { - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.ES20.GL.Apple.GetInteger64(_pname,_params); -} -static unsafe void Test_GetInteger64_31542() { - OpenTK.Graphics.ES20.GetPName _pname = default(OpenTK.Graphics.ES20.GetPName); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.ES20.GL.Apple.GetInteger64(_pname,_params); -} -static unsafe void Test_GetInteger64_31543() { - OpenTK.Graphics.ES20.GetPName _pname = default(OpenTK.Graphics.ES20.GetPName); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.ES20.GL.Apple.GetInteger64(_pname,out _params); -} -static unsafe void Test_GetInteger64_31544() { - OpenTK.Graphics.ES20.GetPName _pname = default(OpenTK.Graphics.ES20.GetPName); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.ES20.GL.Apple.GetInteger64(_pname,_params); -} -static unsafe void Test_GetSync_31545() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Int32[] _values = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Apple.GetSync(_sync,_pname,_bufSize,_length,_values); -} -static unsafe void Test_GetSync_31546() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _values = default(System.Int32); - OpenTK.Graphics.ES20.GL.Apple.GetSync(_sync,_pname,_bufSize,out _length,out _values); -} -static unsafe void Test_GetSync_31547() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _values = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Apple.GetSync(_sync,_pname,_bufSize,_length,_values); -} -static unsafe void Test_GetSync_31548() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES20.SyncParameterName _pname = default(OpenTK.Graphics.ES20.SyncParameterName); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Int32[] _values = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Apple.GetSync(_sync,_pname,_bufSize,_length,_values); -} -static unsafe void Test_GetSync_31549() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES20.SyncParameterName _pname = default(OpenTK.Graphics.ES20.SyncParameterName); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _values = default(System.Int32); - OpenTK.Graphics.ES20.GL.Apple.GetSync(_sync,_pname,_bufSize,out _length,out _values); -} -static unsafe void Test_GetSync_31550() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES20.SyncParameterName _pname = default(OpenTK.Graphics.ES20.SyncParameterName); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _values = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Apple.GetSync(_sync,_pname,_bufSize,_length,_values); -} -static unsafe void Test_IsSync_31551() { - System.IntPtr _sync = default(System.IntPtr); - System.Boolean r = OpenTK.Graphics.ES20.GL.Apple.IsSync(_sync); -} -static unsafe void Test_RenderbufferStorageMultisample_31552() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.GL.Apple.RenderbufferStorageMultisample(_target,_samples,_internalformat,_width,_height); -} -static unsafe void Test_RenderbufferStorageMultisample_31553() { - OpenTK.Graphics.ES20.RenderbufferTarget _target = default(OpenTK.Graphics.ES20.RenderbufferTarget); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.ES20.RenderbufferInternalFormat _internalformat = default(OpenTK.Graphics.ES20.RenderbufferInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.GL.Apple.RenderbufferStorageMultisample(_target,_samples,_internalformat,_width,_height); -} -static unsafe void Test_ResolveMultisampleFramebuffer_31554() { - OpenTK.Graphics.ES20.GL.Apple.ResolveMultisampleFramebuffer(); -} -static unsafe void Test_WaitSync_31555() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES20.All _flags = default(OpenTK.Graphics.ES20.All); - System.Int64 _timeout = default(System.Int64); - OpenTK.Graphics.ES20.GL.Apple.WaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_WaitSync_31556() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES20.All _flags = default(OpenTK.Graphics.ES20.All); - System.UInt64 _timeout = default(System.UInt64); - OpenTK.Graphics.ES20.GL.Apple.WaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_WaitSync_31557() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES20.WaitSyncFlags _flags = default(OpenTK.Graphics.ES20.WaitSyncFlags); - System.Int64 _timeout = default(System.Int64); - OpenTK.Graphics.ES20.GL.Apple.WaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_WaitSync_31558() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES20.WaitSyncFlags _flags = default(OpenTK.Graphics.ES20.WaitSyncFlags); - System.UInt64 _timeout = default(System.UInt64); - OpenTK.Graphics.ES20.GL.Apple.WaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_ActiveProgram_31559() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.ActiveProgram(_program); -} -static unsafe void Test_ActiveProgram_31560() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Ext.ActiveProgram(_program); -} -static unsafe void Test_ActiveShaderProgram_31561() { - System.Int32 _pipeline = default(System.Int32); - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.ActiveShaderProgram(_pipeline,_program); -} -static unsafe void Test_ActiveShaderProgram_31562() { - System.UInt32 _pipeline = default(System.UInt32); - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Ext.ActiveShaderProgram(_pipeline,_program); -} -static unsafe void Test_BeginQuery_31563() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.BeginQuery(_target,_id); -} -static unsafe void Test_BeginQuery_31564() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Ext.BeginQuery(_target,_id); -} -static unsafe void Test_BeginQuery_31565() { - OpenTK.Graphics.ES20.QueryTarget _target = default(OpenTK.Graphics.ES20.QueryTarget); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.BeginQuery(_target,_id); -} -static unsafe void Test_BeginQuery_31566() { - OpenTK.Graphics.ES20.QueryTarget _target = default(OpenTK.Graphics.ES20.QueryTarget); - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Ext.BeginQuery(_target,_id); -} -static unsafe void Test_BindProgramPipeline_31567() { - System.Int32 _pipeline = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.BindProgramPipeline(_pipeline); -} -static unsafe void Test_BindProgramPipeline_31568() { - System.UInt32 _pipeline = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Ext.BindProgramPipeline(_pipeline); -} -static unsafe void Test_BlendEquation_31569() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.GL.Ext.BlendEquation(_mode); -} -static unsafe void Test_BlendEquation_31570() { - OpenTK.Graphics.ES20.BlendEquationMode _mode = default(OpenTK.Graphics.ES20.BlendEquationMode); - OpenTK.Graphics.ES20.GL.Ext.BlendEquation(_mode); -} -static unsafe void Test_BlendEquation_31571() { - System.Int32 _buf = default(System.Int32); - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.GL.Ext.BlendEquation(_buf,_mode); -} -static unsafe void Test_BlendEquation_31572() { - System.Int32 _buf = default(System.Int32); - OpenTK.Graphics.ES20.BlendEquationMode _mode = default(OpenTK.Graphics.ES20.BlendEquationMode); - OpenTK.Graphics.ES20.GL.Ext.BlendEquation(_buf,_mode); -} -static unsafe void Test_BlendEquation_31573() { - System.UInt32 _buf = default(System.UInt32); - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.GL.Ext.BlendEquation(_buf,_mode); -} -static unsafe void Test_BlendEquation_31574() { - System.UInt32 _buf = default(System.UInt32); - OpenTK.Graphics.ES20.BlendEquationMode _mode = default(OpenTK.Graphics.ES20.BlendEquationMode); - OpenTK.Graphics.ES20.GL.Ext.BlendEquation(_buf,_mode); -} -static unsafe void Test_BlendEquationSeparate_31575() { - System.Int32 _buf = default(System.Int32); - OpenTK.Graphics.ES20.All _modeRGB = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _modeAlpha = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.GL.Ext.BlendEquationSeparate(_buf,_modeRGB,_modeAlpha); -} -static unsafe void Test_BlendEquationSeparate_31576() { - System.Int32 _buf = default(System.Int32); - OpenTK.Graphics.ES20.BlendEquationMode _modeRGB = default(OpenTK.Graphics.ES20.BlendEquationMode); - OpenTK.Graphics.ES20.BlendEquationMode _modeAlpha = default(OpenTK.Graphics.ES20.BlendEquationMode); - OpenTK.Graphics.ES20.GL.Ext.BlendEquationSeparate(_buf,_modeRGB,_modeAlpha); -} -static unsafe void Test_BlendEquationSeparate_31577() { - System.UInt32 _buf = default(System.UInt32); - OpenTK.Graphics.ES20.All _modeRGB = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _modeAlpha = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.GL.Ext.BlendEquationSeparate(_buf,_modeRGB,_modeAlpha); -} -static unsafe void Test_BlendEquationSeparate_31578() { - System.UInt32 _buf = default(System.UInt32); - OpenTK.Graphics.ES20.BlendEquationMode _modeRGB = default(OpenTK.Graphics.ES20.BlendEquationMode); - OpenTK.Graphics.ES20.BlendEquationMode _modeAlpha = default(OpenTK.Graphics.ES20.BlendEquationMode); - OpenTK.Graphics.ES20.GL.Ext.BlendEquationSeparate(_buf,_modeRGB,_modeAlpha); -} -static unsafe void Test_BlendFunc_31579() { - System.Int32 _buf = default(System.Int32); - OpenTK.Graphics.ES20.All _src = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _dst = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.GL.Ext.BlendFunc(_buf,_src,_dst); -} -static unsafe void Test_BlendFunc_31580() { - System.UInt32 _buf = default(System.UInt32); - OpenTK.Graphics.ES20.All _src = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _dst = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.GL.Ext.BlendFunc(_buf,_src,_dst); -} -static unsafe void Test_BlendFuncSeparate_31581() { - System.Int32 _buf = default(System.Int32); - OpenTK.Graphics.ES20.All _srcRGB = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _dstRGB = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _srcAlpha = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _dstAlpha = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.GL.Ext.BlendFuncSeparate(_buf,_srcRGB,_dstRGB,_srcAlpha,_dstAlpha); -} -static unsafe void Test_BlendFuncSeparate_31582() { - System.UInt32 _buf = default(System.UInt32); - OpenTK.Graphics.ES20.All _srcRGB = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _dstRGB = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _srcAlpha = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _dstAlpha = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.GL.Ext.BlendFuncSeparate(_buf,_srcRGB,_dstRGB,_srcAlpha,_dstAlpha); -} -static unsafe void Test_ColorMask_31583() { - System.Int32 _index = default(System.Int32); - System.Boolean _r = default(System.Boolean); - System.Boolean _g = default(System.Boolean); - System.Boolean _b = default(System.Boolean); - System.Boolean _a = default(System.Boolean); - OpenTK.Graphics.ES20.GL.Ext.ColorMask(_index,_r,_g,_b,_a); -} -static unsafe void Test_ColorMask_31584() { - System.UInt32 _index = default(System.UInt32); - System.Boolean _r = default(System.Boolean); - System.Boolean _g = default(System.Boolean); - System.Boolean _b = default(System.Boolean); - System.Boolean _a = default(System.Boolean); - OpenTK.Graphics.ES20.GL.Ext.ColorMask(_index,_r,_g,_b,_a); -} -static unsafe void Test_CopyImageSubData_31585() { - System.Int32 _srcName = default(System.Int32); - OpenTK.Graphics.ES20.All _srcTarget = default(OpenTK.Graphics.ES20.All); - System.Int32 _srcLevel = default(System.Int32); - System.Int32 _srcX = default(System.Int32); - System.Int32 _srcY = default(System.Int32); - System.Int32 _srcZ = default(System.Int32); - System.Int32 _dstName = default(System.Int32); - OpenTK.Graphics.ES20.All _dstTarget = default(OpenTK.Graphics.ES20.All); - System.Int32 _dstLevel = default(System.Int32); - System.Int32 _dstX = default(System.Int32); - System.Int32 _dstY = default(System.Int32); - System.Int32 _dstZ = default(System.Int32); - System.Int32 _srcWidth = default(System.Int32); - System.Int32 _srcHeight = default(System.Int32); - System.Int32 _srcDepth = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.CopyImageSubData(_srcName,_srcTarget,_srcLevel,_srcX,_srcY,_srcZ,_dstName,_dstTarget,_dstLevel,_dstX,_dstY,_dstZ,_srcWidth,_srcHeight,_srcDepth); -} -static unsafe void Test_CopyImageSubData_31586() { - System.UInt32 _srcName = default(System.UInt32); - OpenTK.Graphics.ES20.All _srcTarget = default(OpenTK.Graphics.ES20.All); - System.Int32 _srcLevel = default(System.Int32); - System.Int32 _srcX = default(System.Int32); - System.Int32 _srcY = default(System.Int32); - System.Int32 _srcZ = default(System.Int32); - System.UInt32 _dstName = default(System.UInt32); - OpenTK.Graphics.ES20.All _dstTarget = default(OpenTK.Graphics.ES20.All); - System.Int32 _dstLevel = default(System.Int32); - System.Int32 _dstX = default(System.Int32); - System.Int32 _dstY = default(System.Int32); - System.Int32 _dstZ = default(System.Int32); - System.Int32 _srcWidth = default(System.Int32); - System.Int32 _srcHeight = default(System.Int32); - System.Int32 _srcDepth = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.CopyImageSubData(_srcName,_srcTarget,_srcLevel,_srcX,_srcY,_srcZ,_dstName,_dstTarget,_dstLevel,_dstX,_dstY,_dstZ,_srcWidth,_srcHeight,_srcDepth); -} -static unsafe void Test_CreateShaderProgram_31587() { - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.String _string = default(System.String); - System.Int32 r = OpenTK.Graphics.ES20.GL.Ext.CreateShaderProgram(_type,_string); -} -static unsafe void Test_CreateShaderProgram_31588() { - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.Int32 _count = default(System.Int32); - System.String[] _strings = default(System.String[]); - System.Int32 r = OpenTK.Graphics.ES20.GL.Ext.CreateShaderProgram(_type,_count,_strings); -} -static unsafe void Test_DeleteProgramPipeline_31589() { - System.Int32 _pipelines = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.DeleteProgramPipeline(_pipelines); -} -static unsafe void Test_DeleteProgramPipeline_31590() { - System.UInt32 _pipelines = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Ext.DeleteProgramPipeline(_pipelines); -} -static unsafe void Test_DeleteProgramPipelines_31591() { - System.Int32 _n = default(System.Int32); - System.Int32[] _pipelines = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Ext.DeleteProgramPipelines(_n,_pipelines); -} -static unsafe void Test_DeleteProgramPipelines_31592() { - System.Int32 _n = default(System.Int32); - System.Int32 _pipelines = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.DeleteProgramPipelines(_n,ref _pipelines); -} -static unsafe void Test_DeleteProgramPipelines_31593() { - System.Int32 _n = default(System.Int32); - System.Int32* _pipelines = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Ext.DeleteProgramPipelines(_n,_pipelines); -} -static unsafe void Test_DeleteProgramPipelines_31594() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _pipelines = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.Ext.DeleteProgramPipelines(_n,_pipelines); -} -static unsafe void Test_DeleteProgramPipelines_31595() { - System.Int32 _n = default(System.Int32); - System.UInt32 _pipelines = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Ext.DeleteProgramPipelines(_n,ref _pipelines); -} -static unsafe void Test_DeleteProgramPipelines_31596() { - System.Int32 _n = default(System.Int32); - System.UInt32* _pipelines = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.Ext.DeleteProgramPipelines(_n,_pipelines); -} -static unsafe void Test_DeleteQuery_31597() { - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.DeleteQuery(_ids); -} -static unsafe void Test_DeleteQuery_31598() { - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Ext.DeleteQuery(_ids); -} -static unsafe void Test_DeleteQueries_31599() { - System.Int32 _n = default(System.Int32); - System.Int32[] _ids = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Ext.DeleteQueries(_n,_ids); -} -static unsafe void Test_DeleteQueries_31600() { - System.Int32 _n = default(System.Int32); - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.DeleteQueries(_n,ref _ids); -} -static unsafe void Test_DeleteQueries_31601() { - System.Int32 _n = default(System.Int32); - System.Int32* _ids = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Ext.DeleteQueries(_n,_ids); -} -static unsafe void Test_DeleteQueries_31602() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _ids = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.Ext.DeleteQueries(_n,_ids); -} -static unsafe void Test_DeleteQueries_31603() { - System.Int32 _n = default(System.Int32); - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Ext.DeleteQueries(_n,ref _ids); -} -static unsafe void Test_DeleteQueries_31604() { - System.Int32 _n = default(System.Int32); - System.UInt32* _ids = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.Ext.DeleteQueries(_n,_ids); -} -static unsafe void Test_Disable_31605() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.Disable(_target,_index); -} -static unsafe void Test_Disable_31606() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Ext.Disable(_target,_index); -} -static unsafe void Test_DiscardFramebuffer_31607() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _numAttachments = default(System.Int32); - OpenTK.Graphics.ES20.All[] _attachments = default(OpenTK.Graphics.ES20.All[]); - OpenTK.Graphics.ES20.GL.Ext.DiscardFramebuffer(_target,_numAttachments,_attachments); -} -static unsafe void Test_DiscardFramebuffer_31608() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _numAttachments = default(System.Int32); - OpenTK.Graphics.ES20.All _attachments = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.GL.Ext.DiscardFramebuffer(_target,_numAttachments,ref _attachments); -} -static unsafe void Test_DiscardFramebuffer_31609() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _numAttachments = default(System.Int32); - OpenTK.Graphics.ES20.All* _attachments = default(OpenTK.Graphics.ES20.All*); - OpenTK.Graphics.ES20.GL.Ext.DiscardFramebuffer(_target,_numAttachments,_attachments); -} -static unsafe void Test_DrawArraysInstanced_31610() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32 _start = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.DrawArraysInstanced(_mode,_start,_count,_primcount); -} -static unsafe void Test_DrawArraysInstanced_31611() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32 _start = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.DrawArraysInstanced(_mode,_start,_count,_primcount); -} -static unsafe void Test_DrawBuffers_31612() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.ES20.All[] _bufs = default(OpenTK.Graphics.ES20.All[]); - OpenTK.Graphics.ES20.GL.Ext.DrawBuffers(_n,_bufs); -} -static unsafe void Test_DrawBuffers_31613() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.ES20.All _bufs = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.GL.Ext.DrawBuffers(_n,ref _bufs); -} -static unsafe void Test_DrawBuffers_31614() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.ES20.All* _bufs = default(OpenTK.Graphics.ES20.All*); - OpenTK.Graphics.ES20.GL.Ext.DrawBuffers(_n,_bufs); -} -static unsafe void Test_DrawBuffers_31615() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.ES20.DrawBufferMode[] _bufs = default(OpenTK.Graphics.ES20.DrawBufferMode[]); - OpenTK.Graphics.ES20.GL.Ext.DrawBuffers(_n,_bufs); -} -static unsafe void Test_DrawBuffers_31616() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.ES20.DrawBufferMode _bufs = default(OpenTK.Graphics.ES20.DrawBufferMode); - OpenTK.Graphics.ES20.GL.Ext.DrawBuffers(_n,ref _bufs); -} -static unsafe void Test_DrawBuffers_31617() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.ES20.DrawBufferMode* _bufs = default(OpenTK.Graphics.ES20.DrawBufferMode*); - OpenTK.Graphics.ES20.GL.Ext.DrawBuffers(_n,_bufs); -} -static unsafe void Test_DrawBuffersIndexed_31618() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.ES20.All[] _location = default(OpenTK.Graphics.ES20.All[]); - System.Int32[] _indices = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Ext.DrawBuffersIndexed(_n,_location,_indices); -} -static unsafe void Test_DrawBuffersIndexed_31619() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.ES20.All _location = default(OpenTK.Graphics.ES20.All); - System.Int32 _indices = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.DrawBuffersIndexed(_n,ref _location,ref _indices); -} -static unsafe void Test_DrawBuffersIndexed_31620() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.ES20.All* _location = default(OpenTK.Graphics.ES20.All*); - System.Int32* _indices = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Ext.DrawBuffersIndexed(_n,_location,_indices); -} -static unsafe void Test_DrawElementsInstanced_31621() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_31622() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_31623() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_31624() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_31625() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.DrawElementsInstanced(_mode,_count,_type,ref _indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_31626() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.DrawElementsType _type = default(OpenTK.Graphics.ES20.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_31627() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.DrawElementsType _type = default(OpenTK.Graphics.ES20.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_31628() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.DrawElementsType _type = default(OpenTK.Graphics.ES20.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_31629() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.DrawElementsType _type = default(OpenTK.Graphics.ES20.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_31630() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.DrawElementsType _type = default(OpenTK.Graphics.ES20.DrawElementsType); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.DrawElementsInstanced(_mode,_count,_type,ref _indices,_primcount); -} -static unsafe void Test_Enable_31631() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.Enable(_target,_index); -} -static unsafe void Test_Enable_31632() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Ext.Enable(_target,_index); -} -static unsafe void Test_EndQuery_31633() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.GL.Ext.EndQuery(_target); -} -static unsafe void Test_EndQuery_31634() { - OpenTK.Graphics.ES20.QueryTarget _target = default(OpenTK.Graphics.ES20.QueryTarget); - OpenTK.Graphics.ES20.GL.Ext.EndQuery(_target); -} -static unsafe void Test_FlushMappedBufferRange_31635() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _length = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.Ext.FlushMappedBufferRange(_target,_offset,_length); -} -static unsafe void Test_FlushMappedBufferRange_31636() { - OpenTK.Graphics.ES20.BufferTarget _target = default(OpenTK.Graphics.ES20.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _length = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.Ext.FlushMappedBufferRange(_target,_offset,_length); -} -static unsafe void Test_FramebufferTexture2DMultisample_31637() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _attachment = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _textarget = default(OpenTK.Graphics.ES20.All); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.FramebufferTexture2DMultisample(_target,_attachment,_textarget,_texture,_level,_samples); -} -static unsafe void Test_FramebufferTexture2DMultisample_31638() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _attachment = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _textarget = default(OpenTK.Graphics.ES20.All); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.FramebufferTexture2DMultisample(_target,_attachment,_textarget,_texture,_level,_samples); -} -static unsafe void Test_FramebufferTexture_31639() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _attachment = default(OpenTK.Graphics.ES20.All); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.FramebufferTexture(_target,_attachment,_texture,_level); -} -static unsafe void Test_FramebufferTexture_31640() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _attachment = default(OpenTK.Graphics.ES20.All); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.FramebufferTexture(_target,_attachment,_texture,_level); -} -static unsafe void Test_FramebufferTexture_31641() { - OpenTK.Graphics.ES20.FramebufferTarget _target = default(OpenTK.Graphics.ES20.FramebufferTarget); - OpenTK.Graphics.ES20.All _attachment = default(OpenTK.Graphics.ES20.All); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.FramebufferTexture(_target,_attachment,_texture,_level); -} -static unsafe void Test_FramebufferTexture_31642() { - OpenTK.Graphics.ES20.FramebufferTarget _target = default(OpenTK.Graphics.ES20.FramebufferTarget); - OpenTK.Graphics.ES20.All _attachment = default(OpenTK.Graphics.ES20.All); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.FramebufferTexture(_target,_attachment,_texture,_level); -} -static unsafe void Test_GenProgramPipeline_31643() { - System.Int32 r = OpenTK.Graphics.ES20.GL.Ext.GenProgramPipeline(); -} -static unsafe void Test_GenProgramPipelines_31644() { - System.Int32 _n = default(System.Int32); - System.Int32[] _pipelines = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Ext.GenProgramPipelines(_n,_pipelines); -} -static unsafe void Test_GenProgramPipelines_31645() { - System.Int32 _n = default(System.Int32); - System.Int32 _pipelines = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.GenProgramPipelines(_n,out _pipelines); -} -static unsafe void Test_GenProgramPipelines_31646() { - System.Int32 _n = default(System.Int32); - System.Int32* _pipelines = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Ext.GenProgramPipelines(_n,_pipelines); -} -static unsafe void Test_GenProgramPipelines_31647() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _pipelines = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.Ext.GenProgramPipelines(_n,_pipelines); -} -static unsafe void Test_GenProgramPipelines_31648() { - System.Int32 _n = default(System.Int32); - System.UInt32 _pipelines = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Ext.GenProgramPipelines(_n,out _pipelines); -} -static unsafe void Test_GenProgramPipelines_31649() { - System.Int32 _n = default(System.Int32); - System.UInt32* _pipelines = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.Ext.GenProgramPipelines(_n,_pipelines); -} -static unsafe void Test_GenQuery_31650() { - System.Int32 r = OpenTK.Graphics.ES20.GL.Ext.GenQuery(); -} -static unsafe void Test_GenQueries_31651() { - System.Int32 _n = default(System.Int32); - System.Int32[] _ids = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Ext.GenQueries(_n,_ids); -} -static unsafe void Test_GenQueries_31652() { - System.Int32 _n = default(System.Int32); - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.GenQueries(_n,out _ids); -} -static unsafe void Test_GenQueries_31653() { - System.Int32 _n = default(System.Int32); - System.Int32* _ids = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Ext.GenQueries(_n,_ids); -} -static unsafe void Test_GenQueries_31654() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _ids = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.Ext.GenQueries(_n,_ids); -} -static unsafe void Test_GenQueries_31655() { - System.Int32 _n = default(System.Int32); - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Ext.GenQueries(_n,out _ids); -} -static unsafe void Test_GenQueries_31656() { - System.Int32 _n = default(System.Int32); - System.UInt32* _ids = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.Ext.GenQueries(_n,_ids); -} -static unsafe void Test_GetGraphicsResetStatus_31657() { - OpenTK.Graphics.ES20.All r = OpenTK.Graphics.ES20.GL.Ext.GetGraphicsResetStatus(); -} -static unsafe void Test_GetInteger_31658() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _index = default(System.Int32); - System.Int32[] _data = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Ext.GetInteger(_target,_index,_data); -} -static unsafe void Test_GetInteger_31659() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _index = default(System.Int32); - System.Int32 _data = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.GetInteger(_target,_index,out _data); -} -static unsafe void Test_GetInteger_31660() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _index = default(System.Int32); - System.Int32* _data = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Ext.GetInteger(_target,_index,_data); -} -static unsafe void Test_GetInteger_31661() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.UInt32 _index = default(System.UInt32); - System.Int32[] _data = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Ext.GetInteger(_target,_index,_data); -} -static unsafe void Test_GetInteger_31662() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.UInt32 _index = default(System.UInt32); - System.Int32 _data = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.GetInteger(_target,_index,out _data); -} -static unsafe void Test_GetInteger_31663() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.UInt32 _index = default(System.UInt32); - System.Int32* _data = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Ext.GetInteger(_target,_index,_data); -} -static unsafe void Test_GetInteger_31664() { - OpenTK.Graphics.ES20.GetIndexedPName _target = default(OpenTK.Graphics.ES20.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Int32[] _data = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Ext.GetInteger(_target,_index,_data); -} -static unsafe void Test_GetInteger_31665() { - OpenTK.Graphics.ES20.GetIndexedPName _target = default(OpenTK.Graphics.ES20.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Int32 _data = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.GetInteger(_target,_index,out _data); -} -static unsafe void Test_GetInteger_31666() { - OpenTK.Graphics.ES20.GetIndexedPName _target = default(OpenTK.Graphics.ES20.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Int32* _data = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Ext.GetInteger(_target,_index,_data); -} -static unsafe void Test_GetInteger_31667() { - OpenTK.Graphics.ES20.GetIndexedPName _target = default(OpenTK.Graphics.ES20.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Int32[] _data = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Ext.GetInteger(_target,_index,_data); -} -static unsafe void Test_GetInteger_31668() { - OpenTK.Graphics.ES20.GetIndexedPName _target = default(OpenTK.Graphics.ES20.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Int32 _data = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.GetInteger(_target,_index,out _data); -} -static unsafe void Test_GetInteger_31669() { - OpenTK.Graphics.ES20.GetIndexedPName _target = default(OpenTK.Graphics.ES20.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Int32* _data = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Ext.GetInteger(_target,_index,_data); -} -static unsafe void Test_GetnUniform_31670() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES20.GL.Ext.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_31671() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Single _params = default(System.Single); - OpenTK.Graphics.ES20.GL.Ext.GetnUniform(_program,_location,_bufSize,out _params); -} -static unsafe void Test_GetnUniform_31672() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES20.GL.Ext.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_31673() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES20.GL.Ext.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_31674() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Single _params = default(System.Single); - OpenTK.Graphics.ES20.GL.Ext.GetnUniform(_program,_location,_bufSize,out _params); -} -static unsafe void Test_GetnUniform_31675() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES20.GL.Ext.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_31676() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Ext.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_31677() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.GetnUniform(_program,_location,_bufSize,out _params); -} -static unsafe void Test_GetnUniform_31678() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Ext.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_31679() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Ext.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_31680() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.GetnUniform(_program,_location,_bufSize,out _params); -} -static unsafe void Test_GetnUniform_31681() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Ext.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetObjectLabel_31682() { - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.Int32 _object = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Ext.GetObjectLabel(_type,_object,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_31683() { - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.Int32 _object = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Ext.GetObjectLabel(_type,_object,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectLabel_31684() { - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.Int32 _object = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Ext.GetObjectLabel(_type,_object,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_31685() { - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.UInt32 _object = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Ext.GetObjectLabel(_type,_object,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_31686() { - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.UInt32 _object = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Ext.GetObjectLabel(_type,_object,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectLabel_31687() { - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.UInt32 _object = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Ext.GetObjectLabel(_type,_object,_bufSize,_length,_label); -} -static unsafe void Test_GetProgramPipelineInfoLog_31688() { - System.Int32 _pipeline = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Ext.GetProgramPipelineInfoLog(_pipeline,_bufSize,_length,_infoLog); -} -static unsafe void Test_GetProgramPipelineInfoLog_31689() { - System.Int32 _pipeline = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Ext.GetProgramPipelineInfoLog(_pipeline,_bufSize,out _length,_infoLog); -} -static unsafe void Test_GetProgramPipelineInfoLog_31690() { - System.Int32 _pipeline = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Ext.GetProgramPipelineInfoLog(_pipeline,_bufSize,_length,_infoLog); -} -static unsafe void Test_GetProgramPipelineInfoLog_31691() { - System.UInt32 _pipeline = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Ext.GetProgramPipelineInfoLog(_pipeline,_bufSize,_length,_infoLog); -} -static unsafe void Test_GetProgramPipelineInfoLog_31692() { - System.UInt32 _pipeline = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Ext.GetProgramPipelineInfoLog(_pipeline,_bufSize,out _length,_infoLog); -} -static unsafe void Test_GetProgramPipelineInfoLog_31693() { - System.UInt32 _pipeline = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Ext.GetProgramPipelineInfoLog(_pipeline,_bufSize,_length,_infoLog); -} -static unsafe void Test_GetProgramPipeline_31694() { - System.Int32 _pipeline = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Ext.GetProgramPipeline(_pipeline,_pname,_params); -} -static unsafe void Test_GetProgramPipeline_31695() { - System.Int32 _pipeline = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.GetProgramPipeline(_pipeline,_pname,out _params); -} -static unsafe void Test_GetProgramPipeline_31696() { - System.Int32 _pipeline = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Ext.GetProgramPipeline(_pipeline,_pname,_params); -} -static unsafe void Test_GetProgramPipeline_31697() { - System.UInt32 _pipeline = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Ext.GetProgramPipeline(_pipeline,_pname,_params); -} -static unsafe void Test_GetProgramPipeline_31698() { - System.UInt32 _pipeline = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.GetProgramPipeline(_pipeline,_pname,out _params); -} -static unsafe void Test_GetProgramPipeline_31699() { - System.UInt32 _pipeline = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Ext.GetProgramPipeline(_pipeline,_pname,_params); -} -static unsafe void Test_GetQuery_31700() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Ext.GetQuery(_target,_pname,_params); -} -static unsafe void Test_GetQuery_31701() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.GetQuery(_target,_pname,out _params); -} -static unsafe void Test_GetQuery_31702() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Ext.GetQuery(_target,_pname,_params); -} -static unsafe void Test_GetQuery_31703() { - OpenTK.Graphics.ES20.QueryTarget _target = default(OpenTK.Graphics.ES20.QueryTarget); - OpenTK.Graphics.ES20.GetQueryParam _pname = default(OpenTK.Graphics.ES20.GetQueryParam); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Ext.GetQuery(_target,_pname,_params); -} -static unsafe void Test_GetQuery_31704() { - OpenTK.Graphics.ES20.QueryTarget _target = default(OpenTK.Graphics.ES20.QueryTarget); - OpenTK.Graphics.ES20.GetQueryParam _pname = default(OpenTK.Graphics.ES20.GetQueryParam); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.GetQuery(_target,_pname,out _params); -} -static unsafe void Test_GetQuery_31705() { - OpenTK.Graphics.ES20.QueryTarget _target = default(OpenTK.Graphics.ES20.QueryTarget); - OpenTK.Graphics.ES20.GetQueryParam _pname = default(OpenTK.Graphics.ES20.GetQueryParam); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Ext.GetQuery(_target,_pname,_params); -} -static unsafe void Test_GetQueryObject_31706() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.ES20.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_31707() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.ES20.GL.Ext.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_31708() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.ES20.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_31709() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES20.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES20.GetQueryObjectParam); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.ES20.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_31710() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES20.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES20.GetQueryObjectParam); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.ES20.GL.Ext.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_31711() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES20.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES20.GetQueryObjectParam); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.ES20.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_31712() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.ES20.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_31713() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.ES20.GL.Ext.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_31714() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.ES20.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_31715() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES20.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES20.GetQueryObjectParam); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.ES20.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_31716() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES20.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES20.GetQueryObjectParam); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.ES20.GL.Ext.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_31717() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES20.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES20.GetQueryObjectParam); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.ES20.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_31718() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_31719() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_31720() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_31721() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES20.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES20.GetQueryObjectParam); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_31722() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES20.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES20.GetQueryObjectParam); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_31723() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES20.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES20.GetQueryObjectParam); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_31724() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_31725() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_31726() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_31727() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES20.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES20.GetQueryObjectParam); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_31728() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES20.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES20.GetQueryObjectParam); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_31729() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES20.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES20.GetQueryObjectParam); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_31730() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.UInt64[] _params = default(System.UInt64[]); - OpenTK.Graphics.ES20.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_31731() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.UInt64 _params = default(System.UInt64); - OpenTK.Graphics.ES20.GL.Ext.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_31732() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.UInt64* _params = default(System.UInt64*); - OpenTK.Graphics.ES20.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_31733() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES20.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES20.GetQueryObjectParam); - System.UInt64[] _params = default(System.UInt64[]); - OpenTK.Graphics.ES20.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_31734() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES20.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES20.GetQueryObjectParam); - System.UInt64 _params = default(System.UInt64); - OpenTK.Graphics.ES20.GL.Ext.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_31735() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES20.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES20.GetQueryObjectParam); - System.UInt64* _params = default(System.UInt64*); - OpenTK.Graphics.ES20.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_31736() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_31737() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Ext.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_31738() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_31739() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES20.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES20.GetQueryObjectParam); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_31740() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES20.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES20.GetQueryObjectParam); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Ext.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_31741() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES20.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES20.GetQueryObjectParam); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetSamplerParameterI_31742() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Ext.GetSamplerParameterI(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameterI_31743() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.GetSamplerParameterI(_sampler,_pname,out _params); -} -static unsafe void Test_GetSamplerParameterI_31744() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Ext.GetSamplerParameterI(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameterI_31745() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Ext.GetSamplerParameterI(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameterI_31746() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.GetSamplerParameterI(_sampler,_pname,out _params); -} -static unsafe void Test_GetSamplerParameterI_31747() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Ext.GetSamplerParameterI(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameterI_31748() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.Ext.GetSamplerParameterI(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameterI_31749() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Ext.GetSamplerParameterI(_sampler,_pname,out _params); -} -static unsafe void Test_GetSamplerParameterI_31750() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.Ext.GetSamplerParameterI(_sampler,_pname,_params); -} -static unsafe void Test_GetTexParameterI_31751() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Ext.GetTexParameterI(_target,_pname,_params); -} -static unsafe void Test_GetTexParameterI_31752() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.GetTexParameterI(_target,_pname,out _params); -} -static unsafe void Test_GetTexParameterI_31753() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Ext.GetTexParameterI(_target,_pname,_params); -} -static unsafe void Test_GetTexParameterI_31754() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - OpenTK.Graphics.ES20.GetTextureParameter _pname = default(OpenTK.Graphics.ES20.GetTextureParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Ext.GetTexParameterI(_target,_pname,_params); -} -static unsafe void Test_GetTexParameterI_31755() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - OpenTK.Graphics.ES20.GetTextureParameter _pname = default(OpenTK.Graphics.ES20.GetTextureParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.GetTexParameterI(_target,_pname,out _params); -} -static unsafe void Test_GetTexParameterI_31756() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - OpenTK.Graphics.ES20.GetTextureParameter _pname = default(OpenTK.Graphics.ES20.GetTextureParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Ext.GetTexParameterI(_target,_pname,_params); -} -static unsafe void Test_GetTexParameterI_31757() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.Ext.GetTexParameterI(_target,_pname,_params); -} -static unsafe void Test_GetTexParameterI_31758() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Ext.GetTexParameterI(_target,_pname,out _params); -} -static unsafe void Test_GetTexParameterI_31759() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.Ext.GetTexParameterI(_target,_pname,_params); -} -static unsafe void Test_GetTexParameterI_31760() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - OpenTK.Graphics.ES20.GetTextureParameter _pname = default(OpenTK.Graphics.ES20.GetTextureParameter); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.Ext.GetTexParameterI(_target,_pname,_params); -} -static unsafe void Test_GetTexParameterI_31761() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - OpenTK.Graphics.ES20.GetTextureParameter _pname = default(OpenTK.Graphics.ES20.GetTextureParameter); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Ext.GetTexParameterI(_target,_pname,out _params); -} -static unsafe void Test_GetTexParameterI_31762() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - OpenTK.Graphics.ES20.GetTextureParameter _pname = default(OpenTK.Graphics.ES20.GetTextureParameter); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.Ext.GetTexParameterI(_target,_pname,_params); -} -static unsafe void Test_InsertEventMarker_31763() { - System.Int32 _length = default(System.Int32); - System.String _marker = default(System.String); - OpenTK.Graphics.ES20.GL.Ext.InsertEventMarker(_length,_marker); -} -static unsafe void Test_IsEnabled_31764() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _index = default(System.Int32); - System.Boolean r = OpenTK.Graphics.ES20.GL.Ext.IsEnabled(_target,_index); -} -static unsafe void Test_IsEnabled_31765() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.UInt32 _index = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.ES20.GL.Ext.IsEnabled(_target,_index); -} -static unsafe void Test_IsProgramPipeline_31766() { - System.Int32 _pipeline = default(System.Int32); - System.Boolean r = OpenTK.Graphics.ES20.GL.Ext.IsProgramPipeline(_pipeline); -} -static unsafe void Test_IsProgramPipeline_31767() { - System.UInt32 _pipeline = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.ES20.GL.Ext.IsProgramPipeline(_pipeline); -} -static unsafe void Test_IsQuery_31768() { - System.Int32 _id = default(System.Int32); - System.Boolean r = OpenTK.Graphics.ES20.GL.Ext.IsQuery(_id); -} -static unsafe void Test_IsQuery_31769() { - System.UInt32 _id = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.ES20.GL.Ext.IsQuery(_id); -} -static unsafe void Test_LabelObject_31770() { - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.Int32 _object = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.ES20.GL.Ext.LabelObject(_type,_object,_length,_label); -} -static unsafe void Test_LabelObject_31771() { - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.UInt32 _object = default(System.UInt32); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.ES20.GL.Ext.LabelObject(_type,_object,_length,_label); -} -static unsafe void Test_MapBufferRange_31772() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _length = default(System.IntPtr); - System.Int32 _access = default(System.Int32); - System.IntPtr r = OpenTK.Graphics.ES20.GL.Ext.MapBufferRange(_target,_offset,_length,_access); -} -static unsafe void Test_MapBufferRange_31773() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _length = default(System.IntPtr); - System.UInt32 _access = default(System.UInt32); - System.IntPtr r = OpenTK.Graphics.ES20.GL.Ext.MapBufferRange(_target,_offset,_length,_access); -} -static unsafe void Test_MapBufferRange_31774() { - OpenTK.Graphics.ES20.BufferTarget _target = default(OpenTK.Graphics.ES20.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _length = default(System.IntPtr); - System.Int32 _access = default(System.Int32); - System.IntPtr r = OpenTK.Graphics.ES20.GL.Ext.MapBufferRange(_target,_offset,_length,_access); -} -static unsafe void Test_MapBufferRange_31775() { - OpenTK.Graphics.ES20.BufferTarget _target = default(OpenTK.Graphics.ES20.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _length = default(System.IntPtr); - System.UInt32 _access = default(System.UInt32); - System.IntPtr r = OpenTK.Graphics.ES20.GL.Ext.MapBufferRange(_target,_offset,_length,_access); -} -static unsafe void Test_MultiDrawArrays_31776() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32[] _first = default(System.Int32[]); - System.Int32[] _count = default(System.Int32[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.MultiDrawArrays(_mode,_first,_count,_primcount); -} -static unsafe void Test_MultiDrawArrays_31777() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.MultiDrawArrays(_mode,ref _first,ref _count,_primcount); -} -static unsafe void Test_MultiDrawArrays_31778() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32* _first = default(System.Int32*); - System.Int32* _count = default(System.Int32*); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.MultiDrawArrays(_mode,_first,_count,_primcount); -} -static unsafe void Test_MultiDrawArrays_31779() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32[] _first = default(System.Int32[]); - System.Int32[] _count = default(System.Int32[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.MultiDrawArrays(_mode,_first,_count,_primcount); -} -static unsafe void Test_MultiDrawArrays_31780() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.MultiDrawArrays(_mode,ref _first,ref _count,_primcount); -} -static unsafe void Test_MultiDrawArrays_31781() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32* _first = default(System.Int32*); - System.Int32* _count = default(System.Int32*); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.MultiDrawArrays(_mode,_first,_count,_primcount); -} -static unsafe void Test_MultiDrawElements_31782() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_31783() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_31784() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_31785() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_31786() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.MultiDrawElements(_mode,_count,_type,ref _indices,_primcount); -} -static unsafe void Test_MultiDrawElements_31787() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.MultiDrawElements(_mode,ref _count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_31788() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.MultiDrawElements(_mode,ref _count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_31789() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.MultiDrawElements(_mode,ref _count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_31790() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.MultiDrawElements(_mode,ref _count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_31791() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.MultiDrawElements(_mode,ref _count,_type,ref _indices,_primcount); -} -static unsafe void Test_MultiDrawElements_31792() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_31793() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_31794() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_31795() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_31796() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.MultiDrawElements(_mode,_count,_type,ref _indices,_primcount); -} -static unsafe void Test_MultiDrawElements_31797() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.ES20.DrawElementsType _type = default(OpenTK.Graphics.ES20.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_31798() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.ES20.DrawElementsType _type = default(OpenTK.Graphics.ES20.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_31799() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.ES20.DrawElementsType _type = default(OpenTK.Graphics.ES20.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_31800() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.ES20.DrawElementsType _type = default(OpenTK.Graphics.ES20.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_31801() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.ES20.DrawElementsType _type = default(OpenTK.Graphics.ES20.DrawElementsType); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.MultiDrawElements(_mode,_count,_type,ref _indices,_primcount); -} -static unsafe void Test_MultiDrawElements_31802() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.DrawElementsType _type = default(OpenTK.Graphics.ES20.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.MultiDrawElements(_mode,ref _count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_31803() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.DrawElementsType _type = default(OpenTK.Graphics.ES20.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.MultiDrawElements(_mode,ref _count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_31804() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.DrawElementsType _type = default(OpenTK.Graphics.ES20.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.MultiDrawElements(_mode,ref _count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_31805() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.DrawElementsType _type = default(OpenTK.Graphics.ES20.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.MultiDrawElements(_mode,ref _count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_31806() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.DrawElementsType _type = default(OpenTK.Graphics.ES20.DrawElementsType); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.MultiDrawElements(_mode,ref _count,_type,ref _indices,_primcount); -} -static unsafe void Test_MultiDrawElements_31807() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.ES20.DrawElementsType _type = default(OpenTK.Graphics.ES20.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_31808() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.ES20.DrawElementsType _type = default(OpenTK.Graphics.ES20.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_31809() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.ES20.DrawElementsType _type = default(OpenTK.Graphics.ES20.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_31810() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.ES20.DrawElementsType _type = default(OpenTK.Graphics.ES20.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_31811() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.ES20.DrawElementsType _type = default(OpenTK.Graphics.ES20.DrawElementsType); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.MultiDrawElements(_mode,_count,_type,ref _indices,_primcount); -} -static unsafe void Test_PatchParameter_31812() { - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.PatchParameter(_pname,_value); -} -static unsafe void Test_PopGroupMarker_31813() { - OpenTK.Graphics.ES20.GL.Ext.PopGroupMarker(); -} -static unsafe void Test_PrimitiveBoundingBox_31814() { - System.Single _minX = default(System.Single); - System.Single _minY = default(System.Single); - System.Single _minZ = default(System.Single); - System.Single _minW = default(System.Single); - System.Single _maxX = default(System.Single); - System.Single _maxY = default(System.Single); - System.Single _maxZ = default(System.Single); - System.Single _maxW = default(System.Single); - OpenTK.Graphics.ES20.GL.Ext.PrimitiveBoundingBox(_minX,_minY,_minZ,_minW,_maxX,_maxY,_maxZ,_maxW); -} -static unsafe void Test_ProgramParameter_31815() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.ProgramParameter(_program,_pname,_value); -} -static unsafe void Test_ProgramParameter_31816() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES20.ProgramParameterName _pname = default(OpenTK.Graphics.ES20.ProgramParameterName); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.ProgramParameter(_program,_pname,_value); -} -static unsafe void Test_ProgramParameter_31817() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.ProgramParameter(_program,_pname,_value); -} -static unsafe void Test_ProgramParameter_31818() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES20.ProgramParameterName _pname = default(OpenTK.Graphics.ES20.ProgramParameterName); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.ProgramParameter(_program,_pname,_value); -} -static unsafe void Test_ProgramUniform1_31819() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform1(_program,_location,_v0); -} -static unsafe void Test_ProgramUniform1_31820() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform1(_program,_location,_v0); -} -static unsafe void Test_ProgramUniform1_31821() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_31822() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform1(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform1_31823() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_31824() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_31825() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform1(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform1_31826() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_31827() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform1(_program,_location,_v0); -} -static unsafe void Test_ProgramUniform1_31828() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform1(_program,_location,_v0); -} -static unsafe void Test_ProgramUniform1_31829() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_31830() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform1(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform1_31831() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_31832() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_31833() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform1(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform1_31834() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_31835() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt32 _v0 = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform1(_program,_location,_v0); -} -static unsafe void Test_ProgramUniform1_31836() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _value = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_31837() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform1(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform1_31838() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_31839() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform2(_program,_location,_v0,_v1); -} -static unsafe void Test_ProgramUniform2_31840() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform2(_program,_location,_v0,_v1); -} -static unsafe void Test_ProgramUniform2_31841() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_31842() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform2(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform2_31843() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_31844() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_31845() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform2(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform2_31846() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_31847() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform2(_program,_location,_v0,_v1); -} -static unsafe void Test_ProgramUniform2_31848() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform2(_program,_location,_v0,_v1); -} -static unsafe void Test_ProgramUniform2_31849() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_31850() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_31851() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_31852() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_31853() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt32 _v0 = default(System.UInt32); - System.UInt32 _v1 = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform2(_program,_location,_v0,_v1); -} -static unsafe void Test_ProgramUniform2_31854() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _value = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_31855() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform2(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform2_31856() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_31857() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform3(_program,_location,_v0,_v1,_v2); -} -static unsafe void Test_ProgramUniform3_31858() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform3(_program,_location,_v0,_v1,_v2); -} -static unsafe void Test_ProgramUniform3_31859() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_31860() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform3(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform3_31861() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_31862() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_31863() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform3(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform3_31864() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_31865() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - System.Int32 _v2 = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform3(_program,_location,_v0,_v1,_v2); -} -static unsafe void Test_ProgramUniform3_31866() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - System.Int32 _v2 = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform3(_program,_location,_v0,_v1,_v2); -} -static unsafe void Test_ProgramUniform3_31867() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_31868() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform3(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform3_31869() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_31870() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_31871() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform3(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform3_31872() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_31873() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt32 _v0 = default(System.UInt32); - System.UInt32 _v1 = default(System.UInt32); - System.UInt32 _v2 = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform3(_program,_location,_v0,_v1,_v2); -} -static unsafe void Test_ProgramUniform3_31874() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _value = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_31875() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform3(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform3_31876() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_31877() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - System.Single _v3 = default(System.Single); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform4(_program,_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_ProgramUniform4_31878() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - System.Single _v3 = default(System.Single); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform4(_program,_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_ProgramUniform4_31879() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_31880() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform4(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform4_31881() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_31882() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_31883() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform4(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform4_31884() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_31885() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - System.Int32 _v2 = default(System.Int32); - System.Int32 _v3 = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform4(_program,_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_ProgramUniform4_31886() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - System.Int32 _v2 = default(System.Int32); - System.Int32 _v3 = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform4(_program,_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_ProgramUniform4_31887() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_31888() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform4(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform4_31889() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_31890() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_31891() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform4(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform4_31892() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_31893() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt32 _v0 = default(System.UInt32); - System.UInt32 _v1 = default(System.UInt32); - System.UInt32 _v2 = default(System.UInt32); - System.UInt32 _v3 = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform4(_program,_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_ProgramUniform4_31894() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _value = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_31895() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform4(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform4_31896() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniformMatrix2_31897() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2_31898() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2_31899() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2_31900() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2_31901() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2_31902() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x3_31903() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x3_31904() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2x3_31905() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x3_31906() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x3_31907() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2x3_31908() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x4_31909() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x4_31910() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2x4_31911() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x4_31912() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x4_31913() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2x4_31914() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3_31915() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3_31916() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3_31917() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3_31918() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3_31919() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3_31920() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x2_31921() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x2_31922() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3x2_31923() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x2_31924() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x2_31925() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3x2_31926() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x4_31927() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x4_31928() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3x4_31929() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x4_31930() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x4_31931() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3x4_31932() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4_31933() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4_31934() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4_31935() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4_31936() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4_31937() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4_31938() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x2_31939() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x2_31940() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4x2_31941() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x2_31942() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x2_31943() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4x2_31944() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x3_31945() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x3_31946() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4x3_31947() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x3_31948() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x3_31949() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4x3_31950() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES20.GL.Ext.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_PushGroupMarker_31951() { - System.Int32 _length = default(System.Int32); - System.String _marker = default(System.String); - OpenTK.Graphics.ES20.GL.Ext.PushGroupMarker(_length,_marker); -} -static unsafe void Test_QueryCounter_31952() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.GL.Ext.QueryCounter(_id,_target); -} -static unsafe void Test_QueryCounter_31953() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.GL.Ext.QueryCounter(_id,_target); -} -static unsafe void Test_ReadBufferIndexed_31954() { - OpenTK.Graphics.ES20.All _src = default(OpenTK.Graphics.ES20.All); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.ReadBufferIndexed(_src,_index); -} -static unsafe void Test_ReadnPixels_31955() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.Int32 _bufSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.Ext.ReadnPixels(_x,_y,_width,_height,_format,_type,_bufSize,_data); -} -static unsafe void Test_ReadnPixels_31956() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.Int32 _bufSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.ES20.GL.Ext.ReadnPixels(_x,_y,_width,_height,_format,_type,_bufSize,_data); -} -static unsafe void Test_ReadnPixels_31957() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.Int32 _bufSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES20.GL.Ext.ReadnPixels(_x,_y,_width,_height,_format,_type,_bufSize,_data); -} -static unsafe void Test_ReadnPixels_31958() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.Int32 _bufSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES20.GL.Ext.ReadnPixels(_x,_y,_width,_height,_format,_type,_bufSize,_data); -} -static unsafe void Test_ReadnPixels_31959() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.Int32 _bufSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.ES20.GL.Ext.ReadnPixels(_x,_y,_width,_height,_format,_type,_bufSize,ref _data); -} -static unsafe void Test_RenderbufferStorageMultisample_31960() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.RenderbufferStorageMultisample(_target,_samples,_internalformat,_width,_height); -} -static unsafe void Test_RenderbufferStorageMultisample_31961() { - OpenTK.Graphics.ES20.RenderbufferTarget _target = default(OpenTK.Graphics.ES20.RenderbufferTarget); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.ES20.RenderbufferInternalFormat _internalformat = default(OpenTK.Graphics.ES20.RenderbufferInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.RenderbufferStorageMultisample(_target,_samples,_internalformat,_width,_height); -} -static unsafe void Test_SamplerParameterI_31962() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32[] _param = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Ext.SamplerParameterI(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameterI_31963() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.SamplerParameterI(_sampler,_pname,ref _param); -} -static unsafe void Test_SamplerParameterI_31964() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32* _param = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Ext.SamplerParameterI(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameterI_31965() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32[] _param = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Ext.SamplerParameterI(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameterI_31966() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.SamplerParameterI(_sampler,_pname,ref _param); -} -static unsafe void Test_SamplerParameterI_31967() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32* _param = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Ext.SamplerParameterI(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameterI_31968() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.UInt32[] _param = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.Ext.SamplerParameterI(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameterI_31969() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.UInt32 _param = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Ext.SamplerParameterI(_sampler,_pname,ref _param); -} -static unsafe void Test_SamplerParameterI_31970() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.UInt32* _param = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.Ext.SamplerParameterI(_sampler,_pname,_param); -} -static unsafe void Test_TexBuffer_31971() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.TexBuffer(_target,_internalformat,_buffer); -} -static unsafe void Test_TexBuffer_31972() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Ext.TexBuffer(_target,_internalformat,_buffer); -} -static unsafe void Test_TexBuffer_31973() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.TexBuffer(_target,_internalformat,_buffer); -} -static unsafe void Test_TexBuffer_31974() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Ext.TexBuffer(_target,_internalformat,_buffer); -} -static unsafe void Test_TexBufferRange_31975() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.Int32 _buffer = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.Ext.TexBufferRange(_target,_internalformat,_buffer,_offset,_size); -} -static unsafe void Test_TexBufferRange_31976() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.Ext.TexBufferRange(_target,_internalformat,_buffer,_offset,_size); -} -static unsafe void Test_TexParameterI_31977() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Ext.TexParameterI(_target,_pname,_params); -} -static unsafe void Test_TexParameterI_31978() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.TexParameterI(_target,_pname,ref _params); -} -static unsafe void Test_TexParameterI_31979() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Ext.TexParameterI(_target,_pname,_params); -} -static unsafe void Test_TexParameterI_31980() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - OpenTK.Graphics.ES20.TextureParameterName _pname = default(OpenTK.Graphics.ES20.TextureParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Ext.TexParameterI(_target,_pname,_params); -} -static unsafe void Test_TexParameterI_31981() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - OpenTK.Graphics.ES20.TextureParameterName _pname = default(OpenTK.Graphics.ES20.TextureParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.TexParameterI(_target,_pname,ref _params); -} -static unsafe void Test_TexParameterI_31982() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - OpenTK.Graphics.ES20.TextureParameterName _pname = default(OpenTK.Graphics.ES20.TextureParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Ext.TexParameterI(_target,_pname,_params); -} -static unsafe void Test_TexParameterI_31983() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.Ext.TexParameterI(_target,_pname,_params); -} -static unsafe void Test_TexParameterI_31984() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Ext.TexParameterI(_target,_pname,ref _params); -} -static unsafe void Test_TexParameterI_31985() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.Ext.TexParameterI(_target,_pname,_params); -} -static unsafe void Test_TexParameterI_31986() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - OpenTK.Graphics.ES20.TextureParameterName _pname = default(OpenTK.Graphics.ES20.TextureParameterName); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.Ext.TexParameterI(_target,_pname,_params); -} -static unsafe void Test_TexParameterI_31987() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - OpenTK.Graphics.ES20.TextureParameterName _pname = default(OpenTK.Graphics.ES20.TextureParameterName); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Ext.TexParameterI(_target,_pname,ref _params); -} -static unsafe void Test_TexParameterI_31988() { - OpenTK.Graphics.ES20.TextureTarget _target = default(OpenTK.Graphics.ES20.TextureTarget); - OpenTK.Graphics.ES20.TextureParameterName _pname = default(OpenTK.Graphics.ES20.TextureParameterName); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.Ext.TexParameterI(_target,_pname,_params); -} -static unsafe void Test_TexStorage1D_31989() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.TexStorage1D(_target,_levels,_internalformat,_width); -} -static unsafe void Test_TexStorage2D_31990() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.TexStorage2D(_target,_levels,_internalformat,_width,_height); -} -static unsafe void Test_TexStorage2D_31991() { - OpenTK.Graphics.ES20.TextureTarget2d _target = default(OpenTK.Graphics.ES20.TextureTarget2d); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.ES20.SizedInternalFormat _internalformat = default(OpenTK.Graphics.ES20.SizedInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.TexStorage2D(_target,_levels,_internalformat,_width,_height); -} -static unsafe void Test_TexStorage3D_31992() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.TexStorage3D(_target,_levels,_internalformat,_width,_height,_depth); -} -static unsafe void Test_TexStorage3D_31993() { - OpenTK.Graphics.ES20.TextureTarget3d _target = default(OpenTK.Graphics.ES20.TextureTarget3d); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.ES20.SizedInternalFormat _internalformat = default(OpenTK.Graphics.ES20.SizedInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.TexStorage3D(_target,_levels,_internalformat,_width,_height,_depth); -} -static unsafe void Test_TextureStorage1D_31994() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.TextureStorage1D(_texture,_target,_levels,_internalformat,_width); -} -static unsafe void Test_TextureStorage1D_31995() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.TextureStorage1D(_texture,_target,_levels,_internalformat,_width); -} -static unsafe void Test_TextureStorage2D_31996() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.TextureStorage2D(_texture,_target,_levels,_internalformat,_width,_height); -} -static unsafe void Test_TextureStorage2D_31997() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.TextureStorage2D(_texture,_target,_levels,_internalformat,_width,_height); -} -static unsafe void Test_TextureStorage3D_31998() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.TextureStorage3D(_texture,_target,_levels,_internalformat,_width,_height,_depth); -} -static unsafe void Test_TextureStorage3D_31999() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.TextureStorage3D(_texture,_target,_levels,_internalformat,_width,_height,_depth); -} -static unsafe void Test_TextureView_32000() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _origtexture = default(System.Int32); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.Int32 _minlevel = default(System.Int32); - System.Int32 _numlevels = default(System.Int32); - System.Int32 _minlayer = default(System.Int32); - System.Int32 _numlayers = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.TextureView(_texture,_target,_origtexture,_internalformat,_minlevel,_numlevels,_minlayer,_numlayers); -} -static unsafe void Test_TextureView_32001() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.UInt32 _origtexture = default(System.UInt32); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.UInt32 _minlevel = default(System.UInt32); - System.UInt32 _numlevels = default(System.UInt32); - System.UInt32 _minlayer = default(System.UInt32); - System.UInt32 _numlayers = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Ext.TextureView(_texture,_target,_origtexture,_internalformat,_minlevel,_numlevels,_minlayer,_numlayers); -} -static unsafe void Test_UseProgramStages_32002() { - System.Int32 _pipeline = default(System.Int32); - System.Int32 _stages = default(System.Int32); - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.UseProgramStages(_pipeline,_stages,_program); -} -static unsafe void Test_UseProgramStages_32003() { - System.UInt32 _pipeline = default(System.UInt32); - System.UInt32 _stages = default(System.UInt32); - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Ext.UseProgramStages(_pipeline,_stages,_program); -} -static unsafe void Test_UseShaderProgram_32004() { - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.UseShaderProgram(_type,_program); -} -static unsafe void Test_UseShaderProgram_32005() { - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Ext.UseShaderProgram(_type,_program); -} -static unsafe void Test_ValidateProgramPipeline_32006() { - System.Int32 _pipeline = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.ValidateProgramPipeline(_pipeline); -} -static unsafe void Test_ValidateProgramPipeline_32007() { - System.UInt32 _pipeline = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Ext.ValidateProgramPipeline(_pipeline); -} -static unsafe void Test_VertexAttribDivisor_32008() { - System.Int32 _index = default(System.Int32); - System.Int32 _divisor = default(System.Int32); - OpenTK.Graphics.ES20.GL.Ext.VertexAttribDivisor(_index,_divisor); -} -static unsafe void Test_VertexAttribDivisor_32009() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _divisor = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Ext.VertexAttribDivisor(_index,_divisor); -} -static unsafe void Test_FramebufferTexture2DMultisample_32010() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _attachment = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _textarget = default(OpenTK.Graphics.ES20.All); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.ES20.GL.Img.FramebufferTexture2DMultisample(_target,_attachment,_textarget,_texture,_level,_samples); -} -static unsafe void Test_FramebufferTexture2DMultisample_32011() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _attachment = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _textarget = default(OpenTK.Graphics.ES20.All); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.ES20.GL.Img.FramebufferTexture2DMultisample(_target,_attachment,_textarget,_texture,_level,_samples); -} -static unsafe void Test_RenderbufferStorageMultisample_32012() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.GL.Img.RenderbufferStorageMultisample(_target,_samples,_internalformat,_width,_height); -} -static unsafe void Test_RenderbufferStorageMultisample_32013() { - OpenTK.Graphics.ES20.RenderbufferTarget _target = default(OpenTK.Graphics.ES20.RenderbufferTarget); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.ES20.RenderbufferInternalFormat _internalformat = default(OpenTK.Graphics.ES20.RenderbufferInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.GL.Img.RenderbufferStorageMultisample(_target,_samples,_internalformat,_width,_height); -} -static unsafe void Test_BeginPerfQuery_32014() { - System.Int32 _queryHandle = default(System.Int32); - OpenTK.Graphics.ES20.GL.Intel.BeginPerfQuery(_queryHandle); -} -static unsafe void Test_BeginPerfQuery_32015() { - System.UInt32 _queryHandle = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Intel.BeginPerfQuery(_queryHandle); -} -static unsafe void Test_CreatePerfQuery_32016() { - System.Int32 _queryId = default(System.Int32); - System.Int32[] _queryHandle = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Intel.CreatePerfQuery(_queryId,_queryHandle); -} -static unsafe void Test_CreatePerfQuery_32017() { - System.Int32 _queryId = default(System.Int32); - System.Int32 _queryHandle = default(System.Int32); - OpenTK.Graphics.ES20.GL.Intel.CreatePerfQuery(_queryId,out _queryHandle); -} -static unsafe void Test_CreatePerfQuery_32018() { - System.Int32 _queryId = default(System.Int32); - System.Int32* _queryHandle = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Intel.CreatePerfQuery(_queryId,_queryHandle); -} -static unsafe void Test_CreatePerfQuery_32019() { - System.UInt32 _queryId = default(System.UInt32); - System.UInt32[] _queryHandle = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.Intel.CreatePerfQuery(_queryId,_queryHandle); -} -static unsafe void Test_CreatePerfQuery_32020() { - System.UInt32 _queryId = default(System.UInt32); - System.UInt32 _queryHandle = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Intel.CreatePerfQuery(_queryId,out _queryHandle); -} -static unsafe void Test_CreatePerfQuery_32021() { - System.UInt32 _queryId = default(System.UInt32); - System.UInt32* _queryHandle = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.Intel.CreatePerfQuery(_queryId,_queryHandle); -} -static unsafe void Test_DeletePerfQuery_32022() { - System.Int32 _queryHandle = default(System.Int32); - OpenTK.Graphics.ES20.GL.Intel.DeletePerfQuery(_queryHandle); -} -static unsafe void Test_DeletePerfQuery_32023() { - System.UInt32 _queryHandle = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Intel.DeletePerfQuery(_queryHandle); -} -static unsafe void Test_EndPerfQuery_32024() { - System.Int32 _queryHandle = default(System.Int32); - OpenTK.Graphics.ES20.GL.Intel.EndPerfQuery(_queryHandle); -} -static unsafe void Test_EndPerfQuery_32025() { - System.UInt32 _queryHandle = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Intel.EndPerfQuery(_queryHandle); -} -static unsafe void Test_GetFirstPerfQueryI_32026() { - System.Int32 r = OpenTK.Graphics.ES20.GL.Intel.GetFirstPerfQueryI(); -} -static unsafe void Test_GetFirstPerfQueryI_32027() { - System.Int32[] _queryId = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Intel.GetFirstPerfQueryI(_queryId); -} -static unsafe void Test_GetFirstPerfQueryI_32028() { - System.Int32 _queryId = default(System.Int32); - OpenTK.Graphics.ES20.GL.Intel.GetFirstPerfQueryI(out _queryId); -} -static unsafe void Test_GetFirstPerfQueryI_32029() { - System.Int32* _queryId = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Intel.GetFirstPerfQueryI(_queryId); -} -static unsafe void Test_GetFirstPerfQueryI_32030() { - System.UInt32[] _queryId = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.Intel.GetFirstPerfQueryI(_queryId); -} -static unsafe void Test_GetFirstPerfQueryI_32031() { - System.UInt32 _queryId = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Intel.GetFirstPerfQueryI(out _queryId); -} -static unsafe void Test_GetFirstPerfQueryI_32032() { - System.UInt32* _queryId = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.Intel.GetFirstPerfQueryI(_queryId); -} -static unsafe void Test_GetNextPerfQueryI_32033() { - System.Int32 _queryId = default(System.Int32); - System.Int32 r = OpenTK.Graphics.ES20.GL.Intel.GetNextPerfQueryI(_queryId); -} -static unsafe void Test_GetNextPerfQueryI_32034() { - System.UInt32 _queryId = default(System.UInt32); - System.Int32 r = OpenTK.Graphics.ES20.GL.Intel.GetNextPerfQueryI(_queryId); -} -static unsafe void Test_GetNextPerfQueryI_32035() { - System.Int32 _queryId = default(System.Int32); - System.Int32[] _nextQueryId = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Intel.GetNextPerfQueryI(_queryId,_nextQueryId); -} -static unsafe void Test_GetNextPerfQueryI_32036() { - System.Int32 _queryId = default(System.Int32); - System.Int32 _nextQueryId = default(System.Int32); - OpenTK.Graphics.ES20.GL.Intel.GetNextPerfQueryI(_queryId,out _nextQueryId); -} -static unsafe void Test_GetNextPerfQueryI_32037() { - System.Int32 _queryId = default(System.Int32); - System.Int32* _nextQueryId = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Intel.GetNextPerfQueryI(_queryId,_nextQueryId); -} -static unsafe void Test_GetNextPerfQueryI_32038() { - System.UInt32 _queryId = default(System.UInt32); - System.UInt32[] _nextQueryId = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.Intel.GetNextPerfQueryI(_queryId,_nextQueryId); -} -static unsafe void Test_GetNextPerfQueryI_32039() { - System.UInt32 _queryId = default(System.UInt32); - System.UInt32 _nextQueryId = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Intel.GetNextPerfQueryI(_queryId,out _nextQueryId); -} -static unsafe void Test_GetNextPerfQueryI_32040() { - System.UInt32 _queryId = default(System.UInt32); - System.UInt32* _nextQueryId = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.Intel.GetNextPerfQueryI(_queryId,_nextQueryId); -} -static unsafe void Test_GetPerfCounterInfo_32041() { - System.Int32 _queryId = default(System.Int32); - System.Int32 _counterId = default(System.Int32); - System.Int32 _counterNameLength = default(System.Int32); - System.Text.StringBuilder _counterName = default(System.Text.StringBuilder); - System.Int32 _counterDescLength = default(System.Int32); - System.Text.StringBuilder _counterDesc = default(System.Text.StringBuilder); - System.Int32[] _counterOffset = default(System.Int32[]); - System.Int32[] _counterDataSize = default(System.Int32[]); - System.Int32[] _counterTypeEnum = default(System.Int32[]); - System.Int32[] _counterDataTypeEnum = default(System.Int32[]); - System.Int64[] _rawCounterMaxValue = default(System.Int64[]); - OpenTK.Graphics.ES20.GL.Intel.GetPerfCounterInfo(_queryId,_counterId,_counterNameLength,_counterName,_counterDescLength,_counterDesc,_counterOffset,_counterDataSize,_counterTypeEnum,_counterDataTypeEnum,_rawCounterMaxValue); -} -static unsafe void Test_GetPerfCounterInfo_32042() { - System.Int32 _queryId = default(System.Int32); - System.Int32 _counterId = default(System.Int32); - System.Int32 _counterNameLength = default(System.Int32); - System.Text.StringBuilder _counterName = default(System.Text.StringBuilder); - System.Int32 _counterDescLength = default(System.Int32); - System.Text.StringBuilder _counterDesc = default(System.Text.StringBuilder); - System.Int32 _counterOffset = default(System.Int32); - System.Int32 _counterDataSize = default(System.Int32); - System.Int32 _counterTypeEnum = default(System.Int32); - System.Int32 _counterDataTypeEnum = default(System.Int32); - System.Int64 _rawCounterMaxValue = default(System.Int64); - OpenTK.Graphics.ES20.GL.Intel.GetPerfCounterInfo(_queryId,_counterId,_counterNameLength,_counterName,_counterDescLength,_counterDesc,out _counterOffset,out _counterDataSize,out _counterTypeEnum,out _counterDataTypeEnum,out _rawCounterMaxValue); -} -static unsafe void Test_GetPerfCounterInfo_32043() { - System.Int32 _queryId = default(System.Int32); - System.Int32 _counterId = default(System.Int32); - System.Int32 _counterNameLength = default(System.Int32); - System.Text.StringBuilder _counterName = default(System.Text.StringBuilder); - System.Int32 _counterDescLength = default(System.Int32); - System.Text.StringBuilder _counterDesc = default(System.Text.StringBuilder); - System.Int32* _counterOffset = default(System.Int32*); - System.Int32* _counterDataSize = default(System.Int32*); - System.Int32* _counterTypeEnum = default(System.Int32*); - System.Int32* _counterDataTypeEnum = default(System.Int32*); - System.Int64* _rawCounterMaxValue = default(System.Int64*); - OpenTK.Graphics.ES20.GL.Intel.GetPerfCounterInfo(_queryId,_counterId,_counterNameLength,_counterName,_counterDescLength,_counterDesc,_counterOffset,_counterDataSize,_counterTypeEnum,_counterDataTypeEnum,_rawCounterMaxValue); -} -static unsafe void Test_GetPerfCounterInfo_32044() { - System.UInt32 _queryId = default(System.UInt32); - System.UInt32 _counterId = default(System.UInt32); - System.UInt32 _counterNameLength = default(System.UInt32); - System.Text.StringBuilder _counterName = default(System.Text.StringBuilder); - System.UInt32 _counterDescLength = default(System.UInt32); - System.Text.StringBuilder _counterDesc = default(System.Text.StringBuilder); - System.UInt32[] _counterOffset = default(System.UInt32[]); - System.UInt32[] _counterDataSize = default(System.UInt32[]); - System.UInt32[] _counterTypeEnum = default(System.UInt32[]); - System.UInt32[] _counterDataTypeEnum = default(System.UInt32[]); - System.UInt64[] _rawCounterMaxValue = default(System.UInt64[]); - OpenTK.Graphics.ES20.GL.Intel.GetPerfCounterInfo(_queryId,_counterId,_counterNameLength,_counterName,_counterDescLength,_counterDesc,_counterOffset,_counterDataSize,_counterTypeEnum,_counterDataTypeEnum,_rawCounterMaxValue); -} -static unsafe void Test_GetPerfCounterInfo_32045() { - System.UInt32 _queryId = default(System.UInt32); - System.UInt32 _counterId = default(System.UInt32); - System.UInt32 _counterNameLength = default(System.UInt32); - System.Text.StringBuilder _counterName = default(System.Text.StringBuilder); - System.UInt32 _counterDescLength = default(System.UInt32); - System.Text.StringBuilder _counterDesc = default(System.Text.StringBuilder); - System.UInt32 _counterOffset = default(System.UInt32); - System.UInt32 _counterDataSize = default(System.UInt32); - System.UInt32 _counterTypeEnum = default(System.UInt32); - System.UInt32 _counterDataTypeEnum = default(System.UInt32); - System.UInt64 _rawCounterMaxValue = default(System.UInt64); - OpenTK.Graphics.ES20.GL.Intel.GetPerfCounterInfo(_queryId,_counterId,_counterNameLength,_counterName,_counterDescLength,_counterDesc,out _counterOffset,out _counterDataSize,out _counterTypeEnum,out _counterDataTypeEnum,out _rawCounterMaxValue); -} -static unsafe void Test_GetPerfCounterInfo_32046() { - System.UInt32 _queryId = default(System.UInt32); - System.UInt32 _counterId = default(System.UInt32); - System.UInt32 _counterNameLength = default(System.UInt32); - System.Text.StringBuilder _counterName = default(System.Text.StringBuilder); - System.UInt32 _counterDescLength = default(System.UInt32); - System.Text.StringBuilder _counterDesc = default(System.Text.StringBuilder); - System.UInt32* _counterOffset = default(System.UInt32*); - System.UInt32* _counterDataSize = default(System.UInt32*); - System.UInt32* _counterTypeEnum = default(System.UInt32*); - System.UInt32* _counterDataTypeEnum = default(System.UInt32*); - System.UInt64* _rawCounterMaxValue = default(System.UInt64*); - OpenTK.Graphics.ES20.GL.Intel.GetPerfCounterInfo(_queryId,_counterId,_counterNameLength,_counterName,_counterDescLength,_counterDesc,_counterOffset,_counterDataSize,_counterTypeEnum,_counterDataTypeEnum,_rawCounterMaxValue); -} -static unsafe void Test_GetPerfQueryData_32047() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - System.Int32[] _bytesWritten = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_32048() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - System.Int32 _bytesWritten = default(System.Int32); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,out _bytesWritten); -} -static unsafe void Test_GetPerfQueryData_32049() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - System.Int32* _bytesWritten = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_32050() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - int[] _data = default(int[]); - System.Int32[] _bytesWritten = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_32051() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - int[] _data = default(int[]); - System.Int32 _bytesWritten = default(System.Int32); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,out _bytesWritten); -} -static unsafe void Test_GetPerfQueryData_32052() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - int[] _data = default(int[]); - System.Int32* _bytesWritten = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_32053() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - int[,] _data = default(int[,]); - System.Int32[] _bytesWritten = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_32054() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - int[,] _data = default(int[,]); - System.Int32 _bytesWritten = default(System.Int32); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,out _bytesWritten); -} -static unsafe void Test_GetPerfQueryData_32055() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - int[,] _data = default(int[,]); - System.Int32* _bytesWritten = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_32056() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - int[,,] _data = default(int[,,]); - System.Int32[] _bytesWritten = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_32057() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - int[,,] _data = default(int[,,]); - System.Int32 _bytesWritten = default(System.Int32); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,out _bytesWritten); -} -static unsafe void Test_GetPerfQueryData_32058() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - int[,,] _data = default(int[,,]); - System.Int32* _bytesWritten = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_32059() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - int _data = default(int); - System.Int32[] _bytesWritten = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,ref _data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_32060() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - int _data = default(int); - System.Int32 _bytesWritten = default(System.Int32); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,ref _data,out _bytesWritten); -} -static unsafe void Test_GetPerfQueryData_32061() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - int _data = default(int); - System.Int32* _bytesWritten = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,ref _data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_32062() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - System.UInt32[] _bytesWritten = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_32063() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - System.UInt32 _bytesWritten = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,out _bytesWritten); -} -static unsafe void Test_GetPerfQueryData_32064() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - System.UInt32* _bytesWritten = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_32065() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - int[] _data = default(int[]); - System.UInt32[] _bytesWritten = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_32066() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - int[] _data = default(int[]); - System.UInt32 _bytesWritten = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,out _bytesWritten); -} -static unsafe void Test_GetPerfQueryData_32067() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - int[] _data = default(int[]); - System.UInt32* _bytesWritten = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_32068() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - int[,] _data = default(int[,]); - System.UInt32[] _bytesWritten = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_32069() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - int[,] _data = default(int[,]); - System.UInt32 _bytesWritten = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,out _bytesWritten); -} -static unsafe void Test_GetPerfQueryData_32070() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - int[,] _data = default(int[,]); - System.UInt32* _bytesWritten = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_32071() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - int[,,] _data = default(int[,,]); - System.UInt32[] _bytesWritten = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_32072() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - int[,,] _data = default(int[,,]); - System.UInt32 _bytesWritten = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,out _bytesWritten); -} -static unsafe void Test_GetPerfQueryData_32073() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - int[,,] _data = default(int[,,]); - System.UInt32* _bytesWritten = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_32074() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - int _data = default(int); - System.UInt32[] _bytesWritten = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,ref _data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_32075() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - int _data = default(int); - System.UInt32 _bytesWritten = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,ref _data,out _bytesWritten); -} -static unsafe void Test_GetPerfQueryData_32076() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - int _data = default(int); - System.UInt32* _bytesWritten = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,ref _data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryIdByName_32077() { - System.Text.StringBuilder _queryName = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryIdByName(_queryName); -} -static unsafe void Test_GetPerfQueryIdByName_32078() { - System.Text.StringBuilder _queryName = default(System.Text.StringBuilder); - System.Int32[] _queryId = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryIdByName(_queryName,_queryId); -} -static unsafe void Test_GetPerfQueryIdByName_32079() { - System.Text.StringBuilder _queryName = default(System.Text.StringBuilder); - System.Int32 _queryId = default(System.Int32); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryIdByName(_queryName,out _queryId); -} -static unsafe void Test_GetPerfQueryIdByName_32080() { - System.Text.StringBuilder _queryName = default(System.Text.StringBuilder); - System.Int32* _queryId = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryIdByName(_queryName,_queryId); -} -static unsafe void Test_GetPerfQueryIdByName_32081() { - System.Text.StringBuilder _queryName = default(System.Text.StringBuilder); - System.UInt32[] _queryId = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryIdByName(_queryName,_queryId); -} -static unsafe void Test_GetPerfQueryIdByName_32082() { - System.Text.StringBuilder _queryName = default(System.Text.StringBuilder); - System.UInt32 _queryId = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryIdByName(_queryName,out _queryId); -} -static unsafe void Test_GetPerfQueryIdByName_32083() { - System.Text.StringBuilder _queryName = default(System.Text.StringBuilder); - System.UInt32* _queryId = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryIdByName(_queryName,_queryId); -} -static unsafe void Test_GetPerfQueryInfo_32084() { - System.Int32 _queryId = default(System.Int32); - System.Int32 _queryNameLength = default(System.Int32); - System.Text.StringBuilder _queryName = default(System.Text.StringBuilder); - System.Int32[] _dataSize = default(System.Int32[]); - System.Int32[] _noCounters = default(System.Int32[]); - System.Int32[] _noInstances = default(System.Int32[]); - System.Int32[] _capsMask = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryInfo(_queryId,_queryNameLength,_queryName,_dataSize,_noCounters,_noInstances,_capsMask); -} -static unsafe void Test_GetPerfQueryInfo_32085() { - System.Int32 _queryId = default(System.Int32); - System.Int32 _queryNameLength = default(System.Int32); - System.Text.StringBuilder _queryName = default(System.Text.StringBuilder); - System.Int32 _dataSize = default(System.Int32); - System.Int32 _noCounters = default(System.Int32); - System.Int32 _noInstances = default(System.Int32); - System.Int32 _capsMask = default(System.Int32); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryInfo(_queryId,_queryNameLength,_queryName,out _dataSize,out _noCounters,out _noInstances,out _capsMask); -} -static unsafe void Test_GetPerfQueryInfo_32086() { - System.Int32 _queryId = default(System.Int32); - System.Int32 _queryNameLength = default(System.Int32); - System.Text.StringBuilder _queryName = default(System.Text.StringBuilder); - System.Int32* _dataSize = default(System.Int32*); - System.Int32* _noCounters = default(System.Int32*); - System.Int32* _noInstances = default(System.Int32*); - System.Int32* _capsMask = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryInfo(_queryId,_queryNameLength,_queryName,_dataSize,_noCounters,_noInstances,_capsMask); -} -static unsafe void Test_GetPerfQueryInfo_32087() { - System.UInt32 _queryId = default(System.UInt32); - System.UInt32 _queryNameLength = default(System.UInt32); - System.Text.StringBuilder _queryName = default(System.Text.StringBuilder); - System.UInt32[] _dataSize = default(System.UInt32[]); - System.UInt32[] _noCounters = default(System.UInt32[]); - System.UInt32[] _noInstances = default(System.UInt32[]); - System.UInt32[] _capsMask = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryInfo(_queryId,_queryNameLength,_queryName,_dataSize,_noCounters,_noInstances,_capsMask); -} -static unsafe void Test_GetPerfQueryInfo_32088() { - System.UInt32 _queryId = default(System.UInt32); - System.UInt32 _queryNameLength = default(System.UInt32); - System.Text.StringBuilder _queryName = default(System.Text.StringBuilder); - System.UInt32 _dataSize = default(System.UInt32); - System.UInt32 _noCounters = default(System.UInt32); - System.UInt32 _noInstances = default(System.UInt32); - System.UInt32 _capsMask = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryInfo(_queryId,_queryNameLength,_queryName,out _dataSize,out _noCounters,out _noInstances,out _capsMask); -} -static unsafe void Test_GetPerfQueryInfo_32089() { - System.UInt32 _queryId = default(System.UInt32); - System.UInt32 _queryNameLength = default(System.UInt32); - System.Text.StringBuilder _queryName = default(System.Text.StringBuilder); - System.UInt32* _dataSize = default(System.UInt32*); - System.UInt32* _noCounters = default(System.UInt32*); - System.UInt32* _noInstances = default(System.UInt32*); - System.UInt32* _capsMask = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.Intel.GetPerfQueryInfo(_queryId,_queryNameLength,_queryName,_dataSize,_noCounters,_noInstances,_capsMask); -} -static unsafe void Test_BlendBarrier_32090() { - OpenTK.Graphics.ES20.GL.Khr.BlendBarrier(); -} -static unsafe void Test_DebugMessageCallback_32091() { - OpenTK.Graphics.ES20.DebugProcKhr _callback = default(OpenTK.Graphics.ES20.DebugProcKhr); - System.IntPtr _userParam = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.Khr.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_32092() { - OpenTK.Graphics.ES20.DebugProcKhr _callback = default(OpenTK.Graphics.ES20.DebugProcKhr); - int[] _userParam = default(int[]); - OpenTK.Graphics.ES20.GL.Khr.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_32093() { - OpenTK.Graphics.ES20.DebugProcKhr _callback = default(OpenTK.Graphics.ES20.DebugProcKhr); - int[,] _userParam = default(int[,]); - OpenTK.Graphics.ES20.GL.Khr.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_32094() { - OpenTK.Graphics.ES20.DebugProcKhr _callback = default(OpenTK.Graphics.ES20.DebugProcKhr); - int[,,] _userParam = default(int[,,]); - OpenTK.Graphics.ES20.GL.Khr.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_32095() { - OpenTK.Graphics.ES20.DebugProcKhr _callback = default(OpenTK.Graphics.ES20.DebugProcKhr); - int _userParam = default(int); - OpenTK.Graphics.ES20.GL.Khr.DebugMessageCallback(_callback,ref _userParam); -} -static unsafe void Test_DebugMessageControl_32096() { - OpenTK.Graphics.ES20.All _source = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _severity = default(OpenTK.Graphics.ES20.All); - System.Int32 _count = default(System.Int32); - System.Int32[] _ids = default(System.Int32[]); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES20.GL.Khr.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_32097() { - OpenTK.Graphics.ES20.All _source = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _severity = default(OpenTK.Graphics.ES20.All); - System.Int32 _count = default(System.Int32); - System.Int32 _ids = default(System.Int32); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES20.GL.Khr.DebugMessageControl(_source,_type,_severity,_count,ref _ids,_enabled); -} -static unsafe void Test_DebugMessageControl_32098() { - OpenTK.Graphics.ES20.All _source = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _severity = default(OpenTK.Graphics.ES20.All); - System.Int32 _count = default(System.Int32); - System.Int32* _ids = default(System.Int32*); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES20.GL.Khr.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_32099() { - OpenTK.Graphics.ES20.All _source = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _severity = default(OpenTK.Graphics.ES20.All); - System.Int32 _count = default(System.Int32); - System.UInt32[] _ids = default(System.UInt32[]); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES20.GL.Khr.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_32100() { - OpenTK.Graphics.ES20.All _source = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _severity = default(OpenTK.Graphics.ES20.All); - System.Int32 _count = default(System.Int32); - System.UInt32 _ids = default(System.UInt32); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES20.GL.Khr.DebugMessageControl(_source,_type,_severity,_count,ref _ids,_enabled); -} -static unsafe void Test_DebugMessageControl_32101() { - OpenTK.Graphics.ES20.All _source = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _severity = default(OpenTK.Graphics.ES20.All); - System.Int32 _count = default(System.Int32); - System.UInt32* _ids = default(System.UInt32*); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES20.GL.Khr.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_32102() { - OpenTK.Graphics.ES20.DebugSourceControl _source = default(OpenTK.Graphics.ES20.DebugSourceControl); - OpenTK.Graphics.ES20.DebugTypeControl _type = default(OpenTK.Graphics.ES20.DebugTypeControl); - OpenTK.Graphics.ES20.DebugSeverityControl _severity = default(OpenTK.Graphics.ES20.DebugSeverityControl); - System.Int32 _count = default(System.Int32); - System.Int32[] _ids = default(System.Int32[]); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES20.GL.Khr.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_32103() { - OpenTK.Graphics.ES20.DebugSourceControl _source = default(OpenTK.Graphics.ES20.DebugSourceControl); - OpenTK.Graphics.ES20.DebugTypeControl _type = default(OpenTK.Graphics.ES20.DebugTypeControl); - OpenTK.Graphics.ES20.DebugSeverityControl _severity = default(OpenTK.Graphics.ES20.DebugSeverityControl); - System.Int32 _count = default(System.Int32); - System.Int32 _ids = default(System.Int32); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES20.GL.Khr.DebugMessageControl(_source,_type,_severity,_count,ref _ids,_enabled); -} -static unsafe void Test_DebugMessageControl_32104() { - OpenTK.Graphics.ES20.DebugSourceControl _source = default(OpenTK.Graphics.ES20.DebugSourceControl); - OpenTK.Graphics.ES20.DebugTypeControl _type = default(OpenTK.Graphics.ES20.DebugTypeControl); - OpenTK.Graphics.ES20.DebugSeverityControl _severity = default(OpenTK.Graphics.ES20.DebugSeverityControl); - System.Int32 _count = default(System.Int32); - System.Int32* _ids = default(System.Int32*); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES20.GL.Khr.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_32105() { - OpenTK.Graphics.ES20.DebugSourceControl _source = default(OpenTK.Graphics.ES20.DebugSourceControl); - OpenTK.Graphics.ES20.DebugTypeControl _type = default(OpenTK.Graphics.ES20.DebugTypeControl); - OpenTK.Graphics.ES20.DebugSeverityControl _severity = default(OpenTK.Graphics.ES20.DebugSeverityControl); - System.Int32 _count = default(System.Int32); - System.UInt32[] _ids = default(System.UInt32[]); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES20.GL.Khr.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_32106() { - OpenTK.Graphics.ES20.DebugSourceControl _source = default(OpenTK.Graphics.ES20.DebugSourceControl); - OpenTK.Graphics.ES20.DebugTypeControl _type = default(OpenTK.Graphics.ES20.DebugTypeControl); - OpenTK.Graphics.ES20.DebugSeverityControl _severity = default(OpenTK.Graphics.ES20.DebugSeverityControl); - System.Int32 _count = default(System.Int32); - System.UInt32 _ids = default(System.UInt32); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES20.GL.Khr.DebugMessageControl(_source,_type,_severity,_count,ref _ids,_enabled); -} -static unsafe void Test_DebugMessageControl_32107() { - OpenTK.Graphics.ES20.DebugSourceControl _source = default(OpenTK.Graphics.ES20.DebugSourceControl); - OpenTK.Graphics.ES20.DebugTypeControl _type = default(OpenTK.Graphics.ES20.DebugTypeControl); - OpenTK.Graphics.ES20.DebugSeverityControl _severity = default(OpenTK.Graphics.ES20.DebugSeverityControl); - System.Int32 _count = default(System.Int32); - System.UInt32* _ids = default(System.UInt32*); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES20.GL.Khr.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageInsert_32108() { - OpenTK.Graphics.ES20.All _source = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES20.All _severity = default(OpenTK.Graphics.ES20.All); - System.Int32 _length = default(System.Int32); - System.String _buf = default(System.String); - OpenTK.Graphics.ES20.GL.Khr.DebugMessageInsert(_source,_type,_id,_severity,_length,_buf); -} -static unsafe void Test_DebugMessageInsert_32109() { - OpenTK.Graphics.ES20.All _source = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES20.All _severity = default(OpenTK.Graphics.ES20.All); - System.Int32 _length = default(System.Int32); - System.String _buf = default(System.String); - OpenTK.Graphics.ES20.GL.Khr.DebugMessageInsert(_source,_type,_id,_severity,_length,_buf); -} -static unsafe void Test_DebugMessageInsert_32110() { - OpenTK.Graphics.ES20.DebugSourceExternal _source = default(OpenTK.Graphics.ES20.DebugSourceExternal); - OpenTK.Graphics.ES20.DebugType _type = default(OpenTK.Graphics.ES20.DebugType); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES20.DebugSeverity _severity = default(OpenTK.Graphics.ES20.DebugSeverity); - System.Int32 _length = default(System.Int32); - System.String _buf = default(System.String); - OpenTK.Graphics.ES20.GL.Khr.DebugMessageInsert(_source,_type,_id,_severity,_length,_buf); -} -static unsafe void Test_DebugMessageInsert_32111() { - OpenTK.Graphics.ES20.DebugSourceExternal _source = default(OpenTK.Graphics.ES20.DebugSourceExternal); - OpenTK.Graphics.ES20.DebugType _type = default(OpenTK.Graphics.ES20.DebugType); - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES20.DebugSeverity _severity = default(OpenTK.Graphics.ES20.DebugSeverity); - System.Int32 _length = default(System.Int32); - System.String _buf = default(System.String); - OpenTK.Graphics.ES20.GL.Khr.DebugMessageInsert(_source,_type,_id,_severity,_length,_buf); -} -static unsafe void Test_GetDebugMessageLog_32112() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES20.All[] _sources = default(OpenTK.Graphics.ES20.All[]); - OpenTK.Graphics.ES20.All[] _types = default(OpenTK.Graphics.ES20.All[]); - System.Int32[] _ids = default(System.Int32[]); - OpenTK.Graphics.ES20.All[] _severities = default(OpenTK.Graphics.ES20.All[]); - System.Int32[] _lengths = default(System.Int32[]); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES20.GL.Khr.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_32113() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES20.All _sources = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _types = default(OpenTK.Graphics.ES20.All); - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.ES20.All _severities = default(OpenTK.Graphics.ES20.All); - System.Int32 _lengths = default(System.Int32); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES20.GL.Khr.GetDebugMessageLog(_count,_bufSize,out _sources,out _types,out _ids,out _severities,out _lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_32114() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES20.All* _sources = default(OpenTK.Graphics.ES20.All*); - OpenTK.Graphics.ES20.All* _types = default(OpenTK.Graphics.ES20.All*); - System.Int32* _ids = default(System.Int32*); - OpenTK.Graphics.ES20.All* _severities = default(OpenTK.Graphics.ES20.All*); - System.Int32* _lengths = default(System.Int32*); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES20.GL.Khr.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_32115() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES20.DebugSourceExternal[] _sources = default(OpenTK.Graphics.ES20.DebugSourceExternal[]); - OpenTK.Graphics.ES20.DebugType[] _types = default(OpenTK.Graphics.ES20.DebugType[]); - System.Int32[] _ids = default(System.Int32[]); - OpenTK.Graphics.ES20.DebugSeverity[] _severities = default(OpenTK.Graphics.ES20.DebugSeverity[]); - System.Int32[] _lengths = default(System.Int32[]); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES20.GL.Khr.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_32116() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES20.DebugSourceExternal _sources = default(OpenTK.Graphics.ES20.DebugSourceExternal); - OpenTK.Graphics.ES20.DebugType _types = default(OpenTK.Graphics.ES20.DebugType); - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.ES20.DebugSeverity _severities = default(OpenTK.Graphics.ES20.DebugSeverity); - System.Int32 _lengths = default(System.Int32); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES20.GL.Khr.GetDebugMessageLog(_count,_bufSize,out _sources,out _types,out _ids,out _severities,out _lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_32117() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES20.DebugSourceExternal* _sources = default(OpenTK.Graphics.ES20.DebugSourceExternal*); - OpenTK.Graphics.ES20.DebugType* _types = default(OpenTK.Graphics.ES20.DebugType*); - System.Int32* _ids = default(System.Int32*); - OpenTK.Graphics.ES20.DebugSeverity* _severities = default(OpenTK.Graphics.ES20.DebugSeverity*); - System.Int32* _lengths = default(System.Int32*); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES20.GL.Khr.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_32118() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES20.All[] _sources = default(OpenTK.Graphics.ES20.All[]); - OpenTK.Graphics.ES20.All[] _types = default(OpenTK.Graphics.ES20.All[]); - System.UInt32[] _ids = default(System.UInt32[]); - OpenTK.Graphics.ES20.All[] _severities = default(OpenTK.Graphics.ES20.All[]); - System.Int32[] _lengths = default(System.Int32[]); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES20.GL.Khr.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_32119() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES20.All _sources = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _types = default(OpenTK.Graphics.ES20.All); - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.ES20.All _severities = default(OpenTK.Graphics.ES20.All); - System.Int32 _lengths = default(System.Int32); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES20.GL.Khr.GetDebugMessageLog(_count,_bufSize,out _sources,out _types,out _ids,out _severities,out _lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_32120() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES20.All* _sources = default(OpenTK.Graphics.ES20.All*); - OpenTK.Graphics.ES20.All* _types = default(OpenTK.Graphics.ES20.All*); - System.UInt32* _ids = default(System.UInt32*); - OpenTK.Graphics.ES20.All* _severities = default(OpenTK.Graphics.ES20.All*); - System.Int32* _lengths = default(System.Int32*); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES20.GL.Khr.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_32121() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES20.DebugSourceExternal[] _sources = default(OpenTK.Graphics.ES20.DebugSourceExternal[]); - OpenTK.Graphics.ES20.DebugType[] _types = default(OpenTK.Graphics.ES20.DebugType[]); - System.UInt32[] _ids = default(System.UInt32[]); - OpenTK.Graphics.ES20.DebugSeverity[] _severities = default(OpenTK.Graphics.ES20.DebugSeverity[]); - System.Int32[] _lengths = default(System.Int32[]); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES20.GL.Khr.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_32122() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES20.DebugSourceExternal _sources = default(OpenTK.Graphics.ES20.DebugSourceExternal); - OpenTK.Graphics.ES20.DebugType _types = default(OpenTK.Graphics.ES20.DebugType); - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.ES20.DebugSeverity _severities = default(OpenTK.Graphics.ES20.DebugSeverity); - System.Int32 _lengths = default(System.Int32); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES20.GL.Khr.GetDebugMessageLog(_count,_bufSize,out _sources,out _types,out _ids,out _severities,out _lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_32123() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES20.DebugSourceExternal* _sources = default(OpenTK.Graphics.ES20.DebugSourceExternal*); - OpenTK.Graphics.ES20.DebugType* _types = default(OpenTK.Graphics.ES20.DebugType*); - System.UInt32* _ids = default(System.UInt32*); - OpenTK.Graphics.ES20.DebugSeverity* _severities = default(OpenTK.Graphics.ES20.DebugSeverity*); - System.Int32* _lengths = default(System.Int32*); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES20.GL.Khr.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetObjectLabel_32124() { - OpenTK.Graphics.ES20.All _identifier = default(OpenTK.Graphics.ES20.All); - System.Int32 _name = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Khr.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_32125() { - OpenTK.Graphics.ES20.All _identifier = default(OpenTK.Graphics.ES20.All); - System.Int32 _name = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Khr.GetObjectLabel(_identifier,_name,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectLabel_32126() { - OpenTK.Graphics.ES20.All _identifier = default(OpenTK.Graphics.ES20.All); - System.Int32 _name = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Khr.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_32127() { - OpenTK.Graphics.ES20.All _identifier = default(OpenTK.Graphics.ES20.All); - System.UInt32 _name = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Khr.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_32128() { - OpenTK.Graphics.ES20.All _identifier = default(OpenTK.Graphics.ES20.All); - System.UInt32 _name = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Khr.GetObjectLabel(_identifier,_name,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectLabel_32129() { - OpenTK.Graphics.ES20.All _identifier = default(OpenTK.Graphics.ES20.All); - System.UInt32 _name = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Khr.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_32130() { - OpenTK.Graphics.ES20.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.ES20.ObjectLabelIdentifier); - System.Int32 _name = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Khr.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_32131() { - OpenTK.Graphics.ES20.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.ES20.ObjectLabelIdentifier); - System.Int32 _name = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Khr.GetObjectLabel(_identifier,_name,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectLabel_32132() { - OpenTK.Graphics.ES20.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.ES20.ObjectLabelIdentifier); - System.Int32 _name = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Khr.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_32133() { - OpenTK.Graphics.ES20.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.ES20.ObjectLabelIdentifier); - System.UInt32 _name = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Khr.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_32134() { - OpenTK.Graphics.ES20.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.ES20.ObjectLabelIdentifier); - System.UInt32 _name = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Khr.GetObjectLabel(_identifier,_name,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectLabel_32135() { - OpenTK.Graphics.ES20.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.ES20.ObjectLabelIdentifier); - System.UInt32 _name = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Khr.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_32136() { - System.IntPtr _ptr = default(System.IntPtr); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_32137() { - System.IntPtr _ptr = default(System.IntPtr); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectPtrLabel_32138() { - System.IntPtr _ptr = default(System.IntPtr); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_32139() { - int[] _ptr = default(int[]); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_32140() { - int[] _ptr = default(int[]); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectPtrLabel_32141() { - int[] _ptr = default(int[]); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_32142() { - int[,] _ptr = default(int[,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_32143() { - int[,] _ptr = default(int[,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectPtrLabel_32144() { - int[,] _ptr = default(int[,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_32145() { - int[,,] _ptr = default(int[,,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_32146() { - int[,,] _ptr = default(int[,,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectPtrLabel_32147() { - int[,,] _ptr = default(int[,,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_32148() { - int _ptr = default(int); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Khr.GetObjectPtrLabel(ref _ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_32149() { - int _ptr = default(int); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Khr.GetObjectPtrLabel(ref _ptr,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectPtrLabel_32150() { - int _ptr = default(int); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Khr.GetObjectPtrLabel(ref _ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetPointer_32151() { - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.IntPtr _params = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.Khr.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_32152() { - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - int[] _params = default(int[]); - OpenTK.Graphics.ES20.GL.Khr.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_32153() { - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - int[,] _params = default(int[,]); - OpenTK.Graphics.ES20.GL.Khr.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_32154() { - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - int[,,] _params = default(int[,,]); - OpenTK.Graphics.ES20.GL.Khr.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_32155() { - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - int _params = default(int); - OpenTK.Graphics.ES20.GL.Khr.GetPointer(_pname,ref _params); -} -static unsafe void Test_ObjectLabel_32156() { - OpenTK.Graphics.ES20.All _identifier = default(OpenTK.Graphics.ES20.All); - System.Int32 _name = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.ES20.GL.Khr.ObjectLabel(_identifier,_name,_length,_label); -} -static unsafe void Test_ObjectLabel_32157() { - OpenTK.Graphics.ES20.All _identifier = default(OpenTK.Graphics.ES20.All); - System.UInt32 _name = default(System.UInt32); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.ES20.GL.Khr.ObjectLabel(_identifier,_name,_length,_label); -} -static unsafe void Test_ObjectLabel_32158() { - OpenTK.Graphics.ES20.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.ES20.ObjectLabelIdentifier); - System.Int32 _name = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.ES20.GL.Khr.ObjectLabel(_identifier,_name,_length,_label); -} -static unsafe void Test_ObjectLabel_32159() { - OpenTK.Graphics.ES20.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.ES20.ObjectLabelIdentifier); - System.UInt32 _name = default(System.UInt32); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.ES20.GL.Khr.ObjectLabel(_identifier,_name,_length,_label); -} -static unsafe void Test_ObjectPtrLabel_32160() { - System.IntPtr _ptr = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.ES20.GL.Khr.ObjectPtrLabel(_ptr,_length,_label); -} -static unsafe void Test_ObjectPtrLabel_32161() { - int[] _ptr = default(int[]); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.ES20.GL.Khr.ObjectPtrLabel(_ptr,_length,_label); -} -static unsafe void Test_ObjectPtrLabel_32162() { - int[,] _ptr = default(int[,]); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.ES20.GL.Khr.ObjectPtrLabel(_ptr,_length,_label); -} -static unsafe void Test_ObjectPtrLabel_32163() { - int[,,] _ptr = default(int[,,]); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.ES20.GL.Khr.ObjectPtrLabel(_ptr,_length,_label); -} -static unsafe void Test_ObjectPtrLabel_32164() { - int _ptr = default(int); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.ES20.GL.Khr.ObjectPtrLabel(ref _ptr,_length,_label); -} -static unsafe void Test_PopDebugGroup_32165() { - OpenTK.Graphics.ES20.GL.Khr.PopDebugGroup(); -} -static unsafe void Test_PushDebugGroup_32166() { - OpenTK.Graphics.ES20.All _source = default(OpenTK.Graphics.ES20.All); - System.Int32 _id = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.String _message = default(System.String); - OpenTK.Graphics.ES20.GL.Khr.PushDebugGroup(_source,_id,_length,_message); -} -static unsafe void Test_PushDebugGroup_32167() { - OpenTK.Graphics.ES20.All _source = default(OpenTK.Graphics.ES20.All); - System.UInt32 _id = default(System.UInt32); - System.Int32 _length = default(System.Int32); - System.String _message = default(System.String); - OpenTK.Graphics.ES20.GL.Khr.PushDebugGroup(_source,_id,_length,_message); -} -static unsafe void Test_BlendBarrier_32168() { - OpenTK.Graphics.ES20.GL.NV.BlendBarrier(); -} -static unsafe void Test_BlendParameter_32169() { - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.ES20.GL.NV.BlendParameter(_pname,_value); -} -static unsafe void Test_BlitFramebuffer_32170() { - System.Int32 _srcX0 = default(System.Int32); - System.Int32 _srcY0 = default(System.Int32); - System.Int32 _srcX1 = default(System.Int32); - System.Int32 _srcY1 = default(System.Int32); - System.Int32 _dstX0 = default(System.Int32); - System.Int32 _dstY0 = default(System.Int32); - System.Int32 _dstX1 = default(System.Int32); - System.Int32 _dstY1 = default(System.Int32); - OpenTK.Graphics.ES20.All _mask = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _filter = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.GL.NV.BlitFramebuffer(_srcX0,_srcY0,_srcX1,_srcY1,_dstX0,_dstY0,_dstX1,_dstY1,_mask,_filter); -} -static unsafe void Test_BlitFramebuffer_32171() { - System.Int32 _srcX0 = default(System.Int32); - System.Int32 _srcY0 = default(System.Int32); - System.Int32 _srcX1 = default(System.Int32); - System.Int32 _srcY1 = default(System.Int32); - System.Int32 _dstX0 = default(System.Int32); - System.Int32 _dstY0 = default(System.Int32); - System.Int32 _dstX1 = default(System.Int32); - System.Int32 _dstY1 = default(System.Int32); - OpenTK.Graphics.ES20.ClearBufferMask _mask = default(OpenTK.Graphics.ES20.ClearBufferMask); - OpenTK.Graphics.ES20.BlitFramebufferFilter _filter = default(OpenTK.Graphics.ES20.BlitFramebufferFilter); - OpenTK.Graphics.ES20.GL.NV.BlitFramebuffer(_srcX0,_srcY0,_srcX1,_srcY1,_dstX0,_dstY0,_dstX1,_dstY1,_mask,_filter); -} -static unsafe void Test_CopyBufferSubData_32172() { - OpenTK.Graphics.ES20.All _readTarget = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _writeTarget = default(OpenTK.Graphics.ES20.All); - System.IntPtr _readOffset = default(System.IntPtr); - System.IntPtr _writeOffset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.NV.CopyBufferSubData(_readTarget,_writeTarget,_readOffset,_writeOffset,_size); -} -static unsafe void Test_CopyBufferSubData_32173() { - OpenTK.Graphics.ES20.BufferTarget _readTarget = default(OpenTK.Graphics.ES20.BufferTarget); - OpenTK.Graphics.ES20.BufferTarget _writeTarget = default(OpenTK.Graphics.ES20.BufferTarget); - System.IntPtr _readOffset = default(System.IntPtr); - System.IntPtr _writeOffset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.NV.CopyBufferSubData(_readTarget,_writeTarget,_readOffset,_writeOffset,_size); -} -static unsafe void Test_CoverageMask_32174() { - System.Boolean _mask = default(System.Boolean); - OpenTK.Graphics.ES20.GL.NV.CoverageMask(_mask); -} -static unsafe void Test_CoverageOperation_32175() { - OpenTK.Graphics.ES20.All _operation = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.GL.NV.CoverageOperation(_operation); -} -static unsafe void Test_DeleteFence_32176() { - System.Int32 _fences = default(System.Int32); - OpenTK.Graphics.ES20.GL.NV.DeleteFence(_fences); -} -static unsafe void Test_DeleteFence_32177() { - System.UInt32 _fences = default(System.UInt32); - OpenTK.Graphics.ES20.GL.NV.DeleteFence(_fences); -} -static unsafe void Test_DeleteFences_32178() { - System.Int32 _n = default(System.Int32); - System.Int32[] _fences = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.NV.DeleteFences(_n,_fences); -} -static unsafe void Test_DeleteFences_32179() { - System.Int32 _n = default(System.Int32); - System.Int32 _fences = default(System.Int32); - OpenTK.Graphics.ES20.GL.NV.DeleteFences(_n,ref _fences); -} -static unsafe void Test_DeleteFences_32180() { - System.Int32 _n = default(System.Int32); - System.Int32* _fences = default(System.Int32*); - OpenTK.Graphics.ES20.GL.NV.DeleteFences(_n,_fences); -} -static unsafe void Test_DeleteFences_32181() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _fences = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.NV.DeleteFences(_n,_fences); -} -static unsafe void Test_DeleteFences_32182() { - System.Int32 _n = default(System.Int32); - System.UInt32 _fences = default(System.UInt32); - OpenTK.Graphics.ES20.GL.NV.DeleteFences(_n,ref _fences); -} -static unsafe void Test_DeleteFences_32183() { - System.Int32 _n = default(System.Int32); - System.UInt32* _fences = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.NV.DeleteFences(_n,_fences); -} -static unsafe void Test_DrawArraysInstanced_32184() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.NV.DrawArraysInstanced(_mode,_first,_count,_primcount); -} -static unsafe void Test_DrawArraysInstanced_32185() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.NV.DrawArraysInstanced(_mode,_first,_count,_primcount); -} -static unsafe void Test_DrawBuffers_32186() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.ES20.All[] _bufs = default(OpenTK.Graphics.ES20.All[]); - OpenTK.Graphics.ES20.GL.NV.DrawBuffers(_n,_bufs); -} -static unsafe void Test_DrawBuffers_32187() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.ES20.All _bufs = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.GL.NV.DrawBuffers(_n,ref _bufs); -} -static unsafe void Test_DrawBuffers_32188() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.ES20.All* _bufs = default(OpenTK.Graphics.ES20.All*); - OpenTK.Graphics.ES20.GL.NV.DrawBuffers(_n,_bufs); -} -static unsafe void Test_DrawBuffers_32189() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.ES20.DrawBufferMode[] _bufs = default(OpenTK.Graphics.ES20.DrawBufferMode[]); - OpenTK.Graphics.ES20.GL.NV.DrawBuffers(_n,_bufs); -} -static unsafe void Test_DrawBuffers_32190() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.ES20.DrawBufferMode _bufs = default(OpenTK.Graphics.ES20.DrawBufferMode); - OpenTK.Graphics.ES20.GL.NV.DrawBuffers(_n,ref _bufs); -} -static unsafe void Test_DrawBuffers_32191() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.ES20.DrawBufferMode* _bufs = default(OpenTK.Graphics.ES20.DrawBufferMode*); - OpenTK.Graphics.ES20.GL.NV.DrawBuffers(_n,_bufs); -} -static unsafe void Test_DrawElementsInstanced_32192() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.NV.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_32193() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.NV.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_32194() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.NV.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_32195() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.NV.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_32196() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.NV.DrawElementsInstanced(_mode,_count,_type,ref _indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_32197() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.DrawElementsType _type = default(OpenTK.Graphics.ES20.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.NV.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_32198() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.DrawElementsType _type = default(OpenTK.Graphics.ES20.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.NV.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_32199() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.DrawElementsType _type = default(OpenTK.Graphics.ES20.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.NV.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_32200() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.DrawElementsType _type = default(OpenTK.Graphics.ES20.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.NV.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_32201() { - OpenTK.Graphics.ES20.PrimitiveType _mode = default(OpenTK.Graphics.ES20.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES20.DrawElementsType _type = default(OpenTK.Graphics.ES20.DrawElementsType); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES20.GL.NV.DrawElementsInstanced(_mode,_count,_type,ref _indices,_primcount); -} -static unsafe void Test_FinishFence_32202() { - System.Int32 _fence = default(System.Int32); - OpenTK.Graphics.ES20.GL.NV.FinishFence(_fence); -} -static unsafe void Test_FinishFence_32203() { - System.UInt32 _fence = default(System.UInt32); - OpenTK.Graphics.ES20.GL.NV.FinishFence(_fence); -} -static unsafe void Test_GenFence_32204() { - System.Int32 r = OpenTK.Graphics.ES20.GL.NV.GenFence(); -} -static unsafe void Test_GenFences_32205() { - System.Int32 _n = default(System.Int32); - System.Int32[] _fences = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.NV.GenFences(_n,_fences); -} -static unsafe void Test_GenFences_32206() { - System.Int32 _n = default(System.Int32); - System.Int32 _fences = default(System.Int32); - OpenTK.Graphics.ES20.GL.NV.GenFences(_n,out _fences); -} -static unsafe void Test_GenFences_32207() { - System.Int32 _n = default(System.Int32); - System.Int32* _fences = default(System.Int32*); - OpenTK.Graphics.ES20.GL.NV.GenFences(_n,_fences); -} -static unsafe void Test_GenFences_32208() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _fences = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.NV.GenFences(_n,_fences); -} -static unsafe void Test_GenFences_32209() { - System.Int32 _n = default(System.Int32); - System.UInt32 _fences = default(System.UInt32); - OpenTK.Graphics.ES20.GL.NV.GenFences(_n,out _fences); -} -static unsafe void Test_GenFences_32210() { - System.Int32 _n = default(System.Int32); - System.UInt32* _fences = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.NV.GenFences(_n,_fences); -} -static unsafe void Test_GetFence_32211() { - System.Int32 _fence = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.NV.GetFence(_fence,_pname,_params); -} -static unsafe void Test_GetFence_32212() { - System.Int32 _fence = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.NV.GetFence(_fence,_pname,out _params); -} -static unsafe void Test_GetFence_32213() { - System.Int32 _fence = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.NV.GetFence(_fence,_pname,_params); -} -static unsafe void Test_GetFence_32214() { - System.UInt32 _fence = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.NV.GetFence(_fence,_pname,_params); -} -static unsafe void Test_GetFence_32215() { - System.UInt32 _fence = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.NV.GetFence(_fence,_pname,out _params); -} -static unsafe void Test_GetFence_32216() { - System.UInt32 _fence = default(System.UInt32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.NV.GetFence(_fence,_pname,_params); -} -static unsafe void Test_IsFence_32217() { - System.Int32 _fence = default(System.Int32); - System.Boolean r = OpenTK.Graphics.ES20.GL.NV.IsFence(_fence); -} -static unsafe void Test_IsFence_32218() { - System.UInt32 _fence = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.ES20.GL.NV.IsFence(_fence); -} -static unsafe void Test_ReadBuffer_32219() { - OpenTK.Graphics.ES20.All _mode = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.GL.NV.ReadBuffer(_mode); -} -static unsafe void Test_RenderbufferStorageMultisample_32220() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.GL.NV.RenderbufferStorageMultisample(_target,_samples,_internalformat,_width,_height); -} -static unsafe void Test_RenderbufferStorageMultisample_32221() { - OpenTK.Graphics.ES20.RenderbufferTarget _target = default(OpenTK.Graphics.ES20.RenderbufferTarget); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.ES20.RenderbufferInternalFormat _internalformat = default(OpenTK.Graphics.ES20.RenderbufferInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.GL.NV.RenderbufferStorageMultisample(_target,_samples,_internalformat,_width,_height); -} -static unsafe void Test_SetFence_32222() { - System.Int32 _fence = default(System.Int32); - OpenTK.Graphics.ES20.All _condition = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.GL.NV.SetFence(_fence,_condition); -} -static unsafe void Test_SetFence_32223() { - System.UInt32 _fence = default(System.UInt32); - OpenTK.Graphics.ES20.All _condition = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.GL.NV.SetFence(_fence,_condition); -} -static unsafe void Test_TestFence_32224() { - System.Int32 _fence = default(System.Int32); - System.Boolean r = OpenTK.Graphics.ES20.GL.NV.TestFence(_fence); -} -static unsafe void Test_TestFence_32225() { - System.UInt32 _fence = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.ES20.GL.NV.TestFence(_fence); -} -static unsafe void Test_UniformMatrix2x3_32226() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES20.GL.NV.UniformMatrix2x3(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix2x3_32227() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES20.GL.NV.UniformMatrix2x3(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix2x3_32228() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES20.GL.NV.UniformMatrix2x3(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix2x4_32229() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES20.GL.NV.UniformMatrix2x4(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix2x4_32230() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES20.GL.NV.UniformMatrix2x4(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix2x4_32231() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES20.GL.NV.UniformMatrix2x4(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3x2_32232() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES20.GL.NV.UniformMatrix3x2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3x2_32233() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES20.GL.NV.UniformMatrix3x2(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix3x2_32234() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES20.GL.NV.UniformMatrix3x2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3x4_32235() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES20.GL.NV.UniformMatrix3x4(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3x4_32236() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES20.GL.NV.UniformMatrix3x4(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix3x4_32237() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES20.GL.NV.UniformMatrix3x4(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4x2_32238() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES20.GL.NV.UniformMatrix4x2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4x2_32239() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES20.GL.NV.UniformMatrix4x2(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix4x2_32240() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES20.GL.NV.UniformMatrix4x2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4x3_32241() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES20.GL.NV.UniformMatrix4x3(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4x3_32242() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES20.GL.NV.UniformMatrix4x3(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix4x3_32243() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES20.GL.NV.UniformMatrix4x3(_location,_count,_transpose,_value); -} -static unsafe void Test_VertexAttribDivisor_32244() { - System.Int32 _index = default(System.Int32); - System.Int32 _divisor = default(System.Int32); - OpenTK.Graphics.ES20.GL.NV.VertexAttribDivisor(_index,_divisor); -} -static unsafe void Test_VertexAttribDivisor_32245() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _divisor = default(System.UInt32); - OpenTK.Graphics.ES20.GL.NV.VertexAttribDivisor(_index,_divisor); -} -static unsafe void Test_BindVertexArray_32246() { - System.Int32 _array = default(System.Int32); - OpenTK.Graphics.ES20.GL.Oes.BindVertexArray(_array); -} -static unsafe void Test_BindVertexArray_32247() { - System.UInt32 _array = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Oes.BindVertexArray(_array); -} -static unsafe void Test_CompressedTexImage3D_32248() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.Oes.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage3D_32249() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.ES20.GL.Oes.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage3D_32250() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES20.GL.Oes.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage3D_32251() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES20.GL.Oes.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage3D_32252() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.ES20.GL.Oes.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,ref _data); -} -static unsafe void Test_CompressedTexImage3D_32253() { - OpenTK.Graphics.ES20.TextureTarget3d _target = default(OpenTK.Graphics.ES20.TextureTarget3d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.CompressedInternalFormat _internalformat = default(OpenTK.Graphics.ES20.CompressedInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.Oes.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage3D_32254() { - OpenTK.Graphics.ES20.TextureTarget3d _target = default(OpenTK.Graphics.ES20.TextureTarget3d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.CompressedInternalFormat _internalformat = default(OpenTK.Graphics.ES20.CompressedInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.ES20.GL.Oes.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage3D_32255() { - OpenTK.Graphics.ES20.TextureTarget3d _target = default(OpenTK.Graphics.ES20.TextureTarget3d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.CompressedInternalFormat _internalformat = default(OpenTK.Graphics.ES20.CompressedInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES20.GL.Oes.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage3D_32256() { - OpenTK.Graphics.ES20.TextureTarget3d _target = default(OpenTK.Graphics.ES20.TextureTarget3d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.CompressedInternalFormat _internalformat = default(OpenTK.Graphics.ES20.CompressedInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES20.GL.Oes.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage3D_32257() { - OpenTK.Graphics.ES20.TextureTarget3d _target = default(OpenTK.Graphics.ES20.TextureTarget3d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.CompressedInternalFormat _internalformat = default(OpenTK.Graphics.ES20.CompressedInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.ES20.GL.Oes.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,ref _data); -} -static unsafe void Test_CompressedTexSubImage3D_32258() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.Oes.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage3D_32259() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.ES20.GL.Oes.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage3D_32260() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES20.GL.Oes.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage3D_32261() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES20.GL.Oes.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage3D_32262() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.ES20.GL.Oes.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,ref _data); -} -static unsafe void Test_CompressedTexSubImage3D_32263() { - OpenTK.Graphics.ES20.TextureTarget3d _target = default(OpenTK.Graphics.ES20.TextureTarget3d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.Oes.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage3D_32264() { - OpenTK.Graphics.ES20.TextureTarget3d _target = default(OpenTK.Graphics.ES20.TextureTarget3d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.ES20.GL.Oes.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage3D_32265() { - OpenTK.Graphics.ES20.TextureTarget3d _target = default(OpenTK.Graphics.ES20.TextureTarget3d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES20.GL.Oes.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage3D_32266() { - OpenTK.Graphics.ES20.TextureTarget3d _target = default(OpenTK.Graphics.ES20.TextureTarget3d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES20.GL.Oes.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage3D_32267() { - OpenTK.Graphics.ES20.TextureTarget3d _target = default(OpenTK.Graphics.ES20.TextureTarget3d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.ES20.GL.Oes.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,ref _data); -} -static unsafe void Test_CopyTexSubImage3D_32268() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.GL.Oes.CopyTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_x,_y,_width,_height); -} -static unsafe void Test_CopyTexSubImage3D_32269() { - OpenTK.Graphics.ES20.TextureTarget3d _target = default(OpenTK.Graphics.ES20.TextureTarget3d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES20.GL.Oes.CopyTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_x,_y,_width,_height); -} -static unsafe void Test_DeleteVertexArray_32270() { - System.Int32 _arrays = default(System.Int32); - OpenTK.Graphics.ES20.GL.Oes.DeleteVertexArray(_arrays); -} -static unsafe void Test_DeleteVertexArray_32271() { - System.UInt32 _arrays = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Oes.DeleteVertexArray(_arrays); -} -static unsafe void Test_DeleteVertexArrays_32272() { - System.Int32 _n = default(System.Int32); - System.Int32[] _arrays = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Oes.DeleteVertexArrays(_n,_arrays); -} -static unsafe void Test_DeleteVertexArrays_32273() { - System.Int32 _n = default(System.Int32); - System.Int32 _arrays = default(System.Int32); - OpenTK.Graphics.ES20.GL.Oes.DeleteVertexArrays(_n,ref _arrays); -} -static unsafe void Test_DeleteVertexArrays_32274() { - System.Int32 _n = default(System.Int32); - System.Int32* _arrays = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Oes.DeleteVertexArrays(_n,_arrays); -} -static unsafe void Test_DeleteVertexArrays_32275() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _arrays = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.Oes.DeleteVertexArrays(_n,_arrays); -} -static unsafe void Test_DeleteVertexArrays_32276() { - System.Int32 _n = default(System.Int32); - System.UInt32 _arrays = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Oes.DeleteVertexArrays(_n,ref _arrays); -} -static unsafe void Test_DeleteVertexArrays_32277() { - System.Int32 _n = default(System.Int32); - System.UInt32* _arrays = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.Oes.DeleteVertexArrays(_n,_arrays); -} -static unsafe void Test_EGLImageTargetRenderbufferStorage_32278() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.IntPtr _image = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.Oes.EGLImageTargetRenderbufferStorage(_target,_image); -} -static unsafe void Test_EGLImageTargetTexture2D_32279() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.IntPtr _image = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.Oes.EGLImageTargetTexture2D(_target,_image); -} -static unsafe void Test_FramebufferTexture3D_32280() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _attachment = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _textarget = default(OpenTK.Graphics.ES20.All); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - OpenTK.Graphics.ES20.GL.Oes.FramebufferTexture3D(_target,_attachment,_textarget,_texture,_level,_zoffset); -} -static unsafe void Test_FramebufferTexture3D_32281() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _attachment = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _textarget = default(OpenTK.Graphics.ES20.All); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - OpenTK.Graphics.ES20.GL.Oes.FramebufferTexture3D(_target,_attachment,_textarget,_texture,_level,_zoffset); -} -static unsafe void Test_GenVertexArray_32282() { - System.Int32 r = OpenTK.Graphics.ES20.GL.Oes.GenVertexArray(); -} -static unsafe void Test_GenVertexArrays_32283() { - System.Int32 _n = default(System.Int32); - System.Int32[] _arrays = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Oes.GenVertexArrays(_n,_arrays); -} -static unsafe void Test_GenVertexArrays_32284() { - System.Int32 _n = default(System.Int32); - System.Int32 _arrays = default(System.Int32); - OpenTK.Graphics.ES20.GL.Oes.GenVertexArrays(_n,out _arrays); -} -static unsafe void Test_GenVertexArrays_32285() { - System.Int32 _n = default(System.Int32); - System.Int32* _arrays = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Oes.GenVertexArrays(_n,_arrays); -} -static unsafe void Test_GenVertexArrays_32286() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _arrays = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.Oes.GenVertexArrays(_n,_arrays); -} -static unsafe void Test_GenVertexArrays_32287() { - System.Int32 _n = default(System.Int32); - System.UInt32 _arrays = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Oes.GenVertexArrays(_n,out _arrays); -} -static unsafe void Test_GenVertexArrays_32288() { - System.Int32 _n = default(System.Int32); - System.UInt32* _arrays = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.Oes.GenVertexArrays(_n,_arrays); -} -static unsafe void Test_GetBufferPointer_32289() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.IntPtr _params = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.Oes.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_32290() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - int[] _params = default(int[]); - OpenTK.Graphics.ES20.GL.Oes.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_32291() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - int[,] _params = default(int[,]); - OpenTK.Graphics.ES20.GL.Oes.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_32292() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - int[,,] _params = default(int[,,]); - OpenTK.Graphics.ES20.GL.Oes.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_32293() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - int _params = default(int); - OpenTK.Graphics.ES20.GL.Oes.GetBufferPointer(_target,_pname,ref _params); -} -static unsafe void Test_GetBufferPointer_32294() { - OpenTK.Graphics.ES20.BufferTarget _target = default(OpenTK.Graphics.ES20.BufferTarget); - OpenTK.Graphics.ES20.BufferPointer _pname = default(OpenTK.Graphics.ES20.BufferPointer); - System.IntPtr _params = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.Oes.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_32295() { - OpenTK.Graphics.ES20.BufferTarget _target = default(OpenTK.Graphics.ES20.BufferTarget); - OpenTK.Graphics.ES20.BufferPointer _pname = default(OpenTK.Graphics.ES20.BufferPointer); - int[] _params = default(int[]); - OpenTK.Graphics.ES20.GL.Oes.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_32296() { - OpenTK.Graphics.ES20.BufferTarget _target = default(OpenTK.Graphics.ES20.BufferTarget); - OpenTK.Graphics.ES20.BufferPointer _pname = default(OpenTK.Graphics.ES20.BufferPointer); - int[,] _params = default(int[,]); - OpenTK.Graphics.ES20.GL.Oes.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_32297() { - OpenTK.Graphics.ES20.BufferTarget _target = default(OpenTK.Graphics.ES20.BufferTarget); - OpenTK.Graphics.ES20.BufferPointer _pname = default(OpenTK.Graphics.ES20.BufferPointer); - int[,,] _params = default(int[,,]); - OpenTK.Graphics.ES20.GL.Oes.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_32298() { - OpenTK.Graphics.ES20.BufferTarget _target = default(OpenTK.Graphics.ES20.BufferTarget); - OpenTK.Graphics.ES20.BufferPointer _pname = default(OpenTK.Graphics.ES20.BufferPointer); - int _params = default(int); - OpenTK.Graphics.ES20.GL.Oes.GetBufferPointer(_target,_pname,ref _params); -} -static unsafe void Test_GetProgramBinary_32299() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - OpenTK.Graphics.ES20.All[] _binaryFormat = default(OpenTK.Graphics.ES20.All[]); - System.IntPtr _binary = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.Oes.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_32300() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - OpenTK.Graphics.ES20.All[] _binaryFormat = default(OpenTK.Graphics.ES20.All[]); - int[] _binary = default(int[]); - OpenTK.Graphics.ES20.GL.Oes.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_32301() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - OpenTK.Graphics.ES20.All[] _binaryFormat = default(OpenTK.Graphics.ES20.All[]); - int[,] _binary = default(int[,]); - OpenTK.Graphics.ES20.GL.Oes.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_32302() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - OpenTK.Graphics.ES20.All[] _binaryFormat = default(OpenTK.Graphics.ES20.All[]); - int[,,] _binary = default(int[,,]); - OpenTK.Graphics.ES20.GL.Oes.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_32303() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - OpenTK.Graphics.ES20.All[] _binaryFormat = default(OpenTK.Graphics.ES20.All[]); - int _binary = default(int); - OpenTK.Graphics.ES20.GL.Oes.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,ref _binary); -} -static unsafe void Test_GetProgramBinary_32304() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.All _binaryFormat = default(OpenTK.Graphics.ES20.All); - System.IntPtr _binary = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.Oes.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_32305() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.All _binaryFormat = default(OpenTK.Graphics.ES20.All); - int[] _binary = default(int[]); - OpenTK.Graphics.ES20.GL.Oes.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_32306() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.All _binaryFormat = default(OpenTK.Graphics.ES20.All); - int[,] _binary = default(int[,]); - OpenTK.Graphics.ES20.GL.Oes.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_32307() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.All _binaryFormat = default(OpenTK.Graphics.ES20.All); - int[,,] _binary = default(int[,,]); - OpenTK.Graphics.ES20.GL.Oes.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_32308() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.All _binaryFormat = default(OpenTK.Graphics.ES20.All); - int _binary = default(int); - OpenTK.Graphics.ES20.GL.Oes.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,ref _binary); -} -static unsafe void Test_GetProgramBinary_32309() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.ES20.All* _binaryFormat = default(OpenTK.Graphics.ES20.All*); - System.IntPtr _binary = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.Oes.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_32310() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.ES20.All* _binaryFormat = default(OpenTK.Graphics.ES20.All*); - int[] _binary = default(int[]); - OpenTK.Graphics.ES20.GL.Oes.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_32311() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.ES20.All* _binaryFormat = default(OpenTK.Graphics.ES20.All*); - int[,] _binary = default(int[,]); - OpenTK.Graphics.ES20.GL.Oes.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_32312() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.ES20.All* _binaryFormat = default(OpenTK.Graphics.ES20.All*); - int[,,] _binary = default(int[,,]); - OpenTK.Graphics.ES20.GL.Oes.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_32313() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.ES20.All* _binaryFormat = default(OpenTK.Graphics.ES20.All*); - int _binary = default(int); - OpenTK.Graphics.ES20.GL.Oes.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,ref _binary); -} -static unsafe void Test_GetProgramBinary_32314() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - OpenTK.Graphics.ES20.All[] _binaryFormat = default(OpenTK.Graphics.ES20.All[]); - System.IntPtr _binary = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.Oes.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_32315() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - OpenTK.Graphics.ES20.All[] _binaryFormat = default(OpenTK.Graphics.ES20.All[]); - int[] _binary = default(int[]); - OpenTK.Graphics.ES20.GL.Oes.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_32316() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - OpenTK.Graphics.ES20.All[] _binaryFormat = default(OpenTK.Graphics.ES20.All[]); - int[,] _binary = default(int[,]); - OpenTK.Graphics.ES20.GL.Oes.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_32317() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - OpenTK.Graphics.ES20.All[] _binaryFormat = default(OpenTK.Graphics.ES20.All[]); - int[,,] _binary = default(int[,,]); - OpenTK.Graphics.ES20.GL.Oes.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_32318() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - OpenTK.Graphics.ES20.All[] _binaryFormat = default(OpenTK.Graphics.ES20.All[]); - int _binary = default(int); - OpenTK.Graphics.ES20.GL.Oes.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,ref _binary); -} -static unsafe void Test_GetProgramBinary_32319() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.All _binaryFormat = default(OpenTK.Graphics.ES20.All); - System.IntPtr _binary = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.Oes.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_32320() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.All _binaryFormat = default(OpenTK.Graphics.ES20.All); - int[] _binary = default(int[]); - OpenTK.Graphics.ES20.GL.Oes.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_32321() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.All _binaryFormat = default(OpenTK.Graphics.ES20.All); - int[,] _binary = default(int[,]); - OpenTK.Graphics.ES20.GL.Oes.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_32322() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.All _binaryFormat = default(OpenTK.Graphics.ES20.All); - int[,,] _binary = default(int[,,]); - OpenTK.Graphics.ES20.GL.Oes.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_32323() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.All _binaryFormat = default(OpenTK.Graphics.ES20.All); - int _binary = default(int); - OpenTK.Graphics.ES20.GL.Oes.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,ref _binary); -} -static unsafe void Test_GetProgramBinary_32324() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.ES20.All* _binaryFormat = default(OpenTK.Graphics.ES20.All*); - System.IntPtr _binary = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.Oes.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_32325() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.ES20.All* _binaryFormat = default(OpenTK.Graphics.ES20.All*); - int[] _binary = default(int[]); - OpenTK.Graphics.ES20.GL.Oes.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_32326() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.ES20.All* _binaryFormat = default(OpenTK.Graphics.ES20.All*); - int[,] _binary = default(int[,]); - OpenTK.Graphics.ES20.GL.Oes.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_32327() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.ES20.All* _binaryFormat = default(OpenTK.Graphics.ES20.All*); - int[,,] _binary = default(int[,,]); - OpenTK.Graphics.ES20.GL.Oes.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_32328() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.ES20.All* _binaryFormat = default(OpenTK.Graphics.ES20.All*); - int _binary = default(int); - OpenTK.Graphics.ES20.GL.Oes.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,ref _binary); -} -static unsafe void Test_IsVertexArray_32329() { - System.Int32 _array = default(System.Int32); - System.Boolean r = OpenTK.Graphics.ES20.GL.Oes.IsVertexArray(_array); -} -static unsafe void Test_IsVertexArray_32330() { - System.UInt32 _array = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.ES20.GL.Oes.IsVertexArray(_array); -} -static unsafe void Test_MapBuffer_32331() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _access = default(OpenTK.Graphics.ES20.All); - System.IntPtr r = OpenTK.Graphics.ES20.GL.Oes.MapBuffer(_target,_access); -} -static unsafe void Test_MinSampleShading_32332() { - System.Single _value = default(System.Single); - OpenTK.Graphics.ES20.GL.Oes.MinSampleShading(_value); -} -static unsafe void Test_ProgramBinary_32333() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES20.All _binaryFormat = default(OpenTK.Graphics.ES20.All); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.Oes.ProgramBinary(_program,_binaryFormat,_binary,_length); -} -static unsafe void Test_ProgramBinary_32334() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES20.All _binaryFormat = default(OpenTK.Graphics.ES20.All); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.Oes.ProgramBinary(_program,_binaryFormat,_binary,_length); -} -static unsafe void Test_ProgramBinary_32335() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES20.All _binaryFormat = default(OpenTK.Graphics.ES20.All); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.Oes.ProgramBinary(_program,_binaryFormat,_binary,_length); -} -static unsafe void Test_ProgramBinary_32336() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES20.All _binaryFormat = default(OpenTK.Graphics.ES20.All); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.Oes.ProgramBinary(_program,_binaryFormat,_binary,_length); -} -static unsafe void Test_ProgramBinary_32337() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES20.All _binaryFormat = default(OpenTK.Graphics.ES20.All); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.Oes.ProgramBinary(_program,_binaryFormat,ref _binary,_length); -} -static unsafe void Test_ProgramBinary_32338() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES20.All _binaryFormat = default(OpenTK.Graphics.ES20.All); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.Oes.ProgramBinary(_program,_binaryFormat,_binary,_length); -} -static unsafe void Test_ProgramBinary_32339() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES20.All _binaryFormat = default(OpenTK.Graphics.ES20.All); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.Oes.ProgramBinary(_program,_binaryFormat,_binary,_length); -} -static unsafe void Test_ProgramBinary_32340() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES20.All _binaryFormat = default(OpenTK.Graphics.ES20.All); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.Oes.ProgramBinary(_program,_binaryFormat,_binary,_length); -} -static unsafe void Test_ProgramBinary_32341() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES20.All _binaryFormat = default(OpenTK.Graphics.ES20.All); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.Oes.ProgramBinary(_program,_binaryFormat,_binary,_length); -} -static unsafe void Test_ProgramBinary_32342() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES20.All _binaryFormat = default(OpenTK.Graphics.ES20.All); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.Oes.ProgramBinary(_program,_binaryFormat,ref _binary,_length); -} -static unsafe void Test_TexImage3D_32343() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.Oes.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_32344() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[] _pixels = default(int[]); - OpenTK.Graphics.ES20.GL.Oes.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_32345() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.ES20.GL.Oes.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_32346() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.ES20.GL.Oes.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_32347() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int _pixels = default(int); - OpenTK.Graphics.ES20.GL.Oes.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,ref _pixels); -} -static unsafe void Test_TexImage3D_32348() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.Oes.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_32349() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[] _pixels = default(int[]); - OpenTK.Graphics.ES20.GL.Oes.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_32350() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.ES20.GL.Oes.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_32351() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.ES20.GL.Oes.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_32352() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int _pixels = default(int); - OpenTK.Graphics.ES20.GL.Oes.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,ref _pixels); -} -static unsafe void Test_TexImage3D_32353() { - OpenTK.Graphics.ES20.TextureTarget3d _target = default(OpenTK.Graphics.ES20.TextureTarget3d); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - OpenTK.Graphics.ES20.PixelType _type = default(OpenTK.Graphics.ES20.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.Oes.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_32354() { - OpenTK.Graphics.ES20.TextureTarget3d _target = default(OpenTK.Graphics.ES20.TextureTarget3d); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - OpenTK.Graphics.ES20.PixelType _type = default(OpenTK.Graphics.ES20.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.ES20.GL.Oes.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_32355() { - OpenTK.Graphics.ES20.TextureTarget3d _target = default(OpenTK.Graphics.ES20.TextureTarget3d); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - OpenTK.Graphics.ES20.PixelType _type = default(OpenTK.Graphics.ES20.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.ES20.GL.Oes.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_32356() { - OpenTK.Graphics.ES20.TextureTarget3d _target = default(OpenTK.Graphics.ES20.TextureTarget3d); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - OpenTK.Graphics.ES20.PixelType _type = default(OpenTK.Graphics.ES20.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.ES20.GL.Oes.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_32357() { - OpenTK.Graphics.ES20.TextureTarget3d _target = default(OpenTK.Graphics.ES20.TextureTarget3d); - System.Int32 _level = default(System.Int32); - System.Int32 _internalformat = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - OpenTK.Graphics.ES20.PixelType _type = default(OpenTK.Graphics.ES20.PixelType); - int _pixels = default(int); - OpenTK.Graphics.ES20.GL.Oes.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,ref _pixels); -} -static unsafe void Test_TexImage3D_32358() { - OpenTK.Graphics.ES20.TextureTarget3d _target = default(OpenTK.Graphics.ES20.TextureTarget3d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.TextureComponentCount _internalformat = default(OpenTK.Graphics.ES20.TextureComponentCount); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - OpenTK.Graphics.ES20.PixelType _type = default(OpenTK.Graphics.ES20.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.Oes.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_32359() { - OpenTK.Graphics.ES20.TextureTarget3d _target = default(OpenTK.Graphics.ES20.TextureTarget3d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.TextureComponentCount _internalformat = default(OpenTK.Graphics.ES20.TextureComponentCount); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - OpenTK.Graphics.ES20.PixelType _type = default(OpenTK.Graphics.ES20.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.ES20.GL.Oes.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_32360() { - OpenTK.Graphics.ES20.TextureTarget3d _target = default(OpenTK.Graphics.ES20.TextureTarget3d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.TextureComponentCount _internalformat = default(OpenTK.Graphics.ES20.TextureComponentCount); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - OpenTK.Graphics.ES20.PixelType _type = default(OpenTK.Graphics.ES20.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.ES20.GL.Oes.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_32361() { - OpenTK.Graphics.ES20.TextureTarget3d _target = default(OpenTK.Graphics.ES20.TextureTarget3d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.TextureComponentCount _internalformat = default(OpenTK.Graphics.ES20.TextureComponentCount); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - OpenTK.Graphics.ES20.PixelType _type = default(OpenTK.Graphics.ES20.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.ES20.GL.Oes.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_32362() { - OpenTK.Graphics.ES20.TextureTarget3d _target = default(OpenTK.Graphics.ES20.TextureTarget3d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.TextureComponentCount _internalformat = default(OpenTK.Graphics.ES20.TextureComponentCount); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES20.PixelFormat _format = default(OpenTK.Graphics.ES20.PixelFormat); - OpenTK.Graphics.ES20.PixelType _type = default(OpenTK.Graphics.ES20.PixelType); - int _pixels = default(int); - OpenTK.Graphics.ES20.GL.Oes.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,ref _pixels); -} -static unsafe void Test_TexStorage3DMultisample_32363() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.ES20.All _internalformat = default(OpenTK.Graphics.ES20.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Boolean _fixedsamplelocations = default(System.Boolean); - OpenTK.Graphics.ES20.GL.Oes.TexStorage3DMultisample(_target,_samples,_internalformat,_width,_height,_depth,_fixedsamplelocations); -} -static unsafe void Test_TexSubImage3D_32364() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.Oes.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage3D_32365() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[] _pixels = default(int[]); - OpenTK.Graphics.ES20.GL.Oes.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage3D_32366() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.ES20.GL.Oes.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage3D_32367() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.ES20.GL.Oes.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage3D_32368() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int _pixels = default(int); - OpenTK.Graphics.ES20.GL.Oes.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,ref _pixels); -} -static unsafe void Test_TexSubImage3D_32369() { - OpenTK.Graphics.ES20.TextureTarget3d _target = default(OpenTK.Graphics.ES20.TextureTarget3d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.Oes.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage3D_32370() { - OpenTK.Graphics.ES20.TextureTarget3d _target = default(OpenTK.Graphics.ES20.TextureTarget3d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[] _pixels = default(int[]); - OpenTK.Graphics.ES20.GL.Oes.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage3D_32371() { - OpenTK.Graphics.ES20.TextureTarget3d _target = default(OpenTK.Graphics.ES20.TextureTarget3d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.ES20.GL.Oes.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage3D_32372() { - OpenTK.Graphics.ES20.TextureTarget3d _target = default(OpenTK.Graphics.ES20.TextureTarget3d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.ES20.GL.Oes.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage3D_32373() { - OpenTK.Graphics.ES20.TextureTarget3d _target = default(OpenTK.Graphics.ES20.TextureTarget3d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int _pixels = default(int); - OpenTK.Graphics.ES20.GL.Oes.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,ref _pixels); -} -static unsafe void Test_UnmapBuffer_32374() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Boolean r = OpenTK.Graphics.ES20.GL.Oes.UnmapBuffer(_target); -} -static unsafe void Test_UnmapBuffer_32375() { - OpenTK.Graphics.ES20.BufferTarget _target = default(OpenTK.Graphics.ES20.BufferTarget); - System.Boolean r = OpenTK.Graphics.ES20.GL.Oes.UnmapBuffer(_target); -} -static unsafe void Test_AlphaFunc_32376() { - OpenTK.Graphics.ES20.All _func = default(OpenTK.Graphics.ES20.All); - System.Single _ref = default(System.Single); - OpenTK.Graphics.ES20.GL.Qcom.AlphaFunc(_func,_ref); -} -static unsafe void Test_DisableDriverControl_32377() { - System.Int32 _driverControl = default(System.Int32); - OpenTK.Graphics.ES20.GL.Qcom.DisableDriverControl(_driverControl); -} -static unsafe void Test_DisableDriverControl_32378() { - System.UInt32 _driverControl = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Qcom.DisableDriverControl(_driverControl); -} -static unsafe void Test_EnableDriverControl_32379() { - System.Int32 _driverControl = default(System.Int32); - OpenTK.Graphics.ES20.GL.Qcom.EnableDriverControl(_driverControl); -} -static unsafe void Test_EnableDriverControl_32380() { - System.UInt32 _driverControl = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Qcom.EnableDriverControl(_driverControl); -} -static unsafe void Test_EndTiling_32381() { - System.Int32 _preserveMask = default(System.Int32); - OpenTK.Graphics.ES20.GL.Qcom.EndTiling(_preserveMask); -} -static unsafe void Test_EndTiling_32382() { - System.UInt32 _preserveMask = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Qcom.EndTiling(_preserveMask); -} -static unsafe void Test_ExtGetBufferPointer_32383() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.IntPtr _params = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetBufferPointer(_target,_params); -} -static unsafe void Test_ExtGetBufferPointer_32384() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - int[] _params = default(int[]); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetBufferPointer(_target,_params); -} -static unsafe void Test_ExtGetBufferPointer_32385() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - int[,] _params = default(int[,]); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetBufferPointer(_target,_params); -} -static unsafe void Test_ExtGetBufferPointer_32386() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - int[,,] _params = default(int[,,]); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetBufferPointer(_target,_params); -} -static unsafe void Test_ExtGetBufferPointer_32387() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - int _params = default(int); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetBufferPointer(_target,ref _params); -} -static unsafe void Test_ExtGetBuffers_32388() { - System.Int32[] _buffers = default(System.Int32[]); - System.Int32 _maxBuffers = default(System.Int32); - System.Int32[] _numBuffers = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetBuffers(_buffers,_maxBuffers,_numBuffers); -} -static unsafe void Test_ExtGetBuffers_32389() { - System.Int32[] _buffers = default(System.Int32[]); - System.Int32 _maxBuffers = default(System.Int32); - System.Int32 _numBuffers = default(System.Int32); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetBuffers(_buffers,_maxBuffers,out _numBuffers); -} -static unsafe void Test_ExtGetBuffers_32390() { - System.Int32 _buffers = default(System.Int32); - System.Int32 _maxBuffers = default(System.Int32); - System.Int32 _numBuffers = default(System.Int32); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetBuffers(out _buffers,_maxBuffers,out _numBuffers); -} -static unsafe void Test_ExtGetBuffers_32391() { - System.Int32* _buffers = default(System.Int32*); - System.Int32 _maxBuffers = default(System.Int32); - System.Int32* _numBuffers = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetBuffers(_buffers,_maxBuffers,_numBuffers); -} -static unsafe void Test_ExtGetBuffers_32392() { - System.UInt32[] _buffers = default(System.UInt32[]); - System.Int32 _maxBuffers = default(System.Int32); - System.Int32[] _numBuffers = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetBuffers(_buffers,_maxBuffers,_numBuffers); -} -static unsafe void Test_ExtGetBuffers_32393() { - System.UInt32[] _buffers = default(System.UInt32[]); - System.Int32 _maxBuffers = default(System.Int32); - System.Int32 _numBuffers = default(System.Int32); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetBuffers(_buffers,_maxBuffers,out _numBuffers); -} -static unsafe void Test_ExtGetBuffers_32394() { - System.UInt32 _buffers = default(System.UInt32); - System.Int32 _maxBuffers = default(System.Int32); - System.Int32 _numBuffers = default(System.Int32); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetBuffers(out _buffers,_maxBuffers,out _numBuffers); -} -static unsafe void Test_ExtGetBuffers_32395() { - System.UInt32* _buffers = default(System.UInt32*); - System.Int32 _maxBuffers = default(System.Int32); - System.Int32* _numBuffers = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetBuffers(_buffers,_maxBuffers,_numBuffers); -} -static unsafe void Test_ExtGetFramebuffers_32396() { - System.Int32[] _framebuffers = default(System.Int32[]); - System.Int32 _maxFramebuffers = default(System.Int32); - System.Int32[] _numFramebuffers = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetFramebuffers(_framebuffers,_maxFramebuffers,_numFramebuffers); -} -static unsafe void Test_ExtGetFramebuffers_32397() { - System.Int32[] _framebuffers = default(System.Int32[]); - System.Int32 _maxFramebuffers = default(System.Int32); - System.Int32 _numFramebuffers = default(System.Int32); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetFramebuffers(_framebuffers,_maxFramebuffers,out _numFramebuffers); -} -static unsafe void Test_ExtGetFramebuffers_32398() { - System.Int32 _framebuffers = default(System.Int32); - System.Int32 _maxFramebuffers = default(System.Int32); - System.Int32 _numFramebuffers = default(System.Int32); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetFramebuffers(out _framebuffers,_maxFramebuffers,out _numFramebuffers); -} -static unsafe void Test_ExtGetFramebuffers_32399() { - System.Int32* _framebuffers = default(System.Int32*); - System.Int32 _maxFramebuffers = default(System.Int32); - System.Int32* _numFramebuffers = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetFramebuffers(_framebuffers,_maxFramebuffers,_numFramebuffers); -} -static unsafe void Test_ExtGetFramebuffers_32400() { - System.UInt32[] _framebuffers = default(System.UInt32[]); - System.Int32 _maxFramebuffers = default(System.Int32); - System.Int32[] _numFramebuffers = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetFramebuffers(_framebuffers,_maxFramebuffers,_numFramebuffers); -} -static unsafe void Test_ExtGetFramebuffers_32401() { - System.UInt32[] _framebuffers = default(System.UInt32[]); - System.Int32 _maxFramebuffers = default(System.Int32); - System.Int32 _numFramebuffers = default(System.Int32); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetFramebuffers(_framebuffers,_maxFramebuffers,out _numFramebuffers); -} -static unsafe void Test_ExtGetFramebuffers_32402() { - System.UInt32 _framebuffers = default(System.UInt32); - System.Int32 _maxFramebuffers = default(System.Int32); - System.Int32 _numFramebuffers = default(System.Int32); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetFramebuffers(out _framebuffers,_maxFramebuffers,out _numFramebuffers); -} -static unsafe void Test_ExtGetFramebuffers_32403() { - System.UInt32* _framebuffers = default(System.UInt32*); - System.Int32 _maxFramebuffers = default(System.Int32); - System.Int32* _numFramebuffers = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetFramebuffers(_framebuffers,_maxFramebuffers,_numFramebuffers); -} -static unsafe void Test_ExtGetProgramBinarySource_32404() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES20.All _shadertype = default(OpenTK.Graphics.ES20.All); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - System.Int32[] _length = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetProgramBinarySource(_program,_shadertype,_source,_length); -} -static unsafe void Test_ExtGetProgramBinarySource_32405() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES20.All _shadertype = default(OpenTK.Graphics.ES20.All); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetProgramBinarySource(_program,_shadertype,_source,out _length); -} -static unsafe void Test_ExtGetProgramBinarySource_32406() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES20.All _shadertype = default(OpenTK.Graphics.ES20.All); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetProgramBinarySource(_program,_shadertype,_source,_length); -} -static unsafe void Test_ExtGetProgramBinarySource_32407() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES20.All _shadertype = default(OpenTK.Graphics.ES20.All); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - System.Int32[] _length = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetProgramBinarySource(_program,_shadertype,_source,_length); -} -static unsafe void Test_ExtGetProgramBinarySource_32408() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES20.All _shadertype = default(OpenTK.Graphics.ES20.All); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetProgramBinarySource(_program,_shadertype,_source,out _length); -} -static unsafe void Test_ExtGetProgramBinarySource_32409() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES20.All _shadertype = default(OpenTK.Graphics.ES20.All); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetProgramBinarySource(_program,_shadertype,_source,_length); -} -static unsafe void Test_ExtGetProgram_32410() { - System.Int32[] _programs = default(System.Int32[]); - System.Int32 _maxPrograms = default(System.Int32); - System.Int32[] _numPrograms = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetProgram(_programs,_maxPrograms,_numPrograms); -} -static unsafe void Test_ExtGetProgram_32411() { - System.Int32[] _programs = default(System.Int32[]); - System.Int32 _maxPrograms = default(System.Int32); - System.Int32 _numPrograms = default(System.Int32); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetProgram(_programs,_maxPrograms,out _numPrograms); -} -static unsafe void Test_ExtGetProgram_32412() { - System.Int32 _programs = default(System.Int32); - System.Int32 _maxPrograms = default(System.Int32); - System.Int32 _numPrograms = default(System.Int32); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetProgram(out _programs,_maxPrograms,out _numPrograms); -} -static unsafe void Test_ExtGetProgram_32413() { - System.Int32* _programs = default(System.Int32*); - System.Int32 _maxPrograms = default(System.Int32); - System.Int32* _numPrograms = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetProgram(_programs,_maxPrograms,_numPrograms); -} -static unsafe void Test_ExtGetProgram_32414() { - System.UInt32[] _programs = default(System.UInt32[]); - System.Int32 _maxPrograms = default(System.Int32); - System.Int32[] _numPrograms = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetProgram(_programs,_maxPrograms,_numPrograms); -} -static unsafe void Test_ExtGetProgram_32415() { - System.UInt32[] _programs = default(System.UInt32[]); - System.Int32 _maxPrograms = default(System.Int32); - System.Int32 _numPrograms = default(System.Int32); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetProgram(_programs,_maxPrograms,out _numPrograms); -} -static unsafe void Test_ExtGetProgram_32416() { - System.UInt32 _programs = default(System.UInt32); - System.Int32 _maxPrograms = default(System.Int32); - System.Int32 _numPrograms = default(System.Int32); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetProgram(out _programs,_maxPrograms,out _numPrograms); -} -static unsafe void Test_ExtGetProgram_32417() { - System.UInt32* _programs = default(System.UInt32*); - System.Int32 _maxPrograms = default(System.Int32); - System.Int32* _numPrograms = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetProgram(_programs,_maxPrograms,_numPrograms); -} -static unsafe void Test_ExtGetRenderbuffers_32418() { - System.Int32[] _renderbuffers = default(System.Int32[]); - System.Int32 _maxRenderbuffers = default(System.Int32); - System.Int32[] _numRenderbuffers = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetRenderbuffers(_renderbuffers,_maxRenderbuffers,_numRenderbuffers); -} -static unsafe void Test_ExtGetRenderbuffers_32419() { - System.Int32[] _renderbuffers = default(System.Int32[]); - System.Int32 _maxRenderbuffers = default(System.Int32); - System.Int32 _numRenderbuffers = default(System.Int32); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetRenderbuffers(_renderbuffers,_maxRenderbuffers,out _numRenderbuffers); -} -static unsafe void Test_ExtGetRenderbuffers_32420() { - System.Int32 _renderbuffers = default(System.Int32); - System.Int32 _maxRenderbuffers = default(System.Int32); - System.Int32 _numRenderbuffers = default(System.Int32); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetRenderbuffers(out _renderbuffers,_maxRenderbuffers,out _numRenderbuffers); -} -static unsafe void Test_ExtGetRenderbuffers_32421() { - System.Int32* _renderbuffers = default(System.Int32*); - System.Int32 _maxRenderbuffers = default(System.Int32); - System.Int32* _numRenderbuffers = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetRenderbuffers(_renderbuffers,_maxRenderbuffers,_numRenderbuffers); -} -static unsafe void Test_ExtGetRenderbuffers_32422() { - System.UInt32[] _renderbuffers = default(System.UInt32[]); - System.Int32 _maxRenderbuffers = default(System.Int32); - System.Int32[] _numRenderbuffers = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetRenderbuffers(_renderbuffers,_maxRenderbuffers,_numRenderbuffers); -} -static unsafe void Test_ExtGetRenderbuffers_32423() { - System.UInt32[] _renderbuffers = default(System.UInt32[]); - System.Int32 _maxRenderbuffers = default(System.Int32); - System.Int32 _numRenderbuffers = default(System.Int32); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetRenderbuffers(_renderbuffers,_maxRenderbuffers,out _numRenderbuffers); -} -static unsafe void Test_ExtGetRenderbuffers_32424() { - System.UInt32 _renderbuffers = default(System.UInt32); - System.Int32 _maxRenderbuffers = default(System.Int32); - System.Int32 _numRenderbuffers = default(System.Int32); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetRenderbuffers(out _renderbuffers,_maxRenderbuffers,out _numRenderbuffers); -} -static unsafe void Test_ExtGetRenderbuffers_32425() { - System.UInt32* _renderbuffers = default(System.UInt32*); - System.Int32 _maxRenderbuffers = default(System.Int32); - System.Int32* _numRenderbuffers = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetRenderbuffers(_renderbuffers,_maxRenderbuffers,_numRenderbuffers); -} -static unsafe void Test_ExtGetShaders_32426() { - System.Int32[] _shaders = default(System.Int32[]); - System.Int32 _maxShaders = default(System.Int32); - System.Int32[] _numShaders = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetShaders(_shaders,_maxShaders,_numShaders); -} -static unsafe void Test_ExtGetShaders_32427() { - System.Int32[] _shaders = default(System.Int32[]); - System.Int32 _maxShaders = default(System.Int32); - System.Int32 _numShaders = default(System.Int32); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetShaders(_shaders,_maxShaders,out _numShaders); -} -static unsafe void Test_ExtGetShaders_32428() { - System.Int32 _shaders = default(System.Int32); - System.Int32 _maxShaders = default(System.Int32); - System.Int32 _numShaders = default(System.Int32); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetShaders(out _shaders,_maxShaders,out _numShaders); -} -static unsafe void Test_ExtGetShaders_32429() { - System.Int32* _shaders = default(System.Int32*); - System.Int32 _maxShaders = default(System.Int32); - System.Int32* _numShaders = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetShaders(_shaders,_maxShaders,_numShaders); -} -static unsafe void Test_ExtGetShaders_32430() { - System.UInt32[] _shaders = default(System.UInt32[]); - System.Int32 _maxShaders = default(System.Int32); - System.Int32[] _numShaders = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetShaders(_shaders,_maxShaders,_numShaders); -} -static unsafe void Test_ExtGetShaders_32431() { - System.UInt32[] _shaders = default(System.UInt32[]); - System.Int32 _maxShaders = default(System.Int32); - System.Int32 _numShaders = default(System.Int32); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetShaders(_shaders,_maxShaders,out _numShaders); -} -static unsafe void Test_ExtGetShaders_32432() { - System.UInt32 _shaders = default(System.UInt32); - System.Int32 _maxShaders = default(System.Int32); - System.Int32 _numShaders = default(System.Int32); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetShaders(out _shaders,_maxShaders,out _numShaders); -} -static unsafe void Test_ExtGetShaders_32433() { - System.UInt32* _shaders = default(System.UInt32*); - System.Int32 _maxShaders = default(System.Int32); - System.Int32* _numShaders = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetShaders(_shaders,_maxShaders,_numShaders); -} -static unsafe void Test_ExtGetTexLevelParameter_32434() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.ES20.All _face = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetTexLevelParameter(_texture,_face,_level,_pname,_params); -} -static unsafe void Test_ExtGetTexLevelParameter_32435() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.ES20.All _face = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetTexLevelParameter(_texture,_face,_level,_pname,out _params); -} -static unsafe void Test_ExtGetTexLevelParameter_32436() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.ES20.All _face = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetTexLevelParameter(_texture,_face,_level,_pname,_params); -} -static unsafe void Test_ExtGetTexLevelParameter_32437() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.ES20.All _face = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetTexLevelParameter(_texture,_face,_level,_pname,_params); -} -static unsafe void Test_ExtGetTexLevelParameter_32438() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.ES20.All _face = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetTexLevelParameter(_texture,_face,_level,_pname,out _params); -} -static unsafe void Test_ExtGetTexLevelParameter_32439() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.ES20.All _face = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetTexLevelParameter(_texture,_face,_level,_pname,_params); -} -static unsafe void Test_ExtGetTexSubImage_32440() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - System.IntPtr _texels = default(System.IntPtr); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetTexSubImage(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_texels); -} -static unsafe void Test_ExtGetTexSubImage_32441() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[] _texels = default(int[]); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetTexSubImage(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_texels); -} -static unsafe void Test_ExtGetTexSubImage_32442() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[,] _texels = default(int[,]); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetTexSubImage(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_texels); -} -static unsafe void Test_ExtGetTexSubImage_32443() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int[,,] _texels = default(int[,,]); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetTexSubImage(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_texels); -} -static unsafe void Test_ExtGetTexSubImage_32444() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES20.All _format = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _type = default(OpenTK.Graphics.ES20.All); - int _texels = default(int); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetTexSubImage(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,ref _texels); -} -static unsafe void Test_ExtGetTextures_32445() { - System.Int32[] _textures = default(System.Int32[]); - System.Int32 _maxTextures = default(System.Int32); - System.Int32[] _numTextures = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetTextures(_textures,_maxTextures,_numTextures); -} -static unsafe void Test_ExtGetTextures_32446() { - System.Int32 _textures = default(System.Int32); - System.Int32 _maxTextures = default(System.Int32); - System.Int32 _numTextures = default(System.Int32); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetTextures(out _textures,_maxTextures,out _numTextures); -} -static unsafe void Test_ExtGetTextures_32447() { - System.Int32* _textures = default(System.Int32*); - System.Int32 _maxTextures = default(System.Int32); - System.Int32* _numTextures = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetTextures(_textures,_maxTextures,_numTextures); -} -static unsafe void Test_ExtGetTextures_32448() { - System.UInt32[] _textures = default(System.UInt32[]); - System.Int32 _maxTextures = default(System.Int32); - System.Int32[] _numTextures = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetTextures(_textures,_maxTextures,_numTextures); -} -static unsafe void Test_ExtGetTextures_32449() { - System.UInt32 _textures = default(System.UInt32); - System.Int32 _maxTextures = default(System.Int32); - System.Int32 _numTextures = default(System.Int32); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetTextures(out _textures,_maxTextures,out _numTextures); -} -static unsafe void Test_ExtGetTextures_32450() { - System.UInt32* _textures = default(System.UInt32*); - System.Int32 _maxTextures = default(System.Int32); - System.Int32* _numTextures = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Qcom.ExtGetTextures(_textures,_maxTextures,_numTextures); -} -static unsafe void Test_ExtIsProgramBinary_32451() { - System.Int32 _program = default(System.Int32); - System.Boolean r = OpenTK.Graphics.ES20.GL.Qcom.ExtIsProgramBinary(_program); -} -static unsafe void Test_ExtIsProgramBinary_32452() { - System.UInt32 _program = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.ES20.GL.Qcom.ExtIsProgramBinary(_program); -} -static unsafe void Test_ExtTexObjectStateOverride_32453() { - OpenTK.Graphics.ES20.All _target = default(OpenTK.Graphics.ES20.All); - OpenTK.Graphics.ES20.All _pname = default(OpenTK.Graphics.ES20.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES20.GL.Qcom.ExtTexObjectStateOverride(_target,_pname,_param); -} -static unsafe void Test_GetDriverControl_32454() { - System.Int32[] _num = default(System.Int32[]); - System.Int32 _size = default(System.Int32); - System.Int32[] _driverControls = default(System.Int32[]); - OpenTK.Graphics.ES20.GL.Qcom.GetDriverControl(_num,_size,_driverControls); -} -static unsafe void Test_GetDriverControl_32455() { - System.Int32[] _num = default(System.Int32[]); - System.Int32 _size = default(System.Int32); - System.UInt32[] _driverControls = default(System.UInt32[]); - OpenTK.Graphics.ES20.GL.Qcom.GetDriverControl(_num,_size,_driverControls); -} -static unsafe void Test_GetDriverControl_32456() { - System.Int32 _num = default(System.Int32); - System.Int32 _size = default(System.Int32); - System.Int32 _driverControls = default(System.Int32); - OpenTK.Graphics.ES20.GL.Qcom.GetDriverControl(out _num,_size,out _driverControls); -} -static unsafe void Test_GetDriverControl_32457() { - System.Int32 _num = default(System.Int32); - System.Int32 _size = default(System.Int32); - System.UInt32 _driverControls = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Qcom.GetDriverControl(out _num,_size,out _driverControls); -} -static unsafe void Test_GetDriverControl_32458() { - System.Int32* _num = default(System.Int32*); - System.Int32 _size = default(System.Int32); - System.Int32* _driverControls = default(System.Int32*); - OpenTK.Graphics.ES20.GL.Qcom.GetDriverControl(_num,_size,_driverControls); -} -static unsafe void Test_GetDriverControl_32459() { - System.Int32* _num = default(System.Int32*); - System.Int32 _size = default(System.Int32); - System.UInt32* _driverControls = default(System.UInt32*); - OpenTK.Graphics.ES20.GL.Qcom.GetDriverControl(_num,_size,_driverControls); -} -static unsafe void Test_GetDriverControlString_32460() { - System.Int32 _driverControl = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _driverControlString = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Qcom.GetDriverControlString(_driverControl,_bufSize,_length,_driverControlString); -} -static unsafe void Test_GetDriverControlString_32461() { - System.Int32 _driverControl = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _driverControlString = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Qcom.GetDriverControlString(_driverControl,_bufSize,out _length,_driverControlString); -} -static unsafe void Test_GetDriverControlString_32462() { - System.Int32 _driverControl = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _driverControlString = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Qcom.GetDriverControlString(_driverControl,_bufSize,_length,_driverControlString); -} -static unsafe void Test_GetDriverControlString_32463() { - System.UInt32 _driverControl = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _driverControlString = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Qcom.GetDriverControlString(_driverControl,_bufSize,_length,_driverControlString); -} -static unsafe void Test_GetDriverControlString_32464() { - System.UInt32 _driverControl = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _driverControlString = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Qcom.GetDriverControlString(_driverControl,_bufSize,out _length,_driverControlString); -} -static unsafe void Test_GetDriverControlString_32465() { - System.UInt32 _driverControl = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _driverControlString = default(System.Text.StringBuilder); - OpenTK.Graphics.ES20.GL.Qcom.GetDriverControlString(_driverControl,_bufSize,_length,_driverControlString); -} -static unsafe void Test_StartTiling_32466() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _preserveMask = default(System.Int32); - OpenTK.Graphics.ES20.GL.Qcom.StartTiling(_x,_y,_width,_height,_preserveMask); -} -static unsafe void Test_StartTiling_32467() { - System.UInt32 _x = default(System.UInt32); - System.UInt32 _y = default(System.UInt32); - System.UInt32 _width = default(System.UInt32); - System.UInt32 _height = default(System.UInt32); - System.UInt32 _preserveMask = default(System.UInt32); - OpenTK.Graphics.ES20.GL.Qcom.StartTiling(_x,_y,_width,_height,_preserveMask); -} - -static unsafe void Test_Invoke_32469() { - OpenTK.Graphics.ES20.DebugSource _source = default(OpenTK.Graphics.ES20.DebugSource); - OpenTK.Graphics.ES20.DebugType _type = default(OpenTK.Graphics.ES20.DebugType); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES20.DebugSeverity _severity = default(OpenTK.Graphics.ES20.DebugSeverity); - System.Int32 _length = default(System.Int32); - System.IntPtr _message = default(System.IntPtr); - System.IntPtr _userParam = default(System.IntPtr); - default(OpenTK.Graphics.ES20.DebugProc).Invoke(_source,_type,_id,_severity,_length,_message,_userParam); -} -static unsafe void Test_BeginInvoke_32470() { - OpenTK.Graphics.ES20.DebugSource _source = default(OpenTK.Graphics.ES20.DebugSource); - OpenTK.Graphics.ES20.DebugType _type = default(OpenTK.Graphics.ES20.DebugType); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES20.DebugSeverity _severity = default(OpenTK.Graphics.ES20.DebugSeverity); - System.Int32 _length = default(System.Int32); - System.IntPtr _message = default(System.IntPtr); - System.IntPtr _userParam = default(System.IntPtr); - System.AsyncCallback _callback = default(System.AsyncCallback); - System.Object _object = default(System.Object); - System.IAsyncResult r = default(OpenTK.Graphics.ES20.DebugProc).BeginInvoke(_source,_type,_id,_severity,_length,_message,_userParam,_callback,_object); -} -static unsafe void Test_EndInvoke_32471() { - System.IAsyncResult _result = default(System.IAsyncResult); - default(OpenTK.Graphics.ES20.DebugProc).EndInvoke(_result); -} - -static unsafe void Test_Invoke_32473() { - OpenTK.Graphics.ES20.DebugSource _source = default(OpenTK.Graphics.ES20.DebugSource); - OpenTK.Graphics.ES20.DebugType _type = default(OpenTK.Graphics.ES20.DebugType); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES20.DebugSeverity _severity = default(OpenTK.Graphics.ES20.DebugSeverity); - System.Int32 _length = default(System.Int32); - System.IntPtr _message = default(System.IntPtr); - System.IntPtr _userParam = default(System.IntPtr); - default(OpenTK.Graphics.ES20.DebugProcKhr).Invoke(_source,_type,_id,_severity,_length,_message,_userParam); -} -static unsafe void Test_BeginInvoke_32474() { - OpenTK.Graphics.ES20.DebugSource _source = default(OpenTK.Graphics.ES20.DebugSource); - OpenTK.Graphics.ES20.DebugType _type = default(OpenTK.Graphics.ES20.DebugType); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES20.DebugSeverity _severity = default(OpenTK.Graphics.ES20.DebugSeverity); - System.Int32 _length = default(System.Int32); - System.IntPtr _message = default(System.IntPtr); - System.IntPtr _userParam = default(System.IntPtr); - System.AsyncCallback _callback = default(System.AsyncCallback); - System.Object _object = default(System.Object); - System.IAsyncResult r = default(OpenTK.Graphics.ES20.DebugProcKhr).BeginInvoke(_source,_type,_id,_severity,_length,_message,_userParam,_callback,_object); -} -static unsafe void Test_EndInvoke_32475() { - System.IAsyncResult _result = default(System.IAsyncResult); - default(OpenTK.Graphics.ES20.DebugProcKhr).EndInvoke(_result); -} -static void Test_AlcContextAttributes_32476() { - var _Frequency = OpenTK.Audio.OpenAL.AlcContextAttributes.Frequency; - var _Refresh = OpenTK.Audio.OpenAL.AlcContextAttributes.Refresh; - var _Sync = OpenTK.Audio.OpenAL.AlcContextAttributes.Sync; - var _MonoSources = OpenTK.Audio.OpenAL.AlcContextAttributes.MonoSources; - var _StereoSources = OpenTK.Audio.OpenAL.AlcContextAttributes.StereoSources; - var _EfxMaxAuxiliarySends = OpenTK.Audio.OpenAL.AlcContextAttributes.EfxMaxAuxiliarySends; -} -static void Test_AlcError_32477() { - var _NoError = OpenTK.Audio.OpenAL.AlcError.NoError; - var _InvalidDevice = OpenTK.Audio.OpenAL.AlcError.InvalidDevice; - var _InvalidContext = OpenTK.Audio.OpenAL.AlcError.InvalidContext; - var _InvalidEnum = OpenTK.Audio.OpenAL.AlcError.InvalidEnum; - var _InvalidValue = OpenTK.Audio.OpenAL.AlcError.InvalidValue; - var _OutOfMemory = OpenTK.Audio.OpenAL.AlcError.OutOfMemory; -} -static void Test_AlcGetString_32478() { - var _DefaultDeviceSpecifier = OpenTK.Audio.OpenAL.AlcGetString.DefaultDeviceSpecifier; - var _Extensions = OpenTK.Audio.OpenAL.AlcGetString.Extensions; - var _CaptureDefaultDeviceSpecifier = OpenTK.Audio.OpenAL.AlcGetString.CaptureDefaultDeviceSpecifier; - var _DefaultAllDevicesSpecifier = OpenTK.Audio.OpenAL.AlcGetString.DefaultAllDevicesSpecifier; - var _CaptureDeviceSpecifier = OpenTK.Audio.OpenAL.AlcGetString.CaptureDeviceSpecifier; - var _DeviceSpecifier = OpenTK.Audio.OpenAL.AlcGetString.DeviceSpecifier; - var _AllDevicesSpecifier = OpenTK.Audio.OpenAL.AlcGetString.AllDevicesSpecifier; -} -static void Test_AlcGetStringList_32479() { - var _CaptureDeviceSpecifier = OpenTK.Audio.OpenAL.AlcGetStringList.CaptureDeviceSpecifier; - var _DeviceSpecifier = OpenTK.Audio.OpenAL.AlcGetStringList.DeviceSpecifier; - var _AllDevicesSpecifier = OpenTK.Audio.OpenAL.AlcGetStringList.AllDevicesSpecifier; -} -static void Test_AlcGetInteger_32480() { - var _MajorVersion = OpenTK.Audio.OpenAL.AlcGetInteger.MajorVersion; - var _MinorVersion = OpenTK.Audio.OpenAL.AlcGetInteger.MinorVersion; - var _AttributesSize = OpenTK.Audio.OpenAL.AlcGetInteger.AttributesSize; - var _AllAttributes = OpenTK.Audio.OpenAL.AlcGetInteger.AllAttributes; - var _CaptureSamples = OpenTK.Audio.OpenAL.AlcGetInteger.CaptureSamples; - var _EfxMajorVersion = OpenTK.Audio.OpenAL.AlcGetInteger.EfxMajorVersion; - var _EfxMinorVersion = OpenTK.Audio.OpenAL.AlcGetInteger.EfxMinorVersion; - var _EfxMaxAuxiliarySends = OpenTK.Audio.OpenAL.AlcGetInteger.EfxMaxAuxiliarySends; -} -static unsafe void Test_CreateContext_32481() { - System.IntPtr _device = default(System.IntPtr); - System.Int32* _attrlist = default(System.Int32*); - OpenTK.ContextHandle r = OpenTK.Audio.OpenAL.Alc.CreateContext(_device,_attrlist); -} -static unsafe void Test_CreateContext_32482() { - System.IntPtr _device = default(System.IntPtr); - System.Int32[] _attriblist = default(System.Int32[]); - OpenTK.ContextHandle r = OpenTK.Audio.OpenAL.Alc.CreateContext(_device,_attriblist); -} -static unsafe void Test_MakeContextCurrent_32483() { - OpenTK.ContextHandle _context = default(OpenTK.ContextHandle); - System.Boolean r = OpenTK.Audio.OpenAL.Alc.MakeContextCurrent(_context); -} -static unsafe void Test_ProcessContext_32484() { - OpenTK.ContextHandle _context = default(OpenTK.ContextHandle); - OpenTK.Audio.OpenAL.Alc.ProcessContext(_context); -} -static unsafe void Test_SuspendContext_32485() { - OpenTK.ContextHandle _context = default(OpenTK.ContextHandle); - OpenTK.Audio.OpenAL.Alc.SuspendContext(_context); -} -static unsafe void Test_DestroyContext_32486() { - OpenTK.ContextHandle _context = default(OpenTK.ContextHandle); - OpenTK.Audio.OpenAL.Alc.DestroyContext(_context); -} -static unsafe void Test_GetCurrentContext_32487() { - OpenTK.ContextHandle r = OpenTK.Audio.OpenAL.Alc.GetCurrentContext(); -} -static unsafe void Test_GetContextsDevice_32488() { - OpenTK.ContextHandle _context = default(OpenTK.ContextHandle); - System.IntPtr r = OpenTK.Audio.OpenAL.Alc.GetContextsDevice(_context); -} -static unsafe void Test_OpenDevice_32489() { - System.String _devicename = default(System.String); - System.IntPtr r = OpenTK.Audio.OpenAL.Alc.OpenDevice(_devicename); -} -static unsafe void Test_CloseDevice_32490() { - System.IntPtr _device = default(System.IntPtr); - System.Boolean r = OpenTK.Audio.OpenAL.Alc.CloseDevice(_device); -} -static unsafe void Test_GetError_32491() { - System.IntPtr _device = default(System.IntPtr); - OpenTK.Audio.OpenAL.AlcError r = OpenTK.Audio.OpenAL.Alc.GetError(_device); -} -static unsafe void Test_IsExtensionPresent_32492() { - System.IntPtr _device = default(System.IntPtr); - System.String _extname = default(System.String); - System.Boolean r = OpenTK.Audio.OpenAL.Alc.IsExtensionPresent(_device,_extname); -} -static unsafe void Test_GetProcAddress_32493() { - System.IntPtr _device = default(System.IntPtr); - System.String _funcname = default(System.String); - System.IntPtr r = OpenTK.Audio.OpenAL.Alc.GetProcAddress(_device,_funcname); -} -static unsafe void Test_GetEnumValue_32494() { - System.IntPtr _device = default(System.IntPtr); - System.String _enumname = default(System.String); - System.Int32 r = OpenTK.Audio.OpenAL.Alc.GetEnumValue(_device,_enumname); -} -static unsafe void Test_GetString_32495() { - System.IntPtr _device = default(System.IntPtr); - OpenTK.Audio.OpenAL.AlcGetString _param = default(OpenTK.Audio.OpenAL.AlcGetString); - System.String r = OpenTK.Audio.OpenAL.Alc.GetString(_device,_param); -} -static unsafe void Test_GetString_32496() { - System.IntPtr _device = default(System.IntPtr); - OpenTK.Audio.OpenAL.AlcGetStringList _param = default(OpenTK.Audio.OpenAL.AlcGetStringList); - System.Collections.Generic.IList r = OpenTK.Audio.OpenAL.Alc.GetString(_device,_param); -} -static unsafe void Test_GetInteger_32497() { - System.IntPtr _device = default(System.IntPtr); - OpenTK.Audio.OpenAL.AlcGetInteger _param = default(OpenTK.Audio.OpenAL.AlcGetInteger); - System.Int32 _size = default(System.Int32); - System.Int32 _data = default(System.Int32); - OpenTK.Audio.OpenAL.Alc.GetInteger(_device,_param,_size,out _data); -} -static unsafe void Test_GetInteger_32498() { - System.IntPtr _device = default(System.IntPtr); - OpenTK.Audio.OpenAL.AlcGetInteger _param = default(OpenTK.Audio.OpenAL.AlcGetInteger); - System.Int32 _size = default(System.Int32); - System.Int32[] _data = default(System.Int32[]); - OpenTK.Audio.OpenAL.Alc.GetInteger(_device,_param,_size,_data); -} -static unsafe void Test_CaptureOpenDevice_32499() { - System.String _devicename = default(System.String); - System.UInt32 _frequency = default(System.UInt32); - OpenTK.Audio.OpenAL.ALFormat _format = default(OpenTK.Audio.OpenAL.ALFormat); - System.Int32 _buffersize = default(System.Int32); - System.IntPtr r = OpenTK.Audio.OpenAL.Alc.CaptureOpenDevice(_devicename,_frequency,_format,_buffersize); -} -static unsafe void Test_CaptureOpenDevice_32500() { - System.String _devicename = default(System.String); - System.Int32 _frequency = default(System.Int32); - OpenTK.Audio.OpenAL.ALFormat _format = default(OpenTK.Audio.OpenAL.ALFormat); - System.Int32 _buffersize = default(System.Int32); - System.IntPtr r = OpenTK.Audio.OpenAL.Alc.CaptureOpenDevice(_devicename,_frequency,_format,_buffersize); -} -static unsafe void Test_CaptureCloseDevice_32501() { - System.IntPtr _device = default(System.IntPtr); - System.Boolean r = OpenTK.Audio.OpenAL.Alc.CaptureCloseDevice(_device); -} -static unsafe void Test_CaptureStart_32502() { - System.IntPtr _device = default(System.IntPtr); - OpenTK.Audio.OpenAL.Alc.CaptureStart(_device); -} -static unsafe void Test_CaptureStop_32503() { - System.IntPtr _device = default(System.IntPtr); - OpenTK.Audio.OpenAL.Alc.CaptureStop(_device); -} -static unsafe void Test_CaptureSamples_32504() { - System.IntPtr _device = default(System.IntPtr); - System.IntPtr _buffer = default(System.IntPtr); - System.Int32 _samples = default(System.Int32); - OpenTK.Audio.OpenAL.Alc.CaptureSamples(_device,_buffer,_samples); -} -static unsafe void Test_CaptureSamples_32505() { - System.IntPtr _device = default(System.IntPtr); - int _buffer = default(int); - System.Int32 _samples = default(System.Int32); - OpenTK.Audio.OpenAL.Alc.CaptureSamples(_device,ref _buffer,_samples); -} -static unsafe void Test_CaptureSamples_32506() { - System.IntPtr _device = default(System.IntPtr); - int[] _buffer = default(int[]); - System.Int32 _samples = default(System.Int32); - OpenTK.Audio.OpenAL.Alc.CaptureSamples(_device,_buffer,_samples); -} -static unsafe void Test_CaptureSamples_32507() { - System.IntPtr _device = default(System.IntPtr); - int[,] _buffer = default(int[,]); - System.Int32 _samples = default(System.Int32); - OpenTK.Audio.OpenAL.Alc.CaptureSamples(_device,_buffer,_samples); -} -static unsafe void Test_CaptureSamples_32508() { - System.IntPtr _device = default(System.IntPtr); - int[,,] _buffer = default(int[,,]); - System.Int32 _samples = default(System.Int32); - OpenTK.Audio.OpenAL.Alc.CaptureSamples(_device,_buffer,_samples); -} -static unsafe void Test_GetEaxFromEfxEax_32509() { - OpenTK.Audio.OpenAL.EffectsExtension.EaxReverb _input = default(OpenTK.Audio.OpenAL.EffectsExtension.EaxReverb); - OpenTK.Audio.OpenAL.EffectsExtension.EfxEaxReverb _output = default(OpenTK.Audio.OpenAL.EffectsExtension.EfxEaxReverb); - OpenTK.Audio.OpenAL.EffectsExtension.GetEaxFromEfxEax(ref _input,out _output); -} -static unsafe void Test_BindEffect_32510() { - System.UInt32 _eid = default(System.UInt32); - OpenTK.Audio.OpenAL.EfxEffectType _type = default(OpenTK.Audio.OpenAL.EfxEffectType); - default(OpenTK.Audio.OpenAL.EffectsExtension).BindEffect(_eid,_type); -} -static unsafe void Test_BindEffect_32511() { - System.Int32 _eid = default(System.Int32); - OpenTK.Audio.OpenAL.EfxEffectType _type = default(OpenTK.Audio.OpenAL.EfxEffectType); - default(OpenTK.Audio.OpenAL.EffectsExtension).BindEffect(_eid,_type); -} -static unsafe void Test_BindFilterToSource_32512() { - System.UInt32 _source = default(System.UInt32); - System.UInt32 _filter = default(System.UInt32); - default(OpenTK.Audio.OpenAL.EffectsExtension).BindFilterToSource(_source,_filter); -} -static unsafe void Test_BindFilterToSource_32513() { - System.Int32 _source = default(System.Int32); - System.Int32 _filter = default(System.Int32); - default(OpenTK.Audio.OpenAL.EffectsExtension).BindFilterToSource(_source,_filter); -} -static unsafe void Test_BindEffectToAuxiliarySlot_32514() { - System.UInt32 _auxiliaryeffectslot = default(System.UInt32); - System.UInt32 _effect = default(System.UInt32); - default(OpenTK.Audio.OpenAL.EffectsExtension).BindEffectToAuxiliarySlot(_auxiliaryeffectslot,_effect); -} -static unsafe void Test_BindEffectToAuxiliarySlot_32515() { - System.Int32 _auxiliaryeffectslot = default(System.Int32); - System.Int32 _effect = default(System.Int32); - default(OpenTK.Audio.OpenAL.EffectsExtension).BindEffectToAuxiliarySlot(_auxiliaryeffectslot,_effect); -} -static unsafe void Test_BindSourceToAuxiliarySlot_32516() { - System.UInt32 _source = default(System.UInt32); - System.UInt32 _slot = default(System.UInt32); - System.Int32 _slotnumber = default(System.Int32); - System.UInt32 _filter = default(System.UInt32); - default(OpenTK.Audio.OpenAL.EffectsExtension).BindSourceToAuxiliarySlot(_source,_slot,_slotnumber,_filter); -} -static unsafe void Test_BindSourceToAuxiliarySlot_32517() { - System.Int32 _source = default(System.Int32); - System.Int32 _slot = default(System.Int32); - System.Int32 _slotnumber = default(System.Int32); - System.Int32 _filter = default(System.Int32); - default(OpenTK.Audio.OpenAL.EffectsExtension).BindSourceToAuxiliarySlot(_source,_slot,_slotnumber,_filter); -} -static unsafe void Test_GenEffects_32518() { - System.Int32 _n = default(System.Int32); - System.UInt32 _effects = default(System.UInt32); - default(OpenTK.Audio.OpenAL.EffectsExtension).GenEffects(_n,out _effects); -} -static unsafe void Test_GenEffects_32519() { - System.Int32 _n = default(System.Int32); - System.Int32 _effects = default(System.Int32); - default(OpenTK.Audio.OpenAL.EffectsExtension).GenEffects(_n,out _effects); -} -static unsafe void Test_GenEffects_32520() { - System.Int32 _n = default(System.Int32); - System.Int32[] r = default(OpenTK.Audio.OpenAL.EffectsExtension).GenEffects(_n); -} -static unsafe void Test_GenEffect_32521() { - System.Int32 r = default(OpenTK.Audio.OpenAL.EffectsExtension).GenEffect(); -} -static unsafe void Test_GenEffect_32522() { - System.UInt32 _effect = default(System.UInt32); - default(OpenTK.Audio.OpenAL.EffectsExtension).GenEffect(out _effect); -} -static unsafe void Test_DeleteEffects_32523() { - System.Int32 _n = default(System.Int32); - System.UInt32 _effects = default(System.UInt32); - default(OpenTK.Audio.OpenAL.EffectsExtension).DeleteEffects(_n,ref _effects); -} -static unsafe void Test_DeleteEffects_32524() { - System.Int32 _n = default(System.Int32); - System.Int32 _effects = default(System.Int32); - default(OpenTK.Audio.OpenAL.EffectsExtension).DeleteEffects(_n,ref _effects); -} -static unsafe void Test_DeleteEffects_32525() { - System.Int32[] _effects = default(System.Int32[]); - default(OpenTK.Audio.OpenAL.EffectsExtension).DeleteEffects(_effects); -} -static unsafe void Test_DeleteEffects_32526() { - System.UInt32[] _effects = default(System.UInt32[]); - default(OpenTK.Audio.OpenAL.EffectsExtension).DeleteEffects(_effects); -} -static unsafe void Test_DeleteEffect_32527() { - System.Int32 _effect = default(System.Int32); - default(OpenTK.Audio.OpenAL.EffectsExtension).DeleteEffect(_effect); -} -static unsafe void Test_DeleteEffect_32528() { - System.UInt32 _effect = default(System.UInt32); - default(OpenTK.Audio.OpenAL.EffectsExtension).DeleteEffect(ref _effect); -} -static unsafe void Test_IsEffect_32529() { - System.UInt32 _eid = default(System.UInt32); - System.Boolean r = default(OpenTK.Audio.OpenAL.EffectsExtension).IsEffect(_eid); -} -static unsafe void Test_IsEffect_32530() { - System.Int32 _eid = default(System.Int32); - System.Boolean r = default(OpenTK.Audio.OpenAL.EffectsExtension).IsEffect(_eid); -} -static unsafe void Test_Effect_32531() { - System.UInt32 _eid = default(System.UInt32); - OpenTK.Audio.OpenAL.EfxEffecti _param = default(OpenTK.Audio.OpenAL.EfxEffecti); - System.Int32 _value = default(System.Int32); - default(OpenTK.Audio.OpenAL.EffectsExtension).Effect(_eid,_param,_value); -} -static unsafe void Test_Effect_32532() { - System.Int32 _eid = default(System.Int32); - OpenTK.Audio.OpenAL.EfxEffecti _param = default(OpenTK.Audio.OpenAL.EfxEffecti); - System.Int32 _value = default(System.Int32); - default(OpenTK.Audio.OpenAL.EffectsExtension).Effect(_eid,_param,_value); -} -static unsafe void Test_Effect_32533() { - System.UInt32 _eid = default(System.UInt32); - OpenTK.Audio.OpenAL.EfxEffectf _param = default(OpenTK.Audio.OpenAL.EfxEffectf); - System.Single _value = default(System.Single); - default(OpenTK.Audio.OpenAL.EffectsExtension).Effect(_eid,_param,_value); -} -static unsafe void Test_Effect_32534() { - System.Int32 _eid = default(System.Int32); - OpenTK.Audio.OpenAL.EfxEffectf _param = default(OpenTK.Audio.OpenAL.EfxEffectf); - System.Single _value = default(System.Single); - default(OpenTK.Audio.OpenAL.EffectsExtension).Effect(_eid,_param,_value); -} -static unsafe void Test_Effect_32535() { - System.UInt32 _eid = default(System.UInt32); - OpenTK.Audio.OpenAL.EfxEffect3f _param = default(OpenTK.Audio.OpenAL.EfxEffect3f); - OpenTK.Vector3 _values = default(OpenTK.Vector3); - default(OpenTK.Audio.OpenAL.EffectsExtension).Effect(_eid,_param,ref _values); -} -static unsafe void Test_Effect_32536() { - System.Int32 _eid = default(System.Int32); - OpenTK.Audio.OpenAL.EfxEffect3f _param = default(OpenTK.Audio.OpenAL.EfxEffect3f); - OpenTK.Vector3 _values = default(OpenTK.Vector3); - default(OpenTK.Audio.OpenAL.EffectsExtension).Effect(_eid,_param,ref _values); -} -static unsafe void Test_GetEffect_32537() { - System.UInt32 _eid = default(System.UInt32); - OpenTK.Audio.OpenAL.EfxEffecti _pname = default(OpenTK.Audio.OpenAL.EfxEffecti); - System.Int32 _value = default(System.Int32); - default(OpenTK.Audio.OpenAL.EffectsExtension).GetEffect(_eid,_pname,out _value); -} -static unsafe void Test_GetEffect_32538() { - System.Int32 _eid = default(System.Int32); - OpenTK.Audio.OpenAL.EfxEffecti _pname = default(OpenTK.Audio.OpenAL.EfxEffecti); - System.Int32 _value = default(System.Int32); - default(OpenTK.Audio.OpenAL.EffectsExtension).GetEffect(_eid,_pname,out _value); -} -static unsafe void Test_GetEffect_32539() { - System.UInt32 _eid = default(System.UInt32); - OpenTK.Audio.OpenAL.EfxEffectf _pname = default(OpenTK.Audio.OpenAL.EfxEffectf); - System.Single _value = default(System.Single); - default(OpenTK.Audio.OpenAL.EffectsExtension).GetEffect(_eid,_pname,out _value); -} -static unsafe void Test_GetEffect_32540() { - System.Int32 _eid = default(System.Int32); - OpenTK.Audio.OpenAL.EfxEffectf _pname = default(OpenTK.Audio.OpenAL.EfxEffectf); - System.Single _value = default(System.Single); - default(OpenTK.Audio.OpenAL.EffectsExtension).GetEffect(_eid,_pname,out _value); -} -static unsafe void Test_GetEffect_32541() { - System.UInt32 _eid = default(System.UInt32); - OpenTK.Audio.OpenAL.EfxEffect3f _param = default(OpenTK.Audio.OpenAL.EfxEffect3f); - OpenTK.Vector3 _values = default(OpenTK.Vector3); - default(OpenTK.Audio.OpenAL.EffectsExtension).GetEffect(_eid,_param,out _values); -} -static unsafe void Test_GetEffect_32542() { - System.Int32 _eid = default(System.Int32); - OpenTK.Audio.OpenAL.EfxEffect3f _param = default(OpenTK.Audio.OpenAL.EfxEffect3f); - OpenTK.Vector3 _values = default(OpenTK.Vector3); - default(OpenTK.Audio.OpenAL.EffectsExtension).GetEffect(_eid,_param,out _values); -} -static unsafe void Test_GenFilters_32543() { - System.Int32 _n = default(System.Int32); - System.UInt32 _filters = default(System.UInt32); - default(OpenTK.Audio.OpenAL.EffectsExtension).GenFilters(_n,out _filters); -} -static unsafe void Test_GenFilters_32544() { - System.Int32 _n = default(System.Int32); - System.Int32 _filters = default(System.Int32); - default(OpenTK.Audio.OpenAL.EffectsExtension).GenFilters(_n,out _filters); -} -static unsafe void Test_GenFilters_32545() { - System.Int32 _n = default(System.Int32); - System.Int32[] r = default(OpenTK.Audio.OpenAL.EffectsExtension).GenFilters(_n); -} -static unsafe void Test_GenFilter_32546() { - System.Int32 r = default(OpenTK.Audio.OpenAL.EffectsExtension).GenFilter(); -} -static unsafe void Test_GenFilter_32547() { - System.UInt32 _filter = default(System.UInt32); - default(OpenTK.Audio.OpenAL.EffectsExtension).GenFilter(out _filter); -} -static unsafe void Test_DeleteFilters_32548() { - System.Int32 _n = default(System.Int32); - System.UInt32 _filters = default(System.UInt32); - default(OpenTK.Audio.OpenAL.EffectsExtension).DeleteFilters(_n,ref _filters); -} -static unsafe void Test_DeleteFilters_32549() { - System.Int32 _n = default(System.Int32); - System.Int32 _filters = default(System.Int32); - default(OpenTK.Audio.OpenAL.EffectsExtension).DeleteFilters(_n,ref _filters); -} -static unsafe void Test_DeleteFilters_32550() { - System.UInt32[] _filters = default(System.UInt32[]); - default(OpenTK.Audio.OpenAL.EffectsExtension).DeleteFilters(_filters); -} -static unsafe void Test_DeleteFilters_32551() { - System.Int32[] _filters = default(System.Int32[]); - default(OpenTK.Audio.OpenAL.EffectsExtension).DeleteFilters(_filters); -} -static unsafe void Test_DeleteFilter_32552() { - System.Int32 _filter = default(System.Int32); - default(OpenTK.Audio.OpenAL.EffectsExtension).DeleteFilter(_filter); -} -static unsafe void Test_DeleteFilter_32553() { - System.UInt32 _filter = default(System.UInt32); - default(OpenTK.Audio.OpenAL.EffectsExtension).DeleteFilter(ref _filter); -} -static unsafe void Test_IsFilter_32554() { - System.UInt32 _fid = default(System.UInt32); - System.Boolean r = default(OpenTK.Audio.OpenAL.EffectsExtension).IsFilter(_fid); -} -static unsafe void Test_IsFilter_32555() { - System.Int32 _fid = default(System.Int32); - System.Boolean r = default(OpenTK.Audio.OpenAL.EffectsExtension).IsFilter(_fid); -} -static unsafe void Test_Filter_32556() { - System.UInt32 _fid = default(System.UInt32); - OpenTK.Audio.OpenAL.EfxFilteri _param = default(OpenTK.Audio.OpenAL.EfxFilteri); - System.Int32 _value = default(System.Int32); - default(OpenTK.Audio.OpenAL.EffectsExtension).Filter(_fid,_param,_value); -} -static unsafe void Test_Filter_32557() { - System.Int32 _fid = default(System.Int32); - OpenTK.Audio.OpenAL.EfxFilteri _param = default(OpenTK.Audio.OpenAL.EfxFilteri); - System.Int32 _value = default(System.Int32); - default(OpenTK.Audio.OpenAL.EffectsExtension).Filter(_fid,_param,_value); -} -static unsafe void Test_Filter_32558() { - System.UInt32 _fid = default(System.UInt32); - OpenTK.Audio.OpenAL.EfxFilterf _param = default(OpenTK.Audio.OpenAL.EfxFilterf); - System.Single _value = default(System.Single); - default(OpenTK.Audio.OpenAL.EffectsExtension).Filter(_fid,_param,_value); -} -static unsafe void Test_Filter_32559() { - System.Int32 _fid = default(System.Int32); - OpenTK.Audio.OpenAL.EfxFilterf _param = default(OpenTK.Audio.OpenAL.EfxFilterf); - System.Single _value = default(System.Single); - default(OpenTK.Audio.OpenAL.EffectsExtension).Filter(_fid,_param,_value); -} -static unsafe void Test_GetFilter_32560() { - System.UInt32 _fid = default(System.UInt32); - OpenTK.Audio.OpenAL.EfxFilteri _pname = default(OpenTK.Audio.OpenAL.EfxFilteri); - System.Int32 _value = default(System.Int32); - default(OpenTK.Audio.OpenAL.EffectsExtension).GetFilter(_fid,_pname,out _value); -} -static unsafe void Test_GetFilter_32561() { - System.Int32 _fid = default(System.Int32); - OpenTK.Audio.OpenAL.EfxFilteri _pname = default(OpenTK.Audio.OpenAL.EfxFilteri); - System.Int32 _value = default(System.Int32); - default(OpenTK.Audio.OpenAL.EffectsExtension).GetFilter(_fid,_pname,out _value); -} -static unsafe void Test_GetFilter_32562() { - System.UInt32 _fid = default(System.UInt32); - OpenTK.Audio.OpenAL.EfxFilterf _pname = default(OpenTK.Audio.OpenAL.EfxFilterf); - System.Single _value = default(System.Single); - default(OpenTK.Audio.OpenAL.EffectsExtension).GetFilter(_fid,_pname,out _value); -} -static unsafe void Test_GetFilter_32563() { - System.Int32 _fid = default(System.Int32); - OpenTK.Audio.OpenAL.EfxFilterf _pname = default(OpenTK.Audio.OpenAL.EfxFilterf); - System.Single _value = default(System.Single); - default(OpenTK.Audio.OpenAL.EffectsExtension).GetFilter(_fid,_pname,out _value); -} -static unsafe void Test_GenAuxiliaryEffectSlots_32564() { - System.Int32 _n = default(System.Int32); - System.UInt32 _slots = default(System.UInt32); - default(OpenTK.Audio.OpenAL.EffectsExtension).GenAuxiliaryEffectSlots(_n,out _slots); -} -static unsafe void Test_GenAuxiliaryEffectSlots_32565() { - System.Int32 _n = default(System.Int32); - System.Int32 _slots = default(System.Int32); - default(OpenTK.Audio.OpenAL.EffectsExtension).GenAuxiliaryEffectSlots(_n,out _slots); -} -static unsafe void Test_GenAuxiliaryEffectSlots_32566() { - System.Int32 _n = default(System.Int32); - System.Int32[] r = default(OpenTK.Audio.OpenAL.EffectsExtension).GenAuxiliaryEffectSlots(_n); -} -static unsafe void Test_GenAuxiliaryEffectSlot_32567() { - System.Int32 r = default(OpenTK.Audio.OpenAL.EffectsExtension).GenAuxiliaryEffectSlot(); -} -static unsafe void Test_GenAuxiliaryEffectSlot_32568() { - System.UInt32 _slot = default(System.UInt32); - default(OpenTK.Audio.OpenAL.EffectsExtension).GenAuxiliaryEffectSlot(out _slot); -} -static unsafe void Test_DeleteAuxiliaryEffectSlots_32569() { - System.Int32 _n = default(System.Int32); - System.UInt32 _slots = default(System.UInt32); - default(OpenTK.Audio.OpenAL.EffectsExtension).DeleteAuxiliaryEffectSlots(_n,ref _slots); -} -static unsafe void Test_DeleteAuxiliaryEffectSlots_32570() { - System.Int32 _n = default(System.Int32); - System.Int32 _slots = default(System.Int32); - default(OpenTK.Audio.OpenAL.EffectsExtension).DeleteAuxiliaryEffectSlots(_n,ref _slots); -} -static unsafe void Test_DeleteAuxiliaryEffectSlots_32571() { - System.Int32[] _slots = default(System.Int32[]); - default(OpenTK.Audio.OpenAL.EffectsExtension).DeleteAuxiliaryEffectSlots(_slots); -} -static unsafe void Test_DeleteAuxiliaryEffectSlots_32572() { - System.UInt32[] _slots = default(System.UInt32[]); - default(OpenTK.Audio.OpenAL.EffectsExtension).DeleteAuxiliaryEffectSlots(_slots); -} -static unsafe void Test_DeleteAuxiliaryEffectSlot_32573() { - System.Int32 _slot = default(System.Int32); - default(OpenTK.Audio.OpenAL.EffectsExtension).DeleteAuxiliaryEffectSlot(_slot); -} -static unsafe void Test_DeleteAuxiliaryEffectSlot_32574() { - System.UInt32 _slot = default(System.UInt32); - default(OpenTK.Audio.OpenAL.EffectsExtension).DeleteAuxiliaryEffectSlot(ref _slot); -} -static unsafe void Test_IsAuxiliaryEffectSlot_32575() { - System.UInt32 _slot = default(System.UInt32); - System.Boolean r = default(OpenTK.Audio.OpenAL.EffectsExtension).IsAuxiliaryEffectSlot(_slot); -} -static unsafe void Test_IsAuxiliaryEffectSlot_32576() { - System.Int32 _slot = default(System.Int32); - System.Boolean r = default(OpenTK.Audio.OpenAL.EffectsExtension).IsAuxiliaryEffectSlot(_slot); -} -static unsafe void Test_AuxiliaryEffectSlot_32577() { - System.UInt32 _asid = default(System.UInt32); - OpenTK.Audio.OpenAL.EfxAuxiliaryi _param = default(OpenTK.Audio.OpenAL.EfxAuxiliaryi); - System.Int32 _value = default(System.Int32); - default(OpenTK.Audio.OpenAL.EffectsExtension).AuxiliaryEffectSlot(_asid,_param,_value); -} -static unsafe void Test_AuxiliaryEffectSlot_32578() { - System.Int32 _asid = default(System.Int32); - OpenTK.Audio.OpenAL.EfxAuxiliaryi _param = default(OpenTK.Audio.OpenAL.EfxAuxiliaryi); - System.Int32 _value = default(System.Int32); - default(OpenTK.Audio.OpenAL.EffectsExtension).AuxiliaryEffectSlot(_asid,_param,_value); -} -static unsafe void Test_AuxiliaryEffectSlot_32579() { - System.UInt32 _asid = default(System.UInt32); - OpenTK.Audio.OpenAL.EfxAuxiliaryf _param = default(OpenTK.Audio.OpenAL.EfxAuxiliaryf); - System.Single _value = default(System.Single); - default(OpenTK.Audio.OpenAL.EffectsExtension).AuxiliaryEffectSlot(_asid,_param,_value); -} -static unsafe void Test_AuxiliaryEffectSlot_32580() { - System.Int32 _asid = default(System.Int32); - OpenTK.Audio.OpenAL.EfxAuxiliaryf _param = default(OpenTK.Audio.OpenAL.EfxAuxiliaryf); - System.Single _value = default(System.Single); - default(OpenTK.Audio.OpenAL.EffectsExtension).AuxiliaryEffectSlot(_asid,_param,_value); -} -static unsafe void Test_GetAuxiliaryEffectSlot_32581() { - System.UInt32 _asid = default(System.UInt32); - OpenTK.Audio.OpenAL.EfxAuxiliaryi _pname = default(OpenTK.Audio.OpenAL.EfxAuxiliaryi); - System.Int32 _value = default(System.Int32); - default(OpenTK.Audio.OpenAL.EffectsExtension).GetAuxiliaryEffectSlot(_asid,_pname,out _value); -} -static unsafe void Test_GetAuxiliaryEffectSlot_32582() { - System.Int32 _asid = default(System.Int32); - OpenTK.Audio.OpenAL.EfxAuxiliaryi _pname = default(OpenTK.Audio.OpenAL.EfxAuxiliaryi); - System.Int32 _value = default(System.Int32); - default(OpenTK.Audio.OpenAL.EffectsExtension).GetAuxiliaryEffectSlot(_asid,_pname,out _value); -} -static unsafe void Test_GetAuxiliaryEffectSlot_32583() { - System.UInt32 _asid = default(System.UInt32); - OpenTK.Audio.OpenAL.EfxAuxiliaryf _pname = default(OpenTK.Audio.OpenAL.EfxAuxiliaryf); - System.Single _value = default(System.Single); - default(OpenTK.Audio.OpenAL.EffectsExtension).GetAuxiliaryEffectSlot(_asid,_pname,out _value); -} -static unsafe void Test_GetAuxiliaryEffectSlot_32584() { - System.Int32 _asid = default(System.Int32); - OpenTK.Audio.OpenAL.EfxAuxiliaryf _pname = default(OpenTK.Audio.OpenAL.EfxAuxiliaryf); - System.Single _value = default(System.Single); - default(OpenTK.Audio.OpenAL.EffectsExtension).GetAuxiliaryEffectSlot(_asid,_pname,out _value); -} -static unsafe void Test_get_IsInitialized_32585() { - System.Boolean r = default(OpenTK.Audio.OpenAL.EffectsExtension).IsInitialized; -} - - -static void Test_EfxEffectf_32588() { - var _ReverbDensity = OpenTK.Audio.OpenAL.EfxEffectf.ReverbDensity; - var _ReverbDiffusion = OpenTK.Audio.OpenAL.EfxEffectf.ReverbDiffusion; - var _ReverbGain = OpenTK.Audio.OpenAL.EfxEffectf.ReverbGain; - var _ReverbGainHF = OpenTK.Audio.OpenAL.EfxEffectf.ReverbGainHF; - var _ReverbDecayTime = OpenTK.Audio.OpenAL.EfxEffectf.ReverbDecayTime; - var _ReverbDecayHFRatio = OpenTK.Audio.OpenAL.EfxEffectf.ReverbDecayHFRatio; - var _ReverbReflectionsGain = OpenTK.Audio.OpenAL.EfxEffectf.ReverbReflectionsGain; - var _ReverbReflectionsDelay = OpenTK.Audio.OpenAL.EfxEffectf.ReverbReflectionsDelay; - var _ReverbLateReverbGain = OpenTK.Audio.OpenAL.EfxEffectf.ReverbLateReverbGain; - var _ReverbLateReverbDelay = OpenTK.Audio.OpenAL.EfxEffectf.ReverbLateReverbDelay; - var _ReverbAirAbsorptionGainHF = OpenTK.Audio.OpenAL.EfxEffectf.ReverbAirAbsorptionGainHF; - var _ReverbRoomRolloffFactor = OpenTK.Audio.OpenAL.EfxEffectf.ReverbRoomRolloffFactor; - var _ChorusRate = OpenTK.Audio.OpenAL.EfxEffectf.ChorusRate; - var _ChorusDepth = OpenTK.Audio.OpenAL.EfxEffectf.ChorusDepth; - var _ChorusFeedback = OpenTK.Audio.OpenAL.EfxEffectf.ChorusFeedback; - var _ChorusDelay = OpenTK.Audio.OpenAL.EfxEffectf.ChorusDelay; - var _DistortionEdge = OpenTK.Audio.OpenAL.EfxEffectf.DistortionEdge; - var _DistortionGain = OpenTK.Audio.OpenAL.EfxEffectf.DistortionGain; - var _DistortionLowpassCutoff = OpenTK.Audio.OpenAL.EfxEffectf.DistortionLowpassCutoff; - var _DistortionEQCenter = OpenTK.Audio.OpenAL.EfxEffectf.DistortionEQCenter; - var _DistortionEQBandwidth = OpenTK.Audio.OpenAL.EfxEffectf.DistortionEQBandwidth; - var _EchoDelay = OpenTK.Audio.OpenAL.EfxEffectf.EchoDelay; - var _EchoLRDelay = OpenTK.Audio.OpenAL.EfxEffectf.EchoLRDelay; - var _EchoDamping = OpenTK.Audio.OpenAL.EfxEffectf.EchoDamping; - var _EchoFeedback = OpenTK.Audio.OpenAL.EfxEffectf.EchoFeedback; - var _EchoSpread = OpenTK.Audio.OpenAL.EfxEffectf.EchoSpread; - var _FlangerRate = OpenTK.Audio.OpenAL.EfxEffectf.FlangerRate; - var _FlangerDepth = OpenTK.Audio.OpenAL.EfxEffectf.FlangerDepth; - var _FlangerFeedback = OpenTK.Audio.OpenAL.EfxEffectf.FlangerFeedback; - var _FlangerDelay = OpenTK.Audio.OpenAL.EfxEffectf.FlangerDelay; - var _FrequencyShifterFrequency = OpenTK.Audio.OpenAL.EfxEffectf.FrequencyShifterFrequency; - var _VocalMorpherRate = OpenTK.Audio.OpenAL.EfxEffectf.VocalMorpherRate; - var _RingModulatorFrequency = OpenTK.Audio.OpenAL.EfxEffectf.RingModulatorFrequency; - var _RingModulatorHighpassCutoff = OpenTK.Audio.OpenAL.EfxEffectf.RingModulatorHighpassCutoff; - var _AutowahAttackTime = OpenTK.Audio.OpenAL.EfxEffectf.AutowahAttackTime; - var _AutowahReleaseTime = OpenTK.Audio.OpenAL.EfxEffectf.AutowahReleaseTime; - var _AutowahResonance = OpenTK.Audio.OpenAL.EfxEffectf.AutowahResonance; - var _AutowahPeakGain = OpenTK.Audio.OpenAL.EfxEffectf.AutowahPeakGain; - var _EqualizerLowGain = OpenTK.Audio.OpenAL.EfxEffectf.EqualizerLowGain; - var _EqualizerLowCutoff = OpenTK.Audio.OpenAL.EfxEffectf.EqualizerLowCutoff; - var _EqualizerMid1Gain = OpenTK.Audio.OpenAL.EfxEffectf.EqualizerMid1Gain; - var _EqualizerMid1Center = OpenTK.Audio.OpenAL.EfxEffectf.EqualizerMid1Center; - var _EqualizerMid1Width = OpenTK.Audio.OpenAL.EfxEffectf.EqualizerMid1Width; - var _EqualizerMid2Gain = OpenTK.Audio.OpenAL.EfxEffectf.EqualizerMid2Gain; - var _EqualizerMid2Center = OpenTK.Audio.OpenAL.EfxEffectf.EqualizerMid2Center; - var _EqualizerMid2Width = OpenTK.Audio.OpenAL.EfxEffectf.EqualizerMid2Width; - var _EqualizerHighGain = OpenTK.Audio.OpenAL.EfxEffectf.EqualizerHighGain; - var _EqualizerHighCutoff = OpenTK.Audio.OpenAL.EfxEffectf.EqualizerHighCutoff; - var _EaxReverbDensity = OpenTK.Audio.OpenAL.EfxEffectf.EaxReverbDensity; - var _EaxReverbDiffusion = OpenTK.Audio.OpenAL.EfxEffectf.EaxReverbDiffusion; - var _EaxReverbGain = OpenTK.Audio.OpenAL.EfxEffectf.EaxReverbGain; - var _EaxReverbGainHF = OpenTK.Audio.OpenAL.EfxEffectf.EaxReverbGainHF; - var _EaxReverbGainLF = OpenTK.Audio.OpenAL.EfxEffectf.EaxReverbGainLF; - var _EaxReverbDecayTime = OpenTK.Audio.OpenAL.EfxEffectf.EaxReverbDecayTime; - var _EaxReverbDecayHFRatio = OpenTK.Audio.OpenAL.EfxEffectf.EaxReverbDecayHFRatio; - var _EaxReverbDecayLFRatio = OpenTK.Audio.OpenAL.EfxEffectf.EaxReverbDecayLFRatio; - var _EaxReverbReflectionsGain = OpenTK.Audio.OpenAL.EfxEffectf.EaxReverbReflectionsGain; - var _EaxReverbReflectionsDelay = OpenTK.Audio.OpenAL.EfxEffectf.EaxReverbReflectionsDelay; - var _EaxReverbLateReverbGain = OpenTK.Audio.OpenAL.EfxEffectf.EaxReverbLateReverbGain; - var _EaxReverbLateReverbDelay = OpenTK.Audio.OpenAL.EfxEffectf.EaxReverbLateReverbDelay; - var _EaxReverbEchoTime = OpenTK.Audio.OpenAL.EfxEffectf.EaxReverbEchoTime; - var _EaxReverbEchoDepth = OpenTK.Audio.OpenAL.EfxEffectf.EaxReverbEchoDepth; - var _EaxReverbModulationTime = OpenTK.Audio.OpenAL.EfxEffectf.EaxReverbModulationTime; - var _EaxReverbModulationDepth = OpenTK.Audio.OpenAL.EfxEffectf.EaxReverbModulationDepth; - var _EaxReverbAirAbsorptionGainHF = OpenTK.Audio.OpenAL.EfxEffectf.EaxReverbAirAbsorptionGainHF; - var _EaxReverbHFReference = OpenTK.Audio.OpenAL.EfxEffectf.EaxReverbHFReference; - var _EaxReverbLFReference = OpenTK.Audio.OpenAL.EfxEffectf.EaxReverbLFReference; - var _EaxReverbRoomRolloffFactor = OpenTK.Audio.OpenAL.EfxEffectf.EaxReverbRoomRolloffFactor; -} -static void Test_EfxEffect3f_32589() { - var _EaxReverbLateReverbPan = OpenTK.Audio.OpenAL.EfxEffect3f.EaxReverbLateReverbPan; - var _EaxReverbReflectionsPan = OpenTK.Audio.OpenAL.EfxEffect3f.EaxReverbReflectionsPan; -} -static void Test_EfxEffecti_32590() { - var _ChorusWaveform = OpenTK.Audio.OpenAL.EfxEffecti.ChorusWaveform; - var _ChorusPhase = OpenTK.Audio.OpenAL.EfxEffecti.ChorusPhase; - var _FlangerWaveform = OpenTK.Audio.OpenAL.EfxEffecti.FlangerWaveform; - var _FlangerPhase = OpenTK.Audio.OpenAL.EfxEffecti.FlangerPhase; - var _FrequencyShifterLeftDirection = OpenTK.Audio.OpenAL.EfxEffecti.FrequencyShifterLeftDirection; - var _FrequencyShifterRightDirection = OpenTK.Audio.OpenAL.EfxEffecti.FrequencyShifterRightDirection; - var _VocalMorpherPhonemeA = OpenTK.Audio.OpenAL.EfxEffecti.VocalMorpherPhonemeA; - var _VocalMorpherPhonemeACoarseTuning = OpenTK.Audio.OpenAL.EfxEffecti.VocalMorpherPhonemeACoarseTuning; - var _VocalMorpherPhonemeB = OpenTK.Audio.OpenAL.EfxEffecti.VocalMorpherPhonemeB; - var _VocalMorpherPhonemeBCoarseTuning = OpenTK.Audio.OpenAL.EfxEffecti.VocalMorpherPhonemeBCoarseTuning; - var _VocalMorpherWaveform = OpenTK.Audio.OpenAL.EfxEffecti.VocalMorpherWaveform; - var _PitchShifterCoarseTune = OpenTK.Audio.OpenAL.EfxEffecti.PitchShifterCoarseTune; - var _PitchShifterFineTune = OpenTK.Audio.OpenAL.EfxEffecti.PitchShifterFineTune; - var _RingModulatorWaveform = OpenTK.Audio.OpenAL.EfxEffecti.RingModulatorWaveform; - var _CompressorOnoff = OpenTK.Audio.OpenAL.EfxEffecti.CompressorOnoff; - var _ReverbDecayHFLimit = OpenTK.Audio.OpenAL.EfxEffecti.ReverbDecayHFLimit; - var _EaxReverbDecayHFLimit = OpenTK.Audio.OpenAL.EfxEffecti.EaxReverbDecayHFLimit; - var _EffectType = OpenTK.Audio.OpenAL.EfxEffecti.EffectType; -} -static void Test_EfxFormantFilterSettings_32591() { - var _VocalMorpherPhonemeA = OpenTK.Audio.OpenAL.EfxFormantFilterSettings.VocalMorpherPhonemeA; - var _VocalMorpherPhonemeE = OpenTK.Audio.OpenAL.EfxFormantFilterSettings.VocalMorpherPhonemeE; - var _VocalMorpherPhonemeI = OpenTK.Audio.OpenAL.EfxFormantFilterSettings.VocalMorpherPhonemeI; - var _VocalMorpherPhonemeO = OpenTK.Audio.OpenAL.EfxFormantFilterSettings.VocalMorpherPhonemeO; - var _VocalMorpherPhonemeU = OpenTK.Audio.OpenAL.EfxFormantFilterSettings.VocalMorpherPhonemeU; - var _VocalMorpherPhonemeAA = OpenTK.Audio.OpenAL.EfxFormantFilterSettings.VocalMorpherPhonemeAA; - var _VocalMorpherPhonemeAE = OpenTK.Audio.OpenAL.EfxFormantFilterSettings.VocalMorpherPhonemeAE; - var _VocalMorpherPhonemeAH = OpenTK.Audio.OpenAL.EfxFormantFilterSettings.VocalMorpherPhonemeAH; - var _VocalMorpherPhonemeAO = OpenTK.Audio.OpenAL.EfxFormantFilterSettings.VocalMorpherPhonemeAO; - var _VocalMorpherPhonemeEH = OpenTK.Audio.OpenAL.EfxFormantFilterSettings.VocalMorpherPhonemeEH; - var _VocalMorpherPhonemeER = OpenTK.Audio.OpenAL.EfxFormantFilterSettings.VocalMorpherPhonemeER; - var _VocalMorpherPhonemeIH = OpenTK.Audio.OpenAL.EfxFormantFilterSettings.VocalMorpherPhonemeIH; - var _VocalMorpherPhonemeIY = OpenTK.Audio.OpenAL.EfxFormantFilterSettings.VocalMorpherPhonemeIY; - var _VocalMorpherPhonemeUH = OpenTK.Audio.OpenAL.EfxFormantFilterSettings.VocalMorpherPhonemeUH; - var _VocalMorpherPhonemeUW = OpenTK.Audio.OpenAL.EfxFormantFilterSettings.VocalMorpherPhonemeUW; - var _VocalMorpherPhonemeB = OpenTK.Audio.OpenAL.EfxFormantFilterSettings.VocalMorpherPhonemeB; - var _VocalMorpherPhonemeD = OpenTK.Audio.OpenAL.EfxFormantFilterSettings.VocalMorpherPhonemeD; - var _VocalMorpherPhonemeF = OpenTK.Audio.OpenAL.EfxFormantFilterSettings.VocalMorpherPhonemeF; - var _VocalMorpherPhonemeG = OpenTK.Audio.OpenAL.EfxFormantFilterSettings.VocalMorpherPhonemeG; - var _VocalMorpherPhonemeJ = OpenTK.Audio.OpenAL.EfxFormantFilterSettings.VocalMorpherPhonemeJ; - var _VocalMorpherPhonemeK = OpenTK.Audio.OpenAL.EfxFormantFilterSettings.VocalMorpherPhonemeK; - var _VocalMorpherPhonemeL = OpenTK.Audio.OpenAL.EfxFormantFilterSettings.VocalMorpherPhonemeL; - var _VocalMorpherPhonemeM = OpenTK.Audio.OpenAL.EfxFormantFilterSettings.VocalMorpherPhonemeM; - var _VocalMorpherPhonemeN = OpenTK.Audio.OpenAL.EfxFormantFilterSettings.VocalMorpherPhonemeN; - var _VocalMorpherPhonemeP = OpenTK.Audio.OpenAL.EfxFormantFilterSettings.VocalMorpherPhonemeP; - var _VocalMorpherPhonemeR = OpenTK.Audio.OpenAL.EfxFormantFilterSettings.VocalMorpherPhonemeR; - var _VocalMorpherPhonemeS = OpenTK.Audio.OpenAL.EfxFormantFilterSettings.VocalMorpherPhonemeS; - var _VocalMorpherPhonemeT = OpenTK.Audio.OpenAL.EfxFormantFilterSettings.VocalMorpherPhonemeT; - var _VocalMorpherPhonemeV = OpenTK.Audio.OpenAL.EfxFormantFilterSettings.VocalMorpherPhonemeV; - var _VocalMorpherPhonemeZ = OpenTK.Audio.OpenAL.EfxFormantFilterSettings.VocalMorpherPhonemeZ; -} -static void Test_EfxEffectType_32592() { - var _Null = OpenTK.Audio.OpenAL.EfxEffectType.Null; - var _Reverb = OpenTK.Audio.OpenAL.EfxEffectType.Reverb; - var _Chorus = OpenTK.Audio.OpenAL.EfxEffectType.Chorus; - var _Distortion = OpenTK.Audio.OpenAL.EfxEffectType.Distortion; - var _Echo = OpenTK.Audio.OpenAL.EfxEffectType.Echo; - var _Flanger = OpenTK.Audio.OpenAL.EfxEffectType.Flanger; - var _FrequencyShifter = OpenTK.Audio.OpenAL.EfxEffectType.FrequencyShifter; - var _VocalMorpher = OpenTK.Audio.OpenAL.EfxEffectType.VocalMorpher; - var _PitchShifter = OpenTK.Audio.OpenAL.EfxEffectType.PitchShifter; - var _RingModulator = OpenTK.Audio.OpenAL.EfxEffectType.RingModulator; - var _Autowah = OpenTK.Audio.OpenAL.EfxEffectType.Autowah; - var _Compressor = OpenTK.Audio.OpenAL.EfxEffectType.Compressor; - var _Equalizer = OpenTK.Audio.OpenAL.EfxEffectType.Equalizer; - var _EaxReverb = OpenTK.Audio.OpenAL.EfxEffectType.EaxReverb; -} -static void Test_EfxAuxiliaryi_32593() { - var _EffectslotEffect = OpenTK.Audio.OpenAL.EfxAuxiliaryi.EffectslotEffect; - var _EffectslotAuxiliarySendAuto = OpenTK.Audio.OpenAL.EfxAuxiliaryi.EffectslotAuxiliarySendAuto; -} -static void Test_EfxAuxiliaryf_32594() { - var _EffectslotGain = OpenTK.Audio.OpenAL.EfxAuxiliaryf.EffectslotGain; -} -static void Test_EfxFilterf_32595() { - var _LowpassGain = OpenTK.Audio.OpenAL.EfxFilterf.LowpassGain; - var _LowpassGainHF = OpenTK.Audio.OpenAL.EfxFilterf.LowpassGainHF; - var _HighpassGain = OpenTK.Audio.OpenAL.EfxFilterf.HighpassGain; - var _HighpassGainLF = OpenTK.Audio.OpenAL.EfxFilterf.HighpassGainLF; - var _BandpassGain = OpenTK.Audio.OpenAL.EfxFilterf.BandpassGain; - var _BandpassGainLF = OpenTK.Audio.OpenAL.EfxFilterf.BandpassGainLF; - var _BandpassGainHF = OpenTK.Audio.OpenAL.EfxFilterf.BandpassGainHF; -} -static void Test_EfxFilteri_32596() { - var _FilterType = OpenTK.Audio.OpenAL.EfxFilteri.FilterType; -} -static void Test_EfxFilterType_32597() { - var _Null = OpenTK.Audio.OpenAL.EfxFilterType.Null; - var _Lowpass = OpenTK.Audio.OpenAL.EfxFilterType.Lowpass; - var _Highpass = OpenTK.Audio.OpenAL.EfxFilterType.Highpass; - var _Bandpass = OpenTK.Audio.OpenAL.EfxFilterType.Bandpass; -} -static unsafe void Test_get_IsInitialized_32598() { - System.Boolean r = default(OpenTK.Audio.OpenAL.XRamExtension).IsInitialized; -} - -static unsafe void Test_get_GetRamSize_32600() { - System.Int32 r = default(OpenTK.Audio.OpenAL.XRamExtension).GetRamSize; -} -static unsafe void Test_get_GetRamFree_32601() { - System.Int32 r = default(OpenTK.Audio.OpenAL.XRamExtension).GetRamFree; -} -static unsafe void Test_SetBufferMode_32602() { - System.Int32 _n = default(System.Int32); - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Audio.OpenAL.XRamExtension.XRamStorage _mode = default(OpenTK.Audio.OpenAL.XRamExtension.XRamStorage); - System.Boolean r = default(OpenTK.Audio.OpenAL.XRamExtension).SetBufferMode(_n,ref _buffer,_mode); -} -static unsafe void Test_SetBufferMode_32603() { - System.Int32 _n = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - OpenTK.Audio.OpenAL.XRamExtension.XRamStorage _mode = default(OpenTK.Audio.OpenAL.XRamExtension.XRamStorage); - System.Boolean r = default(OpenTK.Audio.OpenAL.XRamExtension).SetBufferMode(_n,ref _buffer,_mode); -} -static unsafe void Test_GetBufferMode_32604() { - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Audio.OpenAL.XRamExtension.XRamStorage r = default(OpenTK.Audio.OpenAL.XRamExtension).GetBufferMode(ref _buffer); -} -static unsafe void Test_GetBufferMode_32605() { - System.Int32 _buffer = default(System.Int32); - OpenTK.Audio.OpenAL.XRamExtension.XRamStorage r = default(OpenTK.Audio.OpenAL.XRamExtension).GetBufferMode(ref _buffer); -} -static void Test_XRamStorage_32606() { - var _Automatic = OpenTK.Audio.OpenAL.XRamExtension.XRamStorage.Automatic; - var _Hardware = OpenTK.Audio.OpenAL.XRamExtension.XRamStorage.Hardware; - var _Accessible = OpenTK.Audio.OpenAL.XRamExtension.XRamStorage.Accessible; -} -static unsafe void Test_Enable_32607() { - OpenTK.Audio.OpenAL.ALCapability _capability = default(OpenTK.Audio.OpenAL.ALCapability); - OpenTK.Audio.OpenAL.AL.Enable(_capability); -} -static unsafe void Test_Disable_32608() { - OpenTK.Audio.OpenAL.ALCapability _capability = default(OpenTK.Audio.OpenAL.ALCapability); - OpenTK.Audio.OpenAL.AL.Disable(_capability); -} -static unsafe void Test_IsEnabled_32609() { - OpenTK.Audio.OpenAL.ALCapability _capability = default(OpenTK.Audio.OpenAL.ALCapability); - System.Boolean r = OpenTK.Audio.OpenAL.AL.IsEnabled(_capability); -} -static unsafe void Test_Get_32610() { - OpenTK.Audio.OpenAL.ALGetString _param = default(OpenTK.Audio.OpenAL.ALGetString); - System.String r = OpenTK.Audio.OpenAL.AL.Get(_param); -} -static unsafe void Test_GetErrorString_32611() { - OpenTK.Audio.OpenAL.ALError _param = default(OpenTK.Audio.OpenAL.ALError); - System.String r = OpenTK.Audio.OpenAL.AL.GetErrorString(_param); -} -static unsafe void Test_Get_32612() { - OpenTK.Audio.OpenAL.ALGetInteger _param = default(OpenTK.Audio.OpenAL.ALGetInteger); - System.Int32 r = OpenTK.Audio.OpenAL.AL.Get(_param); -} -static unsafe void Test_Get_32613() { - OpenTK.Audio.OpenAL.ALGetFloat _param = default(OpenTK.Audio.OpenAL.ALGetFloat); - System.Single r = OpenTK.Audio.OpenAL.AL.Get(_param); -} -static unsafe void Test_GetError_32614() { - OpenTK.Audio.OpenAL.ALError r = OpenTK.Audio.OpenAL.AL.GetError(); -} -static unsafe void Test_IsExtensionPresent_32615() { - System.String _extname = default(System.String); - System.Boolean r = OpenTK.Audio.OpenAL.AL.IsExtensionPresent(_extname); -} -static unsafe void Test_GetProcAddress_32616() { - System.String _fname = default(System.String); - System.IntPtr r = OpenTK.Audio.OpenAL.AL.GetProcAddress(_fname); -} -static unsafe void Test_GetEnumValue_32617() { - System.String _ename = default(System.String); - System.Int32 r = OpenTK.Audio.OpenAL.AL.GetEnumValue(_ename); -} -static unsafe void Test_Listener_32618() { - OpenTK.Audio.OpenAL.ALListenerf _param = default(OpenTK.Audio.OpenAL.ALListenerf); - System.Single _value = default(System.Single); - OpenTK.Audio.OpenAL.AL.Listener(_param,_value); -} -static unsafe void Test_Listener_32619() { - OpenTK.Audio.OpenAL.ALListener3f _param = default(OpenTK.Audio.OpenAL.ALListener3f); - System.Single _value1 = default(System.Single); - System.Single _value2 = default(System.Single); - System.Single _value3 = default(System.Single); - OpenTK.Audio.OpenAL.AL.Listener(_param,_value1,_value2,_value3); -} -static unsafe void Test_Listener_32620() { - OpenTK.Audio.OpenAL.ALListener3f _param = default(OpenTK.Audio.OpenAL.ALListener3f); - OpenTK.Vector3 _values = default(OpenTK.Vector3); - OpenTK.Audio.OpenAL.AL.Listener(_param,ref _values); -} -static unsafe void Test_Listener_32621() { - OpenTK.Audio.OpenAL.ALListenerfv _param = default(OpenTK.Audio.OpenAL.ALListenerfv); - System.Single[] _values = default(System.Single[]); - OpenTK.Audio.OpenAL.AL.Listener(_param,ref _values); -} -static unsafe void Test_Listener_32622() { - OpenTK.Audio.OpenAL.ALListenerfv _param = default(OpenTK.Audio.OpenAL.ALListenerfv); - OpenTK.Vector3 _at = default(OpenTK.Vector3); - OpenTK.Vector3 _up = default(OpenTK.Vector3); - OpenTK.Audio.OpenAL.AL.Listener(_param,ref _at,ref _up); -} -static unsafe void Test_GetListener_32623() { - OpenTK.Audio.OpenAL.ALListenerf _param = default(OpenTK.Audio.OpenAL.ALListenerf); - System.Single _value = default(System.Single); - OpenTK.Audio.OpenAL.AL.GetListener(_param,out _value); -} -static unsafe void Test_GetListener_32624() { - OpenTK.Audio.OpenAL.ALListener3f _param = default(OpenTK.Audio.OpenAL.ALListener3f); - System.Single _value1 = default(System.Single); - System.Single _value2 = default(System.Single); - System.Single _value3 = default(System.Single); - OpenTK.Audio.OpenAL.AL.GetListener(_param,out _value1,out _value2,out _value3); -} -static unsafe void Test_GetListener_32625() { - OpenTK.Audio.OpenAL.ALListener3f _param = default(OpenTK.Audio.OpenAL.ALListener3f); - OpenTK.Vector3 _values = default(OpenTK.Vector3); - OpenTK.Audio.OpenAL.AL.GetListener(_param,out _values); -} -static unsafe void Test_GetListener_32626() { - OpenTK.Audio.OpenAL.ALListenerfv _param = default(OpenTK.Audio.OpenAL.ALListenerfv); - System.Single* _values = default(System.Single*); - OpenTK.Audio.OpenAL.AL.GetListener(_param,_values); -} -static unsafe void Test_GetListener_32627() { - OpenTK.Audio.OpenAL.ALListenerfv _param = default(OpenTK.Audio.OpenAL.ALListenerfv); - OpenTK.Vector3 _at = default(OpenTK.Vector3); - OpenTK.Vector3 _up = default(OpenTK.Vector3); - OpenTK.Audio.OpenAL.AL.GetListener(_param,out _at,out _up); -} -static unsafe void Test_GenSources_32628() { - System.Int32 _n = default(System.Int32); - System.UInt32 _sources = default(System.UInt32); - OpenTK.Audio.OpenAL.AL.GenSources(_n,out _sources); -} -static unsafe void Test_GenSources_32629() { - System.Int32 _n = default(System.Int32); - System.Int32 _sources = default(System.Int32); - OpenTK.Audio.OpenAL.AL.GenSources(_n,out _sources); -} -static unsafe void Test_GenSources_32630() { - System.Int32[] _sources = default(System.Int32[]); - OpenTK.Audio.OpenAL.AL.GenSources(_sources); -} -static unsafe void Test_GenSources_32631() { - System.Int32 _n = default(System.Int32); - System.Int32[] r = OpenTK.Audio.OpenAL.AL.GenSources(_n); -} -static unsafe void Test_GenSource_32632() { - System.Int32 r = OpenTK.Audio.OpenAL.AL.GenSource(); -} -static unsafe void Test_GenSource_32633() { - System.UInt32 _source = default(System.UInt32); - OpenTK.Audio.OpenAL.AL.GenSource(out _source); -} -static unsafe void Test_DeleteSources_32634() { - System.Int32 _n = default(System.Int32); - System.UInt32* _sources = default(System.UInt32*); - OpenTK.Audio.OpenAL.AL.DeleteSources(_n,_sources); -} -static unsafe void Test_DeleteSources_32635() { - System.Int32 _n = default(System.Int32); - System.UInt32 _sources = default(System.UInt32); - OpenTK.Audio.OpenAL.AL.DeleteSources(_n,ref _sources); -} -static unsafe void Test_DeleteSources_32636() { - System.Int32 _n = default(System.Int32); - System.Int32 _sources = default(System.Int32); - OpenTK.Audio.OpenAL.AL.DeleteSources(_n,ref _sources); -} -static unsafe void Test_DeleteSources_32637() { - System.UInt32[] _sources = default(System.UInt32[]); - OpenTK.Audio.OpenAL.AL.DeleteSources(_sources); -} -static unsafe void Test_DeleteSources_32638() { - System.Int32[] _sources = default(System.Int32[]); - OpenTK.Audio.OpenAL.AL.DeleteSources(_sources); -} -static unsafe void Test_DeleteSource_32639() { - System.UInt32 _source = default(System.UInt32); - OpenTK.Audio.OpenAL.AL.DeleteSource(ref _source); -} -static unsafe void Test_DeleteSource_32640() { - System.Int32 _source = default(System.Int32); - OpenTK.Audio.OpenAL.AL.DeleteSource(_source); -} -static unsafe void Test_IsSource_32641() { - System.UInt32 _sid = default(System.UInt32); - System.Boolean r = OpenTK.Audio.OpenAL.AL.IsSource(_sid); -} -static unsafe void Test_IsSource_32642() { - System.Int32 _sid = default(System.Int32); - System.Boolean r = OpenTK.Audio.OpenAL.AL.IsSource(_sid); -} -static unsafe void Test_Source_32643() { - System.UInt32 _sid = default(System.UInt32); - OpenTK.Audio.OpenAL.ALSourcef _param = default(OpenTK.Audio.OpenAL.ALSourcef); - System.Single _value = default(System.Single); - OpenTK.Audio.OpenAL.AL.Source(_sid,_param,_value); -} -static unsafe void Test_Source_32644() { - System.Int32 _sid = default(System.Int32); - OpenTK.Audio.OpenAL.ALSourcef _param = default(OpenTK.Audio.OpenAL.ALSourcef); - System.Single _value = default(System.Single); - OpenTK.Audio.OpenAL.AL.Source(_sid,_param,_value); -} -static unsafe void Test_Source_32645() { - System.UInt32 _sid = default(System.UInt32); - OpenTK.Audio.OpenAL.ALSource3f _param = default(OpenTK.Audio.OpenAL.ALSource3f); - System.Single _value1 = default(System.Single); - System.Single _value2 = default(System.Single); - System.Single _value3 = default(System.Single); - OpenTK.Audio.OpenAL.AL.Source(_sid,_param,_value1,_value2,_value3); -} -static unsafe void Test_Source_32646() { - System.Int32 _sid = default(System.Int32); - OpenTK.Audio.OpenAL.ALSource3f _param = default(OpenTK.Audio.OpenAL.ALSource3f); - System.Single _value1 = default(System.Single); - System.Single _value2 = default(System.Single); - System.Single _value3 = default(System.Single); - OpenTK.Audio.OpenAL.AL.Source(_sid,_param,_value1,_value2,_value3); -} -static unsafe void Test_Source_32647() { - System.UInt32 _sid = default(System.UInt32); - OpenTK.Audio.OpenAL.ALSource3f _param = default(OpenTK.Audio.OpenAL.ALSource3f); - OpenTK.Vector3 _values = default(OpenTK.Vector3); - OpenTK.Audio.OpenAL.AL.Source(_sid,_param,ref _values); -} -static unsafe void Test_Source_32648() { - System.Int32 _sid = default(System.Int32); - OpenTK.Audio.OpenAL.ALSource3f _param = default(OpenTK.Audio.OpenAL.ALSource3f); - OpenTK.Vector3 _values = default(OpenTK.Vector3); - OpenTK.Audio.OpenAL.AL.Source(_sid,_param,ref _values); -} -static unsafe void Test_Source_32649() { - System.UInt32 _sid = default(System.UInt32); - OpenTK.Audio.OpenAL.ALSourcei _param = default(OpenTK.Audio.OpenAL.ALSourcei); - System.Int32 _value = default(System.Int32); - OpenTK.Audio.OpenAL.AL.Source(_sid,_param,_value); -} -static unsafe void Test_Source_32650() { - System.Int32 _sid = default(System.Int32); - OpenTK.Audio.OpenAL.ALSourcei _param = default(OpenTK.Audio.OpenAL.ALSourcei); - System.Int32 _value = default(System.Int32); - OpenTK.Audio.OpenAL.AL.Source(_sid,_param,_value); -} -static unsafe void Test_Source_32651() { - System.UInt32 _sid = default(System.UInt32); - OpenTK.Audio.OpenAL.ALSourceb _param = default(OpenTK.Audio.OpenAL.ALSourceb); - System.Boolean _value = default(System.Boolean); - OpenTK.Audio.OpenAL.AL.Source(_sid,_param,_value); -} -static unsafe void Test_Source_32652() { - System.Int32 _sid = default(System.Int32); - OpenTK.Audio.OpenAL.ALSourceb _param = default(OpenTK.Audio.OpenAL.ALSourceb); - System.Boolean _value = default(System.Boolean); - OpenTK.Audio.OpenAL.AL.Source(_sid,_param,_value); -} -static unsafe void Test_BindBufferToSource_32653() { - System.UInt32 _source = default(System.UInt32); - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Audio.OpenAL.AL.BindBufferToSource(_source,_buffer); -} -static unsafe void Test_BindBufferToSource_32654() { - System.Int32 _source = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - OpenTK.Audio.OpenAL.AL.BindBufferToSource(_source,_buffer); -} -static unsafe void Test_Source_32655() { - System.UInt32 _sid = default(System.UInt32); - OpenTK.Audio.OpenAL.ALSource3i _param = default(OpenTK.Audio.OpenAL.ALSource3i); - System.Int32 _value1 = default(System.Int32); - System.Int32 _value2 = default(System.Int32); - System.Int32 _value3 = default(System.Int32); - OpenTK.Audio.OpenAL.AL.Source(_sid,_param,_value1,_value2,_value3); -} -static unsafe void Test_Source_32656() { - System.Int32 _sid = default(System.Int32); - OpenTK.Audio.OpenAL.ALSource3i _param = default(OpenTK.Audio.OpenAL.ALSource3i); - System.Int32 _value1 = default(System.Int32); - System.Int32 _value2 = default(System.Int32); - System.Int32 _value3 = default(System.Int32); - OpenTK.Audio.OpenAL.AL.Source(_sid,_param,_value1,_value2,_value3); -} -static unsafe void Test_GetSource_32657() { - System.UInt32 _sid = default(System.UInt32); - OpenTK.Audio.OpenAL.ALSourcef _param = default(OpenTK.Audio.OpenAL.ALSourcef); - System.Single _value = default(System.Single); - OpenTK.Audio.OpenAL.AL.GetSource(_sid,_param,out _value); -} -static unsafe void Test_GetSource_32658() { - System.Int32 _sid = default(System.Int32); - OpenTK.Audio.OpenAL.ALSourcef _param = default(OpenTK.Audio.OpenAL.ALSourcef); - System.Single _value = default(System.Single); - OpenTK.Audio.OpenAL.AL.GetSource(_sid,_param,out _value); -} -static unsafe void Test_GetSource_32659() { - System.UInt32 _sid = default(System.UInt32); - OpenTK.Audio.OpenAL.ALSource3f _param = default(OpenTK.Audio.OpenAL.ALSource3f); - System.Single _value1 = default(System.Single); - System.Single _value2 = default(System.Single); - System.Single _value3 = default(System.Single); - OpenTK.Audio.OpenAL.AL.GetSource(_sid,_param,out _value1,out _value2,out _value3); -} -static unsafe void Test_GetSource_32660() { - System.Int32 _sid = default(System.Int32); - OpenTK.Audio.OpenAL.ALSource3f _param = default(OpenTK.Audio.OpenAL.ALSource3f); - System.Single _value1 = default(System.Single); - System.Single _value2 = default(System.Single); - System.Single _value3 = default(System.Single); - OpenTK.Audio.OpenAL.AL.GetSource(_sid,_param,out _value1,out _value2,out _value3); -} -static unsafe void Test_GetSource_32661() { - System.UInt32 _sid = default(System.UInt32); - OpenTK.Audio.OpenAL.ALSource3f _param = default(OpenTK.Audio.OpenAL.ALSource3f); - OpenTK.Vector3 _values = default(OpenTK.Vector3); - OpenTK.Audio.OpenAL.AL.GetSource(_sid,_param,out _values); -} -static unsafe void Test_GetSource_32662() { - System.Int32 _sid = default(System.Int32); - OpenTK.Audio.OpenAL.ALSource3f _param = default(OpenTK.Audio.OpenAL.ALSource3f); - OpenTK.Vector3 _values = default(OpenTK.Vector3); - OpenTK.Audio.OpenAL.AL.GetSource(_sid,_param,out _values); -} -static unsafe void Test_GetSource_32663() { - System.UInt32 _sid = default(System.UInt32); - OpenTK.Audio.OpenAL.ALGetSourcei _param = default(OpenTK.Audio.OpenAL.ALGetSourcei); - System.Int32 _value = default(System.Int32); - OpenTK.Audio.OpenAL.AL.GetSource(_sid,_param,out _value); -} -static unsafe void Test_GetSource_32664() { - System.Int32 _sid = default(System.Int32); - OpenTK.Audio.OpenAL.ALGetSourcei _param = default(OpenTK.Audio.OpenAL.ALGetSourcei); - System.Int32 _value = default(System.Int32); - OpenTK.Audio.OpenAL.AL.GetSource(_sid,_param,out _value); -} -static unsafe void Test_GetSource_32665() { - System.UInt32 _sid = default(System.UInt32); - OpenTK.Audio.OpenAL.ALSourceb _param = default(OpenTK.Audio.OpenAL.ALSourceb); - System.Boolean _value = default(System.Boolean); - OpenTK.Audio.OpenAL.AL.GetSource(_sid,_param,out _value); -} -static unsafe void Test_GetSource_32666() { - System.Int32 _sid = default(System.Int32); - OpenTK.Audio.OpenAL.ALSourceb _param = default(OpenTK.Audio.OpenAL.ALSourceb); - System.Boolean _value = default(System.Boolean); - OpenTK.Audio.OpenAL.AL.GetSource(_sid,_param,out _value); -} -static unsafe void Test_SourcePlay_32667() { - System.Int32 _ns = default(System.Int32); - System.UInt32* _sids = default(System.UInt32*); - OpenTK.Audio.OpenAL.AL.SourcePlay(_ns,_sids); -} -static unsafe void Test_SourcePlay_32668() { - System.Int32 _ns = default(System.Int32); - System.UInt32[] _sids = default(System.UInt32[]); - OpenTK.Audio.OpenAL.AL.SourcePlay(_ns,_sids); -} -static unsafe void Test_SourcePlay_32669() { - System.Int32 _ns = default(System.Int32); - System.Int32[] _sids = default(System.Int32[]); - OpenTK.Audio.OpenAL.AL.SourcePlay(_ns,_sids); -} -static unsafe void Test_SourcePlay_32670() { - System.Int32 _ns = default(System.Int32); - System.UInt32 _sids = default(System.UInt32); - OpenTK.Audio.OpenAL.AL.SourcePlay(_ns,ref _sids); -} -static unsafe void Test_SourceStop_32671() { - System.Int32 _ns = default(System.Int32); - System.UInt32* _sids = default(System.UInt32*); - OpenTK.Audio.OpenAL.AL.SourceStop(_ns,_sids); -} -static unsafe void Test_SourceStop_32672() { - System.Int32 _ns = default(System.Int32); - System.UInt32[] _sids = default(System.UInt32[]); - OpenTK.Audio.OpenAL.AL.SourceStop(_ns,_sids); -} -static unsafe void Test_SourceStop_32673() { - System.Int32 _ns = default(System.Int32); - System.Int32[] _sids = default(System.Int32[]); - OpenTK.Audio.OpenAL.AL.SourceStop(_ns,_sids); -} -static unsafe void Test_SourceStop_32674() { - System.Int32 _ns = default(System.Int32); - System.UInt32 _sids = default(System.UInt32); - OpenTK.Audio.OpenAL.AL.SourceStop(_ns,ref _sids); -} -static unsafe void Test_SourceRewind_32675() { - System.Int32 _ns = default(System.Int32); - System.UInt32* _sids = default(System.UInt32*); - OpenTK.Audio.OpenAL.AL.SourceRewind(_ns,_sids); -} -static unsafe void Test_SourceRewind_32676() { - System.Int32 _ns = default(System.Int32); - System.UInt32[] _sids = default(System.UInt32[]); - OpenTK.Audio.OpenAL.AL.SourceRewind(_ns,_sids); -} -static unsafe void Test_SourceRewind_32677() { - System.Int32 _ns = default(System.Int32); - System.Int32[] _sids = default(System.Int32[]); - OpenTK.Audio.OpenAL.AL.SourceRewind(_ns,_sids); -} -static unsafe void Test_SourceRewind_32678() { - System.Int32 _ns = default(System.Int32); - System.UInt32 _sids = default(System.UInt32); - OpenTK.Audio.OpenAL.AL.SourceRewind(_ns,ref _sids); -} -static unsafe void Test_SourcePause_32679() { - System.Int32 _ns = default(System.Int32); - System.UInt32* _sids = default(System.UInt32*); - OpenTK.Audio.OpenAL.AL.SourcePause(_ns,_sids); -} -static unsafe void Test_SourcePause_32680() { - System.Int32 _ns = default(System.Int32); - System.UInt32[] _sids = default(System.UInt32[]); - OpenTK.Audio.OpenAL.AL.SourcePause(_ns,_sids); -} -static unsafe void Test_SourcePause_32681() { - System.Int32 _ns = default(System.Int32); - System.Int32[] _sids = default(System.Int32[]); - OpenTK.Audio.OpenAL.AL.SourcePause(_ns,_sids); -} -static unsafe void Test_SourcePause_32682() { - System.Int32 _ns = default(System.Int32); - System.UInt32 _sids = default(System.UInt32); - OpenTK.Audio.OpenAL.AL.SourcePause(_ns,ref _sids); -} -static unsafe void Test_SourcePlay_32683() { - System.UInt32 _sid = default(System.UInt32); - OpenTK.Audio.OpenAL.AL.SourcePlay(_sid); -} -static unsafe void Test_SourcePlay_32684() { - System.Int32 _sid = default(System.Int32); - OpenTK.Audio.OpenAL.AL.SourcePlay(_sid); -} -static unsafe void Test_SourceStop_32685() { - System.UInt32 _sid = default(System.UInt32); - OpenTK.Audio.OpenAL.AL.SourceStop(_sid); -} -static unsafe void Test_SourceStop_32686() { - System.Int32 _sid = default(System.Int32); - OpenTK.Audio.OpenAL.AL.SourceStop(_sid); -} -static unsafe void Test_SourceRewind_32687() { - System.UInt32 _sid = default(System.UInt32); - OpenTK.Audio.OpenAL.AL.SourceRewind(_sid); -} -static unsafe void Test_SourceRewind_32688() { - System.Int32 _sid = default(System.Int32); - OpenTK.Audio.OpenAL.AL.SourceRewind(_sid); -} -static unsafe void Test_SourcePause_32689() { - System.UInt32 _sid = default(System.UInt32); - OpenTK.Audio.OpenAL.AL.SourcePause(_sid); -} -static unsafe void Test_SourcePause_32690() { - System.Int32 _sid = default(System.Int32); - OpenTK.Audio.OpenAL.AL.SourcePause(_sid); -} -static unsafe void Test_SourceQueueBuffers_32691() { - System.UInt32 _sid = default(System.UInt32); - System.Int32 _numEntries = default(System.Int32); - System.UInt32* _bids = default(System.UInt32*); - OpenTK.Audio.OpenAL.AL.SourceQueueBuffers(_sid,_numEntries,_bids); -} -static unsafe void Test_SourceQueueBuffers_32692() { - System.UInt32 _sid = default(System.UInt32); - System.Int32 _numEntries = default(System.Int32); - System.UInt32[] _bids = default(System.UInt32[]); - OpenTK.Audio.OpenAL.AL.SourceQueueBuffers(_sid,_numEntries,_bids); -} -static unsafe void Test_SourceQueueBuffers_32693() { - System.Int32 _sid = default(System.Int32); - System.Int32 _numEntries = default(System.Int32); - System.Int32[] _bids = default(System.Int32[]); - OpenTK.Audio.OpenAL.AL.SourceQueueBuffers(_sid,_numEntries,_bids); -} -static unsafe void Test_SourceQueueBuffers_32694() { - System.UInt32 _sid = default(System.UInt32); - System.Int32 _numEntries = default(System.Int32); - System.UInt32 _bids = default(System.UInt32); - OpenTK.Audio.OpenAL.AL.SourceQueueBuffers(_sid,_numEntries,ref _bids); -} -static unsafe void Test_SourceQueueBuffer_32695() { - System.Int32 _source = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - OpenTK.Audio.OpenAL.AL.SourceQueueBuffer(_source,_buffer); -} -static unsafe void Test_SourceUnqueueBuffers_32696() { - System.UInt32 _sid = default(System.UInt32); - System.Int32 _numEntries = default(System.Int32); - System.UInt32* _bids = default(System.UInt32*); - OpenTK.Audio.OpenAL.AL.SourceUnqueueBuffers(_sid,_numEntries,_bids); -} -static unsafe void Test_SourceUnqueueBuffers_32697() { - System.UInt32 _sid = default(System.UInt32); - System.Int32 _numEntries = default(System.Int32); - System.UInt32[] _bids = default(System.UInt32[]); - OpenTK.Audio.OpenAL.AL.SourceUnqueueBuffers(_sid,_numEntries,_bids); -} -static unsafe void Test_SourceUnqueueBuffers_32698() { - System.Int32 _sid = default(System.Int32); - System.Int32 _numEntries = default(System.Int32); - System.Int32[] _bids = default(System.Int32[]); - OpenTK.Audio.OpenAL.AL.SourceUnqueueBuffers(_sid,_numEntries,_bids); -} -static unsafe void Test_SourceUnqueueBuffers_32699() { - System.UInt32 _sid = default(System.UInt32); - System.Int32 _numEntries = default(System.Int32); - System.UInt32 _bids = default(System.UInt32); - OpenTK.Audio.OpenAL.AL.SourceUnqueueBuffers(_sid,_numEntries,ref _bids); -} -static unsafe void Test_SourceUnqueueBuffers_32700() { - System.Int32 _sid = default(System.Int32); - System.Int32 _numEntries = default(System.Int32); - System.Int32 _bids = default(System.Int32); - OpenTK.Audio.OpenAL.AL.SourceUnqueueBuffers(_sid,_numEntries,ref _bids); -} -static unsafe void Test_SourceUnqueueBuffer_32701() { - System.Int32 _sid = default(System.Int32); - System.Int32 r = OpenTK.Audio.OpenAL.AL.SourceUnqueueBuffer(_sid); -} -static unsafe void Test_SourceUnqueueBuffers_32702() { - System.Int32 _sid = default(System.Int32); - System.Int32 _numEntries = default(System.Int32); - System.Int32[] r = OpenTK.Audio.OpenAL.AL.SourceUnqueueBuffers(_sid,_numEntries); -} -static unsafe void Test_GenBuffers_32703() { - System.Int32 _n = default(System.Int32); - System.UInt32* _buffers = default(System.UInt32*); - OpenTK.Audio.OpenAL.AL.GenBuffers(_n,_buffers); -} -static unsafe void Test_GenBuffers_32704() { - System.Int32 _n = default(System.Int32); - System.Int32* _buffers = default(System.Int32*); - OpenTK.Audio.OpenAL.AL.GenBuffers(_n,_buffers); -} -static unsafe void Test_GenBuffers_32705() { - System.Int32 _n = default(System.Int32); - System.UInt32 _buffers = default(System.UInt32); - OpenTK.Audio.OpenAL.AL.GenBuffers(_n,out _buffers); -} -static unsafe void Test_GenBuffers_32706() { - System.Int32 _n = default(System.Int32); - System.Int32 _buffers = default(System.Int32); - OpenTK.Audio.OpenAL.AL.GenBuffers(_n,out _buffers); -} -static unsafe void Test_GenBuffers_32707() { - System.Int32 _n = default(System.Int32); - System.Int32[] r = OpenTK.Audio.OpenAL.AL.GenBuffers(_n); -} -static unsafe void Test_GenBuffer_32708() { - System.Int32 r = OpenTK.Audio.OpenAL.AL.GenBuffer(); -} -static unsafe void Test_GenBuffer_32709() { - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Audio.OpenAL.AL.GenBuffer(out _buffer); -} -static unsafe void Test_DeleteBuffers_32710() { - System.Int32 _n = default(System.Int32); - System.UInt32* _buffers = default(System.UInt32*); - OpenTK.Audio.OpenAL.AL.DeleteBuffers(_n,_buffers); -} -static unsafe void Test_DeleteBuffers_32711() { - System.Int32 _n = default(System.Int32); - System.Int32* _buffers = default(System.Int32*); - OpenTK.Audio.OpenAL.AL.DeleteBuffers(_n,_buffers); -} -static unsafe void Test_DeleteBuffers_32712() { - System.Int32 _n = default(System.Int32); - System.UInt32 _buffers = default(System.UInt32); - OpenTK.Audio.OpenAL.AL.DeleteBuffers(_n,ref _buffers); -} -static unsafe void Test_DeleteBuffers_32713() { - System.Int32 _n = default(System.Int32); - System.Int32 _buffers = default(System.Int32); - OpenTK.Audio.OpenAL.AL.DeleteBuffers(_n,ref _buffers); -} -static unsafe void Test_DeleteBuffers_32714() { - System.UInt32[] _buffers = default(System.UInt32[]); - OpenTK.Audio.OpenAL.AL.DeleteBuffers(_buffers); -} -static unsafe void Test_DeleteBuffers_32715() { - System.Int32[] _buffers = default(System.Int32[]); - OpenTK.Audio.OpenAL.AL.DeleteBuffers(_buffers); -} -static unsafe void Test_DeleteBuffer_32716() { - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Audio.OpenAL.AL.DeleteBuffer(ref _buffer); -} -static unsafe void Test_DeleteBuffer_32717() { - System.Int32 _buffer = default(System.Int32); - OpenTK.Audio.OpenAL.AL.DeleteBuffer(_buffer); -} -static unsafe void Test_IsBuffer_32718() { - System.UInt32 _bid = default(System.UInt32); - System.Boolean r = OpenTK.Audio.OpenAL.AL.IsBuffer(_bid); -} -static unsafe void Test_IsBuffer_32719() { - System.Int32 _bid = default(System.Int32); - System.Boolean r = OpenTK.Audio.OpenAL.AL.IsBuffer(_bid); -} -static unsafe void Test_BufferData_32720() { - System.UInt32 _bid = default(System.UInt32); - OpenTK.Audio.OpenAL.ALFormat _format = default(OpenTK.Audio.OpenAL.ALFormat); - System.IntPtr _buffer = default(System.IntPtr); - System.Int32 _size = default(System.Int32); - System.Int32 _freq = default(System.Int32); - OpenTK.Audio.OpenAL.AL.BufferData(_bid,_format,_buffer,_size,_freq); -} -static unsafe void Test_BufferData_32721() { - System.Int32 _bid = default(System.Int32); - OpenTK.Audio.OpenAL.ALFormat _format = default(OpenTK.Audio.OpenAL.ALFormat); - System.IntPtr _buffer = default(System.IntPtr); - System.Int32 _size = default(System.Int32); - System.Int32 _freq = default(System.Int32); - OpenTK.Audio.OpenAL.AL.BufferData(_bid,_format,_buffer,_size,_freq); -} -static unsafe void Test_BufferData_32722() { - System.Int32 _bid = default(System.Int32); - OpenTK.Audio.OpenAL.ALFormat _format = default(OpenTK.Audio.OpenAL.ALFormat); - int[] _buffer = default(int[]); - System.Int32 _size = default(System.Int32); - System.Int32 _freq = default(System.Int32); - OpenTK.Audio.OpenAL.AL.BufferData(_bid,_format,_buffer,_size,_freq); -} -static unsafe void Test_GetBuffer_32723() { - System.UInt32 _bid = default(System.UInt32); - OpenTK.Audio.OpenAL.ALGetBufferi _param = default(OpenTK.Audio.OpenAL.ALGetBufferi); - System.Int32 _value = default(System.Int32); - OpenTK.Audio.OpenAL.AL.GetBuffer(_bid,_param,out _value); -} -static unsafe void Test_GetBuffer_32724() { - System.Int32 _bid = default(System.Int32); - OpenTK.Audio.OpenAL.ALGetBufferi _param = default(OpenTK.Audio.OpenAL.ALGetBufferi); - System.Int32 _value = default(System.Int32); - OpenTK.Audio.OpenAL.AL.GetBuffer(_bid,_param,out _value); -} -static unsafe void Test_DopplerFactor_32725() { - System.Single _value = default(System.Single); - OpenTK.Audio.OpenAL.AL.DopplerFactor(_value); -} -static unsafe void Test_DopplerVelocity_32726() { - System.Single _value = default(System.Single); - OpenTK.Audio.OpenAL.AL.DopplerVelocity(_value); -} -static unsafe void Test_SpeedOfSound_32727() { - System.Single _value = default(System.Single); - OpenTK.Audio.OpenAL.AL.SpeedOfSound(_value); -} -static unsafe void Test_DistanceModel_32728() { - OpenTK.Audio.OpenAL.ALDistanceModel _distancemodel = default(OpenTK.Audio.OpenAL.ALDistanceModel); - OpenTK.Audio.OpenAL.AL.DistanceModel(_distancemodel); -} -static unsafe void Test_GetSourceState_32729() { - System.UInt32 _sid = default(System.UInt32); - OpenTK.Audio.OpenAL.ALSourceState r = OpenTK.Audio.OpenAL.AL.GetSourceState(_sid); -} -static unsafe void Test_GetSourceState_32730() { - System.Int32 _sid = default(System.Int32); - OpenTK.Audio.OpenAL.ALSourceState r = OpenTK.Audio.OpenAL.AL.GetSourceState(_sid); -} -static unsafe void Test_GetSourceType_32731() { - System.UInt32 _sid = default(System.UInt32); - OpenTK.Audio.OpenAL.ALSourceType r = OpenTK.Audio.OpenAL.AL.GetSourceType(_sid); -} -static unsafe void Test_GetSourceType_32732() { - System.Int32 _sid = default(System.Int32); - OpenTK.Audio.OpenAL.ALSourceType r = OpenTK.Audio.OpenAL.AL.GetSourceType(_sid); -} -static unsafe void Test_GetDistanceModel_32733() { - OpenTK.Audio.OpenAL.ALDistanceModel r = OpenTK.Audio.OpenAL.AL.GetDistanceModel(); -} -static void Test_ALCapability_32734() { - var _Invalid = OpenTK.Audio.OpenAL.ALCapability.Invalid; -} -static void Test_ALListenerf_32735() { - var _Gain = OpenTK.Audio.OpenAL.ALListenerf.Gain; - var _EfxMetersPerUnit = OpenTK.Audio.OpenAL.ALListenerf.EfxMetersPerUnit; -} -static void Test_ALListener3f_32736() { - var _Position = OpenTK.Audio.OpenAL.ALListener3f.Position; - var _Velocity = OpenTK.Audio.OpenAL.ALListener3f.Velocity; -} -static void Test_ALListenerfv_32737() { - var _Orientation = OpenTK.Audio.OpenAL.ALListenerfv.Orientation; -} -static void Test_ALSourcef_32738() { - var _ReferenceDistance = OpenTK.Audio.OpenAL.ALSourcef.ReferenceDistance; - var _MaxDistance = OpenTK.Audio.OpenAL.ALSourcef.MaxDistance; - var _RolloffFactor = OpenTK.Audio.OpenAL.ALSourcef.RolloffFactor; - var _Pitch = OpenTK.Audio.OpenAL.ALSourcef.Pitch; - var _Gain = OpenTK.Audio.OpenAL.ALSourcef.Gain; - var _MinGain = OpenTK.Audio.OpenAL.ALSourcef.MinGain; - var _MaxGain = OpenTK.Audio.OpenAL.ALSourcef.MaxGain; - var _ConeInnerAngle = OpenTK.Audio.OpenAL.ALSourcef.ConeInnerAngle; - var _ConeOuterAngle = OpenTK.Audio.OpenAL.ALSourcef.ConeOuterAngle; - var _ConeOuterGain = OpenTK.Audio.OpenAL.ALSourcef.ConeOuterGain; - var _SecOffset = OpenTK.Audio.OpenAL.ALSourcef.SecOffset; - var _EfxAirAbsorptionFactor = OpenTK.Audio.OpenAL.ALSourcef.EfxAirAbsorptionFactor; - var _EfxRoomRolloffFactor = OpenTK.Audio.OpenAL.ALSourcef.EfxRoomRolloffFactor; - var _EfxConeOuterGainHighFrequency = OpenTK.Audio.OpenAL.ALSourcef.EfxConeOuterGainHighFrequency; -} -static void Test_ALSource3f_32739() { - var _Position = OpenTK.Audio.OpenAL.ALSource3f.Position; - var _Velocity = OpenTK.Audio.OpenAL.ALSource3f.Velocity; - var _Direction = OpenTK.Audio.OpenAL.ALSource3f.Direction; -} -static void Test_ALSourceb_32740() { - var _SourceRelative = OpenTK.Audio.OpenAL.ALSourceb.SourceRelative; - var _Looping = OpenTK.Audio.OpenAL.ALSourceb.Looping; - var _EfxDirectFilterGainHighFrequencyAuto = OpenTK.Audio.OpenAL.ALSourceb.EfxDirectFilterGainHighFrequencyAuto; - var _EfxAuxiliarySendFilterGainAuto = OpenTK.Audio.OpenAL.ALSourceb.EfxAuxiliarySendFilterGainAuto; - var _EfxAuxiliarySendFilterGainHighFrequencyAuto = OpenTK.Audio.OpenAL.ALSourceb.EfxAuxiliarySendFilterGainHighFrequencyAuto; -} -static void Test_ALSourcei_32741() { - var _ByteOffset = OpenTK.Audio.OpenAL.ALSourcei.ByteOffset; - var _SampleOffset = OpenTK.Audio.OpenAL.ALSourcei.SampleOffset; - var _Buffer = OpenTK.Audio.OpenAL.ALSourcei.Buffer; - var _SourceType = OpenTK.Audio.OpenAL.ALSourcei.SourceType; - var _EfxDirectFilter = OpenTK.Audio.OpenAL.ALSourcei.EfxDirectFilter; -} -static void Test_ALSource3i_32742() { - var _EfxAuxiliarySendFilter = OpenTK.Audio.OpenAL.ALSource3i.EfxAuxiliarySendFilter; -} -static void Test_ALGetSourcei_32743() { - var _ByteOffset = OpenTK.Audio.OpenAL.ALGetSourcei.ByteOffset; - var _SampleOffset = OpenTK.Audio.OpenAL.ALGetSourcei.SampleOffset; - var _Buffer = OpenTK.Audio.OpenAL.ALGetSourcei.Buffer; - var _SourceState = OpenTK.Audio.OpenAL.ALGetSourcei.SourceState; - var _BuffersQueued = OpenTK.Audio.OpenAL.ALGetSourcei.BuffersQueued; - var _BuffersProcessed = OpenTK.Audio.OpenAL.ALGetSourcei.BuffersProcessed; - var _SourceType = OpenTK.Audio.OpenAL.ALGetSourcei.SourceType; -} -static void Test_ALSourceState_32744() { - var _Initial = OpenTK.Audio.OpenAL.ALSourceState.Initial; - var _Playing = OpenTK.Audio.OpenAL.ALSourceState.Playing; - var _Paused = OpenTK.Audio.OpenAL.ALSourceState.Paused; - var _Stopped = OpenTK.Audio.OpenAL.ALSourceState.Stopped; -} -static void Test_ALSourceType_32745() { - var _Static = OpenTK.Audio.OpenAL.ALSourceType.Static; - var _Streaming = OpenTK.Audio.OpenAL.ALSourceType.Streaming; - var _Undetermined = OpenTK.Audio.OpenAL.ALSourceType.Undetermined; -} -static void Test_ALFormat_32746() { - var _Mono8 = OpenTK.Audio.OpenAL.ALFormat.Mono8; - var _Mono16 = OpenTK.Audio.OpenAL.ALFormat.Mono16; - var _Stereo8 = OpenTK.Audio.OpenAL.ALFormat.Stereo8; - var _Stereo16 = OpenTK.Audio.OpenAL.ALFormat.Stereo16; - var _MonoALawExt = OpenTK.Audio.OpenAL.ALFormat.MonoALawExt; - var _StereoALawExt = OpenTK.Audio.OpenAL.ALFormat.StereoALawExt; - var _MonoMuLawExt = OpenTK.Audio.OpenAL.ALFormat.MonoMuLawExt; - var _StereoMuLawExt = OpenTK.Audio.OpenAL.ALFormat.StereoMuLawExt; - var _VorbisExt = OpenTK.Audio.OpenAL.ALFormat.VorbisExt; - var _Mp3Ext = OpenTK.Audio.OpenAL.ALFormat.Mp3Ext; - var _MonoIma4Ext = OpenTK.Audio.OpenAL.ALFormat.MonoIma4Ext; - var _StereoIma4Ext = OpenTK.Audio.OpenAL.ALFormat.StereoIma4Ext; - var _MonoFloat32Ext = OpenTK.Audio.OpenAL.ALFormat.MonoFloat32Ext; - var _StereoFloat32Ext = OpenTK.Audio.OpenAL.ALFormat.StereoFloat32Ext; - var _MonoDoubleExt = OpenTK.Audio.OpenAL.ALFormat.MonoDoubleExt; - var _StereoDoubleExt = OpenTK.Audio.OpenAL.ALFormat.StereoDoubleExt; - var _Multi51Chn16Ext = OpenTK.Audio.OpenAL.ALFormat.Multi51Chn16Ext; - var _Multi51Chn32Ext = OpenTK.Audio.OpenAL.ALFormat.Multi51Chn32Ext; - var _Multi51Chn8Ext = OpenTK.Audio.OpenAL.ALFormat.Multi51Chn8Ext; - var _Multi61Chn16Ext = OpenTK.Audio.OpenAL.ALFormat.Multi61Chn16Ext; - var _Multi61Chn32Ext = OpenTK.Audio.OpenAL.ALFormat.Multi61Chn32Ext; - var _Multi61Chn8Ext = OpenTK.Audio.OpenAL.ALFormat.Multi61Chn8Ext; - var _Multi71Chn16Ext = OpenTK.Audio.OpenAL.ALFormat.Multi71Chn16Ext; - var _Multi71Chn32Ext = OpenTK.Audio.OpenAL.ALFormat.Multi71Chn32Ext; - var _Multi71Chn8Ext = OpenTK.Audio.OpenAL.ALFormat.Multi71Chn8Ext; - var _MultiQuad16Ext = OpenTK.Audio.OpenAL.ALFormat.MultiQuad16Ext; - var _MultiQuad32Ext = OpenTK.Audio.OpenAL.ALFormat.MultiQuad32Ext; - var _MultiQuad8Ext = OpenTK.Audio.OpenAL.ALFormat.MultiQuad8Ext; - var _MultiRear16Ext = OpenTK.Audio.OpenAL.ALFormat.MultiRear16Ext; - var _MultiRear32Ext = OpenTK.Audio.OpenAL.ALFormat.MultiRear32Ext; - var _MultiRear8Ext = OpenTK.Audio.OpenAL.ALFormat.MultiRear8Ext; -} -static void Test_ALGetBufferi_32747() { - var _Frequency = OpenTK.Audio.OpenAL.ALGetBufferi.Frequency; - var _Bits = OpenTK.Audio.OpenAL.ALGetBufferi.Bits; - var _Channels = OpenTK.Audio.OpenAL.ALGetBufferi.Channels; - var _Size = OpenTK.Audio.OpenAL.ALGetBufferi.Size; -} -static void Test_ALBufferState_32748() { - var _Unused = OpenTK.Audio.OpenAL.ALBufferState.Unused; - var _Pending = OpenTK.Audio.OpenAL.ALBufferState.Pending; - var _Processed = OpenTK.Audio.OpenAL.ALBufferState.Processed; -} -static void Test_ALError_32749() { - var _NoError = OpenTK.Audio.OpenAL.ALError.NoError; - var _InvalidName = OpenTK.Audio.OpenAL.ALError.InvalidName; - var _IllegalEnum = OpenTK.Audio.OpenAL.ALError.IllegalEnum; - var _InvalidEnum = OpenTK.Audio.OpenAL.ALError.InvalidEnum; - var _InvalidValue = OpenTK.Audio.OpenAL.ALError.InvalidValue; - var _IllegalCommand = OpenTK.Audio.OpenAL.ALError.IllegalCommand; - var _InvalidOperation = OpenTK.Audio.OpenAL.ALError.InvalidOperation; - var _OutOfMemory = OpenTK.Audio.OpenAL.ALError.OutOfMemory; -} -static void Test_ALGetString_32750() { - var _Vendor = OpenTK.Audio.OpenAL.ALGetString.Vendor; - var _Version = OpenTK.Audio.OpenAL.ALGetString.Version; - var _Renderer = OpenTK.Audio.OpenAL.ALGetString.Renderer; - var _Extensions = OpenTK.Audio.OpenAL.ALGetString.Extensions; -} -static void Test_ALGetFloat_32751() { - var _DopplerFactor = OpenTK.Audio.OpenAL.ALGetFloat.DopplerFactor; - var _DopplerVelocity = OpenTK.Audio.OpenAL.ALGetFloat.DopplerVelocity; - var _SpeedOfSound = OpenTK.Audio.OpenAL.ALGetFloat.SpeedOfSound; -} -static void Test_ALGetInteger_32752() { - var _DistanceModel = OpenTK.Audio.OpenAL.ALGetInteger.DistanceModel; -} -static void Test_ALDistanceModel_32753() { - var _None = OpenTK.Audio.OpenAL.ALDistanceModel.None; - var _InverseDistance = OpenTK.Audio.OpenAL.ALDistanceModel.InverseDistance; - var _InverseDistanceClamped = OpenTK.Audio.OpenAL.ALDistanceModel.InverseDistanceClamped; - var _LinearDistance = OpenTK.Audio.OpenAL.ALDistanceModel.LinearDistance; - var _LinearDistanceClamped = OpenTK.Audio.OpenAL.ALDistanceModel.LinearDistanceClamped; - var _ExponentDistance = OpenTK.Audio.OpenAL.ALDistanceModel.ExponentDistance; - var _ExponentDistanceClamped = OpenTK.Audio.OpenAL.ALDistanceModel.ExponentDistanceClamped; -} - -static unsafe void Test_ClearColor_32755() { - System.Drawing.Color _color = default(System.Drawing.Color); - OpenTK.Graphics.ES30.GL.ClearColor(_color); -} -static unsafe void Test_ClearColor_32756() { - OpenTK.Graphics.Color4 _color = default(OpenTK.Graphics.Color4); - OpenTK.Graphics.ES30.GL.ClearColor(_color); -} -static unsafe void Test_BlendColor_32757() { - System.Drawing.Color _color = default(System.Drawing.Color); - OpenTK.Graphics.ES30.GL.BlendColor(_color); -} -static unsafe void Test_BlendColor_32758() { - OpenTK.Graphics.Color4 _color = default(OpenTK.Graphics.Color4); - OpenTK.Graphics.ES30.GL.BlendColor(_color); -} -static unsafe void Test_Uniform2_32759() { - System.Int32 _location = default(System.Int32); - OpenTK.Vector2 _vector = default(OpenTK.Vector2); - OpenTK.Graphics.ES30.GL.Uniform2(_location,ref _vector); -} -static unsafe void Test_Uniform3_32760() { - System.Int32 _location = default(System.Int32); - OpenTK.Vector3 _vector = default(OpenTK.Vector3); - OpenTK.Graphics.ES30.GL.Uniform3(_location,ref _vector); -} -static unsafe void Test_Uniform4_32761() { - System.Int32 _location = default(System.Int32); - OpenTK.Vector4 _vector = default(OpenTK.Vector4); - OpenTK.Graphics.ES30.GL.Uniform4(_location,ref _vector); -} -static unsafe void Test_Uniform2_32762() { - System.Int32 _location = default(System.Int32); - OpenTK.Vector2 _vector = default(OpenTK.Vector2); - OpenTK.Graphics.ES30.GL.Uniform2(_location,_vector); -} -static unsafe void Test_Uniform3_32763() { - System.Int32 _location = default(System.Int32); - OpenTK.Vector3 _vector = default(OpenTK.Vector3); - OpenTK.Graphics.ES30.GL.Uniform3(_location,_vector); -} -static unsafe void Test_Uniform4_32764() { - System.Int32 _location = default(System.Int32); - OpenTK.Vector4 _vector = default(OpenTK.Vector4); - OpenTK.Graphics.ES30.GL.Uniform4(_location,_vector); -} -static unsafe void Test_Uniform4_32765() { - System.Int32 _location = default(System.Int32); - OpenTK.Graphics.Color4 _color = default(OpenTK.Graphics.Color4); - OpenTK.Graphics.ES30.GL.Uniform4(_location,_color); -} -static unsafe void Test_Uniform4_32766() { - System.Int32 _location = default(System.Int32); - OpenTK.Quaternion _quaternion = default(OpenTK.Quaternion); - OpenTK.Graphics.ES30.GL.Uniform4(_location,_quaternion); -} -static unsafe void Test_UniformMatrix2_32767() { - System.Int32 _location = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - OpenTK.Matrix2 _matrix = default(OpenTK.Matrix2); - OpenTK.Graphics.ES30.GL.UniformMatrix2(_location,_transpose,ref _matrix); -} -static unsafe void Test_UniformMatrix3_32768() { - System.Int32 _location = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - OpenTK.Matrix3 _matrix = default(OpenTK.Matrix3); - OpenTK.Graphics.ES30.GL.UniformMatrix3(_location,_transpose,ref _matrix); -} -static unsafe void Test_UniformMatrix4_32769() { - System.Int32 _location = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - OpenTK.Matrix4 _matrix = default(OpenTK.Matrix4); - OpenTK.Graphics.ES30.GL.UniformMatrix4(_location,_transpose,ref _matrix); -} -static unsafe void Test_GetActiveAttrib_32770() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.ActiveAttribType _type = default(OpenTK.Graphics.ES30.ActiveAttribType); - System.String r = OpenTK.Graphics.ES30.GL.GetActiveAttrib(_program,_index,out _size,out _type); -} -static unsafe void Test_GetActiveUniform_32771() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformIndex = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.ActiveUniformType _type = default(OpenTK.Graphics.ES30.ActiveUniformType); - System.String r = OpenTK.Graphics.ES30.GL.GetActiveUniform(_program,_uniformIndex,out _size,out _type); -} -static unsafe void Test_ShaderSource_32772() { - System.Int32 _shader = default(System.Int32); - System.String _string = default(System.String); - OpenTK.Graphics.ES30.GL.ShaderSource(_shader,_string); -} -static unsafe void Test_GetShaderInfoLog_32773() { - System.Int32 _shader = default(System.Int32); - System.String r = OpenTK.Graphics.ES30.GL.GetShaderInfoLog(_shader); -} -static unsafe void Test_GetShaderInfoLog_32774() { - System.Int32 _shader = default(System.Int32); - System.String _info = default(System.String); - OpenTK.Graphics.ES30.GL.GetShaderInfoLog(_shader,out _info); -} -static unsafe void Test_GetProgramInfoLog_32775() { - System.Int32 _program = default(System.Int32); - System.String r = OpenTK.Graphics.ES30.GL.GetProgramInfoLog(_program); -} -static unsafe void Test_GetProgramInfoLog_32776() { - System.Int32 _program = default(System.Int32); - System.String _info = default(System.String); - OpenTK.Graphics.ES30.GL.GetProgramInfoLog(_program,out _info); -} -static unsafe void Test_VertexAttrib2_32777() { - System.Int32 _index = default(System.Int32); - OpenTK.Vector2 _v = default(OpenTK.Vector2); - OpenTK.Graphics.ES30.GL.VertexAttrib2(_index,ref _v); -} -static unsafe void Test_VertexAttrib3_32778() { - System.Int32 _index = default(System.Int32); - OpenTK.Vector3 _v = default(OpenTK.Vector3); - OpenTK.Graphics.ES30.GL.VertexAttrib3(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_32779() { - System.Int32 _index = default(System.Int32); - OpenTK.Vector4 _v = default(OpenTK.Vector4); - OpenTK.Graphics.ES30.GL.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib2_32780() { - System.Int32 _index = default(System.Int32); - OpenTK.Vector2 _v = default(OpenTK.Vector2); - OpenTK.Graphics.ES30.GL.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib3_32781() { - System.Int32 _index = default(System.Int32); - OpenTK.Vector3 _v = default(OpenTK.Vector3); - OpenTK.Graphics.ES30.GL.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib4_32782() { - System.Int32 _index = default(System.Int32); - OpenTK.Vector4 _v = default(OpenTK.Vector4); - OpenTK.Graphics.ES30.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttribPointer_32783() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.VertexAttribPointerType _type = default(OpenTK.Graphics.ES30.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - System.Int32 _offset = default(System.Int32); - OpenTK.Graphics.ES30.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_offset); -} -static unsafe void Test_VertexAttribPointer_32784() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.VertexAttribPointerType _type = default(OpenTK.Graphics.ES30.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - System.Int32 _offset = default(System.Int32); - OpenTK.Graphics.ES30.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_offset); -} -static unsafe void Test_GetFloat_32785() { - OpenTK.Graphics.ES30.GetPName _pname = default(OpenTK.Graphics.ES30.GetPName); - OpenTK.Vector2 _vector = default(OpenTK.Vector2); - OpenTK.Graphics.ES30.GL.GetFloat(_pname,out _vector); -} -static unsafe void Test_GetFloat_32786() { - OpenTK.Graphics.ES30.GetPName _pname = default(OpenTK.Graphics.ES30.GetPName); - OpenTK.Vector3 _vector = default(OpenTK.Vector3); - OpenTK.Graphics.ES30.GL.GetFloat(_pname,out _vector); -} -static unsafe void Test_GetFloat_32787() { - OpenTK.Graphics.ES30.GetPName _pname = default(OpenTK.Graphics.ES30.GetPName); - OpenTK.Vector4 _vector = default(OpenTK.Vector4); - OpenTK.Graphics.ES30.GL.GetFloat(_pname,out _vector); -} -static unsafe void Test_GetFloat_32788() { - OpenTK.Graphics.ES30.GetPName _pname = default(OpenTK.Graphics.ES30.GetPName); - OpenTK.Matrix4 _matrix = default(OpenTK.Matrix4); - OpenTK.Graphics.ES30.GL.GetFloat(_pname,out _matrix); -} -static unsafe void Test_Viewport_32789() { - System.Drawing.Size _size = default(System.Drawing.Size); - OpenTK.Graphics.ES30.GL.Viewport(_size); -} -static unsafe void Test_Viewport_32790() { - System.Drawing.Point _location = default(System.Drawing.Point); - System.Drawing.Size _size = default(System.Drawing.Size); - OpenTK.Graphics.ES30.GL.Viewport(_location,_size); -} -static unsafe void Test_Viewport_32791() { - System.Drawing.Rectangle _rectangle = default(System.Drawing.Rectangle); - OpenTK.Graphics.ES30.GL.Viewport(_rectangle); -} -static unsafe void Test_ActiveTexture_32792() { - OpenTK.Graphics.ES30.All _texture = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.ActiveTexture(_texture); -} -static unsafe void Test_ActiveTexture_32793() { - OpenTK.Graphics.ES30.TextureUnit _texture = default(OpenTK.Graphics.ES30.TextureUnit); - OpenTK.Graphics.ES30.GL.ActiveTexture(_texture); -} -static unsafe void Test_AttachShader_32794() { - System.Int32 _program = default(System.Int32); - System.Int32 _shader = default(System.Int32); - OpenTK.Graphics.ES30.GL.AttachShader(_program,_shader); -} -static unsafe void Test_AttachShader_32795() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _shader = default(System.UInt32); - OpenTK.Graphics.ES30.GL.AttachShader(_program,_shader); -} -static unsafe void Test_BeginQuery_32796() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES30.GL.BeginQuery(_target,_id); -} -static unsafe void Test_BeginQuery_32797() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES30.GL.BeginQuery(_target,_id); -} -static unsafe void Test_BeginQuery_32798() { - OpenTK.Graphics.ES30.QueryTarget _target = default(OpenTK.Graphics.ES30.QueryTarget); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES30.GL.BeginQuery(_target,_id); -} -static unsafe void Test_BeginQuery_32799() { - OpenTK.Graphics.ES30.QueryTarget _target = default(OpenTK.Graphics.ES30.QueryTarget); - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES30.GL.BeginQuery(_target,_id); -} -static unsafe void Test_BeginTransformFeedback_32800() { - OpenTK.Graphics.ES30.All _primitiveMode = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.BeginTransformFeedback(_primitiveMode); -} -static unsafe void Test_BeginTransformFeedback_32801() { - OpenTK.Graphics.ES30.TransformFeedbackPrimitiveType _primitiveMode = default(OpenTK.Graphics.ES30.TransformFeedbackPrimitiveType); - OpenTK.Graphics.ES30.GL.BeginTransformFeedback(_primitiveMode); -} -static unsafe void Test_BindAttribLocation_32802() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.String _name = default(System.String); - OpenTK.Graphics.ES30.GL.BindAttribLocation(_program,_index,_name); -} -static unsafe void Test_BindAttribLocation_32803() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.String _name = default(System.String); - OpenTK.Graphics.ES30.GL.BindAttribLocation(_program,_index,_name); -} -static unsafe void Test_BindBuffer_32804() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.ES30.GL.BindBuffer(_target,_buffer); -} -static unsafe void Test_BindBuffer_32805() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.ES30.GL.BindBuffer(_target,_buffer); -} -static unsafe void Test_BindBuffer_32806() { - OpenTK.Graphics.ES30.BufferTarget _target = default(OpenTK.Graphics.ES30.BufferTarget); - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.ES30.GL.BindBuffer(_target,_buffer); -} -static unsafe void Test_BindBuffer_32807() { - OpenTK.Graphics.ES30.BufferTarget _target = default(OpenTK.Graphics.ES30.BufferTarget); - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.ES30.GL.BindBuffer(_target,_buffer); -} -static unsafe void Test_BindBufferBase_32808() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _index = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.ES30.GL.BindBufferBase(_target,_index,_buffer); -} -static unsafe void Test_BindBufferBase_32809() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.UInt32 _index = default(System.UInt32); - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.ES30.GL.BindBufferBase(_target,_index,_buffer); -} -static unsafe void Test_BindBufferBase_32810() { - OpenTK.Graphics.ES30.BufferRangeTarget _target = default(OpenTK.Graphics.ES30.BufferRangeTarget); - System.Int32 _index = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.ES30.GL.BindBufferBase(_target,_index,_buffer); -} -static unsafe void Test_BindBufferBase_32811() { - OpenTK.Graphics.ES30.BufferRangeTarget _target = default(OpenTK.Graphics.ES30.BufferRangeTarget); - System.UInt32 _index = default(System.UInt32); - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.ES30.GL.BindBufferBase(_target,_index,_buffer); -} -static unsafe void Test_BindBufferRange_32812() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _index = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.BindBufferRange(_target,_index,_buffer,_offset,_size); -} -static unsafe void Test_BindBufferRange_32813() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.UInt32 _index = default(System.UInt32); - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.BindBufferRange(_target,_index,_buffer,_offset,_size); -} -static unsafe void Test_BindBufferRange_32814() { - OpenTK.Graphics.ES30.BufferRangeTarget _target = default(OpenTK.Graphics.ES30.BufferRangeTarget); - System.Int32 _index = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.BindBufferRange(_target,_index,_buffer,_offset,_size); -} -static unsafe void Test_BindBufferRange_32815() { - OpenTK.Graphics.ES30.BufferRangeTarget _target = default(OpenTK.Graphics.ES30.BufferRangeTarget); - System.UInt32 _index = default(System.UInt32); - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.BindBufferRange(_target,_index,_buffer,_offset,_size); -} -static unsafe void Test_BindFramebuffer_32816() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _framebuffer = default(System.Int32); - OpenTK.Graphics.ES30.GL.BindFramebuffer(_target,_framebuffer); -} -static unsafe void Test_BindFramebuffer_32817() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.UInt32 _framebuffer = default(System.UInt32); - OpenTK.Graphics.ES30.GL.BindFramebuffer(_target,_framebuffer); -} -static unsafe void Test_BindFramebuffer_32818() { - OpenTK.Graphics.ES30.FramebufferTarget _target = default(OpenTK.Graphics.ES30.FramebufferTarget); - System.Int32 _framebuffer = default(System.Int32); - OpenTK.Graphics.ES30.GL.BindFramebuffer(_target,_framebuffer); -} -static unsafe void Test_BindFramebuffer_32819() { - OpenTK.Graphics.ES30.FramebufferTarget _target = default(OpenTK.Graphics.ES30.FramebufferTarget); - System.UInt32 _framebuffer = default(System.UInt32); - OpenTK.Graphics.ES30.GL.BindFramebuffer(_target,_framebuffer); -} -static unsafe void Test_BindRenderbuffer_32820() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _renderbuffer = default(System.Int32); - OpenTK.Graphics.ES30.GL.BindRenderbuffer(_target,_renderbuffer); -} -static unsafe void Test_BindRenderbuffer_32821() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.UInt32 _renderbuffer = default(System.UInt32); - OpenTK.Graphics.ES30.GL.BindRenderbuffer(_target,_renderbuffer); -} -static unsafe void Test_BindRenderbuffer_32822() { - OpenTK.Graphics.ES30.RenderbufferTarget _target = default(OpenTK.Graphics.ES30.RenderbufferTarget); - System.Int32 _renderbuffer = default(System.Int32); - OpenTK.Graphics.ES30.GL.BindRenderbuffer(_target,_renderbuffer); -} -static unsafe void Test_BindRenderbuffer_32823() { - OpenTK.Graphics.ES30.RenderbufferTarget _target = default(OpenTK.Graphics.ES30.RenderbufferTarget); - System.UInt32 _renderbuffer = default(System.UInt32); - OpenTK.Graphics.ES30.GL.BindRenderbuffer(_target,_renderbuffer); -} -static unsafe void Test_BindSampler_32824() { - System.Int32 _unit = default(System.Int32); - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.ES30.GL.BindSampler(_unit,_sampler); -} -static unsafe void Test_BindSampler_32825() { - System.UInt32 _unit = default(System.UInt32); - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES30.GL.BindSampler(_unit,_sampler); -} -static unsafe void Test_BindTexture_32826() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.ES30.GL.BindTexture(_target,_texture); -} -static unsafe void Test_BindTexture_32827() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.ES30.GL.BindTexture(_target,_texture); -} -static unsafe void Test_BindTexture_32828() { - OpenTK.Graphics.ES30.TextureTarget _target = default(OpenTK.Graphics.ES30.TextureTarget); - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.ES30.GL.BindTexture(_target,_texture); -} -static unsafe void Test_BindTexture_32829() { - OpenTK.Graphics.ES30.TextureTarget _target = default(OpenTK.Graphics.ES30.TextureTarget); - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.ES30.GL.BindTexture(_target,_texture); -} -static unsafe void Test_BindTransformFeedback_32830() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES30.GL.BindTransformFeedback(_target,_id); -} -static unsafe void Test_BindTransformFeedback_32831() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES30.GL.BindTransformFeedback(_target,_id); -} -static unsafe void Test_BindTransformFeedback_32832() { - OpenTK.Graphics.ES30.TransformFeedbackTarget _target = default(OpenTK.Graphics.ES30.TransformFeedbackTarget); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES30.GL.BindTransformFeedback(_target,_id); -} -static unsafe void Test_BindTransformFeedback_32833() { - OpenTK.Graphics.ES30.TransformFeedbackTarget _target = default(OpenTK.Graphics.ES30.TransformFeedbackTarget); - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES30.GL.BindTransformFeedback(_target,_id); -} -static unsafe void Test_BindVertexArray_32834() { - System.Int32 _array = default(System.Int32); - OpenTK.Graphics.ES30.GL.BindVertexArray(_array); -} -static unsafe void Test_BindVertexArray_32835() { - System.UInt32 _array = default(System.UInt32); - OpenTK.Graphics.ES30.GL.BindVertexArray(_array); -} -static unsafe void Test_BlendColor_32836() { - System.Single _red = default(System.Single); - System.Single _green = default(System.Single); - System.Single _blue = default(System.Single); - System.Single _alpha = default(System.Single); - OpenTK.Graphics.ES30.GL.BlendColor(_red,_green,_blue,_alpha); -} -static unsafe void Test_BlendEquation_32837() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.BlendEquation(_mode); -} -static unsafe void Test_BlendEquation_32838() { - OpenTK.Graphics.ES30.BlendEquationMode _mode = default(OpenTK.Graphics.ES30.BlendEquationMode); - OpenTK.Graphics.ES30.GL.BlendEquation(_mode); -} -static unsafe void Test_BlendEquationSeparate_32839() { - OpenTK.Graphics.ES30.All _modeRGB = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _modeAlpha = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.BlendEquationSeparate(_modeRGB,_modeAlpha); -} -static unsafe void Test_BlendEquationSeparate_32840() { - OpenTK.Graphics.ES30.BlendEquationMode _modeRGB = default(OpenTK.Graphics.ES30.BlendEquationMode); - OpenTK.Graphics.ES30.BlendEquationMode _modeAlpha = default(OpenTK.Graphics.ES30.BlendEquationMode); - OpenTK.Graphics.ES30.GL.BlendEquationSeparate(_modeRGB,_modeAlpha); -} -static unsafe void Test_BlendFunc_32841() { - OpenTK.Graphics.ES30.All _sfactor = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _dfactor = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.BlendFunc(_sfactor,_dfactor); -} -static unsafe void Test_BlendFunc_32842() { - OpenTK.Graphics.ES30.BlendingFactorSrc _sfactor = default(OpenTK.Graphics.ES30.BlendingFactorSrc); - OpenTK.Graphics.ES30.BlendingFactorDest _dfactor = default(OpenTK.Graphics.ES30.BlendingFactorDest); - OpenTK.Graphics.ES30.GL.BlendFunc(_sfactor,_dfactor); -} -static unsafe void Test_BlendFuncSeparate_32843() { - OpenTK.Graphics.ES30.All _sfactorRGB = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _dfactorRGB = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _sfactorAlpha = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _dfactorAlpha = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.BlendFuncSeparate(_sfactorRGB,_dfactorRGB,_sfactorAlpha,_dfactorAlpha); -} -static unsafe void Test_BlendFuncSeparate_32844() { - OpenTK.Graphics.ES30.BlendingFactorSrc _sfactorRGB = default(OpenTK.Graphics.ES30.BlendingFactorSrc); - OpenTK.Graphics.ES30.BlendingFactorDest _dfactorRGB = default(OpenTK.Graphics.ES30.BlendingFactorDest); - OpenTK.Graphics.ES30.BlendingFactorSrc _sfactorAlpha = default(OpenTK.Graphics.ES30.BlendingFactorSrc); - OpenTK.Graphics.ES30.BlendingFactorDest _dfactorAlpha = default(OpenTK.Graphics.ES30.BlendingFactorDest); - OpenTK.Graphics.ES30.GL.BlendFuncSeparate(_sfactorRGB,_dfactorRGB,_sfactorAlpha,_dfactorAlpha); -} -static unsafe void Test_BlitFramebuffer_32845() { - System.Int32 _srcX0 = default(System.Int32); - System.Int32 _srcY0 = default(System.Int32); - System.Int32 _srcX1 = default(System.Int32); - System.Int32 _srcY1 = default(System.Int32); - System.Int32 _dstX0 = default(System.Int32); - System.Int32 _dstY0 = default(System.Int32); - System.Int32 _dstX1 = default(System.Int32); - System.Int32 _dstY1 = default(System.Int32); - OpenTK.Graphics.ES30.All _mask = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _filter = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.BlitFramebuffer(_srcX0,_srcY0,_srcX1,_srcY1,_dstX0,_dstY0,_dstX1,_dstY1,_mask,_filter); -} -static unsafe void Test_BlitFramebuffer_32846() { - System.Int32 _srcX0 = default(System.Int32); - System.Int32 _srcY0 = default(System.Int32); - System.Int32 _srcX1 = default(System.Int32); - System.Int32 _srcY1 = default(System.Int32); - System.Int32 _dstX0 = default(System.Int32); - System.Int32 _dstY0 = default(System.Int32); - System.Int32 _dstX1 = default(System.Int32); - System.Int32 _dstY1 = default(System.Int32); - OpenTK.Graphics.ES30.ClearBufferMask _mask = default(OpenTK.Graphics.ES30.ClearBufferMask); - OpenTK.Graphics.ES30.BlitFramebufferFilter _filter = default(OpenTK.Graphics.ES30.BlitFramebufferFilter); - OpenTK.Graphics.ES30.GL.BlitFramebuffer(_srcX0,_srcY0,_srcX1,_srcY1,_dstX0,_dstY0,_dstX1,_dstY1,_mask,_filter); -} -static unsafe void Test_BufferData_32847() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.IntPtr _size = default(System.IntPtr); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES30.All _usage = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.BufferData(_target,_size,_data,_usage); -} -static unsafe void Test_BufferData_32848() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.IntPtr _size = default(System.IntPtr); - int[] _data = default(int[]); - OpenTK.Graphics.ES30.All _usage = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.BufferData(_target,_size,_data,_usage); -} -static unsafe void Test_BufferData_32849() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.IntPtr _size = default(System.IntPtr); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES30.All _usage = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.BufferData(_target,_size,_data,_usage); -} -static unsafe void Test_BufferData_32850() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.IntPtr _size = default(System.IntPtr); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES30.All _usage = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.BufferData(_target,_size,_data,_usage); -} -static unsafe void Test_BufferData_32851() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.IntPtr _size = default(System.IntPtr); - int _data = default(int); - OpenTK.Graphics.ES30.All _usage = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.BufferData(_target,_size,ref _data,_usage); -} -static unsafe void Test_BufferData_32852() { - OpenTK.Graphics.ES30.BufferTarget _target = default(OpenTK.Graphics.ES30.BufferTarget); - System.IntPtr _size = default(System.IntPtr); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES30.BufferUsageHint _usage = default(OpenTK.Graphics.ES30.BufferUsageHint); - OpenTK.Graphics.ES30.GL.BufferData(_target,_size,_data,_usage); -} -static unsafe void Test_BufferData_32853() { - OpenTK.Graphics.ES30.BufferTarget _target = default(OpenTK.Graphics.ES30.BufferTarget); - System.IntPtr _size = default(System.IntPtr); - int[] _data = default(int[]); - OpenTK.Graphics.ES30.BufferUsageHint _usage = default(OpenTK.Graphics.ES30.BufferUsageHint); - OpenTK.Graphics.ES30.GL.BufferData(_target,_size,_data,_usage); -} -static unsafe void Test_BufferData_32854() { - OpenTK.Graphics.ES30.BufferTarget _target = default(OpenTK.Graphics.ES30.BufferTarget); - System.IntPtr _size = default(System.IntPtr); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES30.BufferUsageHint _usage = default(OpenTK.Graphics.ES30.BufferUsageHint); - OpenTK.Graphics.ES30.GL.BufferData(_target,_size,_data,_usage); -} -static unsafe void Test_BufferData_32855() { - OpenTK.Graphics.ES30.BufferTarget _target = default(OpenTK.Graphics.ES30.BufferTarget); - System.IntPtr _size = default(System.IntPtr); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES30.BufferUsageHint _usage = default(OpenTK.Graphics.ES30.BufferUsageHint); - OpenTK.Graphics.ES30.GL.BufferData(_target,_size,_data,_usage); -} -static unsafe void Test_BufferData_32856() { - OpenTK.Graphics.ES30.BufferTarget _target = default(OpenTK.Graphics.ES30.BufferTarget); - System.IntPtr _size = default(System.IntPtr); - int _data = default(int); - OpenTK.Graphics.ES30.BufferUsageHint _usage = default(OpenTK.Graphics.ES30.BufferUsageHint); - OpenTK.Graphics.ES30.GL.BufferData(_target,_size,ref _data,_usage); -} -static unsafe void Test_BufferSubData_32857() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.BufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_BufferSubData_32858() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[] _data = default(int[]); - OpenTK.Graphics.ES30.GL.BufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_BufferSubData_32859() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES30.GL.BufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_BufferSubData_32860() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES30.GL.BufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_BufferSubData_32861() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int _data = default(int); - OpenTK.Graphics.ES30.GL.BufferSubData(_target,_offset,_size,ref _data); -} -static unsafe void Test_BufferSubData_32862() { - OpenTK.Graphics.ES30.BufferTarget _target = default(OpenTK.Graphics.ES30.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.BufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_BufferSubData_32863() { - OpenTK.Graphics.ES30.BufferTarget _target = default(OpenTK.Graphics.ES30.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[] _data = default(int[]); - OpenTK.Graphics.ES30.GL.BufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_BufferSubData_32864() { - OpenTK.Graphics.ES30.BufferTarget _target = default(OpenTK.Graphics.ES30.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES30.GL.BufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_BufferSubData_32865() { - OpenTK.Graphics.ES30.BufferTarget _target = default(OpenTK.Graphics.ES30.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES30.GL.BufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_BufferSubData_32866() { - OpenTK.Graphics.ES30.BufferTarget _target = default(OpenTK.Graphics.ES30.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int _data = default(int); - OpenTK.Graphics.ES30.GL.BufferSubData(_target,_offset,_size,ref _data); -} -static unsafe void Test_CheckFramebufferStatus_32867() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.FramebufferErrorCode r = OpenTK.Graphics.ES30.GL.CheckFramebufferStatus(_target); -} -static unsafe void Test_CheckFramebufferStatus_32868() { - OpenTK.Graphics.ES30.FramebufferTarget _target = default(OpenTK.Graphics.ES30.FramebufferTarget); - OpenTK.Graphics.ES30.FramebufferErrorCode r = OpenTK.Graphics.ES30.GL.CheckFramebufferStatus(_target); -} -static unsafe void Test_Clear_32869() { - OpenTK.Graphics.ES30.All _mask = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.Clear(_mask); -} -static unsafe void Test_Clear_32870() { - OpenTK.Graphics.ES30.ClearBufferMask _mask = default(OpenTK.Graphics.ES30.ClearBufferMask); - OpenTK.Graphics.ES30.GL.Clear(_mask); -} -static unsafe void Test_ClearBuffer_32871() { - OpenTK.Graphics.ES30.All _buffer = default(OpenTK.Graphics.ES30.All); - System.Int32 _drawbuffer = default(System.Int32); - System.Single _depth = default(System.Single); - System.Int32 _stencil = default(System.Int32); - OpenTK.Graphics.ES30.GL.ClearBuffer(_buffer,_drawbuffer,_depth,_stencil); -} -static unsafe void Test_ClearBuffer_32872() { - OpenTK.Graphics.ES30.ClearBufferCombined _buffer = default(OpenTK.Graphics.ES30.ClearBufferCombined); - System.Int32 _drawbuffer = default(System.Int32); - System.Single _depth = default(System.Single); - System.Int32 _stencil = default(System.Int32); - OpenTK.Graphics.ES30.GL.ClearBuffer(_buffer,_drawbuffer,_depth,_stencil); -} -static unsafe void Test_ClearBuffer_32873() { - OpenTK.Graphics.ES30.All _buffer = default(OpenTK.Graphics.ES30.All); - System.Int32 _drawbuffer = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.ClearBuffer(_buffer,_drawbuffer,_value); -} -static unsafe void Test_ClearBuffer_32874() { - OpenTK.Graphics.ES30.All _buffer = default(OpenTK.Graphics.ES30.All); - System.Int32 _drawbuffer = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.ClearBuffer(_buffer,_drawbuffer,ref _value); -} -static unsafe void Test_ClearBuffer_32875() { - OpenTK.Graphics.ES30.All _buffer = default(OpenTK.Graphics.ES30.All); - System.Int32 _drawbuffer = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.ClearBuffer(_buffer,_drawbuffer,_value); -} -static unsafe void Test_ClearBuffer_32876() { - OpenTK.Graphics.ES30.ClearBuffer _buffer = default(OpenTK.Graphics.ES30.ClearBuffer); - System.Int32 _drawbuffer = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.ClearBuffer(_buffer,_drawbuffer,_value); -} -static unsafe void Test_ClearBuffer_32877() { - OpenTK.Graphics.ES30.ClearBuffer _buffer = default(OpenTK.Graphics.ES30.ClearBuffer); - System.Int32 _drawbuffer = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.ClearBuffer(_buffer,_drawbuffer,ref _value); -} -static unsafe void Test_ClearBuffer_32878() { - OpenTK.Graphics.ES30.ClearBuffer _buffer = default(OpenTK.Graphics.ES30.ClearBuffer); - System.Int32 _drawbuffer = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.ClearBuffer(_buffer,_drawbuffer,_value); -} -static unsafe void Test_ClearBuffer_32879() { - OpenTK.Graphics.ES30.All _buffer = default(OpenTK.Graphics.ES30.All); - System.Int32 _drawbuffer = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.ClearBuffer(_buffer,_drawbuffer,_value); -} -static unsafe void Test_ClearBuffer_32880() { - OpenTK.Graphics.ES30.All _buffer = default(OpenTK.Graphics.ES30.All); - System.Int32 _drawbuffer = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.ES30.GL.ClearBuffer(_buffer,_drawbuffer,ref _value); -} -static unsafe void Test_ClearBuffer_32881() { - OpenTK.Graphics.ES30.All _buffer = default(OpenTK.Graphics.ES30.All); - System.Int32 _drawbuffer = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.ES30.GL.ClearBuffer(_buffer,_drawbuffer,_value); -} -static unsafe void Test_ClearBuffer_32882() { - OpenTK.Graphics.ES30.ClearBuffer _buffer = default(OpenTK.Graphics.ES30.ClearBuffer); - System.Int32 _drawbuffer = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.ClearBuffer(_buffer,_drawbuffer,_value); -} -static unsafe void Test_ClearBuffer_32883() { - OpenTK.Graphics.ES30.ClearBuffer _buffer = default(OpenTK.Graphics.ES30.ClearBuffer); - System.Int32 _drawbuffer = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.ES30.GL.ClearBuffer(_buffer,_drawbuffer,ref _value); -} -static unsafe void Test_ClearBuffer_32884() { - OpenTK.Graphics.ES30.ClearBuffer _buffer = default(OpenTK.Graphics.ES30.ClearBuffer); - System.Int32 _drawbuffer = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.ES30.GL.ClearBuffer(_buffer,_drawbuffer,_value); -} -static unsafe void Test_ClearBuffer_32885() { - OpenTK.Graphics.ES30.All _buffer = default(OpenTK.Graphics.ES30.All); - System.Int32 _drawbuffer = default(System.Int32); - System.UInt32[] _value = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.ClearBuffer(_buffer,_drawbuffer,_value); -} -static unsafe void Test_ClearBuffer_32886() { - OpenTK.Graphics.ES30.All _buffer = default(OpenTK.Graphics.ES30.All); - System.Int32 _drawbuffer = default(System.Int32); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.ES30.GL.ClearBuffer(_buffer,_drawbuffer,ref _value); -} -static unsafe void Test_ClearBuffer_32887() { - OpenTK.Graphics.ES30.All _buffer = default(OpenTK.Graphics.ES30.All); - System.Int32 _drawbuffer = default(System.Int32); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.ClearBuffer(_buffer,_drawbuffer,_value); -} -static unsafe void Test_ClearBuffer_32888() { - OpenTK.Graphics.ES30.ClearBuffer _buffer = default(OpenTK.Graphics.ES30.ClearBuffer); - System.Int32 _drawbuffer = default(System.Int32); - System.UInt32[] _value = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.ClearBuffer(_buffer,_drawbuffer,_value); -} -static unsafe void Test_ClearBuffer_32889() { - OpenTK.Graphics.ES30.ClearBuffer _buffer = default(OpenTK.Graphics.ES30.ClearBuffer); - System.Int32 _drawbuffer = default(System.Int32); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.ES30.GL.ClearBuffer(_buffer,_drawbuffer,ref _value); -} -static unsafe void Test_ClearBuffer_32890() { - OpenTK.Graphics.ES30.ClearBuffer _buffer = default(OpenTK.Graphics.ES30.ClearBuffer); - System.Int32 _drawbuffer = default(System.Int32); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.ClearBuffer(_buffer,_drawbuffer,_value); -} -static unsafe void Test_ClearColor_32891() { - System.Single _red = default(System.Single); - System.Single _green = default(System.Single); - System.Single _blue = default(System.Single); - System.Single _alpha = default(System.Single); - OpenTK.Graphics.ES30.GL.ClearColor(_red,_green,_blue,_alpha); -} -static unsafe void Test_ClearDepth_32892() { - System.Single _d = default(System.Single); - OpenTK.Graphics.ES30.GL.ClearDepth(_d); -} -static unsafe void Test_ClearStencil_32893() { - System.Int32 _s = default(System.Int32); - OpenTK.Graphics.ES30.GL.ClearStencil(_s); -} -static unsafe void Test_ClientWaitSync_32894() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES30.All _flags = default(OpenTK.Graphics.ES30.All); - System.Int64 _timeout = default(System.Int64); - OpenTK.Graphics.ES30.WaitSyncStatus r = OpenTK.Graphics.ES30.GL.ClientWaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_ClientWaitSync_32895() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES30.All _flags = default(OpenTK.Graphics.ES30.All); - System.UInt64 _timeout = default(System.UInt64); - OpenTK.Graphics.ES30.WaitSyncStatus r = OpenTK.Graphics.ES30.GL.ClientWaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_ClientWaitSync_32896() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES30.ClientWaitSyncFlags _flags = default(OpenTK.Graphics.ES30.ClientWaitSyncFlags); - System.Int64 _timeout = default(System.Int64); - OpenTK.Graphics.ES30.WaitSyncStatus r = OpenTK.Graphics.ES30.GL.ClientWaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_ClientWaitSync_32897() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES30.ClientWaitSyncFlags _flags = default(OpenTK.Graphics.ES30.ClientWaitSyncFlags); - System.UInt64 _timeout = default(System.UInt64); - OpenTK.Graphics.ES30.WaitSyncStatus r = OpenTK.Graphics.ES30.GL.ClientWaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_ColorMask_32898() { - System.Boolean _red = default(System.Boolean); - System.Boolean _green = default(System.Boolean); - System.Boolean _blue = default(System.Boolean); - System.Boolean _alpha = default(System.Boolean); - OpenTK.Graphics.ES30.GL.ColorMask(_red,_green,_blue,_alpha); -} -static unsafe void Test_CompileShader_32899() { - System.Int32 _shader = default(System.Int32); - OpenTK.Graphics.ES30.GL.CompileShader(_shader); -} -static unsafe void Test_CompileShader_32900() { - System.UInt32 _shader = default(System.UInt32); - OpenTK.Graphics.ES30.GL.CompileShader(_shader); -} -static unsafe void Test_CompressedTexImage2D_32901() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_32902() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.ES30.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_32903() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES30.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_32904() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES30.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_32905() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.ES30.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,ref _data); -} -static unsafe void Test_CompressedTexImage2D_32906() { - OpenTK.Graphics.ES30.TextureTarget2d _target = default(OpenTK.Graphics.ES30.TextureTarget2d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.CompressedInternalFormat _internalformat = default(OpenTK.Graphics.ES30.CompressedInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_32907() { - OpenTK.Graphics.ES30.TextureTarget2d _target = default(OpenTK.Graphics.ES30.TextureTarget2d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.CompressedInternalFormat _internalformat = default(OpenTK.Graphics.ES30.CompressedInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.ES30.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_32908() { - OpenTK.Graphics.ES30.TextureTarget2d _target = default(OpenTK.Graphics.ES30.TextureTarget2d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.CompressedInternalFormat _internalformat = default(OpenTK.Graphics.ES30.CompressedInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES30.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_32909() { - OpenTK.Graphics.ES30.TextureTarget2d _target = default(OpenTK.Graphics.ES30.TextureTarget2d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.CompressedInternalFormat _internalformat = default(OpenTK.Graphics.ES30.CompressedInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES30.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_32910() { - OpenTK.Graphics.ES30.TextureTarget2d _target = default(OpenTK.Graphics.ES30.TextureTarget2d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.CompressedInternalFormat _internalformat = default(OpenTK.Graphics.ES30.CompressedInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.ES30.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,ref _data); -} -static unsafe void Test_CompressedTexImage3D_32911() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage3D_32912() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.ES30.GL.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage3D_32913() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES30.GL.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage3D_32914() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES30.GL.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage3D_32915() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.ES30.GL.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,ref _data); -} -static unsafe void Test_CompressedTexImage3D_32916() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.CompressedInternalFormat _internalformat = default(OpenTK.Graphics.ES30.CompressedInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage3D_32917() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.CompressedInternalFormat _internalformat = default(OpenTK.Graphics.ES30.CompressedInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.ES30.GL.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage3D_32918() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.CompressedInternalFormat _internalformat = default(OpenTK.Graphics.ES30.CompressedInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES30.GL.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage3D_32919() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.CompressedInternalFormat _internalformat = default(OpenTK.Graphics.ES30.CompressedInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES30.GL.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage3D_32920() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.CompressedInternalFormat _internalformat = default(OpenTK.Graphics.ES30.CompressedInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.ES30.GL.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,ref _data); -} -static unsafe void Test_CompressedTexSubImage2D_32921() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_32922() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.ES30.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_32923() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES30.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_32924() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES30.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_32925() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.ES30.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,ref _data); -} -static unsafe void Test_CompressedTexSubImage2D_32926() { - OpenTK.Graphics.ES30.TextureTarget2d _target = default(OpenTK.Graphics.ES30.TextureTarget2d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.PixelFormat _format = default(OpenTK.Graphics.ES30.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_32927() { - OpenTK.Graphics.ES30.TextureTarget2d _target = default(OpenTK.Graphics.ES30.TextureTarget2d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.PixelFormat _format = default(OpenTK.Graphics.ES30.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.ES30.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_32928() { - OpenTK.Graphics.ES30.TextureTarget2d _target = default(OpenTK.Graphics.ES30.TextureTarget2d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.PixelFormat _format = default(OpenTK.Graphics.ES30.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES30.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_32929() { - OpenTK.Graphics.ES30.TextureTarget2d _target = default(OpenTK.Graphics.ES30.TextureTarget2d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.PixelFormat _format = default(OpenTK.Graphics.ES30.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES30.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_32930() { - OpenTK.Graphics.ES30.TextureTarget2d _target = default(OpenTK.Graphics.ES30.TextureTarget2d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.PixelFormat _format = default(OpenTK.Graphics.ES30.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.ES30.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,ref _data); -} -static unsafe void Test_CompressedTexSubImage3D_32931() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage3D_32932() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.ES30.GL.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage3D_32933() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES30.GL.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage3D_32934() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES30.GL.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage3D_32935() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.ES30.GL.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,ref _data); -} -static unsafe void Test_CompressedTexSubImage3D_32936() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.PixelFormat _format = default(OpenTK.Graphics.ES30.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage3D_32937() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.PixelFormat _format = default(OpenTK.Graphics.ES30.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.ES30.GL.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage3D_32938() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.PixelFormat _format = default(OpenTK.Graphics.ES30.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES30.GL.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage3D_32939() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.PixelFormat _format = default(OpenTK.Graphics.ES30.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES30.GL.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage3D_32940() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.PixelFormat _format = default(OpenTK.Graphics.ES30.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.ES30.GL.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,ref _data); -} -static unsafe void Test_CopyBufferSubData_32941() { - OpenTK.Graphics.ES30.All _readTarget = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _writeTarget = default(OpenTK.Graphics.ES30.All); - System.IntPtr _readOffset = default(System.IntPtr); - System.IntPtr _writeOffset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.CopyBufferSubData(_readTarget,_writeTarget,_readOffset,_writeOffset,_size); -} -static unsafe void Test_CopyBufferSubData_32942() { - OpenTK.Graphics.ES30.BufferTarget _readTarget = default(OpenTK.Graphics.ES30.BufferTarget); - OpenTK.Graphics.ES30.BufferTarget _writeTarget = default(OpenTK.Graphics.ES30.BufferTarget); - System.IntPtr _readOffset = default(System.IntPtr); - System.IntPtr _writeOffset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.CopyBufferSubData(_readTarget,_writeTarget,_readOffset,_writeOffset,_size); -} -static unsafe void Test_CopyTexImage2D_32943() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES30.GL.CopyTexImage2D(_target,_level,_internalformat,_x,_y,_width,_height,_border); -} -static unsafe void Test_CopyTexImage2D_32944() { - OpenTK.Graphics.ES30.TextureTarget2d _target = default(OpenTK.Graphics.ES30.TextureTarget2d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.TextureCopyComponentCount _internalformat = default(OpenTK.Graphics.ES30.TextureCopyComponentCount); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES30.GL.CopyTexImage2D(_target,_level,_internalformat,_x,_y,_width,_height,_border); -} -static unsafe void Test_CopyTexSubImage2D_32945() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.GL.CopyTexSubImage2D(_target,_level,_xoffset,_yoffset,_x,_y,_width,_height); -} -static unsafe void Test_CopyTexSubImage2D_32946() { - OpenTK.Graphics.ES30.TextureTarget2d _target = default(OpenTK.Graphics.ES30.TextureTarget2d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.GL.CopyTexSubImage2D(_target,_level,_xoffset,_yoffset,_x,_y,_width,_height); -} -static unsafe void Test_CopyTexSubImage3D_32947() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.GL.CopyTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_x,_y,_width,_height); -} -static unsafe void Test_CopyTexSubImage3D_32948() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.GL.CopyTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_x,_y,_width,_height); -} -static unsafe void Test_CreateProgram_32949() { - System.Int32 r = OpenTK.Graphics.ES30.GL.CreateProgram(); -} -static unsafe void Test_CreateShader_32950() { - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.Int32 r = OpenTK.Graphics.ES30.GL.CreateShader(_type); -} -static unsafe void Test_CreateShader_32951() { - OpenTK.Graphics.ES30.ShaderType _type = default(OpenTK.Graphics.ES30.ShaderType); - System.Int32 r = OpenTK.Graphics.ES30.GL.CreateShader(_type); -} -static unsafe void Test_CullFace_32952() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.CullFace(_mode); -} -static unsafe void Test_CullFace_32953() { - OpenTK.Graphics.ES30.CullFaceMode _mode = default(OpenTK.Graphics.ES30.CullFaceMode); - OpenTK.Graphics.ES30.GL.CullFace(_mode); -} -static unsafe void Test_DebugMessageCallback_32954() { - OpenTK.Graphics.ES30.DebugProc _callback = default(OpenTK.Graphics.ES30.DebugProc); - System.IntPtr _userParam = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_32955() { - OpenTK.Graphics.ES30.DebugProc _callback = default(OpenTK.Graphics.ES30.DebugProc); - int[] _userParam = default(int[]); - OpenTK.Graphics.ES30.GL.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_32956() { - OpenTK.Graphics.ES30.DebugProc _callback = default(OpenTK.Graphics.ES30.DebugProc); - int[,] _userParam = default(int[,]); - OpenTK.Graphics.ES30.GL.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_32957() { - OpenTK.Graphics.ES30.DebugProc _callback = default(OpenTK.Graphics.ES30.DebugProc); - int[,,] _userParam = default(int[,,]); - OpenTK.Graphics.ES30.GL.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_32958() { - OpenTK.Graphics.ES30.DebugProc _callback = default(OpenTK.Graphics.ES30.DebugProc); - int _userParam = default(int); - OpenTK.Graphics.ES30.GL.DebugMessageCallback(_callback,ref _userParam); -} -static unsafe void Test_DebugMessageControl_32959() { - OpenTK.Graphics.ES30.All _source = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _severity = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - System.Int32[] _ids = default(System.Int32[]); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES30.GL.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_32960() { - OpenTK.Graphics.ES30.All _source = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _severity = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - System.Int32 _ids = default(System.Int32); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES30.GL.DebugMessageControl(_source,_type,_severity,_count,ref _ids,_enabled); -} -static unsafe void Test_DebugMessageControl_32961() { - OpenTK.Graphics.ES30.All _source = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _severity = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - System.Int32* _ids = default(System.Int32*); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES30.GL.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_32962() { - OpenTK.Graphics.ES30.All _source = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _severity = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - System.UInt32[] _ids = default(System.UInt32[]); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES30.GL.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_32963() { - OpenTK.Graphics.ES30.All _source = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _severity = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - System.UInt32 _ids = default(System.UInt32); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES30.GL.DebugMessageControl(_source,_type,_severity,_count,ref _ids,_enabled); -} -static unsafe void Test_DebugMessageControl_32964() { - OpenTK.Graphics.ES30.All _source = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _severity = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - System.UInt32* _ids = default(System.UInt32*); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES30.GL.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_32965() { - OpenTK.Graphics.ES30.DebugSourceControl _source = default(OpenTK.Graphics.ES30.DebugSourceControl); - OpenTK.Graphics.ES30.DebugTypeControl _type = default(OpenTK.Graphics.ES30.DebugTypeControl); - OpenTK.Graphics.ES30.DebugSeverityControl _severity = default(OpenTK.Graphics.ES30.DebugSeverityControl); - System.Int32 _count = default(System.Int32); - System.Int32[] _ids = default(System.Int32[]); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES30.GL.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_32966() { - OpenTK.Graphics.ES30.DebugSourceControl _source = default(OpenTK.Graphics.ES30.DebugSourceControl); - OpenTK.Graphics.ES30.DebugTypeControl _type = default(OpenTK.Graphics.ES30.DebugTypeControl); - OpenTK.Graphics.ES30.DebugSeverityControl _severity = default(OpenTK.Graphics.ES30.DebugSeverityControl); - System.Int32 _count = default(System.Int32); - System.Int32 _ids = default(System.Int32); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES30.GL.DebugMessageControl(_source,_type,_severity,_count,ref _ids,_enabled); -} -static unsafe void Test_DebugMessageControl_32967() { - OpenTK.Graphics.ES30.DebugSourceControl _source = default(OpenTK.Graphics.ES30.DebugSourceControl); - OpenTK.Graphics.ES30.DebugTypeControl _type = default(OpenTK.Graphics.ES30.DebugTypeControl); - OpenTK.Graphics.ES30.DebugSeverityControl _severity = default(OpenTK.Graphics.ES30.DebugSeverityControl); - System.Int32 _count = default(System.Int32); - System.Int32* _ids = default(System.Int32*); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES30.GL.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_32968() { - OpenTK.Graphics.ES30.DebugSourceControl _source = default(OpenTK.Graphics.ES30.DebugSourceControl); - OpenTK.Graphics.ES30.DebugTypeControl _type = default(OpenTK.Graphics.ES30.DebugTypeControl); - OpenTK.Graphics.ES30.DebugSeverityControl _severity = default(OpenTK.Graphics.ES30.DebugSeverityControl); - System.Int32 _count = default(System.Int32); - System.UInt32[] _ids = default(System.UInt32[]); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES30.GL.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_32969() { - OpenTK.Graphics.ES30.DebugSourceControl _source = default(OpenTK.Graphics.ES30.DebugSourceControl); - OpenTK.Graphics.ES30.DebugTypeControl _type = default(OpenTK.Graphics.ES30.DebugTypeControl); - OpenTK.Graphics.ES30.DebugSeverityControl _severity = default(OpenTK.Graphics.ES30.DebugSeverityControl); - System.Int32 _count = default(System.Int32); - System.UInt32 _ids = default(System.UInt32); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES30.GL.DebugMessageControl(_source,_type,_severity,_count,ref _ids,_enabled); -} -static unsafe void Test_DebugMessageControl_32970() { - OpenTK.Graphics.ES30.DebugSourceControl _source = default(OpenTK.Graphics.ES30.DebugSourceControl); - OpenTK.Graphics.ES30.DebugTypeControl _type = default(OpenTK.Graphics.ES30.DebugTypeControl); - OpenTK.Graphics.ES30.DebugSeverityControl _severity = default(OpenTK.Graphics.ES30.DebugSeverityControl); - System.Int32 _count = default(System.Int32); - System.UInt32* _ids = default(System.UInt32*); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES30.GL.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageInsert_32971() { - OpenTK.Graphics.ES30.All _source = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES30.All _severity = default(OpenTK.Graphics.ES30.All); - System.Int32 _length = default(System.Int32); - System.String _buf = default(System.String); - OpenTK.Graphics.ES30.GL.DebugMessageInsert(_source,_type,_id,_severity,_length,_buf); -} -static unsafe void Test_DebugMessageInsert_32972() { - OpenTK.Graphics.ES30.All _source = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES30.All _severity = default(OpenTK.Graphics.ES30.All); - System.Int32 _length = default(System.Int32); - System.String _buf = default(System.String); - OpenTK.Graphics.ES30.GL.DebugMessageInsert(_source,_type,_id,_severity,_length,_buf); -} -static unsafe void Test_DebugMessageInsert_32973() { - OpenTK.Graphics.ES30.DebugSourceExternal _source = default(OpenTK.Graphics.ES30.DebugSourceExternal); - OpenTK.Graphics.ES30.DebugType _type = default(OpenTK.Graphics.ES30.DebugType); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES30.DebugSeverity _severity = default(OpenTK.Graphics.ES30.DebugSeverity); - System.Int32 _length = default(System.Int32); - System.String _buf = default(System.String); - OpenTK.Graphics.ES30.GL.DebugMessageInsert(_source,_type,_id,_severity,_length,_buf); -} -static unsafe void Test_DebugMessageInsert_32974() { - OpenTK.Graphics.ES30.DebugSourceExternal _source = default(OpenTK.Graphics.ES30.DebugSourceExternal); - OpenTK.Graphics.ES30.DebugType _type = default(OpenTK.Graphics.ES30.DebugType); - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES30.DebugSeverity _severity = default(OpenTK.Graphics.ES30.DebugSeverity); - System.Int32 _length = default(System.Int32); - System.String _buf = default(System.String); - OpenTK.Graphics.ES30.GL.DebugMessageInsert(_source,_type,_id,_severity,_length,_buf); -} -static unsafe void Test_DeleteBuffer_32975() { - System.Int32 _buffers = default(System.Int32); - OpenTK.Graphics.ES30.GL.DeleteBuffer(_buffers); -} -static unsafe void Test_DeleteBuffer_32976() { - System.UInt32 _buffers = default(System.UInt32); - OpenTK.Graphics.ES30.GL.DeleteBuffer(_buffers); -} -static unsafe void Test_DeleteBuffers_32977() { - System.Int32 _n = default(System.Int32); - System.Int32[] _buffers = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.DeleteBuffers(_n,_buffers); -} -static unsafe void Test_DeleteBuffers_32978() { - System.Int32 _n = default(System.Int32); - System.Int32 _buffers = default(System.Int32); - OpenTK.Graphics.ES30.GL.DeleteBuffers(_n,ref _buffers); -} -static unsafe void Test_DeleteBuffers_32979() { - System.Int32 _n = default(System.Int32); - System.Int32* _buffers = default(System.Int32*); - OpenTK.Graphics.ES30.GL.DeleteBuffers(_n,_buffers); -} -static unsafe void Test_DeleteBuffers_32980() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _buffers = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.DeleteBuffers(_n,_buffers); -} -static unsafe void Test_DeleteBuffers_32981() { - System.Int32 _n = default(System.Int32); - System.UInt32 _buffers = default(System.UInt32); - OpenTK.Graphics.ES30.GL.DeleteBuffers(_n,ref _buffers); -} -static unsafe void Test_DeleteBuffers_32982() { - System.Int32 _n = default(System.Int32); - System.UInt32* _buffers = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.DeleteBuffers(_n,_buffers); -} -static unsafe void Test_DeleteFramebuffer_32983() { - System.Int32 _framebuffers = default(System.Int32); - OpenTK.Graphics.ES30.GL.DeleteFramebuffer(_framebuffers); -} -static unsafe void Test_DeleteFramebuffer_32984() { - System.UInt32 _framebuffers = default(System.UInt32); - OpenTK.Graphics.ES30.GL.DeleteFramebuffer(_framebuffers); -} -static unsafe void Test_DeleteFramebuffers_32985() { - System.Int32 _n = default(System.Int32); - System.Int32[] _framebuffers = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.DeleteFramebuffers(_n,_framebuffers); -} -static unsafe void Test_DeleteFramebuffers_32986() { - System.Int32 _n = default(System.Int32); - System.Int32 _framebuffers = default(System.Int32); - OpenTK.Graphics.ES30.GL.DeleteFramebuffers(_n,ref _framebuffers); -} -static unsafe void Test_DeleteFramebuffers_32987() { - System.Int32 _n = default(System.Int32); - System.Int32* _framebuffers = default(System.Int32*); - OpenTK.Graphics.ES30.GL.DeleteFramebuffers(_n,_framebuffers); -} -static unsafe void Test_DeleteFramebuffers_32988() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _framebuffers = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.DeleteFramebuffers(_n,_framebuffers); -} -static unsafe void Test_DeleteFramebuffers_32989() { - System.Int32 _n = default(System.Int32); - System.UInt32 _framebuffers = default(System.UInt32); - OpenTK.Graphics.ES30.GL.DeleteFramebuffers(_n,ref _framebuffers); -} -static unsafe void Test_DeleteFramebuffers_32990() { - System.Int32 _n = default(System.Int32); - System.UInt32* _framebuffers = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.DeleteFramebuffers(_n,_framebuffers); -} -static unsafe void Test_DeleteProgram_32991() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES30.GL.DeleteProgram(_program); -} -static unsafe void Test_DeleteProgram_32992() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES30.GL.DeleteProgram(_program); -} -static unsafe void Test_DeleteQuery_32993() { - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.ES30.GL.DeleteQuery(_ids); -} -static unsafe void Test_DeleteQuery_32994() { - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.ES30.GL.DeleteQuery(_ids); -} -static unsafe void Test_DeleteQueries_32995() { - System.Int32 _n = default(System.Int32); - System.Int32[] _ids = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.DeleteQueries(_n,_ids); -} -static unsafe void Test_DeleteQueries_32996() { - System.Int32 _n = default(System.Int32); - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.ES30.GL.DeleteQueries(_n,ref _ids); -} -static unsafe void Test_DeleteQueries_32997() { - System.Int32 _n = default(System.Int32); - System.Int32* _ids = default(System.Int32*); - OpenTK.Graphics.ES30.GL.DeleteQueries(_n,_ids); -} -static unsafe void Test_DeleteQueries_32998() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _ids = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.DeleteQueries(_n,_ids); -} -static unsafe void Test_DeleteQueries_32999() { - System.Int32 _n = default(System.Int32); - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.ES30.GL.DeleteQueries(_n,ref _ids); -} -static unsafe void Test_DeleteQueries_33000() { - System.Int32 _n = default(System.Int32); - System.UInt32* _ids = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.DeleteQueries(_n,_ids); -} -static unsafe void Test_DeleteRenderbuffer_33001() { - System.Int32 _renderbuffers = default(System.Int32); - OpenTK.Graphics.ES30.GL.DeleteRenderbuffer(_renderbuffers); -} -static unsafe void Test_DeleteRenderbuffer_33002() { - System.UInt32 _renderbuffers = default(System.UInt32); - OpenTK.Graphics.ES30.GL.DeleteRenderbuffer(_renderbuffers); -} -static unsafe void Test_DeleteRenderbuffers_33003() { - System.Int32 _n = default(System.Int32); - System.Int32[] _renderbuffers = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.DeleteRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_DeleteRenderbuffers_33004() { - System.Int32 _n = default(System.Int32); - System.Int32 _renderbuffers = default(System.Int32); - OpenTK.Graphics.ES30.GL.DeleteRenderbuffers(_n,ref _renderbuffers); -} -static unsafe void Test_DeleteRenderbuffers_33005() { - System.Int32 _n = default(System.Int32); - System.Int32* _renderbuffers = default(System.Int32*); - OpenTK.Graphics.ES30.GL.DeleteRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_DeleteRenderbuffers_33006() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _renderbuffers = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.DeleteRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_DeleteRenderbuffers_33007() { - System.Int32 _n = default(System.Int32); - System.UInt32 _renderbuffers = default(System.UInt32); - OpenTK.Graphics.ES30.GL.DeleteRenderbuffers(_n,ref _renderbuffers); -} -static unsafe void Test_DeleteRenderbuffers_33008() { - System.Int32 _n = default(System.Int32); - System.UInt32* _renderbuffers = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.DeleteRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_DeleteSampler_33009() { - System.Int32 _samplers = default(System.Int32); - OpenTK.Graphics.ES30.GL.DeleteSampler(_samplers); -} -static unsafe void Test_DeleteSampler_33010() { - System.UInt32 _samplers = default(System.UInt32); - OpenTK.Graphics.ES30.GL.DeleteSampler(_samplers); -} -static unsafe void Test_DeleteSamplers_33011() { - System.Int32 _count = default(System.Int32); - System.Int32[] _samplers = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.DeleteSamplers(_count,_samplers); -} -static unsafe void Test_DeleteSamplers_33012() { - System.Int32 _count = default(System.Int32); - System.Int32 _samplers = default(System.Int32); - OpenTK.Graphics.ES30.GL.DeleteSamplers(_count,ref _samplers); -} -static unsafe void Test_DeleteSamplers_33013() { - System.Int32 _count = default(System.Int32); - System.Int32* _samplers = default(System.Int32*); - OpenTK.Graphics.ES30.GL.DeleteSamplers(_count,_samplers); -} -static unsafe void Test_DeleteSamplers_33014() { - System.Int32 _count = default(System.Int32); - System.UInt32[] _samplers = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.DeleteSamplers(_count,_samplers); -} -static unsafe void Test_DeleteSamplers_33015() { - System.Int32 _count = default(System.Int32); - System.UInt32 _samplers = default(System.UInt32); - OpenTK.Graphics.ES30.GL.DeleteSamplers(_count,ref _samplers); -} -static unsafe void Test_DeleteSamplers_33016() { - System.Int32 _count = default(System.Int32); - System.UInt32* _samplers = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.DeleteSamplers(_count,_samplers); -} -static unsafe void Test_DeleteShader_33017() { - System.Int32 _shader = default(System.Int32); - OpenTK.Graphics.ES30.GL.DeleteShader(_shader); -} -static unsafe void Test_DeleteShader_33018() { - System.UInt32 _shader = default(System.UInt32); - OpenTK.Graphics.ES30.GL.DeleteShader(_shader); -} -static unsafe void Test_DeleteSync_33019() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.DeleteSync(_sync); -} -static unsafe void Test_DeleteTexture_33020() { - System.Int32 _textures = default(System.Int32); - OpenTK.Graphics.ES30.GL.DeleteTexture(_textures); -} -static unsafe void Test_DeleteTexture_33021() { - System.UInt32 _textures = default(System.UInt32); - OpenTK.Graphics.ES30.GL.DeleteTexture(_textures); -} -static unsafe void Test_DeleteTextures_33022() { - System.Int32 _n = default(System.Int32); - System.Int32[] _textures = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.DeleteTextures(_n,_textures); -} -static unsafe void Test_DeleteTextures_33023() { - System.Int32 _n = default(System.Int32); - System.Int32 _textures = default(System.Int32); - OpenTK.Graphics.ES30.GL.DeleteTextures(_n,ref _textures); -} -static unsafe void Test_DeleteTextures_33024() { - System.Int32 _n = default(System.Int32); - System.Int32* _textures = default(System.Int32*); - OpenTK.Graphics.ES30.GL.DeleteTextures(_n,_textures); -} -static unsafe void Test_DeleteTextures_33025() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _textures = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.DeleteTextures(_n,_textures); -} -static unsafe void Test_DeleteTextures_33026() { - System.Int32 _n = default(System.Int32); - System.UInt32 _textures = default(System.UInt32); - OpenTK.Graphics.ES30.GL.DeleteTextures(_n,ref _textures); -} -static unsafe void Test_DeleteTextures_33027() { - System.Int32 _n = default(System.Int32); - System.UInt32* _textures = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.DeleteTextures(_n,_textures); -} -static unsafe void Test_DeleteTransformFeedback_33028() { - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.ES30.GL.DeleteTransformFeedback(_ids); -} -static unsafe void Test_DeleteTransformFeedback_33029() { - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.ES30.GL.DeleteTransformFeedback(_ids); -} -static unsafe void Test_DeleteTransformFeedbacks_33030() { - System.Int32 _n = default(System.Int32); - System.Int32[] _ids = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.DeleteTransformFeedbacks(_n,_ids); -} -static unsafe void Test_DeleteTransformFeedbacks_33031() { - System.Int32 _n = default(System.Int32); - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.ES30.GL.DeleteTransformFeedbacks(_n,ref _ids); -} -static unsafe void Test_DeleteTransformFeedbacks_33032() { - System.Int32 _n = default(System.Int32); - System.Int32* _ids = default(System.Int32*); - OpenTK.Graphics.ES30.GL.DeleteTransformFeedbacks(_n,_ids); -} -static unsafe void Test_DeleteTransformFeedbacks_33033() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _ids = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.DeleteTransformFeedbacks(_n,_ids); -} -static unsafe void Test_DeleteTransformFeedbacks_33034() { - System.Int32 _n = default(System.Int32); - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.ES30.GL.DeleteTransformFeedbacks(_n,ref _ids); -} -static unsafe void Test_DeleteTransformFeedbacks_33035() { - System.Int32 _n = default(System.Int32); - System.UInt32* _ids = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.DeleteTransformFeedbacks(_n,_ids); -} -static unsafe void Test_DeleteVertexArray_33036() { - System.Int32 _arrays = default(System.Int32); - OpenTK.Graphics.ES30.GL.DeleteVertexArray(_arrays); -} -static unsafe void Test_DeleteVertexArray_33037() { - System.UInt32 _arrays = default(System.UInt32); - OpenTK.Graphics.ES30.GL.DeleteVertexArray(_arrays); -} -static unsafe void Test_DeleteVertexArrays_33038() { - System.Int32 _n = default(System.Int32); - System.Int32[] _arrays = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.DeleteVertexArrays(_n,_arrays); -} -static unsafe void Test_DeleteVertexArrays_33039() { - System.Int32 _n = default(System.Int32); - System.Int32 _arrays = default(System.Int32); - OpenTK.Graphics.ES30.GL.DeleteVertexArrays(_n,ref _arrays); -} -static unsafe void Test_DeleteVertexArrays_33040() { - System.Int32 _n = default(System.Int32); - System.Int32* _arrays = default(System.Int32*); - OpenTK.Graphics.ES30.GL.DeleteVertexArrays(_n,_arrays); -} -static unsafe void Test_DeleteVertexArrays_33041() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _arrays = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.DeleteVertexArrays(_n,_arrays); -} -static unsafe void Test_DeleteVertexArrays_33042() { - System.Int32 _n = default(System.Int32); - System.UInt32 _arrays = default(System.UInt32); - OpenTK.Graphics.ES30.GL.DeleteVertexArrays(_n,ref _arrays); -} -static unsafe void Test_DeleteVertexArrays_33043() { - System.Int32 _n = default(System.Int32); - System.UInt32* _arrays = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.DeleteVertexArrays(_n,_arrays); -} -static unsafe void Test_DepthFunc_33044() { - OpenTK.Graphics.ES30.All _func = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.DepthFunc(_func); -} -static unsafe void Test_DepthFunc_33045() { - OpenTK.Graphics.ES30.DepthFunction _func = default(OpenTK.Graphics.ES30.DepthFunction); - OpenTK.Graphics.ES30.GL.DepthFunc(_func); -} -static unsafe void Test_DepthMask_33046() { - System.Boolean _flag = default(System.Boolean); - OpenTK.Graphics.ES30.GL.DepthMask(_flag); -} -static unsafe void Test_DepthRange_33047() { - System.Single _n = default(System.Single); - System.Single _f = default(System.Single); - OpenTK.Graphics.ES30.GL.DepthRange(_n,_f); -} -static unsafe void Test_DetachShader_33048() { - System.Int32 _program = default(System.Int32); - System.Int32 _shader = default(System.Int32); - OpenTK.Graphics.ES30.GL.DetachShader(_program,_shader); -} -static unsafe void Test_DetachShader_33049() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _shader = default(System.UInt32); - OpenTK.Graphics.ES30.GL.DetachShader(_program,_shader); -} -static unsafe void Test_Disable_33050() { - OpenTK.Graphics.ES30.All _cap = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.Disable(_cap); -} -static unsafe void Test_Disable_33051() { - OpenTK.Graphics.ES30.EnableCap _cap = default(OpenTK.Graphics.ES30.EnableCap); - OpenTK.Graphics.ES30.GL.Disable(_cap); -} -static unsafe void Test_DisableVertexAttribArray_33052() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES30.GL.DisableVertexAttribArray(_index); -} -static unsafe void Test_DisableVertexAttribArray_33053() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES30.GL.DisableVertexAttribArray(_index); -} -static unsafe void Test_DrawArrays_33054() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.GL.DrawArrays(_mode,_first,_count); -} -static unsafe void Test_DrawArrays_33055() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.GL.DrawArrays(_mode,_first,_count); -} -static unsafe void Test_DrawArraysInstanced_33056() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _instancecount = default(System.Int32); - OpenTK.Graphics.ES30.GL.DrawArraysInstanced(_mode,_first,_count,_instancecount); -} -static unsafe void Test_DrawArraysInstanced_33057() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _instancecount = default(System.Int32); - OpenTK.Graphics.ES30.GL.DrawArraysInstanced(_mode,_first,_count,_instancecount); -} -static unsafe void Test_DrawBuffers_33058() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.ES30.All[] _bufs = default(OpenTK.Graphics.ES30.All[]); - OpenTK.Graphics.ES30.GL.DrawBuffers(_n,_bufs); -} -static unsafe void Test_DrawBuffers_33059() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.ES30.All _bufs = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.DrawBuffers(_n,ref _bufs); -} -static unsafe void Test_DrawBuffers_33060() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.ES30.All* _bufs = default(OpenTK.Graphics.ES30.All*); - OpenTK.Graphics.ES30.GL.DrawBuffers(_n,_bufs); -} -static unsafe void Test_DrawBuffers_33061() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.ES30.DrawBufferMode[] _bufs = default(OpenTK.Graphics.ES30.DrawBufferMode[]); - OpenTK.Graphics.ES30.GL.DrawBuffers(_n,_bufs); -} -static unsafe void Test_DrawBuffers_33062() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.ES30.DrawBufferMode _bufs = default(OpenTK.Graphics.ES30.DrawBufferMode); - OpenTK.Graphics.ES30.GL.DrawBuffers(_n,ref _bufs); -} -static unsafe void Test_DrawBuffers_33063() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.ES30.DrawBufferMode* _bufs = default(OpenTK.Graphics.ES30.DrawBufferMode*); - OpenTK.Graphics.ES30.GL.DrawBuffers(_n,_bufs); -} -static unsafe void Test_DrawElements_33064() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.IntPtr _indices = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_33065() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[] _indices = default(int[]); - OpenTK.Graphics.ES30.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_33066() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[,] _indices = default(int[,]); - OpenTK.Graphics.ES30.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_33067() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[,,] _indices = default(int[,,]); - OpenTK.Graphics.ES30.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_33068() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int _indices = default(int); - OpenTK.Graphics.ES30.GL.DrawElements(_mode,_count,_type,ref _indices); -} -static unsafe void Test_DrawElements_33069() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_33070() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - int[] _indices = default(int[]); - OpenTK.Graphics.ES30.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_33071() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - int[,] _indices = default(int[,]); - OpenTK.Graphics.ES30.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_33072() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - int[,,] _indices = default(int[,,]); - OpenTK.Graphics.ES30.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_33073() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - int _indices = default(int); - OpenTK.Graphics.ES30.GL.DrawElements(_mode,_count,_type,ref _indices); -} -static unsafe void Test_DrawElementsInstanced_33074() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _instancecount = default(System.Int32); - OpenTK.Graphics.ES30.GL.DrawElementsInstanced(_mode,_count,_type,_indices,_instancecount); -} -static unsafe void Test_DrawElementsInstanced_33075() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[] _indices = default(int[]); - System.Int32 _instancecount = default(System.Int32); - OpenTK.Graphics.ES30.GL.DrawElementsInstanced(_mode,_count,_type,_indices,_instancecount); -} -static unsafe void Test_DrawElementsInstanced_33076() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[,] _indices = default(int[,]); - System.Int32 _instancecount = default(System.Int32); - OpenTK.Graphics.ES30.GL.DrawElementsInstanced(_mode,_count,_type,_indices,_instancecount); -} -static unsafe void Test_DrawElementsInstanced_33077() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[,,] _indices = default(int[,,]); - System.Int32 _instancecount = default(System.Int32); - OpenTK.Graphics.ES30.GL.DrawElementsInstanced(_mode,_count,_type,_indices,_instancecount); -} -static unsafe void Test_DrawElementsInstanced_33078() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int _indices = default(int); - System.Int32 _instancecount = default(System.Int32); - OpenTK.Graphics.ES30.GL.DrawElementsInstanced(_mode,_count,_type,ref _indices,_instancecount); -} -static unsafe void Test_DrawElementsInstanced_33079() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _instancecount = default(System.Int32); - OpenTK.Graphics.ES30.GL.DrawElementsInstanced(_mode,_count,_type,_indices,_instancecount); -} -static unsafe void Test_DrawElementsInstanced_33080() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _instancecount = default(System.Int32); - OpenTK.Graphics.ES30.GL.DrawElementsInstanced(_mode,_count,_type,_indices,_instancecount); -} -static unsafe void Test_DrawElementsInstanced_33081() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _instancecount = default(System.Int32); - OpenTK.Graphics.ES30.GL.DrawElementsInstanced(_mode,_count,_type,_indices,_instancecount); -} -static unsafe void Test_DrawElementsInstanced_33082() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _instancecount = default(System.Int32); - OpenTK.Graphics.ES30.GL.DrawElementsInstanced(_mode,_count,_type,_indices,_instancecount); -} -static unsafe void Test_DrawElementsInstanced_33083() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - int _indices = default(int); - System.Int32 _instancecount = default(System.Int32); - OpenTK.Graphics.ES30.GL.DrawElementsInstanced(_mode,_count,_type,ref _indices,_instancecount); -} -static unsafe void Test_DrawRangeElements_33084() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.IntPtr _indices = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_33085() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[] _indices = default(int[]); - OpenTK.Graphics.ES30.GL.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_33086() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[,] _indices = default(int[,]); - OpenTK.Graphics.ES30.GL.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_33087() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[,,] _indices = default(int[,,]); - OpenTK.Graphics.ES30.GL.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_33088() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int _indices = default(int); - OpenTK.Graphics.ES30.GL.DrawRangeElements(_mode,_start,_end,_count,_type,ref _indices); -} -static unsafe void Test_DrawRangeElements_33089() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.IntPtr _indices = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_33090() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[] _indices = default(int[]); - OpenTK.Graphics.ES30.GL.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_33091() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[,] _indices = default(int[,]); - OpenTK.Graphics.ES30.GL.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_33092() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[,,] _indices = default(int[,,]); - OpenTK.Graphics.ES30.GL.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_33093() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int _indices = default(int); - OpenTK.Graphics.ES30.GL.DrawRangeElements(_mode,_start,_end,_count,_type,ref _indices); -} -static unsafe void Test_DrawRangeElements_33094() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_33095() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - int[] _indices = default(int[]); - OpenTK.Graphics.ES30.GL.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_33096() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - int[,] _indices = default(int[,]); - OpenTK.Graphics.ES30.GL.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_33097() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - int[,,] _indices = default(int[,,]); - OpenTK.Graphics.ES30.GL.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_33098() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - int _indices = default(int); - OpenTK.Graphics.ES30.GL.DrawRangeElements(_mode,_start,_end,_count,_type,ref _indices); -} -static unsafe void Test_DrawRangeElements_33099() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_33100() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - int[] _indices = default(int[]); - OpenTK.Graphics.ES30.GL.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_33101() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - int[,] _indices = default(int[,]); - OpenTK.Graphics.ES30.GL.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_33102() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - int[,,] _indices = default(int[,,]); - OpenTK.Graphics.ES30.GL.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_33103() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - int _indices = default(int); - OpenTK.Graphics.ES30.GL.DrawRangeElements(_mode,_start,_end,_count,_type,ref _indices); -} -static unsafe void Test_Enable_33104() { - OpenTK.Graphics.ES30.All _cap = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.Enable(_cap); -} -static unsafe void Test_Enable_33105() { - OpenTK.Graphics.ES30.EnableCap _cap = default(OpenTK.Graphics.ES30.EnableCap); - OpenTK.Graphics.ES30.GL.Enable(_cap); -} -static unsafe void Test_EnableVertexAttribArray_33106() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES30.GL.EnableVertexAttribArray(_index); -} -static unsafe void Test_EnableVertexAttribArray_33107() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES30.GL.EnableVertexAttribArray(_index); -} -static unsafe void Test_EndQuery_33108() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.EndQuery(_target); -} -static unsafe void Test_EndQuery_33109() { - OpenTK.Graphics.ES30.QueryTarget _target = default(OpenTK.Graphics.ES30.QueryTarget); - OpenTK.Graphics.ES30.GL.EndQuery(_target); -} -static unsafe void Test_EndTransformFeedback_33110() { - OpenTK.Graphics.ES30.GL.EndTransformFeedback(); -} -static unsafe void Test_FenceSync_33111() { - OpenTK.Graphics.ES30.All _condition = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _flags = default(OpenTK.Graphics.ES30.All); - System.IntPtr r = OpenTK.Graphics.ES30.GL.FenceSync(_condition,_flags); -} -static unsafe void Test_FenceSync_33112() { - OpenTK.Graphics.ES30.SyncCondition _condition = default(OpenTK.Graphics.ES30.SyncCondition); - OpenTK.Graphics.ES30.WaitSyncFlags _flags = default(OpenTK.Graphics.ES30.WaitSyncFlags); - System.IntPtr r = OpenTK.Graphics.ES30.GL.FenceSync(_condition,_flags); -} -static unsafe void Test_Finish_33113() { - OpenTK.Graphics.ES30.GL.Finish(); -} -static unsafe void Test_Flush_33114() { - OpenTK.Graphics.ES30.GL.Flush(); -} -static unsafe void Test_FlushMappedBufferRange_33115() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _length = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.FlushMappedBufferRange(_target,_offset,_length); -} -static unsafe void Test_FlushMappedBufferRange_33116() { - OpenTK.Graphics.ES30.BufferTarget _target = default(OpenTK.Graphics.ES30.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _length = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.FlushMappedBufferRange(_target,_offset,_length); -} -static unsafe void Test_FramebufferRenderbuffer_33117() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _attachment = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _renderbuffertarget = default(OpenTK.Graphics.ES30.All); - System.Int32 _renderbuffer = default(System.Int32); - OpenTK.Graphics.ES30.GL.FramebufferRenderbuffer(_target,_attachment,_renderbuffertarget,_renderbuffer); -} -static unsafe void Test_FramebufferRenderbuffer_33118() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _attachment = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _renderbuffertarget = default(OpenTK.Graphics.ES30.All); - System.UInt32 _renderbuffer = default(System.UInt32); - OpenTK.Graphics.ES30.GL.FramebufferRenderbuffer(_target,_attachment,_renderbuffertarget,_renderbuffer); -} -static unsafe void Test_FramebufferRenderbuffer_33119() { - OpenTK.Graphics.ES30.FramebufferTarget _target = default(OpenTK.Graphics.ES30.FramebufferTarget); - OpenTK.Graphics.ES30.FramebufferAttachment _attachment = default(OpenTK.Graphics.ES30.FramebufferAttachment); - OpenTK.Graphics.ES30.RenderbufferTarget _renderbuffertarget = default(OpenTK.Graphics.ES30.RenderbufferTarget); - System.Int32 _renderbuffer = default(System.Int32); - OpenTK.Graphics.ES30.GL.FramebufferRenderbuffer(_target,_attachment,_renderbuffertarget,_renderbuffer); -} -static unsafe void Test_FramebufferRenderbuffer_33120() { - OpenTK.Graphics.ES30.FramebufferTarget _target = default(OpenTK.Graphics.ES30.FramebufferTarget); - OpenTK.Graphics.ES30.FramebufferAttachment _attachment = default(OpenTK.Graphics.ES30.FramebufferAttachment); - OpenTK.Graphics.ES30.RenderbufferTarget _renderbuffertarget = default(OpenTK.Graphics.ES30.RenderbufferTarget); - System.UInt32 _renderbuffer = default(System.UInt32); - OpenTK.Graphics.ES30.GL.FramebufferRenderbuffer(_target,_attachment,_renderbuffertarget,_renderbuffer); -} -static unsafe void Test_FramebufferTexture2D_33121() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _attachment = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _textarget = default(OpenTK.Graphics.ES30.All); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.GL.FramebufferTexture2D(_target,_attachment,_textarget,_texture,_level); -} -static unsafe void Test_FramebufferTexture2D_33122() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _attachment = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _textarget = default(OpenTK.Graphics.ES30.All); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.GL.FramebufferTexture2D(_target,_attachment,_textarget,_texture,_level); -} -static unsafe void Test_FramebufferTexture2D_33123() { - OpenTK.Graphics.ES30.FramebufferTarget _target = default(OpenTK.Graphics.ES30.FramebufferTarget); - OpenTK.Graphics.ES30.FramebufferAttachment _attachment = default(OpenTK.Graphics.ES30.FramebufferAttachment); - OpenTK.Graphics.ES30.TextureTarget2d _textarget = default(OpenTK.Graphics.ES30.TextureTarget2d); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.GL.FramebufferTexture2D(_target,_attachment,_textarget,_texture,_level); -} -static unsafe void Test_FramebufferTexture2D_33124() { - OpenTK.Graphics.ES30.FramebufferTarget _target = default(OpenTK.Graphics.ES30.FramebufferTarget); - OpenTK.Graphics.ES30.FramebufferAttachment _attachment = default(OpenTK.Graphics.ES30.FramebufferAttachment); - OpenTK.Graphics.ES30.TextureTarget2d _textarget = default(OpenTK.Graphics.ES30.TextureTarget2d); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.GL.FramebufferTexture2D(_target,_attachment,_textarget,_texture,_level); -} -static unsafe void Test_FramebufferTextureLayer_33125() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _attachment = default(OpenTK.Graphics.ES30.All); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - System.Int32 _layer = default(System.Int32); - OpenTK.Graphics.ES30.GL.FramebufferTextureLayer(_target,_attachment,_texture,_level,_layer); -} -static unsafe void Test_FramebufferTextureLayer_33126() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _attachment = default(OpenTK.Graphics.ES30.All); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - System.Int32 _layer = default(System.Int32); - OpenTK.Graphics.ES30.GL.FramebufferTextureLayer(_target,_attachment,_texture,_level,_layer); -} -static unsafe void Test_FramebufferTextureLayer_33127() { - OpenTK.Graphics.ES30.FramebufferTarget _target = default(OpenTK.Graphics.ES30.FramebufferTarget); - OpenTK.Graphics.ES30.FramebufferAttachment _attachment = default(OpenTK.Graphics.ES30.FramebufferAttachment); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - System.Int32 _layer = default(System.Int32); - OpenTK.Graphics.ES30.GL.FramebufferTextureLayer(_target,_attachment,_texture,_level,_layer); -} -static unsafe void Test_FramebufferTextureLayer_33128() { - OpenTK.Graphics.ES30.FramebufferTarget _target = default(OpenTK.Graphics.ES30.FramebufferTarget); - OpenTK.Graphics.ES30.FramebufferAttachment _attachment = default(OpenTK.Graphics.ES30.FramebufferAttachment); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - System.Int32 _layer = default(System.Int32); - OpenTK.Graphics.ES30.GL.FramebufferTextureLayer(_target,_attachment,_texture,_level,_layer); -} -static unsafe void Test_FrontFace_33129() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.FrontFace(_mode); -} -static unsafe void Test_FrontFace_33130() { - OpenTK.Graphics.ES30.FrontFaceDirection _mode = default(OpenTK.Graphics.ES30.FrontFaceDirection); - OpenTK.Graphics.ES30.GL.FrontFace(_mode); -} -static unsafe void Test_GenBuffer_33131() { - System.Int32 r = OpenTK.Graphics.ES30.GL.GenBuffer(); -} -static unsafe void Test_GenBuffers_33132() { - System.Int32 _n = default(System.Int32); - System.Int32[] _buffers = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GenBuffers(_n,_buffers); -} -static unsafe void Test_GenBuffers_33133() { - System.Int32 _n = default(System.Int32); - System.Int32 _buffers = default(System.Int32); - OpenTK.Graphics.ES30.GL.GenBuffers(_n,out _buffers); -} -static unsafe void Test_GenBuffers_33134() { - System.Int32 _n = default(System.Int32); - System.Int32* _buffers = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GenBuffers(_n,_buffers); -} -static unsafe void Test_GenBuffers_33135() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _buffers = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.GenBuffers(_n,_buffers); -} -static unsafe void Test_GenBuffers_33136() { - System.Int32 _n = default(System.Int32); - System.UInt32 _buffers = default(System.UInt32); - OpenTK.Graphics.ES30.GL.GenBuffers(_n,out _buffers); -} -static unsafe void Test_GenBuffers_33137() { - System.Int32 _n = default(System.Int32); - System.UInt32* _buffers = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.GenBuffers(_n,_buffers); -} -static unsafe void Test_GenerateMipmap_33138() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.GenerateMipmap(_target); -} -static unsafe void Test_GenerateMipmap_33139() { - OpenTK.Graphics.ES30.TextureTarget _target = default(OpenTK.Graphics.ES30.TextureTarget); - OpenTK.Graphics.ES30.GL.GenerateMipmap(_target); -} -static unsafe void Test_GenFramebuffer_33140() { - System.Int32 r = OpenTK.Graphics.ES30.GL.GenFramebuffer(); -} -static unsafe void Test_GenFramebuffers_33141() { - System.Int32 _n = default(System.Int32); - System.Int32[] _framebuffers = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GenFramebuffers(_n,_framebuffers); -} -static unsafe void Test_GenFramebuffers_33142() { - System.Int32 _n = default(System.Int32); - System.Int32 _framebuffers = default(System.Int32); - OpenTK.Graphics.ES30.GL.GenFramebuffers(_n,out _framebuffers); -} -static unsafe void Test_GenFramebuffers_33143() { - System.Int32 _n = default(System.Int32); - System.Int32* _framebuffers = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GenFramebuffers(_n,_framebuffers); -} -static unsafe void Test_GenFramebuffers_33144() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _framebuffers = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.GenFramebuffers(_n,_framebuffers); -} -static unsafe void Test_GenFramebuffers_33145() { - System.Int32 _n = default(System.Int32); - System.UInt32 _framebuffers = default(System.UInt32); - OpenTK.Graphics.ES30.GL.GenFramebuffers(_n,out _framebuffers); -} -static unsafe void Test_GenFramebuffers_33146() { - System.Int32 _n = default(System.Int32); - System.UInt32* _framebuffers = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.GenFramebuffers(_n,_framebuffers); -} -static unsafe void Test_GenQuery_33147() { - System.Int32 r = OpenTK.Graphics.ES30.GL.GenQuery(); -} -static unsafe void Test_GenQueries_33148() { - System.Int32 _n = default(System.Int32); - System.Int32[] _ids = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GenQueries(_n,_ids); -} -static unsafe void Test_GenQueries_33149() { - System.Int32 _n = default(System.Int32); - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.ES30.GL.GenQueries(_n,out _ids); -} -static unsafe void Test_GenQueries_33150() { - System.Int32 _n = default(System.Int32); - System.Int32* _ids = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GenQueries(_n,_ids); -} -static unsafe void Test_GenQueries_33151() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _ids = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.GenQueries(_n,_ids); -} -static unsafe void Test_GenQueries_33152() { - System.Int32 _n = default(System.Int32); - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.ES30.GL.GenQueries(_n,out _ids); -} -static unsafe void Test_GenQueries_33153() { - System.Int32 _n = default(System.Int32); - System.UInt32* _ids = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.GenQueries(_n,_ids); -} -static unsafe void Test_GenRenderbuffer_33154() { - System.Int32 r = OpenTK.Graphics.ES30.GL.GenRenderbuffer(); -} -static unsafe void Test_GenRenderbuffers_33155() { - System.Int32 _n = default(System.Int32); - System.Int32[] _renderbuffers = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GenRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_GenRenderbuffers_33156() { - System.Int32 _n = default(System.Int32); - System.Int32 _renderbuffers = default(System.Int32); - OpenTK.Graphics.ES30.GL.GenRenderbuffers(_n,out _renderbuffers); -} -static unsafe void Test_GenRenderbuffers_33157() { - System.Int32 _n = default(System.Int32); - System.Int32* _renderbuffers = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GenRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_GenRenderbuffers_33158() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _renderbuffers = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.GenRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_GenRenderbuffers_33159() { - System.Int32 _n = default(System.Int32); - System.UInt32 _renderbuffers = default(System.UInt32); - OpenTK.Graphics.ES30.GL.GenRenderbuffers(_n,out _renderbuffers); -} -static unsafe void Test_GenRenderbuffers_33160() { - System.Int32 _n = default(System.Int32); - System.UInt32* _renderbuffers = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.GenRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_GenSampler_33161() { - System.Int32 r = OpenTK.Graphics.ES30.GL.GenSampler(); -} -static unsafe void Test_GenSamplers_33162() { - System.Int32 _count = default(System.Int32); - System.Int32[] _samplers = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GenSamplers(_count,_samplers); -} -static unsafe void Test_GenSamplers_33163() { - System.Int32 _count = default(System.Int32); - System.Int32 _samplers = default(System.Int32); - OpenTK.Graphics.ES30.GL.GenSamplers(_count,out _samplers); -} -static unsafe void Test_GenSamplers_33164() { - System.Int32 _count = default(System.Int32); - System.Int32* _samplers = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GenSamplers(_count,_samplers); -} -static unsafe void Test_GenSamplers_33165() { - System.Int32 _count = default(System.Int32); - System.UInt32[] _samplers = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.GenSamplers(_count,_samplers); -} -static unsafe void Test_GenSamplers_33166() { - System.Int32 _count = default(System.Int32); - System.UInt32 _samplers = default(System.UInt32); - OpenTK.Graphics.ES30.GL.GenSamplers(_count,out _samplers); -} -static unsafe void Test_GenSamplers_33167() { - System.Int32 _count = default(System.Int32); - System.UInt32* _samplers = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.GenSamplers(_count,_samplers); -} -static unsafe void Test_GenTexture_33168() { - System.Int32 r = OpenTK.Graphics.ES30.GL.GenTexture(); -} -static unsafe void Test_GenTextures_33169() { - System.Int32 _n = default(System.Int32); - System.Int32[] _textures = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GenTextures(_n,_textures); -} -static unsafe void Test_GenTextures_33170() { - System.Int32 _n = default(System.Int32); - System.Int32 _textures = default(System.Int32); - OpenTK.Graphics.ES30.GL.GenTextures(_n,out _textures); -} -static unsafe void Test_GenTextures_33171() { - System.Int32 _n = default(System.Int32); - System.Int32* _textures = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GenTextures(_n,_textures); -} -static unsafe void Test_GenTextures_33172() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _textures = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.GenTextures(_n,_textures); -} -static unsafe void Test_GenTextures_33173() { - System.Int32 _n = default(System.Int32); - System.UInt32 _textures = default(System.UInt32); - OpenTK.Graphics.ES30.GL.GenTextures(_n,out _textures); -} -static unsafe void Test_GenTextures_33174() { - System.Int32 _n = default(System.Int32); - System.UInt32* _textures = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.GenTextures(_n,_textures); -} -static unsafe void Test_GenTransformFeedback_33175() { - System.Int32 r = OpenTK.Graphics.ES30.GL.GenTransformFeedback(); -} -static unsafe void Test_GenTransformFeedbacks_33176() { - System.Int32 _n = default(System.Int32); - System.Int32[] _ids = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GenTransformFeedbacks(_n,_ids); -} -static unsafe void Test_GenTransformFeedbacks_33177() { - System.Int32 _n = default(System.Int32); - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.ES30.GL.GenTransformFeedbacks(_n,out _ids); -} -static unsafe void Test_GenTransformFeedbacks_33178() { - System.Int32 _n = default(System.Int32); - System.Int32* _ids = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GenTransformFeedbacks(_n,_ids); -} -static unsafe void Test_GenTransformFeedbacks_33179() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _ids = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.GenTransformFeedbacks(_n,_ids); -} -static unsafe void Test_GenTransformFeedbacks_33180() { - System.Int32 _n = default(System.Int32); - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.ES30.GL.GenTransformFeedbacks(_n,out _ids); -} -static unsafe void Test_GenTransformFeedbacks_33181() { - System.Int32 _n = default(System.Int32); - System.UInt32* _ids = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.GenTransformFeedbacks(_n,_ids); -} -static unsafe void Test_GenVertexArray_33182() { - System.Int32 r = OpenTK.Graphics.ES30.GL.GenVertexArray(); -} -static unsafe void Test_GenVertexArrays_33183() { - System.Int32 _n = default(System.Int32); - System.Int32[] _arrays = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GenVertexArrays(_n,_arrays); -} -static unsafe void Test_GenVertexArrays_33184() { - System.Int32 _n = default(System.Int32); - System.Int32 _arrays = default(System.Int32); - OpenTK.Graphics.ES30.GL.GenVertexArrays(_n,out _arrays); -} -static unsafe void Test_GenVertexArrays_33185() { - System.Int32 _n = default(System.Int32); - System.Int32* _arrays = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GenVertexArrays(_n,_arrays); -} -static unsafe void Test_GenVertexArrays_33186() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _arrays = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.GenVertexArrays(_n,_arrays); -} -static unsafe void Test_GenVertexArrays_33187() { - System.Int32 _n = default(System.Int32); - System.UInt32 _arrays = default(System.UInt32); - OpenTK.Graphics.ES30.GL.GenVertexArrays(_n,out _arrays); -} -static unsafe void Test_GenVertexArrays_33188() { - System.Int32 _n = default(System.Int32); - System.UInt32* _arrays = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.GenVertexArrays(_n,_arrays); -} -static unsafe void Test_GetActiveAttrib_33189() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.ActiveAttribType _type = default(OpenTK.Graphics.ES30.ActiveAttribType); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetActiveAttrib(_program,_index,_bufSize,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetActiveAttrib_33190() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetActiveAttrib(_program,_index,_bufSize,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetActiveAttrib_33191() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.ES30.ActiveAttribType* _type = default(OpenTK.Graphics.ES30.ActiveAttribType*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetActiveAttrib(_program,_index,_bufSize,_length,_size,_type,_name); -} -static unsafe void Test_GetActiveAttrib_33192() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.ES30.All* _type = default(OpenTK.Graphics.ES30.All*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetActiveAttrib(_program,_index,_bufSize,_length,_size,_type,_name); -} -static unsafe void Test_GetActiveAttrib_33193() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.ActiveAttribType _type = default(OpenTK.Graphics.ES30.ActiveAttribType); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetActiveAttrib(_program,_index,_bufSize,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetActiveAttrib_33194() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetActiveAttrib(_program,_index,_bufSize,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetActiveAttrib_33195() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.ES30.ActiveAttribType* _type = default(OpenTK.Graphics.ES30.ActiveAttribType*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetActiveAttrib(_program,_index,_bufSize,_length,_size,_type,_name); -} -static unsafe void Test_GetActiveAttrib_33196() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.ES30.All* _type = default(OpenTK.Graphics.ES30.All*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetActiveAttrib(_program,_index,_bufSize,_length,_size,_type,_name); -} -static unsafe void Test_GetActiveUniform_33197() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.ActiveUniformType _type = default(OpenTK.Graphics.ES30.ActiveUniformType); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetActiveUniform(_program,_index,_bufSize,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetActiveUniform_33198() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetActiveUniform(_program,_index,_bufSize,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetActiveUniform_33199() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.ES30.ActiveUniformType* _type = default(OpenTK.Graphics.ES30.ActiveUniformType*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetActiveUniform(_program,_index,_bufSize,_length,_size,_type,_name); -} -static unsafe void Test_GetActiveUniform_33200() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.ES30.All* _type = default(OpenTK.Graphics.ES30.All*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetActiveUniform(_program,_index,_bufSize,_length,_size,_type,_name); -} -static unsafe void Test_GetActiveUniform_33201() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.ActiveUniformType _type = default(OpenTK.Graphics.ES30.ActiveUniformType); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetActiveUniform(_program,_index,_bufSize,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetActiveUniform_33202() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetActiveUniform(_program,_index,_bufSize,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetActiveUniform_33203() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.ES30.ActiveUniformType* _type = default(OpenTK.Graphics.ES30.ActiveUniformType*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetActiveUniform(_program,_index,_bufSize,_length,_size,_type,_name); -} -static unsafe void Test_GetActiveUniform_33204() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.ES30.All* _type = default(OpenTK.Graphics.ES30.All*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetActiveUniform(_program,_index,_bufSize,_length,_size,_type,_name); -} -static unsafe void Test_GetActiveUniformBlock_33205() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformBlockIndex = default(System.Int32); - OpenTK.Graphics.ES30.ActiveUniformBlockParameter _pname = default(OpenTK.Graphics.ES30.ActiveUniformBlockParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetActiveUniformBlock(_program,_uniformBlockIndex,_pname,_params); -} -static unsafe void Test_GetActiveUniformBlock_33206() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformBlockIndex = default(System.Int32); - OpenTK.Graphics.ES30.ActiveUniformBlockParameter _pname = default(OpenTK.Graphics.ES30.ActiveUniformBlockParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetActiveUniformBlock(_program,_uniformBlockIndex,_pname,out _params); -} -static unsafe void Test_GetActiveUniformBlock_33207() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformBlockIndex = default(System.Int32); - OpenTK.Graphics.ES30.ActiveUniformBlockParameter _pname = default(OpenTK.Graphics.ES30.ActiveUniformBlockParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetActiveUniformBlock(_program,_uniformBlockIndex,_pname,_params); -} -static unsafe void Test_GetActiveUniformBlock_33208() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformBlockIndex = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetActiveUniformBlock(_program,_uniformBlockIndex,_pname,_params); -} -static unsafe void Test_GetActiveUniformBlock_33209() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformBlockIndex = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetActiveUniformBlock(_program,_uniformBlockIndex,_pname,out _params); -} -static unsafe void Test_GetActiveUniformBlock_33210() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformBlockIndex = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetActiveUniformBlock(_program,_uniformBlockIndex,_pname,_params); -} -static unsafe void Test_GetActiveUniformBlock_33211() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _uniformBlockIndex = default(System.UInt32); - OpenTK.Graphics.ES30.ActiveUniformBlockParameter _pname = default(OpenTK.Graphics.ES30.ActiveUniformBlockParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetActiveUniformBlock(_program,_uniformBlockIndex,_pname,_params); -} -static unsafe void Test_GetActiveUniformBlock_33212() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _uniformBlockIndex = default(System.UInt32); - OpenTK.Graphics.ES30.ActiveUniformBlockParameter _pname = default(OpenTK.Graphics.ES30.ActiveUniformBlockParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetActiveUniformBlock(_program,_uniformBlockIndex,_pname,out _params); -} -static unsafe void Test_GetActiveUniformBlock_33213() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _uniformBlockIndex = default(System.UInt32); - OpenTK.Graphics.ES30.ActiveUniformBlockParameter _pname = default(OpenTK.Graphics.ES30.ActiveUniformBlockParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetActiveUniformBlock(_program,_uniformBlockIndex,_pname,_params); -} -static unsafe void Test_GetActiveUniformBlock_33214() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _uniformBlockIndex = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetActiveUniformBlock(_program,_uniformBlockIndex,_pname,_params); -} -static unsafe void Test_GetActiveUniformBlock_33215() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _uniformBlockIndex = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetActiveUniformBlock(_program,_uniformBlockIndex,_pname,out _params); -} -static unsafe void Test_GetActiveUniformBlock_33216() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _uniformBlockIndex = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetActiveUniformBlock(_program,_uniformBlockIndex,_pname,_params); -} -static unsafe void Test_GetActiveUniformBlockName_33217() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformBlockIndex = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _uniformBlockName = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetActiveUniformBlockName(_program,_uniformBlockIndex,_bufSize,out _length,_uniformBlockName); -} -static unsafe void Test_GetActiveUniformBlockName_33218() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformBlockIndex = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _uniformBlockName = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetActiveUniformBlockName(_program,_uniformBlockIndex,_bufSize,_length,_uniformBlockName); -} -static unsafe void Test_GetActiveUniformBlockName_33219() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _uniformBlockIndex = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _uniformBlockName = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetActiveUniformBlockName(_program,_uniformBlockIndex,_bufSize,out _length,_uniformBlockName); -} -static unsafe void Test_GetActiveUniformBlockName_33220() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _uniformBlockIndex = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _uniformBlockName = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetActiveUniformBlockName(_program,_uniformBlockIndex,_bufSize,_length,_uniformBlockName); -} -static unsafe void Test_GetActiveUniforms_33221() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformCount = default(System.Int32); - System.Int32[] _uniformIndices = default(System.Int32[]); - OpenTK.Graphics.ES30.ActiveUniformParameter _pname = default(OpenTK.Graphics.ES30.ActiveUniformParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetActiveUniforms(_program,_uniformCount,_uniformIndices,_pname,_params); -} -static unsafe void Test_GetActiveUniforms_33222() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformCount = default(System.Int32); - System.Int32[] _uniformIndices = default(System.Int32[]); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetActiveUniforms(_program,_uniformCount,_uniformIndices,_pname,_params); -} -static unsafe void Test_GetActiveUniforms_33223() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformCount = default(System.Int32); - System.Int32 _uniformIndices = default(System.Int32); - OpenTK.Graphics.ES30.ActiveUniformParameter _pname = default(OpenTK.Graphics.ES30.ActiveUniformParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetActiveUniforms(_program,_uniformCount,ref _uniformIndices,_pname,out _params); -} -static unsafe void Test_GetActiveUniforms_33224() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformCount = default(System.Int32); - System.Int32 _uniformIndices = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetActiveUniforms(_program,_uniformCount,ref _uniformIndices,_pname,out _params); -} -static unsafe void Test_GetActiveUniforms_33225() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformCount = default(System.Int32); - System.Int32* _uniformIndices = default(System.Int32*); - OpenTK.Graphics.ES30.ActiveUniformParameter _pname = default(OpenTK.Graphics.ES30.ActiveUniformParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetActiveUniforms(_program,_uniformCount,_uniformIndices,_pname,_params); -} -static unsafe void Test_GetActiveUniforms_33226() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformCount = default(System.Int32); - System.Int32* _uniformIndices = default(System.Int32*); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetActiveUniforms(_program,_uniformCount,_uniformIndices,_pname,_params); -} -static unsafe void Test_GetActiveUniforms_33227() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _uniformCount = default(System.Int32); - System.UInt32[] _uniformIndices = default(System.UInt32[]); - OpenTK.Graphics.ES30.ActiveUniformParameter _pname = default(OpenTK.Graphics.ES30.ActiveUniformParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetActiveUniforms(_program,_uniformCount,_uniformIndices,_pname,_params); -} -static unsafe void Test_GetActiveUniforms_33228() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _uniformCount = default(System.Int32); - System.UInt32[] _uniformIndices = default(System.UInt32[]); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetActiveUniforms(_program,_uniformCount,_uniformIndices,_pname,_params); -} -static unsafe void Test_GetActiveUniforms_33229() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _uniformCount = default(System.Int32); - System.UInt32 _uniformIndices = default(System.UInt32); - OpenTK.Graphics.ES30.ActiveUniformParameter _pname = default(OpenTK.Graphics.ES30.ActiveUniformParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetActiveUniforms(_program,_uniformCount,ref _uniformIndices,_pname,out _params); -} -static unsafe void Test_GetActiveUniforms_33230() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _uniformCount = default(System.Int32); - System.UInt32 _uniformIndices = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetActiveUniforms(_program,_uniformCount,ref _uniformIndices,_pname,out _params); -} -static unsafe void Test_GetActiveUniforms_33231() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _uniformCount = default(System.Int32); - System.UInt32* _uniformIndices = default(System.UInt32*); - OpenTK.Graphics.ES30.ActiveUniformParameter _pname = default(OpenTK.Graphics.ES30.ActiveUniformParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetActiveUniforms(_program,_uniformCount,_uniformIndices,_pname,_params); -} -static unsafe void Test_GetActiveUniforms_33232() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _uniformCount = default(System.Int32); - System.UInt32* _uniformIndices = default(System.UInt32*); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetActiveUniforms(_program,_uniformCount,_uniformIndices,_pname,_params); -} -static unsafe void Test_GetAttachedShaders_33233() { - System.Int32 _program = default(System.Int32); - System.Int32 _maxCount = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _shaders = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetAttachedShaders(_program,_maxCount,out _count,_shaders); -} -static unsafe void Test_GetAttachedShaders_33234() { - System.Int32 _program = default(System.Int32); - System.Int32 _maxCount = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _shaders = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetAttachedShaders(_program,_maxCount,out _count,out _shaders); -} -static unsafe void Test_GetAttachedShaders_33235() { - System.Int32 _program = default(System.Int32); - System.Int32 _maxCount = default(System.Int32); - System.Int32* _count = default(System.Int32*); - System.Int32* _shaders = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetAttachedShaders(_program,_maxCount,_count,_shaders); -} -static unsafe void Test_GetAttachedShaders_33236() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _maxCount = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _shaders = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.GetAttachedShaders(_program,_maxCount,out _count,_shaders); -} -static unsafe void Test_GetAttachedShaders_33237() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _maxCount = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32 _shaders = default(System.UInt32); - OpenTK.Graphics.ES30.GL.GetAttachedShaders(_program,_maxCount,out _count,out _shaders); -} -static unsafe void Test_GetAttachedShaders_33238() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _maxCount = default(System.Int32); - System.Int32* _count = default(System.Int32*); - System.UInt32* _shaders = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.GetAttachedShaders(_program,_maxCount,_count,_shaders); -} -static unsafe void Test_GetAttribLocation_33239() { - System.Int32 _program = default(System.Int32); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.ES30.GL.GetAttribLocation(_program,_name); -} -static unsafe void Test_GetAttribLocation_33240() { - System.UInt32 _program = default(System.UInt32); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.ES30.GL.GetAttribLocation(_program,_name); -} -static unsafe void Test_GetBoolean_33241() { - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Boolean r = OpenTK.Graphics.ES30.GL.GetBoolean(_pname); -} -static unsafe void Test_GetBoolean_33242() { - OpenTK.Graphics.ES30.GetPName _pname = default(OpenTK.Graphics.ES30.GetPName); - System.Boolean r = OpenTK.Graphics.ES30.GL.GetBoolean(_pname); -} -static unsafe void Test_GetBoolean_33243() { - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Boolean[] _data = default(System.Boolean[]); - OpenTK.Graphics.ES30.GL.GetBoolean(_pname,_data); -} -static unsafe void Test_GetBoolean_33244() { - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Boolean _data = default(System.Boolean); - OpenTK.Graphics.ES30.GL.GetBoolean(_pname,out _data); -} -static unsafe void Test_GetBoolean_33245() { - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Boolean* _data = default(System.Boolean*); - OpenTK.Graphics.ES30.GL.GetBoolean(_pname,_data); -} -static unsafe void Test_GetBoolean_33246() { - OpenTK.Graphics.ES30.GetPName _pname = default(OpenTK.Graphics.ES30.GetPName); - System.Boolean[] _data = default(System.Boolean[]); - OpenTK.Graphics.ES30.GL.GetBoolean(_pname,_data); -} -static unsafe void Test_GetBoolean_33247() { - OpenTK.Graphics.ES30.GetPName _pname = default(OpenTK.Graphics.ES30.GetPName); - System.Boolean _data = default(System.Boolean); - OpenTK.Graphics.ES30.GL.GetBoolean(_pname,out _data); -} -static unsafe void Test_GetBoolean_33248() { - OpenTK.Graphics.ES30.GetPName _pname = default(OpenTK.Graphics.ES30.GetPName); - System.Boolean* _data = default(System.Boolean*); - OpenTK.Graphics.ES30.GL.GetBoolean(_pname,_data); -} -static unsafe void Test_GetBufferParameter_33249() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.ES30.GL.GetBufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetBufferParameter_33250() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.ES30.GL.GetBufferParameter(_target,_pname,out _params); -} -static unsafe void Test_GetBufferParameter_33251() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.ES30.GL.GetBufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetBufferParameter_33252() { - OpenTK.Graphics.ES30.BufferTarget _target = default(OpenTK.Graphics.ES30.BufferTarget); - OpenTK.Graphics.ES30.BufferParameterName _pname = default(OpenTK.Graphics.ES30.BufferParameterName); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.ES30.GL.GetBufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetBufferParameter_33253() { - OpenTK.Graphics.ES30.BufferTarget _target = default(OpenTK.Graphics.ES30.BufferTarget); - OpenTK.Graphics.ES30.BufferParameterName _pname = default(OpenTK.Graphics.ES30.BufferParameterName); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.ES30.GL.GetBufferParameter(_target,_pname,out _params); -} -static unsafe void Test_GetBufferParameter_33254() { - OpenTK.Graphics.ES30.BufferTarget _target = default(OpenTK.Graphics.ES30.BufferTarget); - OpenTK.Graphics.ES30.BufferParameterName _pname = default(OpenTK.Graphics.ES30.BufferParameterName); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.ES30.GL.GetBufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetBufferParameter_33255() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetBufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetBufferParameter_33256() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetBufferParameter(_target,_pname,out _params); -} -static unsafe void Test_GetBufferParameter_33257() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetBufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetBufferParameter_33258() { - OpenTK.Graphics.ES30.BufferTarget _target = default(OpenTK.Graphics.ES30.BufferTarget); - OpenTK.Graphics.ES30.BufferParameterName _pname = default(OpenTK.Graphics.ES30.BufferParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetBufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetBufferParameter_33259() { - OpenTK.Graphics.ES30.BufferTarget _target = default(OpenTK.Graphics.ES30.BufferTarget); - OpenTK.Graphics.ES30.BufferParameterName _pname = default(OpenTK.Graphics.ES30.BufferParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetBufferParameter(_target,_pname,out _params); -} -static unsafe void Test_GetBufferParameter_33260() { - OpenTK.Graphics.ES30.BufferTarget _target = default(OpenTK.Graphics.ES30.BufferTarget); - OpenTK.Graphics.ES30.BufferParameterName _pname = default(OpenTK.Graphics.ES30.BufferParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetBufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_33261() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.IntPtr _params = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_33262() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - int[] _params = default(int[]); - OpenTK.Graphics.ES30.GL.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_33263() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - int[,] _params = default(int[,]); - OpenTK.Graphics.ES30.GL.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_33264() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - int[,,] _params = default(int[,,]); - OpenTK.Graphics.ES30.GL.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_33265() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - int _params = default(int); - OpenTK.Graphics.ES30.GL.GetBufferPointer(_target,_pname,ref _params); -} -static unsafe void Test_GetBufferPointer_33266() { - OpenTK.Graphics.ES30.BufferTarget _target = default(OpenTK.Graphics.ES30.BufferTarget); - OpenTK.Graphics.ES30.BufferPointer _pname = default(OpenTK.Graphics.ES30.BufferPointer); - System.IntPtr _params = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_33267() { - OpenTK.Graphics.ES30.BufferTarget _target = default(OpenTK.Graphics.ES30.BufferTarget); - OpenTK.Graphics.ES30.BufferPointer _pname = default(OpenTK.Graphics.ES30.BufferPointer); - int[] _params = default(int[]); - OpenTK.Graphics.ES30.GL.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_33268() { - OpenTK.Graphics.ES30.BufferTarget _target = default(OpenTK.Graphics.ES30.BufferTarget); - OpenTK.Graphics.ES30.BufferPointer _pname = default(OpenTK.Graphics.ES30.BufferPointer); - int[,] _params = default(int[,]); - OpenTK.Graphics.ES30.GL.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_33269() { - OpenTK.Graphics.ES30.BufferTarget _target = default(OpenTK.Graphics.ES30.BufferTarget); - OpenTK.Graphics.ES30.BufferPointer _pname = default(OpenTK.Graphics.ES30.BufferPointer); - int[,,] _params = default(int[,,]); - OpenTK.Graphics.ES30.GL.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_33270() { - OpenTK.Graphics.ES30.BufferTarget _target = default(OpenTK.Graphics.ES30.BufferTarget); - OpenTK.Graphics.ES30.BufferPointer _pname = default(OpenTK.Graphics.ES30.BufferPointer); - int _params = default(int); - OpenTK.Graphics.ES30.GL.GetBufferPointer(_target,_pname,ref _params); -} -static unsafe void Test_GetDebugMessageLog_33271() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES30.All[] _sources = default(OpenTK.Graphics.ES30.All[]); - OpenTK.Graphics.ES30.All[] _types = default(OpenTK.Graphics.ES30.All[]); - System.Int32[] _ids = default(System.Int32[]); - OpenTK.Graphics.ES30.All[] _severities = default(OpenTK.Graphics.ES30.All[]); - System.Int32[] _lengths = default(System.Int32[]); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES30.GL.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_33272() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES30.All _sources = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _types = default(OpenTK.Graphics.ES30.All); - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.ES30.All _severities = default(OpenTK.Graphics.ES30.All); - System.Int32 _lengths = default(System.Int32); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES30.GL.GetDebugMessageLog(_count,_bufSize,out _sources,out _types,out _ids,out _severities,out _lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_33273() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES30.All* _sources = default(OpenTK.Graphics.ES30.All*); - OpenTK.Graphics.ES30.All* _types = default(OpenTK.Graphics.ES30.All*); - System.Int32* _ids = default(System.Int32*); - OpenTK.Graphics.ES30.All* _severities = default(OpenTK.Graphics.ES30.All*); - System.Int32* _lengths = default(System.Int32*); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES30.GL.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_33274() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES30.DebugSourceExternal[] _sources = default(OpenTK.Graphics.ES30.DebugSourceExternal[]); - OpenTK.Graphics.ES30.DebugType[] _types = default(OpenTK.Graphics.ES30.DebugType[]); - System.Int32[] _ids = default(System.Int32[]); - OpenTK.Graphics.ES30.DebugSeverity[] _severities = default(OpenTK.Graphics.ES30.DebugSeverity[]); - System.Int32[] _lengths = default(System.Int32[]); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES30.GL.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_33275() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES30.DebugSourceExternal _sources = default(OpenTK.Graphics.ES30.DebugSourceExternal); - OpenTK.Graphics.ES30.DebugType _types = default(OpenTK.Graphics.ES30.DebugType); - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.ES30.DebugSeverity _severities = default(OpenTK.Graphics.ES30.DebugSeverity); - System.Int32 _lengths = default(System.Int32); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES30.GL.GetDebugMessageLog(_count,_bufSize,out _sources,out _types,out _ids,out _severities,out _lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_33276() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES30.DebugSourceExternal* _sources = default(OpenTK.Graphics.ES30.DebugSourceExternal*); - OpenTK.Graphics.ES30.DebugType* _types = default(OpenTK.Graphics.ES30.DebugType*); - System.Int32* _ids = default(System.Int32*); - OpenTK.Graphics.ES30.DebugSeverity* _severities = default(OpenTK.Graphics.ES30.DebugSeverity*); - System.Int32* _lengths = default(System.Int32*); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES30.GL.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_33277() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES30.All[] _sources = default(OpenTK.Graphics.ES30.All[]); - OpenTK.Graphics.ES30.All[] _types = default(OpenTK.Graphics.ES30.All[]); - System.UInt32[] _ids = default(System.UInt32[]); - OpenTK.Graphics.ES30.All[] _severities = default(OpenTK.Graphics.ES30.All[]); - System.Int32[] _lengths = default(System.Int32[]); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES30.GL.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_33278() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES30.All _sources = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _types = default(OpenTK.Graphics.ES30.All); - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.ES30.All _severities = default(OpenTK.Graphics.ES30.All); - System.Int32 _lengths = default(System.Int32); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES30.GL.GetDebugMessageLog(_count,_bufSize,out _sources,out _types,out _ids,out _severities,out _lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_33279() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES30.All* _sources = default(OpenTK.Graphics.ES30.All*); - OpenTK.Graphics.ES30.All* _types = default(OpenTK.Graphics.ES30.All*); - System.UInt32* _ids = default(System.UInt32*); - OpenTK.Graphics.ES30.All* _severities = default(OpenTK.Graphics.ES30.All*); - System.Int32* _lengths = default(System.Int32*); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES30.GL.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_33280() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES30.DebugSourceExternal[] _sources = default(OpenTK.Graphics.ES30.DebugSourceExternal[]); - OpenTK.Graphics.ES30.DebugType[] _types = default(OpenTK.Graphics.ES30.DebugType[]); - System.UInt32[] _ids = default(System.UInt32[]); - OpenTK.Graphics.ES30.DebugSeverity[] _severities = default(OpenTK.Graphics.ES30.DebugSeverity[]); - System.Int32[] _lengths = default(System.Int32[]); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES30.GL.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_33281() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES30.DebugSourceExternal _sources = default(OpenTK.Graphics.ES30.DebugSourceExternal); - OpenTK.Graphics.ES30.DebugType _types = default(OpenTK.Graphics.ES30.DebugType); - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.ES30.DebugSeverity _severities = default(OpenTK.Graphics.ES30.DebugSeverity); - System.Int32 _lengths = default(System.Int32); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES30.GL.GetDebugMessageLog(_count,_bufSize,out _sources,out _types,out _ids,out _severities,out _lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_33282() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES30.DebugSourceExternal* _sources = default(OpenTK.Graphics.ES30.DebugSourceExternal*); - OpenTK.Graphics.ES30.DebugType* _types = default(OpenTK.Graphics.ES30.DebugType*); - System.UInt32* _ids = default(System.UInt32*); - OpenTK.Graphics.ES30.DebugSeverity* _severities = default(OpenTK.Graphics.ES30.DebugSeverity*); - System.Int32* _lengths = default(System.Int32*); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES30.GL.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetError_33283() { - OpenTK.Graphics.ES30.ErrorCode r = OpenTK.Graphics.ES30.GL.GetError(); -} -static unsafe void Test_GetFloat_33284() { - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Single r = OpenTK.Graphics.ES30.GL.GetFloat(_pname); -} -static unsafe void Test_GetFloat_33285() { - OpenTK.Graphics.ES30.GetPName _pname = default(OpenTK.Graphics.ES30.GetPName); - System.Single r = OpenTK.Graphics.ES30.GL.GetFloat(_pname); -} -static unsafe void Test_GetFloat_33286() { - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Single[] _data = default(System.Single[]); - OpenTK.Graphics.ES30.GL.GetFloat(_pname,_data); -} -static unsafe void Test_GetFloat_33287() { - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Single _data = default(System.Single); - OpenTK.Graphics.ES30.GL.GetFloat(_pname,out _data); -} -static unsafe void Test_GetFloat_33288() { - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Single* _data = default(System.Single*); - OpenTK.Graphics.ES30.GL.GetFloat(_pname,_data); -} -static unsafe void Test_GetFloat_33289() { - OpenTK.Graphics.ES30.GetPName _pname = default(OpenTK.Graphics.ES30.GetPName); - System.Single[] _data = default(System.Single[]); - OpenTK.Graphics.ES30.GL.GetFloat(_pname,_data); -} -static unsafe void Test_GetFloat_33290() { - OpenTK.Graphics.ES30.GetPName _pname = default(OpenTK.Graphics.ES30.GetPName); - System.Single _data = default(System.Single); - OpenTK.Graphics.ES30.GL.GetFloat(_pname,out _data); -} -static unsafe void Test_GetFloat_33291() { - OpenTK.Graphics.ES30.GetPName _pname = default(OpenTK.Graphics.ES30.GetPName); - System.Single* _data = default(System.Single*); - OpenTK.Graphics.ES30.GL.GetFloat(_pname,_data); -} -static unsafe void Test_GetFragDataLocation_33292() { - System.Int32 _program = default(System.Int32); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.ES30.GL.GetFragDataLocation(_program,_name); -} -static unsafe void Test_GetFragDataLocation_33293() { - System.UInt32 _program = default(System.UInt32); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.ES30.GL.GetFragDataLocation(_program,_name); -} -static unsafe void Test_GetFramebufferAttachmentParameter_33294() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _attachment = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetFramebufferAttachmentParameter(_target,_attachment,_pname,_params); -} -static unsafe void Test_GetFramebufferAttachmentParameter_33295() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _attachment = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetFramebufferAttachmentParameter(_target,_attachment,_pname,out _params); -} -static unsafe void Test_GetFramebufferAttachmentParameter_33296() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _attachment = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetFramebufferAttachmentParameter(_target,_attachment,_pname,_params); -} -static unsafe void Test_GetFramebufferAttachmentParameter_33297() { - OpenTK.Graphics.ES30.FramebufferTarget _target = default(OpenTK.Graphics.ES30.FramebufferTarget); - OpenTK.Graphics.ES30.FramebufferAttachment _attachment = default(OpenTK.Graphics.ES30.FramebufferAttachment); - OpenTK.Graphics.ES30.FramebufferParameterName _pname = default(OpenTK.Graphics.ES30.FramebufferParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetFramebufferAttachmentParameter(_target,_attachment,_pname,_params); -} -static unsafe void Test_GetFramebufferAttachmentParameter_33298() { - OpenTK.Graphics.ES30.FramebufferTarget _target = default(OpenTK.Graphics.ES30.FramebufferTarget); - OpenTK.Graphics.ES30.FramebufferAttachment _attachment = default(OpenTK.Graphics.ES30.FramebufferAttachment); - OpenTK.Graphics.ES30.FramebufferParameterName _pname = default(OpenTK.Graphics.ES30.FramebufferParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetFramebufferAttachmentParameter(_target,_attachment,_pname,out _params); -} -static unsafe void Test_GetFramebufferAttachmentParameter_33299() { - OpenTK.Graphics.ES30.FramebufferTarget _target = default(OpenTK.Graphics.ES30.FramebufferTarget); - OpenTK.Graphics.ES30.FramebufferAttachment _attachment = default(OpenTK.Graphics.ES30.FramebufferAttachment); - OpenTK.Graphics.ES30.FramebufferParameterName _pname = default(OpenTK.Graphics.ES30.FramebufferParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetFramebufferAttachmentParameter(_target,_attachment,_pname,_params); -} -static unsafe void Test_GetInteger64_33300() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _index = default(System.Int32); - System.Int64[] _data = default(System.Int64[]); - OpenTK.Graphics.ES30.GL.GetInteger64(_target,_index,_data); -} -static unsafe void Test_GetInteger64_33301() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _index = default(System.Int32); - System.Int64 _data = default(System.Int64); - OpenTK.Graphics.ES30.GL.GetInteger64(_target,_index,out _data); -} -static unsafe void Test_GetInteger64_33302() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _index = default(System.Int32); - System.Int64* _data = default(System.Int64*); - OpenTK.Graphics.ES30.GL.GetInteger64(_target,_index,_data); -} -static unsafe void Test_GetInteger64_33303() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.UInt32 _index = default(System.UInt32); - System.Int64[] _data = default(System.Int64[]); - OpenTK.Graphics.ES30.GL.GetInteger64(_target,_index,_data); -} -static unsafe void Test_GetInteger64_33304() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.UInt32 _index = default(System.UInt32); - System.Int64 _data = default(System.Int64); - OpenTK.Graphics.ES30.GL.GetInteger64(_target,_index,out _data); -} -static unsafe void Test_GetInteger64_33305() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.UInt32 _index = default(System.UInt32); - System.Int64* _data = default(System.Int64*); - OpenTK.Graphics.ES30.GL.GetInteger64(_target,_index,_data); -} -static unsafe void Test_GetInteger64_33306() { - OpenTK.Graphics.ES30.GetIndexedPName _target = default(OpenTK.Graphics.ES30.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Int64[] _data = default(System.Int64[]); - OpenTK.Graphics.ES30.GL.GetInteger64(_target,_index,_data); -} -static unsafe void Test_GetInteger64_33307() { - OpenTK.Graphics.ES30.GetIndexedPName _target = default(OpenTK.Graphics.ES30.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Int64 _data = default(System.Int64); - OpenTK.Graphics.ES30.GL.GetInteger64(_target,_index,out _data); -} -static unsafe void Test_GetInteger64_33308() { - OpenTK.Graphics.ES30.GetIndexedPName _target = default(OpenTK.Graphics.ES30.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Int64* _data = default(System.Int64*); - OpenTK.Graphics.ES30.GL.GetInteger64(_target,_index,_data); -} -static unsafe void Test_GetInteger64_33309() { - OpenTK.Graphics.ES30.GetIndexedPName _target = default(OpenTK.Graphics.ES30.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Int64[] _data = default(System.Int64[]); - OpenTK.Graphics.ES30.GL.GetInteger64(_target,_index,_data); -} -static unsafe void Test_GetInteger64_33310() { - OpenTK.Graphics.ES30.GetIndexedPName _target = default(OpenTK.Graphics.ES30.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Int64 _data = default(System.Int64); - OpenTK.Graphics.ES30.GL.GetInteger64(_target,_index,out _data); -} -static unsafe void Test_GetInteger64_33311() { - OpenTK.Graphics.ES30.GetIndexedPName _target = default(OpenTK.Graphics.ES30.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Int64* _data = default(System.Int64*); - OpenTK.Graphics.ES30.GL.GetInteger64(_target,_index,_data); -} -static unsafe void Test_GetInteger64_33312() { - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int64 r = OpenTK.Graphics.ES30.GL.GetInteger64(_pname); -} -static unsafe void Test_GetInteger64_33313() { - OpenTK.Graphics.ES30.GetPName _pname = default(OpenTK.Graphics.ES30.GetPName); - System.Int64 r = OpenTK.Graphics.ES30.GL.GetInteger64(_pname); -} -static unsafe void Test_GetInteger64_33314() { - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int64[] _data = default(System.Int64[]); - OpenTK.Graphics.ES30.GL.GetInteger64(_pname,_data); -} -static unsafe void Test_GetInteger64_33315() { - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int64 _data = default(System.Int64); - OpenTK.Graphics.ES30.GL.GetInteger64(_pname,out _data); -} -static unsafe void Test_GetInteger64_33316() { - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int64* _data = default(System.Int64*); - OpenTK.Graphics.ES30.GL.GetInteger64(_pname,_data); -} -static unsafe void Test_GetInteger64_33317() { - OpenTK.Graphics.ES30.GetPName _pname = default(OpenTK.Graphics.ES30.GetPName); - System.Int64[] _data = default(System.Int64[]); - OpenTK.Graphics.ES30.GL.GetInteger64(_pname,_data); -} -static unsafe void Test_GetInteger64_33318() { - OpenTK.Graphics.ES30.GetPName _pname = default(OpenTK.Graphics.ES30.GetPName); - System.Int64 _data = default(System.Int64); - OpenTK.Graphics.ES30.GL.GetInteger64(_pname,out _data); -} -static unsafe void Test_GetInteger64_33319() { - OpenTK.Graphics.ES30.GetPName _pname = default(OpenTK.Graphics.ES30.GetPName); - System.Int64* _data = default(System.Int64*); - OpenTK.Graphics.ES30.GL.GetInteger64(_pname,_data); -} -static unsafe void Test_GetInteger_33320() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _index = default(System.Int32); - System.Int32[] _data = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetInteger(_target,_index,_data); -} -static unsafe void Test_GetInteger_33321() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _index = default(System.Int32); - System.Int32 _data = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetInteger(_target,_index,out _data); -} -static unsafe void Test_GetInteger_33322() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _index = default(System.Int32); - System.Int32* _data = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetInteger(_target,_index,_data); -} -static unsafe void Test_GetInteger_33323() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.UInt32 _index = default(System.UInt32); - System.Int32[] _data = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetInteger(_target,_index,_data); -} -static unsafe void Test_GetInteger_33324() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.UInt32 _index = default(System.UInt32); - System.Int32 _data = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetInteger(_target,_index,out _data); -} -static unsafe void Test_GetInteger_33325() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.UInt32 _index = default(System.UInt32); - System.Int32* _data = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetInteger(_target,_index,_data); -} -static unsafe void Test_GetInteger_33326() { - OpenTK.Graphics.ES30.GetIndexedPName _target = default(OpenTK.Graphics.ES30.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Int32[] _data = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetInteger(_target,_index,_data); -} -static unsafe void Test_GetInteger_33327() { - OpenTK.Graphics.ES30.GetIndexedPName _target = default(OpenTK.Graphics.ES30.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Int32 _data = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetInteger(_target,_index,out _data); -} -static unsafe void Test_GetInteger_33328() { - OpenTK.Graphics.ES30.GetIndexedPName _target = default(OpenTK.Graphics.ES30.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Int32* _data = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetInteger(_target,_index,_data); -} -static unsafe void Test_GetInteger_33329() { - OpenTK.Graphics.ES30.GetIndexedPName _target = default(OpenTK.Graphics.ES30.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Int32[] _data = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetInteger(_target,_index,_data); -} -static unsafe void Test_GetInteger_33330() { - OpenTK.Graphics.ES30.GetIndexedPName _target = default(OpenTK.Graphics.ES30.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Int32 _data = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetInteger(_target,_index,out _data); -} -static unsafe void Test_GetInteger_33331() { - OpenTK.Graphics.ES30.GetIndexedPName _target = default(OpenTK.Graphics.ES30.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Int32* _data = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetInteger(_target,_index,_data); -} -static unsafe void Test_GetInteger_33332() { - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 r = OpenTK.Graphics.ES30.GL.GetInteger(_pname); -} -static unsafe void Test_GetInteger_33333() { - OpenTK.Graphics.ES30.GetPName _pname = default(OpenTK.Graphics.ES30.GetPName); - System.Int32 r = OpenTK.Graphics.ES30.GL.GetInteger(_pname); -} -static unsafe void Test_GetInteger_33334() { - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32[] _data = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetInteger(_pname,_data); -} -static unsafe void Test_GetInteger_33335() { - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _data = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetInteger(_pname,out _data); -} -static unsafe void Test_GetInteger_33336() { - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32* _data = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetInteger(_pname,_data); -} -static unsafe void Test_GetInteger_33337() { - OpenTK.Graphics.ES30.GetPName _pname = default(OpenTK.Graphics.ES30.GetPName); - System.Int32[] _data = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetInteger(_pname,_data); -} -static unsafe void Test_GetInteger_33338() { - OpenTK.Graphics.ES30.GetPName _pname = default(OpenTK.Graphics.ES30.GetPName); - System.Int32 _data = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetInteger(_pname,out _data); -} -static unsafe void Test_GetInteger_33339() { - OpenTK.Graphics.ES30.GetPName _pname = default(OpenTK.Graphics.ES30.GetPName); - System.Int32* _data = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetInteger(_pname,_data); -} -static unsafe void Test_GetInternalformat_33340() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetInternalformat(_target,_internalformat,_pname,_bufSize,_params); -} -static unsafe void Test_GetInternalformat_33341() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetInternalformat(_target,_internalformat,_pname,_bufSize,out _params); -} -static unsafe void Test_GetInternalformat_33342() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetInternalformat(_target,_internalformat,_pname,_bufSize,_params); -} -static unsafe void Test_GetInternalformat_33343() { - OpenTK.Graphics.ES30.ImageTarget _target = default(OpenTK.Graphics.ES30.ImageTarget); - OpenTK.Graphics.ES30.SizedInternalFormat _internalformat = default(OpenTK.Graphics.ES30.SizedInternalFormat); - OpenTK.Graphics.ES30.InternalFormatParameter _pname = default(OpenTK.Graphics.ES30.InternalFormatParameter); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetInternalformat(_target,_internalformat,_pname,_bufSize,_params); -} -static unsafe void Test_GetInternalformat_33344() { - OpenTK.Graphics.ES30.ImageTarget _target = default(OpenTK.Graphics.ES30.ImageTarget); - OpenTK.Graphics.ES30.SizedInternalFormat _internalformat = default(OpenTK.Graphics.ES30.SizedInternalFormat); - OpenTK.Graphics.ES30.InternalFormatParameter _pname = default(OpenTK.Graphics.ES30.InternalFormatParameter); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetInternalformat(_target,_internalformat,_pname,_bufSize,out _params); -} -static unsafe void Test_GetInternalformat_33345() { - OpenTK.Graphics.ES30.ImageTarget _target = default(OpenTK.Graphics.ES30.ImageTarget); - OpenTK.Graphics.ES30.SizedInternalFormat _internalformat = default(OpenTK.Graphics.ES30.SizedInternalFormat); - OpenTK.Graphics.ES30.InternalFormatParameter _pname = default(OpenTK.Graphics.ES30.InternalFormatParameter); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetInternalformat(_target,_internalformat,_pname,_bufSize,_params); -} -static unsafe void Test_GetObjectLabel_33346() { - OpenTK.Graphics.ES30.All _identifier = default(OpenTK.Graphics.ES30.All); - System.Int32 _name = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_33347() { - OpenTK.Graphics.ES30.All _identifier = default(OpenTK.Graphics.ES30.All); - System.Int32 _name = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetObjectLabel(_identifier,_name,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectLabel_33348() { - OpenTK.Graphics.ES30.All _identifier = default(OpenTK.Graphics.ES30.All); - System.Int32 _name = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_33349() { - OpenTK.Graphics.ES30.All _identifier = default(OpenTK.Graphics.ES30.All); - System.UInt32 _name = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_33350() { - OpenTK.Graphics.ES30.All _identifier = default(OpenTK.Graphics.ES30.All); - System.UInt32 _name = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetObjectLabel(_identifier,_name,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectLabel_33351() { - OpenTK.Graphics.ES30.All _identifier = default(OpenTK.Graphics.ES30.All); - System.UInt32 _name = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_33352() { - OpenTK.Graphics.ES30.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.ES30.ObjectLabelIdentifier); - System.Int32 _name = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_33353() { - OpenTK.Graphics.ES30.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.ES30.ObjectLabelIdentifier); - System.Int32 _name = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetObjectLabel(_identifier,_name,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectLabel_33354() { - OpenTK.Graphics.ES30.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.ES30.ObjectLabelIdentifier); - System.Int32 _name = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_33355() { - OpenTK.Graphics.ES30.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.ES30.ObjectLabelIdentifier); - System.UInt32 _name = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_33356() { - OpenTK.Graphics.ES30.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.ES30.ObjectLabelIdentifier); - System.UInt32 _name = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetObjectLabel(_identifier,_name,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectLabel_33357() { - OpenTK.Graphics.ES30.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.ES30.ObjectLabelIdentifier); - System.UInt32 _name = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_33358() { - System.IntPtr _ptr = default(System.IntPtr); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_33359() { - System.IntPtr _ptr = default(System.IntPtr); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetObjectPtrLabel(_ptr,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectPtrLabel_33360() { - System.IntPtr _ptr = default(System.IntPtr); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_33361() { - int[] _ptr = default(int[]); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_33362() { - int[] _ptr = default(int[]); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetObjectPtrLabel(_ptr,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectPtrLabel_33363() { - int[] _ptr = default(int[]); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_33364() { - int[,] _ptr = default(int[,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_33365() { - int[,] _ptr = default(int[,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetObjectPtrLabel(_ptr,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectPtrLabel_33366() { - int[,] _ptr = default(int[,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_33367() { - int[,,] _ptr = default(int[,,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_33368() { - int[,,] _ptr = default(int[,,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetObjectPtrLabel(_ptr,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectPtrLabel_33369() { - int[,,] _ptr = default(int[,,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_33370() { - int _ptr = default(int); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetObjectPtrLabel(ref _ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_33371() { - int _ptr = default(int); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetObjectPtrLabel(ref _ptr,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectPtrLabel_33372() { - int _ptr = default(int); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetObjectPtrLabel(ref _ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetPointer_33373() { - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.IntPtr _params = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_33374() { - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - int[] _params = default(int[]); - OpenTK.Graphics.ES30.GL.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_33375() { - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - int[,] _params = default(int[,]); - OpenTK.Graphics.ES30.GL.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_33376() { - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - int[,,] _params = default(int[,,]); - OpenTK.Graphics.ES30.GL.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_33377() { - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - int _params = default(int); - OpenTK.Graphics.ES30.GL.GetPointer(_pname,ref _params); -} -static unsafe void Test_GetPointer_33378() { - OpenTK.Graphics.ES30.GetPointervPName _pname = default(OpenTK.Graphics.ES30.GetPointervPName); - System.IntPtr _params = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_33379() { - OpenTK.Graphics.ES30.GetPointervPName _pname = default(OpenTK.Graphics.ES30.GetPointervPName); - int[] _params = default(int[]); - OpenTK.Graphics.ES30.GL.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_33380() { - OpenTK.Graphics.ES30.GetPointervPName _pname = default(OpenTK.Graphics.ES30.GetPointervPName); - int[,] _params = default(int[,]); - OpenTK.Graphics.ES30.GL.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_33381() { - OpenTK.Graphics.ES30.GetPointervPName _pname = default(OpenTK.Graphics.ES30.GetPointervPName); - int[,,] _params = default(int[,,]); - OpenTK.Graphics.ES30.GL.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_33382() { - OpenTK.Graphics.ES30.GetPointervPName _pname = default(OpenTK.Graphics.ES30.GetPointervPName); - int _params = default(int); - OpenTK.Graphics.ES30.GL.GetPointer(_pname,ref _params); -} -static unsafe void Test_GetProgramBinary_33383() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.All _binaryFormat = default(OpenTK.Graphics.ES30.All); - System.IntPtr _binary = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_33384() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.All _binaryFormat = default(OpenTK.Graphics.ES30.All); - int[] _binary = default(int[]); - OpenTK.Graphics.ES30.GL.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_33385() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.All _binaryFormat = default(OpenTK.Graphics.ES30.All); - int[,] _binary = default(int[,]); - OpenTK.Graphics.ES30.GL.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_33386() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.All _binaryFormat = default(OpenTK.Graphics.ES30.All); - int[,,] _binary = default(int[,,]); - OpenTK.Graphics.ES30.GL.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_33387() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.All _binaryFormat = default(OpenTK.Graphics.ES30.All); - int _binary = default(int); - OpenTK.Graphics.ES30.GL.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,ref _binary); -} -static unsafe void Test_GetProgramBinary_33388() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.ES30.All* _binaryFormat = default(OpenTK.Graphics.ES30.All*); - System.IntPtr _binary = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_33389() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.ES30.All* _binaryFormat = default(OpenTK.Graphics.ES30.All*); - int[] _binary = default(int[]); - OpenTK.Graphics.ES30.GL.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_33390() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.ES30.All* _binaryFormat = default(OpenTK.Graphics.ES30.All*); - int[,] _binary = default(int[,]); - OpenTK.Graphics.ES30.GL.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_33391() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.ES30.All* _binaryFormat = default(OpenTK.Graphics.ES30.All*); - int[,,] _binary = default(int[,,]); - OpenTK.Graphics.ES30.GL.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_33392() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.ES30.All* _binaryFormat = default(OpenTK.Graphics.ES30.All*); - int _binary = default(int); - OpenTK.Graphics.ES30.GL.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,ref _binary); -} -static unsafe void Test_GetProgramBinary_33393() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.All _binaryFormat = default(OpenTK.Graphics.ES30.All); - System.IntPtr _binary = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_33394() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.All _binaryFormat = default(OpenTK.Graphics.ES30.All); - int[] _binary = default(int[]); - OpenTK.Graphics.ES30.GL.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_33395() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.All _binaryFormat = default(OpenTK.Graphics.ES30.All); - int[,] _binary = default(int[,]); - OpenTK.Graphics.ES30.GL.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_33396() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.All _binaryFormat = default(OpenTK.Graphics.ES30.All); - int[,,] _binary = default(int[,,]); - OpenTK.Graphics.ES30.GL.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_33397() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.All _binaryFormat = default(OpenTK.Graphics.ES30.All); - int _binary = default(int); - OpenTK.Graphics.ES30.GL.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,ref _binary); -} -static unsafe void Test_GetProgramBinary_33398() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.ES30.All* _binaryFormat = default(OpenTK.Graphics.ES30.All*); - System.IntPtr _binary = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_33399() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.ES30.All* _binaryFormat = default(OpenTK.Graphics.ES30.All*); - int[] _binary = default(int[]); - OpenTK.Graphics.ES30.GL.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_33400() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.ES30.All* _binaryFormat = default(OpenTK.Graphics.ES30.All*); - int[,] _binary = default(int[,]); - OpenTK.Graphics.ES30.GL.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_33401() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.ES30.All* _binaryFormat = default(OpenTK.Graphics.ES30.All*); - int[,,] _binary = default(int[,,]); - OpenTK.Graphics.ES30.GL.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_33402() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.ES30.All* _binaryFormat = default(OpenTK.Graphics.ES30.All*); - int _binary = default(int); - OpenTK.Graphics.ES30.GL.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,ref _binary); -} -static unsafe void Test_GetProgramInfoLog_33403() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetProgramInfoLog(_program,_bufSize,out _length,_infoLog); -} -static unsafe void Test_GetProgramInfoLog_33404() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetProgramInfoLog(_program,_bufSize,_length,_infoLog); -} -static unsafe void Test_GetProgramInfoLog_33405() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetProgramInfoLog(_program,_bufSize,out _length,_infoLog); -} -static unsafe void Test_GetProgramInfoLog_33406() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetProgramInfoLog(_program,_bufSize,_length,_infoLog); -} -static unsafe void Test_GetProgram_33407() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetProgram(_program,_pname,_params); -} -static unsafe void Test_GetProgram_33408() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetProgram(_program,_pname,out _params); -} -static unsafe void Test_GetProgram_33409() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetProgram(_program,_pname,_params); -} -static unsafe void Test_GetProgram_33410() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES30.GetProgramParameterName _pname = default(OpenTK.Graphics.ES30.GetProgramParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetProgram(_program,_pname,_params); -} -static unsafe void Test_GetProgram_33411() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES30.GetProgramParameterName _pname = default(OpenTK.Graphics.ES30.GetProgramParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetProgram(_program,_pname,out _params); -} -static unsafe void Test_GetProgram_33412() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES30.GetProgramParameterName _pname = default(OpenTK.Graphics.ES30.GetProgramParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetProgram(_program,_pname,_params); -} -static unsafe void Test_GetProgram_33413() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetProgram(_program,_pname,_params); -} -static unsafe void Test_GetProgram_33414() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetProgram(_program,_pname,out _params); -} -static unsafe void Test_GetProgram_33415() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetProgram(_program,_pname,_params); -} -static unsafe void Test_GetProgram_33416() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES30.GetProgramParameterName _pname = default(OpenTK.Graphics.ES30.GetProgramParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetProgram(_program,_pname,_params); -} -static unsafe void Test_GetProgram_33417() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES30.GetProgramParameterName _pname = default(OpenTK.Graphics.ES30.GetProgramParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetProgram(_program,_pname,out _params); -} -static unsafe void Test_GetProgram_33418() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES30.GetProgramParameterName _pname = default(OpenTK.Graphics.ES30.GetProgramParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetProgram(_program,_pname,_params); -} -static unsafe void Test_GetQuery_33419() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetQuery(_target,_pname,_params); -} -static unsafe void Test_GetQuery_33420() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetQuery(_target,_pname,out _params); -} -static unsafe void Test_GetQuery_33421() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetQuery(_target,_pname,_params); -} -static unsafe void Test_GetQuery_33422() { - OpenTK.Graphics.ES30.QueryTarget _target = default(OpenTK.Graphics.ES30.QueryTarget); - OpenTK.Graphics.ES30.GetQueryParam _pname = default(OpenTK.Graphics.ES30.GetQueryParam); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetQuery(_target,_pname,_params); -} -static unsafe void Test_GetQuery_33423() { - OpenTK.Graphics.ES30.QueryTarget _target = default(OpenTK.Graphics.ES30.QueryTarget); - OpenTK.Graphics.ES30.GetQueryParam _pname = default(OpenTK.Graphics.ES30.GetQueryParam); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetQuery(_target,_pname,out _params); -} -static unsafe void Test_GetQuery_33424() { - OpenTK.Graphics.ES30.QueryTarget _target = default(OpenTK.Graphics.ES30.QueryTarget); - OpenTK.Graphics.ES30.GetQueryParam _pname = default(OpenTK.Graphics.ES30.GetQueryParam); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetQuery(_target,_pname,_params); -} -static unsafe void Test_GetQueryObject_33425() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_33426() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_33427() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_33428() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES30.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES30.GetQueryObjectParam); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_33429() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES30.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES30.GetQueryObjectParam); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_33430() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES30.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES30.GetQueryObjectParam); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_33431() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_33432() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.ES30.GL.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_33433() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_33434() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES30.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES30.GetQueryObjectParam); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_33435() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES30.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES30.GetQueryObjectParam); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.ES30.GL.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_33436() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES30.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES30.GetQueryObjectParam); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetRenderbufferParameter_33437() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetRenderbufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetRenderbufferParameter_33438() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetRenderbufferParameter(_target,_pname,out _params); -} -static unsafe void Test_GetRenderbufferParameter_33439() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetRenderbufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetRenderbufferParameter_33440() { - OpenTK.Graphics.ES30.RenderbufferTarget _target = default(OpenTK.Graphics.ES30.RenderbufferTarget); - OpenTK.Graphics.ES30.RenderbufferParameterName _pname = default(OpenTK.Graphics.ES30.RenderbufferParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetRenderbufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetRenderbufferParameter_33441() { - OpenTK.Graphics.ES30.RenderbufferTarget _target = default(OpenTK.Graphics.ES30.RenderbufferTarget); - OpenTK.Graphics.ES30.RenderbufferParameterName _pname = default(OpenTK.Graphics.ES30.RenderbufferParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetRenderbufferParameter(_target,_pname,out _params); -} -static unsafe void Test_GetRenderbufferParameter_33442() { - OpenTK.Graphics.ES30.RenderbufferTarget _target = default(OpenTK.Graphics.ES30.RenderbufferTarget); - OpenTK.Graphics.ES30.RenderbufferParameterName _pname = default(OpenTK.Graphics.ES30.RenderbufferParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetRenderbufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetSamplerParameter_33443() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES30.GL.GetSamplerParameter(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameter_33444() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Single _params = default(System.Single); - OpenTK.Graphics.ES30.GL.GetSamplerParameter(_sampler,_pname,out _params); -} -static unsafe void Test_GetSamplerParameter_33445() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES30.GL.GetSamplerParameter(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameter_33446() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.ES30.SamplerParameterName _pname = default(OpenTK.Graphics.ES30.SamplerParameterName); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES30.GL.GetSamplerParameter(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameter_33447() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.ES30.SamplerParameterName _pname = default(OpenTK.Graphics.ES30.SamplerParameterName); - System.Single _params = default(System.Single); - OpenTK.Graphics.ES30.GL.GetSamplerParameter(_sampler,_pname,out _params); -} -static unsafe void Test_GetSamplerParameter_33448() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.ES30.SamplerParameterName _pname = default(OpenTK.Graphics.ES30.SamplerParameterName); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES30.GL.GetSamplerParameter(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameter_33449() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES30.GL.GetSamplerParameter(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameter_33450() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Single _params = default(System.Single); - OpenTK.Graphics.ES30.GL.GetSamplerParameter(_sampler,_pname,out _params); -} -static unsafe void Test_GetSamplerParameter_33451() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES30.GL.GetSamplerParameter(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameter_33452() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES30.SamplerParameterName _pname = default(OpenTK.Graphics.ES30.SamplerParameterName); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES30.GL.GetSamplerParameter(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameter_33453() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES30.SamplerParameterName _pname = default(OpenTK.Graphics.ES30.SamplerParameterName); - System.Single _params = default(System.Single); - OpenTK.Graphics.ES30.GL.GetSamplerParameter(_sampler,_pname,out _params); -} -static unsafe void Test_GetSamplerParameter_33454() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES30.SamplerParameterName _pname = default(OpenTK.Graphics.ES30.SamplerParameterName); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES30.GL.GetSamplerParameter(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameter_33455() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetSamplerParameter(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameter_33456() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetSamplerParameter(_sampler,_pname,out _params); -} -static unsafe void Test_GetSamplerParameter_33457() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetSamplerParameter(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameter_33458() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.ES30.SamplerParameterName _pname = default(OpenTK.Graphics.ES30.SamplerParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetSamplerParameter(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameter_33459() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.ES30.SamplerParameterName _pname = default(OpenTK.Graphics.ES30.SamplerParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetSamplerParameter(_sampler,_pname,out _params); -} -static unsafe void Test_GetSamplerParameter_33460() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.ES30.SamplerParameterName _pname = default(OpenTK.Graphics.ES30.SamplerParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetSamplerParameter(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameter_33461() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetSamplerParameter(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameter_33462() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetSamplerParameter(_sampler,_pname,out _params); -} -static unsafe void Test_GetSamplerParameter_33463() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetSamplerParameter(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameter_33464() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES30.SamplerParameterName _pname = default(OpenTK.Graphics.ES30.SamplerParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetSamplerParameter(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameter_33465() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES30.SamplerParameterName _pname = default(OpenTK.Graphics.ES30.SamplerParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetSamplerParameter(_sampler,_pname,out _params); -} -static unsafe void Test_GetSamplerParameter_33466() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES30.SamplerParameterName _pname = default(OpenTK.Graphics.ES30.SamplerParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetSamplerParameter(_sampler,_pname,_params); -} -static unsafe void Test_GetShaderInfoLog_33467() { - System.Int32 _shader = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetShaderInfoLog(_shader,_bufSize,out _length,_infoLog); -} -static unsafe void Test_GetShaderInfoLog_33468() { - System.Int32 _shader = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetShaderInfoLog(_shader,_bufSize,_length,_infoLog); -} -static unsafe void Test_GetShaderInfoLog_33469() { - System.UInt32 _shader = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetShaderInfoLog(_shader,_bufSize,out _length,_infoLog); -} -static unsafe void Test_GetShaderInfoLog_33470() { - System.UInt32 _shader = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetShaderInfoLog(_shader,_bufSize,_length,_infoLog); -} -static unsafe void Test_GetShader_33471() { - System.Int32 _shader = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetShader(_shader,_pname,_params); -} -static unsafe void Test_GetShader_33472() { - System.Int32 _shader = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetShader(_shader,_pname,out _params); -} -static unsafe void Test_GetShader_33473() { - System.Int32 _shader = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetShader(_shader,_pname,_params); -} -static unsafe void Test_GetShader_33474() { - System.Int32 _shader = default(System.Int32); - OpenTK.Graphics.ES30.ShaderParameter _pname = default(OpenTK.Graphics.ES30.ShaderParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetShader(_shader,_pname,_params); -} -static unsafe void Test_GetShader_33475() { - System.Int32 _shader = default(System.Int32); - OpenTK.Graphics.ES30.ShaderParameter _pname = default(OpenTK.Graphics.ES30.ShaderParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetShader(_shader,_pname,out _params); -} -static unsafe void Test_GetShader_33476() { - System.Int32 _shader = default(System.Int32); - OpenTK.Graphics.ES30.ShaderParameter _pname = default(OpenTK.Graphics.ES30.ShaderParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetShader(_shader,_pname,_params); -} -static unsafe void Test_GetShader_33477() { - System.UInt32 _shader = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetShader(_shader,_pname,_params); -} -static unsafe void Test_GetShader_33478() { - System.UInt32 _shader = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetShader(_shader,_pname,out _params); -} -static unsafe void Test_GetShader_33479() { - System.UInt32 _shader = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetShader(_shader,_pname,_params); -} -static unsafe void Test_GetShader_33480() { - System.UInt32 _shader = default(System.UInt32); - OpenTK.Graphics.ES30.ShaderParameter _pname = default(OpenTK.Graphics.ES30.ShaderParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetShader(_shader,_pname,_params); -} -static unsafe void Test_GetShader_33481() { - System.UInt32 _shader = default(System.UInt32); - OpenTK.Graphics.ES30.ShaderParameter _pname = default(OpenTK.Graphics.ES30.ShaderParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetShader(_shader,_pname,out _params); -} -static unsafe void Test_GetShader_33482() { - System.UInt32 _shader = default(System.UInt32); - OpenTK.Graphics.ES30.ShaderParameter _pname = default(OpenTK.Graphics.ES30.ShaderParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetShader(_shader,_pname,_params); -} -static unsafe void Test_GetShaderPrecisionFormat_33483() { - OpenTK.Graphics.ES30.All _shadertype = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _precisiontype = default(OpenTK.Graphics.ES30.All); - System.Int32[] _range = default(System.Int32[]); - System.Int32[] _precision = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetShaderPrecisionFormat(_shadertype,_precisiontype,_range,_precision); -} -static unsafe void Test_GetShaderPrecisionFormat_33484() { - OpenTK.Graphics.ES30.All _shadertype = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _precisiontype = default(OpenTK.Graphics.ES30.All); - System.Int32 _range = default(System.Int32); - System.Int32 _precision = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetShaderPrecisionFormat(_shadertype,_precisiontype,out _range,out _precision); -} -static unsafe void Test_GetShaderPrecisionFormat_33485() { - OpenTK.Graphics.ES30.All _shadertype = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _precisiontype = default(OpenTK.Graphics.ES30.All); - System.Int32* _range = default(System.Int32*); - System.Int32* _precision = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetShaderPrecisionFormat(_shadertype,_precisiontype,_range,_precision); -} -static unsafe void Test_GetShaderPrecisionFormat_33486() { - OpenTK.Graphics.ES30.ShaderType _shadertype = default(OpenTK.Graphics.ES30.ShaderType); - OpenTK.Graphics.ES30.ShaderPrecision _precisiontype = default(OpenTK.Graphics.ES30.ShaderPrecision); - System.Int32[] _range = default(System.Int32[]); - System.Int32[] _precision = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetShaderPrecisionFormat(_shadertype,_precisiontype,_range,_precision); -} -static unsafe void Test_GetShaderPrecisionFormat_33487() { - OpenTK.Graphics.ES30.ShaderType _shadertype = default(OpenTK.Graphics.ES30.ShaderType); - OpenTK.Graphics.ES30.ShaderPrecision _precisiontype = default(OpenTK.Graphics.ES30.ShaderPrecision); - System.Int32 _range = default(System.Int32); - System.Int32 _precision = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetShaderPrecisionFormat(_shadertype,_precisiontype,out _range,out _precision); -} -static unsafe void Test_GetShaderPrecisionFormat_33488() { - OpenTK.Graphics.ES30.ShaderType _shadertype = default(OpenTK.Graphics.ES30.ShaderType); - OpenTK.Graphics.ES30.ShaderPrecision _precisiontype = default(OpenTK.Graphics.ES30.ShaderPrecision); - System.Int32* _range = default(System.Int32*); - System.Int32* _precision = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetShaderPrecisionFormat(_shadertype,_precisiontype,_range,_precision); -} -static unsafe void Test_GetShaderSource_33489() { - System.Int32 _shader = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetShaderSource(_shader,_bufSize,out _length,_source); -} -static unsafe void Test_GetShaderSource_33490() { - System.Int32 _shader = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetShaderSource(_shader,_bufSize,_length,_source); -} -static unsafe void Test_GetShaderSource_33491() { - System.UInt32 _shader = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetShaderSource(_shader,_bufSize,out _length,_source); -} -static unsafe void Test_GetShaderSource_33492() { - System.UInt32 _shader = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetShaderSource(_shader,_bufSize,_length,_source); -} -static unsafe void Test_GetString_33493() { - OpenTK.Graphics.ES30.All _name = default(OpenTK.Graphics.ES30.All); - System.String r = OpenTK.Graphics.ES30.GL.GetString(_name); -} -static unsafe void Test_GetString_33494() { - OpenTK.Graphics.ES30.StringName _name = default(OpenTK.Graphics.ES30.StringName); - System.String r = OpenTK.Graphics.ES30.GL.GetString(_name); -} -static unsafe void Test_GetString_33495() { - OpenTK.Graphics.ES30.All _name = default(OpenTK.Graphics.ES30.All); - System.Int32 _index = default(System.Int32); - System.String r = OpenTK.Graphics.ES30.GL.GetString(_name,_index); -} -static unsafe void Test_GetString_33496() { - OpenTK.Graphics.ES30.All _name = default(OpenTK.Graphics.ES30.All); - System.UInt32 _index = default(System.UInt32); - System.String r = OpenTK.Graphics.ES30.GL.GetString(_name,_index); -} -static unsafe void Test_GetString_33497() { - OpenTK.Graphics.ES30.StringNameIndexed _name = default(OpenTK.Graphics.ES30.StringNameIndexed); - System.Int32 _index = default(System.Int32); - System.String r = OpenTK.Graphics.ES30.GL.GetString(_name,_index); -} -static unsafe void Test_GetString_33498() { - OpenTK.Graphics.ES30.StringNameIndexed _name = default(OpenTK.Graphics.ES30.StringNameIndexed); - System.UInt32 _index = default(System.UInt32); - System.String r = OpenTK.Graphics.ES30.GL.GetString(_name,_index); -} -static unsafe void Test_GetSync_33499() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32[] _values = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetSync(_sync,_pname,_bufSize,out _length,_values); -} -static unsafe void Test_GetSync_33500() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _values = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetSync(_sync,_pname,_bufSize,out _length,out _values); -} -static unsafe void Test_GetSync_33501() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _values = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetSync(_sync,_pname,_bufSize,_length,_values); -} -static unsafe void Test_GetSync_33502() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES30.SyncParameterName _pname = default(OpenTK.Graphics.ES30.SyncParameterName); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32[] _values = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetSync(_sync,_pname,_bufSize,out _length,_values); -} -static unsafe void Test_GetSync_33503() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES30.SyncParameterName _pname = default(OpenTK.Graphics.ES30.SyncParameterName); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _values = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetSync(_sync,_pname,_bufSize,out _length,out _values); -} -static unsafe void Test_GetSync_33504() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES30.SyncParameterName _pname = default(OpenTK.Graphics.ES30.SyncParameterName); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _values = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetSync(_sync,_pname,_bufSize,_length,_values); -} -static unsafe void Test_GetTexParameter_33505() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES30.GL.GetTexParameter(_target,_pname,_params); -} -static unsafe void Test_GetTexParameter_33506() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Single _params = default(System.Single); - OpenTK.Graphics.ES30.GL.GetTexParameter(_target,_pname,out _params); -} -static unsafe void Test_GetTexParameter_33507() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES30.GL.GetTexParameter(_target,_pname,_params); -} -static unsafe void Test_GetTexParameter_33508() { - OpenTK.Graphics.ES30.TextureTarget _target = default(OpenTK.Graphics.ES30.TextureTarget); - OpenTK.Graphics.ES30.GetTextureParameterName _pname = default(OpenTK.Graphics.ES30.GetTextureParameterName); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES30.GL.GetTexParameter(_target,_pname,_params); -} -static unsafe void Test_GetTexParameter_33509() { - OpenTK.Graphics.ES30.TextureTarget _target = default(OpenTK.Graphics.ES30.TextureTarget); - OpenTK.Graphics.ES30.GetTextureParameterName _pname = default(OpenTK.Graphics.ES30.GetTextureParameterName); - System.Single _params = default(System.Single); - OpenTK.Graphics.ES30.GL.GetTexParameter(_target,_pname,out _params); -} -static unsafe void Test_GetTexParameter_33510() { - OpenTK.Graphics.ES30.TextureTarget _target = default(OpenTK.Graphics.ES30.TextureTarget); - OpenTK.Graphics.ES30.GetTextureParameterName _pname = default(OpenTK.Graphics.ES30.GetTextureParameterName); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES30.GL.GetTexParameter(_target,_pname,_params); -} -static unsafe void Test_GetTexParameter_33511() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetTexParameter(_target,_pname,_params); -} -static unsafe void Test_GetTexParameter_33512() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetTexParameter(_target,_pname,out _params); -} -static unsafe void Test_GetTexParameter_33513() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetTexParameter(_target,_pname,_params); -} -static unsafe void Test_GetTexParameter_33514() { - OpenTK.Graphics.ES30.TextureTarget _target = default(OpenTK.Graphics.ES30.TextureTarget); - OpenTK.Graphics.ES30.GetTextureParameterName _pname = default(OpenTK.Graphics.ES30.GetTextureParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetTexParameter(_target,_pname,_params); -} -static unsafe void Test_GetTexParameter_33515() { - OpenTK.Graphics.ES30.TextureTarget _target = default(OpenTK.Graphics.ES30.TextureTarget); - OpenTK.Graphics.ES30.GetTextureParameterName _pname = default(OpenTK.Graphics.ES30.GetTextureParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetTexParameter(_target,_pname,out _params); -} -static unsafe void Test_GetTexParameter_33516() { - OpenTK.Graphics.ES30.TextureTarget _target = default(OpenTK.Graphics.ES30.TextureTarget); - OpenTK.Graphics.ES30.GetTextureParameterName _pname = default(OpenTK.Graphics.ES30.GetTextureParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetTexParameter(_target,_pname,_params); -} -static unsafe void Test_GetTransformFeedbackVarying_33517() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetTransformFeedbackVarying(_program,_index,_bufSize,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetTransformFeedbackVarying_33518() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.TransformFeedbackType _type = default(OpenTK.Graphics.ES30.TransformFeedbackType); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetTransformFeedbackVarying(_program,_index,_bufSize,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetTransformFeedbackVarying_33519() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.ES30.All* _type = default(OpenTK.Graphics.ES30.All*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetTransformFeedbackVarying(_program,_index,_bufSize,_length,_size,_type,_name); -} -static unsafe void Test_GetTransformFeedbackVarying_33520() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.ES30.TransformFeedbackType* _type = default(OpenTK.Graphics.ES30.TransformFeedbackType*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetTransformFeedbackVarying(_program,_index,_bufSize,_length,_size,_type,_name); -} -static unsafe void Test_GetTransformFeedbackVarying_33521() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetTransformFeedbackVarying(_program,_index,_bufSize,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetTransformFeedbackVarying_33522() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.TransformFeedbackType _type = default(OpenTK.Graphics.ES30.TransformFeedbackType); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetTransformFeedbackVarying(_program,_index,_bufSize,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetTransformFeedbackVarying_33523() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.ES30.All* _type = default(OpenTK.Graphics.ES30.All*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetTransformFeedbackVarying(_program,_index,_bufSize,_length,_size,_type,_name); -} -static unsafe void Test_GetTransformFeedbackVarying_33524() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.ES30.TransformFeedbackType* _type = default(OpenTK.Graphics.ES30.TransformFeedbackType*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.GetTransformFeedbackVarying(_program,_index,_bufSize,_length,_size,_type,_name); -} -static unsafe void Test_GetUniformBlockIndex_33525() { - System.Int32 _program = default(System.Int32); - System.String _uniformBlockName = default(System.String); - System.Int32 r = OpenTK.Graphics.ES30.GL.GetUniformBlockIndex(_program,_uniformBlockName); -} -static unsafe void Test_GetUniformBlockIndex_33526() { - System.UInt32 _program = default(System.UInt32); - System.String _uniformBlockName = default(System.String); - System.Int32 r = OpenTK.Graphics.ES30.GL.GetUniformBlockIndex(_program,_uniformBlockName); -} -static unsafe void Test_GetUniform_33527() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES30.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_33528() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Single _params = default(System.Single); - OpenTK.Graphics.ES30.GL.GetUniform(_program,_location,out _params); -} -static unsafe void Test_GetUniform_33529() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES30.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_33530() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES30.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_33531() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Single _params = default(System.Single); - OpenTK.Graphics.ES30.GL.GetUniform(_program,_location,out _params); -} -static unsafe void Test_GetUniform_33532() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES30.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniformIndices_33533() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformCount = default(System.Int32); - System.String[] _uniformNames = default(System.String[]); - System.Int32[] _uniformIndices = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetUniformIndices(_program,_uniformCount,_uniformNames,_uniformIndices); -} -static unsafe void Test_GetUniformIndices_33534() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformCount = default(System.Int32); - System.String[] _uniformNames = default(System.String[]); - System.Int32 _uniformIndices = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetUniformIndices(_program,_uniformCount,_uniformNames,out _uniformIndices); -} -static unsafe void Test_GetUniformIndices_33535() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformCount = default(System.Int32); - System.String[] _uniformNames = default(System.String[]); - System.Int32* _uniformIndices = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetUniformIndices(_program,_uniformCount,_uniformNames,_uniformIndices); -} -static unsafe void Test_GetUniformIndices_33536() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _uniformCount = default(System.Int32); - System.String[] _uniformNames = default(System.String[]); - System.UInt32[] _uniformIndices = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.GetUniformIndices(_program,_uniformCount,_uniformNames,_uniformIndices); -} -static unsafe void Test_GetUniformIndices_33537() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _uniformCount = default(System.Int32); - System.String[] _uniformNames = default(System.String[]); - System.UInt32 _uniformIndices = default(System.UInt32); - OpenTK.Graphics.ES30.GL.GetUniformIndices(_program,_uniformCount,_uniformNames,out _uniformIndices); -} -static unsafe void Test_GetUniformIndices_33538() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _uniformCount = default(System.Int32); - System.String[] _uniformNames = default(System.String[]); - System.UInt32* _uniformIndices = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.GetUniformIndices(_program,_uniformCount,_uniformNames,_uniformIndices); -} -static unsafe void Test_GetUniform_33539() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_33540() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetUniform(_program,_location,out _params); -} -static unsafe void Test_GetUniform_33541() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_33542() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_33543() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetUniform(_program,_location,out _params); -} -static unsafe void Test_GetUniform_33544() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniformLocation_33545() { - System.Int32 _program = default(System.Int32); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.ES30.GL.GetUniformLocation(_program,_name); -} -static unsafe void Test_GetUniformLocation_33546() { - System.UInt32 _program = default(System.UInt32); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.ES30.GL.GetUniformLocation(_program,_name); -} -static unsafe void Test_GetUniform_33547() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_33548() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.ES30.GL.GetUniform(_program,_location,out _params); -} -static unsafe void Test_GetUniform_33549() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetVertexAttrib_33550() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES30.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_33551() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Single _params = default(System.Single); - OpenTK.Graphics.ES30.GL.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_33552() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES30.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_33553() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES30.VertexAttribParameter _pname = default(OpenTK.Graphics.ES30.VertexAttribParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES30.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_33554() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES30.VertexAttribParameter _pname = default(OpenTK.Graphics.ES30.VertexAttribParameter); - System.Single _params = default(System.Single); - OpenTK.Graphics.ES30.GL.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_33555() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES30.VertexAttribParameter _pname = default(OpenTK.Graphics.ES30.VertexAttribParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES30.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_33556() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES30.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_33557() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Single _params = default(System.Single); - OpenTK.Graphics.ES30.GL.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_33558() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES30.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_33559() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES30.VertexAttribParameter _pname = default(OpenTK.Graphics.ES30.VertexAttribParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES30.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_33560() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES30.VertexAttribParameter _pname = default(OpenTK.Graphics.ES30.VertexAttribParameter); - System.Single _params = default(System.Single); - OpenTK.Graphics.ES30.GL.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_33561() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES30.VertexAttribParameter _pname = default(OpenTK.Graphics.ES30.VertexAttribParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES30.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribI_33562() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetVertexAttribI(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttribI_33563() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetVertexAttribI(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribI_33564() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetVertexAttribI(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttribI_33565() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetVertexAttribI(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribI_33566() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.ES30.GL.GetVertexAttribI(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttribI_33567() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.GetVertexAttribI(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_33568() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_33569() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_33570() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_33571() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES30.VertexAttribParameter _pname = default(OpenTK.Graphics.ES30.VertexAttribParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_33572() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES30.VertexAttribParameter _pname = default(OpenTK.Graphics.ES30.VertexAttribParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_33573() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES30.VertexAttribParameter _pname = default(OpenTK.Graphics.ES30.VertexAttribParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_33574() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_33575() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_33576() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_33577() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES30.VertexAttribParameter _pname = default(OpenTK.Graphics.ES30.VertexAttribParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_33578() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES30.VertexAttribParameter _pname = default(OpenTK.Graphics.ES30.VertexAttribParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_33579() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES30.VertexAttribParameter _pname = default(OpenTK.Graphics.ES30.VertexAttribParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribPointer_33580() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_33581() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - int[] _pointer = default(int[]); - OpenTK.Graphics.ES30.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_33582() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.ES30.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_33583() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.ES30.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_33584() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - int _pointer = default(int); - OpenTK.Graphics.ES30.GL.GetVertexAttribPointer(_index,_pname,ref _pointer); -} -static unsafe void Test_GetVertexAttribPointer_33585() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES30.VertexAttribPointerParameter _pname = default(OpenTK.Graphics.ES30.VertexAttribPointerParameter); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_33586() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES30.VertexAttribPointerParameter _pname = default(OpenTK.Graphics.ES30.VertexAttribPointerParameter); - int[] _pointer = default(int[]); - OpenTK.Graphics.ES30.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_33587() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES30.VertexAttribPointerParameter _pname = default(OpenTK.Graphics.ES30.VertexAttribPointerParameter); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.ES30.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_33588() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES30.VertexAttribPointerParameter _pname = default(OpenTK.Graphics.ES30.VertexAttribPointerParameter); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.ES30.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_33589() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES30.VertexAttribPointerParameter _pname = default(OpenTK.Graphics.ES30.VertexAttribPointerParameter); - int _pointer = default(int); - OpenTK.Graphics.ES30.GL.GetVertexAttribPointer(_index,_pname,ref _pointer); -} -static unsafe void Test_GetVertexAttribPointer_33590() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_33591() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - int[] _pointer = default(int[]); - OpenTK.Graphics.ES30.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_33592() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.ES30.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_33593() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.ES30.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_33594() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - int _pointer = default(int); - OpenTK.Graphics.ES30.GL.GetVertexAttribPointer(_index,_pname,ref _pointer); -} -static unsafe void Test_GetVertexAttribPointer_33595() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES30.VertexAttribPointerParameter _pname = default(OpenTK.Graphics.ES30.VertexAttribPointerParameter); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_33596() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES30.VertexAttribPointerParameter _pname = default(OpenTK.Graphics.ES30.VertexAttribPointerParameter); - int[] _pointer = default(int[]); - OpenTK.Graphics.ES30.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_33597() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES30.VertexAttribPointerParameter _pname = default(OpenTK.Graphics.ES30.VertexAttribPointerParameter); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.ES30.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_33598() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES30.VertexAttribPointerParameter _pname = default(OpenTK.Graphics.ES30.VertexAttribPointerParameter); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.ES30.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_33599() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES30.VertexAttribPointerParameter _pname = default(OpenTK.Graphics.ES30.VertexAttribPointerParameter); - int _pointer = default(int); - OpenTK.Graphics.ES30.GL.GetVertexAttribPointer(_index,_pname,ref _pointer); -} -static unsafe void Test_Hint_33600() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.Hint(_target,_mode); -} -static unsafe void Test_Hint_33601() { - OpenTK.Graphics.ES30.HintTarget _target = default(OpenTK.Graphics.ES30.HintTarget); - OpenTK.Graphics.ES30.HintMode _mode = default(OpenTK.Graphics.ES30.HintMode); - OpenTK.Graphics.ES30.GL.Hint(_target,_mode); -} -static unsafe void Test_InvalidateFramebuffer_33602() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _numAttachments = default(System.Int32); - OpenTK.Graphics.ES30.All[] _attachments = default(OpenTK.Graphics.ES30.All[]); - OpenTK.Graphics.ES30.GL.InvalidateFramebuffer(_target,_numAttachments,_attachments); -} -static unsafe void Test_InvalidateFramebuffer_33603() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _numAttachments = default(System.Int32); - OpenTK.Graphics.ES30.All _attachments = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.InvalidateFramebuffer(_target,_numAttachments,ref _attachments); -} -static unsafe void Test_InvalidateFramebuffer_33604() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _numAttachments = default(System.Int32); - OpenTK.Graphics.ES30.All* _attachments = default(OpenTK.Graphics.ES30.All*); - OpenTK.Graphics.ES30.GL.InvalidateFramebuffer(_target,_numAttachments,_attachments); -} -static unsafe void Test_InvalidateFramebuffer_33605() { - OpenTK.Graphics.ES30.FramebufferTarget _target = default(OpenTK.Graphics.ES30.FramebufferTarget); - System.Int32 _numAttachments = default(System.Int32); - OpenTK.Graphics.ES30.FramebufferAttachment[] _attachments = default(OpenTK.Graphics.ES30.FramebufferAttachment[]); - OpenTK.Graphics.ES30.GL.InvalidateFramebuffer(_target,_numAttachments,_attachments); -} -static unsafe void Test_InvalidateFramebuffer_33606() { - OpenTK.Graphics.ES30.FramebufferTarget _target = default(OpenTK.Graphics.ES30.FramebufferTarget); - System.Int32 _numAttachments = default(System.Int32); - OpenTK.Graphics.ES30.FramebufferAttachment _attachments = default(OpenTK.Graphics.ES30.FramebufferAttachment); - OpenTK.Graphics.ES30.GL.InvalidateFramebuffer(_target,_numAttachments,ref _attachments); -} -static unsafe void Test_InvalidateFramebuffer_33607() { - OpenTK.Graphics.ES30.FramebufferTarget _target = default(OpenTK.Graphics.ES30.FramebufferTarget); - System.Int32 _numAttachments = default(System.Int32); - OpenTK.Graphics.ES30.FramebufferAttachment* _attachments = default(OpenTK.Graphics.ES30.FramebufferAttachment*); - OpenTK.Graphics.ES30.GL.InvalidateFramebuffer(_target,_numAttachments,_attachments); -} -static unsafe void Test_InvalidateSubFramebuffer_33608() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _numAttachments = default(System.Int32); - OpenTK.Graphics.ES30.All[] _attachments = default(OpenTK.Graphics.ES30.All[]); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.GL.InvalidateSubFramebuffer(_target,_numAttachments,_attachments,_x,_y,_width,_height); -} -static unsafe void Test_InvalidateSubFramebuffer_33609() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _numAttachments = default(System.Int32); - OpenTK.Graphics.ES30.All _attachments = default(OpenTK.Graphics.ES30.All); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.GL.InvalidateSubFramebuffer(_target,_numAttachments,ref _attachments,_x,_y,_width,_height); -} -static unsafe void Test_InvalidateSubFramebuffer_33610() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _numAttachments = default(System.Int32); - OpenTK.Graphics.ES30.All* _attachments = default(OpenTK.Graphics.ES30.All*); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.GL.InvalidateSubFramebuffer(_target,_numAttachments,_attachments,_x,_y,_width,_height); -} -static unsafe void Test_InvalidateSubFramebuffer_33611() { - OpenTK.Graphics.ES30.FramebufferTarget _target = default(OpenTK.Graphics.ES30.FramebufferTarget); - System.Int32 _numAttachments = default(System.Int32); - OpenTK.Graphics.ES30.FramebufferAttachment[] _attachments = default(OpenTK.Graphics.ES30.FramebufferAttachment[]); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.GL.InvalidateSubFramebuffer(_target,_numAttachments,_attachments,_x,_y,_width,_height); -} -static unsafe void Test_InvalidateSubFramebuffer_33612() { - OpenTK.Graphics.ES30.FramebufferTarget _target = default(OpenTK.Graphics.ES30.FramebufferTarget); - System.Int32 _numAttachments = default(System.Int32); - OpenTK.Graphics.ES30.FramebufferAttachment _attachments = default(OpenTK.Graphics.ES30.FramebufferAttachment); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.GL.InvalidateSubFramebuffer(_target,_numAttachments,ref _attachments,_x,_y,_width,_height); -} -static unsafe void Test_InvalidateSubFramebuffer_33613() { - OpenTK.Graphics.ES30.FramebufferTarget _target = default(OpenTK.Graphics.ES30.FramebufferTarget); - System.Int32 _numAttachments = default(System.Int32); - OpenTK.Graphics.ES30.FramebufferAttachment* _attachments = default(OpenTK.Graphics.ES30.FramebufferAttachment*); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.GL.InvalidateSubFramebuffer(_target,_numAttachments,_attachments,_x,_y,_width,_height); -} -static unsafe void Test_IsBuffer_33614() { - System.Int32 _buffer = default(System.Int32); - System.Boolean r = OpenTK.Graphics.ES30.GL.IsBuffer(_buffer); -} -static unsafe void Test_IsBuffer_33615() { - System.UInt32 _buffer = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.ES30.GL.IsBuffer(_buffer); -} -static unsafe void Test_IsEnabled_33616() { - OpenTK.Graphics.ES30.All _cap = default(OpenTK.Graphics.ES30.All); - System.Boolean r = OpenTK.Graphics.ES30.GL.IsEnabled(_cap); -} -static unsafe void Test_IsEnabled_33617() { - OpenTK.Graphics.ES30.EnableCap _cap = default(OpenTK.Graphics.ES30.EnableCap); - System.Boolean r = OpenTK.Graphics.ES30.GL.IsEnabled(_cap); -} -static unsafe void Test_IsFramebuffer_33618() { - System.Int32 _framebuffer = default(System.Int32); - System.Boolean r = OpenTK.Graphics.ES30.GL.IsFramebuffer(_framebuffer); -} -static unsafe void Test_IsFramebuffer_33619() { - System.UInt32 _framebuffer = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.ES30.GL.IsFramebuffer(_framebuffer); -} -static unsafe void Test_IsProgram_33620() { - System.Int32 _program = default(System.Int32); - System.Boolean r = OpenTK.Graphics.ES30.GL.IsProgram(_program); -} -static unsafe void Test_IsProgram_33621() { - System.UInt32 _program = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.ES30.GL.IsProgram(_program); -} -static unsafe void Test_IsQuery_33622() { - System.Int32 _id = default(System.Int32); - System.Boolean r = OpenTK.Graphics.ES30.GL.IsQuery(_id); -} -static unsafe void Test_IsQuery_33623() { - System.UInt32 _id = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.ES30.GL.IsQuery(_id); -} -static unsafe void Test_IsRenderbuffer_33624() { - System.Int32 _renderbuffer = default(System.Int32); - System.Boolean r = OpenTK.Graphics.ES30.GL.IsRenderbuffer(_renderbuffer); -} -static unsafe void Test_IsRenderbuffer_33625() { - System.UInt32 _renderbuffer = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.ES30.GL.IsRenderbuffer(_renderbuffer); -} -static unsafe void Test_IsSampler_33626() { - System.Int32 _sampler = default(System.Int32); - System.Boolean r = OpenTK.Graphics.ES30.GL.IsSampler(_sampler); -} -static unsafe void Test_IsSampler_33627() { - System.UInt32 _sampler = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.ES30.GL.IsSampler(_sampler); -} -static unsafe void Test_IsShader_33628() { - System.Int32 _shader = default(System.Int32); - System.Boolean r = OpenTK.Graphics.ES30.GL.IsShader(_shader); -} -static unsafe void Test_IsShader_33629() { - System.UInt32 _shader = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.ES30.GL.IsShader(_shader); -} -static unsafe void Test_IsSync_33630() { - System.IntPtr _sync = default(System.IntPtr); - System.Boolean r = OpenTK.Graphics.ES30.GL.IsSync(_sync); -} -static unsafe void Test_IsTexture_33631() { - System.Int32 _texture = default(System.Int32); - System.Boolean r = OpenTK.Graphics.ES30.GL.IsTexture(_texture); -} -static unsafe void Test_IsTexture_33632() { - System.UInt32 _texture = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.ES30.GL.IsTexture(_texture); -} -static unsafe void Test_IsTransformFeedback_33633() { - System.Int32 _id = default(System.Int32); - System.Boolean r = OpenTK.Graphics.ES30.GL.IsTransformFeedback(_id); -} -static unsafe void Test_IsTransformFeedback_33634() { - System.UInt32 _id = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.ES30.GL.IsTransformFeedback(_id); -} -static unsafe void Test_IsVertexArray_33635() { - System.Int32 _array = default(System.Int32); - System.Boolean r = OpenTK.Graphics.ES30.GL.IsVertexArray(_array); -} -static unsafe void Test_IsVertexArray_33636() { - System.UInt32 _array = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.ES30.GL.IsVertexArray(_array); -} -static unsafe void Test_LineWidth_33637() { - System.Single _width = default(System.Single); - OpenTK.Graphics.ES30.GL.LineWidth(_width); -} -static unsafe void Test_LinkProgram_33638() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES30.GL.LinkProgram(_program); -} -static unsafe void Test_LinkProgram_33639() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES30.GL.LinkProgram(_program); -} -static unsafe void Test_MapBufferRange_33640() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _length = default(System.IntPtr); - OpenTK.Graphics.ES30.All _access = default(OpenTK.Graphics.ES30.All); - System.IntPtr r = OpenTK.Graphics.ES30.GL.MapBufferRange(_target,_offset,_length,_access); -} -static unsafe void Test_MapBufferRange_33641() { - OpenTK.Graphics.ES30.BufferTarget _target = default(OpenTK.Graphics.ES30.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _length = default(System.IntPtr); - OpenTK.Graphics.ES30.BufferAccessMask _access = default(OpenTK.Graphics.ES30.BufferAccessMask); - System.IntPtr r = OpenTK.Graphics.ES30.GL.MapBufferRange(_target,_offset,_length,_access); -} -static unsafe void Test_ObjectLabel_33642() { - OpenTK.Graphics.ES30.All _identifier = default(OpenTK.Graphics.ES30.All); - System.Int32 _name = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.ES30.GL.ObjectLabel(_identifier,_name,_length,_label); -} -static unsafe void Test_ObjectLabel_33643() { - OpenTK.Graphics.ES30.All _identifier = default(OpenTK.Graphics.ES30.All); - System.UInt32 _name = default(System.UInt32); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.ES30.GL.ObjectLabel(_identifier,_name,_length,_label); -} -static unsafe void Test_ObjectLabel_33644() { - OpenTK.Graphics.ES30.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.ES30.ObjectLabelIdentifier); - System.Int32 _name = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.ES30.GL.ObjectLabel(_identifier,_name,_length,_label); -} -static unsafe void Test_ObjectLabel_33645() { - OpenTK.Graphics.ES30.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.ES30.ObjectLabelIdentifier); - System.UInt32 _name = default(System.UInt32); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.ES30.GL.ObjectLabel(_identifier,_name,_length,_label); -} -static unsafe void Test_ObjectPtrLabel_33646() { - System.IntPtr _ptr = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.ES30.GL.ObjectPtrLabel(_ptr,_length,_label); -} -static unsafe void Test_ObjectPtrLabel_33647() { - int[] _ptr = default(int[]); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.ES30.GL.ObjectPtrLabel(_ptr,_length,_label); -} -static unsafe void Test_ObjectPtrLabel_33648() { - int[,] _ptr = default(int[,]); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.ES30.GL.ObjectPtrLabel(_ptr,_length,_label); -} -static unsafe void Test_ObjectPtrLabel_33649() { - int[,,] _ptr = default(int[,,]); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.ES30.GL.ObjectPtrLabel(_ptr,_length,_label); -} -static unsafe void Test_ObjectPtrLabel_33650() { - int _ptr = default(int); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.ES30.GL.ObjectPtrLabel(ref _ptr,_length,_label); -} -static unsafe void Test_PauseTransformFeedback_33651() { - OpenTK.Graphics.ES30.GL.PauseTransformFeedback(); -} -static unsafe void Test_PixelStore_33652() { - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES30.GL.PixelStore(_pname,_param); -} -static unsafe void Test_PixelStore_33653() { - OpenTK.Graphics.ES30.PixelStoreParameter _pname = default(OpenTK.Graphics.ES30.PixelStoreParameter); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES30.GL.PixelStore(_pname,_param); -} -static unsafe void Test_PolygonOffset_33654() { - System.Single _factor = default(System.Single); - System.Single _units = default(System.Single); - OpenTK.Graphics.ES30.GL.PolygonOffset(_factor,_units); -} -static unsafe void Test_PopDebugGroup_33655() { - OpenTK.Graphics.ES30.GL.PopDebugGroup(); -} -static unsafe void Test_ProgramBinary_33656() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES30.All _binaryFormat = default(OpenTK.Graphics.ES30.All); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ProgramBinary(_program,_binaryFormat,_binary,_length); -} -static unsafe void Test_ProgramBinary_33657() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES30.All _binaryFormat = default(OpenTK.Graphics.ES30.All); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ProgramBinary(_program,_binaryFormat,_binary,_length); -} -static unsafe void Test_ProgramBinary_33658() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES30.All _binaryFormat = default(OpenTK.Graphics.ES30.All); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ProgramBinary(_program,_binaryFormat,_binary,_length); -} -static unsafe void Test_ProgramBinary_33659() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES30.All _binaryFormat = default(OpenTK.Graphics.ES30.All); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ProgramBinary(_program,_binaryFormat,_binary,_length); -} -static unsafe void Test_ProgramBinary_33660() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES30.All _binaryFormat = default(OpenTK.Graphics.ES30.All); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ProgramBinary(_program,_binaryFormat,ref _binary,_length); -} -static unsafe void Test_ProgramBinary_33661() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES30.All _binaryFormat = default(OpenTK.Graphics.ES30.All); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ProgramBinary(_program,_binaryFormat,_binary,_length); -} -static unsafe void Test_ProgramBinary_33662() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES30.All _binaryFormat = default(OpenTK.Graphics.ES30.All); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ProgramBinary(_program,_binaryFormat,_binary,_length); -} -static unsafe void Test_ProgramBinary_33663() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES30.All _binaryFormat = default(OpenTK.Graphics.ES30.All); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ProgramBinary(_program,_binaryFormat,_binary,_length); -} -static unsafe void Test_ProgramBinary_33664() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES30.All _binaryFormat = default(OpenTK.Graphics.ES30.All); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ProgramBinary(_program,_binaryFormat,_binary,_length); -} -static unsafe void Test_ProgramBinary_33665() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES30.All _binaryFormat = default(OpenTK.Graphics.ES30.All); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ProgramBinary(_program,_binaryFormat,ref _binary,_length); -} -static unsafe void Test_ProgramParameter_33666() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.ES30.GL.ProgramParameter(_program,_pname,_value); -} -static unsafe void Test_ProgramParameter_33667() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES30.ProgramParameterName _pname = default(OpenTK.Graphics.ES30.ProgramParameterName); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.ES30.GL.ProgramParameter(_program,_pname,_value); -} -static unsafe void Test_ProgramParameter_33668() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.ES30.GL.ProgramParameter(_program,_pname,_value); -} -static unsafe void Test_ProgramParameter_33669() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES30.ProgramParameterName _pname = default(OpenTK.Graphics.ES30.ProgramParameterName); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.ES30.GL.ProgramParameter(_program,_pname,_value); -} -static unsafe void Test_PushDebugGroup_33670() { - OpenTK.Graphics.ES30.All _source = default(OpenTK.Graphics.ES30.All); - System.Int32 _id = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.String _message = default(System.String); - OpenTK.Graphics.ES30.GL.PushDebugGroup(_source,_id,_length,_message); -} -static unsafe void Test_PushDebugGroup_33671() { - OpenTK.Graphics.ES30.All _source = default(OpenTK.Graphics.ES30.All); - System.UInt32 _id = default(System.UInt32); - System.Int32 _length = default(System.Int32); - System.String _message = default(System.String); - OpenTK.Graphics.ES30.GL.PushDebugGroup(_source,_id,_length,_message); -} -static unsafe void Test_ReadBuffer_33672() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.ReadBuffer(_mode); -} -static unsafe void Test_ReadBuffer_33673() { - OpenTK.Graphics.ES30.ReadBufferMode _mode = default(OpenTK.Graphics.ES30.ReadBufferMode); - OpenTK.Graphics.ES30.GL.ReadBuffer(_mode); -} -static unsafe void Test_ReadPixels_33674() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.ReadPixels(_x,_y,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_ReadPixels_33675() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[] _pixels = default(int[]); - OpenTK.Graphics.ES30.GL.ReadPixels(_x,_y,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_ReadPixels_33676() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.ES30.GL.ReadPixels(_x,_y,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_ReadPixels_33677() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.ES30.GL.ReadPixels(_x,_y,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_ReadPixels_33678() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int _pixels = default(int); - OpenTK.Graphics.ES30.GL.ReadPixels(_x,_y,_width,_height,_format,_type,ref _pixels); -} -static unsafe void Test_ReadPixels_33679() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.PixelFormat _format = default(OpenTK.Graphics.ES30.PixelFormat); - OpenTK.Graphics.ES30.PixelType _type = default(OpenTK.Graphics.ES30.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.ReadPixels(_x,_y,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_ReadPixels_33680() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.PixelFormat _format = default(OpenTK.Graphics.ES30.PixelFormat); - OpenTK.Graphics.ES30.PixelType _type = default(OpenTK.Graphics.ES30.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.ES30.GL.ReadPixels(_x,_y,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_ReadPixels_33681() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.PixelFormat _format = default(OpenTK.Graphics.ES30.PixelFormat); - OpenTK.Graphics.ES30.PixelType _type = default(OpenTK.Graphics.ES30.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.ES30.GL.ReadPixels(_x,_y,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_ReadPixels_33682() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.PixelFormat _format = default(OpenTK.Graphics.ES30.PixelFormat); - OpenTK.Graphics.ES30.PixelType _type = default(OpenTK.Graphics.ES30.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.ES30.GL.ReadPixels(_x,_y,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_ReadPixels_33683() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.PixelFormat _format = default(OpenTK.Graphics.ES30.PixelFormat); - OpenTK.Graphics.ES30.PixelType _type = default(OpenTK.Graphics.ES30.PixelType); - int _pixels = default(int); - OpenTK.Graphics.ES30.GL.ReadPixels(_x,_y,_width,_height,_format,_type,ref _pixels); -} -static unsafe void Test_ReleaseShaderCompiler_33684() { - OpenTK.Graphics.ES30.GL.ReleaseShaderCompiler(); -} -static unsafe void Test_RenderbufferStorage_33685() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.GL.RenderbufferStorage(_target,_internalformat,_width,_height); -} -static unsafe void Test_RenderbufferStorage_33686() { - OpenTK.Graphics.ES30.RenderbufferTarget _target = default(OpenTK.Graphics.ES30.RenderbufferTarget); - OpenTK.Graphics.ES30.RenderbufferInternalFormat _internalformat = default(OpenTK.Graphics.ES30.RenderbufferInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.GL.RenderbufferStorage(_target,_internalformat,_width,_height); -} -static unsafe void Test_RenderbufferStorageMultisample_33687() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.GL.RenderbufferStorageMultisample(_target,_samples,_internalformat,_width,_height); -} -static unsafe void Test_RenderbufferStorageMultisample_33688() { - OpenTK.Graphics.ES30.RenderbufferTarget _target = default(OpenTK.Graphics.ES30.RenderbufferTarget); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.ES30.RenderbufferInternalFormat _internalformat = default(OpenTK.Graphics.ES30.RenderbufferInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.GL.RenderbufferStorageMultisample(_target,_samples,_internalformat,_width,_height); -} -static unsafe void Test_ResumeTransformFeedback_33689() { - OpenTK.Graphics.ES30.GL.ResumeTransformFeedback(); -} -static unsafe void Test_SampleCoverage_33690() { - System.Single _value = default(System.Single); - System.Boolean _invert = default(System.Boolean); - OpenTK.Graphics.ES30.GL.SampleCoverage(_value,_invert); -} -static unsafe void Test_SamplerParameter_33691() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Single _param = default(System.Single); - OpenTK.Graphics.ES30.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_33692() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.ES30.SamplerParameterName _pname = default(OpenTK.Graphics.ES30.SamplerParameterName); - System.Single _param = default(System.Single); - OpenTK.Graphics.ES30.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_33693() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Single _param = default(System.Single); - OpenTK.Graphics.ES30.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_33694() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES30.SamplerParameterName _pname = default(OpenTK.Graphics.ES30.SamplerParameterName); - System.Single _param = default(System.Single); - OpenTK.Graphics.ES30.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_33695() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Single[] _param = default(System.Single[]); - OpenTK.Graphics.ES30.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_33696() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Single* _param = default(System.Single*); - OpenTK.Graphics.ES30.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_33697() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.ES30.SamplerParameterName _pname = default(OpenTK.Graphics.ES30.SamplerParameterName); - System.Single[] _param = default(System.Single[]); - OpenTK.Graphics.ES30.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_33698() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.ES30.SamplerParameterName _pname = default(OpenTK.Graphics.ES30.SamplerParameterName); - System.Single* _param = default(System.Single*); - OpenTK.Graphics.ES30.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_33699() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Single[] _param = default(System.Single[]); - OpenTK.Graphics.ES30.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_33700() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Single* _param = default(System.Single*); - OpenTK.Graphics.ES30.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_33701() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES30.SamplerParameterName _pname = default(OpenTK.Graphics.ES30.SamplerParameterName); - System.Single[] _param = default(System.Single[]); - OpenTK.Graphics.ES30.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_33702() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES30.SamplerParameterName _pname = default(OpenTK.Graphics.ES30.SamplerParameterName); - System.Single* _param = default(System.Single*); - OpenTK.Graphics.ES30.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_33703() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES30.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_33704() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.ES30.SamplerParameterName _pname = default(OpenTK.Graphics.ES30.SamplerParameterName); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES30.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_33705() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES30.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_33706() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES30.SamplerParameterName _pname = default(OpenTK.Graphics.ES30.SamplerParameterName); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES30.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_33707() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32[] _param = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_33708() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32* _param = default(System.Int32*); - OpenTK.Graphics.ES30.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_33709() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.ES30.SamplerParameterName _pname = default(OpenTK.Graphics.ES30.SamplerParameterName); - System.Int32[] _param = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_33710() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.ES30.SamplerParameterName _pname = default(OpenTK.Graphics.ES30.SamplerParameterName); - System.Int32* _param = default(System.Int32*); - OpenTK.Graphics.ES30.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_33711() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32[] _param = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_33712() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32* _param = default(System.Int32*); - OpenTK.Graphics.ES30.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_33713() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES30.SamplerParameterName _pname = default(OpenTK.Graphics.ES30.SamplerParameterName); - System.Int32[] _param = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_33714() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES30.SamplerParameterName _pname = default(OpenTK.Graphics.ES30.SamplerParameterName); - System.Int32* _param = default(System.Int32*); - OpenTK.Graphics.ES30.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_Scissor_33715() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.GL.Scissor(_x,_y,_width,_height); -} -static unsafe void Test_ShaderBinary_33716() { - System.Int32 _count = default(System.Int32); - System.Int32[] _shaders = default(System.Int32[]); - OpenTK.Graphics.ES30.All _binaryformat = default(OpenTK.Graphics.ES30.All); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33717() { - System.Int32 _count = default(System.Int32); - System.Int32[] _shaders = default(System.Int32[]); - OpenTK.Graphics.ES30.All _binaryformat = default(OpenTK.Graphics.ES30.All); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33718() { - System.Int32 _count = default(System.Int32); - System.Int32[] _shaders = default(System.Int32[]); - OpenTK.Graphics.ES30.All _binaryformat = default(OpenTK.Graphics.ES30.All); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33719() { - System.Int32 _count = default(System.Int32); - System.Int32[] _shaders = default(System.Int32[]); - OpenTK.Graphics.ES30.All _binaryformat = default(OpenTK.Graphics.ES30.All); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33720() { - System.Int32 _count = default(System.Int32); - System.Int32[] _shaders = default(System.Int32[]); - OpenTK.Graphics.ES30.All _binaryformat = default(OpenTK.Graphics.ES30.All); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,_shaders,_binaryformat,ref _binary,_length); -} -static unsafe void Test_ShaderBinary_33721() { - System.Int32 _count = default(System.Int32); - System.Int32[] _shaders = default(System.Int32[]); - OpenTK.Graphics.ES30.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES30.ShaderBinaryFormat); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33722() { - System.Int32 _count = default(System.Int32); - System.Int32[] _shaders = default(System.Int32[]); - OpenTK.Graphics.ES30.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES30.ShaderBinaryFormat); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33723() { - System.Int32 _count = default(System.Int32); - System.Int32[] _shaders = default(System.Int32[]); - OpenTK.Graphics.ES30.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES30.ShaderBinaryFormat); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33724() { - System.Int32 _count = default(System.Int32); - System.Int32[] _shaders = default(System.Int32[]); - OpenTK.Graphics.ES30.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES30.ShaderBinaryFormat); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33725() { - System.Int32 _count = default(System.Int32); - System.Int32[] _shaders = default(System.Int32[]); - OpenTK.Graphics.ES30.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES30.ShaderBinaryFormat); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,_shaders,_binaryformat,ref _binary,_length); -} -static unsafe void Test_ShaderBinary_33726() { - System.Int32 _count = default(System.Int32); - System.Int32 _shaders = default(System.Int32); - OpenTK.Graphics.ES30.All _binaryformat = default(OpenTK.Graphics.ES30.All); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33727() { - System.Int32 _count = default(System.Int32); - System.Int32 _shaders = default(System.Int32); - OpenTK.Graphics.ES30.All _binaryformat = default(OpenTK.Graphics.ES30.All); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33728() { - System.Int32 _count = default(System.Int32); - System.Int32 _shaders = default(System.Int32); - OpenTK.Graphics.ES30.All _binaryformat = default(OpenTK.Graphics.ES30.All); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33729() { - System.Int32 _count = default(System.Int32); - System.Int32 _shaders = default(System.Int32); - OpenTK.Graphics.ES30.All _binaryformat = default(OpenTK.Graphics.ES30.All); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33730() { - System.Int32 _count = default(System.Int32); - System.Int32 _shaders = default(System.Int32); - OpenTK.Graphics.ES30.All _binaryformat = default(OpenTK.Graphics.ES30.All); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,ref _shaders,_binaryformat,ref _binary,_length); -} -static unsafe void Test_ShaderBinary_33731() { - System.Int32 _count = default(System.Int32); - System.Int32 _shaders = default(System.Int32); - OpenTK.Graphics.ES30.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES30.ShaderBinaryFormat); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33732() { - System.Int32 _count = default(System.Int32); - System.Int32 _shaders = default(System.Int32); - OpenTK.Graphics.ES30.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES30.ShaderBinaryFormat); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33733() { - System.Int32 _count = default(System.Int32); - System.Int32 _shaders = default(System.Int32); - OpenTK.Graphics.ES30.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES30.ShaderBinaryFormat); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33734() { - System.Int32 _count = default(System.Int32); - System.Int32 _shaders = default(System.Int32); - OpenTK.Graphics.ES30.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES30.ShaderBinaryFormat); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33735() { - System.Int32 _count = default(System.Int32); - System.Int32 _shaders = default(System.Int32); - OpenTK.Graphics.ES30.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES30.ShaderBinaryFormat); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,ref _shaders,_binaryformat,ref _binary,_length); -} -static unsafe void Test_ShaderBinary_33736() { - System.Int32 _count = default(System.Int32); - System.Int32* _shaders = default(System.Int32*); - OpenTK.Graphics.ES30.All _binaryformat = default(OpenTK.Graphics.ES30.All); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33737() { - System.Int32 _count = default(System.Int32); - System.Int32* _shaders = default(System.Int32*); - OpenTK.Graphics.ES30.All _binaryformat = default(OpenTK.Graphics.ES30.All); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33738() { - System.Int32 _count = default(System.Int32); - System.Int32* _shaders = default(System.Int32*); - OpenTK.Graphics.ES30.All _binaryformat = default(OpenTK.Graphics.ES30.All); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33739() { - System.Int32 _count = default(System.Int32); - System.Int32* _shaders = default(System.Int32*); - OpenTK.Graphics.ES30.All _binaryformat = default(OpenTK.Graphics.ES30.All); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33740() { - System.Int32 _count = default(System.Int32); - System.Int32* _shaders = default(System.Int32*); - OpenTK.Graphics.ES30.All _binaryformat = default(OpenTK.Graphics.ES30.All); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,_shaders,_binaryformat,ref _binary,_length); -} -static unsafe void Test_ShaderBinary_33741() { - System.Int32 _count = default(System.Int32); - System.Int32* _shaders = default(System.Int32*); - OpenTK.Graphics.ES30.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES30.ShaderBinaryFormat); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33742() { - System.Int32 _count = default(System.Int32); - System.Int32* _shaders = default(System.Int32*); - OpenTK.Graphics.ES30.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES30.ShaderBinaryFormat); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33743() { - System.Int32 _count = default(System.Int32); - System.Int32* _shaders = default(System.Int32*); - OpenTK.Graphics.ES30.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES30.ShaderBinaryFormat); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33744() { - System.Int32 _count = default(System.Int32); - System.Int32* _shaders = default(System.Int32*); - OpenTK.Graphics.ES30.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES30.ShaderBinaryFormat); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33745() { - System.Int32 _count = default(System.Int32); - System.Int32* _shaders = default(System.Int32*); - OpenTK.Graphics.ES30.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES30.ShaderBinaryFormat); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,_shaders,_binaryformat,ref _binary,_length); -} -static unsafe void Test_ShaderBinary_33746() { - System.Int32 _count = default(System.Int32); - System.UInt32[] _shaders = default(System.UInt32[]); - OpenTK.Graphics.ES30.All _binaryformat = default(OpenTK.Graphics.ES30.All); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33747() { - System.Int32 _count = default(System.Int32); - System.UInt32[] _shaders = default(System.UInt32[]); - OpenTK.Graphics.ES30.All _binaryformat = default(OpenTK.Graphics.ES30.All); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33748() { - System.Int32 _count = default(System.Int32); - System.UInt32[] _shaders = default(System.UInt32[]); - OpenTK.Graphics.ES30.All _binaryformat = default(OpenTK.Graphics.ES30.All); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33749() { - System.Int32 _count = default(System.Int32); - System.UInt32[] _shaders = default(System.UInt32[]); - OpenTK.Graphics.ES30.All _binaryformat = default(OpenTK.Graphics.ES30.All); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33750() { - System.Int32 _count = default(System.Int32); - System.UInt32[] _shaders = default(System.UInt32[]); - OpenTK.Graphics.ES30.All _binaryformat = default(OpenTK.Graphics.ES30.All); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,_shaders,_binaryformat,ref _binary,_length); -} -static unsafe void Test_ShaderBinary_33751() { - System.Int32 _count = default(System.Int32); - System.UInt32[] _shaders = default(System.UInt32[]); - OpenTK.Graphics.ES30.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES30.ShaderBinaryFormat); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33752() { - System.Int32 _count = default(System.Int32); - System.UInt32[] _shaders = default(System.UInt32[]); - OpenTK.Graphics.ES30.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES30.ShaderBinaryFormat); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33753() { - System.Int32 _count = default(System.Int32); - System.UInt32[] _shaders = default(System.UInt32[]); - OpenTK.Graphics.ES30.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES30.ShaderBinaryFormat); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33754() { - System.Int32 _count = default(System.Int32); - System.UInt32[] _shaders = default(System.UInt32[]); - OpenTK.Graphics.ES30.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES30.ShaderBinaryFormat); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33755() { - System.Int32 _count = default(System.Int32); - System.UInt32[] _shaders = default(System.UInt32[]); - OpenTK.Graphics.ES30.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES30.ShaderBinaryFormat); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,_shaders,_binaryformat,ref _binary,_length); -} -static unsafe void Test_ShaderBinary_33756() { - System.Int32 _count = default(System.Int32); - System.UInt32 _shaders = default(System.UInt32); - OpenTK.Graphics.ES30.All _binaryformat = default(OpenTK.Graphics.ES30.All); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33757() { - System.Int32 _count = default(System.Int32); - System.UInt32 _shaders = default(System.UInt32); - OpenTK.Graphics.ES30.All _binaryformat = default(OpenTK.Graphics.ES30.All); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33758() { - System.Int32 _count = default(System.Int32); - System.UInt32 _shaders = default(System.UInt32); - OpenTK.Graphics.ES30.All _binaryformat = default(OpenTK.Graphics.ES30.All); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33759() { - System.Int32 _count = default(System.Int32); - System.UInt32 _shaders = default(System.UInt32); - OpenTK.Graphics.ES30.All _binaryformat = default(OpenTK.Graphics.ES30.All); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33760() { - System.Int32 _count = default(System.Int32); - System.UInt32 _shaders = default(System.UInt32); - OpenTK.Graphics.ES30.All _binaryformat = default(OpenTK.Graphics.ES30.All); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,ref _shaders,_binaryformat,ref _binary,_length); -} -static unsafe void Test_ShaderBinary_33761() { - System.Int32 _count = default(System.Int32); - System.UInt32 _shaders = default(System.UInt32); - OpenTK.Graphics.ES30.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES30.ShaderBinaryFormat); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33762() { - System.Int32 _count = default(System.Int32); - System.UInt32 _shaders = default(System.UInt32); - OpenTK.Graphics.ES30.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES30.ShaderBinaryFormat); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33763() { - System.Int32 _count = default(System.Int32); - System.UInt32 _shaders = default(System.UInt32); - OpenTK.Graphics.ES30.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES30.ShaderBinaryFormat); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33764() { - System.Int32 _count = default(System.Int32); - System.UInt32 _shaders = default(System.UInt32); - OpenTK.Graphics.ES30.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES30.ShaderBinaryFormat); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33765() { - System.Int32 _count = default(System.Int32); - System.UInt32 _shaders = default(System.UInt32); - OpenTK.Graphics.ES30.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES30.ShaderBinaryFormat); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,ref _shaders,_binaryformat,ref _binary,_length); -} -static unsafe void Test_ShaderBinary_33766() { - System.Int32 _count = default(System.Int32); - System.UInt32* _shaders = default(System.UInt32*); - OpenTK.Graphics.ES30.All _binaryformat = default(OpenTK.Graphics.ES30.All); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33767() { - System.Int32 _count = default(System.Int32); - System.UInt32* _shaders = default(System.UInt32*); - OpenTK.Graphics.ES30.All _binaryformat = default(OpenTK.Graphics.ES30.All); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33768() { - System.Int32 _count = default(System.Int32); - System.UInt32* _shaders = default(System.UInt32*); - OpenTK.Graphics.ES30.All _binaryformat = default(OpenTK.Graphics.ES30.All); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33769() { - System.Int32 _count = default(System.Int32); - System.UInt32* _shaders = default(System.UInt32*); - OpenTK.Graphics.ES30.All _binaryformat = default(OpenTK.Graphics.ES30.All); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33770() { - System.Int32 _count = default(System.Int32); - System.UInt32* _shaders = default(System.UInt32*); - OpenTK.Graphics.ES30.All _binaryformat = default(OpenTK.Graphics.ES30.All); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,_shaders,_binaryformat,ref _binary,_length); -} -static unsafe void Test_ShaderBinary_33771() { - System.Int32 _count = default(System.Int32); - System.UInt32* _shaders = default(System.UInt32*); - OpenTK.Graphics.ES30.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES30.ShaderBinaryFormat); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33772() { - System.Int32 _count = default(System.Int32); - System.UInt32* _shaders = default(System.UInt32*); - OpenTK.Graphics.ES30.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES30.ShaderBinaryFormat); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33773() { - System.Int32 _count = default(System.Int32); - System.UInt32* _shaders = default(System.UInt32*); - OpenTK.Graphics.ES30.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES30.ShaderBinaryFormat); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33774() { - System.Int32 _count = default(System.Int32); - System.UInt32* _shaders = default(System.UInt32*); - OpenTK.Graphics.ES30.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES30.ShaderBinaryFormat); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_33775() { - System.Int32 _count = default(System.Int32); - System.UInt32* _shaders = default(System.UInt32*); - OpenTK.Graphics.ES30.ShaderBinaryFormat _binaryformat = default(OpenTK.Graphics.ES30.ShaderBinaryFormat); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderBinary(_count,_shaders,_binaryformat,ref _binary,_length); -} -static unsafe void Test_ShaderSource_33776() { - System.Int32 _shader = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.String[] _string = default(System.String[]); - System.Int32[] _length = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.ShaderSource(_shader,_count,_string,_length); -} -static unsafe void Test_ShaderSource_33777() { - System.Int32 _shader = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.String[] _string = default(System.String[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderSource(_shader,_count,_string,ref _length); -} -static unsafe void Test_ShaderSource_33778() { - System.Int32 _shader = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.String[] _string = default(System.String[]); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.ES30.GL.ShaderSource(_shader,_count,_string,_length); -} -static unsafe void Test_ShaderSource_33779() { - System.UInt32 _shader = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.String[] _string = default(System.String[]); - System.Int32[] _length = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.ShaderSource(_shader,_count,_string,_length); -} -static unsafe void Test_ShaderSource_33780() { - System.UInt32 _shader = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.String[] _string = default(System.String[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.ShaderSource(_shader,_count,_string,ref _length); -} -static unsafe void Test_ShaderSource_33781() { - System.UInt32 _shader = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.String[] _string = default(System.String[]); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.ES30.GL.ShaderSource(_shader,_count,_string,_length); -} -static unsafe void Test_StencilFunc_33782() { - OpenTK.Graphics.ES30.All _func = default(OpenTK.Graphics.ES30.All); - System.Int32 _ref = default(System.Int32); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.ES30.GL.StencilFunc(_func,_ref,_mask); -} -static unsafe void Test_StencilFunc_33783() { - OpenTK.Graphics.ES30.All _func = default(OpenTK.Graphics.ES30.All); - System.Int32 _ref = default(System.Int32); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.ES30.GL.StencilFunc(_func,_ref,_mask); -} -static unsafe void Test_StencilFunc_33784() { - OpenTK.Graphics.ES30.StencilFunction _func = default(OpenTK.Graphics.ES30.StencilFunction); - System.Int32 _ref = default(System.Int32); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.ES30.GL.StencilFunc(_func,_ref,_mask); -} -static unsafe void Test_StencilFunc_33785() { - OpenTK.Graphics.ES30.StencilFunction _func = default(OpenTK.Graphics.ES30.StencilFunction); - System.Int32 _ref = default(System.Int32); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.ES30.GL.StencilFunc(_func,_ref,_mask); -} -static unsafe void Test_StencilFuncSeparate_33786() { - OpenTK.Graphics.ES30.All _face = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _func = default(OpenTK.Graphics.ES30.All); - System.Int32 _ref = default(System.Int32); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.ES30.GL.StencilFuncSeparate(_face,_func,_ref,_mask); -} -static unsafe void Test_StencilFuncSeparate_33787() { - OpenTK.Graphics.ES30.All _face = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _func = default(OpenTK.Graphics.ES30.All); - System.Int32 _ref = default(System.Int32); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.ES30.GL.StencilFuncSeparate(_face,_func,_ref,_mask); -} -static unsafe void Test_StencilFuncSeparate_33788() { - OpenTK.Graphics.ES30.StencilFace _face = default(OpenTK.Graphics.ES30.StencilFace); - OpenTK.Graphics.ES30.StencilFunction _func = default(OpenTK.Graphics.ES30.StencilFunction); - System.Int32 _ref = default(System.Int32); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.ES30.GL.StencilFuncSeparate(_face,_func,_ref,_mask); -} -static unsafe void Test_StencilFuncSeparate_33789() { - OpenTK.Graphics.ES30.StencilFace _face = default(OpenTK.Graphics.ES30.StencilFace); - OpenTK.Graphics.ES30.StencilFunction _func = default(OpenTK.Graphics.ES30.StencilFunction); - System.Int32 _ref = default(System.Int32); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.ES30.GL.StencilFuncSeparate(_face,_func,_ref,_mask); -} -static unsafe void Test_StencilMask_33790() { - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.ES30.GL.StencilMask(_mask); -} -static unsafe void Test_StencilMask_33791() { - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.ES30.GL.StencilMask(_mask); -} -static unsafe void Test_StencilMaskSeparate_33792() { - OpenTK.Graphics.ES30.All _face = default(OpenTK.Graphics.ES30.All); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.ES30.GL.StencilMaskSeparate(_face,_mask); -} -static unsafe void Test_StencilMaskSeparate_33793() { - OpenTK.Graphics.ES30.All _face = default(OpenTK.Graphics.ES30.All); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.ES30.GL.StencilMaskSeparate(_face,_mask); -} -static unsafe void Test_StencilMaskSeparate_33794() { - OpenTK.Graphics.ES30.StencilFace _face = default(OpenTK.Graphics.ES30.StencilFace); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.ES30.GL.StencilMaskSeparate(_face,_mask); -} -static unsafe void Test_StencilMaskSeparate_33795() { - OpenTK.Graphics.ES30.StencilFace _face = default(OpenTK.Graphics.ES30.StencilFace); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.ES30.GL.StencilMaskSeparate(_face,_mask); -} -static unsafe void Test_StencilOp_33796() { - OpenTK.Graphics.ES30.All _fail = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _zfail = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _zpass = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.StencilOp(_fail,_zfail,_zpass); -} -static unsafe void Test_StencilOp_33797() { - OpenTK.Graphics.ES30.StencilOp _fail = default(OpenTK.Graphics.ES30.StencilOp); - OpenTK.Graphics.ES30.StencilOp _zfail = default(OpenTK.Graphics.ES30.StencilOp); - OpenTK.Graphics.ES30.StencilOp _zpass = default(OpenTK.Graphics.ES30.StencilOp); - OpenTK.Graphics.ES30.GL.StencilOp(_fail,_zfail,_zpass); -} -static unsafe void Test_StencilOpSeparate_33798() { - OpenTK.Graphics.ES30.All _face = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _sfail = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _dpfail = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _dppass = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.StencilOpSeparate(_face,_sfail,_dpfail,_dppass); -} -static unsafe void Test_StencilOpSeparate_33799() { - OpenTK.Graphics.ES30.StencilFace _face = default(OpenTK.Graphics.ES30.StencilFace); - OpenTK.Graphics.ES30.StencilOp _sfail = default(OpenTK.Graphics.ES30.StencilOp); - OpenTK.Graphics.ES30.StencilOp _dpfail = default(OpenTK.Graphics.ES30.StencilOp); - OpenTK.Graphics.ES30.StencilOp _dppass = default(OpenTK.Graphics.ES30.StencilOp); - OpenTK.Graphics.ES30.GL.StencilOpSeparate(_face,_sfail,_dpfail,_dppass); -} -static unsafe void Test_TexImage2D_33800() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage2D_33801() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[] _pixels = default(int[]); - OpenTK.Graphics.ES30.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage2D_33802() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.ES30.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage2D_33803() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.ES30.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage2D_33804() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int _pixels = default(int); - OpenTK.Graphics.ES30.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,ref _pixels); -} -static unsafe void Test_TexImage2D_33805() { - OpenTK.Graphics.ES30.TextureTarget2d _target = default(OpenTK.Graphics.ES30.TextureTarget2d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.TextureComponentCount _internalformat = default(OpenTK.Graphics.ES30.TextureComponentCount); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES30.PixelFormat _format = default(OpenTK.Graphics.ES30.PixelFormat); - OpenTK.Graphics.ES30.PixelType _type = default(OpenTK.Graphics.ES30.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage2D_33806() { - OpenTK.Graphics.ES30.TextureTarget2d _target = default(OpenTK.Graphics.ES30.TextureTarget2d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.TextureComponentCount _internalformat = default(OpenTK.Graphics.ES30.TextureComponentCount); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES30.PixelFormat _format = default(OpenTK.Graphics.ES30.PixelFormat); - OpenTK.Graphics.ES30.PixelType _type = default(OpenTK.Graphics.ES30.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.ES30.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage2D_33807() { - OpenTK.Graphics.ES30.TextureTarget2d _target = default(OpenTK.Graphics.ES30.TextureTarget2d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.TextureComponentCount _internalformat = default(OpenTK.Graphics.ES30.TextureComponentCount); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES30.PixelFormat _format = default(OpenTK.Graphics.ES30.PixelFormat); - OpenTK.Graphics.ES30.PixelType _type = default(OpenTK.Graphics.ES30.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.ES30.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage2D_33808() { - OpenTK.Graphics.ES30.TextureTarget2d _target = default(OpenTK.Graphics.ES30.TextureTarget2d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.TextureComponentCount _internalformat = default(OpenTK.Graphics.ES30.TextureComponentCount); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES30.PixelFormat _format = default(OpenTK.Graphics.ES30.PixelFormat); - OpenTK.Graphics.ES30.PixelType _type = default(OpenTK.Graphics.ES30.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.ES30.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage2D_33809() { - OpenTK.Graphics.ES30.TextureTarget2d _target = default(OpenTK.Graphics.ES30.TextureTarget2d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.TextureComponentCount _internalformat = default(OpenTK.Graphics.ES30.TextureComponentCount); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES30.PixelFormat _format = default(OpenTK.Graphics.ES30.PixelFormat); - OpenTK.Graphics.ES30.PixelType _type = default(OpenTK.Graphics.ES30.PixelType); - int _pixels = default(int); - OpenTK.Graphics.ES30.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,ref _pixels); -} -static unsafe void Test_TexImage3D_33810() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_33811() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[] _pixels = default(int[]); - OpenTK.Graphics.ES30.GL.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_33812() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.ES30.GL.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_33813() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.ES30.GL.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_33814() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int _pixels = default(int); - OpenTK.Graphics.ES30.GL.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,ref _pixels); -} -static unsafe void Test_TexImage3D_33815() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.TextureComponentCount _internalformat = default(OpenTK.Graphics.ES30.TextureComponentCount); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES30.PixelFormat _format = default(OpenTK.Graphics.ES30.PixelFormat); - OpenTK.Graphics.ES30.PixelType _type = default(OpenTK.Graphics.ES30.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_33816() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.TextureComponentCount _internalformat = default(OpenTK.Graphics.ES30.TextureComponentCount); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES30.PixelFormat _format = default(OpenTK.Graphics.ES30.PixelFormat); - OpenTK.Graphics.ES30.PixelType _type = default(OpenTK.Graphics.ES30.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.ES30.GL.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_33817() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.TextureComponentCount _internalformat = default(OpenTK.Graphics.ES30.TextureComponentCount); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES30.PixelFormat _format = default(OpenTK.Graphics.ES30.PixelFormat); - OpenTK.Graphics.ES30.PixelType _type = default(OpenTK.Graphics.ES30.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.ES30.GL.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_33818() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.TextureComponentCount _internalformat = default(OpenTK.Graphics.ES30.TextureComponentCount); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES30.PixelFormat _format = default(OpenTK.Graphics.ES30.PixelFormat); - OpenTK.Graphics.ES30.PixelType _type = default(OpenTK.Graphics.ES30.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.ES30.GL.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_33819() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.TextureComponentCount _internalformat = default(OpenTK.Graphics.ES30.TextureComponentCount); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES30.PixelFormat _format = default(OpenTK.Graphics.ES30.PixelFormat); - OpenTK.Graphics.ES30.PixelType _type = default(OpenTK.Graphics.ES30.PixelType); - int _pixels = default(int); - OpenTK.Graphics.ES30.GL.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,ref _pixels); -} -static unsafe void Test_TexParameter_33820() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Single _param = default(System.Single); - OpenTK.Graphics.ES30.GL.TexParameter(_target,_pname,_param); -} -static unsafe void Test_TexParameter_33821() { - OpenTK.Graphics.ES30.TextureTarget _target = default(OpenTK.Graphics.ES30.TextureTarget); - OpenTK.Graphics.ES30.TextureParameterName _pname = default(OpenTK.Graphics.ES30.TextureParameterName); - System.Single _param = default(System.Single); - OpenTK.Graphics.ES30.GL.TexParameter(_target,_pname,_param); -} -static unsafe void Test_TexParameter_33822() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES30.GL.TexParameter(_target,_pname,_params); -} -static unsafe void Test_TexParameter_33823() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES30.GL.TexParameter(_target,_pname,_params); -} -static unsafe void Test_TexParameter_33824() { - OpenTK.Graphics.ES30.TextureTarget _target = default(OpenTK.Graphics.ES30.TextureTarget); - OpenTK.Graphics.ES30.TextureParameterName _pname = default(OpenTK.Graphics.ES30.TextureParameterName); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES30.GL.TexParameter(_target,_pname,_params); -} -static unsafe void Test_TexParameter_33825() { - OpenTK.Graphics.ES30.TextureTarget _target = default(OpenTK.Graphics.ES30.TextureTarget); - OpenTK.Graphics.ES30.TextureParameterName _pname = default(OpenTK.Graphics.ES30.TextureParameterName); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES30.GL.TexParameter(_target,_pname,_params); -} -static unsafe void Test_TexParameter_33826() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES30.GL.TexParameter(_target,_pname,_param); -} -static unsafe void Test_TexParameter_33827() { - OpenTK.Graphics.ES30.TextureTarget _target = default(OpenTK.Graphics.ES30.TextureTarget); - OpenTK.Graphics.ES30.TextureParameterName _pname = default(OpenTK.Graphics.ES30.TextureParameterName); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES30.GL.TexParameter(_target,_pname,_param); -} -static unsafe void Test_TexParameter_33828() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.TexParameter(_target,_pname,_params); -} -static unsafe void Test_TexParameter_33829() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.TexParameter(_target,_pname,_params); -} -static unsafe void Test_TexParameter_33830() { - OpenTK.Graphics.ES30.TextureTarget _target = default(OpenTK.Graphics.ES30.TextureTarget); - OpenTK.Graphics.ES30.TextureParameterName _pname = default(OpenTK.Graphics.ES30.TextureParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.TexParameter(_target,_pname,_params); -} -static unsafe void Test_TexParameter_33831() { - OpenTK.Graphics.ES30.TextureTarget _target = default(OpenTK.Graphics.ES30.TextureTarget); - OpenTK.Graphics.ES30.TextureParameterName _pname = default(OpenTK.Graphics.ES30.TextureParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.TexParameter(_target,_pname,_params); -} -static unsafe void Test_TexStorage2D_33832() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.GL.TexStorage2D(_target,_levels,_internalformat,_width,_height); -} -static unsafe void Test_TexStorage2D_33833() { - OpenTK.Graphics.ES30.TextureTarget2d _target = default(OpenTK.Graphics.ES30.TextureTarget2d); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.ES30.SizedInternalFormat _internalformat = default(OpenTK.Graphics.ES30.SizedInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.GL.TexStorage2D(_target,_levels,_internalformat,_width,_height); -} -static unsafe void Test_TexStorage3D_33834() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.GL.TexStorage3D(_target,_levels,_internalformat,_width,_height,_depth); -} -static unsafe void Test_TexStorage3D_33835() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.ES30.SizedInternalFormat _internalformat = default(OpenTK.Graphics.ES30.SizedInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.GL.TexStorage3D(_target,_levels,_internalformat,_width,_height,_depth); -} -static unsafe void Test_TexSubImage2D_33836() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_33837() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[] _pixels = default(int[]); - OpenTK.Graphics.ES30.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_33838() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.ES30.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_33839() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.ES30.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_33840() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int _pixels = default(int); - OpenTK.Graphics.ES30.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,ref _pixels); -} -static unsafe void Test_TexSubImage2D_33841() { - OpenTK.Graphics.ES30.TextureTarget2d _target = default(OpenTK.Graphics.ES30.TextureTarget2d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.PixelFormat _format = default(OpenTK.Graphics.ES30.PixelFormat); - OpenTK.Graphics.ES30.PixelType _type = default(OpenTK.Graphics.ES30.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_33842() { - OpenTK.Graphics.ES30.TextureTarget2d _target = default(OpenTK.Graphics.ES30.TextureTarget2d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.PixelFormat _format = default(OpenTK.Graphics.ES30.PixelFormat); - OpenTK.Graphics.ES30.PixelType _type = default(OpenTK.Graphics.ES30.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.ES30.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_33843() { - OpenTK.Graphics.ES30.TextureTarget2d _target = default(OpenTK.Graphics.ES30.TextureTarget2d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.PixelFormat _format = default(OpenTK.Graphics.ES30.PixelFormat); - OpenTK.Graphics.ES30.PixelType _type = default(OpenTK.Graphics.ES30.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.ES30.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_33844() { - OpenTK.Graphics.ES30.TextureTarget2d _target = default(OpenTK.Graphics.ES30.TextureTarget2d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.PixelFormat _format = default(OpenTK.Graphics.ES30.PixelFormat); - OpenTK.Graphics.ES30.PixelType _type = default(OpenTK.Graphics.ES30.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.ES30.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_33845() { - OpenTK.Graphics.ES30.TextureTarget2d _target = default(OpenTK.Graphics.ES30.TextureTarget2d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.PixelFormat _format = default(OpenTK.Graphics.ES30.PixelFormat); - OpenTK.Graphics.ES30.PixelType _type = default(OpenTK.Graphics.ES30.PixelType); - int _pixels = default(int); - OpenTK.Graphics.ES30.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,ref _pixels); -} -static unsafe void Test_TexSubImage3D_33846() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage3D_33847() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[] _pixels = default(int[]); - OpenTK.Graphics.ES30.GL.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage3D_33848() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.ES30.GL.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage3D_33849() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.ES30.GL.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage3D_33850() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int _pixels = default(int); - OpenTK.Graphics.ES30.GL.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,ref _pixels); -} -static unsafe void Test_TexSubImage3D_33851() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.PixelFormat _format = default(OpenTK.Graphics.ES30.PixelFormat); - OpenTK.Graphics.ES30.PixelType _type = default(OpenTK.Graphics.ES30.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage3D_33852() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.PixelFormat _format = default(OpenTK.Graphics.ES30.PixelFormat); - OpenTK.Graphics.ES30.PixelType _type = default(OpenTK.Graphics.ES30.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.ES30.GL.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage3D_33853() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.PixelFormat _format = default(OpenTK.Graphics.ES30.PixelFormat); - OpenTK.Graphics.ES30.PixelType _type = default(OpenTK.Graphics.ES30.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.ES30.GL.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage3D_33854() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.PixelFormat _format = default(OpenTK.Graphics.ES30.PixelFormat); - OpenTK.Graphics.ES30.PixelType _type = default(OpenTK.Graphics.ES30.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.ES30.GL.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage3D_33855() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.PixelFormat _format = default(OpenTK.Graphics.ES30.PixelFormat); - OpenTK.Graphics.ES30.PixelType _type = default(OpenTK.Graphics.ES30.PixelType); - int _pixels = default(int); - OpenTK.Graphics.ES30.GL.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,ref _pixels); -} -static unsafe void Test_TransformFeedbackVaryings_33856() { - System.Int32 _program = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.String[] _varyings = default(System.String[]); - OpenTK.Graphics.ES30.All _bufferMode = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.TransformFeedbackVaryings(_program,_count,_varyings,_bufferMode); -} -static unsafe void Test_TransformFeedbackVaryings_33857() { - System.Int32 _program = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.String[] _varyings = default(System.String[]); - OpenTK.Graphics.ES30.TransformFeedbackMode _bufferMode = default(OpenTK.Graphics.ES30.TransformFeedbackMode); - OpenTK.Graphics.ES30.GL.TransformFeedbackVaryings(_program,_count,_varyings,_bufferMode); -} -static unsafe void Test_TransformFeedbackVaryings_33858() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.String[] _varyings = default(System.String[]); - OpenTK.Graphics.ES30.All _bufferMode = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.TransformFeedbackVaryings(_program,_count,_varyings,_bufferMode); -} -static unsafe void Test_TransformFeedbackVaryings_33859() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.String[] _varyings = default(System.String[]); - OpenTK.Graphics.ES30.TransformFeedbackMode _bufferMode = default(OpenTK.Graphics.ES30.TransformFeedbackMode); - OpenTK.Graphics.ES30.GL.TransformFeedbackVaryings(_program,_count,_varyings,_bufferMode); -} -static unsafe void Test_Uniform1_33860() { - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - OpenTK.Graphics.ES30.GL.Uniform1(_location,_v0); -} -static unsafe void Test_Uniform1_33861() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.Uniform1(_location,_count,_value); -} -static unsafe void Test_Uniform1_33862() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.Uniform1(_location,_count,ref _value); -} -static unsafe void Test_Uniform1_33863() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.Uniform1(_location,_count,_value); -} -static unsafe void Test_Uniform1_33864() { - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - OpenTK.Graphics.ES30.GL.Uniform1(_location,_v0); -} -static unsafe void Test_Uniform1_33865() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Uniform1(_location,_count,_value); -} -static unsafe void Test_Uniform1_33866() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.ES30.GL.Uniform1(_location,_count,ref _value); -} -static unsafe void Test_Uniform1_33867() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Uniform1(_location,_count,_value); -} -static unsafe void Test_Uniform1_33868() { - System.Int32 _location = default(System.Int32); - System.UInt32 _v0 = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Uniform1(_location,_v0); -} -static unsafe void Test_Uniform1_33869() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _value = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.Uniform1(_location,_count,_value); -} -static unsafe void Test_Uniform1_33870() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Uniform1(_location,_count,ref _value); -} -static unsafe void Test_Uniform1_33871() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.Uniform1(_location,_count,_value); -} -static unsafe void Test_Uniform2_33872() { - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - OpenTK.Graphics.ES30.GL.Uniform2(_location,_v0,_v1); -} -static unsafe void Test_Uniform2_33873() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.Uniform2(_location,_count,_value); -} -static unsafe void Test_Uniform2_33874() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.Uniform2(_location,_count,ref _value); -} -static unsafe void Test_Uniform2_33875() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.Uniform2(_location,_count,_value); -} -static unsafe void Test_Uniform2_33876() { - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - OpenTK.Graphics.ES30.GL.Uniform2(_location,_v0,_v1); -} -static unsafe void Test_Uniform2_33877() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Uniform2(_location,_count,_value); -} -static unsafe void Test_Uniform2_33878() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Uniform2(_location,_count,_value); -} -static unsafe void Test_Uniform2_33879() { - System.Int32 _location = default(System.Int32); - System.UInt32 _v0 = default(System.UInt32); - System.UInt32 _v1 = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Uniform2(_location,_v0,_v1); -} -static unsafe void Test_Uniform2_33880() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _value = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.Uniform2(_location,_count,_value); -} -static unsafe void Test_Uniform2_33881() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Uniform2(_location,_count,ref _value); -} -static unsafe void Test_Uniform2_33882() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.Uniform2(_location,_count,_value); -} -static unsafe void Test_Uniform3_33883() { - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - OpenTK.Graphics.ES30.GL.Uniform3(_location,_v0,_v1,_v2); -} -static unsafe void Test_Uniform3_33884() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.Uniform3(_location,_count,_value); -} -static unsafe void Test_Uniform3_33885() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.Uniform3(_location,_count,ref _value); -} -static unsafe void Test_Uniform3_33886() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.Uniform3(_location,_count,_value); -} -static unsafe void Test_Uniform3_33887() { - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - System.Int32 _v2 = default(System.Int32); - OpenTK.Graphics.ES30.GL.Uniform3(_location,_v0,_v1,_v2); -} -static unsafe void Test_Uniform3_33888() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Uniform3(_location,_count,_value); -} -static unsafe void Test_Uniform3_33889() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.ES30.GL.Uniform3(_location,_count,ref _value); -} -static unsafe void Test_Uniform3_33890() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Uniform3(_location,_count,_value); -} -static unsafe void Test_Uniform3_33891() { - System.Int32 _location = default(System.Int32); - System.UInt32 _v0 = default(System.UInt32); - System.UInt32 _v1 = default(System.UInt32); - System.UInt32 _v2 = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Uniform3(_location,_v0,_v1,_v2); -} -static unsafe void Test_Uniform3_33892() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _value = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.Uniform3(_location,_count,_value); -} -static unsafe void Test_Uniform3_33893() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Uniform3(_location,_count,ref _value); -} -static unsafe void Test_Uniform3_33894() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.Uniform3(_location,_count,_value); -} -static unsafe void Test_Uniform4_33895() { - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - System.Single _v3 = default(System.Single); - OpenTK.Graphics.ES30.GL.Uniform4(_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_Uniform4_33896() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.Uniform4(_location,_count,_value); -} -static unsafe void Test_Uniform4_33897() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.Uniform4(_location,_count,ref _value); -} -static unsafe void Test_Uniform4_33898() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.Uniform4(_location,_count,_value); -} -static unsafe void Test_Uniform4_33899() { - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - System.Int32 _v2 = default(System.Int32); - System.Int32 _v3 = default(System.Int32); - OpenTK.Graphics.ES30.GL.Uniform4(_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_Uniform4_33900() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Uniform4(_location,_count,_value); -} -static unsafe void Test_Uniform4_33901() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.ES30.GL.Uniform4(_location,_count,ref _value); -} -static unsafe void Test_Uniform4_33902() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Uniform4(_location,_count,_value); -} -static unsafe void Test_Uniform4_33903() { - System.Int32 _location = default(System.Int32); - System.UInt32 _v0 = default(System.UInt32); - System.UInt32 _v1 = default(System.UInt32); - System.UInt32 _v2 = default(System.UInt32); - System.UInt32 _v3 = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Uniform4(_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_Uniform4_33904() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _value = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.Uniform4(_location,_count,_value); -} -static unsafe void Test_Uniform4_33905() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Uniform4(_location,_count,ref _value); -} -static unsafe void Test_Uniform4_33906() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.Uniform4(_location,_count,_value); -} -static unsafe void Test_UniformBlockBinding_33907() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformBlockIndex = default(System.Int32); - System.Int32 _uniformBlockBinding = default(System.Int32); - OpenTK.Graphics.ES30.GL.UniformBlockBinding(_program,_uniformBlockIndex,_uniformBlockBinding); -} -static unsafe void Test_UniformBlockBinding_33908() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _uniformBlockIndex = default(System.UInt32); - System.UInt32 _uniformBlockBinding = default(System.UInt32); - OpenTK.Graphics.ES30.GL.UniformBlockBinding(_program,_uniformBlockIndex,_uniformBlockBinding); -} -static unsafe void Test_UniformMatrix2_33909() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.UniformMatrix2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix2_33910() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.UniformMatrix2(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix2_33911() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.UniformMatrix2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix2x3_33912() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.UniformMatrix2x3(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix2x3_33913() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.UniformMatrix2x3(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix2x3_33914() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.UniformMatrix2x3(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix2x4_33915() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.UniformMatrix2x4(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix2x4_33916() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.UniformMatrix2x4(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix2x4_33917() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.UniformMatrix2x4(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3_33918() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.UniformMatrix3(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3_33919() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.UniformMatrix3(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix3_33920() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.UniformMatrix3(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3x2_33921() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.UniformMatrix3x2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3x2_33922() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.UniformMatrix3x2(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix3x2_33923() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.UniformMatrix3x2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3x4_33924() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.UniformMatrix3x4(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3x4_33925() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.UniformMatrix3x4(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix3x4_33926() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.UniformMatrix3x4(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4_33927() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.UniformMatrix4(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4_33928() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.UniformMatrix4(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix4_33929() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.UniformMatrix4(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4x2_33930() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.UniformMatrix4x2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4x2_33931() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.UniformMatrix4x2(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix4x2_33932() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.UniformMatrix4x2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4x3_33933() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.UniformMatrix4x3(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4x3_33934() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.UniformMatrix4x3(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix4x3_33935() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.UniformMatrix4x3(_location,_count,_transpose,_value); -} -static unsafe void Test_UnmapBuffer_33936() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Boolean r = OpenTK.Graphics.ES30.GL.UnmapBuffer(_target); -} -static unsafe void Test_UnmapBuffer_33937() { - OpenTK.Graphics.ES30.BufferTarget _target = default(OpenTK.Graphics.ES30.BufferTarget); - System.Boolean r = OpenTK.Graphics.ES30.GL.UnmapBuffer(_target); -} -static unsafe void Test_UseProgram_33938() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES30.GL.UseProgram(_program); -} -static unsafe void Test_UseProgram_33939() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES30.GL.UseProgram(_program); -} -static unsafe void Test_ValidateProgram_33940() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES30.GL.ValidateProgram(_program); -} -static unsafe void Test_ValidateProgram_33941() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES30.GL.ValidateProgram(_program); -} -static unsafe void Test_VertexAttrib1_33942() { - System.Int32 _index = default(System.Int32); - System.Single _x = default(System.Single); - OpenTK.Graphics.ES30.GL.VertexAttrib1(_index,_x); -} -static unsafe void Test_VertexAttrib1_33943() { - System.UInt32 _index = default(System.UInt32); - System.Single _x = default(System.Single); - OpenTK.Graphics.ES30.GL.VertexAttrib1(_index,_x); -} -static unsafe void Test_VertexAttrib1_33944() { - System.Int32 _index = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.ES30.GL.VertexAttrib1(_index,_v); -} -static unsafe void Test_VertexAttrib1_33945() { - System.UInt32 _index = default(System.UInt32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.ES30.GL.VertexAttrib1(_index,_v); -} -static unsafe void Test_VertexAttrib2_33946() { - System.Int32 _index = default(System.Int32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - OpenTK.Graphics.ES30.GL.VertexAttrib2(_index,_x,_y); -} -static unsafe void Test_VertexAttrib2_33947() { - System.UInt32 _index = default(System.UInt32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - OpenTK.Graphics.ES30.GL.VertexAttrib2(_index,_x,_y); -} -static unsafe void Test_VertexAttrib2_33948() { - System.Int32 _index = default(System.Int32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.ES30.GL.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_33949() { - System.Int32 _index = default(System.Int32); - System.Single _v = default(System.Single); - OpenTK.Graphics.ES30.GL.VertexAttrib2(_index,ref _v); -} -static unsafe void Test_VertexAttrib2_33950() { - System.Int32 _index = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.ES30.GL.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_33951() { - System.UInt32 _index = default(System.UInt32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.ES30.GL.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_33952() { - System.UInt32 _index = default(System.UInt32); - System.Single _v = default(System.Single); - OpenTK.Graphics.ES30.GL.VertexAttrib2(_index,ref _v); -} -static unsafe void Test_VertexAttrib2_33953() { - System.UInt32 _index = default(System.UInt32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.ES30.GL.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib3_33954() { - System.Int32 _index = default(System.Int32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.ES30.GL.VertexAttrib3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttrib3_33955() { - System.UInt32 _index = default(System.UInt32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.ES30.GL.VertexAttrib3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttrib3_33956() { - System.Int32 _index = default(System.Int32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.ES30.GL.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_33957() { - System.Int32 _index = default(System.Int32); - System.Single _v = default(System.Single); - OpenTK.Graphics.ES30.GL.VertexAttrib3(_index,ref _v); -} -static unsafe void Test_VertexAttrib3_33958() { - System.Int32 _index = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.ES30.GL.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_33959() { - System.UInt32 _index = default(System.UInt32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.ES30.GL.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_33960() { - System.UInt32 _index = default(System.UInt32); - System.Single _v = default(System.Single); - OpenTK.Graphics.ES30.GL.VertexAttrib3(_index,ref _v); -} -static unsafe void Test_VertexAttrib3_33961() { - System.UInt32 _index = default(System.UInt32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.ES30.GL.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib4_33962() { - System.Int32 _index = default(System.Int32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - System.Single _w = default(System.Single); - OpenTK.Graphics.ES30.GL.VertexAttrib4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttrib4_33963() { - System.UInt32 _index = default(System.UInt32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - System.Single _w = default(System.Single); - OpenTK.Graphics.ES30.GL.VertexAttrib4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttrib4_33964() { - System.Int32 _index = default(System.Int32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.ES30.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_33965() { - System.Int32 _index = default(System.Int32); - System.Single _v = default(System.Single); - OpenTK.Graphics.ES30.GL.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_33966() { - System.Int32 _index = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.ES30.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_33967() { - System.UInt32 _index = default(System.UInt32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.ES30.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_33968() { - System.UInt32 _index = default(System.UInt32); - System.Single _v = default(System.Single); - OpenTK.Graphics.ES30.GL.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_33969() { - System.UInt32 _index = default(System.UInt32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.ES30.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttribDivisor_33970() { - System.Int32 _index = default(System.Int32); - System.Int32 _divisor = default(System.Int32); - OpenTK.Graphics.ES30.GL.VertexAttribDivisor(_index,_divisor); -} -static unsafe void Test_VertexAttribDivisor_33971() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _divisor = default(System.UInt32); - OpenTK.Graphics.ES30.GL.VertexAttribDivisor(_index,_divisor); -} -static unsafe void Test_VertexAttribI4_33972() { - System.Int32 _index = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - System.Int32 _w = default(System.Int32); - OpenTK.Graphics.ES30.GL.VertexAttribI4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttribI4_33973() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - System.Int32 _w = default(System.Int32); - OpenTK.Graphics.ES30.GL.VertexAttribI4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttribI4_33974() { - System.Int32 _index = default(System.Int32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_33975() { - System.Int32 _index = default(System.Int32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.ES30.GL.VertexAttribI4(_index,ref _v); -} -static unsafe void Test_VertexAttribI4_33976() { - System.Int32 _index = default(System.Int32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.ES30.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_33977() { - System.UInt32 _index = default(System.UInt32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_33978() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.ES30.GL.VertexAttribI4(_index,ref _v); -} -static unsafe void Test_VertexAttribI4_33979() { - System.UInt32 _index = default(System.UInt32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.ES30.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_33980() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _x = default(System.UInt32); - System.UInt32 _y = default(System.UInt32); - System.UInt32 _z = default(System.UInt32); - System.UInt32 _w = default(System.UInt32); - OpenTK.Graphics.ES30.GL.VertexAttribI4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttribI4_33981() { - System.UInt32 _index = default(System.UInt32); - System.UInt32[] _v = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_33982() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _v = default(System.UInt32); - OpenTK.Graphics.ES30.GL.VertexAttribI4(_index,ref _v); -} -static unsafe void Test_VertexAttribI4_33983() { - System.UInt32 _index = default(System.UInt32); - System.UInt32* _v = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribIPointer_33984() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_33985() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.ES30.GL.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_33986() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.ES30.GL.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_33987() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.ES30.GL.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_33988() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.ES30.GL.VertexAttribIPointer(_index,_size,_type,_stride,ref _pointer); -} -static unsafe void Test_VertexAttribIPointer_33989() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.VertexAttribIntegerType _type = default(OpenTK.Graphics.ES30.VertexAttribIntegerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_33990() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.VertexAttribIntegerType _type = default(OpenTK.Graphics.ES30.VertexAttribIntegerType); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.ES30.GL.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_33991() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.VertexAttribIntegerType _type = default(OpenTK.Graphics.ES30.VertexAttribIntegerType); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.ES30.GL.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_33992() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.VertexAttribIntegerType _type = default(OpenTK.Graphics.ES30.VertexAttribIntegerType); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.ES30.GL.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_33993() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.VertexAttribIntegerType _type = default(OpenTK.Graphics.ES30.VertexAttribIntegerType); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.ES30.GL.VertexAttribIPointer(_index,_size,_type,_stride,ref _pointer); -} -static unsafe void Test_VertexAttribIPointer_33994() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_33995() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.ES30.GL.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_33996() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.ES30.GL.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_33997() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.ES30.GL.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_33998() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.ES30.GL.VertexAttribIPointer(_index,_size,_type,_stride,ref _pointer); -} -static unsafe void Test_VertexAttribIPointer_33999() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.VertexAttribIntegerType _type = default(OpenTK.Graphics.ES30.VertexAttribIntegerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_34000() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.VertexAttribIntegerType _type = default(OpenTK.Graphics.ES30.VertexAttribIntegerType); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.ES30.GL.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_34001() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.VertexAttribIntegerType _type = default(OpenTK.Graphics.ES30.VertexAttribIntegerType); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.ES30.GL.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_34002() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.VertexAttribIntegerType _type = default(OpenTK.Graphics.ES30.VertexAttribIntegerType); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.ES30.GL.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_34003() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.VertexAttribIntegerType _type = default(OpenTK.Graphics.ES30.VertexAttribIntegerType); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.ES30.GL.VertexAttribIPointer(_index,_size,_type,_stride,ref _pointer); -} -static unsafe void Test_VertexAttribPointer_34004() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_34005() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.ES30.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_34006() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.ES30.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_34007() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.ES30.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_34008() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.ES30.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,ref _pointer); -} -static unsafe void Test_VertexAttribPointer_34009() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.VertexAttribPointerType _type = default(OpenTK.Graphics.ES30.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_34010() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.VertexAttribPointerType _type = default(OpenTK.Graphics.ES30.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.ES30.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_34011() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.VertexAttribPointerType _type = default(OpenTK.Graphics.ES30.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.ES30.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_34012() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.VertexAttribPointerType _type = default(OpenTK.Graphics.ES30.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.ES30.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_34013() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.VertexAttribPointerType _type = default(OpenTK.Graphics.ES30.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.ES30.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,ref _pointer); -} -static unsafe void Test_VertexAttribPointer_34014() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_34015() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.ES30.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_34016() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.ES30.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_34017() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.ES30.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_34018() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.ES30.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,ref _pointer); -} -static unsafe void Test_VertexAttribPointer_34019() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.VertexAttribPointerType _type = default(OpenTK.Graphics.ES30.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_34020() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.VertexAttribPointerType _type = default(OpenTK.Graphics.ES30.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.ES30.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_34021() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.VertexAttribPointerType _type = default(OpenTK.Graphics.ES30.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.ES30.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_34022() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.VertexAttribPointerType _type = default(OpenTK.Graphics.ES30.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.ES30.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_34023() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.ES30.VertexAttribPointerType _type = default(OpenTK.Graphics.ES30.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.ES30.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,ref _pointer); -} -static unsafe void Test_Viewport_34024() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.GL.Viewport(_x,_y,_width,_height); -} -static unsafe void Test_WaitSync_34025() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES30.All _flags = default(OpenTK.Graphics.ES30.All); - System.Int64 _timeout = default(System.Int64); - OpenTK.Graphics.ES30.GL.WaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_WaitSync_34026() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES30.All _flags = default(OpenTK.Graphics.ES30.All); - System.UInt64 _timeout = default(System.UInt64); - OpenTK.Graphics.ES30.GL.WaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_WaitSync_34027() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES30.WaitSyncFlags _flags = default(OpenTK.Graphics.ES30.WaitSyncFlags); - System.Int64 _timeout = default(System.Int64); - OpenTK.Graphics.ES30.GL.WaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_WaitSync_34028() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES30.WaitSyncFlags _flags = default(OpenTK.Graphics.ES30.WaitSyncFlags); - System.UInt64 _timeout = default(System.UInt64); - OpenTK.Graphics.ES30.GL.WaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_BeginPerfMonitor_34029() { - System.Int32 _monitor = default(System.Int32); - OpenTK.Graphics.ES30.GL.Amd.BeginPerfMonitor(_monitor); -} -static unsafe void Test_BeginPerfMonitor_34030() { - System.UInt32 _monitor = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Amd.BeginPerfMonitor(_monitor); -} -static unsafe void Test_DeletePerfMonitor_34031() { - System.Int32 _monitors = default(System.Int32); - OpenTK.Graphics.ES30.GL.Amd.DeletePerfMonitor(_monitors); -} -static unsafe void Test_DeletePerfMonitor_34032() { - System.UInt32 _monitors = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Amd.DeletePerfMonitor(_monitors); -} -static unsafe void Test_DeletePerfMonitors_34033() { - System.Int32 _n = default(System.Int32); - System.Int32[] _monitors = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Amd.DeletePerfMonitors(_n,_monitors); -} -static unsafe void Test_DeletePerfMonitors_34034() { - System.Int32 _n = default(System.Int32); - System.Int32 _monitors = default(System.Int32); - OpenTK.Graphics.ES30.GL.Amd.DeletePerfMonitors(_n,ref _monitors); -} -static unsafe void Test_DeletePerfMonitors_34035() { - System.Int32 _n = default(System.Int32); - System.Int32* _monitors = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Amd.DeletePerfMonitors(_n,_monitors); -} -static unsafe void Test_DeletePerfMonitors_34036() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _monitors = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.Amd.DeletePerfMonitors(_n,_monitors); -} -static unsafe void Test_DeletePerfMonitors_34037() { - System.Int32 _n = default(System.Int32); - System.UInt32 _monitors = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Amd.DeletePerfMonitors(_n,ref _monitors); -} -static unsafe void Test_DeletePerfMonitors_34038() { - System.Int32 _n = default(System.Int32); - System.UInt32* _monitors = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.Amd.DeletePerfMonitors(_n,_monitors); -} -static unsafe void Test_EndPerfMonitor_34039() { - System.Int32 _monitor = default(System.Int32); - OpenTK.Graphics.ES30.GL.Amd.EndPerfMonitor(_monitor); -} -static unsafe void Test_EndPerfMonitor_34040() { - System.UInt32 _monitor = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Amd.EndPerfMonitor(_monitor); -} -static unsafe void Test_GenPerfMonitor_34041() { - System.Int32 r = OpenTK.Graphics.ES30.GL.Amd.GenPerfMonitor(); -} -static unsafe void Test_GenPerfMonitors_34042() { - System.Int32 _n = default(System.Int32); - System.Int32[] _monitors = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Amd.GenPerfMonitors(_n,_monitors); -} -static unsafe void Test_GenPerfMonitors_34043() { - System.Int32 _n = default(System.Int32); - System.Int32 _monitors = default(System.Int32); - OpenTK.Graphics.ES30.GL.Amd.GenPerfMonitors(_n,out _monitors); -} -static unsafe void Test_GenPerfMonitors_34044() { - System.Int32 _n = default(System.Int32); - System.Int32* _monitors = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Amd.GenPerfMonitors(_n,_monitors); -} -static unsafe void Test_GenPerfMonitors_34045() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _monitors = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.Amd.GenPerfMonitors(_n,_monitors); -} -static unsafe void Test_GenPerfMonitors_34046() { - System.Int32 _n = default(System.Int32); - System.UInt32 _monitors = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Amd.GenPerfMonitors(_n,out _monitors); -} -static unsafe void Test_GenPerfMonitors_34047() { - System.Int32 _n = default(System.Int32); - System.UInt32* _monitors = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.Amd.GenPerfMonitors(_n,_monitors); -} -static unsafe void Test_GetPerfMonitorCounterData_34048() { - System.Int32 _monitor = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _dataSize = default(System.Int32); - System.Int32[] _data = default(System.Int32[]); - System.Int32 _bytesWritten = default(System.Int32); - OpenTK.Graphics.ES30.GL.Amd.GetPerfMonitorCounterData(_monitor,_pname,_dataSize,_data,out _bytesWritten); -} -static unsafe void Test_GetPerfMonitorCounterData_34049() { - System.Int32 _monitor = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _dataSize = default(System.Int32); - System.Int32 _data = default(System.Int32); - System.Int32 _bytesWritten = default(System.Int32); - OpenTK.Graphics.ES30.GL.Amd.GetPerfMonitorCounterData(_monitor,_pname,_dataSize,out _data,out _bytesWritten); -} -static unsafe void Test_GetPerfMonitorCounterData_34050() { - System.Int32 _monitor = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _dataSize = default(System.Int32); - System.Int32* _data = default(System.Int32*); - System.Int32* _bytesWritten = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Amd.GetPerfMonitorCounterData(_monitor,_pname,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfMonitorCounterData_34051() { - System.UInt32 _monitor = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _dataSize = default(System.Int32); - System.UInt32[] _data = default(System.UInt32[]); - System.Int32 _bytesWritten = default(System.Int32); - OpenTK.Graphics.ES30.GL.Amd.GetPerfMonitorCounterData(_monitor,_pname,_dataSize,_data,out _bytesWritten); -} -static unsafe void Test_GetPerfMonitorCounterData_34052() { - System.UInt32 _monitor = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _dataSize = default(System.Int32); - System.UInt32 _data = default(System.UInt32); - System.Int32 _bytesWritten = default(System.Int32); - OpenTK.Graphics.ES30.GL.Amd.GetPerfMonitorCounterData(_monitor,_pname,_dataSize,out _data,out _bytesWritten); -} -static unsafe void Test_GetPerfMonitorCounterData_34053() { - System.UInt32 _monitor = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _dataSize = default(System.Int32); - System.UInt32* _data = default(System.UInt32*); - System.Int32* _bytesWritten = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Amd.GetPerfMonitorCounterData(_monitor,_pname,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfMonitorCounterInfo_34054() { - System.Int32 _group = default(System.Int32); - System.Int32 _counter = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.Amd.GetPerfMonitorCounterInfo(_group,_counter,_pname,_data); -} -static unsafe void Test_GetPerfMonitorCounterInfo_34055() { - System.Int32 _group = default(System.Int32); - System.Int32 _counter = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - int[] _data = default(int[]); - OpenTK.Graphics.ES30.GL.Amd.GetPerfMonitorCounterInfo(_group,_counter,_pname,_data); -} -static unsafe void Test_GetPerfMonitorCounterInfo_34056() { - System.Int32 _group = default(System.Int32); - System.Int32 _counter = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES30.GL.Amd.GetPerfMonitorCounterInfo(_group,_counter,_pname,_data); -} -static unsafe void Test_GetPerfMonitorCounterInfo_34057() { - System.Int32 _group = default(System.Int32); - System.Int32 _counter = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES30.GL.Amd.GetPerfMonitorCounterInfo(_group,_counter,_pname,_data); -} -static unsafe void Test_GetPerfMonitorCounterInfo_34058() { - System.Int32 _group = default(System.Int32); - System.Int32 _counter = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - int _data = default(int); - OpenTK.Graphics.ES30.GL.Amd.GetPerfMonitorCounterInfo(_group,_counter,_pname,ref _data); -} -static unsafe void Test_GetPerfMonitorCounterInfo_34059() { - System.UInt32 _group = default(System.UInt32); - System.UInt32 _counter = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.Amd.GetPerfMonitorCounterInfo(_group,_counter,_pname,_data); -} -static unsafe void Test_GetPerfMonitorCounterInfo_34060() { - System.UInt32 _group = default(System.UInt32); - System.UInt32 _counter = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - int[] _data = default(int[]); - OpenTK.Graphics.ES30.GL.Amd.GetPerfMonitorCounterInfo(_group,_counter,_pname,_data); -} -static unsafe void Test_GetPerfMonitorCounterInfo_34061() { - System.UInt32 _group = default(System.UInt32); - System.UInt32 _counter = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES30.GL.Amd.GetPerfMonitorCounterInfo(_group,_counter,_pname,_data); -} -static unsafe void Test_GetPerfMonitorCounterInfo_34062() { - System.UInt32 _group = default(System.UInt32); - System.UInt32 _counter = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES30.GL.Amd.GetPerfMonitorCounterInfo(_group,_counter,_pname,_data); -} -static unsafe void Test_GetPerfMonitorCounterInfo_34063() { - System.UInt32 _group = default(System.UInt32); - System.UInt32 _counter = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - int _data = default(int); - OpenTK.Graphics.ES30.GL.Amd.GetPerfMonitorCounterInfo(_group,_counter,_pname,ref _data); -} -static unsafe void Test_GetPerfMonitorCounters_34064() { - System.Int32 _group = default(System.Int32); - System.Int32 _numCounters = default(System.Int32); - System.Int32 _maxActiveCounters = default(System.Int32); - System.Int32 _counterSize = default(System.Int32); - System.Int32[] _counters = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Amd.GetPerfMonitorCounters(_group,out _numCounters,out _maxActiveCounters,_counterSize,_counters); -} -static unsafe void Test_GetPerfMonitorCounters_34065() { - System.Int32 _group = default(System.Int32); - System.Int32 _numCounters = default(System.Int32); - System.Int32 _maxActiveCounters = default(System.Int32); - System.Int32 _counterSize = default(System.Int32); - System.Int32 _counters = default(System.Int32); - OpenTK.Graphics.ES30.GL.Amd.GetPerfMonitorCounters(_group,out _numCounters,out _maxActiveCounters,_counterSize,out _counters); -} -static unsafe void Test_GetPerfMonitorCounters_34066() { - System.Int32 _group = default(System.Int32); - System.Int32* _numCounters = default(System.Int32*); - System.Int32* _maxActiveCounters = default(System.Int32*); - System.Int32 _counterSize = default(System.Int32); - System.Int32* _counters = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Amd.GetPerfMonitorCounters(_group,_numCounters,_maxActiveCounters,_counterSize,_counters); -} -static unsafe void Test_GetPerfMonitorCounters_34067() { - System.UInt32 _group = default(System.UInt32); - System.Int32 _numCounters = default(System.Int32); - System.Int32 _maxActiveCounters = default(System.Int32); - System.Int32 _counterSize = default(System.Int32); - System.UInt32[] _counters = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.Amd.GetPerfMonitorCounters(_group,out _numCounters,out _maxActiveCounters,_counterSize,_counters); -} -static unsafe void Test_GetPerfMonitorCounters_34068() { - System.UInt32 _group = default(System.UInt32); - System.Int32 _numCounters = default(System.Int32); - System.Int32 _maxActiveCounters = default(System.Int32); - System.Int32 _counterSize = default(System.Int32); - System.UInt32 _counters = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Amd.GetPerfMonitorCounters(_group,out _numCounters,out _maxActiveCounters,_counterSize,out _counters); -} -static unsafe void Test_GetPerfMonitorCounters_34069() { - System.UInt32 _group = default(System.UInt32); - System.Int32* _numCounters = default(System.Int32*); - System.Int32* _maxActiveCounters = default(System.Int32*); - System.Int32 _counterSize = default(System.Int32); - System.UInt32* _counters = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.Amd.GetPerfMonitorCounters(_group,_numCounters,_maxActiveCounters,_counterSize,_counters); -} -static unsafe void Test_GetPerfMonitorCounterString_34070() { - System.Int32 _group = default(System.Int32); - System.Int32 _counter = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _counterString = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Amd.GetPerfMonitorCounterString(_group,_counter,_bufSize,out _length,_counterString); -} -static unsafe void Test_GetPerfMonitorCounterString_34071() { - System.Int32 _group = default(System.Int32); - System.Int32 _counter = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _counterString = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Amd.GetPerfMonitorCounterString(_group,_counter,_bufSize,_length,_counterString); -} -static unsafe void Test_GetPerfMonitorCounterString_34072() { - System.UInt32 _group = default(System.UInt32); - System.UInt32 _counter = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _counterString = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Amd.GetPerfMonitorCounterString(_group,_counter,_bufSize,out _length,_counterString); -} -static unsafe void Test_GetPerfMonitorCounterString_34073() { - System.UInt32 _group = default(System.UInt32); - System.UInt32 _counter = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _counterString = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Amd.GetPerfMonitorCounterString(_group,_counter,_bufSize,_length,_counterString); -} -static unsafe void Test_GetPerfMonitorGroups_34074() { - System.Int32 _numGroups = default(System.Int32); - System.Int32 _groupsSize = default(System.Int32); - System.Int32[] _groups = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Amd.GetPerfMonitorGroups(out _numGroups,_groupsSize,_groups); -} -static unsafe void Test_GetPerfMonitorGroups_34075() { - System.Int32 _numGroups = default(System.Int32); - System.Int32 _groupsSize = default(System.Int32); - System.Int32 _groups = default(System.Int32); - OpenTK.Graphics.ES30.GL.Amd.GetPerfMonitorGroups(out _numGroups,_groupsSize,out _groups); -} -static unsafe void Test_GetPerfMonitorGroups_34076() { - System.Int32 _numGroups = default(System.Int32); - System.Int32 _groupsSize = default(System.Int32); - System.UInt32[] _groups = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.Amd.GetPerfMonitorGroups(out _numGroups,_groupsSize,_groups); -} -static unsafe void Test_GetPerfMonitorGroups_34077() { - System.Int32 _numGroups = default(System.Int32); - System.Int32 _groupsSize = default(System.Int32); - System.UInt32 _groups = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Amd.GetPerfMonitorGroups(out _numGroups,_groupsSize,out _groups); -} -static unsafe void Test_GetPerfMonitorGroups_34078() { - System.Int32* _numGroups = default(System.Int32*); - System.Int32 _groupsSize = default(System.Int32); - System.Int32* _groups = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Amd.GetPerfMonitorGroups(_numGroups,_groupsSize,_groups); -} -static unsafe void Test_GetPerfMonitorGroups_34079() { - System.Int32* _numGroups = default(System.Int32*); - System.Int32 _groupsSize = default(System.Int32); - System.UInt32* _groups = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.Amd.GetPerfMonitorGroups(_numGroups,_groupsSize,_groups); -} -static unsafe void Test_GetPerfMonitorGroupString_34080() { - System.Int32 _group = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _groupString = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Amd.GetPerfMonitorGroupString(_group,_bufSize,out _length,_groupString); -} -static unsafe void Test_GetPerfMonitorGroupString_34081() { - System.Int32 _group = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _groupString = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Amd.GetPerfMonitorGroupString(_group,_bufSize,_length,_groupString); -} -static unsafe void Test_GetPerfMonitorGroupString_34082() { - System.UInt32 _group = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _groupString = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Amd.GetPerfMonitorGroupString(_group,_bufSize,out _length,_groupString); -} -static unsafe void Test_GetPerfMonitorGroupString_34083() { - System.UInt32 _group = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _groupString = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Amd.GetPerfMonitorGroupString(_group,_bufSize,_length,_groupString); -} -static unsafe void Test_SelectPerfMonitorCounters_34084() { - System.Int32 _monitor = default(System.Int32); - System.Boolean _enable = default(System.Boolean); - System.Int32 _group = default(System.Int32); - System.Int32 _numCounters = default(System.Int32); - System.Int32[] _counterList = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Amd.SelectPerfMonitorCounters(_monitor,_enable,_group,_numCounters,_counterList); -} -static unsafe void Test_SelectPerfMonitorCounters_34085() { - System.Int32 _monitor = default(System.Int32); - System.Boolean _enable = default(System.Boolean); - System.Int32 _group = default(System.Int32); - System.Int32 _numCounters = default(System.Int32); - System.Int32 _counterList = default(System.Int32); - OpenTK.Graphics.ES30.GL.Amd.SelectPerfMonitorCounters(_monitor,_enable,_group,_numCounters,out _counterList); -} -static unsafe void Test_SelectPerfMonitorCounters_34086() { - System.Int32 _monitor = default(System.Int32); - System.Boolean _enable = default(System.Boolean); - System.Int32 _group = default(System.Int32); - System.Int32 _numCounters = default(System.Int32); - System.Int32* _counterList = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Amd.SelectPerfMonitorCounters(_monitor,_enable,_group,_numCounters,_counterList); -} -static unsafe void Test_SelectPerfMonitorCounters_34087() { - System.UInt32 _monitor = default(System.UInt32); - System.Boolean _enable = default(System.Boolean); - System.UInt32 _group = default(System.UInt32); - System.Int32 _numCounters = default(System.Int32); - System.UInt32[] _counterList = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.Amd.SelectPerfMonitorCounters(_monitor,_enable,_group,_numCounters,_counterList); -} -static unsafe void Test_SelectPerfMonitorCounters_34088() { - System.UInt32 _monitor = default(System.UInt32); - System.Boolean _enable = default(System.Boolean); - System.UInt32 _group = default(System.UInt32); - System.Int32 _numCounters = default(System.Int32); - System.UInt32 _counterList = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Amd.SelectPerfMonitorCounters(_monitor,_enable,_group,_numCounters,out _counterList); -} -static unsafe void Test_SelectPerfMonitorCounters_34089() { - System.UInt32 _monitor = default(System.UInt32); - System.Boolean _enable = default(System.Boolean); - System.UInt32 _group = default(System.UInt32); - System.Int32 _numCounters = default(System.Int32); - System.UInt32* _counterList = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.Amd.SelectPerfMonitorCounters(_monitor,_enable,_group,_numCounters,_counterList); -} -static unsafe void Test_BlitFramebuffer_34090() { - System.Int32 _srcX0 = default(System.Int32); - System.Int32 _srcY0 = default(System.Int32); - System.Int32 _srcX1 = default(System.Int32); - System.Int32 _srcY1 = default(System.Int32); - System.Int32 _dstX0 = default(System.Int32); - System.Int32 _dstY0 = default(System.Int32); - System.Int32 _dstX1 = default(System.Int32); - System.Int32 _dstY1 = default(System.Int32); - OpenTK.Graphics.ES30.All _mask = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _filter = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.Angle.BlitFramebuffer(_srcX0,_srcY0,_srcX1,_srcY1,_dstX0,_dstY0,_dstX1,_dstY1,_mask,_filter); -} -static unsafe void Test_BlitFramebuffer_34091() { - System.Int32 _srcX0 = default(System.Int32); - System.Int32 _srcY0 = default(System.Int32); - System.Int32 _srcX1 = default(System.Int32); - System.Int32 _srcY1 = default(System.Int32); - System.Int32 _dstX0 = default(System.Int32); - System.Int32 _dstY0 = default(System.Int32); - System.Int32 _dstX1 = default(System.Int32); - System.Int32 _dstY1 = default(System.Int32); - OpenTK.Graphics.ES30.ClearBufferMask _mask = default(OpenTK.Graphics.ES30.ClearBufferMask); - OpenTK.Graphics.ES30.BlitFramebufferFilter _filter = default(OpenTK.Graphics.ES30.BlitFramebufferFilter); - OpenTK.Graphics.ES30.GL.Angle.BlitFramebuffer(_srcX0,_srcY0,_srcX1,_srcY1,_dstX0,_dstY0,_dstX1,_dstY1,_mask,_filter); -} -static unsafe void Test_DrawArraysInstanced_34092() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Angle.DrawArraysInstanced(_mode,_first,_count,_primcount); -} -static unsafe void Test_DrawArraysInstanced_34093() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Angle.DrawArraysInstanced(_mode,_first,_count,_primcount); -} -static unsafe void Test_DrawElementsInstanced_34094() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Angle.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_34095() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Angle.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_34096() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Angle.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_34097() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Angle.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_34098() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Angle.DrawElementsInstanced(_mode,_count,_type,ref _indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_34099() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Angle.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_34100() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Angle.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_34101() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Angle.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_34102() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Angle.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_34103() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Angle.DrawElementsInstanced(_mode,_count,_type,ref _indices,_primcount); -} -static unsafe void Test_GetTranslatedShaderSource_34104() { - System.Int32 _shader = default(System.Int32); - System.Int32 _bufsize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Angle.GetTranslatedShaderSource(_shader,_bufsize,_length,_source); -} -static unsafe void Test_GetTranslatedShaderSource_34105() { - System.Int32 _shader = default(System.Int32); - System.Int32 _bufsize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Angle.GetTranslatedShaderSource(_shader,_bufsize,out _length,_source); -} -static unsafe void Test_GetTranslatedShaderSource_34106() { - System.Int32 _shader = default(System.Int32); - System.Int32 _bufsize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Angle.GetTranslatedShaderSource(_shader,_bufsize,_length,_source); -} -static unsafe void Test_GetTranslatedShaderSource_34107() { - System.UInt32 _shader = default(System.UInt32); - System.Int32 _bufsize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Angle.GetTranslatedShaderSource(_shader,_bufsize,_length,_source); -} -static unsafe void Test_GetTranslatedShaderSource_34108() { - System.UInt32 _shader = default(System.UInt32); - System.Int32 _bufsize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Angle.GetTranslatedShaderSource(_shader,_bufsize,out _length,_source); -} -static unsafe void Test_GetTranslatedShaderSource_34109() { - System.UInt32 _shader = default(System.UInt32); - System.Int32 _bufsize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Angle.GetTranslatedShaderSource(_shader,_bufsize,_length,_source); -} -static unsafe void Test_RenderbufferStorageMultisample_34110() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.GL.Angle.RenderbufferStorageMultisample(_target,_samples,_internalformat,_width,_height); -} -static unsafe void Test_RenderbufferStorageMultisample_34111() { - OpenTK.Graphics.ES30.RenderbufferTarget _target = default(OpenTK.Graphics.ES30.RenderbufferTarget); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.ES30.RenderbufferInternalFormat _internalformat = default(OpenTK.Graphics.ES30.RenderbufferInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.GL.Angle.RenderbufferStorageMultisample(_target,_samples,_internalformat,_width,_height); -} -static unsafe void Test_VertexAttribDivisor_34112() { - System.Int32 _index = default(System.Int32); - System.Int32 _divisor = default(System.Int32); - OpenTK.Graphics.ES30.GL.Angle.VertexAttribDivisor(_index,_divisor); -} -static unsafe void Test_VertexAttribDivisor_34113() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _divisor = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Angle.VertexAttribDivisor(_index,_divisor); -} -static unsafe void Test_ClientWaitSync_34114() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES30.All _flags = default(OpenTK.Graphics.ES30.All); - System.Int64 _timeout = default(System.Int64); - OpenTK.Graphics.ES30.WaitSyncStatus r = OpenTK.Graphics.ES30.GL.Apple.ClientWaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_ClientWaitSync_34115() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES30.All _flags = default(OpenTK.Graphics.ES30.All); - System.UInt64 _timeout = default(System.UInt64); - OpenTK.Graphics.ES30.WaitSyncStatus r = OpenTK.Graphics.ES30.GL.Apple.ClientWaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_ClientWaitSync_34116() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES30.ClientWaitSyncFlags _flags = default(OpenTK.Graphics.ES30.ClientWaitSyncFlags); - System.Int64 _timeout = default(System.Int64); - OpenTK.Graphics.ES30.WaitSyncStatus r = OpenTK.Graphics.ES30.GL.Apple.ClientWaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_ClientWaitSync_34117() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES30.ClientWaitSyncFlags _flags = default(OpenTK.Graphics.ES30.ClientWaitSyncFlags); - System.UInt64 _timeout = default(System.UInt64); - OpenTK.Graphics.ES30.WaitSyncStatus r = OpenTK.Graphics.ES30.GL.Apple.ClientWaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_CopyTextureLevel_34118() { - System.Int32 _destinationTexture = default(System.Int32); - System.Int32 _sourceTexture = default(System.Int32); - System.Int32 _sourceBaseLevel = default(System.Int32); - System.Int32 _sourceLevelCount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Apple.CopyTextureLevel(_destinationTexture,_sourceTexture,_sourceBaseLevel,_sourceLevelCount); -} -static unsafe void Test_CopyTextureLevel_34119() { - System.UInt32 _destinationTexture = default(System.UInt32); - System.UInt32 _sourceTexture = default(System.UInt32); - System.Int32 _sourceBaseLevel = default(System.Int32); - System.Int32 _sourceLevelCount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Apple.CopyTextureLevel(_destinationTexture,_sourceTexture,_sourceBaseLevel,_sourceLevelCount); -} -static unsafe void Test_DeleteSync_34120() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.Apple.DeleteSync(_sync); -} -static unsafe void Test_FenceSync_34121() { - OpenTK.Graphics.ES30.All _condition = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _flags = default(OpenTK.Graphics.ES30.All); - System.IntPtr r = OpenTK.Graphics.ES30.GL.Apple.FenceSync(_condition,_flags); -} -static unsafe void Test_FenceSync_34122() { - OpenTK.Graphics.ES30.SyncCondition _condition = default(OpenTK.Graphics.ES30.SyncCondition); - OpenTK.Graphics.ES30.WaitSyncFlags _flags = default(OpenTK.Graphics.ES30.WaitSyncFlags); - System.IntPtr r = OpenTK.Graphics.ES30.GL.Apple.FenceSync(_condition,_flags); -} -static unsafe void Test_GetInteger64_34123() { - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int64 r = OpenTK.Graphics.ES30.GL.Apple.GetInteger64(_pname); -} -static unsafe void Test_GetInteger64_34124() { - OpenTK.Graphics.ES30.GetPName _pname = default(OpenTK.Graphics.ES30.GetPName); - System.Int64 r = OpenTK.Graphics.ES30.GL.Apple.GetInteger64(_pname); -} -static unsafe void Test_GetInteger64_34125() { - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.ES30.GL.Apple.GetInteger64(_pname,_params); -} -static unsafe void Test_GetInteger64_34126() { - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.ES30.GL.Apple.GetInteger64(_pname,out _params); -} -static unsafe void Test_GetInteger64_34127() { - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.ES30.GL.Apple.GetInteger64(_pname,_params); -} -static unsafe void Test_GetInteger64_34128() { - OpenTK.Graphics.ES30.GetPName _pname = default(OpenTK.Graphics.ES30.GetPName); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.ES30.GL.Apple.GetInteger64(_pname,_params); -} -static unsafe void Test_GetInteger64_34129() { - OpenTK.Graphics.ES30.GetPName _pname = default(OpenTK.Graphics.ES30.GetPName); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.ES30.GL.Apple.GetInteger64(_pname,out _params); -} -static unsafe void Test_GetInteger64_34130() { - OpenTK.Graphics.ES30.GetPName _pname = default(OpenTK.Graphics.ES30.GetPName); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.ES30.GL.Apple.GetInteger64(_pname,_params); -} -static unsafe void Test_GetSync_34131() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Int32[] _values = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Apple.GetSync(_sync,_pname,_bufSize,_length,_values); -} -static unsafe void Test_GetSync_34132() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _values = default(System.Int32); - OpenTK.Graphics.ES30.GL.Apple.GetSync(_sync,_pname,_bufSize,out _length,out _values); -} -static unsafe void Test_GetSync_34133() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _values = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Apple.GetSync(_sync,_pname,_bufSize,_length,_values); -} -static unsafe void Test_GetSync_34134() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES30.SyncParameterName _pname = default(OpenTK.Graphics.ES30.SyncParameterName); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Int32[] _values = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Apple.GetSync(_sync,_pname,_bufSize,_length,_values); -} -static unsafe void Test_GetSync_34135() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES30.SyncParameterName _pname = default(OpenTK.Graphics.ES30.SyncParameterName); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _values = default(System.Int32); - OpenTK.Graphics.ES30.GL.Apple.GetSync(_sync,_pname,_bufSize,out _length,out _values); -} -static unsafe void Test_GetSync_34136() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES30.SyncParameterName _pname = default(OpenTK.Graphics.ES30.SyncParameterName); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _values = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Apple.GetSync(_sync,_pname,_bufSize,_length,_values); -} -static unsafe void Test_IsSync_34137() { - System.IntPtr _sync = default(System.IntPtr); - System.Boolean r = OpenTK.Graphics.ES30.GL.Apple.IsSync(_sync); -} -static unsafe void Test_RenderbufferStorageMultisample_34138() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.GL.Apple.RenderbufferStorageMultisample(_target,_samples,_internalformat,_width,_height); -} -static unsafe void Test_RenderbufferStorageMultisample_34139() { - OpenTK.Graphics.ES30.RenderbufferTarget _target = default(OpenTK.Graphics.ES30.RenderbufferTarget); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.ES30.RenderbufferInternalFormat _internalformat = default(OpenTK.Graphics.ES30.RenderbufferInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.GL.Apple.RenderbufferStorageMultisample(_target,_samples,_internalformat,_width,_height); -} -static unsafe void Test_ResolveMultisampleFramebuffer_34140() { - OpenTK.Graphics.ES30.GL.Apple.ResolveMultisampleFramebuffer(); -} -static unsafe void Test_WaitSync_34141() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES30.All _flags = default(OpenTK.Graphics.ES30.All); - System.Int64 _timeout = default(System.Int64); - OpenTK.Graphics.ES30.GL.Apple.WaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_WaitSync_34142() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES30.All _flags = default(OpenTK.Graphics.ES30.All); - System.UInt64 _timeout = default(System.UInt64); - OpenTK.Graphics.ES30.GL.Apple.WaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_WaitSync_34143() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES30.WaitSyncFlags _flags = default(OpenTK.Graphics.ES30.WaitSyncFlags); - System.Int64 _timeout = default(System.Int64); - OpenTK.Graphics.ES30.GL.Apple.WaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_WaitSync_34144() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.ES30.WaitSyncFlags _flags = default(OpenTK.Graphics.ES30.WaitSyncFlags); - System.UInt64 _timeout = default(System.UInt64); - OpenTK.Graphics.ES30.GL.Apple.WaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_ActiveProgram_34145() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.ActiveProgram(_program); -} -static unsafe void Test_ActiveProgram_34146() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Ext.ActiveProgram(_program); -} -static unsafe void Test_ActiveShaderProgram_34147() { - System.Int32 _pipeline = default(System.Int32); - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.ActiveShaderProgram(_pipeline,_program); -} -static unsafe void Test_ActiveShaderProgram_34148() { - System.UInt32 _pipeline = default(System.UInt32); - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Ext.ActiveShaderProgram(_pipeline,_program); -} -static unsafe void Test_BeginQuery_34149() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.BeginQuery(_target,_id); -} -static unsafe void Test_BeginQuery_34150() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Ext.BeginQuery(_target,_id); -} -static unsafe void Test_BeginQuery_34151() { - OpenTK.Graphics.ES30.QueryTarget _target = default(OpenTK.Graphics.ES30.QueryTarget); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.BeginQuery(_target,_id); -} -static unsafe void Test_BeginQuery_34152() { - OpenTK.Graphics.ES30.QueryTarget _target = default(OpenTK.Graphics.ES30.QueryTarget); - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Ext.BeginQuery(_target,_id); -} -static unsafe void Test_BindProgramPipeline_34153() { - System.Int32 _pipeline = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.BindProgramPipeline(_pipeline); -} -static unsafe void Test_BindProgramPipeline_34154() { - System.UInt32 _pipeline = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Ext.BindProgramPipeline(_pipeline); -} -static unsafe void Test_BlendEquation_34155() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.Ext.BlendEquation(_mode); -} -static unsafe void Test_BlendEquation_34156() { - OpenTK.Graphics.ES30.BlendEquationMode _mode = default(OpenTK.Graphics.ES30.BlendEquationMode); - OpenTK.Graphics.ES30.GL.Ext.BlendEquation(_mode); -} -static unsafe void Test_BlendEquation_34157() { - System.Int32 _buf = default(System.Int32); - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.Ext.BlendEquation(_buf,_mode); -} -static unsafe void Test_BlendEquation_34158() { - System.Int32 _buf = default(System.Int32); - OpenTK.Graphics.ES30.BlendEquationMode _mode = default(OpenTK.Graphics.ES30.BlendEquationMode); - OpenTK.Graphics.ES30.GL.Ext.BlendEquation(_buf,_mode); -} -static unsafe void Test_BlendEquation_34159() { - System.UInt32 _buf = default(System.UInt32); - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.Ext.BlendEquation(_buf,_mode); -} -static unsafe void Test_BlendEquation_34160() { - System.UInt32 _buf = default(System.UInt32); - OpenTK.Graphics.ES30.BlendEquationMode _mode = default(OpenTK.Graphics.ES30.BlendEquationMode); - OpenTK.Graphics.ES30.GL.Ext.BlendEquation(_buf,_mode); -} -static unsafe void Test_BlendEquationSeparate_34161() { - System.Int32 _buf = default(System.Int32); - OpenTK.Graphics.ES30.All _modeRGB = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _modeAlpha = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.Ext.BlendEquationSeparate(_buf,_modeRGB,_modeAlpha); -} -static unsafe void Test_BlendEquationSeparate_34162() { - System.Int32 _buf = default(System.Int32); - OpenTK.Graphics.ES30.BlendEquationMode _modeRGB = default(OpenTK.Graphics.ES30.BlendEquationMode); - OpenTK.Graphics.ES30.BlendEquationMode _modeAlpha = default(OpenTK.Graphics.ES30.BlendEquationMode); - OpenTK.Graphics.ES30.GL.Ext.BlendEquationSeparate(_buf,_modeRGB,_modeAlpha); -} -static unsafe void Test_BlendEquationSeparate_34163() { - System.UInt32 _buf = default(System.UInt32); - OpenTK.Graphics.ES30.All _modeRGB = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _modeAlpha = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.Ext.BlendEquationSeparate(_buf,_modeRGB,_modeAlpha); -} -static unsafe void Test_BlendEquationSeparate_34164() { - System.UInt32 _buf = default(System.UInt32); - OpenTK.Graphics.ES30.BlendEquationMode _modeRGB = default(OpenTK.Graphics.ES30.BlendEquationMode); - OpenTK.Graphics.ES30.BlendEquationMode _modeAlpha = default(OpenTK.Graphics.ES30.BlendEquationMode); - OpenTK.Graphics.ES30.GL.Ext.BlendEquationSeparate(_buf,_modeRGB,_modeAlpha); -} -static unsafe void Test_BlendFunc_34165() { - System.Int32 _buf = default(System.Int32); - OpenTK.Graphics.ES30.All _src = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _dst = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.Ext.BlendFunc(_buf,_src,_dst); -} -static unsafe void Test_BlendFunc_34166() { - System.UInt32 _buf = default(System.UInt32); - OpenTK.Graphics.ES30.All _src = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _dst = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.Ext.BlendFunc(_buf,_src,_dst); -} -static unsafe void Test_BlendFuncSeparate_34167() { - System.Int32 _buf = default(System.Int32); - OpenTK.Graphics.ES30.All _srcRGB = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _dstRGB = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _srcAlpha = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _dstAlpha = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.Ext.BlendFuncSeparate(_buf,_srcRGB,_dstRGB,_srcAlpha,_dstAlpha); -} -static unsafe void Test_BlendFuncSeparate_34168() { - System.UInt32 _buf = default(System.UInt32); - OpenTK.Graphics.ES30.All _srcRGB = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _dstRGB = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _srcAlpha = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _dstAlpha = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.Ext.BlendFuncSeparate(_buf,_srcRGB,_dstRGB,_srcAlpha,_dstAlpha); -} -static unsafe void Test_ColorMask_34169() { - System.Int32 _index = default(System.Int32); - System.Boolean _r = default(System.Boolean); - System.Boolean _g = default(System.Boolean); - System.Boolean _b = default(System.Boolean); - System.Boolean _a = default(System.Boolean); - OpenTK.Graphics.ES30.GL.Ext.ColorMask(_index,_r,_g,_b,_a); -} -static unsafe void Test_ColorMask_34170() { - System.UInt32 _index = default(System.UInt32); - System.Boolean _r = default(System.Boolean); - System.Boolean _g = default(System.Boolean); - System.Boolean _b = default(System.Boolean); - System.Boolean _a = default(System.Boolean); - OpenTK.Graphics.ES30.GL.Ext.ColorMask(_index,_r,_g,_b,_a); -} -static unsafe void Test_CopyImageSubData_34171() { - System.Int32 _srcName = default(System.Int32); - OpenTK.Graphics.ES30.All _srcTarget = default(OpenTK.Graphics.ES30.All); - System.Int32 _srcLevel = default(System.Int32); - System.Int32 _srcX = default(System.Int32); - System.Int32 _srcY = default(System.Int32); - System.Int32 _srcZ = default(System.Int32); - System.Int32 _dstName = default(System.Int32); - OpenTK.Graphics.ES30.All _dstTarget = default(OpenTK.Graphics.ES30.All); - System.Int32 _dstLevel = default(System.Int32); - System.Int32 _dstX = default(System.Int32); - System.Int32 _dstY = default(System.Int32); - System.Int32 _dstZ = default(System.Int32); - System.Int32 _srcWidth = default(System.Int32); - System.Int32 _srcHeight = default(System.Int32); - System.Int32 _srcDepth = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.CopyImageSubData(_srcName,_srcTarget,_srcLevel,_srcX,_srcY,_srcZ,_dstName,_dstTarget,_dstLevel,_dstX,_dstY,_dstZ,_srcWidth,_srcHeight,_srcDepth); -} -static unsafe void Test_CopyImageSubData_34172() { - System.UInt32 _srcName = default(System.UInt32); - OpenTK.Graphics.ES30.All _srcTarget = default(OpenTK.Graphics.ES30.All); - System.Int32 _srcLevel = default(System.Int32); - System.Int32 _srcX = default(System.Int32); - System.Int32 _srcY = default(System.Int32); - System.Int32 _srcZ = default(System.Int32); - System.UInt32 _dstName = default(System.UInt32); - OpenTK.Graphics.ES30.All _dstTarget = default(OpenTK.Graphics.ES30.All); - System.Int32 _dstLevel = default(System.Int32); - System.Int32 _dstX = default(System.Int32); - System.Int32 _dstY = default(System.Int32); - System.Int32 _dstZ = default(System.Int32); - System.Int32 _srcWidth = default(System.Int32); - System.Int32 _srcHeight = default(System.Int32); - System.Int32 _srcDepth = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.CopyImageSubData(_srcName,_srcTarget,_srcLevel,_srcX,_srcY,_srcZ,_dstName,_dstTarget,_dstLevel,_dstX,_dstY,_dstZ,_srcWidth,_srcHeight,_srcDepth); -} -static unsafe void Test_CreateShaderProgram_34173() { - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.String _string = default(System.String); - System.Int32 r = OpenTK.Graphics.ES30.GL.Ext.CreateShaderProgram(_type,_string); -} -static unsafe void Test_CreateShaderProgram_34174() { - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - System.String[] _strings = default(System.String[]); - System.Int32 r = OpenTK.Graphics.ES30.GL.Ext.CreateShaderProgram(_type,_count,_strings); -} -static unsafe void Test_DeleteProgramPipeline_34175() { - System.Int32 _pipelines = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.DeleteProgramPipeline(_pipelines); -} -static unsafe void Test_DeleteProgramPipeline_34176() { - System.UInt32 _pipelines = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Ext.DeleteProgramPipeline(_pipelines); -} -static unsafe void Test_DeleteProgramPipelines_34177() { - System.Int32 _n = default(System.Int32); - System.Int32[] _pipelines = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Ext.DeleteProgramPipelines(_n,_pipelines); -} -static unsafe void Test_DeleteProgramPipelines_34178() { - System.Int32 _n = default(System.Int32); - System.Int32 _pipelines = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.DeleteProgramPipelines(_n,ref _pipelines); -} -static unsafe void Test_DeleteProgramPipelines_34179() { - System.Int32 _n = default(System.Int32); - System.Int32* _pipelines = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Ext.DeleteProgramPipelines(_n,_pipelines); -} -static unsafe void Test_DeleteProgramPipelines_34180() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _pipelines = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.Ext.DeleteProgramPipelines(_n,_pipelines); -} -static unsafe void Test_DeleteProgramPipelines_34181() { - System.Int32 _n = default(System.Int32); - System.UInt32 _pipelines = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Ext.DeleteProgramPipelines(_n,ref _pipelines); -} -static unsafe void Test_DeleteProgramPipelines_34182() { - System.Int32 _n = default(System.Int32); - System.UInt32* _pipelines = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.Ext.DeleteProgramPipelines(_n,_pipelines); -} -static unsafe void Test_DeleteQuery_34183() { - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.DeleteQuery(_ids); -} -static unsafe void Test_DeleteQuery_34184() { - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Ext.DeleteQuery(_ids); -} -static unsafe void Test_DeleteQueries_34185() { - System.Int32 _n = default(System.Int32); - System.Int32[] _ids = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Ext.DeleteQueries(_n,_ids); -} -static unsafe void Test_DeleteQueries_34186() { - System.Int32 _n = default(System.Int32); - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.DeleteQueries(_n,ref _ids); -} -static unsafe void Test_DeleteQueries_34187() { - System.Int32 _n = default(System.Int32); - System.Int32* _ids = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Ext.DeleteQueries(_n,_ids); -} -static unsafe void Test_DeleteQueries_34188() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _ids = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.Ext.DeleteQueries(_n,_ids); -} -static unsafe void Test_DeleteQueries_34189() { - System.Int32 _n = default(System.Int32); - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Ext.DeleteQueries(_n,ref _ids); -} -static unsafe void Test_DeleteQueries_34190() { - System.Int32 _n = default(System.Int32); - System.UInt32* _ids = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.Ext.DeleteQueries(_n,_ids); -} -static unsafe void Test_Disable_34191() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.Disable(_target,_index); -} -static unsafe void Test_Disable_34192() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Ext.Disable(_target,_index); -} -static unsafe void Test_DiscardFramebuffer_34193() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _numAttachments = default(System.Int32); - OpenTK.Graphics.ES30.All[] _attachments = default(OpenTK.Graphics.ES30.All[]); - OpenTK.Graphics.ES30.GL.Ext.DiscardFramebuffer(_target,_numAttachments,_attachments); -} -static unsafe void Test_DiscardFramebuffer_34194() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _numAttachments = default(System.Int32); - OpenTK.Graphics.ES30.All _attachments = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.Ext.DiscardFramebuffer(_target,_numAttachments,ref _attachments); -} -static unsafe void Test_DiscardFramebuffer_34195() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _numAttachments = default(System.Int32); - OpenTK.Graphics.ES30.All* _attachments = default(OpenTK.Graphics.ES30.All*); - OpenTK.Graphics.ES30.GL.Ext.DiscardFramebuffer(_target,_numAttachments,_attachments); -} -static unsafe void Test_DrawArraysInstanced_34196() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32 _start = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.DrawArraysInstanced(_mode,_start,_count,_primcount); -} -static unsafe void Test_DrawArraysInstanced_34197() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32 _start = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.DrawArraysInstanced(_mode,_start,_count,_primcount); -} -static unsafe void Test_DrawBuffers_34198() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.ES30.All[] _bufs = default(OpenTK.Graphics.ES30.All[]); - OpenTK.Graphics.ES30.GL.Ext.DrawBuffers(_n,_bufs); -} -static unsafe void Test_DrawBuffers_34199() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.ES30.All _bufs = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.Ext.DrawBuffers(_n,ref _bufs); -} -static unsafe void Test_DrawBuffers_34200() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.ES30.All* _bufs = default(OpenTK.Graphics.ES30.All*); - OpenTK.Graphics.ES30.GL.Ext.DrawBuffers(_n,_bufs); -} -static unsafe void Test_DrawBuffers_34201() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.ES30.DrawBufferMode[] _bufs = default(OpenTK.Graphics.ES30.DrawBufferMode[]); - OpenTK.Graphics.ES30.GL.Ext.DrawBuffers(_n,_bufs); -} -static unsafe void Test_DrawBuffers_34202() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.ES30.DrawBufferMode _bufs = default(OpenTK.Graphics.ES30.DrawBufferMode); - OpenTK.Graphics.ES30.GL.Ext.DrawBuffers(_n,ref _bufs); -} -static unsafe void Test_DrawBuffers_34203() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.ES30.DrawBufferMode* _bufs = default(OpenTK.Graphics.ES30.DrawBufferMode*); - OpenTK.Graphics.ES30.GL.Ext.DrawBuffers(_n,_bufs); -} -static unsafe void Test_DrawBuffersIndexed_34204() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.ES30.All[] _location = default(OpenTK.Graphics.ES30.All[]); - System.Int32[] _indices = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Ext.DrawBuffersIndexed(_n,_location,_indices); -} -static unsafe void Test_DrawBuffersIndexed_34205() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.ES30.All _location = default(OpenTK.Graphics.ES30.All); - System.Int32 _indices = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.DrawBuffersIndexed(_n,ref _location,ref _indices); -} -static unsafe void Test_DrawBuffersIndexed_34206() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.ES30.All* _location = default(OpenTK.Graphics.ES30.All*); - System.Int32* _indices = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Ext.DrawBuffersIndexed(_n,_location,_indices); -} -static unsafe void Test_DrawElementsInstanced_34207() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_34208() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_34209() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_34210() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_34211() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.DrawElementsInstanced(_mode,_count,_type,ref _indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_34212() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_34213() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_34214() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_34215() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_34216() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.DrawElementsInstanced(_mode,_count,_type,ref _indices,_primcount); -} -static unsafe void Test_Enable_34217() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.Enable(_target,_index); -} -static unsafe void Test_Enable_34218() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Ext.Enable(_target,_index); -} -static unsafe void Test_EndQuery_34219() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.Ext.EndQuery(_target); -} -static unsafe void Test_EndQuery_34220() { - OpenTK.Graphics.ES30.QueryTarget _target = default(OpenTK.Graphics.ES30.QueryTarget); - OpenTK.Graphics.ES30.GL.Ext.EndQuery(_target); -} -static unsafe void Test_FlushMappedBufferRange_34221() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _length = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.Ext.FlushMappedBufferRange(_target,_offset,_length); -} -static unsafe void Test_FlushMappedBufferRange_34222() { - OpenTK.Graphics.ES30.BufferTarget _target = default(OpenTK.Graphics.ES30.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _length = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.Ext.FlushMappedBufferRange(_target,_offset,_length); -} -static unsafe void Test_FramebufferTexture2DMultisample_34223() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _attachment = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _textarget = default(OpenTK.Graphics.ES30.All); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.FramebufferTexture2DMultisample(_target,_attachment,_textarget,_texture,_level,_samples); -} -static unsafe void Test_FramebufferTexture2DMultisample_34224() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _attachment = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _textarget = default(OpenTK.Graphics.ES30.All); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.FramebufferTexture2DMultisample(_target,_attachment,_textarget,_texture,_level,_samples); -} -static unsafe void Test_FramebufferTexture_34225() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _attachment = default(OpenTK.Graphics.ES30.All); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.FramebufferTexture(_target,_attachment,_texture,_level); -} -static unsafe void Test_FramebufferTexture_34226() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _attachment = default(OpenTK.Graphics.ES30.All); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.FramebufferTexture(_target,_attachment,_texture,_level); -} -static unsafe void Test_FramebufferTexture_34227() { - OpenTK.Graphics.ES30.FramebufferTarget _target = default(OpenTK.Graphics.ES30.FramebufferTarget); - OpenTK.Graphics.ES30.FramebufferAttachment _attachment = default(OpenTK.Graphics.ES30.FramebufferAttachment); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.FramebufferTexture(_target,_attachment,_texture,_level); -} -static unsafe void Test_FramebufferTexture_34228() { - OpenTK.Graphics.ES30.FramebufferTarget _target = default(OpenTK.Graphics.ES30.FramebufferTarget); - OpenTK.Graphics.ES30.FramebufferAttachment _attachment = default(OpenTK.Graphics.ES30.FramebufferAttachment); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.FramebufferTexture(_target,_attachment,_texture,_level); -} -static unsafe void Test_GenProgramPipeline_34229() { - System.Int32 r = OpenTK.Graphics.ES30.GL.Ext.GenProgramPipeline(); -} -static unsafe void Test_GenProgramPipelines_34230() { - System.Int32 _n = default(System.Int32); - System.Int32[] _pipelines = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Ext.GenProgramPipelines(_n,_pipelines); -} -static unsafe void Test_GenProgramPipelines_34231() { - System.Int32 _n = default(System.Int32); - System.Int32 _pipelines = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.GenProgramPipelines(_n,out _pipelines); -} -static unsafe void Test_GenProgramPipelines_34232() { - System.Int32 _n = default(System.Int32); - System.Int32* _pipelines = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Ext.GenProgramPipelines(_n,_pipelines); -} -static unsafe void Test_GenProgramPipelines_34233() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _pipelines = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.Ext.GenProgramPipelines(_n,_pipelines); -} -static unsafe void Test_GenProgramPipelines_34234() { - System.Int32 _n = default(System.Int32); - System.UInt32 _pipelines = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Ext.GenProgramPipelines(_n,out _pipelines); -} -static unsafe void Test_GenProgramPipelines_34235() { - System.Int32 _n = default(System.Int32); - System.UInt32* _pipelines = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.Ext.GenProgramPipelines(_n,_pipelines); -} -static unsafe void Test_GenQuery_34236() { - System.Int32 r = OpenTK.Graphics.ES30.GL.Ext.GenQuery(); -} -static unsafe void Test_GenQueries_34237() { - System.Int32 _n = default(System.Int32); - System.Int32[] _ids = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Ext.GenQueries(_n,_ids); -} -static unsafe void Test_GenQueries_34238() { - System.Int32 _n = default(System.Int32); - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.GenQueries(_n,out _ids); -} -static unsafe void Test_GenQueries_34239() { - System.Int32 _n = default(System.Int32); - System.Int32* _ids = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Ext.GenQueries(_n,_ids); -} -static unsafe void Test_GenQueries_34240() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _ids = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.Ext.GenQueries(_n,_ids); -} -static unsafe void Test_GenQueries_34241() { - System.Int32 _n = default(System.Int32); - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Ext.GenQueries(_n,out _ids); -} -static unsafe void Test_GenQueries_34242() { - System.Int32 _n = default(System.Int32); - System.UInt32* _ids = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.Ext.GenQueries(_n,_ids); -} -static unsafe void Test_GetGraphicsResetStatus_34243() { - OpenTK.Graphics.ES30.All r = OpenTK.Graphics.ES30.GL.Ext.GetGraphicsResetStatus(); -} -static unsafe void Test_GetInteger_34244() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _index = default(System.Int32); - System.Int32[] _data = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Ext.GetInteger(_target,_index,_data); -} -static unsafe void Test_GetInteger_34245() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _index = default(System.Int32); - System.Int32 _data = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.GetInteger(_target,_index,out _data); -} -static unsafe void Test_GetInteger_34246() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _index = default(System.Int32); - System.Int32* _data = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Ext.GetInteger(_target,_index,_data); -} -static unsafe void Test_GetInteger_34247() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.UInt32 _index = default(System.UInt32); - System.Int32[] _data = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Ext.GetInteger(_target,_index,_data); -} -static unsafe void Test_GetInteger_34248() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.UInt32 _index = default(System.UInt32); - System.Int32 _data = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.GetInteger(_target,_index,out _data); -} -static unsafe void Test_GetInteger_34249() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.UInt32 _index = default(System.UInt32); - System.Int32* _data = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Ext.GetInteger(_target,_index,_data); -} -static unsafe void Test_GetInteger_34250() { - OpenTK.Graphics.ES30.GetIndexedPName _target = default(OpenTK.Graphics.ES30.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Int32[] _data = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Ext.GetInteger(_target,_index,_data); -} -static unsafe void Test_GetInteger_34251() { - OpenTK.Graphics.ES30.GetIndexedPName _target = default(OpenTK.Graphics.ES30.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Int32 _data = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.GetInteger(_target,_index,out _data); -} -static unsafe void Test_GetInteger_34252() { - OpenTK.Graphics.ES30.GetIndexedPName _target = default(OpenTK.Graphics.ES30.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Int32* _data = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Ext.GetInteger(_target,_index,_data); -} -static unsafe void Test_GetInteger_34253() { - OpenTK.Graphics.ES30.GetIndexedPName _target = default(OpenTK.Graphics.ES30.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Int32[] _data = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Ext.GetInteger(_target,_index,_data); -} -static unsafe void Test_GetInteger_34254() { - OpenTK.Graphics.ES30.GetIndexedPName _target = default(OpenTK.Graphics.ES30.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Int32 _data = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.GetInteger(_target,_index,out _data); -} -static unsafe void Test_GetInteger_34255() { - OpenTK.Graphics.ES30.GetIndexedPName _target = default(OpenTK.Graphics.ES30.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Int32* _data = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Ext.GetInteger(_target,_index,_data); -} -static unsafe void Test_GetnUniform_34256() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES30.GL.Ext.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_34257() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Single _params = default(System.Single); - OpenTK.Graphics.ES30.GL.Ext.GetnUniform(_program,_location,_bufSize,out _params); -} -static unsafe void Test_GetnUniform_34258() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES30.GL.Ext.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_34259() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.ES30.GL.Ext.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_34260() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Single _params = default(System.Single); - OpenTK.Graphics.ES30.GL.Ext.GetnUniform(_program,_location,_bufSize,out _params); -} -static unsafe void Test_GetnUniform_34261() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.ES30.GL.Ext.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_34262() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Ext.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_34263() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.GetnUniform(_program,_location,_bufSize,out _params); -} -static unsafe void Test_GetnUniform_34264() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Ext.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_34265() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Ext.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_34266() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.GetnUniform(_program,_location,_bufSize,out _params); -} -static unsafe void Test_GetnUniform_34267() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Ext.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetObjectLabel_34268() { - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.Int32 _object = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Ext.GetObjectLabel(_type,_object,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_34269() { - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.Int32 _object = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Ext.GetObjectLabel(_type,_object,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectLabel_34270() { - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.Int32 _object = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Ext.GetObjectLabel(_type,_object,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_34271() { - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.UInt32 _object = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Ext.GetObjectLabel(_type,_object,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_34272() { - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.UInt32 _object = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Ext.GetObjectLabel(_type,_object,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectLabel_34273() { - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.UInt32 _object = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Ext.GetObjectLabel(_type,_object,_bufSize,_length,_label); -} -static unsafe void Test_GetProgramPipelineInfoLog_34274() { - System.Int32 _pipeline = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Ext.GetProgramPipelineInfoLog(_pipeline,_bufSize,_length,_infoLog); -} -static unsafe void Test_GetProgramPipelineInfoLog_34275() { - System.Int32 _pipeline = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Ext.GetProgramPipelineInfoLog(_pipeline,_bufSize,out _length,_infoLog); -} -static unsafe void Test_GetProgramPipelineInfoLog_34276() { - System.Int32 _pipeline = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Ext.GetProgramPipelineInfoLog(_pipeline,_bufSize,_length,_infoLog); -} -static unsafe void Test_GetProgramPipelineInfoLog_34277() { - System.UInt32 _pipeline = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Ext.GetProgramPipelineInfoLog(_pipeline,_bufSize,_length,_infoLog); -} -static unsafe void Test_GetProgramPipelineInfoLog_34278() { - System.UInt32 _pipeline = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Ext.GetProgramPipelineInfoLog(_pipeline,_bufSize,out _length,_infoLog); -} -static unsafe void Test_GetProgramPipelineInfoLog_34279() { - System.UInt32 _pipeline = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Ext.GetProgramPipelineInfoLog(_pipeline,_bufSize,_length,_infoLog); -} -static unsafe void Test_GetProgramPipeline_34280() { - System.Int32 _pipeline = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Ext.GetProgramPipeline(_pipeline,_pname,_params); -} -static unsafe void Test_GetProgramPipeline_34281() { - System.Int32 _pipeline = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.GetProgramPipeline(_pipeline,_pname,out _params); -} -static unsafe void Test_GetProgramPipeline_34282() { - System.Int32 _pipeline = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Ext.GetProgramPipeline(_pipeline,_pname,_params); -} -static unsafe void Test_GetProgramPipeline_34283() { - System.UInt32 _pipeline = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Ext.GetProgramPipeline(_pipeline,_pname,_params); -} -static unsafe void Test_GetProgramPipeline_34284() { - System.UInt32 _pipeline = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.GetProgramPipeline(_pipeline,_pname,out _params); -} -static unsafe void Test_GetProgramPipeline_34285() { - System.UInt32 _pipeline = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Ext.GetProgramPipeline(_pipeline,_pname,_params); -} -static unsafe void Test_GetQuery_34286() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Ext.GetQuery(_target,_pname,_params); -} -static unsafe void Test_GetQuery_34287() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.GetQuery(_target,_pname,out _params); -} -static unsafe void Test_GetQuery_34288() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Ext.GetQuery(_target,_pname,_params); -} -static unsafe void Test_GetQuery_34289() { - OpenTK.Graphics.ES30.QueryTarget _target = default(OpenTK.Graphics.ES30.QueryTarget); - OpenTK.Graphics.ES30.GetQueryParam _pname = default(OpenTK.Graphics.ES30.GetQueryParam); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Ext.GetQuery(_target,_pname,_params); -} -static unsafe void Test_GetQuery_34290() { - OpenTK.Graphics.ES30.QueryTarget _target = default(OpenTK.Graphics.ES30.QueryTarget); - OpenTK.Graphics.ES30.GetQueryParam _pname = default(OpenTK.Graphics.ES30.GetQueryParam); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.GetQuery(_target,_pname,out _params); -} -static unsafe void Test_GetQuery_34291() { - OpenTK.Graphics.ES30.QueryTarget _target = default(OpenTK.Graphics.ES30.QueryTarget); - OpenTK.Graphics.ES30.GetQueryParam _pname = default(OpenTK.Graphics.ES30.GetQueryParam); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Ext.GetQuery(_target,_pname,_params); -} -static unsafe void Test_GetQueryObject_34292() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.ES30.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_34293() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.ES30.GL.Ext.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_34294() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.ES30.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_34295() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES30.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES30.GetQueryObjectParam); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.ES30.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_34296() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES30.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES30.GetQueryObjectParam); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.ES30.GL.Ext.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_34297() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES30.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES30.GetQueryObjectParam); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.ES30.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_34298() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.ES30.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_34299() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.ES30.GL.Ext.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_34300() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.ES30.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_34301() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES30.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES30.GetQueryObjectParam); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.ES30.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_34302() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES30.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES30.GetQueryObjectParam); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.ES30.GL.Ext.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_34303() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES30.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES30.GetQueryObjectParam); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.ES30.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_34304() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_34305() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_34306() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_34307() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES30.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES30.GetQueryObjectParam); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_34308() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES30.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES30.GetQueryObjectParam); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_34309() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES30.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES30.GetQueryObjectParam); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_34310() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_34311() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_34312() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_34313() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES30.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES30.GetQueryObjectParam); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_34314() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES30.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES30.GetQueryObjectParam); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_34315() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES30.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES30.GetQueryObjectParam); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_34316() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.UInt64[] _params = default(System.UInt64[]); - OpenTK.Graphics.ES30.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_34317() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.UInt64 _params = default(System.UInt64); - OpenTK.Graphics.ES30.GL.Ext.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_34318() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.UInt64* _params = default(System.UInt64*); - OpenTK.Graphics.ES30.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_34319() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES30.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES30.GetQueryObjectParam); - System.UInt64[] _params = default(System.UInt64[]); - OpenTK.Graphics.ES30.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_34320() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES30.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES30.GetQueryObjectParam); - System.UInt64 _params = default(System.UInt64); - OpenTK.Graphics.ES30.GL.Ext.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_34321() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES30.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES30.GetQueryObjectParam); - System.UInt64* _params = default(System.UInt64*); - OpenTK.Graphics.ES30.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_34322() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_34323() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Ext.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_34324() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_34325() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES30.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES30.GetQueryObjectParam); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_34326() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES30.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES30.GetQueryObjectParam); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Ext.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_34327() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES30.GetQueryObjectParam _pname = default(OpenTK.Graphics.ES30.GetQueryObjectParam); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.Ext.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetSamplerParameterI_34328() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Ext.GetSamplerParameterI(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameterI_34329() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.GetSamplerParameterI(_sampler,_pname,out _params); -} -static unsafe void Test_GetSamplerParameterI_34330() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Ext.GetSamplerParameterI(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameterI_34331() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Ext.GetSamplerParameterI(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameterI_34332() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.GetSamplerParameterI(_sampler,_pname,out _params); -} -static unsafe void Test_GetSamplerParameterI_34333() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Ext.GetSamplerParameterI(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameterI_34334() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.Ext.GetSamplerParameterI(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameterI_34335() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Ext.GetSamplerParameterI(_sampler,_pname,out _params); -} -static unsafe void Test_GetSamplerParameterI_34336() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.Ext.GetSamplerParameterI(_sampler,_pname,_params); -} -static unsafe void Test_GetTexParameterI_34337() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Ext.GetTexParameterI(_target,_pname,_params); -} -static unsafe void Test_GetTexParameterI_34338() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.GetTexParameterI(_target,_pname,out _params); -} -static unsafe void Test_GetTexParameterI_34339() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Ext.GetTexParameterI(_target,_pname,_params); -} -static unsafe void Test_GetTexParameterI_34340() { - OpenTK.Graphics.ES30.TextureTarget _target = default(OpenTK.Graphics.ES30.TextureTarget); - OpenTK.Graphics.ES30.GetTextureParameter _pname = default(OpenTK.Graphics.ES30.GetTextureParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Ext.GetTexParameterI(_target,_pname,_params); -} -static unsafe void Test_GetTexParameterI_34341() { - OpenTK.Graphics.ES30.TextureTarget _target = default(OpenTK.Graphics.ES30.TextureTarget); - OpenTK.Graphics.ES30.GetTextureParameter _pname = default(OpenTK.Graphics.ES30.GetTextureParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.GetTexParameterI(_target,_pname,out _params); -} -static unsafe void Test_GetTexParameterI_34342() { - OpenTK.Graphics.ES30.TextureTarget _target = default(OpenTK.Graphics.ES30.TextureTarget); - OpenTK.Graphics.ES30.GetTextureParameter _pname = default(OpenTK.Graphics.ES30.GetTextureParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Ext.GetTexParameterI(_target,_pname,_params); -} -static unsafe void Test_GetTexParameterI_34343() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.Ext.GetTexParameterI(_target,_pname,_params); -} -static unsafe void Test_GetTexParameterI_34344() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Ext.GetTexParameterI(_target,_pname,out _params); -} -static unsafe void Test_GetTexParameterI_34345() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.Ext.GetTexParameterI(_target,_pname,_params); -} -static unsafe void Test_GetTexParameterI_34346() { - OpenTK.Graphics.ES30.TextureTarget _target = default(OpenTK.Graphics.ES30.TextureTarget); - OpenTK.Graphics.ES30.GetTextureParameter _pname = default(OpenTK.Graphics.ES30.GetTextureParameter); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.Ext.GetTexParameterI(_target,_pname,_params); -} -static unsafe void Test_GetTexParameterI_34347() { - OpenTK.Graphics.ES30.TextureTarget _target = default(OpenTK.Graphics.ES30.TextureTarget); - OpenTK.Graphics.ES30.GetTextureParameter _pname = default(OpenTK.Graphics.ES30.GetTextureParameter); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Ext.GetTexParameterI(_target,_pname,out _params); -} -static unsafe void Test_GetTexParameterI_34348() { - OpenTK.Graphics.ES30.TextureTarget _target = default(OpenTK.Graphics.ES30.TextureTarget); - OpenTK.Graphics.ES30.GetTextureParameter _pname = default(OpenTK.Graphics.ES30.GetTextureParameter); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.Ext.GetTexParameterI(_target,_pname,_params); -} -static unsafe void Test_InsertEventMarker_34349() { - System.Int32 _length = default(System.Int32); - System.String _marker = default(System.String); - OpenTK.Graphics.ES30.GL.Ext.InsertEventMarker(_length,_marker); -} -static unsafe void Test_IsEnabled_34350() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _index = default(System.Int32); - System.Boolean r = OpenTK.Graphics.ES30.GL.Ext.IsEnabled(_target,_index); -} -static unsafe void Test_IsEnabled_34351() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.UInt32 _index = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.ES30.GL.Ext.IsEnabled(_target,_index); -} -static unsafe void Test_IsProgramPipeline_34352() { - System.Int32 _pipeline = default(System.Int32); - System.Boolean r = OpenTK.Graphics.ES30.GL.Ext.IsProgramPipeline(_pipeline); -} -static unsafe void Test_IsProgramPipeline_34353() { - System.UInt32 _pipeline = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.ES30.GL.Ext.IsProgramPipeline(_pipeline); -} -static unsafe void Test_IsQuery_34354() { - System.Int32 _id = default(System.Int32); - System.Boolean r = OpenTK.Graphics.ES30.GL.Ext.IsQuery(_id); -} -static unsafe void Test_IsQuery_34355() { - System.UInt32 _id = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.ES30.GL.Ext.IsQuery(_id); -} -static unsafe void Test_LabelObject_34356() { - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.Int32 _object = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.ES30.GL.Ext.LabelObject(_type,_object,_length,_label); -} -static unsafe void Test_LabelObject_34357() { - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.UInt32 _object = default(System.UInt32); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.ES30.GL.Ext.LabelObject(_type,_object,_length,_label); -} -static unsafe void Test_MapBufferRange_34358() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _length = default(System.IntPtr); - System.Int32 _access = default(System.Int32); - System.IntPtr r = OpenTK.Graphics.ES30.GL.Ext.MapBufferRange(_target,_offset,_length,_access); -} -static unsafe void Test_MapBufferRange_34359() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _length = default(System.IntPtr); - System.UInt32 _access = default(System.UInt32); - System.IntPtr r = OpenTK.Graphics.ES30.GL.Ext.MapBufferRange(_target,_offset,_length,_access); -} -static unsafe void Test_MapBufferRange_34360() { - OpenTK.Graphics.ES30.BufferTarget _target = default(OpenTK.Graphics.ES30.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _length = default(System.IntPtr); - System.Int32 _access = default(System.Int32); - System.IntPtr r = OpenTK.Graphics.ES30.GL.Ext.MapBufferRange(_target,_offset,_length,_access); -} -static unsafe void Test_MapBufferRange_34361() { - OpenTK.Graphics.ES30.BufferTarget _target = default(OpenTK.Graphics.ES30.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _length = default(System.IntPtr); - System.UInt32 _access = default(System.UInt32); - System.IntPtr r = OpenTK.Graphics.ES30.GL.Ext.MapBufferRange(_target,_offset,_length,_access); -} -static unsafe void Test_MultiDrawArrays_34362() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32[] _first = default(System.Int32[]); - System.Int32[] _count = default(System.Int32[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.MultiDrawArrays(_mode,_first,_count,_primcount); -} -static unsafe void Test_MultiDrawArrays_34363() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.MultiDrawArrays(_mode,ref _first,ref _count,_primcount); -} -static unsafe void Test_MultiDrawArrays_34364() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32* _first = default(System.Int32*); - System.Int32* _count = default(System.Int32*); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.MultiDrawArrays(_mode,_first,_count,_primcount); -} -static unsafe void Test_MultiDrawArrays_34365() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32[] _first = default(System.Int32[]); - System.Int32[] _count = default(System.Int32[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.MultiDrawArrays(_mode,_first,_count,_primcount); -} -static unsafe void Test_MultiDrawArrays_34366() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.MultiDrawArrays(_mode,ref _first,ref _count,_primcount); -} -static unsafe void Test_MultiDrawArrays_34367() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32* _first = default(System.Int32*); - System.Int32* _count = default(System.Int32*); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.MultiDrawArrays(_mode,_first,_count,_primcount); -} -static unsafe void Test_MultiDrawElements_34368() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_34369() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_34370() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_34371() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_34372() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.MultiDrawElements(_mode,_count,_type,ref _indices,_primcount); -} -static unsafe void Test_MultiDrawElements_34373() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.MultiDrawElements(_mode,ref _count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_34374() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.MultiDrawElements(_mode,ref _count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_34375() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.MultiDrawElements(_mode,ref _count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_34376() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.MultiDrawElements(_mode,ref _count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_34377() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.MultiDrawElements(_mode,ref _count,_type,ref _indices,_primcount); -} -static unsafe void Test_MultiDrawElements_34378() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_34379() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_34380() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_34381() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_34382() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.MultiDrawElements(_mode,_count,_type,ref _indices,_primcount); -} -static unsafe void Test_MultiDrawElements_34383() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_34384() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_34385() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_34386() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_34387() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.MultiDrawElements(_mode,_count,_type,ref _indices,_primcount); -} -static unsafe void Test_MultiDrawElements_34388() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.MultiDrawElements(_mode,ref _count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_34389() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.MultiDrawElements(_mode,ref _count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_34390() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.MultiDrawElements(_mode,ref _count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_34391() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.MultiDrawElements(_mode,ref _count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_34392() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.MultiDrawElements(_mode,ref _count,_type,ref _indices,_primcount); -} -static unsafe void Test_MultiDrawElements_34393() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_34394() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_34395() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_34396() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.MultiDrawElements(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_MultiDrawElements_34397() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.MultiDrawElements(_mode,_count,_type,ref _indices,_primcount); -} -static unsafe void Test_PatchParameter_34398() { - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.PatchParameter(_pname,_value); -} -static unsafe void Test_PopGroupMarker_34399() { - OpenTK.Graphics.ES30.GL.Ext.PopGroupMarker(); -} -static unsafe void Test_PrimitiveBoundingBox_34400() { - System.Single _minX = default(System.Single); - System.Single _minY = default(System.Single); - System.Single _minZ = default(System.Single); - System.Single _minW = default(System.Single); - System.Single _maxX = default(System.Single); - System.Single _maxY = default(System.Single); - System.Single _maxZ = default(System.Single); - System.Single _maxW = default(System.Single); - OpenTK.Graphics.ES30.GL.Ext.PrimitiveBoundingBox(_minX,_minY,_minZ,_minW,_maxX,_maxY,_maxZ,_maxW); -} -static unsafe void Test_ProgramParameter_34401() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.ProgramParameter(_program,_pname,_value); -} -static unsafe void Test_ProgramParameter_34402() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES30.ProgramParameterName _pname = default(OpenTK.Graphics.ES30.ProgramParameterName); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.ProgramParameter(_program,_pname,_value); -} -static unsafe void Test_ProgramParameter_34403() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.ProgramParameter(_program,_pname,_value); -} -static unsafe void Test_ProgramParameter_34404() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES30.ProgramParameterName _pname = default(OpenTK.Graphics.ES30.ProgramParameterName); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.ProgramParameter(_program,_pname,_value); -} -static unsafe void Test_ProgramUniform1_34405() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform1(_program,_location,_v0); -} -static unsafe void Test_ProgramUniform1_34406() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform1(_program,_location,_v0); -} -static unsafe void Test_ProgramUniform1_34407() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_34408() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform1(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform1_34409() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_34410() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_34411() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform1(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform1_34412() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_34413() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform1(_program,_location,_v0); -} -static unsafe void Test_ProgramUniform1_34414() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform1(_program,_location,_v0); -} -static unsafe void Test_ProgramUniform1_34415() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_34416() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform1(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform1_34417() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_34418() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_34419() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform1(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform1_34420() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_34421() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt32 _v0 = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform1(_program,_location,_v0); -} -static unsafe void Test_ProgramUniform1_34422() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _value = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_34423() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform1(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform1_34424() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_34425() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform2(_program,_location,_v0,_v1); -} -static unsafe void Test_ProgramUniform2_34426() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform2(_program,_location,_v0,_v1); -} -static unsafe void Test_ProgramUniform2_34427() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_34428() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform2(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform2_34429() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_34430() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_34431() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform2(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform2_34432() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_34433() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform2(_program,_location,_v0,_v1); -} -static unsafe void Test_ProgramUniform2_34434() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform2(_program,_location,_v0,_v1); -} -static unsafe void Test_ProgramUniform2_34435() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_34436() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_34437() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_34438() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_34439() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt32 _v0 = default(System.UInt32); - System.UInt32 _v1 = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform2(_program,_location,_v0,_v1); -} -static unsafe void Test_ProgramUniform2_34440() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _value = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_34441() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform2(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform2_34442() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_34443() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform3(_program,_location,_v0,_v1,_v2); -} -static unsafe void Test_ProgramUniform3_34444() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform3(_program,_location,_v0,_v1,_v2); -} -static unsafe void Test_ProgramUniform3_34445() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_34446() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform3(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform3_34447() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_34448() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_34449() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform3(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform3_34450() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_34451() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - System.Int32 _v2 = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform3(_program,_location,_v0,_v1,_v2); -} -static unsafe void Test_ProgramUniform3_34452() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - System.Int32 _v2 = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform3(_program,_location,_v0,_v1,_v2); -} -static unsafe void Test_ProgramUniform3_34453() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_34454() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform3(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform3_34455() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_34456() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_34457() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform3(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform3_34458() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_34459() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt32 _v0 = default(System.UInt32); - System.UInt32 _v1 = default(System.UInt32); - System.UInt32 _v2 = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform3(_program,_location,_v0,_v1,_v2); -} -static unsafe void Test_ProgramUniform3_34460() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _value = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_34461() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform3(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform3_34462() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_34463() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - System.Single _v3 = default(System.Single); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform4(_program,_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_ProgramUniform4_34464() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - System.Single _v3 = default(System.Single); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform4(_program,_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_ProgramUniform4_34465() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_34466() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform4(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform4_34467() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_34468() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_34469() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform4(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform4_34470() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_34471() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - System.Int32 _v2 = default(System.Int32); - System.Int32 _v3 = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform4(_program,_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_ProgramUniform4_34472() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - System.Int32 _v2 = default(System.Int32); - System.Int32 _v3 = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform4(_program,_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_ProgramUniform4_34473() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_34474() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform4(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform4_34475() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_34476() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_34477() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform4(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform4_34478() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_34479() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt32 _v0 = default(System.UInt32); - System.UInt32 _v1 = default(System.UInt32); - System.UInt32 _v2 = default(System.UInt32); - System.UInt32 _v3 = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform4(_program,_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_ProgramUniform4_34480() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _value = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_34481() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform4(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform4_34482() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniformMatrix2_34483() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2_34484() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2_34485() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2_34486() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2_34487() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2_34488() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x3_34489() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x3_34490() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2x3_34491() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x3_34492() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x3_34493() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2x3_34494() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x4_34495() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x4_34496() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2x4_34497() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x4_34498() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x4_34499() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2x4_34500() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3_34501() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3_34502() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3_34503() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3_34504() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3_34505() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3_34506() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x2_34507() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x2_34508() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3x2_34509() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x2_34510() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x2_34511() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3x2_34512() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x4_34513() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x4_34514() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3x4_34515() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x4_34516() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x4_34517() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3x4_34518() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4_34519() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4_34520() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4_34521() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4_34522() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4_34523() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4_34524() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x2_34525() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x2_34526() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4x2_34527() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x2_34528() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x2_34529() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4x2_34530() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x3_34531() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x3_34532() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4x3_34533() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x3_34534() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x3_34535() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4x3_34536() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.Ext.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_PushGroupMarker_34537() { - System.Int32 _length = default(System.Int32); - System.String _marker = default(System.String); - OpenTK.Graphics.ES30.GL.Ext.PushGroupMarker(_length,_marker); -} -static unsafe void Test_QueryCounter_34538() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.Ext.QueryCounter(_id,_target); -} -static unsafe void Test_QueryCounter_34539() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.Ext.QueryCounter(_id,_target); -} -static unsafe void Test_ReadBufferIndexed_34540() { - OpenTK.Graphics.ES30.All _src = default(OpenTK.Graphics.ES30.All); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.ReadBufferIndexed(_src,_index); -} -static unsafe void Test_ReadnPixels_34541() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.Int32 _bufSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.Ext.ReadnPixels(_x,_y,_width,_height,_format,_type,_bufSize,_data); -} -static unsafe void Test_ReadnPixels_34542() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.Int32 _bufSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.ES30.GL.Ext.ReadnPixels(_x,_y,_width,_height,_format,_type,_bufSize,_data); -} -static unsafe void Test_ReadnPixels_34543() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.Int32 _bufSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES30.GL.Ext.ReadnPixels(_x,_y,_width,_height,_format,_type,_bufSize,_data); -} -static unsafe void Test_ReadnPixels_34544() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.Int32 _bufSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES30.GL.Ext.ReadnPixels(_x,_y,_width,_height,_format,_type,_bufSize,_data); -} -static unsafe void Test_ReadnPixels_34545() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.Int32 _bufSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.ES30.GL.Ext.ReadnPixels(_x,_y,_width,_height,_format,_type,_bufSize,ref _data); -} -static unsafe void Test_RenderbufferStorageMultisample_34546() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.RenderbufferStorageMultisample(_target,_samples,_internalformat,_width,_height); -} -static unsafe void Test_RenderbufferStorageMultisample_34547() { - OpenTK.Graphics.ES30.RenderbufferTarget _target = default(OpenTK.Graphics.ES30.RenderbufferTarget); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.ES30.RenderbufferInternalFormat _internalformat = default(OpenTK.Graphics.ES30.RenderbufferInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.RenderbufferStorageMultisample(_target,_samples,_internalformat,_width,_height); -} -static unsafe void Test_SamplerParameterI_34548() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32[] _param = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Ext.SamplerParameterI(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameterI_34549() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.SamplerParameterI(_sampler,_pname,ref _param); -} -static unsafe void Test_SamplerParameterI_34550() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32* _param = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Ext.SamplerParameterI(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameterI_34551() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32[] _param = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Ext.SamplerParameterI(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameterI_34552() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.SamplerParameterI(_sampler,_pname,ref _param); -} -static unsafe void Test_SamplerParameterI_34553() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32* _param = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Ext.SamplerParameterI(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameterI_34554() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.UInt32[] _param = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.Ext.SamplerParameterI(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameterI_34555() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.UInt32 _param = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Ext.SamplerParameterI(_sampler,_pname,ref _param); -} -static unsafe void Test_SamplerParameterI_34556() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.UInt32* _param = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.Ext.SamplerParameterI(_sampler,_pname,_param); -} -static unsafe void Test_TexBuffer_34557() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.TexBuffer(_target,_internalformat,_buffer); -} -static unsafe void Test_TexBuffer_34558() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Ext.TexBuffer(_target,_internalformat,_buffer); -} -static unsafe void Test_TexBuffer_34559() { - OpenTK.Graphics.ES30.TextureTarget _target = default(OpenTK.Graphics.ES30.TextureTarget); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.TexBuffer(_target,_internalformat,_buffer); -} -static unsafe void Test_TexBuffer_34560() { - OpenTK.Graphics.ES30.TextureTarget _target = default(OpenTK.Graphics.ES30.TextureTarget); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Ext.TexBuffer(_target,_internalformat,_buffer); -} -static unsafe void Test_TexBufferRange_34561() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _buffer = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.Ext.TexBufferRange(_target,_internalformat,_buffer,_offset,_size); -} -static unsafe void Test_TexBufferRange_34562() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.Ext.TexBufferRange(_target,_internalformat,_buffer,_offset,_size); -} -static unsafe void Test_TexParameterI_34563() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Ext.TexParameterI(_target,_pname,_params); -} -static unsafe void Test_TexParameterI_34564() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.TexParameterI(_target,_pname,ref _params); -} -static unsafe void Test_TexParameterI_34565() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Ext.TexParameterI(_target,_pname,_params); -} -static unsafe void Test_TexParameterI_34566() { - OpenTK.Graphics.ES30.TextureTarget _target = default(OpenTK.Graphics.ES30.TextureTarget); - OpenTK.Graphics.ES30.TextureParameterName _pname = default(OpenTK.Graphics.ES30.TextureParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Ext.TexParameterI(_target,_pname,_params); -} -static unsafe void Test_TexParameterI_34567() { - OpenTK.Graphics.ES30.TextureTarget _target = default(OpenTK.Graphics.ES30.TextureTarget); - OpenTK.Graphics.ES30.TextureParameterName _pname = default(OpenTK.Graphics.ES30.TextureParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.TexParameterI(_target,_pname,ref _params); -} -static unsafe void Test_TexParameterI_34568() { - OpenTK.Graphics.ES30.TextureTarget _target = default(OpenTK.Graphics.ES30.TextureTarget); - OpenTK.Graphics.ES30.TextureParameterName _pname = default(OpenTK.Graphics.ES30.TextureParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Ext.TexParameterI(_target,_pname,_params); -} -static unsafe void Test_TexParameterI_34569() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.Ext.TexParameterI(_target,_pname,_params); -} -static unsafe void Test_TexParameterI_34570() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Ext.TexParameterI(_target,_pname,ref _params); -} -static unsafe void Test_TexParameterI_34571() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.Ext.TexParameterI(_target,_pname,_params); -} -static unsafe void Test_TexParameterI_34572() { - OpenTK.Graphics.ES30.TextureTarget _target = default(OpenTK.Graphics.ES30.TextureTarget); - OpenTK.Graphics.ES30.TextureParameterName _pname = default(OpenTK.Graphics.ES30.TextureParameterName); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.Ext.TexParameterI(_target,_pname,_params); -} -static unsafe void Test_TexParameterI_34573() { - OpenTK.Graphics.ES30.TextureTarget _target = default(OpenTK.Graphics.ES30.TextureTarget); - OpenTK.Graphics.ES30.TextureParameterName _pname = default(OpenTK.Graphics.ES30.TextureParameterName); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Ext.TexParameterI(_target,_pname,ref _params); -} -static unsafe void Test_TexParameterI_34574() { - OpenTK.Graphics.ES30.TextureTarget _target = default(OpenTK.Graphics.ES30.TextureTarget); - OpenTK.Graphics.ES30.TextureParameterName _pname = default(OpenTK.Graphics.ES30.TextureParameterName); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.Ext.TexParameterI(_target,_pname,_params); -} -static unsafe void Test_TexStorage1D_34575() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.TexStorage1D(_target,_levels,_internalformat,_width); -} -static unsafe void Test_TexStorage2D_34576() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.TexStorage2D(_target,_levels,_internalformat,_width,_height); -} -static unsafe void Test_TexStorage2D_34577() { - OpenTK.Graphics.ES30.TextureTarget2d _target = default(OpenTK.Graphics.ES30.TextureTarget2d); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.ES30.SizedInternalFormat _internalformat = default(OpenTK.Graphics.ES30.SizedInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.TexStorage2D(_target,_levels,_internalformat,_width,_height); -} -static unsafe void Test_TexStorage3D_34578() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.TexStorage3D(_target,_levels,_internalformat,_width,_height,_depth); -} -static unsafe void Test_TexStorage3D_34579() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.ES30.SizedInternalFormat _internalformat = default(OpenTK.Graphics.ES30.SizedInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.TexStorage3D(_target,_levels,_internalformat,_width,_height,_depth); -} -static unsafe void Test_TextureStorage1D_34580() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.TextureStorage1D(_texture,_target,_levels,_internalformat,_width); -} -static unsafe void Test_TextureStorage1D_34581() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.TextureStorage1D(_texture,_target,_levels,_internalformat,_width); -} -static unsafe void Test_TextureStorage2D_34582() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.TextureStorage2D(_texture,_target,_levels,_internalformat,_width,_height); -} -static unsafe void Test_TextureStorage2D_34583() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.TextureStorage2D(_texture,_target,_levels,_internalformat,_width,_height); -} -static unsafe void Test_TextureStorage3D_34584() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.TextureStorage3D(_texture,_target,_levels,_internalformat,_width,_height,_depth); -} -static unsafe void Test_TextureStorage3D_34585() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.TextureStorage3D(_texture,_target,_levels,_internalformat,_width,_height,_depth); -} -static unsafe void Test_TextureView_34586() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _origtexture = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _minlevel = default(System.Int32); - System.Int32 _numlevels = default(System.Int32); - System.Int32 _minlayer = default(System.Int32); - System.Int32 _numlayers = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.TextureView(_texture,_target,_origtexture,_internalformat,_minlevel,_numlevels,_minlayer,_numlayers); -} -static unsafe void Test_TextureView_34587() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.UInt32 _origtexture = default(System.UInt32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.UInt32 _minlevel = default(System.UInt32); - System.UInt32 _numlevels = default(System.UInt32); - System.UInt32 _minlayer = default(System.UInt32); - System.UInt32 _numlayers = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Ext.TextureView(_texture,_target,_origtexture,_internalformat,_minlevel,_numlevels,_minlayer,_numlayers); -} -static unsafe void Test_UseProgramStages_34588() { - System.Int32 _pipeline = default(System.Int32); - System.Int32 _stages = default(System.Int32); - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.UseProgramStages(_pipeline,_stages,_program); -} -static unsafe void Test_UseProgramStages_34589() { - System.UInt32 _pipeline = default(System.UInt32); - System.UInt32 _stages = default(System.UInt32); - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Ext.UseProgramStages(_pipeline,_stages,_program); -} -static unsafe void Test_UseShaderProgram_34590() { - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.UseShaderProgram(_type,_program); -} -static unsafe void Test_UseShaderProgram_34591() { - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Ext.UseShaderProgram(_type,_program); -} -static unsafe void Test_ValidateProgramPipeline_34592() { - System.Int32 _pipeline = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.ValidateProgramPipeline(_pipeline); -} -static unsafe void Test_ValidateProgramPipeline_34593() { - System.UInt32 _pipeline = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Ext.ValidateProgramPipeline(_pipeline); -} -static unsafe void Test_VertexAttribDivisor_34594() { - System.Int32 _index = default(System.Int32); - System.Int32 _divisor = default(System.Int32); - OpenTK.Graphics.ES30.GL.Ext.VertexAttribDivisor(_index,_divisor); -} -static unsafe void Test_VertexAttribDivisor_34595() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _divisor = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Ext.VertexAttribDivisor(_index,_divisor); -} -static unsafe void Test_FramebufferTexture2DMultisample_34596() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _attachment = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _textarget = default(OpenTK.Graphics.ES30.All); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.ES30.GL.Img.FramebufferTexture2DMultisample(_target,_attachment,_textarget,_texture,_level,_samples); -} -static unsafe void Test_FramebufferTexture2DMultisample_34597() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _attachment = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _textarget = default(OpenTK.Graphics.ES30.All); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.ES30.GL.Img.FramebufferTexture2DMultisample(_target,_attachment,_textarget,_texture,_level,_samples); -} -static unsafe void Test_RenderbufferStorageMultisample_34598() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.GL.Img.RenderbufferStorageMultisample(_target,_samples,_internalformat,_width,_height); -} -static unsafe void Test_RenderbufferStorageMultisample_34599() { - OpenTK.Graphics.ES30.RenderbufferTarget _target = default(OpenTK.Graphics.ES30.RenderbufferTarget); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.ES30.RenderbufferInternalFormat _internalformat = default(OpenTK.Graphics.ES30.RenderbufferInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.GL.Img.RenderbufferStorageMultisample(_target,_samples,_internalformat,_width,_height); -} -static unsafe void Test_BeginPerfQuery_34600() { - System.Int32 _queryHandle = default(System.Int32); - OpenTK.Graphics.ES30.GL.Intel.BeginPerfQuery(_queryHandle); -} -static unsafe void Test_BeginPerfQuery_34601() { - System.UInt32 _queryHandle = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Intel.BeginPerfQuery(_queryHandle); -} -static unsafe void Test_CreatePerfQuery_34602() { - System.Int32 _queryId = default(System.Int32); - System.Int32[] _queryHandle = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Intel.CreatePerfQuery(_queryId,_queryHandle); -} -static unsafe void Test_CreatePerfQuery_34603() { - System.Int32 _queryId = default(System.Int32); - System.Int32 _queryHandle = default(System.Int32); - OpenTK.Graphics.ES30.GL.Intel.CreatePerfQuery(_queryId,out _queryHandle); -} -static unsafe void Test_CreatePerfQuery_34604() { - System.Int32 _queryId = default(System.Int32); - System.Int32* _queryHandle = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Intel.CreatePerfQuery(_queryId,_queryHandle); -} -static unsafe void Test_CreatePerfQuery_34605() { - System.UInt32 _queryId = default(System.UInt32); - System.UInt32[] _queryHandle = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.Intel.CreatePerfQuery(_queryId,_queryHandle); -} -static unsafe void Test_CreatePerfQuery_34606() { - System.UInt32 _queryId = default(System.UInt32); - System.UInt32 _queryHandle = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Intel.CreatePerfQuery(_queryId,out _queryHandle); -} -static unsafe void Test_CreatePerfQuery_34607() { - System.UInt32 _queryId = default(System.UInt32); - System.UInt32* _queryHandle = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.Intel.CreatePerfQuery(_queryId,_queryHandle); -} -static unsafe void Test_DeletePerfQuery_34608() { - System.Int32 _queryHandle = default(System.Int32); - OpenTK.Graphics.ES30.GL.Intel.DeletePerfQuery(_queryHandle); -} -static unsafe void Test_DeletePerfQuery_34609() { - System.UInt32 _queryHandle = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Intel.DeletePerfQuery(_queryHandle); -} -static unsafe void Test_EndPerfQuery_34610() { - System.Int32 _queryHandle = default(System.Int32); - OpenTK.Graphics.ES30.GL.Intel.EndPerfQuery(_queryHandle); -} -static unsafe void Test_EndPerfQuery_34611() { - System.UInt32 _queryHandle = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Intel.EndPerfQuery(_queryHandle); -} -static unsafe void Test_GetFirstPerfQueryI_34612() { - System.Int32 r = OpenTK.Graphics.ES30.GL.Intel.GetFirstPerfQueryI(); -} -static unsafe void Test_GetFirstPerfQueryI_34613() { - System.Int32[] _queryId = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Intel.GetFirstPerfQueryI(_queryId); -} -static unsafe void Test_GetFirstPerfQueryI_34614() { - System.Int32 _queryId = default(System.Int32); - OpenTK.Graphics.ES30.GL.Intel.GetFirstPerfQueryI(out _queryId); -} -static unsafe void Test_GetFirstPerfQueryI_34615() { - System.Int32* _queryId = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Intel.GetFirstPerfQueryI(_queryId); -} -static unsafe void Test_GetFirstPerfQueryI_34616() { - System.UInt32[] _queryId = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.Intel.GetFirstPerfQueryI(_queryId); -} -static unsafe void Test_GetFirstPerfQueryI_34617() { - System.UInt32 _queryId = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Intel.GetFirstPerfQueryI(out _queryId); -} -static unsafe void Test_GetFirstPerfQueryI_34618() { - System.UInt32* _queryId = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.Intel.GetFirstPerfQueryI(_queryId); -} -static unsafe void Test_GetNextPerfQueryI_34619() { - System.Int32 _queryId = default(System.Int32); - System.Int32 r = OpenTK.Graphics.ES30.GL.Intel.GetNextPerfQueryI(_queryId); -} -static unsafe void Test_GetNextPerfQueryI_34620() { - System.UInt32 _queryId = default(System.UInt32); - System.Int32 r = OpenTK.Graphics.ES30.GL.Intel.GetNextPerfQueryI(_queryId); -} -static unsafe void Test_GetNextPerfQueryI_34621() { - System.Int32 _queryId = default(System.Int32); - System.Int32[] _nextQueryId = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Intel.GetNextPerfQueryI(_queryId,_nextQueryId); -} -static unsafe void Test_GetNextPerfQueryI_34622() { - System.Int32 _queryId = default(System.Int32); - System.Int32 _nextQueryId = default(System.Int32); - OpenTK.Graphics.ES30.GL.Intel.GetNextPerfQueryI(_queryId,out _nextQueryId); -} -static unsafe void Test_GetNextPerfQueryI_34623() { - System.Int32 _queryId = default(System.Int32); - System.Int32* _nextQueryId = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Intel.GetNextPerfQueryI(_queryId,_nextQueryId); -} -static unsafe void Test_GetNextPerfQueryI_34624() { - System.UInt32 _queryId = default(System.UInt32); - System.UInt32[] _nextQueryId = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.Intel.GetNextPerfQueryI(_queryId,_nextQueryId); -} -static unsafe void Test_GetNextPerfQueryI_34625() { - System.UInt32 _queryId = default(System.UInt32); - System.UInt32 _nextQueryId = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Intel.GetNextPerfQueryI(_queryId,out _nextQueryId); -} -static unsafe void Test_GetNextPerfQueryI_34626() { - System.UInt32 _queryId = default(System.UInt32); - System.UInt32* _nextQueryId = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.Intel.GetNextPerfQueryI(_queryId,_nextQueryId); -} -static unsafe void Test_GetPerfCounterInfo_34627() { - System.Int32 _queryId = default(System.Int32); - System.Int32 _counterId = default(System.Int32); - System.Int32 _counterNameLength = default(System.Int32); - System.Text.StringBuilder _counterName = default(System.Text.StringBuilder); - System.Int32 _counterDescLength = default(System.Int32); - System.Text.StringBuilder _counterDesc = default(System.Text.StringBuilder); - System.Int32[] _counterOffset = default(System.Int32[]); - System.Int32[] _counterDataSize = default(System.Int32[]); - System.Int32[] _counterTypeEnum = default(System.Int32[]); - System.Int32[] _counterDataTypeEnum = default(System.Int32[]); - System.Int64[] _rawCounterMaxValue = default(System.Int64[]); - OpenTK.Graphics.ES30.GL.Intel.GetPerfCounterInfo(_queryId,_counterId,_counterNameLength,_counterName,_counterDescLength,_counterDesc,_counterOffset,_counterDataSize,_counterTypeEnum,_counterDataTypeEnum,_rawCounterMaxValue); -} -static unsafe void Test_GetPerfCounterInfo_34628() { - System.Int32 _queryId = default(System.Int32); - System.Int32 _counterId = default(System.Int32); - System.Int32 _counterNameLength = default(System.Int32); - System.Text.StringBuilder _counterName = default(System.Text.StringBuilder); - System.Int32 _counterDescLength = default(System.Int32); - System.Text.StringBuilder _counterDesc = default(System.Text.StringBuilder); - System.Int32 _counterOffset = default(System.Int32); - System.Int32 _counterDataSize = default(System.Int32); - System.Int32 _counterTypeEnum = default(System.Int32); - System.Int32 _counterDataTypeEnum = default(System.Int32); - System.Int64 _rawCounterMaxValue = default(System.Int64); - OpenTK.Graphics.ES30.GL.Intel.GetPerfCounterInfo(_queryId,_counterId,_counterNameLength,_counterName,_counterDescLength,_counterDesc,out _counterOffset,out _counterDataSize,out _counterTypeEnum,out _counterDataTypeEnum,out _rawCounterMaxValue); -} -static unsafe void Test_GetPerfCounterInfo_34629() { - System.Int32 _queryId = default(System.Int32); - System.Int32 _counterId = default(System.Int32); - System.Int32 _counterNameLength = default(System.Int32); - System.Text.StringBuilder _counterName = default(System.Text.StringBuilder); - System.Int32 _counterDescLength = default(System.Int32); - System.Text.StringBuilder _counterDesc = default(System.Text.StringBuilder); - System.Int32* _counterOffset = default(System.Int32*); - System.Int32* _counterDataSize = default(System.Int32*); - System.Int32* _counterTypeEnum = default(System.Int32*); - System.Int32* _counterDataTypeEnum = default(System.Int32*); - System.Int64* _rawCounterMaxValue = default(System.Int64*); - OpenTK.Graphics.ES30.GL.Intel.GetPerfCounterInfo(_queryId,_counterId,_counterNameLength,_counterName,_counterDescLength,_counterDesc,_counterOffset,_counterDataSize,_counterTypeEnum,_counterDataTypeEnum,_rawCounterMaxValue); -} -static unsafe void Test_GetPerfCounterInfo_34630() { - System.UInt32 _queryId = default(System.UInt32); - System.UInt32 _counterId = default(System.UInt32); - System.UInt32 _counterNameLength = default(System.UInt32); - System.Text.StringBuilder _counterName = default(System.Text.StringBuilder); - System.UInt32 _counterDescLength = default(System.UInt32); - System.Text.StringBuilder _counterDesc = default(System.Text.StringBuilder); - System.UInt32[] _counterOffset = default(System.UInt32[]); - System.UInt32[] _counterDataSize = default(System.UInt32[]); - System.UInt32[] _counterTypeEnum = default(System.UInt32[]); - System.UInt32[] _counterDataTypeEnum = default(System.UInt32[]); - System.UInt64[] _rawCounterMaxValue = default(System.UInt64[]); - OpenTK.Graphics.ES30.GL.Intel.GetPerfCounterInfo(_queryId,_counterId,_counterNameLength,_counterName,_counterDescLength,_counterDesc,_counterOffset,_counterDataSize,_counterTypeEnum,_counterDataTypeEnum,_rawCounterMaxValue); -} -static unsafe void Test_GetPerfCounterInfo_34631() { - System.UInt32 _queryId = default(System.UInt32); - System.UInt32 _counterId = default(System.UInt32); - System.UInt32 _counterNameLength = default(System.UInt32); - System.Text.StringBuilder _counterName = default(System.Text.StringBuilder); - System.UInt32 _counterDescLength = default(System.UInt32); - System.Text.StringBuilder _counterDesc = default(System.Text.StringBuilder); - System.UInt32 _counterOffset = default(System.UInt32); - System.UInt32 _counterDataSize = default(System.UInt32); - System.UInt32 _counterTypeEnum = default(System.UInt32); - System.UInt32 _counterDataTypeEnum = default(System.UInt32); - System.UInt64 _rawCounterMaxValue = default(System.UInt64); - OpenTK.Graphics.ES30.GL.Intel.GetPerfCounterInfo(_queryId,_counterId,_counterNameLength,_counterName,_counterDescLength,_counterDesc,out _counterOffset,out _counterDataSize,out _counterTypeEnum,out _counterDataTypeEnum,out _rawCounterMaxValue); -} -static unsafe void Test_GetPerfCounterInfo_34632() { - System.UInt32 _queryId = default(System.UInt32); - System.UInt32 _counterId = default(System.UInt32); - System.UInt32 _counterNameLength = default(System.UInt32); - System.Text.StringBuilder _counterName = default(System.Text.StringBuilder); - System.UInt32 _counterDescLength = default(System.UInt32); - System.Text.StringBuilder _counterDesc = default(System.Text.StringBuilder); - System.UInt32* _counterOffset = default(System.UInt32*); - System.UInt32* _counterDataSize = default(System.UInt32*); - System.UInt32* _counterTypeEnum = default(System.UInt32*); - System.UInt32* _counterDataTypeEnum = default(System.UInt32*); - System.UInt64* _rawCounterMaxValue = default(System.UInt64*); - OpenTK.Graphics.ES30.GL.Intel.GetPerfCounterInfo(_queryId,_counterId,_counterNameLength,_counterName,_counterDescLength,_counterDesc,_counterOffset,_counterDataSize,_counterTypeEnum,_counterDataTypeEnum,_rawCounterMaxValue); -} -static unsafe void Test_GetPerfQueryData_34633() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - System.Int32[] _bytesWritten = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_34634() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - System.Int32 _bytesWritten = default(System.Int32); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,out _bytesWritten); -} -static unsafe void Test_GetPerfQueryData_34635() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - System.Int32* _bytesWritten = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_34636() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - int[] _data = default(int[]); - System.Int32[] _bytesWritten = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_34637() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - int[] _data = default(int[]); - System.Int32 _bytesWritten = default(System.Int32); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,out _bytesWritten); -} -static unsafe void Test_GetPerfQueryData_34638() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - int[] _data = default(int[]); - System.Int32* _bytesWritten = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_34639() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - int[,] _data = default(int[,]); - System.Int32[] _bytesWritten = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_34640() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - int[,] _data = default(int[,]); - System.Int32 _bytesWritten = default(System.Int32); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,out _bytesWritten); -} -static unsafe void Test_GetPerfQueryData_34641() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - int[,] _data = default(int[,]); - System.Int32* _bytesWritten = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_34642() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - int[,,] _data = default(int[,,]); - System.Int32[] _bytesWritten = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_34643() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - int[,,] _data = default(int[,,]); - System.Int32 _bytesWritten = default(System.Int32); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,out _bytesWritten); -} -static unsafe void Test_GetPerfQueryData_34644() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - int[,,] _data = default(int[,,]); - System.Int32* _bytesWritten = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_34645() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - int _data = default(int); - System.Int32[] _bytesWritten = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,ref _data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_34646() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - int _data = default(int); - System.Int32 _bytesWritten = default(System.Int32); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,ref _data,out _bytesWritten); -} -static unsafe void Test_GetPerfQueryData_34647() { - System.Int32 _queryHandle = default(System.Int32); - System.Int32 _flags = default(System.Int32); - System.Int32 _dataSize = default(System.Int32); - int _data = default(int); - System.Int32* _bytesWritten = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,ref _data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_34648() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - System.UInt32[] _bytesWritten = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_34649() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - System.UInt32 _bytesWritten = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,out _bytesWritten); -} -static unsafe void Test_GetPerfQueryData_34650() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - System.UInt32* _bytesWritten = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_34651() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - int[] _data = default(int[]); - System.UInt32[] _bytesWritten = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_34652() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - int[] _data = default(int[]); - System.UInt32 _bytesWritten = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,out _bytesWritten); -} -static unsafe void Test_GetPerfQueryData_34653() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - int[] _data = default(int[]); - System.UInt32* _bytesWritten = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_34654() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - int[,] _data = default(int[,]); - System.UInt32[] _bytesWritten = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_34655() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - int[,] _data = default(int[,]); - System.UInt32 _bytesWritten = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,out _bytesWritten); -} -static unsafe void Test_GetPerfQueryData_34656() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - int[,] _data = default(int[,]); - System.UInt32* _bytesWritten = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_34657() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - int[,,] _data = default(int[,,]); - System.UInt32[] _bytesWritten = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_34658() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - int[,,] _data = default(int[,,]); - System.UInt32 _bytesWritten = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,out _bytesWritten); -} -static unsafe void Test_GetPerfQueryData_34659() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - int[,,] _data = default(int[,,]); - System.UInt32* _bytesWritten = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,_data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_34660() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - int _data = default(int); - System.UInt32[] _bytesWritten = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,ref _data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryData_34661() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - int _data = default(int); - System.UInt32 _bytesWritten = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,ref _data,out _bytesWritten); -} -static unsafe void Test_GetPerfQueryData_34662() { - System.UInt32 _queryHandle = default(System.UInt32); - System.UInt32 _flags = default(System.UInt32); - System.Int32 _dataSize = default(System.Int32); - int _data = default(int); - System.UInt32* _bytesWritten = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryData(_queryHandle,_flags,_dataSize,ref _data,_bytesWritten); -} -static unsafe void Test_GetPerfQueryIdByName_34663() { - System.Text.StringBuilder _queryName = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryIdByName(_queryName); -} -static unsafe void Test_GetPerfQueryIdByName_34664() { - System.Text.StringBuilder _queryName = default(System.Text.StringBuilder); - System.Int32[] _queryId = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryIdByName(_queryName,_queryId); -} -static unsafe void Test_GetPerfQueryIdByName_34665() { - System.Text.StringBuilder _queryName = default(System.Text.StringBuilder); - System.Int32 _queryId = default(System.Int32); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryIdByName(_queryName,out _queryId); -} -static unsafe void Test_GetPerfQueryIdByName_34666() { - System.Text.StringBuilder _queryName = default(System.Text.StringBuilder); - System.Int32* _queryId = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryIdByName(_queryName,_queryId); -} -static unsafe void Test_GetPerfQueryIdByName_34667() { - System.Text.StringBuilder _queryName = default(System.Text.StringBuilder); - System.UInt32[] _queryId = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryIdByName(_queryName,_queryId); -} -static unsafe void Test_GetPerfQueryIdByName_34668() { - System.Text.StringBuilder _queryName = default(System.Text.StringBuilder); - System.UInt32 _queryId = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryIdByName(_queryName,out _queryId); -} -static unsafe void Test_GetPerfQueryIdByName_34669() { - System.Text.StringBuilder _queryName = default(System.Text.StringBuilder); - System.UInt32* _queryId = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryIdByName(_queryName,_queryId); -} -static unsafe void Test_GetPerfQueryInfo_34670() { - System.Int32 _queryId = default(System.Int32); - System.Int32 _queryNameLength = default(System.Int32); - System.Text.StringBuilder _queryName = default(System.Text.StringBuilder); - System.Int32[] _dataSize = default(System.Int32[]); - System.Int32[] _noCounters = default(System.Int32[]); - System.Int32[] _noInstances = default(System.Int32[]); - System.Int32[] _capsMask = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryInfo(_queryId,_queryNameLength,_queryName,_dataSize,_noCounters,_noInstances,_capsMask); -} -static unsafe void Test_GetPerfQueryInfo_34671() { - System.Int32 _queryId = default(System.Int32); - System.Int32 _queryNameLength = default(System.Int32); - System.Text.StringBuilder _queryName = default(System.Text.StringBuilder); - System.Int32 _dataSize = default(System.Int32); - System.Int32 _noCounters = default(System.Int32); - System.Int32 _noInstances = default(System.Int32); - System.Int32 _capsMask = default(System.Int32); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryInfo(_queryId,_queryNameLength,_queryName,out _dataSize,out _noCounters,out _noInstances,out _capsMask); -} -static unsafe void Test_GetPerfQueryInfo_34672() { - System.Int32 _queryId = default(System.Int32); - System.Int32 _queryNameLength = default(System.Int32); - System.Text.StringBuilder _queryName = default(System.Text.StringBuilder); - System.Int32* _dataSize = default(System.Int32*); - System.Int32* _noCounters = default(System.Int32*); - System.Int32* _noInstances = default(System.Int32*); - System.Int32* _capsMask = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryInfo(_queryId,_queryNameLength,_queryName,_dataSize,_noCounters,_noInstances,_capsMask); -} -static unsafe void Test_GetPerfQueryInfo_34673() { - System.UInt32 _queryId = default(System.UInt32); - System.UInt32 _queryNameLength = default(System.UInt32); - System.Text.StringBuilder _queryName = default(System.Text.StringBuilder); - System.UInt32[] _dataSize = default(System.UInt32[]); - System.UInt32[] _noCounters = default(System.UInt32[]); - System.UInt32[] _noInstances = default(System.UInt32[]); - System.UInt32[] _capsMask = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryInfo(_queryId,_queryNameLength,_queryName,_dataSize,_noCounters,_noInstances,_capsMask); -} -static unsafe void Test_GetPerfQueryInfo_34674() { - System.UInt32 _queryId = default(System.UInt32); - System.UInt32 _queryNameLength = default(System.UInt32); - System.Text.StringBuilder _queryName = default(System.Text.StringBuilder); - System.UInt32 _dataSize = default(System.UInt32); - System.UInt32 _noCounters = default(System.UInt32); - System.UInt32 _noInstances = default(System.UInt32); - System.UInt32 _capsMask = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryInfo(_queryId,_queryNameLength,_queryName,out _dataSize,out _noCounters,out _noInstances,out _capsMask); -} -static unsafe void Test_GetPerfQueryInfo_34675() { - System.UInt32 _queryId = default(System.UInt32); - System.UInt32 _queryNameLength = default(System.UInt32); - System.Text.StringBuilder _queryName = default(System.Text.StringBuilder); - System.UInt32* _dataSize = default(System.UInt32*); - System.UInt32* _noCounters = default(System.UInt32*); - System.UInt32* _noInstances = default(System.UInt32*); - System.UInt32* _capsMask = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.Intel.GetPerfQueryInfo(_queryId,_queryNameLength,_queryName,_dataSize,_noCounters,_noInstances,_capsMask); -} -static unsafe void Test_BlendBarrier_34676() { - OpenTK.Graphics.ES30.GL.Khr.BlendBarrier(); -} -static unsafe void Test_DebugMessageCallback_34677() { - OpenTK.Graphics.ES30.DebugProcKhr _callback = default(OpenTK.Graphics.ES30.DebugProcKhr); - System.IntPtr _userParam = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.Khr.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_34678() { - OpenTK.Graphics.ES30.DebugProcKhr _callback = default(OpenTK.Graphics.ES30.DebugProcKhr); - int[] _userParam = default(int[]); - OpenTK.Graphics.ES30.GL.Khr.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_34679() { - OpenTK.Graphics.ES30.DebugProcKhr _callback = default(OpenTK.Graphics.ES30.DebugProcKhr); - int[,] _userParam = default(int[,]); - OpenTK.Graphics.ES30.GL.Khr.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_34680() { - OpenTK.Graphics.ES30.DebugProcKhr _callback = default(OpenTK.Graphics.ES30.DebugProcKhr); - int[,,] _userParam = default(int[,,]); - OpenTK.Graphics.ES30.GL.Khr.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_34681() { - OpenTK.Graphics.ES30.DebugProcKhr _callback = default(OpenTK.Graphics.ES30.DebugProcKhr); - int _userParam = default(int); - OpenTK.Graphics.ES30.GL.Khr.DebugMessageCallback(_callback,ref _userParam); -} -static unsafe void Test_DebugMessageControl_34682() { - OpenTK.Graphics.ES30.All _source = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _severity = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - System.Int32[] _ids = default(System.Int32[]); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES30.GL.Khr.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_34683() { - OpenTK.Graphics.ES30.All _source = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _severity = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - System.Int32 _ids = default(System.Int32); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES30.GL.Khr.DebugMessageControl(_source,_type,_severity,_count,ref _ids,_enabled); -} -static unsafe void Test_DebugMessageControl_34684() { - OpenTK.Graphics.ES30.All _source = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _severity = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - System.Int32* _ids = default(System.Int32*); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES30.GL.Khr.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_34685() { - OpenTK.Graphics.ES30.All _source = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _severity = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - System.UInt32[] _ids = default(System.UInt32[]); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES30.GL.Khr.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_34686() { - OpenTK.Graphics.ES30.All _source = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _severity = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - System.UInt32 _ids = default(System.UInt32); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES30.GL.Khr.DebugMessageControl(_source,_type,_severity,_count,ref _ids,_enabled); -} -static unsafe void Test_DebugMessageControl_34687() { - OpenTK.Graphics.ES30.All _source = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _severity = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - System.UInt32* _ids = default(System.UInt32*); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES30.GL.Khr.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_34688() { - OpenTK.Graphics.ES30.DebugSourceControl _source = default(OpenTK.Graphics.ES30.DebugSourceControl); - OpenTK.Graphics.ES30.DebugTypeControl _type = default(OpenTK.Graphics.ES30.DebugTypeControl); - OpenTK.Graphics.ES30.DebugSeverityControl _severity = default(OpenTK.Graphics.ES30.DebugSeverityControl); - System.Int32 _count = default(System.Int32); - System.Int32[] _ids = default(System.Int32[]); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES30.GL.Khr.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_34689() { - OpenTK.Graphics.ES30.DebugSourceControl _source = default(OpenTK.Graphics.ES30.DebugSourceControl); - OpenTK.Graphics.ES30.DebugTypeControl _type = default(OpenTK.Graphics.ES30.DebugTypeControl); - OpenTK.Graphics.ES30.DebugSeverityControl _severity = default(OpenTK.Graphics.ES30.DebugSeverityControl); - System.Int32 _count = default(System.Int32); - System.Int32 _ids = default(System.Int32); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES30.GL.Khr.DebugMessageControl(_source,_type,_severity,_count,ref _ids,_enabled); -} -static unsafe void Test_DebugMessageControl_34690() { - OpenTK.Graphics.ES30.DebugSourceControl _source = default(OpenTK.Graphics.ES30.DebugSourceControl); - OpenTK.Graphics.ES30.DebugTypeControl _type = default(OpenTK.Graphics.ES30.DebugTypeControl); - OpenTK.Graphics.ES30.DebugSeverityControl _severity = default(OpenTK.Graphics.ES30.DebugSeverityControl); - System.Int32 _count = default(System.Int32); - System.Int32* _ids = default(System.Int32*); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES30.GL.Khr.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_34691() { - OpenTK.Graphics.ES30.DebugSourceControl _source = default(OpenTK.Graphics.ES30.DebugSourceControl); - OpenTK.Graphics.ES30.DebugTypeControl _type = default(OpenTK.Graphics.ES30.DebugTypeControl); - OpenTK.Graphics.ES30.DebugSeverityControl _severity = default(OpenTK.Graphics.ES30.DebugSeverityControl); - System.Int32 _count = default(System.Int32); - System.UInt32[] _ids = default(System.UInt32[]); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES30.GL.Khr.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_34692() { - OpenTK.Graphics.ES30.DebugSourceControl _source = default(OpenTK.Graphics.ES30.DebugSourceControl); - OpenTK.Graphics.ES30.DebugTypeControl _type = default(OpenTK.Graphics.ES30.DebugTypeControl); - OpenTK.Graphics.ES30.DebugSeverityControl _severity = default(OpenTK.Graphics.ES30.DebugSeverityControl); - System.Int32 _count = default(System.Int32); - System.UInt32 _ids = default(System.UInt32); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES30.GL.Khr.DebugMessageControl(_source,_type,_severity,_count,ref _ids,_enabled); -} -static unsafe void Test_DebugMessageControl_34693() { - OpenTK.Graphics.ES30.DebugSourceControl _source = default(OpenTK.Graphics.ES30.DebugSourceControl); - OpenTK.Graphics.ES30.DebugTypeControl _type = default(OpenTK.Graphics.ES30.DebugTypeControl); - OpenTK.Graphics.ES30.DebugSeverityControl _severity = default(OpenTK.Graphics.ES30.DebugSeverityControl); - System.Int32 _count = default(System.Int32); - System.UInt32* _ids = default(System.UInt32*); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.ES30.GL.Khr.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageInsert_34694() { - OpenTK.Graphics.ES30.All _source = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES30.All _severity = default(OpenTK.Graphics.ES30.All); - System.Int32 _length = default(System.Int32); - System.String _buf = default(System.String); - OpenTK.Graphics.ES30.GL.Khr.DebugMessageInsert(_source,_type,_id,_severity,_length,_buf); -} -static unsafe void Test_DebugMessageInsert_34695() { - OpenTK.Graphics.ES30.All _source = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES30.All _severity = default(OpenTK.Graphics.ES30.All); - System.Int32 _length = default(System.Int32); - System.String _buf = default(System.String); - OpenTK.Graphics.ES30.GL.Khr.DebugMessageInsert(_source,_type,_id,_severity,_length,_buf); -} -static unsafe void Test_DebugMessageInsert_34696() { - OpenTK.Graphics.ES30.DebugSourceExternal _source = default(OpenTK.Graphics.ES30.DebugSourceExternal); - OpenTK.Graphics.ES30.DebugType _type = default(OpenTK.Graphics.ES30.DebugType); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES30.DebugSeverity _severity = default(OpenTK.Graphics.ES30.DebugSeverity); - System.Int32 _length = default(System.Int32); - System.String _buf = default(System.String); - OpenTK.Graphics.ES30.GL.Khr.DebugMessageInsert(_source,_type,_id,_severity,_length,_buf); -} -static unsafe void Test_DebugMessageInsert_34697() { - OpenTK.Graphics.ES30.DebugSourceExternal _source = default(OpenTK.Graphics.ES30.DebugSourceExternal); - OpenTK.Graphics.ES30.DebugType _type = default(OpenTK.Graphics.ES30.DebugType); - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.ES30.DebugSeverity _severity = default(OpenTK.Graphics.ES30.DebugSeverity); - System.Int32 _length = default(System.Int32); - System.String _buf = default(System.String); - OpenTK.Graphics.ES30.GL.Khr.DebugMessageInsert(_source,_type,_id,_severity,_length,_buf); -} -static unsafe void Test_GetDebugMessageLog_34698() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES30.All[] _sources = default(OpenTK.Graphics.ES30.All[]); - OpenTK.Graphics.ES30.All[] _types = default(OpenTK.Graphics.ES30.All[]); - System.Int32[] _ids = default(System.Int32[]); - OpenTK.Graphics.ES30.All[] _severities = default(OpenTK.Graphics.ES30.All[]); - System.Int32[] _lengths = default(System.Int32[]); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES30.GL.Khr.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_34699() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES30.All _sources = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _types = default(OpenTK.Graphics.ES30.All); - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.ES30.All _severities = default(OpenTK.Graphics.ES30.All); - System.Int32 _lengths = default(System.Int32); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES30.GL.Khr.GetDebugMessageLog(_count,_bufSize,out _sources,out _types,out _ids,out _severities,out _lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_34700() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES30.All* _sources = default(OpenTK.Graphics.ES30.All*); - OpenTK.Graphics.ES30.All* _types = default(OpenTK.Graphics.ES30.All*); - System.Int32* _ids = default(System.Int32*); - OpenTK.Graphics.ES30.All* _severities = default(OpenTK.Graphics.ES30.All*); - System.Int32* _lengths = default(System.Int32*); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES30.GL.Khr.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_34701() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES30.DebugSourceExternal[] _sources = default(OpenTK.Graphics.ES30.DebugSourceExternal[]); - OpenTK.Graphics.ES30.DebugType[] _types = default(OpenTK.Graphics.ES30.DebugType[]); - System.Int32[] _ids = default(System.Int32[]); - OpenTK.Graphics.ES30.DebugSeverity[] _severities = default(OpenTK.Graphics.ES30.DebugSeverity[]); - System.Int32[] _lengths = default(System.Int32[]); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES30.GL.Khr.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_34702() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES30.DebugSourceExternal _sources = default(OpenTK.Graphics.ES30.DebugSourceExternal); - OpenTK.Graphics.ES30.DebugType _types = default(OpenTK.Graphics.ES30.DebugType); - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.ES30.DebugSeverity _severities = default(OpenTK.Graphics.ES30.DebugSeverity); - System.Int32 _lengths = default(System.Int32); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES30.GL.Khr.GetDebugMessageLog(_count,_bufSize,out _sources,out _types,out _ids,out _severities,out _lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_34703() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES30.DebugSourceExternal* _sources = default(OpenTK.Graphics.ES30.DebugSourceExternal*); - OpenTK.Graphics.ES30.DebugType* _types = default(OpenTK.Graphics.ES30.DebugType*); - System.Int32* _ids = default(System.Int32*); - OpenTK.Graphics.ES30.DebugSeverity* _severities = default(OpenTK.Graphics.ES30.DebugSeverity*); - System.Int32* _lengths = default(System.Int32*); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES30.GL.Khr.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_34704() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES30.All[] _sources = default(OpenTK.Graphics.ES30.All[]); - OpenTK.Graphics.ES30.All[] _types = default(OpenTK.Graphics.ES30.All[]); - System.UInt32[] _ids = default(System.UInt32[]); - OpenTK.Graphics.ES30.All[] _severities = default(OpenTK.Graphics.ES30.All[]); - System.Int32[] _lengths = default(System.Int32[]); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES30.GL.Khr.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_34705() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES30.All _sources = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _types = default(OpenTK.Graphics.ES30.All); - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.ES30.All _severities = default(OpenTK.Graphics.ES30.All); - System.Int32 _lengths = default(System.Int32); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES30.GL.Khr.GetDebugMessageLog(_count,_bufSize,out _sources,out _types,out _ids,out _severities,out _lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_34706() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES30.All* _sources = default(OpenTK.Graphics.ES30.All*); - OpenTK.Graphics.ES30.All* _types = default(OpenTK.Graphics.ES30.All*); - System.UInt32* _ids = default(System.UInt32*); - OpenTK.Graphics.ES30.All* _severities = default(OpenTK.Graphics.ES30.All*); - System.Int32* _lengths = default(System.Int32*); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES30.GL.Khr.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_34707() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES30.DebugSourceExternal[] _sources = default(OpenTK.Graphics.ES30.DebugSourceExternal[]); - OpenTK.Graphics.ES30.DebugType[] _types = default(OpenTK.Graphics.ES30.DebugType[]); - System.UInt32[] _ids = default(System.UInt32[]); - OpenTK.Graphics.ES30.DebugSeverity[] _severities = default(OpenTK.Graphics.ES30.DebugSeverity[]); - System.Int32[] _lengths = default(System.Int32[]); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES30.GL.Khr.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_34708() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES30.DebugSourceExternal _sources = default(OpenTK.Graphics.ES30.DebugSourceExternal); - OpenTK.Graphics.ES30.DebugType _types = default(OpenTK.Graphics.ES30.DebugType); - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.ES30.DebugSeverity _severities = default(OpenTK.Graphics.ES30.DebugSeverity); - System.Int32 _lengths = default(System.Int32); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES30.GL.Khr.GetDebugMessageLog(_count,_bufSize,out _sources,out _types,out _ids,out _severities,out _lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_34709() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.ES30.DebugSourceExternal* _sources = default(OpenTK.Graphics.ES30.DebugSourceExternal*); - OpenTK.Graphics.ES30.DebugType* _types = default(OpenTK.Graphics.ES30.DebugType*); - System.UInt32* _ids = default(System.UInt32*); - OpenTK.Graphics.ES30.DebugSeverity* _severities = default(OpenTK.Graphics.ES30.DebugSeverity*); - System.Int32* _lengths = default(System.Int32*); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.ES30.GL.Khr.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetObjectLabel_34710() { - OpenTK.Graphics.ES30.All _identifier = default(OpenTK.Graphics.ES30.All); - System.Int32 _name = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Khr.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_34711() { - OpenTK.Graphics.ES30.All _identifier = default(OpenTK.Graphics.ES30.All); - System.Int32 _name = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Khr.GetObjectLabel(_identifier,_name,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectLabel_34712() { - OpenTK.Graphics.ES30.All _identifier = default(OpenTK.Graphics.ES30.All); - System.Int32 _name = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Khr.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_34713() { - OpenTK.Graphics.ES30.All _identifier = default(OpenTK.Graphics.ES30.All); - System.UInt32 _name = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Khr.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_34714() { - OpenTK.Graphics.ES30.All _identifier = default(OpenTK.Graphics.ES30.All); - System.UInt32 _name = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Khr.GetObjectLabel(_identifier,_name,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectLabel_34715() { - OpenTK.Graphics.ES30.All _identifier = default(OpenTK.Graphics.ES30.All); - System.UInt32 _name = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Khr.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_34716() { - OpenTK.Graphics.ES30.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.ES30.ObjectLabelIdentifier); - System.Int32 _name = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Khr.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_34717() { - OpenTK.Graphics.ES30.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.ES30.ObjectLabelIdentifier); - System.Int32 _name = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Khr.GetObjectLabel(_identifier,_name,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectLabel_34718() { - OpenTK.Graphics.ES30.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.ES30.ObjectLabelIdentifier); - System.Int32 _name = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Khr.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_34719() { - OpenTK.Graphics.ES30.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.ES30.ObjectLabelIdentifier); - System.UInt32 _name = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Khr.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_34720() { - OpenTK.Graphics.ES30.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.ES30.ObjectLabelIdentifier); - System.UInt32 _name = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Khr.GetObjectLabel(_identifier,_name,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectLabel_34721() { - OpenTK.Graphics.ES30.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.ES30.ObjectLabelIdentifier); - System.UInt32 _name = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Khr.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_34722() { - System.IntPtr _ptr = default(System.IntPtr); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_34723() { - System.IntPtr _ptr = default(System.IntPtr); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectPtrLabel_34724() { - System.IntPtr _ptr = default(System.IntPtr); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_34725() { - int[] _ptr = default(int[]); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_34726() { - int[] _ptr = default(int[]); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectPtrLabel_34727() { - int[] _ptr = default(int[]); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_34728() { - int[,] _ptr = default(int[,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_34729() { - int[,] _ptr = default(int[,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectPtrLabel_34730() { - int[,] _ptr = default(int[,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_34731() { - int[,,] _ptr = default(int[,,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_34732() { - int[,,] _ptr = default(int[,,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectPtrLabel_34733() { - int[,,] _ptr = default(int[,,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_34734() { - int _ptr = default(int); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Khr.GetObjectPtrLabel(ref _ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_34735() { - int _ptr = default(int); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Khr.GetObjectPtrLabel(ref _ptr,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectPtrLabel_34736() { - int _ptr = default(int); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Khr.GetObjectPtrLabel(ref _ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetPointer_34737() { - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.IntPtr _params = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.Khr.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_34738() { - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - int[] _params = default(int[]); - OpenTK.Graphics.ES30.GL.Khr.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_34739() { - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - int[,] _params = default(int[,]); - OpenTK.Graphics.ES30.GL.Khr.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_34740() { - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - int[,,] _params = default(int[,,]); - OpenTK.Graphics.ES30.GL.Khr.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_34741() { - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - int _params = default(int); - OpenTK.Graphics.ES30.GL.Khr.GetPointer(_pname,ref _params); -} -static unsafe void Test_ObjectLabel_34742() { - OpenTK.Graphics.ES30.All _identifier = default(OpenTK.Graphics.ES30.All); - System.Int32 _name = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.ES30.GL.Khr.ObjectLabel(_identifier,_name,_length,_label); -} -static unsafe void Test_ObjectLabel_34743() { - OpenTK.Graphics.ES30.All _identifier = default(OpenTK.Graphics.ES30.All); - System.UInt32 _name = default(System.UInt32); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.ES30.GL.Khr.ObjectLabel(_identifier,_name,_length,_label); -} -static unsafe void Test_ObjectLabel_34744() { - OpenTK.Graphics.ES30.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.ES30.ObjectLabelIdentifier); - System.Int32 _name = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.ES30.GL.Khr.ObjectLabel(_identifier,_name,_length,_label); -} -static unsafe void Test_ObjectLabel_34745() { - OpenTK.Graphics.ES30.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.ES30.ObjectLabelIdentifier); - System.UInt32 _name = default(System.UInt32); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.ES30.GL.Khr.ObjectLabel(_identifier,_name,_length,_label); -} -static unsafe void Test_ObjectPtrLabel_34746() { - System.IntPtr _ptr = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.ES30.GL.Khr.ObjectPtrLabel(_ptr,_length,_label); -} -static unsafe void Test_ObjectPtrLabel_34747() { - int[] _ptr = default(int[]); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.ES30.GL.Khr.ObjectPtrLabel(_ptr,_length,_label); -} -static unsafe void Test_ObjectPtrLabel_34748() { - int[,] _ptr = default(int[,]); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.ES30.GL.Khr.ObjectPtrLabel(_ptr,_length,_label); -} -static unsafe void Test_ObjectPtrLabel_34749() { - int[,,] _ptr = default(int[,,]); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.ES30.GL.Khr.ObjectPtrLabel(_ptr,_length,_label); -} -static unsafe void Test_ObjectPtrLabel_34750() { - int _ptr = default(int); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.ES30.GL.Khr.ObjectPtrLabel(ref _ptr,_length,_label); -} -static unsafe void Test_PopDebugGroup_34751() { - OpenTK.Graphics.ES30.GL.Khr.PopDebugGroup(); -} -static unsafe void Test_PushDebugGroup_34752() { - OpenTK.Graphics.ES30.All _source = default(OpenTK.Graphics.ES30.All); - System.Int32 _id = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.String _message = default(System.String); - OpenTK.Graphics.ES30.GL.Khr.PushDebugGroup(_source,_id,_length,_message); -} -static unsafe void Test_PushDebugGroup_34753() { - OpenTK.Graphics.ES30.All _source = default(OpenTK.Graphics.ES30.All); - System.UInt32 _id = default(System.UInt32); - System.Int32 _length = default(System.Int32); - System.String _message = default(System.String); - OpenTK.Graphics.ES30.GL.Khr.PushDebugGroup(_source,_id,_length,_message); -} -static unsafe void Test_BlendBarrier_34754() { - OpenTK.Graphics.ES30.GL.NV.BlendBarrier(); -} -static unsafe void Test_BlendParameter_34755() { - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.ES30.GL.NV.BlendParameter(_pname,_value); -} -static unsafe void Test_BlitFramebuffer_34756() { - System.Int32 _srcX0 = default(System.Int32); - System.Int32 _srcY0 = default(System.Int32); - System.Int32 _srcX1 = default(System.Int32); - System.Int32 _srcY1 = default(System.Int32); - System.Int32 _dstX0 = default(System.Int32); - System.Int32 _dstY0 = default(System.Int32); - System.Int32 _dstX1 = default(System.Int32); - System.Int32 _dstY1 = default(System.Int32); - OpenTK.Graphics.ES30.All _mask = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _filter = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.NV.BlitFramebuffer(_srcX0,_srcY0,_srcX1,_srcY1,_dstX0,_dstY0,_dstX1,_dstY1,_mask,_filter); -} -static unsafe void Test_BlitFramebuffer_34757() { - System.Int32 _srcX0 = default(System.Int32); - System.Int32 _srcY0 = default(System.Int32); - System.Int32 _srcX1 = default(System.Int32); - System.Int32 _srcY1 = default(System.Int32); - System.Int32 _dstX0 = default(System.Int32); - System.Int32 _dstY0 = default(System.Int32); - System.Int32 _dstX1 = default(System.Int32); - System.Int32 _dstY1 = default(System.Int32); - OpenTK.Graphics.ES30.ClearBufferMask _mask = default(OpenTK.Graphics.ES30.ClearBufferMask); - OpenTK.Graphics.ES30.BlitFramebufferFilter _filter = default(OpenTK.Graphics.ES30.BlitFramebufferFilter); - OpenTK.Graphics.ES30.GL.NV.BlitFramebuffer(_srcX0,_srcY0,_srcX1,_srcY1,_dstX0,_dstY0,_dstX1,_dstY1,_mask,_filter); -} -static unsafe void Test_CopyBufferSubData_34758() { - OpenTK.Graphics.ES30.All _readTarget = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _writeTarget = default(OpenTK.Graphics.ES30.All); - System.IntPtr _readOffset = default(System.IntPtr); - System.IntPtr _writeOffset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.NV.CopyBufferSubData(_readTarget,_writeTarget,_readOffset,_writeOffset,_size); -} -static unsafe void Test_CopyBufferSubData_34759() { - OpenTK.Graphics.ES30.BufferTarget _readTarget = default(OpenTK.Graphics.ES30.BufferTarget); - OpenTK.Graphics.ES30.BufferTarget _writeTarget = default(OpenTK.Graphics.ES30.BufferTarget); - System.IntPtr _readOffset = default(System.IntPtr); - System.IntPtr _writeOffset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.NV.CopyBufferSubData(_readTarget,_writeTarget,_readOffset,_writeOffset,_size); -} -static unsafe void Test_CoverageMask_34760() { - System.Boolean _mask = default(System.Boolean); - OpenTK.Graphics.ES30.GL.NV.CoverageMask(_mask); -} -static unsafe void Test_CoverageOperation_34761() { - OpenTK.Graphics.ES30.All _operation = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.NV.CoverageOperation(_operation); -} -static unsafe void Test_DeleteFence_34762() { - System.Int32 _fences = default(System.Int32); - OpenTK.Graphics.ES30.GL.NV.DeleteFence(_fences); -} -static unsafe void Test_DeleteFence_34763() { - System.UInt32 _fences = default(System.UInt32); - OpenTK.Graphics.ES30.GL.NV.DeleteFence(_fences); -} -static unsafe void Test_DeleteFences_34764() { - System.Int32 _n = default(System.Int32); - System.Int32[] _fences = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.NV.DeleteFences(_n,_fences); -} -static unsafe void Test_DeleteFences_34765() { - System.Int32 _n = default(System.Int32); - System.Int32 _fences = default(System.Int32); - OpenTK.Graphics.ES30.GL.NV.DeleteFences(_n,ref _fences); -} -static unsafe void Test_DeleteFences_34766() { - System.Int32 _n = default(System.Int32); - System.Int32* _fences = default(System.Int32*); - OpenTK.Graphics.ES30.GL.NV.DeleteFences(_n,_fences); -} -static unsafe void Test_DeleteFences_34767() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _fences = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.NV.DeleteFences(_n,_fences); -} -static unsafe void Test_DeleteFences_34768() { - System.Int32 _n = default(System.Int32); - System.UInt32 _fences = default(System.UInt32); - OpenTK.Graphics.ES30.GL.NV.DeleteFences(_n,ref _fences); -} -static unsafe void Test_DeleteFences_34769() { - System.Int32 _n = default(System.Int32); - System.UInt32* _fences = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.NV.DeleteFences(_n,_fences); -} -static unsafe void Test_DrawArraysInstanced_34770() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.NV.DrawArraysInstanced(_mode,_first,_count,_primcount); -} -static unsafe void Test_DrawArraysInstanced_34771() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.NV.DrawArraysInstanced(_mode,_first,_count,_primcount); -} -static unsafe void Test_DrawBuffers_34772() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.ES30.All[] _bufs = default(OpenTK.Graphics.ES30.All[]); - OpenTK.Graphics.ES30.GL.NV.DrawBuffers(_n,_bufs); -} -static unsafe void Test_DrawBuffers_34773() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.ES30.All _bufs = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.NV.DrawBuffers(_n,ref _bufs); -} -static unsafe void Test_DrawBuffers_34774() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.ES30.All* _bufs = default(OpenTK.Graphics.ES30.All*); - OpenTK.Graphics.ES30.GL.NV.DrawBuffers(_n,_bufs); -} -static unsafe void Test_DrawBuffers_34775() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.ES30.DrawBufferMode[] _bufs = default(OpenTK.Graphics.ES30.DrawBufferMode[]); - OpenTK.Graphics.ES30.GL.NV.DrawBuffers(_n,_bufs); -} -static unsafe void Test_DrawBuffers_34776() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.ES30.DrawBufferMode _bufs = default(OpenTK.Graphics.ES30.DrawBufferMode); - OpenTK.Graphics.ES30.GL.NV.DrawBuffers(_n,ref _bufs); -} -static unsafe void Test_DrawBuffers_34777() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.ES30.DrawBufferMode* _bufs = default(OpenTK.Graphics.ES30.DrawBufferMode*); - OpenTK.Graphics.ES30.GL.NV.DrawBuffers(_n,_bufs); -} -static unsafe void Test_DrawElementsInstanced_34778() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.NV.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_34779() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.NV.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_34780() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.NV.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_34781() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.NV.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_34782() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.NV.DrawElementsInstanced(_mode,_count,_type,ref _indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_34783() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.NV.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_34784() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.NV.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_34785() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.NV.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_34786() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.NV.DrawElementsInstanced(_mode,_count,_type,_indices,_primcount); -} -static unsafe void Test_DrawElementsInstanced_34787() { - OpenTK.Graphics.ES30.PrimitiveType _mode = default(OpenTK.Graphics.ES30.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.ES30.DrawElementsType _type = default(OpenTK.Graphics.ES30.DrawElementsType); - int _indices = default(int); - System.Int32 _primcount = default(System.Int32); - OpenTK.Graphics.ES30.GL.NV.DrawElementsInstanced(_mode,_count,_type,ref _indices,_primcount); -} -static unsafe void Test_FinishFence_34788() { - System.Int32 _fence = default(System.Int32); - OpenTK.Graphics.ES30.GL.NV.FinishFence(_fence); -} -static unsafe void Test_FinishFence_34789() { - System.UInt32 _fence = default(System.UInt32); - OpenTK.Graphics.ES30.GL.NV.FinishFence(_fence); -} -static unsafe void Test_GenFence_34790() { - System.Int32 r = OpenTK.Graphics.ES30.GL.NV.GenFence(); -} -static unsafe void Test_GenFences_34791() { - System.Int32 _n = default(System.Int32); - System.Int32[] _fences = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.NV.GenFences(_n,_fences); -} -static unsafe void Test_GenFences_34792() { - System.Int32 _n = default(System.Int32); - System.Int32 _fences = default(System.Int32); - OpenTK.Graphics.ES30.GL.NV.GenFences(_n,out _fences); -} -static unsafe void Test_GenFences_34793() { - System.Int32 _n = default(System.Int32); - System.Int32* _fences = default(System.Int32*); - OpenTK.Graphics.ES30.GL.NV.GenFences(_n,_fences); -} -static unsafe void Test_GenFences_34794() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _fences = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.NV.GenFences(_n,_fences); -} -static unsafe void Test_GenFences_34795() { - System.Int32 _n = default(System.Int32); - System.UInt32 _fences = default(System.UInt32); - OpenTK.Graphics.ES30.GL.NV.GenFences(_n,out _fences); -} -static unsafe void Test_GenFences_34796() { - System.Int32 _n = default(System.Int32); - System.UInt32* _fences = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.NV.GenFences(_n,_fences); -} -static unsafe void Test_GetFence_34797() { - System.Int32 _fence = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.NV.GetFence(_fence,_pname,_params); -} -static unsafe void Test_GetFence_34798() { - System.Int32 _fence = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.NV.GetFence(_fence,_pname,out _params); -} -static unsafe void Test_GetFence_34799() { - System.Int32 _fence = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.NV.GetFence(_fence,_pname,_params); -} -static unsafe void Test_GetFence_34800() { - System.UInt32 _fence = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.NV.GetFence(_fence,_pname,_params); -} -static unsafe void Test_GetFence_34801() { - System.UInt32 _fence = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.NV.GetFence(_fence,_pname,out _params); -} -static unsafe void Test_GetFence_34802() { - System.UInt32 _fence = default(System.UInt32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.NV.GetFence(_fence,_pname,_params); -} -static unsafe void Test_IsFence_34803() { - System.Int32 _fence = default(System.Int32); - System.Boolean r = OpenTK.Graphics.ES30.GL.NV.IsFence(_fence); -} -static unsafe void Test_IsFence_34804() { - System.UInt32 _fence = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.ES30.GL.NV.IsFence(_fence); -} -static unsafe void Test_ReadBuffer_34805() { - OpenTK.Graphics.ES30.All _mode = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.NV.ReadBuffer(_mode); -} -static unsafe void Test_RenderbufferStorageMultisample_34806() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.GL.NV.RenderbufferStorageMultisample(_target,_samples,_internalformat,_width,_height); -} -static unsafe void Test_RenderbufferStorageMultisample_34807() { - OpenTK.Graphics.ES30.RenderbufferTarget _target = default(OpenTK.Graphics.ES30.RenderbufferTarget); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.ES30.RenderbufferInternalFormat _internalformat = default(OpenTK.Graphics.ES30.RenderbufferInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.GL.NV.RenderbufferStorageMultisample(_target,_samples,_internalformat,_width,_height); -} -static unsafe void Test_SetFence_34808() { - System.Int32 _fence = default(System.Int32); - OpenTK.Graphics.ES30.All _condition = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.NV.SetFence(_fence,_condition); -} -static unsafe void Test_SetFence_34809() { - System.UInt32 _fence = default(System.UInt32); - OpenTK.Graphics.ES30.All _condition = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.GL.NV.SetFence(_fence,_condition); -} -static unsafe void Test_TestFence_34810() { - System.Int32 _fence = default(System.Int32); - System.Boolean r = OpenTK.Graphics.ES30.GL.NV.TestFence(_fence); -} -static unsafe void Test_TestFence_34811() { - System.UInt32 _fence = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.ES30.GL.NV.TestFence(_fence); -} -static unsafe void Test_UniformMatrix2x3_34812() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.NV.UniformMatrix2x3(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix2x3_34813() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.NV.UniformMatrix2x3(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix2x3_34814() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.NV.UniformMatrix2x3(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix2x4_34815() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.NV.UniformMatrix2x4(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix2x4_34816() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.NV.UniformMatrix2x4(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix2x4_34817() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.NV.UniformMatrix2x4(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3x2_34818() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.NV.UniformMatrix3x2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3x2_34819() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.NV.UniformMatrix3x2(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix3x2_34820() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.NV.UniformMatrix3x2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3x4_34821() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.NV.UniformMatrix3x4(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3x4_34822() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.NV.UniformMatrix3x4(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix3x4_34823() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.NV.UniformMatrix3x4(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4x2_34824() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.NV.UniformMatrix4x2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4x2_34825() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.NV.UniformMatrix4x2(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix4x2_34826() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.NV.UniformMatrix4x2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4x3_34827() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.ES30.GL.NV.UniformMatrix4x3(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4x3_34828() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.NV.UniformMatrix4x3(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix4x3_34829() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.ES30.GL.NV.UniformMatrix4x3(_location,_count,_transpose,_value); -} -static unsafe void Test_VertexAttribDivisor_34830() { - System.Int32 _index = default(System.Int32); - System.Int32 _divisor = default(System.Int32); - OpenTK.Graphics.ES30.GL.NV.VertexAttribDivisor(_index,_divisor); -} -static unsafe void Test_VertexAttribDivisor_34831() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _divisor = default(System.UInt32); - OpenTK.Graphics.ES30.GL.NV.VertexAttribDivisor(_index,_divisor); -} -static unsafe void Test_BindVertexArray_34832() { - System.Int32 _array = default(System.Int32); - OpenTK.Graphics.ES30.GL.Oes.BindVertexArray(_array); -} -static unsafe void Test_BindVertexArray_34833() { - System.UInt32 _array = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Oes.BindVertexArray(_array); -} -static unsafe void Test_CompressedTexImage3D_34834() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.Oes.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage3D_34835() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.ES30.GL.Oes.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage3D_34836() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES30.GL.Oes.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage3D_34837() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES30.GL.Oes.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage3D_34838() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.ES30.GL.Oes.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,ref _data); -} -static unsafe void Test_CompressedTexImage3D_34839() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.CompressedInternalFormat _internalformat = default(OpenTK.Graphics.ES30.CompressedInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.Oes.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage3D_34840() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.CompressedInternalFormat _internalformat = default(OpenTK.Graphics.ES30.CompressedInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.ES30.GL.Oes.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage3D_34841() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.CompressedInternalFormat _internalformat = default(OpenTK.Graphics.ES30.CompressedInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES30.GL.Oes.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage3D_34842() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.CompressedInternalFormat _internalformat = default(OpenTK.Graphics.ES30.CompressedInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES30.GL.Oes.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage3D_34843() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.CompressedInternalFormat _internalformat = default(OpenTK.Graphics.ES30.CompressedInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.ES30.GL.Oes.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,ref _data); -} -static unsafe void Test_CompressedTexSubImage3D_34844() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.Oes.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage3D_34845() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.ES30.GL.Oes.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage3D_34846() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES30.GL.Oes.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage3D_34847() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES30.GL.Oes.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage3D_34848() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.ES30.GL.Oes.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,ref _data); -} -static unsafe void Test_CompressedTexSubImage3D_34849() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.Oes.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage3D_34850() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.ES30.GL.Oes.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage3D_34851() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.ES30.GL.Oes.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage3D_34852() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.ES30.GL.Oes.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage3D_34853() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.ES30.GL.Oes.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,ref _data); -} -static unsafe void Test_CopyTexSubImage3D_34854() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.GL.Oes.CopyTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_x,_y,_width,_height); -} -static unsafe void Test_CopyTexSubImage3D_34855() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.ES30.GL.Oes.CopyTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_x,_y,_width,_height); -} -static unsafe void Test_DeleteVertexArray_34856() { - System.Int32 _arrays = default(System.Int32); - OpenTK.Graphics.ES30.GL.Oes.DeleteVertexArray(_arrays); -} -static unsafe void Test_DeleteVertexArray_34857() { - System.UInt32 _arrays = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Oes.DeleteVertexArray(_arrays); -} -static unsafe void Test_DeleteVertexArrays_34858() { - System.Int32 _n = default(System.Int32); - System.Int32[] _arrays = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Oes.DeleteVertexArrays(_n,_arrays); -} -static unsafe void Test_DeleteVertexArrays_34859() { - System.Int32 _n = default(System.Int32); - System.Int32 _arrays = default(System.Int32); - OpenTK.Graphics.ES30.GL.Oes.DeleteVertexArrays(_n,ref _arrays); -} -static unsafe void Test_DeleteVertexArrays_34860() { - System.Int32 _n = default(System.Int32); - System.Int32* _arrays = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Oes.DeleteVertexArrays(_n,_arrays); -} -static unsafe void Test_DeleteVertexArrays_34861() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _arrays = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.Oes.DeleteVertexArrays(_n,_arrays); -} -static unsafe void Test_DeleteVertexArrays_34862() { - System.Int32 _n = default(System.Int32); - System.UInt32 _arrays = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Oes.DeleteVertexArrays(_n,ref _arrays); -} -static unsafe void Test_DeleteVertexArrays_34863() { - System.Int32 _n = default(System.Int32); - System.UInt32* _arrays = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.Oes.DeleteVertexArrays(_n,_arrays); -} -static unsafe void Test_EGLImageTargetRenderbufferStorage_34864() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.IntPtr _image = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.Oes.EGLImageTargetRenderbufferStorage(_target,_image); -} -static unsafe void Test_EGLImageTargetTexture2D_34865() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.IntPtr _image = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.Oes.EGLImageTargetTexture2D(_target,_image); -} -static unsafe void Test_FramebufferTexture3D_34866() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _attachment = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _textarget = default(OpenTK.Graphics.ES30.All); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - OpenTK.Graphics.ES30.GL.Oes.FramebufferTexture3D(_target,_attachment,_textarget,_texture,_level,_zoffset); -} -static unsafe void Test_FramebufferTexture3D_34867() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _attachment = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _textarget = default(OpenTK.Graphics.ES30.All); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - OpenTK.Graphics.ES30.GL.Oes.FramebufferTexture3D(_target,_attachment,_textarget,_texture,_level,_zoffset); -} -static unsafe void Test_GenVertexArray_34868() { - System.Int32 r = OpenTK.Graphics.ES30.GL.Oes.GenVertexArray(); -} -static unsafe void Test_GenVertexArrays_34869() { - System.Int32 _n = default(System.Int32); - System.Int32[] _arrays = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Oes.GenVertexArrays(_n,_arrays); -} -static unsafe void Test_GenVertexArrays_34870() { - System.Int32 _n = default(System.Int32); - System.Int32 _arrays = default(System.Int32); - OpenTK.Graphics.ES30.GL.Oes.GenVertexArrays(_n,out _arrays); -} -static unsafe void Test_GenVertexArrays_34871() { - System.Int32 _n = default(System.Int32); - System.Int32* _arrays = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Oes.GenVertexArrays(_n,_arrays); -} -static unsafe void Test_GenVertexArrays_34872() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _arrays = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.Oes.GenVertexArrays(_n,_arrays); -} -static unsafe void Test_GenVertexArrays_34873() { - System.Int32 _n = default(System.Int32); - System.UInt32 _arrays = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Oes.GenVertexArrays(_n,out _arrays); -} -static unsafe void Test_GenVertexArrays_34874() { - System.Int32 _n = default(System.Int32); - System.UInt32* _arrays = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.Oes.GenVertexArrays(_n,_arrays); -} -static unsafe void Test_GetBufferPointer_34875() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.IntPtr _params = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.Oes.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_34876() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - int[] _params = default(int[]); - OpenTK.Graphics.ES30.GL.Oes.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_34877() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - int[,] _params = default(int[,]); - OpenTK.Graphics.ES30.GL.Oes.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_34878() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - int[,,] _params = default(int[,,]); - OpenTK.Graphics.ES30.GL.Oes.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_34879() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - int _params = default(int); - OpenTK.Graphics.ES30.GL.Oes.GetBufferPointer(_target,_pname,ref _params); -} -static unsafe void Test_GetBufferPointer_34880() { - OpenTK.Graphics.ES30.BufferTarget _target = default(OpenTK.Graphics.ES30.BufferTarget); - OpenTK.Graphics.ES30.BufferPointer _pname = default(OpenTK.Graphics.ES30.BufferPointer); - System.IntPtr _params = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.Oes.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_34881() { - OpenTK.Graphics.ES30.BufferTarget _target = default(OpenTK.Graphics.ES30.BufferTarget); - OpenTK.Graphics.ES30.BufferPointer _pname = default(OpenTK.Graphics.ES30.BufferPointer); - int[] _params = default(int[]); - OpenTK.Graphics.ES30.GL.Oes.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_34882() { - OpenTK.Graphics.ES30.BufferTarget _target = default(OpenTK.Graphics.ES30.BufferTarget); - OpenTK.Graphics.ES30.BufferPointer _pname = default(OpenTK.Graphics.ES30.BufferPointer); - int[,] _params = default(int[,]); - OpenTK.Graphics.ES30.GL.Oes.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_34883() { - OpenTK.Graphics.ES30.BufferTarget _target = default(OpenTK.Graphics.ES30.BufferTarget); - OpenTK.Graphics.ES30.BufferPointer _pname = default(OpenTK.Graphics.ES30.BufferPointer); - int[,,] _params = default(int[,,]); - OpenTK.Graphics.ES30.GL.Oes.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_34884() { - OpenTK.Graphics.ES30.BufferTarget _target = default(OpenTK.Graphics.ES30.BufferTarget); - OpenTK.Graphics.ES30.BufferPointer _pname = default(OpenTK.Graphics.ES30.BufferPointer); - int _params = default(int); - OpenTK.Graphics.ES30.GL.Oes.GetBufferPointer(_target,_pname,ref _params); -} -static unsafe void Test_GetProgramBinary_34885() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - OpenTK.Graphics.ES30.All[] _binaryFormat = default(OpenTK.Graphics.ES30.All[]); - System.IntPtr _binary = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.Oes.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_34886() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - OpenTK.Graphics.ES30.All[] _binaryFormat = default(OpenTK.Graphics.ES30.All[]); - int[] _binary = default(int[]); - OpenTK.Graphics.ES30.GL.Oes.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_34887() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - OpenTK.Graphics.ES30.All[] _binaryFormat = default(OpenTK.Graphics.ES30.All[]); - int[,] _binary = default(int[,]); - OpenTK.Graphics.ES30.GL.Oes.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_34888() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - OpenTK.Graphics.ES30.All[] _binaryFormat = default(OpenTK.Graphics.ES30.All[]); - int[,,] _binary = default(int[,,]); - OpenTK.Graphics.ES30.GL.Oes.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_34889() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - OpenTK.Graphics.ES30.All[] _binaryFormat = default(OpenTK.Graphics.ES30.All[]); - int _binary = default(int); - OpenTK.Graphics.ES30.GL.Oes.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,ref _binary); -} -static unsafe void Test_GetProgramBinary_34890() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.All _binaryFormat = default(OpenTK.Graphics.ES30.All); - System.IntPtr _binary = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.Oes.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_34891() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.All _binaryFormat = default(OpenTK.Graphics.ES30.All); - int[] _binary = default(int[]); - OpenTK.Graphics.ES30.GL.Oes.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_34892() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.All _binaryFormat = default(OpenTK.Graphics.ES30.All); - int[,] _binary = default(int[,]); - OpenTK.Graphics.ES30.GL.Oes.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_34893() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.All _binaryFormat = default(OpenTK.Graphics.ES30.All); - int[,,] _binary = default(int[,,]); - OpenTK.Graphics.ES30.GL.Oes.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_34894() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.All _binaryFormat = default(OpenTK.Graphics.ES30.All); - int _binary = default(int); - OpenTK.Graphics.ES30.GL.Oes.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,ref _binary); -} -static unsafe void Test_GetProgramBinary_34895() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.ES30.All* _binaryFormat = default(OpenTK.Graphics.ES30.All*); - System.IntPtr _binary = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.Oes.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_34896() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.ES30.All* _binaryFormat = default(OpenTK.Graphics.ES30.All*); - int[] _binary = default(int[]); - OpenTK.Graphics.ES30.GL.Oes.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_34897() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.ES30.All* _binaryFormat = default(OpenTK.Graphics.ES30.All*); - int[,] _binary = default(int[,]); - OpenTK.Graphics.ES30.GL.Oes.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_34898() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.ES30.All* _binaryFormat = default(OpenTK.Graphics.ES30.All*); - int[,,] _binary = default(int[,,]); - OpenTK.Graphics.ES30.GL.Oes.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_34899() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.ES30.All* _binaryFormat = default(OpenTK.Graphics.ES30.All*); - int _binary = default(int); - OpenTK.Graphics.ES30.GL.Oes.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,ref _binary); -} -static unsafe void Test_GetProgramBinary_34900() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - OpenTK.Graphics.ES30.All[] _binaryFormat = default(OpenTK.Graphics.ES30.All[]); - System.IntPtr _binary = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.Oes.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_34901() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - OpenTK.Graphics.ES30.All[] _binaryFormat = default(OpenTK.Graphics.ES30.All[]); - int[] _binary = default(int[]); - OpenTK.Graphics.ES30.GL.Oes.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_34902() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - OpenTK.Graphics.ES30.All[] _binaryFormat = default(OpenTK.Graphics.ES30.All[]); - int[,] _binary = default(int[,]); - OpenTK.Graphics.ES30.GL.Oes.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_34903() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - OpenTK.Graphics.ES30.All[] _binaryFormat = default(OpenTK.Graphics.ES30.All[]); - int[,,] _binary = default(int[,,]); - OpenTK.Graphics.ES30.GL.Oes.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_34904() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - OpenTK.Graphics.ES30.All[] _binaryFormat = default(OpenTK.Graphics.ES30.All[]); - int _binary = default(int); - OpenTK.Graphics.ES30.GL.Oes.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,ref _binary); -} -static unsafe void Test_GetProgramBinary_34905() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.All _binaryFormat = default(OpenTK.Graphics.ES30.All); - System.IntPtr _binary = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.Oes.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_34906() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.All _binaryFormat = default(OpenTK.Graphics.ES30.All); - int[] _binary = default(int[]); - OpenTK.Graphics.ES30.GL.Oes.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_34907() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.All _binaryFormat = default(OpenTK.Graphics.ES30.All); - int[,] _binary = default(int[,]); - OpenTK.Graphics.ES30.GL.Oes.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_34908() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.All _binaryFormat = default(OpenTK.Graphics.ES30.All); - int[,,] _binary = default(int[,,]); - OpenTK.Graphics.ES30.GL.Oes.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_34909() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.All _binaryFormat = default(OpenTK.Graphics.ES30.All); - int _binary = default(int); - OpenTK.Graphics.ES30.GL.Oes.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,ref _binary); -} -static unsafe void Test_GetProgramBinary_34910() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.ES30.All* _binaryFormat = default(OpenTK.Graphics.ES30.All*); - System.IntPtr _binary = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.Oes.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_34911() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.ES30.All* _binaryFormat = default(OpenTK.Graphics.ES30.All*); - int[] _binary = default(int[]); - OpenTK.Graphics.ES30.GL.Oes.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_34912() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.ES30.All* _binaryFormat = default(OpenTK.Graphics.ES30.All*); - int[,] _binary = default(int[,]); - OpenTK.Graphics.ES30.GL.Oes.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_34913() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.ES30.All* _binaryFormat = default(OpenTK.Graphics.ES30.All*); - int[,,] _binary = default(int[,,]); - OpenTK.Graphics.ES30.GL.Oes.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_34914() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.ES30.All* _binaryFormat = default(OpenTK.Graphics.ES30.All*); - int _binary = default(int); - OpenTK.Graphics.ES30.GL.Oes.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,ref _binary); -} -static unsafe void Test_IsVertexArray_34915() { - System.Int32 _array = default(System.Int32); - System.Boolean r = OpenTK.Graphics.ES30.GL.Oes.IsVertexArray(_array); -} -static unsafe void Test_IsVertexArray_34916() { - System.UInt32 _array = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.ES30.GL.Oes.IsVertexArray(_array); -} -static unsafe void Test_MapBuffer_34917() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _access = default(OpenTK.Graphics.ES30.All); - System.IntPtr r = OpenTK.Graphics.ES30.GL.Oes.MapBuffer(_target,_access); -} -static unsafe void Test_MinSampleShading_34918() { - System.Single _value = default(System.Single); - OpenTK.Graphics.ES30.GL.Oes.MinSampleShading(_value); -} -static unsafe void Test_ProgramBinary_34919() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES30.All _binaryFormat = default(OpenTK.Graphics.ES30.All); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.Oes.ProgramBinary(_program,_binaryFormat,_binary,_length); -} -static unsafe void Test_ProgramBinary_34920() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES30.All _binaryFormat = default(OpenTK.Graphics.ES30.All); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.Oes.ProgramBinary(_program,_binaryFormat,_binary,_length); -} -static unsafe void Test_ProgramBinary_34921() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES30.All _binaryFormat = default(OpenTK.Graphics.ES30.All); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.Oes.ProgramBinary(_program,_binaryFormat,_binary,_length); -} -static unsafe void Test_ProgramBinary_34922() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES30.All _binaryFormat = default(OpenTK.Graphics.ES30.All); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.Oes.ProgramBinary(_program,_binaryFormat,_binary,_length); -} -static unsafe void Test_ProgramBinary_34923() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES30.All _binaryFormat = default(OpenTK.Graphics.ES30.All); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.Oes.ProgramBinary(_program,_binaryFormat,ref _binary,_length); -} -static unsafe void Test_ProgramBinary_34924() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES30.All _binaryFormat = default(OpenTK.Graphics.ES30.All); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.Oes.ProgramBinary(_program,_binaryFormat,_binary,_length); -} -static unsafe void Test_ProgramBinary_34925() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES30.All _binaryFormat = default(OpenTK.Graphics.ES30.All); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.Oes.ProgramBinary(_program,_binaryFormat,_binary,_length); -} -static unsafe void Test_ProgramBinary_34926() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES30.All _binaryFormat = default(OpenTK.Graphics.ES30.All); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.Oes.ProgramBinary(_program,_binaryFormat,_binary,_length); -} -static unsafe void Test_ProgramBinary_34927() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES30.All _binaryFormat = default(OpenTK.Graphics.ES30.All); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.Oes.ProgramBinary(_program,_binaryFormat,_binary,_length); -} -static unsafe void Test_ProgramBinary_34928() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES30.All _binaryFormat = default(OpenTK.Graphics.ES30.All); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.Oes.ProgramBinary(_program,_binaryFormat,ref _binary,_length); -} -static unsafe void Test_TexImage3D_34929() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.Oes.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_34930() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[] _pixels = default(int[]); - OpenTK.Graphics.ES30.GL.Oes.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_34931() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.ES30.GL.Oes.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_34932() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.ES30.GL.Oes.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_34933() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int _pixels = default(int); - OpenTK.Graphics.ES30.GL.Oes.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,ref _pixels); -} -static unsafe void Test_TexImage3D_34934() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.TextureComponentCount _internalformat = default(OpenTK.Graphics.ES30.TextureComponentCount); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES30.PixelFormat _format = default(OpenTK.Graphics.ES30.PixelFormat); - OpenTK.Graphics.ES30.PixelType _type = default(OpenTK.Graphics.ES30.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.Oes.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_34935() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.TextureComponentCount _internalformat = default(OpenTK.Graphics.ES30.TextureComponentCount); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES30.PixelFormat _format = default(OpenTK.Graphics.ES30.PixelFormat); - OpenTK.Graphics.ES30.PixelType _type = default(OpenTK.Graphics.ES30.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.ES30.GL.Oes.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_34936() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.TextureComponentCount _internalformat = default(OpenTK.Graphics.ES30.TextureComponentCount); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES30.PixelFormat _format = default(OpenTK.Graphics.ES30.PixelFormat); - OpenTK.Graphics.ES30.PixelType _type = default(OpenTK.Graphics.ES30.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.ES30.GL.Oes.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_34937() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.TextureComponentCount _internalformat = default(OpenTK.Graphics.ES30.TextureComponentCount); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES30.PixelFormat _format = default(OpenTK.Graphics.ES30.PixelFormat); - OpenTK.Graphics.ES30.PixelType _type = default(OpenTK.Graphics.ES30.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.ES30.GL.Oes.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_34938() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.TextureComponentCount _internalformat = default(OpenTK.Graphics.ES30.TextureComponentCount); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.ES30.PixelFormat _format = default(OpenTK.Graphics.ES30.PixelFormat); - OpenTK.Graphics.ES30.PixelType _type = default(OpenTK.Graphics.ES30.PixelType); - int _pixels = default(int); - OpenTK.Graphics.ES30.GL.Oes.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,ref _pixels); -} -static unsafe void Test_TexStorage3DMultisample_34939() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.ES30.All _internalformat = default(OpenTK.Graphics.ES30.All); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Boolean _fixedsamplelocations = default(System.Boolean); - OpenTK.Graphics.ES30.GL.Oes.TexStorage3DMultisample(_target,_samples,_internalformat,_width,_height,_depth,_fixedsamplelocations); -} -static unsafe void Test_TexSubImage3D_34940() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.Oes.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage3D_34941() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[] _pixels = default(int[]); - OpenTK.Graphics.ES30.GL.Oes.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage3D_34942() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.ES30.GL.Oes.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage3D_34943() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.ES30.GL.Oes.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage3D_34944() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int _pixels = default(int); - OpenTK.Graphics.ES30.GL.Oes.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,ref _pixels); -} -static unsafe void Test_TexSubImage3D_34945() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.Oes.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage3D_34946() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[] _pixels = default(int[]); - OpenTK.Graphics.ES30.GL.Oes.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage3D_34947() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.ES30.GL.Oes.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage3D_34948() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.ES30.GL.Oes.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage3D_34949() { - OpenTK.Graphics.ES30.TextureTarget3d _target = default(OpenTK.Graphics.ES30.TextureTarget3d); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int _pixels = default(int); - OpenTK.Graphics.ES30.GL.Oes.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,ref _pixels); -} -static unsafe void Test_UnmapBuffer_34950() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Boolean r = OpenTK.Graphics.ES30.GL.Oes.UnmapBuffer(_target); -} -static unsafe void Test_UnmapBuffer_34951() { - OpenTK.Graphics.ES30.BufferTarget _target = default(OpenTK.Graphics.ES30.BufferTarget); - System.Boolean r = OpenTK.Graphics.ES30.GL.Oes.UnmapBuffer(_target); -} -static unsafe void Test_AlphaFunc_34952() { - OpenTK.Graphics.ES30.All _func = default(OpenTK.Graphics.ES30.All); - System.Single _ref = default(System.Single); - OpenTK.Graphics.ES30.GL.Qcom.AlphaFunc(_func,_ref); -} -static unsafe void Test_DisableDriverControl_34953() { - System.Int32 _driverControl = default(System.Int32); - OpenTK.Graphics.ES30.GL.Qcom.DisableDriverControl(_driverControl); -} -static unsafe void Test_DisableDriverControl_34954() { - System.UInt32 _driverControl = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Qcom.DisableDriverControl(_driverControl); -} -static unsafe void Test_EnableDriverControl_34955() { - System.Int32 _driverControl = default(System.Int32); - OpenTK.Graphics.ES30.GL.Qcom.EnableDriverControl(_driverControl); -} -static unsafe void Test_EnableDriverControl_34956() { - System.UInt32 _driverControl = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Qcom.EnableDriverControl(_driverControl); -} -static unsafe void Test_EndTiling_34957() { - System.Int32 _preserveMask = default(System.Int32); - OpenTK.Graphics.ES30.GL.Qcom.EndTiling(_preserveMask); -} -static unsafe void Test_EndTiling_34958() { - System.UInt32 _preserveMask = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Qcom.EndTiling(_preserveMask); -} -static unsafe void Test_ExtGetBufferPointer_34959() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.IntPtr _params = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetBufferPointer(_target,_params); -} -static unsafe void Test_ExtGetBufferPointer_34960() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - int[] _params = default(int[]); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetBufferPointer(_target,_params); -} -static unsafe void Test_ExtGetBufferPointer_34961() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - int[,] _params = default(int[,]); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetBufferPointer(_target,_params); -} -static unsafe void Test_ExtGetBufferPointer_34962() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - int[,,] _params = default(int[,,]); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetBufferPointer(_target,_params); -} -static unsafe void Test_ExtGetBufferPointer_34963() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - int _params = default(int); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetBufferPointer(_target,ref _params); -} -static unsafe void Test_ExtGetBuffers_34964() { - System.Int32[] _buffers = default(System.Int32[]); - System.Int32 _maxBuffers = default(System.Int32); - System.Int32[] _numBuffers = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetBuffers(_buffers,_maxBuffers,_numBuffers); -} -static unsafe void Test_ExtGetBuffers_34965() { - System.Int32[] _buffers = default(System.Int32[]); - System.Int32 _maxBuffers = default(System.Int32); - System.Int32 _numBuffers = default(System.Int32); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetBuffers(_buffers,_maxBuffers,out _numBuffers); -} -static unsafe void Test_ExtGetBuffers_34966() { - System.Int32 _buffers = default(System.Int32); - System.Int32 _maxBuffers = default(System.Int32); - System.Int32 _numBuffers = default(System.Int32); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetBuffers(out _buffers,_maxBuffers,out _numBuffers); -} -static unsafe void Test_ExtGetBuffers_34967() { - System.Int32* _buffers = default(System.Int32*); - System.Int32 _maxBuffers = default(System.Int32); - System.Int32* _numBuffers = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetBuffers(_buffers,_maxBuffers,_numBuffers); -} -static unsafe void Test_ExtGetBuffers_34968() { - System.UInt32[] _buffers = default(System.UInt32[]); - System.Int32 _maxBuffers = default(System.Int32); - System.Int32[] _numBuffers = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetBuffers(_buffers,_maxBuffers,_numBuffers); -} -static unsafe void Test_ExtGetBuffers_34969() { - System.UInt32[] _buffers = default(System.UInt32[]); - System.Int32 _maxBuffers = default(System.Int32); - System.Int32 _numBuffers = default(System.Int32); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetBuffers(_buffers,_maxBuffers,out _numBuffers); -} -static unsafe void Test_ExtGetBuffers_34970() { - System.UInt32 _buffers = default(System.UInt32); - System.Int32 _maxBuffers = default(System.Int32); - System.Int32 _numBuffers = default(System.Int32); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetBuffers(out _buffers,_maxBuffers,out _numBuffers); -} -static unsafe void Test_ExtGetBuffers_34971() { - System.UInt32* _buffers = default(System.UInt32*); - System.Int32 _maxBuffers = default(System.Int32); - System.Int32* _numBuffers = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetBuffers(_buffers,_maxBuffers,_numBuffers); -} -static unsafe void Test_ExtGetFramebuffers_34972() { - System.Int32[] _framebuffers = default(System.Int32[]); - System.Int32 _maxFramebuffers = default(System.Int32); - System.Int32[] _numFramebuffers = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetFramebuffers(_framebuffers,_maxFramebuffers,_numFramebuffers); -} -static unsafe void Test_ExtGetFramebuffers_34973() { - System.Int32[] _framebuffers = default(System.Int32[]); - System.Int32 _maxFramebuffers = default(System.Int32); - System.Int32 _numFramebuffers = default(System.Int32); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetFramebuffers(_framebuffers,_maxFramebuffers,out _numFramebuffers); -} -static unsafe void Test_ExtGetFramebuffers_34974() { - System.Int32 _framebuffers = default(System.Int32); - System.Int32 _maxFramebuffers = default(System.Int32); - System.Int32 _numFramebuffers = default(System.Int32); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetFramebuffers(out _framebuffers,_maxFramebuffers,out _numFramebuffers); -} -static unsafe void Test_ExtGetFramebuffers_34975() { - System.Int32* _framebuffers = default(System.Int32*); - System.Int32 _maxFramebuffers = default(System.Int32); - System.Int32* _numFramebuffers = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetFramebuffers(_framebuffers,_maxFramebuffers,_numFramebuffers); -} -static unsafe void Test_ExtGetFramebuffers_34976() { - System.UInt32[] _framebuffers = default(System.UInt32[]); - System.Int32 _maxFramebuffers = default(System.Int32); - System.Int32[] _numFramebuffers = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetFramebuffers(_framebuffers,_maxFramebuffers,_numFramebuffers); -} -static unsafe void Test_ExtGetFramebuffers_34977() { - System.UInt32[] _framebuffers = default(System.UInt32[]); - System.Int32 _maxFramebuffers = default(System.Int32); - System.Int32 _numFramebuffers = default(System.Int32); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetFramebuffers(_framebuffers,_maxFramebuffers,out _numFramebuffers); -} -static unsafe void Test_ExtGetFramebuffers_34978() { - System.UInt32 _framebuffers = default(System.UInt32); - System.Int32 _maxFramebuffers = default(System.Int32); - System.Int32 _numFramebuffers = default(System.Int32); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetFramebuffers(out _framebuffers,_maxFramebuffers,out _numFramebuffers); -} -static unsafe void Test_ExtGetFramebuffers_34979() { - System.UInt32* _framebuffers = default(System.UInt32*); - System.Int32 _maxFramebuffers = default(System.Int32); - System.Int32* _numFramebuffers = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetFramebuffers(_framebuffers,_maxFramebuffers,_numFramebuffers); -} -static unsafe void Test_ExtGetProgramBinarySource_34980() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES30.All _shadertype = default(OpenTK.Graphics.ES30.All); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - System.Int32[] _length = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetProgramBinarySource(_program,_shadertype,_source,_length); -} -static unsafe void Test_ExtGetProgramBinarySource_34981() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES30.All _shadertype = default(OpenTK.Graphics.ES30.All); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetProgramBinarySource(_program,_shadertype,_source,out _length); -} -static unsafe void Test_ExtGetProgramBinarySource_34982() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.ES30.All _shadertype = default(OpenTK.Graphics.ES30.All); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetProgramBinarySource(_program,_shadertype,_source,_length); -} -static unsafe void Test_ExtGetProgramBinarySource_34983() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES30.All _shadertype = default(OpenTK.Graphics.ES30.All); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - System.Int32[] _length = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetProgramBinarySource(_program,_shadertype,_source,_length); -} -static unsafe void Test_ExtGetProgramBinarySource_34984() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES30.All _shadertype = default(OpenTK.Graphics.ES30.All); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetProgramBinarySource(_program,_shadertype,_source,out _length); -} -static unsafe void Test_ExtGetProgramBinarySource_34985() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.ES30.All _shadertype = default(OpenTK.Graphics.ES30.All); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetProgramBinarySource(_program,_shadertype,_source,_length); -} -static unsafe void Test_ExtGetProgram_34986() { - System.Int32[] _programs = default(System.Int32[]); - System.Int32 _maxPrograms = default(System.Int32); - System.Int32[] _numPrograms = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetProgram(_programs,_maxPrograms,_numPrograms); -} -static unsafe void Test_ExtGetProgram_34987() { - System.Int32[] _programs = default(System.Int32[]); - System.Int32 _maxPrograms = default(System.Int32); - System.Int32 _numPrograms = default(System.Int32); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetProgram(_programs,_maxPrograms,out _numPrograms); -} -static unsafe void Test_ExtGetProgram_34988() { - System.Int32 _programs = default(System.Int32); - System.Int32 _maxPrograms = default(System.Int32); - System.Int32 _numPrograms = default(System.Int32); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetProgram(out _programs,_maxPrograms,out _numPrograms); -} -static unsafe void Test_ExtGetProgram_34989() { - System.Int32* _programs = default(System.Int32*); - System.Int32 _maxPrograms = default(System.Int32); - System.Int32* _numPrograms = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetProgram(_programs,_maxPrograms,_numPrograms); -} -static unsafe void Test_ExtGetProgram_34990() { - System.UInt32[] _programs = default(System.UInt32[]); - System.Int32 _maxPrograms = default(System.Int32); - System.Int32[] _numPrograms = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetProgram(_programs,_maxPrograms,_numPrograms); -} -static unsafe void Test_ExtGetProgram_34991() { - System.UInt32[] _programs = default(System.UInt32[]); - System.Int32 _maxPrograms = default(System.Int32); - System.Int32 _numPrograms = default(System.Int32); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetProgram(_programs,_maxPrograms,out _numPrograms); -} -static unsafe void Test_ExtGetProgram_34992() { - System.UInt32 _programs = default(System.UInt32); - System.Int32 _maxPrograms = default(System.Int32); - System.Int32 _numPrograms = default(System.Int32); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetProgram(out _programs,_maxPrograms,out _numPrograms); -} -static unsafe void Test_ExtGetProgram_34993() { - System.UInt32* _programs = default(System.UInt32*); - System.Int32 _maxPrograms = default(System.Int32); - System.Int32* _numPrograms = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetProgram(_programs,_maxPrograms,_numPrograms); -} -static unsafe void Test_ExtGetRenderbuffers_34994() { - System.Int32[] _renderbuffers = default(System.Int32[]); - System.Int32 _maxRenderbuffers = default(System.Int32); - System.Int32[] _numRenderbuffers = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetRenderbuffers(_renderbuffers,_maxRenderbuffers,_numRenderbuffers); -} -static unsafe void Test_ExtGetRenderbuffers_34995() { - System.Int32[] _renderbuffers = default(System.Int32[]); - System.Int32 _maxRenderbuffers = default(System.Int32); - System.Int32 _numRenderbuffers = default(System.Int32); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetRenderbuffers(_renderbuffers,_maxRenderbuffers,out _numRenderbuffers); -} -static unsafe void Test_ExtGetRenderbuffers_34996() { - System.Int32 _renderbuffers = default(System.Int32); - System.Int32 _maxRenderbuffers = default(System.Int32); - System.Int32 _numRenderbuffers = default(System.Int32); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetRenderbuffers(out _renderbuffers,_maxRenderbuffers,out _numRenderbuffers); -} -static unsafe void Test_ExtGetRenderbuffers_34997() { - System.Int32* _renderbuffers = default(System.Int32*); - System.Int32 _maxRenderbuffers = default(System.Int32); - System.Int32* _numRenderbuffers = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetRenderbuffers(_renderbuffers,_maxRenderbuffers,_numRenderbuffers); -} -static unsafe void Test_ExtGetRenderbuffers_34998() { - System.UInt32[] _renderbuffers = default(System.UInt32[]); - System.Int32 _maxRenderbuffers = default(System.Int32); - System.Int32[] _numRenderbuffers = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetRenderbuffers(_renderbuffers,_maxRenderbuffers,_numRenderbuffers); -} -static unsafe void Test_ExtGetRenderbuffers_34999() { - System.UInt32[] _renderbuffers = default(System.UInt32[]); - System.Int32 _maxRenderbuffers = default(System.Int32); - System.Int32 _numRenderbuffers = default(System.Int32); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetRenderbuffers(_renderbuffers,_maxRenderbuffers,out _numRenderbuffers); -} -static unsafe void Test_ExtGetRenderbuffers_35000() { - System.UInt32 _renderbuffers = default(System.UInt32); - System.Int32 _maxRenderbuffers = default(System.Int32); - System.Int32 _numRenderbuffers = default(System.Int32); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetRenderbuffers(out _renderbuffers,_maxRenderbuffers,out _numRenderbuffers); -} -static unsafe void Test_ExtGetRenderbuffers_35001() { - System.UInt32* _renderbuffers = default(System.UInt32*); - System.Int32 _maxRenderbuffers = default(System.Int32); - System.Int32* _numRenderbuffers = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetRenderbuffers(_renderbuffers,_maxRenderbuffers,_numRenderbuffers); -} -static unsafe void Test_ExtGetShaders_35002() { - System.Int32[] _shaders = default(System.Int32[]); - System.Int32 _maxShaders = default(System.Int32); - System.Int32[] _numShaders = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetShaders(_shaders,_maxShaders,_numShaders); -} -static unsafe void Test_ExtGetShaders_35003() { - System.Int32[] _shaders = default(System.Int32[]); - System.Int32 _maxShaders = default(System.Int32); - System.Int32 _numShaders = default(System.Int32); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetShaders(_shaders,_maxShaders,out _numShaders); -} -static unsafe void Test_ExtGetShaders_35004() { - System.Int32 _shaders = default(System.Int32); - System.Int32 _maxShaders = default(System.Int32); - System.Int32 _numShaders = default(System.Int32); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetShaders(out _shaders,_maxShaders,out _numShaders); -} -static unsafe void Test_ExtGetShaders_35005() { - System.Int32* _shaders = default(System.Int32*); - System.Int32 _maxShaders = default(System.Int32); - System.Int32* _numShaders = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetShaders(_shaders,_maxShaders,_numShaders); -} -static unsafe void Test_ExtGetShaders_35006() { - System.UInt32[] _shaders = default(System.UInt32[]); - System.Int32 _maxShaders = default(System.Int32); - System.Int32[] _numShaders = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetShaders(_shaders,_maxShaders,_numShaders); -} -static unsafe void Test_ExtGetShaders_35007() { - System.UInt32[] _shaders = default(System.UInt32[]); - System.Int32 _maxShaders = default(System.Int32); - System.Int32 _numShaders = default(System.Int32); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetShaders(_shaders,_maxShaders,out _numShaders); -} -static unsafe void Test_ExtGetShaders_35008() { - System.UInt32 _shaders = default(System.UInt32); - System.Int32 _maxShaders = default(System.Int32); - System.Int32 _numShaders = default(System.Int32); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetShaders(out _shaders,_maxShaders,out _numShaders); -} -static unsafe void Test_ExtGetShaders_35009() { - System.UInt32* _shaders = default(System.UInt32*); - System.Int32 _maxShaders = default(System.Int32); - System.Int32* _numShaders = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetShaders(_shaders,_maxShaders,_numShaders); -} -static unsafe void Test_ExtGetTexLevelParameter_35010() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.ES30.All _face = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetTexLevelParameter(_texture,_face,_level,_pname,_params); -} -static unsafe void Test_ExtGetTexLevelParameter_35011() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.ES30.All _face = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetTexLevelParameter(_texture,_face,_level,_pname,out _params); -} -static unsafe void Test_ExtGetTexLevelParameter_35012() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.ES30.All _face = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetTexLevelParameter(_texture,_face,_level,_pname,_params); -} -static unsafe void Test_ExtGetTexLevelParameter_35013() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.ES30.All _face = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetTexLevelParameter(_texture,_face,_level,_pname,_params); -} -static unsafe void Test_ExtGetTexLevelParameter_35014() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.ES30.All _face = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetTexLevelParameter(_texture,_face,_level,_pname,out _params); -} -static unsafe void Test_ExtGetTexLevelParameter_35015() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.ES30.All _face = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetTexLevelParameter(_texture,_face,_level,_pname,_params); -} -static unsafe void Test_ExtGetTexSubImage_35016() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - System.IntPtr _texels = default(System.IntPtr); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetTexSubImage(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_texels); -} -static unsafe void Test_ExtGetTexSubImage_35017() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[] _texels = default(int[]); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetTexSubImage(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_texels); -} -static unsafe void Test_ExtGetTexSubImage_35018() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[,] _texels = default(int[,]); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetTexSubImage(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_texels); -} -static unsafe void Test_ExtGetTexSubImage_35019() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int[,,] _texels = default(int[,,]); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetTexSubImage(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_texels); -} -static unsafe void Test_ExtGetTexSubImage_35020() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.ES30.All _format = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _type = default(OpenTK.Graphics.ES30.All); - int _texels = default(int); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetTexSubImage(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,ref _texels); -} -static unsafe void Test_ExtGetTextures_35021() { - System.Int32[] _textures = default(System.Int32[]); - System.Int32 _maxTextures = default(System.Int32); - System.Int32[] _numTextures = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetTextures(_textures,_maxTextures,_numTextures); -} -static unsafe void Test_ExtGetTextures_35022() { - System.Int32 _textures = default(System.Int32); - System.Int32 _maxTextures = default(System.Int32); - System.Int32 _numTextures = default(System.Int32); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetTextures(out _textures,_maxTextures,out _numTextures); -} -static unsafe void Test_ExtGetTextures_35023() { - System.Int32* _textures = default(System.Int32*); - System.Int32 _maxTextures = default(System.Int32); - System.Int32* _numTextures = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetTextures(_textures,_maxTextures,_numTextures); -} -static unsafe void Test_ExtGetTextures_35024() { - System.UInt32[] _textures = default(System.UInt32[]); - System.Int32 _maxTextures = default(System.Int32); - System.Int32[] _numTextures = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetTextures(_textures,_maxTextures,_numTextures); -} -static unsafe void Test_ExtGetTextures_35025() { - System.UInt32 _textures = default(System.UInt32); - System.Int32 _maxTextures = default(System.Int32); - System.Int32 _numTextures = default(System.Int32); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetTextures(out _textures,_maxTextures,out _numTextures); -} -static unsafe void Test_ExtGetTextures_35026() { - System.UInt32* _textures = default(System.UInt32*); - System.Int32 _maxTextures = default(System.Int32); - System.Int32* _numTextures = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Qcom.ExtGetTextures(_textures,_maxTextures,_numTextures); -} -static unsafe void Test_ExtIsProgramBinary_35027() { - System.Int32 _program = default(System.Int32); - System.Boolean r = OpenTK.Graphics.ES30.GL.Qcom.ExtIsProgramBinary(_program); -} -static unsafe void Test_ExtIsProgramBinary_35028() { - System.UInt32 _program = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.ES30.GL.Qcom.ExtIsProgramBinary(_program); -} -static unsafe void Test_ExtTexObjectStateOverride_35029() { - OpenTK.Graphics.ES30.All _target = default(OpenTK.Graphics.ES30.All); - OpenTK.Graphics.ES30.All _pname = default(OpenTK.Graphics.ES30.All); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.ES30.GL.Qcom.ExtTexObjectStateOverride(_target,_pname,_param); -} -static unsafe void Test_GetDriverControl_35030() { - System.Int32[] _num = default(System.Int32[]); - System.Int32 _size = default(System.Int32); - System.Int32[] _driverControls = default(System.Int32[]); - OpenTK.Graphics.ES30.GL.Qcom.GetDriverControl(_num,_size,_driverControls); -} -static unsafe void Test_GetDriverControl_35031() { - System.Int32[] _num = default(System.Int32[]); - System.Int32 _size = default(System.Int32); - System.UInt32[] _driverControls = default(System.UInt32[]); - OpenTK.Graphics.ES30.GL.Qcom.GetDriverControl(_num,_size,_driverControls); -} -static unsafe void Test_GetDriverControl_35032() { - System.Int32 _num = default(System.Int32); - System.Int32 _size = default(System.Int32); - System.Int32 _driverControls = default(System.Int32); - OpenTK.Graphics.ES30.GL.Qcom.GetDriverControl(out _num,_size,out _driverControls); -} -static unsafe void Test_GetDriverControl_35033() { - System.Int32 _num = default(System.Int32); - System.Int32 _size = default(System.Int32); - System.UInt32 _driverControls = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Qcom.GetDriverControl(out _num,_size,out _driverControls); -} -static unsafe void Test_GetDriverControl_35034() { - System.Int32* _num = default(System.Int32*); - System.Int32 _size = default(System.Int32); - System.Int32* _driverControls = default(System.Int32*); - OpenTK.Graphics.ES30.GL.Qcom.GetDriverControl(_num,_size,_driverControls); -} -static unsafe void Test_GetDriverControl_35035() { - System.Int32* _num = default(System.Int32*); - System.Int32 _size = default(System.Int32); - System.UInt32* _driverControls = default(System.UInt32*); - OpenTK.Graphics.ES30.GL.Qcom.GetDriverControl(_num,_size,_driverControls); -} -static unsafe void Test_GetDriverControlString_35036() { - System.Int32 _driverControl = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _driverControlString = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Qcom.GetDriverControlString(_driverControl,_bufSize,_length,_driverControlString); -} -static unsafe void Test_GetDriverControlString_35037() { - System.Int32 _driverControl = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _driverControlString = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Qcom.GetDriverControlString(_driverControl,_bufSize,out _length,_driverControlString); -} -static unsafe void Test_GetDriverControlString_35038() { - System.Int32 _driverControl = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _driverControlString = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Qcom.GetDriverControlString(_driverControl,_bufSize,_length,_driverControlString); -} -static unsafe void Test_GetDriverControlString_35039() { - System.UInt32 _driverControl = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _driverControlString = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Qcom.GetDriverControlString(_driverControl,_bufSize,_length,_driverControlString); -} -static unsafe void Test_GetDriverControlString_35040() { - System.UInt32 _driverControl = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _driverControlString = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Qcom.GetDriverControlString(_driverControl,_bufSize,out _length,_driverControlString); -} -static unsafe void Test_GetDriverControlString_35041() { - System.UInt32 _driverControl = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _driverControlString = default(System.Text.StringBuilder); - OpenTK.Graphics.ES30.GL.Qcom.GetDriverControlString(_driverControl,_bufSize,_length,_driverControlString); -} -static unsafe void Test_StartTiling_35042() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _preserveMask = default(System.Int32); - OpenTK.Graphics.ES30.GL.Qcom.StartTiling(_x,_y,_width,_height,_preserveMask); -} -static unsafe void Test_StartTiling_35043() { - System.UInt32 _x = default(System.UInt32); - System.UInt32 _y = default(System.UInt32); - System.UInt32 _width = default(System.UInt32); - System.UInt32 _height = default(System.UInt32); - System.UInt32 _preserveMask = default(System.UInt32); - OpenTK.Graphics.ES30.GL.Qcom.StartTiling(_x,_y,_width,_height,_preserveMask); -} - -static unsafe void Test_Invoke_35045() { - OpenTK.Graphics.ES30.DebugSource _source = default(OpenTK.Graphics.ES30.DebugSource); - OpenTK.Graphics.ES30.DebugType _type = default(OpenTK.Graphics.ES30.DebugType); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES30.DebugSeverity _severity = default(OpenTK.Graphics.ES30.DebugSeverity); - System.Int32 _length = default(System.Int32); - System.IntPtr _message = default(System.IntPtr); - System.IntPtr _userParam = default(System.IntPtr); - default(OpenTK.Graphics.ES30.DebugProc).Invoke(_source,_type,_id,_severity,_length,_message,_userParam); -} -static unsafe void Test_BeginInvoke_35046() { - OpenTK.Graphics.ES30.DebugSource _source = default(OpenTK.Graphics.ES30.DebugSource); - OpenTK.Graphics.ES30.DebugType _type = default(OpenTK.Graphics.ES30.DebugType); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES30.DebugSeverity _severity = default(OpenTK.Graphics.ES30.DebugSeverity); - System.Int32 _length = default(System.Int32); - System.IntPtr _message = default(System.IntPtr); - System.IntPtr _userParam = default(System.IntPtr); - System.AsyncCallback _callback = default(System.AsyncCallback); - System.Object _object = default(System.Object); - System.IAsyncResult r = default(OpenTK.Graphics.ES30.DebugProc).BeginInvoke(_source,_type,_id,_severity,_length,_message,_userParam,_callback,_object); -} -static unsafe void Test_EndInvoke_35047() { - System.IAsyncResult _result = default(System.IAsyncResult); - default(OpenTK.Graphics.ES30.DebugProc).EndInvoke(_result); -} - -static unsafe void Test_Invoke_35049() { - OpenTK.Graphics.ES30.DebugSource _source = default(OpenTK.Graphics.ES30.DebugSource); - OpenTK.Graphics.ES30.DebugType _type = default(OpenTK.Graphics.ES30.DebugType); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES30.DebugSeverity _severity = default(OpenTK.Graphics.ES30.DebugSeverity); - System.Int32 _length = default(System.Int32); - System.IntPtr _message = default(System.IntPtr); - System.IntPtr _userParam = default(System.IntPtr); - default(OpenTK.Graphics.ES30.DebugProcKhr).Invoke(_source,_type,_id,_severity,_length,_message,_userParam); -} -static unsafe void Test_BeginInvoke_35050() { - OpenTK.Graphics.ES30.DebugSource _source = default(OpenTK.Graphics.ES30.DebugSource); - OpenTK.Graphics.ES30.DebugType _type = default(OpenTK.Graphics.ES30.DebugType); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.ES30.DebugSeverity _severity = default(OpenTK.Graphics.ES30.DebugSeverity); - System.Int32 _length = default(System.Int32); - System.IntPtr _message = default(System.IntPtr); - System.IntPtr _userParam = default(System.IntPtr); - System.AsyncCallback _callback = default(System.AsyncCallback); - System.Object _object = default(System.Object); - System.IAsyncResult r = default(OpenTK.Graphics.ES30.DebugProcKhr).BeginInvoke(_source,_type,_id,_severity,_length,_message,_userParam,_callback,_object); -} -static unsafe void Test_EndInvoke_35051() { - System.IAsyncResult _result = default(System.IAsyncResult); - default(OpenTK.Graphics.ES30.DebugProcKhr).EndInvoke(_result); -} - -static unsafe void Test_ClearColor_35053() { - System.Drawing.Color _color = default(System.Drawing.Color); - OpenTK.Graphics.OpenGL4.GL.ClearColor(_color); -} -static unsafe void Test_ClearColor_35054() { - OpenTK.Graphics.Color4 _color = default(OpenTK.Graphics.Color4); - OpenTK.Graphics.OpenGL4.GL.ClearColor(_color); -} -static unsafe void Test_BlendColor_35055() { - System.Drawing.Color _color = default(System.Drawing.Color); - OpenTK.Graphics.OpenGL4.GL.BlendColor(_color); -} -static unsafe void Test_BlendColor_35056() { - OpenTK.Graphics.Color4 _color = default(OpenTK.Graphics.Color4); - OpenTK.Graphics.OpenGL4.GL.BlendColor(_color); -} -static unsafe void Test_Uniform2_35057() { - System.Int32 _location = default(System.Int32); - OpenTK.Vector2 _vector = default(OpenTK.Vector2); - OpenTK.Graphics.OpenGL4.GL.Uniform2(_location,ref _vector); -} -static unsafe void Test_Uniform3_35058() { - System.Int32 _location = default(System.Int32); - OpenTK.Vector3 _vector = default(OpenTK.Vector3); - OpenTK.Graphics.OpenGL4.GL.Uniform3(_location,ref _vector); -} -static unsafe void Test_Uniform4_35059() { - System.Int32 _location = default(System.Int32); - OpenTK.Vector4 _vector = default(OpenTK.Vector4); - OpenTK.Graphics.OpenGL4.GL.Uniform4(_location,ref _vector); -} -static unsafe void Test_Uniform2_35060() { - System.Int32 _location = default(System.Int32); - OpenTK.Vector2 _vector = default(OpenTK.Vector2); - OpenTK.Graphics.OpenGL4.GL.Uniform2(_location,_vector); -} -static unsafe void Test_Uniform3_35061() { - System.Int32 _location = default(System.Int32); - OpenTK.Vector3 _vector = default(OpenTK.Vector3); - OpenTK.Graphics.OpenGL4.GL.Uniform3(_location,_vector); -} -static unsafe void Test_Uniform4_35062() { - System.Int32 _location = default(System.Int32); - OpenTK.Vector4 _vector = default(OpenTK.Vector4); - OpenTK.Graphics.OpenGL4.GL.Uniform4(_location,_vector); -} -static unsafe void Test_Uniform4_35063() { - System.Int32 _location = default(System.Int32); - OpenTK.Graphics.Color4 _color = default(OpenTK.Graphics.Color4); - OpenTK.Graphics.OpenGL4.GL.Uniform4(_location,_color); -} -static unsafe void Test_Uniform4_35064() { - System.Int32 _location = default(System.Int32); - OpenTK.Quaternion _quaternion = default(OpenTK.Quaternion); - OpenTK.Graphics.OpenGL4.GL.Uniform4(_location,_quaternion); -} -static unsafe void Test_UniformMatrix2_35065() { - System.Int32 _location = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - OpenTK.Matrix2 _matrix = default(OpenTK.Matrix2); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix2(_location,_transpose,ref _matrix); -} -static unsafe void Test_UniformMatrix3_35066() { - System.Int32 _location = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - OpenTK.Matrix3 _matrix = default(OpenTK.Matrix3); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix3(_location,_transpose,ref _matrix); -} -static unsafe void Test_UniformMatrix4_35067() { - System.Int32 _location = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - OpenTK.Matrix4 _matrix = default(OpenTK.Matrix4); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix4(_location,_transpose,ref _matrix); -} -static unsafe void Test_GetActiveAttrib_35068() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.ActiveAttribType _type = default(OpenTK.Graphics.OpenGL4.ActiveAttribType); - System.String r = OpenTK.Graphics.OpenGL4.GL.GetActiveAttrib(_program,_index,out _size,out _type); -} -static unsafe void Test_GetActiveUniform_35069() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformIndex = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.ActiveUniformType _type = default(OpenTK.Graphics.OpenGL4.ActiveUniformType); - System.String r = OpenTK.Graphics.OpenGL4.GL.GetActiveUniform(_program,_uniformIndex,out _size,out _type); -} -static unsafe void Test_ShaderSource_35070() { - System.Int32 _shader = default(System.Int32); - System.String _string = default(System.String); - OpenTK.Graphics.OpenGL4.GL.ShaderSource(_shader,_string); -} -static unsafe void Test_GetShaderInfoLog_35071() { - System.Int32 _shader = default(System.Int32); - System.String r = OpenTK.Graphics.OpenGL4.GL.GetShaderInfoLog(_shader); -} -static unsafe void Test_GetShaderInfoLog_35072() { - System.Int32 _shader = default(System.Int32); - System.String _info = default(System.String); - OpenTK.Graphics.OpenGL4.GL.GetShaderInfoLog(_shader,out _info); -} -static unsafe void Test_GetProgramInfoLog_35073() { - System.Int32 _program = default(System.Int32); - System.String r = OpenTK.Graphics.OpenGL4.GL.GetProgramInfoLog(_program); -} -static unsafe void Test_GetProgramInfoLog_35074() { - System.Int32 _program = default(System.Int32); - System.String _info = default(System.String); - OpenTK.Graphics.OpenGL4.GL.GetProgramInfoLog(_program,out _info); -} -static unsafe void Test_VertexAttrib2_35075() { - System.Int32 _index = default(System.Int32); - OpenTK.Vector2 _v = default(OpenTK.Vector2); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib2(_index,ref _v); -} -static unsafe void Test_VertexAttrib3_35076() { - System.Int32 _index = default(System.Int32); - OpenTK.Vector3 _v = default(OpenTK.Vector3); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib3(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_35077() { - System.Int32 _index = default(System.Int32); - OpenTK.Vector4 _v = default(OpenTK.Vector4); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib2_35078() { - System.Int32 _index = default(System.Int32); - OpenTK.Vector2 _v = default(OpenTK.Vector2); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib3_35079() { - System.Int32 _index = default(System.Int32); - OpenTK.Vector3 _v = default(OpenTK.Vector3); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib4_35080() { - System.Int32 _index = default(System.Int32); - OpenTK.Vector4 _v = default(OpenTK.Vector4); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttribPointer_35081() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribPointerType _type = default(OpenTK.Graphics.OpenGL4.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - System.Int32 _offset = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_offset); -} -static unsafe void Test_VertexAttribPointer_35082() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribPointerType _type = default(OpenTK.Graphics.OpenGL4.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - System.Int32 _offset = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_offset); -} -static unsafe void Test_DrawElements_35083() { - OpenTK.Graphics.OpenGL4.BeginMode _mode = default(OpenTK.Graphics.OpenGL4.BeginMode); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - System.Int32 _offset = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawElements(_mode,_count,_type,_offset); -} -static unsafe void Test_GetFloat_35084() { - OpenTK.Graphics.OpenGL4.GetPName _pname = default(OpenTK.Graphics.OpenGL4.GetPName); - OpenTK.Vector2 _vector = default(OpenTK.Vector2); - OpenTK.Graphics.OpenGL4.GL.GetFloat(_pname,out _vector); -} -static unsafe void Test_GetFloat_35085() { - OpenTK.Graphics.OpenGL4.GetPName _pname = default(OpenTK.Graphics.OpenGL4.GetPName); - OpenTK.Vector3 _vector = default(OpenTK.Vector3); - OpenTK.Graphics.OpenGL4.GL.GetFloat(_pname,out _vector); -} -static unsafe void Test_GetFloat_35086() { - OpenTK.Graphics.OpenGL4.GetPName _pname = default(OpenTK.Graphics.OpenGL4.GetPName); - OpenTK.Vector4 _vector = default(OpenTK.Vector4); - OpenTK.Graphics.OpenGL4.GL.GetFloat(_pname,out _vector); -} -static unsafe void Test_GetFloat_35087() { - OpenTK.Graphics.OpenGL4.GetPName _pname = default(OpenTK.Graphics.OpenGL4.GetPName); - OpenTK.Matrix4 _matrix = default(OpenTK.Matrix4); - OpenTK.Graphics.OpenGL4.GL.GetFloat(_pname,out _matrix); -} -static unsafe void Test_Viewport_35088() { - System.Drawing.Size _size = default(System.Drawing.Size); - OpenTK.Graphics.OpenGL4.GL.Viewport(_size); -} -static unsafe void Test_Viewport_35089() { - System.Drawing.Point _location = default(System.Drawing.Point); - System.Drawing.Size _size = default(System.Drawing.Size); - OpenTK.Graphics.OpenGL4.GL.Viewport(_location,_size); -} -static unsafe void Test_Viewport_35090() { - System.Drawing.Rectangle _rectangle = default(System.Drawing.Rectangle); - OpenTK.Graphics.OpenGL4.GL.Viewport(_rectangle); -} -static unsafe void Test_ActiveShaderProgram_35091() { - System.Int32 _pipeline = default(System.Int32); - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ActiveShaderProgram(_pipeline,_program); -} -static unsafe void Test_ActiveShaderProgram_35092() { - System.UInt32 _pipeline = default(System.UInt32); - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.ActiveShaderProgram(_pipeline,_program); -} -static unsafe void Test_ActiveTexture_35093() { - OpenTK.Graphics.OpenGL4.TextureUnit _texture = default(OpenTK.Graphics.OpenGL4.TextureUnit); - OpenTK.Graphics.OpenGL4.GL.ActiveTexture(_texture); -} -static unsafe void Test_AttachShader_35094() { - System.Int32 _program = default(System.Int32); - System.Int32 _shader = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.AttachShader(_program,_shader); -} -static unsafe void Test_AttachShader_35095() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _shader = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.AttachShader(_program,_shader); -} -static unsafe void Test_BeginConditionalRender_35096() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL4.ConditionalRenderType _mode = default(OpenTK.Graphics.OpenGL4.ConditionalRenderType); - OpenTK.Graphics.OpenGL4.GL.BeginConditionalRender(_id,_mode); -} -static unsafe void Test_BeginConditionalRender_35097() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ConditionalRenderType _mode = default(OpenTK.Graphics.OpenGL4.ConditionalRenderType); - OpenTK.Graphics.OpenGL4.GL.BeginConditionalRender(_id,_mode); -} -static unsafe void Test_BeginQuery_35098() { - OpenTK.Graphics.OpenGL4.QueryTarget _target = default(OpenTK.Graphics.OpenGL4.QueryTarget); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.BeginQuery(_target,_id); -} -static unsafe void Test_BeginQuery_35099() { - OpenTK.Graphics.OpenGL4.QueryTarget _target = default(OpenTK.Graphics.OpenGL4.QueryTarget); - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.BeginQuery(_target,_id); -} -static unsafe void Test_BeginQueryIndexed_35100() { - OpenTK.Graphics.OpenGL4.QueryTarget _target = default(OpenTK.Graphics.OpenGL4.QueryTarget); - System.Int32 _index = default(System.Int32); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.BeginQueryIndexed(_target,_index,_id); -} -static unsafe void Test_BeginQueryIndexed_35101() { - OpenTK.Graphics.OpenGL4.QueryTarget _target = default(OpenTK.Graphics.OpenGL4.QueryTarget); - System.UInt32 _index = default(System.UInt32); - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.BeginQueryIndexed(_target,_index,_id); -} -static unsafe void Test_BeginTransformFeedback_35102() { - OpenTK.Graphics.OpenGL4.TransformFeedbackPrimitiveType _primitiveMode = default(OpenTK.Graphics.OpenGL4.TransformFeedbackPrimitiveType); - OpenTK.Graphics.OpenGL4.GL.BeginTransformFeedback(_primitiveMode); -} -static unsafe void Test_BindAttribLocation_35103() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.String _name = default(System.String); - OpenTK.Graphics.OpenGL4.GL.BindAttribLocation(_program,_index,_name); -} -static unsafe void Test_BindAttribLocation_35104() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.String _name = default(System.String); - OpenTK.Graphics.OpenGL4.GL.BindAttribLocation(_program,_index,_name); -} -static unsafe void Test_BindBuffer_35105() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.BindBuffer(_target,_buffer); -} -static unsafe void Test_BindBuffer_35106() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.BindBuffer(_target,_buffer); -} -static unsafe void Test_BindBufferBase_35107() { - OpenTK.Graphics.OpenGL4.BufferRangeTarget _target = default(OpenTK.Graphics.OpenGL4.BufferRangeTarget); - System.Int32 _index = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.BindBufferBase(_target,_index,_buffer); -} -static unsafe void Test_BindBufferBase_35108() { - OpenTK.Graphics.OpenGL4.BufferRangeTarget _target = default(OpenTK.Graphics.OpenGL4.BufferRangeTarget); - System.UInt32 _index = default(System.UInt32); - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.BindBufferBase(_target,_index,_buffer); -} -static unsafe void Test_BindBufferRange_35109() { - OpenTK.Graphics.OpenGL4.BufferRangeTarget _target = default(OpenTK.Graphics.OpenGL4.BufferRangeTarget); - System.Int32 _index = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.BindBufferRange(_target,_index,_buffer,_offset,_size); -} -static unsafe void Test_BindBufferRange_35110() { - OpenTK.Graphics.OpenGL4.BufferRangeTarget _target = default(OpenTK.Graphics.OpenGL4.BufferRangeTarget); - System.UInt32 _index = default(System.UInt32); - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.BindBufferRange(_target,_index,_buffer,_offset,_size); -} -static unsafe void Test_BindBuffersBase_35111() { - OpenTK.Graphics.OpenGL4.BufferRangeTarget _target = default(OpenTK.Graphics.OpenGL4.BufferRangeTarget); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _buffers = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.BindBuffersBase(_target,_first,_count,_buffers); -} -static unsafe void Test_BindBuffersBase_35112() { - OpenTK.Graphics.OpenGL4.BufferRangeTarget _target = default(OpenTK.Graphics.OpenGL4.BufferRangeTarget); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _buffers = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.BindBuffersBase(_target,_first,_count,ref _buffers); -} -static unsafe void Test_BindBuffersBase_35113() { - OpenTK.Graphics.OpenGL4.BufferRangeTarget _target = default(OpenTK.Graphics.OpenGL4.BufferRangeTarget); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _buffers = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.BindBuffersBase(_target,_first,_count,_buffers); -} -static unsafe void Test_BindBuffersBase_35114() { - OpenTK.Graphics.OpenGL4.BufferRangeTarget _target = default(OpenTK.Graphics.OpenGL4.BufferRangeTarget); - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _buffers = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.BindBuffersBase(_target,_first,_count,_buffers); -} -static unsafe void Test_BindBuffersBase_35115() { - OpenTK.Graphics.OpenGL4.BufferRangeTarget _target = default(OpenTK.Graphics.OpenGL4.BufferRangeTarget); - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32 _buffers = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.BindBuffersBase(_target,_first,_count,ref _buffers); -} -static unsafe void Test_BindBuffersBase_35116() { - OpenTK.Graphics.OpenGL4.BufferRangeTarget _target = default(OpenTK.Graphics.OpenGL4.BufferRangeTarget); - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32* _buffers = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.BindBuffersBase(_target,_first,_count,_buffers); -} -static unsafe void Test_BindBuffersRange_35117() { - OpenTK.Graphics.OpenGL4.BufferRangeTarget _target = default(OpenTK.Graphics.OpenGL4.BufferRangeTarget); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _buffers = default(System.Int32[]); - System.IntPtr[] _offsets = default(System.IntPtr[]); - System.IntPtr[] _sizes = default(System.IntPtr[]); - OpenTK.Graphics.OpenGL4.GL.BindBuffersRange(_target,_first,_count,_buffers,_offsets,_sizes); -} -static unsafe void Test_BindBuffersRange_35118() { - OpenTK.Graphics.OpenGL4.BufferRangeTarget _target = default(OpenTK.Graphics.OpenGL4.BufferRangeTarget); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _buffers = default(System.Int32); - System.IntPtr _offsets = default(System.IntPtr); - System.IntPtr _sizes = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.BindBuffersRange(_target,_first,_count,ref _buffers,ref _offsets,ref _sizes); -} -static unsafe void Test_BindBuffersRange_35119() { - OpenTK.Graphics.OpenGL4.BufferRangeTarget _target = default(OpenTK.Graphics.OpenGL4.BufferRangeTarget); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _buffers = default(System.Int32*); - System.IntPtr* _offsets = default(System.IntPtr*); - System.IntPtr* _sizes = default(System.IntPtr*); - OpenTK.Graphics.OpenGL4.GL.BindBuffersRange(_target,_first,_count,_buffers,_offsets,_sizes); -} -static unsafe void Test_BindBuffersRange_35120() { - OpenTK.Graphics.OpenGL4.BufferRangeTarget _target = default(OpenTK.Graphics.OpenGL4.BufferRangeTarget); - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _buffers = default(System.UInt32[]); - System.IntPtr[] _offsets = default(System.IntPtr[]); - System.IntPtr[] _sizes = default(System.IntPtr[]); - OpenTK.Graphics.OpenGL4.GL.BindBuffersRange(_target,_first,_count,_buffers,_offsets,_sizes); -} -static unsafe void Test_BindBuffersRange_35121() { - OpenTK.Graphics.OpenGL4.BufferRangeTarget _target = default(OpenTK.Graphics.OpenGL4.BufferRangeTarget); - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32 _buffers = default(System.UInt32); - System.IntPtr _offsets = default(System.IntPtr); - System.IntPtr _sizes = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.BindBuffersRange(_target,_first,_count,ref _buffers,ref _offsets,ref _sizes); -} -static unsafe void Test_BindBuffersRange_35122() { - OpenTK.Graphics.OpenGL4.BufferRangeTarget _target = default(OpenTK.Graphics.OpenGL4.BufferRangeTarget); - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32* _buffers = default(System.UInt32*); - System.IntPtr* _offsets = default(System.IntPtr*); - System.IntPtr* _sizes = default(System.IntPtr*); - OpenTK.Graphics.OpenGL4.GL.BindBuffersRange(_target,_first,_count,_buffers,_offsets,_sizes); -} -static unsafe void Test_BindFragDataLocation_35123() { - System.Int32 _program = default(System.Int32); - System.Int32 _color = default(System.Int32); - System.String _name = default(System.String); - OpenTK.Graphics.OpenGL4.GL.BindFragDataLocation(_program,_color,_name); -} -static unsafe void Test_BindFragDataLocation_35124() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _color = default(System.UInt32); - System.String _name = default(System.String); - OpenTK.Graphics.OpenGL4.GL.BindFragDataLocation(_program,_color,_name); -} -static unsafe void Test_BindFragDataLocationIndexed_35125() { - System.Int32 _program = default(System.Int32); - System.Int32 _colorNumber = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.String _name = default(System.String); - OpenTK.Graphics.OpenGL4.GL.BindFragDataLocationIndexed(_program,_colorNumber,_index,_name); -} -static unsafe void Test_BindFragDataLocationIndexed_35126() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _colorNumber = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.String _name = default(System.String); - OpenTK.Graphics.OpenGL4.GL.BindFragDataLocationIndexed(_program,_colorNumber,_index,_name); -} -static unsafe void Test_BindFramebuffer_35127() { - OpenTK.Graphics.OpenGL4.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL4.FramebufferTarget); - System.Int32 _framebuffer = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.BindFramebuffer(_target,_framebuffer); -} -static unsafe void Test_BindFramebuffer_35128() { - OpenTK.Graphics.OpenGL4.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL4.FramebufferTarget); - System.UInt32 _framebuffer = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.BindFramebuffer(_target,_framebuffer); -} -static unsafe void Test_BindImageTexture_35129() { - System.Int32 _unit = default(System.Int32); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - System.Boolean _layered = default(System.Boolean); - System.Int32 _layer = default(System.Int32); - OpenTK.Graphics.OpenGL4.TextureAccess _access = default(OpenTK.Graphics.OpenGL4.TextureAccess); - OpenTK.Graphics.OpenGL4.SizedInternalFormat _format = default(OpenTK.Graphics.OpenGL4.SizedInternalFormat); - OpenTK.Graphics.OpenGL4.GL.BindImageTexture(_unit,_texture,_level,_layered,_layer,_access,_format); -} -static unsafe void Test_BindImageTexture_35130() { - System.UInt32 _unit = default(System.UInt32); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - System.Boolean _layered = default(System.Boolean); - System.Int32 _layer = default(System.Int32); - OpenTK.Graphics.OpenGL4.TextureAccess _access = default(OpenTK.Graphics.OpenGL4.TextureAccess); - OpenTK.Graphics.OpenGL4.SizedInternalFormat _format = default(OpenTK.Graphics.OpenGL4.SizedInternalFormat); - OpenTK.Graphics.OpenGL4.GL.BindImageTexture(_unit,_texture,_level,_layered,_layer,_access,_format); -} -static unsafe void Test_BindImageTextures_35131() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _textures = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.BindImageTextures(_first,_count,_textures); -} -static unsafe void Test_BindImageTextures_35132() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _textures = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.BindImageTextures(_first,_count,ref _textures); -} -static unsafe void Test_BindImageTextures_35133() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _textures = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.BindImageTextures(_first,_count,_textures); -} -static unsafe void Test_BindImageTextures_35134() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _textures = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.BindImageTextures(_first,_count,_textures); -} -static unsafe void Test_BindImageTextures_35135() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32 _textures = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.BindImageTextures(_first,_count,ref _textures); -} -static unsafe void Test_BindImageTextures_35136() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32* _textures = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.BindImageTextures(_first,_count,_textures); -} -static unsafe void Test_BindProgramPipeline_35137() { - System.Int32 _pipeline = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.BindProgramPipeline(_pipeline); -} -static unsafe void Test_BindProgramPipeline_35138() { - System.UInt32 _pipeline = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.BindProgramPipeline(_pipeline); -} -static unsafe void Test_BindRenderbuffer_35139() { - OpenTK.Graphics.OpenGL4.RenderbufferTarget _target = default(OpenTK.Graphics.OpenGL4.RenderbufferTarget); - System.Int32 _renderbuffer = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.BindRenderbuffer(_target,_renderbuffer); -} -static unsafe void Test_BindRenderbuffer_35140() { - OpenTK.Graphics.OpenGL4.RenderbufferTarget _target = default(OpenTK.Graphics.OpenGL4.RenderbufferTarget); - System.UInt32 _renderbuffer = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.BindRenderbuffer(_target,_renderbuffer); -} -static unsafe void Test_BindSampler_35141() { - System.Int32 _unit = default(System.Int32); - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.BindSampler(_unit,_sampler); -} -static unsafe void Test_BindSampler_35142() { - System.UInt32 _unit = default(System.UInt32); - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.BindSampler(_unit,_sampler); -} -static unsafe void Test_BindSamplers_35143() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _samplers = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.BindSamplers(_first,_count,_samplers); -} -static unsafe void Test_BindSamplers_35144() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _samplers = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.BindSamplers(_first,_count,ref _samplers); -} -static unsafe void Test_BindSamplers_35145() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _samplers = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.BindSamplers(_first,_count,_samplers); -} -static unsafe void Test_BindSamplers_35146() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _samplers = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.BindSamplers(_first,_count,_samplers); -} -static unsafe void Test_BindSamplers_35147() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32 _samplers = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.BindSamplers(_first,_count,ref _samplers); -} -static unsafe void Test_BindSamplers_35148() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32* _samplers = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.BindSamplers(_first,_count,_samplers); -} -static unsafe void Test_BindTexture_35149() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.BindTexture(_target,_texture); -} -static unsafe void Test_BindTexture_35150() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.BindTexture(_target,_texture); -} -static unsafe void Test_BindTextures_35151() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _textures = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.BindTextures(_first,_count,_textures); -} -static unsafe void Test_BindTextures_35152() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _textures = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.BindTextures(_first,_count,ref _textures); -} -static unsafe void Test_BindTextures_35153() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _textures = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.BindTextures(_first,_count,_textures); -} -static unsafe void Test_BindTextures_35154() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _textures = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.BindTextures(_first,_count,_textures); -} -static unsafe void Test_BindTextures_35155() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32 _textures = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.BindTextures(_first,_count,ref _textures); -} -static unsafe void Test_BindTextures_35156() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32* _textures = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.BindTextures(_first,_count,_textures); -} -static unsafe void Test_BindTransformFeedback_35157() { - OpenTK.Graphics.OpenGL4.TransformFeedbackTarget _target = default(OpenTK.Graphics.OpenGL4.TransformFeedbackTarget); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.BindTransformFeedback(_target,_id); -} -static unsafe void Test_BindTransformFeedback_35158() { - OpenTK.Graphics.OpenGL4.TransformFeedbackTarget _target = default(OpenTK.Graphics.OpenGL4.TransformFeedbackTarget); - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.BindTransformFeedback(_target,_id); -} -static unsafe void Test_BindVertexArray_35159() { - System.Int32 _array = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.BindVertexArray(_array); -} -static unsafe void Test_BindVertexArray_35160() { - System.UInt32 _array = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.BindVertexArray(_array); -} -static unsafe void Test_BindVertexBuffer_35161() { - System.Int32 _bindingindex = default(System.Int32); - System.Int32 _buffer = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.BindVertexBuffer(_bindingindex,_buffer,_offset,_stride); -} -static unsafe void Test_BindVertexBuffer_35162() { - System.UInt32 _bindingindex = default(System.UInt32); - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr _offset = default(System.IntPtr); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.BindVertexBuffer(_bindingindex,_buffer,_offset,_stride); -} -static unsafe void Test_BindVertexBuffers_35163() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _buffers = default(System.Int32[]); - System.IntPtr[] _offsets = default(System.IntPtr[]); - System.Int32[] _strides = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.BindVertexBuffers(_first,_count,_buffers,_offsets,_strides); -} -static unsafe void Test_BindVertexBuffers_35164() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _buffers = default(System.Int32); - System.IntPtr _offsets = default(System.IntPtr); - System.Int32 _strides = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.BindVertexBuffers(_first,_count,ref _buffers,ref _offsets,ref _strides); -} -static unsafe void Test_BindVertexBuffers_35165() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _buffers = default(System.Int32*); - System.IntPtr* _offsets = default(System.IntPtr*); - System.Int32* _strides = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.BindVertexBuffers(_first,_count,_buffers,_offsets,_strides); -} -static unsafe void Test_BindVertexBuffers_35166() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _buffers = default(System.UInt32[]); - System.IntPtr[] _offsets = default(System.IntPtr[]); - System.Int32[] _strides = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.BindVertexBuffers(_first,_count,_buffers,_offsets,_strides); -} -static unsafe void Test_BindVertexBuffers_35167() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32 _buffers = default(System.UInt32); - System.IntPtr _offsets = default(System.IntPtr); - System.Int32 _strides = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.BindVertexBuffers(_first,_count,ref _buffers,ref _offsets,ref _strides); -} -static unsafe void Test_BindVertexBuffers_35168() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.UInt32* _buffers = default(System.UInt32*); - System.IntPtr* _offsets = default(System.IntPtr*); - System.Int32* _strides = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.BindVertexBuffers(_first,_count,_buffers,_offsets,_strides); -} -static unsafe void Test_BlendColor_35169() { - System.Single _red = default(System.Single); - System.Single _green = default(System.Single); - System.Single _blue = default(System.Single); - System.Single _alpha = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.BlendColor(_red,_green,_blue,_alpha); -} -static unsafe void Test_BlendEquation_35170() { - OpenTK.Graphics.OpenGL4.BlendEquationMode _mode = default(OpenTK.Graphics.OpenGL4.BlendEquationMode); - OpenTK.Graphics.OpenGL4.GL.BlendEquation(_mode); -} -static unsafe void Test_BlendEquation_35171() { - System.Int32 _buf = default(System.Int32); - OpenTK.Graphics.OpenGL4.BlendEquationMode _mode = default(OpenTK.Graphics.OpenGL4.BlendEquationMode); - OpenTK.Graphics.OpenGL4.GL.BlendEquation(_buf,_mode); -} -static unsafe void Test_BlendEquation_35172() { - System.UInt32 _buf = default(System.UInt32); - OpenTK.Graphics.OpenGL4.BlendEquationMode _mode = default(OpenTK.Graphics.OpenGL4.BlendEquationMode); - OpenTK.Graphics.OpenGL4.GL.BlendEquation(_buf,_mode); -} -static unsafe void Test_BlendEquationSeparate_35173() { - OpenTK.Graphics.OpenGL4.BlendEquationMode _modeRGB = default(OpenTK.Graphics.OpenGL4.BlendEquationMode); - OpenTK.Graphics.OpenGL4.BlendEquationMode _modeAlpha = default(OpenTK.Graphics.OpenGL4.BlendEquationMode); - OpenTK.Graphics.OpenGL4.GL.BlendEquationSeparate(_modeRGB,_modeAlpha); -} -static unsafe void Test_BlendEquationSeparate_35174() { - System.Int32 _buf = default(System.Int32); - OpenTK.Graphics.OpenGL4.BlendEquationMode _modeRGB = default(OpenTK.Graphics.OpenGL4.BlendEquationMode); - OpenTK.Graphics.OpenGL4.BlendEquationMode _modeAlpha = default(OpenTK.Graphics.OpenGL4.BlendEquationMode); - OpenTK.Graphics.OpenGL4.GL.BlendEquationSeparate(_buf,_modeRGB,_modeAlpha); -} -static unsafe void Test_BlendEquationSeparate_35175() { - System.UInt32 _buf = default(System.UInt32); - OpenTK.Graphics.OpenGL4.BlendEquationMode _modeRGB = default(OpenTK.Graphics.OpenGL4.BlendEquationMode); - OpenTK.Graphics.OpenGL4.BlendEquationMode _modeAlpha = default(OpenTK.Graphics.OpenGL4.BlendEquationMode); - OpenTK.Graphics.OpenGL4.GL.BlendEquationSeparate(_buf,_modeRGB,_modeAlpha); -} -static unsafe void Test_BlendFunc_35176() { - OpenTK.Graphics.OpenGL4.BlendingFactorSrc _sfactor = default(OpenTK.Graphics.OpenGL4.BlendingFactorSrc); - OpenTK.Graphics.OpenGL4.BlendingFactorDest _dfactor = default(OpenTK.Graphics.OpenGL4.BlendingFactorDest); - OpenTK.Graphics.OpenGL4.GL.BlendFunc(_sfactor,_dfactor); -} -static unsafe void Test_BlendFunc_35177() { - System.Int32 _buf = default(System.Int32); - OpenTK.Graphics.OpenGL4.BlendingFactorSrc _src = default(OpenTK.Graphics.OpenGL4.BlendingFactorSrc); - OpenTK.Graphics.OpenGL4.BlendingFactorDest _dst = default(OpenTK.Graphics.OpenGL4.BlendingFactorDest); - OpenTK.Graphics.OpenGL4.GL.BlendFunc(_buf,_src,_dst); -} -static unsafe void Test_BlendFunc_35178() { - System.UInt32 _buf = default(System.UInt32); - OpenTK.Graphics.OpenGL4.BlendingFactorSrc _src = default(OpenTK.Graphics.OpenGL4.BlendingFactorSrc); - OpenTK.Graphics.OpenGL4.BlendingFactorDest _dst = default(OpenTK.Graphics.OpenGL4.BlendingFactorDest); - OpenTK.Graphics.OpenGL4.GL.BlendFunc(_buf,_src,_dst); -} -static unsafe void Test_BlendFuncSeparate_35179() { - OpenTK.Graphics.OpenGL4.BlendingFactorSrc _sfactorRGB = default(OpenTK.Graphics.OpenGL4.BlendingFactorSrc); - OpenTK.Graphics.OpenGL4.BlendingFactorDest _dfactorRGB = default(OpenTK.Graphics.OpenGL4.BlendingFactorDest); - OpenTK.Graphics.OpenGL4.BlendingFactorSrc _sfactorAlpha = default(OpenTK.Graphics.OpenGL4.BlendingFactorSrc); - OpenTK.Graphics.OpenGL4.BlendingFactorDest _dfactorAlpha = default(OpenTK.Graphics.OpenGL4.BlendingFactorDest); - OpenTK.Graphics.OpenGL4.GL.BlendFuncSeparate(_sfactorRGB,_dfactorRGB,_sfactorAlpha,_dfactorAlpha); -} -static unsafe void Test_BlendFuncSeparate_35180() { - System.Int32 _buf = default(System.Int32); - OpenTK.Graphics.OpenGL4.BlendingFactorSrc _srcRGB = default(OpenTK.Graphics.OpenGL4.BlendingFactorSrc); - OpenTK.Graphics.OpenGL4.BlendingFactorDest _dstRGB = default(OpenTK.Graphics.OpenGL4.BlendingFactorDest); - OpenTK.Graphics.OpenGL4.BlendingFactorSrc _srcAlpha = default(OpenTK.Graphics.OpenGL4.BlendingFactorSrc); - OpenTK.Graphics.OpenGL4.BlendingFactorDest _dstAlpha = default(OpenTK.Graphics.OpenGL4.BlendingFactorDest); - OpenTK.Graphics.OpenGL4.GL.BlendFuncSeparate(_buf,_srcRGB,_dstRGB,_srcAlpha,_dstAlpha); -} -static unsafe void Test_BlendFuncSeparate_35181() { - System.UInt32 _buf = default(System.UInt32); - OpenTK.Graphics.OpenGL4.BlendingFactorSrc _srcRGB = default(OpenTK.Graphics.OpenGL4.BlendingFactorSrc); - OpenTK.Graphics.OpenGL4.BlendingFactorDest _dstRGB = default(OpenTK.Graphics.OpenGL4.BlendingFactorDest); - OpenTK.Graphics.OpenGL4.BlendingFactorSrc _srcAlpha = default(OpenTK.Graphics.OpenGL4.BlendingFactorSrc); - OpenTK.Graphics.OpenGL4.BlendingFactorDest _dstAlpha = default(OpenTK.Graphics.OpenGL4.BlendingFactorDest); - OpenTK.Graphics.OpenGL4.GL.BlendFuncSeparate(_buf,_srcRGB,_dstRGB,_srcAlpha,_dstAlpha); -} -static unsafe void Test_BlitFramebuffer_35182() { - System.Int32 _srcX0 = default(System.Int32); - System.Int32 _srcY0 = default(System.Int32); - System.Int32 _srcX1 = default(System.Int32); - System.Int32 _srcY1 = default(System.Int32); - System.Int32 _dstX0 = default(System.Int32); - System.Int32 _dstY0 = default(System.Int32); - System.Int32 _dstX1 = default(System.Int32); - System.Int32 _dstY1 = default(System.Int32); - OpenTK.Graphics.OpenGL4.ClearBufferMask _mask = default(OpenTK.Graphics.OpenGL4.ClearBufferMask); - OpenTK.Graphics.OpenGL4.BlitFramebufferFilter _filter = default(OpenTK.Graphics.OpenGL4.BlitFramebufferFilter); - OpenTK.Graphics.OpenGL4.GL.BlitFramebuffer(_srcX0,_srcY0,_srcX1,_srcY1,_dstX0,_dstY0,_dstX1,_dstY1,_mask,_filter); -} -static unsafe void Test_BufferData_35183() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - System.IntPtr _size = default(System.IntPtr); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.BufferUsageHint _usage = default(OpenTK.Graphics.OpenGL4.BufferUsageHint); - OpenTK.Graphics.OpenGL4.GL.BufferData(_target,_size,_data,_usage); -} -static unsafe void Test_BufferData_35184() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - System.IntPtr _size = default(System.IntPtr); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL4.BufferUsageHint _usage = default(OpenTK.Graphics.OpenGL4.BufferUsageHint); - OpenTK.Graphics.OpenGL4.GL.BufferData(_target,_size,_data,_usage); -} -static unsafe void Test_BufferData_35185() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - System.IntPtr _size = default(System.IntPtr); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL4.BufferUsageHint _usage = default(OpenTK.Graphics.OpenGL4.BufferUsageHint); - OpenTK.Graphics.OpenGL4.GL.BufferData(_target,_size,_data,_usage); -} -static unsafe void Test_BufferData_35186() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - System.IntPtr _size = default(System.IntPtr); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL4.BufferUsageHint _usage = default(OpenTK.Graphics.OpenGL4.BufferUsageHint); - OpenTK.Graphics.OpenGL4.GL.BufferData(_target,_size,_data,_usage); -} -static unsafe void Test_BufferData_35187() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - System.IntPtr _size = default(System.IntPtr); - int _data = default(int); - OpenTK.Graphics.OpenGL4.BufferUsageHint _usage = default(OpenTK.Graphics.OpenGL4.BufferUsageHint); - OpenTK.Graphics.OpenGL4.GL.BufferData(_target,_size,ref _data,_usage); -} -static unsafe void Test_BufferStorage_35188() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - System.IntPtr _size = default(System.IntPtr); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.BufferStorageFlags _flags = default(OpenTK.Graphics.OpenGL4.BufferStorageFlags); - OpenTK.Graphics.OpenGL4.GL.BufferStorage(_target,_size,_data,_flags); -} -static unsafe void Test_BufferStorage_35189() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - System.IntPtr _size = default(System.IntPtr); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL4.BufferStorageFlags _flags = default(OpenTK.Graphics.OpenGL4.BufferStorageFlags); - OpenTK.Graphics.OpenGL4.GL.BufferStorage(_target,_size,_data,_flags); -} -static unsafe void Test_BufferStorage_35190() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - System.IntPtr _size = default(System.IntPtr); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL4.BufferStorageFlags _flags = default(OpenTK.Graphics.OpenGL4.BufferStorageFlags); - OpenTK.Graphics.OpenGL4.GL.BufferStorage(_target,_size,_data,_flags); -} -static unsafe void Test_BufferStorage_35191() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - System.IntPtr _size = default(System.IntPtr); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL4.BufferStorageFlags _flags = default(OpenTK.Graphics.OpenGL4.BufferStorageFlags); - OpenTK.Graphics.OpenGL4.GL.BufferStorage(_target,_size,_data,_flags); -} -static unsafe void Test_BufferStorage_35192() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - System.IntPtr _size = default(System.IntPtr); - int _data = default(int); - OpenTK.Graphics.OpenGL4.BufferStorageFlags _flags = default(OpenTK.Graphics.OpenGL4.BufferStorageFlags); - OpenTK.Graphics.OpenGL4.GL.BufferStorage(_target,_size,ref _data,_flags); -} -static unsafe void Test_BufferSubData_35193() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.BufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_BufferSubData_35194() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL4.GL.BufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_BufferSubData_35195() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.BufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_BufferSubData_35196() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.BufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_BufferSubData_35197() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int _data = default(int); - OpenTK.Graphics.OpenGL4.GL.BufferSubData(_target,_offset,_size,ref _data); -} -static unsafe void Test_CheckFramebufferStatus_35198() { - OpenTK.Graphics.OpenGL4.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL4.FramebufferTarget); - OpenTK.Graphics.OpenGL4.FramebufferErrorCode r = OpenTK.Graphics.OpenGL4.GL.CheckFramebufferStatus(_target); -} -static unsafe void Test_ClampColor_35199() { - OpenTK.Graphics.OpenGL4.ClampColorTarget _target = default(OpenTK.Graphics.OpenGL4.ClampColorTarget); - OpenTK.Graphics.OpenGL4.ClampColorMode _clamp = default(OpenTK.Graphics.OpenGL4.ClampColorMode); - OpenTK.Graphics.OpenGL4.GL.ClampColor(_target,_clamp); -} -static unsafe void Test_Clear_35200() { - OpenTK.Graphics.OpenGL4.ClearBufferMask _mask = default(OpenTK.Graphics.OpenGL4.ClearBufferMask); - OpenTK.Graphics.OpenGL4.GL.Clear(_mask); -} -static unsafe void Test_ClearBufferData_35201() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.ClearBufferData(_target,_internalformat,_format,_type,_data); -} -static unsafe void Test_ClearBufferData_35202() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL4.GL.ClearBufferData(_target,_internalformat,_format,_type,_data); -} -static unsafe void Test_ClearBufferData_35203() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.ClearBufferData(_target,_internalformat,_format,_type,_data); -} -static unsafe void Test_ClearBufferData_35204() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.ClearBufferData(_target,_internalformat,_format,_type,_data); -} -static unsafe void Test_ClearBufferData_35205() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - int _data = default(int); - OpenTK.Graphics.OpenGL4.GL.ClearBufferData(_target,_internalformat,_format,_type,ref _data); -} -static unsafe void Test_ClearBuffer_35206() { - OpenTK.Graphics.OpenGL4.ClearBufferCombined _buffer = default(OpenTK.Graphics.OpenGL4.ClearBufferCombined); - System.Int32 _drawbuffer = default(System.Int32); - System.Single _depth = default(System.Single); - System.Int32 _stencil = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ClearBuffer(_buffer,_drawbuffer,_depth,_stencil); -} -static unsafe void Test_ClearBuffer_35207() { - OpenTK.Graphics.OpenGL4.ClearBuffer _buffer = default(OpenTK.Graphics.OpenGL4.ClearBuffer); - System.Int32 _drawbuffer = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.ClearBuffer(_buffer,_drawbuffer,_value); -} -static unsafe void Test_ClearBuffer_35208() { - OpenTK.Graphics.OpenGL4.ClearBuffer _buffer = default(OpenTK.Graphics.OpenGL4.ClearBuffer); - System.Int32 _drawbuffer = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ClearBuffer(_buffer,_drawbuffer,ref _value); -} -static unsafe void Test_ClearBuffer_35209() { - OpenTK.Graphics.OpenGL4.ClearBuffer _buffer = default(OpenTK.Graphics.OpenGL4.ClearBuffer); - System.Int32 _drawbuffer = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.ClearBuffer(_buffer,_drawbuffer,_value); -} -static unsafe void Test_ClearBuffer_35210() { - OpenTK.Graphics.OpenGL4.ClearBuffer _buffer = default(OpenTK.Graphics.OpenGL4.ClearBuffer); - System.Int32 _drawbuffer = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.ClearBuffer(_buffer,_drawbuffer,_value); -} -static unsafe void Test_ClearBuffer_35211() { - OpenTK.Graphics.OpenGL4.ClearBuffer _buffer = default(OpenTK.Graphics.OpenGL4.ClearBuffer); - System.Int32 _drawbuffer = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ClearBuffer(_buffer,_drawbuffer,ref _value); -} -static unsafe void Test_ClearBuffer_35212() { - OpenTK.Graphics.OpenGL4.ClearBuffer _buffer = default(OpenTK.Graphics.OpenGL4.ClearBuffer); - System.Int32 _drawbuffer = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.ClearBuffer(_buffer,_drawbuffer,_value); -} -static unsafe void Test_ClearBufferSubData_35213() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.ClearBufferSubData(_target,_internalformat,_offset,_size,_format,_type,_data); -} -static unsafe void Test_ClearBufferSubData_35214() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL4.GL.ClearBufferSubData(_target,_internalformat,_offset,_size,_format,_type,_data); -} -static unsafe void Test_ClearBufferSubData_35215() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.ClearBufferSubData(_target,_internalformat,_offset,_size,_format,_type,_data); -} -static unsafe void Test_ClearBufferSubData_35216() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.ClearBufferSubData(_target,_internalformat,_offset,_size,_format,_type,_data); -} -static unsafe void Test_ClearBufferSubData_35217() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - int _data = default(int); - OpenTK.Graphics.OpenGL4.GL.ClearBufferSubData(_target,_internalformat,_offset,_size,_format,_type,ref _data); -} -static unsafe void Test_ClearBuffer_35218() { - OpenTK.Graphics.OpenGL4.ClearBuffer _buffer = default(OpenTK.Graphics.OpenGL4.ClearBuffer); - System.Int32 _drawbuffer = default(System.Int32); - System.UInt32[] _value = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.ClearBuffer(_buffer,_drawbuffer,_value); -} -static unsafe void Test_ClearBuffer_35219() { - OpenTK.Graphics.OpenGL4.ClearBuffer _buffer = default(OpenTK.Graphics.OpenGL4.ClearBuffer); - System.Int32 _drawbuffer = default(System.Int32); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.ClearBuffer(_buffer,_drawbuffer,ref _value); -} -static unsafe void Test_ClearBuffer_35220() { - OpenTK.Graphics.OpenGL4.ClearBuffer _buffer = default(OpenTK.Graphics.OpenGL4.ClearBuffer); - System.Int32 _drawbuffer = default(System.Int32); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.ClearBuffer(_buffer,_drawbuffer,_value); -} -static unsafe void Test_ClearColor_35221() { - System.Single _red = default(System.Single); - System.Single _green = default(System.Single); - System.Single _blue = default(System.Single); - System.Single _alpha = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ClearColor(_red,_green,_blue,_alpha); -} -static unsafe void Test_ClearDepth_35222() { - System.Double _depth = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.ClearDepth(_depth); -} -static unsafe void Test_ClearDepth_35223() { - System.Single _d = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ClearDepth(_d); -} -static unsafe void Test_ClearStencil_35224() { - System.Int32 _s = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ClearStencil(_s); -} -static unsafe void Test_ClearTexImage_35225() { - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.ClearTexImage(_texture,_level,_format,_type,_data); -} -static unsafe void Test_ClearTexImage_35226() { - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL4.GL.ClearTexImage(_texture,_level,_format,_type,_data); -} -static unsafe void Test_ClearTexImage_35227() { - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.ClearTexImage(_texture,_level,_format,_type,_data); -} -static unsafe void Test_ClearTexImage_35228() { - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.ClearTexImage(_texture,_level,_format,_type,_data); -} -static unsafe void Test_ClearTexImage_35229() { - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int _data = default(int); - OpenTK.Graphics.OpenGL4.GL.ClearTexImage(_texture,_level,_format,_type,ref _data); -} -static unsafe void Test_ClearTexImage_35230() { - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.ClearTexImage(_texture,_level,_format,_type,_data); -} -static unsafe void Test_ClearTexImage_35231() { - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL4.GL.ClearTexImage(_texture,_level,_format,_type,_data); -} -static unsafe void Test_ClearTexImage_35232() { - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.ClearTexImage(_texture,_level,_format,_type,_data); -} -static unsafe void Test_ClearTexImage_35233() { - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.ClearTexImage(_texture,_level,_format,_type,_data); -} -static unsafe void Test_ClearTexImage_35234() { - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int _data = default(int); - OpenTK.Graphics.OpenGL4.GL.ClearTexImage(_texture,_level,_format,_type,ref _data); -} -static unsafe void Test_ClearTexSubImage_35235() { - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.ClearTexSubImage(_texture,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_data); -} -static unsafe void Test_ClearTexSubImage_35236() { - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL4.GL.ClearTexSubImage(_texture,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_data); -} -static unsafe void Test_ClearTexSubImage_35237() { - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.ClearTexSubImage(_texture,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_data); -} -static unsafe void Test_ClearTexSubImage_35238() { - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.ClearTexSubImage(_texture,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_data); -} -static unsafe void Test_ClearTexSubImage_35239() { - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int _data = default(int); - OpenTK.Graphics.OpenGL4.GL.ClearTexSubImage(_texture,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,ref _data); -} -static unsafe void Test_ClearTexSubImage_35240() { - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.ClearTexSubImage(_texture,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_data); -} -static unsafe void Test_ClearTexSubImage_35241() { - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL4.GL.ClearTexSubImage(_texture,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_data); -} -static unsafe void Test_ClearTexSubImage_35242() { - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.ClearTexSubImage(_texture,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_data); -} -static unsafe void Test_ClearTexSubImage_35243() { - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.ClearTexSubImage(_texture,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_data); -} -static unsafe void Test_ClearTexSubImage_35244() { - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int _data = default(int); - OpenTK.Graphics.OpenGL4.GL.ClearTexSubImage(_texture,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,ref _data); -} -static unsafe void Test_ClientWaitSync_35245() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.ClientWaitSyncFlags _flags = default(OpenTK.Graphics.OpenGL4.ClientWaitSyncFlags); - System.Int64 _timeout = default(System.Int64); - OpenTK.Graphics.OpenGL4.WaitSyncStatus r = OpenTK.Graphics.OpenGL4.GL.ClientWaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_ClientWaitSync_35246() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.ClientWaitSyncFlags _flags = default(OpenTK.Graphics.OpenGL4.ClientWaitSyncFlags); - System.UInt64 _timeout = default(System.UInt64); - OpenTK.Graphics.OpenGL4.WaitSyncStatus r = OpenTK.Graphics.OpenGL4.GL.ClientWaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_ColorMask_35247() { - System.Boolean _red = default(System.Boolean); - System.Boolean _green = default(System.Boolean); - System.Boolean _blue = default(System.Boolean); - System.Boolean _alpha = default(System.Boolean); - OpenTK.Graphics.OpenGL4.GL.ColorMask(_red,_green,_blue,_alpha); -} -static unsafe void Test_ColorMask_35248() { - System.Int32 _index = default(System.Int32); - System.Boolean _r = default(System.Boolean); - System.Boolean _g = default(System.Boolean); - System.Boolean _b = default(System.Boolean); - System.Boolean _a = default(System.Boolean); - OpenTK.Graphics.OpenGL4.GL.ColorMask(_index,_r,_g,_b,_a); -} -static unsafe void Test_ColorMask_35249() { - System.UInt32 _index = default(System.UInt32); - System.Boolean _r = default(System.Boolean); - System.Boolean _g = default(System.Boolean); - System.Boolean _b = default(System.Boolean); - System.Boolean _a = default(System.Boolean); - OpenTK.Graphics.OpenGL4.GL.ColorMask(_index,_r,_g,_b,_a); -} -static unsafe void Test_ColorP3_35250() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Int32 _color = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ColorP3(_type,_color); -} -static unsafe void Test_ColorP3_35251() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.UInt32 _color = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.ColorP3(_type,_color); -} -static unsafe void Test_ColorP3_35252() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Int32* _color = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.ColorP3(_type,_color); -} -static unsafe void Test_ColorP3_35253() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.UInt32* _color = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.ColorP3(_type,_color); -} -static unsafe void Test_ColorP4_35254() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Int32 _color = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ColorP4(_type,_color); -} -static unsafe void Test_ColorP4_35255() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.UInt32 _color = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.ColorP4(_type,_color); -} -static unsafe void Test_ColorP4_35256() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Int32* _color = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.ColorP4(_type,_color); -} -static unsafe void Test_ColorP4_35257() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.UInt32* _color = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.ColorP4(_type,_color); -} -static unsafe void Test_ColorSubTable_35258() { - OpenTK.Graphics.OpenGL4.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL4.ColorTableTarget); - System.Int32 _start = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.ColorSubTable(_target,_start,_count,_format,_type,_data); -} -static unsafe void Test_ColorSubTable_35259() { - OpenTK.Graphics.OpenGL4.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL4.ColorTableTarget); - System.Int32 _start = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL4.GL.ColorSubTable(_target,_start,_count,_format,_type,_data); -} -static unsafe void Test_ColorSubTable_35260() { - OpenTK.Graphics.OpenGL4.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL4.ColorTableTarget); - System.Int32 _start = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.ColorSubTable(_target,_start,_count,_format,_type,_data); -} -static unsafe void Test_ColorSubTable_35261() { - OpenTK.Graphics.OpenGL4.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL4.ColorTableTarget); - System.Int32 _start = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.ColorSubTable(_target,_start,_count,_format,_type,_data); -} -static unsafe void Test_ColorSubTable_35262() { - OpenTK.Graphics.OpenGL4.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL4.ColorTableTarget); - System.Int32 _start = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int _data = default(int); - OpenTK.Graphics.OpenGL4.GL.ColorSubTable(_target,_start,_count,_format,_type,ref _data); -} -static unsafe void Test_ColorTable_35263() { - OpenTK.Graphics.OpenGL4.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL4.ColorTableTarget); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - System.IntPtr _table = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.ColorTable(_target,_internalformat,_width,_format,_type,_table); -} -static unsafe void Test_ColorTable_35264() { - OpenTK.Graphics.OpenGL4.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL4.ColorTableTarget); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[] _table = default(int[]); - OpenTK.Graphics.OpenGL4.GL.ColorTable(_target,_internalformat,_width,_format,_type,_table); -} -static unsafe void Test_ColorTable_35265() { - OpenTK.Graphics.OpenGL4.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL4.ColorTableTarget); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,] _table = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.ColorTable(_target,_internalformat,_width,_format,_type,_table); -} -static unsafe void Test_ColorTable_35266() { - OpenTK.Graphics.OpenGL4.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL4.ColorTableTarget); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,,] _table = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.ColorTable(_target,_internalformat,_width,_format,_type,_table); -} -static unsafe void Test_ColorTable_35267() { - OpenTK.Graphics.OpenGL4.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL4.ColorTableTarget); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int _table = default(int); - OpenTK.Graphics.OpenGL4.GL.ColorTable(_target,_internalformat,_width,_format,_type,ref _table); -} -static unsafe void Test_ColorTableParameter_35268() { - OpenTK.Graphics.OpenGL4.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL4.ColorTableTarget); - OpenTK.Graphics.OpenGL4.ColorTableParameterPName _pname = default(OpenTK.Graphics.OpenGL4.ColorTableParameterPName); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.ColorTableParameter(_target,_pname,_params); -} -static unsafe void Test_ColorTableParameter_35269() { - OpenTK.Graphics.OpenGL4.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL4.ColorTableTarget); - OpenTK.Graphics.OpenGL4.ColorTableParameterPName _pname = default(OpenTK.Graphics.OpenGL4.ColorTableParameterPName); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ColorTableParameter(_target,_pname,ref _params); -} -static unsafe void Test_ColorTableParameter_35270() { - OpenTK.Graphics.OpenGL4.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL4.ColorTableTarget); - OpenTK.Graphics.OpenGL4.ColorTableParameterPName _pname = default(OpenTK.Graphics.OpenGL4.ColorTableParameterPName); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.ColorTableParameter(_target,_pname,_params); -} -static unsafe void Test_ColorTableParameter_35271() { - OpenTK.Graphics.OpenGL4.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL4.ColorTableTarget); - OpenTK.Graphics.OpenGL4.ColorTableParameterPName _pname = default(OpenTK.Graphics.OpenGL4.ColorTableParameterPName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.ColorTableParameter(_target,_pname,_params); -} -static unsafe void Test_ColorTableParameter_35272() { - OpenTK.Graphics.OpenGL4.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL4.ColorTableTarget); - OpenTK.Graphics.OpenGL4.ColorTableParameterPName _pname = default(OpenTK.Graphics.OpenGL4.ColorTableParameterPName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ColorTableParameter(_target,_pname,ref _params); -} -static unsafe void Test_ColorTableParameter_35273() { - OpenTK.Graphics.OpenGL4.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL4.ColorTableTarget); - OpenTK.Graphics.OpenGL4.ColorTableParameterPName _pname = default(OpenTK.Graphics.OpenGL4.ColorTableParameterPName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.ColorTableParameter(_target,_pname,_params); -} -static unsafe void Test_CompileShader_35274() { - System.Int32 _shader = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.CompileShader(_shader); -} -static unsafe void Test_CompileShader_35275() { - System.UInt32 _shader = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.CompileShader(_shader); -} -static unsafe void Test_CompressedTexImage1D_35276() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.CompressedTexImage1D(_target,_level,_internalformat,_width,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage1D_35277() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL4.GL.CompressedTexImage1D(_target,_level,_internalformat,_width,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage1D_35278() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.CompressedTexImage1D(_target,_level,_internalformat,_width,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage1D_35279() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.CompressedTexImage1D(_target,_level,_internalformat,_width,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage1D_35280() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.OpenGL4.GL.CompressedTexImage1D(_target,_level,_internalformat,_width,_border,_imageSize,ref _data); -} -static unsafe void Test_CompressedTexImage2D_35281() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_35282() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL4.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_35283() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_35284() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage2D_35285() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.OpenGL4.GL.CompressedTexImage2D(_target,_level,_internalformat,_width,_height,_border,_imageSize,ref _data); -} -static unsafe void Test_CompressedTexImage3D_35286() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage3D_35287() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL4.GL.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage3D_35288() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage3D_35289() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,_data); -} -static unsafe void Test_CompressedTexImage3D_35290() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.OpenGL4.GL.CompressedTexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_imageSize,ref _data); -} -static unsafe void Test_CompressedTexSubImage1D_35291() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.CompressedTexSubImage1D(_target,_level,_xoffset,_width,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage1D_35292() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL4.GL.CompressedTexSubImage1D(_target,_level,_xoffset,_width,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage1D_35293() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.CompressedTexSubImage1D(_target,_level,_xoffset,_width,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage1D_35294() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.CompressedTexSubImage1D(_target,_level,_xoffset,_width,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage1D_35295() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.OpenGL4.GL.CompressedTexSubImage1D(_target,_level,_xoffset,_width,_format,_imageSize,ref _data); -} -static unsafe void Test_CompressedTexSubImage2D_35296() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_35297() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL4.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_35298() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_35299() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage2D_35300() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.OpenGL4.GL.CompressedTexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_imageSize,ref _data); -} -static unsafe void Test_CompressedTexSubImage3D_35301() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage3D_35302() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL4.GL.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage3D_35303() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage3D_35304() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,_data); -} -static unsafe void Test_CompressedTexSubImage3D_35305() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - System.Int32 _imageSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.OpenGL4.GL.CompressedTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_imageSize,ref _data); -} -static unsafe void Test_ConvolutionFilter1D_35306() { - OpenTK.Graphics.OpenGL4.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL4.ConvolutionTarget); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - System.IntPtr _image = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.ConvolutionFilter1D(_target,_internalformat,_width,_format,_type,_image); -} -static unsafe void Test_ConvolutionFilter1D_35307() { - OpenTK.Graphics.OpenGL4.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL4.ConvolutionTarget); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[] _image = default(int[]); - OpenTK.Graphics.OpenGL4.GL.ConvolutionFilter1D(_target,_internalformat,_width,_format,_type,_image); -} -static unsafe void Test_ConvolutionFilter1D_35308() { - OpenTK.Graphics.OpenGL4.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL4.ConvolutionTarget); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,] _image = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.ConvolutionFilter1D(_target,_internalformat,_width,_format,_type,_image); -} -static unsafe void Test_ConvolutionFilter1D_35309() { - OpenTK.Graphics.OpenGL4.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL4.ConvolutionTarget); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,,] _image = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.ConvolutionFilter1D(_target,_internalformat,_width,_format,_type,_image); -} -static unsafe void Test_ConvolutionFilter1D_35310() { - OpenTK.Graphics.OpenGL4.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL4.ConvolutionTarget); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int _image = default(int); - OpenTK.Graphics.OpenGL4.GL.ConvolutionFilter1D(_target,_internalformat,_width,_format,_type,ref _image); -} -static unsafe void Test_ConvolutionFilter2D_35311() { - OpenTK.Graphics.OpenGL4.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL4.ConvolutionTarget); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - System.IntPtr _image = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.ConvolutionFilter2D(_target,_internalformat,_width,_height,_format,_type,_image); -} -static unsafe void Test_ConvolutionFilter2D_35312() { - OpenTK.Graphics.OpenGL4.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL4.ConvolutionTarget); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[] _image = default(int[]); - OpenTK.Graphics.OpenGL4.GL.ConvolutionFilter2D(_target,_internalformat,_width,_height,_format,_type,_image); -} -static unsafe void Test_ConvolutionFilter2D_35313() { - OpenTK.Graphics.OpenGL4.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL4.ConvolutionTarget); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,] _image = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.ConvolutionFilter2D(_target,_internalformat,_width,_height,_format,_type,_image); -} -static unsafe void Test_ConvolutionFilter2D_35314() { - OpenTK.Graphics.OpenGL4.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL4.ConvolutionTarget); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,,] _image = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.ConvolutionFilter2D(_target,_internalformat,_width,_height,_format,_type,_image); -} -static unsafe void Test_ConvolutionFilter2D_35315() { - OpenTK.Graphics.OpenGL4.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL4.ConvolutionTarget); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int _image = default(int); - OpenTK.Graphics.OpenGL4.GL.ConvolutionFilter2D(_target,_internalformat,_width,_height,_format,_type,ref _image); -} -static unsafe void Test_ConvolutionParameter_35316() { - OpenTK.Graphics.OpenGL4.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL4.ConvolutionTarget); - OpenTK.Graphics.OpenGL4.ConvolutionParameter _pname = default(OpenTK.Graphics.OpenGL4.ConvolutionParameter); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ConvolutionParameter(_target,_pname,_params); -} -static unsafe void Test_ConvolutionParameter_35317() { - OpenTK.Graphics.OpenGL4.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL4.ConvolutionTarget); - OpenTK.Graphics.OpenGL4.ConvolutionParameter _pname = default(OpenTK.Graphics.OpenGL4.ConvolutionParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.ConvolutionParameter(_target,_pname,_params); -} -static unsafe void Test_ConvolutionParameter_35318() { - OpenTK.Graphics.OpenGL4.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL4.ConvolutionTarget); - OpenTK.Graphics.OpenGL4.ConvolutionParameter _pname = default(OpenTK.Graphics.OpenGL4.ConvolutionParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.ConvolutionParameter(_target,_pname,_params); -} -static unsafe void Test_ConvolutionParameter_35319() { - OpenTK.Graphics.OpenGL4.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL4.ConvolutionTarget); - OpenTK.Graphics.OpenGL4.ConvolutionParameter _pname = default(OpenTK.Graphics.OpenGL4.ConvolutionParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ConvolutionParameter(_target,_pname,_params); -} -static unsafe void Test_ConvolutionParameter_35320() { - OpenTK.Graphics.OpenGL4.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL4.ConvolutionTarget); - OpenTK.Graphics.OpenGL4.ConvolutionParameter _pname = default(OpenTK.Graphics.OpenGL4.ConvolutionParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.ConvolutionParameter(_target,_pname,_params); -} -static unsafe void Test_ConvolutionParameter_35321() { - OpenTK.Graphics.OpenGL4.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL4.ConvolutionTarget); - OpenTK.Graphics.OpenGL4.ConvolutionParameter _pname = default(OpenTK.Graphics.OpenGL4.ConvolutionParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.ConvolutionParameter(_target,_pname,_params); -} -static unsafe void Test_CopyBufferSubData_35322() { - OpenTK.Graphics.OpenGL4.BufferTarget _readTarget = default(OpenTK.Graphics.OpenGL4.BufferTarget); - OpenTK.Graphics.OpenGL4.BufferTarget _writeTarget = default(OpenTK.Graphics.OpenGL4.BufferTarget); - System.IntPtr _readOffset = default(System.IntPtr); - System.IntPtr _writeOffset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.CopyBufferSubData(_readTarget,_writeTarget,_readOffset,_writeOffset,_size); -} -static unsafe void Test_CopyColorSubTable_35323() { - OpenTK.Graphics.OpenGL4.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL4.ColorTableTarget); - System.Int32 _start = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.CopyColorSubTable(_target,_start,_x,_y,_width); -} -static unsafe void Test_CopyColorTable_35324() { - OpenTK.Graphics.OpenGL4.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL4.ColorTableTarget); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.CopyColorTable(_target,_internalformat,_x,_y,_width); -} -static unsafe void Test_CopyConvolutionFilter1D_35325() { - OpenTK.Graphics.OpenGL4.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL4.ConvolutionTarget); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.CopyConvolutionFilter1D(_target,_internalformat,_x,_y,_width); -} -static unsafe void Test_CopyConvolutionFilter2D_35326() { - OpenTK.Graphics.OpenGL4.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL4.ConvolutionTarget); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.CopyConvolutionFilter2D(_target,_internalformat,_x,_y,_width,_height); -} -static unsafe void Test_CopyImageSubData_35327() { - System.Int32 _srcName = default(System.Int32); - OpenTK.Graphics.OpenGL4.ImageTarget _srcTarget = default(OpenTK.Graphics.OpenGL4.ImageTarget); - System.Int32 _srcLevel = default(System.Int32); - System.Int32 _srcX = default(System.Int32); - System.Int32 _srcY = default(System.Int32); - System.Int32 _srcZ = default(System.Int32); - System.Int32 _dstName = default(System.Int32); - OpenTK.Graphics.OpenGL4.ImageTarget _dstTarget = default(OpenTK.Graphics.OpenGL4.ImageTarget); - System.Int32 _dstLevel = default(System.Int32); - System.Int32 _dstX = default(System.Int32); - System.Int32 _dstY = default(System.Int32); - System.Int32 _dstZ = default(System.Int32); - System.Int32 _srcWidth = default(System.Int32); - System.Int32 _srcHeight = default(System.Int32); - System.Int32 _srcDepth = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.CopyImageSubData(_srcName,_srcTarget,_srcLevel,_srcX,_srcY,_srcZ,_dstName,_dstTarget,_dstLevel,_dstX,_dstY,_dstZ,_srcWidth,_srcHeight,_srcDepth); -} -static unsafe void Test_CopyImageSubData_35328() { - System.UInt32 _srcName = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ImageTarget _srcTarget = default(OpenTK.Graphics.OpenGL4.ImageTarget); - System.Int32 _srcLevel = default(System.Int32); - System.Int32 _srcX = default(System.Int32); - System.Int32 _srcY = default(System.Int32); - System.Int32 _srcZ = default(System.Int32); - System.UInt32 _dstName = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ImageTarget _dstTarget = default(OpenTK.Graphics.OpenGL4.ImageTarget); - System.Int32 _dstLevel = default(System.Int32); - System.Int32 _dstX = default(System.Int32); - System.Int32 _dstY = default(System.Int32); - System.Int32 _dstZ = default(System.Int32); - System.Int32 _srcWidth = default(System.Int32); - System.Int32 _srcHeight = default(System.Int32); - System.Int32 _srcDepth = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.CopyImageSubData(_srcName,_srcTarget,_srcLevel,_srcX,_srcY,_srcZ,_dstName,_dstTarget,_dstLevel,_dstX,_dstY,_dstZ,_srcWidth,_srcHeight,_srcDepth); -} -static unsafe void Test_CopyTexImage1D_35329() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.CopyTexImage1D(_target,_level,_internalformat,_x,_y,_width,_border); -} -static unsafe void Test_CopyTexImage2D_35330() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.CopyTexImage2D(_target,_level,_internalformat,_x,_y,_width,_height,_border); -} -static unsafe void Test_CopyTexSubImage1D_35331() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.CopyTexSubImage1D(_target,_level,_xoffset,_x,_y,_width); -} -static unsafe void Test_CopyTexSubImage2D_35332() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.CopyTexSubImage2D(_target,_level,_xoffset,_yoffset,_x,_y,_width,_height); -} -static unsafe void Test_CopyTexSubImage3D_35333() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.CopyTexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_x,_y,_width,_height); -} -static unsafe void Test_CreateProgram_35334() { - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.CreateProgram(); -} -static unsafe void Test_CreateShader_35335() { - OpenTK.Graphics.OpenGL4.ShaderType _type = default(OpenTK.Graphics.OpenGL4.ShaderType); - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.CreateShader(_type); -} -static unsafe void Test_CreateShaderProgram_35336() { - OpenTK.Graphics.OpenGL4.ShaderType _type = default(OpenTK.Graphics.OpenGL4.ShaderType); - System.Int32 _count = default(System.Int32); - System.String[] _strings = default(System.String[]); - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.CreateShaderProgram(_type,_count,_strings); -} -static unsafe void Test_CullFace_35337() { - OpenTK.Graphics.OpenGL4.CullFaceMode _mode = default(OpenTK.Graphics.OpenGL4.CullFaceMode); - OpenTK.Graphics.OpenGL4.GL.CullFace(_mode); -} -static unsafe void Test_DebugMessageCallback_35338() { - OpenTK.Graphics.OpenGL4.DebugProc _callback = default(OpenTK.Graphics.OpenGL4.DebugProc); - System.IntPtr _userParam = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_35339() { - OpenTK.Graphics.OpenGL4.DebugProc _callback = default(OpenTK.Graphics.OpenGL4.DebugProc); - int[] _userParam = default(int[]); - OpenTK.Graphics.OpenGL4.GL.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_35340() { - OpenTK.Graphics.OpenGL4.DebugProc _callback = default(OpenTK.Graphics.OpenGL4.DebugProc); - int[,] _userParam = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_35341() { - OpenTK.Graphics.OpenGL4.DebugProc _callback = default(OpenTK.Graphics.OpenGL4.DebugProc); - int[,,] _userParam = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_35342() { - OpenTK.Graphics.OpenGL4.DebugProc _callback = default(OpenTK.Graphics.OpenGL4.DebugProc); - int _userParam = default(int); - OpenTK.Graphics.OpenGL4.GL.DebugMessageCallback(_callback,ref _userParam); -} -static unsafe void Test_DebugMessageControl_35343() { - OpenTK.Graphics.OpenGL4.DebugSourceControl _source = default(OpenTK.Graphics.OpenGL4.DebugSourceControl); - OpenTK.Graphics.OpenGL4.DebugTypeControl _type = default(OpenTK.Graphics.OpenGL4.DebugTypeControl); - OpenTK.Graphics.OpenGL4.DebugSeverityControl _severity = default(OpenTK.Graphics.OpenGL4.DebugSeverityControl); - System.Int32 _count = default(System.Int32); - System.Int32[] _ids = default(System.Int32[]); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL4.GL.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_35344() { - OpenTK.Graphics.OpenGL4.DebugSourceControl _source = default(OpenTK.Graphics.OpenGL4.DebugSourceControl); - OpenTK.Graphics.OpenGL4.DebugTypeControl _type = default(OpenTK.Graphics.OpenGL4.DebugTypeControl); - OpenTK.Graphics.OpenGL4.DebugSeverityControl _severity = default(OpenTK.Graphics.OpenGL4.DebugSeverityControl); - System.Int32 _count = default(System.Int32); - System.Int32 _ids = default(System.Int32); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL4.GL.DebugMessageControl(_source,_type,_severity,_count,ref _ids,_enabled); -} -static unsafe void Test_DebugMessageControl_35345() { - OpenTK.Graphics.OpenGL4.DebugSourceControl _source = default(OpenTK.Graphics.OpenGL4.DebugSourceControl); - OpenTK.Graphics.OpenGL4.DebugTypeControl _type = default(OpenTK.Graphics.OpenGL4.DebugTypeControl); - OpenTK.Graphics.OpenGL4.DebugSeverityControl _severity = default(OpenTK.Graphics.OpenGL4.DebugSeverityControl); - System.Int32 _count = default(System.Int32); - System.Int32* _ids = default(System.Int32*); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL4.GL.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_35346() { - OpenTK.Graphics.OpenGL4.DebugSourceControl _source = default(OpenTK.Graphics.OpenGL4.DebugSourceControl); - OpenTK.Graphics.OpenGL4.DebugTypeControl _type = default(OpenTK.Graphics.OpenGL4.DebugTypeControl); - OpenTK.Graphics.OpenGL4.DebugSeverityControl _severity = default(OpenTK.Graphics.OpenGL4.DebugSeverityControl); - System.Int32 _count = default(System.Int32); - System.UInt32[] _ids = default(System.UInt32[]); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL4.GL.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_35347() { - OpenTK.Graphics.OpenGL4.DebugSourceControl _source = default(OpenTK.Graphics.OpenGL4.DebugSourceControl); - OpenTK.Graphics.OpenGL4.DebugTypeControl _type = default(OpenTK.Graphics.OpenGL4.DebugTypeControl); - OpenTK.Graphics.OpenGL4.DebugSeverityControl _severity = default(OpenTK.Graphics.OpenGL4.DebugSeverityControl); - System.Int32 _count = default(System.Int32); - System.UInt32 _ids = default(System.UInt32); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL4.GL.DebugMessageControl(_source,_type,_severity,_count,ref _ids,_enabled); -} -static unsafe void Test_DebugMessageControl_35348() { - OpenTK.Graphics.OpenGL4.DebugSourceControl _source = default(OpenTK.Graphics.OpenGL4.DebugSourceControl); - OpenTK.Graphics.OpenGL4.DebugTypeControl _type = default(OpenTK.Graphics.OpenGL4.DebugTypeControl); - OpenTK.Graphics.OpenGL4.DebugSeverityControl _severity = default(OpenTK.Graphics.OpenGL4.DebugSeverityControl); - System.Int32 _count = default(System.Int32); - System.UInt32* _ids = default(System.UInt32*); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL4.GL.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageInsert_35349() { - OpenTK.Graphics.OpenGL4.DebugSourceExternal _source = default(OpenTK.Graphics.OpenGL4.DebugSourceExternal); - OpenTK.Graphics.OpenGL4.DebugType _type = default(OpenTK.Graphics.OpenGL4.DebugType); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL4.DebugSeverity _severity = default(OpenTK.Graphics.OpenGL4.DebugSeverity); - System.Int32 _length = default(System.Int32); - System.String _buf = default(System.String); - OpenTK.Graphics.OpenGL4.GL.DebugMessageInsert(_source,_type,_id,_severity,_length,_buf); -} -static unsafe void Test_DebugMessageInsert_35350() { - OpenTK.Graphics.OpenGL4.DebugSourceExternal _source = default(OpenTK.Graphics.OpenGL4.DebugSourceExternal); - OpenTK.Graphics.OpenGL4.DebugType _type = default(OpenTK.Graphics.OpenGL4.DebugType); - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL4.DebugSeverity _severity = default(OpenTK.Graphics.OpenGL4.DebugSeverity); - System.Int32 _length = default(System.Int32); - System.String _buf = default(System.String); - OpenTK.Graphics.OpenGL4.GL.DebugMessageInsert(_source,_type,_id,_severity,_length,_buf); -} -static unsafe void Test_DeleteBuffer_35351() { - System.Int32 _buffers = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DeleteBuffer(_buffers); -} -static unsafe void Test_DeleteBuffer_35352() { - System.UInt32 _buffers = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.DeleteBuffer(_buffers); -} -static unsafe void Test_DeleteBuffers_35353() { - System.Int32 _n = default(System.Int32); - System.Int32[] _buffers = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.DeleteBuffers(_n,_buffers); -} -static unsafe void Test_DeleteBuffers_35354() { - System.Int32 _n = default(System.Int32); - System.Int32 _buffers = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DeleteBuffers(_n,ref _buffers); -} -static unsafe void Test_DeleteBuffers_35355() { - System.Int32 _n = default(System.Int32); - System.Int32* _buffers = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.DeleteBuffers(_n,_buffers); -} -static unsafe void Test_DeleteBuffers_35356() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _buffers = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.DeleteBuffers(_n,_buffers); -} -static unsafe void Test_DeleteBuffers_35357() { - System.Int32 _n = default(System.Int32); - System.UInt32 _buffers = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.DeleteBuffers(_n,ref _buffers); -} -static unsafe void Test_DeleteBuffers_35358() { - System.Int32 _n = default(System.Int32); - System.UInt32* _buffers = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.DeleteBuffers(_n,_buffers); -} -static unsafe void Test_DeleteFramebuffer_35359() { - System.Int32 _framebuffers = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DeleteFramebuffer(_framebuffers); -} -static unsafe void Test_DeleteFramebuffer_35360() { - System.UInt32 _framebuffers = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.DeleteFramebuffer(_framebuffers); -} -static unsafe void Test_DeleteFramebuffers_35361() { - System.Int32 _n = default(System.Int32); - System.Int32[] _framebuffers = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.DeleteFramebuffers(_n,_framebuffers); -} -static unsafe void Test_DeleteFramebuffers_35362() { - System.Int32 _n = default(System.Int32); - System.Int32 _framebuffers = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DeleteFramebuffers(_n,ref _framebuffers); -} -static unsafe void Test_DeleteFramebuffers_35363() { - System.Int32 _n = default(System.Int32); - System.Int32* _framebuffers = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.DeleteFramebuffers(_n,_framebuffers); -} -static unsafe void Test_DeleteFramebuffers_35364() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _framebuffers = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.DeleteFramebuffers(_n,_framebuffers); -} -static unsafe void Test_DeleteFramebuffers_35365() { - System.Int32 _n = default(System.Int32); - System.UInt32 _framebuffers = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.DeleteFramebuffers(_n,ref _framebuffers); -} -static unsafe void Test_DeleteFramebuffers_35366() { - System.Int32 _n = default(System.Int32); - System.UInt32* _framebuffers = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.DeleteFramebuffers(_n,_framebuffers); -} -static unsafe void Test_DeleteProgram_35367() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DeleteProgram(_program); -} -static unsafe void Test_DeleteProgram_35368() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.DeleteProgram(_program); -} -static unsafe void Test_DeleteProgramPipeline_35369() { - System.Int32 _pipelines = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DeleteProgramPipeline(_pipelines); -} -static unsafe void Test_DeleteProgramPipeline_35370() { - System.UInt32 _pipelines = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.DeleteProgramPipeline(_pipelines); -} -static unsafe void Test_DeleteProgramPipelines_35371() { - System.Int32 _n = default(System.Int32); - System.Int32[] _pipelines = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.DeleteProgramPipelines(_n,_pipelines); -} -static unsafe void Test_DeleteProgramPipelines_35372() { - System.Int32 _n = default(System.Int32); - System.Int32 _pipelines = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DeleteProgramPipelines(_n,ref _pipelines); -} -static unsafe void Test_DeleteProgramPipelines_35373() { - System.Int32 _n = default(System.Int32); - System.Int32* _pipelines = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.DeleteProgramPipelines(_n,_pipelines); -} -static unsafe void Test_DeleteProgramPipelines_35374() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _pipelines = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.DeleteProgramPipelines(_n,_pipelines); -} -static unsafe void Test_DeleteProgramPipelines_35375() { - System.Int32 _n = default(System.Int32); - System.UInt32 _pipelines = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.DeleteProgramPipelines(_n,ref _pipelines); -} -static unsafe void Test_DeleteProgramPipelines_35376() { - System.Int32 _n = default(System.Int32); - System.UInt32* _pipelines = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.DeleteProgramPipelines(_n,_pipelines); -} -static unsafe void Test_DeleteQuery_35377() { - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DeleteQuery(_ids); -} -static unsafe void Test_DeleteQuery_35378() { - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.DeleteQuery(_ids); -} -static unsafe void Test_DeleteQueries_35379() { - System.Int32 _n = default(System.Int32); - System.Int32[] _ids = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.DeleteQueries(_n,_ids); -} -static unsafe void Test_DeleteQueries_35380() { - System.Int32 _n = default(System.Int32); - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DeleteQueries(_n,ref _ids); -} -static unsafe void Test_DeleteQueries_35381() { - System.Int32 _n = default(System.Int32); - System.Int32* _ids = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.DeleteQueries(_n,_ids); -} -static unsafe void Test_DeleteQueries_35382() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _ids = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.DeleteQueries(_n,_ids); -} -static unsafe void Test_DeleteQueries_35383() { - System.Int32 _n = default(System.Int32); - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.DeleteQueries(_n,ref _ids); -} -static unsafe void Test_DeleteQueries_35384() { - System.Int32 _n = default(System.Int32); - System.UInt32* _ids = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.DeleteQueries(_n,_ids); -} -static unsafe void Test_DeleteRenderbuffer_35385() { - System.Int32 _renderbuffers = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DeleteRenderbuffer(_renderbuffers); -} -static unsafe void Test_DeleteRenderbuffer_35386() { - System.UInt32 _renderbuffers = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.DeleteRenderbuffer(_renderbuffers); -} -static unsafe void Test_DeleteRenderbuffers_35387() { - System.Int32 _n = default(System.Int32); - System.Int32[] _renderbuffers = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.DeleteRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_DeleteRenderbuffers_35388() { - System.Int32 _n = default(System.Int32); - System.Int32 _renderbuffers = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DeleteRenderbuffers(_n,ref _renderbuffers); -} -static unsafe void Test_DeleteRenderbuffers_35389() { - System.Int32 _n = default(System.Int32); - System.Int32* _renderbuffers = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.DeleteRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_DeleteRenderbuffers_35390() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _renderbuffers = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.DeleteRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_DeleteRenderbuffers_35391() { - System.Int32 _n = default(System.Int32); - System.UInt32 _renderbuffers = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.DeleteRenderbuffers(_n,ref _renderbuffers); -} -static unsafe void Test_DeleteRenderbuffers_35392() { - System.Int32 _n = default(System.Int32); - System.UInt32* _renderbuffers = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.DeleteRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_DeleteSampler_35393() { - System.Int32 _samplers = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DeleteSampler(_samplers); -} -static unsafe void Test_DeleteSampler_35394() { - System.UInt32 _samplers = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.DeleteSampler(_samplers); -} -static unsafe void Test_DeleteSamplers_35395() { - System.Int32 _count = default(System.Int32); - System.Int32[] _samplers = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.DeleteSamplers(_count,_samplers); -} -static unsafe void Test_DeleteSamplers_35396() { - System.Int32 _count = default(System.Int32); - System.Int32 _samplers = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DeleteSamplers(_count,ref _samplers); -} -static unsafe void Test_DeleteSamplers_35397() { - System.Int32 _count = default(System.Int32); - System.Int32* _samplers = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.DeleteSamplers(_count,_samplers); -} -static unsafe void Test_DeleteSamplers_35398() { - System.Int32 _count = default(System.Int32); - System.UInt32[] _samplers = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.DeleteSamplers(_count,_samplers); -} -static unsafe void Test_DeleteSamplers_35399() { - System.Int32 _count = default(System.Int32); - System.UInt32 _samplers = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.DeleteSamplers(_count,ref _samplers); -} -static unsafe void Test_DeleteSamplers_35400() { - System.Int32 _count = default(System.Int32); - System.UInt32* _samplers = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.DeleteSamplers(_count,_samplers); -} -static unsafe void Test_DeleteShader_35401() { - System.Int32 _shader = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DeleteShader(_shader); -} -static unsafe void Test_DeleteShader_35402() { - System.UInt32 _shader = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.DeleteShader(_shader); -} -static unsafe void Test_DeleteSync_35403() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.DeleteSync(_sync); -} -static unsafe void Test_DeleteTexture_35404() { - System.Int32 _textures = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DeleteTexture(_textures); -} -static unsafe void Test_DeleteTexture_35405() { - System.UInt32 _textures = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.DeleteTexture(_textures); -} -static unsafe void Test_DeleteTextures_35406() { - System.Int32 _n = default(System.Int32); - System.Int32[] _textures = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.DeleteTextures(_n,_textures); -} -static unsafe void Test_DeleteTextures_35407() { - System.Int32 _n = default(System.Int32); - System.Int32 _textures = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DeleteTextures(_n,ref _textures); -} -static unsafe void Test_DeleteTextures_35408() { - System.Int32 _n = default(System.Int32); - System.Int32* _textures = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.DeleteTextures(_n,_textures); -} -static unsafe void Test_DeleteTextures_35409() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _textures = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.DeleteTextures(_n,_textures); -} -static unsafe void Test_DeleteTextures_35410() { - System.Int32 _n = default(System.Int32); - System.UInt32 _textures = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.DeleteTextures(_n,ref _textures); -} -static unsafe void Test_DeleteTextures_35411() { - System.Int32 _n = default(System.Int32); - System.UInt32* _textures = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.DeleteTextures(_n,_textures); -} -static unsafe void Test_DeleteTransformFeedback_35412() { - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DeleteTransformFeedback(_ids); -} -static unsafe void Test_DeleteTransformFeedback_35413() { - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.DeleteTransformFeedback(_ids); -} -static unsafe void Test_DeleteTransformFeedbacks_35414() { - System.Int32 _n = default(System.Int32); - System.Int32[] _ids = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.DeleteTransformFeedbacks(_n,_ids); -} -static unsafe void Test_DeleteTransformFeedbacks_35415() { - System.Int32 _n = default(System.Int32); - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DeleteTransformFeedbacks(_n,ref _ids); -} -static unsafe void Test_DeleteTransformFeedbacks_35416() { - System.Int32 _n = default(System.Int32); - System.Int32* _ids = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.DeleteTransformFeedbacks(_n,_ids); -} -static unsafe void Test_DeleteTransformFeedbacks_35417() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _ids = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.DeleteTransformFeedbacks(_n,_ids); -} -static unsafe void Test_DeleteTransformFeedbacks_35418() { - System.Int32 _n = default(System.Int32); - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.DeleteTransformFeedbacks(_n,ref _ids); -} -static unsafe void Test_DeleteTransformFeedbacks_35419() { - System.Int32 _n = default(System.Int32); - System.UInt32* _ids = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.DeleteTransformFeedbacks(_n,_ids); -} -static unsafe void Test_DeleteVertexArray_35420() { - System.Int32 _arrays = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DeleteVertexArray(_arrays); -} -static unsafe void Test_DeleteVertexArray_35421() { - System.UInt32 _arrays = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.DeleteVertexArray(_arrays); -} -static unsafe void Test_DeleteVertexArrays_35422() { - System.Int32 _n = default(System.Int32); - System.Int32[] _arrays = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.DeleteVertexArrays(_n,_arrays); -} -static unsafe void Test_DeleteVertexArrays_35423() { - System.Int32 _n = default(System.Int32); - System.Int32 _arrays = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DeleteVertexArrays(_n,ref _arrays); -} -static unsafe void Test_DeleteVertexArrays_35424() { - System.Int32 _n = default(System.Int32); - System.Int32* _arrays = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.DeleteVertexArrays(_n,_arrays); -} -static unsafe void Test_DeleteVertexArrays_35425() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _arrays = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.DeleteVertexArrays(_n,_arrays); -} -static unsafe void Test_DeleteVertexArrays_35426() { - System.Int32 _n = default(System.Int32); - System.UInt32 _arrays = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.DeleteVertexArrays(_n,ref _arrays); -} -static unsafe void Test_DeleteVertexArrays_35427() { - System.Int32 _n = default(System.Int32); - System.UInt32* _arrays = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.DeleteVertexArrays(_n,_arrays); -} -static unsafe void Test_DepthFunc_35428() { - OpenTK.Graphics.OpenGL4.DepthFunction _func = default(OpenTK.Graphics.OpenGL4.DepthFunction); - OpenTK.Graphics.OpenGL4.GL.DepthFunc(_func); -} -static unsafe void Test_DepthMask_35429() { - System.Boolean _flag = default(System.Boolean); - OpenTK.Graphics.OpenGL4.GL.DepthMask(_flag); -} -static unsafe void Test_DepthRange_35430() { - System.Double _near = default(System.Double); - System.Double _far = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.DepthRange(_near,_far); -} -static unsafe void Test_DepthRangeArray_35431() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.DepthRangeArray(_first,_count,_v); -} -static unsafe void Test_DepthRangeArray_35432() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.DepthRangeArray(_first,_count,ref _v); -} -static unsafe void Test_DepthRangeArray_35433() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.DepthRangeArray(_first,_count,_v); -} -static unsafe void Test_DepthRangeArray_35434() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.DepthRangeArray(_first,_count,_v); -} -static unsafe void Test_DepthRangeArray_35435() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.DepthRangeArray(_first,_count,ref _v); -} -static unsafe void Test_DepthRangeArray_35436() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.DepthRangeArray(_first,_count,_v); -} -static unsafe void Test_DepthRange_35437() { - System.Single _n = default(System.Single); - System.Single _f = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.DepthRange(_n,_f); -} -static unsafe void Test_DepthRangeIndexed_35438() { - System.Int32 _index = default(System.Int32); - System.Double _n = default(System.Double); - System.Double _f = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.DepthRangeIndexed(_index,_n,_f); -} -static unsafe void Test_DepthRangeIndexed_35439() { - System.UInt32 _index = default(System.UInt32); - System.Double _n = default(System.Double); - System.Double _f = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.DepthRangeIndexed(_index,_n,_f); -} -static unsafe void Test_DetachShader_35440() { - System.Int32 _program = default(System.Int32); - System.Int32 _shader = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DetachShader(_program,_shader); -} -static unsafe void Test_DetachShader_35441() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _shader = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.DetachShader(_program,_shader); -} -static unsafe void Test_Disable_35442() { - OpenTK.Graphics.OpenGL4.EnableCap _cap = default(OpenTK.Graphics.OpenGL4.EnableCap); - OpenTK.Graphics.OpenGL4.GL.Disable(_cap); -} -static unsafe void Test_Disable_35443() { - OpenTK.Graphics.OpenGL4.IndexedEnableCap _target = default(OpenTK.Graphics.OpenGL4.IndexedEnableCap); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.Disable(_target,_index); -} -static unsafe void Test_Disable_35444() { - OpenTK.Graphics.OpenGL4.IndexedEnableCap _target = default(OpenTK.Graphics.OpenGL4.IndexedEnableCap); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.Disable(_target,_index); -} -static unsafe void Test_DisableVertexAttribArray_35445() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DisableVertexAttribArray(_index); -} -static unsafe void Test_DisableVertexAttribArray_35446() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.DisableVertexAttribArray(_index); -} -static unsafe void Test_DispatchCompute_35447() { - System.Int32 _num_groups_x = default(System.Int32); - System.Int32 _num_groups_y = default(System.Int32); - System.Int32 _num_groups_z = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DispatchCompute(_num_groups_x,_num_groups_y,_num_groups_z); -} -static unsafe void Test_DispatchCompute_35448() { - System.UInt32 _num_groups_x = default(System.UInt32); - System.UInt32 _num_groups_y = default(System.UInt32); - System.UInt32 _num_groups_z = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.DispatchCompute(_num_groups_x,_num_groups_y,_num_groups_z); -} -static unsafe void Test_DispatchComputeIndirect_35449() { - System.IntPtr _indirect = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.DispatchComputeIndirect(_indirect); -} -static unsafe void Test_DrawArrays_35450() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawArrays(_mode,_first,_count); -} -static unsafe void Test_DrawArraysIndirect_35451() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.IntPtr _indirect = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.DrawArraysIndirect(_mode,_indirect); -} -static unsafe void Test_DrawArraysIndirect_35452() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - int[] _indirect = default(int[]); - OpenTK.Graphics.OpenGL4.GL.DrawArraysIndirect(_mode,_indirect); -} -static unsafe void Test_DrawArraysIndirect_35453() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - int[,] _indirect = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.DrawArraysIndirect(_mode,_indirect); -} -static unsafe void Test_DrawArraysIndirect_35454() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - int[,,] _indirect = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.DrawArraysIndirect(_mode,_indirect); -} -static unsafe void Test_DrawArraysIndirect_35455() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - int _indirect = default(int); - OpenTK.Graphics.OpenGL4.GL.DrawArraysIndirect(_mode,ref _indirect); -} -static unsafe void Test_DrawArraysInstanced_35456() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _instancecount = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawArraysInstanced(_mode,_first,_count,_instancecount); -} -static unsafe void Test_DrawArraysInstancedBaseInstance_35457() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _baseinstance = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawArraysInstancedBaseInstance(_mode,_first,_count,_instancecount,_baseinstance); -} -static unsafe void Test_DrawArraysInstancedBaseInstance_35458() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _instancecount = default(System.Int32); - System.UInt32 _baseinstance = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.DrawArraysInstancedBaseInstance(_mode,_first,_count,_instancecount,_baseinstance); -} -static unsafe void Test_DrawBuffer_35459() { - OpenTK.Graphics.OpenGL4.DrawBufferMode _mode = default(OpenTK.Graphics.OpenGL4.DrawBufferMode); - OpenTK.Graphics.OpenGL4.GL.DrawBuffer(_mode); -} -static unsafe void Test_DrawBuffers_35460() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawBuffersEnum[] _bufs = default(OpenTK.Graphics.OpenGL4.DrawBuffersEnum[]); - OpenTK.Graphics.OpenGL4.GL.DrawBuffers(_n,_bufs); -} -static unsafe void Test_DrawBuffers_35461() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawBuffersEnum _bufs = default(OpenTK.Graphics.OpenGL4.DrawBuffersEnum); - OpenTK.Graphics.OpenGL4.GL.DrawBuffers(_n,ref _bufs); -} -static unsafe void Test_DrawBuffers_35462() { - System.Int32 _n = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawBuffersEnum* _bufs = default(OpenTK.Graphics.OpenGL4.DrawBuffersEnum*); - OpenTK.Graphics.OpenGL4.GL.DrawBuffers(_n,_bufs); -} -static unsafe void Test_DrawElements_35463() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_35464() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[] _indices = default(int[]); - OpenTK.Graphics.OpenGL4.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_35465() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[,] _indices = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_35466() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[,,] _indices = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.DrawElements(_mode,_count,_type,_indices); -} -static unsafe void Test_DrawElements_35467() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int _indices = default(int); - OpenTK.Graphics.OpenGL4.GL.DrawElements(_mode,_count,_type,ref _indices); -} -static unsafe void Test_DrawElementsBaseVertex_35468() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawElementsBaseVertex(_mode,_count,_type,_indices,_basevertex); -} -static unsafe void Test_DrawElementsBaseVertex_35469() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawElementsBaseVertex(_mode,_count,_type,_indices,_basevertex); -} -static unsafe void Test_DrawElementsBaseVertex_35470() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawElementsBaseVertex(_mode,_count,_type,_indices,_basevertex); -} -static unsafe void Test_DrawElementsBaseVertex_35471() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawElementsBaseVertex(_mode,_count,_type,_indices,_basevertex); -} -static unsafe void Test_DrawElementsBaseVertex_35472() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int _indices = default(int); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawElementsBaseVertex(_mode,_count,_type,ref _indices,_basevertex); -} -static unsafe void Test_DrawElementsIndirect_35473() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.IntPtr _indirect = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.DrawElementsIndirect(_mode,_type,_indirect); -} -static unsafe void Test_DrawElementsIndirect_35474() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - int[] _indirect = default(int[]); - OpenTK.Graphics.OpenGL4.GL.DrawElementsIndirect(_mode,_type,_indirect); -} -static unsafe void Test_DrawElementsIndirect_35475() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - int[,] _indirect = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.DrawElementsIndirect(_mode,_type,_indirect); -} -static unsafe void Test_DrawElementsIndirect_35476() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - int[,,] _indirect = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.DrawElementsIndirect(_mode,_type,_indirect); -} -static unsafe void Test_DrawElementsIndirect_35477() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - int _indirect = default(int); - OpenTK.Graphics.OpenGL4.GL.DrawElementsIndirect(_mode,_type,ref _indirect); -} -static unsafe void Test_DrawElementsInstanced_35478() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _instancecount = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawElementsInstanced(_mode,_count,_type,_indices,_instancecount); -} -static unsafe void Test_DrawElementsInstanced_35479() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _instancecount = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawElementsInstanced(_mode,_count,_type,_indices,_instancecount); -} -static unsafe void Test_DrawElementsInstanced_35480() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _instancecount = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawElementsInstanced(_mode,_count,_type,_indices,_instancecount); -} -static unsafe void Test_DrawElementsInstanced_35481() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _instancecount = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawElementsInstanced(_mode,_count,_type,_indices,_instancecount); -} -static unsafe void Test_DrawElementsInstanced_35482() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int _indices = default(int); - System.Int32 _instancecount = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawElementsInstanced(_mode,_count,_type,ref _indices,_instancecount); -} -static unsafe void Test_DrawElementsInstancedBaseInstance_35483() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _baseinstance = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawElementsInstancedBaseInstance(_mode,_count,_type,_indices,_instancecount,_baseinstance); -} -static unsafe void Test_DrawElementsInstancedBaseInstance_35484() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _instancecount = default(System.Int32); - System.UInt32 _baseinstance = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.DrawElementsInstancedBaseInstance(_mode,_count,_type,_indices,_instancecount,_baseinstance); -} -static unsafe void Test_DrawElementsInstancedBaseInstance_35485() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _baseinstance = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawElementsInstancedBaseInstance(_mode,_count,_type,_indices,_instancecount,_baseinstance); -} -static unsafe void Test_DrawElementsInstancedBaseInstance_35486() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _instancecount = default(System.Int32); - System.UInt32 _baseinstance = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.DrawElementsInstancedBaseInstance(_mode,_count,_type,_indices,_instancecount,_baseinstance); -} -static unsafe void Test_DrawElementsInstancedBaseInstance_35487() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _baseinstance = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawElementsInstancedBaseInstance(_mode,_count,_type,_indices,_instancecount,_baseinstance); -} -static unsafe void Test_DrawElementsInstancedBaseInstance_35488() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _instancecount = default(System.Int32); - System.UInt32 _baseinstance = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.DrawElementsInstancedBaseInstance(_mode,_count,_type,_indices,_instancecount,_baseinstance); -} -static unsafe void Test_DrawElementsInstancedBaseInstance_35489() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _baseinstance = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawElementsInstancedBaseInstance(_mode,_count,_type,_indices,_instancecount,_baseinstance); -} -static unsafe void Test_DrawElementsInstancedBaseInstance_35490() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _instancecount = default(System.Int32); - System.UInt32 _baseinstance = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.DrawElementsInstancedBaseInstance(_mode,_count,_type,_indices,_instancecount,_baseinstance); -} -static unsafe void Test_DrawElementsInstancedBaseInstance_35491() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int _indices = default(int); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _baseinstance = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawElementsInstancedBaseInstance(_mode,_count,_type,ref _indices,_instancecount,_baseinstance); -} -static unsafe void Test_DrawElementsInstancedBaseInstance_35492() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int _indices = default(int); - System.Int32 _instancecount = default(System.Int32); - System.UInt32 _baseinstance = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.DrawElementsInstancedBaseInstance(_mode,_count,_type,ref _indices,_instancecount,_baseinstance); -} -static unsafe void Test_DrawElementsInstancedBaseVertex_35493() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawElementsInstancedBaseVertex(_mode,_count,_type,_indices,_instancecount,_basevertex); -} -static unsafe void Test_DrawElementsInstancedBaseVertex_35494() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawElementsInstancedBaseVertex(_mode,_count,_type,_indices,_instancecount,_basevertex); -} -static unsafe void Test_DrawElementsInstancedBaseVertex_35495() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawElementsInstancedBaseVertex(_mode,_count,_type,_indices,_instancecount,_basevertex); -} -static unsafe void Test_DrawElementsInstancedBaseVertex_35496() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawElementsInstancedBaseVertex(_mode,_count,_type,_indices,_instancecount,_basevertex); -} -static unsafe void Test_DrawElementsInstancedBaseVertex_35497() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int _indices = default(int); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawElementsInstancedBaseVertex(_mode,_count,_type,ref _indices,_instancecount,_basevertex); -} -static unsafe void Test_DrawElementsInstancedBaseVertexBaseInstance_35498() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - System.Int32 _baseinstance = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawElementsInstancedBaseVertexBaseInstance(_mode,_count,_type,_indices,_instancecount,_basevertex,_baseinstance); -} -static unsafe void Test_DrawElementsInstancedBaseVertexBaseInstance_35499() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - System.UInt32 _baseinstance = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.DrawElementsInstancedBaseVertexBaseInstance(_mode,_count,_type,_indices,_instancecount,_basevertex,_baseinstance); -} -static unsafe void Test_DrawElementsInstancedBaseVertexBaseInstance_35500() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - System.Int32 _baseinstance = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawElementsInstancedBaseVertexBaseInstance(_mode,_count,_type,_indices,_instancecount,_basevertex,_baseinstance); -} -static unsafe void Test_DrawElementsInstancedBaseVertexBaseInstance_35501() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - System.UInt32 _baseinstance = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.DrawElementsInstancedBaseVertexBaseInstance(_mode,_count,_type,_indices,_instancecount,_basevertex,_baseinstance); -} -static unsafe void Test_DrawElementsInstancedBaseVertexBaseInstance_35502() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - System.Int32 _baseinstance = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawElementsInstancedBaseVertexBaseInstance(_mode,_count,_type,_indices,_instancecount,_basevertex,_baseinstance); -} -static unsafe void Test_DrawElementsInstancedBaseVertexBaseInstance_35503() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - System.UInt32 _baseinstance = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.DrawElementsInstancedBaseVertexBaseInstance(_mode,_count,_type,_indices,_instancecount,_basevertex,_baseinstance); -} -static unsafe void Test_DrawElementsInstancedBaseVertexBaseInstance_35504() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - System.Int32 _baseinstance = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawElementsInstancedBaseVertexBaseInstance(_mode,_count,_type,_indices,_instancecount,_basevertex,_baseinstance); -} -static unsafe void Test_DrawElementsInstancedBaseVertexBaseInstance_35505() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - System.UInt32 _baseinstance = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.DrawElementsInstancedBaseVertexBaseInstance(_mode,_count,_type,_indices,_instancecount,_basevertex,_baseinstance); -} -static unsafe void Test_DrawElementsInstancedBaseVertexBaseInstance_35506() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int _indices = default(int); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - System.Int32 _baseinstance = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawElementsInstancedBaseVertexBaseInstance(_mode,_count,_type,ref _indices,_instancecount,_basevertex,_baseinstance); -} -static unsafe void Test_DrawElementsInstancedBaseVertexBaseInstance_35507() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int _indices = default(int); - System.Int32 _instancecount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - System.UInt32 _baseinstance = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.DrawElementsInstancedBaseVertexBaseInstance(_mode,_count,_type,ref _indices,_instancecount,_basevertex,_baseinstance); -} -static unsafe void Test_DrawRangeElements_35508() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_35509() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[] _indices = default(int[]); - OpenTK.Graphics.OpenGL4.GL.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_35510() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[,] _indices = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_35511() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[,,] _indices = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_35512() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int _indices = default(int); - OpenTK.Graphics.OpenGL4.GL.DrawRangeElements(_mode,_start,_end,_count,_type,ref _indices); -} -static unsafe void Test_DrawRangeElements_35513() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_35514() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[] _indices = default(int[]); - OpenTK.Graphics.OpenGL4.GL.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_35515() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[,] _indices = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_35516() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[,,] _indices = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.DrawRangeElements(_mode,_start,_end,_count,_type,_indices); -} -static unsafe void Test_DrawRangeElements_35517() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int _indices = default(int); - OpenTK.Graphics.OpenGL4.GL.DrawRangeElements(_mode,_start,_end,_count,_type,ref _indices); -} -static unsafe void Test_DrawRangeElementsBaseVertex_35518() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawRangeElementsBaseVertex(_mode,_start,_end,_count,_type,_indices,_basevertex); -} -static unsafe void Test_DrawRangeElementsBaseVertex_35519() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawRangeElementsBaseVertex(_mode,_start,_end,_count,_type,_indices,_basevertex); -} -static unsafe void Test_DrawRangeElementsBaseVertex_35520() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawRangeElementsBaseVertex(_mode,_start,_end,_count,_type,_indices,_basevertex); -} -static unsafe void Test_DrawRangeElementsBaseVertex_35521() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawRangeElementsBaseVertex(_mode,_start,_end,_count,_type,_indices,_basevertex); -} -static unsafe void Test_DrawRangeElementsBaseVertex_35522() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _start = default(System.Int32); - System.Int32 _end = default(System.Int32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int _indices = default(int); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawRangeElementsBaseVertex(_mode,_start,_end,_count,_type,ref _indices,_basevertex); -} -static unsafe void Test_DrawRangeElementsBaseVertex_35523() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawRangeElementsBaseVertex(_mode,_start,_end,_count,_type,_indices,_basevertex); -} -static unsafe void Test_DrawRangeElementsBaseVertex_35524() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawRangeElementsBaseVertex(_mode,_start,_end,_count,_type,_indices,_basevertex); -} -static unsafe void Test_DrawRangeElementsBaseVertex_35525() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawRangeElementsBaseVertex(_mode,_start,_end,_count,_type,_indices,_basevertex); -} -static unsafe void Test_DrawRangeElementsBaseVertex_35526() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawRangeElementsBaseVertex(_mode,_start,_end,_count,_type,_indices,_basevertex); -} -static unsafe void Test_DrawRangeElementsBaseVertex_35527() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.UInt32 _start = default(System.UInt32); - System.UInt32 _end = default(System.UInt32); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int _indices = default(int); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawRangeElementsBaseVertex(_mode,_start,_end,_count,_type,ref _indices,_basevertex); -} -static unsafe void Test_DrawTransformFeedback_35528() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawTransformFeedback(_mode,_id); -} -static unsafe void Test_DrawTransformFeedback_35529() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.DrawTransformFeedback(_mode,_id); -} -static unsafe void Test_DrawTransformFeedbackInstanced_35530() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _id = default(System.Int32); - System.Int32 _instancecount = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawTransformFeedbackInstanced(_mode,_id,_instancecount); -} -static unsafe void Test_DrawTransformFeedbackInstanced_35531() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.UInt32 _id = default(System.UInt32); - System.Int32 _instancecount = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawTransformFeedbackInstanced(_mode,_id,_instancecount); -} -static unsafe void Test_DrawTransformFeedbackStream_35532() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _id = default(System.Int32); - System.Int32 _stream = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawTransformFeedbackStream(_mode,_id,_stream); -} -static unsafe void Test_DrawTransformFeedbackStream_35533() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.UInt32 _id = default(System.UInt32); - System.UInt32 _stream = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.DrawTransformFeedbackStream(_mode,_id,_stream); -} -static unsafe void Test_DrawTransformFeedbackStreamInstanced_35534() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _id = default(System.Int32); - System.Int32 _stream = default(System.Int32); - System.Int32 _instancecount = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawTransformFeedbackStreamInstanced(_mode,_id,_stream,_instancecount); -} -static unsafe void Test_DrawTransformFeedbackStreamInstanced_35535() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.UInt32 _id = default(System.UInt32); - System.UInt32 _stream = default(System.UInt32); - System.Int32 _instancecount = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.DrawTransformFeedbackStreamInstanced(_mode,_id,_stream,_instancecount); -} -static unsafe void Test_Enable_35536() { - OpenTK.Graphics.OpenGL4.EnableCap _cap = default(OpenTK.Graphics.OpenGL4.EnableCap); - OpenTK.Graphics.OpenGL4.GL.Enable(_cap); -} -static unsafe void Test_Enable_35537() { - OpenTK.Graphics.OpenGL4.IndexedEnableCap _target = default(OpenTK.Graphics.OpenGL4.IndexedEnableCap); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.Enable(_target,_index); -} -static unsafe void Test_Enable_35538() { - OpenTK.Graphics.OpenGL4.IndexedEnableCap _target = default(OpenTK.Graphics.OpenGL4.IndexedEnableCap); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.Enable(_target,_index); -} -static unsafe void Test_EnableVertexAttribArray_35539() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.EnableVertexAttribArray(_index); -} -static unsafe void Test_EnableVertexAttribArray_35540() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.EnableVertexAttribArray(_index); -} -static unsafe void Test_EndConditionalRender_35541() { - OpenTK.Graphics.OpenGL4.GL.EndConditionalRender(); -} -static unsafe void Test_EndQuery_35542() { - OpenTK.Graphics.OpenGL4.QueryTarget _target = default(OpenTK.Graphics.OpenGL4.QueryTarget); - OpenTK.Graphics.OpenGL4.GL.EndQuery(_target); -} -static unsafe void Test_EndQueryIndexed_35543() { - OpenTK.Graphics.OpenGL4.QueryTarget _target = default(OpenTK.Graphics.OpenGL4.QueryTarget); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.EndQueryIndexed(_target,_index); -} -static unsafe void Test_EndQueryIndexed_35544() { - OpenTK.Graphics.OpenGL4.QueryTarget _target = default(OpenTK.Graphics.OpenGL4.QueryTarget); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.EndQueryIndexed(_target,_index); -} -static unsafe void Test_EndTransformFeedback_35545() { - OpenTK.Graphics.OpenGL4.GL.EndTransformFeedback(); -} -static unsafe void Test_FenceSync_35546() { - OpenTK.Graphics.OpenGL4.SyncCondition _condition = default(OpenTK.Graphics.OpenGL4.SyncCondition); - OpenTK.Graphics.OpenGL4.WaitSyncFlags _flags = default(OpenTK.Graphics.OpenGL4.WaitSyncFlags); - System.IntPtr r = OpenTK.Graphics.OpenGL4.GL.FenceSync(_condition,_flags); -} -static unsafe void Test_Finish_35547() { - OpenTK.Graphics.OpenGL4.GL.Finish(); -} -static unsafe void Test_Flush_35548() { - OpenTK.Graphics.OpenGL4.GL.Flush(); -} -static unsafe void Test_FlushMappedBufferRange_35549() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _length = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.FlushMappedBufferRange(_target,_offset,_length); -} -static unsafe void Test_FramebufferParameter_35550() { - OpenTK.Graphics.OpenGL4.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL4.FramebufferTarget); - OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter _pname = default(OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.FramebufferParameter(_target,_pname,_param); -} -static unsafe void Test_FramebufferRenderbuffer_35551() { - OpenTK.Graphics.OpenGL4.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL4.FramebufferTarget); - OpenTK.Graphics.OpenGL4.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL4.FramebufferAttachment); - OpenTK.Graphics.OpenGL4.RenderbufferTarget _renderbuffertarget = default(OpenTK.Graphics.OpenGL4.RenderbufferTarget); - System.Int32 _renderbuffer = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.FramebufferRenderbuffer(_target,_attachment,_renderbuffertarget,_renderbuffer); -} -static unsafe void Test_FramebufferRenderbuffer_35552() { - OpenTK.Graphics.OpenGL4.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL4.FramebufferTarget); - OpenTK.Graphics.OpenGL4.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL4.FramebufferAttachment); - OpenTK.Graphics.OpenGL4.RenderbufferTarget _renderbuffertarget = default(OpenTK.Graphics.OpenGL4.RenderbufferTarget); - System.UInt32 _renderbuffer = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.FramebufferRenderbuffer(_target,_attachment,_renderbuffertarget,_renderbuffer); -} -static unsafe void Test_FramebufferTexture_35553() { - OpenTK.Graphics.OpenGL4.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL4.FramebufferTarget); - OpenTK.Graphics.OpenGL4.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL4.FramebufferAttachment); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.FramebufferTexture(_target,_attachment,_texture,_level); -} -static unsafe void Test_FramebufferTexture_35554() { - OpenTK.Graphics.OpenGL4.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL4.FramebufferTarget); - OpenTK.Graphics.OpenGL4.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL4.FramebufferAttachment); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.FramebufferTexture(_target,_attachment,_texture,_level); -} -static unsafe void Test_FramebufferTexture1D_35555() { - OpenTK.Graphics.OpenGL4.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL4.FramebufferTarget); - OpenTK.Graphics.OpenGL4.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL4.FramebufferAttachment); - OpenTK.Graphics.OpenGL4.TextureTarget _textarget = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.FramebufferTexture1D(_target,_attachment,_textarget,_texture,_level); -} -static unsafe void Test_FramebufferTexture1D_35556() { - OpenTK.Graphics.OpenGL4.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL4.FramebufferTarget); - OpenTK.Graphics.OpenGL4.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL4.FramebufferAttachment); - OpenTK.Graphics.OpenGL4.TextureTarget _textarget = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.FramebufferTexture1D(_target,_attachment,_textarget,_texture,_level); -} -static unsafe void Test_FramebufferTexture2D_35557() { - OpenTK.Graphics.OpenGL4.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL4.FramebufferTarget); - OpenTK.Graphics.OpenGL4.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL4.FramebufferAttachment); - OpenTK.Graphics.OpenGL4.TextureTarget _textarget = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.FramebufferTexture2D(_target,_attachment,_textarget,_texture,_level); -} -static unsafe void Test_FramebufferTexture2D_35558() { - OpenTK.Graphics.OpenGL4.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL4.FramebufferTarget); - OpenTK.Graphics.OpenGL4.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL4.FramebufferAttachment); - OpenTK.Graphics.OpenGL4.TextureTarget _textarget = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.FramebufferTexture2D(_target,_attachment,_textarget,_texture,_level); -} -static unsafe void Test_FramebufferTexture3D_35559() { - OpenTK.Graphics.OpenGL4.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL4.FramebufferTarget); - OpenTK.Graphics.OpenGL4.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL4.FramebufferAttachment); - OpenTK.Graphics.OpenGL4.TextureTarget _textarget = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.FramebufferTexture3D(_target,_attachment,_textarget,_texture,_level,_zoffset); -} -static unsafe void Test_FramebufferTexture3D_35560() { - OpenTK.Graphics.OpenGL4.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL4.FramebufferTarget); - OpenTK.Graphics.OpenGL4.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL4.FramebufferAttachment); - OpenTK.Graphics.OpenGL4.TextureTarget _textarget = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.FramebufferTexture3D(_target,_attachment,_textarget,_texture,_level,_zoffset); -} -static unsafe void Test_FramebufferTextureLayer_35561() { - OpenTK.Graphics.OpenGL4.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL4.FramebufferTarget); - OpenTK.Graphics.OpenGL4.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL4.FramebufferAttachment); - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - System.Int32 _layer = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.FramebufferTextureLayer(_target,_attachment,_texture,_level,_layer); -} -static unsafe void Test_FramebufferTextureLayer_35562() { - OpenTK.Graphics.OpenGL4.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL4.FramebufferTarget); - OpenTK.Graphics.OpenGL4.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL4.FramebufferAttachment); - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - System.Int32 _layer = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.FramebufferTextureLayer(_target,_attachment,_texture,_level,_layer); -} -static unsafe void Test_FrontFace_35563() { - OpenTK.Graphics.OpenGL4.FrontFaceDirection _mode = default(OpenTK.Graphics.OpenGL4.FrontFaceDirection); - OpenTK.Graphics.OpenGL4.GL.FrontFace(_mode); -} -static unsafe void Test_GenBuffer_35564() { - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.GenBuffer(); -} -static unsafe void Test_GenBuffers_35565() { - System.Int32 _n = default(System.Int32); - System.Int32[] _buffers = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GenBuffers(_n,_buffers); -} -static unsafe void Test_GenBuffers_35566() { - System.Int32 _n = default(System.Int32); - System.Int32 _buffers = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GenBuffers(_n,out _buffers); -} -static unsafe void Test_GenBuffers_35567() { - System.Int32 _n = default(System.Int32); - System.Int32* _buffers = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GenBuffers(_n,_buffers); -} -static unsafe void Test_GenBuffers_35568() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _buffers = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.GenBuffers(_n,_buffers); -} -static unsafe void Test_GenBuffers_35569() { - System.Int32 _n = default(System.Int32); - System.UInt32 _buffers = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.GenBuffers(_n,out _buffers); -} -static unsafe void Test_GenBuffers_35570() { - System.Int32 _n = default(System.Int32); - System.UInt32* _buffers = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.GenBuffers(_n,_buffers); -} -static unsafe void Test_GenerateMipmap_35571() { - OpenTK.Graphics.OpenGL4.GenerateMipmapTarget _target = default(OpenTK.Graphics.OpenGL4.GenerateMipmapTarget); - OpenTK.Graphics.OpenGL4.GL.GenerateMipmap(_target); -} -static unsafe void Test_GenFramebuffer_35572() { - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.GenFramebuffer(); -} -static unsafe void Test_GenFramebuffers_35573() { - System.Int32 _n = default(System.Int32); - System.Int32[] _framebuffers = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GenFramebuffers(_n,_framebuffers); -} -static unsafe void Test_GenFramebuffers_35574() { - System.Int32 _n = default(System.Int32); - System.Int32 _framebuffers = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GenFramebuffers(_n,out _framebuffers); -} -static unsafe void Test_GenFramebuffers_35575() { - System.Int32 _n = default(System.Int32); - System.Int32* _framebuffers = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GenFramebuffers(_n,_framebuffers); -} -static unsafe void Test_GenFramebuffers_35576() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _framebuffers = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.GenFramebuffers(_n,_framebuffers); -} -static unsafe void Test_GenFramebuffers_35577() { - System.Int32 _n = default(System.Int32); - System.UInt32 _framebuffers = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.GenFramebuffers(_n,out _framebuffers); -} -static unsafe void Test_GenFramebuffers_35578() { - System.Int32 _n = default(System.Int32); - System.UInt32* _framebuffers = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.GenFramebuffers(_n,_framebuffers); -} -static unsafe void Test_GenProgramPipeline_35579() { - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.GenProgramPipeline(); -} -static unsafe void Test_GenProgramPipelines_35580() { - System.Int32 _n = default(System.Int32); - System.Int32[] _pipelines = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GenProgramPipelines(_n,_pipelines); -} -static unsafe void Test_GenProgramPipelines_35581() { - System.Int32 _n = default(System.Int32); - System.Int32 _pipelines = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GenProgramPipelines(_n,out _pipelines); -} -static unsafe void Test_GenProgramPipelines_35582() { - System.Int32 _n = default(System.Int32); - System.Int32* _pipelines = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GenProgramPipelines(_n,_pipelines); -} -static unsafe void Test_GenProgramPipelines_35583() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _pipelines = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.GenProgramPipelines(_n,_pipelines); -} -static unsafe void Test_GenProgramPipelines_35584() { - System.Int32 _n = default(System.Int32); - System.UInt32 _pipelines = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.GenProgramPipelines(_n,out _pipelines); -} -static unsafe void Test_GenProgramPipelines_35585() { - System.Int32 _n = default(System.Int32); - System.UInt32* _pipelines = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.GenProgramPipelines(_n,_pipelines); -} -static unsafe void Test_GenQuery_35586() { - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.GenQuery(); -} -static unsafe void Test_GenQueries_35587() { - System.Int32 _n = default(System.Int32); - System.Int32[] _ids = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GenQueries(_n,_ids); -} -static unsafe void Test_GenQueries_35588() { - System.Int32 _n = default(System.Int32); - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GenQueries(_n,out _ids); -} -static unsafe void Test_GenQueries_35589() { - System.Int32 _n = default(System.Int32); - System.Int32* _ids = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GenQueries(_n,_ids); -} -static unsafe void Test_GenQueries_35590() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _ids = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.GenQueries(_n,_ids); -} -static unsafe void Test_GenQueries_35591() { - System.Int32 _n = default(System.Int32); - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.GenQueries(_n,out _ids); -} -static unsafe void Test_GenQueries_35592() { - System.Int32 _n = default(System.Int32); - System.UInt32* _ids = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.GenQueries(_n,_ids); -} -static unsafe void Test_GenRenderbuffer_35593() { - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.GenRenderbuffer(); -} -static unsafe void Test_GenRenderbuffers_35594() { - System.Int32 _n = default(System.Int32); - System.Int32[] _renderbuffers = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GenRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_GenRenderbuffers_35595() { - System.Int32 _n = default(System.Int32); - System.Int32 _renderbuffers = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GenRenderbuffers(_n,out _renderbuffers); -} -static unsafe void Test_GenRenderbuffers_35596() { - System.Int32 _n = default(System.Int32); - System.Int32* _renderbuffers = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GenRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_GenRenderbuffers_35597() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _renderbuffers = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.GenRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_GenRenderbuffers_35598() { - System.Int32 _n = default(System.Int32); - System.UInt32 _renderbuffers = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.GenRenderbuffers(_n,out _renderbuffers); -} -static unsafe void Test_GenRenderbuffers_35599() { - System.Int32 _n = default(System.Int32); - System.UInt32* _renderbuffers = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.GenRenderbuffers(_n,_renderbuffers); -} -static unsafe void Test_GenSampler_35600() { - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.GenSampler(); -} -static unsafe void Test_GenSamplers_35601() { - System.Int32 _count = default(System.Int32); - System.Int32[] _samplers = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GenSamplers(_count,_samplers); -} -static unsafe void Test_GenSamplers_35602() { - System.Int32 _count = default(System.Int32); - System.Int32 _samplers = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GenSamplers(_count,out _samplers); -} -static unsafe void Test_GenSamplers_35603() { - System.Int32 _count = default(System.Int32); - System.Int32* _samplers = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GenSamplers(_count,_samplers); -} -static unsafe void Test_GenSamplers_35604() { - System.Int32 _count = default(System.Int32); - System.UInt32[] _samplers = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.GenSamplers(_count,_samplers); -} -static unsafe void Test_GenSamplers_35605() { - System.Int32 _count = default(System.Int32); - System.UInt32 _samplers = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.GenSamplers(_count,out _samplers); -} -static unsafe void Test_GenSamplers_35606() { - System.Int32 _count = default(System.Int32); - System.UInt32* _samplers = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.GenSamplers(_count,_samplers); -} -static unsafe void Test_GenTexture_35607() { - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.GenTexture(); -} -static unsafe void Test_GenTextures_35608() { - System.Int32 _n = default(System.Int32); - System.Int32[] _textures = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GenTextures(_n,_textures); -} -static unsafe void Test_GenTextures_35609() { - System.Int32 _n = default(System.Int32); - System.Int32 _textures = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GenTextures(_n,out _textures); -} -static unsafe void Test_GenTextures_35610() { - System.Int32 _n = default(System.Int32); - System.Int32* _textures = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GenTextures(_n,_textures); -} -static unsafe void Test_GenTextures_35611() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _textures = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.GenTextures(_n,_textures); -} -static unsafe void Test_GenTextures_35612() { - System.Int32 _n = default(System.Int32); - System.UInt32 _textures = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.GenTextures(_n,out _textures); -} -static unsafe void Test_GenTextures_35613() { - System.Int32 _n = default(System.Int32); - System.UInt32* _textures = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.GenTextures(_n,_textures); -} -static unsafe void Test_GenTransformFeedback_35614() { - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.GenTransformFeedback(); -} -static unsafe void Test_GenTransformFeedbacks_35615() { - System.Int32 _n = default(System.Int32); - System.Int32[] _ids = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GenTransformFeedbacks(_n,_ids); -} -static unsafe void Test_GenTransformFeedbacks_35616() { - System.Int32 _n = default(System.Int32); - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GenTransformFeedbacks(_n,out _ids); -} -static unsafe void Test_GenTransformFeedbacks_35617() { - System.Int32 _n = default(System.Int32); - System.Int32* _ids = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GenTransformFeedbacks(_n,_ids); -} -static unsafe void Test_GenTransformFeedbacks_35618() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _ids = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.GenTransformFeedbacks(_n,_ids); -} -static unsafe void Test_GenTransformFeedbacks_35619() { - System.Int32 _n = default(System.Int32); - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.GenTransformFeedbacks(_n,out _ids); -} -static unsafe void Test_GenTransformFeedbacks_35620() { - System.Int32 _n = default(System.Int32); - System.UInt32* _ids = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.GenTransformFeedbacks(_n,_ids); -} -static unsafe void Test_GenVertexArray_35621() { - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.GenVertexArray(); -} -static unsafe void Test_GenVertexArrays_35622() { - System.Int32 _n = default(System.Int32); - System.Int32[] _arrays = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GenVertexArrays(_n,_arrays); -} -static unsafe void Test_GenVertexArrays_35623() { - System.Int32 _n = default(System.Int32); - System.Int32 _arrays = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GenVertexArrays(_n,out _arrays); -} -static unsafe void Test_GenVertexArrays_35624() { - System.Int32 _n = default(System.Int32); - System.Int32* _arrays = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GenVertexArrays(_n,_arrays); -} -static unsafe void Test_GenVertexArrays_35625() { - System.Int32 _n = default(System.Int32); - System.UInt32[] _arrays = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.GenVertexArrays(_n,_arrays); -} -static unsafe void Test_GenVertexArrays_35626() { - System.Int32 _n = default(System.Int32); - System.UInt32 _arrays = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.GenVertexArrays(_n,out _arrays); -} -static unsafe void Test_GenVertexArrays_35627() { - System.Int32 _n = default(System.Int32); - System.UInt32* _arrays = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.GenVertexArrays(_n,_arrays); -} -static unsafe void Test_GetActiveAtomicCounterBuffer_35628() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufferIndex = default(System.Int32); - OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter _pname = default(OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetActiveAtomicCounterBuffer(_program,_bufferIndex,_pname,_params); -} -static unsafe void Test_GetActiveAtomicCounterBuffer_35629() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufferIndex = default(System.Int32); - OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter _pname = default(OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetActiveAtomicCounterBuffer(_program,_bufferIndex,_pname,out _params); -} -static unsafe void Test_GetActiveAtomicCounterBuffer_35630() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufferIndex = default(System.Int32); - OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter _pname = default(OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetActiveAtomicCounterBuffer(_program,_bufferIndex,_pname,_params); -} -static unsafe void Test_GetActiveAtomicCounterBuffer_35631() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _bufferIndex = default(System.UInt32); - OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter _pname = default(OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetActiveAtomicCounterBuffer(_program,_bufferIndex,_pname,_params); -} -static unsafe void Test_GetActiveAtomicCounterBuffer_35632() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _bufferIndex = default(System.UInt32); - OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter _pname = default(OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetActiveAtomicCounterBuffer(_program,_bufferIndex,_pname,out _params); -} -static unsafe void Test_GetActiveAtomicCounterBuffer_35633() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _bufferIndex = default(System.UInt32); - OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter _pname = default(OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetActiveAtomicCounterBuffer(_program,_bufferIndex,_pname,_params); -} -static unsafe void Test_GetActiveAttrib_35634() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.ActiveAttribType _type = default(OpenTK.Graphics.OpenGL4.ActiveAttribType); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetActiveAttrib(_program,_index,_bufSize,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetActiveAttrib_35635() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.OpenGL4.ActiveAttribType* _type = default(OpenTK.Graphics.OpenGL4.ActiveAttribType*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetActiveAttrib(_program,_index,_bufSize,_length,_size,_type,_name); -} -static unsafe void Test_GetActiveAttrib_35636() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.ActiveAttribType _type = default(OpenTK.Graphics.OpenGL4.ActiveAttribType); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetActiveAttrib(_program,_index,_bufSize,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetActiveAttrib_35637() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.OpenGL4.ActiveAttribType* _type = default(OpenTK.Graphics.OpenGL4.ActiveAttribType*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetActiveAttrib(_program,_index,_bufSize,_length,_size,_type,_name); -} -static unsafe void Test_GetActiveSubroutineName_35638() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL4.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL4.ShaderType); - System.Int32 _index = default(System.Int32); - System.Int32 _bufsize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetActiveSubroutineName(_program,_shadertype,_index,_bufsize,out _length,_name); -} -static unsafe void Test_GetActiveSubroutineName_35639() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL4.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL4.ShaderType); - System.Int32 _index = default(System.Int32); - System.Int32 _bufsize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetActiveSubroutineName(_program,_shadertype,_index,_bufsize,_length,_name); -} -static unsafe void Test_GetActiveSubroutineName_35640() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL4.ShaderType); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufsize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetActiveSubroutineName(_program,_shadertype,_index,_bufsize,out _length,_name); -} -static unsafe void Test_GetActiveSubroutineName_35641() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL4.ShaderType); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufsize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetActiveSubroutineName(_program,_shadertype,_index,_bufsize,_length,_name); -} -static unsafe void Test_GetActiveSubroutineUniform_35642() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL4.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL4.ShaderType); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter _pname = default(OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter); - System.Int32[] _values = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetActiveSubroutineUniform(_program,_shadertype,_index,_pname,_values); -} -static unsafe void Test_GetActiveSubroutineUniform_35643() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL4.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL4.ShaderType); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter _pname = default(OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter); - System.Int32 _values = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetActiveSubroutineUniform(_program,_shadertype,_index,_pname,out _values); -} -static unsafe void Test_GetActiveSubroutineUniform_35644() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL4.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL4.ShaderType); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter _pname = default(OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter); - System.Int32* _values = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetActiveSubroutineUniform(_program,_shadertype,_index,_pname,_values); -} -static unsafe void Test_GetActiveSubroutineUniform_35645() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL4.ShaderType); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter _pname = default(OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter); - System.Int32[] _values = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetActiveSubroutineUniform(_program,_shadertype,_index,_pname,_values); -} -static unsafe void Test_GetActiveSubroutineUniform_35646() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL4.ShaderType); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter _pname = default(OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter); - System.Int32 _values = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetActiveSubroutineUniform(_program,_shadertype,_index,_pname,out _values); -} -static unsafe void Test_GetActiveSubroutineUniform_35647() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL4.ShaderType); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter _pname = default(OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter); - System.Int32* _values = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetActiveSubroutineUniform(_program,_shadertype,_index,_pname,_values); -} -static unsafe void Test_GetActiveSubroutineUniformName_35648() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL4.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL4.ShaderType); - System.Int32 _index = default(System.Int32); - System.Int32 _bufsize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetActiveSubroutineUniformName(_program,_shadertype,_index,_bufsize,out _length,_name); -} -static unsafe void Test_GetActiveSubroutineUniformName_35649() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL4.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL4.ShaderType); - System.Int32 _index = default(System.Int32); - System.Int32 _bufsize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetActiveSubroutineUniformName(_program,_shadertype,_index,_bufsize,_length,_name); -} -static unsafe void Test_GetActiveSubroutineUniformName_35650() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL4.ShaderType); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufsize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetActiveSubroutineUniformName(_program,_shadertype,_index,_bufsize,out _length,_name); -} -static unsafe void Test_GetActiveSubroutineUniformName_35651() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL4.ShaderType); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufsize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetActiveSubroutineUniformName(_program,_shadertype,_index,_bufsize,_length,_name); -} -static unsafe void Test_GetActiveUniform_35652() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.ActiveUniformType _type = default(OpenTK.Graphics.OpenGL4.ActiveUniformType); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetActiveUniform(_program,_index,_bufSize,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetActiveUniform_35653() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.OpenGL4.ActiveUniformType* _type = default(OpenTK.Graphics.OpenGL4.ActiveUniformType*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetActiveUniform(_program,_index,_bufSize,_length,_size,_type,_name); -} -static unsafe void Test_GetActiveUniform_35654() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.ActiveUniformType _type = default(OpenTK.Graphics.OpenGL4.ActiveUniformType); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetActiveUniform(_program,_index,_bufSize,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetActiveUniform_35655() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.OpenGL4.ActiveUniformType* _type = default(OpenTK.Graphics.OpenGL4.ActiveUniformType*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetActiveUniform(_program,_index,_bufSize,_length,_size,_type,_name); -} -static unsafe void Test_GetActiveUniformBlock_35656() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformBlockIndex = default(System.Int32); - OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter _pname = default(OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetActiveUniformBlock(_program,_uniformBlockIndex,_pname,_params); -} -static unsafe void Test_GetActiveUniformBlock_35657() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformBlockIndex = default(System.Int32); - OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter _pname = default(OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetActiveUniformBlock(_program,_uniformBlockIndex,_pname,out _params); -} -static unsafe void Test_GetActiveUniformBlock_35658() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformBlockIndex = default(System.Int32); - OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter _pname = default(OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetActiveUniformBlock(_program,_uniformBlockIndex,_pname,_params); -} -static unsafe void Test_GetActiveUniformBlock_35659() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _uniformBlockIndex = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter _pname = default(OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetActiveUniformBlock(_program,_uniformBlockIndex,_pname,_params); -} -static unsafe void Test_GetActiveUniformBlock_35660() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _uniformBlockIndex = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter _pname = default(OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetActiveUniformBlock(_program,_uniformBlockIndex,_pname,out _params); -} -static unsafe void Test_GetActiveUniformBlock_35661() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _uniformBlockIndex = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter _pname = default(OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetActiveUniformBlock(_program,_uniformBlockIndex,_pname,_params); -} -static unsafe void Test_GetActiveUniformBlockName_35662() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformBlockIndex = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _uniformBlockName = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetActiveUniformBlockName(_program,_uniformBlockIndex,_bufSize,out _length,_uniformBlockName); -} -static unsafe void Test_GetActiveUniformBlockName_35663() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformBlockIndex = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _uniformBlockName = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetActiveUniformBlockName(_program,_uniformBlockIndex,_bufSize,_length,_uniformBlockName); -} -static unsafe void Test_GetActiveUniformBlockName_35664() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _uniformBlockIndex = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _uniformBlockName = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetActiveUniformBlockName(_program,_uniformBlockIndex,_bufSize,out _length,_uniformBlockName); -} -static unsafe void Test_GetActiveUniformBlockName_35665() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _uniformBlockIndex = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _uniformBlockName = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetActiveUniformBlockName(_program,_uniformBlockIndex,_bufSize,_length,_uniformBlockName); -} -static unsafe void Test_GetActiveUniformName_35666() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformIndex = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _uniformName = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetActiveUniformName(_program,_uniformIndex,_bufSize,out _length,_uniformName); -} -static unsafe void Test_GetActiveUniformName_35667() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformIndex = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _uniformName = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetActiveUniformName(_program,_uniformIndex,_bufSize,_length,_uniformName); -} -static unsafe void Test_GetActiveUniformName_35668() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _uniformIndex = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _uniformName = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetActiveUniformName(_program,_uniformIndex,_bufSize,out _length,_uniformName); -} -static unsafe void Test_GetActiveUniformName_35669() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _uniformIndex = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _uniformName = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetActiveUniformName(_program,_uniformIndex,_bufSize,_length,_uniformName); -} -static unsafe void Test_GetActiveUniforms_35670() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformCount = default(System.Int32); - System.Int32[] _uniformIndices = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.ActiveUniformParameter _pname = default(OpenTK.Graphics.OpenGL4.ActiveUniformParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetActiveUniforms(_program,_uniformCount,_uniformIndices,_pname,_params); -} -static unsafe void Test_GetActiveUniforms_35671() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformCount = default(System.Int32); - System.Int32 _uniformIndices = default(System.Int32); - OpenTK.Graphics.OpenGL4.ActiveUniformParameter _pname = default(OpenTK.Graphics.OpenGL4.ActiveUniformParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetActiveUniforms(_program,_uniformCount,ref _uniformIndices,_pname,out _params); -} -static unsafe void Test_GetActiveUniforms_35672() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformCount = default(System.Int32); - System.Int32* _uniformIndices = default(System.Int32*); - OpenTK.Graphics.OpenGL4.ActiveUniformParameter _pname = default(OpenTK.Graphics.OpenGL4.ActiveUniformParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetActiveUniforms(_program,_uniformCount,_uniformIndices,_pname,_params); -} -static unsafe void Test_GetActiveUniforms_35673() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _uniformCount = default(System.Int32); - System.UInt32[] _uniformIndices = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.ActiveUniformParameter _pname = default(OpenTK.Graphics.OpenGL4.ActiveUniformParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetActiveUniforms(_program,_uniformCount,_uniformIndices,_pname,_params); -} -static unsafe void Test_GetActiveUniforms_35674() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _uniformCount = default(System.Int32); - System.UInt32 _uniformIndices = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ActiveUniformParameter _pname = default(OpenTK.Graphics.OpenGL4.ActiveUniformParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetActiveUniforms(_program,_uniformCount,ref _uniformIndices,_pname,out _params); -} -static unsafe void Test_GetActiveUniforms_35675() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _uniformCount = default(System.Int32); - System.UInt32* _uniformIndices = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.ActiveUniformParameter _pname = default(OpenTK.Graphics.OpenGL4.ActiveUniformParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetActiveUniforms(_program,_uniformCount,_uniformIndices,_pname,_params); -} -static unsafe void Test_GetAttachedShaders_35676() { - System.Int32 _program = default(System.Int32); - System.Int32 _maxCount = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _shaders = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetAttachedShaders(_program,_maxCount,out _count,_shaders); -} -static unsafe void Test_GetAttachedShaders_35677() { - System.Int32 _program = default(System.Int32); - System.Int32 _maxCount = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _shaders = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetAttachedShaders(_program,_maxCount,out _count,out _shaders); -} -static unsafe void Test_GetAttachedShaders_35678() { - System.Int32 _program = default(System.Int32); - System.Int32 _maxCount = default(System.Int32); - System.Int32* _count = default(System.Int32*); - System.Int32* _shaders = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetAttachedShaders(_program,_maxCount,_count,_shaders); -} -static unsafe void Test_GetAttachedShaders_35679() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _maxCount = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _shaders = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.GetAttachedShaders(_program,_maxCount,out _count,_shaders); -} -static unsafe void Test_GetAttachedShaders_35680() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _maxCount = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32 _shaders = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.GetAttachedShaders(_program,_maxCount,out _count,out _shaders); -} -static unsafe void Test_GetAttachedShaders_35681() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _maxCount = default(System.Int32); - System.Int32* _count = default(System.Int32*); - System.UInt32* _shaders = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.GetAttachedShaders(_program,_maxCount,_count,_shaders); -} -static unsafe void Test_GetAttribLocation_35682() { - System.Int32 _program = default(System.Int32); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.GetAttribLocation(_program,_name); -} -static unsafe void Test_GetAttribLocation_35683() { - System.UInt32 _program = default(System.UInt32); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.GetAttribLocation(_program,_name); -} -static unsafe void Test_GetBoolean_35684() { - OpenTK.Graphics.OpenGL4.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL4.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Boolean[] _data = default(System.Boolean[]); - OpenTK.Graphics.OpenGL4.GL.GetBoolean(_target,_index,_data); -} -static unsafe void Test_GetBoolean_35685() { - OpenTK.Graphics.OpenGL4.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL4.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Boolean _data = default(System.Boolean); - OpenTK.Graphics.OpenGL4.GL.GetBoolean(_target,_index,out _data); -} -static unsafe void Test_GetBoolean_35686() { - OpenTK.Graphics.OpenGL4.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL4.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Boolean* _data = default(System.Boolean*); - OpenTK.Graphics.OpenGL4.GL.GetBoolean(_target,_index,_data); -} -static unsafe void Test_GetBoolean_35687() { - OpenTK.Graphics.OpenGL4.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL4.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Boolean[] _data = default(System.Boolean[]); - OpenTK.Graphics.OpenGL4.GL.GetBoolean(_target,_index,_data); -} -static unsafe void Test_GetBoolean_35688() { - OpenTK.Graphics.OpenGL4.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL4.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Boolean _data = default(System.Boolean); - OpenTK.Graphics.OpenGL4.GL.GetBoolean(_target,_index,out _data); -} -static unsafe void Test_GetBoolean_35689() { - OpenTK.Graphics.OpenGL4.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL4.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Boolean* _data = default(System.Boolean*); - OpenTK.Graphics.OpenGL4.GL.GetBoolean(_target,_index,_data); -} -static unsafe void Test_GetBoolean_35690() { - OpenTK.Graphics.OpenGL4.GetPName _pname = default(OpenTK.Graphics.OpenGL4.GetPName); - System.Boolean r = OpenTK.Graphics.OpenGL4.GL.GetBoolean(_pname); -} -static unsafe void Test_GetBoolean_35691() { - OpenTK.Graphics.OpenGL4.GetPName _pname = default(OpenTK.Graphics.OpenGL4.GetPName); - System.Boolean[] _data = default(System.Boolean[]); - OpenTK.Graphics.OpenGL4.GL.GetBoolean(_pname,_data); -} -static unsafe void Test_GetBoolean_35692() { - OpenTK.Graphics.OpenGL4.GetPName _pname = default(OpenTK.Graphics.OpenGL4.GetPName); - System.Boolean _data = default(System.Boolean); - OpenTK.Graphics.OpenGL4.GL.GetBoolean(_pname,out _data); -} -static unsafe void Test_GetBoolean_35693() { - OpenTK.Graphics.OpenGL4.GetPName _pname = default(OpenTK.Graphics.OpenGL4.GetPName); - System.Boolean* _data = default(System.Boolean*); - OpenTK.Graphics.OpenGL4.GL.GetBoolean(_pname,_data); -} -static unsafe void Test_GetBufferParameter_35694() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - OpenTK.Graphics.OpenGL4.BufferParameterName _pname = default(OpenTK.Graphics.OpenGL4.BufferParameterName); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.OpenGL4.GL.GetBufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetBufferParameter_35695() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - OpenTK.Graphics.OpenGL4.BufferParameterName _pname = default(OpenTK.Graphics.OpenGL4.BufferParameterName); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.OpenGL4.GL.GetBufferParameter(_target,_pname,out _params); -} -static unsafe void Test_GetBufferParameter_35696() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - OpenTK.Graphics.OpenGL4.BufferParameterName _pname = default(OpenTK.Graphics.OpenGL4.BufferParameterName); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.OpenGL4.GL.GetBufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetBufferParameter_35697() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - OpenTK.Graphics.OpenGL4.BufferParameterName _pname = default(OpenTK.Graphics.OpenGL4.BufferParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetBufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetBufferParameter_35698() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - OpenTK.Graphics.OpenGL4.BufferParameterName _pname = default(OpenTK.Graphics.OpenGL4.BufferParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetBufferParameter(_target,_pname,out _params); -} -static unsafe void Test_GetBufferParameter_35699() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - OpenTK.Graphics.OpenGL4.BufferParameterName _pname = default(OpenTK.Graphics.OpenGL4.BufferParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetBufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_35700() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - OpenTK.Graphics.OpenGL4.BufferPointer _pname = default(OpenTK.Graphics.OpenGL4.BufferPointer); - System.IntPtr _params = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_35701() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - OpenTK.Graphics.OpenGL4.BufferPointer _pname = default(OpenTK.Graphics.OpenGL4.BufferPointer); - int[] _params = default(int[]); - OpenTK.Graphics.OpenGL4.GL.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_35702() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - OpenTK.Graphics.OpenGL4.BufferPointer _pname = default(OpenTK.Graphics.OpenGL4.BufferPointer); - int[,] _params = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_35703() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - OpenTK.Graphics.OpenGL4.BufferPointer _pname = default(OpenTK.Graphics.OpenGL4.BufferPointer); - int[,,] _params = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.GetBufferPointer(_target,_pname,_params); -} -static unsafe void Test_GetBufferPointer_35704() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - OpenTK.Graphics.OpenGL4.BufferPointer _pname = default(OpenTK.Graphics.OpenGL4.BufferPointer); - int _params = default(int); - OpenTK.Graphics.OpenGL4.GL.GetBufferPointer(_target,_pname,ref _params); -} -static unsafe void Test_GetBufferSubData_35705() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.GetBufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_GetBufferSubData_35706() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL4.GL.GetBufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_GetBufferSubData_35707() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.GetBufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_GetBufferSubData_35708() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.GetBufferSubData(_target,_offset,_size,_data); -} -static unsafe void Test_GetBufferSubData_35709() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - int _data = default(int); - OpenTK.Graphics.OpenGL4.GL.GetBufferSubData(_target,_offset,_size,ref _data); -} -static unsafe void Test_GetColorTable_35710() { - OpenTK.Graphics.OpenGL4.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL4.ColorTableTarget); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - System.IntPtr _table = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.GetColorTable(_target,_format,_type,_table); -} -static unsafe void Test_GetColorTable_35711() { - OpenTK.Graphics.OpenGL4.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL4.ColorTableTarget); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[] _table = default(int[]); - OpenTK.Graphics.OpenGL4.GL.GetColorTable(_target,_format,_type,_table); -} -static unsafe void Test_GetColorTable_35712() { - OpenTK.Graphics.OpenGL4.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL4.ColorTableTarget); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,] _table = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.GetColorTable(_target,_format,_type,_table); -} -static unsafe void Test_GetColorTable_35713() { - OpenTK.Graphics.OpenGL4.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL4.ColorTableTarget); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,,] _table = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.GetColorTable(_target,_format,_type,_table); -} -static unsafe void Test_GetColorTable_35714() { - OpenTK.Graphics.OpenGL4.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL4.ColorTableTarget); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int _table = default(int); - OpenTK.Graphics.OpenGL4.GL.GetColorTable(_target,_format,_type,ref _table); -} -static unsafe void Test_GetColorTableParameter_35715() { - OpenTK.Graphics.OpenGL4.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL4.ColorTableTarget); - OpenTK.Graphics.OpenGL4.GetColorTableParameterPName _pname = default(OpenTK.Graphics.OpenGL4.GetColorTableParameterPName); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.GetColorTableParameter(_target,_pname,_params); -} -static unsafe void Test_GetColorTableParameter_35716() { - OpenTK.Graphics.OpenGL4.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL4.ColorTableTarget); - OpenTK.Graphics.OpenGL4.GetColorTableParameterPName _pname = default(OpenTK.Graphics.OpenGL4.GetColorTableParameterPName); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.GetColorTableParameter(_target,_pname,out _params); -} -static unsafe void Test_GetColorTableParameter_35717() { - OpenTK.Graphics.OpenGL4.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL4.ColorTableTarget); - OpenTK.Graphics.OpenGL4.GetColorTableParameterPName _pname = default(OpenTK.Graphics.OpenGL4.GetColorTableParameterPName); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.GetColorTableParameter(_target,_pname,_params); -} -static unsafe void Test_GetColorTableParameter_35718() { - OpenTK.Graphics.OpenGL4.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL4.ColorTableTarget); - OpenTK.Graphics.OpenGL4.GetColorTableParameterPName _pname = default(OpenTK.Graphics.OpenGL4.GetColorTableParameterPName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetColorTableParameter(_target,_pname,_params); -} -static unsafe void Test_GetColorTableParameter_35719() { - OpenTK.Graphics.OpenGL4.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL4.ColorTableTarget); - OpenTK.Graphics.OpenGL4.GetColorTableParameterPName _pname = default(OpenTK.Graphics.OpenGL4.GetColorTableParameterPName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetColorTableParameter(_target,_pname,out _params); -} -static unsafe void Test_GetColorTableParameter_35720() { - OpenTK.Graphics.OpenGL4.ColorTableTarget _target = default(OpenTK.Graphics.OpenGL4.ColorTableTarget); - OpenTK.Graphics.OpenGL4.GetColorTableParameterPName _pname = default(OpenTK.Graphics.OpenGL4.GetColorTableParameterPName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetColorTableParameter(_target,_pname,_params); -} -static unsafe void Test_GetCompressedTexImage_35721() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - System.IntPtr _img = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.GetCompressedTexImage(_target,_level,_img); -} -static unsafe void Test_GetCompressedTexImage_35722() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - int[] _img = default(int[]); - OpenTK.Graphics.OpenGL4.GL.GetCompressedTexImage(_target,_level,_img); -} -static unsafe void Test_GetCompressedTexImage_35723() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - int[,] _img = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.GetCompressedTexImage(_target,_level,_img); -} -static unsafe void Test_GetCompressedTexImage_35724() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - int[,,] _img = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.GetCompressedTexImage(_target,_level,_img); -} -static unsafe void Test_GetCompressedTexImage_35725() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - int _img = default(int); - OpenTK.Graphics.OpenGL4.GL.GetCompressedTexImage(_target,_level,ref _img); -} -static unsafe void Test_GetConvolutionFilter_35726() { - OpenTK.Graphics.OpenGL4.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL4.ConvolutionTarget); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - System.IntPtr _image = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.GetConvolutionFilter(_target,_format,_type,_image); -} -static unsafe void Test_GetConvolutionFilter_35727() { - OpenTK.Graphics.OpenGL4.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL4.ConvolutionTarget); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[] _image = default(int[]); - OpenTK.Graphics.OpenGL4.GL.GetConvolutionFilter(_target,_format,_type,_image); -} -static unsafe void Test_GetConvolutionFilter_35728() { - OpenTK.Graphics.OpenGL4.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL4.ConvolutionTarget); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,] _image = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.GetConvolutionFilter(_target,_format,_type,_image); -} -static unsafe void Test_GetConvolutionFilter_35729() { - OpenTK.Graphics.OpenGL4.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL4.ConvolutionTarget); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,,] _image = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.GetConvolutionFilter(_target,_format,_type,_image); -} -static unsafe void Test_GetConvolutionFilter_35730() { - OpenTK.Graphics.OpenGL4.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL4.ConvolutionTarget); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int _image = default(int); - OpenTK.Graphics.OpenGL4.GL.GetConvolutionFilter(_target,_format,_type,ref _image); -} -static unsafe void Test_GetConvolutionParameter_35731() { - OpenTK.Graphics.OpenGL4.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL4.ConvolutionTarget); - OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName _pname = default(OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.GetConvolutionParameter(_target,_pname,_params); -} -static unsafe void Test_GetConvolutionParameter_35732() { - OpenTK.Graphics.OpenGL4.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL4.ConvolutionTarget); - OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName _pname = default(OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.GetConvolutionParameter(_target,_pname,out _params); -} -static unsafe void Test_GetConvolutionParameter_35733() { - OpenTK.Graphics.OpenGL4.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL4.ConvolutionTarget); - OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName _pname = default(OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.GetConvolutionParameter(_target,_pname,_params); -} -static unsafe void Test_GetConvolutionParameter_35734() { - OpenTK.Graphics.OpenGL4.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL4.ConvolutionTarget); - OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName _pname = default(OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetConvolutionParameter(_target,_pname,_params); -} -static unsafe void Test_GetConvolutionParameter_35735() { - OpenTK.Graphics.OpenGL4.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL4.ConvolutionTarget); - OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName _pname = default(OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetConvolutionParameter(_target,_pname,out _params); -} -static unsafe void Test_GetConvolutionParameter_35736() { - OpenTK.Graphics.OpenGL4.ConvolutionTarget _target = default(OpenTK.Graphics.OpenGL4.ConvolutionTarget); - OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName _pname = default(OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetConvolutionParameter(_target,_pname,_params); -} -static unsafe void Test_GetDebugMessageLog_35737() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.OpenGL4.DebugSource[] _sources = default(OpenTK.Graphics.OpenGL4.DebugSource[]); - OpenTK.Graphics.OpenGL4.DebugType[] _types = default(OpenTK.Graphics.OpenGL4.DebugType[]); - System.Int32[] _ids = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.DebugSeverity[] _severities = default(OpenTK.Graphics.OpenGL4.DebugSeverity[]); - System.Int32[] _lengths = default(System.Int32[]); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_35738() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.OpenGL4.DebugSource _sources = default(OpenTK.Graphics.OpenGL4.DebugSource); - OpenTK.Graphics.OpenGL4.DebugType _types = default(OpenTK.Graphics.OpenGL4.DebugType); - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.OpenGL4.DebugSeverity _severities = default(OpenTK.Graphics.OpenGL4.DebugSeverity); - System.Int32 _lengths = default(System.Int32); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.GetDebugMessageLog(_count,_bufSize,out _sources,out _types,out _ids,out _severities,out _lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_35739() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.OpenGL4.DebugSource* _sources = default(OpenTK.Graphics.OpenGL4.DebugSource*); - OpenTK.Graphics.OpenGL4.DebugType* _types = default(OpenTK.Graphics.OpenGL4.DebugType*); - System.Int32* _ids = default(System.Int32*); - OpenTK.Graphics.OpenGL4.DebugSeverity* _severities = default(OpenTK.Graphics.OpenGL4.DebugSeverity*); - System.Int32* _lengths = default(System.Int32*); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_35740() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.OpenGL4.DebugSource[] _sources = default(OpenTK.Graphics.OpenGL4.DebugSource[]); - OpenTK.Graphics.OpenGL4.DebugType[] _types = default(OpenTK.Graphics.OpenGL4.DebugType[]); - System.UInt32[] _ids = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.DebugSeverity[] _severities = default(OpenTK.Graphics.OpenGL4.DebugSeverity[]); - System.Int32[] _lengths = default(System.Int32[]); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_35741() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.OpenGL4.DebugSource _sources = default(OpenTK.Graphics.OpenGL4.DebugSource); - OpenTK.Graphics.OpenGL4.DebugType _types = default(OpenTK.Graphics.OpenGL4.DebugType); - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.OpenGL4.DebugSeverity _severities = default(OpenTK.Graphics.OpenGL4.DebugSeverity); - System.Int32 _lengths = default(System.Int32); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.GetDebugMessageLog(_count,_bufSize,out _sources,out _types,out _ids,out _severities,out _lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_35742() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.OpenGL4.DebugSource* _sources = default(OpenTK.Graphics.OpenGL4.DebugSource*); - OpenTK.Graphics.OpenGL4.DebugType* _types = default(OpenTK.Graphics.OpenGL4.DebugType*); - System.UInt32* _ids = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.DebugSeverity* _severities = default(OpenTK.Graphics.OpenGL4.DebugSeverity*); - System.Int32* _lengths = default(System.Int32*); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDouble_35743() { - OpenTK.Graphics.OpenGL4.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL4.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Double[] _data = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.GetDouble(_target,_index,_data); -} -static unsafe void Test_GetDouble_35744() { - OpenTK.Graphics.OpenGL4.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL4.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Double _data = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.GetDouble(_target,_index,out _data); -} -static unsafe void Test_GetDouble_35745() { - OpenTK.Graphics.OpenGL4.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL4.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Double* _data = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.GetDouble(_target,_index,_data); -} -static unsafe void Test_GetDouble_35746() { - OpenTK.Graphics.OpenGL4.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL4.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Double[] _data = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.GetDouble(_target,_index,_data); -} -static unsafe void Test_GetDouble_35747() { - OpenTK.Graphics.OpenGL4.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL4.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Double _data = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.GetDouble(_target,_index,out _data); -} -static unsafe void Test_GetDouble_35748() { - OpenTK.Graphics.OpenGL4.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL4.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Double* _data = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.GetDouble(_target,_index,_data); -} -static unsafe void Test_GetDouble_35749() { - OpenTK.Graphics.OpenGL4.GetPName _pname = default(OpenTK.Graphics.OpenGL4.GetPName); - System.Double r = OpenTK.Graphics.OpenGL4.GL.GetDouble(_pname); -} -static unsafe void Test_GetDouble_35750() { - OpenTK.Graphics.OpenGL4.GetPName _pname = default(OpenTK.Graphics.OpenGL4.GetPName); - System.Double[] _data = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.GetDouble(_pname,_data); -} -static unsafe void Test_GetDouble_35751() { - OpenTK.Graphics.OpenGL4.GetPName _pname = default(OpenTK.Graphics.OpenGL4.GetPName); - System.Double _data = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.GetDouble(_pname,out _data); -} -static unsafe void Test_GetDouble_35752() { - OpenTK.Graphics.OpenGL4.GetPName _pname = default(OpenTK.Graphics.OpenGL4.GetPName); - System.Double* _data = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.GetDouble(_pname,_data); -} -static unsafe void Test_GetError_35753() { - OpenTK.Graphics.OpenGL4.ErrorCode r = OpenTK.Graphics.OpenGL4.GL.GetError(); -} -static unsafe void Test_GetFloat_35754() { - OpenTK.Graphics.OpenGL4.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL4.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Single[] _data = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.GetFloat(_target,_index,_data); -} -static unsafe void Test_GetFloat_35755() { - OpenTK.Graphics.OpenGL4.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL4.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Single _data = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.GetFloat(_target,_index,out _data); -} -static unsafe void Test_GetFloat_35756() { - OpenTK.Graphics.OpenGL4.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL4.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Single* _data = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.GetFloat(_target,_index,_data); -} -static unsafe void Test_GetFloat_35757() { - OpenTK.Graphics.OpenGL4.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL4.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Single[] _data = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.GetFloat(_target,_index,_data); -} -static unsafe void Test_GetFloat_35758() { - OpenTK.Graphics.OpenGL4.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL4.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Single _data = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.GetFloat(_target,_index,out _data); -} -static unsafe void Test_GetFloat_35759() { - OpenTK.Graphics.OpenGL4.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL4.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Single* _data = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.GetFloat(_target,_index,_data); -} -static unsafe void Test_GetFloat_35760() { - OpenTK.Graphics.OpenGL4.GetPName _pname = default(OpenTK.Graphics.OpenGL4.GetPName); - System.Single r = OpenTK.Graphics.OpenGL4.GL.GetFloat(_pname); -} -static unsafe void Test_GetFloat_35761() { - OpenTK.Graphics.OpenGL4.GetPName _pname = default(OpenTK.Graphics.OpenGL4.GetPName); - System.Single[] _data = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.GetFloat(_pname,_data); -} -static unsafe void Test_GetFloat_35762() { - OpenTK.Graphics.OpenGL4.GetPName _pname = default(OpenTK.Graphics.OpenGL4.GetPName); - System.Single _data = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.GetFloat(_pname,out _data); -} -static unsafe void Test_GetFloat_35763() { - OpenTK.Graphics.OpenGL4.GetPName _pname = default(OpenTK.Graphics.OpenGL4.GetPName); - System.Single* _data = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.GetFloat(_pname,_data); -} -static unsafe void Test_GetFragDataIndex_35764() { - System.Int32 _program = default(System.Int32); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.GetFragDataIndex(_program,_name); -} -static unsafe void Test_GetFragDataIndex_35765() { - System.UInt32 _program = default(System.UInt32); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.GetFragDataIndex(_program,_name); -} -static unsafe void Test_GetFragDataLocation_35766() { - System.Int32 _program = default(System.Int32); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.GetFragDataLocation(_program,_name); -} -static unsafe void Test_GetFragDataLocation_35767() { - System.UInt32 _program = default(System.UInt32); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.GetFragDataLocation(_program,_name); -} -static unsafe void Test_GetFramebufferAttachmentParameter_35768() { - OpenTK.Graphics.OpenGL4.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL4.FramebufferTarget); - OpenTK.Graphics.OpenGL4.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL4.FramebufferAttachment); - OpenTK.Graphics.OpenGL4.FramebufferParameterName _pname = default(OpenTK.Graphics.OpenGL4.FramebufferParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetFramebufferAttachmentParameter(_target,_attachment,_pname,_params); -} -static unsafe void Test_GetFramebufferAttachmentParameter_35769() { - OpenTK.Graphics.OpenGL4.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL4.FramebufferTarget); - OpenTK.Graphics.OpenGL4.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL4.FramebufferAttachment); - OpenTK.Graphics.OpenGL4.FramebufferParameterName _pname = default(OpenTK.Graphics.OpenGL4.FramebufferParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetFramebufferAttachmentParameter(_target,_attachment,_pname,out _params); -} -static unsafe void Test_GetFramebufferAttachmentParameter_35770() { - OpenTK.Graphics.OpenGL4.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL4.FramebufferTarget); - OpenTK.Graphics.OpenGL4.FramebufferAttachment _attachment = default(OpenTK.Graphics.OpenGL4.FramebufferAttachment); - OpenTK.Graphics.OpenGL4.FramebufferParameterName _pname = default(OpenTK.Graphics.OpenGL4.FramebufferParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetFramebufferAttachmentParameter(_target,_attachment,_pname,_params); -} -static unsafe void Test_GetFramebufferParameter_35771() { - OpenTK.Graphics.OpenGL4.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL4.FramebufferTarget); - OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter _pname = default(OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetFramebufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetFramebufferParameter_35772() { - OpenTK.Graphics.OpenGL4.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL4.FramebufferTarget); - OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter _pname = default(OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetFramebufferParameter(_target,_pname,out _params); -} -static unsafe void Test_GetFramebufferParameter_35773() { - OpenTK.Graphics.OpenGL4.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL4.FramebufferTarget); - OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter _pname = default(OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetFramebufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetHistogram_35774() { - OpenTK.Graphics.OpenGL4.HistogramTarget _target = default(OpenTK.Graphics.OpenGL4.HistogramTarget); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - System.IntPtr _values = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.GetHistogram(_target,_reset,_format,_type,_values); -} -static unsafe void Test_GetHistogram_35775() { - OpenTK.Graphics.OpenGL4.HistogramTarget _target = default(OpenTK.Graphics.OpenGL4.HistogramTarget); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[] _values = default(int[]); - OpenTK.Graphics.OpenGL4.GL.GetHistogram(_target,_reset,_format,_type,_values); -} -static unsafe void Test_GetHistogram_35776() { - OpenTK.Graphics.OpenGL4.HistogramTarget _target = default(OpenTK.Graphics.OpenGL4.HistogramTarget); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,] _values = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.GetHistogram(_target,_reset,_format,_type,_values); -} -static unsafe void Test_GetHistogram_35777() { - OpenTK.Graphics.OpenGL4.HistogramTarget _target = default(OpenTK.Graphics.OpenGL4.HistogramTarget); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,,] _values = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.GetHistogram(_target,_reset,_format,_type,_values); -} -static unsafe void Test_GetHistogram_35778() { - OpenTK.Graphics.OpenGL4.HistogramTarget _target = default(OpenTK.Graphics.OpenGL4.HistogramTarget); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int _values = default(int); - OpenTK.Graphics.OpenGL4.GL.GetHistogram(_target,_reset,_format,_type,ref _values); -} -static unsafe void Test_GetHistogramParameter_35779() { - OpenTK.Graphics.OpenGL4.HistogramTarget _target = default(OpenTK.Graphics.OpenGL4.HistogramTarget); - OpenTK.Graphics.OpenGL4.GetHistogramParameterPName _pname = default(OpenTK.Graphics.OpenGL4.GetHistogramParameterPName); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.GetHistogramParameter(_target,_pname,_params); -} -static unsafe void Test_GetHistogramParameter_35780() { - OpenTK.Graphics.OpenGL4.HistogramTarget _target = default(OpenTK.Graphics.OpenGL4.HistogramTarget); - OpenTK.Graphics.OpenGL4.GetHistogramParameterPName _pname = default(OpenTK.Graphics.OpenGL4.GetHistogramParameterPName); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.GetHistogramParameter(_target,_pname,out _params); -} -static unsafe void Test_GetHistogramParameter_35781() { - OpenTK.Graphics.OpenGL4.HistogramTarget _target = default(OpenTK.Graphics.OpenGL4.HistogramTarget); - OpenTK.Graphics.OpenGL4.GetHistogramParameterPName _pname = default(OpenTK.Graphics.OpenGL4.GetHistogramParameterPName); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.GetHistogramParameter(_target,_pname,_params); -} -static unsafe void Test_GetHistogramParameter_35782() { - OpenTK.Graphics.OpenGL4.HistogramTarget _target = default(OpenTK.Graphics.OpenGL4.HistogramTarget); - OpenTK.Graphics.OpenGL4.GetHistogramParameterPName _pname = default(OpenTK.Graphics.OpenGL4.GetHistogramParameterPName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetHistogramParameter(_target,_pname,_params); -} -static unsafe void Test_GetHistogramParameter_35783() { - OpenTK.Graphics.OpenGL4.HistogramTarget _target = default(OpenTK.Graphics.OpenGL4.HistogramTarget); - OpenTK.Graphics.OpenGL4.GetHistogramParameterPName _pname = default(OpenTK.Graphics.OpenGL4.GetHistogramParameterPName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetHistogramParameter(_target,_pname,out _params); -} -static unsafe void Test_GetHistogramParameter_35784() { - OpenTK.Graphics.OpenGL4.HistogramTarget _target = default(OpenTK.Graphics.OpenGL4.HistogramTarget); - OpenTK.Graphics.OpenGL4.GetHistogramParameterPName _pname = default(OpenTK.Graphics.OpenGL4.GetHistogramParameterPName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetHistogramParameter(_target,_pname,_params); -} -static unsafe void Test_GetInteger64_35785() { - OpenTK.Graphics.OpenGL4.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL4.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Int64[] _data = default(System.Int64[]); - OpenTK.Graphics.OpenGL4.GL.GetInteger64(_target,_index,_data); -} -static unsafe void Test_GetInteger64_35786() { - OpenTK.Graphics.OpenGL4.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL4.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Int64 _data = default(System.Int64); - OpenTK.Graphics.OpenGL4.GL.GetInteger64(_target,_index,out _data); -} -static unsafe void Test_GetInteger64_35787() { - OpenTK.Graphics.OpenGL4.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL4.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Int64* _data = default(System.Int64*); - OpenTK.Graphics.OpenGL4.GL.GetInteger64(_target,_index,_data); -} -static unsafe void Test_GetInteger64_35788() { - OpenTK.Graphics.OpenGL4.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL4.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Int64[] _data = default(System.Int64[]); - OpenTK.Graphics.OpenGL4.GL.GetInteger64(_target,_index,_data); -} -static unsafe void Test_GetInteger64_35789() { - OpenTK.Graphics.OpenGL4.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL4.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Int64 _data = default(System.Int64); - OpenTK.Graphics.OpenGL4.GL.GetInteger64(_target,_index,out _data); -} -static unsafe void Test_GetInteger64_35790() { - OpenTK.Graphics.OpenGL4.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL4.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Int64* _data = default(System.Int64*); - OpenTK.Graphics.OpenGL4.GL.GetInteger64(_target,_index,_data); -} -static unsafe void Test_GetInteger64_35791() { - OpenTK.Graphics.OpenGL4.GetPName _pname = default(OpenTK.Graphics.OpenGL4.GetPName); - System.Int64 r = OpenTK.Graphics.OpenGL4.GL.GetInteger64(_pname); -} -static unsafe void Test_GetInteger64_35792() { - OpenTK.Graphics.OpenGL4.GetPName _pname = default(OpenTK.Graphics.OpenGL4.GetPName); - System.Int64[] _data = default(System.Int64[]); - OpenTK.Graphics.OpenGL4.GL.GetInteger64(_pname,_data); -} -static unsafe void Test_GetInteger64_35793() { - OpenTK.Graphics.OpenGL4.GetPName _pname = default(OpenTK.Graphics.OpenGL4.GetPName); - System.Int64 _data = default(System.Int64); - OpenTK.Graphics.OpenGL4.GL.GetInteger64(_pname,out _data); -} -static unsafe void Test_GetInteger64_35794() { - OpenTK.Graphics.OpenGL4.GetPName _pname = default(OpenTK.Graphics.OpenGL4.GetPName); - System.Int64* _data = default(System.Int64*); - OpenTK.Graphics.OpenGL4.GL.GetInteger64(_pname,_data); -} -static unsafe void Test_GetInteger_35795() { - OpenTK.Graphics.OpenGL4.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL4.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Int32[] _data = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetInteger(_target,_index,_data); -} -static unsafe void Test_GetInteger_35796() { - OpenTK.Graphics.OpenGL4.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL4.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Int32 _data = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetInteger(_target,_index,out _data); -} -static unsafe void Test_GetInteger_35797() { - OpenTK.Graphics.OpenGL4.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL4.GetIndexedPName); - System.Int32 _index = default(System.Int32); - System.Int32* _data = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetInteger(_target,_index,_data); -} -static unsafe void Test_GetInteger_35798() { - OpenTK.Graphics.OpenGL4.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL4.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Int32[] _data = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetInteger(_target,_index,_data); -} -static unsafe void Test_GetInteger_35799() { - OpenTK.Graphics.OpenGL4.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL4.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Int32 _data = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetInteger(_target,_index,out _data); -} -static unsafe void Test_GetInteger_35800() { - OpenTK.Graphics.OpenGL4.GetIndexedPName _target = default(OpenTK.Graphics.OpenGL4.GetIndexedPName); - System.UInt32 _index = default(System.UInt32); - System.Int32* _data = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetInteger(_target,_index,_data); -} -static unsafe void Test_GetInteger_35801() { - OpenTK.Graphics.OpenGL4.GetPName _pname = default(OpenTK.Graphics.OpenGL4.GetPName); - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.GetInteger(_pname); -} -static unsafe void Test_GetInteger_35802() { - OpenTK.Graphics.OpenGL4.GetPName _pname = default(OpenTK.Graphics.OpenGL4.GetPName); - System.Int32[] _data = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetInteger(_pname,_data); -} -static unsafe void Test_GetInteger_35803() { - OpenTK.Graphics.OpenGL4.GetPName _pname = default(OpenTK.Graphics.OpenGL4.GetPName); - System.Int32 _data = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetInteger(_pname,out _data); -} -static unsafe void Test_GetInteger_35804() { - OpenTK.Graphics.OpenGL4.GetPName _pname = default(OpenTK.Graphics.OpenGL4.GetPName); - System.Int32* _data = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetInteger(_pname,_data); -} -static unsafe void Test_GetInternalformat_35805() { - OpenTK.Graphics.OpenGL4.ImageTarget _target = default(OpenTK.Graphics.OpenGL4.ImageTarget); - OpenTK.Graphics.OpenGL4.SizedInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.SizedInternalFormat); - OpenTK.Graphics.OpenGL4.InternalFormatParameter _pname = default(OpenTK.Graphics.OpenGL4.InternalFormatParameter); - System.Int32 _bufSize = default(System.Int32); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.OpenGL4.GL.GetInternalformat(_target,_internalformat,_pname,_bufSize,_params); -} -static unsafe void Test_GetInternalformat_35806() { - OpenTK.Graphics.OpenGL4.ImageTarget _target = default(OpenTK.Graphics.OpenGL4.ImageTarget); - OpenTK.Graphics.OpenGL4.SizedInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.SizedInternalFormat); - OpenTK.Graphics.OpenGL4.InternalFormatParameter _pname = default(OpenTK.Graphics.OpenGL4.InternalFormatParameter); - System.Int32 _bufSize = default(System.Int32); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.OpenGL4.GL.GetInternalformat(_target,_internalformat,_pname,_bufSize,out _params); -} -static unsafe void Test_GetInternalformat_35807() { - OpenTK.Graphics.OpenGL4.ImageTarget _target = default(OpenTK.Graphics.OpenGL4.ImageTarget); - OpenTK.Graphics.OpenGL4.SizedInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.SizedInternalFormat); - OpenTK.Graphics.OpenGL4.InternalFormatParameter _pname = default(OpenTK.Graphics.OpenGL4.InternalFormatParameter); - System.Int32 _bufSize = default(System.Int32); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.OpenGL4.GL.GetInternalformat(_target,_internalformat,_pname,_bufSize,_params); -} -static unsafe void Test_GetInternalformat_35808() { - OpenTK.Graphics.OpenGL4.ImageTarget _target = default(OpenTK.Graphics.OpenGL4.ImageTarget); - OpenTK.Graphics.OpenGL4.SizedInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.SizedInternalFormat); - OpenTK.Graphics.OpenGL4.InternalFormatParameter _pname = default(OpenTK.Graphics.OpenGL4.InternalFormatParameter); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetInternalformat(_target,_internalformat,_pname,_bufSize,_params); -} -static unsafe void Test_GetInternalformat_35809() { - OpenTK.Graphics.OpenGL4.ImageTarget _target = default(OpenTK.Graphics.OpenGL4.ImageTarget); - OpenTK.Graphics.OpenGL4.SizedInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.SizedInternalFormat); - OpenTK.Graphics.OpenGL4.InternalFormatParameter _pname = default(OpenTK.Graphics.OpenGL4.InternalFormatParameter); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetInternalformat(_target,_internalformat,_pname,_bufSize,out _params); -} -static unsafe void Test_GetInternalformat_35810() { - OpenTK.Graphics.OpenGL4.ImageTarget _target = default(OpenTK.Graphics.OpenGL4.ImageTarget); - OpenTK.Graphics.OpenGL4.SizedInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.SizedInternalFormat); - OpenTK.Graphics.OpenGL4.InternalFormatParameter _pname = default(OpenTK.Graphics.OpenGL4.InternalFormatParameter); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetInternalformat(_target,_internalformat,_pname,_bufSize,_params); -} -static unsafe void Test_GetMinmax_35811() { - OpenTK.Graphics.OpenGL4.MinmaxTarget _target = default(OpenTK.Graphics.OpenGL4.MinmaxTarget); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - System.IntPtr _values = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.GetMinmax(_target,_reset,_format,_type,_values); -} -static unsafe void Test_GetMinmax_35812() { - OpenTK.Graphics.OpenGL4.MinmaxTarget _target = default(OpenTK.Graphics.OpenGL4.MinmaxTarget); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[] _values = default(int[]); - OpenTK.Graphics.OpenGL4.GL.GetMinmax(_target,_reset,_format,_type,_values); -} -static unsafe void Test_GetMinmax_35813() { - OpenTK.Graphics.OpenGL4.MinmaxTarget _target = default(OpenTK.Graphics.OpenGL4.MinmaxTarget); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,] _values = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.GetMinmax(_target,_reset,_format,_type,_values); -} -static unsafe void Test_GetMinmax_35814() { - OpenTK.Graphics.OpenGL4.MinmaxTarget _target = default(OpenTK.Graphics.OpenGL4.MinmaxTarget); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,,] _values = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.GetMinmax(_target,_reset,_format,_type,_values); -} -static unsafe void Test_GetMinmax_35815() { - OpenTK.Graphics.OpenGL4.MinmaxTarget _target = default(OpenTK.Graphics.OpenGL4.MinmaxTarget); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int _values = default(int); - OpenTK.Graphics.OpenGL4.GL.GetMinmax(_target,_reset,_format,_type,ref _values); -} -static unsafe void Test_GetMinmaxParameter_35816() { - OpenTK.Graphics.OpenGL4.MinmaxTarget _target = default(OpenTK.Graphics.OpenGL4.MinmaxTarget); - OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName _pname = default(OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.GetMinmaxParameter(_target,_pname,_params); -} -static unsafe void Test_GetMinmaxParameter_35817() { - OpenTK.Graphics.OpenGL4.MinmaxTarget _target = default(OpenTK.Graphics.OpenGL4.MinmaxTarget); - OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName _pname = default(OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.GetMinmaxParameter(_target,_pname,out _params); -} -static unsafe void Test_GetMinmaxParameter_35818() { - OpenTK.Graphics.OpenGL4.MinmaxTarget _target = default(OpenTK.Graphics.OpenGL4.MinmaxTarget); - OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName _pname = default(OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.GetMinmaxParameter(_target,_pname,_params); -} -static unsafe void Test_GetMinmaxParameter_35819() { - OpenTK.Graphics.OpenGL4.MinmaxTarget _target = default(OpenTK.Graphics.OpenGL4.MinmaxTarget); - OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName _pname = default(OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetMinmaxParameter(_target,_pname,_params); -} -static unsafe void Test_GetMinmaxParameter_35820() { - OpenTK.Graphics.OpenGL4.MinmaxTarget _target = default(OpenTK.Graphics.OpenGL4.MinmaxTarget); - OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName _pname = default(OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetMinmaxParameter(_target,_pname,out _params); -} -static unsafe void Test_GetMinmaxParameter_35821() { - OpenTK.Graphics.OpenGL4.MinmaxTarget _target = default(OpenTK.Graphics.OpenGL4.MinmaxTarget); - OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName _pname = default(OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetMinmaxParameter(_target,_pname,_params); -} -static unsafe void Test_GetMultisample_35822() { - OpenTK.Graphics.OpenGL4.GetMultisamplePName _pname = default(OpenTK.Graphics.OpenGL4.GetMultisamplePName); - System.Int32 _index = default(System.Int32); - System.Single[] _val = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.GetMultisample(_pname,_index,_val); -} -static unsafe void Test_GetMultisample_35823() { - OpenTK.Graphics.OpenGL4.GetMultisamplePName _pname = default(OpenTK.Graphics.OpenGL4.GetMultisamplePName); - System.Int32 _index = default(System.Int32); - System.Single _val = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.GetMultisample(_pname,_index,out _val); -} -static unsafe void Test_GetMultisample_35824() { - OpenTK.Graphics.OpenGL4.GetMultisamplePName _pname = default(OpenTK.Graphics.OpenGL4.GetMultisamplePName); - System.Int32 _index = default(System.Int32); - System.Single* _val = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.GetMultisample(_pname,_index,_val); -} -static unsafe void Test_GetMultisample_35825() { - OpenTK.Graphics.OpenGL4.GetMultisamplePName _pname = default(OpenTK.Graphics.OpenGL4.GetMultisamplePName); - System.UInt32 _index = default(System.UInt32); - System.Single[] _val = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.GetMultisample(_pname,_index,_val); -} -static unsafe void Test_GetMultisample_35826() { - OpenTK.Graphics.OpenGL4.GetMultisamplePName _pname = default(OpenTK.Graphics.OpenGL4.GetMultisamplePName); - System.UInt32 _index = default(System.UInt32); - System.Single _val = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.GetMultisample(_pname,_index,out _val); -} -static unsafe void Test_GetMultisample_35827() { - OpenTK.Graphics.OpenGL4.GetMultisamplePName _pname = default(OpenTK.Graphics.OpenGL4.GetMultisamplePName); - System.UInt32 _index = default(System.UInt32); - System.Single* _val = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.GetMultisample(_pname,_index,_val); -} -static unsafe void Test_GetObjectLabel_35828() { - OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier); - System.Int32 _name = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_35829() { - OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier); - System.Int32 _name = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetObjectLabel(_identifier,_name,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectLabel_35830() { - OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier); - System.Int32 _name = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_35831() { - OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier); - System.UInt32 _name = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_35832() { - OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier); - System.UInt32 _name = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetObjectLabel(_identifier,_name,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectLabel_35833() { - OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier); - System.UInt32 _name = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_35834() { - System.IntPtr _ptr = default(System.IntPtr); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_35835() { - System.IntPtr _ptr = default(System.IntPtr); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetObjectPtrLabel(_ptr,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectPtrLabel_35836() { - System.IntPtr _ptr = default(System.IntPtr); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_35837() { - int[] _ptr = default(int[]); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_35838() { - int[] _ptr = default(int[]); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetObjectPtrLabel(_ptr,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectPtrLabel_35839() { - int[] _ptr = default(int[]); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_35840() { - int[,] _ptr = default(int[,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_35841() { - int[,] _ptr = default(int[,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetObjectPtrLabel(_ptr,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectPtrLabel_35842() { - int[,] _ptr = default(int[,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_35843() { - int[,,] _ptr = default(int[,,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_35844() { - int[,,] _ptr = default(int[,,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetObjectPtrLabel(_ptr,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectPtrLabel_35845() { - int[,,] _ptr = default(int[,,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_35846() { - int _ptr = default(int); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetObjectPtrLabel(ref _ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_35847() { - int _ptr = default(int); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetObjectPtrLabel(ref _ptr,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectPtrLabel_35848() { - int _ptr = default(int); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetObjectPtrLabel(ref _ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetPointer_35849() { - OpenTK.Graphics.OpenGL4.GetPointervPName _pname = default(OpenTK.Graphics.OpenGL4.GetPointervPName); - System.IntPtr _params = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_35850() { - OpenTK.Graphics.OpenGL4.GetPointervPName _pname = default(OpenTK.Graphics.OpenGL4.GetPointervPName); - int[] _params = default(int[]); - OpenTK.Graphics.OpenGL4.GL.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_35851() { - OpenTK.Graphics.OpenGL4.GetPointervPName _pname = default(OpenTK.Graphics.OpenGL4.GetPointervPName); - int[,] _params = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_35852() { - OpenTK.Graphics.OpenGL4.GetPointervPName _pname = default(OpenTK.Graphics.OpenGL4.GetPointervPName); - int[,,] _params = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_35853() { - OpenTK.Graphics.OpenGL4.GetPointervPName _pname = default(OpenTK.Graphics.OpenGL4.GetPointervPName); - int _params = default(int); - OpenTK.Graphics.OpenGL4.GL.GetPointer(_pname,ref _params); -} -static unsafe void Test_GetProgramBinary_35854() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryFormat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - System.IntPtr _binary = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_35855() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryFormat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - int[] _binary = default(int[]); - OpenTK.Graphics.OpenGL4.GL.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_35856() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryFormat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - int[,] _binary = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_35857() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryFormat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - int[,,] _binary = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_35858() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryFormat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - int _binary = default(int); - OpenTK.Graphics.OpenGL4.GL.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,ref _binary); -} -static unsafe void Test_GetProgramBinary_35859() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.OpenGL4.BinaryFormat* _binaryFormat = default(OpenTK.Graphics.OpenGL4.BinaryFormat*); - System.IntPtr _binary = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_35860() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.OpenGL4.BinaryFormat* _binaryFormat = default(OpenTK.Graphics.OpenGL4.BinaryFormat*); - int[] _binary = default(int[]); - OpenTK.Graphics.OpenGL4.GL.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_35861() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.OpenGL4.BinaryFormat* _binaryFormat = default(OpenTK.Graphics.OpenGL4.BinaryFormat*); - int[,] _binary = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_35862() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.OpenGL4.BinaryFormat* _binaryFormat = default(OpenTK.Graphics.OpenGL4.BinaryFormat*); - int[,,] _binary = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_35863() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.OpenGL4.BinaryFormat* _binaryFormat = default(OpenTK.Graphics.OpenGL4.BinaryFormat*); - int _binary = default(int); - OpenTK.Graphics.OpenGL4.GL.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,ref _binary); -} -static unsafe void Test_GetProgramBinary_35864() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryFormat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - System.IntPtr _binary = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_35865() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryFormat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - int[] _binary = default(int[]); - OpenTK.Graphics.OpenGL4.GL.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_35866() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryFormat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - int[,] _binary = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_35867() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryFormat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - int[,,] _binary = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_35868() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryFormat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - int _binary = default(int); - OpenTK.Graphics.OpenGL4.GL.GetProgramBinary(_program,_bufSize,out _length,out _binaryFormat,ref _binary); -} -static unsafe void Test_GetProgramBinary_35869() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.OpenGL4.BinaryFormat* _binaryFormat = default(OpenTK.Graphics.OpenGL4.BinaryFormat*); - System.IntPtr _binary = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_35870() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.OpenGL4.BinaryFormat* _binaryFormat = default(OpenTK.Graphics.OpenGL4.BinaryFormat*); - int[] _binary = default(int[]); - OpenTK.Graphics.OpenGL4.GL.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_35871() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.OpenGL4.BinaryFormat* _binaryFormat = default(OpenTK.Graphics.OpenGL4.BinaryFormat*); - int[,] _binary = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_35872() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.OpenGL4.BinaryFormat* _binaryFormat = default(OpenTK.Graphics.OpenGL4.BinaryFormat*); - int[,,] _binary = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,_binary); -} -static unsafe void Test_GetProgramBinary_35873() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.OpenGL4.BinaryFormat* _binaryFormat = default(OpenTK.Graphics.OpenGL4.BinaryFormat*); - int _binary = default(int); - OpenTK.Graphics.OpenGL4.GL.GetProgramBinary(_program,_bufSize,_length,_binaryFormat,ref _binary); -} -static unsafe void Test_GetProgramInfoLog_35874() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetProgramInfoLog(_program,_bufSize,out _length,_infoLog); -} -static unsafe void Test_GetProgramInfoLog_35875() { - System.Int32 _program = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetProgramInfoLog(_program,_bufSize,_length,_infoLog); -} -static unsafe void Test_GetProgramInfoLog_35876() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetProgramInfoLog(_program,_bufSize,out _length,_infoLog); -} -static unsafe void Test_GetProgramInfoLog_35877() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetProgramInfoLog(_program,_bufSize,_length,_infoLog); -} -static unsafe void Test_GetProgramInterface_35878() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL4.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL4.ProgramInterface); - OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter _pname = default(OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetProgramInterface(_program,_programInterface,_pname,_params); -} -static unsafe void Test_GetProgramInterface_35879() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL4.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL4.ProgramInterface); - OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter _pname = default(OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetProgramInterface(_program,_programInterface,_pname,out _params); -} -static unsafe void Test_GetProgramInterface_35880() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL4.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL4.ProgramInterface); - OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter _pname = default(OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetProgramInterface(_program,_programInterface,_pname,_params); -} -static unsafe void Test_GetProgramInterface_35881() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL4.ProgramInterface); - OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter _pname = default(OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetProgramInterface(_program,_programInterface,_pname,_params); -} -static unsafe void Test_GetProgramInterface_35882() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL4.ProgramInterface); - OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter _pname = default(OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetProgramInterface(_program,_programInterface,_pname,out _params); -} -static unsafe void Test_GetProgramInterface_35883() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL4.ProgramInterface); - OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter _pname = default(OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetProgramInterface(_program,_programInterface,_pname,_params); -} -static unsafe void Test_GetProgram_35884() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL4.GetProgramParameterName _pname = default(OpenTK.Graphics.OpenGL4.GetProgramParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetProgram(_program,_pname,_params); -} -static unsafe void Test_GetProgram_35885() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL4.GetProgramParameterName _pname = default(OpenTK.Graphics.OpenGL4.GetProgramParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetProgram(_program,_pname,out _params); -} -static unsafe void Test_GetProgram_35886() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL4.GetProgramParameterName _pname = default(OpenTK.Graphics.OpenGL4.GetProgramParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetProgram(_program,_pname,_params); -} -static unsafe void Test_GetProgram_35887() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GetProgramParameterName _pname = default(OpenTK.Graphics.OpenGL4.GetProgramParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetProgram(_program,_pname,_params); -} -static unsafe void Test_GetProgram_35888() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GetProgramParameterName _pname = default(OpenTK.Graphics.OpenGL4.GetProgramParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetProgram(_program,_pname,out _params); -} -static unsafe void Test_GetProgram_35889() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GetProgramParameterName _pname = default(OpenTK.Graphics.OpenGL4.GetProgramParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetProgram(_program,_pname,_params); -} -static unsafe void Test_GetProgramPipelineInfoLog_35890() { - System.Int32 _pipeline = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetProgramPipelineInfoLog(_pipeline,_bufSize,out _length,_infoLog); -} -static unsafe void Test_GetProgramPipelineInfoLog_35891() { - System.Int32 _pipeline = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetProgramPipelineInfoLog(_pipeline,_bufSize,_length,_infoLog); -} -static unsafe void Test_GetProgramPipelineInfoLog_35892() { - System.UInt32 _pipeline = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetProgramPipelineInfoLog(_pipeline,_bufSize,out _length,_infoLog); -} -static unsafe void Test_GetProgramPipelineInfoLog_35893() { - System.UInt32 _pipeline = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetProgramPipelineInfoLog(_pipeline,_bufSize,_length,_infoLog); -} -static unsafe void Test_GetProgramPipeline_35894() { - System.Int32 _pipeline = default(System.Int32); - OpenTK.Graphics.OpenGL4.ProgramPipelineParameter _pname = default(OpenTK.Graphics.OpenGL4.ProgramPipelineParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetProgramPipeline(_pipeline,_pname,_params); -} -static unsafe void Test_GetProgramPipeline_35895() { - System.Int32 _pipeline = default(System.Int32); - OpenTK.Graphics.OpenGL4.ProgramPipelineParameter _pname = default(OpenTK.Graphics.OpenGL4.ProgramPipelineParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetProgramPipeline(_pipeline,_pname,out _params); -} -static unsafe void Test_GetProgramPipeline_35896() { - System.Int32 _pipeline = default(System.Int32); - OpenTK.Graphics.OpenGL4.ProgramPipelineParameter _pname = default(OpenTK.Graphics.OpenGL4.ProgramPipelineParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetProgramPipeline(_pipeline,_pname,_params); -} -static unsafe void Test_GetProgramPipeline_35897() { - System.UInt32 _pipeline = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ProgramPipelineParameter _pname = default(OpenTK.Graphics.OpenGL4.ProgramPipelineParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetProgramPipeline(_pipeline,_pname,_params); -} -static unsafe void Test_GetProgramPipeline_35898() { - System.UInt32 _pipeline = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ProgramPipelineParameter _pname = default(OpenTK.Graphics.OpenGL4.ProgramPipelineParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetProgramPipeline(_pipeline,_pname,out _params); -} -static unsafe void Test_GetProgramPipeline_35899() { - System.UInt32 _pipeline = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ProgramPipelineParameter _pname = default(OpenTK.Graphics.OpenGL4.ProgramPipelineParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetProgramPipeline(_pipeline,_pname,_params); -} -static unsafe void Test_GetProgramResourceIndex_35900() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL4.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL4.ProgramInterface); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.GetProgramResourceIndex(_program,_programInterface,_name); -} -static unsafe void Test_GetProgramResourceIndex_35901() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL4.ProgramInterface); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.GetProgramResourceIndex(_program,_programInterface,_name); -} -static unsafe void Test_GetProgramResource_35902() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL4.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL4.ProgramInterface); - System.Int32 _index = default(System.Int32); - System.Int32 _propCount = default(System.Int32); - OpenTK.Graphics.OpenGL4.ProgramProperty[] _props = default(OpenTK.Graphics.OpenGL4.ProgramProperty[]); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetProgramResource(_program,_programInterface,_index,_propCount,_props,_bufSize,_length,_params); -} -static unsafe void Test_GetProgramResource_35903() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL4.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL4.ProgramInterface); - System.Int32 _index = default(System.Int32); - System.Int32 _propCount = default(System.Int32); - OpenTK.Graphics.OpenGL4.ProgramProperty[] _props = default(OpenTK.Graphics.OpenGL4.ProgramProperty[]); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetProgramResource(_program,_programInterface,_index,_propCount,_props,_bufSize,out _length,_params); -} -static unsafe void Test_GetProgramResource_35904() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL4.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL4.ProgramInterface); - System.Int32 _index = default(System.Int32); - System.Int32 _propCount = default(System.Int32); - OpenTK.Graphics.OpenGL4.ProgramProperty _props = default(OpenTK.Graphics.OpenGL4.ProgramProperty); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetProgramResource(_program,_programInterface,_index,_propCount,ref _props,_bufSize,out _length,out _params); -} -static unsafe void Test_GetProgramResource_35905() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL4.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL4.ProgramInterface); - System.Int32 _index = default(System.Int32); - System.Int32 _propCount = default(System.Int32); - OpenTK.Graphics.OpenGL4.ProgramProperty* _props = default(OpenTK.Graphics.OpenGL4.ProgramProperty*); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetProgramResource(_program,_programInterface,_index,_propCount,_props,_bufSize,_length,_params); -} -static unsafe void Test_GetProgramResource_35906() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL4.ProgramInterface); - System.UInt32 _index = default(System.UInt32); - System.Int32 _propCount = default(System.Int32); - OpenTK.Graphics.OpenGL4.ProgramProperty[] _props = default(OpenTK.Graphics.OpenGL4.ProgramProperty[]); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetProgramResource(_program,_programInterface,_index,_propCount,_props,_bufSize,_length,_params); -} -static unsafe void Test_GetProgramResource_35907() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL4.ProgramInterface); - System.UInt32 _index = default(System.UInt32); - System.Int32 _propCount = default(System.Int32); - OpenTK.Graphics.OpenGL4.ProgramProperty[] _props = default(OpenTK.Graphics.OpenGL4.ProgramProperty[]); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetProgramResource(_program,_programInterface,_index,_propCount,_props,_bufSize,out _length,_params); -} -static unsafe void Test_GetProgramResource_35908() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL4.ProgramInterface); - System.UInt32 _index = default(System.UInt32); - System.Int32 _propCount = default(System.Int32); - OpenTK.Graphics.OpenGL4.ProgramProperty _props = default(OpenTK.Graphics.OpenGL4.ProgramProperty); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetProgramResource(_program,_programInterface,_index,_propCount,ref _props,_bufSize,out _length,out _params); -} -static unsafe void Test_GetProgramResource_35909() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL4.ProgramInterface); - System.UInt32 _index = default(System.UInt32); - System.Int32 _propCount = default(System.Int32); - OpenTK.Graphics.OpenGL4.ProgramProperty* _props = default(OpenTK.Graphics.OpenGL4.ProgramProperty*); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetProgramResource(_program,_programInterface,_index,_propCount,_props,_bufSize,_length,_params); -} -static unsafe void Test_GetProgramResourceLocation_35910() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL4.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL4.ProgramInterface); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.GetProgramResourceLocation(_program,_programInterface,_name); -} -static unsafe void Test_GetProgramResourceLocation_35911() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL4.ProgramInterface); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.GetProgramResourceLocation(_program,_programInterface,_name); -} -static unsafe void Test_GetProgramResourceLocationIndex_35912() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL4.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL4.ProgramInterface); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.GetProgramResourceLocationIndex(_program,_programInterface,_name); -} -static unsafe void Test_GetProgramResourceLocationIndex_35913() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL4.ProgramInterface); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.GetProgramResourceLocationIndex(_program,_programInterface,_name); -} -static unsafe void Test_GetProgramResourceName_35914() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL4.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL4.ProgramInterface); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetProgramResourceName(_program,_programInterface,_index,_bufSize,_length,_name); -} -static unsafe void Test_GetProgramResourceName_35915() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL4.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL4.ProgramInterface); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetProgramResourceName(_program,_programInterface,_index,_bufSize,out _length,_name); -} -static unsafe void Test_GetProgramResourceName_35916() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL4.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL4.ProgramInterface); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetProgramResourceName(_program,_programInterface,_index,_bufSize,_length,_name); -} -static unsafe void Test_GetProgramResourceName_35917() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL4.ProgramInterface); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetProgramResourceName(_program,_programInterface,_index,_bufSize,_length,_name); -} -static unsafe void Test_GetProgramResourceName_35918() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL4.ProgramInterface); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetProgramResourceName(_program,_programInterface,_index,_bufSize,out _length,_name); -} -static unsafe void Test_GetProgramResourceName_35919() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ProgramInterface _programInterface = default(OpenTK.Graphics.OpenGL4.ProgramInterface); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetProgramResourceName(_program,_programInterface,_index,_bufSize,_length,_name); -} -static unsafe void Test_GetProgramStage_35920() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL4.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL4.ShaderType); - OpenTK.Graphics.OpenGL4.ProgramStageParameter _pname = default(OpenTK.Graphics.OpenGL4.ProgramStageParameter); - System.Int32 _values = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetProgramStage(_program,_shadertype,_pname,out _values); -} -static unsafe void Test_GetProgramStage_35921() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL4.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL4.ShaderType); - OpenTK.Graphics.OpenGL4.ProgramStageParameter _pname = default(OpenTK.Graphics.OpenGL4.ProgramStageParameter); - System.Int32* _values = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetProgramStage(_program,_shadertype,_pname,_values); -} -static unsafe void Test_GetProgramStage_35922() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL4.ShaderType); - OpenTK.Graphics.OpenGL4.ProgramStageParameter _pname = default(OpenTK.Graphics.OpenGL4.ProgramStageParameter); - System.Int32 _values = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetProgramStage(_program,_shadertype,_pname,out _values); -} -static unsafe void Test_GetProgramStage_35923() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL4.ShaderType); - OpenTK.Graphics.OpenGL4.ProgramStageParameter _pname = default(OpenTK.Graphics.OpenGL4.ProgramStageParameter); - System.Int32* _values = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetProgramStage(_program,_shadertype,_pname,_values); -} -static unsafe void Test_GetQueryIndexed_35924() { - OpenTK.Graphics.OpenGL4.QueryTarget _target = default(OpenTK.Graphics.OpenGL4.QueryTarget); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.GetQueryParam _pname = default(OpenTK.Graphics.OpenGL4.GetQueryParam); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetQueryIndexed(_target,_index,_pname,_params); -} -static unsafe void Test_GetQueryIndexed_35925() { - OpenTK.Graphics.OpenGL4.QueryTarget _target = default(OpenTK.Graphics.OpenGL4.QueryTarget); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.GetQueryParam _pname = default(OpenTK.Graphics.OpenGL4.GetQueryParam); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetQueryIndexed(_target,_index,_pname,out _params); -} -static unsafe void Test_GetQueryIndexed_35926() { - OpenTK.Graphics.OpenGL4.QueryTarget _target = default(OpenTK.Graphics.OpenGL4.QueryTarget); - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.GetQueryParam _pname = default(OpenTK.Graphics.OpenGL4.GetQueryParam); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetQueryIndexed(_target,_index,_pname,_params); -} -static unsafe void Test_GetQueryIndexed_35927() { - OpenTK.Graphics.OpenGL4.QueryTarget _target = default(OpenTK.Graphics.OpenGL4.QueryTarget); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GetQueryParam _pname = default(OpenTK.Graphics.OpenGL4.GetQueryParam); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetQueryIndexed(_target,_index,_pname,_params); -} -static unsafe void Test_GetQueryIndexed_35928() { - OpenTK.Graphics.OpenGL4.QueryTarget _target = default(OpenTK.Graphics.OpenGL4.QueryTarget); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GetQueryParam _pname = default(OpenTK.Graphics.OpenGL4.GetQueryParam); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetQueryIndexed(_target,_index,_pname,out _params); -} -static unsafe void Test_GetQueryIndexed_35929() { - OpenTK.Graphics.OpenGL4.QueryTarget _target = default(OpenTK.Graphics.OpenGL4.QueryTarget); - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GetQueryParam _pname = default(OpenTK.Graphics.OpenGL4.GetQueryParam); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetQueryIndexed(_target,_index,_pname,_params); -} -static unsafe void Test_GetQuery_35930() { - OpenTK.Graphics.OpenGL4.QueryTarget _target = default(OpenTK.Graphics.OpenGL4.QueryTarget); - OpenTK.Graphics.OpenGL4.GetQueryParam _pname = default(OpenTK.Graphics.OpenGL4.GetQueryParam); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetQuery(_target,_pname,_params); -} -static unsafe void Test_GetQuery_35931() { - OpenTK.Graphics.OpenGL4.QueryTarget _target = default(OpenTK.Graphics.OpenGL4.QueryTarget); - OpenTK.Graphics.OpenGL4.GetQueryParam _pname = default(OpenTK.Graphics.OpenGL4.GetQueryParam); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetQuery(_target,_pname,out _params); -} -static unsafe void Test_GetQuery_35932() { - OpenTK.Graphics.OpenGL4.QueryTarget _target = default(OpenTK.Graphics.OpenGL4.QueryTarget); - OpenTK.Graphics.OpenGL4.GetQueryParam _pname = default(OpenTK.Graphics.OpenGL4.GetQueryParam); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetQuery(_target,_pname,_params); -} -static unsafe void Test_GetQueryObject_35933() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL4.GetQueryObjectParam _pname = default(OpenTK.Graphics.OpenGL4.GetQueryObjectParam); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.OpenGL4.GL.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_35934() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL4.GetQueryObjectParam _pname = default(OpenTK.Graphics.OpenGL4.GetQueryObjectParam); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.OpenGL4.GL.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_35935() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL4.GetQueryObjectParam _pname = default(OpenTK.Graphics.OpenGL4.GetQueryObjectParam); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.OpenGL4.GL.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_35936() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GetQueryObjectParam _pname = default(OpenTK.Graphics.OpenGL4.GetQueryObjectParam); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.OpenGL4.GL.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_35937() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GetQueryObjectParam _pname = default(OpenTK.Graphics.OpenGL4.GetQueryObjectParam); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.OpenGL4.GL.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_35938() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GetQueryObjectParam _pname = default(OpenTK.Graphics.OpenGL4.GetQueryObjectParam); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.OpenGL4.GL.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_35939() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL4.GetQueryObjectParam _pname = default(OpenTK.Graphics.OpenGL4.GetQueryObjectParam); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_35940() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL4.GetQueryObjectParam _pname = default(OpenTK.Graphics.OpenGL4.GetQueryObjectParam); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_35941() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL4.GetQueryObjectParam _pname = default(OpenTK.Graphics.OpenGL4.GetQueryObjectParam); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_35942() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GetQueryObjectParam _pname = default(OpenTK.Graphics.OpenGL4.GetQueryObjectParam); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_35943() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GetQueryObjectParam _pname = default(OpenTK.Graphics.OpenGL4.GetQueryObjectParam); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_35944() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GetQueryObjectParam _pname = default(OpenTK.Graphics.OpenGL4.GetQueryObjectParam); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_35945() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GetQueryObjectParam _pname = default(OpenTK.Graphics.OpenGL4.GetQueryObjectParam); - System.UInt64[] _params = default(System.UInt64[]); - OpenTK.Graphics.OpenGL4.GL.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_35946() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GetQueryObjectParam _pname = default(OpenTK.Graphics.OpenGL4.GetQueryObjectParam); - System.UInt64 _params = default(System.UInt64); - OpenTK.Graphics.OpenGL4.GL.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_35947() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GetQueryObjectParam _pname = default(OpenTK.Graphics.OpenGL4.GetQueryObjectParam); - System.UInt64* _params = default(System.UInt64*); - OpenTK.Graphics.OpenGL4.GL.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_35948() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GetQueryObjectParam _pname = default(OpenTK.Graphics.OpenGL4.GetQueryObjectParam); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetQueryObject_35949() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GetQueryObjectParam _pname = default(OpenTK.Graphics.OpenGL4.GetQueryObjectParam); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.GetQueryObject(_id,_pname,out _params); -} -static unsafe void Test_GetQueryObject_35950() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GetQueryObjectParam _pname = default(OpenTK.Graphics.OpenGL4.GetQueryObjectParam); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.GetQueryObject(_id,_pname,_params); -} -static unsafe void Test_GetRenderbufferParameter_35951() { - OpenTK.Graphics.OpenGL4.RenderbufferTarget _target = default(OpenTK.Graphics.OpenGL4.RenderbufferTarget); - OpenTK.Graphics.OpenGL4.RenderbufferParameterName _pname = default(OpenTK.Graphics.OpenGL4.RenderbufferParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetRenderbufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetRenderbufferParameter_35952() { - OpenTK.Graphics.OpenGL4.RenderbufferTarget _target = default(OpenTK.Graphics.OpenGL4.RenderbufferTarget); - OpenTK.Graphics.OpenGL4.RenderbufferParameterName _pname = default(OpenTK.Graphics.OpenGL4.RenderbufferParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetRenderbufferParameter(_target,_pname,out _params); -} -static unsafe void Test_GetRenderbufferParameter_35953() { - OpenTK.Graphics.OpenGL4.RenderbufferTarget _target = default(OpenTK.Graphics.OpenGL4.RenderbufferTarget); - OpenTK.Graphics.OpenGL4.RenderbufferParameterName _pname = default(OpenTK.Graphics.OpenGL4.RenderbufferParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetRenderbufferParameter(_target,_pname,_params); -} -static unsafe void Test_GetSamplerParameter_35954() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL4.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL4.SamplerParameterName); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.GetSamplerParameter(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameter_35955() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL4.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL4.SamplerParameterName); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.GetSamplerParameter(_sampler,_pname,out _params); -} -static unsafe void Test_GetSamplerParameter_35956() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL4.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL4.SamplerParameterName); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.GetSamplerParameter(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameter_35957() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL4.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL4.SamplerParameterName); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.GetSamplerParameter(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameter_35958() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL4.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL4.SamplerParameterName); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.GetSamplerParameter(_sampler,_pname,out _params); -} -static unsafe void Test_GetSamplerParameter_35959() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL4.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL4.SamplerParameterName); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.GetSamplerParameter(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameterI_35960() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL4.All _pname = default(OpenTK.Graphics.OpenGL4.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetSamplerParameterI(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameterI_35961() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL4.All _pname = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetSamplerParameterI(_sampler,_pname,out _params); -} -static unsafe void Test_GetSamplerParameterI_35962() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL4.All _pname = default(OpenTK.Graphics.OpenGL4.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetSamplerParameterI(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameterI_35963() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL4.All _pname = default(OpenTK.Graphics.OpenGL4.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetSamplerParameterI(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameterI_35964() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL4.All _pname = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetSamplerParameterI(_sampler,_pname,out _params); -} -static unsafe void Test_GetSamplerParameterI_35965() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL4.All _pname = default(OpenTK.Graphics.OpenGL4.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetSamplerParameterI(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameterI_35966() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL4.All _pname = default(OpenTK.Graphics.OpenGL4.All); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.GetSamplerParameterI(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameterI_35967() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL4.All _pname = default(OpenTK.Graphics.OpenGL4.All); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.GetSamplerParameterI(_sampler,_pname,out _params); -} -static unsafe void Test_GetSamplerParameterI_35968() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL4.All _pname = default(OpenTK.Graphics.OpenGL4.All); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.GetSamplerParameterI(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameter_35969() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL4.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL4.SamplerParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetSamplerParameter(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameter_35970() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL4.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL4.SamplerParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetSamplerParameter(_sampler,_pname,out _params); -} -static unsafe void Test_GetSamplerParameter_35971() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL4.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL4.SamplerParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetSamplerParameter(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameter_35972() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL4.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL4.SamplerParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetSamplerParameter(_sampler,_pname,_params); -} -static unsafe void Test_GetSamplerParameter_35973() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL4.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL4.SamplerParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetSamplerParameter(_sampler,_pname,out _params); -} -static unsafe void Test_GetSamplerParameter_35974() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL4.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL4.SamplerParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetSamplerParameter(_sampler,_pname,_params); -} -static unsafe void Test_GetSeparableFilter_35975() { - OpenTK.Graphics.OpenGL4.SeparableTarget _target = default(OpenTK.Graphics.OpenGL4.SeparableTarget); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - System.IntPtr _row = default(System.IntPtr); - System.IntPtr _column = default(System.IntPtr); - System.IntPtr _span = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.GetSeparableFilter(_target,_format,_type,_row,_column,_span); -} -static unsafe void Test_GetSeparableFilter_35976() { - OpenTK.Graphics.OpenGL4.SeparableTarget _target = default(OpenTK.Graphics.OpenGL4.SeparableTarget); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[] _row = default(int[]); - int[] _column = default(int[]); - int[] _span = default(int[]); - OpenTK.Graphics.OpenGL4.GL.GetSeparableFilter(_target,_format,_type,_row,_column,_span); -} -static unsafe void Test_GetSeparableFilter_35977() { - OpenTK.Graphics.OpenGL4.SeparableTarget _target = default(OpenTK.Graphics.OpenGL4.SeparableTarget); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,] _row = default(int[,]); - int[,] _column = default(int[,]); - int[,] _span = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.GetSeparableFilter(_target,_format,_type,_row,_column,_span); -} -static unsafe void Test_GetSeparableFilter_35978() { - OpenTK.Graphics.OpenGL4.SeparableTarget _target = default(OpenTK.Graphics.OpenGL4.SeparableTarget); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,,] _row = default(int[,,]); - int[,,] _column = default(int[,,]); - int[,,] _span = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.GetSeparableFilter(_target,_format,_type,_row,_column,_span); -} -static unsafe void Test_GetSeparableFilter_35979() { - OpenTK.Graphics.OpenGL4.SeparableTarget _target = default(OpenTK.Graphics.OpenGL4.SeparableTarget); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int _row = default(int); - int _column = default(int); - int _span = default(int); - OpenTK.Graphics.OpenGL4.GL.GetSeparableFilter(_target,_format,_type,ref _row,ref _column,ref _span); -} -static unsafe void Test_GetShaderInfoLog_35980() { - System.Int32 _shader = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetShaderInfoLog(_shader,_bufSize,out _length,_infoLog); -} -static unsafe void Test_GetShaderInfoLog_35981() { - System.Int32 _shader = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetShaderInfoLog(_shader,_bufSize,_length,_infoLog); -} -static unsafe void Test_GetShaderInfoLog_35982() { - System.UInt32 _shader = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetShaderInfoLog(_shader,_bufSize,out _length,_infoLog); -} -static unsafe void Test_GetShaderInfoLog_35983() { - System.UInt32 _shader = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _infoLog = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetShaderInfoLog(_shader,_bufSize,_length,_infoLog); -} -static unsafe void Test_GetShader_35984() { - System.Int32 _shader = default(System.Int32); - OpenTK.Graphics.OpenGL4.ShaderParameter _pname = default(OpenTK.Graphics.OpenGL4.ShaderParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetShader(_shader,_pname,_params); -} -static unsafe void Test_GetShader_35985() { - System.Int32 _shader = default(System.Int32); - OpenTK.Graphics.OpenGL4.ShaderParameter _pname = default(OpenTK.Graphics.OpenGL4.ShaderParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetShader(_shader,_pname,out _params); -} -static unsafe void Test_GetShader_35986() { - System.Int32 _shader = default(System.Int32); - OpenTK.Graphics.OpenGL4.ShaderParameter _pname = default(OpenTK.Graphics.OpenGL4.ShaderParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetShader(_shader,_pname,_params); -} -static unsafe void Test_GetShader_35987() { - System.UInt32 _shader = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ShaderParameter _pname = default(OpenTK.Graphics.OpenGL4.ShaderParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetShader(_shader,_pname,_params); -} -static unsafe void Test_GetShader_35988() { - System.UInt32 _shader = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ShaderParameter _pname = default(OpenTK.Graphics.OpenGL4.ShaderParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetShader(_shader,_pname,out _params); -} -static unsafe void Test_GetShader_35989() { - System.UInt32 _shader = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ShaderParameter _pname = default(OpenTK.Graphics.OpenGL4.ShaderParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetShader(_shader,_pname,_params); -} -static unsafe void Test_GetShaderPrecisionFormat_35990() { - OpenTK.Graphics.OpenGL4.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL4.ShaderType); - OpenTK.Graphics.OpenGL4.ShaderPrecision _precisiontype = default(OpenTK.Graphics.OpenGL4.ShaderPrecision); - System.Int32[] _range = default(System.Int32[]); - System.Int32[] _precision = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetShaderPrecisionFormat(_shadertype,_precisiontype,_range,_precision); -} -static unsafe void Test_GetShaderPrecisionFormat_35991() { - OpenTK.Graphics.OpenGL4.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL4.ShaderType); - OpenTK.Graphics.OpenGL4.ShaderPrecision _precisiontype = default(OpenTK.Graphics.OpenGL4.ShaderPrecision); - System.Int32 _range = default(System.Int32); - System.Int32 _precision = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetShaderPrecisionFormat(_shadertype,_precisiontype,out _range,out _precision); -} -static unsafe void Test_GetShaderPrecisionFormat_35992() { - OpenTK.Graphics.OpenGL4.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL4.ShaderType); - OpenTK.Graphics.OpenGL4.ShaderPrecision _precisiontype = default(OpenTK.Graphics.OpenGL4.ShaderPrecision); - System.Int32* _range = default(System.Int32*); - System.Int32* _precision = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetShaderPrecisionFormat(_shadertype,_precisiontype,_range,_precision); -} -static unsafe void Test_GetShaderSource_35993() { - System.Int32 _shader = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetShaderSource(_shader,_bufSize,out _length,_source); -} -static unsafe void Test_GetShaderSource_35994() { - System.Int32 _shader = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetShaderSource(_shader,_bufSize,_length,_source); -} -static unsafe void Test_GetShaderSource_35995() { - System.UInt32 _shader = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetShaderSource(_shader,_bufSize,out _length,_source); -} -static unsafe void Test_GetShaderSource_35996() { - System.UInt32 _shader = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _source = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetShaderSource(_shader,_bufSize,_length,_source); -} -static unsafe void Test_GetString_35997() { - OpenTK.Graphics.OpenGL4.StringName _name = default(OpenTK.Graphics.OpenGL4.StringName); - System.String r = OpenTK.Graphics.OpenGL4.GL.GetString(_name); -} -static unsafe void Test_GetString_35998() { - OpenTK.Graphics.OpenGL4.StringNameIndexed _name = default(OpenTK.Graphics.OpenGL4.StringNameIndexed); - System.Int32 _index = default(System.Int32); - System.String r = OpenTK.Graphics.OpenGL4.GL.GetString(_name,_index); -} -static unsafe void Test_GetString_35999() { - OpenTK.Graphics.OpenGL4.StringNameIndexed _name = default(OpenTK.Graphics.OpenGL4.StringNameIndexed); - System.UInt32 _index = default(System.UInt32); - System.String r = OpenTK.Graphics.OpenGL4.GL.GetString(_name,_index); -} -static unsafe void Test_GetSubroutineIndex_36000() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL4.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL4.ShaderType); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.GetSubroutineIndex(_program,_shadertype,_name); -} -static unsafe void Test_GetSubroutineIndex_36001() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL4.ShaderType); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.GetSubroutineIndex(_program,_shadertype,_name); -} -static unsafe void Test_GetSubroutineUniformLocation_36002() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL4.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL4.ShaderType); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.GetSubroutineUniformLocation(_program,_shadertype,_name); -} -static unsafe void Test_GetSubroutineUniformLocation_36003() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL4.ShaderType); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.GetSubroutineUniformLocation(_program,_shadertype,_name); -} -static unsafe void Test_GetSync_36004() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.SyncParameterName _pname = default(OpenTK.Graphics.OpenGL4.SyncParameterName); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32[] _values = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetSync(_sync,_pname,_bufSize,out _length,_values); -} -static unsafe void Test_GetSync_36005() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.SyncParameterName _pname = default(OpenTK.Graphics.OpenGL4.SyncParameterName); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _values = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetSync(_sync,_pname,_bufSize,out _length,out _values); -} -static unsafe void Test_GetSync_36006() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.SyncParameterName _pname = default(OpenTK.Graphics.OpenGL4.SyncParameterName); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _values = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetSync(_sync,_pname,_bufSize,_length,_values); -} -static unsafe void Test_GetTexImage_36007() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.GetTexImage(_target,_level,_format,_type,_pixels); -} -static unsafe void Test_GetTexImage_36008() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL4.GL.GetTexImage(_target,_level,_format,_type,_pixels); -} -static unsafe void Test_GetTexImage_36009() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.GetTexImage(_target,_level,_format,_type,_pixels); -} -static unsafe void Test_GetTexImage_36010() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.GetTexImage(_target,_level,_format,_type,_pixels); -} -static unsafe void Test_GetTexImage_36011() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL4.GL.GetTexImage(_target,_level,_format,_type,ref _pixels); -} -static unsafe void Test_GetTexLevelParameter_36012() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL4.GetTextureParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.GetTexLevelParameter(_target,_level,_pname,_params); -} -static unsafe void Test_GetTexLevelParameter_36013() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL4.GetTextureParameter); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.GetTexLevelParameter(_target,_level,_pname,out _params); -} -static unsafe void Test_GetTexLevelParameter_36014() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL4.GetTextureParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.GetTexLevelParameter(_target,_level,_pname,_params); -} -static unsafe void Test_GetTexLevelParameter_36015() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL4.GetTextureParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetTexLevelParameter(_target,_level,_pname,_params); -} -static unsafe void Test_GetTexLevelParameter_36016() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL4.GetTextureParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetTexLevelParameter(_target,_level,_pname,out _params); -} -static unsafe void Test_GetTexLevelParameter_36017() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL4.GetTextureParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetTexLevelParameter(_target,_level,_pname,_params); -} -static unsafe void Test_GetTexParameter_36018() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - OpenTK.Graphics.OpenGL4.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL4.GetTextureParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.GetTexParameter(_target,_pname,_params); -} -static unsafe void Test_GetTexParameter_36019() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - OpenTK.Graphics.OpenGL4.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL4.GetTextureParameter); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.GetTexParameter(_target,_pname,out _params); -} -static unsafe void Test_GetTexParameter_36020() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - OpenTK.Graphics.OpenGL4.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL4.GetTextureParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.GetTexParameter(_target,_pname,_params); -} -static unsafe void Test_GetTexParameterI_36021() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - OpenTK.Graphics.OpenGL4.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL4.GetTextureParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetTexParameterI(_target,_pname,_params); -} -static unsafe void Test_GetTexParameterI_36022() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - OpenTK.Graphics.OpenGL4.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL4.GetTextureParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetTexParameterI(_target,_pname,out _params); -} -static unsafe void Test_GetTexParameterI_36023() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - OpenTK.Graphics.OpenGL4.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL4.GetTextureParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetTexParameterI(_target,_pname,_params); -} -static unsafe void Test_GetTexParameterI_36024() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - OpenTK.Graphics.OpenGL4.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL4.GetTextureParameter); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.GetTexParameterI(_target,_pname,_params); -} -static unsafe void Test_GetTexParameterI_36025() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - OpenTK.Graphics.OpenGL4.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL4.GetTextureParameter); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.GetTexParameterI(_target,_pname,out _params); -} -static unsafe void Test_GetTexParameterI_36026() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - OpenTK.Graphics.OpenGL4.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL4.GetTextureParameter); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.GetTexParameterI(_target,_pname,_params); -} -static unsafe void Test_GetTexParameter_36027() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - OpenTK.Graphics.OpenGL4.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL4.GetTextureParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetTexParameter(_target,_pname,_params); -} -static unsafe void Test_GetTexParameter_36028() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - OpenTK.Graphics.OpenGL4.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL4.GetTextureParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetTexParameter(_target,_pname,out _params); -} -static unsafe void Test_GetTexParameter_36029() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - OpenTK.Graphics.OpenGL4.GetTextureParameter _pname = default(OpenTK.Graphics.OpenGL4.GetTextureParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetTexParameter(_target,_pname,_params); -} -static unsafe void Test_GetTransformFeedbackVarying_36030() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.TransformFeedbackType _type = default(OpenTK.Graphics.OpenGL4.TransformFeedbackType); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetTransformFeedbackVarying(_program,_index,_bufSize,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetTransformFeedbackVarying_36031() { - System.Int32 _program = default(System.Int32); - System.Int32 _index = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.OpenGL4.TransformFeedbackType* _type = default(OpenTK.Graphics.OpenGL4.TransformFeedbackType*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetTransformFeedbackVarying(_program,_index,_bufSize,_length,_size,_type,_name); -} -static unsafe void Test_GetTransformFeedbackVarying_36032() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.TransformFeedbackType _type = default(OpenTK.Graphics.OpenGL4.TransformFeedbackType); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetTransformFeedbackVarying(_program,_index,_bufSize,out _length,out _size,out _type,_name); -} -static unsafe void Test_GetTransformFeedbackVarying_36033() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _index = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Int32* _size = default(System.Int32*); - OpenTK.Graphics.OpenGL4.TransformFeedbackType* _type = default(OpenTK.Graphics.OpenGL4.TransformFeedbackType*); - System.Text.StringBuilder _name = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.GetTransformFeedbackVarying(_program,_index,_bufSize,_length,_size,_type,_name); -} -static unsafe void Test_GetUniformBlockIndex_36034() { - System.Int32 _program = default(System.Int32); - System.String _uniformBlockName = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.GetUniformBlockIndex(_program,_uniformBlockName); -} -static unsafe void Test_GetUniformBlockIndex_36035() { - System.UInt32 _program = default(System.UInt32); - System.String _uniformBlockName = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.GetUniformBlockIndex(_program,_uniformBlockName); -} -static unsafe void Test_GetUniform_36036() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_36037() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.GetUniform(_program,_location,out _params); -} -static unsafe void Test_GetUniform_36038() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_36039() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_36040() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.GetUniform(_program,_location,out _params); -} -static unsafe void Test_GetUniform_36041() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_36042() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_36043() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.GetUniform(_program,_location,out _params); -} -static unsafe void Test_GetUniform_36044() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_36045() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_36046() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.GetUniform(_program,_location,out _params); -} -static unsafe void Test_GetUniform_36047() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniformIndices_36048() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformCount = default(System.Int32); - System.String[] _uniformNames = default(System.String[]); - System.Int32[] _uniformIndices = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetUniformIndices(_program,_uniformCount,_uniformNames,_uniformIndices); -} -static unsafe void Test_GetUniformIndices_36049() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformCount = default(System.Int32); - System.String[] _uniformNames = default(System.String[]); - System.Int32 _uniformIndices = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetUniformIndices(_program,_uniformCount,_uniformNames,out _uniformIndices); -} -static unsafe void Test_GetUniformIndices_36050() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformCount = default(System.Int32); - System.String[] _uniformNames = default(System.String[]); - System.Int32* _uniformIndices = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetUniformIndices(_program,_uniformCount,_uniformNames,_uniformIndices); -} -static unsafe void Test_GetUniformIndices_36051() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _uniformCount = default(System.Int32); - System.String[] _uniformNames = default(System.String[]); - System.UInt32[] _uniformIndices = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.GetUniformIndices(_program,_uniformCount,_uniformNames,_uniformIndices); -} -static unsafe void Test_GetUniformIndices_36052() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _uniformCount = default(System.Int32); - System.String[] _uniformNames = default(System.String[]); - System.UInt32 _uniformIndices = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.GetUniformIndices(_program,_uniformCount,_uniformNames,out _uniformIndices); -} -static unsafe void Test_GetUniformIndices_36053() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _uniformCount = default(System.Int32); - System.String[] _uniformNames = default(System.String[]); - System.UInt32* _uniformIndices = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.GetUniformIndices(_program,_uniformCount,_uniformNames,_uniformIndices); -} -static unsafe void Test_GetUniform_36054() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_36055() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetUniform(_program,_location,out _params); -} -static unsafe void Test_GetUniform_36056() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_36057() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_36058() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetUniform(_program,_location,out _params); -} -static unsafe void Test_GetUniform_36059() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniformLocation_36060() { - System.Int32 _program = default(System.Int32); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.GetUniformLocation(_program,_name); -} -static unsafe void Test_GetUniformLocation_36061() { - System.UInt32 _program = default(System.UInt32); - System.String _name = default(System.String); - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.GetUniformLocation(_program,_name); -} -static unsafe void Test_GetUniformSubroutine_36062() { - OpenTK.Graphics.OpenGL4.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL4.ShaderType); - System.Int32 _location = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetUniformSubroutine(_shadertype,_location,out _params); -} -static unsafe void Test_GetUniformSubroutine_36063() { - OpenTK.Graphics.OpenGL4.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL4.ShaderType); - System.Int32 _location = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetUniformSubroutine(_shadertype,_location,_params); -} -static unsafe void Test_GetUniformSubroutine_36064() { - OpenTK.Graphics.OpenGL4.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL4.ShaderType); - System.Int32 _location = default(System.Int32); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.GetUniformSubroutine(_shadertype,_location,out _params); -} -static unsafe void Test_GetUniformSubroutine_36065() { - OpenTK.Graphics.OpenGL4.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL4.ShaderType); - System.Int32 _location = default(System.Int32); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.GetUniformSubroutine(_shadertype,_location,_params); -} -static unsafe void Test_GetUniform_36066() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetUniform_36067() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.GetUniform(_program,_location,out _params); -} -static unsafe void Test_GetUniform_36068() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.GetUniform(_program,_location,_params); -} -static unsafe void Test_GetVertexAttrib_36069() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribParameter); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_36070() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribParameter); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_36071() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribParameter); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_36072() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribParameter); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_36073() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribParameter); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_36074() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribParameter); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_36075() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_36076() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribParameter); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_36077() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_36078() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribParameter); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_36079() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribParameter); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_36080() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribParameter); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribI_36081() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetVertexAttribI(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttribI_36082() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetVertexAttribI(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribI_36083() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetVertexAttribI(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttribI_36084() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetVertexAttribI(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribI_36085() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribParameter); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.GetVertexAttribI(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttribI_36086() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribParameter); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.GetVertexAttribI(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_36087() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_36088() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_36089() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_36090() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribParameter); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttrib_36091() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribParameter); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.GetVertexAttrib(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttrib_36092() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribParameter); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.GetVertexAttrib(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribL_36093() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribParameter); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.GetVertexAttribL(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribL_36094() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribParameter); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.GetVertexAttribL(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttribL_36095() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribParameter); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.GetVertexAttribL(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribL_36096() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribParameter); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.GetVertexAttribL(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribL_36097() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribParameter); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.GetVertexAttribL(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttribL_36098() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.VertexAttribParameter _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribParameter); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.GetVertexAttribL(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribPointer_36099() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_36100() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL4.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_36101() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_36102() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_36103() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter); - int _pointer = default(int); - OpenTK.Graphics.OpenGL4.GL.GetVertexAttribPointer(_index,_pname,ref _pointer); -} -static unsafe void Test_GetVertexAttribPointer_36104() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_36105() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL4.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_36106() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_36107() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.GetVertexAttribPointer(_index,_pname,_pointer); -} -static unsafe void Test_GetVertexAttribPointer_36108() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter); - int _pointer = default(int); - OpenTK.Graphics.OpenGL4.GL.GetVertexAttribPointer(_index,_pname,ref _pointer); -} -static unsafe void Test_Hint_36109() { - OpenTK.Graphics.OpenGL4.HintTarget _target = default(OpenTK.Graphics.OpenGL4.HintTarget); - OpenTK.Graphics.OpenGL4.HintMode _mode = default(OpenTK.Graphics.OpenGL4.HintMode); - OpenTK.Graphics.OpenGL4.GL.Hint(_target,_mode); -} -static unsafe void Test_Histogram_36110() { - OpenTK.Graphics.OpenGL4.HistogramTarget _target = default(OpenTK.Graphics.OpenGL4.HistogramTarget); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Boolean _sink = default(System.Boolean); - OpenTK.Graphics.OpenGL4.GL.Histogram(_target,_width,_internalformat,_sink); -} -static unsafe void Test_InvalidateBufferData_36111() { - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.InvalidateBufferData(_buffer); -} -static unsafe void Test_InvalidateBufferData_36112() { - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.InvalidateBufferData(_buffer); -} -static unsafe void Test_InvalidateBufferSubData_36113() { - System.Int32 _buffer = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _length = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.InvalidateBufferSubData(_buffer,_offset,_length); -} -static unsafe void Test_InvalidateBufferSubData_36114() { - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _length = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.InvalidateBufferSubData(_buffer,_offset,_length); -} -static unsafe void Test_InvalidateFramebuffer_36115() { - OpenTK.Graphics.OpenGL4.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL4.FramebufferTarget); - System.Int32 _numAttachments = default(System.Int32); - OpenTK.Graphics.OpenGL4.FramebufferAttachment[] _attachments = default(OpenTK.Graphics.OpenGL4.FramebufferAttachment[]); - OpenTK.Graphics.OpenGL4.GL.InvalidateFramebuffer(_target,_numAttachments,_attachments); -} -static unsafe void Test_InvalidateFramebuffer_36116() { - OpenTK.Graphics.OpenGL4.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL4.FramebufferTarget); - System.Int32 _numAttachments = default(System.Int32); - OpenTK.Graphics.OpenGL4.FramebufferAttachment _attachments = default(OpenTK.Graphics.OpenGL4.FramebufferAttachment); - OpenTK.Graphics.OpenGL4.GL.InvalidateFramebuffer(_target,_numAttachments,ref _attachments); -} -static unsafe void Test_InvalidateFramebuffer_36117() { - OpenTK.Graphics.OpenGL4.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL4.FramebufferTarget); - System.Int32 _numAttachments = default(System.Int32); - OpenTK.Graphics.OpenGL4.FramebufferAttachment* _attachments = default(OpenTK.Graphics.OpenGL4.FramebufferAttachment*); - OpenTK.Graphics.OpenGL4.GL.InvalidateFramebuffer(_target,_numAttachments,_attachments); -} -static unsafe void Test_InvalidateSubFramebuffer_36118() { - OpenTK.Graphics.OpenGL4.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL4.FramebufferTarget); - System.Int32 _numAttachments = default(System.Int32); - OpenTK.Graphics.OpenGL4.FramebufferAttachment[] _attachments = default(OpenTK.Graphics.OpenGL4.FramebufferAttachment[]); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.InvalidateSubFramebuffer(_target,_numAttachments,_attachments,_x,_y,_width,_height); -} -static unsafe void Test_InvalidateSubFramebuffer_36119() { - OpenTK.Graphics.OpenGL4.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL4.FramebufferTarget); - System.Int32 _numAttachments = default(System.Int32); - OpenTK.Graphics.OpenGL4.FramebufferAttachment _attachments = default(OpenTK.Graphics.OpenGL4.FramebufferAttachment); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.InvalidateSubFramebuffer(_target,_numAttachments,ref _attachments,_x,_y,_width,_height); -} -static unsafe void Test_InvalidateSubFramebuffer_36120() { - OpenTK.Graphics.OpenGL4.FramebufferTarget _target = default(OpenTK.Graphics.OpenGL4.FramebufferTarget); - System.Int32 _numAttachments = default(System.Int32); - OpenTK.Graphics.OpenGL4.FramebufferAttachment* _attachments = default(OpenTK.Graphics.OpenGL4.FramebufferAttachment*); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.InvalidateSubFramebuffer(_target,_numAttachments,_attachments,_x,_y,_width,_height); -} -static unsafe void Test_InvalidateTexImage_36121() { - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.InvalidateTexImage(_texture,_level); -} -static unsafe void Test_InvalidateTexImage_36122() { - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.InvalidateTexImage(_texture,_level); -} -static unsafe void Test_InvalidateTexSubImage_36123() { - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.InvalidateTexSubImage(_texture,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth); -} -static unsafe void Test_InvalidateTexSubImage_36124() { - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.InvalidateTexSubImage(_texture,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth); -} -static unsafe void Test_IsBuffer_36125() { - System.Int32 _buffer = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL4.GL.IsBuffer(_buffer); -} -static unsafe void Test_IsBuffer_36126() { - System.UInt32 _buffer = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL4.GL.IsBuffer(_buffer); -} -static unsafe void Test_IsEnabled_36127() { - OpenTK.Graphics.OpenGL4.EnableCap _cap = default(OpenTK.Graphics.OpenGL4.EnableCap); - System.Boolean r = OpenTK.Graphics.OpenGL4.GL.IsEnabled(_cap); -} -static unsafe void Test_IsEnabled_36128() { - OpenTK.Graphics.OpenGL4.IndexedEnableCap _target = default(OpenTK.Graphics.OpenGL4.IndexedEnableCap); - System.Int32 _index = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL4.GL.IsEnabled(_target,_index); -} -static unsafe void Test_IsEnabled_36129() { - OpenTK.Graphics.OpenGL4.IndexedEnableCap _target = default(OpenTK.Graphics.OpenGL4.IndexedEnableCap); - System.UInt32 _index = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL4.GL.IsEnabled(_target,_index); -} -static unsafe void Test_IsFramebuffer_36130() { - System.Int32 _framebuffer = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL4.GL.IsFramebuffer(_framebuffer); -} -static unsafe void Test_IsFramebuffer_36131() { - System.UInt32 _framebuffer = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL4.GL.IsFramebuffer(_framebuffer); -} -static unsafe void Test_IsProgram_36132() { - System.Int32 _program = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL4.GL.IsProgram(_program); -} -static unsafe void Test_IsProgram_36133() { - System.UInt32 _program = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL4.GL.IsProgram(_program); -} -static unsafe void Test_IsProgramPipeline_36134() { - System.Int32 _pipeline = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL4.GL.IsProgramPipeline(_pipeline); -} -static unsafe void Test_IsProgramPipeline_36135() { - System.UInt32 _pipeline = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL4.GL.IsProgramPipeline(_pipeline); -} -static unsafe void Test_IsQuery_36136() { - System.Int32 _id = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL4.GL.IsQuery(_id); -} -static unsafe void Test_IsQuery_36137() { - System.UInt32 _id = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL4.GL.IsQuery(_id); -} -static unsafe void Test_IsRenderbuffer_36138() { - System.Int32 _renderbuffer = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL4.GL.IsRenderbuffer(_renderbuffer); -} -static unsafe void Test_IsRenderbuffer_36139() { - System.UInt32 _renderbuffer = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL4.GL.IsRenderbuffer(_renderbuffer); -} -static unsafe void Test_IsSampler_36140() { - System.Int32 _sampler = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL4.GL.IsSampler(_sampler); -} -static unsafe void Test_IsSampler_36141() { - System.UInt32 _sampler = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL4.GL.IsSampler(_sampler); -} -static unsafe void Test_IsShader_36142() { - System.Int32 _shader = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL4.GL.IsShader(_shader); -} -static unsafe void Test_IsShader_36143() { - System.UInt32 _shader = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL4.GL.IsShader(_shader); -} -static unsafe void Test_IsSync_36144() { - System.IntPtr _sync = default(System.IntPtr); - System.Boolean r = OpenTK.Graphics.OpenGL4.GL.IsSync(_sync); -} -static unsafe void Test_IsTexture_36145() { - System.Int32 _texture = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL4.GL.IsTexture(_texture); -} -static unsafe void Test_IsTexture_36146() { - System.UInt32 _texture = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL4.GL.IsTexture(_texture); -} -static unsafe void Test_IsTransformFeedback_36147() { - System.Int32 _id = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL4.GL.IsTransformFeedback(_id); -} -static unsafe void Test_IsTransformFeedback_36148() { - System.UInt32 _id = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL4.GL.IsTransformFeedback(_id); -} -static unsafe void Test_IsVertexArray_36149() { - System.Int32 _array = default(System.Int32); - System.Boolean r = OpenTK.Graphics.OpenGL4.GL.IsVertexArray(_array); -} -static unsafe void Test_IsVertexArray_36150() { - System.UInt32 _array = default(System.UInt32); - System.Boolean r = OpenTK.Graphics.OpenGL4.GL.IsVertexArray(_array); -} -static unsafe void Test_LineWidth_36151() { - System.Single _width = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.LineWidth(_width); -} -static unsafe void Test_LinkProgram_36152() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.LinkProgram(_program); -} -static unsafe void Test_LinkProgram_36153() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.LinkProgram(_program); -} -static unsafe void Test_LogicOp_36154() { - OpenTK.Graphics.OpenGL4.LogicOp _opcode = default(OpenTK.Graphics.OpenGL4.LogicOp); - OpenTK.Graphics.OpenGL4.GL.LogicOp(_opcode); -} -static unsafe void Test_MapBuffer_36155() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - OpenTK.Graphics.OpenGL4.BufferAccess _access = default(OpenTK.Graphics.OpenGL4.BufferAccess); - System.IntPtr r = OpenTK.Graphics.OpenGL4.GL.MapBuffer(_target,_access); -} -static unsafe void Test_MapBufferRange_36156() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _length = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.BufferAccessMask _access = default(OpenTK.Graphics.OpenGL4.BufferAccessMask); - System.IntPtr r = OpenTK.Graphics.OpenGL4.GL.MapBufferRange(_target,_offset,_length,_access); -} -static unsafe void Test_MemoryBarrier_36157() { - OpenTK.Graphics.OpenGL4.MemoryBarrierFlags _barriers = default(OpenTK.Graphics.OpenGL4.MemoryBarrierFlags); - OpenTK.Graphics.OpenGL4.GL.MemoryBarrier(_barriers); -} -static unsafe void Test_Minmax_36158() { - OpenTK.Graphics.OpenGL4.MinmaxTarget _target = default(OpenTK.Graphics.OpenGL4.MinmaxTarget); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Boolean _sink = default(System.Boolean); - OpenTK.Graphics.OpenGL4.GL.Minmax(_target,_internalformat,_sink); -} -static unsafe void Test_MinSampleShading_36159() { - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.MinSampleShading(_value); -} -static unsafe void Test_MultiDrawArrays_36160() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32[] _first = default(System.Int32[]); - System.Int32[] _count = default(System.Int32[]); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.MultiDrawArrays(_mode,_first,_count,_drawcount); -} -static unsafe void Test_MultiDrawArrays_36161() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.MultiDrawArrays(_mode,ref _first,ref _count,_drawcount); -} -static unsafe void Test_MultiDrawArrays_36162() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32* _first = default(System.Int32*); - System.Int32* _count = default(System.Int32*); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.MultiDrawArrays(_mode,_first,_count,_drawcount); -} -static unsafe void Test_MultiDrawArraysIndirect_36163() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.IntPtr _indirect = default(System.IntPtr); - System.Int32 _drawcount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.MultiDrawArraysIndirect(_mode,_indirect,_drawcount,_stride); -} -static unsafe void Test_MultiDrawArraysIndirect_36164() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - int[] _indirect = default(int[]); - System.Int32 _drawcount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.MultiDrawArraysIndirect(_mode,_indirect,_drawcount,_stride); -} -static unsafe void Test_MultiDrawArraysIndirect_36165() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - int[,] _indirect = default(int[,]); - System.Int32 _drawcount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.MultiDrawArraysIndirect(_mode,_indirect,_drawcount,_stride); -} -static unsafe void Test_MultiDrawArraysIndirect_36166() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - int[,,] _indirect = default(int[,,]); - System.Int32 _drawcount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.MultiDrawArraysIndirect(_mode,_indirect,_drawcount,_stride); -} -static unsafe void Test_MultiDrawArraysIndirect_36167() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - int _indirect = default(int); - System.Int32 _drawcount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.MultiDrawArraysIndirect(_mode,ref _indirect,_drawcount,_stride); -} -static unsafe void Test_MultiDrawElements_36168() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.MultiDrawElements(_mode,_count,_type,_indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_36169() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.MultiDrawElements(_mode,_count,_type,_indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_36170() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.MultiDrawElements(_mode,_count,_type,_indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_36171() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.MultiDrawElements(_mode,_count,_type,_indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_36172() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int _indices = default(int); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.MultiDrawElements(_mode,_count,_type,ref _indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_36173() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.MultiDrawElements(_mode,ref _count,_type,_indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_36174() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.MultiDrawElements(_mode,ref _count,_type,_indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_36175() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.MultiDrawElements(_mode,ref _count,_type,_indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_36176() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.MultiDrawElements(_mode,ref _count,_type,_indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_36177() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int _indices = default(int); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.MultiDrawElements(_mode,ref _count,_type,ref _indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_36178() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.MultiDrawElements(_mode,_count,_type,_indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_36179() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.MultiDrawElements(_mode,_count,_type,_indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_36180() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.MultiDrawElements(_mode,_count,_type,_indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_36181() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.MultiDrawElements(_mode,_count,_type,_indices,_drawcount); -} -static unsafe void Test_MultiDrawElements_36182() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int _indices = default(int); - System.Int32 _drawcount = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.MultiDrawElements(_mode,_count,_type,ref _indices,_drawcount); -} -static unsafe void Test_MultiDrawElementsBaseVertex_36183() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _drawcount = default(System.Int32); - System.Int32[] _basevertex = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.MultiDrawElementsBaseVertex(_mode,_count,_type,_indices,_drawcount,_basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_36184() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _drawcount = default(System.Int32); - System.Int32[] _basevertex = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.MultiDrawElementsBaseVertex(_mode,_count,_type,_indices,_drawcount,_basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_36185() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _drawcount = default(System.Int32); - System.Int32[] _basevertex = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.MultiDrawElementsBaseVertex(_mode,_count,_type,_indices,_drawcount,_basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_36186() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _drawcount = default(System.Int32); - System.Int32[] _basevertex = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.MultiDrawElementsBaseVertex(_mode,_count,_type,_indices,_drawcount,_basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_36187() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32[] _count = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int _indices = default(int); - System.Int32 _drawcount = default(System.Int32); - System.Int32[] _basevertex = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.MultiDrawElementsBaseVertex(_mode,_count,_type,ref _indices,_drawcount,_basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_36188() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _drawcount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.MultiDrawElementsBaseVertex(_mode,ref _count,_type,_indices,_drawcount,ref _basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_36189() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _drawcount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.MultiDrawElementsBaseVertex(_mode,ref _count,_type,_indices,_drawcount,ref _basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_36190() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _drawcount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.MultiDrawElementsBaseVertex(_mode,ref _count,_type,_indices,_drawcount,ref _basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_36191() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _drawcount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.MultiDrawElementsBaseVertex(_mode,ref _count,_type,_indices,_drawcount,ref _basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_36192() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32 _count = default(System.Int32); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int _indices = default(int); - System.Int32 _drawcount = default(System.Int32); - System.Int32 _basevertex = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.MultiDrawElementsBaseVertex(_mode,ref _count,_type,ref _indices,_drawcount,ref _basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_36193() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - System.IntPtr _indices = default(System.IntPtr); - System.Int32 _drawcount = default(System.Int32); - System.Int32* _basevertex = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.MultiDrawElementsBaseVertex(_mode,_count,_type,_indices,_drawcount,_basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_36194() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[] _indices = default(int[]); - System.Int32 _drawcount = default(System.Int32); - System.Int32* _basevertex = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.MultiDrawElementsBaseVertex(_mode,_count,_type,_indices,_drawcount,_basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_36195() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[,] _indices = default(int[,]); - System.Int32 _drawcount = default(System.Int32); - System.Int32* _basevertex = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.MultiDrawElementsBaseVertex(_mode,_count,_type,_indices,_drawcount,_basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_36196() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[,,] _indices = default(int[,,]); - System.Int32 _drawcount = default(System.Int32); - System.Int32* _basevertex = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.MultiDrawElementsBaseVertex(_mode,_count,_type,_indices,_drawcount,_basevertex); -} -static unsafe void Test_MultiDrawElementsBaseVertex_36197() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - System.Int32* _count = default(System.Int32*); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int _indices = default(int); - System.Int32 _drawcount = default(System.Int32); - System.Int32* _basevertex = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.MultiDrawElementsBaseVertex(_mode,_count,_type,ref _indices,_drawcount,_basevertex); -} -static unsafe void Test_MultiDrawElementsIndirect_36198() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - System.IntPtr _indirect = default(System.IntPtr); - System.Int32 _drawcount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.MultiDrawElementsIndirect(_mode,_type,_indirect,_drawcount,_stride); -} -static unsafe void Test_MultiDrawElementsIndirect_36199() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[] _indirect = default(int[]); - System.Int32 _drawcount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.MultiDrawElementsIndirect(_mode,_type,_indirect,_drawcount,_stride); -} -static unsafe void Test_MultiDrawElementsIndirect_36200() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[,] _indirect = default(int[,]); - System.Int32 _drawcount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.MultiDrawElementsIndirect(_mode,_type,_indirect,_drawcount,_stride); -} -static unsafe void Test_MultiDrawElementsIndirect_36201() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int[,,] _indirect = default(int[,,]); - System.Int32 _drawcount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.MultiDrawElementsIndirect(_mode,_type,_indirect,_drawcount,_stride); -} -static unsafe void Test_MultiDrawElementsIndirect_36202() { - OpenTK.Graphics.OpenGL4.PrimitiveType _mode = default(OpenTK.Graphics.OpenGL4.PrimitiveType); - OpenTK.Graphics.OpenGL4.DrawElementsType _type = default(OpenTK.Graphics.OpenGL4.DrawElementsType); - int _indirect = default(int); - System.Int32 _drawcount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.MultiDrawElementsIndirect(_mode,_type,ref _indirect,_drawcount,_stride); -} -static unsafe void Test_MultiTexCoordP1_36203() { - OpenTK.Graphics.OpenGL4.TextureUnit _texture = default(OpenTK.Graphics.OpenGL4.TextureUnit); - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.MultiTexCoordP1(_texture,_type,_coords); -} -static unsafe void Test_MultiTexCoordP1_36204() { - OpenTK.Graphics.OpenGL4.TextureUnit _texture = default(OpenTK.Graphics.OpenGL4.TextureUnit); - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.UInt32 _coords = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.MultiTexCoordP1(_texture,_type,_coords); -} -static unsafe void Test_MultiTexCoordP1_36205() { - OpenTK.Graphics.OpenGL4.TextureUnit _texture = default(OpenTK.Graphics.OpenGL4.TextureUnit); - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.MultiTexCoordP1(_texture,_type,_coords); -} -static unsafe void Test_MultiTexCoordP1_36206() { - OpenTK.Graphics.OpenGL4.TextureUnit _texture = default(OpenTK.Graphics.OpenGL4.TextureUnit); - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.UInt32* _coords = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.MultiTexCoordP1(_texture,_type,_coords); -} -static unsafe void Test_MultiTexCoordP2_36207() { - OpenTK.Graphics.OpenGL4.TextureUnit _texture = default(OpenTK.Graphics.OpenGL4.TextureUnit); - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.MultiTexCoordP2(_texture,_type,_coords); -} -static unsafe void Test_MultiTexCoordP2_36208() { - OpenTK.Graphics.OpenGL4.TextureUnit _texture = default(OpenTK.Graphics.OpenGL4.TextureUnit); - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.UInt32 _coords = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.MultiTexCoordP2(_texture,_type,_coords); -} -static unsafe void Test_MultiTexCoordP2_36209() { - OpenTK.Graphics.OpenGL4.TextureUnit _texture = default(OpenTK.Graphics.OpenGL4.TextureUnit); - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.MultiTexCoordP2(_texture,_type,_coords); -} -static unsafe void Test_MultiTexCoordP2_36210() { - OpenTK.Graphics.OpenGL4.TextureUnit _texture = default(OpenTK.Graphics.OpenGL4.TextureUnit); - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.UInt32* _coords = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.MultiTexCoordP2(_texture,_type,_coords); -} -static unsafe void Test_MultiTexCoordP3_36211() { - OpenTK.Graphics.OpenGL4.TextureUnit _texture = default(OpenTK.Graphics.OpenGL4.TextureUnit); - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.MultiTexCoordP3(_texture,_type,_coords); -} -static unsafe void Test_MultiTexCoordP3_36212() { - OpenTK.Graphics.OpenGL4.TextureUnit _texture = default(OpenTK.Graphics.OpenGL4.TextureUnit); - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.UInt32 _coords = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.MultiTexCoordP3(_texture,_type,_coords); -} -static unsafe void Test_MultiTexCoordP3_36213() { - OpenTK.Graphics.OpenGL4.TextureUnit _texture = default(OpenTK.Graphics.OpenGL4.TextureUnit); - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.MultiTexCoordP3(_texture,_type,_coords); -} -static unsafe void Test_MultiTexCoordP3_36214() { - OpenTK.Graphics.OpenGL4.TextureUnit _texture = default(OpenTK.Graphics.OpenGL4.TextureUnit); - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.UInt32* _coords = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.MultiTexCoordP3(_texture,_type,_coords); -} -static unsafe void Test_MultiTexCoordP4_36215() { - OpenTK.Graphics.OpenGL4.TextureUnit _texture = default(OpenTK.Graphics.OpenGL4.TextureUnit); - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.MultiTexCoordP4(_texture,_type,_coords); -} -static unsafe void Test_MultiTexCoordP4_36216() { - OpenTK.Graphics.OpenGL4.TextureUnit _texture = default(OpenTK.Graphics.OpenGL4.TextureUnit); - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.UInt32 _coords = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.MultiTexCoordP4(_texture,_type,_coords); -} -static unsafe void Test_MultiTexCoordP4_36217() { - OpenTK.Graphics.OpenGL4.TextureUnit _texture = default(OpenTK.Graphics.OpenGL4.TextureUnit); - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.MultiTexCoordP4(_texture,_type,_coords); -} -static unsafe void Test_MultiTexCoordP4_36218() { - OpenTK.Graphics.OpenGL4.TextureUnit _texture = default(OpenTK.Graphics.OpenGL4.TextureUnit); - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.UInt32* _coords = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.MultiTexCoordP4(_texture,_type,_coords); -} -static unsafe void Test_NormalP3_36219() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.NormalP3(_type,_coords); -} -static unsafe void Test_NormalP3_36220() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.UInt32 _coords = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.NormalP3(_type,_coords); -} -static unsafe void Test_NormalP3_36221() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.NormalP3(_type,_coords); -} -static unsafe void Test_NormalP3_36222() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.UInt32* _coords = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.NormalP3(_type,_coords); -} -static unsafe void Test_ObjectLabel_36223() { - OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier); - System.Int32 _name = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.OpenGL4.GL.ObjectLabel(_identifier,_name,_length,_label); -} -static unsafe void Test_ObjectLabel_36224() { - OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier _identifier = default(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier); - System.UInt32 _name = default(System.UInt32); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.OpenGL4.GL.ObjectLabel(_identifier,_name,_length,_label); -} -static unsafe void Test_ObjectPtrLabel_36225() { - System.IntPtr _ptr = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.OpenGL4.GL.ObjectPtrLabel(_ptr,_length,_label); -} -static unsafe void Test_ObjectPtrLabel_36226() { - int[] _ptr = default(int[]); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.OpenGL4.GL.ObjectPtrLabel(_ptr,_length,_label); -} -static unsafe void Test_ObjectPtrLabel_36227() { - int[,] _ptr = default(int[,]); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.OpenGL4.GL.ObjectPtrLabel(_ptr,_length,_label); -} -static unsafe void Test_ObjectPtrLabel_36228() { - int[,,] _ptr = default(int[,,]); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.OpenGL4.GL.ObjectPtrLabel(_ptr,_length,_label); -} -static unsafe void Test_ObjectPtrLabel_36229() { - int _ptr = default(int); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.OpenGL4.GL.ObjectPtrLabel(ref _ptr,_length,_label); -} -static unsafe void Test_PatchParameter_36230() { - OpenTK.Graphics.OpenGL4.PatchParameterFloat _pname = default(OpenTK.Graphics.OpenGL4.PatchParameterFloat); - System.Single[] _values = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.PatchParameter(_pname,_values); -} -static unsafe void Test_PatchParameter_36231() { - OpenTK.Graphics.OpenGL4.PatchParameterFloat _pname = default(OpenTK.Graphics.OpenGL4.PatchParameterFloat); - System.Single _values = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.PatchParameter(_pname,ref _values); -} -static unsafe void Test_PatchParameter_36232() { - OpenTK.Graphics.OpenGL4.PatchParameterFloat _pname = default(OpenTK.Graphics.OpenGL4.PatchParameterFloat); - System.Single* _values = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.PatchParameter(_pname,_values); -} -static unsafe void Test_PatchParameter_36233() { - OpenTK.Graphics.OpenGL4.PatchParameterInt _pname = default(OpenTK.Graphics.OpenGL4.PatchParameterInt); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.PatchParameter(_pname,_value); -} -static unsafe void Test_PauseTransformFeedback_36234() { - OpenTK.Graphics.OpenGL4.GL.PauseTransformFeedback(); -} -static unsafe void Test_PixelStore_36235() { - OpenTK.Graphics.OpenGL4.PixelStoreParameter _pname = default(OpenTK.Graphics.OpenGL4.PixelStoreParameter); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.PixelStore(_pname,_param); -} -static unsafe void Test_PixelStore_36236() { - OpenTK.Graphics.OpenGL4.PixelStoreParameter _pname = default(OpenTK.Graphics.OpenGL4.PixelStoreParameter); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.PixelStore(_pname,_param); -} -static unsafe void Test_PointParameter_36237() { - OpenTK.Graphics.OpenGL4.PointParameterName _pname = default(OpenTK.Graphics.OpenGL4.PointParameterName); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.PointParameter(_pname,_param); -} -static unsafe void Test_PointParameter_36238() { - OpenTK.Graphics.OpenGL4.PointParameterName _pname = default(OpenTK.Graphics.OpenGL4.PointParameterName); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.PointParameter(_pname,_params); -} -static unsafe void Test_PointParameter_36239() { - OpenTK.Graphics.OpenGL4.PointParameterName _pname = default(OpenTK.Graphics.OpenGL4.PointParameterName); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.PointParameter(_pname,_params); -} -static unsafe void Test_PointParameter_36240() { - OpenTK.Graphics.OpenGL4.PointParameterName _pname = default(OpenTK.Graphics.OpenGL4.PointParameterName); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.PointParameter(_pname,_param); -} -static unsafe void Test_PointParameter_36241() { - OpenTK.Graphics.OpenGL4.PointParameterName _pname = default(OpenTK.Graphics.OpenGL4.PointParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.PointParameter(_pname,_params); -} -static unsafe void Test_PointParameter_36242() { - OpenTK.Graphics.OpenGL4.PointParameterName _pname = default(OpenTK.Graphics.OpenGL4.PointParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.PointParameter(_pname,_params); -} -static unsafe void Test_PointSize_36243() { - System.Single _size = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.PointSize(_size); -} -static unsafe void Test_PolygonMode_36244() { - OpenTK.Graphics.OpenGL4.MaterialFace _face = default(OpenTK.Graphics.OpenGL4.MaterialFace); - OpenTK.Graphics.OpenGL4.PolygonMode _mode = default(OpenTK.Graphics.OpenGL4.PolygonMode); - OpenTK.Graphics.OpenGL4.GL.PolygonMode(_face,_mode); -} -static unsafe void Test_PolygonOffset_36245() { - System.Single _factor = default(System.Single); - System.Single _units = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.PolygonOffset(_factor,_units); -} -static unsafe void Test_PopDebugGroup_36246() { - OpenTK.Graphics.OpenGL4.GL.PopDebugGroup(); -} -static unsafe void Test_PrimitiveRestartIndex_36247() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.PrimitiveRestartIndex(_index); -} -static unsafe void Test_PrimitiveRestartIndex_36248() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.PrimitiveRestartIndex(_index); -} -static unsafe void Test_ProgramBinary_36249() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryFormat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ProgramBinary(_program,_binaryFormat,_binary,_length); -} -static unsafe void Test_ProgramBinary_36250() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryFormat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ProgramBinary(_program,_binaryFormat,_binary,_length); -} -static unsafe void Test_ProgramBinary_36251() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryFormat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ProgramBinary(_program,_binaryFormat,_binary,_length); -} -static unsafe void Test_ProgramBinary_36252() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryFormat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ProgramBinary(_program,_binaryFormat,_binary,_length); -} -static unsafe void Test_ProgramBinary_36253() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryFormat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ProgramBinary(_program,_binaryFormat,ref _binary,_length); -} -static unsafe void Test_ProgramBinary_36254() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryFormat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ProgramBinary(_program,_binaryFormat,_binary,_length); -} -static unsafe void Test_ProgramBinary_36255() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryFormat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ProgramBinary(_program,_binaryFormat,_binary,_length); -} -static unsafe void Test_ProgramBinary_36256() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryFormat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ProgramBinary(_program,_binaryFormat,_binary,_length); -} -static unsafe void Test_ProgramBinary_36257() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryFormat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ProgramBinary(_program,_binaryFormat,_binary,_length); -} -static unsafe void Test_ProgramBinary_36258() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryFormat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ProgramBinary(_program,_binaryFormat,ref _binary,_length); -} -static unsafe void Test_ProgramParameter_36259() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL4.ProgramParameterName _pname = default(OpenTK.Graphics.OpenGL4.ProgramParameterName); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ProgramParameter(_program,_pname,_value); -} -static unsafe void Test_ProgramParameter_36260() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ProgramParameterName _pname = default(OpenTK.Graphics.OpenGL4.ProgramParameterName); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ProgramParameter(_program,_pname,_value); -} -static unsafe void Test_ProgramUniform1_36261() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Double _v0 = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform1(_program,_location,_v0); -} -static unsafe void Test_ProgramUniform1_36262() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Double _v0 = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform1(_program,_location,_v0); -} -static unsafe void Test_ProgramUniform1_36263() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform1(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform1_36264() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_36265() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform1(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform1_36266() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_36267() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform1(_program,_location,_v0); -} -static unsafe void Test_ProgramUniform1_36268() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform1(_program,_location,_v0); -} -static unsafe void Test_ProgramUniform1_36269() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform1(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform1_36270() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_36271() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform1(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform1_36272() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_36273() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform1(_program,_location,_v0); -} -static unsafe void Test_ProgramUniform1_36274() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform1(_program,_location,_v0); -} -static unsafe void Test_ProgramUniform1_36275() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform1(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform1_36276() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_36277() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform1(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform1_36278() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform1_36279() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt32 _v0 = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform1(_program,_location,_v0); -} -static unsafe void Test_ProgramUniform1_36280() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform1(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform1_36281() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform1(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_36282() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Double _v0 = default(System.Double); - System.Double _v1 = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform2(_program,_location,_v0,_v1); -} -static unsafe void Test_ProgramUniform2_36283() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Double _v0 = default(System.Double); - System.Double _v1 = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform2(_program,_location,_v0,_v1); -} -static unsafe void Test_ProgramUniform2_36284() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_36285() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform2(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform2_36286() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_36287() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_36288() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform2(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform2_36289() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_36290() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform2(_program,_location,_v0,_v1); -} -static unsafe void Test_ProgramUniform2_36291() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform2(_program,_location,_v0,_v1); -} -static unsafe void Test_ProgramUniform2_36292() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_36293() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform2(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform2_36294() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_36295() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_36296() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform2(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform2_36297() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_36298() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform2(_program,_location,_v0,_v1); -} -static unsafe void Test_ProgramUniform2_36299() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform2(_program,_location,_v0,_v1); -} -static unsafe void Test_ProgramUniform2_36300() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_36301() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_36302() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_36303() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_36304() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt32 _v0 = default(System.UInt32); - System.UInt32 _v1 = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform2(_program,_location,_v0,_v1); -} -static unsafe void Test_ProgramUniform2_36305() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _value = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform2_36306() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform2(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform2_36307() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform2(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_36308() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Double _v0 = default(System.Double); - System.Double _v1 = default(System.Double); - System.Double _v2 = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform3(_program,_location,_v0,_v1,_v2); -} -static unsafe void Test_ProgramUniform3_36309() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Double _v0 = default(System.Double); - System.Double _v1 = default(System.Double); - System.Double _v2 = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform3(_program,_location,_v0,_v1,_v2); -} -static unsafe void Test_ProgramUniform3_36310() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_36311() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform3(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform3_36312() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_36313() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_36314() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform3(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform3_36315() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_36316() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform3(_program,_location,_v0,_v1,_v2); -} -static unsafe void Test_ProgramUniform3_36317() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform3(_program,_location,_v0,_v1,_v2); -} -static unsafe void Test_ProgramUniform3_36318() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_36319() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform3(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform3_36320() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_36321() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_36322() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform3(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform3_36323() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_36324() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - System.Int32 _v2 = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform3(_program,_location,_v0,_v1,_v2); -} -static unsafe void Test_ProgramUniform3_36325() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - System.Int32 _v2 = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform3(_program,_location,_v0,_v1,_v2); -} -static unsafe void Test_ProgramUniform3_36326() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_36327() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform3(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform3_36328() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_36329() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_36330() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform3(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform3_36331() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_36332() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt32 _v0 = default(System.UInt32); - System.UInt32 _v1 = default(System.UInt32); - System.UInt32 _v2 = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform3(_program,_location,_v0,_v1,_v2); -} -static unsafe void Test_ProgramUniform3_36333() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _value = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform3_36334() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform3(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform3_36335() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform3(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_36336() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Double _v0 = default(System.Double); - System.Double _v1 = default(System.Double); - System.Double _v2 = default(System.Double); - System.Double _v3 = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform4(_program,_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_ProgramUniform4_36337() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Double _v0 = default(System.Double); - System.Double _v1 = default(System.Double); - System.Double _v2 = default(System.Double); - System.Double _v3 = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform4(_program,_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_ProgramUniform4_36338() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_36339() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform4(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform4_36340() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_36341() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_36342() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform4(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform4_36343() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_36344() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - System.Single _v3 = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform4(_program,_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_ProgramUniform4_36345() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - System.Single _v3 = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform4(_program,_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_ProgramUniform4_36346() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_36347() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform4(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform4_36348() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_36349() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_36350() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform4(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform4_36351() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_36352() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - System.Int32 _v2 = default(System.Int32); - System.Int32 _v3 = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform4(_program,_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_ProgramUniform4_36353() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - System.Int32 _v2 = default(System.Int32); - System.Int32 _v3 = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform4(_program,_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_ProgramUniform4_36354() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_36355() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform4(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform4_36356() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_36357() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_36358() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform4(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform4_36359() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_36360() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt32 _v0 = default(System.UInt32); - System.UInt32 _v1 = default(System.UInt32); - System.UInt32 _v2 = default(System.UInt32); - System.UInt32 _v3 = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform4(_program,_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_ProgramUniform4_36361() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _value = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniform4_36362() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform4(_program,_location,_count,ref _value); -} -static unsafe void Test_ProgramUniform4_36363() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniform4(_program,_location,_count,_value); -} -static unsafe void Test_ProgramUniformMatrix2_36364() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2_36365() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2_36366() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2_36367() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2_36368() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2_36369() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2_36370() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2_36371() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2_36372() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2_36373() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2_36374() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2_36375() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x3_36376() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x3_36377() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2x3_36378() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x3_36379() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x3_36380() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2x3_36381() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x3_36382() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x3_36383() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2x3_36384() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x3_36385() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x3_36386() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2x3_36387() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix2x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x4_36388() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x4_36389() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2x4_36390() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x4_36391() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x4_36392() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2x4_36393() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x4_36394() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x4_36395() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2x4_36396() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x4_36397() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix2x4_36398() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix2x4_36399() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix2x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3_36400() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3_36401() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3_36402() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3_36403() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3_36404() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3_36405() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3_36406() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3_36407() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3_36408() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3_36409() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3_36410() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3_36411() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x2_36412() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x2_36413() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3x2_36414() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x2_36415() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x2_36416() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3x2_36417() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x2_36418() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x2_36419() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3x2_36420() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x2_36421() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x2_36422() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3x2_36423() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix3x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x4_36424() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x4_36425() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3x4_36426() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x4_36427() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x4_36428() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3x4_36429() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x4_36430() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x4_36431() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3x4_36432() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x4_36433() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix3x4_36434() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix3x4_36435() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix3x4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4_36436() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4_36437() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4_36438() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4_36439() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4_36440() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4_36441() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4_36442() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4_36443() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4_36444() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4_36445() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4_36446() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix4(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4_36447() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix4(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x2_36448() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x2_36449() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4x2_36450() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x2_36451() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x2_36452() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4x2_36453() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x2_36454() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x2_36455() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4x2_36456() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x2_36457() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x2_36458() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4x2_36459() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix4x2(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x3_36460() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x3_36461() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4x3_36462() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x3_36463() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x3_36464() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4x3_36465() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x3_36466() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x3_36467() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4x3_36468() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x3_36469() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProgramUniformMatrix4x3_36470() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,ref _value); -} -static unsafe void Test_ProgramUniformMatrix4x3_36471() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.ProgramUniformMatrix4x3(_program,_location,_count,_transpose,_value); -} -static unsafe void Test_ProvokingVertex_36472() { - OpenTK.Graphics.OpenGL4.ProvokingVertexMode _mode = default(OpenTK.Graphics.OpenGL4.ProvokingVertexMode); - OpenTK.Graphics.OpenGL4.GL.ProvokingVertex(_mode); -} -static unsafe void Test_PushDebugGroup_36473() { - OpenTK.Graphics.OpenGL4.DebugSourceExternal _source = default(OpenTK.Graphics.OpenGL4.DebugSourceExternal); - System.Int32 _id = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.String _message = default(System.String); - OpenTK.Graphics.OpenGL4.GL.PushDebugGroup(_source,_id,_length,_message); -} -static unsafe void Test_PushDebugGroup_36474() { - OpenTK.Graphics.OpenGL4.DebugSourceExternal _source = default(OpenTK.Graphics.OpenGL4.DebugSourceExternal); - System.UInt32 _id = default(System.UInt32); - System.Int32 _length = default(System.Int32); - System.String _message = default(System.String); - OpenTK.Graphics.OpenGL4.GL.PushDebugGroup(_source,_id,_length,_message); -} -static unsafe void Test_QueryCounter_36475() { - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL4.QueryCounterTarget _target = default(OpenTK.Graphics.OpenGL4.QueryCounterTarget); - OpenTK.Graphics.OpenGL4.GL.QueryCounter(_id,_target); -} -static unsafe void Test_QueryCounter_36476() { - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL4.QueryCounterTarget _target = default(OpenTK.Graphics.OpenGL4.QueryCounterTarget); - OpenTK.Graphics.OpenGL4.GL.QueryCounter(_id,_target); -} -static unsafe void Test_ReadBuffer_36477() { - OpenTK.Graphics.OpenGL4.ReadBufferMode _mode = default(OpenTK.Graphics.OpenGL4.ReadBufferMode); - OpenTK.Graphics.OpenGL4.GL.ReadBuffer(_mode); -} -static unsafe void Test_ReadPixels_36478() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.ReadPixels(_x,_y,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_ReadPixels_36479() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL4.GL.ReadPixels(_x,_y,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_ReadPixels_36480() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.ReadPixels(_x,_y,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_ReadPixels_36481() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.ReadPixels(_x,_y,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_ReadPixels_36482() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL4.GL.ReadPixels(_x,_y,_width,_height,_format,_type,ref _pixels); -} -static unsafe void Test_ReleaseShaderCompiler_36483() { - OpenTK.Graphics.OpenGL4.GL.ReleaseShaderCompiler(); -} -static unsafe void Test_RenderbufferStorage_36484() { - OpenTK.Graphics.OpenGL4.RenderbufferTarget _target = default(OpenTK.Graphics.OpenGL4.RenderbufferTarget); - OpenTK.Graphics.OpenGL4.RenderbufferStorage _internalformat = default(OpenTK.Graphics.OpenGL4.RenderbufferStorage); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.RenderbufferStorage(_target,_internalformat,_width,_height); -} -static unsafe void Test_RenderbufferStorageMultisample_36485() { - OpenTK.Graphics.OpenGL4.RenderbufferTarget _target = default(OpenTK.Graphics.OpenGL4.RenderbufferTarget); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.OpenGL4.RenderbufferStorage _internalformat = default(OpenTK.Graphics.OpenGL4.RenderbufferStorage); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.RenderbufferStorageMultisample(_target,_samples,_internalformat,_width,_height); -} -static unsafe void Test_ResetHistogram_36486() { - OpenTK.Graphics.OpenGL4.HistogramTarget _target = default(OpenTK.Graphics.OpenGL4.HistogramTarget); - OpenTK.Graphics.OpenGL4.GL.ResetHistogram(_target); -} -static unsafe void Test_ResetMinmax_36487() { - OpenTK.Graphics.OpenGL4.MinmaxTarget _target = default(OpenTK.Graphics.OpenGL4.MinmaxTarget); - OpenTK.Graphics.OpenGL4.GL.ResetMinmax(_target); -} -static unsafe void Test_ResumeTransformFeedback_36488() { - OpenTK.Graphics.OpenGL4.GL.ResumeTransformFeedback(); -} -static unsafe void Test_SampleCoverage_36489() { - System.Single _value = default(System.Single); - System.Boolean _invert = default(System.Boolean); - OpenTK.Graphics.OpenGL4.GL.SampleCoverage(_value,_invert); -} -static unsafe void Test_SampleMask_36490() { - System.Int32 _maskNumber = default(System.Int32); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.SampleMask(_maskNumber,_mask); -} -static unsafe void Test_SampleMask_36491() { - System.UInt32 _maskNumber = default(System.UInt32); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.SampleMask(_maskNumber,_mask); -} -static unsafe void Test_SamplerParameter_36492() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL4.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL4.SamplerParameterName); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_36493() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL4.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL4.SamplerParameterName); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_36494() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL4.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL4.SamplerParameterName); - System.Single[] _param = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_36495() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL4.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL4.SamplerParameterName); - System.Single* _param = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_36496() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL4.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL4.SamplerParameterName); - System.Single[] _param = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_36497() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL4.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL4.SamplerParameterName); - System.Single* _param = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_36498() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL4.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL4.SamplerParameterName); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_36499() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL4.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL4.SamplerParameterName); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameterI_36500() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL4.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL4.SamplerParameterName); - System.Int32[] _param = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.SamplerParameterI(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameterI_36501() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL4.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL4.SamplerParameterName); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.SamplerParameterI(_sampler,_pname,ref _param); -} -static unsafe void Test_SamplerParameterI_36502() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL4.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL4.SamplerParameterName); - System.Int32* _param = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.SamplerParameterI(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameterI_36503() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL4.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL4.SamplerParameterName); - System.Int32[] _param = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.SamplerParameterI(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameterI_36504() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL4.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL4.SamplerParameterName); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.SamplerParameterI(_sampler,_pname,ref _param); -} -static unsafe void Test_SamplerParameterI_36505() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL4.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL4.SamplerParameterName); - System.Int32* _param = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.SamplerParameterI(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameterI_36506() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL4.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL4.SamplerParameterName); - System.UInt32[] _param = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.SamplerParameterI(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameterI_36507() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL4.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL4.SamplerParameterName); - System.UInt32 _param = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.SamplerParameterI(_sampler,_pname,ref _param); -} -static unsafe void Test_SamplerParameterI_36508() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL4.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL4.SamplerParameterName); - System.UInt32* _param = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.SamplerParameterI(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_36509() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL4.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL4.SamplerParameterName); - System.Int32[] _param = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_36510() { - System.Int32 _sampler = default(System.Int32); - OpenTK.Graphics.OpenGL4.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL4.SamplerParameterName); - System.Int32* _param = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_36511() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL4.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL4.SamplerParameterName); - System.Int32[] _param = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_SamplerParameter_36512() { - System.UInt32 _sampler = default(System.UInt32); - OpenTK.Graphics.OpenGL4.SamplerParameterName _pname = default(OpenTK.Graphics.OpenGL4.SamplerParameterName); - System.Int32* _param = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.SamplerParameter(_sampler,_pname,_param); -} -static unsafe void Test_Scissor_36513() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.Scissor(_x,_y,_width,_height); -} -static unsafe void Test_ScissorArray_36514() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.ScissorArray(_first,_count,_v); -} -static unsafe void Test_ScissorArray_36515() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ScissorArray(_first,_count,ref _v); -} -static unsafe void Test_ScissorArray_36516() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.ScissorArray(_first,_count,_v); -} -static unsafe void Test_ScissorArray_36517() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.ScissorArray(_first,_count,_v); -} -static unsafe void Test_ScissorArray_36518() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ScissorArray(_first,_count,ref _v); -} -static unsafe void Test_ScissorArray_36519() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.ScissorArray(_first,_count,_v); -} -static unsafe void Test_ScissorIndexed_36520() { - System.Int32 _index = default(System.Int32); - System.Int32 _left = default(System.Int32); - System.Int32 _bottom = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ScissorIndexed(_index,_left,_bottom,_width,_height); -} -static unsafe void Test_ScissorIndexed_36521() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _left = default(System.Int32); - System.Int32 _bottom = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ScissorIndexed(_index,_left,_bottom,_width,_height); -} -static unsafe void Test_ScissorIndexed_36522() { - System.Int32 _index = default(System.Int32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.ScissorIndexed(_index,_v); -} -static unsafe void Test_ScissorIndexed_36523() { - System.Int32 _index = default(System.Int32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ScissorIndexed(_index,ref _v); -} -static unsafe void Test_ScissorIndexed_36524() { - System.Int32 _index = default(System.Int32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.ScissorIndexed(_index,_v); -} -static unsafe void Test_ScissorIndexed_36525() { - System.UInt32 _index = default(System.UInt32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.ScissorIndexed(_index,_v); -} -static unsafe void Test_ScissorIndexed_36526() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ScissorIndexed(_index,ref _v); -} -static unsafe void Test_ScissorIndexed_36527() { - System.UInt32 _index = default(System.UInt32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.ScissorIndexed(_index,_v); -} -static unsafe void Test_SecondaryColorP3_36528() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Int32 _color = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.SecondaryColorP3(_type,_color); -} -static unsafe void Test_SecondaryColorP3_36529() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.UInt32 _color = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.SecondaryColorP3(_type,_color); -} -static unsafe void Test_SecondaryColorP3_36530() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Int32* _color = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.SecondaryColorP3(_type,_color); -} -static unsafe void Test_SecondaryColorP3_36531() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.UInt32* _color = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.SecondaryColorP3(_type,_color); -} -static unsafe void Test_SeparableFilter2D_36532() { - OpenTK.Graphics.OpenGL4.SeparableTarget _target = default(OpenTK.Graphics.OpenGL4.SeparableTarget); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - System.IntPtr _row = default(System.IntPtr); - System.IntPtr _column = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.SeparableFilter2D(_target,_internalformat,_width,_height,_format,_type,_row,_column); -} -static unsafe void Test_SeparableFilter2D_36533() { - OpenTK.Graphics.OpenGL4.SeparableTarget _target = default(OpenTK.Graphics.OpenGL4.SeparableTarget); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[] _row = default(int[]); - int[] _column = default(int[]); - OpenTK.Graphics.OpenGL4.GL.SeparableFilter2D(_target,_internalformat,_width,_height,_format,_type,_row,_column); -} -static unsafe void Test_SeparableFilter2D_36534() { - OpenTK.Graphics.OpenGL4.SeparableTarget _target = default(OpenTK.Graphics.OpenGL4.SeparableTarget); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,] _row = default(int[,]); - int[,] _column = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.SeparableFilter2D(_target,_internalformat,_width,_height,_format,_type,_row,_column); -} -static unsafe void Test_SeparableFilter2D_36535() { - OpenTK.Graphics.OpenGL4.SeparableTarget _target = default(OpenTK.Graphics.OpenGL4.SeparableTarget); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,,] _row = default(int[,,]); - int[,,] _column = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.SeparableFilter2D(_target,_internalformat,_width,_height,_format,_type,_row,_column); -} -static unsafe void Test_SeparableFilter2D_36536() { - OpenTK.Graphics.OpenGL4.SeparableTarget _target = default(OpenTK.Graphics.OpenGL4.SeparableTarget); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int _row = default(int); - int _column = default(int); - OpenTK.Graphics.OpenGL4.GL.SeparableFilter2D(_target,_internalformat,_width,_height,_format,_type,ref _row,ref _column); -} -static unsafe void Test_ShaderBinary_36537() { - System.Int32 _count = default(System.Int32); - System.Int32[] _shaders = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_36538() { - System.Int32 _count = default(System.Int32); - System.Int32[] _shaders = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_36539() { - System.Int32 _count = default(System.Int32); - System.Int32[] _shaders = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_36540() { - System.Int32 _count = default(System.Int32); - System.Int32[] _shaders = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_36541() { - System.Int32 _count = default(System.Int32); - System.Int32[] _shaders = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ShaderBinary(_count,_shaders,_binaryformat,ref _binary,_length); -} -static unsafe void Test_ShaderBinary_36542() { - System.Int32 _count = default(System.Int32); - System.Int32 _shaders = default(System.Int32); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_36543() { - System.Int32 _count = default(System.Int32); - System.Int32 _shaders = default(System.Int32); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_36544() { - System.Int32 _count = default(System.Int32); - System.Int32 _shaders = default(System.Int32); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_36545() { - System.Int32 _count = default(System.Int32); - System.Int32 _shaders = default(System.Int32); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_36546() { - System.Int32 _count = default(System.Int32); - System.Int32 _shaders = default(System.Int32); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ShaderBinary(_count,ref _shaders,_binaryformat,ref _binary,_length); -} -static unsafe void Test_ShaderBinary_36547() { - System.Int32 _count = default(System.Int32); - System.Int32* _shaders = default(System.Int32*); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_36548() { - System.Int32 _count = default(System.Int32); - System.Int32* _shaders = default(System.Int32*); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_36549() { - System.Int32 _count = default(System.Int32); - System.Int32* _shaders = default(System.Int32*); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_36550() { - System.Int32 _count = default(System.Int32); - System.Int32* _shaders = default(System.Int32*); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_36551() { - System.Int32 _count = default(System.Int32); - System.Int32* _shaders = default(System.Int32*); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ShaderBinary(_count,_shaders,_binaryformat,ref _binary,_length); -} -static unsafe void Test_ShaderBinary_36552() { - System.Int32 _count = default(System.Int32); - System.UInt32[] _shaders = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_36553() { - System.Int32 _count = default(System.Int32); - System.UInt32[] _shaders = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_36554() { - System.Int32 _count = default(System.Int32); - System.UInt32[] _shaders = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_36555() { - System.Int32 _count = default(System.Int32); - System.UInt32[] _shaders = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_36556() { - System.Int32 _count = default(System.Int32); - System.UInt32[] _shaders = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ShaderBinary(_count,_shaders,_binaryformat,ref _binary,_length); -} -static unsafe void Test_ShaderBinary_36557() { - System.Int32 _count = default(System.Int32); - System.UInt32 _shaders = default(System.UInt32); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_36558() { - System.Int32 _count = default(System.Int32); - System.UInt32 _shaders = default(System.UInt32); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_36559() { - System.Int32 _count = default(System.Int32); - System.UInt32 _shaders = default(System.UInt32); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_36560() { - System.Int32 _count = default(System.Int32); - System.UInt32 _shaders = default(System.UInt32); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ShaderBinary(_count,ref _shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_36561() { - System.Int32 _count = default(System.Int32); - System.UInt32 _shaders = default(System.UInt32); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ShaderBinary(_count,ref _shaders,_binaryformat,ref _binary,_length); -} -static unsafe void Test_ShaderBinary_36562() { - System.Int32 _count = default(System.Int32); - System.UInt32* _shaders = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - System.IntPtr _binary = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_36563() { - System.Int32 _count = default(System.Int32); - System.UInt32* _shaders = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - int[] _binary = default(int[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_36564() { - System.Int32 _count = default(System.Int32); - System.UInt32* _shaders = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - int[,] _binary = default(int[,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_36565() { - System.Int32 _count = default(System.Int32); - System.UInt32* _shaders = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - int[,,] _binary = default(int[,,]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ShaderBinary(_count,_shaders,_binaryformat,_binary,_length); -} -static unsafe void Test_ShaderBinary_36566() { - System.Int32 _count = default(System.Int32); - System.UInt32* _shaders = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.BinaryFormat _binaryformat = default(OpenTK.Graphics.OpenGL4.BinaryFormat); - int _binary = default(int); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ShaderBinary(_count,_shaders,_binaryformat,ref _binary,_length); -} -static unsafe void Test_ShaderSource_36567() { - System.Int32 _shader = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.String[] _string = default(System.String[]); - System.Int32[] _length = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.ShaderSource(_shader,_count,_string,_length); -} -static unsafe void Test_ShaderSource_36568() { - System.Int32 _shader = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.String[] _string = default(System.String[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ShaderSource(_shader,_count,_string,ref _length); -} -static unsafe void Test_ShaderSource_36569() { - System.Int32 _shader = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.String[] _string = default(System.String[]); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.ShaderSource(_shader,_count,_string,_length); -} -static unsafe void Test_ShaderSource_36570() { - System.UInt32 _shader = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.String[] _string = default(System.String[]); - System.Int32[] _length = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.ShaderSource(_shader,_count,_string,_length); -} -static unsafe void Test_ShaderSource_36571() { - System.UInt32 _shader = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.String[] _string = default(System.String[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ShaderSource(_shader,_count,_string,ref _length); -} -static unsafe void Test_ShaderSource_36572() { - System.UInt32 _shader = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.String[] _string = default(System.String[]); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.ShaderSource(_shader,_count,_string,_length); -} -static unsafe void Test_ShaderStorageBlockBinding_36573() { - System.Int32 _program = default(System.Int32); - System.Int32 _storageBlockIndex = default(System.Int32); - System.Int32 _storageBlockBinding = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ShaderStorageBlockBinding(_program,_storageBlockIndex,_storageBlockBinding); -} -static unsafe void Test_ShaderStorageBlockBinding_36574() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _storageBlockIndex = default(System.UInt32); - System.UInt32 _storageBlockBinding = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.ShaderStorageBlockBinding(_program,_storageBlockIndex,_storageBlockBinding); -} -static unsafe void Test_StencilFunc_36575() { - OpenTK.Graphics.OpenGL4.StencilFunction _func = default(OpenTK.Graphics.OpenGL4.StencilFunction); - System.Int32 _ref = default(System.Int32); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.StencilFunc(_func,_ref,_mask); -} -static unsafe void Test_StencilFunc_36576() { - OpenTK.Graphics.OpenGL4.StencilFunction _func = default(OpenTK.Graphics.OpenGL4.StencilFunction); - System.Int32 _ref = default(System.Int32); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.StencilFunc(_func,_ref,_mask); -} -static unsafe void Test_StencilFuncSeparate_36577() { - OpenTK.Graphics.OpenGL4.StencilFace _face = default(OpenTK.Graphics.OpenGL4.StencilFace); - OpenTK.Graphics.OpenGL4.StencilFunction _func = default(OpenTK.Graphics.OpenGL4.StencilFunction); - System.Int32 _ref = default(System.Int32); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.StencilFuncSeparate(_face,_func,_ref,_mask); -} -static unsafe void Test_StencilFuncSeparate_36578() { - OpenTK.Graphics.OpenGL4.StencilFace _face = default(OpenTK.Graphics.OpenGL4.StencilFace); - OpenTK.Graphics.OpenGL4.StencilFunction _func = default(OpenTK.Graphics.OpenGL4.StencilFunction); - System.Int32 _ref = default(System.Int32); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.StencilFuncSeparate(_face,_func,_ref,_mask); -} -static unsafe void Test_StencilMask_36579() { - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.StencilMask(_mask); -} -static unsafe void Test_StencilMask_36580() { - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.StencilMask(_mask); -} -static unsafe void Test_StencilMaskSeparate_36581() { - OpenTK.Graphics.OpenGL4.StencilFace _face = default(OpenTK.Graphics.OpenGL4.StencilFace); - System.Int32 _mask = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.StencilMaskSeparate(_face,_mask); -} -static unsafe void Test_StencilMaskSeparate_36582() { - OpenTK.Graphics.OpenGL4.StencilFace _face = default(OpenTK.Graphics.OpenGL4.StencilFace); - System.UInt32 _mask = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.StencilMaskSeparate(_face,_mask); -} -static unsafe void Test_StencilOp_36583() { - OpenTK.Graphics.OpenGL4.StencilOp _fail = default(OpenTK.Graphics.OpenGL4.StencilOp); - OpenTK.Graphics.OpenGL4.StencilOp _zfail = default(OpenTK.Graphics.OpenGL4.StencilOp); - OpenTK.Graphics.OpenGL4.StencilOp _zpass = default(OpenTK.Graphics.OpenGL4.StencilOp); - OpenTK.Graphics.OpenGL4.GL.StencilOp(_fail,_zfail,_zpass); -} -static unsafe void Test_StencilOpSeparate_36584() { - OpenTK.Graphics.OpenGL4.StencilFace _face = default(OpenTK.Graphics.OpenGL4.StencilFace); - OpenTK.Graphics.OpenGL4.StencilOp _sfail = default(OpenTK.Graphics.OpenGL4.StencilOp); - OpenTK.Graphics.OpenGL4.StencilOp _dpfail = default(OpenTK.Graphics.OpenGL4.StencilOp); - OpenTK.Graphics.OpenGL4.StencilOp _dppass = default(OpenTK.Graphics.OpenGL4.StencilOp); - OpenTK.Graphics.OpenGL4.GL.StencilOpSeparate(_face,_sfail,_dpfail,_dppass); -} -static unsafe void Test_TexBuffer_36585() { - OpenTK.Graphics.OpenGL4.TextureBufferTarget _target = default(OpenTK.Graphics.OpenGL4.TextureBufferTarget); - OpenTK.Graphics.OpenGL4.SizedInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.SizedInternalFormat); - System.Int32 _buffer = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.TexBuffer(_target,_internalformat,_buffer); -} -static unsafe void Test_TexBuffer_36586() { - OpenTK.Graphics.OpenGL4.TextureBufferTarget _target = default(OpenTK.Graphics.OpenGL4.TextureBufferTarget); - OpenTK.Graphics.OpenGL4.SizedInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.SizedInternalFormat); - System.UInt32 _buffer = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.TexBuffer(_target,_internalformat,_buffer); -} -static unsafe void Test_TexBufferRange_36587() { - OpenTK.Graphics.OpenGL4.TextureBufferTarget _target = default(OpenTK.Graphics.OpenGL4.TextureBufferTarget); - OpenTK.Graphics.OpenGL4.SizedInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.SizedInternalFormat); - System.Int32 _buffer = default(System.Int32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.TexBufferRange(_target,_internalformat,_buffer,_offset,_size); -} -static unsafe void Test_TexBufferRange_36588() { - OpenTK.Graphics.OpenGL4.TextureBufferTarget _target = default(OpenTK.Graphics.OpenGL4.TextureBufferTarget); - OpenTK.Graphics.OpenGL4.SizedInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.SizedInternalFormat); - System.UInt32 _buffer = default(System.UInt32); - System.IntPtr _offset = default(System.IntPtr); - System.IntPtr _size = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.TexBufferRange(_target,_internalformat,_buffer,_offset,_size); -} -static unsafe void Test_TexCoordP1_36589() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.TexCoordP1(_type,_coords); -} -static unsafe void Test_TexCoordP1_36590() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.UInt32 _coords = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.TexCoordP1(_type,_coords); -} -static unsafe void Test_TexCoordP1_36591() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.TexCoordP1(_type,_coords); -} -static unsafe void Test_TexCoordP1_36592() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.UInt32* _coords = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.TexCoordP1(_type,_coords); -} -static unsafe void Test_TexCoordP2_36593() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.TexCoordP2(_type,_coords); -} -static unsafe void Test_TexCoordP2_36594() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.UInt32 _coords = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.TexCoordP2(_type,_coords); -} -static unsafe void Test_TexCoordP2_36595() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.TexCoordP2(_type,_coords); -} -static unsafe void Test_TexCoordP2_36596() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.UInt32* _coords = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.TexCoordP2(_type,_coords); -} -static unsafe void Test_TexCoordP3_36597() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.TexCoordP3(_type,_coords); -} -static unsafe void Test_TexCoordP3_36598() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.UInt32 _coords = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.TexCoordP3(_type,_coords); -} -static unsafe void Test_TexCoordP3_36599() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.TexCoordP3(_type,_coords); -} -static unsafe void Test_TexCoordP3_36600() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.UInt32* _coords = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.TexCoordP3(_type,_coords); -} -static unsafe void Test_TexCoordP4_36601() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Int32 _coords = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.TexCoordP4(_type,_coords); -} -static unsafe void Test_TexCoordP4_36602() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.UInt32 _coords = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.TexCoordP4(_type,_coords); -} -static unsafe void Test_TexCoordP4_36603() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Int32* _coords = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.TexCoordP4(_type,_coords); -} -static unsafe void Test_TexCoordP4_36604() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.UInt32* _coords = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.TexCoordP4(_type,_coords); -} -static unsafe void Test_TexImage1D_36605() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.TexImage1D(_target,_level,_internalformat,_width,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage1D_36606() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL4.GL.TexImage1D(_target,_level,_internalformat,_width,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage1D_36607() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.TexImage1D(_target,_level,_internalformat,_width,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage1D_36608() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.TexImage1D(_target,_level,_internalformat,_width,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage1D_36609() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL4.GL.TexImage1D(_target,_level,_internalformat,_width,_border,_format,_type,ref _pixels); -} -static unsafe void Test_TexImage2D_36610() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage2D_36611() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL4.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage2D_36612() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage2D_36613() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage2D_36614() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL4.GL.TexImage2D(_target,_level,_internalformat,_width,_height,_border,_format,_type,ref _pixels); -} -static unsafe void Test_TexImage2DMultisample_36615() { - OpenTK.Graphics.OpenGL4.TextureTargetMultisample _target = default(OpenTK.Graphics.OpenGL4.TextureTargetMultisample); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Boolean _fixedsamplelocations = default(System.Boolean); - OpenTK.Graphics.OpenGL4.GL.TexImage2DMultisample(_target,_samples,_internalformat,_width,_height,_fixedsamplelocations); -} -static unsafe void Test_TexImage3D_36616() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_36617() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL4.GL.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_36618() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_36619() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,_pixels); -} -static unsafe void Test_TexImage3D_36620() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Int32 _border = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL4.GL.TexImage3D(_target,_level,_internalformat,_width,_height,_depth,_border,_format,_type,ref _pixels); -} -static unsafe void Test_TexImage3DMultisample_36621() { - OpenTK.Graphics.OpenGL4.TextureTargetMultisample _target = default(OpenTK.Graphics.OpenGL4.TextureTargetMultisample); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Boolean _fixedsamplelocations = default(System.Boolean); - OpenTK.Graphics.OpenGL4.GL.TexImage3DMultisample(_target,_samples,_internalformat,_width,_height,_depth,_fixedsamplelocations); -} -static unsafe void Test_TexParameter_36622() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - OpenTK.Graphics.OpenGL4.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL4.TextureParameterName); - System.Single _param = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.TexParameter(_target,_pname,_param); -} -static unsafe void Test_TexParameter_36623() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - OpenTK.Graphics.OpenGL4.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL4.TextureParameterName); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.TexParameter(_target,_pname,_params); -} -static unsafe void Test_TexParameter_36624() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - OpenTK.Graphics.OpenGL4.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL4.TextureParameterName); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.TexParameter(_target,_pname,_params); -} -static unsafe void Test_TexParameter_36625() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - OpenTK.Graphics.OpenGL4.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL4.TextureParameterName); - System.Int32 _param = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.TexParameter(_target,_pname,_param); -} -static unsafe void Test_TexParameterI_36626() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - OpenTK.Graphics.OpenGL4.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL4.TextureParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.TexParameterI(_target,_pname,_params); -} -static unsafe void Test_TexParameterI_36627() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - OpenTK.Graphics.OpenGL4.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL4.TextureParameterName); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.TexParameterI(_target,_pname,ref _params); -} -static unsafe void Test_TexParameterI_36628() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - OpenTK.Graphics.OpenGL4.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL4.TextureParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.TexParameterI(_target,_pname,_params); -} -static unsafe void Test_TexParameterI_36629() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - OpenTK.Graphics.OpenGL4.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL4.TextureParameterName); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.TexParameterI(_target,_pname,_params); -} -static unsafe void Test_TexParameterI_36630() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - OpenTK.Graphics.OpenGL4.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL4.TextureParameterName); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.TexParameterI(_target,_pname,ref _params); -} -static unsafe void Test_TexParameterI_36631() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - OpenTK.Graphics.OpenGL4.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL4.TextureParameterName); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.TexParameterI(_target,_pname,_params); -} -static unsafe void Test_TexParameter_36632() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - OpenTK.Graphics.OpenGL4.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL4.TextureParameterName); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.TexParameter(_target,_pname,_params); -} -static unsafe void Test_TexParameter_36633() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - OpenTK.Graphics.OpenGL4.TextureParameterName _pname = default(OpenTK.Graphics.OpenGL4.TextureParameterName); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.TexParameter(_target,_pname,_params); -} -static unsafe void Test_TexStorage1D_36634() { - OpenTK.Graphics.OpenGL4.TextureTarget1d _target = default(OpenTK.Graphics.OpenGL4.TextureTarget1d); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.OpenGL4.SizedInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.SizedInternalFormat); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.TexStorage1D(_target,_levels,_internalformat,_width); -} -static unsafe void Test_TexStorage2D_36635() { - OpenTK.Graphics.OpenGL4.TextureTarget2d _target = default(OpenTK.Graphics.OpenGL4.TextureTarget2d); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.OpenGL4.SizedInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.SizedInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.TexStorage2D(_target,_levels,_internalformat,_width,_height); -} -static unsafe void Test_TexStorage2DMultisample_36636() { - OpenTK.Graphics.OpenGL4.TextureTargetMultisample2d _target = default(OpenTK.Graphics.OpenGL4.TextureTargetMultisample2d); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.OpenGL4.SizedInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.SizedInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Boolean _fixedsamplelocations = default(System.Boolean); - OpenTK.Graphics.OpenGL4.GL.TexStorage2DMultisample(_target,_samples,_internalformat,_width,_height,_fixedsamplelocations); -} -static unsafe void Test_TexStorage3D_36637() { - OpenTK.Graphics.OpenGL4.TextureTarget3d _target = default(OpenTK.Graphics.OpenGL4.TextureTarget3d); - System.Int32 _levels = default(System.Int32); - OpenTK.Graphics.OpenGL4.SizedInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.SizedInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.TexStorage3D(_target,_levels,_internalformat,_width,_height,_depth); -} -static unsafe void Test_TexStorage3DMultisample_36638() { - OpenTK.Graphics.OpenGL4.TextureTargetMultisample3d _target = default(OpenTK.Graphics.OpenGL4.TextureTargetMultisample3d); - System.Int32 _samples = default(System.Int32); - OpenTK.Graphics.OpenGL4.SizedInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.SizedInternalFormat); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Boolean _fixedsamplelocations = default(System.Boolean); - OpenTK.Graphics.OpenGL4.GL.TexStorage3DMultisample(_target,_samples,_internalformat,_width,_height,_depth,_fixedsamplelocations); -} -static unsafe void Test_TexSubImage1D_36639() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.TexSubImage1D(_target,_level,_xoffset,_width,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage1D_36640() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL4.GL.TexSubImage1D(_target,_level,_xoffset,_width,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage1D_36641() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.TexSubImage1D(_target,_level,_xoffset,_width,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage1D_36642() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.TexSubImage1D(_target,_level,_xoffset,_width,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage1D_36643() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL4.GL.TexSubImage1D(_target,_level,_xoffset,_width,_format,_type,ref _pixels); -} -static unsafe void Test_TexSubImage2D_36644() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_36645() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL4.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_36646() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_36647() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage2D_36648() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL4.GL.TexSubImage2D(_target,_level,_xoffset,_yoffset,_width,_height,_format,_type,ref _pixels); -} -static unsafe void Test_TexSubImage3D_36649() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - System.IntPtr _pixels = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage3D_36650() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[] _pixels = default(int[]); - OpenTK.Graphics.OpenGL4.GL.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage3D_36651() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,] _pixels = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage3D_36652() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int[,,] _pixels = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,_pixels); -} -static unsafe void Test_TexSubImage3D_36653() { - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelFormat _format = default(OpenTK.Graphics.OpenGL4.PixelFormat); - OpenTK.Graphics.OpenGL4.PixelType _type = default(OpenTK.Graphics.OpenGL4.PixelType); - int _pixels = default(int); - OpenTK.Graphics.OpenGL4.GL.TexSubImage3D(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_format,_type,ref _pixels); -} -static unsafe void Test_TextureView_36654() { - System.Int32 _texture = default(System.Int32); - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.Int32 _origtexture = default(System.Int32); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.Int32 _minlevel = default(System.Int32); - System.Int32 _numlevels = default(System.Int32); - System.Int32 _minlayer = default(System.Int32); - System.Int32 _numlayers = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.TextureView(_texture,_target,_origtexture,_internalformat,_minlevel,_numlevels,_minlayer,_numlayers); -} -static unsafe void Test_TextureView_36655() { - System.UInt32 _texture = default(System.UInt32); - OpenTK.Graphics.OpenGL4.TextureTarget _target = default(OpenTK.Graphics.OpenGL4.TextureTarget); - System.UInt32 _origtexture = default(System.UInt32); - OpenTK.Graphics.OpenGL4.PixelInternalFormat _internalformat = default(OpenTK.Graphics.OpenGL4.PixelInternalFormat); - System.UInt32 _minlevel = default(System.UInt32); - System.UInt32 _numlevels = default(System.UInt32); - System.UInt32 _minlayer = default(System.UInt32); - System.UInt32 _numlayers = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.TextureView(_texture,_target,_origtexture,_internalformat,_minlevel,_numlevels,_minlayer,_numlayers); -} -static unsafe void Test_TransformFeedbackVaryings_36656() { - System.Int32 _program = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.String[] _varyings = default(System.String[]); - OpenTK.Graphics.OpenGL4.TransformFeedbackMode _bufferMode = default(OpenTK.Graphics.OpenGL4.TransformFeedbackMode); - OpenTK.Graphics.OpenGL4.GL.TransformFeedbackVaryings(_program,_count,_varyings,_bufferMode); -} -static unsafe void Test_TransformFeedbackVaryings_36657() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.String[] _varyings = default(System.String[]); - OpenTK.Graphics.OpenGL4.TransformFeedbackMode _bufferMode = default(OpenTK.Graphics.OpenGL4.TransformFeedbackMode); - OpenTK.Graphics.OpenGL4.GL.TransformFeedbackVaryings(_program,_count,_varyings,_bufferMode); -} -static unsafe void Test_Uniform1_36658() { - System.Int32 _location = default(System.Int32); - System.Double _x = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.Uniform1(_location,_x); -} -static unsafe void Test_Uniform1_36659() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.Uniform1(_location,_count,_value); -} -static unsafe void Test_Uniform1_36660() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.Uniform1(_location,_count,ref _value); -} -static unsafe void Test_Uniform1_36661() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.Uniform1(_location,_count,_value); -} -static unsafe void Test_Uniform1_36662() { - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.Uniform1(_location,_v0); -} -static unsafe void Test_Uniform1_36663() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.Uniform1(_location,_count,_value); -} -static unsafe void Test_Uniform1_36664() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.Uniform1(_location,_count,ref _value); -} -static unsafe void Test_Uniform1_36665() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.Uniform1(_location,_count,_value); -} -static unsafe void Test_Uniform1_36666() { - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.Uniform1(_location,_v0); -} -static unsafe void Test_Uniform1_36667() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.Uniform1(_location,_count,_value); -} -static unsafe void Test_Uniform1_36668() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.Uniform1(_location,_count,ref _value); -} -static unsafe void Test_Uniform1_36669() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.Uniform1(_location,_count,_value); -} -static unsafe void Test_Uniform1_36670() { - System.Int32 _location = default(System.Int32); - System.UInt32 _v0 = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.Uniform1(_location,_v0); -} -static unsafe void Test_Uniform1_36671() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _value = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.Uniform1(_location,_count,_value); -} -static unsafe void Test_Uniform1_36672() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.Uniform1(_location,_count,ref _value); -} -static unsafe void Test_Uniform1_36673() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.Uniform1(_location,_count,_value); -} -static unsafe void Test_Uniform2_36674() { - System.Int32 _location = default(System.Int32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.Uniform2(_location,_x,_y); -} -static unsafe void Test_Uniform2_36675() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.Uniform2(_location,_count,_value); -} -static unsafe void Test_Uniform2_36676() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.Uniform2(_location,_count,ref _value); -} -static unsafe void Test_Uniform2_36677() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.Uniform2(_location,_count,_value); -} -static unsafe void Test_Uniform2_36678() { - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.Uniform2(_location,_v0,_v1); -} -static unsafe void Test_Uniform2_36679() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.Uniform2(_location,_count,_value); -} -static unsafe void Test_Uniform2_36680() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.Uniform2(_location,_count,ref _value); -} -static unsafe void Test_Uniform2_36681() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.Uniform2(_location,_count,_value); -} -static unsafe void Test_Uniform2_36682() { - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.Uniform2(_location,_v0,_v1); -} -static unsafe void Test_Uniform2_36683() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.Uniform2(_location,_count,_value); -} -static unsafe void Test_Uniform2_36684() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.Uniform2(_location,_count,_value); -} -static unsafe void Test_Uniform2_36685() { - System.Int32 _location = default(System.Int32); - System.UInt32 _v0 = default(System.UInt32); - System.UInt32 _v1 = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.Uniform2(_location,_v0,_v1); -} -static unsafe void Test_Uniform2_36686() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _value = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.Uniform2(_location,_count,_value); -} -static unsafe void Test_Uniform2_36687() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.Uniform2(_location,_count,ref _value); -} -static unsafe void Test_Uniform2_36688() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.Uniform2(_location,_count,_value); -} -static unsafe void Test_Uniform3_36689() { - System.Int32 _location = default(System.Int32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.Uniform3(_location,_x,_y,_z); -} -static unsafe void Test_Uniform3_36690() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.Uniform3(_location,_count,_value); -} -static unsafe void Test_Uniform3_36691() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.Uniform3(_location,_count,ref _value); -} -static unsafe void Test_Uniform3_36692() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.Uniform3(_location,_count,_value); -} -static unsafe void Test_Uniform3_36693() { - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.Uniform3(_location,_v0,_v1,_v2); -} -static unsafe void Test_Uniform3_36694() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.Uniform3(_location,_count,_value); -} -static unsafe void Test_Uniform3_36695() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.Uniform3(_location,_count,ref _value); -} -static unsafe void Test_Uniform3_36696() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.Uniform3(_location,_count,_value); -} -static unsafe void Test_Uniform3_36697() { - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - System.Int32 _v2 = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.Uniform3(_location,_v0,_v1,_v2); -} -static unsafe void Test_Uniform3_36698() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.Uniform3(_location,_count,_value); -} -static unsafe void Test_Uniform3_36699() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.Uniform3(_location,_count,ref _value); -} -static unsafe void Test_Uniform3_36700() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.Uniform3(_location,_count,_value); -} -static unsafe void Test_Uniform3_36701() { - System.Int32 _location = default(System.Int32); - System.UInt32 _v0 = default(System.UInt32); - System.UInt32 _v1 = default(System.UInt32); - System.UInt32 _v2 = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.Uniform3(_location,_v0,_v1,_v2); -} -static unsafe void Test_Uniform3_36702() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _value = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.Uniform3(_location,_count,_value); -} -static unsafe void Test_Uniform3_36703() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.Uniform3(_location,_count,ref _value); -} -static unsafe void Test_Uniform3_36704() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.Uniform3(_location,_count,_value); -} -static unsafe void Test_Uniform4_36705() { - System.Int32 _location = default(System.Int32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - System.Double _w = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.Uniform4(_location,_x,_y,_z,_w); -} -static unsafe void Test_Uniform4_36706() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.Uniform4(_location,_count,_value); -} -static unsafe void Test_Uniform4_36707() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.Uniform4(_location,_count,ref _value); -} -static unsafe void Test_Uniform4_36708() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.Uniform4(_location,_count,_value); -} -static unsafe void Test_Uniform4_36709() { - System.Int32 _location = default(System.Int32); - System.Single _v0 = default(System.Single); - System.Single _v1 = default(System.Single); - System.Single _v2 = default(System.Single); - System.Single _v3 = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.Uniform4(_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_Uniform4_36710() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.Uniform4(_location,_count,_value); -} -static unsafe void Test_Uniform4_36711() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.Uniform4(_location,_count,ref _value); -} -static unsafe void Test_Uniform4_36712() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.Uniform4(_location,_count,_value); -} -static unsafe void Test_Uniform4_36713() { - System.Int32 _location = default(System.Int32); - System.Int32 _v0 = default(System.Int32); - System.Int32 _v1 = default(System.Int32); - System.Int32 _v2 = default(System.Int32); - System.Int32 _v3 = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.Uniform4(_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_Uniform4_36714() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32[] _value = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.Uniform4(_location,_count,_value); -} -static unsafe void Test_Uniform4_36715() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.Uniform4(_location,_count,ref _value); -} -static unsafe void Test_Uniform4_36716() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.Uniform4(_location,_count,_value); -} -static unsafe void Test_Uniform4_36717() { - System.Int32 _location = default(System.Int32); - System.UInt32 _v0 = default(System.UInt32); - System.UInt32 _v1 = default(System.UInt32); - System.UInt32 _v2 = default(System.UInt32); - System.UInt32 _v3 = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.Uniform4(_location,_v0,_v1,_v2,_v3); -} -static unsafe void Test_Uniform4_36718() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32[] _value = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.Uniform4(_location,_count,_value); -} -static unsafe void Test_Uniform4_36719() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.Uniform4(_location,_count,ref _value); -} -static unsafe void Test_Uniform4_36720() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.Uniform4(_location,_count,_value); -} -static unsafe void Test_UniformBlockBinding_36721() { - System.Int32 _program = default(System.Int32); - System.Int32 _uniformBlockIndex = default(System.Int32); - System.Int32 _uniformBlockBinding = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.UniformBlockBinding(_program,_uniformBlockIndex,_uniformBlockBinding); -} -static unsafe void Test_UniformBlockBinding_36722() { - System.UInt32 _program = default(System.UInt32); - System.UInt32 _uniformBlockIndex = default(System.UInt32); - System.UInt32 _uniformBlockBinding = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.UniformBlockBinding(_program,_uniformBlockIndex,_uniformBlockBinding); -} -static unsafe void Test_UniformMatrix2_36723() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix2_36724() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix2(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix2_36725() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix2_36726() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix2_36727() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix2(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix2_36728() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix2x3_36729() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix2x3(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix2x3_36730() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix2x3(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix2x3_36731() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix2x3(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix2x3_36732() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix2x3(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix2x3_36733() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix2x3(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix2x3_36734() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix2x3(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix2x4_36735() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix2x4(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix2x4_36736() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix2x4(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix2x4_36737() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix2x4(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix2x4_36738() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix2x4(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix2x4_36739() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix2x4(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix2x4_36740() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix2x4(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3_36741() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix3(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3_36742() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix3(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix3_36743() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix3(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3_36744() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix3(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3_36745() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix3(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix3_36746() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix3(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3x2_36747() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix3x2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3x2_36748() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix3x2(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix3x2_36749() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix3x2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3x2_36750() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix3x2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3x2_36751() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix3x2(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix3x2_36752() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix3x2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3x4_36753() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix3x4(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3x4_36754() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix3x4(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix3x4_36755() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix3x4(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3x4_36756() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix3x4(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix3x4_36757() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix3x4(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix3x4_36758() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix3x4(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4_36759() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix4(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4_36760() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix4(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix4_36761() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix4(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4_36762() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix4(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4_36763() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix4(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix4_36764() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix4(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4x2_36765() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix4x2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4x2_36766() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix4x2(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix4x2_36767() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix4x2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4x2_36768() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix4x2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4x2_36769() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix4x2(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix4x2_36770() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix4x2(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4x3_36771() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double[] _value = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix4x3(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4x3_36772() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double _value = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix4x3(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix4x3_36773() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Double* _value = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix4x3(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4x3_36774() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single[] _value = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix4x3(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformMatrix4x3_36775() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix4x3(_location,_count,_transpose,ref _value); -} -static unsafe void Test_UniformMatrix4x3_36776() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Boolean _transpose = default(System.Boolean); - System.Single* _value = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.UniformMatrix4x3(_location,_count,_transpose,_value); -} -static unsafe void Test_UniformSubroutines_36777() { - OpenTK.Graphics.OpenGL4.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL4.ShaderType); - System.Int32 _count = default(System.Int32); - System.Int32[] _indices = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.UniformSubroutines(_shadertype,_count,_indices); -} -static unsafe void Test_UniformSubroutines_36778() { - OpenTK.Graphics.OpenGL4.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL4.ShaderType); - System.Int32 _count = default(System.Int32); - System.Int32 _indices = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.UniformSubroutines(_shadertype,_count,ref _indices); -} -static unsafe void Test_UniformSubroutines_36779() { - OpenTK.Graphics.OpenGL4.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL4.ShaderType); - System.Int32 _count = default(System.Int32); - System.Int32* _indices = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.UniformSubroutines(_shadertype,_count,_indices); -} -static unsafe void Test_UniformSubroutines_36780() { - OpenTK.Graphics.OpenGL4.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL4.ShaderType); - System.Int32 _count = default(System.Int32); - System.UInt32[] _indices = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.UniformSubroutines(_shadertype,_count,_indices); -} -static unsafe void Test_UniformSubroutines_36781() { - OpenTK.Graphics.OpenGL4.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL4.ShaderType); - System.Int32 _count = default(System.Int32); - System.UInt32 _indices = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.UniformSubroutines(_shadertype,_count,ref _indices); -} -static unsafe void Test_UniformSubroutines_36782() { - OpenTK.Graphics.OpenGL4.ShaderType _shadertype = default(OpenTK.Graphics.OpenGL4.ShaderType); - System.Int32 _count = default(System.Int32); - System.UInt32* _indices = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.UniformSubroutines(_shadertype,_count,_indices); -} -static unsafe void Test_UnmapBuffer_36783() { - OpenTK.Graphics.OpenGL4.BufferTarget _target = default(OpenTK.Graphics.OpenGL4.BufferTarget); - System.Boolean r = OpenTK.Graphics.OpenGL4.GL.UnmapBuffer(_target); -} -static unsafe void Test_UseProgram_36784() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.UseProgram(_program); -} -static unsafe void Test_UseProgram_36785() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.UseProgram(_program); -} -static unsafe void Test_UseProgramStages_36786() { - System.Int32 _pipeline = default(System.Int32); - OpenTK.Graphics.OpenGL4.ProgramStageMask _stages = default(OpenTK.Graphics.OpenGL4.ProgramStageMask); - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.UseProgramStages(_pipeline,_stages,_program); -} -static unsafe void Test_UseProgramStages_36787() { - System.UInt32 _pipeline = default(System.UInt32); - OpenTK.Graphics.OpenGL4.ProgramStageMask _stages = default(OpenTK.Graphics.OpenGL4.ProgramStageMask); - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.UseProgramStages(_pipeline,_stages,_program); -} -static unsafe void Test_ValidateProgram_36788() { - System.Int32 _program = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ValidateProgram(_program); -} -static unsafe void Test_ValidateProgram_36789() { - System.UInt32 _program = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.ValidateProgram(_program); -} -static unsafe void Test_ValidateProgramPipeline_36790() { - System.Int32 _pipeline = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.ValidateProgramPipeline(_pipeline); -} -static unsafe void Test_ValidateProgramPipeline_36791() { - System.UInt32 _pipeline = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.ValidateProgramPipeline(_pipeline); -} -static unsafe void Test_VertexAttrib1_36792() { - System.Int32 _index = default(System.Int32); - System.Double _x = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib1(_index,_x); -} -static unsafe void Test_VertexAttrib1_36793() { - System.UInt32 _index = default(System.UInt32); - System.Double _x = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib1(_index,_x); -} -static unsafe void Test_VertexAttrib1_36794() { - System.Int32 _index = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib1(_index,_v); -} -static unsafe void Test_VertexAttrib1_36795() { - System.UInt32 _index = default(System.UInt32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib1(_index,_v); -} -static unsafe void Test_VertexAttrib1_36796() { - System.Int32 _index = default(System.Int32); - System.Single _x = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib1(_index,_x); -} -static unsafe void Test_VertexAttrib1_36797() { - System.UInt32 _index = default(System.UInt32); - System.Single _x = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib1(_index,_x); -} -static unsafe void Test_VertexAttrib1_36798() { - System.Int32 _index = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib1(_index,_v); -} -static unsafe void Test_VertexAttrib1_36799() { - System.UInt32 _index = default(System.UInt32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib1(_index,_v); -} -static unsafe void Test_VertexAttrib1_36800() { - System.Int32 _index = default(System.Int32); - System.Int16 _x = default(System.Int16); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib1(_index,_x); -} -static unsafe void Test_VertexAttrib1_36801() { - System.UInt32 _index = default(System.UInt32); - System.Int16 _x = default(System.Int16); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib1(_index,_x); -} -static unsafe void Test_VertexAttrib1_36802() { - System.Int32 _index = default(System.Int32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib1(_index,_v); -} -static unsafe void Test_VertexAttrib1_36803() { - System.UInt32 _index = default(System.UInt32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib1(_index,_v); -} -static unsafe void Test_VertexAttrib2_36804() { - System.Int32 _index = default(System.Int32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib2(_index,_x,_y); -} -static unsafe void Test_VertexAttrib2_36805() { - System.UInt32 _index = default(System.UInt32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib2(_index,_x,_y); -} -static unsafe void Test_VertexAttrib2_36806() { - System.Int32 _index = default(System.Int32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_36807() { - System.Int32 _index = default(System.Int32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib2(_index,ref _v); -} -static unsafe void Test_VertexAttrib2_36808() { - System.Int32 _index = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_36809() { - System.UInt32 _index = default(System.UInt32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_36810() { - System.UInt32 _index = default(System.UInt32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib2(_index,ref _v); -} -static unsafe void Test_VertexAttrib2_36811() { - System.UInt32 _index = default(System.UInt32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_36812() { - System.Int32 _index = default(System.Int32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib2(_index,_x,_y); -} -static unsafe void Test_VertexAttrib2_36813() { - System.UInt32 _index = default(System.UInt32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib2(_index,_x,_y); -} -static unsafe void Test_VertexAttrib2_36814() { - System.Int32 _index = default(System.Int32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_36815() { - System.Int32 _index = default(System.Int32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib2(_index,ref _v); -} -static unsafe void Test_VertexAttrib2_36816() { - System.Int32 _index = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_36817() { - System.UInt32 _index = default(System.UInt32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_36818() { - System.UInt32 _index = default(System.UInt32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib2(_index,ref _v); -} -static unsafe void Test_VertexAttrib2_36819() { - System.UInt32 _index = default(System.UInt32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_36820() { - System.Int32 _index = default(System.Int32); - System.Int16 _x = default(System.Int16); - System.Int16 _y = default(System.Int16); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib2(_index,_x,_y); -} -static unsafe void Test_VertexAttrib2_36821() { - System.UInt32 _index = default(System.UInt32); - System.Int16 _x = default(System.Int16); - System.Int16 _y = default(System.Int16); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib2(_index,_x,_y); -} -static unsafe void Test_VertexAttrib2_36822() { - System.Int32 _index = default(System.Int32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_36823() { - System.Int32 _index = default(System.Int32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib2(_index,ref _v); -} -static unsafe void Test_VertexAttrib2_36824() { - System.Int32 _index = default(System.Int32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_36825() { - System.UInt32 _index = default(System.UInt32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib2_36826() { - System.UInt32 _index = default(System.UInt32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib2(_index,ref _v); -} -static unsafe void Test_VertexAttrib2_36827() { - System.UInt32 _index = default(System.UInt32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib2(_index,_v); -} -static unsafe void Test_VertexAttrib3_36828() { - System.Int32 _index = default(System.Int32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttrib3_36829() { - System.UInt32 _index = default(System.UInt32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttrib3_36830() { - System.Int32 _index = default(System.Int32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_36831() { - System.Int32 _index = default(System.Int32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib3(_index,ref _v); -} -static unsafe void Test_VertexAttrib3_36832() { - System.Int32 _index = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_36833() { - System.UInt32 _index = default(System.UInt32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_36834() { - System.UInt32 _index = default(System.UInt32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib3(_index,ref _v); -} -static unsafe void Test_VertexAttrib3_36835() { - System.UInt32 _index = default(System.UInt32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_36836() { - System.Int32 _index = default(System.Int32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttrib3_36837() { - System.UInt32 _index = default(System.UInt32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttrib3_36838() { - System.Int32 _index = default(System.Int32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_36839() { - System.Int32 _index = default(System.Int32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib3(_index,ref _v); -} -static unsafe void Test_VertexAttrib3_36840() { - System.Int32 _index = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_36841() { - System.UInt32 _index = default(System.UInt32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_36842() { - System.UInt32 _index = default(System.UInt32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib3(_index,ref _v); -} -static unsafe void Test_VertexAttrib3_36843() { - System.UInt32 _index = default(System.UInt32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_36844() { - System.Int32 _index = default(System.Int32); - System.Int16 _x = default(System.Int16); - System.Int16 _y = default(System.Int16); - System.Int16 _z = default(System.Int16); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttrib3_36845() { - System.UInt32 _index = default(System.UInt32); - System.Int16 _x = default(System.Int16); - System.Int16 _y = default(System.Int16); - System.Int16 _z = default(System.Int16); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttrib3_36846() { - System.Int32 _index = default(System.Int32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_36847() { - System.Int32 _index = default(System.Int32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib3(_index,ref _v); -} -static unsafe void Test_VertexAttrib3_36848() { - System.Int32 _index = default(System.Int32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_36849() { - System.UInt32 _index = default(System.UInt32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib3_36850() { - System.UInt32 _index = default(System.UInt32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib3(_index,ref _v); -} -static unsafe void Test_VertexAttrib3_36851() { - System.UInt32 _index = default(System.UInt32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib3(_index,_v); -} -static unsafe void Test_VertexAttrib4_36852() { - System.UInt32 _index = default(System.UInt32); - System.SByte[] _v = default(System.SByte[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_36853() { - System.UInt32 _index = default(System.UInt32); - System.SByte _v = default(System.SByte); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_36854() { - System.UInt32 _index = default(System.UInt32); - System.SByte* _v = default(System.SByte*); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_36855() { - System.Int32 _index = default(System.Int32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - System.Double _w = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttrib4_36856() { - System.UInt32 _index = default(System.UInt32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - System.Double _w = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttrib4_36857() { - System.Int32 _index = default(System.Int32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_36858() { - System.Int32 _index = default(System.Int32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_36859() { - System.Int32 _index = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_36860() { - System.UInt32 _index = default(System.UInt32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_36861() { - System.UInt32 _index = default(System.UInt32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_36862() { - System.UInt32 _index = default(System.UInt32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_36863() { - System.Int32 _index = default(System.Int32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - System.Single _w = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttrib4_36864() { - System.UInt32 _index = default(System.UInt32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _z = default(System.Single); - System.Single _w = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttrib4_36865() { - System.Int32 _index = default(System.Int32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_36866() { - System.Int32 _index = default(System.Int32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_36867() { - System.Int32 _index = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_36868() { - System.UInt32 _index = default(System.UInt32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_36869() { - System.UInt32 _index = default(System.UInt32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_36870() { - System.UInt32 _index = default(System.UInt32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_36871() { - System.Int32 _index = default(System.Int32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_36872() { - System.Int32 _index = default(System.Int32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_36873() { - System.Int32 _index = default(System.Int32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_36874() { - System.UInt32 _index = default(System.UInt32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_36875() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_36876() { - System.UInt32 _index = default(System.UInt32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4N_36877() { - System.UInt32 _index = default(System.UInt32); - System.SByte[] _v = default(System.SByte[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_36878() { - System.UInt32 _index = default(System.UInt32); - System.SByte _v = default(System.SByte); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4N(_index,ref _v); -} -static unsafe void Test_VertexAttrib4N_36879() { - System.UInt32 _index = default(System.UInt32); - System.SByte* _v = default(System.SByte*); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_36880() { - System.Int32 _index = default(System.Int32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_36881() { - System.Int32 _index = default(System.Int32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4N(_index,ref _v); -} -static unsafe void Test_VertexAttrib4N_36882() { - System.Int32 _index = default(System.Int32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_36883() { - System.UInt32 _index = default(System.UInt32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_36884() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4N(_index,ref _v); -} -static unsafe void Test_VertexAttrib4N_36885() { - System.UInt32 _index = default(System.UInt32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_36886() { - System.Int32 _index = default(System.Int32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_36887() { - System.Int32 _index = default(System.Int32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4N(_index,ref _v); -} -static unsafe void Test_VertexAttrib4N_36888() { - System.Int32 _index = default(System.Int32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_36889() { - System.UInt32 _index = default(System.UInt32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_36890() { - System.UInt32 _index = default(System.UInt32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4N(_index,ref _v); -} -static unsafe void Test_VertexAttrib4N_36891() { - System.UInt32 _index = default(System.UInt32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_36892() { - System.Int32 _index = default(System.Int32); - System.Byte _x = default(System.Byte); - System.Byte _y = default(System.Byte); - System.Byte _z = default(System.Byte); - System.Byte _w = default(System.Byte); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4N(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttrib4N_36893() { - System.UInt32 _index = default(System.UInt32); - System.Byte _x = default(System.Byte); - System.Byte _y = default(System.Byte); - System.Byte _z = default(System.Byte); - System.Byte _w = default(System.Byte); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4N(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttrib4N_36894() { - System.Int32 _index = default(System.Int32); - System.Byte[] _v = default(System.Byte[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_36895() { - System.Int32 _index = default(System.Int32); - System.Byte _v = default(System.Byte); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4N(_index,ref _v); -} -static unsafe void Test_VertexAttrib4N_36896() { - System.Int32 _index = default(System.Int32); - System.Byte* _v = default(System.Byte*); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_36897() { - System.UInt32 _index = default(System.UInt32); - System.Byte[] _v = default(System.Byte[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_36898() { - System.UInt32 _index = default(System.UInt32); - System.Byte _v = default(System.Byte); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4N(_index,ref _v); -} -static unsafe void Test_VertexAttrib4N_36899() { - System.UInt32 _index = default(System.UInt32); - System.Byte* _v = default(System.Byte*); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_36900() { - System.UInt32 _index = default(System.UInt32); - System.UInt32[] _v = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_36901() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _v = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4N(_index,ref _v); -} -static unsafe void Test_VertexAttrib4N_36902() { - System.UInt32 _index = default(System.UInt32); - System.UInt32* _v = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_36903() { - System.UInt32 _index = default(System.UInt32); - System.UInt16[] _v = default(System.UInt16[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4N_36904() { - System.UInt32 _index = default(System.UInt32); - System.UInt16 _v = default(System.UInt16); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4N(_index,ref _v); -} -static unsafe void Test_VertexAttrib4N_36905() { - System.UInt32 _index = default(System.UInt32); - System.UInt16* _v = default(System.UInt16*); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4N(_index,_v); -} -static unsafe void Test_VertexAttrib4_36906() { - System.Int32 _index = default(System.Int32); - System.Int16 _x = default(System.Int16); - System.Int16 _y = default(System.Int16); - System.Int16 _z = default(System.Int16); - System.Int16 _w = default(System.Int16); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttrib4_36907() { - System.UInt32 _index = default(System.UInt32); - System.Int16 _x = default(System.Int16); - System.Int16 _y = default(System.Int16); - System.Int16 _z = default(System.Int16); - System.Int16 _w = default(System.Int16); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttrib4_36908() { - System.Int32 _index = default(System.Int32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_36909() { - System.Int32 _index = default(System.Int32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_36910() { - System.Int32 _index = default(System.Int32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_36911() { - System.UInt32 _index = default(System.UInt32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_36912() { - System.UInt32 _index = default(System.UInt32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_36913() { - System.UInt32 _index = default(System.UInt32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_36914() { - System.Int32 _index = default(System.Int32); - System.Byte[] _v = default(System.Byte[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_36915() { - System.Int32 _index = default(System.Int32); - System.Byte _v = default(System.Byte); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_36916() { - System.Int32 _index = default(System.Int32); - System.Byte* _v = default(System.Byte*); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_36917() { - System.UInt32 _index = default(System.UInt32); - System.Byte[] _v = default(System.Byte[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_36918() { - System.UInt32 _index = default(System.UInt32); - System.Byte _v = default(System.Byte); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_36919() { - System.UInt32 _index = default(System.UInt32); - System.Byte* _v = default(System.Byte*); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_36920() { - System.UInt32 _index = default(System.UInt32); - System.UInt32[] _v = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_36921() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _v = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_36922() { - System.UInt32 _index = default(System.UInt32); - System.UInt32* _v = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_36923() { - System.UInt32 _index = default(System.UInt32); - System.UInt16[] _v = default(System.UInt16[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttrib4_36924() { - System.UInt32 _index = default(System.UInt32); - System.UInt16 _v = default(System.UInt16); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,ref _v); -} -static unsafe void Test_VertexAttrib4_36925() { - System.UInt32 _index = default(System.UInt32); - System.UInt16* _v = default(System.UInt16*); - OpenTK.Graphics.OpenGL4.GL.VertexAttrib4(_index,_v); -} -static unsafe void Test_VertexAttribBinding_36926() { - System.Int32 _attribindex = default(System.Int32); - System.Int32 _bindingindex = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.VertexAttribBinding(_attribindex,_bindingindex); -} -static unsafe void Test_VertexAttribBinding_36927() { - System.UInt32 _attribindex = default(System.UInt32); - System.UInt32 _bindingindex = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.VertexAttribBinding(_attribindex,_bindingindex); -} -static unsafe void Test_VertexAttribDivisor_36928() { - System.Int32 _index = default(System.Int32); - System.Int32 _divisor = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.VertexAttribDivisor(_index,_divisor); -} -static unsafe void Test_VertexAttribDivisor_36929() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _divisor = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.VertexAttribDivisor(_index,_divisor); -} -static unsafe void Test_VertexAttribFormat_36930() { - System.Int32 _attribindex = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribType _type = default(OpenTK.Graphics.OpenGL4.VertexAttribType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _relativeoffset = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.VertexAttribFormat(_attribindex,_size,_type,_normalized,_relativeoffset); -} -static unsafe void Test_VertexAttribFormat_36931() { - System.UInt32 _attribindex = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribType _type = default(OpenTK.Graphics.OpenGL4.VertexAttribType); - System.Boolean _normalized = default(System.Boolean); - System.UInt32 _relativeoffset = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.VertexAttribFormat(_attribindex,_size,_type,_normalized,_relativeoffset); -} -static unsafe void Test_VertexAttribI1_36932() { - System.Int32 _index = default(System.Int32); - System.Int32 _x = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI1(_index,_x); -} -static unsafe void Test_VertexAttribI1_36933() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _x = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI1(_index,_x); -} -static unsafe void Test_VertexAttribI1_36934() { - System.Int32 _index = default(System.Int32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI1(_index,_v); -} -static unsafe void Test_VertexAttribI1_36935() { - System.UInt32 _index = default(System.UInt32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI1(_index,_v); -} -static unsafe void Test_VertexAttribI1_36936() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _x = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI1(_index,_x); -} -static unsafe void Test_VertexAttribI1_36937() { - System.UInt32 _index = default(System.UInt32); - System.UInt32* _v = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI1(_index,_v); -} -static unsafe void Test_VertexAttribI2_36938() { - System.Int32 _index = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI2(_index,_x,_y); -} -static unsafe void Test_VertexAttribI2_36939() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI2(_index,_x,_y); -} -static unsafe void Test_VertexAttribI2_36940() { - System.Int32 _index = default(System.Int32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI2(_index,_v); -} -static unsafe void Test_VertexAttribI2_36941() { - System.Int32 _index = default(System.Int32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI2(_index,ref _v); -} -static unsafe void Test_VertexAttribI2_36942() { - System.Int32 _index = default(System.Int32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI2(_index,_v); -} -static unsafe void Test_VertexAttribI2_36943() { - System.UInt32 _index = default(System.UInt32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI2(_index,_v); -} -static unsafe void Test_VertexAttribI2_36944() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI2(_index,ref _v); -} -static unsafe void Test_VertexAttribI2_36945() { - System.UInt32 _index = default(System.UInt32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI2(_index,_v); -} -static unsafe void Test_VertexAttribI2_36946() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _x = default(System.UInt32); - System.UInt32 _y = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI2(_index,_x,_y); -} -static unsafe void Test_VertexAttribI2_36947() { - System.UInt32 _index = default(System.UInt32); - System.UInt32[] _v = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI2(_index,_v); -} -static unsafe void Test_VertexAttribI2_36948() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _v = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI2(_index,ref _v); -} -static unsafe void Test_VertexAttribI2_36949() { - System.UInt32 _index = default(System.UInt32); - System.UInt32* _v = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI2(_index,_v); -} -static unsafe void Test_VertexAttribI3_36950() { - System.Int32 _index = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttribI3_36951() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttribI3_36952() { - System.Int32 _index = default(System.Int32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI3(_index,_v); -} -static unsafe void Test_VertexAttribI3_36953() { - System.Int32 _index = default(System.Int32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI3(_index,ref _v); -} -static unsafe void Test_VertexAttribI3_36954() { - System.Int32 _index = default(System.Int32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI3(_index,_v); -} -static unsafe void Test_VertexAttribI3_36955() { - System.UInt32 _index = default(System.UInt32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI3(_index,_v); -} -static unsafe void Test_VertexAttribI3_36956() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI3(_index,ref _v); -} -static unsafe void Test_VertexAttribI3_36957() { - System.UInt32 _index = default(System.UInt32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI3(_index,_v); -} -static unsafe void Test_VertexAttribI3_36958() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _x = default(System.UInt32); - System.UInt32 _y = default(System.UInt32); - System.UInt32 _z = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttribI3_36959() { - System.UInt32 _index = default(System.UInt32); - System.UInt32[] _v = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI3(_index,_v); -} -static unsafe void Test_VertexAttribI3_36960() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _v = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI3(_index,ref _v); -} -static unsafe void Test_VertexAttribI3_36961() { - System.UInt32 _index = default(System.UInt32); - System.UInt32* _v = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI3(_index,_v); -} -static unsafe void Test_VertexAttribI4_36962() { - System.UInt32 _index = default(System.UInt32); - System.SByte[] _v = default(System.SByte[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_36963() { - System.UInt32 _index = default(System.UInt32); - System.SByte _v = default(System.SByte); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI4(_index,ref _v); -} -static unsafe void Test_VertexAttribI4_36964() { - System.UInt32 _index = default(System.UInt32); - System.SByte* _v = default(System.SByte*); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_36965() { - System.Int32 _index = default(System.Int32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - System.Int32 _w = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttribI4_36966() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _z = default(System.Int32); - System.Int32 _w = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttribI4_36967() { - System.Int32 _index = default(System.Int32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_36968() { - System.Int32 _index = default(System.Int32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI4(_index,ref _v); -} -static unsafe void Test_VertexAttribI4_36969() { - System.Int32 _index = default(System.Int32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_36970() { - System.UInt32 _index = default(System.UInt32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_36971() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI4(_index,ref _v); -} -static unsafe void Test_VertexAttribI4_36972() { - System.UInt32 _index = default(System.UInt32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_36973() { - System.Int32 _index = default(System.Int32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_36974() { - System.Int32 _index = default(System.Int32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI4(_index,ref _v); -} -static unsafe void Test_VertexAttribI4_36975() { - System.Int32 _index = default(System.Int32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_36976() { - System.UInt32 _index = default(System.UInt32); - System.Int16[] _v = default(System.Int16[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_36977() { - System.UInt32 _index = default(System.UInt32); - System.Int16 _v = default(System.Int16); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI4(_index,ref _v); -} -static unsafe void Test_VertexAttribI4_36978() { - System.UInt32 _index = default(System.UInt32); - System.Int16* _v = default(System.Int16*); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_36979() { - System.Int32 _index = default(System.Int32); - System.Byte[] _v = default(System.Byte[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_36980() { - System.Int32 _index = default(System.Int32); - System.Byte _v = default(System.Byte); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI4(_index,ref _v); -} -static unsafe void Test_VertexAttribI4_36981() { - System.Int32 _index = default(System.Int32); - System.Byte* _v = default(System.Byte*); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_36982() { - System.UInt32 _index = default(System.UInt32); - System.Byte[] _v = default(System.Byte[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_36983() { - System.UInt32 _index = default(System.UInt32); - System.Byte _v = default(System.Byte); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI4(_index,ref _v); -} -static unsafe void Test_VertexAttribI4_36984() { - System.UInt32 _index = default(System.UInt32); - System.Byte* _v = default(System.Byte*); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_36985() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _x = default(System.UInt32); - System.UInt32 _y = default(System.UInt32); - System.UInt32 _z = default(System.UInt32); - System.UInt32 _w = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttribI4_36986() { - System.UInt32 _index = default(System.UInt32); - System.UInt32[] _v = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_36987() { - System.UInt32 _index = default(System.UInt32); - System.UInt32 _v = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI4(_index,ref _v); -} -static unsafe void Test_VertexAttribI4_36988() { - System.UInt32 _index = default(System.UInt32); - System.UInt32* _v = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_36989() { - System.UInt32 _index = default(System.UInt32); - System.UInt16[] _v = default(System.UInt16[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribI4_36990() { - System.UInt32 _index = default(System.UInt32); - System.UInt16 _v = default(System.UInt16); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI4(_index,ref _v); -} -static unsafe void Test_VertexAttribI4_36991() { - System.UInt32 _index = default(System.UInt32); - System.UInt16* _v = default(System.UInt16*); - OpenTK.Graphics.OpenGL4.GL.VertexAttribI4(_index,_v); -} -static unsafe void Test_VertexAttribIFormat_36992() { - System.Int32 _attribindex = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribIntegerType _type = default(OpenTK.Graphics.OpenGL4.VertexAttribIntegerType); - System.Int32 _relativeoffset = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.VertexAttribIFormat(_attribindex,_size,_type,_relativeoffset); -} -static unsafe void Test_VertexAttribIFormat_36993() { - System.UInt32 _attribindex = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribIntegerType _type = default(OpenTK.Graphics.OpenGL4.VertexAttribIntegerType); - System.UInt32 _relativeoffset = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.VertexAttribIFormat(_attribindex,_size,_type,_relativeoffset); -} -static unsafe void Test_VertexAttribIPointer_36994() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribIntegerType _type = default(OpenTK.Graphics.OpenGL4.VertexAttribIntegerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_36995() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribIntegerType _type = default(OpenTK.Graphics.OpenGL4.VertexAttribIntegerType); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_36996() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribIntegerType _type = default(OpenTK.Graphics.OpenGL4.VertexAttribIntegerType); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_36997() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribIntegerType _type = default(OpenTK.Graphics.OpenGL4.VertexAttribIntegerType); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_36998() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribIntegerType _type = default(OpenTK.Graphics.OpenGL4.VertexAttribIntegerType); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL4.GL.VertexAttribIPointer(_index,_size,_type,_stride,ref _pointer); -} -static unsafe void Test_VertexAttribIPointer_36999() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribIntegerType _type = default(OpenTK.Graphics.OpenGL4.VertexAttribIntegerType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_37000() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribIntegerType _type = default(OpenTK.Graphics.OpenGL4.VertexAttribIntegerType); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_37001() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribIntegerType _type = default(OpenTK.Graphics.OpenGL4.VertexAttribIntegerType); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_37002() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribIntegerType _type = default(OpenTK.Graphics.OpenGL4.VertexAttribIntegerType); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.VertexAttribIPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribIPointer_37003() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribIntegerType _type = default(OpenTK.Graphics.OpenGL4.VertexAttribIntegerType); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL4.GL.VertexAttribIPointer(_index,_size,_type,_stride,ref _pointer); -} -static unsafe void Test_VertexAttribL1_37004() { - System.Int32 _index = default(System.Int32); - System.Double _x = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.VertexAttribL1(_index,_x); -} -static unsafe void Test_VertexAttribL1_37005() { - System.UInt32 _index = default(System.UInt32); - System.Double _x = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.VertexAttribL1(_index,_x); -} -static unsafe void Test_VertexAttribL1_37006() { - System.Int32 _index = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.VertexAttribL1(_index,_v); -} -static unsafe void Test_VertexAttribL1_37007() { - System.UInt32 _index = default(System.UInt32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.VertexAttribL1(_index,_v); -} -static unsafe void Test_VertexAttribL2_37008() { - System.Int32 _index = default(System.Int32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.VertexAttribL2(_index,_x,_y); -} -static unsafe void Test_VertexAttribL2_37009() { - System.UInt32 _index = default(System.UInt32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.VertexAttribL2(_index,_x,_y); -} -static unsafe void Test_VertexAttribL2_37010() { - System.Int32 _index = default(System.Int32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttribL2(_index,_v); -} -static unsafe void Test_VertexAttribL2_37011() { - System.Int32 _index = default(System.Int32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.VertexAttribL2(_index,ref _v); -} -static unsafe void Test_VertexAttribL2_37012() { - System.Int32 _index = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.VertexAttribL2(_index,_v); -} -static unsafe void Test_VertexAttribL2_37013() { - System.UInt32 _index = default(System.UInt32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttribL2(_index,_v); -} -static unsafe void Test_VertexAttribL2_37014() { - System.UInt32 _index = default(System.UInt32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.VertexAttribL2(_index,ref _v); -} -static unsafe void Test_VertexAttribL2_37015() { - System.UInt32 _index = default(System.UInt32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.VertexAttribL2(_index,_v); -} -static unsafe void Test_VertexAttribL3_37016() { - System.Int32 _index = default(System.Int32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.VertexAttribL3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttribL3_37017() { - System.UInt32 _index = default(System.UInt32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.VertexAttribL3(_index,_x,_y,_z); -} -static unsafe void Test_VertexAttribL3_37018() { - System.Int32 _index = default(System.Int32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttribL3(_index,_v); -} -static unsafe void Test_VertexAttribL3_37019() { - System.Int32 _index = default(System.Int32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.VertexAttribL3(_index,ref _v); -} -static unsafe void Test_VertexAttribL3_37020() { - System.Int32 _index = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.VertexAttribL3(_index,_v); -} -static unsafe void Test_VertexAttribL3_37021() { - System.UInt32 _index = default(System.UInt32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttribL3(_index,_v); -} -static unsafe void Test_VertexAttribL3_37022() { - System.UInt32 _index = default(System.UInt32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.VertexAttribL3(_index,ref _v); -} -static unsafe void Test_VertexAttribL3_37023() { - System.UInt32 _index = default(System.UInt32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.VertexAttribL3(_index,_v); -} -static unsafe void Test_VertexAttribL4_37024() { - System.Int32 _index = default(System.Int32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - System.Double _w = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.VertexAttribL4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttribL4_37025() { - System.UInt32 _index = default(System.UInt32); - System.Double _x = default(System.Double); - System.Double _y = default(System.Double); - System.Double _z = default(System.Double); - System.Double _w = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.VertexAttribL4(_index,_x,_y,_z,_w); -} -static unsafe void Test_VertexAttribL4_37026() { - System.Int32 _index = default(System.Int32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttribL4(_index,_v); -} -static unsafe void Test_VertexAttribL4_37027() { - System.Int32 _index = default(System.Int32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.VertexAttribL4(_index,ref _v); -} -static unsafe void Test_VertexAttribL4_37028() { - System.Int32 _index = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.VertexAttribL4(_index,_v); -} -static unsafe void Test_VertexAttribL4_37029() { - System.UInt32 _index = default(System.UInt32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttribL4(_index,_v); -} -static unsafe void Test_VertexAttribL4_37030() { - System.UInt32 _index = default(System.UInt32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.VertexAttribL4(_index,ref _v); -} -static unsafe void Test_VertexAttribL4_37031() { - System.UInt32 _index = default(System.UInt32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.VertexAttribL4(_index,_v); -} -static unsafe void Test_VertexAttribLFormat_37032() { - System.Int32 _attribindex = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribDoubleType _type = default(OpenTK.Graphics.OpenGL4.VertexAttribDoubleType); - System.Int32 _relativeoffset = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.VertexAttribLFormat(_attribindex,_size,_type,_relativeoffset); -} -static unsafe void Test_VertexAttribLFormat_37033() { - System.UInt32 _attribindex = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribDoubleType _type = default(OpenTK.Graphics.OpenGL4.VertexAttribDoubleType); - System.UInt32 _relativeoffset = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.VertexAttribLFormat(_attribindex,_size,_type,_relativeoffset); -} -static unsafe void Test_VertexAttribLPointer_37034() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribDoubleType _type = default(OpenTK.Graphics.OpenGL4.VertexAttribDoubleType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.VertexAttribLPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribLPointer_37035() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribDoubleType _type = default(OpenTK.Graphics.OpenGL4.VertexAttribDoubleType); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttribLPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribLPointer_37036() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribDoubleType _type = default(OpenTK.Graphics.OpenGL4.VertexAttribDoubleType); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.VertexAttribLPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribLPointer_37037() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribDoubleType _type = default(OpenTK.Graphics.OpenGL4.VertexAttribDoubleType); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.VertexAttribLPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribLPointer_37038() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribDoubleType _type = default(OpenTK.Graphics.OpenGL4.VertexAttribDoubleType); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL4.GL.VertexAttribLPointer(_index,_size,_type,_stride,ref _pointer); -} -static unsafe void Test_VertexAttribLPointer_37039() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribDoubleType _type = default(OpenTK.Graphics.OpenGL4.VertexAttribDoubleType); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.VertexAttribLPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribLPointer_37040() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribDoubleType _type = default(OpenTK.Graphics.OpenGL4.VertexAttribDoubleType); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttribLPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribLPointer_37041() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribDoubleType _type = default(OpenTK.Graphics.OpenGL4.VertexAttribDoubleType); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.VertexAttribLPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribLPointer_37042() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribDoubleType _type = default(OpenTK.Graphics.OpenGL4.VertexAttribDoubleType); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.VertexAttribLPointer(_index,_size,_type,_stride,_pointer); -} -static unsafe void Test_VertexAttribLPointer_37043() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribDoubleType _type = default(OpenTK.Graphics.OpenGL4.VertexAttribDoubleType); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL4.GL.VertexAttribLPointer(_index,_size,_type,_stride,ref _pointer); -} -static unsafe void Test_VertexAttribP1_37044() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.VertexAttribP1(_index,_type,_normalized,_value); -} -static unsafe void Test_VertexAttribP1_37045() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Boolean _normalized = default(System.Boolean); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.VertexAttribP1(_index,_type,_normalized,_value); -} -static unsafe void Test_VertexAttribP1_37046() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.VertexAttribP1(_index,_type,_normalized,_value); -} -static unsafe void Test_VertexAttribP1_37047() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Boolean _normalized = default(System.Boolean); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.VertexAttribP1(_index,_type,_normalized,_value); -} -static unsafe void Test_VertexAttribP2_37048() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.VertexAttribP2(_index,_type,_normalized,_value); -} -static unsafe void Test_VertexAttribP2_37049() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Boolean _normalized = default(System.Boolean); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.VertexAttribP2(_index,_type,_normalized,_value); -} -static unsafe void Test_VertexAttribP2_37050() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.VertexAttribP2(_index,_type,_normalized,_value); -} -static unsafe void Test_VertexAttribP2_37051() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Boolean _normalized = default(System.Boolean); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.VertexAttribP2(_index,_type,_normalized,_value); -} -static unsafe void Test_VertexAttribP3_37052() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.VertexAttribP3(_index,_type,_normalized,_value); -} -static unsafe void Test_VertexAttribP3_37053() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Boolean _normalized = default(System.Boolean); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.VertexAttribP3(_index,_type,_normalized,_value); -} -static unsafe void Test_VertexAttribP3_37054() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.VertexAttribP3(_index,_type,_normalized,_value); -} -static unsafe void Test_VertexAttribP3_37055() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Boolean _normalized = default(System.Boolean); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.VertexAttribP3(_index,_type,_normalized,_value); -} -static unsafe void Test_VertexAttribP4_37056() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.VertexAttribP4(_index,_type,_normalized,_value); -} -static unsafe void Test_VertexAttribP4_37057() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Boolean _normalized = default(System.Boolean); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.VertexAttribP4(_index,_type,_normalized,_value); -} -static unsafe void Test_VertexAttribP4_37058() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.VertexAttribP4(_index,_type,_normalized,_value); -} -static unsafe void Test_VertexAttribP4_37059() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Boolean _normalized = default(System.Boolean); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.VertexAttribP4(_index,_type,_normalized,_value); -} -static unsafe void Test_VertexAttribPointer_37060() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribPointerType _type = default(OpenTK.Graphics.OpenGL4.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_37061() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribPointerType _type = default(OpenTK.Graphics.OpenGL4.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_37062() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribPointerType _type = default(OpenTK.Graphics.OpenGL4.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_37063() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribPointerType _type = default(OpenTK.Graphics.OpenGL4.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_37064() { - System.Int32 _index = default(System.Int32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribPointerType _type = default(OpenTK.Graphics.OpenGL4.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL4.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,ref _pointer); -} -static unsafe void Test_VertexAttribPointer_37065() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribPointerType _type = default(OpenTK.Graphics.OpenGL4.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - System.IntPtr _pointer = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_37066() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribPointerType _type = default(OpenTK.Graphics.OpenGL4.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[] _pointer = default(int[]); - OpenTK.Graphics.OpenGL4.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_37067() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribPointerType _type = default(OpenTK.Graphics.OpenGL4.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[,] _pointer = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_37068() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribPointerType _type = default(OpenTK.Graphics.OpenGL4.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int[,,] _pointer = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,_pointer); -} -static unsafe void Test_VertexAttribPointer_37069() { - System.UInt32 _index = default(System.UInt32); - System.Int32 _size = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribPointerType _type = default(OpenTK.Graphics.OpenGL4.VertexAttribPointerType); - System.Boolean _normalized = default(System.Boolean); - System.Int32 _stride = default(System.Int32); - int _pointer = default(int); - OpenTK.Graphics.OpenGL4.GL.VertexAttribPointer(_index,_size,_type,_normalized,_stride,ref _pointer); -} -static unsafe void Test_VertexBindingDivisor_37070() { - System.Int32 _bindingindex = default(System.Int32); - System.Int32 _divisor = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.VertexBindingDivisor(_bindingindex,_divisor); -} -static unsafe void Test_VertexBindingDivisor_37071() { - System.UInt32 _bindingindex = default(System.UInt32); - System.UInt32 _divisor = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.VertexBindingDivisor(_bindingindex,_divisor); -} -static unsafe void Test_VertexP2_37072() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.VertexP2(_type,_value); -} -static unsafe void Test_VertexP2_37073() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.VertexP2(_type,_value); -} -static unsafe void Test_VertexP2_37074() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.VertexP2(_type,_value); -} -static unsafe void Test_VertexP2_37075() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.VertexP2(_type,_value); -} -static unsafe void Test_VertexP3_37076() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.VertexP3(_type,_value); -} -static unsafe void Test_VertexP3_37077() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.VertexP3(_type,_value); -} -static unsafe void Test_VertexP3_37078() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.VertexP3(_type,_value); -} -static unsafe void Test_VertexP3_37079() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.VertexP3(_type,_value); -} -static unsafe void Test_VertexP4_37080() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Int32 _value = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.VertexP4(_type,_value); -} -static unsafe void Test_VertexP4_37081() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.UInt32 _value = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.VertexP4(_type,_value); -} -static unsafe void Test_VertexP4_37082() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.Int32* _value = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.VertexP4(_type,_value); -} -static unsafe void Test_VertexP4_37083() { - OpenTK.Graphics.OpenGL4.PackedPointerType _type = default(OpenTK.Graphics.OpenGL4.PackedPointerType); - System.UInt32* _value = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.VertexP4(_type,_value); -} -static unsafe void Test_Viewport_37084() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.Viewport(_x,_y,_width,_height); -} -static unsafe void Test_ViewportArray_37085() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.ViewportArray(_first,_count,_v); -} -static unsafe void Test_ViewportArray_37086() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ViewportArray(_first,_count,ref _v); -} -static unsafe void Test_ViewportArray_37087() { - System.Int32 _first = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.ViewportArray(_first,_count,_v); -} -static unsafe void Test_ViewportArray_37088() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.ViewportArray(_first,_count,_v); -} -static unsafe void Test_ViewportArray_37089() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ViewportArray(_first,_count,ref _v); -} -static unsafe void Test_ViewportArray_37090() { - System.UInt32 _first = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.ViewportArray(_first,_count,_v); -} -static unsafe void Test_ViewportIndexed_37091() { - System.Int32 _index = default(System.Int32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _w = default(System.Single); - System.Single _h = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ViewportIndexed(_index,_x,_y,_w,_h); -} -static unsafe void Test_ViewportIndexed_37092() { - System.UInt32 _index = default(System.UInt32); - System.Single _x = default(System.Single); - System.Single _y = default(System.Single); - System.Single _w = default(System.Single); - System.Single _h = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ViewportIndexed(_index,_x,_y,_w,_h); -} -static unsafe void Test_ViewportIndexed_37093() { - System.Int32 _index = default(System.Int32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.ViewportIndexed(_index,_v); -} -static unsafe void Test_ViewportIndexed_37094() { - System.Int32 _index = default(System.Int32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ViewportIndexed(_index,ref _v); -} -static unsafe void Test_ViewportIndexed_37095() { - System.Int32 _index = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.ViewportIndexed(_index,_v); -} -static unsafe void Test_ViewportIndexed_37096() { - System.UInt32 _index = default(System.UInt32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.ViewportIndexed(_index,_v); -} -static unsafe void Test_ViewportIndexed_37097() { - System.UInt32 _index = default(System.UInt32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.ViewportIndexed(_index,ref _v); -} -static unsafe void Test_ViewportIndexed_37098() { - System.UInt32 _index = default(System.UInt32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.ViewportIndexed(_index,_v); -} -static unsafe void Test_WaitSync_37099() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.WaitSyncFlags _flags = default(OpenTK.Graphics.OpenGL4.WaitSyncFlags); - System.Int64 _timeout = default(System.Int64); - OpenTK.Graphics.OpenGL4.WaitSyncStatus r = OpenTK.Graphics.OpenGL4.GL.WaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_WaitSync_37100() { - System.IntPtr _sync = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.WaitSyncFlags _flags = default(OpenTK.Graphics.OpenGL4.WaitSyncFlags); - System.UInt64 _timeout = default(System.UInt64); - OpenTK.Graphics.OpenGL4.WaitSyncStatus r = OpenTK.Graphics.OpenGL4.GL.WaitSync(_sync,_flags,_timeout); -} -static unsafe void Test_BlendEquation_37101() { - System.Int32 _buf = default(System.Int32); - OpenTK.Graphics.OpenGL4.BlendEquationMode _mode = default(OpenTK.Graphics.OpenGL4.BlendEquationMode); - OpenTK.Graphics.OpenGL4.GL.Arb.BlendEquation(_buf,_mode); -} -static unsafe void Test_BlendEquation_37102() { - System.UInt32 _buf = default(System.UInt32); - OpenTK.Graphics.OpenGL4.BlendEquationMode _mode = default(OpenTK.Graphics.OpenGL4.BlendEquationMode); - OpenTK.Graphics.OpenGL4.GL.Arb.BlendEquation(_buf,_mode); -} -static unsafe void Test_BlendEquationSeparate_37103() { - System.Int32 _buf = default(System.Int32); - OpenTK.Graphics.OpenGL4.All _modeRGB = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _modeAlpha = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.GL.Arb.BlendEquationSeparate(_buf,_modeRGB,_modeAlpha); -} -static unsafe void Test_BlendEquationSeparate_37104() { - System.UInt32 _buf = default(System.UInt32); - OpenTK.Graphics.OpenGL4.All _modeRGB = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _modeAlpha = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.GL.Arb.BlendEquationSeparate(_buf,_modeRGB,_modeAlpha); -} -static unsafe void Test_BlendFunc_37105() { - System.Int32 _buf = default(System.Int32); - OpenTK.Graphics.OpenGL4.All _src = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _dst = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.GL.Arb.BlendFunc(_buf,_src,_dst); -} -static unsafe void Test_BlendFunc_37106() { - System.UInt32 _buf = default(System.UInt32); - OpenTK.Graphics.OpenGL4.All _src = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _dst = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.GL.Arb.BlendFunc(_buf,_src,_dst); -} -static unsafe void Test_BlendFuncSeparate_37107() { - System.Int32 _buf = default(System.Int32); - OpenTK.Graphics.OpenGL4.All _srcRGB = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _dstRGB = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _srcAlpha = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _dstAlpha = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.GL.Arb.BlendFuncSeparate(_buf,_srcRGB,_dstRGB,_srcAlpha,_dstAlpha); -} -static unsafe void Test_BlendFuncSeparate_37108() { - System.UInt32 _buf = default(System.UInt32); - OpenTK.Graphics.OpenGL4.All _srcRGB = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _dstRGB = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _srcAlpha = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _dstAlpha = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.GL.Arb.BlendFuncSeparate(_buf,_srcRGB,_dstRGB,_srcAlpha,_dstAlpha); -} -static unsafe void Test_CompileShaderInclude_37109() { - System.Int32 _shader = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.String[] _path = default(System.String[]); - System.Int32[] _length = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.Arb.CompileShaderInclude(_shader,_count,_path,_length); -} -static unsafe void Test_CompileShaderInclude_37110() { - System.Int32 _shader = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.String[] _path = default(System.String[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.Arb.CompileShaderInclude(_shader,_count,_path,ref _length); -} -static unsafe void Test_CompileShaderInclude_37111() { - System.Int32 _shader = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.String[] _path = default(System.String[]); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.Arb.CompileShaderInclude(_shader,_count,_path,_length); -} -static unsafe void Test_CompileShaderInclude_37112() { - System.UInt32 _shader = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.String[] _path = default(System.String[]); - System.Int32[] _length = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.Arb.CompileShaderInclude(_shader,_count,_path,_length); -} -static unsafe void Test_CompileShaderInclude_37113() { - System.UInt32 _shader = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.String[] _path = default(System.String[]); - System.Int32 _length = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.Arb.CompileShaderInclude(_shader,_count,_path,ref _length); -} -static unsafe void Test_CompileShaderInclude_37114() { - System.UInt32 _shader = default(System.UInt32); - System.Int32 _count = default(System.Int32); - System.String[] _path = default(System.String[]); - System.Int32* _length = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.Arb.CompileShaderInclude(_shader,_count,_path,_length); -} -static unsafe void Test_CreateSyncFromCLevent_37115() { - System.IntPtr[] _context = default(System.IntPtr[]); - System.IntPtr[] _event = default(System.IntPtr[]); - System.Int32 _flags = default(System.Int32); - System.IntPtr r = OpenTK.Graphics.OpenGL4.GL.Arb.CreateSyncFromCLevent(_context,_event,_flags); -} -static unsafe void Test_CreateSyncFromCLevent_37116() { - System.IntPtr[] _context = default(System.IntPtr[]); - System.IntPtr[] _event = default(System.IntPtr[]); - System.UInt32 _flags = default(System.UInt32); - System.IntPtr r = OpenTK.Graphics.OpenGL4.GL.Arb.CreateSyncFromCLevent(_context,_event,_flags); -} -static unsafe void Test_CreateSyncFromCLevent_37117() { - System.IntPtr _context = default(System.IntPtr); - System.IntPtr _event = default(System.IntPtr); - System.Int32 _flags = default(System.Int32); - System.IntPtr r = OpenTK.Graphics.OpenGL4.GL.Arb.CreateSyncFromCLevent(out _context,out _event,_flags); -} -static unsafe void Test_CreateSyncFromCLevent_37118() { - System.IntPtr _context = default(System.IntPtr); - System.IntPtr _event = default(System.IntPtr); - System.UInt32 _flags = default(System.UInt32); - System.IntPtr r = OpenTK.Graphics.OpenGL4.GL.Arb.CreateSyncFromCLevent(out _context,out _event,_flags); -} -static unsafe void Test_CreateSyncFromCLevent_37119() { - System.IntPtr* _context = default(System.IntPtr*); - System.IntPtr* _event = default(System.IntPtr*); - System.Int32 _flags = default(System.Int32); - System.IntPtr r = OpenTK.Graphics.OpenGL4.GL.Arb.CreateSyncFromCLevent(_context,_event,_flags); -} -static unsafe void Test_CreateSyncFromCLevent_37120() { - System.IntPtr* _context = default(System.IntPtr*); - System.IntPtr* _event = default(System.IntPtr*); - System.UInt32 _flags = default(System.UInt32); - System.IntPtr r = OpenTK.Graphics.OpenGL4.GL.Arb.CreateSyncFromCLevent(_context,_event,_flags); -} -static unsafe void Test_DebugMessageCallback_37121() { - OpenTK.Graphics.OpenGL4.DebugProcArb _callback = default(OpenTK.Graphics.OpenGL4.DebugProcArb); - System.IntPtr _userParam = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.Arb.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_37122() { - OpenTK.Graphics.OpenGL4.DebugProcArb _callback = default(OpenTK.Graphics.OpenGL4.DebugProcArb); - int[] _userParam = default(int[]); - OpenTK.Graphics.OpenGL4.GL.Arb.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_37123() { - OpenTK.Graphics.OpenGL4.DebugProcArb _callback = default(OpenTK.Graphics.OpenGL4.DebugProcArb); - int[,] _userParam = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.Arb.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_37124() { - OpenTK.Graphics.OpenGL4.DebugProcArb _callback = default(OpenTK.Graphics.OpenGL4.DebugProcArb); - int[,,] _userParam = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.Arb.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_37125() { - OpenTK.Graphics.OpenGL4.DebugProcArb _callback = default(OpenTK.Graphics.OpenGL4.DebugProcArb); - int _userParam = default(int); - OpenTK.Graphics.OpenGL4.GL.Arb.DebugMessageCallback(_callback,ref _userParam); -} -static unsafe void Test_DebugMessageControl_37126() { - OpenTK.Graphics.OpenGL4.All _source = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _severity = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _count = default(System.Int32); - System.Int32[] _ids = default(System.Int32[]); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL4.GL.Arb.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_37127() { - OpenTK.Graphics.OpenGL4.All _source = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _severity = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _count = default(System.Int32); - System.Int32 _ids = default(System.Int32); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL4.GL.Arb.DebugMessageControl(_source,_type,_severity,_count,ref _ids,_enabled); -} -static unsafe void Test_DebugMessageControl_37128() { - OpenTK.Graphics.OpenGL4.All _source = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _severity = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _count = default(System.Int32); - System.Int32* _ids = default(System.Int32*); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL4.GL.Arb.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_37129() { - OpenTK.Graphics.OpenGL4.All _source = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _severity = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _count = default(System.Int32); - System.UInt32[] _ids = default(System.UInt32[]); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL4.GL.Arb.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_37130() { - OpenTK.Graphics.OpenGL4.All _source = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _severity = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _count = default(System.Int32); - System.UInt32 _ids = default(System.UInt32); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL4.GL.Arb.DebugMessageControl(_source,_type,_severity,_count,ref _ids,_enabled); -} -static unsafe void Test_DebugMessageControl_37131() { - OpenTK.Graphics.OpenGL4.All _source = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _severity = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _count = default(System.Int32); - System.UInt32* _ids = default(System.UInt32*); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL4.GL.Arb.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageInsert_37132() { - OpenTK.Graphics.OpenGL4.All _source = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL4.All _severity = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _length = default(System.Int32); - System.String _buf = default(System.String); - OpenTK.Graphics.OpenGL4.GL.Arb.DebugMessageInsert(_source,_type,_id,_severity,_length,_buf); -} -static unsafe void Test_DebugMessageInsert_37133() { - OpenTK.Graphics.OpenGL4.All _source = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL4.All _severity = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _length = default(System.Int32); - System.String _buf = default(System.String); - OpenTK.Graphics.OpenGL4.GL.Arb.DebugMessageInsert(_source,_type,_id,_severity,_length,_buf); -} -static unsafe void Test_DeleteNamedString_37134() { - System.Int32 _namelen = default(System.Int32); - System.String _name = default(System.String); - OpenTK.Graphics.OpenGL4.GL.Arb.DeleteNamedString(_namelen,_name); -} -static unsafe void Test_DispatchComputeGroupSize_37135() { - System.Int32 _num_groups_x = default(System.Int32); - System.Int32 _num_groups_y = default(System.Int32); - System.Int32 _num_groups_z = default(System.Int32); - System.Int32 _group_size_x = default(System.Int32); - System.Int32 _group_size_y = default(System.Int32); - System.Int32 _group_size_z = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.Arb.DispatchComputeGroupSize(_num_groups_x,_num_groups_y,_num_groups_z,_group_size_x,_group_size_y,_group_size_z); -} -static unsafe void Test_DispatchComputeGroupSize_37136() { - System.UInt32 _num_groups_x = default(System.UInt32); - System.UInt32 _num_groups_y = default(System.UInt32); - System.UInt32 _num_groups_z = default(System.UInt32); - System.UInt32 _group_size_x = default(System.UInt32); - System.UInt32 _group_size_y = default(System.UInt32); - System.UInt32 _group_size_z = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.Arb.DispatchComputeGroupSize(_num_groups_x,_num_groups_y,_num_groups_z,_group_size_x,_group_size_y,_group_size_z); -} -static unsafe void Test_GetDebugMessageLog_37137() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.OpenGL4.All[] _sources = default(OpenTK.Graphics.OpenGL4.All[]); - OpenTK.Graphics.OpenGL4.All[] _types = default(OpenTK.Graphics.OpenGL4.All[]); - System.Int32[] _ids = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.All[] _severities = default(OpenTK.Graphics.OpenGL4.All[]); - System.Int32[] _lengths = default(System.Int32[]); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.Arb.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_37138() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.OpenGL4.All _sources = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _types = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.OpenGL4.All _severities = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _lengths = default(System.Int32); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.Arb.GetDebugMessageLog(_count,_bufSize,out _sources,out _types,out _ids,out _severities,out _lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_37139() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.OpenGL4.All* _sources = default(OpenTK.Graphics.OpenGL4.All*); - OpenTK.Graphics.OpenGL4.All* _types = default(OpenTK.Graphics.OpenGL4.All*); - System.Int32* _ids = default(System.Int32*); - OpenTK.Graphics.OpenGL4.All* _severities = default(OpenTK.Graphics.OpenGL4.All*); - System.Int32* _lengths = default(System.Int32*); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.Arb.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_37140() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.OpenGL4.All[] _sources = default(OpenTK.Graphics.OpenGL4.All[]); - OpenTK.Graphics.OpenGL4.All[] _types = default(OpenTK.Graphics.OpenGL4.All[]); - System.UInt32[] _ids = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.All[] _severities = default(OpenTK.Graphics.OpenGL4.All[]); - System.Int32[] _lengths = default(System.Int32[]); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.Arb.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_37141() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.OpenGL4.All _sources = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _types = default(OpenTK.Graphics.OpenGL4.All); - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.OpenGL4.All _severities = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _lengths = default(System.Int32); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.Arb.GetDebugMessageLog(_count,_bufSize,out _sources,out _types,out _ids,out _severities,out _lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_37142() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.OpenGL4.All* _sources = default(OpenTK.Graphics.OpenGL4.All*); - OpenTK.Graphics.OpenGL4.All* _types = default(OpenTK.Graphics.OpenGL4.All*); - System.UInt32* _ids = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.All* _severities = default(OpenTK.Graphics.OpenGL4.All*); - System.Int32* _lengths = default(System.Int32*); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.Arb.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetGraphicsResetStatus_37143() { - OpenTK.Graphics.OpenGL4.All r = OpenTK.Graphics.OpenGL4.GL.Arb.GetGraphicsResetStatus(); -} -static unsafe void Test_GetImageHandle_37144() { - System.Int32 _texture = default(System.Int32); - System.Int32 _level = default(System.Int32); - System.Boolean _layered = default(System.Boolean); - System.Int32 _layer = default(System.Int32); - OpenTK.Graphics.OpenGL4.All _format = default(OpenTK.Graphics.OpenGL4.All); - System.Int64 r = OpenTK.Graphics.OpenGL4.GL.Arb.GetImageHandle(_texture,_level,_layered,_layer,_format); -} -static unsafe void Test_GetImageHandle_37145() { - System.UInt32 _texture = default(System.UInt32); - System.Int32 _level = default(System.Int32); - System.Boolean _layered = default(System.Boolean); - System.Int32 _layer = default(System.Int32); - OpenTK.Graphics.OpenGL4.All _format = default(OpenTK.Graphics.OpenGL4.All); - System.Int64 r = OpenTK.Graphics.OpenGL4.GL.Arb.GetImageHandle(_texture,_level,_layered,_layer,_format); -} -static unsafe void Test_GetNamedString_37146() { - System.Int32 _namelen = default(System.Int32); - System.String _name = default(System.String); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _stringlen = default(System.Int32); - System.Text.StringBuilder _string = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.Arb.GetNamedString(_namelen,_name,_bufSize,out _stringlen,_string); -} -static unsafe void Test_GetNamedString_37147() { - System.Int32 _namelen = default(System.Int32); - System.String _name = default(System.String); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _stringlen = default(System.Int32*); - System.Text.StringBuilder _string = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.Arb.GetNamedString(_namelen,_name,_bufSize,_stringlen,_string); -} -static unsafe void Test_GetNamedString_37148() { - System.Int32 _namelen = default(System.Int32); - System.String _name = default(System.String); - OpenTK.Graphics.OpenGL4.All _pname = default(OpenTK.Graphics.OpenGL4.All); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.Arb.GetNamedString(_namelen,_name,_pname,_params); -} -static unsafe void Test_GetNamedString_37149() { - System.Int32 _namelen = default(System.Int32); - System.String _name = default(System.String); - OpenTK.Graphics.OpenGL4.All _pname = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.Arb.GetNamedString(_namelen,_name,_pname,out _params); -} -static unsafe void Test_GetNamedString_37150() { - System.Int32 _namelen = default(System.Int32); - System.String _name = default(System.String); - OpenTK.Graphics.OpenGL4.All _pname = default(OpenTK.Graphics.OpenGL4.All); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.Arb.GetNamedString(_namelen,_name,_pname,_params); -} -static unsafe void Test_GetnColorTable_37151() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _format = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - System.IntPtr _table = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnColorTable(_target,_format,_type,_bufSize,_table); -} -static unsafe void Test_GetnColorTable_37152() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _format = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - int[] _table = default(int[]); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnColorTable(_target,_format,_type,_bufSize,_table); -} -static unsafe void Test_GetnColorTable_37153() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _format = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - int[,] _table = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnColorTable(_target,_format,_type,_bufSize,_table); -} -static unsafe void Test_GetnColorTable_37154() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _format = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - int[,,] _table = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnColorTable(_target,_format,_type,_bufSize,_table); -} -static unsafe void Test_GetnColorTable_37155() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _format = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - int _table = default(int); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnColorTable(_target,_format,_type,_bufSize,ref _table); -} -static unsafe void Test_GetnCompressedTexImage_37156() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _lod = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.IntPtr _img = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnCompressedTexImage(_target,_lod,_bufSize,_img); -} -static unsafe void Test_GetnCompressedTexImage_37157() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _lod = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - int[] _img = default(int[]); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnCompressedTexImage(_target,_lod,_bufSize,_img); -} -static unsafe void Test_GetnCompressedTexImage_37158() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _lod = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - int[,] _img = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnCompressedTexImage(_target,_lod,_bufSize,_img); -} -static unsafe void Test_GetnCompressedTexImage_37159() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _lod = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - int[,,] _img = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnCompressedTexImage(_target,_lod,_bufSize,_img); -} -static unsafe void Test_GetnCompressedTexImage_37160() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _lod = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - int _img = default(int); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnCompressedTexImage(_target,_lod,_bufSize,ref _img); -} -static unsafe void Test_GetnConvolutionFilter_37161() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _format = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - System.IntPtr _image = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnConvolutionFilter(_target,_format,_type,_bufSize,_image); -} -static unsafe void Test_GetnConvolutionFilter_37162() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _format = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - int[] _image = default(int[]); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnConvolutionFilter(_target,_format,_type,_bufSize,_image); -} -static unsafe void Test_GetnConvolutionFilter_37163() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _format = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - int[,] _image = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnConvolutionFilter(_target,_format,_type,_bufSize,_image); -} -static unsafe void Test_GetnConvolutionFilter_37164() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _format = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - int[,,] _image = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnConvolutionFilter(_target,_format,_type,_bufSize,_image); -} -static unsafe void Test_GetnConvolutionFilter_37165() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _format = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - int _image = default(int); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnConvolutionFilter(_target,_format,_type,_bufSize,ref _image); -} -static unsafe void Test_GetnHistogram_37166() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL4.All _format = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - System.IntPtr _values = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnHistogram(_target,_reset,_format,_type,_bufSize,_values); -} -static unsafe void Test_GetnHistogram_37167() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL4.All _format = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - int[] _values = default(int[]); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnHistogram(_target,_reset,_format,_type,_bufSize,_values); -} -static unsafe void Test_GetnHistogram_37168() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL4.All _format = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - int[,] _values = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnHistogram(_target,_reset,_format,_type,_bufSize,_values); -} -static unsafe void Test_GetnHistogram_37169() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL4.All _format = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - int[,,] _values = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnHistogram(_target,_reset,_format,_type,_bufSize,_values); -} -static unsafe void Test_GetnHistogram_37170() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL4.All _format = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - int _values = default(int); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnHistogram(_target,_reset,_format,_type,_bufSize,ref _values); -} -static unsafe void Test_GetnMap_37171() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _query = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - System.Double[] _v = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnMap(_target,_query,_bufSize,_v); -} -static unsafe void Test_GetnMap_37172() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _query = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - System.Double _v = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnMap(_target,_query,_bufSize,out _v); -} -static unsafe void Test_GetnMap_37173() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _query = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - System.Double* _v = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnMap(_target,_query,_bufSize,_v); -} -static unsafe void Test_GetnMap_37174() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _query = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - System.Single[] _v = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnMap(_target,_query,_bufSize,_v); -} -static unsafe void Test_GetnMap_37175() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _query = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - System.Single _v = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnMap(_target,_query,_bufSize,out _v); -} -static unsafe void Test_GetnMap_37176() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _query = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - System.Single* _v = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnMap(_target,_query,_bufSize,_v); -} -static unsafe void Test_GetnMap_37177() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _query = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _v = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnMap(_target,_query,_bufSize,_v); -} -static unsafe void Test_GetnMap_37178() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _query = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _v = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnMap(_target,_query,_bufSize,out _v); -} -static unsafe void Test_GetnMap_37179() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _query = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _v = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnMap(_target,_query,_bufSize,_v); -} -static unsafe void Test_GetnMinmax_37180() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL4.All _format = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - System.IntPtr _values = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnMinmax(_target,_reset,_format,_type,_bufSize,_values); -} -static unsafe void Test_GetnMinmax_37181() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL4.All _format = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - int[] _values = default(int[]); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnMinmax(_target,_reset,_format,_type,_bufSize,_values); -} -static unsafe void Test_GetnMinmax_37182() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL4.All _format = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - int[,] _values = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnMinmax(_target,_reset,_format,_type,_bufSize,_values); -} -static unsafe void Test_GetnMinmax_37183() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL4.All _format = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - int[,,] _values = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnMinmax(_target,_reset,_format,_type,_bufSize,_values); -} -static unsafe void Test_GetnMinmax_37184() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - System.Boolean _reset = default(System.Boolean); - OpenTK.Graphics.OpenGL4.All _format = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - int _values = default(int); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnMinmax(_target,_reset,_format,_type,_bufSize,ref _values); -} -static unsafe void Test_GetnPixelMap_37185() { - OpenTK.Graphics.OpenGL4.All _map = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - System.Single[] _values = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnPixelMap(_map,_bufSize,_values); -} -static unsafe void Test_GetnPixelMap_37186() { - OpenTK.Graphics.OpenGL4.All _map = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - System.Single _values = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnPixelMap(_map,_bufSize,out _values); -} -static unsafe void Test_GetnPixelMap_37187() { - OpenTK.Graphics.OpenGL4.All _map = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - System.Single* _values = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnPixelMap(_map,_bufSize,_values); -} -static unsafe void Test_GetnPixelMap_37188() { - OpenTK.Graphics.OpenGL4.All _map = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _values = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnPixelMap(_map,_bufSize,_values); -} -static unsafe void Test_GetnPixelMap_37189() { - OpenTK.Graphics.OpenGL4.All _map = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _values = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnPixelMap(_map,_bufSize,out _values); -} -static unsafe void Test_GetnPixelMap_37190() { - OpenTK.Graphics.OpenGL4.All _map = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _values = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnPixelMap(_map,_bufSize,_values); -} -static unsafe void Test_GetnPixelMap_37191() { - OpenTK.Graphics.OpenGL4.All _map = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - System.UInt32[] _values = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnPixelMap(_map,_bufSize,_values); -} -static unsafe void Test_GetnPixelMap_37192() { - OpenTK.Graphics.OpenGL4.All _map = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - System.UInt32 _values = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnPixelMap(_map,_bufSize,out _values); -} -static unsafe void Test_GetnPixelMap_37193() { - OpenTK.Graphics.OpenGL4.All _map = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - System.UInt32* _values = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnPixelMap(_map,_bufSize,_values); -} -static unsafe void Test_GetnPixelMap_37194() { - OpenTK.Graphics.OpenGL4.All _map = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - System.Int16[] _values = default(System.Int16[]); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnPixelMap(_map,_bufSize,_values); -} -static unsafe void Test_GetnPixelMap_37195() { - OpenTK.Graphics.OpenGL4.All _map = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - System.Int16 _values = default(System.Int16); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnPixelMap(_map,_bufSize,out _values); -} -static unsafe void Test_GetnPixelMap_37196() { - OpenTK.Graphics.OpenGL4.All _map = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - System.Int16* _values = default(System.Int16*); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnPixelMap(_map,_bufSize,_values); -} -static unsafe void Test_GetnPixelMap_37197() { - OpenTK.Graphics.OpenGL4.All _map = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - System.UInt16[] _values = default(System.UInt16[]); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnPixelMap(_map,_bufSize,_values); -} -static unsafe void Test_GetnPixelMap_37198() { - OpenTK.Graphics.OpenGL4.All _map = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - System.UInt16 _values = default(System.UInt16); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnPixelMap(_map,_bufSize,out _values); -} -static unsafe void Test_GetnPixelMap_37199() { - OpenTK.Graphics.OpenGL4.All _map = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - System.UInt16* _values = default(System.UInt16*); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnPixelMap(_map,_bufSize,_values); -} -static unsafe void Test_GetnPolygonStipple_37200() { - System.Byte r = OpenTK.Graphics.OpenGL4.GL.Arb.GetnPolygonStipple(); -} -static unsafe void Test_GetnPolygonStipple_37201() { - System.Int32 _bufSize = default(System.Int32); - System.Byte[] _pattern = default(System.Byte[]); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnPolygonStipple(_bufSize,_pattern); -} -static unsafe void Test_GetnPolygonStipple_37202() { - System.Int32 _bufSize = default(System.Int32); - System.Byte _pattern = default(System.Byte); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnPolygonStipple(_bufSize,out _pattern); -} -static unsafe void Test_GetnPolygonStipple_37203() { - System.Int32 _bufSize = default(System.Int32); - System.Byte* _pattern = default(System.Byte*); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnPolygonStipple(_bufSize,_pattern); -} -static unsafe void Test_GetnSeparableFilter_37204() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _format = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _rowBufSize = default(System.Int32); - System.IntPtr _row = default(System.IntPtr); - System.Int32 _columnBufSize = default(System.Int32); - System.IntPtr _column = default(System.IntPtr); - System.IntPtr _span = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnSeparableFilter(_target,_format,_type,_rowBufSize,_row,_columnBufSize,_column,_span); -} -static unsafe void Test_GetnSeparableFilter_37205() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _format = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _rowBufSize = default(System.Int32); - int[] _row = default(int[]); - System.Int32 _columnBufSize = default(System.Int32); - int[] _column = default(int[]); - int[] _span = default(int[]); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnSeparableFilter(_target,_format,_type,_rowBufSize,_row,_columnBufSize,_column,_span); -} -static unsafe void Test_GetnSeparableFilter_37206() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _format = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _rowBufSize = default(System.Int32); - int[,] _row = default(int[,]); - System.Int32 _columnBufSize = default(System.Int32); - int[,] _column = default(int[,]); - int[,] _span = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnSeparableFilter(_target,_format,_type,_rowBufSize,_row,_columnBufSize,_column,_span); -} -static unsafe void Test_GetnSeparableFilter_37207() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _format = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _rowBufSize = default(System.Int32); - int[,,] _row = default(int[,,]); - System.Int32 _columnBufSize = default(System.Int32); - int[,,] _column = default(int[,,]); - int[,,] _span = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnSeparableFilter(_target,_format,_type,_rowBufSize,_row,_columnBufSize,_column,_span); -} -static unsafe void Test_GetnSeparableFilter_37208() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _format = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _rowBufSize = default(System.Int32); - int _row = default(int); - System.Int32 _columnBufSize = default(System.Int32); - int _column = default(int); - int _span = default(int); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnSeparableFilter(_target,_format,_type,_rowBufSize,ref _row,_columnBufSize,ref _column,ref _span); -} -static unsafe void Test_GetnTexImage_37209() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.All _format = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - System.IntPtr _img = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnTexImage(_target,_level,_format,_type,_bufSize,_img); -} -static unsafe void Test_GetnTexImage_37210() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.All _format = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - int[] _img = default(int[]); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnTexImage(_target,_level,_format,_type,_bufSize,_img); -} -static unsafe void Test_GetnTexImage_37211() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.All _format = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - int[,] _img = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnTexImage(_target,_level,_format,_type,_bufSize,_img); -} -static unsafe void Test_GetnTexImage_37212() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.All _format = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - int[,,] _img = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnTexImage(_target,_level,_format,_type,_bufSize,_img); -} -static unsafe void Test_GetnTexImage_37213() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _level = default(System.Int32); - OpenTK.Graphics.OpenGL4.All _format = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - int _img = default(int); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnTexImage(_target,_level,_format,_type,_bufSize,ref _img); -} -static unsafe void Test_GetnUniform_37214() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_37215() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnUniform(_program,_location,_bufSize,out _params); -} -static unsafe void Test_GetnUniform_37216() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_37217() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Double[] _params = default(System.Double[]); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_37218() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Double _params = default(System.Double); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnUniform(_program,_location,_bufSize,out _params); -} -static unsafe void Test_GetnUniform_37219() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Double* _params = default(System.Double*); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_37220() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_37221() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnUniform(_program,_location,_bufSize,out _params); -} -static unsafe void Test_GetnUniform_37222() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_37223() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Single[] _params = default(System.Single[]); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_37224() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Single _params = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnUniform(_program,_location,_bufSize,out _params); -} -static unsafe void Test_GetnUniform_37225() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Single* _params = default(System.Single*); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_37226() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_37227() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnUniform(_program,_location,_bufSize,out _params); -} -static unsafe void Test_GetnUniform_37228() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_37229() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _params = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_37230() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _params = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnUniform(_program,_location,_bufSize,out _params); -} -static unsafe void Test_GetnUniform_37231() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _params = default(System.Int32*); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_37232() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.UInt32[] _params = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetnUniform_37233() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.UInt32 _params = default(System.UInt32); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnUniform(_program,_location,_bufSize,out _params); -} -static unsafe void Test_GetnUniform_37234() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.UInt32* _params = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.GL.Arb.GetnUniform(_program,_location,_bufSize,_params); -} -static unsafe void Test_GetTextureHandle_37235() { - System.Int32 _texture = default(System.Int32); - System.Int64 r = OpenTK.Graphics.OpenGL4.GL.Arb.GetTextureHandle(_texture); -} -static unsafe void Test_GetTextureHandle_37236() { - System.UInt32 _texture = default(System.UInt32); - System.Int64 r = OpenTK.Graphics.OpenGL4.GL.Arb.GetTextureHandle(_texture); -} -static unsafe void Test_GetTextureSamplerHandle_37237() { - System.Int32 _texture = default(System.Int32); - System.Int32 _sampler = default(System.Int32); - System.Int64 r = OpenTK.Graphics.OpenGL4.GL.Arb.GetTextureSamplerHandle(_texture,_sampler); -} -static unsafe void Test_GetTextureSamplerHandle_37238() { - System.UInt32 _texture = default(System.UInt32); - System.UInt32 _sampler = default(System.UInt32); - System.Int64 r = OpenTK.Graphics.OpenGL4.GL.Arb.GetTextureSamplerHandle(_texture,_sampler); -} -static unsafe void Test_GetVertexAttribL_37239() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribParameterArb _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribParameterArb); - System.Int64[] _params = default(System.Int64[]); - OpenTK.Graphics.OpenGL4.GL.Arb.GetVertexAttribL(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribL_37240() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribParameterArb _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribParameterArb); - System.Int64 _params = default(System.Int64); - OpenTK.Graphics.OpenGL4.GL.Arb.GetVertexAttribL(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttribL_37241() { - System.Int32 _index = default(System.Int32); - OpenTK.Graphics.OpenGL4.VertexAttribParameterArb _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribParameterArb); - System.Int64* _params = default(System.Int64*); - OpenTK.Graphics.OpenGL4.GL.Arb.GetVertexAttribL(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribL_37242() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.VertexAttribParameterArb _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribParameterArb); - System.UInt64[] _params = default(System.UInt64[]); - OpenTK.Graphics.OpenGL4.GL.Arb.GetVertexAttribL(_index,_pname,_params); -} -static unsafe void Test_GetVertexAttribL_37243() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.VertexAttribParameterArb _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribParameterArb); - System.UInt64 _params = default(System.UInt64); - OpenTK.Graphics.OpenGL4.GL.Arb.GetVertexAttribL(_index,_pname,out _params); -} -static unsafe void Test_GetVertexAttribL_37244() { - System.UInt32 _index = default(System.UInt32); - OpenTK.Graphics.OpenGL4.VertexAttribParameterArb _pname = default(OpenTK.Graphics.OpenGL4.VertexAttribParameterArb); - System.UInt64* _params = default(System.UInt64*); - OpenTK.Graphics.OpenGL4.GL.Arb.GetVertexAttribL(_index,_pname,_params); -} -static unsafe void Test_IsImageHandleResident_37245() { - System.Int64 _handle = default(System.Int64); - System.Boolean r = OpenTK.Graphics.OpenGL4.GL.Arb.IsImageHandleResident(_handle); -} -static unsafe void Test_IsImageHandleResident_37246() { - System.UInt64 _handle = default(System.UInt64); - System.Boolean r = OpenTK.Graphics.OpenGL4.GL.Arb.IsImageHandleResident(_handle); -} -static unsafe void Test_IsNamedString_37247() { - System.Int32 _namelen = default(System.Int32); - System.String _name = default(System.String); - System.Boolean r = OpenTK.Graphics.OpenGL4.GL.Arb.IsNamedString(_namelen,_name); -} -static unsafe void Test_IsTextureHandleResident_37248() { - System.Int64 _handle = default(System.Int64); - System.Boolean r = OpenTK.Graphics.OpenGL4.GL.Arb.IsTextureHandleResident(_handle); -} -static unsafe void Test_IsTextureHandleResident_37249() { - System.UInt64 _handle = default(System.UInt64); - System.Boolean r = OpenTK.Graphics.OpenGL4.GL.Arb.IsTextureHandleResident(_handle); -} -static unsafe void Test_MakeImageHandleNonResident_37250() { - System.Int64 _handle = default(System.Int64); - OpenTK.Graphics.OpenGL4.GL.Arb.MakeImageHandleNonResident(_handle); -} -static unsafe void Test_MakeImageHandleNonResident_37251() { - System.UInt64 _handle = default(System.UInt64); - OpenTK.Graphics.OpenGL4.GL.Arb.MakeImageHandleNonResident(_handle); -} -static unsafe void Test_MakeImageHandleResident_37252() { - System.Int64 _handle = default(System.Int64); - OpenTK.Graphics.OpenGL4.All _access = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.GL.Arb.MakeImageHandleResident(_handle,_access); -} -static unsafe void Test_MakeImageHandleResident_37253() { - System.UInt64 _handle = default(System.UInt64); - OpenTK.Graphics.OpenGL4.All _access = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.GL.Arb.MakeImageHandleResident(_handle,_access); -} -static unsafe void Test_MakeTextureHandleNonResident_37254() { - System.Int64 _handle = default(System.Int64); - OpenTK.Graphics.OpenGL4.GL.Arb.MakeTextureHandleNonResident(_handle); -} -static unsafe void Test_MakeTextureHandleNonResident_37255() { - System.UInt64 _handle = default(System.UInt64); - OpenTK.Graphics.OpenGL4.GL.Arb.MakeTextureHandleNonResident(_handle); -} -static unsafe void Test_MakeTextureHandleResident_37256() { - System.Int64 _handle = default(System.Int64); - OpenTK.Graphics.OpenGL4.GL.Arb.MakeTextureHandleResident(_handle); -} -static unsafe void Test_MakeTextureHandleResident_37257() { - System.UInt64 _handle = default(System.UInt64); - OpenTK.Graphics.OpenGL4.GL.Arb.MakeTextureHandleResident(_handle); -} -static unsafe void Test_MinSampleShading_37258() { - System.Single _value = default(System.Single); - OpenTK.Graphics.OpenGL4.GL.Arb.MinSampleShading(_value); -} -static unsafe void Test_MultiDrawArraysIndirectCount_37259() { - OpenTK.Graphics.OpenGL4.All _mode = default(OpenTK.Graphics.OpenGL4.All); - System.IntPtr _indirect = default(System.IntPtr); - System.IntPtr _drawcount = default(System.IntPtr); - System.Int32 _maxdrawcount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.Arb.MultiDrawArraysIndirectCount(_mode,_indirect,_drawcount,_maxdrawcount,_stride); -} -static unsafe void Test_MultiDrawElementsIndirectCount_37260() { - OpenTK.Graphics.OpenGL4.All _mode = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.IntPtr _indirect = default(System.IntPtr); - System.IntPtr _drawcount = default(System.IntPtr); - System.Int32 _maxdrawcount = default(System.Int32); - System.Int32 _stride = default(System.Int32); - OpenTK.Graphics.OpenGL4.GL.Arb.MultiDrawElementsIndirectCount(_mode,_type,_indirect,_drawcount,_maxdrawcount,_stride); -} -static unsafe void Test_NamedString_37261() { - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _namelen = default(System.Int32); - System.String _name = default(System.String); - System.Int32 _stringlen = default(System.Int32); - System.String _string = default(System.String); - OpenTK.Graphics.OpenGL4.GL.Arb.NamedString(_type,_namelen,_name,_stringlen,_string); -} -static unsafe void Test_ProgramUniformHandle_37262() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int64 _value = default(System.Int64); - OpenTK.Graphics.OpenGL4.GL.Arb.ProgramUniformHandle(_program,_location,_value); -} -static unsafe void Test_ProgramUniformHandle_37263() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.UInt64 _value = default(System.UInt64); - OpenTK.Graphics.OpenGL4.GL.Arb.ProgramUniformHandle(_program,_location,_value); -} -static unsafe void Test_ProgramUniformHandle_37264() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64[] _values = default(System.Int64[]); - OpenTK.Graphics.OpenGL4.GL.Arb.ProgramUniformHandle(_program,_location,_count,_values); -} -static unsafe void Test_ProgramUniformHandle_37265() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64 _values = default(System.Int64); - OpenTK.Graphics.OpenGL4.GL.Arb.ProgramUniformHandle(_program,_location,_count,ref _values); -} -static unsafe void Test_ProgramUniformHandle_37266() { - System.Int32 _program = default(System.Int32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64* _values = default(System.Int64*); - OpenTK.Graphics.OpenGL4.GL.Arb.ProgramUniformHandle(_program,_location,_count,_values); -} -static unsafe void Test_ProgramUniformHandle_37267() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64[] _values = default(System.UInt64[]); - OpenTK.Graphics.OpenGL4.GL.Arb.ProgramUniformHandle(_program,_location,_count,_values); -} -static unsafe void Test_ProgramUniformHandle_37268() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64 _values = default(System.UInt64); - OpenTK.Graphics.OpenGL4.GL.Arb.ProgramUniformHandle(_program,_location,_count,ref _values); -} -static unsafe void Test_ProgramUniformHandle_37269() { - System.UInt32 _program = default(System.UInt32); - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64* _values = default(System.UInt64*); - OpenTK.Graphics.OpenGL4.GL.Arb.ProgramUniformHandle(_program,_location,_count,_values); -} -static unsafe void Test_ReadnPixels_37270() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.All _format = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - System.IntPtr _data = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.Arb.ReadnPixels(_x,_y,_width,_height,_format,_type,_bufSize,_data); -} -static unsafe void Test_ReadnPixels_37271() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.All _format = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - int[] _data = default(int[]); - OpenTK.Graphics.OpenGL4.GL.Arb.ReadnPixels(_x,_y,_width,_height,_format,_type,_bufSize,_data); -} -static unsafe void Test_ReadnPixels_37272() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.All _format = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - int[,] _data = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.Arb.ReadnPixels(_x,_y,_width,_height,_format,_type,_bufSize,_data); -} -static unsafe void Test_ReadnPixels_37273() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.All _format = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - int[,,] _data = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.Arb.ReadnPixels(_x,_y,_width,_height,_format,_type,_bufSize,_data); -} -static unsafe void Test_ReadnPixels_37274() { - System.Int32 _x = default(System.Int32); - System.Int32 _y = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - OpenTK.Graphics.OpenGL4.All _format = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _bufSize = default(System.Int32); - int _data = default(int); - OpenTK.Graphics.OpenGL4.GL.Arb.ReadnPixels(_x,_y,_width,_height,_format,_type,_bufSize,ref _data); -} -static unsafe void Test_TexPageCommitment_37275() { - OpenTK.Graphics.OpenGL4.All _target = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _level = default(System.Int32); - System.Int32 _xoffset = default(System.Int32); - System.Int32 _yoffset = default(System.Int32); - System.Int32 _zoffset = default(System.Int32); - System.Int32 _width = default(System.Int32); - System.Int32 _height = default(System.Int32); - System.Int32 _depth = default(System.Int32); - System.Boolean _resident = default(System.Boolean); - OpenTK.Graphics.OpenGL4.GL.Arb.TexPageCommitment(_target,_level,_xoffset,_yoffset,_zoffset,_width,_height,_depth,_resident); -} -static unsafe void Test_UniformHandle_37276() { - System.Int32 _location = default(System.Int32); - System.Int64 _value = default(System.Int64); - OpenTK.Graphics.OpenGL4.GL.Arb.UniformHandle(_location,_value); -} -static unsafe void Test_UniformHandle_37277() { - System.Int32 _location = default(System.Int32); - System.UInt64 _value = default(System.UInt64); - OpenTK.Graphics.OpenGL4.GL.Arb.UniformHandle(_location,_value); -} -static unsafe void Test_UniformHandle_37278() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64[] _value = default(System.Int64[]); - OpenTK.Graphics.OpenGL4.GL.Arb.UniformHandle(_location,_count,_value); -} -static unsafe void Test_UniformHandle_37279() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64 _value = default(System.Int64); - OpenTK.Graphics.OpenGL4.GL.Arb.UniformHandle(_location,_count,ref _value); -} -static unsafe void Test_UniformHandle_37280() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.Int64* _value = default(System.Int64*); - OpenTK.Graphics.OpenGL4.GL.Arb.UniformHandle(_location,_count,_value); -} -static unsafe void Test_UniformHandle_37281() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64[] _value = default(System.UInt64[]); - OpenTK.Graphics.OpenGL4.GL.Arb.UniformHandle(_location,_count,_value); -} -static unsafe void Test_UniformHandle_37282() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64 _value = default(System.UInt64); - OpenTK.Graphics.OpenGL4.GL.Arb.UniformHandle(_location,_count,ref _value); -} -static unsafe void Test_UniformHandle_37283() { - System.Int32 _location = default(System.Int32); - System.Int32 _count = default(System.Int32); - System.UInt64* _value = default(System.UInt64*); - OpenTK.Graphics.OpenGL4.GL.Arb.UniformHandle(_location,_count,_value); -} -static unsafe void Test_VertexAttribL1_37284() { - System.Int32 _index = default(System.Int32); - System.Int64 _x = default(System.Int64); - OpenTK.Graphics.OpenGL4.GL.Arb.VertexAttribL1(_index,_x); -} -static unsafe void Test_VertexAttribL1_37285() { - System.UInt32 _index = default(System.UInt32); - System.UInt64 _x = default(System.UInt64); - OpenTK.Graphics.OpenGL4.GL.Arb.VertexAttribL1(_index,_x); -} -static unsafe void Test_VertexAttribL1_37286() { - System.Int32 _index = default(System.Int32); - System.Int64[] _v = default(System.Int64[]); - OpenTK.Graphics.OpenGL4.GL.Arb.VertexAttribL1(_index,_v); -} -static unsafe void Test_VertexAttribL1_37287() { - System.Int32 _index = default(System.Int32); - System.Int64* _v = default(System.Int64*); - OpenTK.Graphics.OpenGL4.GL.Arb.VertexAttribL1(_index,_v); -} -static unsafe void Test_VertexAttribL1_37288() { - System.UInt32 _index = default(System.UInt32); - System.UInt64[] _v = default(System.UInt64[]); - OpenTK.Graphics.OpenGL4.GL.Arb.VertexAttribL1(_index,_v); -} -static unsafe void Test_VertexAttribL1_37289() { - System.UInt32 _index = default(System.UInt32); - System.UInt64* _v = default(System.UInt64*); - OpenTK.Graphics.OpenGL4.GL.Arb.VertexAttribL1(_index,_v); -} -static unsafe void Test_DebugMessageCallback_37290() { - OpenTK.Graphics.OpenGL4.DebugProcKhr _callback = default(OpenTK.Graphics.OpenGL4.DebugProcKhr); - System.IntPtr _userParam = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.Khr.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_37291() { - OpenTK.Graphics.OpenGL4.DebugProcKhr _callback = default(OpenTK.Graphics.OpenGL4.DebugProcKhr); - int[] _userParam = default(int[]); - OpenTK.Graphics.OpenGL4.GL.Khr.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_37292() { - OpenTK.Graphics.OpenGL4.DebugProcKhr _callback = default(OpenTK.Graphics.OpenGL4.DebugProcKhr); - int[,] _userParam = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.Khr.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_37293() { - OpenTK.Graphics.OpenGL4.DebugProcKhr _callback = default(OpenTK.Graphics.OpenGL4.DebugProcKhr); - int[,,] _userParam = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.Khr.DebugMessageCallback(_callback,_userParam); -} -static unsafe void Test_DebugMessageCallback_37294() { - OpenTK.Graphics.OpenGL4.DebugProcKhr _callback = default(OpenTK.Graphics.OpenGL4.DebugProcKhr); - int _userParam = default(int); - OpenTK.Graphics.OpenGL4.GL.Khr.DebugMessageCallback(_callback,ref _userParam); -} -static unsafe void Test_DebugMessageControl_37295() { - OpenTK.Graphics.OpenGL4.All _source = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _severity = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _count = default(System.Int32); - System.Int32[] _ids = default(System.Int32[]); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL4.GL.Khr.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_37296() { - OpenTK.Graphics.OpenGL4.All _source = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _severity = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _count = default(System.Int32); - System.Int32 _ids = default(System.Int32); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL4.GL.Khr.DebugMessageControl(_source,_type,_severity,_count,ref _ids,_enabled); -} -static unsafe void Test_DebugMessageControl_37297() { - OpenTK.Graphics.OpenGL4.All _source = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _severity = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _count = default(System.Int32); - System.Int32* _ids = default(System.Int32*); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL4.GL.Khr.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_37298() { - OpenTK.Graphics.OpenGL4.All _source = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _severity = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _count = default(System.Int32); - System.UInt32[] _ids = default(System.UInt32[]); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL4.GL.Khr.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageControl_37299() { - OpenTK.Graphics.OpenGL4.All _source = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _severity = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _count = default(System.Int32); - System.UInt32 _ids = default(System.UInt32); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL4.GL.Khr.DebugMessageControl(_source,_type,_severity,_count,ref _ids,_enabled); -} -static unsafe void Test_DebugMessageControl_37300() { - OpenTK.Graphics.OpenGL4.All _source = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _severity = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _count = default(System.Int32); - System.UInt32* _ids = default(System.UInt32*); - System.Boolean _enabled = default(System.Boolean); - OpenTK.Graphics.OpenGL4.GL.Khr.DebugMessageControl(_source,_type,_severity,_count,_ids,_enabled); -} -static unsafe void Test_DebugMessageInsert_37301() { - OpenTK.Graphics.OpenGL4.All _source = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL4.All _severity = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _length = default(System.Int32); - System.String _buf = default(System.String); - OpenTK.Graphics.OpenGL4.GL.Khr.DebugMessageInsert(_source,_type,_id,_severity,_length,_buf); -} -static unsafe void Test_DebugMessageInsert_37302() { - OpenTK.Graphics.OpenGL4.All _source = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _type = default(OpenTK.Graphics.OpenGL4.All); - System.UInt32 _id = default(System.UInt32); - OpenTK.Graphics.OpenGL4.All _severity = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _length = default(System.Int32); - System.String _buf = default(System.String); - OpenTK.Graphics.OpenGL4.GL.Khr.DebugMessageInsert(_source,_type,_id,_severity,_length,_buf); -} -static unsafe void Test_GetDebugMessageLog_37303() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.OpenGL4.All[] _sources = default(OpenTK.Graphics.OpenGL4.All[]); - OpenTK.Graphics.OpenGL4.All[] _types = default(OpenTK.Graphics.OpenGL4.All[]); - System.Int32[] _ids = default(System.Int32[]); - OpenTK.Graphics.OpenGL4.All[] _severities = default(OpenTK.Graphics.OpenGL4.All[]); - System.Int32[] _lengths = default(System.Int32[]); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.Khr.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_37304() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.OpenGL4.All _sources = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _types = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _ids = default(System.Int32); - OpenTK.Graphics.OpenGL4.All _severities = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _lengths = default(System.Int32); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.Khr.GetDebugMessageLog(_count,_bufSize,out _sources,out _types,out _ids,out _severities,out _lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_37305() { - System.Int32 _count = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.OpenGL4.All* _sources = default(OpenTK.Graphics.OpenGL4.All*); - OpenTK.Graphics.OpenGL4.All* _types = default(OpenTK.Graphics.OpenGL4.All*); - System.Int32* _ids = default(System.Int32*); - OpenTK.Graphics.OpenGL4.All* _severities = default(OpenTK.Graphics.OpenGL4.All*); - System.Int32* _lengths = default(System.Int32*); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.Khr.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_37306() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.OpenGL4.All[] _sources = default(OpenTK.Graphics.OpenGL4.All[]); - OpenTK.Graphics.OpenGL4.All[] _types = default(OpenTK.Graphics.OpenGL4.All[]); - System.UInt32[] _ids = default(System.UInt32[]); - OpenTK.Graphics.OpenGL4.All[] _severities = default(OpenTK.Graphics.OpenGL4.All[]); - System.Int32[] _lengths = default(System.Int32[]); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.Khr.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_37307() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.OpenGL4.All _sources = default(OpenTK.Graphics.OpenGL4.All); - OpenTK.Graphics.OpenGL4.All _types = default(OpenTK.Graphics.OpenGL4.All); - System.UInt32 _ids = default(System.UInt32); - OpenTK.Graphics.OpenGL4.All _severities = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _lengths = default(System.Int32); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.Khr.GetDebugMessageLog(_count,_bufSize,out _sources,out _types,out _ids,out _severities,out _lengths,_messageLog); -} -static unsafe void Test_GetDebugMessageLog_37308() { - System.UInt32 _count = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - OpenTK.Graphics.OpenGL4.All* _sources = default(OpenTK.Graphics.OpenGL4.All*); - OpenTK.Graphics.OpenGL4.All* _types = default(OpenTK.Graphics.OpenGL4.All*); - System.UInt32* _ids = default(System.UInt32*); - OpenTK.Graphics.OpenGL4.All* _severities = default(OpenTK.Graphics.OpenGL4.All*); - System.Int32* _lengths = default(System.Int32*); - System.Text.StringBuilder _messageLog = default(System.Text.StringBuilder); - System.Int32 r = OpenTK.Graphics.OpenGL4.GL.Khr.GetDebugMessageLog(_count,_bufSize,_sources,_types,_ids,_severities,_lengths,_messageLog); -} -static unsafe void Test_GetObjectLabel_37309() { - OpenTK.Graphics.OpenGL4.All _identifier = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _name = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.Khr.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_37310() { - OpenTK.Graphics.OpenGL4.All _identifier = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _name = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.Khr.GetObjectLabel(_identifier,_name,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectLabel_37311() { - OpenTK.Graphics.OpenGL4.All _identifier = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _name = default(System.Int32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.Khr.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_37312() { - OpenTK.Graphics.OpenGL4.All _identifier = default(OpenTK.Graphics.OpenGL4.All); - System.UInt32 _name = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.Khr.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectLabel_37313() { - OpenTK.Graphics.OpenGL4.All _identifier = default(OpenTK.Graphics.OpenGL4.All); - System.UInt32 _name = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.Khr.GetObjectLabel(_identifier,_name,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectLabel_37314() { - OpenTK.Graphics.OpenGL4.All _identifier = default(OpenTK.Graphics.OpenGL4.All); - System.UInt32 _name = default(System.UInt32); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.Khr.GetObjectLabel(_identifier,_name,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_37315() { - System.IntPtr _ptr = default(System.IntPtr); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_37316() { - System.IntPtr _ptr = default(System.IntPtr); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectPtrLabel_37317() { - System.IntPtr _ptr = default(System.IntPtr); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_37318() { - int[] _ptr = default(int[]); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_37319() { - int[] _ptr = default(int[]); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectPtrLabel_37320() { - int[] _ptr = default(int[]); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_37321() { - int[,] _ptr = default(int[,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_37322() { - int[,] _ptr = default(int[,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectPtrLabel_37323() { - int[,] _ptr = default(int[,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_37324() { - int[,,] _ptr = default(int[,,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_37325() { - int[,,] _ptr = default(int[,,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectPtrLabel_37326() { - int[,,] _ptr = default(int[,,]); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.Khr.GetObjectPtrLabel(_ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_37327() { - int _ptr = default(int); - System.Int32 _bufSize = default(System.Int32); - System.Int32[] _length = default(System.Int32[]); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.Khr.GetObjectPtrLabel(ref _ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetObjectPtrLabel_37328() { - int _ptr = default(int); - System.Int32 _bufSize = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.Khr.GetObjectPtrLabel(ref _ptr,_bufSize,out _length,_label); -} -static unsafe void Test_GetObjectPtrLabel_37329() { - int _ptr = default(int); - System.Int32 _bufSize = default(System.Int32); - System.Int32* _length = default(System.Int32*); - System.Text.StringBuilder _label = default(System.Text.StringBuilder); - OpenTK.Graphics.OpenGL4.GL.Khr.GetObjectPtrLabel(ref _ptr,_bufSize,_length,_label); -} -static unsafe void Test_GetPointer_37330() { - OpenTK.Graphics.OpenGL4.All _pname = default(OpenTK.Graphics.OpenGL4.All); - System.IntPtr _params = default(System.IntPtr); - OpenTK.Graphics.OpenGL4.GL.Khr.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_37331() { - OpenTK.Graphics.OpenGL4.All _pname = default(OpenTK.Graphics.OpenGL4.All); - int[] _params = default(int[]); - OpenTK.Graphics.OpenGL4.GL.Khr.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_37332() { - OpenTK.Graphics.OpenGL4.All _pname = default(OpenTK.Graphics.OpenGL4.All); - int[,] _params = default(int[,]); - OpenTK.Graphics.OpenGL4.GL.Khr.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_37333() { - OpenTK.Graphics.OpenGL4.All _pname = default(OpenTK.Graphics.OpenGL4.All); - int[,,] _params = default(int[,,]); - OpenTK.Graphics.OpenGL4.GL.Khr.GetPointer(_pname,_params); -} -static unsafe void Test_GetPointer_37334() { - OpenTK.Graphics.OpenGL4.All _pname = default(OpenTK.Graphics.OpenGL4.All); - int _params = default(int); - OpenTK.Graphics.OpenGL4.GL.Khr.GetPointer(_pname,ref _params); -} -static unsafe void Test_ObjectLabel_37335() { - OpenTK.Graphics.OpenGL4.All _identifier = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _name = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.OpenGL4.GL.Khr.ObjectLabel(_identifier,_name,_length,_label); -} -static unsafe void Test_ObjectLabel_37336() { - OpenTK.Graphics.OpenGL4.All _identifier = default(OpenTK.Graphics.OpenGL4.All); - System.UInt32 _name = default(System.UInt32); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.OpenGL4.GL.Khr.ObjectLabel(_identifier,_name,_length,_label); -} -static unsafe void Test_ObjectPtrLabel_37337() { - System.IntPtr _ptr = default(System.IntPtr); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.OpenGL4.GL.Khr.ObjectPtrLabel(_ptr,_length,_label); -} -static unsafe void Test_ObjectPtrLabel_37338() { - int[] _ptr = default(int[]); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.OpenGL4.GL.Khr.ObjectPtrLabel(_ptr,_length,_label); -} -static unsafe void Test_ObjectPtrLabel_37339() { - int[,] _ptr = default(int[,]); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.OpenGL4.GL.Khr.ObjectPtrLabel(_ptr,_length,_label); -} -static unsafe void Test_ObjectPtrLabel_37340() { - int[,,] _ptr = default(int[,,]); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.OpenGL4.GL.Khr.ObjectPtrLabel(_ptr,_length,_label); -} -static unsafe void Test_ObjectPtrLabel_37341() { - int _ptr = default(int); - System.Int32 _length = default(System.Int32); - System.String _label = default(System.String); - OpenTK.Graphics.OpenGL4.GL.Khr.ObjectPtrLabel(ref _ptr,_length,_label); -} -static unsafe void Test_PopDebugGroup_37342() { - OpenTK.Graphics.OpenGL4.GL.Khr.PopDebugGroup(); -} -static unsafe void Test_PushDebugGroup_37343() { - OpenTK.Graphics.OpenGL4.All _source = default(OpenTK.Graphics.OpenGL4.All); - System.Int32 _id = default(System.Int32); - System.Int32 _length = default(System.Int32); - System.String _message = default(System.String); - OpenTK.Graphics.OpenGL4.GL.Khr.PushDebugGroup(_source,_id,_length,_message); -} -static unsafe void Test_PushDebugGroup_37344() { - OpenTK.Graphics.OpenGL4.All _source = default(OpenTK.Graphics.OpenGL4.All); - System.UInt32 _id = default(System.UInt32); - System.Int32 _length = default(System.Int32); - System.String _message = default(System.String); - OpenTK.Graphics.OpenGL4.GL.Khr.PushDebugGroup(_source,_id,_length,_message); -} - -static unsafe void Test_Invoke_37346() { - OpenTK.Graphics.OpenGL4.DebugSource _source = default(OpenTK.Graphics.OpenGL4.DebugSource); - OpenTK.Graphics.OpenGL4.DebugType _type = default(OpenTK.Graphics.OpenGL4.DebugType); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL4.DebugSeverity _severity = default(OpenTK.Graphics.OpenGL4.DebugSeverity); - System.Int32 _length = default(System.Int32); - System.IntPtr _message = default(System.IntPtr); - System.IntPtr _userParam = default(System.IntPtr); - default(OpenTK.Graphics.OpenGL4.DebugProcArb).Invoke(_source,_type,_id,_severity,_length,_message,_userParam); -} -static unsafe void Test_BeginInvoke_37347() { - OpenTK.Graphics.OpenGL4.DebugSource _source = default(OpenTK.Graphics.OpenGL4.DebugSource); - OpenTK.Graphics.OpenGL4.DebugType _type = default(OpenTK.Graphics.OpenGL4.DebugType); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL4.DebugSeverity _severity = default(OpenTK.Graphics.OpenGL4.DebugSeverity); - System.Int32 _length = default(System.Int32); - System.IntPtr _message = default(System.IntPtr); - System.IntPtr _userParam = default(System.IntPtr); - System.AsyncCallback _callback = default(System.AsyncCallback); - System.Object _object = default(System.Object); - System.IAsyncResult r = default(OpenTK.Graphics.OpenGL4.DebugProcArb).BeginInvoke(_source,_type,_id,_severity,_length,_message,_userParam,_callback,_object); -} -static unsafe void Test_EndInvoke_37348() { - System.IAsyncResult _result = default(System.IAsyncResult); - default(OpenTK.Graphics.OpenGL4.DebugProcArb).EndInvoke(_result); -} - -static unsafe void Test_Invoke_37350() { - OpenTK.Graphics.OpenGL4.DebugSource _source = default(OpenTK.Graphics.OpenGL4.DebugSource); - OpenTK.Graphics.OpenGL4.DebugType _type = default(OpenTK.Graphics.OpenGL4.DebugType); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL4.DebugSeverity _severity = default(OpenTK.Graphics.OpenGL4.DebugSeverity); - System.Int32 _length = default(System.Int32); - System.IntPtr _message = default(System.IntPtr); - System.IntPtr _userParam = default(System.IntPtr); - default(OpenTK.Graphics.OpenGL4.DebugProc).Invoke(_source,_type,_id,_severity,_length,_message,_userParam); -} -static unsafe void Test_BeginInvoke_37351() { - OpenTK.Graphics.OpenGL4.DebugSource _source = default(OpenTK.Graphics.OpenGL4.DebugSource); - OpenTK.Graphics.OpenGL4.DebugType _type = default(OpenTK.Graphics.OpenGL4.DebugType); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL4.DebugSeverity _severity = default(OpenTK.Graphics.OpenGL4.DebugSeverity); - System.Int32 _length = default(System.Int32); - System.IntPtr _message = default(System.IntPtr); - System.IntPtr _userParam = default(System.IntPtr); - System.AsyncCallback _callback = default(System.AsyncCallback); - System.Object _object = default(System.Object); - System.IAsyncResult r = default(OpenTK.Graphics.OpenGL4.DebugProc).BeginInvoke(_source,_type,_id,_severity,_length,_message,_userParam,_callback,_object); -} -static unsafe void Test_EndInvoke_37352() { - System.IAsyncResult _result = default(System.IAsyncResult); - default(OpenTK.Graphics.OpenGL4.DebugProc).EndInvoke(_result); -} - -static unsafe void Test_Invoke_37354() { - OpenTK.Graphics.OpenGL4.DebugSource _source = default(OpenTK.Graphics.OpenGL4.DebugSource); - OpenTK.Graphics.OpenGL4.DebugType _type = default(OpenTK.Graphics.OpenGL4.DebugType); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL4.DebugSeverity _severity = default(OpenTK.Graphics.OpenGL4.DebugSeverity); - System.Int32 _length = default(System.Int32); - System.IntPtr _message = default(System.IntPtr); - System.IntPtr _userParam = default(System.IntPtr); - default(OpenTK.Graphics.OpenGL4.DebugProcKhr).Invoke(_source,_type,_id,_severity,_length,_message,_userParam); -} -static unsafe void Test_BeginInvoke_37355() { - OpenTK.Graphics.OpenGL4.DebugSource _source = default(OpenTK.Graphics.OpenGL4.DebugSource); - OpenTK.Graphics.OpenGL4.DebugType _type = default(OpenTK.Graphics.OpenGL4.DebugType); - System.Int32 _id = default(System.Int32); - OpenTK.Graphics.OpenGL4.DebugSeverity _severity = default(OpenTK.Graphics.OpenGL4.DebugSeverity); - System.Int32 _length = default(System.Int32); - System.IntPtr _message = default(System.IntPtr); - System.IntPtr _userParam = default(System.IntPtr); - System.AsyncCallback _callback = default(System.AsyncCallback); - System.Object _object = default(System.Object); - System.IAsyncResult r = default(OpenTK.Graphics.OpenGL4.DebugProcKhr).BeginInvoke(_source,_type,_id,_severity,_length,_message,_userParam,_callback,_object); -} -static unsafe void Test_EndInvoke_37356() { - System.IAsyncResult _result = default(System.IAsyncResult); - default(OpenTK.Graphics.OpenGL4.DebugProcKhr).EndInvoke(_result); -} -static void Test_AccumOp_37357() { -} -static void Test_ActiveAttribType_37358() { - var _None = OpenTK.Graphics.OpenGL4.ActiveAttribType.None; - var _Int = OpenTK.Graphics.OpenGL4.ActiveAttribType.Int; - var _UnsignedInt = OpenTK.Graphics.OpenGL4.ActiveAttribType.UnsignedInt; - var _Float = OpenTK.Graphics.OpenGL4.ActiveAttribType.Float; - var _Double = OpenTK.Graphics.OpenGL4.ActiveAttribType.Double; - var _FloatVec2 = OpenTK.Graphics.OpenGL4.ActiveAttribType.FloatVec2; - var _FloatVec3 = OpenTK.Graphics.OpenGL4.ActiveAttribType.FloatVec3; - var _FloatVec4 = OpenTK.Graphics.OpenGL4.ActiveAttribType.FloatVec4; - var _IntVec2 = OpenTK.Graphics.OpenGL4.ActiveAttribType.IntVec2; - var _IntVec3 = OpenTK.Graphics.OpenGL4.ActiveAttribType.IntVec3; - var _IntVec4 = OpenTK.Graphics.OpenGL4.ActiveAttribType.IntVec4; - var _FloatMat2 = OpenTK.Graphics.OpenGL4.ActiveAttribType.FloatMat2; - var _FloatMat3 = OpenTK.Graphics.OpenGL4.ActiveAttribType.FloatMat3; - var _FloatMat4 = OpenTK.Graphics.OpenGL4.ActiveAttribType.FloatMat4; - var _FloatMat2x3 = OpenTK.Graphics.OpenGL4.ActiveAttribType.FloatMat2x3; - var _FloatMat2x4 = OpenTK.Graphics.OpenGL4.ActiveAttribType.FloatMat2x4; - var _FloatMat3x2 = OpenTK.Graphics.OpenGL4.ActiveAttribType.FloatMat3x2; - var _FloatMat3x4 = OpenTK.Graphics.OpenGL4.ActiveAttribType.FloatMat3x4; - var _FloatMat4x2 = OpenTK.Graphics.OpenGL4.ActiveAttribType.FloatMat4x2; - var _FloatMat4x3 = OpenTK.Graphics.OpenGL4.ActiveAttribType.FloatMat4x3; - var _UnsignedIntVec2 = OpenTK.Graphics.OpenGL4.ActiveAttribType.UnsignedIntVec2; - var _UnsignedIntVec3 = OpenTK.Graphics.OpenGL4.ActiveAttribType.UnsignedIntVec3; - var _UnsignedIntVec4 = OpenTK.Graphics.OpenGL4.ActiveAttribType.UnsignedIntVec4; - var _DoubleMat2 = OpenTK.Graphics.OpenGL4.ActiveAttribType.DoubleMat2; - var _DoubleMat3 = OpenTK.Graphics.OpenGL4.ActiveAttribType.DoubleMat3; - var _DoubleMat4 = OpenTK.Graphics.OpenGL4.ActiveAttribType.DoubleMat4; - var _DoubleMat2x3 = OpenTK.Graphics.OpenGL4.ActiveAttribType.DoubleMat2x3; - var _DoubleMat2x4 = OpenTK.Graphics.OpenGL4.ActiveAttribType.DoubleMat2x4; - var _DoubleMat3x2 = OpenTK.Graphics.OpenGL4.ActiveAttribType.DoubleMat3x2; - var _DoubleMat3x4 = OpenTK.Graphics.OpenGL4.ActiveAttribType.DoubleMat3x4; - var _DoubleMat4x2 = OpenTK.Graphics.OpenGL4.ActiveAttribType.DoubleMat4x2; - var _DoubleMat4x3 = OpenTK.Graphics.OpenGL4.ActiveAttribType.DoubleMat4x3; - var _DoubleVec2 = OpenTK.Graphics.OpenGL4.ActiveAttribType.DoubleVec2; - var _DoubleVec3 = OpenTK.Graphics.OpenGL4.ActiveAttribType.DoubleVec3; - var _DoubleVec4 = OpenTK.Graphics.OpenGL4.ActiveAttribType.DoubleVec4; -} -static void Test_ActiveSubroutineUniformParameter_37359() { - var _UniformSize = OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter.UniformSize; - var _UniformNameLength = OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter.UniformNameLength; - var _NumCompatibleSubroutines = OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter.NumCompatibleSubroutines; - var _CompatibleSubroutines = OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter.CompatibleSubroutines; -} -static void Test_ActiveUniformBlockParameter_37360() { - var _UniformBlockReferencedByTessControlShader = OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter.UniformBlockReferencedByTessControlShader; - var _UniformBlockReferencedByTessEvaluationShader = OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter.UniformBlockReferencedByTessEvaluationShader; - var _UniformBlockBinding = OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter.UniformBlockBinding; - var _UniformBlockDataSize = OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter.UniformBlockDataSize; - var _UniformBlockNameLength = OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter.UniformBlockNameLength; - var _UniformBlockActiveUniforms = OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter.UniformBlockActiveUniforms; - var _UniformBlockActiveUniformIndices = OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter.UniformBlockActiveUniformIndices; - var _UniformBlockReferencedByVertexShader = OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter.UniformBlockReferencedByVertexShader; - var _UniformBlockReferencedByGeometryShader = OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter.UniformBlockReferencedByGeometryShader; - var _UniformBlockReferencedByFragmentShader = OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter.UniformBlockReferencedByFragmentShader; - var _UniformBlockReferencedByComputeShader = OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter.UniformBlockReferencedByComputeShader; -} -static void Test_ActiveUniformParameter_37361() { - var _UniformType = OpenTK.Graphics.OpenGL4.ActiveUniformParameter.UniformType; - var _UniformSize = OpenTK.Graphics.OpenGL4.ActiveUniformParameter.UniformSize; - var _UniformNameLength = OpenTK.Graphics.OpenGL4.ActiveUniformParameter.UniformNameLength; - var _UniformBlockIndex = OpenTK.Graphics.OpenGL4.ActiveUniformParameter.UniformBlockIndex; - var _UniformOffset = OpenTK.Graphics.OpenGL4.ActiveUniformParameter.UniformOffset; - var _UniformArrayStride = OpenTK.Graphics.OpenGL4.ActiveUniformParameter.UniformArrayStride; - var _UniformMatrixStride = OpenTK.Graphics.OpenGL4.ActiveUniformParameter.UniformMatrixStride; - var _UniformIsRowMajor = OpenTK.Graphics.OpenGL4.ActiveUniformParameter.UniformIsRowMajor; - var _UniformAtomicCounterBufferIndex = OpenTK.Graphics.OpenGL4.ActiveUniformParameter.UniformAtomicCounterBufferIndex; -} -static void Test_ActiveUniformType_37362() { - var _Int = OpenTK.Graphics.OpenGL4.ActiveUniformType.Int; - var _UnsignedInt = OpenTK.Graphics.OpenGL4.ActiveUniformType.UnsignedInt; - var _Float = OpenTK.Graphics.OpenGL4.ActiveUniformType.Float; - var _Double = OpenTK.Graphics.OpenGL4.ActiveUniformType.Double; - var _FloatVec2 = OpenTK.Graphics.OpenGL4.ActiveUniformType.FloatVec2; - var _FloatVec3 = OpenTK.Graphics.OpenGL4.ActiveUniformType.FloatVec3; - var _FloatVec4 = OpenTK.Graphics.OpenGL4.ActiveUniformType.FloatVec4; - var _IntVec2 = OpenTK.Graphics.OpenGL4.ActiveUniformType.IntVec2; - var _IntVec3 = OpenTK.Graphics.OpenGL4.ActiveUniformType.IntVec3; - var _IntVec4 = OpenTK.Graphics.OpenGL4.ActiveUniformType.IntVec4; - var _Bool = OpenTK.Graphics.OpenGL4.ActiveUniformType.Bool; - var _BoolVec2 = OpenTK.Graphics.OpenGL4.ActiveUniformType.BoolVec2; - var _BoolVec3 = OpenTK.Graphics.OpenGL4.ActiveUniformType.BoolVec3; - var _BoolVec4 = OpenTK.Graphics.OpenGL4.ActiveUniformType.BoolVec4; - var _FloatMat2 = OpenTK.Graphics.OpenGL4.ActiveUniformType.FloatMat2; - var _FloatMat3 = OpenTK.Graphics.OpenGL4.ActiveUniformType.FloatMat3; - var _FloatMat4 = OpenTK.Graphics.OpenGL4.ActiveUniformType.FloatMat4; - var _Sampler1D = OpenTK.Graphics.OpenGL4.ActiveUniformType.Sampler1D; - var _Sampler2D = OpenTK.Graphics.OpenGL4.ActiveUniformType.Sampler2D; - var _Sampler3D = OpenTK.Graphics.OpenGL4.ActiveUniformType.Sampler3D; - var _SamplerCube = OpenTK.Graphics.OpenGL4.ActiveUniformType.SamplerCube; - var _Sampler1DShadow = OpenTK.Graphics.OpenGL4.ActiveUniformType.Sampler1DShadow; - var _Sampler2DShadow = OpenTK.Graphics.OpenGL4.ActiveUniformType.Sampler2DShadow; - var _Sampler2DRect = OpenTK.Graphics.OpenGL4.ActiveUniformType.Sampler2DRect; - var _Sampler2DRectShadow = OpenTK.Graphics.OpenGL4.ActiveUniformType.Sampler2DRectShadow; - var _FloatMat2x3 = OpenTK.Graphics.OpenGL4.ActiveUniformType.FloatMat2x3; - var _FloatMat2x4 = OpenTK.Graphics.OpenGL4.ActiveUniformType.FloatMat2x4; - var _FloatMat3x2 = OpenTK.Graphics.OpenGL4.ActiveUniformType.FloatMat3x2; - var _FloatMat3x4 = OpenTK.Graphics.OpenGL4.ActiveUniformType.FloatMat3x4; - var _FloatMat4x2 = OpenTK.Graphics.OpenGL4.ActiveUniformType.FloatMat4x2; - var _FloatMat4x3 = OpenTK.Graphics.OpenGL4.ActiveUniformType.FloatMat4x3; - var _Sampler1DArray = OpenTK.Graphics.OpenGL4.ActiveUniformType.Sampler1DArray; - var _Sampler2DArray = OpenTK.Graphics.OpenGL4.ActiveUniformType.Sampler2DArray; - var _SamplerBuffer = OpenTK.Graphics.OpenGL4.ActiveUniformType.SamplerBuffer; - var _Sampler1DArrayShadow = OpenTK.Graphics.OpenGL4.ActiveUniformType.Sampler1DArrayShadow; - var _Sampler2DArrayShadow = OpenTK.Graphics.OpenGL4.ActiveUniformType.Sampler2DArrayShadow; - var _SamplerCubeShadow = OpenTK.Graphics.OpenGL4.ActiveUniformType.SamplerCubeShadow; - var _UnsignedIntVec2 = OpenTK.Graphics.OpenGL4.ActiveUniformType.UnsignedIntVec2; - var _UnsignedIntVec3 = OpenTK.Graphics.OpenGL4.ActiveUniformType.UnsignedIntVec3; - var _UnsignedIntVec4 = OpenTK.Graphics.OpenGL4.ActiveUniformType.UnsignedIntVec4; - var _IntSampler1D = OpenTK.Graphics.OpenGL4.ActiveUniformType.IntSampler1D; - var _IntSampler2D = OpenTK.Graphics.OpenGL4.ActiveUniformType.IntSampler2D; - var _IntSampler3D = OpenTK.Graphics.OpenGL4.ActiveUniformType.IntSampler3D; - var _IntSamplerCube = OpenTK.Graphics.OpenGL4.ActiveUniformType.IntSamplerCube; - var _IntSampler2DRect = OpenTK.Graphics.OpenGL4.ActiveUniformType.IntSampler2DRect; - var _IntSampler1DArray = OpenTK.Graphics.OpenGL4.ActiveUniformType.IntSampler1DArray; - var _IntSampler2DArray = OpenTK.Graphics.OpenGL4.ActiveUniformType.IntSampler2DArray; - var _IntSamplerBuffer = OpenTK.Graphics.OpenGL4.ActiveUniformType.IntSamplerBuffer; - var _UnsignedIntSampler1D = OpenTK.Graphics.OpenGL4.ActiveUniformType.UnsignedIntSampler1D; - var _UnsignedIntSampler2D = OpenTK.Graphics.OpenGL4.ActiveUniformType.UnsignedIntSampler2D; - var _UnsignedIntSampler3D = OpenTK.Graphics.OpenGL4.ActiveUniformType.UnsignedIntSampler3D; - var _UnsignedIntSamplerCube = OpenTK.Graphics.OpenGL4.ActiveUniformType.UnsignedIntSamplerCube; - var _UnsignedIntSampler2DRect = OpenTK.Graphics.OpenGL4.ActiveUniformType.UnsignedIntSampler2DRect; - var _UnsignedIntSampler1DArray = OpenTK.Graphics.OpenGL4.ActiveUniformType.UnsignedIntSampler1DArray; - var _UnsignedIntSampler2DArray = OpenTK.Graphics.OpenGL4.ActiveUniformType.UnsignedIntSampler2DArray; - var _UnsignedIntSamplerBuffer = OpenTK.Graphics.OpenGL4.ActiveUniformType.UnsignedIntSamplerBuffer; - var _DoubleVec2 = OpenTK.Graphics.OpenGL4.ActiveUniformType.DoubleVec2; - var _DoubleVec3 = OpenTK.Graphics.OpenGL4.ActiveUniformType.DoubleVec3; - var _DoubleVec4 = OpenTK.Graphics.OpenGL4.ActiveUniformType.DoubleVec4; - var _SamplerCubeMapArray = OpenTK.Graphics.OpenGL4.ActiveUniformType.SamplerCubeMapArray; - var _SamplerCubeMapArrayShadow = OpenTK.Graphics.OpenGL4.ActiveUniformType.SamplerCubeMapArrayShadow; - var _IntSamplerCubeMapArray = OpenTK.Graphics.OpenGL4.ActiveUniformType.IntSamplerCubeMapArray; - var _UnsignedIntSamplerCubeMapArray = OpenTK.Graphics.OpenGL4.ActiveUniformType.UnsignedIntSamplerCubeMapArray; - var _Image1D = OpenTK.Graphics.OpenGL4.ActiveUniformType.Image1D; - var _Image2D = OpenTK.Graphics.OpenGL4.ActiveUniformType.Image2D; - var _Image3D = OpenTK.Graphics.OpenGL4.ActiveUniformType.Image3D; - var _Image2DRect = OpenTK.Graphics.OpenGL4.ActiveUniformType.Image2DRect; - var _ImageCube = OpenTK.Graphics.OpenGL4.ActiveUniformType.ImageCube; - var _ImageBuffer = OpenTK.Graphics.OpenGL4.ActiveUniformType.ImageBuffer; - var _Image1DArray = OpenTK.Graphics.OpenGL4.ActiveUniformType.Image1DArray; - var _Image2DArray = OpenTK.Graphics.OpenGL4.ActiveUniformType.Image2DArray; - var _ImageCubeMapArray = OpenTK.Graphics.OpenGL4.ActiveUniformType.ImageCubeMapArray; - var _Image2DMultisample = OpenTK.Graphics.OpenGL4.ActiveUniformType.Image2DMultisample; - var _Image2DMultisampleArray = OpenTK.Graphics.OpenGL4.ActiveUniformType.Image2DMultisampleArray; - var _IntImage1D = OpenTK.Graphics.OpenGL4.ActiveUniformType.IntImage1D; - var _IntImage2D = OpenTK.Graphics.OpenGL4.ActiveUniformType.IntImage2D; - var _IntImage3D = OpenTK.Graphics.OpenGL4.ActiveUniformType.IntImage3D; - var _IntImage2DRect = OpenTK.Graphics.OpenGL4.ActiveUniformType.IntImage2DRect; - var _IntImageCube = OpenTK.Graphics.OpenGL4.ActiveUniformType.IntImageCube; - var _IntImageBuffer = OpenTK.Graphics.OpenGL4.ActiveUniformType.IntImageBuffer; - var _IntImage1DArray = OpenTK.Graphics.OpenGL4.ActiveUniformType.IntImage1DArray; - var _IntImage2DArray = OpenTK.Graphics.OpenGL4.ActiveUniformType.IntImage2DArray; - var _IntImageCubeMapArray = OpenTK.Graphics.OpenGL4.ActiveUniformType.IntImageCubeMapArray; - var _IntImage2DMultisample = OpenTK.Graphics.OpenGL4.ActiveUniformType.IntImage2DMultisample; - var _IntImage2DMultisampleArray = OpenTK.Graphics.OpenGL4.ActiveUniformType.IntImage2DMultisampleArray; - var _UnsignedIntImage1D = OpenTK.Graphics.OpenGL4.ActiveUniformType.UnsignedIntImage1D; - var _UnsignedIntImage2D = OpenTK.Graphics.OpenGL4.ActiveUniformType.UnsignedIntImage2D; - var _UnsignedIntImage3D = OpenTK.Graphics.OpenGL4.ActiveUniformType.UnsignedIntImage3D; - var _UnsignedIntImage2DRect = OpenTK.Graphics.OpenGL4.ActiveUniformType.UnsignedIntImage2DRect; - var _UnsignedIntImageCube = OpenTK.Graphics.OpenGL4.ActiveUniformType.UnsignedIntImageCube; - var _UnsignedIntImageBuffer = OpenTK.Graphics.OpenGL4.ActiveUniformType.UnsignedIntImageBuffer; - var _UnsignedIntImage1DArray = OpenTK.Graphics.OpenGL4.ActiveUniformType.UnsignedIntImage1DArray; - var _UnsignedIntImage2DArray = OpenTK.Graphics.OpenGL4.ActiveUniformType.UnsignedIntImage2DArray; - var _UnsignedIntImageCubeMapArray = OpenTK.Graphics.OpenGL4.ActiveUniformType.UnsignedIntImageCubeMapArray; - var _UnsignedIntImage2DMultisample = OpenTK.Graphics.OpenGL4.ActiveUniformType.UnsignedIntImage2DMultisample; - var _UnsignedIntImage2DMultisampleArray = OpenTK.Graphics.OpenGL4.ActiveUniformType.UnsignedIntImage2DMultisampleArray; - var _Sampler2DMultisample = OpenTK.Graphics.OpenGL4.ActiveUniformType.Sampler2DMultisample; - var _IntSampler2DMultisample = OpenTK.Graphics.OpenGL4.ActiveUniformType.IntSampler2DMultisample; - var _UnsignedIntSampler2DMultisample = OpenTK.Graphics.OpenGL4.ActiveUniformType.UnsignedIntSampler2DMultisample; - var _Sampler2DMultisampleArray = OpenTK.Graphics.OpenGL4.ActiveUniformType.Sampler2DMultisampleArray; - var _IntSampler2DMultisampleArray = OpenTK.Graphics.OpenGL4.ActiveUniformType.IntSampler2DMultisampleArray; - var _UnsignedIntSampler2DMultisampleArray = OpenTK.Graphics.OpenGL4.ActiveUniformType.UnsignedIntSampler2DMultisampleArray; - var _UnsignedIntAtomicCounter = OpenTK.Graphics.OpenGL4.ActiveUniformType.UnsignedIntAtomicCounter; -} -static void Test_All_37363() { - var _False = OpenTK.Graphics.OpenGL4.All.False; - var _LayoutDefaultIntel = OpenTK.Graphics.OpenGL4.All.LayoutDefaultIntel; - var _NoError = OpenTK.Graphics.OpenGL4.All.NoError; - var _None = OpenTK.Graphics.OpenGL4.All.None; - var _NoneOes = OpenTK.Graphics.OpenGL4.All.NoneOes; - var _Zero = OpenTK.Graphics.OpenGL4.All.Zero; - var _Points = OpenTK.Graphics.OpenGL4.All.Points; - var _ContextCoreProfileBit = OpenTK.Graphics.OpenGL4.All.ContextCoreProfileBit; - var _ContextFlagForwardCompatibleBit = OpenTK.Graphics.OpenGL4.All.ContextFlagForwardCompatibleBit; - var _QueryDepthPassEventBitAmd = OpenTK.Graphics.OpenGL4.All.QueryDepthPassEventBitAmd; - var _SyncFlushCommandsBit = OpenTK.Graphics.OpenGL4.All.SyncFlushCommandsBit; - var _VertexAttribArrayBarrierBit = OpenTK.Graphics.OpenGL4.All.VertexAttribArrayBarrierBit; - var _VertexAttribArrayBarrierBitExt = OpenTK.Graphics.OpenGL4.All.VertexAttribArrayBarrierBitExt; - var _VertexShaderBit = OpenTK.Graphics.OpenGL4.All.VertexShaderBit; - var _VertexShaderBitExt = OpenTK.Graphics.OpenGL4.All.VertexShaderBitExt; - var _ContextCompatibilityProfileBit = OpenTK.Graphics.OpenGL4.All.ContextCompatibilityProfileBit; - var _ContextFlagDebugBit = OpenTK.Graphics.OpenGL4.All.ContextFlagDebugBit; - var _ContextFlagDebugBitKhr = OpenTK.Graphics.OpenGL4.All.ContextFlagDebugBitKhr; - var _ElementArrayBarrierBit = OpenTK.Graphics.OpenGL4.All.ElementArrayBarrierBit; - var _ElementArrayBarrierBitExt = OpenTK.Graphics.OpenGL4.All.ElementArrayBarrierBitExt; - var _FragmentShaderBit = OpenTK.Graphics.OpenGL4.All.FragmentShaderBit; - var _FragmentShaderBitExt = OpenTK.Graphics.OpenGL4.All.FragmentShaderBitExt; - var _QueryDepthFailEventBitAmd = OpenTK.Graphics.OpenGL4.All.QueryDepthFailEventBitAmd; - var _ContextFlagRobustAccessBitArb = OpenTK.Graphics.OpenGL4.All.ContextFlagRobustAccessBitArb; - var _GeometryShaderBit = OpenTK.Graphics.OpenGL4.All.GeometryShaderBit; - var _GeometryShaderBitExt = OpenTK.Graphics.OpenGL4.All.GeometryShaderBitExt; - var _QueryStencilFailEventBitAmd = OpenTK.Graphics.OpenGL4.All.QueryStencilFailEventBitAmd; - var _UniformBarrierBit = OpenTK.Graphics.OpenGL4.All.UniformBarrierBit; - var _UniformBarrierBitExt = OpenTK.Graphics.OpenGL4.All.UniformBarrierBitExt; - var _QueryDepthBoundsFailEventBitAmd = OpenTK.Graphics.OpenGL4.All.QueryDepthBoundsFailEventBitAmd; - var _TessControlShaderBit = OpenTK.Graphics.OpenGL4.All.TessControlShaderBit; - var _TessControlShaderBitExt = OpenTK.Graphics.OpenGL4.All.TessControlShaderBitExt; - var _TextureFetchBarrierBit = OpenTK.Graphics.OpenGL4.All.TextureFetchBarrierBit; - var _TextureFetchBarrierBitExt = OpenTK.Graphics.OpenGL4.All.TextureFetchBarrierBitExt; - var _ShaderGlobalAccessBarrierBitNv = OpenTK.Graphics.OpenGL4.All.ShaderGlobalAccessBarrierBitNv; - var _TessEvaluationShaderBit = OpenTK.Graphics.OpenGL4.All.TessEvaluationShaderBit; - var _TessEvaluationShaderBitExt = OpenTK.Graphics.OpenGL4.All.TessEvaluationShaderBitExt; - var _ComputeShaderBit = OpenTK.Graphics.OpenGL4.All.ComputeShaderBit; - var _ShaderImageAccessBarrierBit = OpenTK.Graphics.OpenGL4.All.ShaderImageAccessBarrierBit; - var _ShaderImageAccessBarrierBitExt = OpenTK.Graphics.OpenGL4.All.ShaderImageAccessBarrierBitExt; - var _CommandBarrierBit = OpenTK.Graphics.OpenGL4.All.CommandBarrierBit; - var _CommandBarrierBitExt = OpenTK.Graphics.OpenGL4.All.CommandBarrierBitExt; - var _PixelBufferBarrierBit = OpenTK.Graphics.OpenGL4.All.PixelBufferBarrierBit; - var _PixelBufferBarrierBitExt = OpenTK.Graphics.OpenGL4.All.PixelBufferBarrierBitExt; - var _DepthBufferBit = OpenTK.Graphics.OpenGL4.All.DepthBufferBit; - var _TextureUpdateBarrierBit = OpenTK.Graphics.OpenGL4.All.TextureUpdateBarrierBit; - var _TextureUpdateBarrierBitExt = OpenTK.Graphics.OpenGL4.All.TextureUpdateBarrierBitExt; - var _AccumBufferBit = OpenTK.Graphics.OpenGL4.All.AccumBufferBit; - var _BufferUpdateBarrierBit = OpenTK.Graphics.OpenGL4.All.BufferUpdateBarrierBit; - var _BufferUpdateBarrierBitExt = OpenTK.Graphics.OpenGL4.All.BufferUpdateBarrierBitExt; - var _FramebufferBarrierBit = OpenTK.Graphics.OpenGL4.All.FramebufferBarrierBit; - var _FramebufferBarrierBitExt = OpenTK.Graphics.OpenGL4.All.FramebufferBarrierBitExt; - var _StencilBufferBit = OpenTK.Graphics.OpenGL4.All.StencilBufferBit; - var _TransformFeedbackBarrierBit = OpenTK.Graphics.OpenGL4.All.TransformFeedbackBarrierBit; - var _TransformFeedbackBarrierBitExt = OpenTK.Graphics.OpenGL4.All.TransformFeedbackBarrierBitExt; - var _AtomicCounterBarrierBit = OpenTK.Graphics.OpenGL4.All.AtomicCounterBarrierBit; - var _AtomicCounterBarrierBitExt = OpenTK.Graphics.OpenGL4.All.AtomicCounterBarrierBitExt; - var _ShaderStorageBarrierBit = OpenTK.Graphics.OpenGL4.All.ShaderStorageBarrierBit; - var _ClientMappedBufferBarrierBit = OpenTK.Graphics.OpenGL4.All.ClientMappedBufferBarrierBit; - var _ColorBufferBit = OpenTK.Graphics.OpenGL4.All.ColorBufferBit; - var _CoverageBufferBitNv = OpenTK.Graphics.OpenGL4.All.CoverageBufferBitNv; - var _QueryBufferBarrierBit = OpenTK.Graphics.OpenGL4.All.QueryBufferBarrierBit; - var _Lines = OpenTK.Graphics.OpenGL4.All.Lines; - var _MapReadBit = OpenTK.Graphics.OpenGL4.All.MapReadBit; - var _MapReadBitExt = OpenTK.Graphics.OpenGL4.All.MapReadBitExt; - var _LineLoop = OpenTK.Graphics.OpenGL4.All.LineLoop; - var _MapWriteBit = OpenTK.Graphics.OpenGL4.All.MapWriteBit; - var _MapWriteBitExt = OpenTK.Graphics.OpenGL4.All.MapWriteBitExt; - var _LineStrip = OpenTK.Graphics.OpenGL4.All.LineStrip; - var _MapInvalidateRangeBit = OpenTK.Graphics.OpenGL4.All.MapInvalidateRangeBit; - var _MapInvalidateRangeBitExt = OpenTK.Graphics.OpenGL4.All.MapInvalidateRangeBitExt; - var _Triangles = OpenTK.Graphics.OpenGL4.All.Triangles; - var _TriangleStrip = OpenTK.Graphics.OpenGL4.All.TriangleStrip; - var _TriangleFan = OpenTK.Graphics.OpenGL4.All.TriangleFan; - var _Quads = OpenTK.Graphics.OpenGL4.All.Quads; - var _QuadsExt = OpenTK.Graphics.OpenGL4.All.QuadsExt; - var _MapInvalidateBufferBit = OpenTK.Graphics.OpenGL4.All.MapInvalidateBufferBit; - var _MapInvalidateBufferBitExt = OpenTK.Graphics.OpenGL4.All.MapInvalidateBufferBitExt; - var _QuadStrip = OpenTK.Graphics.OpenGL4.All.QuadStrip; - var _Polygon = OpenTK.Graphics.OpenGL4.All.Polygon; - var _LinesAdjacency = OpenTK.Graphics.OpenGL4.All.LinesAdjacency; - var _LinesAdjacencyArb = OpenTK.Graphics.OpenGL4.All.LinesAdjacencyArb; - var _LinesAdjacencyExt = OpenTK.Graphics.OpenGL4.All.LinesAdjacencyExt; - var _LineStripAdjacency = OpenTK.Graphics.OpenGL4.All.LineStripAdjacency; - var _LineStripAdjacencyArb = OpenTK.Graphics.OpenGL4.All.LineStripAdjacencyArb; - var _LineStripAdjacencyExt = OpenTK.Graphics.OpenGL4.All.LineStripAdjacencyExt; - var _TrianglesAdjacency = OpenTK.Graphics.OpenGL4.All.TrianglesAdjacency; - var _TrianglesAdjacencyArb = OpenTK.Graphics.OpenGL4.All.TrianglesAdjacencyArb; - var _TrianglesAdjacencyExt = OpenTK.Graphics.OpenGL4.All.TrianglesAdjacencyExt; - var _TriangleStripAdjacency = OpenTK.Graphics.OpenGL4.All.TriangleStripAdjacency; - var _TriangleStripAdjacencyArb = OpenTK.Graphics.OpenGL4.All.TriangleStripAdjacencyArb; - var _TriangleStripAdjacencyExt = OpenTK.Graphics.OpenGL4.All.TriangleStripAdjacencyExt; - var _Patches = OpenTK.Graphics.OpenGL4.All.Patches; - var _PatchesExt = OpenTK.Graphics.OpenGL4.All.PatchesExt; - var _MapFlushExplicitBit = OpenTK.Graphics.OpenGL4.All.MapFlushExplicitBit; - var _MapFlushExplicitBitExt = OpenTK.Graphics.OpenGL4.All.MapFlushExplicitBitExt; - var _MapUnsynchronizedBit = OpenTK.Graphics.OpenGL4.All.MapUnsynchronizedBit; - var _MapUnsynchronizedBitExt = OpenTK.Graphics.OpenGL4.All.MapUnsynchronizedBitExt; - var _MapPersistentBit = OpenTK.Graphics.OpenGL4.All.MapPersistentBit; - var _MapCoherentBit = OpenTK.Graphics.OpenGL4.All.MapCoherentBit; - var _DynamicStorageBit = OpenTK.Graphics.OpenGL4.All.DynamicStorageBit; - var _Add = OpenTK.Graphics.OpenGL4.All.Add; - var _ClientStorageBit = OpenTK.Graphics.OpenGL4.All.ClientStorageBit; - var _Never = OpenTK.Graphics.OpenGL4.All.Never; - var _Less = OpenTK.Graphics.OpenGL4.All.Less; - var _Equal = OpenTK.Graphics.OpenGL4.All.Equal; - var _Lequal = OpenTK.Graphics.OpenGL4.All.Lequal; - var _Greater = OpenTK.Graphics.OpenGL4.All.Greater; - var _Notequal = OpenTK.Graphics.OpenGL4.All.Notequal; - var _Gequal = OpenTK.Graphics.OpenGL4.All.Gequal; - var _Always = OpenTK.Graphics.OpenGL4.All.Always; - var _SrcColor = OpenTK.Graphics.OpenGL4.All.SrcColor; - var _OneMinusSrcColor = OpenTK.Graphics.OpenGL4.All.OneMinusSrcColor; - var _SrcAlpha = OpenTK.Graphics.OpenGL4.All.SrcAlpha; - var _OneMinusSrcAlpha = OpenTK.Graphics.OpenGL4.All.OneMinusSrcAlpha; - var _DstAlpha = OpenTK.Graphics.OpenGL4.All.DstAlpha; - var _OneMinusDstAlpha = OpenTK.Graphics.OpenGL4.All.OneMinusDstAlpha; - var _DstColor = OpenTK.Graphics.OpenGL4.All.DstColor; - var _OneMinusDstColor = OpenTK.Graphics.OpenGL4.All.OneMinusDstColor; - var _SrcAlphaSaturate = OpenTK.Graphics.OpenGL4.All.SrcAlphaSaturate; - var _FrontLeft = OpenTK.Graphics.OpenGL4.All.FrontLeft; - var _FrontRight = OpenTK.Graphics.OpenGL4.All.FrontRight; - var _BackLeft = OpenTK.Graphics.OpenGL4.All.BackLeft; - var _BackRight = OpenTK.Graphics.OpenGL4.All.BackRight; - var _Front = OpenTK.Graphics.OpenGL4.All.Front; - var _Back = OpenTK.Graphics.OpenGL4.All.Back; - var _Left = OpenTK.Graphics.OpenGL4.All.Left; - var _Right = OpenTK.Graphics.OpenGL4.All.Right; - var _FrontAndBack = OpenTK.Graphics.OpenGL4.All.FrontAndBack; - var _Aux0 = OpenTK.Graphics.OpenGL4.All.Aux0; - var _Aux1 = OpenTK.Graphics.OpenGL4.All.Aux1; - var _Aux2 = OpenTK.Graphics.OpenGL4.All.Aux2; - var _Aux3 = OpenTK.Graphics.OpenGL4.All.Aux3; - var _InvalidEnum = OpenTK.Graphics.OpenGL4.All.InvalidEnum; - var _InvalidValue = OpenTK.Graphics.OpenGL4.All.InvalidValue; - var _InvalidOperation = OpenTK.Graphics.OpenGL4.All.InvalidOperation; - var _StackOverflow = OpenTK.Graphics.OpenGL4.All.StackOverflow; - var _StackOverflowKhr = OpenTK.Graphics.OpenGL4.All.StackOverflowKhr; - var _StackUnderflow = OpenTK.Graphics.OpenGL4.All.StackUnderflow; - var _StackUnderflowKhr = OpenTK.Graphics.OpenGL4.All.StackUnderflowKhr; - var _OutOfMemory = OpenTK.Graphics.OpenGL4.All.OutOfMemory; - var _InvalidFramebufferOperation = OpenTK.Graphics.OpenGL4.All.InvalidFramebufferOperation; - var _InvalidFramebufferOperationExt = OpenTK.Graphics.OpenGL4.All.InvalidFramebufferOperationExt; - var _InvalidFramebufferOperationOes = OpenTK.Graphics.OpenGL4.All.InvalidFramebufferOperationOes; - var _Cw = OpenTK.Graphics.OpenGL4.All.Cw; - var _Ccw = OpenTK.Graphics.OpenGL4.All.Ccw; - var _PointSmooth = OpenTK.Graphics.OpenGL4.All.PointSmooth; - var _PointSize = OpenTK.Graphics.OpenGL4.All.PointSize; - var _PointSizeRange = OpenTK.Graphics.OpenGL4.All.PointSizeRange; - var _SmoothPointSizeRange = OpenTK.Graphics.OpenGL4.All.SmoothPointSizeRange; - var _PointSizeGranularity = OpenTK.Graphics.OpenGL4.All.PointSizeGranularity; - var _SmoothPointSizeGranularity = OpenTK.Graphics.OpenGL4.All.SmoothPointSizeGranularity; - var _LineSmooth = OpenTK.Graphics.OpenGL4.All.LineSmooth; - var _LineWidth = OpenTK.Graphics.OpenGL4.All.LineWidth; - var _LineWidthRange = OpenTK.Graphics.OpenGL4.All.LineWidthRange; - var _SmoothLineWidthRange = OpenTK.Graphics.OpenGL4.All.SmoothLineWidthRange; - var _LineWidthGranularity = OpenTK.Graphics.OpenGL4.All.LineWidthGranularity; - var _SmoothLineWidthGranularity = OpenTK.Graphics.OpenGL4.All.SmoothLineWidthGranularity; - var _LineStipple = OpenTK.Graphics.OpenGL4.All.LineStipple; - var _PolygonMode = OpenTK.Graphics.OpenGL4.All.PolygonMode; - var _PolygonSmooth = OpenTK.Graphics.OpenGL4.All.PolygonSmooth; - var _PolygonStipple = OpenTK.Graphics.OpenGL4.All.PolygonStipple; - var _CullFace = OpenTK.Graphics.OpenGL4.All.CullFace; - var _CullFaceMode = OpenTK.Graphics.OpenGL4.All.CullFaceMode; - var _FrontFace = OpenTK.Graphics.OpenGL4.All.FrontFace; - var _Lighting = OpenTK.Graphics.OpenGL4.All.Lighting; - var _LightModelLocalViewer = OpenTK.Graphics.OpenGL4.All.LightModelLocalViewer; - var _LightModelTwoSide = OpenTK.Graphics.OpenGL4.All.LightModelTwoSide; - var _LightModelAmbient = OpenTK.Graphics.OpenGL4.All.LightModelAmbient; - var _ColorMaterial = OpenTK.Graphics.OpenGL4.All.ColorMaterial; - var _Fog = OpenTK.Graphics.OpenGL4.All.Fog; - var _FogIndex = OpenTK.Graphics.OpenGL4.All.FogIndex; - var _FogDensity = OpenTK.Graphics.OpenGL4.All.FogDensity; - var _FogStart = OpenTK.Graphics.OpenGL4.All.FogStart; - var _FogEnd = OpenTK.Graphics.OpenGL4.All.FogEnd; - var _FogMode = OpenTK.Graphics.OpenGL4.All.FogMode; - var _FogColor = OpenTK.Graphics.OpenGL4.All.FogColor; - var _DepthRange = OpenTK.Graphics.OpenGL4.All.DepthRange; - var _DepthTest = OpenTK.Graphics.OpenGL4.All.DepthTest; - var _DepthWritemask = OpenTK.Graphics.OpenGL4.All.DepthWritemask; - var _DepthClearValue = OpenTK.Graphics.OpenGL4.All.DepthClearValue; - var _DepthFunc = OpenTK.Graphics.OpenGL4.All.DepthFunc; - var _StencilTest = OpenTK.Graphics.OpenGL4.All.StencilTest; - var _StencilClearValue = OpenTK.Graphics.OpenGL4.All.StencilClearValue; - var _StencilFunc = OpenTK.Graphics.OpenGL4.All.StencilFunc; - var _StencilValueMask = OpenTK.Graphics.OpenGL4.All.StencilValueMask; - var _StencilFail = OpenTK.Graphics.OpenGL4.All.StencilFail; - var _StencilPassDepthFail = OpenTK.Graphics.OpenGL4.All.StencilPassDepthFail; - var _StencilPassDepthPass = OpenTK.Graphics.OpenGL4.All.StencilPassDepthPass; - var _StencilRef = OpenTK.Graphics.OpenGL4.All.StencilRef; - var _StencilWritemask = OpenTK.Graphics.OpenGL4.All.StencilWritemask; - var _Normalize = OpenTK.Graphics.OpenGL4.All.Normalize; - var _Viewport = OpenTK.Graphics.OpenGL4.All.Viewport; - var _Modelview0StackDepthExt = OpenTK.Graphics.OpenGL4.All.Modelview0StackDepthExt; - var _Modelview0MatrixExt = OpenTK.Graphics.OpenGL4.All.Modelview0MatrixExt; - var _AlphaTest = OpenTK.Graphics.OpenGL4.All.AlphaTest; - var _AlphaTestQcom = OpenTK.Graphics.OpenGL4.All.AlphaTestQcom; - var _AlphaTestFuncQcom = OpenTK.Graphics.OpenGL4.All.AlphaTestFuncQcom; - var _AlphaTestRefQcom = OpenTK.Graphics.OpenGL4.All.AlphaTestRefQcom; - var _Dither = OpenTK.Graphics.OpenGL4.All.Dither; - var _BlendDst = OpenTK.Graphics.OpenGL4.All.BlendDst; - var _BlendSrc = OpenTK.Graphics.OpenGL4.All.BlendSrc; - var _Blend = OpenTK.Graphics.OpenGL4.All.Blend; - var _LogicOpMode = OpenTK.Graphics.OpenGL4.All.LogicOpMode; - var _IndexLogicOp = OpenTK.Graphics.OpenGL4.All.IndexLogicOp; - var _LogicOp = OpenTK.Graphics.OpenGL4.All.LogicOp; - var _ColorLogicOp = OpenTK.Graphics.OpenGL4.All.ColorLogicOp; - var _DrawBuffer = OpenTK.Graphics.OpenGL4.All.DrawBuffer; - var _DrawBufferExt = OpenTK.Graphics.OpenGL4.All.DrawBufferExt; - var _ReadBuffer = OpenTK.Graphics.OpenGL4.All.ReadBuffer; - var _ReadBufferExt = OpenTK.Graphics.OpenGL4.All.ReadBufferExt; - var _ReadBufferNv = OpenTK.Graphics.OpenGL4.All.ReadBufferNv; - var _ScissorBox = OpenTK.Graphics.OpenGL4.All.ScissorBox; - var _ScissorTest = OpenTK.Graphics.OpenGL4.All.ScissorTest; - var _ColorClearValue = OpenTK.Graphics.OpenGL4.All.ColorClearValue; - var _ColorWritemask = OpenTK.Graphics.OpenGL4.All.ColorWritemask; - var _Doublebuffer = OpenTK.Graphics.OpenGL4.All.Doublebuffer; - var _Stereo = OpenTK.Graphics.OpenGL4.All.Stereo; - var _PerspectiveCorrectionHint = OpenTK.Graphics.OpenGL4.All.PerspectiveCorrectionHint; - var _PointSmoothHint = OpenTK.Graphics.OpenGL4.All.PointSmoothHint; - var _LineSmoothHint = OpenTK.Graphics.OpenGL4.All.LineSmoothHint; - var _PolygonSmoothHint = OpenTK.Graphics.OpenGL4.All.PolygonSmoothHint; - var _FogHint = OpenTK.Graphics.OpenGL4.All.FogHint; - var _TextureGenS = OpenTK.Graphics.OpenGL4.All.TextureGenS; - var _TextureGenT = OpenTK.Graphics.OpenGL4.All.TextureGenT; - var _TextureGenR = OpenTK.Graphics.OpenGL4.All.TextureGenR; - var _TextureGenQ = OpenTK.Graphics.OpenGL4.All.TextureGenQ; - var _PixelMapIToI = OpenTK.Graphics.OpenGL4.All.PixelMapIToI; - var _PixelMapSToS = OpenTK.Graphics.OpenGL4.All.PixelMapSToS; - var _PixelMapIToR = OpenTK.Graphics.OpenGL4.All.PixelMapIToR; - var _PixelMapIToG = OpenTK.Graphics.OpenGL4.All.PixelMapIToG; - var _PixelMapIToB = OpenTK.Graphics.OpenGL4.All.PixelMapIToB; - var _PixelMapIToA = OpenTK.Graphics.OpenGL4.All.PixelMapIToA; - var _PixelMapRToR = OpenTK.Graphics.OpenGL4.All.PixelMapRToR; - var _PixelMapGToG = OpenTK.Graphics.OpenGL4.All.PixelMapGToG; - var _PixelMapBToB = OpenTK.Graphics.OpenGL4.All.PixelMapBToB; - var _PixelMapAToA = OpenTK.Graphics.OpenGL4.All.PixelMapAToA; - var _UnpackSwapBytes = OpenTK.Graphics.OpenGL4.All.UnpackSwapBytes; - var _UnpackLsbFirst = OpenTK.Graphics.OpenGL4.All.UnpackLsbFirst; - var _UnpackRowLength = OpenTK.Graphics.OpenGL4.All.UnpackRowLength; - var _UnpackRowLengthExt = OpenTK.Graphics.OpenGL4.All.UnpackRowLengthExt; - var _UnpackSkipRows = OpenTK.Graphics.OpenGL4.All.UnpackSkipRows; - var _UnpackSkipRowsExt = OpenTK.Graphics.OpenGL4.All.UnpackSkipRowsExt; - var _UnpackSkipPixels = OpenTK.Graphics.OpenGL4.All.UnpackSkipPixels; - var _UnpackSkipPixelsExt = OpenTK.Graphics.OpenGL4.All.UnpackSkipPixelsExt; - var _UnpackAlignment = OpenTK.Graphics.OpenGL4.All.UnpackAlignment; - var _PackSwapBytes = OpenTK.Graphics.OpenGL4.All.PackSwapBytes; - var _PackLsbFirst = OpenTK.Graphics.OpenGL4.All.PackLsbFirst; - var _PackRowLength = OpenTK.Graphics.OpenGL4.All.PackRowLength; - var _PackSkipRows = OpenTK.Graphics.OpenGL4.All.PackSkipRows; - var _PackSkipPixels = OpenTK.Graphics.OpenGL4.All.PackSkipPixels; - var _PackAlignment = OpenTK.Graphics.OpenGL4.All.PackAlignment; - var _MapColor = OpenTK.Graphics.OpenGL4.All.MapColor; - var _MapStencil = OpenTK.Graphics.OpenGL4.All.MapStencil; - var _IndexShift = OpenTK.Graphics.OpenGL4.All.IndexShift; - var _IndexOffset = OpenTK.Graphics.OpenGL4.All.IndexOffset; - var _RedScale = OpenTK.Graphics.OpenGL4.All.RedScale; - var _RedBias = OpenTK.Graphics.OpenGL4.All.RedBias; - var _GreenScale = OpenTK.Graphics.OpenGL4.All.GreenScale; - var _GreenBias = OpenTK.Graphics.OpenGL4.All.GreenBias; - var _BlueScale = OpenTK.Graphics.OpenGL4.All.BlueScale; - var _BlueBias = OpenTK.Graphics.OpenGL4.All.BlueBias; - var _AlphaScale = OpenTK.Graphics.OpenGL4.All.AlphaScale; - var _AlphaBias = OpenTK.Graphics.OpenGL4.All.AlphaBias; - var _DepthScale = OpenTK.Graphics.OpenGL4.All.DepthScale; - var _DepthBias = OpenTK.Graphics.OpenGL4.All.DepthBias; - var _MaxClipDistances = OpenTK.Graphics.OpenGL4.All.MaxClipDistances; - var _MaxTextureSize = OpenTK.Graphics.OpenGL4.All.MaxTextureSize; - var _MaxViewportDims = OpenTK.Graphics.OpenGL4.All.MaxViewportDims; - var _SubpixelBits = OpenTK.Graphics.OpenGL4.All.SubpixelBits; - var _AutoNormal = OpenTK.Graphics.OpenGL4.All.AutoNormal; - var _Map1Color4 = OpenTK.Graphics.OpenGL4.All.Map1Color4; - var _Map1Index = OpenTK.Graphics.OpenGL4.All.Map1Index; - var _Map1Normal = OpenTK.Graphics.OpenGL4.All.Map1Normal; - var _Map1TextureCoord1 = OpenTK.Graphics.OpenGL4.All.Map1TextureCoord1; - var _Map1TextureCoord2 = OpenTK.Graphics.OpenGL4.All.Map1TextureCoord2; - var _Map1TextureCoord3 = OpenTK.Graphics.OpenGL4.All.Map1TextureCoord3; - var _Map1TextureCoord4 = OpenTK.Graphics.OpenGL4.All.Map1TextureCoord4; - var _Map1Vertex3 = OpenTK.Graphics.OpenGL4.All.Map1Vertex3; - var _Map1Vertex4 = OpenTK.Graphics.OpenGL4.All.Map1Vertex4; - var _Map2Color4 = OpenTK.Graphics.OpenGL4.All.Map2Color4; - var _Map2Index = OpenTK.Graphics.OpenGL4.All.Map2Index; - var _Map2Normal = OpenTK.Graphics.OpenGL4.All.Map2Normal; - var _Map2TextureCoord1 = OpenTK.Graphics.OpenGL4.All.Map2TextureCoord1; - var _Map2TextureCoord2 = OpenTK.Graphics.OpenGL4.All.Map2TextureCoord2; - var _Map2TextureCoord3 = OpenTK.Graphics.OpenGL4.All.Map2TextureCoord3; - var _Map2TextureCoord4 = OpenTK.Graphics.OpenGL4.All.Map2TextureCoord4; - var _Map2Vertex3 = OpenTK.Graphics.OpenGL4.All.Map2Vertex3; - var _Map2Vertex4 = OpenTK.Graphics.OpenGL4.All.Map2Vertex4; - var _Texture1D = OpenTK.Graphics.OpenGL4.All.Texture1D; - var _Texture2D = OpenTK.Graphics.OpenGL4.All.Texture2D; - var _TextureWidth = OpenTK.Graphics.OpenGL4.All.TextureWidth; - var _TextureHeight = OpenTK.Graphics.OpenGL4.All.TextureHeight; - var _TextureInternalFormat = OpenTK.Graphics.OpenGL4.All.TextureInternalFormat; - var _TextureBorderColor = OpenTK.Graphics.OpenGL4.All.TextureBorderColor; - var _TextureBorderColorNv = OpenTK.Graphics.OpenGL4.All.TextureBorderColorNv; - var _DontCare = OpenTK.Graphics.OpenGL4.All.DontCare; - var _Fastest = OpenTK.Graphics.OpenGL4.All.Fastest; - var _Nicest = OpenTK.Graphics.OpenGL4.All.Nicest; - var _Ambient = OpenTK.Graphics.OpenGL4.All.Ambient; - var _Diffuse = OpenTK.Graphics.OpenGL4.All.Diffuse; - var _Specular = OpenTK.Graphics.OpenGL4.All.Specular; - var _Byte = OpenTK.Graphics.OpenGL4.All.Byte; - var _UnsignedByte = OpenTK.Graphics.OpenGL4.All.UnsignedByte; - var _Short = OpenTK.Graphics.OpenGL4.All.Short; - var _UnsignedShort = OpenTK.Graphics.OpenGL4.All.UnsignedShort; - var _Int = OpenTK.Graphics.OpenGL4.All.Int; - var _UnsignedInt = OpenTK.Graphics.OpenGL4.All.UnsignedInt; - var _Float = OpenTK.Graphics.OpenGL4.All.Float; - var _Double = OpenTK.Graphics.OpenGL4.All.Double; - var _HalfFloat = OpenTK.Graphics.OpenGL4.All.HalfFloat; - var _Fixed = OpenTK.Graphics.OpenGL4.All.Fixed; - var _UnsignedInt64Arb = OpenTK.Graphics.OpenGL4.All.UnsignedInt64Arb; - var _Clear = OpenTK.Graphics.OpenGL4.All.Clear; - var _And = OpenTK.Graphics.OpenGL4.All.And; - var _AndReverse = OpenTK.Graphics.OpenGL4.All.AndReverse; - var _Copy = OpenTK.Graphics.OpenGL4.All.Copy; - var _AndInverted = OpenTK.Graphics.OpenGL4.All.AndInverted; - var _Noop = OpenTK.Graphics.OpenGL4.All.Noop; - var _Xor = OpenTK.Graphics.OpenGL4.All.Xor; - var _Or = OpenTK.Graphics.OpenGL4.All.Or; - var _Nor = OpenTK.Graphics.OpenGL4.All.Nor; - var _Equiv = OpenTK.Graphics.OpenGL4.All.Equiv; - var _Invert = OpenTK.Graphics.OpenGL4.All.Invert; - var _OrReverse = OpenTK.Graphics.OpenGL4.All.OrReverse; - var _CopyInverted = OpenTK.Graphics.OpenGL4.All.CopyInverted; - var _OrInverted = OpenTK.Graphics.OpenGL4.All.OrInverted; - var _Nand = OpenTK.Graphics.OpenGL4.All.Nand; - var _Set = OpenTK.Graphics.OpenGL4.All.Set; - var _Emission = OpenTK.Graphics.OpenGL4.All.Emission; - var _AmbientAndDiffuse = OpenTK.Graphics.OpenGL4.All.AmbientAndDiffuse; - var _Modelview0Ext = OpenTK.Graphics.OpenGL4.All.Modelview0Ext; - var _Texture = OpenTK.Graphics.OpenGL4.All.Texture; - var _Color = OpenTK.Graphics.OpenGL4.All.Color; - var _ColorExt = OpenTK.Graphics.OpenGL4.All.ColorExt; - var _Depth = OpenTK.Graphics.OpenGL4.All.Depth; - var _DepthExt = OpenTK.Graphics.OpenGL4.All.DepthExt; - var _Stencil = OpenTK.Graphics.OpenGL4.All.Stencil; - var _StencilExt = OpenTK.Graphics.OpenGL4.All.StencilExt; - var _ColorIndex = OpenTK.Graphics.OpenGL4.All.ColorIndex; - var _StencilIndex = OpenTK.Graphics.OpenGL4.All.StencilIndex; - var _DepthComponent = OpenTK.Graphics.OpenGL4.All.DepthComponent; - var _Red = OpenTK.Graphics.OpenGL4.All.Red; - var _RedExt = OpenTK.Graphics.OpenGL4.All.RedExt; - var _Green = OpenTK.Graphics.OpenGL4.All.Green; - var _Blue = OpenTK.Graphics.OpenGL4.All.Blue; - var _Alpha = OpenTK.Graphics.OpenGL4.All.Alpha; - var _Rgb = OpenTK.Graphics.OpenGL4.All.Rgb; - var _Rgba = OpenTK.Graphics.OpenGL4.All.Rgba; - var _Luminance = OpenTK.Graphics.OpenGL4.All.Luminance; - var _LuminanceAlpha = OpenTK.Graphics.OpenGL4.All.LuminanceAlpha; - var _PreferDoublebufferHintPgi = OpenTK.Graphics.OpenGL4.All.PreferDoublebufferHintPgi; - var _ConserveMemoryHintPgi = OpenTK.Graphics.OpenGL4.All.ConserveMemoryHintPgi; - var _ReclaimMemoryHintPgi = OpenTK.Graphics.OpenGL4.All.ReclaimMemoryHintPgi; - var _NativeGraphicsBeginHintPgi = OpenTK.Graphics.OpenGL4.All.NativeGraphicsBeginHintPgi; - var _NativeGraphicsEndHintPgi = OpenTK.Graphics.OpenGL4.All.NativeGraphicsEndHintPgi; - var _AlwaysFastHintPgi = OpenTK.Graphics.OpenGL4.All.AlwaysFastHintPgi; - var _AlwaysSoftHintPgi = OpenTK.Graphics.OpenGL4.All.AlwaysSoftHintPgi; - var _AllowDrawObjHintPgi = OpenTK.Graphics.OpenGL4.All.AllowDrawObjHintPgi; - var _AllowDrawWinHintPgi = OpenTK.Graphics.OpenGL4.All.AllowDrawWinHintPgi; - var _AllowDrawFrgHintPgi = OpenTK.Graphics.OpenGL4.All.AllowDrawFrgHintPgi; - var _AllowDrawMemHintPgi = OpenTK.Graphics.OpenGL4.All.AllowDrawMemHintPgi; - var _StrictDepthfuncHintPgi = OpenTK.Graphics.OpenGL4.All.StrictDepthfuncHintPgi; - var _StrictLightingHintPgi = OpenTK.Graphics.OpenGL4.All.StrictLightingHintPgi; - var _StrictScissorHintPgi = OpenTK.Graphics.OpenGL4.All.StrictScissorHintPgi; - var _FullStippleHintPgi = OpenTK.Graphics.OpenGL4.All.FullStippleHintPgi; - var _ClipNearHintPgi = OpenTK.Graphics.OpenGL4.All.ClipNearHintPgi; - var _ClipFarHintPgi = OpenTK.Graphics.OpenGL4.All.ClipFarHintPgi; - var _WideLineHintPgi = OpenTK.Graphics.OpenGL4.All.WideLineHintPgi; - var _BackNormalsHintPgi = OpenTK.Graphics.OpenGL4.All.BackNormalsHintPgi; - var _VertexDataHintPgi = OpenTK.Graphics.OpenGL4.All.VertexDataHintPgi; - var _VertexConsistentHintPgi = OpenTK.Graphics.OpenGL4.All.VertexConsistentHintPgi; - var _MaterialSideHintPgi = OpenTK.Graphics.OpenGL4.All.MaterialSideHintPgi; - var _MaxVertexHintPgi = OpenTK.Graphics.OpenGL4.All.MaxVertexHintPgi; - var _Point = OpenTK.Graphics.OpenGL4.All.Point; - var _Line = OpenTK.Graphics.OpenGL4.All.Line; - var _Fill = OpenTK.Graphics.OpenGL4.All.Fill; - var _Keep = OpenTK.Graphics.OpenGL4.All.Keep; - var _Replace = OpenTK.Graphics.OpenGL4.All.Replace; - var _Incr = OpenTK.Graphics.OpenGL4.All.Incr; - var _Decr = OpenTK.Graphics.OpenGL4.All.Decr; - var _Vendor = OpenTK.Graphics.OpenGL4.All.Vendor; - var _Renderer = OpenTK.Graphics.OpenGL4.All.Renderer; - var _Version = OpenTK.Graphics.OpenGL4.All.Version; - var _Extensions = OpenTK.Graphics.OpenGL4.All.Extensions; - var _MultisampleBit = OpenTK.Graphics.OpenGL4.All.MultisampleBit; - var _MultisampleBit3Dfx = OpenTK.Graphics.OpenGL4.All.MultisampleBit3Dfx; - var _MultisampleBitArb = OpenTK.Graphics.OpenGL4.All.MultisampleBitArb; - var _MultisampleBitExt = OpenTK.Graphics.OpenGL4.All.MultisampleBitExt; - var _Modulate = OpenTK.Graphics.OpenGL4.All.Modulate; - var _Nearest = OpenTK.Graphics.OpenGL4.All.Nearest; - var _Linear = OpenTK.Graphics.OpenGL4.All.Linear; - var _NearestMipmapNearest = OpenTK.Graphics.OpenGL4.All.NearestMipmapNearest; - var _LinearMipmapNearest = OpenTK.Graphics.OpenGL4.All.LinearMipmapNearest; - var _NearestMipmapLinear = OpenTK.Graphics.OpenGL4.All.NearestMipmapLinear; - var _LinearMipmapLinear = OpenTK.Graphics.OpenGL4.All.LinearMipmapLinear; - var _TextureMagFilter = OpenTK.Graphics.OpenGL4.All.TextureMagFilter; - var _TextureMinFilter = OpenTK.Graphics.OpenGL4.All.TextureMinFilter; - var _TextureWrapS = OpenTK.Graphics.OpenGL4.All.TextureWrapS; - var _TextureWrapT = OpenTK.Graphics.OpenGL4.All.TextureWrapT; - var _Repeat = OpenTK.Graphics.OpenGL4.All.Repeat; - var _PolygonOffsetUnits = OpenTK.Graphics.OpenGL4.All.PolygonOffsetUnits; - var _PolygonOffsetPoint = OpenTK.Graphics.OpenGL4.All.PolygonOffsetPoint; - var _PolygonOffsetLine = OpenTK.Graphics.OpenGL4.All.PolygonOffsetLine; - var _R3G3B2 = OpenTK.Graphics.OpenGL4.All.R3G3B2; - var _ClipDistance0 = OpenTK.Graphics.OpenGL4.All.ClipDistance0; - var _ClipPlane0 = OpenTK.Graphics.OpenGL4.All.ClipPlane0; - var _ClipDistance1 = OpenTK.Graphics.OpenGL4.All.ClipDistance1; - var _ClipPlane1 = OpenTK.Graphics.OpenGL4.All.ClipPlane1; - var _ClipDistance2 = OpenTK.Graphics.OpenGL4.All.ClipDistance2; - var _ClipPlane2 = OpenTK.Graphics.OpenGL4.All.ClipPlane2; - var _ClipDistance3 = OpenTK.Graphics.OpenGL4.All.ClipDistance3; - var _ClipPlane3 = OpenTK.Graphics.OpenGL4.All.ClipPlane3; - var _ClipDistance4 = OpenTK.Graphics.OpenGL4.All.ClipDistance4; - var _ClipPlane4 = OpenTK.Graphics.OpenGL4.All.ClipPlane4; - var _ClipDistance5 = OpenTK.Graphics.OpenGL4.All.ClipDistance5; - var _ClipPlane5 = OpenTK.Graphics.OpenGL4.All.ClipPlane5; - var _ClipDistance6 = OpenTK.Graphics.OpenGL4.All.ClipDistance6; - var _ClipDistance7 = OpenTK.Graphics.OpenGL4.All.ClipDistance7; - var _Light0 = OpenTK.Graphics.OpenGL4.All.Light0; - var _Light1 = OpenTK.Graphics.OpenGL4.All.Light1; - var _Light2 = OpenTK.Graphics.OpenGL4.All.Light2; - var _Light3 = OpenTK.Graphics.OpenGL4.All.Light3; - var _Light4 = OpenTK.Graphics.OpenGL4.All.Light4; - var _Light5 = OpenTK.Graphics.OpenGL4.All.Light5; - var _Light6 = OpenTK.Graphics.OpenGL4.All.Light6; - var _Light7 = OpenTK.Graphics.OpenGL4.All.Light7; - var _AbgrExt = OpenTK.Graphics.OpenGL4.All.AbgrExt; - var _ConstantColor = OpenTK.Graphics.OpenGL4.All.ConstantColor; - var _ConstantColorExt = OpenTK.Graphics.OpenGL4.All.ConstantColorExt; - var _OneMinusConstantColor = OpenTK.Graphics.OpenGL4.All.OneMinusConstantColor; - var _OneMinusConstantColorExt = OpenTK.Graphics.OpenGL4.All.OneMinusConstantColorExt; - var _ConstantAlpha = OpenTK.Graphics.OpenGL4.All.ConstantAlpha; - var _ConstantAlphaExt = OpenTK.Graphics.OpenGL4.All.ConstantAlphaExt; - var _OneMinusConstantAlpha = OpenTK.Graphics.OpenGL4.All.OneMinusConstantAlpha; - var _OneMinusConstantAlphaExt = OpenTK.Graphics.OpenGL4.All.OneMinusConstantAlphaExt; - var _BlendColor = OpenTK.Graphics.OpenGL4.All.BlendColor; - var _BlendColorExt = OpenTK.Graphics.OpenGL4.All.BlendColorExt; - var _FuncAdd = OpenTK.Graphics.OpenGL4.All.FuncAdd; - var _FuncAddExt = OpenTK.Graphics.OpenGL4.All.FuncAddExt; - var _Min = OpenTK.Graphics.OpenGL4.All.Min; - var _MinExt = OpenTK.Graphics.OpenGL4.All.MinExt; - var _Max = OpenTK.Graphics.OpenGL4.All.Max; - var _MaxExt = OpenTK.Graphics.OpenGL4.All.MaxExt; - var _BlendEquation = OpenTK.Graphics.OpenGL4.All.BlendEquation; - var _BlendEquationExt = OpenTK.Graphics.OpenGL4.All.BlendEquationExt; - var _BlendEquationRgb = OpenTK.Graphics.OpenGL4.All.BlendEquationRgb; - var _FuncSubtract = OpenTK.Graphics.OpenGL4.All.FuncSubtract; - var _FuncSubtractExt = OpenTK.Graphics.OpenGL4.All.FuncSubtractExt; - var _FuncReverseSubtract = OpenTK.Graphics.OpenGL4.All.FuncReverseSubtract; - var _FuncReverseSubtractExt = OpenTK.Graphics.OpenGL4.All.FuncReverseSubtractExt; - var _CmykExt = OpenTK.Graphics.OpenGL4.All.CmykExt; - var _CmykaExt = OpenTK.Graphics.OpenGL4.All.CmykaExt; - var _PackCmykHintExt = OpenTK.Graphics.OpenGL4.All.PackCmykHintExt; - var _UnpackCmykHintExt = OpenTK.Graphics.OpenGL4.All.UnpackCmykHintExt; - var _Convolution1D = OpenTK.Graphics.OpenGL4.All.Convolution1D; - var _Convolution1DExt = OpenTK.Graphics.OpenGL4.All.Convolution1DExt; - var _Convolution2D = OpenTK.Graphics.OpenGL4.All.Convolution2D; - var _Convolution2DExt = OpenTK.Graphics.OpenGL4.All.Convolution2DExt; - var _Separable2D = OpenTK.Graphics.OpenGL4.All.Separable2D; - var _Separable2DExt = OpenTK.Graphics.OpenGL4.All.Separable2DExt; - var _ConvolutionBorderMode = OpenTK.Graphics.OpenGL4.All.ConvolutionBorderMode; - var _ConvolutionBorderModeExt = OpenTK.Graphics.OpenGL4.All.ConvolutionBorderModeExt; - var _ConvolutionFilterScale = OpenTK.Graphics.OpenGL4.All.ConvolutionFilterScale; - var _ConvolutionFilterScaleExt = OpenTK.Graphics.OpenGL4.All.ConvolutionFilterScaleExt; - var _ConvolutionFilterBias = OpenTK.Graphics.OpenGL4.All.ConvolutionFilterBias; - var _ConvolutionFilterBiasExt = OpenTK.Graphics.OpenGL4.All.ConvolutionFilterBiasExt; - var _Reduce = OpenTK.Graphics.OpenGL4.All.Reduce; - var _ReduceExt = OpenTK.Graphics.OpenGL4.All.ReduceExt; - var _ConvolutionFormat = OpenTK.Graphics.OpenGL4.All.ConvolutionFormat; - var _ConvolutionFormatExt = OpenTK.Graphics.OpenGL4.All.ConvolutionFormatExt; - var _ConvolutionWidth = OpenTK.Graphics.OpenGL4.All.ConvolutionWidth; - var _ConvolutionWidthExt = OpenTK.Graphics.OpenGL4.All.ConvolutionWidthExt; - var _ConvolutionHeight = OpenTK.Graphics.OpenGL4.All.ConvolutionHeight; - var _ConvolutionHeightExt = OpenTK.Graphics.OpenGL4.All.ConvolutionHeightExt; - var _MaxConvolutionWidth = OpenTK.Graphics.OpenGL4.All.MaxConvolutionWidth; - var _MaxConvolutionWidthExt = OpenTK.Graphics.OpenGL4.All.MaxConvolutionWidthExt; - var _MaxConvolutionHeight = OpenTK.Graphics.OpenGL4.All.MaxConvolutionHeight; - var _MaxConvolutionHeightExt = OpenTK.Graphics.OpenGL4.All.MaxConvolutionHeightExt; - var _PostConvolutionRedScale = OpenTK.Graphics.OpenGL4.All.PostConvolutionRedScale; - var _PostConvolutionRedScaleExt = OpenTK.Graphics.OpenGL4.All.PostConvolutionRedScaleExt; - var _PostConvolutionGreenScale = OpenTK.Graphics.OpenGL4.All.PostConvolutionGreenScale; - var _PostConvolutionGreenScaleExt = OpenTK.Graphics.OpenGL4.All.PostConvolutionGreenScaleExt; - var _PostConvolutionBlueScale = OpenTK.Graphics.OpenGL4.All.PostConvolutionBlueScale; - var _PostConvolutionBlueScaleExt = OpenTK.Graphics.OpenGL4.All.PostConvolutionBlueScaleExt; - var _PostConvolutionAlphaScale = OpenTK.Graphics.OpenGL4.All.PostConvolutionAlphaScale; - var _PostConvolutionAlphaScaleExt = OpenTK.Graphics.OpenGL4.All.PostConvolutionAlphaScaleExt; - var _PostConvolutionRedBias = OpenTK.Graphics.OpenGL4.All.PostConvolutionRedBias; - var _PostConvolutionRedBiasExt = OpenTK.Graphics.OpenGL4.All.PostConvolutionRedBiasExt; - var _PostConvolutionGreenBias = OpenTK.Graphics.OpenGL4.All.PostConvolutionGreenBias; - var _PostConvolutionGreenBiasExt = OpenTK.Graphics.OpenGL4.All.PostConvolutionGreenBiasExt; - var _PostConvolutionBlueBias = OpenTK.Graphics.OpenGL4.All.PostConvolutionBlueBias; - var _PostConvolutionBlueBiasExt = OpenTK.Graphics.OpenGL4.All.PostConvolutionBlueBiasExt; - var _PostConvolutionAlphaBias = OpenTK.Graphics.OpenGL4.All.PostConvolutionAlphaBias; - var _PostConvolutionAlphaBiasExt = OpenTK.Graphics.OpenGL4.All.PostConvolutionAlphaBiasExt; - var _Histogram = OpenTK.Graphics.OpenGL4.All.Histogram; - var _HistogramExt = OpenTK.Graphics.OpenGL4.All.HistogramExt; - var _ProxyHistogram = OpenTK.Graphics.OpenGL4.All.ProxyHistogram; - var _ProxyHistogramExt = OpenTK.Graphics.OpenGL4.All.ProxyHistogramExt; - var _HistogramWidth = OpenTK.Graphics.OpenGL4.All.HistogramWidth; - var _HistogramWidthExt = OpenTK.Graphics.OpenGL4.All.HistogramWidthExt; - var _HistogramFormat = OpenTK.Graphics.OpenGL4.All.HistogramFormat; - var _HistogramFormatExt = OpenTK.Graphics.OpenGL4.All.HistogramFormatExt; - var _HistogramRedSize = OpenTK.Graphics.OpenGL4.All.HistogramRedSize; - var _HistogramRedSizeExt = OpenTK.Graphics.OpenGL4.All.HistogramRedSizeExt; - var _HistogramGreenSize = OpenTK.Graphics.OpenGL4.All.HistogramGreenSize; - var _HistogramGreenSizeExt = OpenTK.Graphics.OpenGL4.All.HistogramGreenSizeExt; - var _HistogramBlueSize = OpenTK.Graphics.OpenGL4.All.HistogramBlueSize; - var _HistogramBlueSizeExt = OpenTK.Graphics.OpenGL4.All.HistogramBlueSizeExt; - var _HistogramAlphaSize = OpenTK.Graphics.OpenGL4.All.HistogramAlphaSize; - var _HistogramAlphaSizeExt = OpenTK.Graphics.OpenGL4.All.HistogramAlphaSizeExt; - var _HistogramLuminanceSize = OpenTK.Graphics.OpenGL4.All.HistogramLuminanceSize; - var _HistogramLuminanceSizeExt = OpenTK.Graphics.OpenGL4.All.HistogramLuminanceSizeExt; - var _HistogramSink = OpenTK.Graphics.OpenGL4.All.HistogramSink; - var _HistogramSinkExt = OpenTK.Graphics.OpenGL4.All.HistogramSinkExt; - var _Minmax = OpenTK.Graphics.OpenGL4.All.Minmax; - var _MinmaxExt = OpenTK.Graphics.OpenGL4.All.MinmaxExt; - var _MinmaxFormat = OpenTK.Graphics.OpenGL4.All.MinmaxFormat; - var _MinmaxFormatExt = OpenTK.Graphics.OpenGL4.All.MinmaxFormatExt; - var _MinmaxSink = OpenTK.Graphics.OpenGL4.All.MinmaxSink; - var _MinmaxSinkExt = OpenTK.Graphics.OpenGL4.All.MinmaxSinkExt; - var _TableTooLarge = OpenTK.Graphics.OpenGL4.All.TableTooLarge; - var _TableTooLargeExt = OpenTK.Graphics.OpenGL4.All.TableTooLargeExt; - var _UnsignedByte332 = OpenTK.Graphics.OpenGL4.All.UnsignedByte332; - var _UnsignedByte332Ext = OpenTK.Graphics.OpenGL4.All.UnsignedByte332Ext; - var _UnsignedShort4444 = OpenTK.Graphics.OpenGL4.All.UnsignedShort4444; - var _UnsignedShort4444Ext = OpenTK.Graphics.OpenGL4.All.UnsignedShort4444Ext; - var _UnsignedShort5551 = OpenTK.Graphics.OpenGL4.All.UnsignedShort5551; - var _UnsignedShort5551Ext = OpenTK.Graphics.OpenGL4.All.UnsignedShort5551Ext; - var _UnsignedInt8888 = OpenTK.Graphics.OpenGL4.All.UnsignedInt8888; - var _UnsignedInt8888Ext = OpenTK.Graphics.OpenGL4.All.UnsignedInt8888Ext; - var _UnsignedInt1010102 = OpenTK.Graphics.OpenGL4.All.UnsignedInt1010102; - var _UnsignedInt1010102Ext = OpenTK.Graphics.OpenGL4.All.UnsignedInt1010102Ext; - var _PolygonOffsetFill = OpenTK.Graphics.OpenGL4.All.PolygonOffsetFill; - var _PolygonOffsetFactor = OpenTK.Graphics.OpenGL4.All.PolygonOffsetFactor; - var _PolygonOffsetBiasExt = OpenTK.Graphics.OpenGL4.All.PolygonOffsetBiasExt; - var _RescaleNormal = OpenTK.Graphics.OpenGL4.All.RescaleNormal; - var _RescaleNormalExt = OpenTK.Graphics.OpenGL4.All.RescaleNormalExt; - var _Rgb2Ext = OpenTK.Graphics.OpenGL4.All.Rgb2Ext; - var _Rgb4 = OpenTK.Graphics.OpenGL4.All.Rgb4; - var _Rgb5 = OpenTK.Graphics.OpenGL4.All.Rgb5; - var _Rgb8 = OpenTK.Graphics.OpenGL4.All.Rgb8; - var _Rgb10 = OpenTK.Graphics.OpenGL4.All.Rgb10; - var _Rgb12 = OpenTK.Graphics.OpenGL4.All.Rgb12; - var _Rgb16 = OpenTK.Graphics.OpenGL4.All.Rgb16; - var _Rgba2 = OpenTK.Graphics.OpenGL4.All.Rgba2; - var _Rgba4 = OpenTK.Graphics.OpenGL4.All.Rgba4; - var _Rgb5A1 = OpenTK.Graphics.OpenGL4.All.Rgb5A1; - var _Rgba8 = OpenTK.Graphics.OpenGL4.All.Rgba8; - var _Rgb10A2 = OpenTK.Graphics.OpenGL4.All.Rgb10A2; - var _Rgba12 = OpenTK.Graphics.OpenGL4.All.Rgba12; - var _Rgba16 = OpenTK.Graphics.OpenGL4.All.Rgba16; - var _TextureRedSize = OpenTK.Graphics.OpenGL4.All.TextureRedSize; - var _TextureGreenSize = OpenTK.Graphics.OpenGL4.All.TextureGreenSize; - var _TextureBlueSize = OpenTK.Graphics.OpenGL4.All.TextureBlueSize; - var _TextureAlphaSize = OpenTK.Graphics.OpenGL4.All.TextureAlphaSize; - var _ReplaceExt = OpenTK.Graphics.OpenGL4.All.ReplaceExt; - var _ProxyTexture1D = OpenTK.Graphics.OpenGL4.All.ProxyTexture1D; - var _ProxyTexture1DExt = OpenTK.Graphics.OpenGL4.All.ProxyTexture1DExt; - var _ProxyTexture2D = OpenTK.Graphics.OpenGL4.All.ProxyTexture2D; - var _ProxyTexture2DExt = OpenTK.Graphics.OpenGL4.All.ProxyTexture2DExt; - var _TextureTooLargeExt = OpenTK.Graphics.OpenGL4.All.TextureTooLargeExt; - var _TexturePriority = OpenTK.Graphics.OpenGL4.All.TexturePriority; - var _TexturePriorityExt = OpenTK.Graphics.OpenGL4.All.TexturePriorityExt; - var _TextureBinding1D = OpenTK.Graphics.OpenGL4.All.TextureBinding1D; - var _TextureBinding2D = OpenTK.Graphics.OpenGL4.All.TextureBinding2D; - var _Texture3DBindingExt = OpenTK.Graphics.OpenGL4.All.Texture3DBindingExt; - var _TextureBinding3D = OpenTK.Graphics.OpenGL4.All.TextureBinding3D; - var _PackSkipImages = OpenTK.Graphics.OpenGL4.All.PackSkipImages; - var _PackSkipImagesExt = OpenTK.Graphics.OpenGL4.All.PackSkipImagesExt; - var _PackImageHeight = OpenTK.Graphics.OpenGL4.All.PackImageHeight; - var _PackImageHeightExt = OpenTK.Graphics.OpenGL4.All.PackImageHeightExt; - var _UnpackSkipImages = OpenTK.Graphics.OpenGL4.All.UnpackSkipImages; - var _UnpackSkipImagesExt = OpenTK.Graphics.OpenGL4.All.UnpackSkipImagesExt; - var _UnpackImageHeight = OpenTK.Graphics.OpenGL4.All.UnpackImageHeight; - var _UnpackImageHeightExt = OpenTK.Graphics.OpenGL4.All.UnpackImageHeightExt; - var _Texture3D = OpenTK.Graphics.OpenGL4.All.Texture3D; - var _Texture3DExt = OpenTK.Graphics.OpenGL4.All.Texture3DExt; - var _Texture3DOes = OpenTK.Graphics.OpenGL4.All.Texture3DOes; - var _ProxyTexture3D = OpenTK.Graphics.OpenGL4.All.ProxyTexture3D; - var _ProxyTexture3DExt = OpenTK.Graphics.OpenGL4.All.ProxyTexture3DExt; - var _TextureDepth = OpenTK.Graphics.OpenGL4.All.TextureDepth; - var _TextureDepthExt = OpenTK.Graphics.OpenGL4.All.TextureDepthExt; - var _TextureWrapR = OpenTK.Graphics.OpenGL4.All.TextureWrapR; - var _TextureWrapRExt = OpenTK.Graphics.OpenGL4.All.TextureWrapRExt; - var _TextureWrapROes = OpenTK.Graphics.OpenGL4.All.TextureWrapROes; - var _Max3DTextureSize = OpenTK.Graphics.OpenGL4.All.Max3DTextureSize; - var _Max3DTextureSizeExt = OpenTK.Graphics.OpenGL4.All.Max3DTextureSizeExt; - var _VertexArray = OpenTK.Graphics.OpenGL4.All.VertexArray; - var _VertexArrayKhr = OpenTK.Graphics.OpenGL4.All.VertexArrayKhr; - var _NormalArray = OpenTK.Graphics.OpenGL4.All.NormalArray; - var _ColorArray = OpenTK.Graphics.OpenGL4.All.ColorArray; - var _IndexArray = OpenTK.Graphics.OpenGL4.All.IndexArray; - var _TextureCoordArray = OpenTK.Graphics.OpenGL4.All.TextureCoordArray; - var _EdgeFlagArray = OpenTK.Graphics.OpenGL4.All.EdgeFlagArray; - var _VertexArrayCountExt = OpenTK.Graphics.OpenGL4.All.VertexArrayCountExt; - var _NormalArrayCountExt = OpenTK.Graphics.OpenGL4.All.NormalArrayCountExt; - var _ColorArrayCountExt = OpenTK.Graphics.OpenGL4.All.ColorArrayCountExt; - var _IndexArrayCountExt = OpenTK.Graphics.OpenGL4.All.IndexArrayCountExt; - var _TextureCoordArrayCountExt = OpenTK.Graphics.OpenGL4.All.TextureCoordArrayCountExt; - var _EdgeFlagArrayCountExt = OpenTK.Graphics.OpenGL4.All.EdgeFlagArrayCountExt; - var _VertexArrayPointerExt = OpenTK.Graphics.OpenGL4.All.VertexArrayPointerExt; - var _NormalArrayPointerExt = OpenTK.Graphics.OpenGL4.All.NormalArrayPointerExt; - var _ColorArrayPointerExt = OpenTK.Graphics.OpenGL4.All.ColorArrayPointerExt; - var _IndexArrayPointerExt = OpenTK.Graphics.OpenGL4.All.IndexArrayPointerExt; - var _TextureCoordArrayPointerExt = OpenTK.Graphics.OpenGL4.All.TextureCoordArrayPointerExt; - var _EdgeFlagArrayPointerExt = OpenTK.Graphics.OpenGL4.All.EdgeFlagArrayPointerExt; - var _InterlaceSgix = OpenTK.Graphics.OpenGL4.All.InterlaceSgix; - var _DetailTexture2DSgis = OpenTK.Graphics.OpenGL4.All.DetailTexture2DSgis; - var _DetailTexture2DBindingSgis = OpenTK.Graphics.OpenGL4.All.DetailTexture2DBindingSgis; - var _LinearDetailSgis = OpenTK.Graphics.OpenGL4.All.LinearDetailSgis; - var _LinearDetailAlphaSgis = OpenTK.Graphics.OpenGL4.All.LinearDetailAlphaSgis; - var _LinearDetailColorSgis = OpenTK.Graphics.OpenGL4.All.LinearDetailColorSgis; - var _DetailTextureLevelSgis = OpenTK.Graphics.OpenGL4.All.DetailTextureLevelSgis; - var _DetailTextureModeSgis = OpenTK.Graphics.OpenGL4.All.DetailTextureModeSgis; - var _DetailTextureFuncPointsSgis = OpenTK.Graphics.OpenGL4.All.DetailTextureFuncPointsSgis; - var _Multisample = OpenTK.Graphics.OpenGL4.All.Multisample; - var _MultisampleSgis = OpenTK.Graphics.OpenGL4.All.MultisampleSgis; - var _SampleAlphaToCoverage = OpenTK.Graphics.OpenGL4.All.SampleAlphaToCoverage; - var _SampleAlphaToMaskSgis = OpenTK.Graphics.OpenGL4.All.SampleAlphaToMaskSgis; - var _SampleAlphaToOne = OpenTK.Graphics.OpenGL4.All.SampleAlphaToOne; - var _SampleAlphaToOneSgis = OpenTK.Graphics.OpenGL4.All.SampleAlphaToOneSgis; - var _SampleCoverage = OpenTK.Graphics.OpenGL4.All.SampleCoverage; - var _SampleMaskSgis = OpenTK.Graphics.OpenGL4.All.SampleMaskSgis; - var _Gl1PassExt = OpenTK.Graphics.OpenGL4.All.Gl1PassExt; - var _Gl1PassSgis = OpenTK.Graphics.OpenGL4.All.Gl1PassSgis; - var _Gl2Pass0Ext = OpenTK.Graphics.OpenGL4.All.Gl2Pass0Ext; - var _Gl2Pass0Sgis = OpenTK.Graphics.OpenGL4.All.Gl2Pass0Sgis; - var _Gl2Pass1Ext = OpenTK.Graphics.OpenGL4.All.Gl2Pass1Ext; - var _Gl2Pass1Sgis = OpenTK.Graphics.OpenGL4.All.Gl2Pass1Sgis; - var _Gl4Pass0Ext = OpenTK.Graphics.OpenGL4.All.Gl4Pass0Ext; - var _Gl4Pass0Sgis = OpenTK.Graphics.OpenGL4.All.Gl4Pass0Sgis; - var _Gl4Pass1Ext = OpenTK.Graphics.OpenGL4.All.Gl4Pass1Ext; - var _Gl4Pass1Sgis = OpenTK.Graphics.OpenGL4.All.Gl4Pass1Sgis; - var _Gl4Pass2Ext = OpenTK.Graphics.OpenGL4.All.Gl4Pass2Ext; - var _Gl4Pass2Sgis = OpenTK.Graphics.OpenGL4.All.Gl4Pass2Sgis; - var _Gl4Pass3Ext = OpenTK.Graphics.OpenGL4.All.Gl4Pass3Ext; - var _Gl4Pass3Sgis = OpenTK.Graphics.OpenGL4.All.Gl4Pass3Sgis; - var _SampleBuffers = OpenTK.Graphics.OpenGL4.All.SampleBuffers; - var _SampleBuffersSgis = OpenTK.Graphics.OpenGL4.All.SampleBuffersSgis; - var _Samples = OpenTK.Graphics.OpenGL4.All.Samples; - var _SamplesSgis = OpenTK.Graphics.OpenGL4.All.SamplesSgis; - var _SampleCoverageValue = OpenTK.Graphics.OpenGL4.All.SampleCoverageValue; - var _SampleMaskValueSgis = OpenTK.Graphics.OpenGL4.All.SampleMaskValueSgis; - var _SampleCoverageInvert = OpenTK.Graphics.OpenGL4.All.SampleCoverageInvert; - var _SampleMaskInvertSgis = OpenTK.Graphics.OpenGL4.All.SampleMaskInvertSgis; - var _SamplePatternSgis = OpenTK.Graphics.OpenGL4.All.SamplePatternSgis; - var _LinearSharpenSgis = OpenTK.Graphics.OpenGL4.All.LinearSharpenSgis; - var _LinearSharpenAlphaSgis = OpenTK.Graphics.OpenGL4.All.LinearSharpenAlphaSgis; - var _LinearSharpenColorSgis = OpenTK.Graphics.OpenGL4.All.LinearSharpenColorSgis; - var _SharpenTextureFuncPointsSgis = OpenTK.Graphics.OpenGL4.All.SharpenTextureFuncPointsSgis; - var _ColorMatrix = OpenTK.Graphics.OpenGL4.All.ColorMatrix; - var _ColorMatrixSgi = OpenTK.Graphics.OpenGL4.All.ColorMatrixSgi; - var _ColorMatrixStackDepth = OpenTK.Graphics.OpenGL4.All.ColorMatrixStackDepth; - var _ColorMatrixStackDepthSgi = OpenTK.Graphics.OpenGL4.All.ColorMatrixStackDepthSgi; - var _MaxColorMatrixStackDepth = OpenTK.Graphics.OpenGL4.All.MaxColorMatrixStackDepth; - var _MaxColorMatrixStackDepthSgi = OpenTK.Graphics.OpenGL4.All.MaxColorMatrixStackDepthSgi; - var _PostColorMatrixRedScale = OpenTK.Graphics.OpenGL4.All.PostColorMatrixRedScale; - var _PostColorMatrixRedScaleSgi = OpenTK.Graphics.OpenGL4.All.PostColorMatrixRedScaleSgi; - var _PostColorMatrixGreenScale = OpenTK.Graphics.OpenGL4.All.PostColorMatrixGreenScale; - var _PostColorMatrixGreenScaleSgi = OpenTK.Graphics.OpenGL4.All.PostColorMatrixGreenScaleSgi; - var _PostColorMatrixBlueScale = OpenTK.Graphics.OpenGL4.All.PostColorMatrixBlueScale; - var _PostColorMatrixBlueScaleSgi = OpenTK.Graphics.OpenGL4.All.PostColorMatrixBlueScaleSgi; - var _PostColorMatrixAlphaScale = OpenTK.Graphics.OpenGL4.All.PostColorMatrixAlphaScale; - var _PostColorMatrixAlphaScaleSgi = OpenTK.Graphics.OpenGL4.All.PostColorMatrixAlphaScaleSgi; - var _PostColorMatrixRedBias = OpenTK.Graphics.OpenGL4.All.PostColorMatrixRedBias; - var _PostColorMatrixRedBiasSgi = OpenTK.Graphics.OpenGL4.All.PostColorMatrixRedBiasSgi; - var _PostColorMatrixGreenBias = OpenTK.Graphics.OpenGL4.All.PostColorMatrixGreenBias; - var _PostColorMatrixGreenBiasSgi = OpenTK.Graphics.OpenGL4.All.PostColorMatrixGreenBiasSgi; - var _PostColorMatrixBlueBias = OpenTK.Graphics.OpenGL4.All.PostColorMatrixBlueBias; - var _PostColorMatrixBlueBiasSgi = OpenTK.Graphics.OpenGL4.All.PostColorMatrixBlueBiasSgi; - var _PostColorMatrixAlphaBias = OpenTK.Graphics.OpenGL4.All.PostColorMatrixAlphaBias; - var _PostColorMatrixAlphaBiasSgi = OpenTK.Graphics.OpenGL4.All.PostColorMatrixAlphaBiasSgi; - var _TextureColorTableSgi = OpenTK.Graphics.OpenGL4.All.TextureColorTableSgi; - var _ProxyTextureColorTableSgi = OpenTK.Graphics.OpenGL4.All.ProxyTextureColorTableSgi; - var _TextureEnvBiasSgix = OpenTK.Graphics.OpenGL4.All.TextureEnvBiasSgix; - var _ShadowAmbientSgix = OpenTK.Graphics.OpenGL4.All.ShadowAmbientSgix; - var _TextureCompareFailValue = OpenTK.Graphics.OpenGL4.All.TextureCompareFailValue; - var _BlendDstRgb = OpenTK.Graphics.OpenGL4.All.BlendDstRgb; - var _BlendSrcRgb = OpenTK.Graphics.OpenGL4.All.BlendSrcRgb; - var _BlendDstAlpha = OpenTK.Graphics.OpenGL4.All.BlendDstAlpha; - var _BlendSrcAlpha = OpenTK.Graphics.OpenGL4.All.BlendSrcAlpha; - var _ColorTable = OpenTK.Graphics.OpenGL4.All.ColorTable; - var _ColorTableSgi = OpenTK.Graphics.OpenGL4.All.ColorTableSgi; - var _PostConvolutionColorTable = OpenTK.Graphics.OpenGL4.All.PostConvolutionColorTable; - var _PostConvolutionColorTableSgi = OpenTK.Graphics.OpenGL4.All.PostConvolutionColorTableSgi; - var _PostColorMatrixColorTable = OpenTK.Graphics.OpenGL4.All.PostColorMatrixColorTable; - var _PostColorMatrixColorTableSgi = OpenTK.Graphics.OpenGL4.All.PostColorMatrixColorTableSgi; - var _ProxyColorTable = OpenTK.Graphics.OpenGL4.All.ProxyColorTable; - var _ProxyColorTableSgi = OpenTK.Graphics.OpenGL4.All.ProxyColorTableSgi; - var _ProxyPostConvolutionColorTable = OpenTK.Graphics.OpenGL4.All.ProxyPostConvolutionColorTable; - var _ProxyPostConvolutionColorTableSgi = OpenTK.Graphics.OpenGL4.All.ProxyPostConvolutionColorTableSgi; - var _ProxyPostColorMatrixColorTable = OpenTK.Graphics.OpenGL4.All.ProxyPostColorMatrixColorTable; - var _ProxyPostColorMatrixColorTableSgi = OpenTK.Graphics.OpenGL4.All.ProxyPostColorMatrixColorTableSgi; - var _ColorTableScale = OpenTK.Graphics.OpenGL4.All.ColorTableScale; - var _ColorTableScaleSgi = OpenTK.Graphics.OpenGL4.All.ColorTableScaleSgi; - var _ColorTableBias = OpenTK.Graphics.OpenGL4.All.ColorTableBias; - var _ColorTableBiasSgi = OpenTK.Graphics.OpenGL4.All.ColorTableBiasSgi; - var _ColorTableFormat = OpenTK.Graphics.OpenGL4.All.ColorTableFormat; - var _ColorTableFormatSgi = OpenTK.Graphics.OpenGL4.All.ColorTableFormatSgi; - var _ColorTableWidth = OpenTK.Graphics.OpenGL4.All.ColorTableWidth; - var _ColorTableWidthSgi = OpenTK.Graphics.OpenGL4.All.ColorTableWidthSgi; - var _ColorTableRedSize = OpenTK.Graphics.OpenGL4.All.ColorTableRedSize; - var _ColorTableRedSizeSgi = OpenTK.Graphics.OpenGL4.All.ColorTableRedSizeSgi; - var _ColorTableGreenSize = OpenTK.Graphics.OpenGL4.All.ColorTableGreenSize; - var _ColorTableGreenSizeSgi = OpenTK.Graphics.OpenGL4.All.ColorTableGreenSizeSgi; - var _ColorTableBlueSize = OpenTK.Graphics.OpenGL4.All.ColorTableBlueSize; - var _ColorTableBlueSizeSgi = OpenTK.Graphics.OpenGL4.All.ColorTableBlueSizeSgi; - var _ColorTableAlphaSize = OpenTK.Graphics.OpenGL4.All.ColorTableAlphaSize; - var _ColorTableAlphaSizeSgi = OpenTK.Graphics.OpenGL4.All.ColorTableAlphaSizeSgi; - var _ColorTableLuminanceSize = OpenTK.Graphics.OpenGL4.All.ColorTableLuminanceSize; - var _ColorTableLuminanceSizeSgi = OpenTK.Graphics.OpenGL4.All.ColorTableLuminanceSizeSgi; - var _ColorTableIntensitySize = OpenTK.Graphics.OpenGL4.All.ColorTableIntensitySize; - var _ColorTableIntensitySizeSgi = OpenTK.Graphics.OpenGL4.All.ColorTableIntensitySizeSgi; - var _Bgr = OpenTK.Graphics.OpenGL4.All.Bgr; - var _Bgra = OpenTK.Graphics.OpenGL4.All.Bgra; - var _MaxElementsVertices = OpenTK.Graphics.OpenGL4.All.MaxElementsVertices; - var _MaxElementsIndices = OpenTK.Graphics.OpenGL4.All.MaxElementsIndices; - var _PhongHintWin = OpenTK.Graphics.OpenGL4.All.PhongHintWin; - var _ParameterBufferArb = OpenTK.Graphics.OpenGL4.All.ParameterBufferArb; - var _ParameterBufferBindingArb = OpenTK.Graphics.OpenGL4.All.ParameterBufferBindingArb; - var _ClipVolumeClippingHintExt = OpenTK.Graphics.OpenGL4.All.ClipVolumeClippingHintExt; - var _DualAlpha4Sgis = OpenTK.Graphics.OpenGL4.All.DualAlpha4Sgis; - var _DualAlpha8Sgis = OpenTK.Graphics.OpenGL4.All.DualAlpha8Sgis; - var _DualAlpha12Sgis = OpenTK.Graphics.OpenGL4.All.DualAlpha12Sgis; - var _DualAlpha16Sgis = OpenTK.Graphics.OpenGL4.All.DualAlpha16Sgis; - var _DualLuminance4Sgis = OpenTK.Graphics.OpenGL4.All.DualLuminance4Sgis; - var _DualLuminance8Sgis = OpenTK.Graphics.OpenGL4.All.DualLuminance8Sgis; - var _DualLuminance12Sgis = OpenTK.Graphics.OpenGL4.All.DualLuminance12Sgis; - var _DualLuminance16Sgis = OpenTK.Graphics.OpenGL4.All.DualLuminance16Sgis; - var _DualIntensity4Sgis = OpenTK.Graphics.OpenGL4.All.DualIntensity4Sgis; - var _DualIntensity8Sgis = OpenTK.Graphics.OpenGL4.All.DualIntensity8Sgis; - var _DualIntensity12Sgis = OpenTK.Graphics.OpenGL4.All.DualIntensity12Sgis; - var _DualIntensity16Sgis = OpenTK.Graphics.OpenGL4.All.DualIntensity16Sgis; - var _DualLuminanceAlpha4Sgis = OpenTK.Graphics.OpenGL4.All.DualLuminanceAlpha4Sgis; - var _DualLuminanceAlpha8Sgis = OpenTK.Graphics.OpenGL4.All.DualLuminanceAlpha8Sgis; - var _QuadAlpha4Sgis = OpenTK.Graphics.OpenGL4.All.QuadAlpha4Sgis; - var _QuadAlpha8Sgis = OpenTK.Graphics.OpenGL4.All.QuadAlpha8Sgis; - var _QuadLuminance4Sgis = OpenTK.Graphics.OpenGL4.All.QuadLuminance4Sgis; - var _QuadLuminance8Sgis = OpenTK.Graphics.OpenGL4.All.QuadLuminance8Sgis; - var _QuadIntensity4Sgis = OpenTK.Graphics.OpenGL4.All.QuadIntensity4Sgis; - var _QuadIntensity8Sgis = OpenTK.Graphics.OpenGL4.All.QuadIntensity8Sgis; - var _DualTextureSelectSgis = OpenTK.Graphics.OpenGL4.All.DualTextureSelectSgis; - var _QuadTextureSelectSgis = OpenTK.Graphics.OpenGL4.All.QuadTextureSelectSgis; - var _PointSizeMin = OpenTK.Graphics.OpenGL4.All.PointSizeMin; - var _PointSizeMinArb = OpenTK.Graphics.OpenGL4.All.PointSizeMinArb; - var _PointSizeMinExt = OpenTK.Graphics.OpenGL4.All.PointSizeMinExt; - var _PointSizeMinSgis = OpenTK.Graphics.OpenGL4.All.PointSizeMinSgis; - var _PointSizeMax = OpenTK.Graphics.OpenGL4.All.PointSizeMax; - var _PointSizeMaxArb = OpenTK.Graphics.OpenGL4.All.PointSizeMaxArb; - var _PointSizeMaxExt = OpenTK.Graphics.OpenGL4.All.PointSizeMaxExt; - var _PointSizeMaxSgis = OpenTK.Graphics.OpenGL4.All.PointSizeMaxSgis; - var _PointFadeThresholdSize = OpenTK.Graphics.OpenGL4.All.PointFadeThresholdSize; - var _PointFadeThresholdSizeArb = OpenTK.Graphics.OpenGL4.All.PointFadeThresholdSizeArb; - var _PointFadeThresholdSizeExt = OpenTK.Graphics.OpenGL4.All.PointFadeThresholdSizeExt; - var _PointFadeThresholdSizeSgis = OpenTK.Graphics.OpenGL4.All.PointFadeThresholdSizeSgis; - var _DistanceAttenuationExt = OpenTK.Graphics.OpenGL4.All.DistanceAttenuationExt; - var _DistanceAttenuationSgis = OpenTK.Graphics.OpenGL4.All.DistanceAttenuationSgis; - var _PointDistanceAttenuation = OpenTK.Graphics.OpenGL4.All.PointDistanceAttenuation; - var _PointDistanceAttenuationArb = OpenTK.Graphics.OpenGL4.All.PointDistanceAttenuationArb; - var _FogFuncSgis = OpenTK.Graphics.OpenGL4.All.FogFuncSgis; - var _FogFuncPointsSgis = OpenTK.Graphics.OpenGL4.All.FogFuncPointsSgis; - var _MaxFogFuncPointsSgis = OpenTK.Graphics.OpenGL4.All.MaxFogFuncPointsSgis; - var _ClampToBorder = OpenTK.Graphics.OpenGL4.All.ClampToBorder; - var _ClampToBorderArb = OpenTK.Graphics.OpenGL4.All.ClampToBorderArb; - var _ClampToBorderNv = OpenTK.Graphics.OpenGL4.All.ClampToBorderNv; - var _ClampToBorderSgis = OpenTK.Graphics.OpenGL4.All.ClampToBorderSgis; - var _TextureMultiBufferHintSgix = OpenTK.Graphics.OpenGL4.All.TextureMultiBufferHintSgix; - var _ClampToEdge = OpenTK.Graphics.OpenGL4.All.ClampToEdge; - var _ClampToEdgeSgis = OpenTK.Graphics.OpenGL4.All.ClampToEdgeSgis; - var _PackSkipVolumesSgis = OpenTK.Graphics.OpenGL4.All.PackSkipVolumesSgis; - var _PackImageDepthSgis = OpenTK.Graphics.OpenGL4.All.PackImageDepthSgis; - var _UnpackSkipVolumesSgis = OpenTK.Graphics.OpenGL4.All.UnpackSkipVolumesSgis; - var _UnpackImageDepthSgis = OpenTK.Graphics.OpenGL4.All.UnpackImageDepthSgis; - var _Texture4DSgis = OpenTK.Graphics.OpenGL4.All.Texture4DSgis; - var _ProxyTexture4DSgis = OpenTK.Graphics.OpenGL4.All.ProxyTexture4DSgis; - var _Texture4DsizeSgis = OpenTK.Graphics.OpenGL4.All.Texture4DsizeSgis; - var _TextureWrapQSgis = OpenTK.Graphics.OpenGL4.All.TextureWrapQSgis; - var _Max4DTextureSizeSgis = OpenTK.Graphics.OpenGL4.All.Max4DTextureSizeSgis; - var _PixelTexGenSgix = OpenTK.Graphics.OpenGL4.All.PixelTexGenSgix; - var _TextureMinLod = OpenTK.Graphics.OpenGL4.All.TextureMinLod; - var _TextureMinLodSgis = OpenTK.Graphics.OpenGL4.All.TextureMinLodSgis; - var _TextureMaxLod = OpenTK.Graphics.OpenGL4.All.TextureMaxLod; - var _TextureMaxLodSgis = OpenTK.Graphics.OpenGL4.All.TextureMaxLodSgis; - var _TextureBaseLevel = OpenTK.Graphics.OpenGL4.All.TextureBaseLevel; - var _TextureBaseLevelSgis = OpenTK.Graphics.OpenGL4.All.TextureBaseLevelSgis; - var _TextureMaxLevel = OpenTK.Graphics.OpenGL4.All.TextureMaxLevel; - var _TextureMaxLevelSgis = OpenTK.Graphics.OpenGL4.All.TextureMaxLevelSgis; - var _PixelTileBestAlignmentSgix = OpenTK.Graphics.OpenGL4.All.PixelTileBestAlignmentSgix; - var _PixelTileCacheIncrementSgix = OpenTK.Graphics.OpenGL4.All.PixelTileCacheIncrementSgix; - var _PixelTileWidthSgix = OpenTK.Graphics.OpenGL4.All.PixelTileWidthSgix; - var _PixelTileHeightSgix = OpenTK.Graphics.OpenGL4.All.PixelTileHeightSgix; - var _PixelTileGridWidthSgix = OpenTK.Graphics.OpenGL4.All.PixelTileGridWidthSgix; - var _PixelTileGridHeightSgix = OpenTK.Graphics.OpenGL4.All.PixelTileGridHeightSgix; - var _PixelTileGridDepthSgix = OpenTK.Graphics.OpenGL4.All.PixelTileGridDepthSgix; - var _PixelTileCacheSizeSgix = OpenTK.Graphics.OpenGL4.All.PixelTileCacheSizeSgix; - var _Filter4Sgis = OpenTK.Graphics.OpenGL4.All.Filter4Sgis; - var _TextureFilter4SizeSgis = OpenTK.Graphics.OpenGL4.All.TextureFilter4SizeSgis; - var _SpriteSgix = OpenTK.Graphics.OpenGL4.All.SpriteSgix; - var _SpriteModeSgix = OpenTK.Graphics.OpenGL4.All.SpriteModeSgix; - var _SpriteAxisSgix = OpenTK.Graphics.OpenGL4.All.SpriteAxisSgix; - var _SpriteTranslationSgix = OpenTK.Graphics.OpenGL4.All.SpriteTranslationSgix; - var _Texture4DBindingSgis = OpenTK.Graphics.OpenGL4.All.Texture4DBindingSgis; - var _ConstantBorder = OpenTK.Graphics.OpenGL4.All.ConstantBorder; - var _ReplicateBorder = OpenTK.Graphics.OpenGL4.All.ReplicateBorder; - var _ConvolutionBorderColor = OpenTK.Graphics.OpenGL4.All.ConvolutionBorderColor; - var _LinearClipmapLinearSgix = OpenTK.Graphics.OpenGL4.All.LinearClipmapLinearSgix; - var _TextureClipmapCenterSgix = OpenTK.Graphics.OpenGL4.All.TextureClipmapCenterSgix; - var _TextureClipmapFrameSgix = OpenTK.Graphics.OpenGL4.All.TextureClipmapFrameSgix; - var _TextureClipmapOffsetSgix = OpenTK.Graphics.OpenGL4.All.TextureClipmapOffsetSgix; - var _TextureClipmapVirtualDepthSgix = OpenTK.Graphics.OpenGL4.All.TextureClipmapVirtualDepthSgix; - var _TextureClipmapLodOffsetSgix = OpenTK.Graphics.OpenGL4.All.TextureClipmapLodOffsetSgix; - var _TextureClipmapDepthSgix = OpenTK.Graphics.OpenGL4.All.TextureClipmapDepthSgix; - var _MaxClipmapDepthSgix = OpenTK.Graphics.OpenGL4.All.MaxClipmapDepthSgix; - var _MaxClipmapVirtualDepthSgix = OpenTK.Graphics.OpenGL4.All.MaxClipmapVirtualDepthSgix; - var _PostTextureFilterBiasSgix = OpenTK.Graphics.OpenGL4.All.PostTextureFilterBiasSgix; - var _PostTextureFilterScaleSgix = OpenTK.Graphics.OpenGL4.All.PostTextureFilterScaleSgix; - var _PostTextureFilterBiasRangeSgix = OpenTK.Graphics.OpenGL4.All.PostTextureFilterBiasRangeSgix; - var _PostTextureFilterScaleRangeSgix = OpenTK.Graphics.OpenGL4.All.PostTextureFilterScaleRangeSgix; - var _ReferencePlaneSgix = OpenTK.Graphics.OpenGL4.All.ReferencePlaneSgix; - var _ReferencePlaneEquationSgix = OpenTK.Graphics.OpenGL4.All.ReferencePlaneEquationSgix; - var _IrInstrument1Sgix = OpenTK.Graphics.OpenGL4.All.IrInstrument1Sgix; - var _InstrumentBufferPointerSgix = OpenTK.Graphics.OpenGL4.All.InstrumentBufferPointerSgix; - var _InstrumentMeasurementsSgix = OpenTK.Graphics.OpenGL4.All.InstrumentMeasurementsSgix; - var _ListPrioritySgix = OpenTK.Graphics.OpenGL4.All.ListPrioritySgix; - var _CalligraphicFragmentSgix = OpenTK.Graphics.OpenGL4.All.CalligraphicFragmentSgix; - var _PixelTexGenQCeilingSgix = OpenTK.Graphics.OpenGL4.All.PixelTexGenQCeilingSgix; - var _PixelTexGenQRoundSgix = OpenTK.Graphics.OpenGL4.All.PixelTexGenQRoundSgix; - var _PixelTexGenQFloorSgix = OpenTK.Graphics.OpenGL4.All.PixelTexGenQFloorSgix; - var _PixelTexGenAlphaReplaceSgix = OpenTK.Graphics.OpenGL4.All.PixelTexGenAlphaReplaceSgix; - var _PixelTexGenAlphaNoReplaceSgix = OpenTK.Graphics.OpenGL4.All.PixelTexGenAlphaNoReplaceSgix; - var _PixelTexGenAlphaLsSgix = OpenTK.Graphics.OpenGL4.All.PixelTexGenAlphaLsSgix; - var _PixelTexGenAlphaMsSgix = OpenTK.Graphics.OpenGL4.All.PixelTexGenAlphaMsSgix; - var _FramezoomSgix = OpenTK.Graphics.OpenGL4.All.FramezoomSgix; - var _FramezoomFactorSgix = OpenTK.Graphics.OpenGL4.All.FramezoomFactorSgix; - var _MaxFramezoomFactorSgix = OpenTK.Graphics.OpenGL4.All.MaxFramezoomFactorSgix; - var _TextureLodBiasSSgix = OpenTK.Graphics.OpenGL4.All.TextureLodBiasSSgix; - var _TextureLodBiasTSgix = OpenTK.Graphics.OpenGL4.All.TextureLodBiasTSgix; - var _TextureLodBiasRSgix = OpenTK.Graphics.OpenGL4.All.TextureLodBiasRSgix; - var _GenerateMipmap = OpenTK.Graphics.OpenGL4.All.GenerateMipmap; - var _GenerateMipmapSgis = OpenTK.Graphics.OpenGL4.All.GenerateMipmapSgis; - var _GenerateMipmapHint = OpenTK.Graphics.OpenGL4.All.GenerateMipmapHint; - var _GenerateMipmapHintSgis = OpenTK.Graphics.OpenGL4.All.GenerateMipmapHintSgis; - var _GeometryDeformationSgix = OpenTK.Graphics.OpenGL4.All.GeometryDeformationSgix; - var _TextureDeformationSgix = OpenTK.Graphics.OpenGL4.All.TextureDeformationSgix; - var _DeformationsMaskSgix = OpenTK.Graphics.OpenGL4.All.DeformationsMaskSgix; - var _FogOffsetSgix = OpenTK.Graphics.OpenGL4.All.FogOffsetSgix; - var _FogOffsetValueSgix = OpenTK.Graphics.OpenGL4.All.FogOffsetValueSgix; - var _TextureCompareSgix = OpenTK.Graphics.OpenGL4.All.TextureCompareSgix; - var _TextureCompareOperatorSgix = OpenTK.Graphics.OpenGL4.All.TextureCompareOperatorSgix; - var _TextureLequalRSgix = OpenTK.Graphics.OpenGL4.All.TextureLequalRSgix; - var _TextureGequalRSgix = OpenTK.Graphics.OpenGL4.All.TextureGequalRSgix; - var _DepthComponent16 = OpenTK.Graphics.OpenGL4.All.DepthComponent16; - var _DepthComponent16Sgix = OpenTK.Graphics.OpenGL4.All.DepthComponent16Sgix; - var _DepthComponent24 = OpenTK.Graphics.OpenGL4.All.DepthComponent24; - var _DepthComponent24Sgix = OpenTK.Graphics.OpenGL4.All.DepthComponent24Sgix; - var _DepthComponent32 = OpenTK.Graphics.OpenGL4.All.DepthComponent32; - var _DepthComponent32Sgix = OpenTK.Graphics.OpenGL4.All.DepthComponent32Sgix; - var _Ycrcb422Sgix = OpenTK.Graphics.OpenGL4.All.Ycrcb422Sgix; - var _Ycrcb444Sgix = OpenTK.Graphics.OpenGL4.All.Ycrcb444Sgix; - var _EyeDistanceToPointSgis = OpenTK.Graphics.OpenGL4.All.EyeDistanceToPointSgis; - var _ObjectDistanceToPointSgis = OpenTK.Graphics.OpenGL4.All.ObjectDistanceToPointSgis; - var _EyeDistanceToLineSgis = OpenTK.Graphics.OpenGL4.All.EyeDistanceToLineSgis; - var _ObjectDistanceToLineSgis = OpenTK.Graphics.OpenGL4.All.ObjectDistanceToLineSgis; - var _EyePointSgis = OpenTK.Graphics.OpenGL4.All.EyePointSgis; - var _ObjectPointSgis = OpenTK.Graphics.OpenGL4.All.ObjectPointSgis; - var _EyeLineSgis = OpenTK.Graphics.OpenGL4.All.EyeLineSgis; - var _ObjectLineSgis = OpenTK.Graphics.OpenGL4.All.ObjectLineSgis; - var _LightModelColorControl = OpenTK.Graphics.OpenGL4.All.LightModelColorControl; - var _LightModelColorControlExt = OpenTK.Graphics.OpenGL4.All.LightModelColorControlExt; - var _SingleColor = OpenTK.Graphics.OpenGL4.All.SingleColor; - var _SingleColorExt = OpenTK.Graphics.OpenGL4.All.SingleColorExt; - var _SeparateSpecularColor = OpenTK.Graphics.OpenGL4.All.SeparateSpecularColor; - var _SeparateSpecularColorExt = OpenTK.Graphics.OpenGL4.All.SeparateSpecularColorExt; - var _SharedTexturePaletteExt = OpenTK.Graphics.OpenGL4.All.SharedTexturePaletteExt; - var _FramebufferAttachmentColorEncoding = OpenTK.Graphics.OpenGL4.All.FramebufferAttachmentColorEncoding; - var _FramebufferAttachmentComponentType = OpenTK.Graphics.OpenGL4.All.FramebufferAttachmentComponentType; - var _FramebufferAttachmentRedSize = OpenTK.Graphics.OpenGL4.All.FramebufferAttachmentRedSize; - var _FramebufferAttachmentGreenSize = OpenTK.Graphics.OpenGL4.All.FramebufferAttachmentGreenSize; - var _FramebufferAttachmentBlueSize = OpenTK.Graphics.OpenGL4.All.FramebufferAttachmentBlueSize; - var _FramebufferAttachmentAlphaSize = OpenTK.Graphics.OpenGL4.All.FramebufferAttachmentAlphaSize; - var _FramebufferAttachmentDepthSize = OpenTK.Graphics.OpenGL4.All.FramebufferAttachmentDepthSize; - var _FramebufferAttachmentStencilSize = OpenTK.Graphics.OpenGL4.All.FramebufferAttachmentStencilSize; - var _FramebufferDefault = OpenTK.Graphics.OpenGL4.All.FramebufferDefault; - var _FramebufferUndefined = OpenTK.Graphics.OpenGL4.All.FramebufferUndefined; - var _DepthStencilAttachment = OpenTK.Graphics.OpenGL4.All.DepthStencilAttachment; - var _MajorVersion = OpenTK.Graphics.OpenGL4.All.MajorVersion; - var _MinorVersion = OpenTK.Graphics.OpenGL4.All.MinorVersion; - var _NumExtensions = OpenTK.Graphics.OpenGL4.All.NumExtensions; - var _ContextFlags = OpenTK.Graphics.OpenGL4.All.ContextFlags; - var _BufferImmutableStorage = OpenTK.Graphics.OpenGL4.All.BufferImmutableStorage; - var _BufferStorageFlags = OpenTK.Graphics.OpenGL4.All.BufferStorageFlags; - var _PrimitiveRestartForPatchesSupported = OpenTK.Graphics.OpenGL4.All.PrimitiveRestartForPatchesSupported; - var _Index = OpenTK.Graphics.OpenGL4.All.Index; - var _CompressedRed = OpenTK.Graphics.OpenGL4.All.CompressedRed; - var _CompressedRg = OpenTK.Graphics.OpenGL4.All.CompressedRg; - var _Rg = OpenTK.Graphics.OpenGL4.All.Rg; - var _RgInteger = OpenTK.Graphics.OpenGL4.All.RgInteger; - var _R8 = OpenTK.Graphics.OpenGL4.All.R8; - var _R16 = OpenTK.Graphics.OpenGL4.All.R16; - var _Rg8 = OpenTK.Graphics.OpenGL4.All.Rg8; - var _Rg16 = OpenTK.Graphics.OpenGL4.All.Rg16; - var _R16f = OpenTK.Graphics.OpenGL4.All.R16f; - var _R32f = OpenTK.Graphics.OpenGL4.All.R32f; - var _Rg16f = OpenTK.Graphics.OpenGL4.All.Rg16f; - var _Rg32f = OpenTK.Graphics.OpenGL4.All.Rg32f; - var _R8i = OpenTK.Graphics.OpenGL4.All.R8i; - var _R8ui = OpenTK.Graphics.OpenGL4.All.R8ui; - var _R16i = OpenTK.Graphics.OpenGL4.All.R16i; - var _R16ui = OpenTK.Graphics.OpenGL4.All.R16ui; - var _R32i = OpenTK.Graphics.OpenGL4.All.R32i; - var _R32ui = OpenTK.Graphics.OpenGL4.All.R32ui; - var _Rg8i = OpenTK.Graphics.OpenGL4.All.Rg8i; - var _Rg8ui = OpenTK.Graphics.OpenGL4.All.Rg8ui; - var _Rg16i = OpenTK.Graphics.OpenGL4.All.Rg16i; - var _Rg16ui = OpenTK.Graphics.OpenGL4.All.Rg16ui; - var _Rg32i = OpenTK.Graphics.OpenGL4.All.Rg32i; - var _Rg32ui = OpenTK.Graphics.OpenGL4.All.Rg32ui; - var _SyncClEventArb = OpenTK.Graphics.OpenGL4.All.SyncClEventArb; - var _SyncClEventCompleteArb = OpenTK.Graphics.OpenGL4.All.SyncClEventCompleteArb; - var _DebugOutputSynchronous = OpenTK.Graphics.OpenGL4.All.DebugOutputSynchronous; - var _DebugOutputSynchronousArb = OpenTK.Graphics.OpenGL4.All.DebugOutputSynchronousArb; - var _DebugOutputSynchronousKhr = OpenTK.Graphics.OpenGL4.All.DebugOutputSynchronousKhr; - var _DebugNextLoggedMessageLength = OpenTK.Graphics.OpenGL4.All.DebugNextLoggedMessageLength; - var _DebugNextLoggedMessageLengthArb = OpenTK.Graphics.OpenGL4.All.DebugNextLoggedMessageLengthArb; - var _DebugNextLoggedMessageLengthKhr = OpenTK.Graphics.OpenGL4.All.DebugNextLoggedMessageLengthKhr; - var _DebugCallbackFunction = OpenTK.Graphics.OpenGL4.All.DebugCallbackFunction; - var _DebugCallbackFunctionArb = OpenTK.Graphics.OpenGL4.All.DebugCallbackFunctionArb; - var _DebugCallbackFunctionKhr = OpenTK.Graphics.OpenGL4.All.DebugCallbackFunctionKhr; - var _DebugCallbackUserParam = OpenTK.Graphics.OpenGL4.All.DebugCallbackUserParam; - var _DebugCallbackUserParamArb = OpenTK.Graphics.OpenGL4.All.DebugCallbackUserParamArb; - var _DebugCallbackUserParamKhr = OpenTK.Graphics.OpenGL4.All.DebugCallbackUserParamKhr; - var _DebugSourceApi = OpenTK.Graphics.OpenGL4.All.DebugSourceApi; - var _DebugSourceApiArb = OpenTK.Graphics.OpenGL4.All.DebugSourceApiArb; - var _DebugSourceApiKhr = OpenTK.Graphics.OpenGL4.All.DebugSourceApiKhr; - var _DebugSourceWindowSystem = OpenTK.Graphics.OpenGL4.All.DebugSourceWindowSystem; - var _DebugSourceWindowSystemArb = OpenTK.Graphics.OpenGL4.All.DebugSourceWindowSystemArb; - var _DebugSourceWindowSystemKhr = OpenTK.Graphics.OpenGL4.All.DebugSourceWindowSystemKhr; - var _DebugSourceShaderCompiler = OpenTK.Graphics.OpenGL4.All.DebugSourceShaderCompiler; - var _DebugSourceShaderCompilerArb = OpenTK.Graphics.OpenGL4.All.DebugSourceShaderCompilerArb; - var _DebugSourceShaderCompilerKhr = OpenTK.Graphics.OpenGL4.All.DebugSourceShaderCompilerKhr; - var _DebugSourceThirdParty = OpenTK.Graphics.OpenGL4.All.DebugSourceThirdParty; - var _DebugSourceThirdPartyArb = OpenTK.Graphics.OpenGL4.All.DebugSourceThirdPartyArb; - var _DebugSourceThirdPartyKhr = OpenTK.Graphics.OpenGL4.All.DebugSourceThirdPartyKhr; - var _DebugSourceApplication = OpenTK.Graphics.OpenGL4.All.DebugSourceApplication; - var _DebugSourceApplicationArb = OpenTK.Graphics.OpenGL4.All.DebugSourceApplicationArb; - var _DebugSourceApplicationKhr = OpenTK.Graphics.OpenGL4.All.DebugSourceApplicationKhr; - var _DebugSourceOther = OpenTK.Graphics.OpenGL4.All.DebugSourceOther; - var _DebugSourceOtherArb = OpenTK.Graphics.OpenGL4.All.DebugSourceOtherArb; - var _DebugSourceOtherKhr = OpenTK.Graphics.OpenGL4.All.DebugSourceOtherKhr; - var _DebugTypeError = OpenTK.Graphics.OpenGL4.All.DebugTypeError; - var _DebugTypeErrorArb = OpenTK.Graphics.OpenGL4.All.DebugTypeErrorArb; - var _DebugTypeErrorKhr = OpenTK.Graphics.OpenGL4.All.DebugTypeErrorKhr; - var _DebugTypeDeprecatedBehavior = OpenTK.Graphics.OpenGL4.All.DebugTypeDeprecatedBehavior; - var _DebugTypeDeprecatedBehaviorArb = OpenTK.Graphics.OpenGL4.All.DebugTypeDeprecatedBehaviorArb; - var _DebugTypeDeprecatedBehaviorKhr = OpenTK.Graphics.OpenGL4.All.DebugTypeDeprecatedBehaviorKhr; - var _DebugTypeUndefinedBehavior = OpenTK.Graphics.OpenGL4.All.DebugTypeUndefinedBehavior; - var _DebugTypeUndefinedBehaviorArb = OpenTK.Graphics.OpenGL4.All.DebugTypeUndefinedBehaviorArb; - var _DebugTypeUndefinedBehaviorKhr = OpenTK.Graphics.OpenGL4.All.DebugTypeUndefinedBehaviorKhr; - var _DebugTypePortability = OpenTK.Graphics.OpenGL4.All.DebugTypePortability; - var _DebugTypePortabilityArb = OpenTK.Graphics.OpenGL4.All.DebugTypePortabilityArb; - var _DebugTypePortabilityKhr = OpenTK.Graphics.OpenGL4.All.DebugTypePortabilityKhr; - var _DebugTypePerformance = OpenTK.Graphics.OpenGL4.All.DebugTypePerformance; - var _DebugTypePerformanceArb = OpenTK.Graphics.OpenGL4.All.DebugTypePerformanceArb; - var _DebugTypePerformanceKhr = OpenTK.Graphics.OpenGL4.All.DebugTypePerformanceKhr; - var _DebugTypeOther = OpenTK.Graphics.OpenGL4.All.DebugTypeOther; - var _DebugTypeOtherArb = OpenTK.Graphics.OpenGL4.All.DebugTypeOtherArb; - var _DebugTypeOtherKhr = OpenTK.Graphics.OpenGL4.All.DebugTypeOtherKhr; - var _LoseContextOnResetArb = OpenTK.Graphics.OpenGL4.All.LoseContextOnResetArb; - var _GuiltyContextResetArb = OpenTK.Graphics.OpenGL4.All.GuiltyContextResetArb; - var _InnocentContextResetArb = OpenTK.Graphics.OpenGL4.All.InnocentContextResetArb; - var _UnknownContextResetArb = OpenTK.Graphics.OpenGL4.All.UnknownContextResetArb; - var _ResetNotificationStrategyArb = OpenTK.Graphics.OpenGL4.All.ResetNotificationStrategyArb; - var _ProgramBinaryRetrievableHint = OpenTK.Graphics.OpenGL4.All.ProgramBinaryRetrievableHint; - var _ProgramSeparable = OpenTK.Graphics.OpenGL4.All.ProgramSeparable; - var _ActiveProgram = OpenTK.Graphics.OpenGL4.All.ActiveProgram; - var _ProgramPipelineBinding = OpenTK.Graphics.OpenGL4.All.ProgramPipelineBinding; - var _MaxViewports = OpenTK.Graphics.OpenGL4.All.MaxViewports; - var _ViewportSubpixelBits = OpenTK.Graphics.OpenGL4.All.ViewportSubpixelBits; - var _ViewportBoundsRange = OpenTK.Graphics.OpenGL4.All.ViewportBoundsRange; - var _LayerProvokingVertex = OpenTK.Graphics.OpenGL4.All.LayerProvokingVertex; - var _ViewportIndexProvokingVertex = OpenTK.Graphics.OpenGL4.All.ViewportIndexProvokingVertex; - var _UndefinedVertex = OpenTK.Graphics.OpenGL4.All.UndefinedVertex; - var _NoResetNotificationArb = OpenTK.Graphics.OpenGL4.All.NoResetNotificationArb; - var _MaxComputeSharedMemorySize = OpenTK.Graphics.OpenGL4.All.MaxComputeSharedMemorySize; - var _MaxComputeUniformComponents = OpenTK.Graphics.OpenGL4.All.MaxComputeUniformComponents; - var _MaxComputeAtomicCounterBuffers = OpenTK.Graphics.OpenGL4.All.MaxComputeAtomicCounterBuffers; - var _MaxComputeAtomicCounters = OpenTK.Graphics.OpenGL4.All.MaxComputeAtomicCounters; - var _MaxCombinedComputeUniformComponents = OpenTK.Graphics.OpenGL4.All.MaxCombinedComputeUniformComponents; - var _ComputeWorkGroupSize = OpenTK.Graphics.OpenGL4.All.ComputeWorkGroupSize; - var _DebugTypeMarker = OpenTK.Graphics.OpenGL4.All.DebugTypeMarker; - var _DebugTypeMarkerKhr = OpenTK.Graphics.OpenGL4.All.DebugTypeMarkerKhr; - var _DebugTypePushGroup = OpenTK.Graphics.OpenGL4.All.DebugTypePushGroup; - var _DebugTypePushGroupKhr = OpenTK.Graphics.OpenGL4.All.DebugTypePushGroupKhr; - var _DebugTypePopGroup = OpenTK.Graphics.OpenGL4.All.DebugTypePopGroup; - var _DebugTypePopGroupKhr = OpenTK.Graphics.OpenGL4.All.DebugTypePopGroupKhr; - var _DebugSeverityNotification = OpenTK.Graphics.OpenGL4.All.DebugSeverityNotification; - var _DebugSeverityNotificationKhr = OpenTK.Graphics.OpenGL4.All.DebugSeverityNotificationKhr; - var _MaxDebugGroupStackDepth = OpenTK.Graphics.OpenGL4.All.MaxDebugGroupStackDepth; - var _MaxDebugGroupStackDepthKhr = OpenTK.Graphics.OpenGL4.All.MaxDebugGroupStackDepthKhr; - var _DebugGroupStackDepth = OpenTK.Graphics.OpenGL4.All.DebugGroupStackDepth; - var _DebugGroupStackDepthKhr = OpenTK.Graphics.OpenGL4.All.DebugGroupStackDepthKhr; - var _MaxUniformLocations = OpenTK.Graphics.OpenGL4.All.MaxUniformLocations; - var _InternalformatSupported = OpenTK.Graphics.OpenGL4.All.InternalformatSupported; - var _InternalformatPreferred = OpenTK.Graphics.OpenGL4.All.InternalformatPreferred; - var _InternalformatRedSize = OpenTK.Graphics.OpenGL4.All.InternalformatRedSize; - var _InternalformatGreenSize = OpenTK.Graphics.OpenGL4.All.InternalformatGreenSize; - var _InternalformatBlueSize = OpenTK.Graphics.OpenGL4.All.InternalformatBlueSize; - var _InternalformatAlphaSize = OpenTK.Graphics.OpenGL4.All.InternalformatAlphaSize; - var _InternalformatDepthSize = OpenTK.Graphics.OpenGL4.All.InternalformatDepthSize; - var _InternalformatStencilSize = OpenTK.Graphics.OpenGL4.All.InternalformatStencilSize; - var _InternalformatSharedSize = OpenTK.Graphics.OpenGL4.All.InternalformatSharedSize; - var _InternalformatRedType = OpenTK.Graphics.OpenGL4.All.InternalformatRedType; - var _InternalformatGreenType = OpenTK.Graphics.OpenGL4.All.InternalformatGreenType; - var _InternalformatBlueType = OpenTK.Graphics.OpenGL4.All.InternalformatBlueType; - var _InternalformatAlphaType = OpenTK.Graphics.OpenGL4.All.InternalformatAlphaType; - var _InternalformatDepthType = OpenTK.Graphics.OpenGL4.All.InternalformatDepthType; - var _InternalformatStencilType = OpenTK.Graphics.OpenGL4.All.InternalformatStencilType; - var _MaxWidth = OpenTK.Graphics.OpenGL4.All.MaxWidth; - var _MaxHeight = OpenTK.Graphics.OpenGL4.All.MaxHeight; - var _MaxDepth = OpenTK.Graphics.OpenGL4.All.MaxDepth; - var _MaxLayers = OpenTK.Graphics.OpenGL4.All.MaxLayers; - var _MaxCombinedDimensions = OpenTK.Graphics.OpenGL4.All.MaxCombinedDimensions; - var _ColorComponents = OpenTK.Graphics.OpenGL4.All.ColorComponents; - var _DepthComponents = OpenTK.Graphics.OpenGL4.All.DepthComponents; - var _StencilComponents = OpenTK.Graphics.OpenGL4.All.StencilComponents; - var _ColorRenderable = OpenTK.Graphics.OpenGL4.All.ColorRenderable; - var _DepthRenderable = OpenTK.Graphics.OpenGL4.All.DepthRenderable; - var _StencilRenderable = OpenTK.Graphics.OpenGL4.All.StencilRenderable; - var _FramebufferRenderable = OpenTK.Graphics.OpenGL4.All.FramebufferRenderable; - var _FramebufferRenderableLayered = OpenTK.Graphics.OpenGL4.All.FramebufferRenderableLayered; - var _FramebufferBlend = OpenTK.Graphics.OpenGL4.All.FramebufferBlend; - var _ReadPixels = OpenTK.Graphics.OpenGL4.All.ReadPixels; - var _ReadPixelsFormat = OpenTK.Graphics.OpenGL4.All.ReadPixelsFormat; - var _ReadPixelsType = OpenTK.Graphics.OpenGL4.All.ReadPixelsType; - var _TextureImageFormat = OpenTK.Graphics.OpenGL4.All.TextureImageFormat; - var _TextureImageType = OpenTK.Graphics.OpenGL4.All.TextureImageType; - var _GetTextureImageFormat = OpenTK.Graphics.OpenGL4.All.GetTextureImageFormat; - var _GetTextureImageType = OpenTK.Graphics.OpenGL4.All.GetTextureImageType; - var _Mipmap = OpenTK.Graphics.OpenGL4.All.Mipmap; - var _ManualGenerateMipmap = OpenTK.Graphics.OpenGL4.All.ManualGenerateMipmap; - var _AutoGenerateMipmap = OpenTK.Graphics.OpenGL4.All.AutoGenerateMipmap; - var _ColorEncoding = OpenTK.Graphics.OpenGL4.All.ColorEncoding; - var _SrgbRead = OpenTK.Graphics.OpenGL4.All.SrgbRead; - var _SrgbWrite = OpenTK.Graphics.OpenGL4.All.SrgbWrite; - var _SrgbDecodeArb = OpenTK.Graphics.OpenGL4.All.SrgbDecodeArb; - var _Filter = OpenTK.Graphics.OpenGL4.All.Filter; - var _VertexTexture = OpenTK.Graphics.OpenGL4.All.VertexTexture; - var _TessControlTexture = OpenTK.Graphics.OpenGL4.All.TessControlTexture; - var _TessEvaluationTexture = OpenTK.Graphics.OpenGL4.All.TessEvaluationTexture; - var _GeometryTexture = OpenTK.Graphics.OpenGL4.All.GeometryTexture; - var _FragmentTexture = OpenTK.Graphics.OpenGL4.All.FragmentTexture; - var _ComputeTexture = OpenTK.Graphics.OpenGL4.All.ComputeTexture; - var _TextureShadow = OpenTK.Graphics.OpenGL4.All.TextureShadow; - var _TextureGather = OpenTK.Graphics.OpenGL4.All.TextureGather; - var _TextureGatherShadow = OpenTK.Graphics.OpenGL4.All.TextureGatherShadow; - var _ShaderImageLoad = OpenTK.Graphics.OpenGL4.All.ShaderImageLoad; - var _ShaderImageStore = OpenTK.Graphics.OpenGL4.All.ShaderImageStore; - var _ShaderImageAtomic = OpenTK.Graphics.OpenGL4.All.ShaderImageAtomic; - var _ImageTexelSize = OpenTK.Graphics.OpenGL4.All.ImageTexelSize; - var _ImageCompatibilityClass = OpenTK.Graphics.OpenGL4.All.ImageCompatibilityClass; - var _ImagePixelFormat = OpenTK.Graphics.OpenGL4.All.ImagePixelFormat; - var _ImagePixelType = OpenTK.Graphics.OpenGL4.All.ImagePixelType; - var _SimultaneousTextureAndDepthTest = OpenTK.Graphics.OpenGL4.All.SimultaneousTextureAndDepthTest; - var _SimultaneousTextureAndStencilTest = OpenTK.Graphics.OpenGL4.All.SimultaneousTextureAndStencilTest; - var _SimultaneousTextureAndDepthWrite = OpenTK.Graphics.OpenGL4.All.SimultaneousTextureAndDepthWrite; - var _SimultaneousTextureAndStencilWrite = OpenTK.Graphics.OpenGL4.All.SimultaneousTextureAndStencilWrite; - var _TextureCompressedBlockWidth = OpenTK.Graphics.OpenGL4.All.TextureCompressedBlockWidth; - var _TextureCompressedBlockHeight = OpenTK.Graphics.OpenGL4.All.TextureCompressedBlockHeight; - var _TextureCompressedBlockSize = OpenTK.Graphics.OpenGL4.All.TextureCompressedBlockSize; - var _ClearBuffer = OpenTK.Graphics.OpenGL4.All.ClearBuffer; - var _TextureView = OpenTK.Graphics.OpenGL4.All.TextureView; - var _ViewCompatibilityClass = OpenTK.Graphics.OpenGL4.All.ViewCompatibilityClass; - var _FullSupport = OpenTK.Graphics.OpenGL4.All.FullSupport; - var _CaveatSupport = OpenTK.Graphics.OpenGL4.All.CaveatSupport; - var _ImageClass4X32 = OpenTK.Graphics.OpenGL4.All.ImageClass4X32; - var _ImageClass2X32 = OpenTK.Graphics.OpenGL4.All.ImageClass2X32; - var _ImageClass1X32 = OpenTK.Graphics.OpenGL4.All.ImageClass1X32; - var _ImageClass4X16 = OpenTK.Graphics.OpenGL4.All.ImageClass4X16; - var _ImageClass2X16 = OpenTK.Graphics.OpenGL4.All.ImageClass2X16; - var _ImageClass1X16 = OpenTK.Graphics.OpenGL4.All.ImageClass1X16; - var _ImageClass4X8 = OpenTK.Graphics.OpenGL4.All.ImageClass4X8; - var _ImageClass2X8 = OpenTK.Graphics.OpenGL4.All.ImageClass2X8; - var _ImageClass1X8 = OpenTK.Graphics.OpenGL4.All.ImageClass1X8; - var _ImageClass111110 = OpenTK.Graphics.OpenGL4.All.ImageClass111110; - var _ImageClass1010102 = OpenTK.Graphics.OpenGL4.All.ImageClass1010102; - var _ViewClass128Bits = OpenTK.Graphics.OpenGL4.All.ViewClass128Bits; - var _ViewClass96Bits = OpenTK.Graphics.OpenGL4.All.ViewClass96Bits; - var _ViewClass64Bits = OpenTK.Graphics.OpenGL4.All.ViewClass64Bits; - var _ViewClass48Bits = OpenTK.Graphics.OpenGL4.All.ViewClass48Bits; - var _ViewClass32Bits = OpenTK.Graphics.OpenGL4.All.ViewClass32Bits; - var _ViewClass24Bits = OpenTK.Graphics.OpenGL4.All.ViewClass24Bits; - var _ViewClass16Bits = OpenTK.Graphics.OpenGL4.All.ViewClass16Bits; - var _ViewClass8Bits = OpenTK.Graphics.OpenGL4.All.ViewClass8Bits; - var _ViewClassS3tcDxt1Rgb = OpenTK.Graphics.OpenGL4.All.ViewClassS3tcDxt1Rgb; - var _ViewClassS3tcDxt1Rgba = OpenTK.Graphics.OpenGL4.All.ViewClassS3tcDxt1Rgba; - var _ViewClassS3tcDxt3Rgba = OpenTK.Graphics.OpenGL4.All.ViewClassS3tcDxt3Rgba; - var _ViewClassS3tcDxt5Rgba = OpenTK.Graphics.OpenGL4.All.ViewClassS3tcDxt5Rgba; - var _ViewClassRgtc1Red = OpenTK.Graphics.OpenGL4.All.ViewClassRgtc1Red; - var _ViewClassRgtc2Rg = OpenTK.Graphics.OpenGL4.All.ViewClassRgtc2Rg; - var _ViewClassBptcUnorm = OpenTK.Graphics.OpenGL4.All.ViewClassBptcUnorm; - var _ViewClassBptcFloat = OpenTK.Graphics.OpenGL4.All.ViewClassBptcFloat; - var _VertexAttribBinding = OpenTK.Graphics.OpenGL4.All.VertexAttribBinding; - var _VertexAttribRelativeOffset = OpenTK.Graphics.OpenGL4.All.VertexAttribRelativeOffset; - var _VertexBindingDivisor = OpenTK.Graphics.OpenGL4.All.VertexBindingDivisor; - var _VertexBindingOffset = OpenTK.Graphics.OpenGL4.All.VertexBindingOffset; - var _VertexBindingStride = OpenTK.Graphics.OpenGL4.All.VertexBindingStride; - var _MaxVertexAttribRelativeOffset = OpenTK.Graphics.OpenGL4.All.MaxVertexAttribRelativeOffset; - var _MaxVertexAttribBindings = OpenTK.Graphics.OpenGL4.All.MaxVertexAttribBindings; - var _TextureViewMinLevel = OpenTK.Graphics.OpenGL4.All.TextureViewMinLevel; - var _TextureViewNumLevels = OpenTK.Graphics.OpenGL4.All.TextureViewNumLevels; - var _TextureViewMinLayer = OpenTK.Graphics.OpenGL4.All.TextureViewMinLayer; - var _TextureViewNumLayers = OpenTK.Graphics.OpenGL4.All.TextureViewNumLayers; - var _TextureImmutableLevels = OpenTK.Graphics.OpenGL4.All.TextureImmutableLevels; - var _Buffer = OpenTK.Graphics.OpenGL4.All.Buffer; - var _BufferKhr = OpenTK.Graphics.OpenGL4.All.BufferKhr; - var _Shader = OpenTK.Graphics.OpenGL4.All.Shader; - var _ShaderKhr = OpenTK.Graphics.OpenGL4.All.ShaderKhr; - var _Program = OpenTK.Graphics.OpenGL4.All.Program; - var _ProgramKhr = OpenTK.Graphics.OpenGL4.All.ProgramKhr; - var _Query = OpenTK.Graphics.OpenGL4.All.Query; - var _QueryKhr = OpenTK.Graphics.OpenGL4.All.QueryKhr; - var _ProgramPipeline = OpenTK.Graphics.OpenGL4.All.ProgramPipeline; - var _MaxVertexAttribStride = OpenTK.Graphics.OpenGL4.All.MaxVertexAttribStride; - var _Sampler = OpenTK.Graphics.OpenGL4.All.Sampler; - var _SamplerKhr = OpenTK.Graphics.OpenGL4.All.SamplerKhr; - var _DisplayList = OpenTK.Graphics.OpenGL4.All.DisplayList; - var _MaxLabelLength = OpenTK.Graphics.OpenGL4.All.MaxLabelLength; - var _MaxLabelLengthKhr = OpenTK.Graphics.OpenGL4.All.MaxLabelLengthKhr; - var _NumShadingLanguageVersions = OpenTK.Graphics.OpenGL4.All.NumShadingLanguageVersions; - var _ConvolutionHintSgix = OpenTK.Graphics.OpenGL4.All.ConvolutionHintSgix; - var _AlphaMinSgix = OpenTK.Graphics.OpenGL4.All.AlphaMinSgix; - var _AlphaMaxSgix = OpenTK.Graphics.OpenGL4.All.AlphaMaxSgix; - var _ScalebiasHintSgix = OpenTK.Graphics.OpenGL4.All.ScalebiasHintSgix; - var _AsyncMarkerSgix = OpenTK.Graphics.OpenGL4.All.AsyncMarkerSgix; - var _PixelTexGenModeSgix = OpenTK.Graphics.OpenGL4.All.PixelTexGenModeSgix; - var _AsyncHistogramSgix = OpenTK.Graphics.OpenGL4.All.AsyncHistogramSgix; - var _MaxAsyncHistogramSgix = OpenTK.Graphics.OpenGL4.All.MaxAsyncHistogramSgix; - var _PixelTextureSgis = OpenTK.Graphics.OpenGL4.All.PixelTextureSgis; - var _PixelFragmentRgbSourceSgis = OpenTK.Graphics.OpenGL4.All.PixelFragmentRgbSourceSgis; - var _PixelFragmentAlphaSourceSgis = OpenTK.Graphics.OpenGL4.All.PixelFragmentAlphaSourceSgis; - var _LineQualityHintSgix = OpenTK.Graphics.OpenGL4.All.LineQualityHintSgix; - var _AsyncTexImageSgix = OpenTK.Graphics.OpenGL4.All.AsyncTexImageSgix; - var _AsyncDrawPixelsSgix = OpenTK.Graphics.OpenGL4.All.AsyncDrawPixelsSgix; - var _AsyncReadPixelsSgix = OpenTK.Graphics.OpenGL4.All.AsyncReadPixelsSgix; - var _MaxAsyncTexImageSgix = OpenTK.Graphics.OpenGL4.All.MaxAsyncTexImageSgix; - var _MaxAsyncDrawPixelsSgix = OpenTK.Graphics.OpenGL4.All.MaxAsyncDrawPixelsSgix; - var _MaxAsyncReadPixelsSgix = OpenTK.Graphics.OpenGL4.All.MaxAsyncReadPixelsSgix; - var _UnsignedByte233Rev = OpenTK.Graphics.OpenGL4.All.UnsignedByte233Rev; - var _UnsignedByte233Reversed = OpenTK.Graphics.OpenGL4.All.UnsignedByte233Reversed; - var _UnsignedShort565 = OpenTK.Graphics.OpenGL4.All.UnsignedShort565; - var _UnsignedShort565Rev = OpenTK.Graphics.OpenGL4.All.UnsignedShort565Rev; - var _UnsignedShort565Reversed = OpenTK.Graphics.OpenGL4.All.UnsignedShort565Reversed; - var _UnsignedShort4444Rev = OpenTK.Graphics.OpenGL4.All.UnsignedShort4444Rev; - var _UnsignedShort4444Reversed = OpenTK.Graphics.OpenGL4.All.UnsignedShort4444Reversed; - var _UnsignedShort1555Rev = OpenTK.Graphics.OpenGL4.All.UnsignedShort1555Rev; - var _UnsignedShort1555Reversed = OpenTK.Graphics.OpenGL4.All.UnsignedShort1555Reversed; - var _UnsignedInt8888Rev = OpenTK.Graphics.OpenGL4.All.UnsignedInt8888Rev; - var _UnsignedInt8888Reversed = OpenTK.Graphics.OpenGL4.All.UnsignedInt8888Reversed; - var _UnsignedInt2101010Rev = OpenTK.Graphics.OpenGL4.All.UnsignedInt2101010Rev; - var _UnsignedInt2101010Reversed = OpenTK.Graphics.OpenGL4.All.UnsignedInt2101010Reversed; - var _TextureMaxClampSSgix = OpenTK.Graphics.OpenGL4.All.TextureMaxClampSSgix; - var _TextureMaxClampTSgix = OpenTK.Graphics.OpenGL4.All.TextureMaxClampTSgix; - var _TextureMaxClampRSgix = OpenTK.Graphics.OpenGL4.All.TextureMaxClampRSgix; - var _MirroredRepeat = OpenTK.Graphics.OpenGL4.All.MirroredRepeat; - var _VertexPreclipSgix = OpenTK.Graphics.OpenGL4.All.VertexPreclipSgix; - var _VertexPreclipHintSgix = OpenTK.Graphics.OpenGL4.All.VertexPreclipHintSgix; - var _CompressedRgbS3tcDxt1Ext = OpenTK.Graphics.OpenGL4.All.CompressedRgbS3tcDxt1Ext; - var _CompressedRgbaS3tcDxt1Ext = OpenTK.Graphics.OpenGL4.All.CompressedRgbaS3tcDxt1Ext; - var _CompressedRgbaS3tcDxt3Ext = OpenTK.Graphics.OpenGL4.All.CompressedRgbaS3tcDxt3Ext; - var _CompressedRgbaS3tcDxt5Ext = OpenTK.Graphics.OpenGL4.All.CompressedRgbaS3tcDxt5Ext; - var _FragmentLightingSgix = OpenTK.Graphics.OpenGL4.All.FragmentLightingSgix; - var _FragmentColorMaterialSgix = OpenTK.Graphics.OpenGL4.All.FragmentColorMaterialSgix; - var _FragmentColorMaterialFaceSgix = OpenTK.Graphics.OpenGL4.All.FragmentColorMaterialFaceSgix; - var _FragmentColorMaterialParameterSgix = OpenTK.Graphics.OpenGL4.All.FragmentColorMaterialParameterSgix; - var _MaxFragmentLightsSgix = OpenTK.Graphics.OpenGL4.All.MaxFragmentLightsSgix; - var _MaxActiveLightsSgix = OpenTK.Graphics.OpenGL4.All.MaxActiveLightsSgix; - var _LightEnvModeSgix = OpenTK.Graphics.OpenGL4.All.LightEnvModeSgix; - var _FragmentLightModelLocalViewerSgix = OpenTK.Graphics.OpenGL4.All.FragmentLightModelLocalViewerSgix; - var _FragmentLightModelTwoSideSgix = OpenTK.Graphics.OpenGL4.All.FragmentLightModelTwoSideSgix; - var _FragmentLightModelAmbientSgix = OpenTK.Graphics.OpenGL4.All.FragmentLightModelAmbientSgix; - var _FragmentLightModelNormalInterpolationSgix = OpenTK.Graphics.OpenGL4.All.FragmentLightModelNormalInterpolationSgix; - var _FragmentLight0Sgix = OpenTK.Graphics.OpenGL4.All.FragmentLight0Sgix; - var _FragmentLight1Sgix = OpenTK.Graphics.OpenGL4.All.FragmentLight1Sgix; - var _FragmentLight2Sgix = OpenTK.Graphics.OpenGL4.All.FragmentLight2Sgix; - var _FragmentLight3Sgix = OpenTK.Graphics.OpenGL4.All.FragmentLight3Sgix; - var _FragmentLight4Sgix = OpenTK.Graphics.OpenGL4.All.FragmentLight4Sgix; - var _FragmentLight5Sgix = OpenTK.Graphics.OpenGL4.All.FragmentLight5Sgix; - var _FragmentLight6Sgix = OpenTK.Graphics.OpenGL4.All.FragmentLight6Sgix; - var _FragmentLight7Sgix = OpenTK.Graphics.OpenGL4.All.FragmentLight7Sgix; - var _PackResampleSgix = OpenTK.Graphics.OpenGL4.All.PackResampleSgix; - var _UnpackResampleSgix = OpenTK.Graphics.OpenGL4.All.UnpackResampleSgix; - var _ResampleReplicateSgix = OpenTK.Graphics.OpenGL4.All.ResampleReplicateSgix; - var _ResampleZeroFillSgix = OpenTK.Graphics.OpenGL4.All.ResampleZeroFillSgix; - var _ResampleDecimateSgix = OpenTK.Graphics.OpenGL4.All.ResampleDecimateSgix; - var _NearestClipmapNearestSgix = OpenTK.Graphics.OpenGL4.All.NearestClipmapNearestSgix; - var _NearestClipmapLinearSgix = OpenTK.Graphics.OpenGL4.All.NearestClipmapLinearSgix; - var _LinearClipmapNearestSgix = OpenTK.Graphics.OpenGL4.All.LinearClipmapNearestSgix; - var _FogCoordSrc = OpenTK.Graphics.OpenGL4.All.FogCoordSrc; - var _FogCoord = OpenTK.Graphics.OpenGL4.All.FogCoord; - var _FragmentDepth = OpenTK.Graphics.OpenGL4.All.FragmentDepth; - var _CurrentFogCoord = OpenTK.Graphics.OpenGL4.All.CurrentFogCoord; - var _FogCoordArrayType = OpenTK.Graphics.OpenGL4.All.FogCoordArrayType; - var _FogCoordArrayStride = OpenTK.Graphics.OpenGL4.All.FogCoordArrayStride; - var _FogCoordArrayPointer = OpenTK.Graphics.OpenGL4.All.FogCoordArrayPointer; - var _FogCoordArray = OpenTK.Graphics.OpenGL4.All.FogCoordArray; - var _ColorSum = OpenTK.Graphics.OpenGL4.All.ColorSum; - var _CurrentSecondaryColor = OpenTK.Graphics.OpenGL4.All.CurrentSecondaryColor; - var _SecondaryColorArraySize = OpenTK.Graphics.OpenGL4.All.SecondaryColorArraySize; - var _SecondaryColorArrayType = OpenTK.Graphics.OpenGL4.All.SecondaryColorArrayType; - var _SecondaryColorArrayStride = OpenTK.Graphics.OpenGL4.All.SecondaryColorArrayStride; - var _SecondaryColorArrayPointer = OpenTK.Graphics.OpenGL4.All.SecondaryColorArrayPointer; - var _SecondaryColorArray = OpenTK.Graphics.OpenGL4.All.SecondaryColorArray; - var _CurrentRasterSecondaryColor = OpenTK.Graphics.OpenGL4.All.CurrentRasterSecondaryColor; - var _RgbIccSgix = OpenTK.Graphics.OpenGL4.All.RgbIccSgix; - var _RgbaIccSgix = OpenTK.Graphics.OpenGL4.All.RgbaIccSgix; - var _AlphaIccSgix = OpenTK.Graphics.OpenGL4.All.AlphaIccSgix; - var _LuminanceIccSgix = OpenTK.Graphics.OpenGL4.All.LuminanceIccSgix; - var _IntensityIccSgix = OpenTK.Graphics.OpenGL4.All.IntensityIccSgix; - var _LuminanceAlphaIccSgix = OpenTK.Graphics.OpenGL4.All.LuminanceAlphaIccSgix; - var _R5G6B5IccSgix = OpenTK.Graphics.OpenGL4.All.R5G6B5IccSgix; - var _R5G6B5A8IccSgix = OpenTK.Graphics.OpenGL4.All.R5G6B5A8IccSgix; - var _Alpha16IccSgix = OpenTK.Graphics.OpenGL4.All.Alpha16IccSgix; - var _Luminance16IccSgix = OpenTK.Graphics.OpenGL4.All.Luminance16IccSgix; - var _Intensity16IccSgix = OpenTK.Graphics.OpenGL4.All.Intensity16IccSgix; - var _Luminance16Alpha8IccSgix = OpenTK.Graphics.OpenGL4.All.Luminance16Alpha8IccSgix; - var _AliasedPointSizeRange = OpenTK.Graphics.OpenGL4.All.AliasedPointSizeRange; - var _AliasedLineWidthRange = OpenTK.Graphics.OpenGL4.All.AliasedLineWidthRange; - var _Texture0 = OpenTK.Graphics.OpenGL4.All.Texture0; - var _Texture1 = OpenTK.Graphics.OpenGL4.All.Texture1; - var _Texture2 = OpenTK.Graphics.OpenGL4.All.Texture2; - var _Texture3 = OpenTK.Graphics.OpenGL4.All.Texture3; - var _Texture4 = OpenTK.Graphics.OpenGL4.All.Texture4; - var _Texture5 = OpenTK.Graphics.OpenGL4.All.Texture5; - var _Texture6 = OpenTK.Graphics.OpenGL4.All.Texture6; - var _Texture7 = OpenTK.Graphics.OpenGL4.All.Texture7; - var _Texture8 = OpenTK.Graphics.OpenGL4.All.Texture8; - var _Texture9 = OpenTK.Graphics.OpenGL4.All.Texture9; - var _Texture10 = OpenTK.Graphics.OpenGL4.All.Texture10; - var _Texture11 = OpenTK.Graphics.OpenGL4.All.Texture11; - var _Texture12 = OpenTK.Graphics.OpenGL4.All.Texture12; - var _Texture13 = OpenTK.Graphics.OpenGL4.All.Texture13; - var _Texture14 = OpenTK.Graphics.OpenGL4.All.Texture14; - var _Texture15 = OpenTK.Graphics.OpenGL4.All.Texture15; - var _Texture16 = OpenTK.Graphics.OpenGL4.All.Texture16; - var _Texture17 = OpenTK.Graphics.OpenGL4.All.Texture17; - var _Texture18 = OpenTK.Graphics.OpenGL4.All.Texture18; - var _Texture19 = OpenTK.Graphics.OpenGL4.All.Texture19; - var _Texture20 = OpenTK.Graphics.OpenGL4.All.Texture20; - var _Texture21 = OpenTK.Graphics.OpenGL4.All.Texture21; - var _Texture22 = OpenTK.Graphics.OpenGL4.All.Texture22; - var _Texture23 = OpenTK.Graphics.OpenGL4.All.Texture23; - var _Texture24 = OpenTK.Graphics.OpenGL4.All.Texture24; - var _Texture25 = OpenTK.Graphics.OpenGL4.All.Texture25; - var _Texture26 = OpenTK.Graphics.OpenGL4.All.Texture26; - var _Texture27 = OpenTK.Graphics.OpenGL4.All.Texture27; - var _Texture28 = OpenTK.Graphics.OpenGL4.All.Texture28; - var _Texture29 = OpenTK.Graphics.OpenGL4.All.Texture29; - var _Texture30 = OpenTK.Graphics.OpenGL4.All.Texture30; - var _Texture31 = OpenTK.Graphics.OpenGL4.All.Texture31; - var _ActiveTexture = OpenTK.Graphics.OpenGL4.All.ActiveTexture; - var _ClientActiveTexture = OpenTK.Graphics.OpenGL4.All.ClientActiveTexture; - var _MaxTextureUnits = OpenTK.Graphics.OpenGL4.All.MaxTextureUnits; - var _TransposeModelviewMatrix = OpenTK.Graphics.OpenGL4.All.TransposeModelviewMatrix; - var _TransposeProjectionMatrix = OpenTK.Graphics.OpenGL4.All.TransposeProjectionMatrix; - var _TransposeTextureMatrix = OpenTK.Graphics.OpenGL4.All.TransposeTextureMatrix; - var _TransposeColorMatrix = OpenTK.Graphics.OpenGL4.All.TransposeColorMatrix; - var _Subtract = OpenTK.Graphics.OpenGL4.All.Subtract; - var _MaxRenderbufferSize = OpenTK.Graphics.OpenGL4.All.MaxRenderbufferSize; - var _MaxRenderbufferSizeExt = OpenTK.Graphics.OpenGL4.All.MaxRenderbufferSizeExt; - var _CompressedAlpha = OpenTK.Graphics.OpenGL4.All.CompressedAlpha; - var _CompressedLuminance = OpenTK.Graphics.OpenGL4.All.CompressedLuminance; - var _CompressedLuminanceAlpha = OpenTK.Graphics.OpenGL4.All.CompressedLuminanceAlpha; - var _CompressedIntensity = OpenTK.Graphics.OpenGL4.All.CompressedIntensity; - var _CompressedRgb = OpenTK.Graphics.OpenGL4.All.CompressedRgb; - var _CompressedRgba = OpenTK.Graphics.OpenGL4.All.CompressedRgba; - var _TextureCompressionHint = OpenTK.Graphics.OpenGL4.All.TextureCompressionHint; - var _TextureCompressionHintArb = OpenTK.Graphics.OpenGL4.All.TextureCompressionHintArb; - var _UniformBlockReferencedByTessControlShader = OpenTK.Graphics.OpenGL4.All.UniformBlockReferencedByTessControlShader; - var _UniformBlockReferencedByTessEvaluationShader = OpenTK.Graphics.OpenGL4.All.UniformBlockReferencedByTessEvaluationShader; - var _TextureRectangle = OpenTK.Graphics.OpenGL4.All.TextureRectangle; - var _TextureBindingRectangle = OpenTK.Graphics.OpenGL4.All.TextureBindingRectangle; - var _ProxyTextureRectangle = OpenTK.Graphics.OpenGL4.All.ProxyTextureRectangle; - var _MaxRectangleTextureSize = OpenTK.Graphics.OpenGL4.All.MaxRectangleTextureSize; - var _DepthStencil = OpenTK.Graphics.OpenGL4.All.DepthStencil; - var _UnsignedInt248 = OpenTK.Graphics.OpenGL4.All.UnsignedInt248; - var _MaxTextureLodBias = OpenTK.Graphics.OpenGL4.All.MaxTextureLodBias; - var _TextureMaxAnisotropyExt = OpenTK.Graphics.OpenGL4.All.TextureMaxAnisotropyExt; - var _TextureFilterControl = OpenTK.Graphics.OpenGL4.All.TextureFilterControl; - var _TextureLodBias = OpenTK.Graphics.OpenGL4.All.TextureLodBias; - var _IncrWrap = OpenTK.Graphics.OpenGL4.All.IncrWrap; - var _DecrWrap = OpenTK.Graphics.OpenGL4.All.DecrWrap; - var _NormalMap = OpenTK.Graphics.OpenGL4.All.NormalMap; - var _ReflectionMap = OpenTK.Graphics.OpenGL4.All.ReflectionMap; - var _TextureCubeMap = OpenTK.Graphics.OpenGL4.All.TextureCubeMap; - var _TextureBindingCubeMap = OpenTK.Graphics.OpenGL4.All.TextureBindingCubeMap; - var _TextureCubeMapPositiveX = OpenTK.Graphics.OpenGL4.All.TextureCubeMapPositiveX; - var _TextureCubeMapNegativeX = OpenTK.Graphics.OpenGL4.All.TextureCubeMapNegativeX; - var _TextureCubeMapPositiveY = OpenTK.Graphics.OpenGL4.All.TextureCubeMapPositiveY; - var _TextureCubeMapNegativeY = OpenTK.Graphics.OpenGL4.All.TextureCubeMapNegativeY; - var _TextureCubeMapPositiveZ = OpenTK.Graphics.OpenGL4.All.TextureCubeMapPositiveZ; - var _TextureCubeMapNegativeZ = OpenTK.Graphics.OpenGL4.All.TextureCubeMapNegativeZ; - var _ProxyTextureCubeMap = OpenTK.Graphics.OpenGL4.All.ProxyTextureCubeMap; - var _MaxCubeMapTextureSize = OpenTK.Graphics.OpenGL4.All.MaxCubeMapTextureSize; - var _VertexArrayStorageHintApple = OpenTK.Graphics.OpenGL4.All.VertexArrayStorageHintApple; - var _MultisampleFilterHintNv = OpenTK.Graphics.OpenGL4.All.MultisampleFilterHintNv; - var _Combine = OpenTK.Graphics.OpenGL4.All.Combine; - var _CombineRgb = OpenTK.Graphics.OpenGL4.All.CombineRgb; - var _CombineAlpha = OpenTK.Graphics.OpenGL4.All.CombineAlpha; - var _RgbScale = OpenTK.Graphics.OpenGL4.All.RgbScale; - var _AddSigned = OpenTK.Graphics.OpenGL4.All.AddSigned; - var _Interpolate = OpenTK.Graphics.OpenGL4.All.Interpolate; - var _Constant = OpenTK.Graphics.OpenGL4.All.Constant; - var _PrimaryColor = OpenTK.Graphics.OpenGL4.All.PrimaryColor; - var _Previous = OpenTK.Graphics.OpenGL4.All.Previous; - var _Source0Rgb = OpenTK.Graphics.OpenGL4.All.Source0Rgb; - var _Src1Rgb = OpenTK.Graphics.OpenGL4.All.Src1Rgb; - var _Src2Rgb = OpenTK.Graphics.OpenGL4.All.Src2Rgb; - var _Src0Alpha = OpenTK.Graphics.OpenGL4.All.Src0Alpha; - var _Src1Alpha = OpenTK.Graphics.OpenGL4.All.Src1Alpha; - var _Src2Alpha = OpenTK.Graphics.OpenGL4.All.Src2Alpha; - var _Operand0Rgb = OpenTK.Graphics.OpenGL4.All.Operand0Rgb; - var _Operand1Rgb = OpenTK.Graphics.OpenGL4.All.Operand1Rgb; - var _Operand2Rgb = OpenTK.Graphics.OpenGL4.All.Operand2Rgb; - var _Operand0Alpha = OpenTK.Graphics.OpenGL4.All.Operand0Alpha; - var _Operand1Alpha = OpenTK.Graphics.OpenGL4.All.Operand1Alpha; - var _Operand2Alpha = OpenTK.Graphics.OpenGL4.All.Operand2Alpha; - var _PackSubsampleRateSgix = OpenTK.Graphics.OpenGL4.All.PackSubsampleRateSgix; - var _UnpackSubsampleRateSgix = OpenTK.Graphics.OpenGL4.All.UnpackSubsampleRateSgix; - var _PixelSubsample4444Sgix = OpenTK.Graphics.OpenGL4.All.PixelSubsample4444Sgix; - var _PixelSubsample2424Sgix = OpenTK.Graphics.OpenGL4.All.PixelSubsample2424Sgix; - var _PixelSubsample4242Sgix = OpenTK.Graphics.OpenGL4.All.PixelSubsample4242Sgix; - var _TransformHintApple = OpenTK.Graphics.OpenGL4.All.TransformHintApple; - var _VertexArrayBinding = OpenTK.Graphics.OpenGL4.All.VertexArrayBinding; - var _TextureStorageHintApple = OpenTK.Graphics.OpenGL4.All.TextureStorageHintApple; - var _VertexProgram = OpenTK.Graphics.OpenGL4.All.VertexProgram; - var _ArrayEnabled = OpenTK.Graphics.OpenGL4.All.ArrayEnabled; - var _VertexAttribArrayEnabled = OpenTK.Graphics.OpenGL4.All.VertexAttribArrayEnabled; - var _VertexAttribArraySize = OpenTK.Graphics.OpenGL4.All.VertexAttribArraySize; - var _VertexAttribArrayStride = OpenTK.Graphics.OpenGL4.All.VertexAttribArrayStride; - var _ArrayType = OpenTK.Graphics.OpenGL4.All.ArrayType; - var _VertexAttribArrayType = OpenTK.Graphics.OpenGL4.All.VertexAttribArrayType; - var _CurrentVertexAttrib = OpenTK.Graphics.OpenGL4.All.CurrentVertexAttrib; - var _ProgramLength = OpenTK.Graphics.OpenGL4.All.ProgramLength; - var _ProgramString = OpenTK.Graphics.OpenGL4.All.ProgramString; - var _ProgramPointSize = OpenTK.Graphics.OpenGL4.All.ProgramPointSize; - var _VertexProgramPointSize = OpenTK.Graphics.OpenGL4.All.VertexProgramPointSize; - var _VertexProgramTwoSide = OpenTK.Graphics.OpenGL4.All.VertexProgramTwoSide; - var _ArrayPointer = OpenTK.Graphics.OpenGL4.All.ArrayPointer; - var _VertexAttribArrayPointer = OpenTK.Graphics.OpenGL4.All.VertexAttribArrayPointer; - var _DepthClamp = OpenTK.Graphics.OpenGL4.All.DepthClamp; - var _ProgramBinding = OpenTK.Graphics.OpenGL4.All.ProgramBinding; - var _TextureCompressedImageSize = OpenTK.Graphics.OpenGL4.All.TextureCompressedImageSize; - var _TextureCompressed = OpenTK.Graphics.OpenGL4.All.TextureCompressed; - var _NumCompressedTextureFormats = OpenTK.Graphics.OpenGL4.All.NumCompressedTextureFormats; - var _CompressedTextureFormats = OpenTK.Graphics.OpenGL4.All.CompressedTextureFormats; - var _Dot3Rgb = OpenTK.Graphics.OpenGL4.All.Dot3Rgb; - var _Dot3Rgba = OpenTK.Graphics.OpenGL4.All.Dot3Rgba; - var _ProgramBinaryLength = OpenTK.Graphics.OpenGL4.All.ProgramBinaryLength; - var _MirrorClampToEdge = OpenTK.Graphics.OpenGL4.All.MirrorClampToEdge; - var _VertexAttribArrayLong = OpenTK.Graphics.OpenGL4.All.VertexAttribArrayLong; - var _BufferSize = OpenTK.Graphics.OpenGL4.All.BufferSize; - var _BufferUsage = OpenTK.Graphics.OpenGL4.All.BufferUsage; - var _NumProgramBinaryFormats = OpenTK.Graphics.OpenGL4.All.NumProgramBinaryFormats; - var _ProgramBinaryFormats = OpenTK.Graphics.OpenGL4.All.ProgramBinaryFormats; - var _StencilBackFunc = OpenTK.Graphics.OpenGL4.All.StencilBackFunc; - var _StencilBackFail = OpenTK.Graphics.OpenGL4.All.StencilBackFail; - var _StencilBackPassDepthFail = OpenTK.Graphics.OpenGL4.All.StencilBackPassDepthFail; - var _StencilBackPassDepthPass = OpenTK.Graphics.OpenGL4.All.StencilBackPassDepthPass; - var _FragmentProgram = OpenTK.Graphics.OpenGL4.All.FragmentProgram; - var _ProgramAluInstructionsArb = OpenTK.Graphics.OpenGL4.All.ProgramAluInstructionsArb; - var _ProgramTexInstructionsArb = OpenTK.Graphics.OpenGL4.All.ProgramTexInstructionsArb; - var _ProgramTexIndirectionsArb = OpenTK.Graphics.OpenGL4.All.ProgramTexIndirectionsArb; - var _ProgramNativeAluInstructionsArb = OpenTK.Graphics.OpenGL4.All.ProgramNativeAluInstructionsArb; - var _ProgramNativeTexInstructionsArb = OpenTK.Graphics.OpenGL4.All.ProgramNativeTexInstructionsArb; - var _ProgramNativeTexIndirectionsArb = OpenTK.Graphics.OpenGL4.All.ProgramNativeTexIndirectionsArb; - var _MaxProgramAluInstructionsArb = OpenTK.Graphics.OpenGL4.All.MaxProgramAluInstructionsArb; - var _MaxProgramTexInstructionsArb = OpenTK.Graphics.OpenGL4.All.MaxProgramTexInstructionsArb; - var _MaxProgramTexIndirectionsArb = OpenTK.Graphics.OpenGL4.All.MaxProgramTexIndirectionsArb; - var _MaxProgramNativeAluInstructionsArb = OpenTK.Graphics.OpenGL4.All.MaxProgramNativeAluInstructionsArb; - var _MaxProgramNativeTexInstructionsArb = OpenTK.Graphics.OpenGL4.All.MaxProgramNativeTexInstructionsArb; - var _MaxProgramNativeTexIndirectionsArb = OpenTK.Graphics.OpenGL4.All.MaxProgramNativeTexIndirectionsArb; - var _Rgba32f = OpenTK.Graphics.OpenGL4.All.Rgba32f; - var _Rgb32f = OpenTK.Graphics.OpenGL4.All.Rgb32f; - var _Rgba16f = OpenTK.Graphics.OpenGL4.All.Rgba16f; - var _Rgb16f = OpenTK.Graphics.OpenGL4.All.Rgb16f; - var _RgbaFloatMode = OpenTK.Graphics.OpenGL4.All.RgbaFloatMode; - var _MaxDrawBuffers = OpenTK.Graphics.OpenGL4.All.MaxDrawBuffers; - var _DrawBuffer0 = OpenTK.Graphics.OpenGL4.All.DrawBuffer0; - var _DrawBuffer1 = OpenTK.Graphics.OpenGL4.All.DrawBuffer1; - var _DrawBuffer2 = OpenTK.Graphics.OpenGL4.All.DrawBuffer2; - var _DrawBuffer3 = OpenTK.Graphics.OpenGL4.All.DrawBuffer3; - var _DrawBuffer4 = OpenTK.Graphics.OpenGL4.All.DrawBuffer4; - var _DrawBuffer5 = OpenTK.Graphics.OpenGL4.All.DrawBuffer5; - var _DrawBuffer6 = OpenTK.Graphics.OpenGL4.All.DrawBuffer6; - var _DrawBuffer7 = OpenTK.Graphics.OpenGL4.All.DrawBuffer7; - var _DrawBuffer8 = OpenTK.Graphics.OpenGL4.All.DrawBuffer8; - var _DrawBuffer9 = OpenTK.Graphics.OpenGL4.All.DrawBuffer9; - var _DrawBuffer10 = OpenTK.Graphics.OpenGL4.All.DrawBuffer10; - var _DrawBuffer11 = OpenTK.Graphics.OpenGL4.All.DrawBuffer11; - var _DrawBuffer12 = OpenTK.Graphics.OpenGL4.All.DrawBuffer12; - var _DrawBuffer13 = OpenTK.Graphics.OpenGL4.All.DrawBuffer13; - var _DrawBuffer14 = OpenTK.Graphics.OpenGL4.All.DrawBuffer14; - var _DrawBuffer15 = OpenTK.Graphics.OpenGL4.All.DrawBuffer15; - var _BlendEquationAlpha = OpenTK.Graphics.OpenGL4.All.BlendEquationAlpha; - var _TextureDepthSize = OpenTK.Graphics.OpenGL4.All.TextureDepthSize; - var _DepthTextureMode = OpenTK.Graphics.OpenGL4.All.DepthTextureMode; - var _TextureCompareMode = OpenTK.Graphics.OpenGL4.All.TextureCompareMode; - var _TextureCompareFunc = OpenTK.Graphics.OpenGL4.All.TextureCompareFunc; - var _CompareRefToTexture = OpenTK.Graphics.OpenGL4.All.CompareRefToTexture; - var _CompareRToTexture = OpenTK.Graphics.OpenGL4.All.CompareRToTexture; - var _TextureCubeMapSeamless = OpenTK.Graphics.OpenGL4.All.TextureCubeMapSeamless; - var _PointSprite = OpenTK.Graphics.OpenGL4.All.PointSprite; - var _CoordReplace = OpenTK.Graphics.OpenGL4.All.CoordReplace; - var _QueryCounterBits = OpenTK.Graphics.OpenGL4.All.QueryCounterBits; - var _CurrentQuery = OpenTK.Graphics.OpenGL4.All.CurrentQuery; - var _QueryResult = OpenTK.Graphics.OpenGL4.All.QueryResult; - var _QueryResultAvailable = OpenTK.Graphics.OpenGL4.All.QueryResultAvailable; - var _MaxVertexAttribs = OpenTK.Graphics.OpenGL4.All.MaxVertexAttribs; - var _ArrayNormalized = OpenTK.Graphics.OpenGL4.All.ArrayNormalized; - var _VertexAttribArrayNormalized = OpenTK.Graphics.OpenGL4.All.VertexAttribArrayNormalized; - var _MaxTessControlInputComponents = OpenTK.Graphics.OpenGL4.All.MaxTessControlInputComponents; - var _MaxTessEvaluationInputComponents = OpenTK.Graphics.OpenGL4.All.MaxTessEvaluationInputComponents; - var _MaxTextureCoords = OpenTK.Graphics.OpenGL4.All.MaxTextureCoords; - var _MaxTextureImageUnits = OpenTK.Graphics.OpenGL4.All.MaxTextureImageUnits; - var _ProgramFormatAsciiArb = OpenTK.Graphics.OpenGL4.All.ProgramFormatAsciiArb; - var _ProgramFormat = OpenTK.Graphics.OpenGL4.All.ProgramFormat; - var _GeometryShaderInvocations = OpenTK.Graphics.OpenGL4.All.GeometryShaderInvocations; - var _ArrayBuffer = OpenTK.Graphics.OpenGL4.All.ArrayBuffer; - var _ElementArrayBuffer = OpenTK.Graphics.OpenGL4.All.ElementArrayBuffer; - var _ArrayBufferBinding = OpenTK.Graphics.OpenGL4.All.ArrayBufferBinding; - var _ElementArrayBufferBinding = OpenTK.Graphics.OpenGL4.All.ElementArrayBufferBinding; - var _VertexArrayBufferBinding = OpenTK.Graphics.OpenGL4.All.VertexArrayBufferBinding; - var _NormalArrayBufferBinding = OpenTK.Graphics.OpenGL4.All.NormalArrayBufferBinding; - var _ColorArrayBufferBinding = OpenTK.Graphics.OpenGL4.All.ColorArrayBufferBinding; - var _IndexArrayBufferBinding = OpenTK.Graphics.OpenGL4.All.IndexArrayBufferBinding; - var _TextureCoordArrayBufferBinding = OpenTK.Graphics.OpenGL4.All.TextureCoordArrayBufferBinding; - var _EdgeFlagArrayBufferBinding = OpenTK.Graphics.OpenGL4.All.EdgeFlagArrayBufferBinding; - var _SecondaryColorArrayBufferBinding = OpenTK.Graphics.OpenGL4.All.SecondaryColorArrayBufferBinding; - var _FogCoordArrayBufferBinding = OpenTK.Graphics.OpenGL4.All.FogCoordArrayBufferBinding; - var _WeightArrayBufferBinding = OpenTK.Graphics.OpenGL4.All.WeightArrayBufferBinding; - var _VertexAttribArrayBufferBinding = OpenTK.Graphics.OpenGL4.All.VertexAttribArrayBufferBinding; - var _ProgramInstruction = OpenTK.Graphics.OpenGL4.All.ProgramInstruction; - var _MaxProgramInstructions = OpenTK.Graphics.OpenGL4.All.MaxProgramInstructions; - var _ProgramNativeInstructions = OpenTK.Graphics.OpenGL4.All.ProgramNativeInstructions; - var _MaxProgramNativeInstructions = OpenTK.Graphics.OpenGL4.All.MaxProgramNativeInstructions; - var _ProgramTemporaries = OpenTK.Graphics.OpenGL4.All.ProgramTemporaries; - var _MaxProgramTemporaries = OpenTK.Graphics.OpenGL4.All.MaxProgramTemporaries; - var _ProgramNativeTemporaries = OpenTK.Graphics.OpenGL4.All.ProgramNativeTemporaries; - var _MaxProgramNativeTemporaries = OpenTK.Graphics.OpenGL4.All.MaxProgramNativeTemporaries; - var _ProgramParameters = OpenTK.Graphics.OpenGL4.All.ProgramParameters; - var _MaxProgramParameters = OpenTK.Graphics.OpenGL4.All.MaxProgramParameters; - var _ProgramNativeParameters = OpenTK.Graphics.OpenGL4.All.ProgramNativeParameters; - var _MaxProgramNativeParameters = OpenTK.Graphics.OpenGL4.All.MaxProgramNativeParameters; - var _ProgramAttribs = OpenTK.Graphics.OpenGL4.All.ProgramAttribs; - var _MaxProgramAttribs = OpenTK.Graphics.OpenGL4.All.MaxProgramAttribs; - var _ProgramNativeAttribs = OpenTK.Graphics.OpenGL4.All.ProgramNativeAttribs; - var _MaxProgramNativeAttribs = OpenTK.Graphics.OpenGL4.All.MaxProgramNativeAttribs; - var _ProgramAddressRegisters = OpenTK.Graphics.OpenGL4.All.ProgramAddressRegisters; - var _MaxProgramAddressRegisters = OpenTK.Graphics.OpenGL4.All.MaxProgramAddressRegisters; - var _ProgramNativeAddressRegisters = OpenTK.Graphics.OpenGL4.All.ProgramNativeAddressRegisters; - var _MaxProgramNativeAddressRegisters = OpenTK.Graphics.OpenGL4.All.MaxProgramNativeAddressRegisters; - var _MaxProgramLocalParameters = OpenTK.Graphics.OpenGL4.All.MaxProgramLocalParameters; - var _MaxProgramEnvParameters = OpenTK.Graphics.OpenGL4.All.MaxProgramEnvParameters; - var _ProgramUnderNativeLimits = OpenTK.Graphics.OpenGL4.All.ProgramUnderNativeLimits; - var _ReadOnly = OpenTK.Graphics.OpenGL4.All.ReadOnly; - var _WriteOnly = OpenTK.Graphics.OpenGL4.All.WriteOnly; - var _ReadWrite = OpenTK.Graphics.OpenGL4.All.ReadWrite; - var _BufferAccess = OpenTK.Graphics.OpenGL4.All.BufferAccess; - var _BufferMapped = OpenTK.Graphics.OpenGL4.All.BufferMapped; - var _BufferMapPointer = OpenTK.Graphics.OpenGL4.All.BufferMapPointer; - var _TimeElapsed = OpenTK.Graphics.OpenGL4.All.TimeElapsed; - var _Matrix0 = OpenTK.Graphics.OpenGL4.All.Matrix0; - var _Matrix1 = OpenTK.Graphics.OpenGL4.All.Matrix1; - var _Matrix2 = OpenTK.Graphics.OpenGL4.All.Matrix2; - var _Matrix3 = OpenTK.Graphics.OpenGL4.All.Matrix3; - var _Matrix4 = OpenTK.Graphics.OpenGL4.All.Matrix4; - var _Matrix5 = OpenTK.Graphics.OpenGL4.All.Matrix5; - var _Matrix6 = OpenTK.Graphics.OpenGL4.All.Matrix6; - var _Matrix7 = OpenTK.Graphics.OpenGL4.All.Matrix7; - var _Matrix8 = OpenTK.Graphics.OpenGL4.All.Matrix8; - var _Matrix9 = OpenTK.Graphics.OpenGL4.All.Matrix9; - var _Matrix10 = OpenTK.Graphics.OpenGL4.All.Matrix10; - var _Matrix11 = OpenTK.Graphics.OpenGL4.All.Matrix11; - var _Matrix12 = OpenTK.Graphics.OpenGL4.All.Matrix12; - var _Matrix13 = OpenTK.Graphics.OpenGL4.All.Matrix13; - var _Matrix14 = OpenTK.Graphics.OpenGL4.All.Matrix14; - var _Matrix15 = OpenTK.Graphics.OpenGL4.All.Matrix15; - var _Matrix16 = OpenTK.Graphics.OpenGL4.All.Matrix16; - var _Matrix17 = OpenTK.Graphics.OpenGL4.All.Matrix17; - var _Matrix18 = OpenTK.Graphics.OpenGL4.All.Matrix18; - var _Matrix19 = OpenTK.Graphics.OpenGL4.All.Matrix19; - var _Matrix20 = OpenTK.Graphics.OpenGL4.All.Matrix20; - var _Matrix21 = OpenTK.Graphics.OpenGL4.All.Matrix21; - var _Matrix22 = OpenTK.Graphics.OpenGL4.All.Matrix22; - var _Matrix23 = OpenTK.Graphics.OpenGL4.All.Matrix23; - var _Matrix24 = OpenTK.Graphics.OpenGL4.All.Matrix24; - var _Matrix25 = OpenTK.Graphics.OpenGL4.All.Matrix25; - var _Matrix26 = OpenTK.Graphics.OpenGL4.All.Matrix26; - var _Matrix27 = OpenTK.Graphics.OpenGL4.All.Matrix27; - var _Matrix28 = OpenTK.Graphics.OpenGL4.All.Matrix28; - var _Matrix29 = OpenTK.Graphics.OpenGL4.All.Matrix29; - var _Matrix30 = OpenTK.Graphics.OpenGL4.All.Matrix30; - var _Matrix31 = OpenTK.Graphics.OpenGL4.All.Matrix31; - var _StreamDraw = OpenTK.Graphics.OpenGL4.All.StreamDraw; - var _StreamRead = OpenTK.Graphics.OpenGL4.All.StreamRead; - var _StreamCopy = OpenTK.Graphics.OpenGL4.All.StreamCopy; - var _StaticDraw = OpenTK.Graphics.OpenGL4.All.StaticDraw; - var _StaticRead = OpenTK.Graphics.OpenGL4.All.StaticRead; - var _StaticCopy = OpenTK.Graphics.OpenGL4.All.StaticCopy; - var _DynamicDraw = OpenTK.Graphics.OpenGL4.All.DynamicDraw; - var _DynamicRead = OpenTK.Graphics.OpenGL4.All.DynamicRead; - var _DynamicCopy = OpenTK.Graphics.OpenGL4.All.DynamicCopy; - var _PixelPackBuffer = OpenTK.Graphics.OpenGL4.All.PixelPackBuffer; - var _PixelUnpackBuffer = OpenTK.Graphics.OpenGL4.All.PixelUnpackBuffer; - var _PixelPackBufferBinding = OpenTK.Graphics.OpenGL4.All.PixelPackBufferBinding; - var _PixelUnpackBufferBinding = OpenTK.Graphics.OpenGL4.All.PixelUnpackBufferBinding; - var _Depth24Stencil8 = OpenTK.Graphics.OpenGL4.All.Depth24Stencil8; - var _TextureStencilSize = OpenTK.Graphics.OpenGL4.All.TextureStencilSize; - var _Src1Color = OpenTK.Graphics.OpenGL4.All.Src1Color; - var _OneMinusSrc1Color = OpenTK.Graphics.OpenGL4.All.OneMinusSrc1Color; - var _OneMinusSrc1Alpha = OpenTK.Graphics.OpenGL4.All.OneMinusSrc1Alpha; - var _MaxDualSourceDrawBuffers = OpenTK.Graphics.OpenGL4.All.MaxDualSourceDrawBuffers; - var _VertexAttribArrayInteger = OpenTK.Graphics.OpenGL4.All.VertexAttribArrayInteger; - var _ArrayDivisor = OpenTK.Graphics.OpenGL4.All.ArrayDivisor; - var _VertexAttribArrayDivisor = OpenTK.Graphics.OpenGL4.All.VertexAttribArrayDivisor; - var _MaxArrayTextureLayers = OpenTK.Graphics.OpenGL4.All.MaxArrayTextureLayers; - var _MinProgramTexelOffset = OpenTK.Graphics.OpenGL4.All.MinProgramTexelOffset; - var _MaxProgramTexelOffset = OpenTK.Graphics.OpenGL4.All.MaxProgramTexelOffset; - var _SamplesPassed = OpenTK.Graphics.OpenGL4.All.SamplesPassed; - var _GeometryVerticesOut = OpenTK.Graphics.OpenGL4.All.GeometryVerticesOut; - var _GeometryInputType = OpenTK.Graphics.OpenGL4.All.GeometryInputType; - var _GeometryOutputType = OpenTK.Graphics.OpenGL4.All.GeometryOutputType; - var _SamplerBinding = OpenTK.Graphics.OpenGL4.All.SamplerBinding; - var _ClampVertexColor = OpenTK.Graphics.OpenGL4.All.ClampVertexColor; - var _ClampFragmentColor = OpenTK.Graphics.OpenGL4.All.ClampFragmentColor; - var _ClampReadColor = OpenTK.Graphics.OpenGL4.All.ClampReadColor; - var _FixedOnly = OpenTK.Graphics.OpenGL4.All.FixedOnly; - var _PackResampleOml = OpenTK.Graphics.OpenGL4.All.PackResampleOml; - var _UnpackResampleOml = OpenTK.Graphics.OpenGL4.All.UnpackResampleOml; - var _UniformBuffer = OpenTK.Graphics.OpenGL4.All.UniformBuffer; - var _UniformBufferBinding = OpenTK.Graphics.OpenGL4.All.UniformBufferBinding; - var _UniformBufferStart = OpenTK.Graphics.OpenGL4.All.UniformBufferStart; - var _UniformBufferSize = OpenTK.Graphics.OpenGL4.All.UniformBufferSize; - var _MaxVertexUniformBlocks = OpenTK.Graphics.OpenGL4.All.MaxVertexUniformBlocks; - var _MaxGeometryUniformBlocks = OpenTK.Graphics.OpenGL4.All.MaxGeometryUniformBlocks; - var _MaxFragmentUniformBlocks = OpenTK.Graphics.OpenGL4.All.MaxFragmentUniformBlocks; - var _MaxCombinedUniformBlocks = OpenTK.Graphics.OpenGL4.All.MaxCombinedUniformBlocks; - var _MaxUniformBufferBindings = OpenTK.Graphics.OpenGL4.All.MaxUniformBufferBindings; - var _MaxUniformBlockSize = OpenTK.Graphics.OpenGL4.All.MaxUniformBlockSize; - var _MaxCombinedVertexUniformComponents = OpenTK.Graphics.OpenGL4.All.MaxCombinedVertexUniformComponents; - var _MaxCombinedGeometryUniformComponents = OpenTK.Graphics.OpenGL4.All.MaxCombinedGeometryUniformComponents; - var _MaxCombinedFragmentUniformComponents = OpenTK.Graphics.OpenGL4.All.MaxCombinedFragmentUniformComponents; - var _UniformBufferOffsetAlignment = OpenTK.Graphics.OpenGL4.All.UniformBufferOffsetAlignment; - var _ActiveUniformBlockMaxNameLength = OpenTK.Graphics.OpenGL4.All.ActiveUniformBlockMaxNameLength; - var _ActiveUniformBlocks = OpenTK.Graphics.OpenGL4.All.ActiveUniformBlocks; - var _UniformType = OpenTK.Graphics.OpenGL4.All.UniformType; - var _UniformSize = OpenTK.Graphics.OpenGL4.All.UniformSize; - var _UniformNameLength = OpenTK.Graphics.OpenGL4.All.UniformNameLength; - var _UniformBlockIndex = OpenTK.Graphics.OpenGL4.All.UniformBlockIndex; - var _UniformOffset = OpenTK.Graphics.OpenGL4.All.UniformOffset; - var _UniformArrayStride = OpenTK.Graphics.OpenGL4.All.UniformArrayStride; - var _UniformMatrixStride = OpenTK.Graphics.OpenGL4.All.UniformMatrixStride; - var _UniformIsRowMajor = OpenTK.Graphics.OpenGL4.All.UniformIsRowMajor; - var _UniformBlockBinding = OpenTK.Graphics.OpenGL4.All.UniformBlockBinding; - var _UniformBlockDataSize = OpenTK.Graphics.OpenGL4.All.UniformBlockDataSize; - var _UniformBlockNameLength = OpenTK.Graphics.OpenGL4.All.UniformBlockNameLength; - var _UniformBlockActiveUniforms = OpenTK.Graphics.OpenGL4.All.UniformBlockActiveUniforms; - var _UniformBlockActiveUniformIndices = OpenTK.Graphics.OpenGL4.All.UniformBlockActiveUniformIndices; - var _UniformBlockReferencedByVertexShader = OpenTK.Graphics.OpenGL4.All.UniformBlockReferencedByVertexShader; - var _UniformBlockReferencedByGeometryShader = OpenTK.Graphics.OpenGL4.All.UniformBlockReferencedByGeometryShader; - var _UniformBlockReferencedByFragmentShader = OpenTK.Graphics.OpenGL4.All.UniformBlockReferencedByFragmentShader; - var _FragmentShader = OpenTK.Graphics.OpenGL4.All.FragmentShader; - var _VertexShader = OpenTK.Graphics.OpenGL4.All.VertexShader; - var _MaxFragmentUniformComponents = OpenTK.Graphics.OpenGL4.All.MaxFragmentUniformComponents; - var _MaxVertexUniformComponents = OpenTK.Graphics.OpenGL4.All.MaxVertexUniformComponents; - var _MaxVaryingComponents = OpenTK.Graphics.OpenGL4.All.MaxVaryingComponents; - var _MaxVaryingFloats = OpenTK.Graphics.OpenGL4.All.MaxVaryingFloats; - var _MaxVertexTextureImageUnits = OpenTK.Graphics.OpenGL4.All.MaxVertexTextureImageUnits; - var _MaxCombinedTextureImageUnits = OpenTK.Graphics.OpenGL4.All.MaxCombinedTextureImageUnits; - var _ShaderType = OpenTK.Graphics.OpenGL4.All.ShaderType; - var _FloatVec2 = OpenTK.Graphics.OpenGL4.All.FloatVec2; - var _FloatVec3 = OpenTK.Graphics.OpenGL4.All.FloatVec3; - var _FloatVec4 = OpenTK.Graphics.OpenGL4.All.FloatVec4; - var _IntVec2 = OpenTK.Graphics.OpenGL4.All.IntVec2; - var _IntVec3 = OpenTK.Graphics.OpenGL4.All.IntVec3; - var _IntVec4 = OpenTK.Graphics.OpenGL4.All.IntVec4; - var _Bool = OpenTK.Graphics.OpenGL4.All.Bool; - var _BoolVec2 = OpenTK.Graphics.OpenGL4.All.BoolVec2; - var _BoolVec3 = OpenTK.Graphics.OpenGL4.All.BoolVec3; - var _BoolVec4 = OpenTK.Graphics.OpenGL4.All.BoolVec4; - var _FloatMat2 = OpenTK.Graphics.OpenGL4.All.FloatMat2; - var _FloatMat3 = OpenTK.Graphics.OpenGL4.All.FloatMat3; - var _FloatMat4 = OpenTK.Graphics.OpenGL4.All.FloatMat4; - var _Sampler1D = OpenTK.Graphics.OpenGL4.All.Sampler1D; - var _Sampler2D = OpenTK.Graphics.OpenGL4.All.Sampler2D; - var _Sampler3D = OpenTK.Graphics.OpenGL4.All.Sampler3D; - var _SamplerCube = OpenTK.Graphics.OpenGL4.All.SamplerCube; - var _Sampler1DShadow = OpenTK.Graphics.OpenGL4.All.Sampler1DShadow; - var _Sampler2DShadow = OpenTK.Graphics.OpenGL4.All.Sampler2DShadow; - var _Sampler2DRect = OpenTK.Graphics.OpenGL4.All.Sampler2DRect; - var _Sampler2DRectShadow = OpenTK.Graphics.OpenGL4.All.Sampler2DRectShadow; - var _FloatMat2x3 = OpenTK.Graphics.OpenGL4.All.FloatMat2x3; - var _FloatMat2x4 = OpenTK.Graphics.OpenGL4.All.FloatMat2x4; - var _FloatMat3x2 = OpenTK.Graphics.OpenGL4.All.FloatMat3x2; - var _FloatMat3x4 = OpenTK.Graphics.OpenGL4.All.FloatMat3x4; - var _FloatMat4x2 = OpenTK.Graphics.OpenGL4.All.FloatMat4x2; - var _FloatMat4x3 = OpenTK.Graphics.OpenGL4.All.FloatMat4x3; - var _DeleteStatus = OpenTK.Graphics.OpenGL4.All.DeleteStatus; - var _CompileStatus = OpenTK.Graphics.OpenGL4.All.CompileStatus; - var _LinkStatus = OpenTK.Graphics.OpenGL4.All.LinkStatus; - var _ValidateStatus = OpenTK.Graphics.OpenGL4.All.ValidateStatus; - var _InfoLogLength = OpenTK.Graphics.OpenGL4.All.InfoLogLength; - var _AttachedShaders = OpenTK.Graphics.OpenGL4.All.AttachedShaders; - var _ActiveUniforms = OpenTK.Graphics.OpenGL4.All.ActiveUniforms; - var _ActiveUniformMaxLength = OpenTK.Graphics.OpenGL4.All.ActiveUniformMaxLength; - var _ShaderSourceLength = OpenTK.Graphics.OpenGL4.All.ShaderSourceLength; - var _ActiveAttributes = OpenTK.Graphics.OpenGL4.All.ActiveAttributes; - var _ActiveAttributeMaxLength = OpenTK.Graphics.OpenGL4.All.ActiveAttributeMaxLength; - var _FragmentShaderDerivativeHint = OpenTK.Graphics.OpenGL4.All.FragmentShaderDerivativeHint; - var _FragmentShaderDerivativeHintArb = OpenTK.Graphics.OpenGL4.All.FragmentShaderDerivativeHintArb; - var _FragmentShaderDerivativeHintOes = OpenTK.Graphics.OpenGL4.All.FragmentShaderDerivativeHintOes; - var _ShadingLanguageVersion = OpenTK.Graphics.OpenGL4.All.ShadingLanguageVersion; - var _CurrentProgram = OpenTK.Graphics.OpenGL4.All.CurrentProgram; - var _ImplementationColorReadType = OpenTK.Graphics.OpenGL4.All.ImplementationColorReadType; - var _ImplementationColorReadFormat = OpenTK.Graphics.OpenGL4.All.ImplementationColorReadFormat; - var _TextureRedType = OpenTK.Graphics.OpenGL4.All.TextureRedType; - var _TextureGreenType = OpenTK.Graphics.OpenGL4.All.TextureGreenType; - var _TextureBlueType = OpenTK.Graphics.OpenGL4.All.TextureBlueType; - var _TextureAlphaType = OpenTK.Graphics.OpenGL4.All.TextureAlphaType; - var _TextureLuminanceType = OpenTK.Graphics.OpenGL4.All.TextureLuminanceType; - var _TextureIntensityType = OpenTK.Graphics.OpenGL4.All.TextureIntensityType; - var _TextureDepthType = OpenTK.Graphics.OpenGL4.All.TextureDepthType; - var _UnsignedNormalized = OpenTK.Graphics.OpenGL4.All.UnsignedNormalized; - var _Texture1DArray = OpenTK.Graphics.OpenGL4.All.Texture1DArray; - var _ProxyTexture1DArray = OpenTK.Graphics.OpenGL4.All.ProxyTexture1DArray; - var _Texture2DArray = OpenTK.Graphics.OpenGL4.All.Texture2DArray; - var _ProxyTexture2DArray = OpenTK.Graphics.OpenGL4.All.ProxyTexture2DArray; - var _TextureBinding1DArray = OpenTK.Graphics.OpenGL4.All.TextureBinding1DArray; - var _TextureBinding2DArray = OpenTK.Graphics.OpenGL4.All.TextureBinding2DArray; - var _MaxGeometryTextureImageUnits = OpenTK.Graphics.OpenGL4.All.MaxGeometryTextureImageUnits; - var _TextureBuffer = OpenTK.Graphics.OpenGL4.All.TextureBuffer; - var _TextureBufferBinding = OpenTK.Graphics.OpenGL4.All.TextureBufferBinding; - var _MaxTextureBufferSize = OpenTK.Graphics.OpenGL4.All.MaxTextureBufferSize; - var _TextureBindingBuffer = OpenTK.Graphics.OpenGL4.All.TextureBindingBuffer; - var _TextureBufferDataStoreBinding = OpenTK.Graphics.OpenGL4.All.TextureBufferDataStoreBinding; - var _AnySamplesPassed = OpenTK.Graphics.OpenGL4.All.AnySamplesPassed; - var _SampleShading = OpenTK.Graphics.OpenGL4.All.SampleShading; - var _SampleShadingArb = OpenTK.Graphics.OpenGL4.All.SampleShadingArb; - var _MinSampleShadingValue = OpenTK.Graphics.OpenGL4.All.MinSampleShadingValue; - var _MinSampleShadingValueArb = OpenTK.Graphics.OpenGL4.All.MinSampleShadingValueArb; - var _R11fG11fB10f = OpenTK.Graphics.OpenGL4.All.R11fG11fB10f; - var _UnsignedInt10F11F11FRev = OpenTK.Graphics.OpenGL4.All.UnsignedInt10F11F11FRev; - var _Rgb9E5 = OpenTK.Graphics.OpenGL4.All.Rgb9E5; - var _UnsignedInt5999Rev = OpenTK.Graphics.OpenGL4.All.UnsignedInt5999Rev; - var _TextureSharedSize = OpenTK.Graphics.OpenGL4.All.TextureSharedSize; - var _Srgb = OpenTK.Graphics.OpenGL4.All.Srgb; - var _Srgb8 = OpenTK.Graphics.OpenGL4.All.Srgb8; - var _SrgbAlpha = OpenTK.Graphics.OpenGL4.All.SrgbAlpha; - var _Srgb8Alpha8 = OpenTK.Graphics.OpenGL4.All.Srgb8Alpha8; - var _SluminanceAlpha = OpenTK.Graphics.OpenGL4.All.SluminanceAlpha; - var _Sluminance8Alpha8 = OpenTK.Graphics.OpenGL4.All.Sluminance8Alpha8; - var _Sluminance = OpenTK.Graphics.OpenGL4.All.Sluminance; - var _Sluminance8 = OpenTK.Graphics.OpenGL4.All.Sluminance8; - var _CompressedSrgb = OpenTK.Graphics.OpenGL4.All.CompressedSrgb; - var _CompressedSrgbAlpha = OpenTK.Graphics.OpenGL4.All.CompressedSrgbAlpha; - var _CompressedSluminance = OpenTK.Graphics.OpenGL4.All.CompressedSluminance; - var _CompressedSluminanceAlpha = OpenTK.Graphics.OpenGL4.All.CompressedSluminanceAlpha; - var _CompressedSrgbS3tcDxt1Ext = OpenTK.Graphics.OpenGL4.All.CompressedSrgbS3tcDxt1Ext; - var _CompressedSrgbAlphaS3tcDxt1Ext = OpenTK.Graphics.OpenGL4.All.CompressedSrgbAlphaS3tcDxt1Ext; - var _CompressedSrgbAlphaS3tcDxt3Ext = OpenTK.Graphics.OpenGL4.All.CompressedSrgbAlphaS3tcDxt3Ext; - var _CompressedSrgbAlphaS3tcDxt5Ext = OpenTK.Graphics.OpenGL4.All.CompressedSrgbAlphaS3tcDxt5Ext; - var _TransformFeedbackVaryingMaxLength = OpenTK.Graphics.OpenGL4.All.TransformFeedbackVaryingMaxLength; - var _TransformFeedbackBufferMode = OpenTK.Graphics.OpenGL4.All.TransformFeedbackBufferMode; - var _MaxTransformFeedbackSeparateComponents = OpenTK.Graphics.OpenGL4.All.MaxTransformFeedbackSeparateComponents; - var _TransformFeedbackVaryings = OpenTK.Graphics.OpenGL4.All.TransformFeedbackVaryings; - var _TransformFeedbackBufferStart = OpenTK.Graphics.OpenGL4.All.TransformFeedbackBufferStart; - var _TransformFeedbackBufferSize = OpenTK.Graphics.OpenGL4.All.TransformFeedbackBufferSize; - var _PrimitivesGenerated = OpenTK.Graphics.OpenGL4.All.PrimitivesGenerated; - var _TransformFeedbackPrimitivesWritten = OpenTK.Graphics.OpenGL4.All.TransformFeedbackPrimitivesWritten; - var _RasterizerDiscard = OpenTK.Graphics.OpenGL4.All.RasterizerDiscard; - var _MaxTransformFeedbackInterleavedComponents = OpenTK.Graphics.OpenGL4.All.MaxTransformFeedbackInterleavedComponents; - var _MaxTransformFeedbackSeparateAttribs = OpenTK.Graphics.OpenGL4.All.MaxTransformFeedbackSeparateAttribs; - var _InterleavedAttribs = OpenTK.Graphics.OpenGL4.All.InterleavedAttribs; - var _SeparateAttribs = OpenTK.Graphics.OpenGL4.All.SeparateAttribs; - var _TransformFeedbackBuffer = OpenTK.Graphics.OpenGL4.All.TransformFeedbackBuffer; - var _TransformFeedbackBufferBinding = OpenTK.Graphics.OpenGL4.All.TransformFeedbackBufferBinding; - var _PointSpriteCoordOrigin = OpenTK.Graphics.OpenGL4.All.PointSpriteCoordOrigin; - var _LowerLeft = OpenTK.Graphics.OpenGL4.All.LowerLeft; - var _UpperLeft = OpenTK.Graphics.OpenGL4.All.UpperLeft; - var _StencilBackRef = OpenTK.Graphics.OpenGL4.All.StencilBackRef; - var _StencilBackValueMask = OpenTK.Graphics.OpenGL4.All.StencilBackValueMask; - var _StencilBackWritemask = OpenTK.Graphics.OpenGL4.All.StencilBackWritemask; - var _DrawFramebufferBinding = OpenTK.Graphics.OpenGL4.All.DrawFramebufferBinding; - var _FramebufferBinding = OpenTK.Graphics.OpenGL4.All.FramebufferBinding; - var _FramebufferBindingExt = OpenTK.Graphics.OpenGL4.All.FramebufferBindingExt; - var _RenderbufferBinding = OpenTK.Graphics.OpenGL4.All.RenderbufferBinding; - var _RenderbufferBindingExt = OpenTK.Graphics.OpenGL4.All.RenderbufferBindingExt; - var _ReadFramebuffer = OpenTK.Graphics.OpenGL4.All.ReadFramebuffer; - var _DrawFramebuffer = OpenTK.Graphics.OpenGL4.All.DrawFramebuffer; - var _ReadFramebufferBinding = OpenTK.Graphics.OpenGL4.All.ReadFramebufferBinding; - var _RenderbufferSamples = OpenTK.Graphics.OpenGL4.All.RenderbufferSamples; - var _DepthComponent32f = OpenTK.Graphics.OpenGL4.All.DepthComponent32f; - var _Depth32fStencil8 = OpenTK.Graphics.OpenGL4.All.Depth32fStencil8; - var _FramebufferAttachmentObjectType = OpenTK.Graphics.OpenGL4.All.FramebufferAttachmentObjectType; - var _FramebufferAttachmentObjectTypeExt = OpenTK.Graphics.OpenGL4.All.FramebufferAttachmentObjectTypeExt; - var _FramebufferAttachmentObjectName = OpenTK.Graphics.OpenGL4.All.FramebufferAttachmentObjectName; - var _FramebufferAttachmentObjectNameExt = OpenTK.Graphics.OpenGL4.All.FramebufferAttachmentObjectNameExt; - var _FramebufferAttachmentTextureLevel = OpenTK.Graphics.OpenGL4.All.FramebufferAttachmentTextureLevel; - var _FramebufferAttachmentTextureLevelExt = OpenTK.Graphics.OpenGL4.All.FramebufferAttachmentTextureLevelExt; - var _FramebufferAttachmentTextureCubeMapFace = OpenTK.Graphics.OpenGL4.All.FramebufferAttachmentTextureCubeMapFace; - var _FramebufferAttachmentTextureCubeMapFaceExt = OpenTK.Graphics.OpenGL4.All.FramebufferAttachmentTextureCubeMapFaceExt; - var _FramebufferAttachmentTexture3DZoffsetExt = OpenTK.Graphics.OpenGL4.All.FramebufferAttachmentTexture3DZoffsetExt; - var _FramebufferAttachmentTextureLayer = OpenTK.Graphics.OpenGL4.All.FramebufferAttachmentTextureLayer; - var _FramebufferComplete = OpenTK.Graphics.OpenGL4.All.FramebufferComplete; - var _FramebufferCompleteExt = OpenTK.Graphics.OpenGL4.All.FramebufferCompleteExt; - var _FramebufferIncompleteAttachment = OpenTK.Graphics.OpenGL4.All.FramebufferIncompleteAttachment; - var _FramebufferIncompleteAttachmentExt = OpenTK.Graphics.OpenGL4.All.FramebufferIncompleteAttachmentExt; - var _FramebufferIncompleteMissingAttachment = OpenTK.Graphics.OpenGL4.All.FramebufferIncompleteMissingAttachment; - var _FramebufferIncompleteMissingAttachmentExt = OpenTK.Graphics.OpenGL4.All.FramebufferIncompleteMissingAttachmentExt; - var _FramebufferIncompleteDimensionsExt = OpenTK.Graphics.OpenGL4.All.FramebufferIncompleteDimensionsExt; - var _FramebufferIncompleteFormatsExt = OpenTK.Graphics.OpenGL4.All.FramebufferIncompleteFormatsExt; - var _FramebufferIncompleteDrawBuffer = OpenTK.Graphics.OpenGL4.All.FramebufferIncompleteDrawBuffer; - var _FramebufferIncompleteDrawBufferExt = OpenTK.Graphics.OpenGL4.All.FramebufferIncompleteDrawBufferExt; - var _FramebufferIncompleteReadBuffer = OpenTK.Graphics.OpenGL4.All.FramebufferIncompleteReadBuffer; - var _FramebufferIncompleteReadBufferExt = OpenTK.Graphics.OpenGL4.All.FramebufferIncompleteReadBufferExt; - var _FramebufferUnsupported = OpenTK.Graphics.OpenGL4.All.FramebufferUnsupported; - var _FramebufferUnsupportedExt = OpenTK.Graphics.OpenGL4.All.FramebufferUnsupportedExt; - var _MaxColorAttachments = OpenTK.Graphics.OpenGL4.All.MaxColorAttachments; - var _MaxColorAttachmentsExt = OpenTK.Graphics.OpenGL4.All.MaxColorAttachmentsExt; - var _ColorAttachment0 = OpenTK.Graphics.OpenGL4.All.ColorAttachment0; - var _ColorAttachment0Ext = OpenTK.Graphics.OpenGL4.All.ColorAttachment0Ext; - var _ColorAttachment1 = OpenTK.Graphics.OpenGL4.All.ColorAttachment1; - var _ColorAttachment1Ext = OpenTK.Graphics.OpenGL4.All.ColorAttachment1Ext; - var _ColorAttachment2 = OpenTK.Graphics.OpenGL4.All.ColorAttachment2; - var _ColorAttachment2Ext = OpenTK.Graphics.OpenGL4.All.ColorAttachment2Ext; - var _ColorAttachment3 = OpenTK.Graphics.OpenGL4.All.ColorAttachment3; - var _ColorAttachment3Ext = OpenTK.Graphics.OpenGL4.All.ColorAttachment3Ext; - var _ColorAttachment4 = OpenTK.Graphics.OpenGL4.All.ColorAttachment4; - var _ColorAttachment4Ext = OpenTK.Graphics.OpenGL4.All.ColorAttachment4Ext; - var _ColorAttachment5 = OpenTK.Graphics.OpenGL4.All.ColorAttachment5; - var _ColorAttachment5Ext = OpenTK.Graphics.OpenGL4.All.ColorAttachment5Ext; - var _ColorAttachment6 = OpenTK.Graphics.OpenGL4.All.ColorAttachment6; - var _ColorAttachment6Ext = OpenTK.Graphics.OpenGL4.All.ColorAttachment6Ext; - var _ColorAttachment7 = OpenTK.Graphics.OpenGL4.All.ColorAttachment7; - var _ColorAttachment7Ext = OpenTK.Graphics.OpenGL4.All.ColorAttachment7Ext; - var _ColorAttachment8 = OpenTK.Graphics.OpenGL4.All.ColorAttachment8; - var _ColorAttachment8Ext = OpenTK.Graphics.OpenGL4.All.ColorAttachment8Ext; - var _ColorAttachment9 = OpenTK.Graphics.OpenGL4.All.ColorAttachment9; - var _ColorAttachment9Ext = OpenTK.Graphics.OpenGL4.All.ColorAttachment9Ext; - var _ColorAttachment10 = OpenTK.Graphics.OpenGL4.All.ColorAttachment10; - var _ColorAttachment10Ext = OpenTK.Graphics.OpenGL4.All.ColorAttachment10Ext; - var _ColorAttachment11 = OpenTK.Graphics.OpenGL4.All.ColorAttachment11; - var _ColorAttachment11Ext = OpenTK.Graphics.OpenGL4.All.ColorAttachment11Ext; - var _ColorAttachment12 = OpenTK.Graphics.OpenGL4.All.ColorAttachment12; - var _ColorAttachment12Ext = OpenTK.Graphics.OpenGL4.All.ColorAttachment12Ext; - var _ColorAttachment13 = OpenTK.Graphics.OpenGL4.All.ColorAttachment13; - var _ColorAttachment13Ext = OpenTK.Graphics.OpenGL4.All.ColorAttachment13Ext; - var _ColorAttachment14 = OpenTK.Graphics.OpenGL4.All.ColorAttachment14; - var _ColorAttachment14Ext = OpenTK.Graphics.OpenGL4.All.ColorAttachment14Ext; - var _ColorAttachment15 = OpenTK.Graphics.OpenGL4.All.ColorAttachment15; - var _ColorAttachment15Ext = OpenTK.Graphics.OpenGL4.All.ColorAttachment15Ext; - var _DepthAttachment = OpenTK.Graphics.OpenGL4.All.DepthAttachment; - var _DepthAttachmentExt = OpenTK.Graphics.OpenGL4.All.DepthAttachmentExt; - var _StencilAttachment = OpenTK.Graphics.OpenGL4.All.StencilAttachment; - var _StencilAttachmentExt = OpenTK.Graphics.OpenGL4.All.StencilAttachmentExt; - var _Framebuffer = OpenTK.Graphics.OpenGL4.All.Framebuffer; - var _FramebufferExt = OpenTK.Graphics.OpenGL4.All.FramebufferExt; - var _Renderbuffer = OpenTK.Graphics.OpenGL4.All.Renderbuffer; - var _RenderbufferExt = OpenTK.Graphics.OpenGL4.All.RenderbufferExt; - var _RenderbufferWidth = OpenTK.Graphics.OpenGL4.All.RenderbufferWidth; - var _RenderbufferWidthExt = OpenTK.Graphics.OpenGL4.All.RenderbufferWidthExt; - var _RenderbufferHeight = OpenTK.Graphics.OpenGL4.All.RenderbufferHeight; - var _RenderbufferHeightExt = OpenTK.Graphics.OpenGL4.All.RenderbufferHeightExt; - var _RenderbufferInternalFormat = OpenTK.Graphics.OpenGL4.All.RenderbufferInternalFormat; - var _RenderbufferInternalFormatExt = OpenTK.Graphics.OpenGL4.All.RenderbufferInternalFormatExt; - var _StencilIndex1 = OpenTK.Graphics.OpenGL4.All.StencilIndex1; - var _StencilIndex1Ext = OpenTK.Graphics.OpenGL4.All.StencilIndex1Ext; - var _StencilIndex4 = OpenTK.Graphics.OpenGL4.All.StencilIndex4; - var _StencilIndex4Ext = OpenTK.Graphics.OpenGL4.All.StencilIndex4Ext; - var _StencilIndex8 = OpenTK.Graphics.OpenGL4.All.StencilIndex8; - var _StencilIndex8Ext = OpenTK.Graphics.OpenGL4.All.StencilIndex8Ext; - var _StencilIndex16 = OpenTK.Graphics.OpenGL4.All.StencilIndex16; - var _StencilIndex16Ext = OpenTK.Graphics.OpenGL4.All.StencilIndex16Ext; - var _RenderbufferRedSize = OpenTK.Graphics.OpenGL4.All.RenderbufferRedSize; - var _RenderbufferRedSizeExt = OpenTK.Graphics.OpenGL4.All.RenderbufferRedSizeExt; - var _RenderbufferGreenSize = OpenTK.Graphics.OpenGL4.All.RenderbufferGreenSize; - var _RenderbufferGreenSizeExt = OpenTK.Graphics.OpenGL4.All.RenderbufferGreenSizeExt; - var _RenderbufferBlueSize = OpenTK.Graphics.OpenGL4.All.RenderbufferBlueSize; - var _RenderbufferBlueSizeExt = OpenTK.Graphics.OpenGL4.All.RenderbufferBlueSizeExt; - var _RenderbufferAlphaSize = OpenTK.Graphics.OpenGL4.All.RenderbufferAlphaSize; - var _RenderbufferAlphaSizeExt = OpenTK.Graphics.OpenGL4.All.RenderbufferAlphaSizeExt; - var _RenderbufferDepthSize = OpenTK.Graphics.OpenGL4.All.RenderbufferDepthSize; - var _RenderbufferDepthSizeExt = OpenTK.Graphics.OpenGL4.All.RenderbufferDepthSizeExt; - var _RenderbufferStencilSize = OpenTK.Graphics.OpenGL4.All.RenderbufferStencilSize; - var _RenderbufferStencilSizeExt = OpenTK.Graphics.OpenGL4.All.RenderbufferStencilSizeExt; - var _FramebufferIncompleteMultisample = OpenTK.Graphics.OpenGL4.All.FramebufferIncompleteMultisample; - var _MaxSamples = OpenTK.Graphics.OpenGL4.All.MaxSamples; - var _Rgb565 = OpenTK.Graphics.OpenGL4.All.Rgb565; - var _PrimitiveRestartFixedIndex = OpenTK.Graphics.OpenGL4.All.PrimitiveRestartFixedIndex; - var _AnySamplesPassedConservative = OpenTK.Graphics.OpenGL4.All.AnySamplesPassedConservative; - var _MaxElementIndex = OpenTK.Graphics.OpenGL4.All.MaxElementIndex; - var _Rgba32ui = OpenTK.Graphics.OpenGL4.All.Rgba32ui; - var _Rgb32ui = OpenTK.Graphics.OpenGL4.All.Rgb32ui; - var _Rgba16ui = OpenTK.Graphics.OpenGL4.All.Rgba16ui; - var _Rgb16ui = OpenTK.Graphics.OpenGL4.All.Rgb16ui; - var _Rgba8ui = OpenTK.Graphics.OpenGL4.All.Rgba8ui; - var _Rgb8ui = OpenTK.Graphics.OpenGL4.All.Rgb8ui; - var _Rgba32i = OpenTK.Graphics.OpenGL4.All.Rgba32i; - var _Rgb32i = OpenTK.Graphics.OpenGL4.All.Rgb32i; - var _Rgba16i = OpenTK.Graphics.OpenGL4.All.Rgba16i; - var _Rgb16i = OpenTK.Graphics.OpenGL4.All.Rgb16i; - var _Rgba8i = OpenTK.Graphics.OpenGL4.All.Rgba8i; - var _Rgb8i = OpenTK.Graphics.OpenGL4.All.Rgb8i; - var _RedInteger = OpenTK.Graphics.OpenGL4.All.RedInteger; - var _GreenInteger = OpenTK.Graphics.OpenGL4.All.GreenInteger; - var _BlueInteger = OpenTK.Graphics.OpenGL4.All.BlueInteger; - var _AlphaInteger = OpenTK.Graphics.OpenGL4.All.AlphaInteger; - var _RgbInteger = OpenTK.Graphics.OpenGL4.All.RgbInteger; - var _RgbaInteger = OpenTK.Graphics.OpenGL4.All.RgbaInteger; - var _BgrInteger = OpenTK.Graphics.OpenGL4.All.BgrInteger; - var _BgraInteger = OpenTK.Graphics.OpenGL4.All.BgraInteger; - var _Int2101010Rev = OpenTK.Graphics.OpenGL4.All.Int2101010Rev; - var _FramebufferAttachmentLayered = OpenTK.Graphics.OpenGL4.All.FramebufferAttachmentLayered; - var _FramebufferIncompleteLayerTargets = OpenTK.Graphics.OpenGL4.All.FramebufferIncompleteLayerTargets; - var _FramebufferIncompleteLayerCount = OpenTK.Graphics.OpenGL4.All.FramebufferIncompleteLayerCount; - var _Float32UnsignedInt248Rev = OpenTK.Graphics.OpenGL4.All.Float32UnsignedInt248Rev; - var _ShaderIncludeArb = OpenTK.Graphics.OpenGL4.All.ShaderIncludeArb; - var _FramebufferSrgb = OpenTK.Graphics.OpenGL4.All.FramebufferSrgb; - var _CompressedRedRgtc1 = OpenTK.Graphics.OpenGL4.All.CompressedRedRgtc1; - var _CompressedSignedRedRgtc1 = OpenTK.Graphics.OpenGL4.All.CompressedSignedRedRgtc1; - var _CompressedRgRgtc2 = OpenTK.Graphics.OpenGL4.All.CompressedRgRgtc2; - var _CompressedSignedRgRgtc2 = OpenTK.Graphics.OpenGL4.All.CompressedSignedRgRgtc2; - var _Sampler1DArray = OpenTK.Graphics.OpenGL4.All.Sampler1DArray; - var _Sampler2DArray = OpenTK.Graphics.OpenGL4.All.Sampler2DArray; - var _SamplerBuffer = OpenTK.Graphics.OpenGL4.All.SamplerBuffer; - var _Sampler1DArrayShadow = OpenTK.Graphics.OpenGL4.All.Sampler1DArrayShadow; - var _Sampler2DArrayShadow = OpenTK.Graphics.OpenGL4.All.Sampler2DArrayShadow; - var _SamplerCubeShadow = OpenTK.Graphics.OpenGL4.All.SamplerCubeShadow; - var _UnsignedIntVec2 = OpenTK.Graphics.OpenGL4.All.UnsignedIntVec2; - var _UnsignedIntVec3 = OpenTK.Graphics.OpenGL4.All.UnsignedIntVec3; - var _UnsignedIntVec4 = OpenTK.Graphics.OpenGL4.All.UnsignedIntVec4; - var _IntSampler1D = OpenTK.Graphics.OpenGL4.All.IntSampler1D; - var _IntSampler2D = OpenTK.Graphics.OpenGL4.All.IntSampler2D; - var _IntSampler3D = OpenTK.Graphics.OpenGL4.All.IntSampler3D; - var _IntSamplerCube = OpenTK.Graphics.OpenGL4.All.IntSamplerCube; - var _IntSampler2DRect = OpenTK.Graphics.OpenGL4.All.IntSampler2DRect; - var _IntSampler1DArray = OpenTK.Graphics.OpenGL4.All.IntSampler1DArray; - var _IntSampler2DArray = OpenTK.Graphics.OpenGL4.All.IntSampler2DArray; - var _IntSamplerBuffer = OpenTK.Graphics.OpenGL4.All.IntSamplerBuffer; - var _UnsignedIntSampler1D = OpenTK.Graphics.OpenGL4.All.UnsignedIntSampler1D; - var _UnsignedIntSampler2D = OpenTK.Graphics.OpenGL4.All.UnsignedIntSampler2D; - var _UnsignedIntSampler3D = OpenTK.Graphics.OpenGL4.All.UnsignedIntSampler3D; - var _UnsignedIntSamplerCube = OpenTK.Graphics.OpenGL4.All.UnsignedIntSamplerCube; - var _UnsignedIntSampler2DRect = OpenTK.Graphics.OpenGL4.All.UnsignedIntSampler2DRect; - var _UnsignedIntSampler1DArray = OpenTK.Graphics.OpenGL4.All.UnsignedIntSampler1DArray; - var _UnsignedIntSampler2DArray = OpenTK.Graphics.OpenGL4.All.UnsignedIntSampler2DArray; - var _UnsignedIntSamplerBuffer = OpenTK.Graphics.OpenGL4.All.UnsignedIntSamplerBuffer; - var _GeometryShader = OpenTK.Graphics.OpenGL4.All.GeometryShader; - var _MaxGeometryVaryingComponents = OpenTK.Graphics.OpenGL4.All.MaxGeometryVaryingComponents; - var _MaxVertexVaryingComponents = OpenTK.Graphics.OpenGL4.All.MaxVertexVaryingComponents; - var _MaxGeometryUniformComponents = OpenTK.Graphics.OpenGL4.All.MaxGeometryUniformComponents; - var _MaxGeometryOutputVertices = OpenTK.Graphics.OpenGL4.All.MaxGeometryOutputVertices; - var _MaxGeometryTotalOutputComponents = OpenTK.Graphics.OpenGL4.All.MaxGeometryTotalOutputComponents; - var _ActiveSubroutines = OpenTK.Graphics.OpenGL4.All.ActiveSubroutines; - var _ActiveSubroutineUniforms = OpenTK.Graphics.OpenGL4.All.ActiveSubroutineUniforms; - var _MaxSubroutines = OpenTK.Graphics.OpenGL4.All.MaxSubroutines; - var _MaxSubroutineUniformLocations = OpenTK.Graphics.OpenGL4.All.MaxSubroutineUniformLocations; - var _NamedStringLengthArb = OpenTK.Graphics.OpenGL4.All.NamedStringLengthArb; - var _NamedStringTypeArb = OpenTK.Graphics.OpenGL4.All.NamedStringTypeArb; - var _LowFloat = OpenTK.Graphics.OpenGL4.All.LowFloat; - var _MediumFloat = OpenTK.Graphics.OpenGL4.All.MediumFloat; - var _HighFloat = OpenTK.Graphics.OpenGL4.All.HighFloat; - var _LowInt = OpenTK.Graphics.OpenGL4.All.LowInt; - var _MediumInt = OpenTK.Graphics.OpenGL4.All.MediumInt; - var _HighInt = OpenTK.Graphics.OpenGL4.All.HighInt; - var _ShaderBinaryFormats = OpenTK.Graphics.OpenGL4.All.ShaderBinaryFormats; - var _NumShaderBinaryFormats = OpenTK.Graphics.OpenGL4.All.NumShaderBinaryFormats; - var _ShaderCompiler = OpenTK.Graphics.OpenGL4.All.ShaderCompiler; - var _MaxVertexUniformVectors = OpenTK.Graphics.OpenGL4.All.MaxVertexUniformVectors; - var _MaxVaryingVectors = OpenTK.Graphics.OpenGL4.All.MaxVaryingVectors; - var _MaxFragmentUniformVectors = OpenTK.Graphics.OpenGL4.All.MaxFragmentUniformVectors; - var _QueryWait = OpenTK.Graphics.OpenGL4.All.QueryWait; - var _QueryNoWait = OpenTK.Graphics.OpenGL4.All.QueryNoWait; - var _QueryByRegionWait = OpenTK.Graphics.OpenGL4.All.QueryByRegionWait; - var _QueryByRegionNoWait = OpenTK.Graphics.OpenGL4.All.QueryByRegionNoWait; - var _MaxCombinedTessControlUniformComponents = OpenTK.Graphics.OpenGL4.All.MaxCombinedTessControlUniformComponents; - var _MaxCombinedTessEvaluationUniformComponents = OpenTK.Graphics.OpenGL4.All.MaxCombinedTessEvaluationUniformComponents; - var _TransformFeedback = OpenTK.Graphics.OpenGL4.All.TransformFeedback; - var _TransformFeedbackBufferPaused = OpenTK.Graphics.OpenGL4.All.TransformFeedbackBufferPaused; - var _TransformFeedbackPaused = OpenTK.Graphics.OpenGL4.All.TransformFeedbackPaused; - var _TransformFeedbackActive = OpenTK.Graphics.OpenGL4.All.TransformFeedbackActive; - var _TransformFeedbackBufferActive = OpenTK.Graphics.OpenGL4.All.TransformFeedbackBufferActive; - var _TransformFeedbackBinding = OpenTK.Graphics.OpenGL4.All.TransformFeedbackBinding; - var _Timestamp = OpenTK.Graphics.OpenGL4.All.Timestamp; - var _TextureSwizzleR = OpenTK.Graphics.OpenGL4.All.TextureSwizzleR; - var _TextureSwizzleG = OpenTK.Graphics.OpenGL4.All.TextureSwizzleG; - var _TextureSwizzleB = OpenTK.Graphics.OpenGL4.All.TextureSwizzleB; - var _TextureSwizzleA = OpenTK.Graphics.OpenGL4.All.TextureSwizzleA; - var _TextureSwizzleRgba = OpenTK.Graphics.OpenGL4.All.TextureSwizzleRgba; - var _ActiveSubroutineUniformLocations = OpenTK.Graphics.OpenGL4.All.ActiveSubroutineUniformLocations; - var _ActiveSubroutineMaxLength = OpenTK.Graphics.OpenGL4.All.ActiveSubroutineMaxLength; - var _ActiveSubroutineUniformMaxLength = OpenTK.Graphics.OpenGL4.All.ActiveSubroutineUniformMaxLength; - var _NumCompatibleSubroutines = OpenTK.Graphics.OpenGL4.All.NumCompatibleSubroutines; - var _CompatibleSubroutines = OpenTK.Graphics.OpenGL4.All.CompatibleSubroutines; - var _QuadsFollowProvokingVertexConvention = OpenTK.Graphics.OpenGL4.All.QuadsFollowProvokingVertexConvention; - var _FirstVertexConvention = OpenTK.Graphics.OpenGL4.All.FirstVertexConvention; - var _LastVertexConvention = OpenTK.Graphics.OpenGL4.All.LastVertexConvention; - var _ProvokingVertex = OpenTK.Graphics.OpenGL4.All.ProvokingVertex; - var _SamplePosition = OpenTK.Graphics.OpenGL4.All.SamplePosition; - var _SampleMask = OpenTK.Graphics.OpenGL4.All.SampleMask; - var _SampleMaskValue = OpenTK.Graphics.OpenGL4.All.SampleMaskValue; - var _MaxSampleMaskWords = OpenTK.Graphics.OpenGL4.All.MaxSampleMaskWords; - var _MaxGeometryShaderInvocations = OpenTK.Graphics.OpenGL4.All.MaxGeometryShaderInvocations; - var _MinFragmentInterpolationOffset = OpenTK.Graphics.OpenGL4.All.MinFragmentInterpolationOffset; - var _MaxFragmentInterpolationOffset = OpenTK.Graphics.OpenGL4.All.MaxFragmentInterpolationOffset; - var _FragmentInterpolationOffsetBits = OpenTK.Graphics.OpenGL4.All.FragmentInterpolationOffsetBits; - var _MinProgramTextureGatherOffset = OpenTK.Graphics.OpenGL4.All.MinProgramTextureGatherOffset; - var _MinProgramTextureGatherOffsetArb = OpenTK.Graphics.OpenGL4.All.MinProgramTextureGatherOffsetArb; - var _MaxProgramTextureGatherOffset = OpenTK.Graphics.OpenGL4.All.MaxProgramTextureGatherOffset; - var _MaxProgramTextureGatherOffsetArb = OpenTK.Graphics.OpenGL4.All.MaxProgramTextureGatherOffsetArb; - var _MaxTransformFeedbackBuffers = OpenTK.Graphics.OpenGL4.All.MaxTransformFeedbackBuffers; - var _MaxVertexStreams = OpenTK.Graphics.OpenGL4.All.MaxVertexStreams; - var _PatchVertices = OpenTK.Graphics.OpenGL4.All.PatchVertices; - var _PatchDefaultInnerLevel = OpenTK.Graphics.OpenGL4.All.PatchDefaultInnerLevel; - var _PatchDefaultOuterLevel = OpenTK.Graphics.OpenGL4.All.PatchDefaultOuterLevel; - var _TessControlOutputVertices = OpenTK.Graphics.OpenGL4.All.TessControlOutputVertices; - var _TessGenMode = OpenTK.Graphics.OpenGL4.All.TessGenMode; - var _TessGenSpacing = OpenTK.Graphics.OpenGL4.All.TessGenSpacing; - var _TessGenVertexOrder = OpenTK.Graphics.OpenGL4.All.TessGenVertexOrder; - var _TessGenPointMode = OpenTK.Graphics.OpenGL4.All.TessGenPointMode; - var _Isolines = OpenTK.Graphics.OpenGL4.All.Isolines; - var _FractionalOdd = OpenTK.Graphics.OpenGL4.All.FractionalOdd; - var _FractionalEven = OpenTK.Graphics.OpenGL4.All.FractionalEven; - var _MaxPatchVertices = OpenTK.Graphics.OpenGL4.All.MaxPatchVertices; - var _MaxTessGenLevel = OpenTK.Graphics.OpenGL4.All.MaxTessGenLevel; - var _MaxTessControlUniformComponents = OpenTK.Graphics.OpenGL4.All.MaxTessControlUniformComponents; - var _MaxTessEvaluationUniformComponents = OpenTK.Graphics.OpenGL4.All.MaxTessEvaluationUniformComponents; - var _MaxTessControlTextureImageUnits = OpenTK.Graphics.OpenGL4.All.MaxTessControlTextureImageUnits; - var _MaxTessEvaluationTextureImageUnits = OpenTK.Graphics.OpenGL4.All.MaxTessEvaluationTextureImageUnits; - var _MaxTessControlOutputComponents = OpenTK.Graphics.OpenGL4.All.MaxTessControlOutputComponents; - var _MaxTessPatchComponents = OpenTK.Graphics.OpenGL4.All.MaxTessPatchComponents; - var _MaxTessControlTotalOutputComponents = OpenTK.Graphics.OpenGL4.All.MaxTessControlTotalOutputComponents; - var _MaxTessEvaluationOutputComponents = OpenTK.Graphics.OpenGL4.All.MaxTessEvaluationOutputComponents; - var _TessEvaluationShader = OpenTK.Graphics.OpenGL4.All.TessEvaluationShader; - var _TessControlShader = OpenTK.Graphics.OpenGL4.All.TessControlShader; - var _MaxTessControlUniformBlocks = OpenTK.Graphics.OpenGL4.All.MaxTessControlUniformBlocks; - var _MaxTessEvaluationUniformBlocks = OpenTK.Graphics.OpenGL4.All.MaxTessEvaluationUniformBlocks; - var _CompressedRgbaBptcUnorm = OpenTK.Graphics.OpenGL4.All.CompressedRgbaBptcUnorm; - var _CompressedRgbaBptcUnormArb = OpenTK.Graphics.OpenGL4.All.CompressedRgbaBptcUnormArb; - var _CompressedSrgbAlphaBptcUnorm = OpenTK.Graphics.OpenGL4.All.CompressedSrgbAlphaBptcUnorm; - var _CompressedSrgbAlphaBptcUnormArb = OpenTK.Graphics.OpenGL4.All.CompressedSrgbAlphaBptcUnormArb; - var _CompressedRgbBptcSignedFloat = OpenTK.Graphics.OpenGL4.All.CompressedRgbBptcSignedFloat; - var _CompressedRgbBptcSignedFloatArb = OpenTK.Graphics.OpenGL4.All.CompressedRgbBptcSignedFloatArb; - var _CompressedRgbBptcUnsignedFloat = OpenTK.Graphics.OpenGL4.All.CompressedRgbBptcUnsignedFloat; - var _CompressedRgbBptcUnsignedFloatArb = OpenTK.Graphics.OpenGL4.All.CompressedRgbBptcUnsignedFloatArb; - var _CopyReadBuffer = OpenTK.Graphics.OpenGL4.All.CopyReadBuffer; - var _CopyReadBufferBinding = OpenTK.Graphics.OpenGL4.All.CopyReadBufferBinding; - var _CopyWriteBuffer = OpenTK.Graphics.OpenGL4.All.CopyWriteBuffer; - var _CopyWriteBufferBinding = OpenTK.Graphics.OpenGL4.All.CopyWriteBufferBinding; - var _MaxImageUnits = OpenTK.Graphics.OpenGL4.All.MaxImageUnits; - var _MaxCombinedImageUnitsAndFragmentOutputs = OpenTK.Graphics.OpenGL4.All.MaxCombinedImageUnitsAndFragmentOutputs; - var _MaxCombinedShaderOutputResources = OpenTK.Graphics.OpenGL4.All.MaxCombinedShaderOutputResources; - var _ImageBindingName = OpenTK.Graphics.OpenGL4.All.ImageBindingName; - var _ImageBindingLevel = OpenTK.Graphics.OpenGL4.All.ImageBindingLevel; - var _ImageBindingLayered = OpenTK.Graphics.OpenGL4.All.ImageBindingLayered; - var _ImageBindingLayer = OpenTK.Graphics.OpenGL4.All.ImageBindingLayer; - var _ImageBindingAccess = OpenTK.Graphics.OpenGL4.All.ImageBindingAccess; - var _DrawIndirectBuffer = OpenTK.Graphics.OpenGL4.All.DrawIndirectBuffer; - var _DrawIndirectBufferBinding = OpenTK.Graphics.OpenGL4.All.DrawIndirectBufferBinding; - var _DoubleMat2 = OpenTK.Graphics.OpenGL4.All.DoubleMat2; - var _DoubleMat3 = OpenTK.Graphics.OpenGL4.All.DoubleMat3; - var _DoubleMat4 = OpenTK.Graphics.OpenGL4.All.DoubleMat4; - var _DoubleMat2x3 = OpenTK.Graphics.OpenGL4.All.DoubleMat2x3; - var _DoubleMat2x4 = OpenTK.Graphics.OpenGL4.All.DoubleMat2x4; - var _DoubleMat3x2 = OpenTK.Graphics.OpenGL4.All.DoubleMat3x2; - var _DoubleMat3x4 = OpenTK.Graphics.OpenGL4.All.DoubleMat3x4; - var _DoubleMat4x2 = OpenTK.Graphics.OpenGL4.All.DoubleMat4x2; - var _DoubleMat4x3 = OpenTK.Graphics.OpenGL4.All.DoubleMat4x3; - var _VertexBindingBuffer = OpenTK.Graphics.OpenGL4.All.VertexBindingBuffer; - var _R8Snorm = OpenTK.Graphics.OpenGL4.All.R8Snorm; - var _Rg8Snorm = OpenTK.Graphics.OpenGL4.All.Rg8Snorm; - var _Rgb8Snorm = OpenTK.Graphics.OpenGL4.All.Rgb8Snorm; - var _Rgba8Snorm = OpenTK.Graphics.OpenGL4.All.Rgba8Snorm; - var _R16Snorm = OpenTK.Graphics.OpenGL4.All.R16Snorm; - var _Rg16Snorm = OpenTK.Graphics.OpenGL4.All.Rg16Snorm; - var _Rgb16Snorm = OpenTK.Graphics.OpenGL4.All.Rgb16Snorm; - var _Rgba16Snorm = OpenTK.Graphics.OpenGL4.All.Rgba16Snorm; - var _SignedNormalized = OpenTK.Graphics.OpenGL4.All.SignedNormalized; - var _PrimitiveRestart = OpenTK.Graphics.OpenGL4.All.PrimitiveRestart; - var _PrimitiveRestartIndex = OpenTK.Graphics.OpenGL4.All.PrimitiveRestartIndex; - var _MaxProgramTextureGatherComponentsArb = OpenTK.Graphics.OpenGL4.All.MaxProgramTextureGatherComponentsArb; - var _BinningControlHintQcom = OpenTK.Graphics.OpenGL4.All.BinningControlHintQcom; - var _DoubleVec2 = OpenTK.Graphics.OpenGL4.All.DoubleVec2; - var _DoubleVec3 = OpenTK.Graphics.OpenGL4.All.DoubleVec3; - var _DoubleVec4 = OpenTK.Graphics.OpenGL4.All.DoubleVec4; - var _SamplerBufferAmd = OpenTK.Graphics.OpenGL4.All.SamplerBufferAmd; - var _IntSamplerBufferAmd = OpenTK.Graphics.OpenGL4.All.IntSamplerBufferAmd; - var _UnsignedIntSamplerBufferAmd = OpenTK.Graphics.OpenGL4.All.UnsignedIntSamplerBufferAmd; - var _TessellationModeAmd = OpenTK.Graphics.OpenGL4.All.TessellationModeAmd; - var _TessellationFactorAmd = OpenTK.Graphics.OpenGL4.All.TessellationFactorAmd; - var _DiscreteAmd = OpenTK.Graphics.OpenGL4.All.DiscreteAmd; - var _ContinuousAmd = OpenTK.Graphics.OpenGL4.All.ContinuousAmd; - var _TextureCubeMapArray = OpenTK.Graphics.OpenGL4.All.TextureCubeMapArray; - var _TextureCubeMapArrayArb = OpenTK.Graphics.OpenGL4.All.TextureCubeMapArrayArb; - var _TextureBindingCubeMapArray = OpenTK.Graphics.OpenGL4.All.TextureBindingCubeMapArray; - var _TextureBindingCubeMapArrayArb = OpenTK.Graphics.OpenGL4.All.TextureBindingCubeMapArrayArb; - var _ProxyTextureCubeMapArray = OpenTK.Graphics.OpenGL4.All.ProxyTextureCubeMapArray; - var _ProxyTextureCubeMapArrayArb = OpenTK.Graphics.OpenGL4.All.ProxyTextureCubeMapArrayArb; - var _SamplerCubeMapArray = OpenTK.Graphics.OpenGL4.All.SamplerCubeMapArray; - var _SamplerCubeMapArrayArb = OpenTK.Graphics.OpenGL4.All.SamplerCubeMapArrayArb; - var _SamplerCubeMapArrayShadow = OpenTK.Graphics.OpenGL4.All.SamplerCubeMapArrayShadow; - var _SamplerCubeMapArrayShadowArb = OpenTK.Graphics.OpenGL4.All.SamplerCubeMapArrayShadowArb; - var _IntSamplerCubeMapArray = OpenTK.Graphics.OpenGL4.All.IntSamplerCubeMapArray; - var _IntSamplerCubeMapArrayArb = OpenTK.Graphics.OpenGL4.All.IntSamplerCubeMapArrayArb; - var _UnsignedIntSamplerCubeMapArray = OpenTK.Graphics.OpenGL4.All.UnsignedIntSamplerCubeMapArray; - var _UnsignedIntSamplerCubeMapArrayArb = OpenTK.Graphics.OpenGL4.All.UnsignedIntSamplerCubeMapArrayArb; - var _Image1D = OpenTK.Graphics.OpenGL4.All.Image1D; - var _Image2D = OpenTK.Graphics.OpenGL4.All.Image2D; - var _Image3D = OpenTK.Graphics.OpenGL4.All.Image3D; - var _Image2DRect = OpenTK.Graphics.OpenGL4.All.Image2DRect; - var _ImageCube = OpenTK.Graphics.OpenGL4.All.ImageCube; - var _ImageBuffer = OpenTK.Graphics.OpenGL4.All.ImageBuffer; - var _Image1DArray = OpenTK.Graphics.OpenGL4.All.Image1DArray; - var _Image2DArray = OpenTK.Graphics.OpenGL4.All.Image2DArray; - var _ImageCubeMapArray = OpenTK.Graphics.OpenGL4.All.ImageCubeMapArray; - var _Image2DMultisample = OpenTK.Graphics.OpenGL4.All.Image2DMultisample; - var _Image2DMultisampleArray = OpenTK.Graphics.OpenGL4.All.Image2DMultisampleArray; - var _IntImage1D = OpenTK.Graphics.OpenGL4.All.IntImage1D; - var _IntImage2D = OpenTK.Graphics.OpenGL4.All.IntImage2D; - var _IntImage3D = OpenTK.Graphics.OpenGL4.All.IntImage3D; - var _IntImage2DRect = OpenTK.Graphics.OpenGL4.All.IntImage2DRect; - var _IntImageCube = OpenTK.Graphics.OpenGL4.All.IntImageCube; - var _IntImageBuffer = OpenTK.Graphics.OpenGL4.All.IntImageBuffer; - var _IntImage1DArray = OpenTK.Graphics.OpenGL4.All.IntImage1DArray; - var _IntImage2DArray = OpenTK.Graphics.OpenGL4.All.IntImage2DArray; - var _IntImageCubeMapArray = OpenTK.Graphics.OpenGL4.All.IntImageCubeMapArray; - var _IntImage2DMultisample = OpenTK.Graphics.OpenGL4.All.IntImage2DMultisample; - var _IntImage2DMultisampleArray = OpenTK.Graphics.OpenGL4.All.IntImage2DMultisampleArray; - var _UnsignedIntImage1D = OpenTK.Graphics.OpenGL4.All.UnsignedIntImage1D; - var _UnsignedIntImage2D = OpenTK.Graphics.OpenGL4.All.UnsignedIntImage2D; - var _UnsignedIntImage3D = OpenTK.Graphics.OpenGL4.All.UnsignedIntImage3D; - var _UnsignedIntImage2DRect = OpenTK.Graphics.OpenGL4.All.UnsignedIntImage2DRect; - var _UnsignedIntImageCube = OpenTK.Graphics.OpenGL4.All.UnsignedIntImageCube; - var _UnsignedIntImageBuffer = OpenTK.Graphics.OpenGL4.All.UnsignedIntImageBuffer; - var _UnsignedIntImage1DArray = OpenTK.Graphics.OpenGL4.All.UnsignedIntImage1DArray; - var _UnsignedIntImage2DArray = OpenTK.Graphics.OpenGL4.All.UnsignedIntImage2DArray; - var _UnsignedIntImageCubeMapArray = OpenTK.Graphics.OpenGL4.All.UnsignedIntImageCubeMapArray; - var _UnsignedIntImage2DMultisample = OpenTK.Graphics.OpenGL4.All.UnsignedIntImage2DMultisample; - var _UnsignedIntImage2DMultisampleArray = OpenTK.Graphics.OpenGL4.All.UnsignedIntImage2DMultisampleArray; - var _MaxImageSamples = OpenTK.Graphics.OpenGL4.All.MaxImageSamples; - var _ImageBindingFormat = OpenTK.Graphics.OpenGL4.All.ImageBindingFormat; - var _Rgb10A2ui = OpenTK.Graphics.OpenGL4.All.Rgb10A2ui; - var _MinMapBufferAlignment = OpenTK.Graphics.OpenGL4.All.MinMapBufferAlignment; - var _ImageFormatCompatibilityType = OpenTK.Graphics.OpenGL4.All.ImageFormatCompatibilityType; - var _ImageFormatCompatibilityBySize = OpenTK.Graphics.OpenGL4.All.ImageFormatCompatibilityBySize; - var _ImageFormatCompatibilityByClass = OpenTK.Graphics.OpenGL4.All.ImageFormatCompatibilityByClass; - var _MaxVertexImageUniforms = OpenTK.Graphics.OpenGL4.All.MaxVertexImageUniforms; - var _MaxTessControlImageUniforms = OpenTK.Graphics.OpenGL4.All.MaxTessControlImageUniforms; - var _MaxTessEvaluationImageUniforms = OpenTK.Graphics.OpenGL4.All.MaxTessEvaluationImageUniforms; - var _MaxGeometryImageUniforms = OpenTK.Graphics.OpenGL4.All.MaxGeometryImageUniforms; - var _MaxFragmentImageUniforms = OpenTK.Graphics.OpenGL4.All.MaxFragmentImageUniforms; - var _MaxCombinedImageUniforms = OpenTK.Graphics.OpenGL4.All.MaxCombinedImageUniforms; - var _ShaderStorageBuffer = OpenTK.Graphics.OpenGL4.All.ShaderStorageBuffer; - var _ShaderStorageBufferBinding = OpenTK.Graphics.OpenGL4.All.ShaderStorageBufferBinding; - var _ShaderStorageBufferStart = OpenTK.Graphics.OpenGL4.All.ShaderStorageBufferStart; - var _ShaderStorageBufferSize = OpenTK.Graphics.OpenGL4.All.ShaderStorageBufferSize; - var _MaxVertexShaderStorageBlocks = OpenTK.Graphics.OpenGL4.All.MaxVertexShaderStorageBlocks; - var _MaxGeometryShaderStorageBlocks = OpenTK.Graphics.OpenGL4.All.MaxGeometryShaderStorageBlocks; - var _MaxTessControlShaderStorageBlocks = OpenTK.Graphics.OpenGL4.All.MaxTessControlShaderStorageBlocks; - var _MaxTessEvaluationShaderStorageBlocks = OpenTK.Graphics.OpenGL4.All.MaxTessEvaluationShaderStorageBlocks; - var _MaxFragmentShaderStorageBlocks = OpenTK.Graphics.OpenGL4.All.MaxFragmentShaderStorageBlocks; - var _MaxComputeShaderStorageBlocks = OpenTK.Graphics.OpenGL4.All.MaxComputeShaderStorageBlocks; - var _MaxCombinedShaderStorageBlocks = OpenTK.Graphics.OpenGL4.All.MaxCombinedShaderStorageBlocks; - var _MaxShaderStorageBufferBindings = OpenTK.Graphics.OpenGL4.All.MaxShaderStorageBufferBindings; - var _MaxShaderStorageBlockSize = OpenTK.Graphics.OpenGL4.All.MaxShaderStorageBlockSize; - var _ShaderStorageBufferOffsetAlignment = OpenTK.Graphics.OpenGL4.All.ShaderStorageBufferOffsetAlignment; - var _DepthStencilTextureMode = OpenTK.Graphics.OpenGL4.All.DepthStencilTextureMode; - var _MaxComputeFixedGroupInvocationsArb = OpenTK.Graphics.OpenGL4.All.MaxComputeFixedGroupInvocationsArb; - var _MaxComputeWorkGroupInvocations = OpenTK.Graphics.OpenGL4.All.MaxComputeWorkGroupInvocations; - var _UniformBlockReferencedByComputeShader = OpenTK.Graphics.OpenGL4.All.UniformBlockReferencedByComputeShader; - var _AtomicCounterBufferReferencedByComputeShader = OpenTK.Graphics.OpenGL4.All.AtomicCounterBufferReferencedByComputeShader; - var _DispatchIndirectBuffer = OpenTK.Graphics.OpenGL4.All.DispatchIndirectBuffer; - var _DispatchIndirectBufferBinding = OpenTK.Graphics.OpenGL4.All.DispatchIndirectBufferBinding; - var _Texture2DMultisample = OpenTK.Graphics.OpenGL4.All.Texture2DMultisample; - var _ProxyTexture2DMultisample = OpenTK.Graphics.OpenGL4.All.ProxyTexture2DMultisample; - var _Texture2DMultisampleArray = OpenTK.Graphics.OpenGL4.All.Texture2DMultisampleArray; - var _ProxyTexture2DMultisampleArray = OpenTK.Graphics.OpenGL4.All.ProxyTexture2DMultisampleArray; - var _TextureBinding2DMultisample = OpenTK.Graphics.OpenGL4.All.TextureBinding2DMultisample; - var _TextureBinding2DMultisampleArray = OpenTK.Graphics.OpenGL4.All.TextureBinding2DMultisampleArray; - var _TextureSamples = OpenTK.Graphics.OpenGL4.All.TextureSamples; - var _TextureFixedSampleLocations = OpenTK.Graphics.OpenGL4.All.TextureFixedSampleLocations; - var _Sampler2DMultisample = OpenTK.Graphics.OpenGL4.All.Sampler2DMultisample; - var _IntSampler2DMultisample = OpenTK.Graphics.OpenGL4.All.IntSampler2DMultisample; - var _UnsignedIntSampler2DMultisample = OpenTK.Graphics.OpenGL4.All.UnsignedIntSampler2DMultisample; - var _Sampler2DMultisampleArray = OpenTK.Graphics.OpenGL4.All.Sampler2DMultisampleArray; - var _IntSampler2DMultisampleArray = OpenTK.Graphics.OpenGL4.All.IntSampler2DMultisampleArray; - var _UnsignedIntSampler2DMultisampleArray = OpenTK.Graphics.OpenGL4.All.UnsignedIntSampler2DMultisampleArray; - var _MaxColorTextureSamples = OpenTK.Graphics.OpenGL4.All.MaxColorTextureSamples; - var _MaxDepthTextureSamples = OpenTK.Graphics.OpenGL4.All.MaxDepthTextureSamples; - var _MaxIntegerSamples = OpenTK.Graphics.OpenGL4.All.MaxIntegerSamples; - var _MaxServerWaitTimeout = OpenTK.Graphics.OpenGL4.All.MaxServerWaitTimeout; - var _ObjectType = OpenTK.Graphics.OpenGL4.All.ObjectType; - var _SyncCondition = OpenTK.Graphics.OpenGL4.All.SyncCondition; - var _SyncStatus = OpenTK.Graphics.OpenGL4.All.SyncStatus; - var _SyncFlags = OpenTK.Graphics.OpenGL4.All.SyncFlags; - var _SyncFence = OpenTK.Graphics.OpenGL4.All.SyncFence; - var _SyncGpuCommandsComplete = OpenTK.Graphics.OpenGL4.All.SyncGpuCommandsComplete; - var _Unsignaled = OpenTK.Graphics.OpenGL4.All.Unsignaled; - var _Signaled = OpenTK.Graphics.OpenGL4.All.Signaled; - var _AlreadySignaled = OpenTK.Graphics.OpenGL4.All.AlreadySignaled; - var _TimeoutExpired = OpenTK.Graphics.OpenGL4.All.TimeoutExpired; - var _ConditionSatisfied = OpenTK.Graphics.OpenGL4.All.ConditionSatisfied; - var _WaitFailed = OpenTK.Graphics.OpenGL4.All.WaitFailed; - var _BufferAccessFlags = OpenTK.Graphics.OpenGL4.All.BufferAccessFlags; - var _BufferMapLength = OpenTK.Graphics.OpenGL4.All.BufferMapLength; - var _BufferMapOffset = OpenTK.Graphics.OpenGL4.All.BufferMapOffset; - var _MaxVertexOutputComponents = OpenTK.Graphics.OpenGL4.All.MaxVertexOutputComponents; - var _MaxGeometryInputComponents = OpenTK.Graphics.OpenGL4.All.MaxGeometryInputComponents; - var _MaxGeometryOutputComponents = OpenTK.Graphics.OpenGL4.All.MaxGeometryOutputComponents; - var _MaxFragmentInputComponents = OpenTK.Graphics.OpenGL4.All.MaxFragmentInputComponents; - var _ContextProfileMask = OpenTK.Graphics.OpenGL4.All.ContextProfileMask; - var _UnpackCompressedBlockWidth = OpenTK.Graphics.OpenGL4.All.UnpackCompressedBlockWidth; - var _UnpackCompressedBlockHeight = OpenTK.Graphics.OpenGL4.All.UnpackCompressedBlockHeight; - var _UnpackCompressedBlockDepth = OpenTK.Graphics.OpenGL4.All.UnpackCompressedBlockDepth; - var _UnpackCompressedBlockSize = OpenTK.Graphics.OpenGL4.All.UnpackCompressedBlockSize; - var _PackCompressedBlockWidth = OpenTK.Graphics.OpenGL4.All.PackCompressedBlockWidth; - var _PackCompressedBlockHeight = OpenTK.Graphics.OpenGL4.All.PackCompressedBlockHeight; - var _PackCompressedBlockDepth = OpenTK.Graphics.OpenGL4.All.PackCompressedBlockDepth; - var _PackCompressedBlockSize = OpenTK.Graphics.OpenGL4.All.PackCompressedBlockSize; - var _TextureImmutableFormat = OpenTK.Graphics.OpenGL4.All.TextureImmutableFormat; - var _MaxDebugMessageLength = OpenTK.Graphics.OpenGL4.All.MaxDebugMessageLength; - var _MaxDebugMessageLengthArb = OpenTK.Graphics.OpenGL4.All.MaxDebugMessageLengthArb; - var _MaxDebugMessageLengthKhr = OpenTK.Graphics.OpenGL4.All.MaxDebugMessageLengthKhr; - var _MaxDebugLoggedMessages = OpenTK.Graphics.OpenGL4.All.MaxDebugLoggedMessages; - var _MaxDebugLoggedMessagesArb = OpenTK.Graphics.OpenGL4.All.MaxDebugLoggedMessagesArb; - var _MaxDebugLoggedMessagesKhr = OpenTK.Graphics.OpenGL4.All.MaxDebugLoggedMessagesKhr; - var _DebugLoggedMessages = OpenTK.Graphics.OpenGL4.All.DebugLoggedMessages; - var _DebugLoggedMessagesArb = OpenTK.Graphics.OpenGL4.All.DebugLoggedMessagesArb; - var _DebugLoggedMessagesKhr = OpenTK.Graphics.OpenGL4.All.DebugLoggedMessagesKhr; - var _DebugSeverityHigh = OpenTK.Graphics.OpenGL4.All.DebugSeverityHigh; - var _DebugSeverityHighArb = OpenTK.Graphics.OpenGL4.All.DebugSeverityHighArb; - var _DebugSeverityHighKhr = OpenTK.Graphics.OpenGL4.All.DebugSeverityHighKhr; - var _DebugSeverityMedium = OpenTK.Graphics.OpenGL4.All.DebugSeverityMedium; - var _DebugSeverityMediumArb = OpenTK.Graphics.OpenGL4.All.DebugSeverityMediumArb; - var _DebugSeverityMediumKhr = OpenTK.Graphics.OpenGL4.All.DebugSeverityMediumKhr; - var _DebugSeverityLow = OpenTK.Graphics.OpenGL4.All.DebugSeverityLow; - var _DebugSeverityLowArb = OpenTK.Graphics.OpenGL4.All.DebugSeverityLowArb; - var _DebugSeverityLowKhr = OpenTK.Graphics.OpenGL4.All.DebugSeverityLowKhr; - var _QueryBuffer = OpenTK.Graphics.OpenGL4.All.QueryBuffer; - var _QueryBufferBinding = OpenTK.Graphics.OpenGL4.All.QueryBufferBinding; - var _QueryResultNoWait = OpenTK.Graphics.OpenGL4.All.QueryResultNoWait; - var _VirtualPageSizeXArb = OpenTK.Graphics.OpenGL4.All.VirtualPageSizeXArb; - var _VirtualPageSizeYArb = OpenTK.Graphics.OpenGL4.All.VirtualPageSizeYArb; - var _VirtualPageSizeZArb = OpenTK.Graphics.OpenGL4.All.VirtualPageSizeZArb; - var _MaxSparseTextureSizeArb = OpenTK.Graphics.OpenGL4.All.MaxSparseTextureSizeArb; - var _MaxSparse3DTextureSizeArb = OpenTK.Graphics.OpenGL4.All.MaxSparse3DTextureSizeArb; - var _MaxSparseArrayTextureLayersArb = OpenTK.Graphics.OpenGL4.All.MaxSparseArrayTextureLayersArb; - var _MinSparseLevelArb = OpenTK.Graphics.OpenGL4.All.MinSparseLevelArb; - var _TextureBufferOffset = OpenTK.Graphics.OpenGL4.All.TextureBufferOffset; - var _TextureBufferSize = OpenTK.Graphics.OpenGL4.All.TextureBufferSize; - var _TextureBufferOffsetAlignment = OpenTK.Graphics.OpenGL4.All.TextureBufferOffsetAlignment; - var _TextureSparseArb = OpenTK.Graphics.OpenGL4.All.TextureSparseArb; - var _VirtualPageSizeIndexArb = OpenTK.Graphics.OpenGL4.All.VirtualPageSizeIndexArb; - var _NumVirtualPageSizesArb = OpenTK.Graphics.OpenGL4.All.NumVirtualPageSizesArb; - var _SparseTextureFullArrayCubeMipmapsArb = OpenTK.Graphics.OpenGL4.All.SparseTextureFullArrayCubeMipmapsArb; - var _ComputeShader = OpenTK.Graphics.OpenGL4.All.ComputeShader; - var _MaxComputeUniformBlocks = OpenTK.Graphics.OpenGL4.All.MaxComputeUniformBlocks; - var _MaxComputeTextureImageUnits = OpenTK.Graphics.OpenGL4.All.MaxComputeTextureImageUnits; - var _MaxComputeImageUniforms = OpenTK.Graphics.OpenGL4.All.MaxComputeImageUniforms; - var _MaxComputeWorkGroupCount = OpenTK.Graphics.OpenGL4.All.MaxComputeWorkGroupCount; - var _MaxComputeFixedGroupSizeArb = OpenTK.Graphics.OpenGL4.All.MaxComputeFixedGroupSizeArb; - var _MaxComputeWorkGroupSize = OpenTK.Graphics.OpenGL4.All.MaxComputeWorkGroupSize; - var _CompressedR11Eac = OpenTK.Graphics.OpenGL4.All.CompressedR11Eac; - var _CompressedSignedR11Eac = OpenTK.Graphics.OpenGL4.All.CompressedSignedR11Eac; - var _CompressedRg11Eac = OpenTK.Graphics.OpenGL4.All.CompressedRg11Eac; - var _CompressedSignedRg11Eac = OpenTK.Graphics.OpenGL4.All.CompressedSignedRg11Eac; - var _CompressedRgb8Etc2 = OpenTK.Graphics.OpenGL4.All.CompressedRgb8Etc2; - var _CompressedSrgb8Etc2 = OpenTK.Graphics.OpenGL4.All.CompressedSrgb8Etc2; - var _CompressedRgb8PunchthroughAlpha1Etc2 = OpenTK.Graphics.OpenGL4.All.CompressedRgb8PunchthroughAlpha1Etc2; - var _CompressedSrgb8PunchthroughAlpha1Etc2 = OpenTK.Graphics.OpenGL4.All.CompressedSrgb8PunchthroughAlpha1Etc2; - var _CompressedRgba8Etc2Eac = OpenTK.Graphics.OpenGL4.All.CompressedRgba8Etc2Eac; - var _CompressedSrgb8Alpha8Etc2Eac = OpenTK.Graphics.OpenGL4.All.CompressedSrgb8Alpha8Etc2Eac; - var _AtomicCounterBuffer = OpenTK.Graphics.OpenGL4.All.AtomicCounterBuffer; - var _AtomicCounterBufferBinding = OpenTK.Graphics.OpenGL4.All.AtomicCounterBufferBinding; - var _AtomicCounterBufferStart = OpenTK.Graphics.OpenGL4.All.AtomicCounterBufferStart; - var _AtomicCounterBufferSize = OpenTK.Graphics.OpenGL4.All.AtomicCounterBufferSize; - var _AtomicCounterBufferDataSize = OpenTK.Graphics.OpenGL4.All.AtomicCounterBufferDataSize; - var _AtomicCounterBufferActiveAtomicCounters = OpenTK.Graphics.OpenGL4.All.AtomicCounterBufferActiveAtomicCounters; - var _AtomicCounterBufferActiveAtomicCounterIndices = OpenTK.Graphics.OpenGL4.All.AtomicCounterBufferActiveAtomicCounterIndices; - var _AtomicCounterBufferReferencedByVertexShader = OpenTK.Graphics.OpenGL4.All.AtomicCounterBufferReferencedByVertexShader; - var _AtomicCounterBufferReferencedByTessControlShader = OpenTK.Graphics.OpenGL4.All.AtomicCounterBufferReferencedByTessControlShader; - var _AtomicCounterBufferReferencedByTessEvaluationShader = OpenTK.Graphics.OpenGL4.All.AtomicCounterBufferReferencedByTessEvaluationShader; - var _AtomicCounterBufferReferencedByGeometryShader = OpenTK.Graphics.OpenGL4.All.AtomicCounterBufferReferencedByGeometryShader; - var _AtomicCounterBufferReferencedByFragmentShader = OpenTK.Graphics.OpenGL4.All.AtomicCounterBufferReferencedByFragmentShader; - var _MaxVertexAtomicCounterBuffers = OpenTK.Graphics.OpenGL4.All.MaxVertexAtomicCounterBuffers; - var _MaxTessControlAtomicCounterBuffers = OpenTK.Graphics.OpenGL4.All.MaxTessControlAtomicCounterBuffers; - var _MaxTessEvaluationAtomicCounterBuffers = OpenTK.Graphics.OpenGL4.All.MaxTessEvaluationAtomicCounterBuffers; - var _MaxGeometryAtomicCounterBuffers = OpenTK.Graphics.OpenGL4.All.MaxGeometryAtomicCounterBuffers; - var _MaxFragmentAtomicCounterBuffers = OpenTK.Graphics.OpenGL4.All.MaxFragmentAtomicCounterBuffers; - var _MaxCombinedAtomicCounterBuffers = OpenTK.Graphics.OpenGL4.All.MaxCombinedAtomicCounterBuffers; - var _MaxVertexAtomicCounters = OpenTK.Graphics.OpenGL4.All.MaxVertexAtomicCounters; - var _MaxTessControlAtomicCounters = OpenTK.Graphics.OpenGL4.All.MaxTessControlAtomicCounters; - var _MaxTessEvaluationAtomicCounters = OpenTK.Graphics.OpenGL4.All.MaxTessEvaluationAtomicCounters; - var _MaxGeometryAtomicCounters = OpenTK.Graphics.OpenGL4.All.MaxGeometryAtomicCounters; - var _MaxFragmentAtomicCounters = OpenTK.Graphics.OpenGL4.All.MaxFragmentAtomicCounters; - var _MaxCombinedAtomicCounters = OpenTK.Graphics.OpenGL4.All.MaxCombinedAtomicCounters; - var _MaxAtomicCounterBufferSize = OpenTK.Graphics.OpenGL4.All.MaxAtomicCounterBufferSize; - var _ActiveAtomicCounterBuffers = OpenTK.Graphics.OpenGL4.All.ActiveAtomicCounterBuffers; - var _UniformAtomicCounterBufferIndex = OpenTK.Graphics.OpenGL4.All.UniformAtomicCounterBufferIndex; - var _UnsignedIntAtomicCounter = OpenTK.Graphics.OpenGL4.All.UnsignedIntAtomicCounter; - var _MaxAtomicCounterBufferBindings = OpenTK.Graphics.OpenGL4.All.MaxAtomicCounterBufferBindings; - var _DebugOutput = OpenTK.Graphics.OpenGL4.All.DebugOutput; - var _DebugOutputKhr = OpenTK.Graphics.OpenGL4.All.DebugOutputKhr; - var _Uniform = OpenTK.Graphics.OpenGL4.All.Uniform; - var _UniformBlock = OpenTK.Graphics.OpenGL4.All.UniformBlock; - var _ProgramInput = OpenTK.Graphics.OpenGL4.All.ProgramInput; - var _ProgramOutput = OpenTK.Graphics.OpenGL4.All.ProgramOutput; - var _BufferVariable = OpenTK.Graphics.OpenGL4.All.BufferVariable; - var _ShaderStorageBlock = OpenTK.Graphics.OpenGL4.All.ShaderStorageBlock; - var _IsPerPatch = OpenTK.Graphics.OpenGL4.All.IsPerPatch; - var _VertexSubroutine = OpenTK.Graphics.OpenGL4.All.VertexSubroutine; - var _TessControlSubroutine = OpenTK.Graphics.OpenGL4.All.TessControlSubroutine; - var _TessEvaluationSubroutine = OpenTK.Graphics.OpenGL4.All.TessEvaluationSubroutine; - var _GeometrySubroutine = OpenTK.Graphics.OpenGL4.All.GeometrySubroutine; - var _FragmentSubroutine = OpenTK.Graphics.OpenGL4.All.FragmentSubroutine; - var _ComputeSubroutine = OpenTK.Graphics.OpenGL4.All.ComputeSubroutine; - var _VertexSubroutineUniform = OpenTK.Graphics.OpenGL4.All.VertexSubroutineUniform; - var _TessControlSubroutineUniform = OpenTK.Graphics.OpenGL4.All.TessControlSubroutineUniform; - var _TessEvaluationSubroutineUniform = OpenTK.Graphics.OpenGL4.All.TessEvaluationSubroutineUniform; - var _GeometrySubroutineUniform = OpenTK.Graphics.OpenGL4.All.GeometrySubroutineUniform; - var _FragmentSubroutineUniform = OpenTK.Graphics.OpenGL4.All.FragmentSubroutineUniform; - var _ComputeSubroutineUniform = OpenTK.Graphics.OpenGL4.All.ComputeSubroutineUniform; - var _TransformFeedbackVarying = OpenTK.Graphics.OpenGL4.All.TransformFeedbackVarying; - var _ActiveResources = OpenTK.Graphics.OpenGL4.All.ActiveResources; - var _MaxNameLength = OpenTK.Graphics.OpenGL4.All.MaxNameLength; - var _MaxNumActiveVariables = OpenTK.Graphics.OpenGL4.All.MaxNumActiveVariables; - var _MaxNumCompatibleSubroutines = OpenTK.Graphics.OpenGL4.All.MaxNumCompatibleSubroutines; - var _NameLength = OpenTK.Graphics.OpenGL4.All.NameLength; - var _Type = OpenTK.Graphics.OpenGL4.All.Type; - var _ArraySize = OpenTK.Graphics.OpenGL4.All.ArraySize; - var _Offset = OpenTK.Graphics.OpenGL4.All.Offset; - var _BlockIndex = OpenTK.Graphics.OpenGL4.All.BlockIndex; - var _ArrayStride = OpenTK.Graphics.OpenGL4.All.ArrayStride; - var _MatrixStride = OpenTK.Graphics.OpenGL4.All.MatrixStride; - var _IsRowMajor = OpenTK.Graphics.OpenGL4.All.IsRowMajor; - var _AtomicCounterBufferIndex = OpenTK.Graphics.OpenGL4.All.AtomicCounterBufferIndex; - var _BufferBinding = OpenTK.Graphics.OpenGL4.All.BufferBinding; - var _BufferDataSize = OpenTK.Graphics.OpenGL4.All.BufferDataSize; - var _NumActiveVariables = OpenTK.Graphics.OpenGL4.All.NumActiveVariables; - var _ActiveVariables = OpenTK.Graphics.OpenGL4.All.ActiveVariables; - var _ReferencedByVertexShader = OpenTK.Graphics.OpenGL4.All.ReferencedByVertexShader; - var _ReferencedByTessControlShader = OpenTK.Graphics.OpenGL4.All.ReferencedByTessControlShader; - var _ReferencedByTessEvaluationShader = OpenTK.Graphics.OpenGL4.All.ReferencedByTessEvaluationShader; - var _ReferencedByGeometryShader = OpenTK.Graphics.OpenGL4.All.ReferencedByGeometryShader; - var _ReferencedByFragmentShader = OpenTK.Graphics.OpenGL4.All.ReferencedByFragmentShader; - var _ReferencedByComputeShader = OpenTK.Graphics.OpenGL4.All.ReferencedByComputeShader; - var _TopLevelArraySize = OpenTK.Graphics.OpenGL4.All.TopLevelArraySize; - var _TopLevelArrayStride = OpenTK.Graphics.OpenGL4.All.TopLevelArrayStride; - var _Location = OpenTK.Graphics.OpenGL4.All.Location; - var _LocationIndex = OpenTK.Graphics.OpenGL4.All.LocationIndex; - var _FramebufferDefaultWidth = OpenTK.Graphics.OpenGL4.All.FramebufferDefaultWidth; - var _FramebufferDefaultHeight = OpenTK.Graphics.OpenGL4.All.FramebufferDefaultHeight; - var _FramebufferDefaultLayers = OpenTK.Graphics.OpenGL4.All.FramebufferDefaultLayers; - var _FramebufferDefaultSamples = OpenTK.Graphics.OpenGL4.All.FramebufferDefaultSamples; - var _FramebufferDefaultFixedSampleLocations = OpenTK.Graphics.OpenGL4.All.FramebufferDefaultFixedSampleLocations; - var _MaxFramebufferWidth = OpenTK.Graphics.OpenGL4.All.MaxFramebufferWidth; - var _MaxFramebufferHeight = OpenTK.Graphics.OpenGL4.All.MaxFramebufferHeight; - var _MaxFramebufferLayers = OpenTK.Graphics.OpenGL4.All.MaxFramebufferLayers; - var _MaxFramebufferSamples = OpenTK.Graphics.OpenGL4.All.MaxFramebufferSamples; - var _MaxComputeVariableGroupInvocationsArb = OpenTK.Graphics.OpenGL4.All.MaxComputeVariableGroupInvocationsArb; - var _MaxComputeVariableGroupSizeArb = OpenTK.Graphics.OpenGL4.All.MaxComputeVariableGroupSizeArb; - var _LocationComponent = OpenTK.Graphics.OpenGL4.All.LocationComponent; - var _TransformFeedbackBufferIndex = OpenTK.Graphics.OpenGL4.All.TransformFeedbackBufferIndex; - var _TransformFeedbackBufferStride = OpenTK.Graphics.OpenGL4.All.TransformFeedbackBufferStride; - var _ClearTexture = OpenTK.Graphics.OpenGL4.All.ClearTexture; - var _NumSampleCounts = OpenTK.Graphics.OpenGL4.All.NumSampleCounts; - var _CompressedRgbaAstc4X4Khr = OpenTK.Graphics.OpenGL4.All.CompressedRgbaAstc4X4Khr; - var _CompressedRgbaAstc5X4Khr = OpenTK.Graphics.OpenGL4.All.CompressedRgbaAstc5X4Khr; - var _CompressedRgbaAstc5X5Khr = OpenTK.Graphics.OpenGL4.All.CompressedRgbaAstc5X5Khr; - var _CompressedRgbaAstc6X5Khr = OpenTK.Graphics.OpenGL4.All.CompressedRgbaAstc6X5Khr; - var _CompressedRgbaAstc6X6Khr = OpenTK.Graphics.OpenGL4.All.CompressedRgbaAstc6X6Khr; - var _CompressedRgbaAstc8X5Khr = OpenTK.Graphics.OpenGL4.All.CompressedRgbaAstc8X5Khr; - var _CompressedRgbaAstc8X6Khr = OpenTK.Graphics.OpenGL4.All.CompressedRgbaAstc8X6Khr; - var _CompressedRgbaAstc8X8Khr = OpenTK.Graphics.OpenGL4.All.CompressedRgbaAstc8X8Khr; - var _CompressedRgbaAstc10X5Khr = OpenTK.Graphics.OpenGL4.All.CompressedRgbaAstc10X5Khr; - var _CompressedRgbaAstc10X6Khr = OpenTK.Graphics.OpenGL4.All.CompressedRgbaAstc10X6Khr; - var _CompressedRgbaAstc10X8Khr = OpenTK.Graphics.OpenGL4.All.CompressedRgbaAstc10X8Khr; - var _CompressedRgbaAstc10X10Khr = OpenTK.Graphics.OpenGL4.All.CompressedRgbaAstc10X10Khr; - var _CompressedRgbaAstc12X10Khr = OpenTK.Graphics.OpenGL4.All.CompressedRgbaAstc12X10Khr; - var _CompressedRgbaAstc12X12Khr = OpenTK.Graphics.OpenGL4.All.CompressedRgbaAstc12X12Khr; - var _CompressedSrgb8Alpha8Astc4X4Khr = OpenTK.Graphics.OpenGL4.All.CompressedSrgb8Alpha8Astc4X4Khr; - var _CompressedSrgb8Alpha8Astc5X4Khr = OpenTK.Graphics.OpenGL4.All.CompressedSrgb8Alpha8Astc5X4Khr; - var _CompressedSrgb8Alpha8Astc5X5Khr = OpenTK.Graphics.OpenGL4.All.CompressedSrgb8Alpha8Astc5X5Khr; - var _CompressedSrgb8Alpha8Astc6X5Khr = OpenTK.Graphics.OpenGL4.All.CompressedSrgb8Alpha8Astc6X5Khr; - var _CompressedSrgb8Alpha8Astc6X6Khr = OpenTK.Graphics.OpenGL4.All.CompressedSrgb8Alpha8Astc6X6Khr; - var _CompressedSrgb8Alpha8Astc8X5Khr = OpenTK.Graphics.OpenGL4.All.CompressedSrgb8Alpha8Astc8X5Khr; - var _CompressedSrgb8Alpha8Astc8X6Khr = OpenTK.Graphics.OpenGL4.All.CompressedSrgb8Alpha8Astc8X6Khr; - var _CompressedSrgb8Alpha8Astc8X8Khr = OpenTK.Graphics.OpenGL4.All.CompressedSrgb8Alpha8Astc8X8Khr; - var _CompressedSrgb8Alpha8Astc10X5Khr = OpenTK.Graphics.OpenGL4.All.CompressedSrgb8Alpha8Astc10X5Khr; - var _CompressedSrgb8Alpha8Astc10X6Khr = OpenTK.Graphics.OpenGL4.All.CompressedSrgb8Alpha8Astc10X6Khr; - var _CompressedSrgb8Alpha8Astc10X8Khr = OpenTK.Graphics.OpenGL4.All.CompressedSrgb8Alpha8Astc10X8Khr; - var _CompressedSrgb8Alpha8Astc10X10Khr = OpenTK.Graphics.OpenGL4.All.CompressedSrgb8Alpha8Astc10X10Khr; - var _CompressedSrgb8Alpha8Astc12X10Khr = OpenTK.Graphics.OpenGL4.All.CompressedSrgb8Alpha8Astc12X10Khr; - var _CompressedSrgb8Alpha8Astc12X12Khr = OpenTK.Graphics.OpenGL4.All.CompressedSrgb8Alpha8Astc12X12Khr; - var _AllBarrierBits = OpenTK.Graphics.OpenGL4.All.AllBarrierBits; - var _AllBarrierBitsExt = OpenTK.Graphics.OpenGL4.All.AllBarrierBitsExt; - var _AllShaderBits = OpenTK.Graphics.OpenGL4.All.AllShaderBits; - var _AllShaderBitsExt = OpenTK.Graphics.OpenGL4.All.AllShaderBitsExt; - var _InvalidIndex = OpenTK.Graphics.OpenGL4.All.InvalidIndex; - var _QueryAllEventBitsAmd = OpenTK.Graphics.OpenGL4.All.QueryAllEventBitsAmd; - var _TimeoutIgnored = OpenTK.Graphics.OpenGL4.All.TimeoutIgnored; - var _LayoutLinearIntel = OpenTK.Graphics.OpenGL4.All.LayoutLinearIntel; - var _One = OpenTK.Graphics.OpenGL4.All.One; - var _True = OpenTK.Graphics.OpenGL4.All.True; - var _LayoutLinearCpuCachedIntel = OpenTK.Graphics.OpenGL4.All.LayoutLinearCpuCachedIntel; - var _Two = OpenTK.Graphics.OpenGL4.All.Two; - var _Three = OpenTK.Graphics.OpenGL4.All.Three; - var _Four = OpenTK.Graphics.OpenGL4.All.Four; -} -static void Test_AlphaFunction_37364() { - var _Never = OpenTK.Graphics.OpenGL4.AlphaFunction.Never; - var _Less = OpenTK.Graphics.OpenGL4.AlphaFunction.Less; - var _Equal = OpenTK.Graphics.OpenGL4.AlphaFunction.Equal; - var _Lequal = OpenTK.Graphics.OpenGL4.AlphaFunction.Lequal; - var _Greater = OpenTK.Graphics.OpenGL4.AlphaFunction.Greater; - var _Notequal = OpenTK.Graphics.OpenGL4.AlphaFunction.Notequal; - var _Gequal = OpenTK.Graphics.OpenGL4.AlphaFunction.Gequal; - var _Always = OpenTK.Graphics.OpenGL4.AlphaFunction.Always; -} -static void Test_AmdVertexShaderTesselator_37365() { - var _SamplerBufferAmd = OpenTK.Graphics.OpenGL4.AmdVertexShaderTesselator.SamplerBufferAmd; - var _IntSamplerBufferAmd = OpenTK.Graphics.OpenGL4.AmdVertexShaderTesselator.IntSamplerBufferAmd; - var _UnsignedIntSamplerBufferAmd = OpenTK.Graphics.OpenGL4.AmdVertexShaderTesselator.UnsignedIntSamplerBufferAmd; - var _TessellationModeAmd = OpenTK.Graphics.OpenGL4.AmdVertexShaderTesselator.TessellationModeAmd; - var _TessellationFactorAmd = OpenTK.Graphics.OpenGL4.AmdVertexShaderTesselator.TessellationFactorAmd; - var _DiscreteAmd = OpenTK.Graphics.OpenGL4.AmdVertexShaderTesselator.DiscreteAmd; - var _ContinuousAmd = OpenTK.Graphics.OpenGL4.AmdVertexShaderTesselator.ContinuousAmd; -} -static void Test_AmdVertexShaderTessellator_37366() { - var _SamplerBufferAmd = OpenTK.Graphics.OpenGL4.AmdVertexShaderTessellator.SamplerBufferAmd; - var _IntSamplerBufferAmd = OpenTK.Graphics.OpenGL4.AmdVertexShaderTessellator.IntSamplerBufferAmd; - var _UnsignedIntSamplerBufferAmd = OpenTK.Graphics.OpenGL4.AmdVertexShaderTessellator.UnsignedIntSamplerBufferAmd; - var _TessellationModeAmd = OpenTK.Graphics.OpenGL4.AmdVertexShaderTessellator.TessellationModeAmd; - var _TessellationFactorAmd = OpenTK.Graphics.OpenGL4.AmdVertexShaderTessellator.TessellationFactorAmd; - var _DiscreteAmd = OpenTK.Graphics.OpenGL4.AmdVertexShaderTessellator.DiscreteAmd; - var _ContinuousAmd = OpenTK.Graphics.OpenGL4.AmdVertexShaderTessellator.ContinuousAmd; -} -static void Test_ArbArraysOfArrays_37367() { -} -static void Test_ArbBaseInstance_37368() { -} -static void Test_ArbBindlessTexture_37369() { - var _UnsignedInt64Arb = OpenTK.Graphics.OpenGL4.ArbBindlessTexture.UnsignedInt64Arb; -} -static void Test_ArbBlendFuncExtended_37370() { - var _Src1Alpha = OpenTK.Graphics.OpenGL4.ArbBlendFuncExtended.Src1Alpha; - var _Src1Color = OpenTK.Graphics.OpenGL4.ArbBlendFuncExtended.Src1Color; - var _OneMinusSrc1Color = OpenTK.Graphics.OpenGL4.ArbBlendFuncExtended.OneMinusSrc1Color; - var _OneMinusSrc1Alpha = OpenTK.Graphics.OpenGL4.ArbBlendFuncExtended.OneMinusSrc1Alpha; - var _MaxDualSourceDrawBuffers = OpenTK.Graphics.OpenGL4.ArbBlendFuncExtended.MaxDualSourceDrawBuffers; -} -static void Test_ArbBufferStorage_37371() { - var _ClientMappedBufferBarrierBit = OpenTK.Graphics.OpenGL4.ArbBufferStorage.ClientMappedBufferBarrierBit; - var _MapReadBit = OpenTK.Graphics.OpenGL4.ArbBufferStorage.MapReadBit; - var _MapWriteBit = OpenTK.Graphics.OpenGL4.ArbBufferStorage.MapWriteBit; - var _MapPersistentBit = OpenTK.Graphics.OpenGL4.ArbBufferStorage.MapPersistentBit; - var _MapCoherentBit = OpenTK.Graphics.OpenGL4.ArbBufferStorage.MapCoherentBit; - var _DynamicStorageBit = OpenTK.Graphics.OpenGL4.ArbBufferStorage.DynamicStorageBit; - var _ClientStorageBit = OpenTK.Graphics.OpenGL4.ArbBufferStorage.ClientStorageBit; - var _BufferImmutableStorage = OpenTK.Graphics.OpenGL4.ArbBufferStorage.BufferImmutableStorage; - var _BufferStorageFlags = OpenTK.Graphics.OpenGL4.ArbBufferStorage.BufferStorageFlags; -} -static void Test_ArbClearBufferObject_37372() { -} -static void Test_ArbClearTexture_37373() { - var _ClearTexture = OpenTK.Graphics.OpenGL4.ArbClearTexture.ClearTexture; -} -static void Test_ArbClEvent_37374() { - var _SyncClEventArb = OpenTK.Graphics.OpenGL4.ArbClEvent.SyncClEventArb; - var _SyncClEventCompleteArb = OpenTK.Graphics.OpenGL4.ArbClEvent.SyncClEventCompleteArb; -} -static void Test_ArbCompressedTexturePixelStorage_37375() { - var _UnpackCompressedBlockWidth = OpenTK.Graphics.OpenGL4.ArbCompressedTexturePixelStorage.UnpackCompressedBlockWidth; - var _UnpackCompressedBlockHeight = OpenTK.Graphics.OpenGL4.ArbCompressedTexturePixelStorage.UnpackCompressedBlockHeight; - var _UnpackCompressedBlockDepth = OpenTK.Graphics.OpenGL4.ArbCompressedTexturePixelStorage.UnpackCompressedBlockDepth; - var _UnpackCompressedBlockSize = OpenTK.Graphics.OpenGL4.ArbCompressedTexturePixelStorage.UnpackCompressedBlockSize; - var _PackCompressedBlockWidth = OpenTK.Graphics.OpenGL4.ArbCompressedTexturePixelStorage.PackCompressedBlockWidth; - var _PackCompressedBlockHeight = OpenTK.Graphics.OpenGL4.ArbCompressedTexturePixelStorage.PackCompressedBlockHeight; - var _PackCompressedBlockDepth = OpenTK.Graphics.OpenGL4.ArbCompressedTexturePixelStorage.PackCompressedBlockDepth; - var _PackCompressedBlockSize = OpenTK.Graphics.OpenGL4.ArbCompressedTexturePixelStorage.PackCompressedBlockSize; -} -static void Test_ArbComputeShader_37376() { - var _ComputeShaderBit = OpenTK.Graphics.OpenGL4.ArbComputeShader.ComputeShaderBit; - var _MaxComputeSharedMemorySize = OpenTK.Graphics.OpenGL4.ArbComputeShader.MaxComputeSharedMemorySize; - var _MaxComputeUniformComponents = OpenTK.Graphics.OpenGL4.ArbComputeShader.MaxComputeUniformComponents; - var _MaxComputeAtomicCounterBuffers = OpenTK.Graphics.OpenGL4.ArbComputeShader.MaxComputeAtomicCounterBuffers; - var _MaxComputeAtomicCounters = OpenTK.Graphics.OpenGL4.ArbComputeShader.MaxComputeAtomicCounters; - var _MaxCombinedComputeUniformComponents = OpenTK.Graphics.OpenGL4.ArbComputeShader.MaxCombinedComputeUniformComponents; - var _ComputeWorkGroupSize = OpenTK.Graphics.OpenGL4.ArbComputeShader.ComputeWorkGroupSize; - var _MaxComputeWorkGroupInvocations = OpenTK.Graphics.OpenGL4.ArbComputeShader.MaxComputeWorkGroupInvocations; - var _UniformBlockReferencedByComputeShader = OpenTK.Graphics.OpenGL4.ArbComputeShader.UniformBlockReferencedByComputeShader; - var _AtomicCounterBufferReferencedByComputeShader = OpenTK.Graphics.OpenGL4.ArbComputeShader.AtomicCounterBufferReferencedByComputeShader; - var _DispatchIndirectBuffer = OpenTK.Graphics.OpenGL4.ArbComputeShader.DispatchIndirectBuffer; - var _DispatchIndirectBufferBinding = OpenTK.Graphics.OpenGL4.ArbComputeShader.DispatchIndirectBufferBinding; - var _ComputeShader = OpenTK.Graphics.OpenGL4.ArbComputeShader.ComputeShader; - var _MaxComputeUniformBlocks = OpenTK.Graphics.OpenGL4.ArbComputeShader.MaxComputeUniformBlocks; - var _MaxComputeTextureImageUnits = OpenTK.Graphics.OpenGL4.ArbComputeShader.MaxComputeTextureImageUnits; - var _MaxComputeImageUniforms = OpenTK.Graphics.OpenGL4.ArbComputeShader.MaxComputeImageUniforms; - var _MaxComputeWorkGroupCount = OpenTK.Graphics.OpenGL4.ArbComputeShader.MaxComputeWorkGroupCount; - var _MaxComputeWorkGroupSize = OpenTK.Graphics.OpenGL4.ArbComputeShader.MaxComputeWorkGroupSize; -} -static void Test_ArbComputeVariableGroupSize_37377() { - var _MaxComputeFixedGroupInvocationsArb = OpenTK.Graphics.OpenGL4.ArbComputeVariableGroupSize.MaxComputeFixedGroupInvocationsArb; - var _MaxComputeFixedGroupSizeArb = OpenTK.Graphics.OpenGL4.ArbComputeVariableGroupSize.MaxComputeFixedGroupSizeArb; - var _MaxComputeVariableGroupInvocationsArb = OpenTK.Graphics.OpenGL4.ArbComputeVariableGroupSize.MaxComputeVariableGroupInvocationsArb; - var _MaxComputeVariableGroupSizeArb = OpenTK.Graphics.OpenGL4.ArbComputeVariableGroupSize.MaxComputeVariableGroupSizeArb; -} -static void Test_ArbConservativeDepth_37378() { -} -static void Test_ArbCopyBuffer_37379() { - var _CopyReadBuffer = OpenTK.Graphics.OpenGL4.ArbCopyBuffer.CopyReadBuffer; - var _CopyReadBufferBinding = OpenTK.Graphics.OpenGL4.ArbCopyBuffer.CopyReadBufferBinding; - var _CopyWriteBuffer = OpenTK.Graphics.OpenGL4.ArbCopyBuffer.CopyWriteBuffer; - var _CopyWriteBufferBinding = OpenTK.Graphics.OpenGL4.ArbCopyBuffer.CopyWriteBufferBinding; -} -static void Test_ArbCopyImage_37380() { -} -static void Test_ArbDebugOutput_37381() { - var _DebugOutputSynchronousArb = OpenTK.Graphics.OpenGL4.ArbDebugOutput.DebugOutputSynchronousArb; - var _DebugNextLoggedMessageLengthArb = OpenTK.Graphics.OpenGL4.ArbDebugOutput.DebugNextLoggedMessageLengthArb; - var _DebugCallbackFunctionArb = OpenTK.Graphics.OpenGL4.ArbDebugOutput.DebugCallbackFunctionArb; - var _DebugCallbackUserParamArb = OpenTK.Graphics.OpenGL4.ArbDebugOutput.DebugCallbackUserParamArb; - var _DebugSourceApiArb = OpenTK.Graphics.OpenGL4.ArbDebugOutput.DebugSourceApiArb; - var _DebugSourceWindowSystemArb = OpenTK.Graphics.OpenGL4.ArbDebugOutput.DebugSourceWindowSystemArb; - var _DebugSourceShaderCompilerArb = OpenTK.Graphics.OpenGL4.ArbDebugOutput.DebugSourceShaderCompilerArb; - var _DebugSourceThirdPartyArb = OpenTK.Graphics.OpenGL4.ArbDebugOutput.DebugSourceThirdPartyArb; - var _DebugSourceApplicationArb = OpenTK.Graphics.OpenGL4.ArbDebugOutput.DebugSourceApplicationArb; - var _DebugSourceOtherArb = OpenTK.Graphics.OpenGL4.ArbDebugOutput.DebugSourceOtherArb; - var _DebugTypeErrorArb = OpenTK.Graphics.OpenGL4.ArbDebugOutput.DebugTypeErrorArb; - var _DebugTypeDeprecatedBehaviorArb = OpenTK.Graphics.OpenGL4.ArbDebugOutput.DebugTypeDeprecatedBehaviorArb; - var _DebugTypeUndefinedBehaviorArb = OpenTK.Graphics.OpenGL4.ArbDebugOutput.DebugTypeUndefinedBehaviorArb; - var _DebugTypePortabilityArb = OpenTK.Graphics.OpenGL4.ArbDebugOutput.DebugTypePortabilityArb; - var _DebugTypePerformanceArb = OpenTK.Graphics.OpenGL4.ArbDebugOutput.DebugTypePerformanceArb; - var _DebugTypeOtherArb = OpenTK.Graphics.OpenGL4.ArbDebugOutput.DebugTypeOtherArb; - var _MaxDebugMessageLengthArb = OpenTK.Graphics.OpenGL4.ArbDebugOutput.MaxDebugMessageLengthArb; - var _MaxDebugLoggedMessagesArb = OpenTK.Graphics.OpenGL4.ArbDebugOutput.MaxDebugLoggedMessagesArb; - var _DebugLoggedMessagesArb = OpenTK.Graphics.OpenGL4.ArbDebugOutput.DebugLoggedMessagesArb; - var _DebugSeverityHighArb = OpenTK.Graphics.OpenGL4.ArbDebugOutput.DebugSeverityHighArb; - var _DebugSeverityMediumArb = OpenTK.Graphics.OpenGL4.ArbDebugOutput.DebugSeverityMediumArb; - var _DebugSeverityLowArb = OpenTK.Graphics.OpenGL4.ArbDebugOutput.DebugSeverityLowArb; -} -static void Test_ArbDepthBufferFloat_37382() { - var _DepthComponent32f = OpenTK.Graphics.OpenGL4.ArbDepthBufferFloat.DepthComponent32f; - var _Depth32fStencil8 = OpenTK.Graphics.OpenGL4.ArbDepthBufferFloat.Depth32fStencil8; - var _Float32UnsignedInt248Rev = OpenTK.Graphics.OpenGL4.ArbDepthBufferFloat.Float32UnsignedInt248Rev; -} -static void Test_ArbDepthClamp_37383() { - var _DepthClamp = OpenTK.Graphics.OpenGL4.ArbDepthClamp.DepthClamp; -} -static void Test_ArbDrawBuffersBlend_37384() { -} -static void Test_ArbDrawElementsBaseVertex_37385() { -} -static void Test_ArbDrawIndirect_37386() { - var _DrawIndirectBuffer = OpenTK.Graphics.OpenGL4.ArbDrawIndirect.DrawIndirectBuffer; - var _DrawIndirectBufferBinding = OpenTK.Graphics.OpenGL4.ArbDrawIndirect.DrawIndirectBufferBinding; -} -static void Test_ArbEnhancedLayouts_37387() { - var _TransformFeedbackBuffer = OpenTK.Graphics.OpenGL4.ArbEnhancedLayouts.TransformFeedbackBuffer; - var _LocationComponent = OpenTK.Graphics.OpenGL4.ArbEnhancedLayouts.LocationComponent; - var _TransformFeedbackBufferIndex = OpenTK.Graphics.OpenGL4.ArbEnhancedLayouts.TransformFeedbackBufferIndex; - var _TransformFeedbackBufferStride = OpenTK.Graphics.OpenGL4.ArbEnhancedLayouts.TransformFeedbackBufferStride; -} -static void Test_ArbEs2Compatibility_37388() { - var _Fixed = OpenTK.Graphics.OpenGL4.ArbEs2Compatibility.Fixed; - var _ImplementationColorReadType = OpenTK.Graphics.OpenGL4.ArbEs2Compatibility.ImplementationColorReadType; - var _ImplementationColorReadFormat = OpenTK.Graphics.OpenGL4.ArbEs2Compatibility.ImplementationColorReadFormat; - var _Rgb565 = OpenTK.Graphics.OpenGL4.ArbEs2Compatibility.Rgb565; - var _LowFloat = OpenTK.Graphics.OpenGL4.ArbEs2Compatibility.LowFloat; - var _MediumFloat = OpenTK.Graphics.OpenGL4.ArbEs2Compatibility.MediumFloat; - var _HighFloat = OpenTK.Graphics.OpenGL4.ArbEs2Compatibility.HighFloat; - var _LowInt = OpenTK.Graphics.OpenGL4.ArbEs2Compatibility.LowInt; - var _MediumInt = OpenTK.Graphics.OpenGL4.ArbEs2Compatibility.MediumInt; - var _HighInt = OpenTK.Graphics.OpenGL4.ArbEs2Compatibility.HighInt; - var _ShaderBinaryFormats = OpenTK.Graphics.OpenGL4.ArbEs2Compatibility.ShaderBinaryFormats; - var _NumShaderBinaryFormats = OpenTK.Graphics.OpenGL4.ArbEs2Compatibility.NumShaderBinaryFormats; - var _ShaderCompiler = OpenTK.Graphics.OpenGL4.ArbEs2Compatibility.ShaderCompiler; - var _MaxVertexUniformVectors = OpenTK.Graphics.OpenGL4.ArbEs2Compatibility.MaxVertexUniformVectors; - var _MaxVaryingVectors = OpenTK.Graphics.OpenGL4.ArbEs2Compatibility.MaxVaryingVectors; - var _MaxFragmentUniformVectors = OpenTK.Graphics.OpenGL4.ArbEs2Compatibility.MaxFragmentUniformVectors; -} -static void Test_ArbEs3Compatibility_37389() { - var _PrimitiveRestartFixedIndex = OpenTK.Graphics.OpenGL4.ArbEs3Compatibility.PrimitiveRestartFixedIndex; - var _AnySamplesPassedConservative = OpenTK.Graphics.OpenGL4.ArbEs3Compatibility.AnySamplesPassedConservative; - var _MaxElementIndex = OpenTK.Graphics.OpenGL4.ArbEs3Compatibility.MaxElementIndex; - var _CompressedR11Eac = OpenTK.Graphics.OpenGL4.ArbEs3Compatibility.CompressedR11Eac; - var _CompressedSignedR11Eac = OpenTK.Graphics.OpenGL4.ArbEs3Compatibility.CompressedSignedR11Eac; - var _CompressedRg11Eac = OpenTK.Graphics.OpenGL4.ArbEs3Compatibility.CompressedRg11Eac; - var _CompressedSignedRg11Eac = OpenTK.Graphics.OpenGL4.ArbEs3Compatibility.CompressedSignedRg11Eac; - var _CompressedRgb8Etc2 = OpenTK.Graphics.OpenGL4.ArbEs3Compatibility.CompressedRgb8Etc2; - var _CompressedSrgb8Etc2 = OpenTK.Graphics.OpenGL4.ArbEs3Compatibility.CompressedSrgb8Etc2; - var _CompressedRgb8PunchthroughAlpha1Etc2 = OpenTK.Graphics.OpenGL4.ArbEs3Compatibility.CompressedRgb8PunchthroughAlpha1Etc2; - var _CompressedSrgb8PunchthroughAlpha1Etc2 = OpenTK.Graphics.OpenGL4.ArbEs3Compatibility.CompressedSrgb8PunchthroughAlpha1Etc2; - var _CompressedRgba8Etc2Eac = OpenTK.Graphics.OpenGL4.ArbEs3Compatibility.CompressedRgba8Etc2Eac; - var _CompressedSrgb8Alpha8Etc2Eac = OpenTK.Graphics.OpenGL4.ArbEs3Compatibility.CompressedSrgb8Alpha8Etc2Eac; -} -static void Test_ArbExplicitAttribLocation_37390() { -} -static void Test_ArbExplicitUniformLocation_37391() { - var _MaxUniformLocations = OpenTK.Graphics.OpenGL4.ArbExplicitUniformLocation.MaxUniformLocations; -} -static void Test_ArbFragmentCoordConventions_37392() { -} -static void Test_ArbFragmentLayerViewport_37393() { -} -static void Test_ArbFramebufferNoAttachments_37394() { - var _FramebufferDefaultWidth = OpenTK.Graphics.OpenGL4.ArbFramebufferNoAttachments.FramebufferDefaultWidth; - var _FramebufferDefaultHeight = OpenTK.Graphics.OpenGL4.ArbFramebufferNoAttachments.FramebufferDefaultHeight; - var _FramebufferDefaultLayers = OpenTK.Graphics.OpenGL4.ArbFramebufferNoAttachments.FramebufferDefaultLayers; - var _FramebufferDefaultSamples = OpenTK.Graphics.OpenGL4.ArbFramebufferNoAttachments.FramebufferDefaultSamples; - var _FramebufferDefaultFixedSampleLocations = OpenTK.Graphics.OpenGL4.ArbFramebufferNoAttachments.FramebufferDefaultFixedSampleLocations; - var _MaxFramebufferWidth = OpenTK.Graphics.OpenGL4.ArbFramebufferNoAttachments.MaxFramebufferWidth; - var _MaxFramebufferHeight = OpenTK.Graphics.OpenGL4.ArbFramebufferNoAttachments.MaxFramebufferHeight; - var _MaxFramebufferLayers = OpenTK.Graphics.OpenGL4.ArbFramebufferNoAttachments.MaxFramebufferLayers; - var _MaxFramebufferSamples = OpenTK.Graphics.OpenGL4.ArbFramebufferNoAttachments.MaxFramebufferSamples; -} -static void Test_ArbFramebufferObject_37395() { - var _InvalidFramebufferOperation = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.InvalidFramebufferOperation; - var _FramebufferAttachmentColorEncoding = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.FramebufferAttachmentColorEncoding; - var _FramebufferAttachmentComponentType = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.FramebufferAttachmentComponentType; - var _FramebufferAttachmentRedSize = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.FramebufferAttachmentRedSize; - var _FramebufferAttachmentGreenSize = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.FramebufferAttachmentGreenSize; - var _FramebufferAttachmentBlueSize = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.FramebufferAttachmentBlueSize; - var _FramebufferAttachmentAlphaSize = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.FramebufferAttachmentAlphaSize; - var _FramebufferAttachmentDepthSize = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.FramebufferAttachmentDepthSize; - var _FramebufferAttachmentStencilSize = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.FramebufferAttachmentStencilSize; - var _FramebufferDefault = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.FramebufferDefault; - var _FramebufferUndefined = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.FramebufferUndefined; - var _DepthStencilAttachment = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.DepthStencilAttachment; - var _Index = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.Index; - var _MaxRenderbufferSize = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.MaxRenderbufferSize; - var _DepthStencil = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.DepthStencil; - var _UnsignedInt248 = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.UnsignedInt248; - var _Depth24Stencil8 = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.Depth24Stencil8; - var _TextureStencilSize = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.TextureStencilSize; - var _TextureRedType = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.TextureRedType; - var _TextureGreenType = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.TextureGreenType; - var _TextureBlueType = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.TextureBlueType; - var _TextureAlphaType = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.TextureAlphaType; - var _TextureDepthType = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.TextureDepthType; - var _UnsignedNormalized = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.UnsignedNormalized; - var _DrawFramebufferBinding = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.DrawFramebufferBinding; - var _FramebufferBinding = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.FramebufferBinding; - var _RenderbufferBinding = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.RenderbufferBinding; - var _ReadFramebuffer = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.ReadFramebuffer; - var _DrawFramebuffer = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.DrawFramebuffer; - var _ReadFramebufferBinding = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.ReadFramebufferBinding; - var _RenderbufferSamples = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.RenderbufferSamples; - var _FramebufferAttachmentObjectType = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.FramebufferAttachmentObjectType; - var _FramebufferAttachmentObjectName = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.FramebufferAttachmentObjectName; - var _FramebufferAttachmentTextureLevel = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.FramebufferAttachmentTextureLevel; - var _FramebufferAttachmentTextureCubeMapFace = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.FramebufferAttachmentTextureCubeMapFace; - var _FramebufferAttachmentTextureLayer = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.FramebufferAttachmentTextureLayer; - var _FramebufferComplete = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.FramebufferComplete; - var _FramebufferIncompleteAttachment = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.FramebufferIncompleteAttachment; - var _FramebufferIncompleteMissingAttachment = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.FramebufferIncompleteMissingAttachment; - var _FramebufferIncompleteDrawBuffer = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.FramebufferIncompleteDrawBuffer; - var _FramebufferIncompleteReadBuffer = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.FramebufferIncompleteReadBuffer; - var _FramebufferUnsupported = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.FramebufferUnsupported; - var _MaxColorAttachments = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.MaxColorAttachments; - var _ColorAttachment0 = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.ColorAttachment0; - var _ColorAttachment1 = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.ColorAttachment1; - var _ColorAttachment2 = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.ColorAttachment2; - var _ColorAttachment3 = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.ColorAttachment3; - var _ColorAttachment4 = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.ColorAttachment4; - var _ColorAttachment5 = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.ColorAttachment5; - var _ColorAttachment6 = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.ColorAttachment6; - var _ColorAttachment7 = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.ColorAttachment7; - var _ColorAttachment8 = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.ColorAttachment8; - var _ColorAttachment9 = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.ColorAttachment9; - var _ColorAttachment10 = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.ColorAttachment10; - var _ColorAttachment11 = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.ColorAttachment11; - var _ColorAttachment12 = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.ColorAttachment12; - var _ColorAttachment13 = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.ColorAttachment13; - var _ColorAttachment14 = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.ColorAttachment14; - var _ColorAttachment15 = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.ColorAttachment15; - var _DepthAttachment = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.DepthAttachment; - var _StencilAttachment = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.StencilAttachment; - var _Framebuffer = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.Framebuffer; - var _Renderbuffer = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.Renderbuffer; - var _RenderbufferWidth = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.RenderbufferWidth; - var _RenderbufferHeight = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.RenderbufferHeight; - var _RenderbufferInternalFormat = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.RenderbufferInternalFormat; - var _StencilIndex1 = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.StencilIndex1; - var _StencilIndex4 = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.StencilIndex4; - var _StencilIndex8 = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.StencilIndex8; - var _StencilIndex16 = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.StencilIndex16; - var _RenderbufferRedSize = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.RenderbufferRedSize; - var _RenderbufferGreenSize = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.RenderbufferGreenSize; - var _RenderbufferBlueSize = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.RenderbufferBlueSize; - var _RenderbufferAlphaSize = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.RenderbufferAlphaSize; - var _RenderbufferDepthSize = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.RenderbufferDepthSize; - var _RenderbufferStencilSize = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.RenderbufferStencilSize; - var _FramebufferIncompleteMultisample = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.FramebufferIncompleteMultisample; - var _MaxSamples = OpenTK.Graphics.OpenGL4.ArbFramebufferObject.MaxSamples; -} -static void Test_ArbFramebufferSrgb_37396() { - var _FramebufferSrgb = OpenTK.Graphics.OpenGL4.ArbFramebufferSrgb.FramebufferSrgb; -} -static void Test_ArbGetProgramBinary_37397() { - var _ProgramBinaryRetrievableHint = OpenTK.Graphics.OpenGL4.ArbGetProgramBinary.ProgramBinaryRetrievableHint; - var _ProgramBinaryLength = OpenTK.Graphics.OpenGL4.ArbGetProgramBinary.ProgramBinaryLength; - var _NumProgramBinaryFormats = OpenTK.Graphics.OpenGL4.ArbGetProgramBinary.NumProgramBinaryFormats; - var _ProgramBinaryFormats = OpenTK.Graphics.OpenGL4.ArbGetProgramBinary.ProgramBinaryFormats; -} -static void Test_ArbGpuShader5_37398() { - var _GeometryShaderInvocations = OpenTK.Graphics.OpenGL4.ArbGpuShader5.GeometryShaderInvocations; - var _MaxGeometryShaderInvocations = OpenTK.Graphics.OpenGL4.ArbGpuShader5.MaxGeometryShaderInvocations; - var _MinFragmentInterpolationOffset = OpenTK.Graphics.OpenGL4.ArbGpuShader5.MinFragmentInterpolationOffset; - var _MaxFragmentInterpolationOffset = OpenTK.Graphics.OpenGL4.ArbGpuShader5.MaxFragmentInterpolationOffset; - var _FragmentInterpolationOffsetBits = OpenTK.Graphics.OpenGL4.ArbGpuShader5.FragmentInterpolationOffsetBits; - var _MaxVertexStreams = OpenTK.Graphics.OpenGL4.ArbGpuShader5.MaxVertexStreams; -} -static void Test_ArbGpuShaderFp64_37399() { - var _Double = OpenTK.Graphics.OpenGL4.ArbGpuShaderFp64.Double; - var _DoubleMat2 = OpenTK.Graphics.OpenGL4.ArbGpuShaderFp64.DoubleMat2; - var _DoubleMat3 = OpenTK.Graphics.OpenGL4.ArbGpuShaderFp64.DoubleMat3; - var _DoubleMat4 = OpenTK.Graphics.OpenGL4.ArbGpuShaderFp64.DoubleMat4; - var _DoubleMat2x3 = OpenTK.Graphics.OpenGL4.ArbGpuShaderFp64.DoubleMat2x3; - var _DoubleMat2x4 = OpenTK.Graphics.OpenGL4.ArbGpuShaderFp64.DoubleMat2x4; - var _DoubleMat3x2 = OpenTK.Graphics.OpenGL4.ArbGpuShaderFp64.DoubleMat3x2; - var _DoubleMat3x4 = OpenTK.Graphics.OpenGL4.ArbGpuShaderFp64.DoubleMat3x4; - var _DoubleMat4x2 = OpenTK.Graphics.OpenGL4.ArbGpuShaderFp64.DoubleMat4x2; - var _DoubleMat4x3 = OpenTK.Graphics.OpenGL4.ArbGpuShaderFp64.DoubleMat4x3; - var _DoubleVec2 = OpenTK.Graphics.OpenGL4.ArbGpuShaderFp64.DoubleVec2; - var _DoubleVec3 = OpenTK.Graphics.OpenGL4.ArbGpuShaderFp64.DoubleVec3; - var _DoubleVec4 = OpenTK.Graphics.OpenGL4.ArbGpuShaderFp64.DoubleVec4; -} -static void Test_ArbHalfFloatVertex_37400() { - var _HalfFloat = OpenTK.Graphics.OpenGL4.ArbHalfFloatVertex.HalfFloat; -} -static void Test_ArbImaging_37401() { - var _ConstantColor = OpenTK.Graphics.OpenGL4.ArbImaging.ConstantColor; - var _OneMinusConstantColor = OpenTK.Graphics.OpenGL4.ArbImaging.OneMinusConstantColor; - var _ConstantAlpha = OpenTK.Graphics.OpenGL4.ArbImaging.ConstantAlpha; - var _OneMinusConstantAlpha = OpenTK.Graphics.OpenGL4.ArbImaging.OneMinusConstantAlpha; - var _BlendColor = OpenTK.Graphics.OpenGL4.ArbImaging.BlendColor; - var _FuncAdd = OpenTK.Graphics.OpenGL4.ArbImaging.FuncAdd; - var _Min = OpenTK.Graphics.OpenGL4.ArbImaging.Min; - var _Max = OpenTK.Graphics.OpenGL4.ArbImaging.Max; - var _BlendEquation = OpenTK.Graphics.OpenGL4.ArbImaging.BlendEquation; - var _FuncSubtract = OpenTK.Graphics.OpenGL4.ArbImaging.FuncSubtract; - var _FuncReverseSubtract = OpenTK.Graphics.OpenGL4.ArbImaging.FuncReverseSubtract; - var _Convolution1D = OpenTK.Graphics.OpenGL4.ArbImaging.Convolution1D; - var _Convolution2D = OpenTK.Graphics.OpenGL4.ArbImaging.Convolution2D; - var _Separable2D = OpenTK.Graphics.OpenGL4.ArbImaging.Separable2D; - var _ConvolutionBorderMode = OpenTK.Graphics.OpenGL4.ArbImaging.ConvolutionBorderMode; - var _ConvolutionFilterScale = OpenTK.Graphics.OpenGL4.ArbImaging.ConvolutionFilterScale; - var _ConvolutionFilterBias = OpenTK.Graphics.OpenGL4.ArbImaging.ConvolutionFilterBias; - var _Reduce = OpenTK.Graphics.OpenGL4.ArbImaging.Reduce; - var _ConvolutionFormat = OpenTK.Graphics.OpenGL4.ArbImaging.ConvolutionFormat; - var _ConvolutionWidth = OpenTK.Graphics.OpenGL4.ArbImaging.ConvolutionWidth; - var _ConvolutionHeight = OpenTK.Graphics.OpenGL4.ArbImaging.ConvolutionHeight; - var _MaxConvolutionWidth = OpenTK.Graphics.OpenGL4.ArbImaging.MaxConvolutionWidth; - var _MaxConvolutionHeight = OpenTK.Graphics.OpenGL4.ArbImaging.MaxConvolutionHeight; - var _PostConvolutionRedScale = OpenTK.Graphics.OpenGL4.ArbImaging.PostConvolutionRedScale; - var _PostConvolutionGreenScale = OpenTK.Graphics.OpenGL4.ArbImaging.PostConvolutionGreenScale; - var _PostConvolutionBlueScale = OpenTK.Graphics.OpenGL4.ArbImaging.PostConvolutionBlueScale; - var _PostConvolutionAlphaScale = OpenTK.Graphics.OpenGL4.ArbImaging.PostConvolutionAlphaScale; - var _PostConvolutionRedBias = OpenTK.Graphics.OpenGL4.ArbImaging.PostConvolutionRedBias; - var _PostConvolutionGreenBias = OpenTK.Graphics.OpenGL4.ArbImaging.PostConvolutionGreenBias; - var _PostConvolutionBlueBias = OpenTK.Graphics.OpenGL4.ArbImaging.PostConvolutionBlueBias; - var _PostConvolutionAlphaBias = OpenTK.Graphics.OpenGL4.ArbImaging.PostConvolutionAlphaBias; - var _Histogram = OpenTK.Graphics.OpenGL4.ArbImaging.Histogram; - var _ProxyHistogram = OpenTK.Graphics.OpenGL4.ArbImaging.ProxyHistogram; - var _HistogramWidth = OpenTK.Graphics.OpenGL4.ArbImaging.HistogramWidth; - var _HistogramFormat = OpenTK.Graphics.OpenGL4.ArbImaging.HistogramFormat; - var _HistogramRedSize = OpenTK.Graphics.OpenGL4.ArbImaging.HistogramRedSize; - var _HistogramGreenSize = OpenTK.Graphics.OpenGL4.ArbImaging.HistogramGreenSize; - var _HistogramBlueSize = OpenTK.Graphics.OpenGL4.ArbImaging.HistogramBlueSize; - var _HistogramAlphaSize = OpenTK.Graphics.OpenGL4.ArbImaging.HistogramAlphaSize; - var _HistogramLuminanceSize = OpenTK.Graphics.OpenGL4.ArbImaging.HistogramLuminanceSize; - var _HistogramSink = OpenTK.Graphics.OpenGL4.ArbImaging.HistogramSink; - var _Minmax = OpenTK.Graphics.OpenGL4.ArbImaging.Minmax; - var _MinmaxFormat = OpenTK.Graphics.OpenGL4.ArbImaging.MinmaxFormat; - var _MinmaxSink = OpenTK.Graphics.OpenGL4.ArbImaging.MinmaxSink; - var _TableTooLarge = OpenTK.Graphics.OpenGL4.ArbImaging.TableTooLarge; - var _ColorMatrix = OpenTK.Graphics.OpenGL4.ArbImaging.ColorMatrix; - var _ColorMatrixStackDepth = OpenTK.Graphics.OpenGL4.ArbImaging.ColorMatrixStackDepth; - var _MaxColorMatrixStackDepth = OpenTK.Graphics.OpenGL4.ArbImaging.MaxColorMatrixStackDepth; - var _PostColorMatrixRedScale = OpenTK.Graphics.OpenGL4.ArbImaging.PostColorMatrixRedScale; - var _PostColorMatrixGreenScale = OpenTK.Graphics.OpenGL4.ArbImaging.PostColorMatrixGreenScale; - var _PostColorMatrixBlueScale = OpenTK.Graphics.OpenGL4.ArbImaging.PostColorMatrixBlueScale; - var _PostColorMatrixAlphaScale = OpenTK.Graphics.OpenGL4.ArbImaging.PostColorMatrixAlphaScale; - var _PostColorMatrixRedBias = OpenTK.Graphics.OpenGL4.ArbImaging.PostColorMatrixRedBias; - var _PostColorMatrixGreenBias = OpenTK.Graphics.OpenGL4.ArbImaging.PostColorMatrixGreenBias; - var _PostColorMatrixBlueBias = OpenTK.Graphics.OpenGL4.ArbImaging.PostColorMatrixBlueBias; - var _PostColorMatrixAlphaBias = OpenTK.Graphics.OpenGL4.ArbImaging.PostColorMatrixAlphaBias; - var _ColorTable = OpenTK.Graphics.OpenGL4.ArbImaging.ColorTable; - var _PostConvolutionColorTable = OpenTK.Graphics.OpenGL4.ArbImaging.PostConvolutionColorTable; - var _PostColorMatrixColorTable = OpenTK.Graphics.OpenGL4.ArbImaging.PostColorMatrixColorTable; - var _ProxyColorTable = OpenTK.Graphics.OpenGL4.ArbImaging.ProxyColorTable; - var _ProxyPostConvolutionColorTable = OpenTK.Graphics.OpenGL4.ArbImaging.ProxyPostConvolutionColorTable; - var _ProxyPostColorMatrixColorTable = OpenTK.Graphics.OpenGL4.ArbImaging.ProxyPostColorMatrixColorTable; - var _ColorTableScale = OpenTK.Graphics.OpenGL4.ArbImaging.ColorTableScale; - var _ColorTableBias = OpenTK.Graphics.OpenGL4.ArbImaging.ColorTableBias; - var _ColorTableFormat = OpenTK.Graphics.OpenGL4.ArbImaging.ColorTableFormat; - var _ColorTableWidth = OpenTK.Graphics.OpenGL4.ArbImaging.ColorTableWidth; - var _ColorTableRedSize = OpenTK.Graphics.OpenGL4.ArbImaging.ColorTableRedSize; - var _ColorTableGreenSize = OpenTK.Graphics.OpenGL4.ArbImaging.ColorTableGreenSize; - var _ColorTableBlueSize = OpenTK.Graphics.OpenGL4.ArbImaging.ColorTableBlueSize; - var _ColorTableAlphaSize = OpenTK.Graphics.OpenGL4.ArbImaging.ColorTableAlphaSize; - var _ColorTableLuminanceSize = OpenTK.Graphics.OpenGL4.ArbImaging.ColorTableLuminanceSize; - var _ColorTableIntensitySize = OpenTK.Graphics.OpenGL4.ArbImaging.ColorTableIntensitySize; - var _ConstantBorder = OpenTK.Graphics.OpenGL4.ArbImaging.ConstantBorder; - var _ReplicateBorder = OpenTK.Graphics.OpenGL4.ArbImaging.ReplicateBorder; - var _ConvolutionBorderColor = OpenTK.Graphics.OpenGL4.ArbImaging.ConvolutionBorderColor; -} -static void Test_ArbIndirectParameters_37402() { - var _ParameterBufferArb = OpenTK.Graphics.OpenGL4.ArbIndirectParameters.ParameterBufferArb; - var _ParameterBufferBindingArb = OpenTK.Graphics.OpenGL4.ArbIndirectParameters.ParameterBufferBindingArb; -} -static void Test_ArbInternalformatQuery_37403() { - var _NumSampleCounts = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery.NumSampleCounts; -} -static void Test_ArbInternalformatQuery2_37404() { - var _Texture1D = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.Texture1D; - var _Texture2D = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.Texture2D; - var _Texture3D = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.Texture3D; - var _Samples = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.Samples; - var _InternalformatSupported = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.InternalformatSupported; - var _InternalformatPreferred = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.InternalformatPreferred; - var _InternalformatRedSize = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.InternalformatRedSize; - var _InternalformatGreenSize = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.InternalformatGreenSize; - var _InternalformatBlueSize = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.InternalformatBlueSize; - var _InternalformatAlphaSize = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.InternalformatAlphaSize; - var _InternalformatDepthSize = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.InternalformatDepthSize; - var _InternalformatStencilSize = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.InternalformatStencilSize; - var _InternalformatSharedSize = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.InternalformatSharedSize; - var _InternalformatRedType = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.InternalformatRedType; - var _InternalformatGreenType = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.InternalformatGreenType; - var _InternalformatBlueType = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.InternalformatBlueType; - var _InternalformatAlphaType = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.InternalformatAlphaType; - var _InternalformatDepthType = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.InternalformatDepthType; - var _InternalformatStencilType = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.InternalformatStencilType; - var _MaxWidth = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.MaxWidth; - var _MaxHeight = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.MaxHeight; - var _MaxDepth = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.MaxDepth; - var _MaxLayers = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.MaxLayers; - var _MaxCombinedDimensions = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.MaxCombinedDimensions; - var _ColorComponents = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ColorComponents; - var _DepthComponents = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.DepthComponents; - var _StencilComponents = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.StencilComponents; - var _ColorRenderable = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ColorRenderable; - var _DepthRenderable = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.DepthRenderable; - var _StencilRenderable = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.StencilRenderable; - var _FramebufferRenderable = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.FramebufferRenderable; - var _FramebufferRenderableLayered = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.FramebufferRenderableLayered; - var _FramebufferBlend = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.FramebufferBlend; - var _ReadPixels = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ReadPixels; - var _ReadPixelsFormat = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ReadPixelsFormat; - var _ReadPixelsType = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ReadPixelsType; - var _TextureImageFormat = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.TextureImageFormat; - var _TextureImageType = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.TextureImageType; - var _GetTextureImageFormat = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.GetTextureImageFormat; - var _GetTextureImageType = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.GetTextureImageType; - var _Mipmap = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.Mipmap; - var _ManualGenerateMipmap = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ManualGenerateMipmap; - var _AutoGenerateMipmap = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.AutoGenerateMipmap; - var _ColorEncoding = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ColorEncoding; - var _SrgbRead = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.SrgbRead; - var _SrgbWrite = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.SrgbWrite; - var _SrgbDecodeArb = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.SrgbDecodeArb; - var _Filter = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.Filter; - var _VertexTexture = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.VertexTexture; - var _TessControlTexture = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.TessControlTexture; - var _TessEvaluationTexture = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.TessEvaluationTexture; - var _GeometryTexture = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.GeometryTexture; - var _FragmentTexture = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.FragmentTexture; - var _ComputeTexture = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ComputeTexture; - var _TextureShadow = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.TextureShadow; - var _TextureGather = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.TextureGather; - var _TextureGatherShadow = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.TextureGatherShadow; - var _ShaderImageLoad = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ShaderImageLoad; - var _ShaderImageStore = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ShaderImageStore; - var _ShaderImageAtomic = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ShaderImageAtomic; - var _ImageTexelSize = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ImageTexelSize; - var _ImageCompatibilityClass = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ImageCompatibilityClass; - var _ImagePixelFormat = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ImagePixelFormat; - var _ImagePixelType = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ImagePixelType; - var _SimultaneousTextureAndDepthTest = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.SimultaneousTextureAndDepthTest; - var _SimultaneousTextureAndStencilTest = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.SimultaneousTextureAndStencilTest; - var _SimultaneousTextureAndDepthWrite = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.SimultaneousTextureAndDepthWrite; - var _SimultaneousTextureAndStencilWrite = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.SimultaneousTextureAndStencilWrite; - var _TextureCompressedBlockWidth = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.TextureCompressedBlockWidth; - var _TextureCompressedBlockHeight = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.TextureCompressedBlockHeight; - var _TextureCompressedBlockSize = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.TextureCompressedBlockSize; - var _ClearBuffer = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ClearBuffer; - var _TextureView = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.TextureView; - var _ViewCompatibilityClass = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ViewCompatibilityClass; - var _FullSupport = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.FullSupport; - var _CaveatSupport = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.CaveatSupport; - var _ImageClass4X32 = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ImageClass4X32; - var _ImageClass2X32 = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ImageClass2X32; - var _ImageClass1X32 = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ImageClass1X32; - var _ImageClass4X16 = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ImageClass4X16; - var _ImageClass2X16 = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ImageClass2X16; - var _ImageClass1X16 = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ImageClass1X16; - var _ImageClass4X8 = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ImageClass4X8; - var _ImageClass2X8 = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ImageClass2X8; - var _ImageClass1X8 = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ImageClass1X8; - var _ImageClass111110 = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ImageClass111110; - var _ImageClass1010102 = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ImageClass1010102; - var _ViewClass128Bits = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ViewClass128Bits; - var _ViewClass96Bits = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ViewClass96Bits; - var _ViewClass64Bits = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ViewClass64Bits; - var _ViewClass48Bits = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ViewClass48Bits; - var _ViewClass32Bits = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ViewClass32Bits; - var _ViewClass24Bits = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ViewClass24Bits; - var _ViewClass16Bits = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ViewClass16Bits; - var _ViewClass8Bits = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ViewClass8Bits; - var _ViewClassS3tcDxt1Rgb = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ViewClassS3tcDxt1Rgb; - var _ViewClassS3tcDxt1Rgba = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ViewClassS3tcDxt1Rgba; - var _ViewClassS3tcDxt3Rgba = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ViewClassS3tcDxt3Rgba; - var _ViewClassS3tcDxt5Rgba = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ViewClassS3tcDxt5Rgba; - var _ViewClassRgtc1Red = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ViewClassRgtc1Red; - var _ViewClassRgtc2Rg = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ViewClassRgtc2Rg; - var _ViewClassBptcUnorm = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ViewClassBptcUnorm; - var _ViewClassBptcFloat = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ViewClassBptcFloat; - var _TextureRectangle = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.TextureRectangle; - var _TextureCubeMap = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.TextureCubeMap; - var _TextureCompressed = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.TextureCompressed; - var _Texture1DArray = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.Texture1DArray; - var _Texture2DArray = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.Texture2DArray; - var _TextureBuffer = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.TextureBuffer; - var _Renderbuffer = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.Renderbuffer; - var _TextureCubeMapArray = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.TextureCubeMapArray; - var _ImageFormatCompatibilityType = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.ImageFormatCompatibilityType; - var _Texture2DMultisample = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.Texture2DMultisample; - var _Texture2DMultisampleArray = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.Texture2DMultisampleArray; - var _NumSampleCounts = OpenTK.Graphics.OpenGL4.ArbInternalformatQuery2.NumSampleCounts; -} -static void Test_ArbInvalidateSubdata_37405() { -} -static void Test_ArbMapBufferAlignment_37406() { - var _MinMapBufferAlignment = OpenTK.Graphics.OpenGL4.ArbMapBufferAlignment.MinMapBufferAlignment; -} -static void Test_ArbMapBufferRange_37407() { - var _MapReadBit = OpenTK.Graphics.OpenGL4.ArbMapBufferRange.MapReadBit; - var _MapWriteBit = OpenTK.Graphics.OpenGL4.ArbMapBufferRange.MapWriteBit; - var _MapInvalidateRangeBit = OpenTK.Graphics.OpenGL4.ArbMapBufferRange.MapInvalidateRangeBit; - var _MapInvalidateBufferBit = OpenTK.Graphics.OpenGL4.ArbMapBufferRange.MapInvalidateBufferBit; - var _MapFlushExplicitBit = OpenTK.Graphics.OpenGL4.ArbMapBufferRange.MapFlushExplicitBit; - var _MapUnsynchronizedBit = OpenTK.Graphics.OpenGL4.ArbMapBufferRange.MapUnsynchronizedBit; -} -static void Test_ArbMultiBind_37408() { -} -static void Test_ArbMultiDrawIndirect_37409() { -} -static void Test_ArbOcclusionQuery2_37410() { - var _AnySamplesPassed = OpenTK.Graphics.OpenGL4.ArbOcclusionQuery2.AnySamplesPassed; -} -static void Test_ArbProgramInterfaceQuery_37411() { - var _NumCompatibleSubroutines = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.NumCompatibleSubroutines; - var _CompatibleSubroutines = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.CompatibleSubroutines; - var _AtomicCounterBuffer = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.AtomicCounterBuffer; - var _Uniform = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.Uniform; - var _UniformBlock = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.UniformBlock; - var _ProgramInput = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.ProgramInput; - var _ProgramOutput = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.ProgramOutput; - var _BufferVariable = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.BufferVariable; - var _ShaderStorageBlock = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.ShaderStorageBlock; - var _IsPerPatch = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.IsPerPatch; - var _VertexSubroutine = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.VertexSubroutine; - var _TessControlSubroutine = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.TessControlSubroutine; - var _TessEvaluationSubroutine = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.TessEvaluationSubroutine; - var _GeometrySubroutine = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.GeometrySubroutine; - var _FragmentSubroutine = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.FragmentSubroutine; - var _ComputeSubroutine = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.ComputeSubroutine; - var _VertexSubroutineUniform = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.VertexSubroutineUniform; - var _TessControlSubroutineUniform = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.TessControlSubroutineUniform; - var _TessEvaluationSubroutineUniform = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.TessEvaluationSubroutineUniform; - var _GeometrySubroutineUniform = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.GeometrySubroutineUniform; - var _FragmentSubroutineUniform = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.FragmentSubroutineUniform; - var _ComputeSubroutineUniform = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.ComputeSubroutineUniform; - var _TransformFeedbackVarying = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.TransformFeedbackVarying; - var _ActiveResources = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.ActiveResources; - var _MaxNameLength = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.MaxNameLength; - var _MaxNumActiveVariables = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.MaxNumActiveVariables; - var _MaxNumCompatibleSubroutines = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.MaxNumCompatibleSubroutines; - var _NameLength = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.NameLength; - var _Type = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.Type; - var _ArraySize = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.ArraySize; - var _Offset = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.Offset; - var _BlockIndex = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.BlockIndex; - var _ArrayStride = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.ArrayStride; - var _MatrixStride = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.MatrixStride; - var _IsRowMajor = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.IsRowMajor; - var _AtomicCounterBufferIndex = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.AtomicCounterBufferIndex; - var _BufferBinding = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.BufferBinding; - var _BufferDataSize = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.BufferDataSize; - var _NumActiveVariables = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.NumActiveVariables; - var _ActiveVariables = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.ActiveVariables; - var _ReferencedByVertexShader = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.ReferencedByVertexShader; - var _ReferencedByTessControlShader = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.ReferencedByTessControlShader; - var _ReferencedByTessEvaluationShader = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.ReferencedByTessEvaluationShader; - var _ReferencedByGeometryShader = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.ReferencedByGeometryShader; - var _ReferencedByFragmentShader = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.ReferencedByFragmentShader; - var _ReferencedByComputeShader = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.ReferencedByComputeShader; - var _TopLevelArraySize = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.TopLevelArraySize; - var _TopLevelArrayStride = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.TopLevelArrayStride; - var _Location = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.Location; - var _LocationIndex = OpenTK.Graphics.OpenGL4.ArbProgramInterfaceQuery.LocationIndex; -} -static void Test_ArbProvokingVertex_37412() { - var _QuadsFollowProvokingVertexConvention = OpenTK.Graphics.OpenGL4.ArbProvokingVertex.QuadsFollowProvokingVertexConvention; - var _FirstVertexConvention = OpenTK.Graphics.OpenGL4.ArbProvokingVertex.FirstVertexConvention; - var _LastVertexConvention = OpenTK.Graphics.OpenGL4.ArbProvokingVertex.LastVertexConvention; - var _ProvokingVertex = OpenTK.Graphics.OpenGL4.ArbProvokingVertex.ProvokingVertex; -} -static void Test_ArbQueryBufferObject_37413() { - var _QueryBufferBarrierBit = OpenTK.Graphics.OpenGL4.ArbQueryBufferObject.QueryBufferBarrierBit; - var _QueryBuffer = OpenTK.Graphics.OpenGL4.ArbQueryBufferObject.QueryBuffer; - var _QueryBufferBinding = OpenTK.Graphics.OpenGL4.ArbQueryBufferObject.QueryBufferBinding; - var _QueryResultNoWait = OpenTK.Graphics.OpenGL4.ArbQueryBufferObject.QueryResultNoWait; -} -static void Test_ArbRobustBufferAccessBehavior_37414() { -} -static void Test_ArbRobustness_37415() { - var _NoError = OpenTK.Graphics.OpenGL4.ArbRobustness.NoError; - var _ContextFlagRobustAccessBitArb = OpenTK.Graphics.OpenGL4.ArbRobustness.ContextFlagRobustAccessBitArb; - var _LoseContextOnResetArb = OpenTK.Graphics.OpenGL4.ArbRobustness.LoseContextOnResetArb; - var _GuiltyContextResetArb = OpenTK.Graphics.OpenGL4.ArbRobustness.GuiltyContextResetArb; - var _InnocentContextResetArb = OpenTK.Graphics.OpenGL4.ArbRobustness.InnocentContextResetArb; - var _UnknownContextResetArb = OpenTK.Graphics.OpenGL4.ArbRobustness.UnknownContextResetArb; - var _ResetNotificationStrategyArb = OpenTK.Graphics.OpenGL4.ArbRobustness.ResetNotificationStrategyArb; - var _NoResetNotificationArb = OpenTK.Graphics.OpenGL4.ArbRobustness.NoResetNotificationArb; -} -static void Test_ArbRobustnessIsolation_37416() { -} -static void Test_ArbSamplerObjects_37417() { - var _SamplerBinding = OpenTK.Graphics.OpenGL4.ArbSamplerObjects.SamplerBinding; -} -static void Test_ArbSampleShading_37418() { - var _SampleShadingArb = OpenTK.Graphics.OpenGL4.ArbSampleShading.SampleShadingArb; - var _MinSampleShadingValueArb = OpenTK.Graphics.OpenGL4.ArbSampleShading.MinSampleShadingValueArb; -} -static void Test_ArbSeamlessCubeMap_37419() { - var _TextureCubeMapSeamless = OpenTK.Graphics.OpenGL4.ArbSeamlessCubeMap.TextureCubeMapSeamless; -} -static void Test_ArbSeamlessCubemapPerTexture_37420() { - var _TextureCubeMapSeamless = OpenTK.Graphics.OpenGL4.ArbSeamlessCubemapPerTexture.TextureCubeMapSeamless; -} -static void Test_ArbSeparateShaderObjects_37421() { - var _VertexShaderBit = OpenTK.Graphics.OpenGL4.ArbSeparateShaderObjects.VertexShaderBit; - var _FragmentShaderBit = OpenTK.Graphics.OpenGL4.ArbSeparateShaderObjects.FragmentShaderBit; - var _GeometryShaderBit = OpenTK.Graphics.OpenGL4.ArbSeparateShaderObjects.GeometryShaderBit; - var _TessControlShaderBit = OpenTK.Graphics.OpenGL4.ArbSeparateShaderObjects.TessControlShaderBit; - var _TessEvaluationShaderBit = OpenTK.Graphics.OpenGL4.ArbSeparateShaderObjects.TessEvaluationShaderBit; - var _ProgramSeparable = OpenTK.Graphics.OpenGL4.ArbSeparateShaderObjects.ProgramSeparable; - var _ActiveProgram = OpenTK.Graphics.OpenGL4.ArbSeparateShaderObjects.ActiveProgram; - var _ProgramPipelineBinding = OpenTK.Graphics.OpenGL4.ArbSeparateShaderObjects.ProgramPipelineBinding; - var _AllShaderBits = OpenTK.Graphics.OpenGL4.ArbSeparateShaderObjects.AllShaderBits; -} -static void Test_ArbShaderAtomicCounters_37422() { - var _AtomicCounterBuffer = OpenTK.Graphics.OpenGL4.ArbShaderAtomicCounters.AtomicCounterBuffer; - var _AtomicCounterBufferBinding = OpenTK.Graphics.OpenGL4.ArbShaderAtomicCounters.AtomicCounterBufferBinding; - var _AtomicCounterBufferStart = OpenTK.Graphics.OpenGL4.ArbShaderAtomicCounters.AtomicCounterBufferStart; - var _AtomicCounterBufferSize = OpenTK.Graphics.OpenGL4.ArbShaderAtomicCounters.AtomicCounterBufferSize; - var _AtomicCounterBufferDataSize = OpenTK.Graphics.OpenGL4.ArbShaderAtomicCounters.AtomicCounterBufferDataSize; - var _AtomicCounterBufferActiveAtomicCounters = OpenTK.Graphics.OpenGL4.ArbShaderAtomicCounters.AtomicCounterBufferActiveAtomicCounters; - var _AtomicCounterBufferActiveAtomicCounterIndices = OpenTK.Graphics.OpenGL4.ArbShaderAtomicCounters.AtomicCounterBufferActiveAtomicCounterIndices; - var _AtomicCounterBufferReferencedByVertexShader = OpenTK.Graphics.OpenGL4.ArbShaderAtomicCounters.AtomicCounterBufferReferencedByVertexShader; - var _AtomicCounterBufferReferencedByTessControlShader = OpenTK.Graphics.OpenGL4.ArbShaderAtomicCounters.AtomicCounterBufferReferencedByTessControlShader; - var _AtomicCounterBufferReferencedByTessEvaluationShader = OpenTK.Graphics.OpenGL4.ArbShaderAtomicCounters.AtomicCounterBufferReferencedByTessEvaluationShader; - var _AtomicCounterBufferReferencedByGeometryShader = OpenTK.Graphics.OpenGL4.ArbShaderAtomicCounters.AtomicCounterBufferReferencedByGeometryShader; - var _AtomicCounterBufferReferencedByFragmentShader = OpenTK.Graphics.OpenGL4.ArbShaderAtomicCounters.AtomicCounterBufferReferencedByFragmentShader; - var _MaxVertexAtomicCounterBuffers = OpenTK.Graphics.OpenGL4.ArbShaderAtomicCounters.MaxVertexAtomicCounterBuffers; - var _MaxTessControlAtomicCounterBuffers = OpenTK.Graphics.OpenGL4.ArbShaderAtomicCounters.MaxTessControlAtomicCounterBuffers; - var _MaxTessEvaluationAtomicCounterBuffers = OpenTK.Graphics.OpenGL4.ArbShaderAtomicCounters.MaxTessEvaluationAtomicCounterBuffers; - var _MaxGeometryAtomicCounterBuffers = OpenTK.Graphics.OpenGL4.ArbShaderAtomicCounters.MaxGeometryAtomicCounterBuffers; - var _MaxFragmentAtomicCounterBuffers = OpenTK.Graphics.OpenGL4.ArbShaderAtomicCounters.MaxFragmentAtomicCounterBuffers; - var _MaxCombinedAtomicCounterBuffers = OpenTK.Graphics.OpenGL4.ArbShaderAtomicCounters.MaxCombinedAtomicCounterBuffers; - var _MaxVertexAtomicCounters = OpenTK.Graphics.OpenGL4.ArbShaderAtomicCounters.MaxVertexAtomicCounters; - var _MaxTessControlAtomicCounters = OpenTK.Graphics.OpenGL4.ArbShaderAtomicCounters.MaxTessControlAtomicCounters; - var _MaxTessEvaluationAtomicCounters = OpenTK.Graphics.OpenGL4.ArbShaderAtomicCounters.MaxTessEvaluationAtomicCounters; - var _MaxGeometryAtomicCounters = OpenTK.Graphics.OpenGL4.ArbShaderAtomicCounters.MaxGeometryAtomicCounters; - var _MaxFragmentAtomicCounters = OpenTK.Graphics.OpenGL4.ArbShaderAtomicCounters.MaxFragmentAtomicCounters; - var _MaxCombinedAtomicCounters = OpenTK.Graphics.OpenGL4.ArbShaderAtomicCounters.MaxCombinedAtomicCounters; - var _MaxAtomicCounterBufferSize = OpenTK.Graphics.OpenGL4.ArbShaderAtomicCounters.MaxAtomicCounterBufferSize; - var _ActiveAtomicCounterBuffers = OpenTK.Graphics.OpenGL4.ArbShaderAtomicCounters.ActiveAtomicCounterBuffers; - var _UniformAtomicCounterBufferIndex = OpenTK.Graphics.OpenGL4.ArbShaderAtomicCounters.UniformAtomicCounterBufferIndex; - var _UnsignedIntAtomicCounter = OpenTK.Graphics.OpenGL4.ArbShaderAtomicCounters.UnsignedIntAtomicCounter; - var _MaxAtomicCounterBufferBindings = OpenTK.Graphics.OpenGL4.ArbShaderAtomicCounters.MaxAtomicCounterBufferBindings; -} -static void Test_ArbShaderBitEncoding_37423() { -} -static void Test_ArbShaderDrawParameters_37424() { -} -static void Test_ArbShaderGroupVote_37425() { -} -static void Test_ArbShaderImageLoadStore_37426() { - var _VertexAttribArrayBarrierBit = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.VertexAttribArrayBarrierBit; - var _ElementArrayBarrierBit = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.ElementArrayBarrierBit; - var _UniformBarrierBit = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.UniformBarrierBit; - var _TextureFetchBarrierBit = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.TextureFetchBarrierBit; - var _ShaderImageAccessBarrierBit = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.ShaderImageAccessBarrierBit; - var _CommandBarrierBit = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.CommandBarrierBit; - var _PixelBufferBarrierBit = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.PixelBufferBarrierBit; - var _TextureUpdateBarrierBit = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.TextureUpdateBarrierBit; - var _BufferUpdateBarrierBit = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.BufferUpdateBarrierBit; - var _FramebufferBarrierBit = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.FramebufferBarrierBit; - var _TransformFeedbackBarrierBit = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.TransformFeedbackBarrierBit; - var _AtomicCounterBarrierBit = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.AtomicCounterBarrierBit; - var _MaxImageUnits = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.MaxImageUnits; - var _MaxCombinedImageUnitsAndFragmentOutputs = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.MaxCombinedImageUnitsAndFragmentOutputs; - var _ImageBindingName = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.ImageBindingName; - var _ImageBindingLevel = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.ImageBindingLevel; - var _ImageBindingLayered = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.ImageBindingLayered; - var _ImageBindingLayer = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.ImageBindingLayer; - var _ImageBindingAccess = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.ImageBindingAccess; - var _Image1D = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.Image1D; - var _Image2D = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.Image2D; - var _Image3D = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.Image3D; - var _Image2DRect = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.Image2DRect; - var _ImageCube = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.ImageCube; - var _ImageBuffer = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.ImageBuffer; - var _Image1DArray = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.Image1DArray; - var _Image2DArray = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.Image2DArray; - var _ImageCubeMapArray = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.ImageCubeMapArray; - var _Image2DMultisample = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.Image2DMultisample; - var _Image2DMultisampleArray = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.Image2DMultisampleArray; - var _IntImage1D = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.IntImage1D; - var _IntImage2D = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.IntImage2D; - var _IntImage3D = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.IntImage3D; - var _IntImage2DRect = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.IntImage2DRect; - var _IntImageCube = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.IntImageCube; - var _IntImageBuffer = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.IntImageBuffer; - var _IntImage1DArray = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.IntImage1DArray; - var _IntImage2DArray = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.IntImage2DArray; - var _IntImageCubeMapArray = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.IntImageCubeMapArray; - var _IntImage2DMultisample = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.IntImage2DMultisample; - var _IntImage2DMultisampleArray = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.IntImage2DMultisampleArray; - var _UnsignedIntImage1D = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.UnsignedIntImage1D; - var _UnsignedIntImage2D = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.UnsignedIntImage2D; - var _UnsignedIntImage3D = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.UnsignedIntImage3D; - var _UnsignedIntImage2DRect = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.UnsignedIntImage2DRect; - var _UnsignedIntImageCube = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.UnsignedIntImageCube; - var _UnsignedIntImageBuffer = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.UnsignedIntImageBuffer; - var _UnsignedIntImage1DArray = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.UnsignedIntImage1DArray; - var _UnsignedIntImage2DArray = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.UnsignedIntImage2DArray; - var _UnsignedIntImageCubeMapArray = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.UnsignedIntImageCubeMapArray; - var _UnsignedIntImage2DMultisample = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.UnsignedIntImage2DMultisample; - var _UnsignedIntImage2DMultisampleArray = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.UnsignedIntImage2DMultisampleArray; - var _MaxImageSamples = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.MaxImageSamples; - var _ImageBindingFormat = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.ImageBindingFormat; - var _ImageFormatCompatibilityType = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.ImageFormatCompatibilityType; - var _ImageFormatCompatibilityBySize = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.ImageFormatCompatibilityBySize; - var _ImageFormatCompatibilityByClass = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.ImageFormatCompatibilityByClass; - var _MaxVertexImageUniforms = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.MaxVertexImageUniforms; - var _MaxTessControlImageUniforms = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.MaxTessControlImageUniforms; - var _MaxTessEvaluationImageUniforms = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.MaxTessEvaluationImageUniforms; - var _MaxGeometryImageUniforms = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.MaxGeometryImageUniforms; - var _MaxFragmentImageUniforms = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.MaxFragmentImageUniforms; - var _MaxCombinedImageUniforms = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.MaxCombinedImageUniforms; - var _AllBarrierBits = OpenTK.Graphics.OpenGL4.ArbShaderImageLoadStore.AllBarrierBits; -} -static void Test_ArbShaderImageSize_37427() { -} -static void Test_ArbShaderPrecision_37428() { -} -static void Test_ArbShaderStencilExport_37429() { -} -static void Test_ArbShaderStorageBufferObject_37430() { - var _ShaderStorageBarrierBit = OpenTK.Graphics.OpenGL4.ArbShaderStorageBufferObject.ShaderStorageBarrierBit; - var _MaxCombinedImageUnitsAndFragmentOutputs = OpenTK.Graphics.OpenGL4.ArbShaderStorageBufferObject.MaxCombinedImageUnitsAndFragmentOutputs; - var _MaxCombinedShaderOutputResources = OpenTK.Graphics.OpenGL4.ArbShaderStorageBufferObject.MaxCombinedShaderOutputResources; - var _ShaderStorageBuffer = OpenTK.Graphics.OpenGL4.ArbShaderStorageBufferObject.ShaderStorageBuffer; - var _ShaderStorageBufferBinding = OpenTK.Graphics.OpenGL4.ArbShaderStorageBufferObject.ShaderStorageBufferBinding; - var _ShaderStorageBufferStart = OpenTK.Graphics.OpenGL4.ArbShaderStorageBufferObject.ShaderStorageBufferStart; - var _ShaderStorageBufferSize = OpenTK.Graphics.OpenGL4.ArbShaderStorageBufferObject.ShaderStorageBufferSize; - var _MaxVertexShaderStorageBlocks = OpenTK.Graphics.OpenGL4.ArbShaderStorageBufferObject.MaxVertexShaderStorageBlocks; - var _MaxGeometryShaderStorageBlocks = OpenTK.Graphics.OpenGL4.ArbShaderStorageBufferObject.MaxGeometryShaderStorageBlocks; - var _MaxTessControlShaderStorageBlocks = OpenTK.Graphics.OpenGL4.ArbShaderStorageBufferObject.MaxTessControlShaderStorageBlocks; - var _MaxTessEvaluationShaderStorageBlocks = OpenTK.Graphics.OpenGL4.ArbShaderStorageBufferObject.MaxTessEvaluationShaderStorageBlocks; - var _MaxFragmentShaderStorageBlocks = OpenTK.Graphics.OpenGL4.ArbShaderStorageBufferObject.MaxFragmentShaderStorageBlocks; - var _MaxComputeShaderStorageBlocks = OpenTK.Graphics.OpenGL4.ArbShaderStorageBufferObject.MaxComputeShaderStorageBlocks; - var _MaxCombinedShaderStorageBlocks = OpenTK.Graphics.OpenGL4.ArbShaderStorageBufferObject.MaxCombinedShaderStorageBlocks; - var _MaxShaderStorageBufferBindings = OpenTK.Graphics.OpenGL4.ArbShaderStorageBufferObject.MaxShaderStorageBufferBindings; - var _MaxShaderStorageBlockSize = OpenTK.Graphics.OpenGL4.ArbShaderStorageBufferObject.MaxShaderStorageBlockSize; - var _ShaderStorageBufferOffsetAlignment = OpenTK.Graphics.OpenGL4.ArbShaderStorageBufferObject.ShaderStorageBufferOffsetAlignment; -} -static void Test_ArbShaderSubroutine_37431() { - var _UniformSize = OpenTK.Graphics.OpenGL4.ArbShaderSubroutine.UniformSize; - var _UniformNameLength = OpenTK.Graphics.OpenGL4.ArbShaderSubroutine.UniformNameLength; - var _ActiveSubroutines = OpenTK.Graphics.OpenGL4.ArbShaderSubroutine.ActiveSubroutines; - var _ActiveSubroutineUniforms = OpenTK.Graphics.OpenGL4.ArbShaderSubroutine.ActiveSubroutineUniforms; - var _MaxSubroutines = OpenTK.Graphics.OpenGL4.ArbShaderSubroutine.MaxSubroutines; - var _MaxSubroutineUniformLocations = OpenTK.Graphics.OpenGL4.ArbShaderSubroutine.MaxSubroutineUniformLocations; - var _ActiveSubroutineUniformLocations = OpenTK.Graphics.OpenGL4.ArbShaderSubroutine.ActiveSubroutineUniformLocations; - var _ActiveSubroutineMaxLength = OpenTK.Graphics.OpenGL4.ArbShaderSubroutine.ActiveSubroutineMaxLength; - var _ActiveSubroutineUniformMaxLength = OpenTK.Graphics.OpenGL4.ArbShaderSubroutine.ActiveSubroutineUniformMaxLength; - var _NumCompatibleSubroutines = OpenTK.Graphics.OpenGL4.ArbShaderSubroutine.NumCompatibleSubroutines; - var _CompatibleSubroutines = OpenTK.Graphics.OpenGL4.ArbShaderSubroutine.CompatibleSubroutines; -} -static void Test_ArbShadingLanguage420pack_37432() { -} -static void Test_ArbShadingLanguageInclude_37433() { - var _ShaderIncludeArb = OpenTK.Graphics.OpenGL4.ArbShadingLanguageInclude.ShaderIncludeArb; - var _NamedStringLengthArb = OpenTK.Graphics.OpenGL4.ArbShadingLanguageInclude.NamedStringLengthArb; - var _NamedStringTypeArb = OpenTK.Graphics.OpenGL4.ArbShadingLanguageInclude.NamedStringTypeArb; -} -static void Test_ArbShadingLanguagePacking_37434() { -} -static void Test_ArbSparseTexture_37435() { - var _VirtualPageSizeXArb = OpenTK.Graphics.OpenGL4.ArbSparseTexture.VirtualPageSizeXArb; - var _VirtualPageSizeYArb = OpenTK.Graphics.OpenGL4.ArbSparseTexture.VirtualPageSizeYArb; - var _VirtualPageSizeZArb = OpenTK.Graphics.OpenGL4.ArbSparseTexture.VirtualPageSizeZArb; - var _MaxSparseTextureSizeArb = OpenTK.Graphics.OpenGL4.ArbSparseTexture.MaxSparseTextureSizeArb; - var _MaxSparse3DTextureSizeArb = OpenTK.Graphics.OpenGL4.ArbSparseTexture.MaxSparse3DTextureSizeArb; - var _MaxSparseArrayTextureLayersArb = OpenTK.Graphics.OpenGL4.ArbSparseTexture.MaxSparseArrayTextureLayersArb; - var _MinSparseLevelArb = OpenTK.Graphics.OpenGL4.ArbSparseTexture.MinSparseLevelArb; - var _TextureSparseArb = OpenTK.Graphics.OpenGL4.ArbSparseTexture.TextureSparseArb; - var _VirtualPageSizeIndexArb = OpenTK.Graphics.OpenGL4.ArbSparseTexture.VirtualPageSizeIndexArb; - var _NumVirtualPageSizesArb = OpenTK.Graphics.OpenGL4.ArbSparseTexture.NumVirtualPageSizesArb; - var _SparseTextureFullArrayCubeMipmapsArb = OpenTK.Graphics.OpenGL4.ArbSparseTexture.SparseTextureFullArrayCubeMipmapsArb; -} -static void Test_ArbStencilTexturing_37436() { - var _DepthStencilTextureMode = OpenTK.Graphics.OpenGL4.ArbStencilTexturing.DepthStencilTextureMode; -} -static void Test_ArbSync_37437() { - var _SyncFlushCommandsBit = OpenTK.Graphics.OpenGL4.ArbSync.SyncFlushCommandsBit; - var _MaxServerWaitTimeout = OpenTK.Graphics.OpenGL4.ArbSync.MaxServerWaitTimeout; - var _ObjectType = OpenTK.Graphics.OpenGL4.ArbSync.ObjectType; - var _SyncCondition = OpenTK.Graphics.OpenGL4.ArbSync.SyncCondition; - var _SyncStatus = OpenTK.Graphics.OpenGL4.ArbSync.SyncStatus; - var _SyncFlags = OpenTK.Graphics.OpenGL4.ArbSync.SyncFlags; - var _SyncFence = OpenTK.Graphics.OpenGL4.ArbSync.SyncFence; - var _SyncGpuCommandsComplete = OpenTK.Graphics.OpenGL4.ArbSync.SyncGpuCommandsComplete; - var _Unsignaled = OpenTK.Graphics.OpenGL4.ArbSync.Unsignaled; - var _Signaled = OpenTK.Graphics.OpenGL4.ArbSync.Signaled; - var _AlreadySignaled = OpenTK.Graphics.OpenGL4.ArbSync.AlreadySignaled; - var _TimeoutExpired = OpenTK.Graphics.OpenGL4.ArbSync.TimeoutExpired; - var _ConditionSatisfied = OpenTK.Graphics.OpenGL4.ArbSync.ConditionSatisfied; - var _WaitFailed = OpenTK.Graphics.OpenGL4.ArbSync.WaitFailed; - var _TimeoutIgnored = OpenTK.Graphics.OpenGL4.ArbSync.TimeoutIgnored; -} -static void Test_ArbTessellationShader_37438() { - var _Triangles = OpenTK.Graphics.OpenGL4.ArbTessellationShader.Triangles; - var _Patches = OpenTK.Graphics.OpenGL4.ArbTessellationShader.Patches; - var _Equal = OpenTK.Graphics.OpenGL4.ArbTessellationShader.Equal; - var _Cw = OpenTK.Graphics.OpenGL4.ArbTessellationShader.Cw; - var _Ccw = OpenTK.Graphics.OpenGL4.ArbTessellationShader.Ccw; - var _UniformBlockReferencedByTessControlShader = OpenTK.Graphics.OpenGL4.ArbTessellationShader.UniformBlockReferencedByTessControlShader; - var _UniformBlockReferencedByTessEvaluationShader = OpenTK.Graphics.OpenGL4.ArbTessellationShader.UniformBlockReferencedByTessEvaluationShader; - var _MaxTessControlInputComponents = OpenTK.Graphics.OpenGL4.ArbTessellationShader.MaxTessControlInputComponents; - var _MaxTessEvaluationInputComponents = OpenTK.Graphics.OpenGL4.ArbTessellationShader.MaxTessEvaluationInputComponents; - var _MaxCombinedTessControlUniformComponents = OpenTK.Graphics.OpenGL4.ArbTessellationShader.MaxCombinedTessControlUniformComponents; - var _MaxCombinedTessEvaluationUniformComponents = OpenTK.Graphics.OpenGL4.ArbTessellationShader.MaxCombinedTessEvaluationUniformComponents; - var _PatchVertices = OpenTK.Graphics.OpenGL4.ArbTessellationShader.PatchVertices; - var _PatchDefaultInnerLevel = OpenTK.Graphics.OpenGL4.ArbTessellationShader.PatchDefaultInnerLevel; - var _PatchDefaultOuterLevel = OpenTK.Graphics.OpenGL4.ArbTessellationShader.PatchDefaultOuterLevel; - var _TessControlOutputVertices = OpenTK.Graphics.OpenGL4.ArbTessellationShader.TessControlOutputVertices; - var _TessGenMode = OpenTK.Graphics.OpenGL4.ArbTessellationShader.TessGenMode; - var _TessGenSpacing = OpenTK.Graphics.OpenGL4.ArbTessellationShader.TessGenSpacing; - var _TessGenVertexOrder = OpenTK.Graphics.OpenGL4.ArbTessellationShader.TessGenVertexOrder; - var _TessGenPointMode = OpenTK.Graphics.OpenGL4.ArbTessellationShader.TessGenPointMode; - var _Isolines = OpenTK.Graphics.OpenGL4.ArbTessellationShader.Isolines; - var _FractionalOdd = OpenTK.Graphics.OpenGL4.ArbTessellationShader.FractionalOdd; - var _FractionalEven = OpenTK.Graphics.OpenGL4.ArbTessellationShader.FractionalEven; - var _MaxPatchVertices = OpenTK.Graphics.OpenGL4.ArbTessellationShader.MaxPatchVertices; - var _MaxTessGenLevel = OpenTK.Graphics.OpenGL4.ArbTessellationShader.MaxTessGenLevel; - var _MaxTessControlUniformComponents = OpenTK.Graphics.OpenGL4.ArbTessellationShader.MaxTessControlUniformComponents; - var _MaxTessEvaluationUniformComponents = OpenTK.Graphics.OpenGL4.ArbTessellationShader.MaxTessEvaluationUniformComponents; - var _MaxTessControlTextureImageUnits = OpenTK.Graphics.OpenGL4.ArbTessellationShader.MaxTessControlTextureImageUnits; - var _MaxTessEvaluationTextureImageUnits = OpenTK.Graphics.OpenGL4.ArbTessellationShader.MaxTessEvaluationTextureImageUnits; - var _MaxTessControlOutputComponents = OpenTK.Graphics.OpenGL4.ArbTessellationShader.MaxTessControlOutputComponents; - var _MaxTessPatchComponents = OpenTK.Graphics.OpenGL4.ArbTessellationShader.MaxTessPatchComponents; - var _MaxTessControlTotalOutputComponents = OpenTK.Graphics.OpenGL4.ArbTessellationShader.MaxTessControlTotalOutputComponents; - var _MaxTessEvaluationOutputComponents = OpenTK.Graphics.OpenGL4.ArbTessellationShader.MaxTessEvaluationOutputComponents; - var _TessEvaluationShader = OpenTK.Graphics.OpenGL4.ArbTessellationShader.TessEvaluationShader; - var _TessControlShader = OpenTK.Graphics.OpenGL4.ArbTessellationShader.TessControlShader; - var _MaxTessControlUniformBlocks = OpenTK.Graphics.OpenGL4.ArbTessellationShader.MaxTessControlUniformBlocks; - var _MaxTessEvaluationUniformBlocks = OpenTK.Graphics.OpenGL4.ArbTessellationShader.MaxTessEvaluationUniformBlocks; -} -static void Test_ArbTextureBufferObjectRgb32_37439() { - var _Rgb32f = OpenTK.Graphics.OpenGL4.ArbTextureBufferObjectRgb32.Rgb32f; - var _Rgb32ui = OpenTK.Graphics.OpenGL4.ArbTextureBufferObjectRgb32.Rgb32ui; - var _Rgb32i = OpenTK.Graphics.OpenGL4.ArbTextureBufferObjectRgb32.Rgb32i; -} -static void Test_ArbTextureBufferRange_37440() { - var _TextureBufferOffset = OpenTK.Graphics.OpenGL4.ArbTextureBufferRange.TextureBufferOffset; - var _TextureBufferSize = OpenTK.Graphics.OpenGL4.ArbTextureBufferRange.TextureBufferSize; - var _TextureBufferOffsetAlignment = OpenTK.Graphics.OpenGL4.ArbTextureBufferRange.TextureBufferOffsetAlignment; -} -static void Test_ArbTextureCompressionBptc_37441() { - var _CompressedRgbaBptcUnormArb = OpenTK.Graphics.OpenGL4.ArbTextureCompressionBptc.CompressedRgbaBptcUnormArb; - var _CompressedSrgbAlphaBptcUnormArb = OpenTK.Graphics.OpenGL4.ArbTextureCompressionBptc.CompressedSrgbAlphaBptcUnormArb; - var _CompressedRgbBptcSignedFloatArb = OpenTK.Graphics.OpenGL4.ArbTextureCompressionBptc.CompressedRgbBptcSignedFloatArb; - var _CompressedRgbBptcUnsignedFloatArb = OpenTK.Graphics.OpenGL4.ArbTextureCompressionBptc.CompressedRgbBptcUnsignedFloatArb; -} -static void Test_ArbTextureCompressionRgtc_37442() { - var _CompressedRedRgtc1 = OpenTK.Graphics.OpenGL4.ArbTextureCompressionRgtc.CompressedRedRgtc1; - var _CompressedSignedRedRgtc1 = OpenTK.Graphics.OpenGL4.ArbTextureCompressionRgtc.CompressedSignedRedRgtc1; - var _CompressedRgRgtc2 = OpenTK.Graphics.OpenGL4.ArbTextureCompressionRgtc.CompressedRgRgtc2; - var _CompressedSignedRgRgtc2 = OpenTK.Graphics.OpenGL4.ArbTextureCompressionRgtc.CompressedSignedRgRgtc2; -} -static void Test_ArbTextureCubeMapArray_37443() { - var _TextureCubeMapArrayArb = OpenTK.Graphics.OpenGL4.ArbTextureCubeMapArray.TextureCubeMapArrayArb; - var _TextureBindingCubeMapArrayArb = OpenTK.Graphics.OpenGL4.ArbTextureCubeMapArray.TextureBindingCubeMapArrayArb; - var _ProxyTextureCubeMapArrayArb = OpenTK.Graphics.OpenGL4.ArbTextureCubeMapArray.ProxyTextureCubeMapArrayArb; - var _SamplerCubeMapArrayArb = OpenTK.Graphics.OpenGL4.ArbTextureCubeMapArray.SamplerCubeMapArrayArb; - var _SamplerCubeMapArrayShadowArb = OpenTK.Graphics.OpenGL4.ArbTextureCubeMapArray.SamplerCubeMapArrayShadowArb; - var _IntSamplerCubeMapArrayArb = OpenTK.Graphics.OpenGL4.ArbTextureCubeMapArray.IntSamplerCubeMapArrayArb; - var _UnsignedIntSamplerCubeMapArrayArb = OpenTK.Graphics.OpenGL4.ArbTextureCubeMapArray.UnsignedIntSamplerCubeMapArrayArb; -} -static void Test_ArbTextureGather_37444() { - var _MinProgramTextureGatherOffsetArb = OpenTK.Graphics.OpenGL4.ArbTextureGather.MinProgramTextureGatherOffsetArb; - var _MaxProgramTextureGatherOffsetArb = OpenTK.Graphics.OpenGL4.ArbTextureGather.MaxProgramTextureGatherOffsetArb; - var _MaxProgramTextureGatherComponentsArb = OpenTK.Graphics.OpenGL4.ArbTextureGather.MaxProgramTextureGatherComponentsArb; -} -static void Test_ArbTextureMirrorClampToEdge_37445() { - var _MirrorClampToEdge = OpenTK.Graphics.OpenGL4.ArbTextureMirrorClampToEdge.MirrorClampToEdge; -} -static void Test_ArbTextureMultisample_37446() { - var _SamplePosition = OpenTK.Graphics.OpenGL4.ArbTextureMultisample.SamplePosition; - var _SampleMask = OpenTK.Graphics.OpenGL4.ArbTextureMultisample.SampleMask; - var _SampleMaskValue = OpenTK.Graphics.OpenGL4.ArbTextureMultisample.SampleMaskValue; - var _MaxSampleMaskWords = OpenTK.Graphics.OpenGL4.ArbTextureMultisample.MaxSampleMaskWords; - var _Texture2DMultisample = OpenTK.Graphics.OpenGL4.ArbTextureMultisample.Texture2DMultisample; - var _ProxyTexture2DMultisample = OpenTK.Graphics.OpenGL4.ArbTextureMultisample.ProxyTexture2DMultisample; - var _Texture2DMultisampleArray = OpenTK.Graphics.OpenGL4.ArbTextureMultisample.Texture2DMultisampleArray; - var _ProxyTexture2DMultisampleArray = OpenTK.Graphics.OpenGL4.ArbTextureMultisample.ProxyTexture2DMultisampleArray; - var _TextureBinding2DMultisample = OpenTK.Graphics.OpenGL4.ArbTextureMultisample.TextureBinding2DMultisample; - var _TextureBinding2DMultisampleArray = OpenTK.Graphics.OpenGL4.ArbTextureMultisample.TextureBinding2DMultisampleArray; - var _TextureSamples = OpenTK.Graphics.OpenGL4.ArbTextureMultisample.TextureSamples; - var _TextureFixedSampleLocations = OpenTK.Graphics.OpenGL4.ArbTextureMultisample.TextureFixedSampleLocations; - var _Sampler2DMultisample = OpenTK.Graphics.OpenGL4.ArbTextureMultisample.Sampler2DMultisample; - var _IntSampler2DMultisample = OpenTK.Graphics.OpenGL4.ArbTextureMultisample.IntSampler2DMultisample; - var _UnsignedIntSampler2DMultisample = OpenTK.Graphics.OpenGL4.ArbTextureMultisample.UnsignedIntSampler2DMultisample; - var _Sampler2DMultisampleArray = OpenTK.Graphics.OpenGL4.ArbTextureMultisample.Sampler2DMultisampleArray; - var _IntSampler2DMultisampleArray = OpenTK.Graphics.OpenGL4.ArbTextureMultisample.IntSampler2DMultisampleArray; - var _UnsignedIntSampler2DMultisampleArray = OpenTK.Graphics.OpenGL4.ArbTextureMultisample.UnsignedIntSampler2DMultisampleArray; - var _MaxColorTextureSamples = OpenTK.Graphics.OpenGL4.ArbTextureMultisample.MaxColorTextureSamples; - var _MaxDepthTextureSamples = OpenTK.Graphics.OpenGL4.ArbTextureMultisample.MaxDepthTextureSamples; - var _MaxIntegerSamples = OpenTK.Graphics.OpenGL4.ArbTextureMultisample.MaxIntegerSamples; -} -static void Test_ArbTextureQueryLevels_37447() { -} -static void Test_ArbTextureQueryLod_37448() { -} -static void Test_ArbTextureRg_37449() { - var _Rg = OpenTK.Graphics.OpenGL4.ArbTextureRg.Rg; - var _RgInteger = OpenTK.Graphics.OpenGL4.ArbTextureRg.RgInteger; - var _R8 = OpenTK.Graphics.OpenGL4.ArbTextureRg.R8; - var _R16 = OpenTK.Graphics.OpenGL4.ArbTextureRg.R16; - var _Rg8 = OpenTK.Graphics.OpenGL4.ArbTextureRg.Rg8; - var _Rg16 = OpenTK.Graphics.OpenGL4.ArbTextureRg.Rg16; - var _R16f = OpenTK.Graphics.OpenGL4.ArbTextureRg.R16f; - var _R32f = OpenTK.Graphics.OpenGL4.ArbTextureRg.R32f; - var _Rg16f = OpenTK.Graphics.OpenGL4.ArbTextureRg.Rg16f; - var _Rg32f = OpenTK.Graphics.OpenGL4.ArbTextureRg.Rg32f; - var _R8i = OpenTK.Graphics.OpenGL4.ArbTextureRg.R8i; - var _R8ui = OpenTK.Graphics.OpenGL4.ArbTextureRg.R8ui; - var _R16i = OpenTK.Graphics.OpenGL4.ArbTextureRg.R16i; - var _R16ui = OpenTK.Graphics.OpenGL4.ArbTextureRg.R16ui; - var _R32i = OpenTK.Graphics.OpenGL4.ArbTextureRg.R32i; - var _R32ui = OpenTK.Graphics.OpenGL4.ArbTextureRg.R32ui; - var _Rg8i = OpenTK.Graphics.OpenGL4.ArbTextureRg.Rg8i; - var _Rg8ui = OpenTK.Graphics.OpenGL4.ArbTextureRg.Rg8ui; - var _Rg16i = OpenTK.Graphics.OpenGL4.ArbTextureRg.Rg16i; - var _Rg16ui = OpenTK.Graphics.OpenGL4.ArbTextureRg.Rg16ui; - var _Rg32i = OpenTK.Graphics.OpenGL4.ArbTextureRg.Rg32i; - var _Rg32ui = OpenTK.Graphics.OpenGL4.ArbTextureRg.Rg32ui; -} -static void Test_ArbTextureRgb10A2ui_37450() { - var _Rgb10A2ui = OpenTK.Graphics.OpenGL4.ArbTextureRgb10A2ui.Rgb10A2ui; -} -static void Test_ArbTextureStencil8_37451() { - var _StencilIndex = OpenTK.Graphics.OpenGL4.ArbTextureStencil8.StencilIndex; - var _StencilIndex8 = OpenTK.Graphics.OpenGL4.ArbTextureStencil8.StencilIndex8; -} -static void Test_ArbTextureStorage_37452() { - var _TextureImmutableFormat = OpenTK.Graphics.OpenGL4.ArbTextureStorage.TextureImmutableFormat; -} -static void Test_ArbTextureStorageMultisample_37453() { -} -static void Test_ArbTextureSwizzle_37454() { - var _TextureSwizzleR = OpenTK.Graphics.OpenGL4.ArbTextureSwizzle.TextureSwizzleR; - var _TextureSwizzleG = OpenTK.Graphics.OpenGL4.ArbTextureSwizzle.TextureSwizzleG; - var _TextureSwizzleB = OpenTK.Graphics.OpenGL4.ArbTextureSwizzle.TextureSwizzleB; - var _TextureSwizzleA = OpenTK.Graphics.OpenGL4.ArbTextureSwizzle.TextureSwizzleA; - var _TextureSwizzleRgba = OpenTK.Graphics.OpenGL4.ArbTextureSwizzle.TextureSwizzleRgba; -} -static void Test_ArbTextureView_37455() { - var _TextureViewMinLevel = OpenTK.Graphics.OpenGL4.ArbTextureView.TextureViewMinLevel; - var _TextureViewNumLevels = OpenTK.Graphics.OpenGL4.ArbTextureView.TextureViewNumLevels; - var _TextureViewMinLayer = OpenTK.Graphics.OpenGL4.ArbTextureView.TextureViewMinLayer; - var _TextureViewNumLayers = OpenTK.Graphics.OpenGL4.ArbTextureView.TextureViewNumLayers; - var _TextureImmutableLevels = OpenTK.Graphics.OpenGL4.ArbTextureView.TextureImmutableLevels; -} -static void Test_ArbTimerQuery_37456() { - var _TimeElapsed = OpenTK.Graphics.OpenGL4.ArbTimerQuery.TimeElapsed; - var _Timestamp = OpenTK.Graphics.OpenGL4.ArbTimerQuery.Timestamp; -} -static void Test_ArbTransformFeedback2_37457() { - var _TransformFeedback = OpenTK.Graphics.OpenGL4.ArbTransformFeedback2.TransformFeedback; - var _TransformFeedbackBufferPaused = OpenTK.Graphics.OpenGL4.ArbTransformFeedback2.TransformFeedbackBufferPaused; - var _TransformFeedbackPaused = OpenTK.Graphics.OpenGL4.ArbTransformFeedback2.TransformFeedbackPaused; - var _TransformFeedbackActive = OpenTK.Graphics.OpenGL4.ArbTransformFeedback2.TransformFeedbackActive; - var _TransformFeedbackBufferActive = OpenTK.Graphics.OpenGL4.ArbTransformFeedback2.TransformFeedbackBufferActive; - var _TransformFeedbackBinding = OpenTK.Graphics.OpenGL4.ArbTransformFeedback2.TransformFeedbackBinding; -} -static void Test_ArbTransformFeedback3_37458() { - var _MaxTransformFeedbackBuffers = OpenTK.Graphics.OpenGL4.ArbTransformFeedback3.MaxTransformFeedbackBuffers; - var _MaxVertexStreams = OpenTK.Graphics.OpenGL4.ArbTransformFeedback3.MaxVertexStreams; -} -static void Test_ArbTransformFeedbackInstanced_37459() { -} -static void Test_ArbUniformBufferObject_37460() { - var _UniformBuffer = OpenTK.Graphics.OpenGL4.ArbUniformBufferObject.UniformBuffer; - var _UniformBufferBinding = OpenTK.Graphics.OpenGL4.ArbUniformBufferObject.UniformBufferBinding; - var _UniformBufferStart = OpenTK.Graphics.OpenGL4.ArbUniformBufferObject.UniformBufferStart; - var _UniformBufferSize = OpenTK.Graphics.OpenGL4.ArbUniformBufferObject.UniformBufferSize; - var _MaxVertexUniformBlocks = OpenTK.Graphics.OpenGL4.ArbUniformBufferObject.MaxVertexUniformBlocks; - var _MaxGeometryUniformBlocks = OpenTK.Graphics.OpenGL4.ArbUniformBufferObject.MaxGeometryUniformBlocks; - var _MaxFragmentUniformBlocks = OpenTK.Graphics.OpenGL4.ArbUniformBufferObject.MaxFragmentUniformBlocks; - var _MaxCombinedUniformBlocks = OpenTK.Graphics.OpenGL4.ArbUniformBufferObject.MaxCombinedUniformBlocks; - var _MaxUniformBufferBindings = OpenTK.Graphics.OpenGL4.ArbUniformBufferObject.MaxUniformBufferBindings; - var _MaxUniformBlockSize = OpenTK.Graphics.OpenGL4.ArbUniformBufferObject.MaxUniformBlockSize; - var _MaxCombinedVertexUniformComponents = OpenTK.Graphics.OpenGL4.ArbUniformBufferObject.MaxCombinedVertexUniformComponents; - var _MaxCombinedGeometryUniformComponents = OpenTK.Graphics.OpenGL4.ArbUniformBufferObject.MaxCombinedGeometryUniformComponents; - var _MaxCombinedFragmentUniformComponents = OpenTK.Graphics.OpenGL4.ArbUniformBufferObject.MaxCombinedFragmentUniformComponents; - var _UniformBufferOffsetAlignment = OpenTK.Graphics.OpenGL4.ArbUniformBufferObject.UniformBufferOffsetAlignment; - var _ActiveUniformBlockMaxNameLength = OpenTK.Graphics.OpenGL4.ArbUniformBufferObject.ActiveUniformBlockMaxNameLength; - var _ActiveUniformBlocks = OpenTK.Graphics.OpenGL4.ArbUniformBufferObject.ActiveUniformBlocks; - var _UniformType = OpenTK.Graphics.OpenGL4.ArbUniformBufferObject.UniformType; - var _UniformSize = OpenTK.Graphics.OpenGL4.ArbUniformBufferObject.UniformSize; - var _UniformNameLength = OpenTK.Graphics.OpenGL4.ArbUniformBufferObject.UniformNameLength; - var _UniformBlockIndex = OpenTK.Graphics.OpenGL4.ArbUniformBufferObject.UniformBlockIndex; - var _UniformOffset = OpenTK.Graphics.OpenGL4.ArbUniformBufferObject.UniformOffset; - var _UniformArrayStride = OpenTK.Graphics.OpenGL4.ArbUniformBufferObject.UniformArrayStride; - var _UniformMatrixStride = OpenTK.Graphics.OpenGL4.ArbUniformBufferObject.UniformMatrixStride; - var _UniformIsRowMajor = OpenTK.Graphics.OpenGL4.ArbUniformBufferObject.UniformIsRowMajor; - var _UniformBlockBinding = OpenTK.Graphics.OpenGL4.ArbUniformBufferObject.UniformBlockBinding; - var _UniformBlockDataSize = OpenTK.Graphics.OpenGL4.ArbUniformBufferObject.UniformBlockDataSize; - var _UniformBlockNameLength = OpenTK.Graphics.OpenGL4.ArbUniformBufferObject.UniformBlockNameLength; - var _UniformBlockActiveUniforms = OpenTK.Graphics.OpenGL4.ArbUniformBufferObject.UniformBlockActiveUniforms; - var _UniformBlockActiveUniformIndices = OpenTK.Graphics.OpenGL4.ArbUniformBufferObject.UniformBlockActiveUniformIndices; - var _UniformBlockReferencedByVertexShader = OpenTK.Graphics.OpenGL4.ArbUniformBufferObject.UniformBlockReferencedByVertexShader; - var _UniformBlockReferencedByGeometryShader = OpenTK.Graphics.OpenGL4.ArbUniformBufferObject.UniformBlockReferencedByGeometryShader; - var _UniformBlockReferencedByFragmentShader = OpenTK.Graphics.OpenGL4.ArbUniformBufferObject.UniformBlockReferencedByFragmentShader; - var _InvalidIndex = OpenTK.Graphics.OpenGL4.ArbUniformBufferObject.InvalidIndex; -} -static void Test_ArbVertexArrayBgra_37461() { - var _Bgra = OpenTK.Graphics.OpenGL4.ArbVertexArrayBgra.Bgra; -} -static void Test_ArbVertexArrayObject_37462() { - var _VertexArrayBinding = OpenTK.Graphics.OpenGL4.ArbVertexArrayObject.VertexArrayBinding; -} -static void Test_ArbVertexAttrib64bit_37463() { - var _Rgb32i = OpenTK.Graphics.OpenGL4.ArbVertexAttrib64bit.Rgb32i; - var _DoubleMat2 = OpenTK.Graphics.OpenGL4.ArbVertexAttrib64bit.DoubleMat2; - var _DoubleMat3 = OpenTK.Graphics.OpenGL4.ArbVertexAttrib64bit.DoubleMat3; - var _DoubleMat4 = OpenTK.Graphics.OpenGL4.ArbVertexAttrib64bit.DoubleMat4; - var _DoubleMat2x3 = OpenTK.Graphics.OpenGL4.ArbVertexAttrib64bit.DoubleMat2x3; - var _DoubleMat2x4 = OpenTK.Graphics.OpenGL4.ArbVertexAttrib64bit.DoubleMat2x4; - var _DoubleMat3x2 = OpenTK.Graphics.OpenGL4.ArbVertexAttrib64bit.DoubleMat3x2; - var _DoubleMat3x4 = OpenTK.Graphics.OpenGL4.ArbVertexAttrib64bit.DoubleMat3x4; - var _DoubleMat4x2 = OpenTK.Graphics.OpenGL4.ArbVertexAttrib64bit.DoubleMat4x2; - var _DoubleMat4x3 = OpenTK.Graphics.OpenGL4.ArbVertexAttrib64bit.DoubleMat4x3; - var _DoubleVec2 = OpenTK.Graphics.OpenGL4.ArbVertexAttrib64bit.DoubleVec2; - var _DoubleVec3 = OpenTK.Graphics.OpenGL4.ArbVertexAttrib64bit.DoubleVec3; - var _DoubleVec4 = OpenTK.Graphics.OpenGL4.ArbVertexAttrib64bit.DoubleVec4; -} -static void Test_ArbVertexAttribBinding_37464() { - var _VertexAttribBinding = OpenTK.Graphics.OpenGL4.ArbVertexAttribBinding.VertexAttribBinding; - var _VertexAttribRelativeOffset = OpenTK.Graphics.OpenGL4.ArbVertexAttribBinding.VertexAttribRelativeOffset; - var _VertexBindingDivisor = OpenTK.Graphics.OpenGL4.ArbVertexAttribBinding.VertexBindingDivisor; - var _VertexBindingOffset = OpenTK.Graphics.OpenGL4.ArbVertexAttribBinding.VertexBindingOffset; - var _VertexBindingStride = OpenTK.Graphics.OpenGL4.ArbVertexAttribBinding.VertexBindingStride; - var _MaxVertexAttribRelativeOffset = OpenTK.Graphics.OpenGL4.ArbVertexAttribBinding.MaxVertexAttribRelativeOffset; - var _MaxVertexAttribBindings = OpenTK.Graphics.OpenGL4.ArbVertexAttribBinding.MaxVertexAttribBindings; -} -static void Test_ArbVertexType10f11f11fRev_37465() { - var _UnsignedInt10F11F11FRev = OpenTK.Graphics.OpenGL4.ArbVertexType10f11f11fRev.UnsignedInt10F11F11FRev; -} -static void Test_ArbVertexType2101010Rev_37466() { - var _UnsignedInt2101010Rev = OpenTK.Graphics.OpenGL4.ArbVertexType2101010Rev.UnsignedInt2101010Rev; - var _Int2101010Rev = OpenTK.Graphics.OpenGL4.ArbVertexType2101010Rev.Int2101010Rev; -} -static void Test_ArbViewportArray_37467() { - var _DepthRange = OpenTK.Graphics.OpenGL4.ArbViewportArray.DepthRange; - var _Viewport = OpenTK.Graphics.OpenGL4.ArbViewportArray.Viewport; - var _ScissorBox = OpenTK.Graphics.OpenGL4.ArbViewportArray.ScissorBox; - var _ScissorTest = OpenTK.Graphics.OpenGL4.ArbViewportArray.ScissorTest; - var _MaxViewports = OpenTK.Graphics.OpenGL4.ArbViewportArray.MaxViewports; - var _ViewportSubpixelBits = OpenTK.Graphics.OpenGL4.ArbViewportArray.ViewportSubpixelBits; - var _ViewportBoundsRange = OpenTK.Graphics.OpenGL4.ArbViewportArray.ViewportBoundsRange; - var _LayerProvokingVertex = OpenTK.Graphics.OpenGL4.ArbViewportArray.LayerProvokingVertex; - var _ViewportIndexProvokingVertex = OpenTK.Graphics.OpenGL4.ArbViewportArray.ViewportIndexProvokingVertex; - var _UndefinedVertex = OpenTK.Graphics.OpenGL4.ArbViewportArray.UndefinedVertex; - var _FirstVertexConvention = OpenTK.Graphics.OpenGL4.ArbViewportArray.FirstVertexConvention; - var _LastVertexConvention = OpenTK.Graphics.OpenGL4.ArbViewportArray.LastVertexConvention; - var _ProvokingVertex = OpenTK.Graphics.OpenGL4.ArbViewportArray.ProvokingVertex; -} -static void Test_ArrayCap_37468() { - var _VertexArray = OpenTK.Graphics.OpenGL4.ArrayCap.VertexArray; - var _NormalArray = OpenTK.Graphics.OpenGL4.ArrayCap.NormalArray; - var _ColorArray = OpenTK.Graphics.OpenGL4.ArrayCap.ColorArray; - var _IndexArray = OpenTK.Graphics.OpenGL4.ArrayCap.IndexArray; - var _TextureCoordArray = OpenTK.Graphics.OpenGL4.ArrayCap.TextureCoordArray; - var _EdgeFlagArray = OpenTK.Graphics.OpenGL4.ArrayCap.EdgeFlagArray; - var _FogCoordArray = OpenTK.Graphics.OpenGL4.ArrayCap.FogCoordArray; - var _SecondaryColorArray = OpenTK.Graphics.OpenGL4.ArrayCap.SecondaryColorArray; -} -static void Test_AssemblyProgramFormatArb_37469() { - var _ProgramFormatAsciiArb = OpenTK.Graphics.OpenGL4.AssemblyProgramFormatArb.ProgramFormatAsciiArb; -} -static void Test_AssemblyProgramParameterArb_37470() { - var _ProgramBinaryRetrievableHint = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.ProgramBinaryRetrievableHint; - var _ProgramSeparable = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.ProgramSeparable; - var _ProgramLength = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.ProgramLength; - var _ProgramBinding = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.ProgramBinding; - var _ProgramAluInstructionsArb = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.ProgramAluInstructionsArb; - var _ProgramTexInstructionsArb = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.ProgramTexInstructionsArb; - var _ProgramTexIndirectionsArb = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.ProgramTexIndirectionsArb; - var _ProgramNativeAluInstructionsArb = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.ProgramNativeAluInstructionsArb; - var _ProgramNativeTexInstructionsArb = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.ProgramNativeTexInstructionsArb; - var _ProgramNativeTexIndirectionsArb = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.ProgramNativeTexIndirectionsArb; - var _MaxProgramAluInstructionsArb = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.MaxProgramAluInstructionsArb; - var _MaxProgramTexInstructionsArb = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.MaxProgramTexInstructionsArb; - var _MaxProgramTexIndirectionsArb = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.MaxProgramTexIndirectionsArb; - var _MaxProgramNativeAluInstructionsArb = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.MaxProgramNativeAluInstructionsArb; - var _MaxProgramNativeTexInstructionsArb = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.MaxProgramNativeTexInstructionsArb; - var _MaxProgramNativeTexIndirectionsArb = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.MaxProgramNativeTexIndirectionsArb; - var _ProgramFormat = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.ProgramFormat; - var _ProgramInstruction = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.ProgramInstruction; - var _MaxProgramInstructions = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.MaxProgramInstructions; - var _ProgramNativeInstructions = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.ProgramNativeInstructions; - var _MaxProgramNativeInstructions = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.MaxProgramNativeInstructions; - var _ProgramTemporaries = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.ProgramTemporaries; - var _MaxProgramTemporaries = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.MaxProgramTemporaries; - var _ProgramNativeTemporaries = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.ProgramNativeTemporaries; - var _MaxProgramNativeTemporaries = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.MaxProgramNativeTemporaries; - var _ProgramParameters = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.ProgramParameters; - var _MaxProgramParameters = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.MaxProgramParameters; - var _ProgramNativeParameters = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.ProgramNativeParameters; - var _MaxProgramNativeParameters = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.MaxProgramNativeParameters; - var _ProgramAttribs = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.ProgramAttribs; - var _MaxProgramAttribs = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.MaxProgramAttribs; - var _ProgramNativeAttribs = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.ProgramNativeAttribs; - var _MaxProgramNativeAttribs = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.MaxProgramNativeAttribs; - var _ProgramAddressRegisters = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.ProgramAddressRegisters; - var _MaxProgramAddressRegisters = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.MaxProgramAddressRegisters; - var _ProgramNativeAddressRegisters = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.ProgramNativeAddressRegisters; - var _MaxProgramNativeAddressRegisters = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.MaxProgramNativeAddressRegisters; - var _MaxProgramLocalParameters = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.MaxProgramLocalParameters; - var _MaxProgramEnvParameters = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.MaxProgramEnvParameters; - var _ProgramUnderNativeLimits = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.ProgramUnderNativeLimits; - var _GeometryVerticesOut = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.GeometryVerticesOut; - var _GeometryInputType = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.GeometryInputType; - var _GeometryOutputType = OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb.GeometryOutputType; -} -static void Test_AssemblyProgramStringParameterArb_37471() { - var _ProgramString = OpenTK.Graphics.OpenGL4.AssemblyProgramStringParameterArb.ProgramString; -} -static void Test_AssemblyProgramTargetArb_37472() { - var _VertexProgram = OpenTK.Graphics.OpenGL4.AssemblyProgramTargetArb.VertexProgram; - var _FragmentProgram = OpenTK.Graphics.OpenGL4.AssemblyProgramTargetArb.FragmentProgram; -} -static void Test_AtomicCounterBufferParameter_37473() { - var _AtomicCounterBufferReferencedByComputeShader = OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter.AtomicCounterBufferReferencedByComputeShader; - var _AtomicCounterBufferBinding = OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter.AtomicCounterBufferBinding; - var _AtomicCounterBufferDataSize = OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter.AtomicCounterBufferDataSize; - var _AtomicCounterBufferActiveAtomicCounters = OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter.AtomicCounterBufferActiveAtomicCounters; - var _AtomicCounterBufferActiveAtomicCounterIndices = OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter.AtomicCounterBufferActiveAtomicCounterIndices; - var _AtomicCounterBufferReferencedByVertexShader = OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter.AtomicCounterBufferReferencedByVertexShader; - var _AtomicCounterBufferReferencedByTessControlShader = OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter.AtomicCounterBufferReferencedByTessControlShader; - var _AtomicCounterBufferReferencedByTessEvaluationShader = OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter.AtomicCounterBufferReferencedByTessEvaluationShader; - var _AtomicCounterBufferReferencedByGeometryShader = OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter.AtomicCounterBufferReferencedByGeometryShader; - var _AtomicCounterBufferReferencedByFragmentShader = OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter.AtomicCounterBufferReferencedByFragmentShader; -} -static void Test_AttribMask_37474() { - var _DepthBufferBit = OpenTK.Graphics.OpenGL4.AttribMask.DepthBufferBit; - var _StencilBufferBit = OpenTK.Graphics.OpenGL4.AttribMask.StencilBufferBit; - var _ColorBufferBit = OpenTK.Graphics.OpenGL4.AttribMask.ColorBufferBit; - var _MultisampleBit = OpenTK.Graphics.OpenGL4.AttribMask.MultisampleBit; - var _MultisampleBit3Dfx = OpenTK.Graphics.OpenGL4.AttribMask.MultisampleBit3Dfx; - var _MultisampleBitArb = OpenTK.Graphics.OpenGL4.AttribMask.MultisampleBitArb; - var _MultisampleBitExt = OpenTK.Graphics.OpenGL4.AttribMask.MultisampleBitExt; -} -static void Test_BeginFeedbackMode_37475() { - var _Points = OpenTK.Graphics.OpenGL4.BeginFeedbackMode.Points; - var _Lines = OpenTK.Graphics.OpenGL4.BeginFeedbackMode.Lines; - var _Triangles = OpenTK.Graphics.OpenGL4.BeginFeedbackMode.Triangles; -} -static void Test_BeginMode_37476() { - var _Points = OpenTK.Graphics.OpenGL4.BeginMode.Points; - var _Lines = OpenTK.Graphics.OpenGL4.BeginMode.Lines; - var _LineLoop = OpenTK.Graphics.OpenGL4.BeginMode.LineLoop; - var _LineStrip = OpenTK.Graphics.OpenGL4.BeginMode.LineStrip; - var _Triangles = OpenTK.Graphics.OpenGL4.BeginMode.Triangles; - var _TriangleStrip = OpenTK.Graphics.OpenGL4.BeginMode.TriangleStrip; - var _TriangleFan = OpenTK.Graphics.OpenGL4.BeginMode.TriangleFan; - var _Quads = OpenTK.Graphics.OpenGL4.BeginMode.Quads; - var _QuadStrip = OpenTK.Graphics.OpenGL4.BeginMode.QuadStrip; - var _Polygon = OpenTK.Graphics.OpenGL4.BeginMode.Polygon; - var _Patches = OpenTK.Graphics.OpenGL4.BeginMode.Patches; - var _LinesAdjacency = OpenTK.Graphics.OpenGL4.BeginMode.LinesAdjacency; - var _LineStripAdjacency = OpenTK.Graphics.OpenGL4.BeginMode.LineStripAdjacency; - var _TrianglesAdjacency = OpenTK.Graphics.OpenGL4.BeginMode.TrianglesAdjacency; - var _TriangleStripAdjacency = OpenTK.Graphics.OpenGL4.BeginMode.TriangleStripAdjacency; -} -static void Test_BinaryFormat_37477() { -} -static void Test_BlendEquationMode_37478() { - var _FuncAdd = OpenTK.Graphics.OpenGL4.BlendEquationMode.FuncAdd; - var _Min = OpenTK.Graphics.OpenGL4.BlendEquationMode.Min; - var _Max = OpenTK.Graphics.OpenGL4.BlendEquationMode.Max; - var _FuncSubtract = OpenTK.Graphics.OpenGL4.BlendEquationMode.FuncSubtract; - var _FuncReverseSubtract = OpenTK.Graphics.OpenGL4.BlendEquationMode.FuncReverseSubtract; -} -static void Test_BlendEquationModeExt_37479() { - var _FuncAddExt = OpenTK.Graphics.OpenGL4.BlendEquationModeExt.FuncAddExt; - var _MinExt = OpenTK.Graphics.OpenGL4.BlendEquationModeExt.MinExt; - var _MaxExt = OpenTK.Graphics.OpenGL4.BlendEquationModeExt.MaxExt; - var _FuncSubtractExt = OpenTK.Graphics.OpenGL4.BlendEquationModeExt.FuncSubtractExt; - var _FuncReverseSubtractExt = OpenTK.Graphics.OpenGL4.BlendEquationModeExt.FuncReverseSubtractExt; - var _AlphaMinSgix = OpenTK.Graphics.OpenGL4.BlendEquationModeExt.AlphaMinSgix; - var _AlphaMaxSgix = OpenTK.Graphics.OpenGL4.BlendEquationModeExt.AlphaMaxSgix; -} -static void Test_BlendingFactorDest_37480() { - var _Zero = OpenTK.Graphics.OpenGL4.BlendingFactorDest.Zero; - var _SrcColor = OpenTK.Graphics.OpenGL4.BlendingFactorDest.SrcColor; - var _OneMinusSrcColor = OpenTK.Graphics.OpenGL4.BlendingFactorDest.OneMinusSrcColor; - var _SrcAlpha = OpenTK.Graphics.OpenGL4.BlendingFactorDest.SrcAlpha; - var _OneMinusSrcAlpha = OpenTK.Graphics.OpenGL4.BlendingFactorDest.OneMinusSrcAlpha; - var _DstAlpha = OpenTK.Graphics.OpenGL4.BlendingFactorDest.DstAlpha; - var _OneMinusDstAlpha = OpenTK.Graphics.OpenGL4.BlendingFactorDest.OneMinusDstAlpha; - var _DstColor = OpenTK.Graphics.OpenGL4.BlendingFactorDest.DstColor; - var _OneMinusDstColor = OpenTK.Graphics.OpenGL4.BlendingFactorDest.OneMinusDstColor; - var _SrcAlphaSaturate = OpenTK.Graphics.OpenGL4.BlendingFactorDest.SrcAlphaSaturate; - var _ConstantColor = OpenTK.Graphics.OpenGL4.BlendingFactorDest.ConstantColor; - var _ConstantColorExt = OpenTK.Graphics.OpenGL4.BlendingFactorDest.ConstantColorExt; - var _OneMinusConstantColor = OpenTK.Graphics.OpenGL4.BlendingFactorDest.OneMinusConstantColor; - var _OneMinusConstantColorExt = OpenTK.Graphics.OpenGL4.BlendingFactorDest.OneMinusConstantColorExt; - var _ConstantAlpha = OpenTK.Graphics.OpenGL4.BlendingFactorDest.ConstantAlpha; - var _ConstantAlphaExt = OpenTK.Graphics.OpenGL4.BlendingFactorDest.ConstantAlphaExt; - var _OneMinusConstantAlpha = OpenTK.Graphics.OpenGL4.BlendingFactorDest.OneMinusConstantAlpha; - var _OneMinusConstantAlphaExt = OpenTK.Graphics.OpenGL4.BlendingFactorDest.OneMinusConstantAlphaExt; - var _Src1Alpha = OpenTK.Graphics.OpenGL4.BlendingFactorDest.Src1Alpha; - var _Src1Color = OpenTK.Graphics.OpenGL4.BlendingFactorDest.Src1Color; - var _OneMinusSrc1Color = OpenTK.Graphics.OpenGL4.BlendingFactorDest.OneMinusSrc1Color; - var _OneMinusSrc1Alpha = OpenTK.Graphics.OpenGL4.BlendingFactorDest.OneMinusSrc1Alpha; - var _One = OpenTK.Graphics.OpenGL4.BlendingFactorDest.One; -} -static void Test_BlendingFactorSrc_37481() { - var _Zero = OpenTK.Graphics.OpenGL4.BlendingFactorSrc.Zero; - var _SrcColor = OpenTK.Graphics.OpenGL4.BlendingFactorSrc.SrcColor; - var _OneMinusSrcColor = OpenTK.Graphics.OpenGL4.BlendingFactorSrc.OneMinusSrcColor; - var _SrcAlpha = OpenTK.Graphics.OpenGL4.BlendingFactorSrc.SrcAlpha; - var _OneMinusSrcAlpha = OpenTK.Graphics.OpenGL4.BlendingFactorSrc.OneMinusSrcAlpha; - var _DstAlpha = OpenTK.Graphics.OpenGL4.BlendingFactorSrc.DstAlpha; - var _OneMinusDstAlpha = OpenTK.Graphics.OpenGL4.BlendingFactorSrc.OneMinusDstAlpha; - var _DstColor = OpenTK.Graphics.OpenGL4.BlendingFactorSrc.DstColor; - var _OneMinusDstColor = OpenTK.Graphics.OpenGL4.BlendingFactorSrc.OneMinusDstColor; - var _SrcAlphaSaturate = OpenTK.Graphics.OpenGL4.BlendingFactorSrc.SrcAlphaSaturate; - var _ConstantColor = OpenTK.Graphics.OpenGL4.BlendingFactorSrc.ConstantColor; - var _ConstantColorExt = OpenTK.Graphics.OpenGL4.BlendingFactorSrc.ConstantColorExt; - var _OneMinusConstantColor = OpenTK.Graphics.OpenGL4.BlendingFactorSrc.OneMinusConstantColor; - var _OneMinusConstantColorExt = OpenTK.Graphics.OpenGL4.BlendingFactorSrc.OneMinusConstantColorExt; - var _ConstantAlpha = OpenTK.Graphics.OpenGL4.BlendingFactorSrc.ConstantAlpha; - var _ConstantAlphaExt = OpenTK.Graphics.OpenGL4.BlendingFactorSrc.ConstantAlphaExt; - var _OneMinusConstantAlpha = OpenTK.Graphics.OpenGL4.BlendingFactorSrc.OneMinusConstantAlpha; - var _OneMinusConstantAlphaExt = OpenTK.Graphics.OpenGL4.BlendingFactorSrc.OneMinusConstantAlphaExt; - var _Src1Alpha = OpenTK.Graphics.OpenGL4.BlendingFactorSrc.Src1Alpha; - var _Src1Color = OpenTK.Graphics.OpenGL4.BlendingFactorSrc.Src1Color; - var _OneMinusSrc1Color = OpenTK.Graphics.OpenGL4.BlendingFactorSrc.OneMinusSrc1Color; - var _OneMinusSrc1Alpha = OpenTK.Graphics.OpenGL4.BlendingFactorSrc.OneMinusSrc1Alpha; - var _One = OpenTK.Graphics.OpenGL4.BlendingFactorSrc.One; -} -static void Test_BlitFramebufferFilter_37482() { - var _Nearest = OpenTK.Graphics.OpenGL4.BlitFramebufferFilter.Nearest; - var _Linear = OpenTK.Graphics.OpenGL4.BlitFramebufferFilter.Linear; -} -static void Test_Boolean_37483() { - var _False = OpenTK.Graphics.OpenGL4.Boolean.False; - var _True = OpenTK.Graphics.OpenGL4.Boolean.True; -} -static void Test_BufferAccess_37484() { - var _ReadOnly = OpenTK.Graphics.OpenGL4.BufferAccess.ReadOnly; - var _WriteOnly = OpenTK.Graphics.OpenGL4.BufferAccess.WriteOnly; - var _ReadWrite = OpenTK.Graphics.OpenGL4.BufferAccess.ReadWrite; -} -static void Test_BufferAccessArb_37485() { - var _ReadOnly = OpenTK.Graphics.OpenGL4.BufferAccessArb.ReadOnly; - var _WriteOnly = OpenTK.Graphics.OpenGL4.BufferAccessArb.WriteOnly; - var _ReadWrite = OpenTK.Graphics.OpenGL4.BufferAccessArb.ReadWrite; -} -static void Test_BufferAccessMask_37486() { - var _MapReadBit = OpenTK.Graphics.OpenGL4.BufferAccessMask.MapReadBit; - var _MapWriteBit = OpenTK.Graphics.OpenGL4.BufferAccessMask.MapWriteBit; - var _MapInvalidateRangeBit = OpenTK.Graphics.OpenGL4.BufferAccessMask.MapInvalidateRangeBit; - var _MapInvalidateBufferBit = OpenTK.Graphics.OpenGL4.BufferAccessMask.MapInvalidateBufferBit; - var _MapFlushExplicitBit = OpenTK.Graphics.OpenGL4.BufferAccessMask.MapFlushExplicitBit; - var _MapUnsynchronizedBit = OpenTK.Graphics.OpenGL4.BufferAccessMask.MapUnsynchronizedBit; - var _MapPersistentBit = OpenTK.Graphics.OpenGL4.BufferAccessMask.MapPersistentBit; - var _MapCoherentBit = OpenTK.Graphics.OpenGL4.BufferAccessMask.MapCoherentBit; -} -static void Test_BufferParameterApple_37487() { -} -static void Test_BufferParameterName_37488() { - var _BufferImmutableStorage = OpenTK.Graphics.OpenGL4.BufferParameterName.BufferImmutableStorage; - var _BufferSize = OpenTK.Graphics.OpenGL4.BufferParameterName.BufferSize; - var _BufferUsage = OpenTK.Graphics.OpenGL4.BufferParameterName.BufferUsage; - var _BufferAccess = OpenTK.Graphics.OpenGL4.BufferParameterName.BufferAccess; - var _BufferMapped = OpenTK.Graphics.OpenGL4.BufferParameterName.BufferMapped; - var _BufferAccessFlags = OpenTK.Graphics.OpenGL4.BufferParameterName.BufferAccessFlags; - var _BufferMapLength = OpenTK.Graphics.OpenGL4.BufferParameterName.BufferMapLength; - var _BufferMapOffset = OpenTK.Graphics.OpenGL4.BufferParameterName.BufferMapOffset; -} -static void Test_BufferParameterNameArb_37489() { - var _BufferSize = OpenTK.Graphics.OpenGL4.BufferParameterNameArb.BufferSize; - var _BufferUsage = OpenTK.Graphics.OpenGL4.BufferParameterNameArb.BufferUsage; - var _BufferAccess = OpenTK.Graphics.OpenGL4.BufferParameterNameArb.BufferAccess; - var _BufferMapped = OpenTK.Graphics.OpenGL4.BufferParameterNameArb.BufferMapped; -} -static void Test_BufferPointer_37490() { - var _BufferMapPointer = OpenTK.Graphics.OpenGL4.BufferPointer.BufferMapPointer; -} -static void Test_BufferPointerNameArb_37491() { - var _BufferMapPointer = OpenTK.Graphics.OpenGL4.BufferPointerNameArb.BufferMapPointer; -} -static void Test_BufferRangeTarget_37492() { - var _UniformBuffer = OpenTK.Graphics.OpenGL4.BufferRangeTarget.UniformBuffer; - var _TransformFeedbackBuffer = OpenTK.Graphics.OpenGL4.BufferRangeTarget.TransformFeedbackBuffer; - var _ShaderStorageBuffer = OpenTK.Graphics.OpenGL4.BufferRangeTarget.ShaderStorageBuffer; - var _AtomicCounterBuffer = OpenTK.Graphics.OpenGL4.BufferRangeTarget.AtomicCounterBuffer; -} -static void Test_BufferStorageFlags_37493() { - var _MapReadBit = OpenTK.Graphics.OpenGL4.BufferStorageFlags.MapReadBit; - var _MapWriteBit = OpenTK.Graphics.OpenGL4.BufferStorageFlags.MapWriteBit; - var _MapPersistentBit = OpenTK.Graphics.OpenGL4.BufferStorageFlags.MapPersistentBit; - var _MapCoherentBit = OpenTK.Graphics.OpenGL4.BufferStorageFlags.MapCoherentBit; - var _DynamicStorageBit = OpenTK.Graphics.OpenGL4.BufferStorageFlags.DynamicStorageBit; - var _ClientStorageBit = OpenTK.Graphics.OpenGL4.BufferStorageFlags.ClientStorageBit; -} -static void Test_BufferTarget_37494() { - var _ArrayBuffer = OpenTK.Graphics.OpenGL4.BufferTarget.ArrayBuffer; - var _ElementArrayBuffer = OpenTK.Graphics.OpenGL4.BufferTarget.ElementArrayBuffer; - var _PixelPackBuffer = OpenTK.Graphics.OpenGL4.BufferTarget.PixelPackBuffer; - var _PixelUnpackBuffer = OpenTK.Graphics.OpenGL4.BufferTarget.PixelUnpackBuffer; - var _UniformBuffer = OpenTK.Graphics.OpenGL4.BufferTarget.UniformBuffer; - var _TextureBuffer = OpenTK.Graphics.OpenGL4.BufferTarget.TextureBuffer; - var _TransformFeedbackBuffer = OpenTK.Graphics.OpenGL4.BufferTarget.TransformFeedbackBuffer; - var _CopyReadBuffer = OpenTK.Graphics.OpenGL4.BufferTarget.CopyReadBuffer; - var _CopyWriteBuffer = OpenTK.Graphics.OpenGL4.BufferTarget.CopyWriteBuffer; - var _DrawIndirectBuffer = OpenTK.Graphics.OpenGL4.BufferTarget.DrawIndirectBuffer; - var _ShaderStorageBuffer = OpenTK.Graphics.OpenGL4.BufferTarget.ShaderStorageBuffer; - var _DispatchIndirectBuffer = OpenTK.Graphics.OpenGL4.BufferTarget.DispatchIndirectBuffer; - var _QueryBuffer = OpenTK.Graphics.OpenGL4.BufferTarget.QueryBuffer; - var _AtomicCounterBuffer = OpenTK.Graphics.OpenGL4.BufferTarget.AtomicCounterBuffer; -} -static void Test_BufferTargetArb_37495() { - var _ArrayBuffer = OpenTK.Graphics.OpenGL4.BufferTargetArb.ArrayBuffer; - var _ElementArrayBuffer = OpenTK.Graphics.OpenGL4.BufferTargetArb.ElementArrayBuffer; - var _TextureBuffer = OpenTK.Graphics.OpenGL4.BufferTargetArb.TextureBuffer; -} -static void Test_BufferUsageArb_37496() { - var _StreamDraw = OpenTK.Graphics.OpenGL4.BufferUsageArb.StreamDraw; - var _StreamRead = OpenTK.Graphics.OpenGL4.BufferUsageArb.StreamRead; - var _StreamCopy = OpenTK.Graphics.OpenGL4.BufferUsageArb.StreamCopy; - var _StaticDraw = OpenTK.Graphics.OpenGL4.BufferUsageArb.StaticDraw; - var _StaticRead = OpenTK.Graphics.OpenGL4.BufferUsageArb.StaticRead; - var _StaticCopy = OpenTK.Graphics.OpenGL4.BufferUsageArb.StaticCopy; - var _DynamicDraw = OpenTK.Graphics.OpenGL4.BufferUsageArb.DynamicDraw; - var _DynamicRead = OpenTK.Graphics.OpenGL4.BufferUsageArb.DynamicRead; - var _DynamicCopy = OpenTK.Graphics.OpenGL4.BufferUsageArb.DynamicCopy; -} -static void Test_BufferUsageHint_37497() { - var _StreamDraw = OpenTK.Graphics.OpenGL4.BufferUsageHint.StreamDraw; - var _StreamRead = OpenTK.Graphics.OpenGL4.BufferUsageHint.StreamRead; - var _StreamCopy = OpenTK.Graphics.OpenGL4.BufferUsageHint.StreamCopy; - var _StaticDraw = OpenTK.Graphics.OpenGL4.BufferUsageHint.StaticDraw; - var _StaticRead = OpenTK.Graphics.OpenGL4.BufferUsageHint.StaticRead; - var _StaticCopy = OpenTK.Graphics.OpenGL4.BufferUsageHint.StaticCopy; - var _DynamicDraw = OpenTK.Graphics.OpenGL4.BufferUsageHint.DynamicDraw; - var _DynamicRead = OpenTK.Graphics.OpenGL4.BufferUsageHint.DynamicRead; - var _DynamicCopy = OpenTK.Graphics.OpenGL4.BufferUsageHint.DynamicCopy; -} -static void Test_ClampColorMode_37498() { - var _False = OpenTK.Graphics.OpenGL4.ClampColorMode.False; - var _FixedOnly = OpenTK.Graphics.OpenGL4.ClampColorMode.FixedOnly; - var _True = OpenTK.Graphics.OpenGL4.ClampColorMode.True; -} -static void Test_ClampColorTarget_37499() { - var _ClampVertexColor = OpenTK.Graphics.OpenGL4.ClampColorTarget.ClampVertexColor; - var _ClampFragmentColor = OpenTK.Graphics.OpenGL4.ClampColorTarget.ClampFragmentColor; - var _ClampReadColor = OpenTK.Graphics.OpenGL4.ClampColorTarget.ClampReadColor; -} -static void Test_ClearBuffer_37500() { - var _Color = OpenTK.Graphics.OpenGL4.ClearBuffer.Color; - var _Depth = OpenTK.Graphics.OpenGL4.ClearBuffer.Depth; - var _Stencil = OpenTK.Graphics.OpenGL4.ClearBuffer.Stencil; -} -static void Test_ClearBufferCombined_37501() { - var _DepthStencil = OpenTK.Graphics.OpenGL4.ClearBufferCombined.DepthStencil; -} -static void Test_ClearBufferMask_37502() { - var _None = OpenTK.Graphics.OpenGL4.ClearBufferMask.None; - var _DepthBufferBit = OpenTK.Graphics.OpenGL4.ClearBufferMask.DepthBufferBit; - var _AccumBufferBit = OpenTK.Graphics.OpenGL4.ClearBufferMask.AccumBufferBit; - var _StencilBufferBit = OpenTK.Graphics.OpenGL4.ClearBufferMask.StencilBufferBit; - var _ColorBufferBit = OpenTK.Graphics.OpenGL4.ClearBufferMask.ColorBufferBit; - var _CoverageBufferBitNv = OpenTK.Graphics.OpenGL4.ClearBufferMask.CoverageBufferBitNv; -} -static void Test_ClientAttribMask_37503() { -} -static void Test_ClientWaitSyncFlags_37504() { - var _None = OpenTK.Graphics.OpenGL4.ClientWaitSyncFlags.None; - var _SyncFlushCommandsBit = OpenTK.Graphics.OpenGL4.ClientWaitSyncFlags.SyncFlushCommandsBit; -} -static void Test_ClipPlaneName_37505() { - var _ClipDistance0 = OpenTK.Graphics.OpenGL4.ClipPlaneName.ClipDistance0; - var _ClipDistance1 = OpenTK.Graphics.OpenGL4.ClipPlaneName.ClipDistance1; - var _ClipDistance2 = OpenTK.Graphics.OpenGL4.ClipPlaneName.ClipDistance2; - var _ClipDistance3 = OpenTK.Graphics.OpenGL4.ClipPlaneName.ClipDistance3; - var _ClipDistance4 = OpenTK.Graphics.OpenGL4.ClipPlaneName.ClipDistance4; - var _ClipDistance5 = OpenTK.Graphics.OpenGL4.ClipPlaneName.ClipDistance5; - var _ClipDistance6 = OpenTK.Graphics.OpenGL4.ClipPlaneName.ClipDistance6; - var _ClipDistance7 = OpenTK.Graphics.OpenGL4.ClipPlaneName.ClipDistance7; -} -static void Test_ColorMaterialFace_37506() { - var _Front = OpenTK.Graphics.OpenGL4.ColorMaterialFace.Front; - var _Back = OpenTK.Graphics.OpenGL4.ColorMaterialFace.Back; - var _FrontAndBack = OpenTK.Graphics.OpenGL4.ColorMaterialFace.FrontAndBack; -} -static void Test_ColorMaterialParameter_37507() { -} -static void Test_ColorPointerType_37508() { - var _Byte = OpenTK.Graphics.OpenGL4.ColorPointerType.Byte; - var _UnsignedByte = OpenTK.Graphics.OpenGL4.ColorPointerType.UnsignedByte; - var _Short = OpenTK.Graphics.OpenGL4.ColorPointerType.Short; - var _UnsignedShort = OpenTK.Graphics.OpenGL4.ColorPointerType.UnsignedShort; - var _Int = OpenTK.Graphics.OpenGL4.ColorPointerType.Int; - var _UnsignedInt = OpenTK.Graphics.OpenGL4.ColorPointerType.UnsignedInt; - var _Float = OpenTK.Graphics.OpenGL4.ColorPointerType.Float; - var _Double = OpenTK.Graphics.OpenGL4.ColorPointerType.Double; - var _HalfFloat = OpenTK.Graphics.OpenGL4.ColorPointerType.HalfFloat; - var _UnsignedInt2101010Rev = OpenTK.Graphics.OpenGL4.ColorPointerType.UnsignedInt2101010Rev; - var _Int2101010Rev = OpenTK.Graphics.OpenGL4.ColorPointerType.Int2101010Rev; -} -static void Test_ColorTableParameterPName_37509() { - var _ColorTableScale = OpenTK.Graphics.OpenGL4.ColorTableParameterPName.ColorTableScale; - var _ColorTableBias = OpenTK.Graphics.OpenGL4.ColorTableParameterPName.ColorTableBias; -} -static void Test_ColorTableParameterPNameSgi_37510() { - var _ColorTableScale = OpenTK.Graphics.OpenGL4.ColorTableParameterPNameSgi.ColorTableScale; - var _ColorTableScaleSgi = OpenTK.Graphics.OpenGL4.ColorTableParameterPNameSgi.ColorTableScaleSgi; - var _ColorTableBias = OpenTK.Graphics.OpenGL4.ColorTableParameterPNameSgi.ColorTableBias; - var _ColorTableBiasSgi = OpenTK.Graphics.OpenGL4.ColorTableParameterPNameSgi.ColorTableBiasSgi; -} -static void Test_ColorTableTarget_37511() { - var _ColorTable = OpenTK.Graphics.OpenGL4.ColorTableTarget.ColorTable; - var _PostConvolutionColorTable = OpenTK.Graphics.OpenGL4.ColorTableTarget.PostConvolutionColorTable; - var _PostColorMatrixColorTable = OpenTK.Graphics.OpenGL4.ColorTableTarget.PostColorMatrixColorTable; - var _ProxyColorTable = OpenTK.Graphics.OpenGL4.ColorTableTarget.ProxyColorTable; - var _ProxyPostConvolutionColorTable = OpenTK.Graphics.OpenGL4.ColorTableTarget.ProxyPostConvolutionColorTable; - var _ProxyPostColorMatrixColorTable = OpenTK.Graphics.OpenGL4.ColorTableTarget.ProxyPostColorMatrixColorTable; -} -static void Test_ColorTableTargetSgi_37512() { - var _TextureColorTableSgi = OpenTK.Graphics.OpenGL4.ColorTableTargetSgi.TextureColorTableSgi; - var _ProxyTextureColorTableSgi = OpenTK.Graphics.OpenGL4.ColorTableTargetSgi.ProxyTextureColorTableSgi; - var _ColorTable = OpenTK.Graphics.OpenGL4.ColorTableTargetSgi.ColorTable; - var _ColorTableSgi = OpenTK.Graphics.OpenGL4.ColorTableTargetSgi.ColorTableSgi; - var _PostConvolutionColorTable = OpenTK.Graphics.OpenGL4.ColorTableTargetSgi.PostConvolutionColorTable; - var _PostConvolutionColorTableSgi = OpenTK.Graphics.OpenGL4.ColorTableTargetSgi.PostConvolutionColorTableSgi; - var _PostColorMatrixColorTable = OpenTK.Graphics.OpenGL4.ColorTableTargetSgi.PostColorMatrixColorTable; - var _PostColorMatrixColorTableSgi = OpenTK.Graphics.OpenGL4.ColorTableTargetSgi.PostColorMatrixColorTableSgi; - var _ProxyColorTable = OpenTK.Graphics.OpenGL4.ColorTableTargetSgi.ProxyColorTable; - var _ProxyColorTableSgi = OpenTK.Graphics.OpenGL4.ColorTableTargetSgi.ProxyColorTableSgi; - var _ProxyPostConvolutionColorTable = OpenTK.Graphics.OpenGL4.ColorTableTargetSgi.ProxyPostConvolutionColorTable; - var _ProxyPostConvolutionColorTableSgi = OpenTK.Graphics.OpenGL4.ColorTableTargetSgi.ProxyPostConvolutionColorTableSgi; - var _ProxyPostColorMatrixColorTable = OpenTK.Graphics.OpenGL4.ColorTableTargetSgi.ProxyPostColorMatrixColorTable; - var _ProxyPostColorMatrixColorTableSgi = OpenTK.Graphics.OpenGL4.ColorTableTargetSgi.ProxyPostColorMatrixColorTableSgi; -} -static void Test_ConditionalRenderType_37513() { - var _QueryWait = OpenTK.Graphics.OpenGL4.ConditionalRenderType.QueryWait; - var _QueryNoWait = OpenTK.Graphics.OpenGL4.ConditionalRenderType.QueryNoWait; - var _QueryByRegionWait = OpenTK.Graphics.OpenGL4.ConditionalRenderType.QueryByRegionWait; - var _QueryByRegionNoWait = OpenTK.Graphics.OpenGL4.ConditionalRenderType.QueryByRegionNoWait; -} -static void Test_ContextFlagMask_37514() { - var _ContextFlagForwardCompatibleBit = OpenTK.Graphics.OpenGL4.ContextFlagMask.ContextFlagForwardCompatibleBit; - var _ContextFlagDebugBit = OpenTK.Graphics.OpenGL4.ContextFlagMask.ContextFlagDebugBit; - var _ContextFlagDebugBitKhr = OpenTK.Graphics.OpenGL4.ContextFlagMask.ContextFlagDebugBitKhr; - var _ContextFlagRobustAccessBitArb = OpenTK.Graphics.OpenGL4.ContextFlagMask.ContextFlagRobustAccessBitArb; -} -static void Test_ContextProfileMask_37515() { - var _ContextCoreProfileBit = OpenTK.Graphics.OpenGL4.ContextProfileMask.ContextCoreProfileBit; - var _ContextCompatibilityProfileBit = OpenTK.Graphics.OpenGL4.ContextProfileMask.ContextCompatibilityProfileBit; -} -static void Test_ConvolutionBorderModeExt_37516() { - var _Reduce = OpenTK.Graphics.OpenGL4.ConvolutionBorderModeExt.Reduce; - var _ReduceExt = OpenTK.Graphics.OpenGL4.ConvolutionBorderModeExt.ReduceExt; -} -static void Test_ConvolutionParameter_37517() { - var _ConvolutionBorderMode = OpenTK.Graphics.OpenGL4.ConvolutionParameter.ConvolutionBorderMode; - var _ConvolutionFilterScale = OpenTK.Graphics.OpenGL4.ConvolutionParameter.ConvolutionFilterScale; - var _ConvolutionFilterBias = OpenTK.Graphics.OpenGL4.ConvolutionParameter.ConvolutionFilterBias; -} -static void Test_ConvolutionParameterExt_37518() { - var _ConvolutionBorderMode = OpenTK.Graphics.OpenGL4.ConvolutionParameterExt.ConvolutionBorderMode; - var _ConvolutionBorderModeExt = OpenTK.Graphics.OpenGL4.ConvolutionParameterExt.ConvolutionBorderModeExt; - var _ConvolutionFilterScale = OpenTK.Graphics.OpenGL4.ConvolutionParameterExt.ConvolutionFilterScale; - var _ConvolutionFilterScaleExt = OpenTK.Graphics.OpenGL4.ConvolutionParameterExt.ConvolutionFilterScaleExt; - var _ConvolutionFilterBias = OpenTK.Graphics.OpenGL4.ConvolutionParameterExt.ConvolutionFilterBias; - var _ConvolutionFilterBiasExt = OpenTK.Graphics.OpenGL4.ConvolutionParameterExt.ConvolutionFilterBiasExt; -} -static void Test_ConvolutionParameterValue_37519() { - var _Reduce = OpenTK.Graphics.OpenGL4.ConvolutionParameterValue.Reduce; - var _ConstantBorder = OpenTK.Graphics.OpenGL4.ConvolutionParameterValue.ConstantBorder; - var _ReplicateBorder = OpenTK.Graphics.OpenGL4.ConvolutionParameterValue.ReplicateBorder; -} -static void Test_ConvolutionTarget_37520() { - var _Convolution1D = OpenTK.Graphics.OpenGL4.ConvolutionTarget.Convolution1D; - var _Convolution2D = OpenTK.Graphics.OpenGL4.ConvolutionTarget.Convolution2D; - var _Separable2D = OpenTK.Graphics.OpenGL4.ConvolutionTarget.Separable2D; -} -static void Test_ConvolutionTargetExt_37521() { - var _Convolution1D = OpenTK.Graphics.OpenGL4.ConvolutionTargetExt.Convolution1D; - var _Convolution1DExt = OpenTK.Graphics.OpenGL4.ConvolutionTargetExt.Convolution1DExt; - var _Convolution2D = OpenTK.Graphics.OpenGL4.ConvolutionTargetExt.Convolution2D; - var _Convolution2DExt = OpenTK.Graphics.OpenGL4.ConvolutionTargetExt.Convolution2DExt; -} -static void Test_CullFaceMode_37522() { - var _Front = OpenTK.Graphics.OpenGL4.CullFaceMode.Front; - var _Back = OpenTK.Graphics.OpenGL4.CullFaceMode.Back; - var _FrontAndBack = OpenTK.Graphics.OpenGL4.CullFaceMode.FrontAndBack; -} -static void Test_DataType_37523() { -} -static void Test_DebugSeverity_37524() { - var _DebugSeverityNotification = OpenTK.Graphics.OpenGL4.DebugSeverity.DebugSeverityNotification; - var _DebugSeverityHigh = OpenTK.Graphics.OpenGL4.DebugSeverity.DebugSeverityHigh; - var _DebugSeverityMedium = OpenTK.Graphics.OpenGL4.DebugSeverity.DebugSeverityMedium; - var _DebugSeverityLow = OpenTK.Graphics.OpenGL4.DebugSeverity.DebugSeverityLow; -} -static void Test_DebugSeverityControl_37525() { - var _DontCare = OpenTK.Graphics.OpenGL4.DebugSeverityControl.DontCare; - var _DebugSeverityNotification = OpenTK.Graphics.OpenGL4.DebugSeverityControl.DebugSeverityNotification; - var _DebugSeverityHigh = OpenTK.Graphics.OpenGL4.DebugSeverityControl.DebugSeverityHigh; - var _DebugSeverityMedium = OpenTK.Graphics.OpenGL4.DebugSeverityControl.DebugSeverityMedium; - var _DebugSeverityLow = OpenTK.Graphics.OpenGL4.DebugSeverityControl.DebugSeverityLow; -} -static void Test_DebugSource_37526() { - var _DebugSourceApi = OpenTK.Graphics.OpenGL4.DebugSource.DebugSourceApi; - var _DebugSourceWindowSystem = OpenTK.Graphics.OpenGL4.DebugSource.DebugSourceWindowSystem; - var _DebugSourceShaderCompiler = OpenTK.Graphics.OpenGL4.DebugSource.DebugSourceShaderCompiler; - var _DebugSourceThirdParty = OpenTK.Graphics.OpenGL4.DebugSource.DebugSourceThirdParty; - var _DebugSourceApplication = OpenTK.Graphics.OpenGL4.DebugSource.DebugSourceApplication; - var _DebugSourceOther = OpenTK.Graphics.OpenGL4.DebugSource.DebugSourceOther; -} -static void Test_DebugSourceControl_37527() { - var _DontCare = OpenTK.Graphics.OpenGL4.DebugSourceControl.DontCare; - var _DebugSourceApi = OpenTK.Graphics.OpenGL4.DebugSourceControl.DebugSourceApi; - var _DebugSourceWindowSystem = OpenTK.Graphics.OpenGL4.DebugSourceControl.DebugSourceWindowSystem; - var _DebugSourceShaderCompiler = OpenTK.Graphics.OpenGL4.DebugSourceControl.DebugSourceShaderCompiler; - var _DebugSourceThirdParty = OpenTK.Graphics.OpenGL4.DebugSourceControl.DebugSourceThirdParty; - var _DebugSourceApplication = OpenTK.Graphics.OpenGL4.DebugSourceControl.DebugSourceApplication; - var _DebugSourceOther = OpenTK.Graphics.OpenGL4.DebugSourceControl.DebugSourceOther; -} -static void Test_DebugSourceExternal_37528() { - var _DebugSourceThirdParty = OpenTK.Graphics.OpenGL4.DebugSourceExternal.DebugSourceThirdParty; - var _DebugSourceApplication = OpenTK.Graphics.OpenGL4.DebugSourceExternal.DebugSourceApplication; -} -static void Test_DebugType_37529() { - var _DebugTypeError = OpenTK.Graphics.OpenGL4.DebugType.DebugTypeError; - var _DebugTypeDeprecatedBehavior = OpenTK.Graphics.OpenGL4.DebugType.DebugTypeDeprecatedBehavior; - var _DebugTypeUndefinedBehavior = OpenTK.Graphics.OpenGL4.DebugType.DebugTypeUndefinedBehavior; - var _DebugTypePortability = OpenTK.Graphics.OpenGL4.DebugType.DebugTypePortability; - var _DebugTypePerformance = OpenTK.Graphics.OpenGL4.DebugType.DebugTypePerformance; - var _DebugTypeOther = OpenTK.Graphics.OpenGL4.DebugType.DebugTypeOther; - var _DebugTypeMarker = OpenTK.Graphics.OpenGL4.DebugType.DebugTypeMarker; - var _DebugTypePushGroup = OpenTK.Graphics.OpenGL4.DebugType.DebugTypePushGroup; - var _DebugTypePopGroup = OpenTK.Graphics.OpenGL4.DebugType.DebugTypePopGroup; -} -static void Test_DebugTypeControl_37530() { - var _DontCare = OpenTK.Graphics.OpenGL4.DebugTypeControl.DontCare; - var _DebugTypeError = OpenTK.Graphics.OpenGL4.DebugTypeControl.DebugTypeError; - var _DebugTypeDeprecatedBehavior = OpenTK.Graphics.OpenGL4.DebugTypeControl.DebugTypeDeprecatedBehavior; - var _DebugTypeUndefinedBehavior = OpenTK.Graphics.OpenGL4.DebugTypeControl.DebugTypeUndefinedBehavior; - var _DebugTypePortability = OpenTK.Graphics.OpenGL4.DebugTypeControl.DebugTypePortability; - var _DebugTypePerformance = OpenTK.Graphics.OpenGL4.DebugTypeControl.DebugTypePerformance; - var _DebugTypeOther = OpenTK.Graphics.OpenGL4.DebugTypeControl.DebugTypeOther; - var _DebugTypeMarker = OpenTK.Graphics.OpenGL4.DebugTypeControl.DebugTypeMarker; - var _DebugTypePushGroup = OpenTK.Graphics.OpenGL4.DebugTypeControl.DebugTypePushGroup; - var _DebugTypePopGroup = OpenTK.Graphics.OpenGL4.DebugTypeControl.DebugTypePopGroup; -} -static void Test_DepthFunction_37531() { - var _Never = OpenTK.Graphics.OpenGL4.DepthFunction.Never; - var _Less = OpenTK.Graphics.OpenGL4.DepthFunction.Less; - var _Equal = OpenTK.Graphics.OpenGL4.DepthFunction.Equal; - var _Lequal = OpenTK.Graphics.OpenGL4.DepthFunction.Lequal; - var _Greater = OpenTK.Graphics.OpenGL4.DepthFunction.Greater; - var _Notequal = OpenTK.Graphics.OpenGL4.DepthFunction.Notequal; - var _Gequal = OpenTK.Graphics.OpenGL4.DepthFunction.Gequal; - var _Always = OpenTK.Graphics.OpenGL4.DepthFunction.Always; -} -static void Test_DrawBufferMode_37532() { - var _None = OpenTK.Graphics.OpenGL4.DrawBufferMode.None; - var _NoneOes = OpenTK.Graphics.OpenGL4.DrawBufferMode.NoneOes; - var _FrontLeft = OpenTK.Graphics.OpenGL4.DrawBufferMode.FrontLeft; - var _FrontRight = OpenTK.Graphics.OpenGL4.DrawBufferMode.FrontRight; - var _BackLeft = OpenTK.Graphics.OpenGL4.DrawBufferMode.BackLeft; - var _BackRight = OpenTK.Graphics.OpenGL4.DrawBufferMode.BackRight; - var _Front = OpenTK.Graphics.OpenGL4.DrawBufferMode.Front; - var _Back = OpenTK.Graphics.OpenGL4.DrawBufferMode.Back; - var _Left = OpenTK.Graphics.OpenGL4.DrawBufferMode.Left; - var _Right = OpenTK.Graphics.OpenGL4.DrawBufferMode.Right; - var _FrontAndBack = OpenTK.Graphics.OpenGL4.DrawBufferMode.FrontAndBack; - var _ColorAttachment0 = OpenTK.Graphics.OpenGL4.DrawBufferMode.ColorAttachment0; - var _ColorAttachment1 = OpenTK.Graphics.OpenGL4.DrawBufferMode.ColorAttachment1; - var _ColorAttachment2 = OpenTK.Graphics.OpenGL4.DrawBufferMode.ColorAttachment2; - var _ColorAttachment3 = OpenTK.Graphics.OpenGL4.DrawBufferMode.ColorAttachment3; - var _ColorAttachment4 = OpenTK.Graphics.OpenGL4.DrawBufferMode.ColorAttachment4; - var _ColorAttachment5 = OpenTK.Graphics.OpenGL4.DrawBufferMode.ColorAttachment5; - var _ColorAttachment6 = OpenTK.Graphics.OpenGL4.DrawBufferMode.ColorAttachment6; - var _ColorAttachment7 = OpenTK.Graphics.OpenGL4.DrawBufferMode.ColorAttachment7; - var _ColorAttachment8 = OpenTK.Graphics.OpenGL4.DrawBufferMode.ColorAttachment8; - var _ColorAttachment9 = OpenTK.Graphics.OpenGL4.DrawBufferMode.ColorAttachment9; - var _ColorAttachment10 = OpenTK.Graphics.OpenGL4.DrawBufferMode.ColorAttachment10; - var _ColorAttachment11 = OpenTK.Graphics.OpenGL4.DrawBufferMode.ColorAttachment11; - var _ColorAttachment12 = OpenTK.Graphics.OpenGL4.DrawBufferMode.ColorAttachment12; - var _ColorAttachment13 = OpenTK.Graphics.OpenGL4.DrawBufferMode.ColorAttachment13; - var _ColorAttachment14 = OpenTK.Graphics.OpenGL4.DrawBufferMode.ColorAttachment14; - var _ColorAttachment15 = OpenTK.Graphics.OpenGL4.DrawBufferMode.ColorAttachment15; -} -static void Test_DrawBuffersEnum_37533() { - var _None = OpenTK.Graphics.OpenGL4.DrawBuffersEnum.None; - var _FrontLeft = OpenTK.Graphics.OpenGL4.DrawBuffersEnum.FrontLeft; - var _FrontRight = OpenTK.Graphics.OpenGL4.DrawBuffersEnum.FrontRight; - var _BackLeft = OpenTK.Graphics.OpenGL4.DrawBuffersEnum.BackLeft; - var _BackRight = OpenTK.Graphics.OpenGL4.DrawBuffersEnum.BackRight; - var _Aux0 = OpenTK.Graphics.OpenGL4.DrawBuffersEnum.Aux0; - var _Aux1 = OpenTK.Graphics.OpenGL4.DrawBuffersEnum.Aux1; - var _Aux2 = OpenTK.Graphics.OpenGL4.DrawBuffersEnum.Aux2; - var _Aux3 = OpenTK.Graphics.OpenGL4.DrawBuffersEnum.Aux3; - var _ColorAttachment0 = OpenTK.Graphics.OpenGL4.DrawBuffersEnum.ColorAttachment0; - var _ColorAttachment1 = OpenTK.Graphics.OpenGL4.DrawBuffersEnum.ColorAttachment1; - var _ColorAttachment2 = OpenTK.Graphics.OpenGL4.DrawBuffersEnum.ColorAttachment2; - var _ColorAttachment3 = OpenTK.Graphics.OpenGL4.DrawBuffersEnum.ColorAttachment3; - var _ColorAttachment4 = OpenTK.Graphics.OpenGL4.DrawBuffersEnum.ColorAttachment4; - var _ColorAttachment5 = OpenTK.Graphics.OpenGL4.DrawBuffersEnum.ColorAttachment5; - var _ColorAttachment6 = OpenTK.Graphics.OpenGL4.DrawBuffersEnum.ColorAttachment6; - var _ColorAttachment7 = OpenTK.Graphics.OpenGL4.DrawBuffersEnum.ColorAttachment7; - var _ColorAttachment8 = OpenTK.Graphics.OpenGL4.DrawBuffersEnum.ColorAttachment8; - var _ColorAttachment9 = OpenTK.Graphics.OpenGL4.DrawBuffersEnum.ColorAttachment9; - var _ColorAttachment10 = OpenTK.Graphics.OpenGL4.DrawBuffersEnum.ColorAttachment10; - var _ColorAttachment11 = OpenTK.Graphics.OpenGL4.DrawBuffersEnum.ColorAttachment11; - var _ColorAttachment12 = OpenTK.Graphics.OpenGL4.DrawBuffersEnum.ColorAttachment12; - var _ColorAttachment13 = OpenTK.Graphics.OpenGL4.DrawBuffersEnum.ColorAttachment13; - var _ColorAttachment14 = OpenTK.Graphics.OpenGL4.DrawBuffersEnum.ColorAttachment14; - var _ColorAttachment15 = OpenTK.Graphics.OpenGL4.DrawBuffersEnum.ColorAttachment15; -} -static void Test_DrawElementsType_37534() { - var _UnsignedByte = OpenTK.Graphics.OpenGL4.DrawElementsType.UnsignedByte; - var _UnsignedShort = OpenTK.Graphics.OpenGL4.DrawElementsType.UnsignedShort; - var _UnsignedInt = OpenTK.Graphics.OpenGL4.DrawElementsType.UnsignedInt; -} -static void Test_EnableCap_37535() { - var _LineSmooth = OpenTK.Graphics.OpenGL4.EnableCap.LineSmooth; - var _PolygonSmooth = OpenTK.Graphics.OpenGL4.EnableCap.PolygonSmooth; - var _CullFace = OpenTK.Graphics.OpenGL4.EnableCap.CullFace; - var _DepthTest = OpenTK.Graphics.OpenGL4.EnableCap.DepthTest; - var _StencilTest = OpenTK.Graphics.OpenGL4.EnableCap.StencilTest; - var _Dither = OpenTK.Graphics.OpenGL4.EnableCap.Dither; - var _Blend = OpenTK.Graphics.OpenGL4.EnableCap.Blend; - var _ColorLogicOp = OpenTK.Graphics.OpenGL4.EnableCap.ColorLogicOp; - var _ScissorTest = OpenTK.Graphics.OpenGL4.EnableCap.ScissorTest; - var _Texture1D = OpenTK.Graphics.OpenGL4.EnableCap.Texture1D; - var _Texture2D = OpenTK.Graphics.OpenGL4.EnableCap.Texture2D; - var _PolygonOffsetPoint = OpenTK.Graphics.OpenGL4.EnableCap.PolygonOffsetPoint; - var _PolygonOffsetLine = OpenTK.Graphics.OpenGL4.EnableCap.PolygonOffsetLine; - var _ClipDistance0 = OpenTK.Graphics.OpenGL4.EnableCap.ClipDistance0; - var _ClipPlane0 = OpenTK.Graphics.OpenGL4.EnableCap.ClipPlane0; - var _ClipDistance1 = OpenTK.Graphics.OpenGL4.EnableCap.ClipDistance1; - var _ClipPlane1 = OpenTK.Graphics.OpenGL4.EnableCap.ClipPlane1; - var _ClipDistance2 = OpenTK.Graphics.OpenGL4.EnableCap.ClipDistance2; - var _ClipPlane2 = OpenTK.Graphics.OpenGL4.EnableCap.ClipPlane2; - var _ClipDistance3 = OpenTK.Graphics.OpenGL4.EnableCap.ClipDistance3; - var _ClipPlane3 = OpenTK.Graphics.OpenGL4.EnableCap.ClipPlane3; - var _ClipDistance4 = OpenTK.Graphics.OpenGL4.EnableCap.ClipDistance4; - var _ClipPlane4 = OpenTK.Graphics.OpenGL4.EnableCap.ClipPlane4; - var _ClipDistance5 = OpenTK.Graphics.OpenGL4.EnableCap.ClipDistance5; - var _ClipPlane5 = OpenTK.Graphics.OpenGL4.EnableCap.ClipPlane5; - var _ClipDistance6 = OpenTK.Graphics.OpenGL4.EnableCap.ClipDistance6; - var _ClipDistance7 = OpenTK.Graphics.OpenGL4.EnableCap.ClipDistance7; - var _Convolution1D = OpenTK.Graphics.OpenGL4.EnableCap.Convolution1D; - var _Convolution1DExt = OpenTK.Graphics.OpenGL4.EnableCap.Convolution1DExt; - var _Convolution2D = OpenTK.Graphics.OpenGL4.EnableCap.Convolution2D; - var _Convolution2DExt = OpenTK.Graphics.OpenGL4.EnableCap.Convolution2DExt; - var _Separable2D = OpenTK.Graphics.OpenGL4.EnableCap.Separable2D; - var _Separable2DExt = OpenTK.Graphics.OpenGL4.EnableCap.Separable2DExt; - var _Histogram = OpenTK.Graphics.OpenGL4.EnableCap.Histogram; - var _HistogramExt = OpenTK.Graphics.OpenGL4.EnableCap.HistogramExt; - var _MinmaxExt = OpenTK.Graphics.OpenGL4.EnableCap.MinmaxExt; - var _PolygonOffsetFill = OpenTK.Graphics.OpenGL4.EnableCap.PolygonOffsetFill; - var _RescaleNormal = OpenTK.Graphics.OpenGL4.EnableCap.RescaleNormal; - var _RescaleNormalExt = OpenTK.Graphics.OpenGL4.EnableCap.RescaleNormalExt; - var _Texture3DExt = OpenTK.Graphics.OpenGL4.EnableCap.Texture3DExt; - var _InterlaceSgix = OpenTK.Graphics.OpenGL4.EnableCap.InterlaceSgix; - var _Multisample = OpenTK.Graphics.OpenGL4.EnableCap.Multisample; - var _MultisampleSgis = OpenTK.Graphics.OpenGL4.EnableCap.MultisampleSgis; - var _SampleAlphaToCoverage = OpenTK.Graphics.OpenGL4.EnableCap.SampleAlphaToCoverage; - var _SampleAlphaToMaskSgis = OpenTK.Graphics.OpenGL4.EnableCap.SampleAlphaToMaskSgis; - var _SampleAlphaToOne = OpenTK.Graphics.OpenGL4.EnableCap.SampleAlphaToOne; - var _SampleAlphaToOneSgis = OpenTK.Graphics.OpenGL4.EnableCap.SampleAlphaToOneSgis; - var _SampleCoverage = OpenTK.Graphics.OpenGL4.EnableCap.SampleCoverage; - var _SampleMaskSgis = OpenTK.Graphics.OpenGL4.EnableCap.SampleMaskSgis; - var _TextureColorTableSgi = OpenTK.Graphics.OpenGL4.EnableCap.TextureColorTableSgi; - var _ColorTable = OpenTK.Graphics.OpenGL4.EnableCap.ColorTable; - var _ColorTableSgi = OpenTK.Graphics.OpenGL4.EnableCap.ColorTableSgi; - var _PostConvolutionColorTable = OpenTK.Graphics.OpenGL4.EnableCap.PostConvolutionColorTable; - var _PostConvolutionColorTableSgi = OpenTK.Graphics.OpenGL4.EnableCap.PostConvolutionColorTableSgi; - var _PostColorMatrixColorTable = OpenTK.Graphics.OpenGL4.EnableCap.PostColorMatrixColorTable; - var _PostColorMatrixColorTableSgi = OpenTK.Graphics.OpenGL4.EnableCap.PostColorMatrixColorTableSgi; - var _Texture4DSgis = OpenTK.Graphics.OpenGL4.EnableCap.Texture4DSgis; - var _PixelTexGenSgix = OpenTK.Graphics.OpenGL4.EnableCap.PixelTexGenSgix; - var _SpriteSgix = OpenTK.Graphics.OpenGL4.EnableCap.SpriteSgix; - var _ReferencePlaneSgix = OpenTK.Graphics.OpenGL4.EnableCap.ReferencePlaneSgix; - var _IrInstrument1Sgix = OpenTK.Graphics.OpenGL4.EnableCap.IrInstrument1Sgix; - var _CalligraphicFragmentSgix = OpenTK.Graphics.OpenGL4.EnableCap.CalligraphicFragmentSgix; - var _FramezoomSgix = OpenTK.Graphics.OpenGL4.EnableCap.FramezoomSgix; - var _FogOffsetSgix = OpenTK.Graphics.OpenGL4.EnableCap.FogOffsetSgix; - var _SharedTexturePaletteExt = OpenTK.Graphics.OpenGL4.EnableCap.SharedTexturePaletteExt; - var _DebugOutputSynchronous = OpenTK.Graphics.OpenGL4.EnableCap.DebugOutputSynchronous; - var _AsyncHistogramSgix = OpenTK.Graphics.OpenGL4.EnableCap.AsyncHistogramSgix; - var _PixelTextureSgis = OpenTK.Graphics.OpenGL4.EnableCap.PixelTextureSgis; - var _AsyncTexImageSgix = OpenTK.Graphics.OpenGL4.EnableCap.AsyncTexImageSgix; - var _AsyncDrawPixelsSgix = OpenTK.Graphics.OpenGL4.EnableCap.AsyncDrawPixelsSgix; - var _AsyncReadPixelsSgix = OpenTK.Graphics.OpenGL4.EnableCap.AsyncReadPixelsSgix; - var _FragmentLightingSgix = OpenTK.Graphics.OpenGL4.EnableCap.FragmentLightingSgix; - var _FragmentColorMaterialSgix = OpenTK.Graphics.OpenGL4.EnableCap.FragmentColorMaterialSgix; - var _FragmentLight0Sgix = OpenTK.Graphics.OpenGL4.EnableCap.FragmentLight0Sgix; - var _FragmentLight1Sgix = OpenTK.Graphics.OpenGL4.EnableCap.FragmentLight1Sgix; - var _FragmentLight2Sgix = OpenTK.Graphics.OpenGL4.EnableCap.FragmentLight2Sgix; - var _FragmentLight3Sgix = OpenTK.Graphics.OpenGL4.EnableCap.FragmentLight3Sgix; - var _FragmentLight4Sgix = OpenTK.Graphics.OpenGL4.EnableCap.FragmentLight4Sgix; - var _FragmentLight5Sgix = OpenTK.Graphics.OpenGL4.EnableCap.FragmentLight5Sgix; - var _FragmentLight6Sgix = OpenTK.Graphics.OpenGL4.EnableCap.FragmentLight6Sgix; - var _FragmentLight7Sgix = OpenTK.Graphics.OpenGL4.EnableCap.FragmentLight7Sgix; - var _FogCoordArray = OpenTK.Graphics.OpenGL4.EnableCap.FogCoordArray; - var _ColorSum = OpenTK.Graphics.OpenGL4.EnableCap.ColorSum; - var _SecondaryColorArray = OpenTK.Graphics.OpenGL4.EnableCap.SecondaryColorArray; - var _TextureRectangle = OpenTK.Graphics.OpenGL4.EnableCap.TextureRectangle; - var _TextureCubeMap = OpenTK.Graphics.OpenGL4.EnableCap.TextureCubeMap; - var _ProgramPointSize = OpenTK.Graphics.OpenGL4.EnableCap.ProgramPointSize; - var _VertexProgramPointSize = OpenTK.Graphics.OpenGL4.EnableCap.VertexProgramPointSize; - var _VertexProgramTwoSide = OpenTK.Graphics.OpenGL4.EnableCap.VertexProgramTwoSide; - var _DepthClamp = OpenTK.Graphics.OpenGL4.EnableCap.DepthClamp; - var _TextureCubeMapSeamless = OpenTK.Graphics.OpenGL4.EnableCap.TextureCubeMapSeamless; - var _PointSprite = OpenTK.Graphics.OpenGL4.EnableCap.PointSprite; - var _SampleShading = OpenTK.Graphics.OpenGL4.EnableCap.SampleShading; - var _RasterizerDiscard = OpenTK.Graphics.OpenGL4.EnableCap.RasterizerDiscard; - var _PrimitiveRestartFixedIndex = OpenTK.Graphics.OpenGL4.EnableCap.PrimitiveRestartFixedIndex; - var _FramebufferSrgb = OpenTK.Graphics.OpenGL4.EnableCap.FramebufferSrgb; - var _SampleMask = OpenTK.Graphics.OpenGL4.EnableCap.SampleMask; - var _PrimitiveRestart = OpenTK.Graphics.OpenGL4.EnableCap.PrimitiveRestart; - var _DebugOutput = OpenTK.Graphics.OpenGL4.EnableCap.DebugOutput; -} -static void Test_ErrorCode_37536() { - var _NoError = OpenTK.Graphics.OpenGL4.ErrorCode.NoError; - var _InvalidEnum = OpenTK.Graphics.OpenGL4.ErrorCode.InvalidEnum; - var _InvalidValue = OpenTK.Graphics.OpenGL4.ErrorCode.InvalidValue; - var _InvalidOperation = OpenTK.Graphics.OpenGL4.ErrorCode.InvalidOperation; - var _OutOfMemory = OpenTK.Graphics.OpenGL4.ErrorCode.OutOfMemory; - var _InvalidFramebufferOperation = OpenTK.Graphics.OpenGL4.ErrorCode.InvalidFramebufferOperation; - var _InvalidFramebufferOperationExt = OpenTK.Graphics.OpenGL4.ErrorCode.InvalidFramebufferOperationExt; - var _InvalidFramebufferOperationOes = OpenTK.Graphics.OpenGL4.ErrorCode.InvalidFramebufferOperationOes; - var _TableTooLarge = OpenTK.Graphics.OpenGL4.ErrorCode.TableTooLarge; - var _TableTooLargeExt = OpenTK.Graphics.OpenGL4.ErrorCode.TableTooLargeExt; - var _TextureTooLargeExt = OpenTK.Graphics.OpenGL4.ErrorCode.TextureTooLargeExt; -} -static void Test_FeedBackToken_37537() { -} -static void Test_FeedbackType_37538() { -} -static void Test_FfdMaskSgix_37539() { -} -static void Test_FfdTargetSgix_37540() { - var _GeometryDeformationSgix = OpenTK.Graphics.OpenGL4.FfdTargetSgix.GeometryDeformationSgix; - var _TextureDeformationSgix = OpenTK.Graphics.OpenGL4.FfdTargetSgix.TextureDeformationSgix; -} -static void Test_FogCoordinatePointerType_37541() { - var _Float = OpenTK.Graphics.OpenGL4.FogCoordinatePointerType.Float; - var _Double = OpenTK.Graphics.OpenGL4.FogCoordinatePointerType.Double; - var _HalfFloat = OpenTK.Graphics.OpenGL4.FogCoordinatePointerType.HalfFloat; -} -static void Test_FogMode_37542() { - var _Linear = OpenTK.Graphics.OpenGL4.FogMode.Linear; - var _FogFuncSgis = OpenTK.Graphics.OpenGL4.FogMode.FogFuncSgis; - var _FogCoord = OpenTK.Graphics.OpenGL4.FogMode.FogCoord; - var _FragmentDepth = OpenTK.Graphics.OpenGL4.FogMode.FragmentDepth; -} -static void Test_FogParameter_37543() { - var _FogOffsetValueSgix = OpenTK.Graphics.OpenGL4.FogParameter.FogOffsetValueSgix; - var _FogCoordSrc = OpenTK.Graphics.OpenGL4.FogParameter.FogCoordSrc; -} -static void Test_FogPointerType_37544() { - var _Float = OpenTK.Graphics.OpenGL4.FogPointerType.Float; - var _Double = OpenTK.Graphics.OpenGL4.FogPointerType.Double; - var _HalfFloat = OpenTK.Graphics.OpenGL4.FogPointerType.HalfFloat; -} -static void Test_FogPointerTypeExt_37545() { - var _Float = OpenTK.Graphics.OpenGL4.FogPointerTypeExt.Float; - var _Double = OpenTK.Graphics.OpenGL4.FogPointerTypeExt.Double; - var _HalfFloat = OpenTK.Graphics.OpenGL4.FogPointerTypeExt.HalfFloat; -} -static void Test_FogPointerTypeIbm_37546() { - var _Float = OpenTK.Graphics.OpenGL4.FogPointerTypeIbm.Float; - var _Double = OpenTK.Graphics.OpenGL4.FogPointerTypeIbm.Double; - var _HalfFloat = OpenTK.Graphics.OpenGL4.FogPointerTypeIbm.HalfFloat; -} -static void Test_FragmentLightModelParameterSgix_37547() { - var _FragmentLightModelLocalViewerSgix = OpenTK.Graphics.OpenGL4.FragmentLightModelParameterSgix.FragmentLightModelLocalViewerSgix; - var _FragmentLightModelTwoSideSgix = OpenTK.Graphics.OpenGL4.FragmentLightModelParameterSgix.FragmentLightModelTwoSideSgix; - var _FragmentLightModelAmbientSgix = OpenTK.Graphics.OpenGL4.FragmentLightModelParameterSgix.FragmentLightModelAmbientSgix; - var _FragmentLightModelNormalInterpolationSgix = OpenTK.Graphics.OpenGL4.FragmentLightModelParameterSgix.FragmentLightModelNormalInterpolationSgix; -} -static void Test_FramebufferAttachment_37548() { - var _FrontLeft = OpenTK.Graphics.OpenGL4.FramebufferAttachment.FrontLeft; - var _FrontRight = OpenTK.Graphics.OpenGL4.FramebufferAttachment.FrontRight; - var _BackLeft = OpenTK.Graphics.OpenGL4.FramebufferAttachment.BackLeft; - var _BackRight = OpenTK.Graphics.OpenGL4.FramebufferAttachment.BackRight; - var _Aux0 = OpenTK.Graphics.OpenGL4.FramebufferAttachment.Aux0; - var _Aux1 = OpenTK.Graphics.OpenGL4.FramebufferAttachment.Aux1; - var _Aux2 = OpenTK.Graphics.OpenGL4.FramebufferAttachment.Aux2; - var _Aux3 = OpenTK.Graphics.OpenGL4.FramebufferAttachment.Aux3; - var _Color = OpenTK.Graphics.OpenGL4.FramebufferAttachment.Color; - var _Depth = OpenTK.Graphics.OpenGL4.FramebufferAttachment.Depth; - var _Stencil = OpenTK.Graphics.OpenGL4.FramebufferAttachment.Stencil; - var _DepthStencilAttachment = OpenTK.Graphics.OpenGL4.FramebufferAttachment.DepthStencilAttachment; - var _ColorAttachment0 = OpenTK.Graphics.OpenGL4.FramebufferAttachment.ColorAttachment0; - var _ColorAttachment0Ext = OpenTK.Graphics.OpenGL4.FramebufferAttachment.ColorAttachment0Ext; - var _ColorAttachment1 = OpenTK.Graphics.OpenGL4.FramebufferAttachment.ColorAttachment1; - var _ColorAttachment1Ext = OpenTK.Graphics.OpenGL4.FramebufferAttachment.ColorAttachment1Ext; - var _ColorAttachment2 = OpenTK.Graphics.OpenGL4.FramebufferAttachment.ColorAttachment2; - var _ColorAttachment2Ext = OpenTK.Graphics.OpenGL4.FramebufferAttachment.ColorAttachment2Ext; - var _ColorAttachment3 = OpenTK.Graphics.OpenGL4.FramebufferAttachment.ColorAttachment3; - var _ColorAttachment3Ext = OpenTK.Graphics.OpenGL4.FramebufferAttachment.ColorAttachment3Ext; - var _ColorAttachment4 = OpenTK.Graphics.OpenGL4.FramebufferAttachment.ColorAttachment4; - var _ColorAttachment4Ext = OpenTK.Graphics.OpenGL4.FramebufferAttachment.ColorAttachment4Ext; - var _ColorAttachment5 = OpenTK.Graphics.OpenGL4.FramebufferAttachment.ColorAttachment5; - var _ColorAttachment5Ext = OpenTK.Graphics.OpenGL4.FramebufferAttachment.ColorAttachment5Ext; - var _ColorAttachment6 = OpenTK.Graphics.OpenGL4.FramebufferAttachment.ColorAttachment6; - var _ColorAttachment6Ext = OpenTK.Graphics.OpenGL4.FramebufferAttachment.ColorAttachment6Ext; - var _ColorAttachment7 = OpenTK.Graphics.OpenGL4.FramebufferAttachment.ColorAttachment7; - var _ColorAttachment7Ext = OpenTK.Graphics.OpenGL4.FramebufferAttachment.ColorAttachment7Ext; - var _ColorAttachment8 = OpenTK.Graphics.OpenGL4.FramebufferAttachment.ColorAttachment8; - var _ColorAttachment8Ext = OpenTK.Graphics.OpenGL4.FramebufferAttachment.ColorAttachment8Ext; - var _ColorAttachment9 = OpenTK.Graphics.OpenGL4.FramebufferAttachment.ColorAttachment9; - var _ColorAttachment9Ext = OpenTK.Graphics.OpenGL4.FramebufferAttachment.ColorAttachment9Ext; - var _ColorAttachment10 = OpenTK.Graphics.OpenGL4.FramebufferAttachment.ColorAttachment10; - var _ColorAttachment10Ext = OpenTK.Graphics.OpenGL4.FramebufferAttachment.ColorAttachment10Ext; - var _ColorAttachment11 = OpenTK.Graphics.OpenGL4.FramebufferAttachment.ColorAttachment11; - var _ColorAttachment11Ext = OpenTK.Graphics.OpenGL4.FramebufferAttachment.ColorAttachment11Ext; - var _ColorAttachment12 = OpenTK.Graphics.OpenGL4.FramebufferAttachment.ColorAttachment12; - var _ColorAttachment12Ext = OpenTK.Graphics.OpenGL4.FramebufferAttachment.ColorAttachment12Ext; - var _ColorAttachment13 = OpenTK.Graphics.OpenGL4.FramebufferAttachment.ColorAttachment13; - var _ColorAttachment13Ext = OpenTK.Graphics.OpenGL4.FramebufferAttachment.ColorAttachment13Ext; - var _ColorAttachment14 = OpenTK.Graphics.OpenGL4.FramebufferAttachment.ColorAttachment14; - var _ColorAttachment14Ext = OpenTK.Graphics.OpenGL4.FramebufferAttachment.ColorAttachment14Ext; - var _ColorAttachment15 = OpenTK.Graphics.OpenGL4.FramebufferAttachment.ColorAttachment15; - var _ColorAttachment15Ext = OpenTK.Graphics.OpenGL4.FramebufferAttachment.ColorAttachment15Ext; - var _DepthAttachment = OpenTK.Graphics.OpenGL4.FramebufferAttachment.DepthAttachment; - var _DepthAttachmentExt = OpenTK.Graphics.OpenGL4.FramebufferAttachment.DepthAttachmentExt; - var _StencilAttachment = OpenTK.Graphics.OpenGL4.FramebufferAttachment.StencilAttachment; - var _StencilAttachmentExt = OpenTK.Graphics.OpenGL4.FramebufferAttachment.StencilAttachmentExt; -} -static void Test_FramebufferAttachmentComponentType_37549() { - var _Int = OpenTK.Graphics.OpenGL4.FramebufferAttachmentComponentType.Int; - var _Float = OpenTK.Graphics.OpenGL4.FramebufferAttachmentComponentType.Float; - var _Index = OpenTK.Graphics.OpenGL4.FramebufferAttachmentComponentType.Index; - var _UnsignedNormalized = OpenTK.Graphics.OpenGL4.FramebufferAttachmentComponentType.UnsignedNormalized; -} -static void Test_FramebufferAttachmentObjectType_37550() { - var _None = OpenTK.Graphics.OpenGL4.FramebufferAttachmentObjectType.None; - var _Texture = OpenTK.Graphics.OpenGL4.FramebufferAttachmentObjectType.Texture; - var _FramebufferDefault = OpenTK.Graphics.OpenGL4.FramebufferAttachmentObjectType.FramebufferDefault; - var _Renderbuffer = OpenTK.Graphics.OpenGL4.FramebufferAttachmentObjectType.Renderbuffer; -} -static void Test_FramebufferDefaultParameter_37551() { - var _FramebufferDefaultWidth = OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter.FramebufferDefaultWidth; - var _FramebufferDefaultHeight = OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter.FramebufferDefaultHeight; - var _FramebufferDefaultLayers = OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter.FramebufferDefaultLayers; - var _FramebufferDefaultSamples = OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter.FramebufferDefaultSamples; - var _FramebufferDefaultFixedSampleLocations = OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter.FramebufferDefaultFixedSampleLocations; -} -static void Test_FramebufferErrorCode_37552() { - var _FramebufferUndefined = OpenTK.Graphics.OpenGL4.FramebufferErrorCode.FramebufferUndefined; - var _FramebufferComplete = OpenTK.Graphics.OpenGL4.FramebufferErrorCode.FramebufferComplete; - var _FramebufferCompleteExt = OpenTK.Graphics.OpenGL4.FramebufferErrorCode.FramebufferCompleteExt; - var _FramebufferIncompleteAttachment = OpenTK.Graphics.OpenGL4.FramebufferErrorCode.FramebufferIncompleteAttachment; - var _FramebufferIncompleteAttachmentExt = OpenTK.Graphics.OpenGL4.FramebufferErrorCode.FramebufferIncompleteAttachmentExt; - var _FramebufferIncompleteMissingAttachment = OpenTK.Graphics.OpenGL4.FramebufferErrorCode.FramebufferIncompleteMissingAttachment; - var _FramebufferIncompleteMissingAttachmentExt = OpenTK.Graphics.OpenGL4.FramebufferErrorCode.FramebufferIncompleteMissingAttachmentExt; - var _FramebufferIncompleteDimensionsExt = OpenTK.Graphics.OpenGL4.FramebufferErrorCode.FramebufferIncompleteDimensionsExt; - var _FramebufferIncompleteFormatsExt = OpenTK.Graphics.OpenGL4.FramebufferErrorCode.FramebufferIncompleteFormatsExt; - var _FramebufferIncompleteDrawBuffer = OpenTK.Graphics.OpenGL4.FramebufferErrorCode.FramebufferIncompleteDrawBuffer; - var _FramebufferIncompleteDrawBufferExt = OpenTK.Graphics.OpenGL4.FramebufferErrorCode.FramebufferIncompleteDrawBufferExt; - var _FramebufferIncompleteReadBuffer = OpenTK.Graphics.OpenGL4.FramebufferErrorCode.FramebufferIncompleteReadBuffer; - var _FramebufferIncompleteReadBufferExt = OpenTK.Graphics.OpenGL4.FramebufferErrorCode.FramebufferIncompleteReadBufferExt; - var _FramebufferUnsupported = OpenTK.Graphics.OpenGL4.FramebufferErrorCode.FramebufferUnsupported; - var _FramebufferUnsupportedExt = OpenTK.Graphics.OpenGL4.FramebufferErrorCode.FramebufferUnsupportedExt; - var _FramebufferIncompleteMultisample = OpenTK.Graphics.OpenGL4.FramebufferErrorCode.FramebufferIncompleteMultisample; - var _FramebufferIncompleteLayerTargets = OpenTK.Graphics.OpenGL4.FramebufferErrorCode.FramebufferIncompleteLayerTargets; - var _FramebufferIncompleteLayerCount = OpenTK.Graphics.OpenGL4.FramebufferErrorCode.FramebufferIncompleteLayerCount; -} -static void Test_FramebufferParameterName_37553() { - var _FramebufferAttachmentColorEncoding = OpenTK.Graphics.OpenGL4.FramebufferParameterName.FramebufferAttachmentColorEncoding; - var _FramebufferAttachmentComponentType = OpenTK.Graphics.OpenGL4.FramebufferParameterName.FramebufferAttachmentComponentType; - var _FramebufferAttachmentRedSize = OpenTK.Graphics.OpenGL4.FramebufferParameterName.FramebufferAttachmentRedSize; - var _FramebufferAttachmentGreenSize = OpenTK.Graphics.OpenGL4.FramebufferParameterName.FramebufferAttachmentGreenSize; - var _FramebufferAttachmentBlueSize = OpenTK.Graphics.OpenGL4.FramebufferParameterName.FramebufferAttachmentBlueSize; - var _FramebufferAttachmentAlphaSize = OpenTK.Graphics.OpenGL4.FramebufferParameterName.FramebufferAttachmentAlphaSize; - var _FramebufferAttachmentDepthSize = OpenTK.Graphics.OpenGL4.FramebufferParameterName.FramebufferAttachmentDepthSize; - var _FramebufferAttachmentStencilSize = OpenTK.Graphics.OpenGL4.FramebufferParameterName.FramebufferAttachmentStencilSize; - var _FramebufferAttachmentObjectType = OpenTK.Graphics.OpenGL4.FramebufferParameterName.FramebufferAttachmentObjectType; - var _FramebufferAttachmentObjectTypeExt = OpenTK.Graphics.OpenGL4.FramebufferParameterName.FramebufferAttachmentObjectTypeExt; - var _FramebufferAttachmentObjectName = OpenTK.Graphics.OpenGL4.FramebufferParameterName.FramebufferAttachmentObjectName; - var _FramebufferAttachmentObjectNameExt = OpenTK.Graphics.OpenGL4.FramebufferParameterName.FramebufferAttachmentObjectNameExt; - var _FramebufferAttachmentTextureLevel = OpenTK.Graphics.OpenGL4.FramebufferParameterName.FramebufferAttachmentTextureLevel; - var _FramebufferAttachmentTextureLevelExt = OpenTK.Graphics.OpenGL4.FramebufferParameterName.FramebufferAttachmentTextureLevelExt; - var _FramebufferAttachmentTextureCubeMapFace = OpenTK.Graphics.OpenGL4.FramebufferParameterName.FramebufferAttachmentTextureCubeMapFace; - var _FramebufferAttachmentTextureCubeMapFaceExt = OpenTK.Graphics.OpenGL4.FramebufferParameterName.FramebufferAttachmentTextureCubeMapFaceExt; - var _FramebufferAttachmentTexture3DZoffsetExt = OpenTK.Graphics.OpenGL4.FramebufferParameterName.FramebufferAttachmentTexture3DZoffsetExt; - var _FramebufferAttachmentTextureLayer = OpenTK.Graphics.OpenGL4.FramebufferParameterName.FramebufferAttachmentTextureLayer; - var _FramebufferAttachmentLayered = OpenTK.Graphics.OpenGL4.FramebufferParameterName.FramebufferAttachmentLayered; -} -static void Test_FramebufferTarget_37554() { - var _ReadFramebuffer = OpenTK.Graphics.OpenGL4.FramebufferTarget.ReadFramebuffer; - var _DrawFramebuffer = OpenTK.Graphics.OpenGL4.FramebufferTarget.DrawFramebuffer; - var _Framebuffer = OpenTK.Graphics.OpenGL4.FramebufferTarget.Framebuffer; - var _FramebufferExt = OpenTK.Graphics.OpenGL4.FramebufferTarget.FramebufferExt; -} -static void Test_FrontFaceDirection_37555() { - var _Cw = OpenTK.Graphics.OpenGL4.FrontFaceDirection.Cw; - var _Ccw = OpenTK.Graphics.OpenGL4.FrontFaceDirection.Ccw; -} -static void Test_GenerateMipmapTarget_37556() { - var _Texture1D = OpenTK.Graphics.OpenGL4.GenerateMipmapTarget.Texture1D; - var _Texture2D = OpenTK.Graphics.OpenGL4.GenerateMipmapTarget.Texture2D; - var _Texture3D = OpenTK.Graphics.OpenGL4.GenerateMipmapTarget.Texture3D; - var _TextureCubeMap = OpenTK.Graphics.OpenGL4.GenerateMipmapTarget.TextureCubeMap; - var _Texture1DArray = OpenTK.Graphics.OpenGL4.GenerateMipmapTarget.Texture1DArray; - var _Texture2DArray = OpenTK.Graphics.OpenGL4.GenerateMipmapTarget.Texture2DArray; - var _TextureCubeMapArray = OpenTK.Graphics.OpenGL4.GenerateMipmapTarget.TextureCubeMapArray; - var _Texture2DMultisample = OpenTK.Graphics.OpenGL4.GenerateMipmapTarget.Texture2DMultisample; - var _Texture2DMultisampleArray = OpenTK.Graphics.OpenGL4.GenerateMipmapTarget.Texture2DMultisampleArray; -} -static void Test_GetColorTableParameterPName_37557() { - var _ColorTableScale = OpenTK.Graphics.OpenGL4.GetColorTableParameterPName.ColorTableScale; - var _ColorTableBias = OpenTK.Graphics.OpenGL4.GetColorTableParameterPName.ColorTableBias; - var _ColorTableFormat = OpenTK.Graphics.OpenGL4.GetColorTableParameterPName.ColorTableFormat; - var _ColorTableWidth = OpenTK.Graphics.OpenGL4.GetColorTableParameterPName.ColorTableWidth; - var _ColorTableRedSize = OpenTK.Graphics.OpenGL4.GetColorTableParameterPName.ColorTableRedSize; - var _ColorTableGreenSize = OpenTK.Graphics.OpenGL4.GetColorTableParameterPName.ColorTableGreenSize; - var _ColorTableBlueSize = OpenTK.Graphics.OpenGL4.GetColorTableParameterPName.ColorTableBlueSize; - var _ColorTableAlphaSize = OpenTK.Graphics.OpenGL4.GetColorTableParameterPName.ColorTableAlphaSize; - var _ColorTableLuminanceSize = OpenTK.Graphics.OpenGL4.GetColorTableParameterPName.ColorTableLuminanceSize; - var _ColorTableIntensitySize = OpenTK.Graphics.OpenGL4.GetColorTableParameterPName.ColorTableIntensitySize; -} -static void Test_GetColorTableParameterPNameSgi_37558() { - var _ColorTableScaleSgi = OpenTK.Graphics.OpenGL4.GetColorTableParameterPNameSgi.ColorTableScaleSgi; - var _ColorTableBiasSgi = OpenTK.Graphics.OpenGL4.GetColorTableParameterPNameSgi.ColorTableBiasSgi; - var _ColorTableFormatSgi = OpenTK.Graphics.OpenGL4.GetColorTableParameterPNameSgi.ColorTableFormatSgi; - var _ColorTableWidthSgi = OpenTK.Graphics.OpenGL4.GetColorTableParameterPNameSgi.ColorTableWidthSgi; - var _ColorTableRedSizeSgi = OpenTK.Graphics.OpenGL4.GetColorTableParameterPNameSgi.ColorTableRedSizeSgi; - var _ColorTableGreenSizeSgi = OpenTK.Graphics.OpenGL4.GetColorTableParameterPNameSgi.ColorTableGreenSizeSgi; - var _ColorTableBlueSizeSgi = OpenTK.Graphics.OpenGL4.GetColorTableParameterPNameSgi.ColorTableBlueSizeSgi; - var _ColorTableAlphaSizeSgi = OpenTK.Graphics.OpenGL4.GetColorTableParameterPNameSgi.ColorTableAlphaSizeSgi; - var _ColorTableLuminanceSizeSgi = OpenTK.Graphics.OpenGL4.GetColorTableParameterPNameSgi.ColorTableLuminanceSizeSgi; - var _ColorTableIntensitySizeSgi = OpenTK.Graphics.OpenGL4.GetColorTableParameterPNameSgi.ColorTableIntensitySizeSgi; -} -static void Test_GetConvolutionParameter_37559() { - var _ConvolutionBorderModeExt = OpenTK.Graphics.OpenGL4.GetConvolutionParameter.ConvolutionBorderModeExt; - var _ConvolutionFilterScaleExt = OpenTK.Graphics.OpenGL4.GetConvolutionParameter.ConvolutionFilterScaleExt; - var _ConvolutionFilterBiasExt = OpenTK.Graphics.OpenGL4.GetConvolutionParameter.ConvolutionFilterBiasExt; - var _ConvolutionFormatExt = OpenTK.Graphics.OpenGL4.GetConvolutionParameter.ConvolutionFormatExt; - var _ConvolutionWidthExt = OpenTK.Graphics.OpenGL4.GetConvolutionParameter.ConvolutionWidthExt; - var _ConvolutionHeightExt = OpenTK.Graphics.OpenGL4.GetConvolutionParameter.ConvolutionHeightExt; - var _MaxConvolutionWidthExt = OpenTK.Graphics.OpenGL4.GetConvolutionParameter.MaxConvolutionWidthExt; - var _MaxConvolutionHeightExt = OpenTK.Graphics.OpenGL4.GetConvolutionParameter.MaxConvolutionHeightExt; -} -static void Test_GetConvolutionParameterPName_37560() { - var _ConvolutionBorderMode = OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName.ConvolutionBorderMode; - var _ConvolutionFilterScale = OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName.ConvolutionFilterScale; - var _ConvolutionFilterBias = OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName.ConvolutionFilterBias; - var _ConvolutionFormat = OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName.ConvolutionFormat; - var _ConvolutionWidth = OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName.ConvolutionWidth; - var _ConvolutionHeight = OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName.ConvolutionHeight; - var _MaxConvolutionWidth = OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName.MaxConvolutionWidth; - var _MaxConvolutionHeight = OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName.MaxConvolutionHeight; - var _ConvolutionBorderColor = OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName.ConvolutionBorderColor; -} -static void Test_GetHistogramParameterPName_37561() { - var _HistogramWidth = OpenTK.Graphics.OpenGL4.GetHistogramParameterPName.HistogramWidth; - var _HistogramFormat = OpenTK.Graphics.OpenGL4.GetHistogramParameterPName.HistogramFormat; - var _HistogramRedSize = OpenTK.Graphics.OpenGL4.GetHistogramParameterPName.HistogramRedSize; - var _HistogramGreenSize = OpenTK.Graphics.OpenGL4.GetHistogramParameterPName.HistogramGreenSize; - var _HistogramBlueSize = OpenTK.Graphics.OpenGL4.GetHistogramParameterPName.HistogramBlueSize; - var _HistogramAlphaSize = OpenTK.Graphics.OpenGL4.GetHistogramParameterPName.HistogramAlphaSize; - var _HistogramLuminanceSize = OpenTK.Graphics.OpenGL4.GetHistogramParameterPName.HistogramLuminanceSize; - var _HistogramSink = OpenTK.Graphics.OpenGL4.GetHistogramParameterPName.HistogramSink; -} -static void Test_GetHistogramParameterPNameExt_37562() { - var _HistogramWidthExt = OpenTK.Graphics.OpenGL4.GetHistogramParameterPNameExt.HistogramWidthExt; - var _HistogramFormatExt = OpenTK.Graphics.OpenGL4.GetHistogramParameterPNameExt.HistogramFormatExt; - var _HistogramRedSizeExt = OpenTK.Graphics.OpenGL4.GetHistogramParameterPNameExt.HistogramRedSizeExt; - var _HistogramGreenSizeExt = OpenTK.Graphics.OpenGL4.GetHistogramParameterPNameExt.HistogramGreenSizeExt; - var _HistogramBlueSizeExt = OpenTK.Graphics.OpenGL4.GetHistogramParameterPNameExt.HistogramBlueSizeExt; - var _HistogramAlphaSizeExt = OpenTK.Graphics.OpenGL4.GetHistogramParameterPNameExt.HistogramAlphaSizeExt; - var _HistogramLuminanceSizeExt = OpenTK.Graphics.OpenGL4.GetHistogramParameterPNameExt.HistogramLuminanceSizeExt; - var _HistogramSinkExt = OpenTK.Graphics.OpenGL4.GetHistogramParameterPNameExt.HistogramSinkExt; -} -static void Test_GetIndexedPName_37563() { - var _DepthRange = OpenTK.Graphics.OpenGL4.GetIndexedPName.DepthRange; - var _Viewport = OpenTK.Graphics.OpenGL4.GetIndexedPName.Viewport; - var _ScissorBox = OpenTK.Graphics.OpenGL4.GetIndexedPName.ScissorBox; - var _ColorWritemask = OpenTK.Graphics.OpenGL4.GetIndexedPName.ColorWritemask; - var _UniformBufferBinding = OpenTK.Graphics.OpenGL4.GetIndexedPName.UniformBufferBinding; - var _UniformBufferStart = OpenTK.Graphics.OpenGL4.GetIndexedPName.UniformBufferStart; - var _UniformBufferSize = OpenTK.Graphics.OpenGL4.GetIndexedPName.UniformBufferSize; - var _TransformFeedbackBufferStart = OpenTK.Graphics.OpenGL4.GetIndexedPName.TransformFeedbackBufferStart; - var _TransformFeedbackBufferSize = OpenTK.Graphics.OpenGL4.GetIndexedPName.TransformFeedbackBufferSize; - var _TransformFeedbackBufferBinding = OpenTK.Graphics.OpenGL4.GetIndexedPName.TransformFeedbackBufferBinding; - var _SampleMaskValue = OpenTK.Graphics.OpenGL4.GetIndexedPName.SampleMaskValue; -} -static void Test_GetMapQuery_37564() { -} -static void Test_GetMinmaxParameterPName_37565() { - var _MinmaxFormat = OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName.MinmaxFormat; - var _MinmaxSink = OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName.MinmaxSink; -} -static void Test_GetMinmaxParameterPNameExt_37566() { - var _MinmaxFormat = OpenTK.Graphics.OpenGL4.GetMinmaxParameterPNameExt.MinmaxFormat; - var _MinmaxFormatExt = OpenTK.Graphics.OpenGL4.GetMinmaxParameterPNameExt.MinmaxFormatExt; - var _MinmaxSink = OpenTK.Graphics.OpenGL4.GetMinmaxParameterPNameExt.MinmaxSink; - var _MinmaxSinkExt = OpenTK.Graphics.OpenGL4.GetMinmaxParameterPNameExt.MinmaxSinkExt; -} -static void Test_GetMultisamplePName_37567() { - var _SamplePosition = OpenTK.Graphics.OpenGL4.GetMultisamplePName.SamplePosition; -} -static void Test_GetPixelMap_37568() { -} -static void Test_GetPName_37569() { - var _PointSmooth = OpenTK.Graphics.OpenGL4.GetPName.PointSmooth; - var _PointSize = OpenTK.Graphics.OpenGL4.GetPName.PointSize; - var _PointSizeRange = OpenTK.Graphics.OpenGL4.GetPName.PointSizeRange; - var _SmoothPointSizeRange = OpenTK.Graphics.OpenGL4.GetPName.SmoothPointSizeRange; - var _PointSizeGranularity = OpenTK.Graphics.OpenGL4.GetPName.PointSizeGranularity; - var _SmoothPointSizeGranularity = OpenTK.Graphics.OpenGL4.GetPName.SmoothPointSizeGranularity; - var _LineSmooth = OpenTK.Graphics.OpenGL4.GetPName.LineSmooth; - var _LineWidth = OpenTK.Graphics.OpenGL4.GetPName.LineWidth; - var _LineWidthRange = OpenTK.Graphics.OpenGL4.GetPName.LineWidthRange; - var _SmoothLineWidthRange = OpenTK.Graphics.OpenGL4.GetPName.SmoothLineWidthRange; - var _LineWidthGranularity = OpenTK.Graphics.OpenGL4.GetPName.LineWidthGranularity; - var _SmoothLineWidthGranularity = OpenTK.Graphics.OpenGL4.GetPName.SmoothLineWidthGranularity; - var _LineStipple = OpenTK.Graphics.OpenGL4.GetPName.LineStipple; - var _PolygonMode = OpenTK.Graphics.OpenGL4.GetPName.PolygonMode; - var _PolygonSmooth = OpenTK.Graphics.OpenGL4.GetPName.PolygonSmooth; - var _PolygonStipple = OpenTK.Graphics.OpenGL4.GetPName.PolygonStipple; - var _CullFace = OpenTK.Graphics.OpenGL4.GetPName.CullFace; - var _CullFaceMode = OpenTK.Graphics.OpenGL4.GetPName.CullFaceMode; - var _FrontFace = OpenTK.Graphics.OpenGL4.GetPName.FrontFace; - var _Lighting = OpenTK.Graphics.OpenGL4.GetPName.Lighting; - var _ColorMaterial = OpenTK.Graphics.OpenGL4.GetPName.ColorMaterial; - var _Fog = OpenTK.Graphics.OpenGL4.GetPName.Fog; - var _FogIndex = OpenTK.Graphics.OpenGL4.GetPName.FogIndex; - var _FogDensity = OpenTK.Graphics.OpenGL4.GetPName.FogDensity; - var _FogStart = OpenTK.Graphics.OpenGL4.GetPName.FogStart; - var _FogEnd = OpenTK.Graphics.OpenGL4.GetPName.FogEnd; - var _FogMode = OpenTK.Graphics.OpenGL4.GetPName.FogMode; - var _FogColor = OpenTK.Graphics.OpenGL4.GetPName.FogColor; - var _DepthRange = OpenTK.Graphics.OpenGL4.GetPName.DepthRange; - var _DepthTest = OpenTK.Graphics.OpenGL4.GetPName.DepthTest; - var _DepthWritemask = OpenTK.Graphics.OpenGL4.GetPName.DepthWritemask; - var _DepthClearValue = OpenTK.Graphics.OpenGL4.GetPName.DepthClearValue; - var _DepthFunc = OpenTK.Graphics.OpenGL4.GetPName.DepthFunc; - var _StencilTest = OpenTK.Graphics.OpenGL4.GetPName.StencilTest; - var _StencilClearValue = OpenTK.Graphics.OpenGL4.GetPName.StencilClearValue; - var _StencilFunc = OpenTK.Graphics.OpenGL4.GetPName.StencilFunc; - var _StencilValueMask = OpenTK.Graphics.OpenGL4.GetPName.StencilValueMask; - var _StencilFail = OpenTK.Graphics.OpenGL4.GetPName.StencilFail; - var _StencilPassDepthFail = OpenTK.Graphics.OpenGL4.GetPName.StencilPassDepthFail; - var _StencilPassDepthPass = OpenTK.Graphics.OpenGL4.GetPName.StencilPassDepthPass; - var _StencilRef = OpenTK.Graphics.OpenGL4.GetPName.StencilRef; - var _StencilWritemask = OpenTK.Graphics.OpenGL4.GetPName.StencilWritemask; - var _Normalize = OpenTK.Graphics.OpenGL4.GetPName.Normalize; - var _Viewport = OpenTK.Graphics.OpenGL4.GetPName.Viewport; - var _Modelview0StackDepthExt = OpenTK.Graphics.OpenGL4.GetPName.Modelview0StackDepthExt; - var _Modelview0MatrixExt = OpenTK.Graphics.OpenGL4.GetPName.Modelview0MatrixExt; - var _AlphaTest = OpenTK.Graphics.OpenGL4.GetPName.AlphaTest; - var _AlphaTestQcom = OpenTK.Graphics.OpenGL4.GetPName.AlphaTestQcom; - var _AlphaTestFuncQcom = OpenTK.Graphics.OpenGL4.GetPName.AlphaTestFuncQcom; - var _AlphaTestRefQcom = OpenTK.Graphics.OpenGL4.GetPName.AlphaTestRefQcom; - var _Dither = OpenTK.Graphics.OpenGL4.GetPName.Dither; - var _BlendDst = OpenTK.Graphics.OpenGL4.GetPName.BlendDst; - var _BlendSrc = OpenTK.Graphics.OpenGL4.GetPName.BlendSrc; - var _Blend = OpenTK.Graphics.OpenGL4.GetPName.Blend; - var _LogicOpMode = OpenTK.Graphics.OpenGL4.GetPName.LogicOpMode; - var _IndexLogicOp = OpenTK.Graphics.OpenGL4.GetPName.IndexLogicOp; - var _LogicOp = OpenTK.Graphics.OpenGL4.GetPName.LogicOp; - var _ColorLogicOp = OpenTK.Graphics.OpenGL4.GetPName.ColorLogicOp; - var _DrawBuffer = OpenTK.Graphics.OpenGL4.GetPName.DrawBuffer; - var _DrawBufferExt = OpenTK.Graphics.OpenGL4.GetPName.DrawBufferExt; - var _ReadBuffer = OpenTK.Graphics.OpenGL4.GetPName.ReadBuffer; - var _ReadBufferExt = OpenTK.Graphics.OpenGL4.GetPName.ReadBufferExt; - var _ReadBufferNv = OpenTK.Graphics.OpenGL4.GetPName.ReadBufferNv; - var _ScissorBox = OpenTK.Graphics.OpenGL4.GetPName.ScissorBox; - var _ScissorTest = OpenTK.Graphics.OpenGL4.GetPName.ScissorTest; - var _ColorClearValue = OpenTK.Graphics.OpenGL4.GetPName.ColorClearValue; - var _ColorWritemask = OpenTK.Graphics.OpenGL4.GetPName.ColorWritemask; - var _Doublebuffer = OpenTK.Graphics.OpenGL4.GetPName.Doublebuffer; - var _Stereo = OpenTK.Graphics.OpenGL4.GetPName.Stereo; - var _LineSmoothHint = OpenTK.Graphics.OpenGL4.GetPName.LineSmoothHint; - var _PolygonSmoothHint = OpenTK.Graphics.OpenGL4.GetPName.PolygonSmoothHint; - var _TextureGenS = OpenTK.Graphics.OpenGL4.GetPName.TextureGenS; - var _TextureGenT = OpenTK.Graphics.OpenGL4.GetPName.TextureGenT; - var _TextureGenR = OpenTK.Graphics.OpenGL4.GetPName.TextureGenR; - var _TextureGenQ = OpenTK.Graphics.OpenGL4.GetPName.TextureGenQ; - var _UnpackSwapBytes = OpenTK.Graphics.OpenGL4.GetPName.UnpackSwapBytes; - var _UnpackLsbFirst = OpenTK.Graphics.OpenGL4.GetPName.UnpackLsbFirst; - var _UnpackRowLength = OpenTK.Graphics.OpenGL4.GetPName.UnpackRowLength; - var _UnpackSkipRows = OpenTK.Graphics.OpenGL4.GetPName.UnpackSkipRows; - var _UnpackSkipPixels = OpenTK.Graphics.OpenGL4.GetPName.UnpackSkipPixels; - var _UnpackAlignment = OpenTK.Graphics.OpenGL4.GetPName.UnpackAlignment; - var _PackSwapBytes = OpenTK.Graphics.OpenGL4.GetPName.PackSwapBytes; - var _PackLsbFirst = OpenTK.Graphics.OpenGL4.GetPName.PackLsbFirst; - var _PackRowLength = OpenTK.Graphics.OpenGL4.GetPName.PackRowLength; - var _PackSkipRows = OpenTK.Graphics.OpenGL4.GetPName.PackSkipRows; - var _PackSkipPixels = OpenTK.Graphics.OpenGL4.GetPName.PackSkipPixels; - var _PackAlignment = OpenTK.Graphics.OpenGL4.GetPName.PackAlignment; - var _MaxClipDistances = OpenTK.Graphics.OpenGL4.GetPName.MaxClipDistances; - var _MaxTextureSize = OpenTK.Graphics.OpenGL4.GetPName.MaxTextureSize; - var _MaxViewportDims = OpenTK.Graphics.OpenGL4.GetPName.MaxViewportDims; - var _SubpixelBits = OpenTK.Graphics.OpenGL4.GetPName.SubpixelBits; - var _AutoNormal = OpenTK.Graphics.OpenGL4.GetPName.AutoNormal; - var _Map1Color4 = OpenTK.Graphics.OpenGL4.GetPName.Map1Color4; - var _Map1Index = OpenTK.Graphics.OpenGL4.GetPName.Map1Index; - var _Map1Normal = OpenTK.Graphics.OpenGL4.GetPName.Map1Normal; - var _Map1TextureCoord1 = OpenTK.Graphics.OpenGL4.GetPName.Map1TextureCoord1; - var _Map1TextureCoord2 = OpenTK.Graphics.OpenGL4.GetPName.Map1TextureCoord2; - var _Map1TextureCoord3 = OpenTK.Graphics.OpenGL4.GetPName.Map1TextureCoord3; - var _Map1TextureCoord4 = OpenTK.Graphics.OpenGL4.GetPName.Map1TextureCoord4; - var _Map1Vertex3 = OpenTK.Graphics.OpenGL4.GetPName.Map1Vertex3; - var _Map1Vertex4 = OpenTK.Graphics.OpenGL4.GetPName.Map1Vertex4; - var _Map2Color4 = OpenTK.Graphics.OpenGL4.GetPName.Map2Color4; - var _Map2Index = OpenTK.Graphics.OpenGL4.GetPName.Map2Index; - var _Map2Normal = OpenTK.Graphics.OpenGL4.GetPName.Map2Normal; - var _Map2TextureCoord1 = OpenTK.Graphics.OpenGL4.GetPName.Map2TextureCoord1; - var _Map2TextureCoord2 = OpenTK.Graphics.OpenGL4.GetPName.Map2TextureCoord2; - var _Map2TextureCoord3 = OpenTK.Graphics.OpenGL4.GetPName.Map2TextureCoord3; - var _Map2TextureCoord4 = OpenTK.Graphics.OpenGL4.GetPName.Map2TextureCoord4; - var _Map2Vertex3 = OpenTK.Graphics.OpenGL4.GetPName.Map2Vertex3; - var _Map2Vertex4 = OpenTK.Graphics.OpenGL4.GetPName.Map2Vertex4; - var _Texture1D = OpenTK.Graphics.OpenGL4.GetPName.Texture1D; - var _Texture2D = OpenTK.Graphics.OpenGL4.GetPName.Texture2D; - var _PolygonOffsetUnits = OpenTK.Graphics.OpenGL4.GetPName.PolygonOffsetUnits; - var _PolygonOffsetPoint = OpenTK.Graphics.OpenGL4.GetPName.PolygonOffsetPoint; - var _PolygonOffsetLine = OpenTK.Graphics.OpenGL4.GetPName.PolygonOffsetLine; - var _ClipPlane0 = OpenTK.Graphics.OpenGL4.GetPName.ClipPlane0; - var _ClipPlane1 = OpenTK.Graphics.OpenGL4.GetPName.ClipPlane1; - var _ClipPlane2 = OpenTK.Graphics.OpenGL4.GetPName.ClipPlane2; - var _ClipPlane3 = OpenTK.Graphics.OpenGL4.GetPName.ClipPlane3; - var _ClipPlane4 = OpenTK.Graphics.OpenGL4.GetPName.ClipPlane4; - var _ClipPlane5 = OpenTK.Graphics.OpenGL4.GetPName.ClipPlane5; - var _Light0 = OpenTK.Graphics.OpenGL4.GetPName.Light0; - var _Light1 = OpenTK.Graphics.OpenGL4.GetPName.Light1; - var _Light2 = OpenTK.Graphics.OpenGL4.GetPName.Light2; - var _Light3 = OpenTK.Graphics.OpenGL4.GetPName.Light3; - var _Light4 = OpenTK.Graphics.OpenGL4.GetPName.Light4; - var _Light5 = OpenTK.Graphics.OpenGL4.GetPName.Light5; - var _Light6 = OpenTK.Graphics.OpenGL4.GetPName.Light6; - var _Light7 = OpenTK.Graphics.OpenGL4.GetPName.Light7; - var _BlendColorExt = OpenTK.Graphics.OpenGL4.GetPName.BlendColorExt; - var _BlendEquationExt = OpenTK.Graphics.OpenGL4.GetPName.BlendEquationExt; - var _BlendEquationRgb = OpenTK.Graphics.OpenGL4.GetPName.BlendEquationRgb; - var _PackCmykHintExt = OpenTK.Graphics.OpenGL4.GetPName.PackCmykHintExt; - var _UnpackCmykHintExt = OpenTK.Graphics.OpenGL4.GetPName.UnpackCmykHintExt; - var _Convolution1DExt = OpenTK.Graphics.OpenGL4.GetPName.Convolution1DExt; - var _Convolution2DExt = OpenTK.Graphics.OpenGL4.GetPName.Convolution2DExt; - var _Separable2DExt = OpenTK.Graphics.OpenGL4.GetPName.Separable2DExt; - var _PostConvolutionRedScaleExt = OpenTK.Graphics.OpenGL4.GetPName.PostConvolutionRedScaleExt; - var _PostConvolutionGreenScaleExt = OpenTK.Graphics.OpenGL4.GetPName.PostConvolutionGreenScaleExt; - var _PostConvolutionBlueScaleExt = OpenTK.Graphics.OpenGL4.GetPName.PostConvolutionBlueScaleExt; - var _PostConvolutionAlphaScaleExt = OpenTK.Graphics.OpenGL4.GetPName.PostConvolutionAlphaScaleExt; - var _PostConvolutionRedBiasExt = OpenTK.Graphics.OpenGL4.GetPName.PostConvolutionRedBiasExt; - var _PostConvolutionGreenBiasExt = OpenTK.Graphics.OpenGL4.GetPName.PostConvolutionGreenBiasExt; - var _PostConvolutionBlueBiasExt = OpenTK.Graphics.OpenGL4.GetPName.PostConvolutionBlueBiasExt; - var _PostConvolutionAlphaBiasExt = OpenTK.Graphics.OpenGL4.GetPName.PostConvolutionAlphaBiasExt; - var _HistogramExt = OpenTK.Graphics.OpenGL4.GetPName.HistogramExt; - var _MinmaxExt = OpenTK.Graphics.OpenGL4.GetPName.MinmaxExt; - var _PolygonOffsetFill = OpenTK.Graphics.OpenGL4.GetPName.PolygonOffsetFill; - var _PolygonOffsetFactor = OpenTK.Graphics.OpenGL4.GetPName.PolygonOffsetFactor; - var _PolygonOffsetBiasExt = OpenTK.Graphics.OpenGL4.GetPName.PolygonOffsetBiasExt; - var _RescaleNormalExt = OpenTK.Graphics.OpenGL4.GetPName.RescaleNormalExt; - var _TextureBinding1D = OpenTK.Graphics.OpenGL4.GetPName.TextureBinding1D; - var _TextureBinding2D = OpenTK.Graphics.OpenGL4.GetPName.TextureBinding2D; - var _Texture3DBindingExt = OpenTK.Graphics.OpenGL4.GetPName.Texture3DBindingExt; - var _TextureBinding3D = OpenTK.Graphics.OpenGL4.GetPName.TextureBinding3D; - var _PackSkipImagesExt = OpenTK.Graphics.OpenGL4.GetPName.PackSkipImagesExt; - var _PackImageHeightExt = OpenTK.Graphics.OpenGL4.GetPName.PackImageHeightExt; - var _UnpackSkipImagesExt = OpenTK.Graphics.OpenGL4.GetPName.UnpackSkipImagesExt; - var _UnpackImageHeightExt = OpenTK.Graphics.OpenGL4.GetPName.UnpackImageHeightExt; - var _Texture3DExt = OpenTK.Graphics.OpenGL4.GetPName.Texture3DExt; - var _Max3DTextureSize = OpenTK.Graphics.OpenGL4.GetPName.Max3DTextureSize; - var _Max3DTextureSizeExt = OpenTK.Graphics.OpenGL4.GetPName.Max3DTextureSizeExt; - var _VertexArray = OpenTK.Graphics.OpenGL4.GetPName.VertexArray; - var _NormalArray = OpenTK.Graphics.OpenGL4.GetPName.NormalArray; - var _ColorArray = OpenTK.Graphics.OpenGL4.GetPName.ColorArray; - var _IndexArray = OpenTK.Graphics.OpenGL4.GetPName.IndexArray; - var _TextureCoordArray = OpenTK.Graphics.OpenGL4.GetPName.TextureCoordArray; - var _EdgeFlagArray = OpenTK.Graphics.OpenGL4.GetPName.EdgeFlagArray; - var _VertexArrayCountExt = OpenTK.Graphics.OpenGL4.GetPName.VertexArrayCountExt; - var _NormalArrayCountExt = OpenTK.Graphics.OpenGL4.GetPName.NormalArrayCountExt; - var _ColorArrayCountExt = OpenTK.Graphics.OpenGL4.GetPName.ColorArrayCountExt; - var _IndexArrayCountExt = OpenTK.Graphics.OpenGL4.GetPName.IndexArrayCountExt; - var _TextureCoordArrayCountExt = OpenTK.Graphics.OpenGL4.GetPName.TextureCoordArrayCountExt; - var _EdgeFlagArrayCountExt = OpenTK.Graphics.OpenGL4.GetPName.EdgeFlagArrayCountExt; - var _InterlaceSgix = OpenTK.Graphics.OpenGL4.GetPName.InterlaceSgix; - var _DetailTexture2DBindingSgis = OpenTK.Graphics.OpenGL4.GetPName.DetailTexture2DBindingSgis; - var _Multisample = OpenTK.Graphics.OpenGL4.GetPName.Multisample; - var _MultisampleSgis = OpenTK.Graphics.OpenGL4.GetPName.MultisampleSgis; - var _SampleAlphaToCoverage = OpenTK.Graphics.OpenGL4.GetPName.SampleAlphaToCoverage; - var _SampleAlphaToMaskSgis = OpenTK.Graphics.OpenGL4.GetPName.SampleAlphaToMaskSgis; - var _SampleAlphaToOne = OpenTK.Graphics.OpenGL4.GetPName.SampleAlphaToOne; - var _SampleAlphaToOneSgis = OpenTK.Graphics.OpenGL4.GetPName.SampleAlphaToOneSgis; - var _SampleCoverage = OpenTK.Graphics.OpenGL4.GetPName.SampleCoverage; - var _SampleMaskSgis = OpenTK.Graphics.OpenGL4.GetPName.SampleMaskSgis; - var _SampleBuffers = OpenTK.Graphics.OpenGL4.GetPName.SampleBuffers; - var _SampleBuffersSgis = OpenTK.Graphics.OpenGL4.GetPName.SampleBuffersSgis; - var _Samples = OpenTK.Graphics.OpenGL4.GetPName.Samples; - var _SamplesSgis = OpenTK.Graphics.OpenGL4.GetPName.SamplesSgis; - var _SampleCoverageValue = OpenTK.Graphics.OpenGL4.GetPName.SampleCoverageValue; - var _SampleMaskValueSgis = OpenTK.Graphics.OpenGL4.GetPName.SampleMaskValueSgis; - var _SampleCoverageInvert = OpenTK.Graphics.OpenGL4.GetPName.SampleCoverageInvert; - var _SampleMaskInvertSgis = OpenTK.Graphics.OpenGL4.GetPName.SampleMaskInvertSgis; - var _SamplePatternSgis = OpenTK.Graphics.OpenGL4.GetPName.SamplePatternSgis; - var _ColorMatrixSgi = OpenTK.Graphics.OpenGL4.GetPName.ColorMatrixSgi; - var _ColorMatrixStackDepthSgi = OpenTK.Graphics.OpenGL4.GetPName.ColorMatrixStackDepthSgi; - var _MaxColorMatrixStackDepthSgi = OpenTK.Graphics.OpenGL4.GetPName.MaxColorMatrixStackDepthSgi; - var _PostColorMatrixRedScaleSgi = OpenTK.Graphics.OpenGL4.GetPName.PostColorMatrixRedScaleSgi; - var _PostColorMatrixGreenScaleSgi = OpenTK.Graphics.OpenGL4.GetPName.PostColorMatrixGreenScaleSgi; - var _PostColorMatrixBlueScaleSgi = OpenTK.Graphics.OpenGL4.GetPName.PostColorMatrixBlueScaleSgi; - var _PostColorMatrixAlphaScaleSgi = OpenTK.Graphics.OpenGL4.GetPName.PostColorMatrixAlphaScaleSgi; - var _PostColorMatrixRedBiasSgi = OpenTK.Graphics.OpenGL4.GetPName.PostColorMatrixRedBiasSgi; - var _PostColorMatrixGreenBiasSgi = OpenTK.Graphics.OpenGL4.GetPName.PostColorMatrixGreenBiasSgi; - var _PostColorMatrixBlueBiasSgi = OpenTK.Graphics.OpenGL4.GetPName.PostColorMatrixBlueBiasSgi; - var _PostColorMatrixAlphaBiasSgi = OpenTK.Graphics.OpenGL4.GetPName.PostColorMatrixAlphaBiasSgi; - var _TextureColorTableSgi = OpenTK.Graphics.OpenGL4.GetPName.TextureColorTableSgi; - var _BlendDstRgb = OpenTK.Graphics.OpenGL4.GetPName.BlendDstRgb; - var _BlendSrcRgb = OpenTK.Graphics.OpenGL4.GetPName.BlendSrcRgb; - var _BlendDstAlpha = OpenTK.Graphics.OpenGL4.GetPName.BlendDstAlpha; - var _BlendSrcAlpha = OpenTK.Graphics.OpenGL4.GetPName.BlendSrcAlpha; - var _ColorTableSgi = OpenTK.Graphics.OpenGL4.GetPName.ColorTableSgi; - var _PostConvolutionColorTableSgi = OpenTK.Graphics.OpenGL4.GetPName.PostConvolutionColorTableSgi; - var _PostColorMatrixColorTableSgi = OpenTK.Graphics.OpenGL4.GetPName.PostColorMatrixColorTableSgi; - var _MaxElementsVertices = OpenTK.Graphics.OpenGL4.GetPName.MaxElementsVertices; - var _MaxElementsIndices = OpenTK.Graphics.OpenGL4.GetPName.MaxElementsIndices; - var _PointSizeMin = OpenTK.Graphics.OpenGL4.GetPName.PointSizeMin; - var _PointSizeMinSgis = OpenTK.Graphics.OpenGL4.GetPName.PointSizeMinSgis; - var _PointSizeMax = OpenTK.Graphics.OpenGL4.GetPName.PointSizeMax; - var _PointSizeMaxSgis = OpenTK.Graphics.OpenGL4.GetPName.PointSizeMaxSgis; - var _PointFadeThresholdSize = OpenTK.Graphics.OpenGL4.GetPName.PointFadeThresholdSize; - var _PointFadeThresholdSizeSgis = OpenTK.Graphics.OpenGL4.GetPName.PointFadeThresholdSizeSgis; - var _DistanceAttenuationSgis = OpenTK.Graphics.OpenGL4.GetPName.DistanceAttenuationSgis; - var _PointDistanceAttenuation = OpenTK.Graphics.OpenGL4.GetPName.PointDistanceAttenuation; - var _FogFuncPointsSgis = OpenTK.Graphics.OpenGL4.GetPName.FogFuncPointsSgis; - var _MaxFogFuncPointsSgis = OpenTK.Graphics.OpenGL4.GetPName.MaxFogFuncPointsSgis; - var _PackSkipVolumesSgis = OpenTK.Graphics.OpenGL4.GetPName.PackSkipVolumesSgis; - var _PackImageDepthSgis = OpenTK.Graphics.OpenGL4.GetPName.PackImageDepthSgis; - var _UnpackSkipVolumesSgis = OpenTK.Graphics.OpenGL4.GetPName.UnpackSkipVolumesSgis; - var _UnpackImageDepthSgis = OpenTK.Graphics.OpenGL4.GetPName.UnpackImageDepthSgis; - var _Texture4DSgis = OpenTK.Graphics.OpenGL4.GetPName.Texture4DSgis; - var _Max4DTextureSizeSgis = OpenTK.Graphics.OpenGL4.GetPName.Max4DTextureSizeSgis; - var _PixelTexGenSgix = OpenTK.Graphics.OpenGL4.GetPName.PixelTexGenSgix; - var _PixelTileBestAlignmentSgix = OpenTK.Graphics.OpenGL4.GetPName.PixelTileBestAlignmentSgix; - var _PixelTileCacheIncrementSgix = OpenTK.Graphics.OpenGL4.GetPName.PixelTileCacheIncrementSgix; - var _PixelTileWidthSgix = OpenTK.Graphics.OpenGL4.GetPName.PixelTileWidthSgix; - var _PixelTileHeightSgix = OpenTK.Graphics.OpenGL4.GetPName.PixelTileHeightSgix; - var _PixelTileGridWidthSgix = OpenTK.Graphics.OpenGL4.GetPName.PixelTileGridWidthSgix; - var _PixelTileGridHeightSgix = OpenTK.Graphics.OpenGL4.GetPName.PixelTileGridHeightSgix; - var _PixelTileGridDepthSgix = OpenTK.Graphics.OpenGL4.GetPName.PixelTileGridDepthSgix; - var _PixelTileCacheSizeSgix = OpenTK.Graphics.OpenGL4.GetPName.PixelTileCacheSizeSgix; - var _SpriteSgix = OpenTK.Graphics.OpenGL4.GetPName.SpriteSgix; - var _SpriteModeSgix = OpenTK.Graphics.OpenGL4.GetPName.SpriteModeSgix; - var _SpriteAxisSgix = OpenTK.Graphics.OpenGL4.GetPName.SpriteAxisSgix; - var _SpriteTranslationSgix = OpenTK.Graphics.OpenGL4.GetPName.SpriteTranslationSgix; - var _Texture4DBindingSgis = OpenTK.Graphics.OpenGL4.GetPName.Texture4DBindingSgis; - var _MaxClipmapDepthSgix = OpenTK.Graphics.OpenGL4.GetPName.MaxClipmapDepthSgix; - var _MaxClipmapVirtualDepthSgix = OpenTK.Graphics.OpenGL4.GetPName.MaxClipmapVirtualDepthSgix; - var _PostTextureFilterBiasRangeSgix = OpenTK.Graphics.OpenGL4.GetPName.PostTextureFilterBiasRangeSgix; - var _PostTextureFilterScaleRangeSgix = OpenTK.Graphics.OpenGL4.GetPName.PostTextureFilterScaleRangeSgix; - var _ReferencePlaneSgix = OpenTK.Graphics.OpenGL4.GetPName.ReferencePlaneSgix; - var _ReferencePlaneEquationSgix = OpenTK.Graphics.OpenGL4.GetPName.ReferencePlaneEquationSgix; - var _IrInstrument1Sgix = OpenTK.Graphics.OpenGL4.GetPName.IrInstrument1Sgix; - var _InstrumentMeasurementsSgix = OpenTK.Graphics.OpenGL4.GetPName.InstrumentMeasurementsSgix; - var _CalligraphicFragmentSgix = OpenTK.Graphics.OpenGL4.GetPName.CalligraphicFragmentSgix; - var _FramezoomSgix = OpenTK.Graphics.OpenGL4.GetPName.FramezoomSgix; - var _FramezoomFactorSgix = OpenTK.Graphics.OpenGL4.GetPName.FramezoomFactorSgix; - var _MaxFramezoomFactorSgix = OpenTK.Graphics.OpenGL4.GetPName.MaxFramezoomFactorSgix; - var _GenerateMipmapHint = OpenTK.Graphics.OpenGL4.GetPName.GenerateMipmapHint; - var _GenerateMipmapHintSgis = OpenTK.Graphics.OpenGL4.GetPName.GenerateMipmapHintSgis; - var _DeformationsMaskSgix = OpenTK.Graphics.OpenGL4.GetPName.DeformationsMaskSgix; - var _FogOffsetSgix = OpenTK.Graphics.OpenGL4.GetPName.FogOffsetSgix; - var _FogOffsetValueSgix = OpenTK.Graphics.OpenGL4.GetPName.FogOffsetValueSgix; - var _LightModelColorControl = OpenTK.Graphics.OpenGL4.GetPName.LightModelColorControl; - var _SharedTexturePaletteExt = OpenTK.Graphics.OpenGL4.GetPName.SharedTexturePaletteExt; - var _MajorVersion = OpenTK.Graphics.OpenGL4.GetPName.MajorVersion; - var _MinorVersion = OpenTK.Graphics.OpenGL4.GetPName.MinorVersion; - var _NumExtensions = OpenTK.Graphics.OpenGL4.GetPName.NumExtensions; - var _ContextFlags = OpenTK.Graphics.OpenGL4.GetPName.ContextFlags; - var _ProgramPipelineBinding = OpenTK.Graphics.OpenGL4.GetPName.ProgramPipelineBinding; - var _MaxViewports = OpenTK.Graphics.OpenGL4.GetPName.MaxViewports; - var _ViewportSubpixelBits = OpenTK.Graphics.OpenGL4.GetPName.ViewportSubpixelBits; - var _ViewportBoundsRange = OpenTK.Graphics.OpenGL4.GetPName.ViewportBoundsRange; - var _LayerProvokingVertex = OpenTK.Graphics.OpenGL4.GetPName.LayerProvokingVertex; - var _ViewportIndexProvokingVertex = OpenTK.Graphics.OpenGL4.GetPName.ViewportIndexProvokingVertex; - var _ConvolutionHintSgix = OpenTK.Graphics.OpenGL4.GetPName.ConvolutionHintSgix; - var _AsyncMarkerSgix = OpenTK.Graphics.OpenGL4.GetPName.AsyncMarkerSgix; - var _PixelTexGenModeSgix = OpenTK.Graphics.OpenGL4.GetPName.PixelTexGenModeSgix; - var _AsyncHistogramSgix = OpenTK.Graphics.OpenGL4.GetPName.AsyncHistogramSgix; - var _MaxAsyncHistogramSgix = OpenTK.Graphics.OpenGL4.GetPName.MaxAsyncHistogramSgix; - var _PixelTextureSgis = OpenTK.Graphics.OpenGL4.GetPName.PixelTextureSgis; - var _AsyncTexImageSgix = OpenTK.Graphics.OpenGL4.GetPName.AsyncTexImageSgix; - var _AsyncDrawPixelsSgix = OpenTK.Graphics.OpenGL4.GetPName.AsyncDrawPixelsSgix; - var _AsyncReadPixelsSgix = OpenTK.Graphics.OpenGL4.GetPName.AsyncReadPixelsSgix; - var _MaxAsyncTexImageSgix = OpenTK.Graphics.OpenGL4.GetPName.MaxAsyncTexImageSgix; - var _MaxAsyncDrawPixelsSgix = OpenTK.Graphics.OpenGL4.GetPName.MaxAsyncDrawPixelsSgix; - var _MaxAsyncReadPixelsSgix = OpenTK.Graphics.OpenGL4.GetPName.MaxAsyncReadPixelsSgix; - var _VertexPreclipSgix = OpenTK.Graphics.OpenGL4.GetPName.VertexPreclipSgix; - var _VertexPreclipHintSgix = OpenTK.Graphics.OpenGL4.GetPName.VertexPreclipHintSgix; - var _FragmentLightingSgix = OpenTK.Graphics.OpenGL4.GetPName.FragmentLightingSgix; - var _FragmentColorMaterialSgix = OpenTK.Graphics.OpenGL4.GetPName.FragmentColorMaterialSgix; - var _FragmentColorMaterialFaceSgix = OpenTK.Graphics.OpenGL4.GetPName.FragmentColorMaterialFaceSgix; - var _FragmentColorMaterialParameterSgix = OpenTK.Graphics.OpenGL4.GetPName.FragmentColorMaterialParameterSgix; - var _MaxFragmentLightsSgix = OpenTK.Graphics.OpenGL4.GetPName.MaxFragmentLightsSgix; - var _MaxActiveLightsSgix = OpenTK.Graphics.OpenGL4.GetPName.MaxActiveLightsSgix; - var _LightEnvModeSgix = OpenTK.Graphics.OpenGL4.GetPName.LightEnvModeSgix; - var _FragmentLightModelLocalViewerSgix = OpenTK.Graphics.OpenGL4.GetPName.FragmentLightModelLocalViewerSgix; - var _FragmentLightModelTwoSideSgix = OpenTK.Graphics.OpenGL4.GetPName.FragmentLightModelTwoSideSgix; - var _FragmentLightModelAmbientSgix = OpenTK.Graphics.OpenGL4.GetPName.FragmentLightModelAmbientSgix; - var _FragmentLightModelNormalInterpolationSgix = OpenTK.Graphics.OpenGL4.GetPName.FragmentLightModelNormalInterpolationSgix; - var _FragmentLight0Sgix = OpenTK.Graphics.OpenGL4.GetPName.FragmentLight0Sgix; - var _PackResampleSgix = OpenTK.Graphics.OpenGL4.GetPName.PackResampleSgix; - var _UnpackResampleSgix = OpenTK.Graphics.OpenGL4.GetPName.UnpackResampleSgix; - var _CurrentFogCoord = OpenTK.Graphics.OpenGL4.GetPName.CurrentFogCoord; - var _FogCoordArrayType = OpenTK.Graphics.OpenGL4.GetPName.FogCoordArrayType; - var _FogCoordArrayStride = OpenTK.Graphics.OpenGL4.GetPName.FogCoordArrayStride; - var _ColorSum = OpenTK.Graphics.OpenGL4.GetPName.ColorSum; - var _CurrentSecondaryColor = OpenTK.Graphics.OpenGL4.GetPName.CurrentSecondaryColor; - var _SecondaryColorArraySize = OpenTK.Graphics.OpenGL4.GetPName.SecondaryColorArraySize; - var _SecondaryColorArrayType = OpenTK.Graphics.OpenGL4.GetPName.SecondaryColorArrayType; - var _SecondaryColorArrayStride = OpenTK.Graphics.OpenGL4.GetPName.SecondaryColorArrayStride; - var _CurrentRasterSecondaryColor = OpenTK.Graphics.OpenGL4.GetPName.CurrentRasterSecondaryColor; - var _AliasedPointSizeRange = OpenTK.Graphics.OpenGL4.GetPName.AliasedPointSizeRange; - var _AliasedLineWidthRange = OpenTK.Graphics.OpenGL4.GetPName.AliasedLineWidthRange; - var _ActiveTexture = OpenTK.Graphics.OpenGL4.GetPName.ActiveTexture; - var _ClientActiveTexture = OpenTK.Graphics.OpenGL4.GetPName.ClientActiveTexture; - var _MaxTextureUnits = OpenTK.Graphics.OpenGL4.GetPName.MaxTextureUnits; - var _TransposeModelviewMatrix = OpenTK.Graphics.OpenGL4.GetPName.TransposeModelviewMatrix; - var _TransposeProjectionMatrix = OpenTK.Graphics.OpenGL4.GetPName.TransposeProjectionMatrix; - var _TransposeTextureMatrix = OpenTK.Graphics.OpenGL4.GetPName.TransposeTextureMatrix; - var _TransposeColorMatrix = OpenTK.Graphics.OpenGL4.GetPName.TransposeColorMatrix; - var _MaxRenderbufferSize = OpenTK.Graphics.OpenGL4.GetPName.MaxRenderbufferSize; - var _MaxRenderbufferSizeExt = OpenTK.Graphics.OpenGL4.GetPName.MaxRenderbufferSizeExt; - var _TextureCompressionHint = OpenTK.Graphics.OpenGL4.GetPName.TextureCompressionHint; - var _TextureBindingRectangle = OpenTK.Graphics.OpenGL4.GetPName.TextureBindingRectangle; - var _MaxRectangleTextureSize = OpenTK.Graphics.OpenGL4.GetPName.MaxRectangleTextureSize; - var _MaxTextureLodBias = OpenTK.Graphics.OpenGL4.GetPName.MaxTextureLodBias; - var _TextureCubeMap = OpenTK.Graphics.OpenGL4.GetPName.TextureCubeMap; - var _TextureBindingCubeMap = OpenTK.Graphics.OpenGL4.GetPName.TextureBindingCubeMap; - var _MaxCubeMapTextureSize = OpenTK.Graphics.OpenGL4.GetPName.MaxCubeMapTextureSize; - var _PackSubsampleRateSgix = OpenTK.Graphics.OpenGL4.GetPName.PackSubsampleRateSgix; - var _UnpackSubsampleRateSgix = OpenTK.Graphics.OpenGL4.GetPName.UnpackSubsampleRateSgix; - var _VertexArrayBinding = OpenTK.Graphics.OpenGL4.GetPName.VertexArrayBinding; - var _ProgramPointSize = OpenTK.Graphics.OpenGL4.GetPName.ProgramPointSize; - var _DepthClamp = OpenTK.Graphics.OpenGL4.GetPName.DepthClamp; - var _NumCompressedTextureFormats = OpenTK.Graphics.OpenGL4.GetPName.NumCompressedTextureFormats; - var _CompressedTextureFormats = OpenTK.Graphics.OpenGL4.GetPName.CompressedTextureFormats; - var _NumProgramBinaryFormats = OpenTK.Graphics.OpenGL4.GetPName.NumProgramBinaryFormats; - var _ProgramBinaryFormats = OpenTK.Graphics.OpenGL4.GetPName.ProgramBinaryFormats; - var _StencilBackFunc = OpenTK.Graphics.OpenGL4.GetPName.StencilBackFunc; - var _StencilBackFail = OpenTK.Graphics.OpenGL4.GetPName.StencilBackFail; - var _StencilBackPassDepthFail = OpenTK.Graphics.OpenGL4.GetPName.StencilBackPassDepthFail; - var _StencilBackPassDepthPass = OpenTK.Graphics.OpenGL4.GetPName.StencilBackPassDepthPass; - var _RgbaFloatMode = OpenTK.Graphics.OpenGL4.GetPName.RgbaFloatMode; - var _MaxDrawBuffers = OpenTK.Graphics.OpenGL4.GetPName.MaxDrawBuffers; - var _DrawBuffer0 = OpenTK.Graphics.OpenGL4.GetPName.DrawBuffer0; - var _DrawBuffer1 = OpenTK.Graphics.OpenGL4.GetPName.DrawBuffer1; - var _DrawBuffer2 = OpenTK.Graphics.OpenGL4.GetPName.DrawBuffer2; - var _DrawBuffer3 = OpenTK.Graphics.OpenGL4.GetPName.DrawBuffer3; - var _DrawBuffer4 = OpenTK.Graphics.OpenGL4.GetPName.DrawBuffer4; - var _DrawBuffer5 = OpenTK.Graphics.OpenGL4.GetPName.DrawBuffer5; - var _DrawBuffer6 = OpenTK.Graphics.OpenGL4.GetPName.DrawBuffer6; - var _DrawBuffer7 = OpenTK.Graphics.OpenGL4.GetPName.DrawBuffer7; - var _DrawBuffer8 = OpenTK.Graphics.OpenGL4.GetPName.DrawBuffer8; - var _DrawBuffer9 = OpenTK.Graphics.OpenGL4.GetPName.DrawBuffer9; - var _DrawBuffer10 = OpenTK.Graphics.OpenGL4.GetPName.DrawBuffer10; - var _DrawBuffer11 = OpenTK.Graphics.OpenGL4.GetPName.DrawBuffer11; - var _DrawBuffer12 = OpenTK.Graphics.OpenGL4.GetPName.DrawBuffer12; - var _DrawBuffer13 = OpenTK.Graphics.OpenGL4.GetPName.DrawBuffer13; - var _DrawBuffer14 = OpenTK.Graphics.OpenGL4.GetPName.DrawBuffer14; - var _DrawBuffer15 = OpenTK.Graphics.OpenGL4.GetPName.DrawBuffer15; - var _BlendEquationAlpha = OpenTK.Graphics.OpenGL4.GetPName.BlendEquationAlpha; - var _TextureCubeMapSeamless = OpenTK.Graphics.OpenGL4.GetPName.TextureCubeMapSeamless; - var _PointSprite = OpenTK.Graphics.OpenGL4.GetPName.PointSprite; - var _MaxVertexAttribs = OpenTK.Graphics.OpenGL4.GetPName.MaxVertexAttribs; - var _MaxTessControlInputComponents = OpenTK.Graphics.OpenGL4.GetPName.MaxTessControlInputComponents; - var _MaxTessEvaluationInputComponents = OpenTK.Graphics.OpenGL4.GetPName.MaxTessEvaluationInputComponents; - var _MaxTextureCoords = OpenTK.Graphics.OpenGL4.GetPName.MaxTextureCoords; - var _MaxTextureImageUnits = OpenTK.Graphics.OpenGL4.GetPName.MaxTextureImageUnits; - var _ArrayBufferBinding = OpenTK.Graphics.OpenGL4.GetPName.ArrayBufferBinding; - var _ElementArrayBufferBinding = OpenTK.Graphics.OpenGL4.GetPName.ElementArrayBufferBinding; - var _VertexArrayBufferBinding = OpenTK.Graphics.OpenGL4.GetPName.VertexArrayBufferBinding; - var _NormalArrayBufferBinding = OpenTK.Graphics.OpenGL4.GetPName.NormalArrayBufferBinding; - var _ColorArrayBufferBinding = OpenTK.Graphics.OpenGL4.GetPName.ColorArrayBufferBinding; - var _IndexArrayBufferBinding = OpenTK.Graphics.OpenGL4.GetPName.IndexArrayBufferBinding; - var _TextureCoordArrayBufferBinding = OpenTK.Graphics.OpenGL4.GetPName.TextureCoordArrayBufferBinding; - var _EdgeFlagArrayBufferBinding = OpenTK.Graphics.OpenGL4.GetPName.EdgeFlagArrayBufferBinding; - var _SecondaryColorArrayBufferBinding = OpenTK.Graphics.OpenGL4.GetPName.SecondaryColorArrayBufferBinding; - var _FogCoordArrayBufferBinding = OpenTK.Graphics.OpenGL4.GetPName.FogCoordArrayBufferBinding; - var _WeightArrayBufferBinding = OpenTK.Graphics.OpenGL4.GetPName.WeightArrayBufferBinding; - var _VertexAttribArrayBufferBinding = OpenTK.Graphics.OpenGL4.GetPName.VertexAttribArrayBufferBinding; - var _PixelPackBufferBinding = OpenTK.Graphics.OpenGL4.GetPName.PixelPackBufferBinding; - var _PixelUnpackBufferBinding = OpenTK.Graphics.OpenGL4.GetPName.PixelUnpackBufferBinding; - var _MaxDualSourceDrawBuffers = OpenTK.Graphics.OpenGL4.GetPName.MaxDualSourceDrawBuffers; - var _MaxArrayTextureLayers = OpenTK.Graphics.OpenGL4.GetPName.MaxArrayTextureLayers; - var _MinProgramTexelOffset = OpenTK.Graphics.OpenGL4.GetPName.MinProgramTexelOffset; - var _MaxProgramTexelOffset = OpenTK.Graphics.OpenGL4.GetPName.MaxProgramTexelOffset; - var _SamplerBinding = OpenTK.Graphics.OpenGL4.GetPName.SamplerBinding; - var _ClampVertexColor = OpenTK.Graphics.OpenGL4.GetPName.ClampVertexColor; - var _ClampFragmentColor = OpenTK.Graphics.OpenGL4.GetPName.ClampFragmentColor; - var _ClampReadColor = OpenTK.Graphics.OpenGL4.GetPName.ClampReadColor; - var _MaxVertexUniformBlocks = OpenTK.Graphics.OpenGL4.GetPName.MaxVertexUniformBlocks; - var _MaxGeometryUniformBlocks = OpenTK.Graphics.OpenGL4.GetPName.MaxGeometryUniformBlocks; - var _MaxFragmentUniformBlocks = OpenTK.Graphics.OpenGL4.GetPName.MaxFragmentUniformBlocks; - var _MaxCombinedUniformBlocks = OpenTK.Graphics.OpenGL4.GetPName.MaxCombinedUniformBlocks; - var _MaxUniformBufferBindings = OpenTK.Graphics.OpenGL4.GetPName.MaxUniformBufferBindings; - var _MaxUniformBlockSize = OpenTK.Graphics.OpenGL4.GetPName.MaxUniformBlockSize; - var _MaxCombinedVertexUniformComponents = OpenTK.Graphics.OpenGL4.GetPName.MaxCombinedVertexUniformComponents; - var _MaxCombinedGeometryUniformComponents = OpenTK.Graphics.OpenGL4.GetPName.MaxCombinedGeometryUniformComponents; - var _MaxCombinedFragmentUniformComponents = OpenTK.Graphics.OpenGL4.GetPName.MaxCombinedFragmentUniformComponents; - var _UniformBufferOffsetAlignment = OpenTK.Graphics.OpenGL4.GetPName.UniformBufferOffsetAlignment; - var _MaxFragmentUniformComponents = OpenTK.Graphics.OpenGL4.GetPName.MaxFragmentUniformComponents; - var _MaxVertexUniformComponents = OpenTK.Graphics.OpenGL4.GetPName.MaxVertexUniformComponents; - var _MaxVaryingComponents = OpenTK.Graphics.OpenGL4.GetPName.MaxVaryingComponents; - var _MaxVaryingFloats = OpenTK.Graphics.OpenGL4.GetPName.MaxVaryingFloats; - var _MaxVertexTextureImageUnits = OpenTK.Graphics.OpenGL4.GetPName.MaxVertexTextureImageUnits; - var _MaxCombinedTextureImageUnits = OpenTK.Graphics.OpenGL4.GetPName.MaxCombinedTextureImageUnits; - var _FragmentShaderDerivativeHint = OpenTK.Graphics.OpenGL4.GetPName.FragmentShaderDerivativeHint; - var _CurrentProgram = OpenTK.Graphics.OpenGL4.GetPName.CurrentProgram; - var _ImplementationColorReadType = OpenTK.Graphics.OpenGL4.GetPName.ImplementationColorReadType; - var _ImplementationColorReadFormat = OpenTK.Graphics.OpenGL4.GetPName.ImplementationColorReadFormat; - var _TextureBinding1DArray = OpenTK.Graphics.OpenGL4.GetPName.TextureBinding1DArray; - var _TextureBinding2DArray = OpenTK.Graphics.OpenGL4.GetPName.TextureBinding2DArray; - var _MaxGeometryTextureImageUnits = OpenTK.Graphics.OpenGL4.GetPName.MaxGeometryTextureImageUnits; - var _TextureBuffer = OpenTK.Graphics.OpenGL4.GetPName.TextureBuffer; - var _MaxTextureBufferSize = OpenTK.Graphics.OpenGL4.GetPName.MaxTextureBufferSize; - var _TextureBindingBuffer = OpenTK.Graphics.OpenGL4.GetPName.TextureBindingBuffer; - var _TextureBufferDataStoreBinding = OpenTK.Graphics.OpenGL4.GetPName.TextureBufferDataStoreBinding; - var _SampleShading = OpenTK.Graphics.OpenGL4.GetPName.SampleShading; - var _MinSampleShadingValue = OpenTK.Graphics.OpenGL4.GetPName.MinSampleShadingValue; - var _MaxTransformFeedbackSeparateComponents = OpenTK.Graphics.OpenGL4.GetPName.MaxTransformFeedbackSeparateComponents; - var _MaxTransformFeedbackInterleavedComponents = OpenTK.Graphics.OpenGL4.GetPName.MaxTransformFeedbackInterleavedComponents; - var _MaxTransformFeedbackSeparateAttribs = OpenTK.Graphics.OpenGL4.GetPName.MaxTransformFeedbackSeparateAttribs; - var _StencilBackRef = OpenTK.Graphics.OpenGL4.GetPName.StencilBackRef; - var _StencilBackValueMask = OpenTK.Graphics.OpenGL4.GetPName.StencilBackValueMask; - var _StencilBackWritemask = OpenTK.Graphics.OpenGL4.GetPName.StencilBackWritemask; - var _DrawFramebufferBinding = OpenTK.Graphics.OpenGL4.GetPName.DrawFramebufferBinding; - var _FramebufferBinding = OpenTK.Graphics.OpenGL4.GetPName.FramebufferBinding; - var _FramebufferBindingExt = OpenTK.Graphics.OpenGL4.GetPName.FramebufferBindingExt; - var _RenderbufferBinding = OpenTK.Graphics.OpenGL4.GetPName.RenderbufferBinding; - var _RenderbufferBindingExt = OpenTK.Graphics.OpenGL4.GetPName.RenderbufferBindingExt; - var _ReadFramebufferBinding = OpenTK.Graphics.OpenGL4.GetPName.ReadFramebufferBinding; - var _MaxColorAttachments = OpenTK.Graphics.OpenGL4.GetPName.MaxColorAttachments; - var _MaxColorAttachmentsExt = OpenTK.Graphics.OpenGL4.GetPName.MaxColorAttachmentsExt; - var _MaxSamples = OpenTK.Graphics.OpenGL4.GetPName.MaxSamples; - var _FramebufferSrgb = OpenTK.Graphics.OpenGL4.GetPName.FramebufferSrgb; - var _MaxGeometryVaryingComponents = OpenTK.Graphics.OpenGL4.GetPName.MaxGeometryVaryingComponents; - var _MaxVertexVaryingComponents = OpenTK.Graphics.OpenGL4.GetPName.MaxVertexVaryingComponents; - var _MaxGeometryUniformComponents = OpenTK.Graphics.OpenGL4.GetPName.MaxGeometryUniformComponents; - var _MaxGeometryOutputVertices = OpenTK.Graphics.OpenGL4.GetPName.MaxGeometryOutputVertices; - var _MaxGeometryTotalOutputComponents = OpenTK.Graphics.OpenGL4.GetPName.MaxGeometryTotalOutputComponents; - var _MaxSubroutines = OpenTK.Graphics.OpenGL4.GetPName.MaxSubroutines; - var _MaxSubroutineUniformLocations = OpenTK.Graphics.OpenGL4.GetPName.MaxSubroutineUniformLocations; - var _ShaderBinaryFormats = OpenTK.Graphics.OpenGL4.GetPName.ShaderBinaryFormats; - var _NumShaderBinaryFormats = OpenTK.Graphics.OpenGL4.GetPName.NumShaderBinaryFormats; - var _ShaderCompiler = OpenTK.Graphics.OpenGL4.GetPName.ShaderCompiler; - var _MaxVertexUniformVectors = OpenTK.Graphics.OpenGL4.GetPName.MaxVertexUniformVectors; - var _MaxVaryingVectors = OpenTK.Graphics.OpenGL4.GetPName.MaxVaryingVectors; - var _MaxFragmentUniformVectors = OpenTK.Graphics.OpenGL4.GetPName.MaxFragmentUniformVectors; - var _MaxCombinedTessControlUniformComponents = OpenTK.Graphics.OpenGL4.GetPName.MaxCombinedTessControlUniformComponents; - var _MaxCombinedTessEvaluationUniformComponents = OpenTK.Graphics.OpenGL4.GetPName.MaxCombinedTessEvaluationUniformComponents; - var _TransformFeedbackBufferPaused = OpenTK.Graphics.OpenGL4.GetPName.TransformFeedbackBufferPaused; - var _TransformFeedbackBufferActive = OpenTK.Graphics.OpenGL4.GetPName.TransformFeedbackBufferActive; - var _TransformFeedbackBinding = OpenTK.Graphics.OpenGL4.GetPName.TransformFeedbackBinding; - var _Timestamp = OpenTK.Graphics.OpenGL4.GetPName.Timestamp; - var _QuadsFollowProvokingVertexConvention = OpenTK.Graphics.OpenGL4.GetPName.QuadsFollowProvokingVertexConvention; - var _ProvokingVertex = OpenTK.Graphics.OpenGL4.GetPName.ProvokingVertex; - var _SampleMask = OpenTK.Graphics.OpenGL4.GetPName.SampleMask; - var _MaxSampleMaskWords = OpenTK.Graphics.OpenGL4.GetPName.MaxSampleMaskWords; - var _MaxGeometryShaderInvocations = OpenTK.Graphics.OpenGL4.GetPName.MaxGeometryShaderInvocations; - var _MinFragmentInterpolationOffset = OpenTK.Graphics.OpenGL4.GetPName.MinFragmentInterpolationOffset; - var _MaxFragmentInterpolationOffset = OpenTK.Graphics.OpenGL4.GetPName.MaxFragmentInterpolationOffset; - var _FragmentInterpolationOffsetBits = OpenTK.Graphics.OpenGL4.GetPName.FragmentInterpolationOffsetBits; - var _MinProgramTextureGatherOffset = OpenTK.Graphics.OpenGL4.GetPName.MinProgramTextureGatherOffset; - var _MaxProgramTextureGatherOffset = OpenTK.Graphics.OpenGL4.GetPName.MaxProgramTextureGatherOffset; - var _MaxTransformFeedbackBuffers = OpenTK.Graphics.OpenGL4.GetPName.MaxTransformFeedbackBuffers; - var _MaxVertexStreams = OpenTK.Graphics.OpenGL4.GetPName.MaxVertexStreams; - var _PatchVertices = OpenTK.Graphics.OpenGL4.GetPName.PatchVertices; - var _PatchDefaultInnerLevel = OpenTK.Graphics.OpenGL4.GetPName.PatchDefaultInnerLevel; - var _PatchDefaultOuterLevel = OpenTK.Graphics.OpenGL4.GetPName.PatchDefaultOuterLevel; - var _MaxPatchVertices = OpenTK.Graphics.OpenGL4.GetPName.MaxPatchVertices; - var _MaxTessGenLevel = OpenTK.Graphics.OpenGL4.GetPName.MaxTessGenLevel; - var _MaxTessControlUniformComponents = OpenTK.Graphics.OpenGL4.GetPName.MaxTessControlUniformComponents; - var _MaxTessEvaluationUniformComponents = OpenTK.Graphics.OpenGL4.GetPName.MaxTessEvaluationUniformComponents; - var _MaxTessControlTextureImageUnits = OpenTK.Graphics.OpenGL4.GetPName.MaxTessControlTextureImageUnits; - var _MaxTessEvaluationTextureImageUnits = OpenTK.Graphics.OpenGL4.GetPName.MaxTessEvaluationTextureImageUnits; - var _MaxTessControlOutputComponents = OpenTK.Graphics.OpenGL4.GetPName.MaxTessControlOutputComponents; - var _MaxTessPatchComponents = OpenTK.Graphics.OpenGL4.GetPName.MaxTessPatchComponents; - var _MaxTessControlTotalOutputComponents = OpenTK.Graphics.OpenGL4.GetPName.MaxTessControlTotalOutputComponents; - var _MaxTessEvaluationOutputComponents = OpenTK.Graphics.OpenGL4.GetPName.MaxTessEvaluationOutputComponents; - var _MaxTessControlUniformBlocks = OpenTK.Graphics.OpenGL4.GetPName.MaxTessControlUniformBlocks; - var _MaxTessEvaluationUniformBlocks = OpenTK.Graphics.OpenGL4.GetPName.MaxTessEvaluationUniformBlocks; - var _DrawIndirectBufferBinding = OpenTK.Graphics.OpenGL4.GetPName.DrawIndirectBufferBinding; - var _MaxVertexImageUniforms = OpenTK.Graphics.OpenGL4.GetPName.MaxVertexImageUniforms; - var _MaxTessControlImageUniforms = OpenTK.Graphics.OpenGL4.GetPName.MaxTessControlImageUniforms; - var _MaxTessEvaluationImageUniforms = OpenTK.Graphics.OpenGL4.GetPName.MaxTessEvaluationImageUniforms; - var _MaxGeometryImageUniforms = OpenTK.Graphics.OpenGL4.GetPName.MaxGeometryImageUniforms; - var _MaxFragmentImageUniforms = OpenTK.Graphics.OpenGL4.GetPName.MaxFragmentImageUniforms; - var _MaxCombinedImageUniforms = OpenTK.Graphics.OpenGL4.GetPName.MaxCombinedImageUniforms; - var _TextureBinding2DMultisample = OpenTK.Graphics.OpenGL4.GetPName.TextureBinding2DMultisample; - var _TextureBinding2DMultisampleArray = OpenTK.Graphics.OpenGL4.GetPName.TextureBinding2DMultisampleArray; - var _MaxColorTextureSamples = OpenTK.Graphics.OpenGL4.GetPName.MaxColorTextureSamples; - var _MaxDepthTextureSamples = OpenTK.Graphics.OpenGL4.GetPName.MaxDepthTextureSamples; - var _MaxIntegerSamples = OpenTK.Graphics.OpenGL4.GetPName.MaxIntegerSamples; - var _MaxVertexOutputComponents = OpenTK.Graphics.OpenGL4.GetPName.MaxVertexOutputComponents; - var _MaxGeometryInputComponents = OpenTK.Graphics.OpenGL4.GetPName.MaxGeometryInputComponents; - var _MaxGeometryOutputComponents = OpenTK.Graphics.OpenGL4.GetPName.MaxGeometryOutputComponents; - var _MaxFragmentInputComponents = OpenTK.Graphics.OpenGL4.GetPName.MaxFragmentInputComponents; - var _MaxComputeImageUniforms = OpenTK.Graphics.OpenGL4.GetPName.MaxComputeImageUniforms; -} -static void Test_GetPointervPName_37570() { - var _VertexArrayPointerExt = OpenTK.Graphics.OpenGL4.GetPointervPName.VertexArrayPointerExt; - var _NormalArrayPointerExt = OpenTK.Graphics.OpenGL4.GetPointervPName.NormalArrayPointerExt; - var _ColorArrayPointerExt = OpenTK.Graphics.OpenGL4.GetPointervPName.ColorArrayPointerExt; - var _IndexArrayPointerExt = OpenTK.Graphics.OpenGL4.GetPointervPName.IndexArrayPointerExt; - var _TextureCoordArrayPointerExt = OpenTK.Graphics.OpenGL4.GetPointervPName.TextureCoordArrayPointerExt; - var _EdgeFlagArrayPointerExt = OpenTK.Graphics.OpenGL4.GetPointervPName.EdgeFlagArrayPointerExt; - var _InstrumentBufferPointerSgix = OpenTK.Graphics.OpenGL4.GetPointervPName.InstrumentBufferPointerSgix; - var _FogCoordArrayPointer = OpenTK.Graphics.OpenGL4.GetPointervPName.FogCoordArrayPointer; - var _SecondaryColorArrayPointer = OpenTK.Graphics.OpenGL4.GetPointervPName.SecondaryColorArrayPointer; -} -static void Test_GetProgramParameterName_37571() { - var _ProgramBinaryRetrievableHint = OpenTK.Graphics.OpenGL4.GetProgramParameterName.ProgramBinaryRetrievableHint; - var _ProgramSeparable = OpenTK.Graphics.OpenGL4.GetProgramParameterName.ProgramSeparable; - var _GeometryShaderInvocations = OpenTK.Graphics.OpenGL4.GetProgramParameterName.GeometryShaderInvocations; - var _GeometryVerticesOut = OpenTK.Graphics.OpenGL4.GetProgramParameterName.GeometryVerticesOut; - var _GeometryInputType = OpenTK.Graphics.OpenGL4.GetProgramParameterName.GeometryInputType; - var _GeometryOutputType = OpenTK.Graphics.OpenGL4.GetProgramParameterName.GeometryOutputType; - var _ActiveUniformBlockMaxNameLength = OpenTK.Graphics.OpenGL4.GetProgramParameterName.ActiveUniformBlockMaxNameLength; - var _ActiveUniformBlocks = OpenTK.Graphics.OpenGL4.GetProgramParameterName.ActiveUniformBlocks; - var _DeleteStatus = OpenTK.Graphics.OpenGL4.GetProgramParameterName.DeleteStatus; - var _LinkStatus = OpenTK.Graphics.OpenGL4.GetProgramParameterName.LinkStatus; - var _ValidateStatus = OpenTK.Graphics.OpenGL4.GetProgramParameterName.ValidateStatus; - var _InfoLogLength = OpenTK.Graphics.OpenGL4.GetProgramParameterName.InfoLogLength; - var _AttachedShaders = OpenTK.Graphics.OpenGL4.GetProgramParameterName.AttachedShaders; - var _ActiveUniforms = OpenTK.Graphics.OpenGL4.GetProgramParameterName.ActiveUniforms; - var _ActiveUniformMaxLength = OpenTK.Graphics.OpenGL4.GetProgramParameterName.ActiveUniformMaxLength; - var _ActiveAttributes = OpenTK.Graphics.OpenGL4.GetProgramParameterName.ActiveAttributes; - var _ActiveAttributeMaxLength = OpenTK.Graphics.OpenGL4.GetProgramParameterName.ActiveAttributeMaxLength; - var _TransformFeedbackVaryingMaxLength = OpenTK.Graphics.OpenGL4.GetProgramParameterName.TransformFeedbackVaryingMaxLength; - var _TransformFeedbackBufferMode = OpenTK.Graphics.OpenGL4.GetProgramParameterName.TransformFeedbackBufferMode; - var _TransformFeedbackVaryings = OpenTK.Graphics.OpenGL4.GetProgramParameterName.TransformFeedbackVaryings; - var _TessControlOutputVertices = OpenTK.Graphics.OpenGL4.GetProgramParameterName.TessControlOutputVertices; - var _TessGenMode = OpenTK.Graphics.OpenGL4.GetProgramParameterName.TessGenMode; - var _TessGenSpacing = OpenTK.Graphics.OpenGL4.GetProgramParameterName.TessGenSpacing; - var _TessGenVertexOrder = OpenTK.Graphics.OpenGL4.GetProgramParameterName.TessGenVertexOrder; - var _TessGenPointMode = OpenTK.Graphics.OpenGL4.GetProgramParameterName.TessGenPointMode; - var _MaxComputeWorkGroupSize = OpenTK.Graphics.OpenGL4.GetProgramParameterName.MaxComputeWorkGroupSize; - var _ActiveAtomicCounterBuffers = OpenTK.Graphics.OpenGL4.GetProgramParameterName.ActiveAtomicCounterBuffers; -} -static void Test_GetQueryObjectParam_37572() { - var _QueryResult = OpenTK.Graphics.OpenGL4.GetQueryObjectParam.QueryResult; - var _QueryResultAvailable = OpenTK.Graphics.OpenGL4.GetQueryObjectParam.QueryResultAvailable; - var _QueryResultNoWait = OpenTK.Graphics.OpenGL4.GetQueryObjectParam.QueryResultNoWait; -} -static void Test_GetQueryParam_37573() { - var _QueryCounterBits = OpenTK.Graphics.OpenGL4.GetQueryParam.QueryCounterBits; - var _CurrentQuery = OpenTK.Graphics.OpenGL4.GetQueryParam.CurrentQuery; -} -static void Test_GetTextureParameter_37574() { - var _TextureWidth = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureWidth; - var _TextureHeight = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureHeight; - var _TextureInternalFormat = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureInternalFormat; - var _TextureBorderColor = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureBorderColor; - var _TextureBorderColorNv = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureBorderColorNv; - var _TextureMagFilter = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureMagFilter; - var _TextureMinFilter = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureMinFilter; - var _TextureWrapS = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureWrapS; - var _TextureWrapT = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureWrapT; - var _TextureRedSize = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureRedSize; - var _TextureGreenSize = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureGreenSize; - var _TextureBlueSize = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureBlueSize; - var _TextureAlphaSize = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureAlphaSize; - var _TextureDepth = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureDepth; - var _TextureDepthExt = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureDepthExt; - var _TextureWrapR = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureWrapR; - var _TextureWrapRExt = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureWrapRExt; - var _DetailTextureLevelSgis = OpenTK.Graphics.OpenGL4.GetTextureParameter.DetailTextureLevelSgis; - var _DetailTextureModeSgis = OpenTK.Graphics.OpenGL4.GetTextureParameter.DetailTextureModeSgis; - var _DetailTextureFuncPointsSgis = OpenTK.Graphics.OpenGL4.GetTextureParameter.DetailTextureFuncPointsSgis; - var _SharpenTextureFuncPointsSgis = OpenTK.Graphics.OpenGL4.GetTextureParameter.SharpenTextureFuncPointsSgis; - var _ShadowAmbientSgix = OpenTK.Graphics.OpenGL4.GetTextureParameter.ShadowAmbientSgix; - var _DualTextureSelectSgis = OpenTK.Graphics.OpenGL4.GetTextureParameter.DualTextureSelectSgis; - var _QuadTextureSelectSgis = OpenTK.Graphics.OpenGL4.GetTextureParameter.QuadTextureSelectSgis; - var _Texture4DsizeSgis = OpenTK.Graphics.OpenGL4.GetTextureParameter.Texture4DsizeSgis; - var _TextureWrapQSgis = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureWrapQSgis; - var _TextureMinLod = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureMinLod; - var _TextureMinLodSgis = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureMinLodSgis; - var _TextureMaxLod = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureMaxLod; - var _TextureMaxLodSgis = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureMaxLodSgis; - var _TextureBaseLevel = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureBaseLevel; - var _TextureBaseLevelSgis = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureBaseLevelSgis; - var _TextureMaxLevel = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureMaxLevel; - var _TextureMaxLevelSgis = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureMaxLevelSgis; - var _TextureFilter4SizeSgis = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureFilter4SizeSgis; - var _TextureClipmapCenterSgix = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureClipmapCenterSgix; - var _TextureClipmapFrameSgix = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureClipmapFrameSgix; - var _TextureClipmapOffsetSgix = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureClipmapOffsetSgix; - var _TextureClipmapVirtualDepthSgix = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureClipmapVirtualDepthSgix; - var _TextureClipmapLodOffsetSgix = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureClipmapLodOffsetSgix; - var _TextureClipmapDepthSgix = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureClipmapDepthSgix; - var _PostTextureFilterBiasSgix = OpenTK.Graphics.OpenGL4.GetTextureParameter.PostTextureFilterBiasSgix; - var _PostTextureFilterScaleSgix = OpenTK.Graphics.OpenGL4.GetTextureParameter.PostTextureFilterScaleSgix; - var _TextureLodBiasSSgix = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureLodBiasSSgix; - var _TextureLodBiasTSgix = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureLodBiasTSgix; - var _TextureLodBiasRSgix = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureLodBiasRSgix; - var _GenerateMipmap = OpenTK.Graphics.OpenGL4.GetTextureParameter.GenerateMipmap; - var _GenerateMipmapSgis = OpenTK.Graphics.OpenGL4.GetTextureParameter.GenerateMipmapSgis; - var _TextureCompareSgix = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureCompareSgix; - var _TextureCompareOperatorSgix = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureCompareOperatorSgix; - var _TextureLequalRSgix = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureLequalRSgix; - var _TextureGequalRSgix = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureGequalRSgix; - var _TextureMaxClampSSgix = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureMaxClampSSgix; - var _TextureMaxClampTSgix = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureMaxClampTSgix; - var _TextureMaxClampRSgix = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureMaxClampRSgix; - var _TextureCompressedImageSize = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureCompressedImageSize; - var _TextureCompressed = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureCompressed; - var _TextureDepthSize = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureDepthSize; - var _DepthTextureMode = OpenTK.Graphics.OpenGL4.GetTextureParameter.DepthTextureMode; - var _TextureCompareMode = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureCompareMode; - var _TextureCompareFunc = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureCompareFunc; - var _TextureStencilSize = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureStencilSize; - var _TextureRedType = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureRedType; - var _TextureGreenType = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureGreenType; - var _TextureBlueType = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureBlueType; - var _TextureAlphaType = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureAlphaType; - var _TextureLuminanceType = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureLuminanceType; - var _TextureIntensityType = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureIntensityType; - var _TextureDepthType = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureDepthType; - var _TextureSharedSize = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureSharedSize; - var _TextureSwizzleR = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureSwizzleR; - var _TextureSwizzleG = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureSwizzleG; - var _TextureSwizzleB = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureSwizzleB; - var _TextureSwizzleA = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureSwizzleA; - var _TextureSwizzleRgba = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureSwizzleRgba; - var _TextureSamples = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureSamples; - var _TextureFixedSampleLocations = OpenTK.Graphics.OpenGL4.GetTextureParameter.TextureFixedSampleLocations; -} -static void Test_HintMode_37575() { - var _DontCare = OpenTK.Graphics.OpenGL4.HintMode.DontCare; - var _Fastest = OpenTK.Graphics.OpenGL4.HintMode.Fastest; - var _Nicest = OpenTK.Graphics.OpenGL4.HintMode.Nicest; -} -static void Test_HintTarget_37576() { - var _PerspectiveCorrectionHint = OpenTK.Graphics.OpenGL4.HintTarget.PerspectiveCorrectionHint; - var _PointSmoothHint = OpenTK.Graphics.OpenGL4.HintTarget.PointSmoothHint; - var _LineSmoothHint = OpenTK.Graphics.OpenGL4.HintTarget.LineSmoothHint; - var _PolygonSmoothHint = OpenTK.Graphics.OpenGL4.HintTarget.PolygonSmoothHint; - var _FogHint = OpenTK.Graphics.OpenGL4.HintTarget.FogHint; - var _PreferDoublebufferHintPgi = OpenTK.Graphics.OpenGL4.HintTarget.PreferDoublebufferHintPgi; - var _ConserveMemoryHintPgi = OpenTK.Graphics.OpenGL4.HintTarget.ConserveMemoryHintPgi; - var _ReclaimMemoryHintPgi = OpenTK.Graphics.OpenGL4.HintTarget.ReclaimMemoryHintPgi; - var _NativeGraphicsBeginHintPgi = OpenTK.Graphics.OpenGL4.HintTarget.NativeGraphicsBeginHintPgi; - var _NativeGraphicsEndHintPgi = OpenTK.Graphics.OpenGL4.HintTarget.NativeGraphicsEndHintPgi; - var _AlwaysFastHintPgi = OpenTK.Graphics.OpenGL4.HintTarget.AlwaysFastHintPgi; - var _AlwaysSoftHintPgi = OpenTK.Graphics.OpenGL4.HintTarget.AlwaysSoftHintPgi; - var _AllowDrawObjHintPgi = OpenTK.Graphics.OpenGL4.HintTarget.AllowDrawObjHintPgi; - var _AllowDrawWinHintPgi = OpenTK.Graphics.OpenGL4.HintTarget.AllowDrawWinHintPgi; - var _AllowDrawFrgHintPgi = OpenTK.Graphics.OpenGL4.HintTarget.AllowDrawFrgHintPgi; - var _AllowDrawMemHintPgi = OpenTK.Graphics.OpenGL4.HintTarget.AllowDrawMemHintPgi; - var _StrictDepthfuncHintPgi = OpenTK.Graphics.OpenGL4.HintTarget.StrictDepthfuncHintPgi; - var _StrictLightingHintPgi = OpenTK.Graphics.OpenGL4.HintTarget.StrictLightingHintPgi; - var _StrictScissorHintPgi = OpenTK.Graphics.OpenGL4.HintTarget.StrictScissorHintPgi; - var _FullStippleHintPgi = OpenTK.Graphics.OpenGL4.HintTarget.FullStippleHintPgi; - var _ClipNearHintPgi = OpenTK.Graphics.OpenGL4.HintTarget.ClipNearHintPgi; - var _ClipFarHintPgi = OpenTK.Graphics.OpenGL4.HintTarget.ClipFarHintPgi; - var _WideLineHintPgi = OpenTK.Graphics.OpenGL4.HintTarget.WideLineHintPgi; - var _BackNormalsHintPgi = OpenTK.Graphics.OpenGL4.HintTarget.BackNormalsHintPgi; - var _VertexDataHintPgi = OpenTK.Graphics.OpenGL4.HintTarget.VertexDataHintPgi; - var _VertexConsistentHintPgi = OpenTK.Graphics.OpenGL4.HintTarget.VertexConsistentHintPgi; - var _MaterialSideHintPgi = OpenTK.Graphics.OpenGL4.HintTarget.MaterialSideHintPgi; - var _MaxVertexHintPgi = OpenTK.Graphics.OpenGL4.HintTarget.MaxVertexHintPgi; - var _PackCmykHintExt = OpenTK.Graphics.OpenGL4.HintTarget.PackCmykHintExt; - var _UnpackCmykHintExt = OpenTK.Graphics.OpenGL4.HintTarget.UnpackCmykHintExt; - var _PhongHintWin = OpenTK.Graphics.OpenGL4.HintTarget.PhongHintWin; - var _ClipVolumeClippingHintExt = OpenTK.Graphics.OpenGL4.HintTarget.ClipVolumeClippingHintExt; - var _TextureMultiBufferHintSgix = OpenTK.Graphics.OpenGL4.HintTarget.TextureMultiBufferHintSgix; - var _GenerateMipmapHint = OpenTK.Graphics.OpenGL4.HintTarget.GenerateMipmapHint; - var _GenerateMipmapHintSgis = OpenTK.Graphics.OpenGL4.HintTarget.GenerateMipmapHintSgis; - var _ProgramBinaryRetrievableHint = OpenTK.Graphics.OpenGL4.HintTarget.ProgramBinaryRetrievableHint; - var _ConvolutionHintSgix = OpenTK.Graphics.OpenGL4.HintTarget.ConvolutionHintSgix; - var _ScalebiasHintSgix = OpenTK.Graphics.OpenGL4.HintTarget.ScalebiasHintSgix; - var _LineQualityHintSgix = OpenTK.Graphics.OpenGL4.HintTarget.LineQualityHintSgix; - var _VertexPreclipSgix = OpenTK.Graphics.OpenGL4.HintTarget.VertexPreclipSgix; - var _VertexPreclipHintSgix = OpenTK.Graphics.OpenGL4.HintTarget.VertexPreclipHintSgix; - var _TextureCompressionHint = OpenTK.Graphics.OpenGL4.HintTarget.TextureCompressionHint; - var _TextureCompressionHintArb = OpenTK.Graphics.OpenGL4.HintTarget.TextureCompressionHintArb; - var _VertexArrayStorageHintApple = OpenTK.Graphics.OpenGL4.HintTarget.VertexArrayStorageHintApple; - var _MultisampleFilterHintNv = OpenTK.Graphics.OpenGL4.HintTarget.MultisampleFilterHintNv; - var _TransformHintApple = OpenTK.Graphics.OpenGL4.HintTarget.TransformHintApple; - var _TextureStorageHintApple = OpenTK.Graphics.OpenGL4.HintTarget.TextureStorageHintApple; - var _FragmentShaderDerivativeHint = OpenTK.Graphics.OpenGL4.HintTarget.FragmentShaderDerivativeHint; - var _FragmentShaderDerivativeHintArb = OpenTK.Graphics.OpenGL4.HintTarget.FragmentShaderDerivativeHintArb; - var _FragmentShaderDerivativeHintOes = OpenTK.Graphics.OpenGL4.HintTarget.FragmentShaderDerivativeHintOes; - var _BinningControlHintQcom = OpenTK.Graphics.OpenGL4.HintTarget.BinningControlHintQcom; -} -static void Test_HistogramTarget_37577() { - var _Histogram = OpenTK.Graphics.OpenGL4.HistogramTarget.Histogram; - var _ProxyHistogram = OpenTK.Graphics.OpenGL4.HistogramTarget.ProxyHistogram; -} -static void Test_HistogramTargetExt_37578() { - var _Histogram = OpenTK.Graphics.OpenGL4.HistogramTargetExt.Histogram; - var _HistogramExt = OpenTK.Graphics.OpenGL4.HistogramTargetExt.HistogramExt; - var _ProxyHistogram = OpenTK.Graphics.OpenGL4.HistogramTargetExt.ProxyHistogram; - var _ProxyHistogramExt = OpenTK.Graphics.OpenGL4.HistogramTargetExt.ProxyHistogramExt; -} -static void Test_ImageTarget_37579() { - var _Texture1D = OpenTK.Graphics.OpenGL4.ImageTarget.Texture1D; - var _Texture2D = OpenTK.Graphics.OpenGL4.ImageTarget.Texture2D; - var _Texture3D = OpenTK.Graphics.OpenGL4.ImageTarget.Texture3D; - var _TextureRectangle = OpenTK.Graphics.OpenGL4.ImageTarget.TextureRectangle; - var _TextureCubeMap = OpenTK.Graphics.OpenGL4.ImageTarget.TextureCubeMap; - var _Texture1DArray = OpenTK.Graphics.OpenGL4.ImageTarget.Texture1DArray; - var _Texture2DArray = OpenTK.Graphics.OpenGL4.ImageTarget.Texture2DArray; - var _TextureBuffer = OpenTK.Graphics.OpenGL4.ImageTarget.TextureBuffer; - var _Renderbuffer = OpenTK.Graphics.OpenGL4.ImageTarget.Renderbuffer; - var _TextureCubeMapArray = OpenTK.Graphics.OpenGL4.ImageTarget.TextureCubeMapArray; - var _Texture2DMultisample = OpenTK.Graphics.OpenGL4.ImageTarget.Texture2DMultisample; - var _Texture2DMultisampleArray = OpenTK.Graphics.OpenGL4.ImageTarget.Texture2DMultisampleArray; -} -static void Test_IndexedEnableCap_37580() { - var _Blend = OpenTK.Graphics.OpenGL4.IndexedEnableCap.Blend; - var _ScissorTest = OpenTK.Graphics.OpenGL4.IndexedEnableCap.ScissorTest; -} -static void Test_IndexPointerType_37581() { - var _Short = OpenTK.Graphics.OpenGL4.IndexPointerType.Short; - var _Int = OpenTK.Graphics.OpenGL4.IndexPointerType.Int; - var _Float = OpenTK.Graphics.OpenGL4.IndexPointerType.Float; - var _Double = OpenTK.Graphics.OpenGL4.IndexPointerType.Double; -} -static void Test_InterleavedArrayFormat_37582() { -} -static void Test_InternalFormat_37583() { - var _R3G3B2 = OpenTK.Graphics.OpenGL4.InternalFormat.R3G3B2; - var _Rgb2Ext = OpenTK.Graphics.OpenGL4.InternalFormat.Rgb2Ext; - var _Rgb4 = OpenTK.Graphics.OpenGL4.InternalFormat.Rgb4; - var _Rgb5 = OpenTK.Graphics.OpenGL4.InternalFormat.Rgb5; - var _Rgb8 = OpenTK.Graphics.OpenGL4.InternalFormat.Rgb8; - var _Rgb10 = OpenTK.Graphics.OpenGL4.InternalFormat.Rgb10; - var _Rgb12 = OpenTK.Graphics.OpenGL4.InternalFormat.Rgb12; - var _Rgb16 = OpenTK.Graphics.OpenGL4.InternalFormat.Rgb16; - var _Rgba2 = OpenTK.Graphics.OpenGL4.InternalFormat.Rgba2; - var _Rgba4 = OpenTK.Graphics.OpenGL4.InternalFormat.Rgba4; - var _Rgb5A1 = OpenTK.Graphics.OpenGL4.InternalFormat.Rgb5A1; - var _Rgba8 = OpenTK.Graphics.OpenGL4.InternalFormat.Rgba8; - var _Rgb10A2 = OpenTK.Graphics.OpenGL4.InternalFormat.Rgb10A2; - var _Rgba12 = OpenTK.Graphics.OpenGL4.InternalFormat.Rgba12; - var _Rgba16 = OpenTK.Graphics.OpenGL4.InternalFormat.Rgba16; - var _DualAlpha4Sgis = OpenTK.Graphics.OpenGL4.InternalFormat.DualAlpha4Sgis; - var _DualAlpha8Sgis = OpenTK.Graphics.OpenGL4.InternalFormat.DualAlpha8Sgis; - var _DualAlpha12Sgis = OpenTK.Graphics.OpenGL4.InternalFormat.DualAlpha12Sgis; - var _DualAlpha16Sgis = OpenTK.Graphics.OpenGL4.InternalFormat.DualAlpha16Sgis; - var _DualLuminance4Sgis = OpenTK.Graphics.OpenGL4.InternalFormat.DualLuminance4Sgis; - var _DualLuminance8Sgis = OpenTK.Graphics.OpenGL4.InternalFormat.DualLuminance8Sgis; - var _DualLuminance12Sgis = OpenTK.Graphics.OpenGL4.InternalFormat.DualLuminance12Sgis; - var _DualLuminance16Sgis = OpenTK.Graphics.OpenGL4.InternalFormat.DualLuminance16Sgis; - var _DualIntensity4Sgis = OpenTK.Graphics.OpenGL4.InternalFormat.DualIntensity4Sgis; - var _DualIntensity8Sgis = OpenTK.Graphics.OpenGL4.InternalFormat.DualIntensity8Sgis; - var _DualIntensity12Sgis = OpenTK.Graphics.OpenGL4.InternalFormat.DualIntensity12Sgis; - var _DualIntensity16Sgis = OpenTK.Graphics.OpenGL4.InternalFormat.DualIntensity16Sgis; - var _DualLuminanceAlpha4Sgis = OpenTK.Graphics.OpenGL4.InternalFormat.DualLuminanceAlpha4Sgis; - var _DualLuminanceAlpha8Sgis = OpenTK.Graphics.OpenGL4.InternalFormat.DualLuminanceAlpha8Sgis; - var _QuadAlpha4Sgis = OpenTK.Graphics.OpenGL4.InternalFormat.QuadAlpha4Sgis; - var _QuadAlpha8Sgis = OpenTK.Graphics.OpenGL4.InternalFormat.QuadAlpha8Sgis; - var _QuadLuminance4Sgis = OpenTK.Graphics.OpenGL4.InternalFormat.QuadLuminance4Sgis; - var _QuadLuminance8Sgis = OpenTK.Graphics.OpenGL4.InternalFormat.QuadLuminance8Sgis; - var _QuadIntensity4Sgis = OpenTK.Graphics.OpenGL4.InternalFormat.QuadIntensity4Sgis; - var _QuadIntensity8Sgis = OpenTK.Graphics.OpenGL4.InternalFormat.QuadIntensity8Sgis; - var _DepthComponent16Sgix = OpenTK.Graphics.OpenGL4.InternalFormat.DepthComponent16Sgix; - var _DepthComponent24Sgix = OpenTK.Graphics.OpenGL4.InternalFormat.DepthComponent24Sgix; - var _DepthComponent32Sgix = OpenTK.Graphics.OpenGL4.InternalFormat.DepthComponent32Sgix; -} -static void Test_InternalFormatParameter_37584() { - var _Samples = OpenTK.Graphics.OpenGL4.InternalFormatParameter.Samples; - var _InternalformatSupported = OpenTK.Graphics.OpenGL4.InternalFormatParameter.InternalformatSupported; - var _InternalformatPreferred = OpenTK.Graphics.OpenGL4.InternalFormatParameter.InternalformatPreferred; - var _InternalformatRedSize = OpenTK.Graphics.OpenGL4.InternalFormatParameter.InternalformatRedSize; - var _InternalformatGreenSize = OpenTK.Graphics.OpenGL4.InternalFormatParameter.InternalformatGreenSize; - var _InternalformatBlueSize = OpenTK.Graphics.OpenGL4.InternalFormatParameter.InternalformatBlueSize; - var _InternalformatAlphaSize = OpenTK.Graphics.OpenGL4.InternalFormatParameter.InternalformatAlphaSize; - var _InternalformatDepthSize = OpenTK.Graphics.OpenGL4.InternalFormatParameter.InternalformatDepthSize; - var _InternalformatStencilSize = OpenTK.Graphics.OpenGL4.InternalFormatParameter.InternalformatStencilSize; - var _InternalformatSharedSize = OpenTK.Graphics.OpenGL4.InternalFormatParameter.InternalformatSharedSize; - var _InternalformatRedType = OpenTK.Graphics.OpenGL4.InternalFormatParameter.InternalformatRedType; - var _InternalformatGreenType = OpenTK.Graphics.OpenGL4.InternalFormatParameter.InternalformatGreenType; - var _InternalformatBlueType = OpenTK.Graphics.OpenGL4.InternalFormatParameter.InternalformatBlueType; - var _InternalformatAlphaType = OpenTK.Graphics.OpenGL4.InternalFormatParameter.InternalformatAlphaType; - var _InternalformatDepthType = OpenTK.Graphics.OpenGL4.InternalFormatParameter.InternalformatDepthType; - var _InternalformatStencilType = OpenTK.Graphics.OpenGL4.InternalFormatParameter.InternalformatStencilType; - var _MaxWidth = OpenTK.Graphics.OpenGL4.InternalFormatParameter.MaxWidth; - var _MaxHeight = OpenTK.Graphics.OpenGL4.InternalFormatParameter.MaxHeight; - var _MaxDepth = OpenTK.Graphics.OpenGL4.InternalFormatParameter.MaxDepth; - var _MaxLayers = OpenTK.Graphics.OpenGL4.InternalFormatParameter.MaxLayers; - var _MaxCombinedDimensions = OpenTK.Graphics.OpenGL4.InternalFormatParameter.MaxCombinedDimensions; - var _ColorComponents = OpenTK.Graphics.OpenGL4.InternalFormatParameter.ColorComponents; - var _DepthComponents = OpenTK.Graphics.OpenGL4.InternalFormatParameter.DepthComponents; - var _StencilComponents = OpenTK.Graphics.OpenGL4.InternalFormatParameter.StencilComponents; - var _ColorRenderable = OpenTK.Graphics.OpenGL4.InternalFormatParameter.ColorRenderable; - var _DepthRenderable = OpenTK.Graphics.OpenGL4.InternalFormatParameter.DepthRenderable; - var _StencilRenderable = OpenTK.Graphics.OpenGL4.InternalFormatParameter.StencilRenderable; - var _FramebufferRenderable = OpenTK.Graphics.OpenGL4.InternalFormatParameter.FramebufferRenderable; - var _FramebufferRenderableLayered = OpenTK.Graphics.OpenGL4.InternalFormatParameter.FramebufferRenderableLayered; - var _FramebufferBlend = OpenTK.Graphics.OpenGL4.InternalFormatParameter.FramebufferBlend; - var _ReadPixelsFormat = OpenTK.Graphics.OpenGL4.InternalFormatParameter.ReadPixelsFormat; - var _ReadPixelsType = OpenTK.Graphics.OpenGL4.InternalFormatParameter.ReadPixelsType; - var _TextureImageFormat = OpenTK.Graphics.OpenGL4.InternalFormatParameter.TextureImageFormat; - var _TextureImageType = OpenTK.Graphics.OpenGL4.InternalFormatParameter.TextureImageType; - var _GetTextureImageFormat = OpenTK.Graphics.OpenGL4.InternalFormatParameter.GetTextureImageFormat; - var _GetTextureImageType = OpenTK.Graphics.OpenGL4.InternalFormatParameter.GetTextureImageType; - var _Mipmap = OpenTK.Graphics.OpenGL4.InternalFormatParameter.Mipmap; - var _ManualGenerateMipmap = OpenTK.Graphics.OpenGL4.InternalFormatParameter.ManualGenerateMipmap; - var _ColorEncoding = OpenTK.Graphics.OpenGL4.InternalFormatParameter.ColorEncoding; - var _SrgbRead = OpenTK.Graphics.OpenGL4.InternalFormatParameter.SrgbRead; - var _SrgbWrite = OpenTK.Graphics.OpenGL4.InternalFormatParameter.SrgbWrite; - var _Filter = OpenTK.Graphics.OpenGL4.InternalFormatParameter.Filter; - var _VertexTexture = OpenTK.Graphics.OpenGL4.InternalFormatParameter.VertexTexture; - var _TessControlTexture = OpenTK.Graphics.OpenGL4.InternalFormatParameter.TessControlTexture; - var _TessEvaluationTexture = OpenTK.Graphics.OpenGL4.InternalFormatParameter.TessEvaluationTexture; - var _GeometryTexture = OpenTK.Graphics.OpenGL4.InternalFormatParameter.GeometryTexture; - var _FragmentTexture = OpenTK.Graphics.OpenGL4.InternalFormatParameter.FragmentTexture; - var _ComputeTexture = OpenTK.Graphics.OpenGL4.InternalFormatParameter.ComputeTexture; - var _TextureShadow = OpenTK.Graphics.OpenGL4.InternalFormatParameter.TextureShadow; - var _TextureGather = OpenTK.Graphics.OpenGL4.InternalFormatParameter.TextureGather; - var _TextureGatherShadow = OpenTK.Graphics.OpenGL4.InternalFormatParameter.TextureGatherShadow; - var _ShaderImageLoad = OpenTK.Graphics.OpenGL4.InternalFormatParameter.ShaderImageLoad; - var _ShaderImageStore = OpenTK.Graphics.OpenGL4.InternalFormatParameter.ShaderImageStore; - var _ShaderImageAtomic = OpenTK.Graphics.OpenGL4.InternalFormatParameter.ShaderImageAtomic; - var _ImageTexelSize = OpenTK.Graphics.OpenGL4.InternalFormatParameter.ImageTexelSize; - var _ImageCompatibilityClass = OpenTK.Graphics.OpenGL4.InternalFormatParameter.ImageCompatibilityClass; - var _ImagePixelFormat = OpenTK.Graphics.OpenGL4.InternalFormatParameter.ImagePixelFormat; - var _ImagePixelType = OpenTK.Graphics.OpenGL4.InternalFormatParameter.ImagePixelType; - var _SimultaneousTextureAndDepthTest = OpenTK.Graphics.OpenGL4.InternalFormatParameter.SimultaneousTextureAndDepthTest; - var _SimultaneousTextureAndStencilTest = OpenTK.Graphics.OpenGL4.InternalFormatParameter.SimultaneousTextureAndStencilTest; - var _SimultaneousTextureAndStencilWrite = OpenTK.Graphics.OpenGL4.InternalFormatParameter.SimultaneousTextureAndStencilWrite; - var _TextureCompressedBlockWidth = OpenTK.Graphics.OpenGL4.InternalFormatParameter.TextureCompressedBlockWidth; - var _TextureCompressedBlockHeight = OpenTK.Graphics.OpenGL4.InternalFormatParameter.TextureCompressedBlockHeight; - var _TextureCompressedBlockSize = OpenTK.Graphics.OpenGL4.InternalFormatParameter.TextureCompressedBlockSize; - var _ClearBuffer = OpenTK.Graphics.OpenGL4.InternalFormatParameter.ClearBuffer; - var _TextureView = OpenTK.Graphics.OpenGL4.InternalFormatParameter.TextureView; - var _ViewCompatibilityClass = OpenTK.Graphics.OpenGL4.InternalFormatParameter.ViewCompatibilityClass; - var _TextureCompressed = OpenTK.Graphics.OpenGL4.InternalFormatParameter.TextureCompressed; - var _ImageFormatCompatibilityType = OpenTK.Graphics.OpenGL4.InternalFormatParameter.ImageFormatCompatibilityType; - var _ClearTexture = OpenTK.Graphics.OpenGL4.InternalFormatParameter.ClearTexture; - var _NumSampleCounts = OpenTK.Graphics.OpenGL4.InternalFormatParameter.NumSampleCounts; -} -static void Test_KhrDebug_37585() { - var _ContextFlagDebugBit = OpenTK.Graphics.OpenGL4.KhrDebug.ContextFlagDebugBit; - var _ContextFlagDebugBitKhr = OpenTK.Graphics.OpenGL4.KhrDebug.ContextFlagDebugBitKhr; - var _StackOverflow = OpenTK.Graphics.OpenGL4.KhrDebug.StackOverflow; - var _StackOverflowKhr = OpenTK.Graphics.OpenGL4.KhrDebug.StackOverflowKhr; - var _StackUnderflow = OpenTK.Graphics.OpenGL4.KhrDebug.StackUnderflow; - var _StackUnderflowKhr = OpenTK.Graphics.OpenGL4.KhrDebug.StackUnderflowKhr; - var _VertexArray = OpenTK.Graphics.OpenGL4.KhrDebug.VertexArray; - var _VertexArrayKhr = OpenTK.Graphics.OpenGL4.KhrDebug.VertexArrayKhr; - var _DebugOutputSynchronous = OpenTK.Graphics.OpenGL4.KhrDebug.DebugOutputSynchronous; - var _DebugOutputSynchronousKhr = OpenTK.Graphics.OpenGL4.KhrDebug.DebugOutputSynchronousKhr; - var _DebugNextLoggedMessageLength = OpenTK.Graphics.OpenGL4.KhrDebug.DebugNextLoggedMessageLength; - var _DebugNextLoggedMessageLengthKhr = OpenTK.Graphics.OpenGL4.KhrDebug.DebugNextLoggedMessageLengthKhr; - var _DebugCallbackFunction = OpenTK.Graphics.OpenGL4.KhrDebug.DebugCallbackFunction; - var _DebugCallbackFunctionKhr = OpenTK.Graphics.OpenGL4.KhrDebug.DebugCallbackFunctionKhr; - var _DebugCallbackUserParam = OpenTK.Graphics.OpenGL4.KhrDebug.DebugCallbackUserParam; - var _DebugCallbackUserParamKhr = OpenTK.Graphics.OpenGL4.KhrDebug.DebugCallbackUserParamKhr; - var _DebugSourceApi = OpenTK.Graphics.OpenGL4.KhrDebug.DebugSourceApi; - var _DebugSourceApiKhr = OpenTK.Graphics.OpenGL4.KhrDebug.DebugSourceApiKhr; - var _DebugSourceWindowSystem = OpenTK.Graphics.OpenGL4.KhrDebug.DebugSourceWindowSystem; - var _DebugSourceWindowSystemKhr = OpenTK.Graphics.OpenGL4.KhrDebug.DebugSourceWindowSystemKhr; - var _DebugSourceShaderCompiler = OpenTK.Graphics.OpenGL4.KhrDebug.DebugSourceShaderCompiler; - var _DebugSourceShaderCompilerKhr = OpenTK.Graphics.OpenGL4.KhrDebug.DebugSourceShaderCompilerKhr; - var _DebugSourceThirdParty = OpenTK.Graphics.OpenGL4.KhrDebug.DebugSourceThirdParty; - var _DebugSourceThirdPartyKhr = OpenTK.Graphics.OpenGL4.KhrDebug.DebugSourceThirdPartyKhr; - var _DebugSourceApplication = OpenTK.Graphics.OpenGL4.KhrDebug.DebugSourceApplication; - var _DebugSourceApplicationKhr = OpenTK.Graphics.OpenGL4.KhrDebug.DebugSourceApplicationKhr; - var _DebugSourceOther = OpenTK.Graphics.OpenGL4.KhrDebug.DebugSourceOther; - var _DebugSourceOtherKhr = OpenTK.Graphics.OpenGL4.KhrDebug.DebugSourceOtherKhr; - var _DebugTypeError = OpenTK.Graphics.OpenGL4.KhrDebug.DebugTypeError; - var _DebugTypeErrorKhr = OpenTK.Graphics.OpenGL4.KhrDebug.DebugTypeErrorKhr; - var _DebugTypeDeprecatedBehavior = OpenTK.Graphics.OpenGL4.KhrDebug.DebugTypeDeprecatedBehavior; - var _DebugTypeDeprecatedBehaviorKhr = OpenTK.Graphics.OpenGL4.KhrDebug.DebugTypeDeprecatedBehaviorKhr; - var _DebugTypeUndefinedBehavior = OpenTK.Graphics.OpenGL4.KhrDebug.DebugTypeUndefinedBehavior; - var _DebugTypeUndefinedBehaviorKhr = OpenTK.Graphics.OpenGL4.KhrDebug.DebugTypeUndefinedBehaviorKhr; - var _DebugTypePortability = OpenTK.Graphics.OpenGL4.KhrDebug.DebugTypePortability; - var _DebugTypePortabilityKhr = OpenTK.Graphics.OpenGL4.KhrDebug.DebugTypePortabilityKhr; - var _DebugTypePerformance = OpenTK.Graphics.OpenGL4.KhrDebug.DebugTypePerformance; - var _DebugTypePerformanceKhr = OpenTK.Graphics.OpenGL4.KhrDebug.DebugTypePerformanceKhr; - var _DebugTypeOther = OpenTK.Graphics.OpenGL4.KhrDebug.DebugTypeOther; - var _DebugTypeOtherKhr = OpenTK.Graphics.OpenGL4.KhrDebug.DebugTypeOtherKhr; - var _DebugTypeMarker = OpenTK.Graphics.OpenGL4.KhrDebug.DebugTypeMarker; - var _DebugTypeMarkerKhr = OpenTK.Graphics.OpenGL4.KhrDebug.DebugTypeMarkerKhr; - var _DebugTypePushGroup = OpenTK.Graphics.OpenGL4.KhrDebug.DebugTypePushGroup; - var _DebugTypePushGroupKhr = OpenTK.Graphics.OpenGL4.KhrDebug.DebugTypePushGroupKhr; - var _DebugTypePopGroup = OpenTK.Graphics.OpenGL4.KhrDebug.DebugTypePopGroup; - var _DebugTypePopGroupKhr = OpenTK.Graphics.OpenGL4.KhrDebug.DebugTypePopGroupKhr; - var _DebugSeverityNotification = OpenTK.Graphics.OpenGL4.KhrDebug.DebugSeverityNotification; - var _DebugSeverityNotificationKhr = OpenTK.Graphics.OpenGL4.KhrDebug.DebugSeverityNotificationKhr; - var _MaxDebugGroupStackDepth = OpenTK.Graphics.OpenGL4.KhrDebug.MaxDebugGroupStackDepth; - var _MaxDebugGroupStackDepthKhr = OpenTK.Graphics.OpenGL4.KhrDebug.MaxDebugGroupStackDepthKhr; - var _DebugGroupStackDepth = OpenTK.Graphics.OpenGL4.KhrDebug.DebugGroupStackDepth; - var _DebugGroupStackDepthKhr = OpenTK.Graphics.OpenGL4.KhrDebug.DebugGroupStackDepthKhr; - var _Buffer = OpenTK.Graphics.OpenGL4.KhrDebug.Buffer; - var _BufferKhr = OpenTK.Graphics.OpenGL4.KhrDebug.BufferKhr; - var _Shader = OpenTK.Graphics.OpenGL4.KhrDebug.Shader; - var _ShaderKhr = OpenTK.Graphics.OpenGL4.KhrDebug.ShaderKhr; - var _Program = OpenTK.Graphics.OpenGL4.KhrDebug.Program; - var _ProgramKhr = OpenTK.Graphics.OpenGL4.KhrDebug.ProgramKhr; - var _Query = OpenTK.Graphics.OpenGL4.KhrDebug.Query; - var _QueryKhr = OpenTK.Graphics.OpenGL4.KhrDebug.QueryKhr; - var _ProgramPipeline = OpenTK.Graphics.OpenGL4.KhrDebug.ProgramPipeline; - var _Sampler = OpenTK.Graphics.OpenGL4.KhrDebug.Sampler; - var _SamplerKhr = OpenTK.Graphics.OpenGL4.KhrDebug.SamplerKhr; - var _DisplayList = OpenTK.Graphics.OpenGL4.KhrDebug.DisplayList; - var _MaxLabelLength = OpenTK.Graphics.OpenGL4.KhrDebug.MaxLabelLength; - var _MaxLabelLengthKhr = OpenTK.Graphics.OpenGL4.KhrDebug.MaxLabelLengthKhr; - var _MaxDebugMessageLength = OpenTK.Graphics.OpenGL4.KhrDebug.MaxDebugMessageLength; - var _MaxDebugMessageLengthKhr = OpenTK.Graphics.OpenGL4.KhrDebug.MaxDebugMessageLengthKhr; - var _MaxDebugLoggedMessages = OpenTK.Graphics.OpenGL4.KhrDebug.MaxDebugLoggedMessages; - var _MaxDebugLoggedMessagesKhr = OpenTK.Graphics.OpenGL4.KhrDebug.MaxDebugLoggedMessagesKhr; - var _DebugLoggedMessages = OpenTK.Graphics.OpenGL4.KhrDebug.DebugLoggedMessages; - var _DebugLoggedMessagesKhr = OpenTK.Graphics.OpenGL4.KhrDebug.DebugLoggedMessagesKhr; - var _DebugSeverityHigh = OpenTK.Graphics.OpenGL4.KhrDebug.DebugSeverityHigh; - var _DebugSeverityHighKhr = OpenTK.Graphics.OpenGL4.KhrDebug.DebugSeverityHighKhr; - var _DebugSeverityMedium = OpenTK.Graphics.OpenGL4.KhrDebug.DebugSeverityMedium; - var _DebugSeverityMediumKhr = OpenTK.Graphics.OpenGL4.KhrDebug.DebugSeverityMediumKhr; - var _DebugSeverityLow = OpenTK.Graphics.OpenGL4.KhrDebug.DebugSeverityLow; - var _DebugSeverityLowKhr = OpenTK.Graphics.OpenGL4.KhrDebug.DebugSeverityLowKhr; - var _DebugOutput = OpenTK.Graphics.OpenGL4.KhrDebug.DebugOutput; - var _DebugOutputKhr = OpenTK.Graphics.OpenGL4.KhrDebug.DebugOutputKhr; -} -static void Test_KhrTextureCompressionAstcHdr_37586() { - var _CompressedRgbaAstc4X4Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcHdr.CompressedRgbaAstc4X4Khr; - var _CompressedRgbaAstc5X4Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcHdr.CompressedRgbaAstc5X4Khr; - var _CompressedRgbaAstc5X5Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcHdr.CompressedRgbaAstc5X5Khr; - var _CompressedRgbaAstc6X5Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcHdr.CompressedRgbaAstc6X5Khr; - var _CompressedRgbaAstc6X6Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcHdr.CompressedRgbaAstc6X6Khr; - var _CompressedRgbaAstc8X5Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcHdr.CompressedRgbaAstc8X5Khr; - var _CompressedRgbaAstc8X6Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcHdr.CompressedRgbaAstc8X6Khr; - var _CompressedRgbaAstc8X8Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcHdr.CompressedRgbaAstc8X8Khr; - var _CompressedRgbaAstc10X5Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcHdr.CompressedRgbaAstc10X5Khr; - var _CompressedRgbaAstc10X6Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcHdr.CompressedRgbaAstc10X6Khr; - var _CompressedRgbaAstc10X8Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcHdr.CompressedRgbaAstc10X8Khr; - var _CompressedRgbaAstc10X10Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcHdr.CompressedRgbaAstc10X10Khr; - var _CompressedRgbaAstc12X10Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcHdr.CompressedRgbaAstc12X10Khr; - var _CompressedRgbaAstc12X12Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcHdr.CompressedRgbaAstc12X12Khr; - var _CompressedSrgb8Alpha8Astc4X4Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc4X4Khr; - var _CompressedSrgb8Alpha8Astc5X4Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc5X4Khr; - var _CompressedSrgb8Alpha8Astc5X5Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc5X5Khr; - var _CompressedSrgb8Alpha8Astc6X5Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc6X5Khr; - var _CompressedSrgb8Alpha8Astc6X6Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc6X6Khr; - var _CompressedSrgb8Alpha8Astc8X5Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc8X5Khr; - var _CompressedSrgb8Alpha8Astc8X6Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc8X6Khr; - var _CompressedSrgb8Alpha8Astc8X8Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc8X8Khr; - var _CompressedSrgb8Alpha8Astc10X5Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc10X5Khr; - var _CompressedSrgb8Alpha8Astc10X6Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc10X6Khr; - var _CompressedSrgb8Alpha8Astc10X8Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc10X8Khr; - var _CompressedSrgb8Alpha8Astc10X10Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc10X10Khr; - var _CompressedSrgb8Alpha8Astc12X10Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc12X10Khr; - var _CompressedSrgb8Alpha8Astc12X12Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc12X12Khr; -} -static void Test_KhrTextureCompressionAstcLdr_37587() { - var _CompressedRgbaAstc4X4Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcLdr.CompressedRgbaAstc4X4Khr; - var _CompressedRgbaAstc5X4Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcLdr.CompressedRgbaAstc5X4Khr; - var _CompressedRgbaAstc5X5Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcLdr.CompressedRgbaAstc5X5Khr; - var _CompressedRgbaAstc6X5Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcLdr.CompressedRgbaAstc6X5Khr; - var _CompressedRgbaAstc6X6Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcLdr.CompressedRgbaAstc6X6Khr; - var _CompressedRgbaAstc8X5Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcLdr.CompressedRgbaAstc8X5Khr; - var _CompressedRgbaAstc8X6Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcLdr.CompressedRgbaAstc8X6Khr; - var _CompressedRgbaAstc8X8Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcLdr.CompressedRgbaAstc8X8Khr; - var _CompressedRgbaAstc10X5Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcLdr.CompressedRgbaAstc10X5Khr; - var _CompressedRgbaAstc10X6Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcLdr.CompressedRgbaAstc10X6Khr; - var _CompressedRgbaAstc10X8Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcLdr.CompressedRgbaAstc10X8Khr; - var _CompressedRgbaAstc10X10Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcLdr.CompressedRgbaAstc10X10Khr; - var _CompressedRgbaAstc12X10Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcLdr.CompressedRgbaAstc12X10Khr; - var _CompressedRgbaAstc12X12Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcLdr.CompressedRgbaAstc12X12Khr; - var _CompressedSrgb8Alpha8Astc4X4Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc4X4Khr; - var _CompressedSrgb8Alpha8Astc5X4Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc5X4Khr; - var _CompressedSrgb8Alpha8Astc5X5Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc5X5Khr; - var _CompressedSrgb8Alpha8Astc6X5Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc6X5Khr; - var _CompressedSrgb8Alpha8Astc6X6Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc6X6Khr; - var _CompressedSrgb8Alpha8Astc8X5Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc8X5Khr; - var _CompressedSrgb8Alpha8Astc8X6Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc8X6Khr; - var _CompressedSrgb8Alpha8Astc8X8Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc8X8Khr; - var _CompressedSrgb8Alpha8Astc10X5Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc10X5Khr; - var _CompressedSrgb8Alpha8Astc10X6Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc10X6Khr; - var _CompressedSrgb8Alpha8Astc10X8Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc10X8Khr; - var _CompressedSrgb8Alpha8Astc10X10Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc10X10Khr; - var _CompressedSrgb8Alpha8Astc12X10Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc12X10Khr; - var _CompressedSrgb8Alpha8Astc12X12Khr = OpenTK.Graphics.OpenGL4.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc12X12Khr; -} -static void Test_LightEnvModeSgix_37588() { - var _Add = OpenTK.Graphics.OpenGL4.LightEnvModeSgix.Add; - var _Replace = OpenTK.Graphics.OpenGL4.LightEnvModeSgix.Replace; -} -static void Test_LightEnvParameterSgix_37589() { - var _LightEnvModeSgix = OpenTK.Graphics.OpenGL4.LightEnvParameterSgix.LightEnvModeSgix; -} -static void Test_LightModelColorControl_37590() { - var _SingleColor = OpenTK.Graphics.OpenGL4.LightModelColorControl.SingleColor; - var _SingleColorExt = OpenTK.Graphics.OpenGL4.LightModelColorControl.SingleColorExt; - var _SeparateSpecularColor = OpenTK.Graphics.OpenGL4.LightModelColorControl.SeparateSpecularColor; - var _SeparateSpecularColorExt = OpenTK.Graphics.OpenGL4.LightModelColorControl.SeparateSpecularColorExt; -} -static void Test_LightModelParameter_37591() { - var _LightModelLocalViewer = OpenTK.Graphics.OpenGL4.LightModelParameter.LightModelLocalViewer; - var _LightModelTwoSide = OpenTK.Graphics.OpenGL4.LightModelParameter.LightModelTwoSide; - var _LightModelAmbient = OpenTK.Graphics.OpenGL4.LightModelParameter.LightModelAmbient; - var _LightModelColorControl = OpenTK.Graphics.OpenGL4.LightModelParameter.LightModelColorControl; - var _LightModelColorControlExt = OpenTK.Graphics.OpenGL4.LightModelParameter.LightModelColorControlExt; -} -static void Test_LightName_37592() { - var _Light0 = OpenTK.Graphics.OpenGL4.LightName.Light0; - var _Light1 = OpenTK.Graphics.OpenGL4.LightName.Light1; - var _Light2 = OpenTK.Graphics.OpenGL4.LightName.Light2; - var _Light3 = OpenTK.Graphics.OpenGL4.LightName.Light3; - var _Light4 = OpenTK.Graphics.OpenGL4.LightName.Light4; - var _Light5 = OpenTK.Graphics.OpenGL4.LightName.Light5; - var _Light6 = OpenTK.Graphics.OpenGL4.LightName.Light6; - var _Light7 = OpenTK.Graphics.OpenGL4.LightName.Light7; - var _FragmentLight0Sgix = OpenTK.Graphics.OpenGL4.LightName.FragmentLight0Sgix; - var _FragmentLight1Sgix = OpenTK.Graphics.OpenGL4.LightName.FragmentLight1Sgix; - var _FragmentLight2Sgix = OpenTK.Graphics.OpenGL4.LightName.FragmentLight2Sgix; - var _FragmentLight3Sgix = OpenTK.Graphics.OpenGL4.LightName.FragmentLight3Sgix; - var _FragmentLight4Sgix = OpenTK.Graphics.OpenGL4.LightName.FragmentLight4Sgix; - var _FragmentLight5Sgix = OpenTK.Graphics.OpenGL4.LightName.FragmentLight5Sgix; - var _FragmentLight6Sgix = OpenTK.Graphics.OpenGL4.LightName.FragmentLight6Sgix; - var _FragmentLight7Sgix = OpenTK.Graphics.OpenGL4.LightName.FragmentLight7Sgix; -} -static void Test_LightParameter_37593() { - var _Ambient = OpenTK.Graphics.OpenGL4.LightParameter.Ambient; - var _Diffuse = OpenTK.Graphics.OpenGL4.LightParameter.Diffuse; - var _Specular = OpenTK.Graphics.OpenGL4.LightParameter.Specular; -} -static void Test_ListMode_37594() { -} -static void Test_ListNameType_37595() { - var _Byte = OpenTK.Graphics.OpenGL4.ListNameType.Byte; - var _UnsignedByte = OpenTK.Graphics.OpenGL4.ListNameType.UnsignedByte; - var _Short = OpenTK.Graphics.OpenGL4.ListNameType.Short; - var _UnsignedShort = OpenTK.Graphics.OpenGL4.ListNameType.UnsignedShort; - var _Int = OpenTK.Graphics.OpenGL4.ListNameType.Int; - var _UnsignedInt = OpenTK.Graphics.OpenGL4.ListNameType.UnsignedInt; - var _Float = OpenTK.Graphics.OpenGL4.ListNameType.Float; -} -static void Test_ListParameterName_37596() { - var _ListPrioritySgix = OpenTK.Graphics.OpenGL4.ListParameterName.ListPrioritySgix; -} -static void Test_LogicOp_37597() { - var _Clear = OpenTK.Graphics.OpenGL4.LogicOp.Clear; - var _And = OpenTK.Graphics.OpenGL4.LogicOp.And; - var _AndReverse = OpenTK.Graphics.OpenGL4.LogicOp.AndReverse; - var _Copy = OpenTK.Graphics.OpenGL4.LogicOp.Copy; - var _AndInverted = OpenTK.Graphics.OpenGL4.LogicOp.AndInverted; - var _Noop = OpenTK.Graphics.OpenGL4.LogicOp.Noop; - var _Xor = OpenTK.Graphics.OpenGL4.LogicOp.Xor; - var _Or = OpenTK.Graphics.OpenGL4.LogicOp.Or; - var _Nor = OpenTK.Graphics.OpenGL4.LogicOp.Nor; - var _Equiv = OpenTK.Graphics.OpenGL4.LogicOp.Equiv; - var _Invert = OpenTK.Graphics.OpenGL4.LogicOp.Invert; - var _OrReverse = OpenTK.Graphics.OpenGL4.LogicOp.OrReverse; - var _CopyInverted = OpenTK.Graphics.OpenGL4.LogicOp.CopyInverted; - var _OrInverted = OpenTK.Graphics.OpenGL4.LogicOp.OrInverted; - var _Nand = OpenTK.Graphics.OpenGL4.LogicOp.Nand; - var _Set = OpenTK.Graphics.OpenGL4.LogicOp.Set; -} -static void Test_MapBufferUsageMask_37598() { - var _MapReadBit = OpenTK.Graphics.OpenGL4.MapBufferUsageMask.MapReadBit; - var _MapReadBitExt = OpenTK.Graphics.OpenGL4.MapBufferUsageMask.MapReadBitExt; - var _MapWriteBit = OpenTK.Graphics.OpenGL4.MapBufferUsageMask.MapWriteBit; - var _MapWriteBitExt = OpenTK.Graphics.OpenGL4.MapBufferUsageMask.MapWriteBitExt; - var _MapInvalidateRangeBit = OpenTK.Graphics.OpenGL4.MapBufferUsageMask.MapInvalidateRangeBit; - var _MapInvalidateRangeBitExt = OpenTK.Graphics.OpenGL4.MapBufferUsageMask.MapInvalidateRangeBitExt; - var _MapInvalidateBufferBit = OpenTK.Graphics.OpenGL4.MapBufferUsageMask.MapInvalidateBufferBit; - var _MapInvalidateBufferBitExt = OpenTK.Graphics.OpenGL4.MapBufferUsageMask.MapInvalidateBufferBitExt; - var _MapFlushExplicitBit = OpenTK.Graphics.OpenGL4.MapBufferUsageMask.MapFlushExplicitBit; - var _MapFlushExplicitBitExt = OpenTK.Graphics.OpenGL4.MapBufferUsageMask.MapFlushExplicitBitExt; - var _MapUnsynchronizedBit = OpenTK.Graphics.OpenGL4.MapBufferUsageMask.MapUnsynchronizedBit; - var _MapUnsynchronizedBitExt = OpenTK.Graphics.OpenGL4.MapBufferUsageMask.MapUnsynchronizedBitExt; - var _MapPersistentBit = OpenTK.Graphics.OpenGL4.MapBufferUsageMask.MapPersistentBit; - var _MapCoherentBit = OpenTK.Graphics.OpenGL4.MapBufferUsageMask.MapCoherentBit; - var _DynamicStorageBit = OpenTK.Graphics.OpenGL4.MapBufferUsageMask.DynamicStorageBit; - var _ClientStorageBit = OpenTK.Graphics.OpenGL4.MapBufferUsageMask.ClientStorageBit; -} -static void Test_MapTarget_37599() { - var _Map1Color4 = OpenTK.Graphics.OpenGL4.MapTarget.Map1Color4; - var _Map1Index = OpenTK.Graphics.OpenGL4.MapTarget.Map1Index; - var _Map1Normal = OpenTK.Graphics.OpenGL4.MapTarget.Map1Normal; - var _Map1TextureCoord1 = OpenTK.Graphics.OpenGL4.MapTarget.Map1TextureCoord1; - var _Map1TextureCoord2 = OpenTK.Graphics.OpenGL4.MapTarget.Map1TextureCoord2; - var _Map1TextureCoord3 = OpenTK.Graphics.OpenGL4.MapTarget.Map1TextureCoord3; - var _Map1TextureCoord4 = OpenTK.Graphics.OpenGL4.MapTarget.Map1TextureCoord4; - var _Map1Vertex3 = OpenTK.Graphics.OpenGL4.MapTarget.Map1Vertex3; - var _Map1Vertex4 = OpenTK.Graphics.OpenGL4.MapTarget.Map1Vertex4; - var _Map2Color4 = OpenTK.Graphics.OpenGL4.MapTarget.Map2Color4; - var _Map2Index = OpenTK.Graphics.OpenGL4.MapTarget.Map2Index; - var _Map2Normal = OpenTK.Graphics.OpenGL4.MapTarget.Map2Normal; - var _Map2TextureCoord1 = OpenTK.Graphics.OpenGL4.MapTarget.Map2TextureCoord1; - var _Map2TextureCoord2 = OpenTK.Graphics.OpenGL4.MapTarget.Map2TextureCoord2; - var _Map2TextureCoord3 = OpenTK.Graphics.OpenGL4.MapTarget.Map2TextureCoord3; - var _Map2TextureCoord4 = OpenTK.Graphics.OpenGL4.MapTarget.Map2TextureCoord4; - var _Map2Vertex3 = OpenTK.Graphics.OpenGL4.MapTarget.Map2Vertex3; - var _Map2Vertex4 = OpenTK.Graphics.OpenGL4.MapTarget.Map2Vertex4; - var _GeometryDeformationSgix = OpenTK.Graphics.OpenGL4.MapTarget.GeometryDeformationSgix; - var _TextureDeformationSgix = OpenTK.Graphics.OpenGL4.MapTarget.TextureDeformationSgix; -} -static void Test_MapTextureFormatIntel_37600() { - var _LayoutDefaultIntel = OpenTK.Graphics.OpenGL4.MapTextureFormatIntel.LayoutDefaultIntel; - var _LayoutLinearIntel = OpenTK.Graphics.OpenGL4.MapTextureFormatIntel.LayoutLinearIntel; - var _LayoutLinearCpuCachedIntel = OpenTK.Graphics.OpenGL4.MapTextureFormatIntel.LayoutLinearCpuCachedIntel; -} -static void Test_MaterialFace_37601() { - var _Front = OpenTK.Graphics.OpenGL4.MaterialFace.Front; - var _Back = OpenTK.Graphics.OpenGL4.MaterialFace.Back; - var _FrontAndBack = OpenTK.Graphics.OpenGL4.MaterialFace.FrontAndBack; -} -static void Test_MaterialParameter_37602() { - var _Ambient = OpenTK.Graphics.OpenGL4.MaterialParameter.Ambient; - var _Diffuse = OpenTK.Graphics.OpenGL4.MaterialParameter.Diffuse; - var _Specular = OpenTK.Graphics.OpenGL4.MaterialParameter.Specular; - var _Emission = OpenTK.Graphics.OpenGL4.MaterialParameter.Emission; - var _AmbientAndDiffuse = OpenTK.Graphics.OpenGL4.MaterialParameter.AmbientAndDiffuse; -} -static void Test_MatrixMode_37603() { - var _Modelview0Ext = OpenTK.Graphics.OpenGL4.MatrixMode.Modelview0Ext; - var _Texture = OpenTK.Graphics.OpenGL4.MatrixMode.Texture; - var _Color = OpenTK.Graphics.OpenGL4.MatrixMode.Color; -} -static void Test_MatrixModeArb_37604() { - var _Texture = OpenTK.Graphics.OpenGL4.MatrixModeArb.Texture; - var _Color = OpenTK.Graphics.OpenGL4.MatrixModeArb.Color; - var _Matrix0 = OpenTK.Graphics.OpenGL4.MatrixModeArb.Matrix0; - var _Matrix1 = OpenTK.Graphics.OpenGL4.MatrixModeArb.Matrix1; - var _Matrix2 = OpenTK.Graphics.OpenGL4.MatrixModeArb.Matrix2; - var _Matrix3 = OpenTK.Graphics.OpenGL4.MatrixModeArb.Matrix3; - var _Matrix4 = OpenTK.Graphics.OpenGL4.MatrixModeArb.Matrix4; - var _Matrix5 = OpenTK.Graphics.OpenGL4.MatrixModeArb.Matrix5; - var _Matrix6 = OpenTK.Graphics.OpenGL4.MatrixModeArb.Matrix6; - var _Matrix7 = OpenTK.Graphics.OpenGL4.MatrixModeArb.Matrix7; - var _Matrix8 = OpenTK.Graphics.OpenGL4.MatrixModeArb.Matrix8; - var _Matrix9 = OpenTK.Graphics.OpenGL4.MatrixModeArb.Matrix9; - var _Matrix10 = OpenTK.Graphics.OpenGL4.MatrixModeArb.Matrix10; - var _Matrix11 = OpenTK.Graphics.OpenGL4.MatrixModeArb.Matrix11; - var _Matrix12 = OpenTK.Graphics.OpenGL4.MatrixModeArb.Matrix12; - var _Matrix13 = OpenTK.Graphics.OpenGL4.MatrixModeArb.Matrix13; - var _Matrix14 = OpenTK.Graphics.OpenGL4.MatrixModeArb.Matrix14; - var _Matrix15 = OpenTK.Graphics.OpenGL4.MatrixModeArb.Matrix15; - var _Matrix16 = OpenTK.Graphics.OpenGL4.MatrixModeArb.Matrix16; - var _Matrix17 = OpenTK.Graphics.OpenGL4.MatrixModeArb.Matrix17; - var _Matrix18 = OpenTK.Graphics.OpenGL4.MatrixModeArb.Matrix18; - var _Matrix19 = OpenTK.Graphics.OpenGL4.MatrixModeArb.Matrix19; - var _Matrix20 = OpenTK.Graphics.OpenGL4.MatrixModeArb.Matrix20; - var _Matrix21 = OpenTK.Graphics.OpenGL4.MatrixModeArb.Matrix21; - var _Matrix22 = OpenTK.Graphics.OpenGL4.MatrixModeArb.Matrix22; - var _Matrix23 = OpenTK.Graphics.OpenGL4.MatrixModeArb.Matrix23; - var _Matrix24 = OpenTK.Graphics.OpenGL4.MatrixModeArb.Matrix24; - var _Matrix25 = OpenTK.Graphics.OpenGL4.MatrixModeArb.Matrix25; - var _Matrix26 = OpenTK.Graphics.OpenGL4.MatrixModeArb.Matrix26; - var _Matrix27 = OpenTK.Graphics.OpenGL4.MatrixModeArb.Matrix27; - var _Matrix28 = OpenTK.Graphics.OpenGL4.MatrixModeArb.Matrix28; - var _Matrix29 = OpenTK.Graphics.OpenGL4.MatrixModeArb.Matrix29; - var _Matrix30 = OpenTK.Graphics.OpenGL4.MatrixModeArb.Matrix30; - var _Matrix31 = OpenTK.Graphics.OpenGL4.MatrixModeArb.Matrix31; -} -static void Test_MemoryBarrierFlags_37605() { - var _VertexAttribArrayBarrierBit = OpenTK.Graphics.OpenGL4.MemoryBarrierFlags.VertexAttribArrayBarrierBit; - var _ElementArrayBarrierBit = OpenTK.Graphics.OpenGL4.MemoryBarrierFlags.ElementArrayBarrierBit; - var _UniformBarrierBit = OpenTK.Graphics.OpenGL4.MemoryBarrierFlags.UniformBarrierBit; - var _TextureFetchBarrierBit = OpenTK.Graphics.OpenGL4.MemoryBarrierFlags.TextureFetchBarrierBit; - var _ShaderImageAccessBarrierBit = OpenTK.Graphics.OpenGL4.MemoryBarrierFlags.ShaderImageAccessBarrierBit; - var _CommandBarrierBit = OpenTK.Graphics.OpenGL4.MemoryBarrierFlags.CommandBarrierBit; - var _PixelBufferBarrierBit = OpenTK.Graphics.OpenGL4.MemoryBarrierFlags.PixelBufferBarrierBit; - var _TextureUpdateBarrierBit = OpenTK.Graphics.OpenGL4.MemoryBarrierFlags.TextureUpdateBarrierBit; - var _BufferUpdateBarrierBit = OpenTK.Graphics.OpenGL4.MemoryBarrierFlags.BufferUpdateBarrierBit; - var _FramebufferBarrierBit = OpenTK.Graphics.OpenGL4.MemoryBarrierFlags.FramebufferBarrierBit; - var _TransformFeedbackBarrierBit = OpenTK.Graphics.OpenGL4.MemoryBarrierFlags.TransformFeedbackBarrierBit; - var _AtomicCounterBarrierBit = OpenTK.Graphics.OpenGL4.MemoryBarrierFlags.AtomicCounterBarrierBit; - var _ShaderStorageBarrierBit = OpenTK.Graphics.OpenGL4.MemoryBarrierFlags.ShaderStorageBarrierBit; - var _ClientMappedBufferBarrierBit = OpenTK.Graphics.OpenGL4.MemoryBarrierFlags.ClientMappedBufferBarrierBit; - var _QueryBufferBarrierBit = OpenTK.Graphics.OpenGL4.MemoryBarrierFlags.QueryBufferBarrierBit; - var _AllBarrierBits = OpenTK.Graphics.OpenGL4.MemoryBarrierFlags.AllBarrierBits; -} -static void Test_MemoryBarrierMask_37606() { - var _VertexAttribArrayBarrierBit = OpenTK.Graphics.OpenGL4.MemoryBarrierMask.VertexAttribArrayBarrierBit; - var _VertexAttribArrayBarrierBitExt = OpenTK.Graphics.OpenGL4.MemoryBarrierMask.VertexAttribArrayBarrierBitExt; - var _ElementArrayBarrierBit = OpenTK.Graphics.OpenGL4.MemoryBarrierMask.ElementArrayBarrierBit; - var _ElementArrayBarrierBitExt = OpenTK.Graphics.OpenGL4.MemoryBarrierMask.ElementArrayBarrierBitExt; - var _UniformBarrierBit = OpenTK.Graphics.OpenGL4.MemoryBarrierMask.UniformBarrierBit; - var _UniformBarrierBitExt = OpenTK.Graphics.OpenGL4.MemoryBarrierMask.UniformBarrierBitExt; - var _TextureFetchBarrierBit = OpenTK.Graphics.OpenGL4.MemoryBarrierMask.TextureFetchBarrierBit; - var _TextureFetchBarrierBitExt = OpenTK.Graphics.OpenGL4.MemoryBarrierMask.TextureFetchBarrierBitExt; - var _ShaderGlobalAccessBarrierBitNv = OpenTK.Graphics.OpenGL4.MemoryBarrierMask.ShaderGlobalAccessBarrierBitNv; - var _ShaderImageAccessBarrierBit = OpenTK.Graphics.OpenGL4.MemoryBarrierMask.ShaderImageAccessBarrierBit; - var _ShaderImageAccessBarrierBitExt = OpenTK.Graphics.OpenGL4.MemoryBarrierMask.ShaderImageAccessBarrierBitExt; - var _CommandBarrierBit = OpenTK.Graphics.OpenGL4.MemoryBarrierMask.CommandBarrierBit; - var _CommandBarrierBitExt = OpenTK.Graphics.OpenGL4.MemoryBarrierMask.CommandBarrierBitExt; - var _PixelBufferBarrierBit = OpenTK.Graphics.OpenGL4.MemoryBarrierMask.PixelBufferBarrierBit; - var _PixelBufferBarrierBitExt = OpenTK.Graphics.OpenGL4.MemoryBarrierMask.PixelBufferBarrierBitExt; - var _TextureUpdateBarrierBit = OpenTK.Graphics.OpenGL4.MemoryBarrierMask.TextureUpdateBarrierBit; - var _TextureUpdateBarrierBitExt = OpenTK.Graphics.OpenGL4.MemoryBarrierMask.TextureUpdateBarrierBitExt; - var _BufferUpdateBarrierBit = OpenTK.Graphics.OpenGL4.MemoryBarrierMask.BufferUpdateBarrierBit; - var _BufferUpdateBarrierBitExt = OpenTK.Graphics.OpenGL4.MemoryBarrierMask.BufferUpdateBarrierBitExt; - var _FramebufferBarrierBit = OpenTK.Graphics.OpenGL4.MemoryBarrierMask.FramebufferBarrierBit; - var _FramebufferBarrierBitExt = OpenTK.Graphics.OpenGL4.MemoryBarrierMask.FramebufferBarrierBitExt; - var _TransformFeedbackBarrierBit = OpenTK.Graphics.OpenGL4.MemoryBarrierMask.TransformFeedbackBarrierBit; - var _TransformFeedbackBarrierBitExt = OpenTK.Graphics.OpenGL4.MemoryBarrierMask.TransformFeedbackBarrierBitExt; - var _AtomicCounterBarrierBit = OpenTK.Graphics.OpenGL4.MemoryBarrierMask.AtomicCounterBarrierBit; - var _AtomicCounterBarrierBitExt = OpenTK.Graphics.OpenGL4.MemoryBarrierMask.AtomicCounterBarrierBitExt; - var _ShaderStorageBarrierBit = OpenTK.Graphics.OpenGL4.MemoryBarrierMask.ShaderStorageBarrierBit; - var _ClientMappedBufferBarrierBit = OpenTK.Graphics.OpenGL4.MemoryBarrierMask.ClientMappedBufferBarrierBit; - var _QueryBufferBarrierBit = OpenTK.Graphics.OpenGL4.MemoryBarrierMask.QueryBufferBarrierBit; - var _AllBarrierBits = OpenTK.Graphics.OpenGL4.MemoryBarrierMask.AllBarrierBits; - var _AllBarrierBitsExt = OpenTK.Graphics.OpenGL4.MemoryBarrierMask.AllBarrierBitsExt; -} -static void Test_MeshMode1_37607() { - var _Point = OpenTK.Graphics.OpenGL4.MeshMode1.Point; - var _Line = OpenTK.Graphics.OpenGL4.MeshMode1.Line; -} -static void Test_MeshMode2_37608() { - var _Point = OpenTK.Graphics.OpenGL4.MeshMode2.Point; - var _Line = OpenTK.Graphics.OpenGL4.MeshMode2.Line; - var _Fill = OpenTK.Graphics.OpenGL4.MeshMode2.Fill; -} -static void Test_MinmaxTarget_37609() { - var _Minmax = OpenTK.Graphics.OpenGL4.MinmaxTarget.Minmax; -} -static void Test_MinmaxTargetExt_37610() { - var _Minmax = OpenTK.Graphics.OpenGL4.MinmaxTargetExt.Minmax; - var _MinmaxExt = OpenTK.Graphics.OpenGL4.MinmaxTargetExt.MinmaxExt; -} -static void Test_NormalPointerType_37611() { - var _Byte = OpenTK.Graphics.OpenGL4.NormalPointerType.Byte; - var _Short = OpenTK.Graphics.OpenGL4.NormalPointerType.Short; - var _Int = OpenTK.Graphics.OpenGL4.NormalPointerType.Int; - var _Float = OpenTK.Graphics.OpenGL4.NormalPointerType.Float; - var _Double = OpenTK.Graphics.OpenGL4.NormalPointerType.Double; - var _HalfFloat = OpenTK.Graphics.OpenGL4.NormalPointerType.HalfFloat; - var _UnsignedInt2101010Rev = OpenTK.Graphics.OpenGL4.NormalPointerType.UnsignedInt2101010Rev; - var _Int2101010Rev = OpenTK.Graphics.OpenGL4.NormalPointerType.Int2101010Rev; -} -static void Test_ObjectLabelIdentifier_37612() { - var _Texture = OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier.Texture; - var _VertexArray = OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier.VertexArray; - var _Buffer = OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier.Buffer; - var _Shader = OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier.Shader; - var _Program = OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier.Program; - var _Query = OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier.Query; - var _ProgramPipeline = OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier.ProgramPipeline; - var _Sampler = OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier.Sampler; - var _Framebuffer = OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier.Framebuffer; - var _Renderbuffer = OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier.Renderbuffer; - var _TransformFeedback = OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier.TransformFeedback; -} -static void Test_OcclusionQueryEventMaskAmd_37613() { - var _QueryDepthPassEventBitAmd = OpenTK.Graphics.OpenGL4.OcclusionQueryEventMaskAmd.QueryDepthPassEventBitAmd; - var _QueryDepthFailEventBitAmd = OpenTK.Graphics.OpenGL4.OcclusionQueryEventMaskAmd.QueryDepthFailEventBitAmd; - var _QueryStencilFailEventBitAmd = OpenTK.Graphics.OpenGL4.OcclusionQueryEventMaskAmd.QueryStencilFailEventBitAmd; - var _QueryDepthBoundsFailEventBitAmd = OpenTK.Graphics.OpenGL4.OcclusionQueryEventMaskAmd.QueryDepthBoundsFailEventBitAmd; - var _QueryAllEventBitsAmd = OpenTK.Graphics.OpenGL4.OcclusionQueryEventMaskAmd.QueryAllEventBitsAmd; -} -static void Test_PackedPointerType_37614() { - var _UnsignedInt2101010Rev = OpenTK.Graphics.OpenGL4.PackedPointerType.UnsignedInt2101010Rev; - var _Int2101010Rev = OpenTK.Graphics.OpenGL4.PackedPointerType.Int2101010Rev; -} -static void Test_PatchParameterFloat_37615() { - var _PatchDefaultInnerLevel = OpenTK.Graphics.OpenGL4.PatchParameterFloat.PatchDefaultInnerLevel; - var _PatchDefaultOuterLevel = OpenTK.Graphics.OpenGL4.PatchParameterFloat.PatchDefaultOuterLevel; -} -static void Test_PatchParameterInt_37616() { - var _PatchVertices = OpenTK.Graphics.OpenGL4.PatchParameterInt.PatchVertices; -} -static void Test_PixelCopyType_37617() { - var _Color = OpenTK.Graphics.OpenGL4.PixelCopyType.Color; - var _ColorExt = OpenTK.Graphics.OpenGL4.PixelCopyType.ColorExt; - var _Depth = OpenTK.Graphics.OpenGL4.PixelCopyType.Depth; - var _DepthExt = OpenTK.Graphics.OpenGL4.PixelCopyType.DepthExt; - var _Stencil = OpenTK.Graphics.OpenGL4.PixelCopyType.Stencil; - var _StencilExt = OpenTK.Graphics.OpenGL4.PixelCopyType.StencilExt; -} -static void Test_PixelFormat_37618() { - var _UnsignedShort = OpenTK.Graphics.OpenGL4.PixelFormat.UnsignedShort; - var _UnsignedInt = OpenTK.Graphics.OpenGL4.PixelFormat.UnsignedInt; - var _ColorIndex = OpenTK.Graphics.OpenGL4.PixelFormat.ColorIndex; - var _StencilIndex = OpenTK.Graphics.OpenGL4.PixelFormat.StencilIndex; - var _DepthComponent = OpenTK.Graphics.OpenGL4.PixelFormat.DepthComponent; - var _Red = OpenTK.Graphics.OpenGL4.PixelFormat.Red; - var _RedExt = OpenTK.Graphics.OpenGL4.PixelFormat.RedExt; - var _Green = OpenTK.Graphics.OpenGL4.PixelFormat.Green; - var _Blue = OpenTK.Graphics.OpenGL4.PixelFormat.Blue; - var _Alpha = OpenTK.Graphics.OpenGL4.PixelFormat.Alpha; - var _Rgb = OpenTK.Graphics.OpenGL4.PixelFormat.Rgb; - var _Rgba = OpenTK.Graphics.OpenGL4.PixelFormat.Rgba; - var _Luminance = OpenTK.Graphics.OpenGL4.PixelFormat.Luminance; - var _LuminanceAlpha = OpenTK.Graphics.OpenGL4.PixelFormat.LuminanceAlpha; - var _AbgrExt = OpenTK.Graphics.OpenGL4.PixelFormat.AbgrExt; - var _CmykExt = OpenTK.Graphics.OpenGL4.PixelFormat.CmykExt; - var _CmykaExt = OpenTK.Graphics.OpenGL4.PixelFormat.CmykaExt; - var _Bgr = OpenTK.Graphics.OpenGL4.PixelFormat.Bgr; - var _Bgra = OpenTK.Graphics.OpenGL4.PixelFormat.Bgra; - var _Ycrcb422Sgix = OpenTK.Graphics.OpenGL4.PixelFormat.Ycrcb422Sgix; - var _Ycrcb444Sgix = OpenTK.Graphics.OpenGL4.PixelFormat.Ycrcb444Sgix; - var _Rg = OpenTK.Graphics.OpenGL4.PixelFormat.Rg; - var _RgInteger = OpenTK.Graphics.OpenGL4.PixelFormat.RgInteger; - var _R5G6B5IccSgix = OpenTK.Graphics.OpenGL4.PixelFormat.R5G6B5IccSgix; - var _R5G6B5A8IccSgix = OpenTK.Graphics.OpenGL4.PixelFormat.R5G6B5A8IccSgix; - var _Alpha16IccSgix = OpenTK.Graphics.OpenGL4.PixelFormat.Alpha16IccSgix; - var _Luminance16IccSgix = OpenTK.Graphics.OpenGL4.PixelFormat.Luminance16IccSgix; - var _Luminance16Alpha8IccSgix = OpenTK.Graphics.OpenGL4.PixelFormat.Luminance16Alpha8IccSgix; - var _DepthStencil = OpenTK.Graphics.OpenGL4.PixelFormat.DepthStencil; - var _RedInteger = OpenTK.Graphics.OpenGL4.PixelFormat.RedInteger; - var _GreenInteger = OpenTK.Graphics.OpenGL4.PixelFormat.GreenInteger; - var _BlueInteger = OpenTK.Graphics.OpenGL4.PixelFormat.BlueInteger; - var _AlphaInteger = OpenTK.Graphics.OpenGL4.PixelFormat.AlphaInteger; - var _RgbInteger = OpenTK.Graphics.OpenGL4.PixelFormat.RgbInteger; - var _RgbaInteger = OpenTK.Graphics.OpenGL4.PixelFormat.RgbaInteger; - var _BgrInteger = OpenTK.Graphics.OpenGL4.PixelFormat.BgrInteger; - var _BgraInteger = OpenTK.Graphics.OpenGL4.PixelFormat.BgraInteger; -} -static void Test_PixelInternalFormat_37619() { - var _DepthComponent = OpenTK.Graphics.OpenGL4.PixelInternalFormat.DepthComponent; - var _Alpha = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Alpha; - var _Rgb = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rgb; - var _Rgba = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rgba; - var _Luminance = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Luminance; - var _LuminanceAlpha = OpenTK.Graphics.OpenGL4.PixelInternalFormat.LuminanceAlpha; - var _R3G3B2 = OpenTK.Graphics.OpenGL4.PixelInternalFormat.R3G3B2; - var _Rgb2Ext = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rgb2Ext; - var _Rgb4 = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rgb4; - var _Rgb5 = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rgb5; - var _Rgb8 = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rgb8; - var _Rgb10 = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rgb10; - var _Rgb12 = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rgb12; - var _Rgb16 = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rgb16; - var _Rgba2 = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rgba2; - var _Rgba4 = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rgba4; - var _Rgb5A1 = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rgb5A1; - var _Rgba8 = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rgba8; - var _Rgb10A2 = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rgb10A2; - var _Rgba12 = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rgba12; - var _Rgba16 = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rgba16; - var _DualAlpha4Sgis = OpenTK.Graphics.OpenGL4.PixelInternalFormat.DualAlpha4Sgis; - var _DualAlpha8Sgis = OpenTK.Graphics.OpenGL4.PixelInternalFormat.DualAlpha8Sgis; - var _DualAlpha12Sgis = OpenTK.Graphics.OpenGL4.PixelInternalFormat.DualAlpha12Sgis; - var _DualAlpha16Sgis = OpenTK.Graphics.OpenGL4.PixelInternalFormat.DualAlpha16Sgis; - var _DualLuminance4Sgis = OpenTK.Graphics.OpenGL4.PixelInternalFormat.DualLuminance4Sgis; - var _DualLuminance8Sgis = OpenTK.Graphics.OpenGL4.PixelInternalFormat.DualLuminance8Sgis; - var _DualLuminance12Sgis = OpenTK.Graphics.OpenGL4.PixelInternalFormat.DualLuminance12Sgis; - var _DualLuminance16Sgis = OpenTK.Graphics.OpenGL4.PixelInternalFormat.DualLuminance16Sgis; - var _DualIntensity4Sgis = OpenTK.Graphics.OpenGL4.PixelInternalFormat.DualIntensity4Sgis; - var _DualIntensity8Sgis = OpenTK.Graphics.OpenGL4.PixelInternalFormat.DualIntensity8Sgis; - var _DualIntensity12Sgis = OpenTK.Graphics.OpenGL4.PixelInternalFormat.DualIntensity12Sgis; - var _DualIntensity16Sgis = OpenTK.Graphics.OpenGL4.PixelInternalFormat.DualIntensity16Sgis; - var _DualLuminanceAlpha4Sgis = OpenTK.Graphics.OpenGL4.PixelInternalFormat.DualLuminanceAlpha4Sgis; - var _DualLuminanceAlpha8Sgis = OpenTK.Graphics.OpenGL4.PixelInternalFormat.DualLuminanceAlpha8Sgis; - var _QuadAlpha4Sgis = OpenTK.Graphics.OpenGL4.PixelInternalFormat.QuadAlpha4Sgis; - var _QuadAlpha8Sgis = OpenTK.Graphics.OpenGL4.PixelInternalFormat.QuadAlpha8Sgis; - var _QuadLuminance4Sgis = OpenTK.Graphics.OpenGL4.PixelInternalFormat.QuadLuminance4Sgis; - var _QuadLuminance8Sgis = OpenTK.Graphics.OpenGL4.PixelInternalFormat.QuadLuminance8Sgis; - var _QuadIntensity4Sgis = OpenTK.Graphics.OpenGL4.PixelInternalFormat.QuadIntensity4Sgis; - var _QuadIntensity8Sgis = OpenTK.Graphics.OpenGL4.PixelInternalFormat.QuadIntensity8Sgis; - var _DepthComponent16 = OpenTK.Graphics.OpenGL4.PixelInternalFormat.DepthComponent16; - var _DepthComponent16Sgix = OpenTK.Graphics.OpenGL4.PixelInternalFormat.DepthComponent16Sgix; - var _DepthComponent24 = OpenTK.Graphics.OpenGL4.PixelInternalFormat.DepthComponent24; - var _DepthComponent24Sgix = OpenTK.Graphics.OpenGL4.PixelInternalFormat.DepthComponent24Sgix; - var _DepthComponent32 = OpenTK.Graphics.OpenGL4.PixelInternalFormat.DepthComponent32; - var _DepthComponent32Sgix = OpenTK.Graphics.OpenGL4.PixelInternalFormat.DepthComponent32Sgix; - var _CompressedRed = OpenTK.Graphics.OpenGL4.PixelInternalFormat.CompressedRed; - var _CompressedRg = OpenTK.Graphics.OpenGL4.PixelInternalFormat.CompressedRg; - var _R8 = OpenTK.Graphics.OpenGL4.PixelInternalFormat.R8; - var _R16 = OpenTK.Graphics.OpenGL4.PixelInternalFormat.R16; - var _Rg8 = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rg8; - var _Rg16 = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rg16; - var _R16f = OpenTK.Graphics.OpenGL4.PixelInternalFormat.R16f; - var _R32f = OpenTK.Graphics.OpenGL4.PixelInternalFormat.R32f; - var _Rg16f = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rg16f; - var _Rg32f = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rg32f; - var _R8i = OpenTK.Graphics.OpenGL4.PixelInternalFormat.R8i; - var _R8ui = OpenTK.Graphics.OpenGL4.PixelInternalFormat.R8ui; - var _R16i = OpenTK.Graphics.OpenGL4.PixelInternalFormat.R16i; - var _R16ui = OpenTK.Graphics.OpenGL4.PixelInternalFormat.R16ui; - var _R32i = OpenTK.Graphics.OpenGL4.PixelInternalFormat.R32i; - var _R32ui = OpenTK.Graphics.OpenGL4.PixelInternalFormat.R32ui; - var _Rg8i = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rg8i; - var _Rg8ui = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rg8ui; - var _Rg16i = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rg16i; - var _Rg16ui = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rg16ui; - var _Rg32i = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rg32i; - var _Rg32ui = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rg32ui; - var _CompressedRgbS3tcDxt1Ext = OpenTK.Graphics.OpenGL4.PixelInternalFormat.CompressedRgbS3tcDxt1Ext; - var _CompressedRgbaS3tcDxt1Ext = OpenTK.Graphics.OpenGL4.PixelInternalFormat.CompressedRgbaS3tcDxt1Ext; - var _CompressedRgbaS3tcDxt3Ext = OpenTK.Graphics.OpenGL4.PixelInternalFormat.CompressedRgbaS3tcDxt3Ext; - var _CompressedRgbaS3tcDxt5Ext = OpenTK.Graphics.OpenGL4.PixelInternalFormat.CompressedRgbaS3tcDxt5Ext; - var _RgbIccSgix = OpenTK.Graphics.OpenGL4.PixelInternalFormat.RgbIccSgix; - var _RgbaIccSgix = OpenTK.Graphics.OpenGL4.PixelInternalFormat.RgbaIccSgix; - var _AlphaIccSgix = OpenTK.Graphics.OpenGL4.PixelInternalFormat.AlphaIccSgix; - var _LuminanceIccSgix = OpenTK.Graphics.OpenGL4.PixelInternalFormat.LuminanceIccSgix; - var _IntensityIccSgix = OpenTK.Graphics.OpenGL4.PixelInternalFormat.IntensityIccSgix; - var _LuminanceAlphaIccSgix = OpenTK.Graphics.OpenGL4.PixelInternalFormat.LuminanceAlphaIccSgix; - var _R5G6B5IccSgix = OpenTK.Graphics.OpenGL4.PixelInternalFormat.R5G6B5IccSgix; - var _R5G6B5A8IccSgix = OpenTK.Graphics.OpenGL4.PixelInternalFormat.R5G6B5A8IccSgix; - var _Alpha16IccSgix = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Alpha16IccSgix; - var _Luminance16IccSgix = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Luminance16IccSgix; - var _Intensity16IccSgix = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Intensity16IccSgix; - var _Luminance16Alpha8IccSgix = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Luminance16Alpha8IccSgix; - var _CompressedAlpha = OpenTK.Graphics.OpenGL4.PixelInternalFormat.CompressedAlpha; - var _CompressedLuminance = OpenTK.Graphics.OpenGL4.PixelInternalFormat.CompressedLuminance; - var _CompressedLuminanceAlpha = OpenTK.Graphics.OpenGL4.PixelInternalFormat.CompressedLuminanceAlpha; - var _CompressedIntensity = OpenTK.Graphics.OpenGL4.PixelInternalFormat.CompressedIntensity; - var _CompressedRgb = OpenTK.Graphics.OpenGL4.PixelInternalFormat.CompressedRgb; - var _CompressedRgba = OpenTK.Graphics.OpenGL4.PixelInternalFormat.CompressedRgba; - var _DepthStencil = OpenTK.Graphics.OpenGL4.PixelInternalFormat.DepthStencil; - var _Rgba32f = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rgba32f; - var _Rgb32f = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rgb32f; - var _Rgba16f = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rgba16f; - var _Rgb16f = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rgb16f; - var _Depth24Stencil8 = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Depth24Stencil8; - var _R11fG11fB10f = OpenTK.Graphics.OpenGL4.PixelInternalFormat.R11fG11fB10f; - var _Rgb9E5 = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rgb9E5; - var _Srgb = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Srgb; - var _Srgb8 = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Srgb8; - var _SrgbAlpha = OpenTK.Graphics.OpenGL4.PixelInternalFormat.SrgbAlpha; - var _Srgb8Alpha8 = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Srgb8Alpha8; - var _SluminanceAlpha = OpenTK.Graphics.OpenGL4.PixelInternalFormat.SluminanceAlpha; - var _Sluminance8Alpha8 = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Sluminance8Alpha8; - var _Sluminance = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Sluminance; - var _Sluminance8 = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Sluminance8; - var _CompressedSrgb = OpenTK.Graphics.OpenGL4.PixelInternalFormat.CompressedSrgb; - var _CompressedSrgbAlpha = OpenTK.Graphics.OpenGL4.PixelInternalFormat.CompressedSrgbAlpha; - var _CompressedSluminance = OpenTK.Graphics.OpenGL4.PixelInternalFormat.CompressedSluminance; - var _CompressedSluminanceAlpha = OpenTK.Graphics.OpenGL4.PixelInternalFormat.CompressedSluminanceAlpha; - var _CompressedSrgbS3tcDxt1Ext = OpenTK.Graphics.OpenGL4.PixelInternalFormat.CompressedSrgbS3tcDxt1Ext; - var _CompressedSrgbAlphaS3tcDxt1Ext = OpenTK.Graphics.OpenGL4.PixelInternalFormat.CompressedSrgbAlphaS3tcDxt1Ext; - var _CompressedSrgbAlphaS3tcDxt3Ext = OpenTK.Graphics.OpenGL4.PixelInternalFormat.CompressedSrgbAlphaS3tcDxt3Ext; - var _CompressedSrgbAlphaS3tcDxt5Ext = OpenTK.Graphics.OpenGL4.PixelInternalFormat.CompressedSrgbAlphaS3tcDxt5Ext; - var _DepthComponent32f = OpenTK.Graphics.OpenGL4.PixelInternalFormat.DepthComponent32f; - var _Depth32fStencil8 = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Depth32fStencil8; - var _Rgba32ui = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rgba32ui; - var _Rgb32ui = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rgb32ui; - var _Rgba16ui = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rgba16ui; - var _Rgb16ui = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rgb16ui; - var _Rgba8ui = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rgba8ui; - var _Rgb8ui = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rgb8ui; - var _Rgba32i = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rgba32i; - var _Rgb32i = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rgb32i; - var _Rgba16i = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rgba16i; - var _Rgb16i = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rgb16i; - var _Rgba8i = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rgba8i; - var _Rgb8i = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rgb8i; - var _Float32UnsignedInt248Rev = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Float32UnsignedInt248Rev; - var _CompressedRedRgtc1 = OpenTK.Graphics.OpenGL4.PixelInternalFormat.CompressedRedRgtc1; - var _CompressedSignedRedRgtc1 = OpenTK.Graphics.OpenGL4.PixelInternalFormat.CompressedSignedRedRgtc1; - var _CompressedRgRgtc2 = OpenTK.Graphics.OpenGL4.PixelInternalFormat.CompressedRgRgtc2; - var _CompressedSignedRgRgtc2 = OpenTK.Graphics.OpenGL4.PixelInternalFormat.CompressedSignedRgRgtc2; - var _CompressedRgbaBptcUnorm = OpenTK.Graphics.OpenGL4.PixelInternalFormat.CompressedRgbaBptcUnorm; - var _CompressedRgbBptcSignedFloat = OpenTK.Graphics.OpenGL4.PixelInternalFormat.CompressedRgbBptcSignedFloat; - var _CompressedRgbBptcUnsignedFloat = OpenTK.Graphics.OpenGL4.PixelInternalFormat.CompressedRgbBptcUnsignedFloat; - var _R8Snorm = OpenTK.Graphics.OpenGL4.PixelInternalFormat.R8Snorm; - var _Rg8Snorm = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rg8Snorm; - var _Rgb8Snorm = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rgb8Snorm; - var _Rgba8Snorm = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rgba8Snorm; - var _R16Snorm = OpenTK.Graphics.OpenGL4.PixelInternalFormat.R16Snorm; - var _Rg16Snorm = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rg16Snorm; - var _Rgb16Snorm = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rgb16Snorm; - var _Rgba16Snorm = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rgba16Snorm; - var _Rgb10A2ui = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Rgb10A2ui; - var _One = OpenTK.Graphics.OpenGL4.PixelInternalFormat.One; - var _Two = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Two; - var _Three = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Three; - var _Four = OpenTK.Graphics.OpenGL4.PixelInternalFormat.Four; -} -static void Test_PixelMap_37620() { - var _PixelMapIToI = OpenTK.Graphics.OpenGL4.PixelMap.PixelMapIToI; - var _PixelMapSToS = OpenTK.Graphics.OpenGL4.PixelMap.PixelMapSToS; - var _PixelMapIToR = OpenTK.Graphics.OpenGL4.PixelMap.PixelMapIToR; - var _PixelMapIToG = OpenTK.Graphics.OpenGL4.PixelMap.PixelMapIToG; - var _PixelMapIToB = OpenTK.Graphics.OpenGL4.PixelMap.PixelMapIToB; - var _PixelMapIToA = OpenTK.Graphics.OpenGL4.PixelMap.PixelMapIToA; - var _PixelMapRToR = OpenTK.Graphics.OpenGL4.PixelMap.PixelMapRToR; - var _PixelMapGToG = OpenTK.Graphics.OpenGL4.PixelMap.PixelMapGToG; - var _PixelMapBToB = OpenTK.Graphics.OpenGL4.PixelMap.PixelMapBToB; - var _PixelMapAToA = OpenTK.Graphics.OpenGL4.PixelMap.PixelMapAToA; -} -static void Test_PixelStoreParameter_37621() { - var _UnpackSwapBytes = OpenTK.Graphics.OpenGL4.PixelStoreParameter.UnpackSwapBytes; - var _UnpackLsbFirst = OpenTK.Graphics.OpenGL4.PixelStoreParameter.UnpackLsbFirst; - var _UnpackRowLength = OpenTK.Graphics.OpenGL4.PixelStoreParameter.UnpackRowLength; - var _UnpackRowLengthExt = OpenTK.Graphics.OpenGL4.PixelStoreParameter.UnpackRowLengthExt; - var _UnpackSkipRows = OpenTK.Graphics.OpenGL4.PixelStoreParameter.UnpackSkipRows; - var _UnpackSkipRowsExt = OpenTK.Graphics.OpenGL4.PixelStoreParameter.UnpackSkipRowsExt; - var _UnpackSkipPixels = OpenTK.Graphics.OpenGL4.PixelStoreParameter.UnpackSkipPixels; - var _UnpackSkipPixelsExt = OpenTK.Graphics.OpenGL4.PixelStoreParameter.UnpackSkipPixelsExt; - var _UnpackAlignment = OpenTK.Graphics.OpenGL4.PixelStoreParameter.UnpackAlignment; - var _PackSwapBytes = OpenTK.Graphics.OpenGL4.PixelStoreParameter.PackSwapBytes; - var _PackLsbFirst = OpenTK.Graphics.OpenGL4.PixelStoreParameter.PackLsbFirst; - var _PackRowLength = OpenTK.Graphics.OpenGL4.PixelStoreParameter.PackRowLength; - var _PackSkipRows = OpenTK.Graphics.OpenGL4.PixelStoreParameter.PackSkipRows; - var _PackSkipPixels = OpenTK.Graphics.OpenGL4.PixelStoreParameter.PackSkipPixels; - var _PackAlignment = OpenTK.Graphics.OpenGL4.PixelStoreParameter.PackAlignment; - var _PackSkipImages = OpenTK.Graphics.OpenGL4.PixelStoreParameter.PackSkipImages; - var _PackSkipImagesExt = OpenTK.Graphics.OpenGL4.PixelStoreParameter.PackSkipImagesExt; - var _PackImageHeight = OpenTK.Graphics.OpenGL4.PixelStoreParameter.PackImageHeight; - var _PackImageHeightExt = OpenTK.Graphics.OpenGL4.PixelStoreParameter.PackImageHeightExt; - var _UnpackSkipImages = OpenTK.Graphics.OpenGL4.PixelStoreParameter.UnpackSkipImages; - var _UnpackSkipImagesExt = OpenTK.Graphics.OpenGL4.PixelStoreParameter.UnpackSkipImagesExt; - var _UnpackImageHeight = OpenTK.Graphics.OpenGL4.PixelStoreParameter.UnpackImageHeight; - var _UnpackImageHeightExt = OpenTK.Graphics.OpenGL4.PixelStoreParameter.UnpackImageHeightExt; - var _PackSkipVolumesSgis = OpenTK.Graphics.OpenGL4.PixelStoreParameter.PackSkipVolumesSgis; - var _PackImageDepthSgis = OpenTK.Graphics.OpenGL4.PixelStoreParameter.PackImageDepthSgis; - var _UnpackSkipVolumesSgis = OpenTK.Graphics.OpenGL4.PixelStoreParameter.UnpackSkipVolumesSgis; - var _UnpackImageDepthSgis = OpenTK.Graphics.OpenGL4.PixelStoreParameter.UnpackImageDepthSgis; - var _PixelTileWidthSgix = OpenTK.Graphics.OpenGL4.PixelStoreParameter.PixelTileWidthSgix; - var _PixelTileHeightSgix = OpenTK.Graphics.OpenGL4.PixelStoreParameter.PixelTileHeightSgix; - var _PixelTileGridWidthSgix = OpenTK.Graphics.OpenGL4.PixelStoreParameter.PixelTileGridWidthSgix; - var _PixelTileGridHeightSgix = OpenTK.Graphics.OpenGL4.PixelStoreParameter.PixelTileGridHeightSgix; - var _PixelTileGridDepthSgix = OpenTK.Graphics.OpenGL4.PixelStoreParameter.PixelTileGridDepthSgix; - var _PixelTileCacheSizeSgix = OpenTK.Graphics.OpenGL4.PixelStoreParameter.PixelTileCacheSizeSgix; - var _PackResampleSgix = OpenTK.Graphics.OpenGL4.PixelStoreParameter.PackResampleSgix; - var _UnpackResampleSgix = OpenTK.Graphics.OpenGL4.PixelStoreParameter.UnpackResampleSgix; - var _PackSubsampleRateSgix = OpenTK.Graphics.OpenGL4.PixelStoreParameter.PackSubsampleRateSgix; - var _UnpackSubsampleRateSgix = OpenTK.Graphics.OpenGL4.PixelStoreParameter.UnpackSubsampleRateSgix; - var _PackResampleOml = OpenTK.Graphics.OpenGL4.PixelStoreParameter.PackResampleOml; - var _UnpackResampleOml = OpenTK.Graphics.OpenGL4.PixelStoreParameter.UnpackResampleOml; - var _UnpackCompressedBlockWidth = OpenTK.Graphics.OpenGL4.PixelStoreParameter.UnpackCompressedBlockWidth; - var _UnpackCompressedBlockHeight = OpenTK.Graphics.OpenGL4.PixelStoreParameter.UnpackCompressedBlockHeight; - var _UnpackCompressedBlockDepth = OpenTK.Graphics.OpenGL4.PixelStoreParameter.UnpackCompressedBlockDepth; - var _UnpackCompressedBlockSize = OpenTK.Graphics.OpenGL4.PixelStoreParameter.UnpackCompressedBlockSize; - var _PackCompressedBlockWidth = OpenTK.Graphics.OpenGL4.PixelStoreParameter.PackCompressedBlockWidth; - var _PackCompressedBlockHeight = OpenTK.Graphics.OpenGL4.PixelStoreParameter.PackCompressedBlockHeight; - var _PackCompressedBlockDepth = OpenTK.Graphics.OpenGL4.PixelStoreParameter.PackCompressedBlockDepth; - var _PackCompressedBlockSize = OpenTK.Graphics.OpenGL4.PixelStoreParameter.PackCompressedBlockSize; -} -static void Test_PixelStoreResampleMode_37622() { - var _ResampleReplicateSgix = OpenTK.Graphics.OpenGL4.PixelStoreResampleMode.ResampleReplicateSgix; - var _ResampleZeroFillSgix = OpenTK.Graphics.OpenGL4.PixelStoreResampleMode.ResampleZeroFillSgix; - var _ResampleDecimateSgix = OpenTK.Graphics.OpenGL4.PixelStoreResampleMode.ResampleDecimateSgix; -} -static void Test_PixelStoreSubsampleRate_37623() { - var _PixelSubsample4444Sgix = OpenTK.Graphics.OpenGL4.PixelStoreSubsampleRate.PixelSubsample4444Sgix; - var _PixelSubsample2424Sgix = OpenTK.Graphics.OpenGL4.PixelStoreSubsampleRate.PixelSubsample2424Sgix; - var _PixelSubsample4242Sgix = OpenTK.Graphics.OpenGL4.PixelStoreSubsampleRate.PixelSubsample4242Sgix; -} -static void Test_PixelTexGenMode_37624() { - var _None = OpenTK.Graphics.OpenGL4.PixelTexGenMode.None; - var _Rgb = OpenTK.Graphics.OpenGL4.PixelTexGenMode.Rgb; - var _Rgba = OpenTK.Graphics.OpenGL4.PixelTexGenMode.Rgba; - var _Luminance = OpenTK.Graphics.OpenGL4.PixelTexGenMode.Luminance; - var _LuminanceAlpha = OpenTK.Graphics.OpenGL4.PixelTexGenMode.LuminanceAlpha; - var _PixelTexGenAlphaReplaceSgix = OpenTK.Graphics.OpenGL4.PixelTexGenMode.PixelTexGenAlphaReplaceSgix; - var _PixelTexGenAlphaNoReplaceSgix = OpenTK.Graphics.OpenGL4.PixelTexGenMode.PixelTexGenAlphaNoReplaceSgix; - var _PixelTexGenAlphaLsSgix = OpenTK.Graphics.OpenGL4.PixelTexGenMode.PixelTexGenAlphaLsSgix; - var _PixelTexGenAlphaMsSgix = OpenTK.Graphics.OpenGL4.PixelTexGenMode.PixelTexGenAlphaMsSgix; -} -static void Test_PixelTexGenParameterNameSgis_37625() { - var _PixelFragmentRgbSourceSgis = OpenTK.Graphics.OpenGL4.PixelTexGenParameterNameSgis.PixelFragmentRgbSourceSgis; - var _PixelFragmentAlphaSourceSgis = OpenTK.Graphics.OpenGL4.PixelTexGenParameterNameSgis.PixelFragmentAlphaSourceSgis; -} -static void Test_PixelTransferParameter_37626() { - var _MapColor = OpenTK.Graphics.OpenGL4.PixelTransferParameter.MapColor; - var _MapStencil = OpenTK.Graphics.OpenGL4.PixelTransferParameter.MapStencil; - var _IndexShift = OpenTK.Graphics.OpenGL4.PixelTransferParameter.IndexShift; - var _IndexOffset = OpenTK.Graphics.OpenGL4.PixelTransferParameter.IndexOffset; - var _RedScale = OpenTK.Graphics.OpenGL4.PixelTransferParameter.RedScale; - var _RedBias = OpenTK.Graphics.OpenGL4.PixelTransferParameter.RedBias; - var _GreenScale = OpenTK.Graphics.OpenGL4.PixelTransferParameter.GreenScale; - var _GreenBias = OpenTK.Graphics.OpenGL4.PixelTransferParameter.GreenBias; - var _BlueScale = OpenTK.Graphics.OpenGL4.PixelTransferParameter.BlueScale; - var _BlueBias = OpenTK.Graphics.OpenGL4.PixelTransferParameter.BlueBias; - var _AlphaScale = OpenTK.Graphics.OpenGL4.PixelTransferParameter.AlphaScale; - var _AlphaBias = OpenTK.Graphics.OpenGL4.PixelTransferParameter.AlphaBias; - var _DepthScale = OpenTK.Graphics.OpenGL4.PixelTransferParameter.DepthScale; - var _DepthBias = OpenTK.Graphics.OpenGL4.PixelTransferParameter.DepthBias; - var _PostConvolutionRedScale = OpenTK.Graphics.OpenGL4.PixelTransferParameter.PostConvolutionRedScale; - var _PostConvolutionRedScaleExt = OpenTK.Graphics.OpenGL4.PixelTransferParameter.PostConvolutionRedScaleExt; - var _PostConvolutionGreenScale = OpenTK.Graphics.OpenGL4.PixelTransferParameter.PostConvolutionGreenScale; - var _PostConvolutionGreenScaleExt = OpenTK.Graphics.OpenGL4.PixelTransferParameter.PostConvolutionGreenScaleExt; - var _PostConvolutionBlueScale = OpenTK.Graphics.OpenGL4.PixelTransferParameter.PostConvolutionBlueScale; - var _PostConvolutionBlueScaleExt = OpenTK.Graphics.OpenGL4.PixelTransferParameter.PostConvolutionBlueScaleExt; - var _PostConvolutionAlphaScale = OpenTK.Graphics.OpenGL4.PixelTransferParameter.PostConvolutionAlphaScale; - var _PostConvolutionAlphaScaleExt = OpenTK.Graphics.OpenGL4.PixelTransferParameter.PostConvolutionAlphaScaleExt; - var _PostConvolutionRedBias = OpenTK.Graphics.OpenGL4.PixelTransferParameter.PostConvolutionRedBias; - var _PostConvolutionRedBiasExt = OpenTK.Graphics.OpenGL4.PixelTransferParameter.PostConvolutionRedBiasExt; - var _PostConvolutionGreenBias = OpenTK.Graphics.OpenGL4.PixelTransferParameter.PostConvolutionGreenBias; - var _PostConvolutionGreenBiasExt = OpenTK.Graphics.OpenGL4.PixelTransferParameter.PostConvolutionGreenBiasExt; - var _PostConvolutionBlueBias = OpenTK.Graphics.OpenGL4.PixelTransferParameter.PostConvolutionBlueBias; - var _PostConvolutionBlueBiasExt = OpenTK.Graphics.OpenGL4.PixelTransferParameter.PostConvolutionBlueBiasExt; - var _PostConvolutionAlphaBias = OpenTK.Graphics.OpenGL4.PixelTransferParameter.PostConvolutionAlphaBias; - var _PostConvolutionAlphaBiasExt = OpenTK.Graphics.OpenGL4.PixelTransferParameter.PostConvolutionAlphaBiasExt; - var _PostColorMatrixRedScale = OpenTK.Graphics.OpenGL4.PixelTransferParameter.PostColorMatrixRedScale; - var _PostColorMatrixRedScaleSgi = OpenTK.Graphics.OpenGL4.PixelTransferParameter.PostColorMatrixRedScaleSgi; - var _PostColorMatrixGreenScale = OpenTK.Graphics.OpenGL4.PixelTransferParameter.PostColorMatrixGreenScale; - var _PostColorMatrixGreenScaleSgi = OpenTK.Graphics.OpenGL4.PixelTransferParameter.PostColorMatrixGreenScaleSgi; - var _PostColorMatrixBlueScale = OpenTK.Graphics.OpenGL4.PixelTransferParameter.PostColorMatrixBlueScale; - var _PostColorMatrixBlueScaleSgi = OpenTK.Graphics.OpenGL4.PixelTransferParameter.PostColorMatrixBlueScaleSgi; - var _PostColorMatrixAlphaScale = OpenTK.Graphics.OpenGL4.PixelTransferParameter.PostColorMatrixAlphaScale; - var _PostColorMatrixAlphaScaleSgi = OpenTK.Graphics.OpenGL4.PixelTransferParameter.PostColorMatrixAlphaScaleSgi; - var _PostColorMatrixRedBias = OpenTK.Graphics.OpenGL4.PixelTransferParameter.PostColorMatrixRedBias; - var _PostColorMatrixRedBiasSgi = OpenTK.Graphics.OpenGL4.PixelTransferParameter.PostColorMatrixRedBiasSgi; - var _PostColorMatrixGreenBias = OpenTK.Graphics.OpenGL4.PixelTransferParameter.PostColorMatrixGreenBias; - var _PostColorMatrixGreenBiasSgi = OpenTK.Graphics.OpenGL4.PixelTransferParameter.PostColorMatrixGreenBiasSgi; - var _PostColorMatrixBlueBias = OpenTK.Graphics.OpenGL4.PixelTransferParameter.PostColorMatrixBlueBias; - var _PostColorMatrixBlueBiasSgi = OpenTK.Graphics.OpenGL4.PixelTransferParameter.PostColorMatrixBlueBiasSgi; - var _PostColorMatrixAlphaBias = OpenTK.Graphics.OpenGL4.PixelTransferParameter.PostColorMatrixAlphaBias; - var _PostColorMatrixAlphaBiasSgi = OpenTK.Graphics.OpenGL4.PixelTransferParameter.PostColorMatrixAlphaBiasSgi; -} -static void Test_PixelType_37627() { - var _Byte = OpenTK.Graphics.OpenGL4.PixelType.Byte; - var _UnsignedByte = OpenTK.Graphics.OpenGL4.PixelType.UnsignedByte; - var _Short = OpenTK.Graphics.OpenGL4.PixelType.Short; - var _UnsignedShort = OpenTK.Graphics.OpenGL4.PixelType.UnsignedShort; - var _Int = OpenTK.Graphics.OpenGL4.PixelType.Int; - var _UnsignedInt = OpenTK.Graphics.OpenGL4.PixelType.UnsignedInt; - var _Float = OpenTK.Graphics.OpenGL4.PixelType.Float; - var _HalfFloat = OpenTK.Graphics.OpenGL4.PixelType.HalfFloat; - var _UnsignedByte332 = OpenTK.Graphics.OpenGL4.PixelType.UnsignedByte332; - var _UnsignedByte332Ext = OpenTK.Graphics.OpenGL4.PixelType.UnsignedByte332Ext; - var _UnsignedShort4444 = OpenTK.Graphics.OpenGL4.PixelType.UnsignedShort4444; - var _UnsignedShort4444Ext = OpenTK.Graphics.OpenGL4.PixelType.UnsignedShort4444Ext; - var _UnsignedShort5551 = OpenTK.Graphics.OpenGL4.PixelType.UnsignedShort5551; - var _UnsignedShort5551Ext = OpenTK.Graphics.OpenGL4.PixelType.UnsignedShort5551Ext; - var _UnsignedInt8888 = OpenTK.Graphics.OpenGL4.PixelType.UnsignedInt8888; - var _UnsignedInt8888Ext = OpenTK.Graphics.OpenGL4.PixelType.UnsignedInt8888Ext; - var _UnsignedInt1010102 = OpenTK.Graphics.OpenGL4.PixelType.UnsignedInt1010102; - var _UnsignedInt1010102Ext = OpenTK.Graphics.OpenGL4.PixelType.UnsignedInt1010102Ext; - var _UnsignedByte233Reversed = OpenTK.Graphics.OpenGL4.PixelType.UnsignedByte233Reversed; - var _UnsignedShort565 = OpenTK.Graphics.OpenGL4.PixelType.UnsignedShort565; - var _UnsignedShort565Reversed = OpenTK.Graphics.OpenGL4.PixelType.UnsignedShort565Reversed; - var _UnsignedShort4444Reversed = OpenTK.Graphics.OpenGL4.PixelType.UnsignedShort4444Reversed; - var _UnsignedShort1555Reversed = OpenTK.Graphics.OpenGL4.PixelType.UnsignedShort1555Reversed; - var _UnsignedInt8888Reversed = OpenTK.Graphics.OpenGL4.PixelType.UnsignedInt8888Reversed; - var _UnsignedInt2101010Reversed = OpenTK.Graphics.OpenGL4.PixelType.UnsignedInt2101010Reversed; - var _UnsignedInt248 = OpenTK.Graphics.OpenGL4.PixelType.UnsignedInt248; - var _UnsignedInt10F11F11FRev = OpenTK.Graphics.OpenGL4.PixelType.UnsignedInt10F11F11FRev; - var _UnsignedInt5999Rev = OpenTK.Graphics.OpenGL4.PixelType.UnsignedInt5999Rev; - var _Float32UnsignedInt248Rev = OpenTK.Graphics.OpenGL4.PixelType.Float32UnsignedInt248Rev; -} -static void Test_PointParameterName_37628() { - var _PointSizeMin = OpenTK.Graphics.OpenGL4.PointParameterName.PointSizeMin; - var _PointSizeMax = OpenTK.Graphics.OpenGL4.PointParameterName.PointSizeMax; - var _PointFadeThresholdSize = OpenTK.Graphics.OpenGL4.PointParameterName.PointFadeThresholdSize; - var _PointDistanceAttenuation = OpenTK.Graphics.OpenGL4.PointParameterName.PointDistanceAttenuation; - var _PointSpriteCoordOrigin = OpenTK.Graphics.OpenGL4.PointParameterName.PointSpriteCoordOrigin; -} -static void Test_PointParameterNameSgis_37629() { - var _PointSizeMinArb = OpenTK.Graphics.OpenGL4.PointParameterNameSgis.PointSizeMinArb; - var _PointSizeMinExt = OpenTK.Graphics.OpenGL4.PointParameterNameSgis.PointSizeMinExt; - var _PointSizeMinSgis = OpenTK.Graphics.OpenGL4.PointParameterNameSgis.PointSizeMinSgis; - var _PointSizeMaxArb = OpenTK.Graphics.OpenGL4.PointParameterNameSgis.PointSizeMaxArb; - var _PointSizeMaxExt = OpenTK.Graphics.OpenGL4.PointParameterNameSgis.PointSizeMaxExt; - var _PointSizeMaxSgis = OpenTK.Graphics.OpenGL4.PointParameterNameSgis.PointSizeMaxSgis; - var _PointFadeThresholdSize = OpenTK.Graphics.OpenGL4.PointParameterNameSgis.PointFadeThresholdSize; - var _PointFadeThresholdSizeArb = OpenTK.Graphics.OpenGL4.PointParameterNameSgis.PointFadeThresholdSizeArb; - var _PointFadeThresholdSizeExt = OpenTK.Graphics.OpenGL4.PointParameterNameSgis.PointFadeThresholdSizeExt; - var _PointFadeThresholdSizeSgis = OpenTK.Graphics.OpenGL4.PointParameterNameSgis.PointFadeThresholdSizeSgis; - var _DistanceAttenuationExt = OpenTK.Graphics.OpenGL4.PointParameterNameSgis.DistanceAttenuationExt; - var _DistanceAttenuationSgis = OpenTK.Graphics.OpenGL4.PointParameterNameSgis.DistanceAttenuationSgis; - var _PointDistanceAttenuationArb = OpenTK.Graphics.OpenGL4.PointParameterNameSgis.PointDistanceAttenuationArb; -} -static void Test_PointSpriteCoordOriginParameter_37630() { - var _LowerLeft = OpenTK.Graphics.OpenGL4.PointSpriteCoordOriginParameter.LowerLeft; - var _UpperLeft = OpenTK.Graphics.OpenGL4.PointSpriteCoordOriginParameter.UpperLeft; -} -static void Test_PolygonMode_37631() { - var _Point = OpenTK.Graphics.OpenGL4.PolygonMode.Point; - var _Line = OpenTK.Graphics.OpenGL4.PolygonMode.Line; - var _Fill = OpenTK.Graphics.OpenGL4.PolygonMode.Fill; -} -static void Test_PrimitiveType_37632() { - var _Points = OpenTK.Graphics.OpenGL4.PrimitiveType.Points; - var _Lines = OpenTK.Graphics.OpenGL4.PrimitiveType.Lines; - var _LineLoop = OpenTK.Graphics.OpenGL4.PrimitiveType.LineLoop; - var _LineStrip = OpenTK.Graphics.OpenGL4.PrimitiveType.LineStrip; - var _Triangles = OpenTK.Graphics.OpenGL4.PrimitiveType.Triangles; - var _TriangleStrip = OpenTK.Graphics.OpenGL4.PrimitiveType.TriangleStrip; - var _TriangleFan = OpenTK.Graphics.OpenGL4.PrimitiveType.TriangleFan; - var _Quads = OpenTK.Graphics.OpenGL4.PrimitiveType.Quads; - var _QuadsExt = OpenTK.Graphics.OpenGL4.PrimitiveType.QuadsExt; - var _LinesAdjacency = OpenTK.Graphics.OpenGL4.PrimitiveType.LinesAdjacency; - var _LinesAdjacencyArb = OpenTK.Graphics.OpenGL4.PrimitiveType.LinesAdjacencyArb; - var _LinesAdjacencyExt = OpenTK.Graphics.OpenGL4.PrimitiveType.LinesAdjacencyExt; - var _LineStripAdjacency = OpenTK.Graphics.OpenGL4.PrimitiveType.LineStripAdjacency; - var _LineStripAdjacencyArb = OpenTK.Graphics.OpenGL4.PrimitiveType.LineStripAdjacencyArb; - var _LineStripAdjacencyExt = OpenTK.Graphics.OpenGL4.PrimitiveType.LineStripAdjacencyExt; - var _TrianglesAdjacency = OpenTK.Graphics.OpenGL4.PrimitiveType.TrianglesAdjacency; - var _TrianglesAdjacencyArb = OpenTK.Graphics.OpenGL4.PrimitiveType.TrianglesAdjacencyArb; - var _TrianglesAdjacencyExt = OpenTK.Graphics.OpenGL4.PrimitiveType.TrianglesAdjacencyExt; - var _TriangleStripAdjacency = OpenTK.Graphics.OpenGL4.PrimitiveType.TriangleStripAdjacency; - var _TriangleStripAdjacencyArb = OpenTK.Graphics.OpenGL4.PrimitiveType.TriangleStripAdjacencyArb; - var _TriangleStripAdjacencyExt = OpenTK.Graphics.OpenGL4.PrimitiveType.TriangleStripAdjacencyExt; - var _Patches = OpenTK.Graphics.OpenGL4.PrimitiveType.Patches; - var _PatchesExt = OpenTK.Graphics.OpenGL4.PrimitiveType.PatchesExt; -} -static void Test_ProgramInterface_37633() { - var _TransformFeedbackBuffer = OpenTK.Graphics.OpenGL4.ProgramInterface.TransformFeedbackBuffer; - var _AtomicCounterBuffer = OpenTK.Graphics.OpenGL4.ProgramInterface.AtomicCounterBuffer; - var _Uniform = OpenTK.Graphics.OpenGL4.ProgramInterface.Uniform; - var _UniformBlock = OpenTK.Graphics.OpenGL4.ProgramInterface.UniformBlock; - var _ProgramInput = OpenTK.Graphics.OpenGL4.ProgramInterface.ProgramInput; - var _ProgramOutput = OpenTK.Graphics.OpenGL4.ProgramInterface.ProgramOutput; - var _BufferVariable = OpenTK.Graphics.OpenGL4.ProgramInterface.BufferVariable; - var _ShaderStorageBlock = OpenTK.Graphics.OpenGL4.ProgramInterface.ShaderStorageBlock; - var _VertexSubroutine = OpenTK.Graphics.OpenGL4.ProgramInterface.VertexSubroutine; - var _TessControlSubroutine = OpenTK.Graphics.OpenGL4.ProgramInterface.TessControlSubroutine; - var _TessEvaluationSubroutine = OpenTK.Graphics.OpenGL4.ProgramInterface.TessEvaluationSubroutine; - var _GeometrySubroutine = OpenTK.Graphics.OpenGL4.ProgramInterface.GeometrySubroutine; - var _FragmentSubroutine = OpenTK.Graphics.OpenGL4.ProgramInterface.FragmentSubroutine; - var _ComputeSubroutine = OpenTK.Graphics.OpenGL4.ProgramInterface.ComputeSubroutine; - var _VertexSubroutineUniform = OpenTK.Graphics.OpenGL4.ProgramInterface.VertexSubroutineUniform; - var _TessControlSubroutineUniform = OpenTK.Graphics.OpenGL4.ProgramInterface.TessControlSubroutineUniform; - var _TessEvaluationSubroutineUniform = OpenTK.Graphics.OpenGL4.ProgramInterface.TessEvaluationSubroutineUniform; - var _GeometrySubroutineUniform = OpenTK.Graphics.OpenGL4.ProgramInterface.GeometrySubroutineUniform; - var _FragmentSubroutineUniform = OpenTK.Graphics.OpenGL4.ProgramInterface.FragmentSubroutineUniform; - var _ComputeSubroutineUniform = OpenTK.Graphics.OpenGL4.ProgramInterface.ComputeSubroutineUniform; - var _TransformFeedbackVarying = OpenTK.Graphics.OpenGL4.ProgramInterface.TransformFeedbackVarying; -} -static void Test_ProgramInterfaceParameter_37634() { - var _ActiveResources = OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter.ActiveResources; - var _MaxNameLength = OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter.MaxNameLength; - var _MaxNumActiveVariables = OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter.MaxNumActiveVariables; - var _MaxNumCompatibleSubroutines = OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter.MaxNumCompatibleSubroutines; -} -static void Test_ProgramParameter_37635() { - var _ProgramBinaryRetrievableHint = OpenTK.Graphics.OpenGL4.ProgramParameter.ProgramBinaryRetrievableHint; - var _ProgramSeparable = OpenTK.Graphics.OpenGL4.ProgramParameter.ProgramSeparable; - var _GeometryShaderInvocations = OpenTK.Graphics.OpenGL4.ProgramParameter.GeometryShaderInvocations; - var _GeometryVerticesOut = OpenTK.Graphics.OpenGL4.ProgramParameter.GeometryVerticesOut; - var _GeometryInputType = OpenTK.Graphics.OpenGL4.ProgramParameter.GeometryInputType; - var _GeometryOutputType = OpenTK.Graphics.OpenGL4.ProgramParameter.GeometryOutputType; - var _ActiveUniformBlockMaxNameLength = OpenTK.Graphics.OpenGL4.ProgramParameter.ActiveUniformBlockMaxNameLength; - var _ActiveUniformBlocks = OpenTK.Graphics.OpenGL4.ProgramParameter.ActiveUniformBlocks; - var _DeleteStatus = OpenTK.Graphics.OpenGL4.ProgramParameter.DeleteStatus; - var _LinkStatus = OpenTK.Graphics.OpenGL4.ProgramParameter.LinkStatus; - var _ValidateStatus = OpenTK.Graphics.OpenGL4.ProgramParameter.ValidateStatus; - var _InfoLogLength = OpenTK.Graphics.OpenGL4.ProgramParameter.InfoLogLength; - var _AttachedShaders = OpenTK.Graphics.OpenGL4.ProgramParameter.AttachedShaders; - var _ActiveUniforms = OpenTK.Graphics.OpenGL4.ProgramParameter.ActiveUniforms; - var _ActiveUniformMaxLength = OpenTK.Graphics.OpenGL4.ProgramParameter.ActiveUniformMaxLength; - var _ActiveAttributes = OpenTK.Graphics.OpenGL4.ProgramParameter.ActiveAttributes; - var _ActiveAttributeMaxLength = OpenTK.Graphics.OpenGL4.ProgramParameter.ActiveAttributeMaxLength; - var _TransformFeedbackVaryingMaxLength = OpenTK.Graphics.OpenGL4.ProgramParameter.TransformFeedbackVaryingMaxLength; - var _TransformFeedbackBufferMode = OpenTK.Graphics.OpenGL4.ProgramParameter.TransformFeedbackBufferMode; - var _TransformFeedbackVaryings = OpenTK.Graphics.OpenGL4.ProgramParameter.TransformFeedbackVaryings; - var _TessControlOutputVertices = OpenTK.Graphics.OpenGL4.ProgramParameter.TessControlOutputVertices; - var _TessGenMode = OpenTK.Graphics.OpenGL4.ProgramParameter.TessGenMode; - var _TessGenSpacing = OpenTK.Graphics.OpenGL4.ProgramParameter.TessGenSpacing; - var _TessGenVertexOrder = OpenTK.Graphics.OpenGL4.ProgramParameter.TessGenVertexOrder; - var _TessGenPointMode = OpenTK.Graphics.OpenGL4.ProgramParameter.TessGenPointMode; - var _MaxComputeWorkGroupSize = OpenTK.Graphics.OpenGL4.ProgramParameter.MaxComputeWorkGroupSize; - var _ActiveAtomicCounterBuffers = OpenTK.Graphics.OpenGL4.ProgramParameter.ActiveAtomicCounterBuffers; -} -static void Test_ProgramParameterName_37636() { - var _ProgramBinaryRetrievableHint = OpenTK.Graphics.OpenGL4.ProgramParameterName.ProgramBinaryRetrievableHint; - var _ProgramSeparable = OpenTK.Graphics.OpenGL4.ProgramParameterName.ProgramSeparable; -} -static void Test_ProgramParameterPName_37637() { - var _ProgramBinaryRetrievableHint = OpenTK.Graphics.OpenGL4.ProgramParameterPName.ProgramBinaryRetrievableHint; - var _ProgramSeparable = OpenTK.Graphics.OpenGL4.ProgramParameterPName.ProgramSeparable; -} -static void Test_ProgramPipelineParameter_37638() { - var _ActiveProgram = OpenTK.Graphics.OpenGL4.ProgramPipelineParameter.ActiveProgram; - var _FragmentShader = OpenTK.Graphics.OpenGL4.ProgramPipelineParameter.FragmentShader; - var _VertexShader = OpenTK.Graphics.OpenGL4.ProgramPipelineParameter.VertexShader; - var _ValidateStatus = OpenTK.Graphics.OpenGL4.ProgramPipelineParameter.ValidateStatus; - var _InfoLogLength = OpenTK.Graphics.OpenGL4.ProgramPipelineParameter.InfoLogLength; - var _GeometryShader = OpenTK.Graphics.OpenGL4.ProgramPipelineParameter.GeometryShader; - var _TessEvaluationShader = OpenTK.Graphics.OpenGL4.ProgramPipelineParameter.TessEvaluationShader; - var _TessControlShader = OpenTK.Graphics.OpenGL4.ProgramPipelineParameter.TessControlShader; - var _ComputeShader = OpenTK.Graphics.OpenGL4.ProgramPipelineParameter.ComputeShader; -} -static void Test_ProgramProperty_37639() { - var _NumCompatibleSubroutines = OpenTK.Graphics.OpenGL4.ProgramProperty.NumCompatibleSubroutines; - var _CompatibleSubroutines = OpenTK.Graphics.OpenGL4.ProgramProperty.CompatibleSubroutines; - var _IsPerPatch = OpenTK.Graphics.OpenGL4.ProgramProperty.IsPerPatch; - var _NameLength = OpenTK.Graphics.OpenGL4.ProgramProperty.NameLength; - var _Type = OpenTK.Graphics.OpenGL4.ProgramProperty.Type; - var _ArraySize = OpenTK.Graphics.OpenGL4.ProgramProperty.ArraySize; - var _Offset = OpenTK.Graphics.OpenGL4.ProgramProperty.Offset; - var _BlockIndex = OpenTK.Graphics.OpenGL4.ProgramProperty.BlockIndex; - var _ArrayStride = OpenTK.Graphics.OpenGL4.ProgramProperty.ArrayStride; - var _MatrixStride = OpenTK.Graphics.OpenGL4.ProgramProperty.MatrixStride; - var _IsRowMajor = OpenTK.Graphics.OpenGL4.ProgramProperty.IsRowMajor; - var _AtomicCounterBufferIndex = OpenTK.Graphics.OpenGL4.ProgramProperty.AtomicCounterBufferIndex; - var _BufferBinding = OpenTK.Graphics.OpenGL4.ProgramProperty.BufferBinding; - var _BufferDataSize = OpenTK.Graphics.OpenGL4.ProgramProperty.BufferDataSize; - var _NumActiveVariables = OpenTK.Graphics.OpenGL4.ProgramProperty.NumActiveVariables; - var _ActiveVariables = OpenTK.Graphics.OpenGL4.ProgramProperty.ActiveVariables; - var _ReferencedByVertexShader = OpenTK.Graphics.OpenGL4.ProgramProperty.ReferencedByVertexShader; - var _ReferencedByTessControlShader = OpenTK.Graphics.OpenGL4.ProgramProperty.ReferencedByTessControlShader; - var _ReferencedByTessEvaluationShader = OpenTK.Graphics.OpenGL4.ProgramProperty.ReferencedByTessEvaluationShader; - var _ReferencedByGeometryShader = OpenTK.Graphics.OpenGL4.ProgramProperty.ReferencedByGeometryShader; - var _ReferencedByFragmentShader = OpenTK.Graphics.OpenGL4.ProgramProperty.ReferencedByFragmentShader; - var _TopLevelArraySize = OpenTK.Graphics.OpenGL4.ProgramProperty.TopLevelArraySize; - var _TopLevelArrayStride = OpenTK.Graphics.OpenGL4.ProgramProperty.TopLevelArrayStride; - var _Location = OpenTK.Graphics.OpenGL4.ProgramProperty.Location; - var _LocationIndex = OpenTK.Graphics.OpenGL4.ProgramProperty.LocationIndex; - var _LocationComponent = OpenTK.Graphics.OpenGL4.ProgramProperty.LocationComponent; - var _TransformFeedbackBufferIndex = OpenTK.Graphics.OpenGL4.ProgramProperty.TransformFeedbackBufferIndex; - var _TransformFeedbackBufferStride = OpenTK.Graphics.OpenGL4.ProgramProperty.TransformFeedbackBufferStride; -} -static void Test_ProgramStageMask_37640() { - var _VertexShaderBit = OpenTK.Graphics.OpenGL4.ProgramStageMask.VertexShaderBit; - var _FragmentShaderBit = OpenTK.Graphics.OpenGL4.ProgramStageMask.FragmentShaderBit; - var _GeometryShaderBit = OpenTK.Graphics.OpenGL4.ProgramStageMask.GeometryShaderBit; - var _TessControlShaderBit = OpenTK.Graphics.OpenGL4.ProgramStageMask.TessControlShaderBit; - var _TessEvaluationShaderBit = OpenTK.Graphics.OpenGL4.ProgramStageMask.TessEvaluationShaderBit; - var _ComputeShaderBit = OpenTK.Graphics.OpenGL4.ProgramStageMask.ComputeShaderBit; - var _AllShaderBits = OpenTK.Graphics.OpenGL4.ProgramStageMask.AllShaderBits; -} -static void Test_ProgramStageParameter_37641() { - var _ActiveSubroutines = OpenTK.Graphics.OpenGL4.ProgramStageParameter.ActiveSubroutines; - var _ActiveSubroutineUniforms = OpenTK.Graphics.OpenGL4.ProgramStageParameter.ActiveSubroutineUniforms; - var _ActiveSubroutineUniformLocations = OpenTK.Graphics.OpenGL4.ProgramStageParameter.ActiveSubroutineUniformLocations; - var _ActiveSubroutineMaxLength = OpenTK.Graphics.OpenGL4.ProgramStageParameter.ActiveSubroutineMaxLength; - var _ActiveSubroutineUniformMaxLength = OpenTK.Graphics.OpenGL4.ProgramStageParameter.ActiveSubroutineUniformMaxLength; -} -static void Test_ProvokingVertexMode_37642() { - var _FirstVertexConvention = OpenTK.Graphics.OpenGL4.ProvokingVertexMode.FirstVertexConvention; - var _LastVertexConvention = OpenTK.Graphics.OpenGL4.ProvokingVertexMode.LastVertexConvention; -} -static void Test_QueryCounterTarget_37643() { - var _Timestamp = OpenTK.Graphics.OpenGL4.QueryCounterTarget.Timestamp; -} -static void Test_QueryTarget_37644() { - var _TimeElapsed = OpenTK.Graphics.OpenGL4.QueryTarget.TimeElapsed; - var _SamplesPassed = OpenTK.Graphics.OpenGL4.QueryTarget.SamplesPassed; - var _AnySamplesPassed = OpenTK.Graphics.OpenGL4.QueryTarget.AnySamplesPassed; - var _PrimitivesGenerated = OpenTK.Graphics.OpenGL4.QueryTarget.PrimitivesGenerated; - var _TransformFeedbackPrimitivesWritten = OpenTK.Graphics.OpenGL4.QueryTarget.TransformFeedbackPrimitivesWritten; - var _AnySamplesPassedConservative = OpenTK.Graphics.OpenGL4.QueryTarget.AnySamplesPassedConservative; - var _Timestamp = OpenTK.Graphics.OpenGL4.QueryTarget.Timestamp; -} -static void Test_ReadBufferMode_37645() { - var _None = OpenTK.Graphics.OpenGL4.ReadBufferMode.None; - var _FrontLeft = OpenTK.Graphics.OpenGL4.ReadBufferMode.FrontLeft; - var _FrontRight = OpenTK.Graphics.OpenGL4.ReadBufferMode.FrontRight; - var _BackLeft = OpenTK.Graphics.OpenGL4.ReadBufferMode.BackLeft; - var _BackRight = OpenTK.Graphics.OpenGL4.ReadBufferMode.BackRight; - var _Front = OpenTK.Graphics.OpenGL4.ReadBufferMode.Front; - var _Back = OpenTK.Graphics.OpenGL4.ReadBufferMode.Back; - var _Left = OpenTK.Graphics.OpenGL4.ReadBufferMode.Left; - var _Right = OpenTK.Graphics.OpenGL4.ReadBufferMode.Right; - var _FrontAndBack = OpenTK.Graphics.OpenGL4.ReadBufferMode.FrontAndBack; - var _Aux0 = OpenTK.Graphics.OpenGL4.ReadBufferMode.Aux0; - var _Aux1 = OpenTK.Graphics.OpenGL4.ReadBufferMode.Aux1; - var _Aux2 = OpenTK.Graphics.OpenGL4.ReadBufferMode.Aux2; - var _Aux3 = OpenTK.Graphics.OpenGL4.ReadBufferMode.Aux3; - var _ColorAttachment0 = OpenTK.Graphics.OpenGL4.ReadBufferMode.ColorAttachment0; - var _ColorAttachment1 = OpenTK.Graphics.OpenGL4.ReadBufferMode.ColorAttachment1; - var _ColorAttachment2 = OpenTK.Graphics.OpenGL4.ReadBufferMode.ColorAttachment2; - var _ColorAttachment3 = OpenTK.Graphics.OpenGL4.ReadBufferMode.ColorAttachment3; - var _ColorAttachment4 = OpenTK.Graphics.OpenGL4.ReadBufferMode.ColorAttachment4; - var _ColorAttachment5 = OpenTK.Graphics.OpenGL4.ReadBufferMode.ColorAttachment5; - var _ColorAttachment6 = OpenTK.Graphics.OpenGL4.ReadBufferMode.ColorAttachment6; - var _ColorAttachment7 = OpenTK.Graphics.OpenGL4.ReadBufferMode.ColorAttachment7; - var _ColorAttachment8 = OpenTK.Graphics.OpenGL4.ReadBufferMode.ColorAttachment8; - var _ColorAttachment9 = OpenTK.Graphics.OpenGL4.ReadBufferMode.ColorAttachment9; - var _ColorAttachment10 = OpenTK.Graphics.OpenGL4.ReadBufferMode.ColorAttachment10; - var _ColorAttachment11 = OpenTK.Graphics.OpenGL4.ReadBufferMode.ColorAttachment11; - var _ColorAttachment12 = OpenTK.Graphics.OpenGL4.ReadBufferMode.ColorAttachment12; - var _ColorAttachment13 = OpenTK.Graphics.OpenGL4.ReadBufferMode.ColorAttachment13; - var _ColorAttachment14 = OpenTK.Graphics.OpenGL4.ReadBufferMode.ColorAttachment14; - var _ColorAttachment15 = OpenTK.Graphics.OpenGL4.ReadBufferMode.ColorAttachment15; -} -static void Test_RenderbufferParameterName_37646() { - var _RenderbufferSamples = OpenTK.Graphics.OpenGL4.RenderbufferParameterName.RenderbufferSamples; - var _RenderbufferWidth = OpenTK.Graphics.OpenGL4.RenderbufferParameterName.RenderbufferWidth; - var _RenderbufferWidthExt = OpenTK.Graphics.OpenGL4.RenderbufferParameterName.RenderbufferWidthExt; - var _RenderbufferHeight = OpenTK.Graphics.OpenGL4.RenderbufferParameterName.RenderbufferHeight; - var _RenderbufferHeightExt = OpenTK.Graphics.OpenGL4.RenderbufferParameterName.RenderbufferHeightExt; - var _RenderbufferInternalFormat = OpenTK.Graphics.OpenGL4.RenderbufferParameterName.RenderbufferInternalFormat; - var _RenderbufferInternalFormatExt = OpenTK.Graphics.OpenGL4.RenderbufferParameterName.RenderbufferInternalFormatExt; - var _RenderbufferRedSize = OpenTK.Graphics.OpenGL4.RenderbufferParameterName.RenderbufferRedSize; - var _RenderbufferRedSizeExt = OpenTK.Graphics.OpenGL4.RenderbufferParameterName.RenderbufferRedSizeExt; - var _RenderbufferGreenSize = OpenTK.Graphics.OpenGL4.RenderbufferParameterName.RenderbufferGreenSize; - var _RenderbufferGreenSizeExt = OpenTK.Graphics.OpenGL4.RenderbufferParameterName.RenderbufferGreenSizeExt; - var _RenderbufferBlueSize = OpenTK.Graphics.OpenGL4.RenderbufferParameterName.RenderbufferBlueSize; - var _RenderbufferBlueSizeExt = OpenTK.Graphics.OpenGL4.RenderbufferParameterName.RenderbufferBlueSizeExt; - var _RenderbufferAlphaSize = OpenTK.Graphics.OpenGL4.RenderbufferParameterName.RenderbufferAlphaSize; - var _RenderbufferAlphaSizeExt = OpenTK.Graphics.OpenGL4.RenderbufferParameterName.RenderbufferAlphaSizeExt; - var _RenderbufferDepthSize = OpenTK.Graphics.OpenGL4.RenderbufferParameterName.RenderbufferDepthSize; - var _RenderbufferDepthSizeExt = OpenTK.Graphics.OpenGL4.RenderbufferParameterName.RenderbufferDepthSizeExt; - var _RenderbufferStencilSize = OpenTK.Graphics.OpenGL4.RenderbufferParameterName.RenderbufferStencilSize; - var _RenderbufferStencilSizeExt = OpenTK.Graphics.OpenGL4.RenderbufferParameterName.RenderbufferStencilSizeExt; -} -static void Test_RenderbufferStorage_37647() { - var _DepthComponent = OpenTK.Graphics.OpenGL4.RenderbufferStorage.DepthComponent; - var _R3G3B2 = OpenTK.Graphics.OpenGL4.RenderbufferStorage.R3G3B2; - var _Rgb4 = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Rgb4; - var _Rgb5 = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Rgb5; - var _Rgb8 = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Rgb8; - var _Rgb10 = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Rgb10; - var _Rgb12 = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Rgb12; - var _Rgb16 = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Rgb16; - var _Rgba2 = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Rgba2; - var _Rgba4 = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Rgba4; - var _Rgba8 = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Rgba8; - var _Rgb10A2 = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Rgb10A2; - var _Rgba12 = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Rgba12; - var _Rgba16 = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Rgba16; - var _DepthComponent16 = OpenTK.Graphics.OpenGL4.RenderbufferStorage.DepthComponent16; - var _DepthComponent24 = OpenTK.Graphics.OpenGL4.RenderbufferStorage.DepthComponent24; - var _DepthComponent32 = OpenTK.Graphics.OpenGL4.RenderbufferStorage.DepthComponent32; - var _R8 = OpenTK.Graphics.OpenGL4.RenderbufferStorage.R8; - var _R16 = OpenTK.Graphics.OpenGL4.RenderbufferStorage.R16; - var _Rg8 = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Rg8; - var _Rg16 = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Rg16; - var _R16f = OpenTK.Graphics.OpenGL4.RenderbufferStorage.R16f; - var _R32f = OpenTK.Graphics.OpenGL4.RenderbufferStorage.R32f; - var _Rg16f = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Rg16f; - var _Rg32f = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Rg32f; - var _R8i = OpenTK.Graphics.OpenGL4.RenderbufferStorage.R8i; - var _R8ui = OpenTK.Graphics.OpenGL4.RenderbufferStorage.R8ui; - var _R16i = OpenTK.Graphics.OpenGL4.RenderbufferStorage.R16i; - var _R16ui = OpenTK.Graphics.OpenGL4.RenderbufferStorage.R16ui; - var _R32i = OpenTK.Graphics.OpenGL4.RenderbufferStorage.R32i; - var _R32ui = OpenTK.Graphics.OpenGL4.RenderbufferStorage.R32ui; - var _Rg8i = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Rg8i; - var _Rg8ui = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Rg8ui; - var _Rg16i = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Rg16i; - var _Rg16ui = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Rg16ui; - var _Rg32i = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Rg32i; - var _Rg32ui = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Rg32ui; - var _DepthStencil = OpenTK.Graphics.OpenGL4.RenderbufferStorage.DepthStencil; - var _Rgba32f = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Rgba32f; - var _Rgb32f = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Rgb32f; - var _Rgba16f = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Rgba16f; - var _Rgb16f = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Rgb16f; - var _Depth24Stencil8 = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Depth24Stencil8; - var _R11fG11fB10f = OpenTK.Graphics.OpenGL4.RenderbufferStorage.R11fG11fB10f; - var _Rgb9E5 = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Rgb9E5; - var _Srgb8 = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Srgb8; - var _Srgb8Alpha8 = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Srgb8Alpha8; - var _DepthComponent32f = OpenTK.Graphics.OpenGL4.RenderbufferStorage.DepthComponent32f; - var _Depth32fStencil8 = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Depth32fStencil8; - var _StencilIndex1 = OpenTK.Graphics.OpenGL4.RenderbufferStorage.StencilIndex1; - var _StencilIndex1Ext = OpenTK.Graphics.OpenGL4.RenderbufferStorage.StencilIndex1Ext; - var _StencilIndex4 = OpenTK.Graphics.OpenGL4.RenderbufferStorage.StencilIndex4; - var _StencilIndex4Ext = OpenTK.Graphics.OpenGL4.RenderbufferStorage.StencilIndex4Ext; - var _StencilIndex8 = OpenTK.Graphics.OpenGL4.RenderbufferStorage.StencilIndex8; - var _StencilIndex8Ext = OpenTK.Graphics.OpenGL4.RenderbufferStorage.StencilIndex8Ext; - var _StencilIndex16 = OpenTK.Graphics.OpenGL4.RenderbufferStorage.StencilIndex16; - var _StencilIndex16Ext = OpenTK.Graphics.OpenGL4.RenderbufferStorage.StencilIndex16Ext; - var _Rgba32ui = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Rgba32ui; - var _Rgb32ui = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Rgb32ui; - var _Rgba16ui = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Rgba16ui; - var _Rgb16ui = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Rgb16ui; - var _Rgba8ui = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Rgba8ui; - var _Rgb8ui = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Rgb8ui; - var _Rgba32i = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Rgba32i; - var _Rgb32i = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Rgb32i; - var _Rgba16i = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Rgba16i; - var _Rgb16i = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Rgb16i; - var _Rgba8i = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Rgba8i; - var _Rgb8i = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Rgb8i; - var _Rgb10A2ui = OpenTK.Graphics.OpenGL4.RenderbufferStorage.Rgb10A2ui; -} -static void Test_RenderbufferTarget_37648() { - var _Renderbuffer = OpenTK.Graphics.OpenGL4.RenderbufferTarget.Renderbuffer; - var _RenderbufferExt = OpenTK.Graphics.OpenGL4.RenderbufferTarget.RenderbufferExt; -} -static void Test_RenderingMode_37649() { -} -static void Test_SamplePatternSgis_37650() { - var _Gl1PassExt = OpenTK.Graphics.OpenGL4.SamplePatternSgis.Gl1PassExt; - var _Gl1PassSgis = OpenTK.Graphics.OpenGL4.SamplePatternSgis.Gl1PassSgis; - var _Gl2Pass0Ext = OpenTK.Graphics.OpenGL4.SamplePatternSgis.Gl2Pass0Ext; - var _Gl2Pass0Sgis = OpenTK.Graphics.OpenGL4.SamplePatternSgis.Gl2Pass0Sgis; - var _Gl2Pass1Ext = OpenTK.Graphics.OpenGL4.SamplePatternSgis.Gl2Pass1Ext; - var _Gl2Pass1Sgis = OpenTK.Graphics.OpenGL4.SamplePatternSgis.Gl2Pass1Sgis; - var _Gl4Pass0Ext = OpenTK.Graphics.OpenGL4.SamplePatternSgis.Gl4Pass0Ext; - var _Gl4Pass0Sgis = OpenTK.Graphics.OpenGL4.SamplePatternSgis.Gl4Pass0Sgis; - var _Gl4Pass1Ext = OpenTK.Graphics.OpenGL4.SamplePatternSgis.Gl4Pass1Ext; - var _Gl4Pass1Sgis = OpenTK.Graphics.OpenGL4.SamplePatternSgis.Gl4Pass1Sgis; - var _Gl4Pass2Ext = OpenTK.Graphics.OpenGL4.SamplePatternSgis.Gl4Pass2Ext; - var _Gl4Pass2Sgis = OpenTK.Graphics.OpenGL4.SamplePatternSgis.Gl4Pass2Sgis; - var _Gl4Pass3Ext = OpenTK.Graphics.OpenGL4.SamplePatternSgis.Gl4Pass3Ext; - var _Gl4Pass3Sgis = OpenTK.Graphics.OpenGL4.SamplePatternSgis.Gl4Pass3Sgis; -} -static void Test_SamplerParameter_37651() { - var _TextureBorderColor = OpenTK.Graphics.OpenGL4.SamplerParameter.TextureBorderColor; - var _TextureMagFilter = OpenTK.Graphics.OpenGL4.SamplerParameter.TextureMagFilter; - var _TextureMinFilter = OpenTK.Graphics.OpenGL4.SamplerParameter.TextureMinFilter; - var _TextureWrapS = OpenTK.Graphics.OpenGL4.SamplerParameter.TextureWrapS; - var _TextureWrapT = OpenTK.Graphics.OpenGL4.SamplerParameter.TextureWrapT; - var _TextureWrapR = OpenTK.Graphics.OpenGL4.SamplerParameter.TextureWrapR; - var _TextureMinLod = OpenTK.Graphics.OpenGL4.SamplerParameter.TextureMinLod; - var _TextureMaxLod = OpenTK.Graphics.OpenGL4.SamplerParameter.TextureMaxLod; - var _TextureMaxAnisotropyExt = OpenTK.Graphics.OpenGL4.SamplerParameter.TextureMaxAnisotropyExt; - var _TextureLodBias = OpenTK.Graphics.OpenGL4.SamplerParameter.TextureLodBias; - var _TextureCompareMode = OpenTK.Graphics.OpenGL4.SamplerParameter.TextureCompareMode; - var _TextureCompareFunc = OpenTK.Graphics.OpenGL4.SamplerParameter.TextureCompareFunc; -} -static void Test_SamplerParameterName_37652() { - var _TextureBorderColor = OpenTK.Graphics.OpenGL4.SamplerParameterName.TextureBorderColor; - var _TextureMagFilter = OpenTK.Graphics.OpenGL4.SamplerParameterName.TextureMagFilter; - var _TextureMinFilter = OpenTK.Graphics.OpenGL4.SamplerParameterName.TextureMinFilter; - var _TextureWrapS = OpenTK.Graphics.OpenGL4.SamplerParameterName.TextureWrapS; - var _TextureWrapT = OpenTK.Graphics.OpenGL4.SamplerParameterName.TextureWrapT; - var _TextureWrapR = OpenTK.Graphics.OpenGL4.SamplerParameterName.TextureWrapR; - var _TextureMinLod = OpenTK.Graphics.OpenGL4.SamplerParameterName.TextureMinLod; - var _TextureMaxLod = OpenTK.Graphics.OpenGL4.SamplerParameterName.TextureMaxLod; - var _TextureMaxAnisotropyExt = OpenTK.Graphics.OpenGL4.SamplerParameterName.TextureMaxAnisotropyExt; - var _TextureLodBias = OpenTK.Graphics.OpenGL4.SamplerParameterName.TextureLodBias; - var _TextureCompareMode = OpenTK.Graphics.OpenGL4.SamplerParameterName.TextureCompareMode; - var _TextureCompareFunc = OpenTK.Graphics.OpenGL4.SamplerParameterName.TextureCompareFunc; -} -static void Test_SeparableTarget_37653() { - var _Separable2D = OpenTK.Graphics.OpenGL4.SeparableTarget.Separable2D; -} -static void Test_SeparableTargetExt_37654() { - var _Separable2D = OpenTK.Graphics.OpenGL4.SeparableTargetExt.Separable2D; - var _Separable2DExt = OpenTK.Graphics.OpenGL4.SeparableTargetExt.Separable2DExt; -} -static void Test_SgixIccTexture_37655() { - var _RgbIccSgix = OpenTK.Graphics.OpenGL4.SgixIccTexture.RgbIccSgix; - var _RgbaIccSgix = OpenTK.Graphics.OpenGL4.SgixIccTexture.RgbaIccSgix; - var _AlphaIccSgix = OpenTK.Graphics.OpenGL4.SgixIccTexture.AlphaIccSgix; - var _LuminanceIccSgix = OpenTK.Graphics.OpenGL4.SgixIccTexture.LuminanceIccSgix; - var _IntensityIccSgix = OpenTK.Graphics.OpenGL4.SgixIccTexture.IntensityIccSgix; - var _LuminanceAlphaIccSgix = OpenTK.Graphics.OpenGL4.SgixIccTexture.LuminanceAlphaIccSgix; - var _R5G6B5IccSgix = OpenTK.Graphics.OpenGL4.SgixIccTexture.R5G6B5IccSgix; - var _R5G6B5A8IccSgix = OpenTK.Graphics.OpenGL4.SgixIccTexture.R5G6B5A8IccSgix; - var _Alpha16IccSgix = OpenTK.Graphics.OpenGL4.SgixIccTexture.Alpha16IccSgix; - var _Luminance16IccSgix = OpenTK.Graphics.OpenGL4.SgixIccTexture.Luminance16IccSgix; - var _Intensity16IccSgix = OpenTK.Graphics.OpenGL4.SgixIccTexture.Intensity16IccSgix; - var _Luminance16Alpha8IccSgix = OpenTK.Graphics.OpenGL4.SgixIccTexture.Luminance16Alpha8IccSgix; -} -static void Test_ShaderParameter_37656() { - var _ShaderType = OpenTK.Graphics.OpenGL4.ShaderParameter.ShaderType; - var _DeleteStatus = OpenTK.Graphics.OpenGL4.ShaderParameter.DeleteStatus; - var _CompileStatus = OpenTK.Graphics.OpenGL4.ShaderParameter.CompileStatus; - var _InfoLogLength = OpenTK.Graphics.OpenGL4.ShaderParameter.InfoLogLength; - var _ShaderSourceLength = OpenTK.Graphics.OpenGL4.ShaderParameter.ShaderSourceLength; -} -static void Test_ShaderPrecision_37657() { - var _LowFloat = OpenTK.Graphics.OpenGL4.ShaderPrecision.LowFloat; - var _MediumFloat = OpenTK.Graphics.OpenGL4.ShaderPrecision.MediumFloat; - var _HighFloat = OpenTK.Graphics.OpenGL4.ShaderPrecision.HighFloat; - var _LowInt = OpenTK.Graphics.OpenGL4.ShaderPrecision.LowInt; - var _MediumInt = OpenTK.Graphics.OpenGL4.ShaderPrecision.MediumInt; - var _HighInt = OpenTK.Graphics.OpenGL4.ShaderPrecision.HighInt; -} -static void Test_ShaderType_37658() { - var _FragmentShader = OpenTK.Graphics.OpenGL4.ShaderType.FragmentShader; - var _VertexShader = OpenTK.Graphics.OpenGL4.ShaderType.VertexShader; - var _GeometryShader = OpenTK.Graphics.OpenGL4.ShaderType.GeometryShader; - var _TessEvaluationShader = OpenTK.Graphics.OpenGL4.ShaderType.TessEvaluationShader; - var _TessControlShader = OpenTK.Graphics.OpenGL4.ShaderType.TessControlShader; - var _ComputeShader = OpenTK.Graphics.OpenGL4.ShaderType.ComputeShader; -} -static void Test_ShadingModel_37659() { -} -static void Test_SizedInternalFormat_37660() { - var _Rgba8 = OpenTK.Graphics.OpenGL4.SizedInternalFormat.Rgba8; - var _Rgba16 = OpenTK.Graphics.OpenGL4.SizedInternalFormat.Rgba16; - var _R8 = OpenTK.Graphics.OpenGL4.SizedInternalFormat.R8; - var _R16 = OpenTK.Graphics.OpenGL4.SizedInternalFormat.R16; - var _Rg8 = OpenTK.Graphics.OpenGL4.SizedInternalFormat.Rg8; - var _Rg16 = OpenTK.Graphics.OpenGL4.SizedInternalFormat.Rg16; - var _R16f = OpenTK.Graphics.OpenGL4.SizedInternalFormat.R16f; - var _R32f = OpenTK.Graphics.OpenGL4.SizedInternalFormat.R32f; - var _Rg16f = OpenTK.Graphics.OpenGL4.SizedInternalFormat.Rg16f; - var _Rg32f = OpenTK.Graphics.OpenGL4.SizedInternalFormat.Rg32f; - var _R8i = OpenTK.Graphics.OpenGL4.SizedInternalFormat.R8i; - var _R8ui = OpenTK.Graphics.OpenGL4.SizedInternalFormat.R8ui; - var _R16i = OpenTK.Graphics.OpenGL4.SizedInternalFormat.R16i; - var _R16ui = OpenTK.Graphics.OpenGL4.SizedInternalFormat.R16ui; - var _R32i = OpenTK.Graphics.OpenGL4.SizedInternalFormat.R32i; - var _R32ui = OpenTK.Graphics.OpenGL4.SizedInternalFormat.R32ui; - var _Rg8i = OpenTK.Graphics.OpenGL4.SizedInternalFormat.Rg8i; - var _Rg8ui = OpenTK.Graphics.OpenGL4.SizedInternalFormat.Rg8ui; - var _Rg16i = OpenTK.Graphics.OpenGL4.SizedInternalFormat.Rg16i; - var _Rg16ui = OpenTK.Graphics.OpenGL4.SizedInternalFormat.Rg16ui; - var _Rg32i = OpenTK.Graphics.OpenGL4.SizedInternalFormat.Rg32i; - var _Rg32ui = OpenTK.Graphics.OpenGL4.SizedInternalFormat.Rg32ui; - var _Rgba32f = OpenTK.Graphics.OpenGL4.SizedInternalFormat.Rgba32f; - var _Rgba16f = OpenTK.Graphics.OpenGL4.SizedInternalFormat.Rgba16f; - var _Rgba32ui = OpenTK.Graphics.OpenGL4.SizedInternalFormat.Rgba32ui; - var _Rgba16ui = OpenTK.Graphics.OpenGL4.SizedInternalFormat.Rgba16ui; - var _Rgba8ui = OpenTK.Graphics.OpenGL4.SizedInternalFormat.Rgba8ui; - var _Rgba32i = OpenTK.Graphics.OpenGL4.SizedInternalFormat.Rgba32i; - var _Rgba16i = OpenTK.Graphics.OpenGL4.SizedInternalFormat.Rgba16i; - var _Rgba8i = OpenTK.Graphics.OpenGL4.SizedInternalFormat.Rgba8i; -} -static void Test_StencilFace_37661() { - var _Front = OpenTK.Graphics.OpenGL4.StencilFace.Front; - var _Back = OpenTK.Graphics.OpenGL4.StencilFace.Back; - var _FrontAndBack = OpenTK.Graphics.OpenGL4.StencilFace.FrontAndBack; -} -static void Test_StencilFunction_37662() { - var _Never = OpenTK.Graphics.OpenGL4.StencilFunction.Never; - var _Less = OpenTK.Graphics.OpenGL4.StencilFunction.Less; - var _Equal = OpenTK.Graphics.OpenGL4.StencilFunction.Equal; - var _Lequal = OpenTK.Graphics.OpenGL4.StencilFunction.Lequal; - var _Greater = OpenTK.Graphics.OpenGL4.StencilFunction.Greater; - var _Notequal = OpenTK.Graphics.OpenGL4.StencilFunction.Notequal; - var _Gequal = OpenTK.Graphics.OpenGL4.StencilFunction.Gequal; - var _Always = OpenTK.Graphics.OpenGL4.StencilFunction.Always; -} -static void Test_StencilOp_37663() { - var _Zero = OpenTK.Graphics.OpenGL4.StencilOp.Zero; - var _Invert = OpenTK.Graphics.OpenGL4.StencilOp.Invert; - var _Keep = OpenTK.Graphics.OpenGL4.StencilOp.Keep; - var _Replace = OpenTK.Graphics.OpenGL4.StencilOp.Replace; - var _Incr = OpenTK.Graphics.OpenGL4.StencilOp.Incr; - var _Decr = OpenTK.Graphics.OpenGL4.StencilOp.Decr; - var _IncrWrap = OpenTK.Graphics.OpenGL4.StencilOp.IncrWrap; - var _DecrWrap = OpenTK.Graphics.OpenGL4.StencilOp.DecrWrap; -} -static void Test_StringName_37664() { - var _Vendor = OpenTK.Graphics.OpenGL4.StringName.Vendor; - var _Renderer = OpenTK.Graphics.OpenGL4.StringName.Renderer; - var _Version = OpenTK.Graphics.OpenGL4.StringName.Version; - var _Extensions = OpenTK.Graphics.OpenGL4.StringName.Extensions; - var _ShadingLanguageVersion = OpenTK.Graphics.OpenGL4.StringName.ShadingLanguageVersion; -} -static void Test_StringNameIndexed_37665() { - var _Extensions = OpenTK.Graphics.OpenGL4.StringNameIndexed.Extensions; - var _ShadingLanguageVersion = OpenTK.Graphics.OpenGL4.StringNameIndexed.ShadingLanguageVersion; -} -static void Test_SyncCondition_37666() { - var _SyncGpuCommandsComplete = OpenTK.Graphics.OpenGL4.SyncCondition.SyncGpuCommandsComplete; -} -static void Test_SyncParameterName_37667() { - var _ObjectType = OpenTK.Graphics.OpenGL4.SyncParameterName.ObjectType; - var _SyncCondition = OpenTK.Graphics.OpenGL4.SyncParameterName.SyncCondition; - var _SyncStatus = OpenTK.Graphics.OpenGL4.SyncParameterName.SyncStatus; - var _SyncFlags = OpenTK.Graphics.OpenGL4.SyncParameterName.SyncFlags; -} -static void Test_TexCoordPointerType_37668() { - var _Short = OpenTK.Graphics.OpenGL4.TexCoordPointerType.Short; - var _Int = OpenTK.Graphics.OpenGL4.TexCoordPointerType.Int; - var _Float = OpenTK.Graphics.OpenGL4.TexCoordPointerType.Float; - var _Double = OpenTK.Graphics.OpenGL4.TexCoordPointerType.Double; - var _HalfFloat = OpenTK.Graphics.OpenGL4.TexCoordPointerType.HalfFloat; - var _UnsignedInt2101010Rev = OpenTK.Graphics.OpenGL4.TexCoordPointerType.UnsignedInt2101010Rev; - var _Int2101010Rev = OpenTK.Graphics.OpenGL4.TexCoordPointerType.Int2101010Rev; -} -static void Test_TextureAccess_37669() { - var _ReadOnly = OpenTK.Graphics.OpenGL4.TextureAccess.ReadOnly; - var _WriteOnly = OpenTK.Graphics.OpenGL4.TextureAccess.WriteOnly; - var _ReadWrite = OpenTK.Graphics.OpenGL4.TextureAccess.ReadWrite; -} -static void Test_TextureBufferTarget_37670() { - var _TextureBuffer = OpenTK.Graphics.OpenGL4.TextureBufferTarget.TextureBuffer; -} -static void Test_TextureCompareMode_37671() { - var _None = OpenTK.Graphics.OpenGL4.TextureCompareMode.None; - var _CompareRefToTexture = OpenTK.Graphics.OpenGL4.TextureCompareMode.CompareRefToTexture; - var _CompareRToTexture = OpenTK.Graphics.OpenGL4.TextureCompareMode.CompareRToTexture; -} -static void Test_TextureCoordName_37672() { -} -static void Test_TextureEnvMode_37673() { - var _Add = OpenTK.Graphics.OpenGL4.TextureEnvMode.Add; - var _Blend = OpenTK.Graphics.OpenGL4.TextureEnvMode.Blend; - var _Replace = OpenTK.Graphics.OpenGL4.TextureEnvMode.Replace; - var _Modulate = OpenTK.Graphics.OpenGL4.TextureEnvMode.Modulate; - var _ReplaceExt = OpenTK.Graphics.OpenGL4.TextureEnvMode.ReplaceExt; - var _TextureEnvBiasSgix = OpenTK.Graphics.OpenGL4.TextureEnvMode.TextureEnvBiasSgix; - var _Combine = OpenTK.Graphics.OpenGL4.TextureEnvMode.Combine; -} -static void Test_TextureEnvModeCombine_37674() { - var _Add = OpenTK.Graphics.OpenGL4.TextureEnvModeCombine.Add; - var _Replace = OpenTK.Graphics.OpenGL4.TextureEnvModeCombine.Replace; - var _Modulate = OpenTK.Graphics.OpenGL4.TextureEnvModeCombine.Modulate; - var _Subtract = OpenTK.Graphics.OpenGL4.TextureEnvModeCombine.Subtract; - var _AddSigned = OpenTK.Graphics.OpenGL4.TextureEnvModeCombine.AddSigned; - var _Interpolate = OpenTK.Graphics.OpenGL4.TextureEnvModeCombine.Interpolate; - var _Dot3Rgb = OpenTK.Graphics.OpenGL4.TextureEnvModeCombine.Dot3Rgb; - var _Dot3Rgba = OpenTK.Graphics.OpenGL4.TextureEnvModeCombine.Dot3Rgba; -} -static void Test_TextureEnvModeOperandAlpha_37675() { - var _SrcAlpha = OpenTK.Graphics.OpenGL4.TextureEnvModeOperandAlpha.SrcAlpha; - var _OneMinusSrcAlpha = OpenTK.Graphics.OpenGL4.TextureEnvModeOperandAlpha.OneMinusSrcAlpha; -} -static void Test_TextureEnvModeOperandRgb_37676() { - var _SrcColor = OpenTK.Graphics.OpenGL4.TextureEnvModeOperandRgb.SrcColor; - var _OneMinusSrcColor = OpenTK.Graphics.OpenGL4.TextureEnvModeOperandRgb.OneMinusSrcColor; - var _SrcAlpha = OpenTK.Graphics.OpenGL4.TextureEnvModeOperandRgb.SrcAlpha; - var _OneMinusSrcAlpha = OpenTK.Graphics.OpenGL4.TextureEnvModeOperandRgb.OneMinusSrcAlpha; -} -static void Test_TextureEnvModePointSprite_37677() { - var _False = OpenTK.Graphics.OpenGL4.TextureEnvModePointSprite.False; - var _True = OpenTK.Graphics.OpenGL4.TextureEnvModePointSprite.True; -} -static void Test_TextureEnvModeScale_37678() { - var _One = OpenTK.Graphics.OpenGL4.TextureEnvModeScale.One; - var _Two = OpenTK.Graphics.OpenGL4.TextureEnvModeScale.Two; - var _Four = OpenTK.Graphics.OpenGL4.TextureEnvModeScale.Four; -} -static void Test_TextureEnvModeSource_37679() { - var _Texture = OpenTK.Graphics.OpenGL4.TextureEnvModeSource.Texture; - var _Texture0 = OpenTK.Graphics.OpenGL4.TextureEnvModeSource.Texture0; - var _Texture1 = OpenTK.Graphics.OpenGL4.TextureEnvModeSource.Texture1; - var _Texture2 = OpenTK.Graphics.OpenGL4.TextureEnvModeSource.Texture2; - var _Texture3 = OpenTK.Graphics.OpenGL4.TextureEnvModeSource.Texture3; - var _Texture4 = OpenTK.Graphics.OpenGL4.TextureEnvModeSource.Texture4; - var _Texture5 = OpenTK.Graphics.OpenGL4.TextureEnvModeSource.Texture5; - var _Texture6 = OpenTK.Graphics.OpenGL4.TextureEnvModeSource.Texture6; - var _Texture7 = OpenTK.Graphics.OpenGL4.TextureEnvModeSource.Texture7; - var _Texture8 = OpenTK.Graphics.OpenGL4.TextureEnvModeSource.Texture8; - var _Texture9 = OpenTK.Graphics.OpenGL4.TextureEnvModeSource.Texture9; - var _Texture10 = OpenTK.Graphics.OpenGL4.TextureEnvModeSource.Texture10; - var _Texture11 = OpenTK.Graphics.OpenGL4.TextureEnvModeSource.Texture11; - var _Texture12 = OpenTK.Graphics.OpenGL4.TextureEnvModeSource.Texture12; - var _Texture13 = OpenTK.Graphics.OpenGL4.TextureEnvModeSource.Texture13; - var _Texture14 = OpenTK.Graphics.OpenGL4.TextureEnvModeSource.Texture14; - var _Texture15 = OpenTK.Graphics.OpenGL4.TextureEnvModeSource.Texture15; - var _Texture16 = OpenTK.Graphics.OpenGL4.TextureEnvModeSource.Texture16; - var _Texture17 = OpenTK.Graphics.OpenGL4.TextureEnvModeSource.Texture17; - var _Texture18 = OpenTK.Graphics.OpenGL4.TextureEnvModeSource.Texture18; - var _Texture19 = OpenTK.Graphics.OpenGL4.TextureEnvModeSource.Texture19; - var _Texture20 = OpenTK.Graphics.OpenGL4.TextureEnvModeSource.Texture20; - var _Texture21 = OpenTK.Graphics.OpenGL4.TextureEnvModeSource.Texture21; - var _Texture22 = OpenTK.Graphics.OpenGL4.TextureEnvModeSource.Texture22; - var _Texture23 = OpenTK.Graphics.OpenGL4.TextureEnvModeSource.Texture23; - var _Texture24 = OpenTK.Graphics.OpenGL4.TextureEnvModeSource.Texture24; - var _Texture25 = OpenTK.Graphics.OpenGL4.TextureEnvModeSource.Texture25; - var _Texture26 = OpenTK.Graphics.OpenGL4.TextureEnvModeSource.Texture26; - var _Texture27 = OpenTK.Graphics.OpenGL4.TextureEnvModeSource.Texture27; - var _Texture28 = OpenTK.Graphics.OpenGL4.TextureEnvModeSource.Texture28; - var _Texture29 = OpenTK.Graphics.OpenGL4.TextureEnvModeSource.Texture29; - var _Texture30 = OpenTK.Graphics.OpenGL4.TextureEnvModeSource.Texture30; - var _Texture31 = OpenTK.Graphics.OpenGL4.TextureEnvModeSource.Texture31; - var _Constant = OpenTK.Graphics.OpenGL4.TextureEnvModeSource.Constant; - var _PrimaryColor = OpenTK.Graphics.OpenGL4.TextureEnvModeSource.PrimaryColor; - var _Previous = OpenTK.Graphics.OpenGL4.TextureEnvModeSource.Previous; -} -static void Test_TextureEnvParameter_37680() { - var _AlphaScale = OpenTK.Graphics.OpenGL4.TextureEnvParameter.AlphaScale; - var _TextureLodBias = OpenTK.Graphics.OpenGL4.TextureEnvParameter.TextureLodBias; - var _CombineRgb = OpenTK.Graphics.OpenGL4.TextureEnvParameter.CombineRgb; - var _CombineAlpha = OpenTK.Graphics.OpenGL4.TextureEnvParameter.CombineAlpha; - var _RgbScale = OpenTK.Graphics.OpenGL4.TextureEnvParameter.RgbScale; - var _Source0Rgb = OpenTK.Graphics.OpenGL4.TextureEnvParameter.Source0Rgb; - var _Src1Rgb = OpenTK.Graphics.OpenGL4.TextureEnvParameter.Src1Rgb; - var _Src2Rgb = OpenTK.Graphics.OpenGL4.TextureEnvParameter.Src2Rgb; - var _Src0Alpha = OpenTK.Graphics.OpenGL4.TextureEnvParameter.Src0Alpha; - var _Src1Alpha = OpenTK.Graphics.OpenGL4.TextureEnvParameter.Src1Alpha; - var _Src2Alpha = OpenTK.Graphics.OpenGL4.TextureEnvParameter.Src2Alpha; - var _Operand0Rgb = OpenTK.Graphics.OpenGL4.TextureEnvParameter.Operand0Rgb; - var _Operand1Rgb = OpenTK.Graphics.OpenGL4.TextureEnvParameter.Operand1Rgb; - var _Operand2Rgb = OpenTK.Graphics.OpenGL4.TextureEnvParameter.Operand2Rgb; - var _Operand0Alpha = OpenTK.Graphics.OpenGL4.TextureEnvParameter.Operand0Alpha; - var _Operand1Alpha = OpenTK.Graphics.OpenGL4.TextureEnvParameter.Operand1Alpha; - var _Operand2Alpha = OpenTK.Graphics.OpenGL4.TextureEnvParameter.Operand2Alpha; - var _CoordReplace = OpenTK.Graphics.OpenGL4.TextureEnvParameter.CoordReplace; -} -static void Test_TextureEnvTarget_37681() { - var _TextureFilterControl = OpenTK.Graphics.OpenGL4.TextureEnvTarget.TextureFilterControl; - var _PointSprite = OpenTK.Graphics.OpenGL4.TextureEnvTarget.PointSprite; -} -static void Test_TextureFilterFuncSgis_37682() { - var _Filter4Sgis = OpenTK.Graphics.OpenGL4.TextureFilterFuncSgis.Filter4Sgis; -} -static void Test_TextureGenMode_37683() { - var _EyeDistanceToPointSgis = OpenTK.Graphics.OpenGL4.TextureGenMode.EyeDistanceToPointSgis; - var _ObjectDistanceToPointSgis = OpenTK.Graphics.OpenGL4.TextureGenMode.ObjectDistanceToPointSgis; - var _EyeDistanceToLineSgis = OpenTK.Graphics.OpenGL4.TextureGenMode.EyeDistanceToLineSgis; - var _ObjectDistanceToLineSgis = OpenTK.Graphics.OpenGL4.TextureGenMode.ObjectDistanceToLineSgis; - var _NormalMap = OpenTK.Graphics.OpenGL4.TextureGenMode.NormalMap; - var _ReflectionMap = OpenTK.Graphics.OpenGL4.TextureGenMode.ReflectionMap; -} -static void Test_TextureGenParameter_37684() { - var _EyePointSgis = OpenTK.Graphics.OpenGL4.TextureGenParameter.EyePointSgis; - var _ObjectPointSgis = OpenTK.Graphics.OpenGL4.TextureGenParameter.ObjectPointSgis; - var _EyeLineSgis = OpenTK.Graphics.OpenGL4.TextureGenParameter.EyeLineSgis; - var _ObjectLineSgis = OpenTK.Graphics.OpenGL4.TextureGenParameter.ObjectLineSgis; -} -static void Test_TextureMagFilter_37685() { - var _Nearest = OpenTK.Graphics.OpenGL4.TextureMagFilter.Nearest; - var _Linear = OpenTK.Graphics.OpenGL4.TextureMagFilter.Linear; - var _LinearDetailSgis = OpenTK.Graphics.OpenGL4.TextureMagFilter.LinearDetailSgis; - var _LinearDetailAlphaSgis = OpenTK.Graphics.OpenGL4.TextureMagFilter.LinearDetailAlphaSgis; - var _LinearDetailColorSgis = OpenTK.Graphics.OpenGL4.TextureMagFilter.LinearDetailColorSgis; - var _LinearSharpenSgis = OpenTK.Graphics.OpenGL4.TextureMagFilter.LinearSharpenSgis; - var _LinearSharpenAlphaSgis = OpenTK.Graphics.OpenGL4.TextureMagFilter.LinearSharpenAlphaSgis; - var _LinearSharpenColorSgis = OpenTK.Graphics.OpenGL4.TextureMagFilter.LinearSharpenColorSgis; - var _Filter4Sgis = OpenTK.Graphics.OpenGL4.TextureMagFilter.Filter4Sgis; - var _PixelTexGenQCeilingSgix = OpenTK.Graphics.OpenGL4.TextureMagFilter.PixelTexGenQCeilingSgix; - var _PixelTexGenQRoundSgix = OpenTK.Graphics.OpenGL4.TextureMagFilter.PixelTexGenQRoundSgix; - var _PixelTexGenQFloorSgix = OpenTK.Graphics.OpenGL4.TextureMagFilter.PixelTexGenQFloorSgix; -} -static void Test_TextureMinFilter_37686() { - var _Nearest = OpenTK.Graphics.OpenGL4.TextureMinFilter.Nearest; - var _Linear = OpenTK.Graphics.OpenGL4.TextureMinFilter.Linear; - var _NearestMipmapNearest = OpenTK.Graphics.OpenGL4.TextureMinFilter.NearestMipmapNearest; - var _LinearMipmapNearest = OpenTK.Graphics.OpenGL4.TextureMinFilter.LinearMipmapNearest; - var _NearestMipmapLinear = OpenTK.Graphics.OpenGL4.TextureMinFilter.NearestMipmapLinear; - var _LinearMipmapLinear = OpenTK.Graphics.OpenGL4.TextureMinFilter.LinearMipmapLinear; - var _Filter4Sgis = OpenTK.Graphics.OpenGL4.TextureMinFilter.Filter4Sgis; - var _LinearClipmapLinearSgix = OpenTK.Graphics.OpenGL4.TextureMinFilter.LinearClipmapLinearSgix; - var _PixelTexGenQCeilingSgix = OpenTK.Graphics.OpenGL4.TextureMinFilter.PixelTexGenQCeilingSgix; - var _PixelTexGenQRoundSgix = OpenTK.Graphics.OpenGL4.TextureMinFilter.PixelTexGenQRoundSgix; - var _PixelTexGenQFloorSgix = OpenTK.Graphics.OpenGL4.TextureMinFilter.PixelTexGenQFloorSgix; - var _NearestClipmapNearestSgix = OpenTK.Graphics.OpenGL4.TextureMinFilter.NearestClipmapNearestSgix; - var _NearestClipmapLinearSgix = OpenTK.Graphics.OpenGL4.TextureMinFilter.NearestClipmapLinearSgix; - var _LinearClipmapNearestSgix = OpenTK.Graphics.OpenGL4.TextureMinFilter.LinearClipmapNearestSgix; -} -static void Test_TextureParameterName_37687() { - var _TextureBorderColor = OpenTK.Graphics.OpenGL4.TextureParameterName.TextureBorderColor; - var _TextureMagFilter = OpenTK.Graphics.OpenGL4.TextureParameterName.TextureMagFilter; - var _TextureMinFilter = OpenTK.Graphics.OpenGL4.TextureParameterName.TextureMinFilter; - var _TextureWrapS = OpenTK.Graphics.OpenGL4.TextureParameterName.TextureWrapS; - var _TextureWrapT = OpenTK.Graphics.OpenGL4.TextureParameterName.TextureWrapT; - var _TexturePriority = OpenTK.Graphics.OpenGL4.TextureParameterName.TexturePriority; - var _TexturePriorityExt = OpenTK.Graphics.OpenGL4.TextureParameterName.TexturePriorityExt; - var _TextureDepth = OpenTK.Graphics.OpenGL4.TextureParameterName.TextureDepth; - var _TextureWrapR = OpenTK.Graphics.OpenGL4.TextureParameterName.TextureWrapR; - var _TextureWrapRExt = OpenTK.Graphics.OpenGL4.TextureParameterName.TextureWrapRExt; - var _TextureWrapROes = OpenTK.Graphics.OpenGL4.TextureParameterName.TextureWrapROes; - var _DetailTextureLevelSgis = OpenTK.Graphics.OpenGL4.TextureParameterName.DetailTextureLevelSgis; - var _DetailTextureModeSgis = OpenTK.Graphics.OpenGL4.TextureParameterName.DetailTextureModeSgis; - var _ShadowAmbientSgix = OpenTK.Graphics.OpenGL4.TextureParameterName.ShadowAmbientSgix; - var _TextureCompareFailValue = OpenTK.Graphics.OpenGL4.TextureParameterName.TextureCompareFailValue; - var _DualTextureSelectSgis = OpenTK.Graphics.OpenGL4.TextureParameterName.DualTextureSelectSgis; - var _QuadTextureSelectSgis = OpenTK.Graphics.OpenGL4.TextureParameterName.QuadTextureSelectSgis; - var _ClampToBorder = OpenTK.Graphics.OpenGL4.TextureParameterName.ClampToBorder; - var _ClampToEdge = OpenTK.Graphics.OpenGL4.TextureParameterName.ClampToEdge; - var _TextureWrapQSgis = OpenTK.Graphics.OpenGL4.TextureParameterName.TextureWrapQSgis; - var _TextureMinLod = OpenTK.Graphics.OpenGL4.TextureParameterName.TextureMinLod; - var _TextureMaxLod = OpenTK.Graphics.OpenGL4.TextureParameterName.TextureMaxLod; - var _TextureBaseLevel = OpenTK.Graphics.OpenGL4.TextureParameterName.TextureBaseLevel; - var _TextureMaxLevel = OpenTK.Graphics.OpenGL4.TextureParameterName.TextureMaxLevel; - var _TextureClipmapCenterSgix = OpenTK.Graphics.OpenGL4.TextureParameterName.TextureClipmapCenterSgix; - var _TextureClipmapFrameSgix = OpenTK.Graphics.OpenGL4.TextureParameterName.TextureClipmapFrameSgix; - var _TextureClipmapOffsetSgix = OpenTK.Graphics.OpenGL4.TextureParameterName.TextureClipmapOffsetSgix; - var _TextureClipmapVirtualDepthSgix = OpenTK.Graphics.OpenGL4.TextureParameterName.TextureClipmapVirtualDepthSgix; - var _TextureClipmapLodOffsetSgix = OpenTK.Graphics.OpenGL4.TextureParameterName.TextureClipmapLodOffsetSgix; - var _TextureClipmapDepthSgix = OpenTK.Graphics.OpenGL4.TextureParameterName.TextureClipmapDepthSgix; - var _PostTextureFilterBiasSgix = OpenTK.Graphics.OpenGL4.TextureParameterName.PostTextureFilterBiasSgix; - var _PostTextureFilterScaleSgix = OpenTK.Graphics.OpenGL4.TextureParameterName.PostTextureFilterScaleSgix; - var _TextureLodBiasSSgix = OpenTK.Graphics.OpenGL4.TextureParameterName.TextureLodBiasSSgix; - var _TextureLodBiasTSgix = OpenTK.Graphics.OpenGL4.TextureParameterName.TextureLodBiasTSgix; - var _TextureLodBiasRSgix = OpenTK.Graphics.OpenGL4.TextureParameterName.TextureLodBiasRSgix; - var _GenerateMipmap = OpenTK.Graphics.OpenGL4.TextureParameterName.GenerateMipmap; - var _GenerateMipmapSgis = OpenTK.Graphics.OpenGL4.TextureParameterName.GenerateMipmapSgis; - var _TextureCompareSgix = OpenTK.Graphics.OpenGL4.TextureParameterName.TextureCompareSgix; - var _TextureMaxClampSSgix = OpenTK.Graphics.OpenGL4.TextureParameterName.TextureMaxClampSSgix; - var _TextureMaxClampTSgix = OpenTK.Graphics.OpenGL4.TextureParameterName.TextureMaxClampTSgix; - var _TextureMaxClampRSgix = OpenTK.Graphics.OpenGL4.TextureParameterName.TextureMaxClampRSgix; - var _TextureLodBias = OpenTK.Graphics.OpenGL4.TextureParameterName.TextureLodBias; - var _DepthTextureMode = OpenTK.Graphics.OpenGL4.TextureParameterName.DepthTextureMode; - var _TextureCompareMode = OpenTK.Graphics.OpenGL4.TextureParameterName.TextureCompareMode; - var _TextureCompareFunc = OpenTK.Graphics.OpenGL4.TextureParameterName.TextureCompareFunc; - var _TextureSwizzleR = OpenTK.Graphics.OpenGL4.TextureParameterName.TextureSwizzleR; - var _TextureSwizzleG = OpenTK.Graphics.OpenGL4.TextureParameterName.TextureSwizzleG; - var _TextureSwizzleB = OpenTK.Graphics.OpenGL4.TextureParameterName.TextureSwizzleB; - var _TextureSwizzleA = OpenTK.Graphics.OpenGL4.TextureParameterName.TextureSwizzleA; - var _TextureSwizzleRgba = OpenTK.Graphics.OpenGL4.TextureParameterName.TextureSwizzleRgba; -} -static void Test_TextureTarget_37688() { - var _Texture1D = OpenTK.Graphics.OpenGL4.TextureTarget.Texture1D; - var _Texture2D = OpenTK.Graphics.OpenGL4.TextureTarget.Texture2D; - var _ProxyTexture1D = OpenTK.Graphics.OpenGL4.TextureTarget.ProxyTexture1D; - var _ProxyTexture1DExt = OpenTK.Graphics.OpenGL4.TextureTarget.ProxyTexture1DExt; - var _ProxyTexture2D = OpenTK.Graphics.OpenGL4.TextureTarget.ProxyTexture2D; - var _ProxyTexture2DExt = OpenTK.Graphics.OpenGL4.TextureTarget.ProxyTexture2DExt; - var _Texture3D = OpenTK.Graphics.OpenGL4.TextureTarget.Texture3D; - var _Texture3DExt = OpenTK.Graphics.OpenGL4.TextureTarget.Texture3DExt; - var _Texture3DOes = OpenTK.Graphics.OpenGL4.TextureTarget.Texture3DOes; - var _ProxyTexture3D = OpenTK.Graphics.OpenGL4.TextureTarget.ProxyTexture3D; - var _ProxyTexture3DExt = OpenTK.Graphics.OpenGL4.TextureTarget.ProxyTexture3DExt; - var _DetailTexture2DSgis = OpenTK.Graphics.OpenGL4.TextureTarget.DetailTexture2DSgis; - var _Texture4DSgis = OpenTK.Graphics.OpenGL4.TextureTarget.Texture4DSgis; - var _ProxyTexture4DSgis = OpenTK.Graphics.OpenGL4.TextureTarget.ProxyTexture4DSgis; - var _TextureMinLod = OpenTK.Graphics.OpenGL4.TextureTarget.TextureMinLod; - var _TextureMinLodSgis = OpenTK.Graphics.OpenGL4.TextureTarget.TextureMinLodSgis; - var _TextureMaxLod = OpenTK.Graphics.OpenGL4.TextureTarget.TextureMaxLod; - var _TextureMaxLodSgis = OpenTK.Graphics.OpenGL4.TextureTarget.TextureMaxLodSgis; - var _TextureBaseLevel = OpenTK.Graphics.OpenGL4.TextureTarget.TextureBaseLevel; - var _TextureBaseLevelSgis = OpenTK.Graphics.OpenGL4.TextureTarget.TextureBaseLevelSgis; - var _TextureMaxLevel = OpenTK.Graphics.OpenGL4.TextureTarget.TextureMaxLevel; - var _TextureMaxLevelSgis = OpenTK.Graphics.OpenGL4.TextureTarget.TextureMaxLevelSgis; - var _TextureRectangle = OpenTK.Graphics.OpenGL4.TextureTarget.TextureRectangle; - var _ProxyTextureRectangle = OpenTK.Graphics.OpenGL4.TextureTarget.ProxyTextureRectangle; - var _TextureCubeMap = OpenTK.Graphics.OpenGL4.TextureTarget.TextureCubeMap; - var _TextureBindingCubeMap = OpenTK.Graphics.OpenGL4.TextureTarget.TextureBindingCubeMap; - var _TextureCubeMapPositiveX = OpenTK.Graphics.OpenGL4.TextureTarget.TextureCubeMapPositiveX; - var _TextureCubeMapNegativeX = OpenTK.Graphics.OpenGL4.TextureTarget.TextureCubeMapNegativeX; - var _TextureCubeMapPositiveY = OpenTK.Graphics.OpenGL4.TextureTarget.TextureCubeMapPositiveY; - var _TextureCubeMapNegativeY = OpenTK.Graphics.OpenGL4.TextureTarget.TextureCubeMapNegativeY; - var _TextureCubeMapPositiveZ = OpenTK.Graphics.OpenGL4.TextureTarget.TextureCubeMapPositiveZ; - var _TextureCubeMapNegativeZ = OpenTK.Graphics.OpenGL4.TextureTarget.TextureCubeMapNegativeZ; - var _ProxyTextureCubeMap = OpenTK.Graphics.OpenGL4.TextureTarget.ProxyTextureCubeMap; - var _Texture1DArray = OpenTK.Graphics.OpenGL4.TextureTarget.Texture1DArray; - var _ProxyTexture1DArray = OpenTK.Graphics.OpenGL4.TextureTarget.ProxyTexture1DArray; - var _Texture2DArray = OpenTK.Graphics.OpenGL4.TextureTarget.Texture2DArray; - var _ProxyTexture2DArray = OpenTK.Graphics.OpenGL4.TextureTarget.ProxyTexture2DArray; - var _TextureBuffer = OpenTK.Graphics.OpenGL4.TextureTarget.TextureBuffer; - var _TextureCubeMapArray = OpenTK.Graphics.OpenGL4.TextureTarget.TextureCubeMapArray; - var _ProxyTextureCubeMapArray = OpenTK.Graphics.OpenGL4.TextureTarget.ProxyTextureCubeMapArray; - var _Texture2DMultisample = OpenTK.Graphics.OpenGL4.TextureTarget.Texture2DMultisample; - var _ProxyTexture2DMultisample = OpenTK.Graphics.OpenGL4.TextureTarget.ProxyTexture2DMultisample; - var _Texture2DMultisampleArray = OpenTK.Graphics.OpenGL4.TextureTarget.Texture2DMultisampleArray; - var _ProxyTexture2DMultisampleArray = OpenTK.Graphics.OpenGL4.TextureTarget.ProxyTexture2DMultisampleArray; -} -static void Test_TextureTarget1d_37689() { - var _Texture1D = OpenTK.Graphics.OpenGL4.TextureTarget1d.Texture1D; - var _ProxyTexture1D = OpenTK.Graphics.OpenGL4.TextureTarget1d.ProxyTexture1D; -} -static void Test_TextureTarget2d_37690() { - var _Texture2D = OpenTK.Graphics.OpenGL4.TextureTarget2d.Texture2D; - var _ProxyTexture2D = OpenTK.Graphics.OpenGL4.TextureTarget2d.ProxyTexture2D; - var _TextureRectangle = OpenTK.Graphics.OpenGL4.TextureTarget2d.TextureRectangle; - var _ProxyTextureRectangle = OpenTK.Graphics.OpenGL4.TextureTarget2d.ProxyTextureRectangle; - var _TextureCubeMap = OpenTK.Graphics.OpenGL4.TextureTarget2d.TextureCubeMap; - var _ProxyTextureCubeMap = OpenTK.Graphics.OpenGL4.TextureTarget2d.ProxyTextureCubeMap; - var _Texture1DArray = OpenTK.Graphics.OpenGL4.TextureTarget2d.Texture1DArray; - var _ProxyTexture1DArray = OpenTK.Graphics.OpenGL4.TextureTarget2d.ProxyTexture1DArray; -} -static void Test_TextureTarget3d_37691() { - var _Texture3D = OpenTK.Graphics.OpenGL4.TextureTarget3d.Texture3D; - var _ProxyTexture3D = OpenTK.Graphics.OpenGL4.TextureTarget3d.ProxyTexture3D; - var _TextureCubeMap = OpenTK.Graphics.OpenGL4.TextureTarget3d.TextureCubeMap; - var _ProxyTextureCubeMap = OpenTK.Graphics.OpenGL4.TextureTarget3d.ProxyTextureCubeMap; - var _Texture2DArray = OpenTK.Graphics.OpenGL4.TextureTarget3d.Texture2DArray; - var _ProxyTexture2DArray = OpenTK.Graphics.OpenGL4.TextureTarget3d.ProxyTexture2DArray; -} -static void Test_TextureTargetMultisample_37692() { - var _Texture2DMultisample = OpenTK.Graphics.OpenGL4.TextureTargetMultisample.Texture2DMultisample; - var _ProxyTexture2DMultisample = OpenTK.Graphics.OpenGL4.TextureTargetMultisample.ProxyTexture2DMultisample; - var _Texture2DMultisampleArray = OpenTK.Graphics.OpenGL4.TextureTargetMultisample.Texture2DMultisampleArray; - var _ProxyTexture2DMultisampleArray = OpenTK.Graphics.OpenGL4.TextureTargetMultisample.ProxyTexture2DMultisampleArray; -} -static void Test_TextureTargetMultisample2d_37693() { - var _Texture2DMultisample = OpenTK.Graphics.OpenGL4.TextureTargetMultisample2d.Texture2DMultisample; - var _ProxyTexture2DMultisample = OpenTK.Graphics.OpenGL4.TextureTargetMultisample2d.ProxyTexture2DMultisample; -} -static void Test_TextureTargetMultisample3d_37694() { - var _Texture2DMultisampleArray = OpenTK.Graphics.OpenGL4.TextureTargetMultisample3d.Texture2DMultisampleArray; - var _ProxyTexture2DMultisampleArray = OpenTK.Graphics.OpenGL4.TextureTargetMultisample3d.ProxyTexture2DMultisampleArray; -} -static void Test_TextureUnit_37695() { - var _Texture0 = OpenTK.Graphics.OpenGL4.TextureUnit.Texture0; - var _Texture1 = OpenTK.Graphics.OpenGL4.TextureUnit.Texture1; - var _Texture2 = OpenTK.Graphics.OpenGL4.TextureUnit.Texture2; - var _Texture3 = OpenTK.Graphics.OpenGL4.TextureUnit.Texture3; - var _Texture4 = OpenTK.Graphics.OpenGL4.TextureUnit.Texture4; - var _Texture5 = OpenTK.Graphics.OpenGL4.TextureUnit.Texture5; - var _Texture6 = OpenTK.Graphics.OpenGL4.TextureUnit.Texture6; - var _Texture7 = OpenTK.Graphics.OpenGL4.TextureUnit.Texture7; - var _Texture8 = OpenTK.Graphics.OpenGL4.TextureUnit.Texture8; - var _Texture9 = OpenTK.Graphics.OpenGL4.TextureUnit.Texture9; - var _Texture10 = OpenTK.Graphics.OpenGL4.TextureUnit.Texture10; - var _Texture11 = OpenTK.Graphics.OpenGL4.TextureUnit.Texture11; - var _Texture12 = OpenTK.Graphics.OpenGL4.TextureUnit.Texture12; - var _Texture13 = OpenTK.Graphics.OpenGL4.TextureUnit.Texture13; - var _Texture14 = OpenTK.Graphics.OpenGL4.TextureUnit.Texture14; - var _Texture15 = OpenTK.Graphics.OpenGL4.TextureUnit.Texture15; - var _Texture16 = OpenTK.Graphics.OpenGL4.TextureUnit.Texture16; - var _Texture17 = OpenTK.Graphics.OpenGL4.TextureUnit.Texture17; - var _Texture18 = OpenTK.Graphics.OpenGL4.TextureUnit.Texture18; - var _Texture19 = OpenTK.Graphics.OpenGL4.TextureUnit.Texture19; - var _Texture20 = OpenTK.Graphics.OpenGL4.TextureUnit.Texture20; - var _Texture21 = OpenTK.Graphics.OpenGL4.TextureUnit.Texture21; - var _Texture22 = OpenTK.Graphics.OpenGL4.TextureUnit.Texture22; - var _Texture23 = OpenTK.Graphics.OpenGL4.TextureUnit.Texture23; - var _Texture24 = OpenTK.Graphics.OpenGL4.TextureUnit.Texture24; - var _Texture25 = OpenTK.Graphics.OpenGL4.TextureUnit.Texture25; - var _Texture26 = OpenTK.Graphics.OpenGL4.TextureUnit.Texture26; - var _Texture27 = OpenTK.Graphics.OpenGL4.TextureUnit.Texture27; - var _Texture28 = OpenTK.Graphics.OpenGL4.TextureUnit.Texture28; - var _Texture29 = OpenTK.Graphics.OpenGL4.TextureUnit.Texture29; - var _Texture30 = OpenTK.Graphics.OpenGL4.TextureUnit.Texture30; - var _Texture31 = OpenTK.Graphics.OpenGL4.TextureUnit.Texture31; -} -static void Test_TextureWrapMode_37696() { - var _Repeat = OpenTK.Graphics.OpenGL4.TextureWrapMode.Repeat; - var _ClampToBorder = OpenTK.Graphics.OpenGL4.TextureWrapMode.ClampToBorder; - var _ClampToBorderArb = OpenTK.Graphics.OpenGL4.TextureWrapMode.ClampToBorderArb; - var _ClampToBorderNv = OpenTK.Graphics.OpenGL4.TextureWrapMode.ClampToBorderNv; - var _ClampToBorderSgis = OpenTK.Graphics.OpenGL4.TextureWrapMode.ClampToBorderSgis; - var _ClampToEdge = OpenTK.Graphics.OpenGL4.TextureWrapMode.ClampToEdge; - var _ClampToEdgeSgis = OpenTK.Graphics.OpenGL4.TextureWrapMode.ClampToEdgeSgis; - var _MirroredRepeat = OpenTK.Graphics.OpenGL4.TextureWrapMode.MirroredRepeat; -} -static void Test_TransformFeedbackMode_37697() { - var _InterleavedAttribs = OpenTK.Graphics.OpenGL4.TransformFeedbackMode.InterleavedAttribs; - var _SeparateAttribs = OpenTK.Graphics.OpenGL4.TransformFeedbackMode.SeparateAttribs; -} -static void Test_TransformFeedbackPrimitiveType_37698() { - var _Points = OpenTK.Graphics.OpenGL4.TransformFeedbackPrimitiveType.Points; - var _Lines = OpenTK.Graphics.OpenGL4.TransformFeedbackPrimitiveType.Lines; - var _Triangles = OpenTK.Graphics.OpenGL4.TransformFeedbackPrimitiveType.Triangles; -} -static void Test_TransformFeedbackTarget_37699() { - var _TransformFeedback = OpenTK.Graphics.OpenGL4.TransformFeedbackTarget.TransformFeedback; -} -static void Test_TransformFeedbackType_37700() { - var _Int = OpenTK.Graphics.OpenGL4.TransformFeedbackType.Int; - var _UnsignedInt = OpenTK.Graphics.OpenGL4.TransformFeedbackType.UnsignedInt; - var _Float = OpenTK.Graphics.OpenGL4.TransformFeedbackType.Float; - var _Double = OpenTK.Graphics.OpenGL4.TransformFeedbackType.Double; - var _FloatVec2 = OpenTK.Graphics.OpenGL4.TransformFeedbackType.FloatVec2; - var _FloatVec3 = OpenTK.Graphics.OpenGL4.TransformFeedbackType.FloatVec3; - var _FloatVec4 = OpenTK.Graphics.OpenGL4.TransformFeedbackType.FloatVec4; - var _IntVec2 = OpenTK.Graphics.OpenGL4.TransformFeedbackType.IntVec2; - var _IntVec3 = OpenTK.Graphics.OpenGL4.TransformFeedbackType.IntVec3; - var _IntVec4 = OpenTK.Graphics.OpenGL4.TransformFeedbackType.IntVec4; - var _FloatMat2 = OpenTK.Graphics.OpenGL4.TransformFeedbackType.FloatMat2; - var _FloatMat3 = OpenTK.Graphics.OpenGL4.TransformFeedbackType.FloatMat3; - var _FloatMat4 = OpenTK.Graphics.OpenGL4.TransformFeedbackType.FloatMat4; - var _FloatMat2x3 = OpenTK.Graphics.OpenGL4.TransformFeedbackType.FloatMat2x3; - var _FloatMat2x4 = OpenTK.Graphics.OpenGL4.TransformFeedbackType.FloatMat2x4; - var _FloatMat3x2 = OpenTK.Graphics.OpenGL4.TransformFeedbackType.FloatMat3x2; - var _FloatMat3x4 = OpenTK.Graphics.OpenGL4.TransformFeedbackType.FloatMat3x4; - var _FloatMat4x2 = OpenTK.Graphics.OpenGL4.TransformFeedbackType.FloatMat4x2; - var _FloatMat4x3 = OpenTK.Graphics.OpenGL4.TransformFeedbackType.FloatMat4x3; - var _UnsignedIntVec2 = OpenTK.Graphics.OpenGL4.TransformFeedbackType.UnsignedIntVec2; - var _UnsignedIntVec3 = OpenTK.Graphics.OpenGL4.TransformFeedbackType.UnsignedIntVec3; - var _UnsignedIntVec4 = OpenTK.Graphics.OpenGL4.TransformFeedbackType.UnsignedIntVec4; - var _DoubleMat2 = OpenTK.Graphics.OpenGL4.TransformFeedbackType.DoubleMat2; - var _DoubleMat3 = OpenTK.Graphics.OpenGL4.TransformFeedbackType.DoubleMat3; - var _DoubleMat4 = OpenTK.Graphics.OpenGL4.TransformFeedbackType.DoubleMat4; - var _DoubleMat2x3 = OpenTK.Graphics.OpenGL4.TransformFeedbackType.DoubleMat2x3; - var _DoubleMat2x4 = OpenTK.Graphics.OpenGL4.TransformFeedbackType.DoubleMat2x4; - var _DoubleMat3x2 = OpenTK.Graphics.OpenGL4.TransformFeedbackType.DoubleMat3x2; - var _DoubleMat3x4 = OpenTK.Graphics.OpenGL4.TransformFeedbackType.DoubleMat3x4; - var _DoubleMat4x2 = OpenTK.Graphics.OpenGL4.TransformFeedbackType.DoubleMat4x2; - var _DoubleMat4x3 = OpenTK.Graphics.OpenGL4.TransformFeedbackType.DoubleMat4x3; - var _DoubleVec2 = OpenTK.Graphics.OpenGL4.TransformFeedbackType.DoubleVec2; - var _DoubleVec3 = OpenTK.Graphics.OpenGL4.TransformFeedbackType.DoubleVec3; - var _DoubleVec4 = OpenTK.Graphics.OpenGL4.TransformFeedbackType.DoubleVec4; -} -static void Test_UseProgramStageMask_37701() { - var _VertexShaderBit = OpenTK.Graphics.OpenGL4.UseProgramStageMask.VertexShaderBit; - var _VertexShaderBitExt = OpenTK.Graphics.OpenGL4.UseProgramStageMask.VertexShaderBitExt; - var _FragmentShaderBit = OpenTK.Graphics.OpenGL4.UseProgramStageMask.FragmentShaderBit; - var _FragmentShaderBitExt = OpenTK.Graphics.OpenGL4.UseProgramStageMask.FragmentShaderBitExt; - var _GeometryShaderBit = OpenTK.Graphics.OpenGL4.UseProgramStageMask.GeometryShaderBit; - var _GeometryShaderBitExt = OpenTK.Graphics.OpenGL4.UseProgramStageMask.GeometryShaderBitExt; - var _TessControlShaderBit = OpenTK.Graphics.OpenGL4.UseProgramStageMask.TessControlShaderBit; - var _TessControlShaderBitExt = OpenTK.Graphics.OpenGL4.UseProgramStageMask.TessControlShaderBitExt; - var _TessEvaluationShaderBit = OpenTK.Graphics.OpenGL4.UseProgramStageMask.TessEvaluationShaderBit; - var _TessEvaluationShaderBitExt = OpenTK.Graphics.OpenGL4.UseProgramStageMask.TessEvaluationShaderBitExt; - var _ComputeShaderBit = OpenTK.Graphics.OpenGL4.UseProgramStageMask.ComputeShaderBit; - var _AllShaderBits = OpenTK.Graphics.OpenGL4.UseProgramStageMask.AllShaderBits; - var _AllShaderBitsExt = OpenTK.Graphics.OpenGL4.UseProgramStageMask.AllShaderBitsExt; -} -static void Test_Version10_37702() { -} -static void Test_Version11_37703() { - var _False = OpenTK.Graphics.OpenGL4.Version11.False; - var _NoError = OpenTK.Graphics.OpenGL4.Version11.NoError; - var _None = OpenTK.Graphics.OpenGL4.Version11.None; - var _Zero = OpenTK.Graphics.OpenGL4.Version11.Zero; - var _Points = OpenTK.Graphics.OpenGL4.Version11.Points; - var _DepthBufferBit = OpenTK.Graphics.OpenGL4.Version11.DepthBufferBit; - var _StencilBufferBit = OpenTK.Graphics.OpenGL4.Version11.StencilBufferBit; - var _ColorBufferBit = OpenTK.Graphics.OpenGL4.Version11.ColorBufferBit; - var _Lines = OpenTK.Graphics.OpenGL4.Version11.Lines; - var _LineLoop = OpenTK.Graphics.OpenGL4.Version11.LineLoop; - var _LineStrip = OpenTK.Graphics.OpenGL4.Version11.LineStrip; - var _Triangles = OpenTK.Graphics.OpenGL4.Version11.Triangles; - var _TriangleStrip = OpenTK.Graphics.OpenGL4.Version11.TriangleStrip; - var _TriangleFan = OpenTK.Graphics.OpenGL4.Version11.TriangleFan; - var _Never = OpenTK.Graphics.OpenGL4.Version11.Never; - var _Less = OpenTK.Graphics.OpenGL4.Version11.Less; - var _Equal = OpenTK.Graphics.OpenGL4.Version11.Equal; - var _Lequal = OpenTK.Graphics.OpenGL4.Version11.Lequal; - var _Greater = OpenTK.Graphics.OpenGL4.Version11.Greater; - var _Notequal = OpenTK.Graphics.OpenGL4.Version11.Notequal; - var _Gequal = OpenTK.Graphics.OpenGL4.Version11.Gequal; - var _Always = OpenTK.Graphics.OpenGL4.Version11.Always; - var _SrcColor = OpenTK.Graphics.OpenGL4.Version11.SrcColor; - var _OneMinusSrcColor = OpenTK.Graphics.OpenGL4.Version11.OneMinusSrcColor; - var _SrcAlpha = OpenTK.Graphics.OpenGL4.Version11.SrcAlpha; - var _OneMinusSrcAlpha = OpenTK.Graphics.OpenGL4.Version11.OneMinusSrcAlpha; - var _DstAlpha = OpenTK.Graphics.OpenGL4.Version11.DstAlpha; - var _OneMinusDstAlpha = OpenTK.Graphics.OpenGL4.Version11.OneMinusDstAlpha; - var _DstColor = OpenTK.Graphics.OpenGL4.Version11.DstColor; - var _OneMinusDstColor = OpenTK.Graphics.OpenGL4.Version11.OneMinusDstColor; - var _SrcAlphaSaturate = OpenTK.Graphics.OpenGL4.Version11.SrcAlphaSaturate; - var _FrontLeft = OpenTK.Graphics.OpenGL4.Version11.FrontLeft; - var _FrontRight = OpenTK.Graphics.OpenGL4.Version11.FrontRight; - var _BackLeft = OpenTK.Graphics.OpenGL4.Version11.BackLeft; - var _BackRight = OpenTK.Graphics.OpenGL4.Version11.BackRight; - var _Front = OpenTK.Graphics.OpenGL4.Version11.Front; - var _Back = OpenTK.Graphics.OpenGL4.Version11.Back; - var _Left = OpenTK.Graphics.OpenGL4.Version11.Left; - var _Right = OpenTK.Graphics.OpenGL4.Version11.Right; - var _FrontAndBack = OpenTK.Graphics.OpenGL4.Version11.FrontAndBack; - var _InvalidEnum = OpenTK.Graphics.OpenGL4.Version11.InvalidEnum; - var _InvalidValue = OpenTK.Graphics.OpenGL4.Version11.InvalidValue; - var _InvalidOperation = OpenTK.Graphics.OpenGL4.Version11.InvalidOperation; - var _OutOfMemory = OpenTK.Graphics.OpenGL4.Version11.OutOfMemory; - var _Cw = OpenTK.Graphics.OpenGL4.Version11.Cw; - var _Ccw = OpenTK.Graphics.OpenGL4.Version11.Ccw; - var _PointSize = OpenTK.Graphics.OpenGL4.Version11.PointSize; - var _PointSizeRange = OpenTK.Graphics.OpenGL4.Version11.PointSizeRange; - var _PointSizeGranularity = OpenTK.Graphics.OpenGL4.Version11.PointSizeGranularity; - var _LineSmooth = OpenTK.Graphics.OpenGL4.Version11.LineSmooth; - var _LineWidth = OpenTK.Graphics.OpenGL4.Version11.LineWidth; - var _LineWidthRange = OpenTK.Graphics.OpenGL4.Version11.LineWidthRange; - var _LineWidthGranularity = OpenTK.Graphics.OpenGL4.Version11.LineWidthGranularity; - var _PolygonMode = OpenTK.Graphics.OpenGL4.Version11.PolygonMode; - var _PolygonSmooth = OpenTK.Graphics.OpenGL4.Version11.PolygonSmooth; - var _CullFace = OpenTK.Graphics.OpenGL4.Version11.CullFace; - var _CullFaceMode = OpenTK.Graphics.OpenGL4.Version11.CullFaceMode; - var _FrontFace = OpenTK.Graphics.OpenGL4.Version11.FrontFace; - var _DepthRange = OpenTK.Graphics.OpenGL4.Version11.DepthRange; - var _DepthTest = OpenTK.Graphics.OpenGL4.Version11.DepthTest; - var _DepthWritemask = OpenTK.Graphics.OpenGL4.Version11.DepthWritemask; - var _DepthClearValue = OpenTK.Graphics.OpenGL4.Version11.DepthClearValue; - var _DepthFunc = OpenTK.Graphics.OpenGL4.Version11.DepthFunc; - var _StencilTest = OpenTK.Graphics.OpenGL4.Version11.StencilTest; - var _StencilClearValue = OpenTK.Graphics.OpenGL4.Version11.StencilClearValue; - var _StencilFunc = OpenTK.Graphics.OpenGL4.Version11.StencilFunc; - var _StencilValueMask = OpenTK.Graphics.OpenGL4.Version11.StencilValueMask; - var _StencilFail = OpenTK.Graphics.OpenGL4.Version11.StencilFail; - var _StencilPassDepthFail = OpenTK.Graphics.OpenGL4.Version11.StencilPassDepthFail; - var _StencilPassDepthPass = OpenTK.Graphics.OpenGL4.Version11.StencilPassDepthPass; - var _StencilRef = OpenTK.Graphics.OpenGL4.Version11.StencilRef; - var _StencilWritemask = OpenTK.Graphics.OpenGL4.Version11.StencilWritemask; - var _Viewport = OpenTK.Graphics.OpenGL4.Version11.Viewport; - var _Dither = OpenTK.Graphics.OpenGL4.Version11.Dither; - var _BlendDst = OpenTK.Graphics.OpenGL4.Version11.BlendDst; - var _BlendSrc = OpenTK.Graphics.OpenGL4.Version11.BlendSrc; - var _Blend = OpenTK.Graphics.OpenGL4.Version11.Blend; - var _LogicOpMode = OpenTK.Graphics.OpenGL4.Version11.LogicOpMode; - var _ColorLogicOp = OpenTK.Graphics.OpenGL4.Version11.ColorLogicOp; - var _DrawBuffer = OpenTK.Graphics.OpenGL4.Version11.DrawBuffer; - var _ReadBuffer = OpenTK.Graphics.OpenGL4.Version11.ReadBuffer; - var _ScissorBox = OpenTK.Graphics.OpenGL4.Version11.ScissorBox; - var _ScissorTest = OpenTK.Graphics.OpenGL4.Version11.ScissorTest; - var _ColorClearValue = OpenTK.Graphics.OpenGL4.Version11.ColorClearValue; - var _ColorWritemask = OpenTK.Graphics.OpenGL4.Version11.ColorWritemask; - var _Doublebuffer = OpenTK.Graphics.OpenGL4.Version11.Doublebuffer; - var _Stereo = OpenTK.Graphics.OpenGL4.Version11.Stereo; - var _LineSmoothHint = OpenTK.Graphics.OpenGL4.Version11.LineSmoothHint; - var _PolygonSmoothHint = OpenTK.Graphics.OpenGL4.Version11.PolygonSmoothHint; - var _UnpackSwapBytes = OpenTK.Graphics.OpenGL4.Version11.UnpackSwapBytes; - var _UnpackLsbFirst = OpenTK.Graphics.OpenGL4.Version11.UnpackLsbFirst; - var _UnpackRowLength = OpenTK.Graphics.OpenGL4.Version11.UnpackRowLength; - var _UnpackSkipRows = OpenTK.Graphics.OpenGL4.Version11.UnpackSkipRows; - var _UnpackSkipPixels = OpenTK.Graphics.OpenGL4.Version11.UnpackSkipPixels; - var _UnpackAlignment = OpenTK.Graphics.OpenGL4.Version11.UnpackAlignment; - var _PackSwapBytes = OpenTK.Graphics.OpenGL4.Version11.PackSwapBytes; - var _PackLsbFirst = OpenTK.Graphics.OpenGL4.Version11.PackLsbFirst; - var _PackRowLength = OpenTK.Graphics.OpenGL4.Version11.PackRowLength; - var _PackSkipRows = OpenTK.Graphics.OpenGL4.Version11.PackSkipRows; - var _PackSkipPixels = OpenTK.Graphics.OpenGL4.Version11.PackSkipPixels; - var _PackAlignment = OpenTK.Graphics.OpenGL4.Version11.PackAlignment; - var _MaxTextureSize = OpenTK.Graphics.OpenGL4.Version11.MaxTextureSize; - var _MaxViewportDims = OpenTK.Graphics.OpenGL4.Version11.MaxViewportDims; - var _SubpixelBits = OpenTK.Graphics.OpenGL4.Version11.SubpixelBits; - var _Texture1D = OpenTK.Graphics.OpenGL4.Version11.Texture1D; - var _Texture2D = OpenTK.Graphics.OpenGL4.Version11.Texture2D; - var _TextureWidth = OpenTK.Graphics.OpenGL4.Version11.TextureWidth; - var _TextureHeight = OpenTK.Graphics.OpenGL4.Version11.TextureHeight; - var _TextureInternalFormat = OpenTK.Graphics.OpenGL4.Version11.TextureInternalFormat; - var _TextureBorderColor = OpenTK.Graphics.OpenGL4.Version11.TextureBorderColor; - var _DontCare = OpenTK.Graphics.OpenGL4.Version11.DontCare; - var _Fastest = OpenTK.Graphics.OpenGL4.Version11.Fastest; - var _Nicest = OpenTK.Graphics.OpenGL4.Version11.Nicest; - var _Byte = OpenTK.Graphics.OpenGL4.Version11.Byte; - var _UnsignedByte = OpenTK.Graphics.OpenGL4.Version11.UnsignedByte; - var _Short = OpenTK.Graphics.OpenGL4.Version11.Short; - var _UnsignedShort = OpenTK.Graphics.OpenGL4.Version11.UnsignedShort; - var _Int = OpenTK.Graphics.OpenGL4.Version11.Int; - var _UnsignedInt = OpenTK.Graphics.OpenGL4.Version11.UnsignedInt; - var _Float = OpenTK.Graphics.OpenGL4.Version11.Float; - var _Double = OpenTK.Graphics.OpenGL4.Version11.Double; - var _Clear = OpenTK.Graphics.OpenGL4.Version11.Clear; - var _And = OpenTK.Graphics.OpenGL4.Version11.And; - var _AndReverse = OpenTK.Graphics.OpenGL4.Version11.AndReverse; - var _Copy = OpenTK.Graphics.OpenGL4.Version11.Copy; - var _AndInverted = OpenTK.Graphics.OpenGL4.Version11.AndInverted; - var _Noop = OpenTK.Graphics.OpenGL4.Version11.Noop; - var _Xor = OpenTK.Graphics.OpenGL4.Version11.Xor; - var _Or = OpenTK.Graphics.OpenGL4.Version11.Or; - var _Nor = OpenTK.Graphics.OpenGL4.Version11.Nor; - var _Equiv = OpenTK.Graphics.OpenGL4.Version11.Equiv; - var _Invert = OpenTK.Graphics.OpenGL4.Version11.Invert; - var _OrReverse = OpenTK.Graphics.OpenGL4.Version11.OrReverse; - var _CopyInverted = OpenTK.Graphics.OpenGL4.Version11.CopyInverted; - var _OrInverted = OpenTK.Graphics.OpenGL4.Version11.OrInverted; - var _Nand = OpenTK.Graphics.OpenGL4.Version11.Nand; - var _Set = OpenTK.Graphics.OpenGL4.Version11.Set; - var _Texture = OpenTK.Graphics.OpenGL4.Version11.Texture; - var _Color = OpenTK.Graphics.OpenGL4.Version11.Color; - var _Depth = OpenTK.Graphics.OpenGL4.Version11.Depth; - var _Stencil = OpenTK.Graphics.OpenGL4.Version11.Stencil; - var _StencilIndex = OpenTK.Graphics.OpenGL4.Version11.StencilIndex; - var _DepthComponent = OpenTK.Graphics.OpenGL4.Version11.DepthComponent; - var _Red = OpenTK.Graphics.OpenGL4.Version11.Red; - var _Green = OpenTK.Graphics.OpenGL4.Version11.Green; - var _Blue = OpenTK.Graphics.OpenGL4.Version11.Blue; - var _Alpha = OpenTK.Graphics.OpenGL4.Version11.Alpha; - var _Rgb = OpenTK.Graphics.OpenGL4.Version11.Rgb; - var _Rgba = OpenTK.Graphics.OpenGL4.Version11.Rgba; - var _Point = OpenTK.Graphics.OpenGL4.Version11.Point; - var _Line = OpenTK.Graphics.OpenGL4.Version11.Line; - var _Fill = OpenTK.Graphics.OpenGL4.Version11.Fill; - var _Keep = OpenTK.Graphics.OpenGL4.Version11.Keep; - var _Replace = OpenTK.Graphics.OpenGL4.Version11.Replace; - var _Incr = OpenTK.Graphics.OpenGL4.Version11.Incr; - var _Decr = OpenTK.Graphics.OpenGL4.Version11.Decr; - var _Vendor = OpenTK.Graphics.OpenGL4.Version11.Vendor; - var _Renderer = OpenTK.Graphics.OpenGL4.Version11.Renderer; - var _Version = OpenTK.Graphics.OpenGL4.Version11.Version; - var _Extensions = OpenTK.Graphics.OpenGL4.Version11.Extensions; - var _Nearest = OpenTK.Graphics.OpenGL4.Version11.Nearest; - var _Linear = OpenTK.Graphics.OpenGL4.Version11.Linear; - var _NearestMipmapNearest = OpenTK.Graphics.OpenGL4.Version11.NearestMipmapNearest; - var _LinearMipmapNearest = OpenTK.Graphics.OpenGL4.Version11.LinearMipmapNearest; - var _NearestMipmapLinear = OpenTK.Graphics.OpenGL4.Version11.NearestMipmapLinear; - var _LinearMipmapLinear = OpenTK.Graphics.OpenGL4.Version11.LinearMipmapLinear; - var _TextureMagFilter = OpenTK.Graphics.OpenGL4.Version11.TextureMagFilter; - var _TextureMinFilter = OpenTK.Graphics.OpenGL4.Version11.TextureMinFilter; - var _TextureWrapS = OpenTK.Graphics.OpenGL4.Version11.TextureWrapS; - var _TextureWrapT = OpenTK.Graphics.OpenGL4.Version11.TextureWrapT; - var _Repeat = OpenTK.Graphics.OpenGL4.Version11.Repeat; - var _PolygonOffsetUnits = OpenTK.Graphics.OpenGL4.Version11.PolygonOffsetUnits; - var _PolygonOffsetPoint = OpenTK.Graphics.OpenGL4.Version11.PolygonOffsetPoint; - var _PolygonOffsetLine = OpenTK.Graphics.OpenGL4.Version11.PolygonOffsetLine; - var _R3G3B2 = OpenTK.Graphics.OpenGL4.Version11.R3G3B2; - var _PolygonOffsetFill = OpenTK.Graphics.OpenGL4.Version11.PolygonOffsetFill; - var _PolygonOffsetFactor = OpenTK.Graphics.OpenGL4.Version11.PolygonOffsetFactor; - var _Rgb4 = OpenTK.Graphics.OpenGL4.Version11.Rgb4; - var _Rgb5 = OpenTK.Graphics.OpenGL4.Version11.Rgb5; - var _Rgb8 = OpenTK.Graphics.OpenGL4.Version11.Rgb8; - var _Rgb10 = OpenTK.Graphics.OpenGL4.Version11.Rgb10; - var _Rgb12 = OpenTK.Graphics.OpenGL4.Version11.Rgb12; - var _Rgb16 = OpenTK.Graphics.OpenGL4.Version11.Rgb16; - var _Rgba2 = OpenTK.Graphics.OpenGL4.Version11.Rgba2; - var _Rgba4 = OpenTK.Graphics.OpenGL4.Version11.Rgba4; - var _Rgb5A1 = OpenTK.Graphics.OpenGL4.Version11.Rgb5A1; - var _Rgba8 = OpenTK.Graphics.OpenGL4.Version11.Rgba8; - var _Rgb10A2 = OpenTK.Graphics.OpenGL4.Version11.Rgb10A2; - var _Rgba12 = OpenTK.Graphics.OpenGL4.Version11.Rgba12; - var _Rgba16 = OpenTK.Graphics.OpenGL4.Version11.Rgba16; - var _TextureRedSize = OpenTK.Graphics.OpenGL4.Version11.TextureRedSize; - var _TextureGreenSize = OpenTK.Graphics.OpenGL4.Version11.TextureGreenSize; - var _TextureBlueSize = OpenTK.Graphics.OpenGL4.Version11.TextureBlueSize; - var _TextureAlphaSize = OpenTK.Graphics.OpenGL4.Version11.TextureAlphaSize; - var _ProxyTexture1D = OpenTK.Graphics.OpenGL4.Version11.ProxyTexture1D; - var _ProxyTexture2D = OpenTK.Graphics.OpenGL4.Version11.ProxyTexture2D; - var _TextureBinding1D = OpenTK.Graphics.OpenGL4.Version11.TextureBinding1D; - var _TextureBinding2D = OpenTK.Graphics.OpenGL4.Version11.TextureBinding2D; - var _One = OpenTK.Graphics.OpenGL4.Version11.One; - var _True = OpenTK.Graphics.OpenGL4.Version11.True; -} -static void Test_Version12_37704() { - var _SmoothPointSizeRange = OpenTK.Graphics.OpenGL4.Version12.SmoothPointSizeRange; - var _SmoothPointSizeGranularity = OpenTK.Graphics.OpenGL4.Version12.SmoothPointSizeGranularity; - var _SmoothLineWidthRange = OpenTK.Graphics.OpenGL4.Version12.SmoothLineWidthRange; - var _SmoothLineWidthGranularity = OpenTK.Graphics.OpenGL4.Version12.SmoothLineWidthGranularity; - var _UnsignedByte332 = OpenTK.Graphics.OpenGL4.Version12.UnsignedByte332; - var _UnsignedShort4444 = OpenTK.Graphics.OpenGL4.Version12.UnsignedShort4444; - var _UnsignedShort5551 = OpenTK.Graphics.OpenGL4.Version12.UnsignedShort5551; - var _UnsignedInt8888 = OpenTK.Graphics.OpenGL4.Version12.UnsignedInt8888; - var _UnsignedInt1010102 = OpenTK.Graphics.OpenGL4.Version12.UnsignedInt1010102; - var _TextureBinding3D = OpenTK.Graphics.OpenGL4.Version12.TextureBinding3D; - var _PackSkipImages = OpenTK.Graphics.OpenGL4.Version12.PackSkipImages; - var _PackImageHeight = OpenTK.Graphics.OpenGL4.Version12.PackImageHeight; - var _UnpackSkipImages = OpenTK.Graphics.OpenGL4.Version12.UnpackSkipImages; - var _UnpackImageHeight = OpenTK.Graphics.OpenGL4.Version12.UnpackImageHeight; - var _Texture3D = OpenTK.Graphics.OpenGL4.Version12.Texture3D; - var _ProxyTexture3D = OpenTK.Graphics.OpenGL4.Version12.ProxyTexture3D; - var _TextureDepth = OpenTK.Graphics.OpenGL4.Version12.TextureDepth; - var _TextureWrapR = OpenTK.Graphics.OpenGL4.Version12.TextureWrapR; - var _Max3DTextureSize = OpenTK.Graphics.OpenGL4.Version12.Max3DTextureSize; - var _Bgr = OpenTK.Graphics.OpenGL4.Version12.Bgr; - var _Bgra = OpenTK.Graphics.OpenGL4.Version12.Bgra; - var _MaxElementsVertices = OpenTK.Graphics.OpenGL4.Version12.MaxElementsVertices; - var _MaxElementsIndices = OpenTK.Graphics.OpenGL4.Version12.MaxElementsIndices; - var _ClampToEdge = OpenTK.Graphics.OpenGL4.Version12.ClampToEdge; - var _TextureMinLod = OpenTK.Graphics.OpenGL4.Version12.TextureMinLod; - var _TextureMaxLod = OpenTK.Graphics.OpenGL4.Version12.TextureMaxLod; - var _TextureBaseLevel = OpenTK.Graphics.OpenGL4.Version12.TextureBaseLevel; - var _TextureMaxLevel = OpenTK.Graphics.OpenGL4.Version12.TextureMaxLevel; - var _UnsignedByte233Rev = OpenTK.Graphics.OpenGL4.Version12.UnsignedByte233Rev; - var _UnsignedShort565 = OpenTK.Graphics.OpenGL4.Version12.UnsignedShort565; - var _UnsignedShort565Rev = OpenTK.Graphics.OpenGL4.Version12.UnsignedShort565Rev; - var _UnsignedShort4444Rev = OpenTK.Graphics.OpenGL4.Version12.UnsignedShort4444Rev; - var _UnsignedShort1555Rev = OpenTK.Graphics.OpenGL4.Version12.UnsignedShort1555Rev; - var _UnsignedInt8888Rev = OpenTK.Graphics.OpenGL4.Version12.UnsignedInt8888Rev; - var _UnsignedInt2101010Rev = OpenTK.Graphics.OpenGL4.Version12.UnsignedInt2101010Rev; - var _AliasedLineWidthRange = OpenTK.Graphics.OpenGL4.Version12.AliasedLineWidthRange; -} -static void Test_Version13_37705() { - var _Multisample = OpenTK.Graphics.OpenGL4.Version13.Multisample; - var _SampleAlphaToCoverage = OpenTK.Graphics.OpenGL4.Version13.SampleAlphaToCoverage; - var _SampleAlphaToOne = OpenTK.Graphics.OpenGL4.Version13.SampleAlphaToOne; - var _SampleCoverage = OpenTK.Graphics.OpenGL4.Version13.SampleCoverage; - var _SampleBuffers = OpenTK.Graphics.OpenGL4.Version13.SampleBuffers; - var _Samples = OpenTK.Graphics.OpenGL4.Version13.Samples; - var _SampleCoverageValue = OpenTK.Graphics.OpenGL4.Version13.SampleCoverageValue; - var _SampleCoverageInvert = OpenTK.Graphics.OpenGL4.Version13.SampleCoverageInvert; - var _ClampToBorder = OpenTK.Graphics.OpenGL4.Version13.ClampToBorder; - var _Texture0 = OpenTK.Graphics.OpenGL4.Version13.Texture0; - var _Texture1 = OpenTK.Graphics.OpenGL4.Version13.Texture1; - var _Texture2 = OpenTK.Graphics.OpenGL4.Version13.Texture2; - var _Texture3 = OpenTK.Graphics.OpenGL4.Version13.Texture3; - var _Texture4 = OpenTK.Graphics.OpenGL4.Version13.Texture4; - var _Texture5 = OpenTK.Graphics.OpenGL4.Version13.Texture5; - var _Texture6 = OpenTK.Graphics.OpenGL4.Version13.Texture6; - var _Texture7 = OpenTK.Graphics.OpenGL4.Version13.Texture7; - var _Texture8 = OpenTK.Graphics.OpenGL4.Version13.Texture8; - var _Texture9 = OpenTK.Graphics.OpenGL4.Version13.Texture9; - var _Texture10 = OpenTK.Graphics.OpenGL4.Version13.Texture10; - var _Texture11 = OpenTK.Graphics.OpenGL4.Version13.Texture11; - var _Texture12 = OpenTK.Graphics.OpenGL4.Version13.Texture12; - var _Texture13 = OpenTK.Graphics.OpenGL4.Version13.Texture13; - var _Texture14 = OpenTK.Graphics.OpenGL4.Version13.Texture14; - var _Texture15 = OpenTK.Graphics.OpenGL4.Version13.Texture15; - var _Texture16 = OpenTK.Graphics.OpenGL4.Version13.Texture16; - var _Texture17 = OpenTK.Graphics.OpenGL4.Version13.Texture17; - var _Texture18 = OpenTK.Graphics.OpenGL4.Version13.Texture18; - var _Texture19 = OpenTK.Graphics.OpenGL4.Version13.Texture19; - var _Texture20 = OpenTK.Graphics.OpenGL4.Version13.Texture20; - var _Texture21 = OpenTK.Graphics.OpenGL4.Version13.Texture21; - var _Texture22 = OpenTK.Graphics.OpenGL4.Version13.Texture22; - var _Texture23 = OpenTK.Graphics.OpenGL4.Version13.Texture23; - var _Texture24 = OpenTK.Graphics.OpenGL4.Version13.Texture24; - var _Texture25 = OpenTK.Graphics.OpenGL4.Version13.Texture25; - var _Texture26 = OpenTK.Graphics.OpenGL4.Version13.Texture26; - var _Texture27 = OpenTK.Graphics.OpenGL4.Version13.Texture27; - var _Texture28 = OpenTK.Graphics.OpenGL4.Version13.Texture28; - var _Texture29 = OpenTK.Graphics.OpenGL4.Version13.Texture29; - var _Texture30 = OpenTK.Graphics.OpenGL4.Version13.Texture30; - var _Texture31 = OpenTK.Graphics.OpenGL4.Version13.Texture31; - var _ActiveTexture = OpenTK.Graphics.OpenGL4.Version13.ActiveTexture; - var _CompressedRgb = OpenTK.Graphics.OpenGL4.Version13.CompressedRgb; - var _CompressedRgba = OpenTK.Graphics.OpenGL4.Version13.CompressedRgba; - var _TextureCompressionHint = OpenTK.Graphics.OpenGL4.Version13.TextureCompressionHint; - var _TextureCubeMap = OpenTK.Graphics.OpenGL4.Version13.TextureCubeMap; - var _TextureBindingCubeMap = OpenTK.Graphics.OpenGL4.Version13.TextureBindingCubeMap; - var _TextureCubeMapPositiveX = OpenTK.Graphics.OpenGL4.Version13.TextureCubeMapPositiveX; - var _TextureCubeMapNegativeX = OpenTK.Graphics.OpenGL4.Version13.TextureCubeMapNegativeX; - var _TextureCubeMapPositiveY = OpenTK.Graphics.OpenGL4.Version13.TextureCubeMapPositiveY; - var _TextureCubeMapNegativeY = OpenTK.Graphics.OpenGL4.Version13.TextureCubeMapNegativeY; - var _TextureCubeMapPositiveZ = OpenTK.Graphics.OpenGL4.Version13.TextureCubeMapPositiveZ; - var _TextureCubeMapNegativeZ = OpenTK.Graphics.OpenGL4.Version13.TextureCubeMapNegativeZ; - var _ProxyTextureCubeMap = OpenTK.Graphics.OpenGL4.Version13.ProxyTextureCubeMap; - var _MaxCubeMapTextureSize = OpenTK.Graphics.OpenGL4.Version13.MaxCubeMapTextureSize; - var _TextureCompressedImageSize = OpenTK.Graphics.OpenGL4.Version13.TextureCompressedImageSize; - var _TextureCompressed = OpenTK.Graphics.OpenGL4.Version13.TextureCompressed; - var _NumCompressedTextureFormats = OpenTK.Graphics.OpenGL4.Version13.NumCompressedTextureFormats; - var _CompressedTextureFormats = OpenTK.Graphics.OpenGL4.Version13.CompressedTextureFormats; -} -static void Test_Version14_37706() { - var _ConstantColor = OpenTK.Graphics.OpenGL4.Version14.ConstantColor; - var _OneMinusConstantColor = OpenTK.Graphics.OpenGL4.Version14.OneMinusConstantColor; - var _ConstantAlpha = OpenTK.Graphics.OpenGL4.Version14.ConstantAlpha; - var _OneMinusConstantAlpha = OpenTK.Graphics.OpenGL4.Version14.OneMinusConstantAlpha; - var _FuncAdd = OpenTK.Graphics.OpenGL4.Version14.FuncAdd; - var _Min = OpenTK.Graphics.OpenGL4.Version14.Min; - var _Max = OpenTK.Graphics.OpenGL4.Version14.Max; - var _FuncSubtract = OpenTK.Graphics.OpenGL4.Version14.FuncSubtract; - var _FuncReverseSubtract = OpenTK.Graphics.OpenGL4.Version14.FuncReverseSubtract; - var _BlendDstRgb = OpenTK.Graphics.OpenGL4.Version14.BlendDstRgb; - var _BlendSrcRgb = OpenTK.Graphics.OpenGL4.Version14.BlendSrcRgb; - var _BlendDstAlpha = OpenTK.Graphics.OpenGL4.Version14.BlendDstAlpha; - var _BlendSrcAlpha = OpenTK.Graphics.OpenGL4.Version14.BlendSrcAlpha; - var _PointFadeThresholdSize = OpenTK.Graphics.OpenGL4.Version14.PointFadeThresholdSize; - var _DepthComponent16 = OpenTK.Graphics.OpenGL4.Version14.DepthComponent16; - var _DepthComponent24 = OpenTK.Graphics.OpenGL4.Version14.DepthComponent24; - var _DepthComponent32 = OpenTK.Graphics.OpenGL4.Version14.DepthComponent32; - var _MirroredRepeat = OpenTK.Graphics.OpenGL4.Version14.MirroredRepeat; - var _MaxTextureLodBias = OpenTK.Graphics.OpenGL4.Version14.MaxTextureLodBias; - var _TextureLodBias = OpenTK.Graphics.OpenGL4.Version14.TextureLodBias; - var _IncrWrap = OpenTK.Graphics.OpenGL4.Version14.IncrWrap; - var _DecrWrap = OpenTK.Graphics.OpenGL4.Version14.DecrWrap; - var _TextureDepthSize = OpenTK.Graphics.OpenGL4.Version14.TextureDepthSize; - var _TextureCompareMode = OpenTK.Graphics.OpenGL4.Version14.TextureCompareMode; - var _TextureCompareFunc = OpenTK.Graphics.OpenGL4.Version14.TextureCompareFunc; -} -static void Test_Version15_37707() { - var _Src1Alpha = OpenTK.Graphics.OpenGL4.Version15.Src1Alpha; - var _BufferSize = OpenTK.Graphics.OpenGL4.Version15.BufferSize; - var _BufferUsage = OpenTK.Graphics.OpenGL4.Version15.BufferUsage; - var _QueryCounterBits = OpenTK.Graphics.OpenGL4.Version15.QueryCounterBits; - var _CurrentQuery = OpenTK.Graphics.OpenGL4.Version15.CurrentQuery; - var _QueryResult = OpenTK.Graphics.OpenGL4.Version15.QueryResult; - var _QueryResultAvailable = OpenTK.Graphics.OpenGL4.Version15.QueryResultAvailable; - var _ArrayBuffer = OpenTK.Graphics.OpenGL4.Version15.ArrayBuffer; - var _ElementArrayBuffer = OpenTK.Graphics.OpenGL4.Version15.ElementArrayBuffer; - var _ArrayBufferBinding = OpenTK.Graphics.OpenGL4.Version15.ArrayBufferBinding; - var _ElementArrayBufferBinding = OpenTK.Graphics.OpenGL4.Version15.ElementArrayBufferBinding; - var _VertexAttribArrayBufferBinding = OpenTK.Graphics.OpenGL4.Version15.VertexAttribArrayBufferBinding; - var _ReadOnly = OpenTK.Graphics.OpenGL4.Version15.ReadOnly; - var _WriteOnly = OpenTK.Graphics.OpenGL4.Version15.WriteOnly; - var _ReadWrite = OpenTK.Graphics.OpenGL4.Version15.ReadWrite; - var _BufferAccess = OpenTK.Graphics.OpenGL4.Version15.BufferAccess; - var _BufferMapped = OpenTK.Graphics.OpenGL4.Version15.BufferMapped; - var _BufferMapPointer = OpenTK.Graphics.OpenGL4.Version15.BufferMapPointer; - var _StreamDraw = OpenTK.Graphics.OpenGL4.Version15.StreamDraw; - var _StreamRead = OpenTK.Graphics.OpenGL4.Version15.StreamRead; - var _StreamCopy = OpenTK.Graphics.OpenGL4.Version15.StreamCopy; - var _StaticDraw = OpenTK.Graphics.OpenGL4.Version15.StaticDraw; - var _StaticRead = OpenTK.Graphics.OpenGL4.Version15.StaticRead; - var _StaticCopy = OpenTK.Graphics.OpenGL4.Version15.StaticCopy; - var _DynamicDraw = OpenTK.Graphics.OpenGL4.Version15.DynamicDraw; - var _DynamicRead = OpenTK.Graphics.OpenGL4.Version15.DynamicRead; - var _DynamicCopy = OpenTK.Graphics.OpenGL4.Version15.DynamicCopy; - var _SamplesPassed = OpenTK.Graphics.OpenGL4.Version15.SamplesPassed; -} -static void Test_Version20_37708() { - var _BlendEquationRgb = OpenTK.Graphics.OpenGL4.Version20.BlendEquationRgb; - var _VertexAttribArrayEnabled = OpenTK.Graphics.OpenGL4.Version20.VertexAttribArrayEnabled; - var _VertexAttribArraySize = OpenTK.Graphics.OpenGL4.Version20.VertexAttribArraySize; - var _VertexAttribArrayStride = OpenTK.Graphics.OpenGL4.Version20.VertexAttribArrayStride; - var _VertexAttribArrayType = OpenTK.Graphics.OpenGL4.Version20.VertexAttribArrayType; - var _CurrentVertexAttrib = OpenTK.Graphics.OpenGL4.Version20.CurrentVertexAttrib; - var _VertexProgramPointSize = OpenTK.Graphics.OpenGL4.Version20.VertexProgramPointSize; - var _VertexAttribArrayPointer = OpenTK.Graphics.OpenGL4.Version20.VertexAttribArrayPointer; - var _StencilBackFunc = OpenTK.Graphics.OpenGL4.Version20.StencilBackFunc; - var _StencilBackFail = OpenTK.Graphics.OpenGL4.Version20.StencilBackFail; - var _StencilBackPassDepthFail = OpenTK.Graphics.OpenGL4.Version20.StencilBackPassDepthFail; - var _StencilBackPassDepthPass = OpenTK.Graphics.OpenGL4.Version20.StencilBackPassDepthPass; - var _MaxDrawBuffers = OpenTK.Graphics.OpenGL4.Version20.MaxDrawBuffers; - var _DrawBuffer0 = OpenTK.Graphics.OpenGL4.Version20.DrawBuffer0; - var _DrawBuffer1 = OpenTK.Graphics.OpenGL4.Version20.DrawBuffer1; - var _DrawBuffer2 = OpenTK.Graphics.OpenGL4.Version20.DrawBuffer2; - var _DrawBuffer3 = OpenTK.Graphics.OpenGL4.Version20.DrawBuffer3; - var _DrawBuffer4 = OpenTK.Graphics.OpenGL4.Version20.DrawBuffer4; - var _DrawBuffer5 = OpenTK.Graphics.OpenGL4.Version20.DrawBuffer5; - var _DrawBuffer6 = OpenTK.Graphics.OpenGL4.Version20.DrawBuffer6; - var _DrawBuffer7 = OpenTK.Graphics.OpenGL4.Version20.DrawBuffer7; - var _DrawBuffer8 = OpenTK.Graphics.OpenGL4.Version20.DrawBuffer8; - var _DrawBuffer9 = OpenTK.Graphics.OpenGL4.Version20.DrawBuffer9; - var _DrawBuffer10 = OpenTK.Graphics.OpenGL4.Version20.DrawBuffer10; - var _DrawBuffer11 = OpenTK.Graphics.OpenGL4.Version20.DrawBuffer11; - var _DrawBuffer12 = OpenTK.Graphics.OpenGL4.Version20.DrawBuffer12; - var _DrawBuffer13 = OpenTK.Graphics.OpenGL4.Version20.DrawBuffer13; - var _DrawBuffer14 = OpenTK.Graphics.OpenGL4.Version20.DrawBuffer14; - var _DrawBuffer15 = OpenTK.Graphics.OpenGL4.Version20.DrawBuffer15; - var _BlendEquationAlpha = OpenTK.Graphics.OpenGL4.Version20.BlendEquationAlpha; - var _MaxVertexAttribs = OpenTK.Graphics.OpenGL4.Version20.MaxVertexAttribs; - var _VertexAttribArrayNormalized = OpenTK.Graphics.OpenGL4.Version20.VertexAttribArrayNormalized; - var _MaxTextureImageUnits = OpenTK.Graphics.OpenGL4.Version20.MaxTextureImageUnits; - var _FragmentShader = OpenTK.Graphics.OpenGL4.Version20.FragmentShader; - var _VertexShader = OpenTK.Graphics.OpenGL4.Version20.VertexShader; - var _MaxFragmentUniformComponents = OpenTK.Graphics.OpenGL4.Version20.MaxFragmentUniformComponents; - var _MaxVertexUniformComponents = OpenTK.Graphics.OpenGL4.Version20.MaxVertexUniformComponents; - var _MaxVaryingFloats = OpenTK.Graphics.OpenGL4.Version20.MaxVaryingFloats; - var _MaxVertexTextureImageUnits = OpenTK.Graphics.OpenGL4.Version20.MaxVertexTextureImageUnits; - var _MaxCombinedTextureImageUnits = OpenTK.Graphics.OpenGL4.Version20.MaxCombinedTextureImageUnits; - var _ShaderType = OpenTK.Graphics.OpenGL4.Version20.ShaderType; - var _FloatVec2 = OpenTK.Graphics.OpenGL4.Version20.FloatVec2; - var _FloatVec3 = OpenTK.Graphics.OpenGL4.Version20.FloatVec3; - var _FloatVec4 = OpenTK.Graphics.OpenGL4.Version20.FloatVec4; - var _IntVec2 = OpenTK.Graphics.OpenGL4.Version20.IntVec2; - var _IntVec3 = OpenTK.Graphics.OpenGL4.Version20.IntVec3; - var _IntVec4 = OpenTK.Graphics.OpenGL4.Version20.IntVec4; - var _Bool = OpenTK.Graphics.OpenGL4.Version20.Bool; - var _BoolVec2 = OpenTK.Graphics.OpenGL4.Version20.BoolVec2; - var _BoolVec3 = OpenTK.Graphics.OpenGL4.Version20.BoolVec3; - var _BoolVec4 = OpenTK.Graphics.OpenGL4.Version20.BoolVec4; - var _FloatMat2 = OpenTK.Graphics.OpenGL4.Version20.FloatMat2; - var _FloatMat3 = OpenTK.Graphics.OpenGL4.Version20.FloatMat3; - var _FloatMat4 = OpenTK.Graphics.OpenGL4.Version20.FloatMat4; - var _Sampler1D = OpenTK.Graphics.OpenGL4.Version20.Sampler1D; - var _Sampler2D = OpenTK.Graphics.OpenGL4.Version20.Sampler2D; - var _Sampler3D = OpenTK.Graphics.OpenGL4.Version20.Sampler3D; - var _SamplerCube = OpenTK.Graphics.OpenGL4.Version20.SamplerCube; - var _Sampler1DShadow = OpenTK.Graphics.OpenGL4.Version20.Sampler1DShadow; - var _Sampler2DShadow = OpenTK.Graphics.OpenGL4.Version20.Sampler2DShadow; - var _DeleteStatus = OpenTK.Graphics.OpenGL4.Version20.DeleteStatus; - var _CompileStatus = OpenTK.Graphics.OpenGL4.Version20.CompileStatus; - var _LinkStatus = OpenTK.Graphics.OpenGL4.Version20.LinkStatus; - var _ValidateStatus = OpenTK.Graphics.OpenGL4.Version20.ValidateStatus; - var _InfoLogLength = OpenTK.Graphics.OpenGL4.Version20.InfoLogLength; - var _AttachedShaders = OpenTK.Graphics.OpenGL4.Version20.AttachedShaders; - var _ActiveUniforms = OpenTK.Graphics.OpenGL4.Version20.ActiveUniforms; - var _ActiveUniformMaxLength = OpenTK.Graphics.OpenGL4.Version20.ActiveUniformMaxLength; - var _ShaderSourceLength = OpenTK.Graphics.OpenGL4.Version20.ShaderSourceLength; - var _ActiveAttributes = OpenTK.Graphics.OpenGL4.Version20.ActiveAttributes; - var _ActiveAttributeMaxLength = OpenTK.Graphics.OpenGL4.Version20.ActiveAttributeMaxLength; - var _FragmentShaderDerivativeHint = OpenTK.Graphics.OpenGL4.Version20.FragmentShaderDerivativeHint; - var _ShadingLanguageVersion = OpenTK.Graphics.OpenGL4.Version20.ShadingLanguageVersion; - var _CurrentProgram = OpenTK.Graphics.OpenGL4.Version20.CurrentProgram; - var _PointSpriteCoordOrigin = OpenTK.Graphics.OpenGL4.Version20.PointSpriteCoordOrigin; - var _LowerLeft = OpenTK.Graphics.OpenGL4.Version20.LowerLeft; - var _UpperLeft = OpenTK.Graphics.OpenGL4.Version20.UpperLeft; - var _StencilBackRef = OpenTK.Graphics.OpenGL4.Version20.StencilBackRef; - var _StencilBackValueMask = OpenTK.Graphics.OpenGL4.Version20.StencilBackValueMask; - var _StencilBackWritemask = OpenTK.Graphics.OpenGL4.Version20.StencilBackWritemask; -} -static void Test_Version21_37709() { - var _PixelPackBuffer = OpenTK.Graphics.OpenGL4.Version21.PixelPackBuffer; - var _PixelUnpackBuffer = OpenTK.Graphics.OpenGL4.Version21.PixelUnpackBuffer; - var _PixelPackBufferBinding = OpenTK.Graphics.OpenGL4.Version21.PixelPackBufferBinding; - var _PixelUnpackBufferBinding = OpenTK.Graphics.OpenGL4.Version21.PixelUnpackBufferBinding; - var _FloatMat2x3 = OpenTK.Graphics.OpenGL4.Version21.FloatMat2x3; - var _FloatMat2x4 = OpenTK.Graphics.OpenGL4.Version21.FloatMat2x4; - var _FloatMat3x2 = OpenTK.Graphics.OpenGL4.Version21.FloatMat3x2; - var _FloatMat3x4 = OpenTK.Graphics.OpenGL4.Version21.FloatMat3x4; - var _FloatMat4x2 = OpenTK.Graphics.OpenGL4.Version21.FloatMat4x2; - var _FloatMat4x3 = OpenTK.Graphics.OpenGL4.Version21.FloatMat4x3; - var _Srgb = OpenTK.Graphics.OpenGL4.Version21.Srgb; - var _Srgb8 = OpenTK.Graphics.OpenGL4.Version21.Srgb8; - var _SrgbAlpha = OpenTK.Graphics.OpenGL4.Version21.SrgbAlpha; - var _Srgb8Alpha8 = OpenTK.Graphics.OpenGL4.Version21.Srgb8Alpha8; - var _CompressedSrgb = OpenTK.Graphics.OpenGL4.Version21.CompressedSrgb; - var _CompressedSrgbAlpha = OpenTK.Graphics.OpenGL4.Version21.CompressedSrgbAlpha; -} -static void Test_Version30_37710() { - var _ContextFlagForwardCompatibleBit = OpenTK.Graphics.OpenGL4.Version30.ContextFlagForwardCompatibleBit; - var _MapReadBit = OpenTK.Graphics.OpenGL4.Version30.MapReadBit; - var _MapWriteBit = OpenTK.Graphics.OpenGL4.Version30.MapWriteBit; - var _MapInvalidateRangeBit = OpenTK.Graphics.OpenGL4.Version30.MapInvalidateRangeBit; - var _MapInvalidateBufferBit = OpenTK.Graphics.OpenGL4.Version30.MapInvalidateBufferBit; - var _MapFlushExplicitBit = OpenTK.Graphics.OpenGL4.Version30.MapFlushExplicitBit; - var _MapUnsynchronizedBit = OpenTK.Graphics.OpenGL4.Version30.MapUnsynchronizedBit; - var _InvalidFramebufferOperation = OpenTK.Graphics.OpenGL4.Version30.InvalidFramebufferOperation; - var _MaxClipDistances = OpenTK.Graphics.OpenGL4.Version30.MaxClipDistances; - var _HalfFloat = OpenTK.Graphics.OpenGL4.Version30.HalfFloat; - var _ClipDistance0 = OpenTK.Graphics.OpenGL4.Version30.ClipDistance0; - var _ClipDistance1 = OpenTK.Graphics.OpenGL4.Version30.ClipDistance1; - var _ClipDistance2 = OpenTK.Graphics.OpenGL4.Version30.ClipDistance2; - var _ClipDistance3 = OpenTK.Graphics.OpenGL4.Version30.ClipDistance3; - var _ClipDistance4 = OpenTK.Graphics.OpenGL4.Version30.ClipDistance4; - var _ClipDistance5 = OpenTK.Graphics.OpenGL4.Version30.ClipDistance5; - var _ClipDistance6 = OpenTK.Graphics.OpenGL4.Version30.ClipDistance6; - var _ClipDistance7 = OpenTK.Graphics.OpenGL4.Version30.ClipDistance7; - var _FramebufferAttachmentColorEncoding = OpenTK.Graphics.OpenGL4.Version30.FramebufferAttachmentColorEncoding; - var _FramebufferAttachmentComponentType = OpenTK.Graphics.OpenGL4.Version30.FramebufferAttachmentComponentType; - var _FramebufferAttachmentRedSize = OpenTK.Graphics.OpenGL4.Version30.FramebufferAttachmentRedSize; - var _FramebufferAttachmentGreenSize = OpenTK.Graphics.OpenGL4.Version30.FramebufferAttachmentGreenSize; - var _FramebufferAttachmentBlueSize = OpenTK.Graphics.OpenGL4.Version30.FramebufferAttachmentBlueSize; - var _FramebufferAttachmentAlphaSize = OpenTK.Graphics.OpenGL4.Version30.FramebufferAttachmentAlphaSize; - var _FramebufferAttachmentDepthSize = OpenTK.Graphics.OpenGL4.Version30.FramebufferAttachmentDepthSize; - var _FramebufferAttachmentStencilSize = OpenTK.Graphics.OpenGL4.Version30.FramebufferAttachmentStencilSize; - var _FramebufferDefault = OpenTK.Graphics.OpenGL4.Version30.FramebufferDefault; - var _FramebufferUndefined = OpenTK.Graphics.OpenGL4.Version30.FramebufferUndefined; - var _DepthStencilAttachment = OpenTK.Graphics.OpenGL4.Version30.DepthStencilAttachment; - var _MajorVersion = OpenTK.Graphics.OpenGL4.Version30.MajorVersion; - var _MinorVersion = OpenTK.Graphics.OpenGL4.Version30.MinorVersion; - var _NumExtensions = OpenTK.Graphics.OpenGL4.Version30.NumExtensions; - var _ContextFlags = OpenTK.Graphics.OpenGL4.Version30.ContextFlags; - var _Index = OpenTK.Graphics.OpenGL4.Version30.Index; - var _CompressedRed = OpenTK.Graphics.OpenGL4.Version30.CompressedRed; - var _CompressedRg = OpenTK.Graphics.OpenGL4.Version30.CompressedRg; - var _Rg = OpenTK.Graphics.OpenGL4.Version30.Rg; - var _RgInteger = OpenTK.Graphics.OpenGL4.Version30.RgInteger; - var _R8 = OpenTK.Graphics.OpenGL4.Version30.R8; - var _R16 = OpenTK.Graphics.OpenGL4.Version30.R16; - var _Rg8 = OpenTK.Graphics.OpenGL4.Version30.Rg8; - var _Rg16 = OpenTK.Graphics.OpenGL4.Version30.Rg16; - var _R16f = OpenTK.Graphics.OpenGL4.Version30.R16f; - var _R32f = OpenTK.Graphics.OpenGL4.Version30.R32f; - var _Rg16f = OpenTK.Graphics.OpenGL4.Version30.Rg16f; - var _Rg32f = OpenTK.Graphics.OpenGL4.Version30.Rg32f; - var _R8i = OpenTK.Graphics.OpenGL4.Version30.R8i; - var _R8ui = OpenTK.Graphics.OpenGL4.Version30.R8ui; - var _R16i = OpenTK.Graphics.OpenGL4.Version30.R16i; - var _R16ui = OpenTK.Graphics.OpenGL4.Version30.R16ui; - var _R32i = OpenTK.Graphics.OpenGL4.Version30.R32i; - var _R32ui = OpenTK.Graphics.OpenGL4.Version30.R32ui; - var _Rg8i = OpenTK.Graphics.OpenGL4.Version30.Rg8i; - var _Rg8ui = OpenTK.Graphics.OpenGL4.Version30.Rg8ui; - var _Rg16i = OpenTK.Graphics.OpenGL4.Version30.Rg16i; - var _Rg16ui = OpenTK.Graphics.OpenGL4.Version30.Rg16ui; - var _Rg32i = OpenTK.Graphics.OpenGL4.Version30.Rg32i; - var _Rg32ui = OpenTK.Graphics.OpenGL4.Version30.Rg32ui; - var _MaxRenderbufferSize = OpenTK.Graphics.OpenGL4.Version30.MaxRenderbufferSize; - var _DepthStencil = OpenTK.Graphics.OpenGL4.Version30.DepthStencil; - var _UnsignedInt248 = OpenTK.Graphics.OpenGL4.Version30.UnsignedInt248; - var _VertexArrayBinding = OpenTK.Graphics.OpenGL4.Version30.VertexArrayBinding; - var _Rgba32f = OpenTK.Graphics.OpenGL4.Version30.Rgba32f; - var _Rgb32f = OpenTK.Graphics.OpenGL4.Version30.Rgb32f; - var _Rgba16f = OpenTK.Graphics.OpenGL4.Version30.Rgba16f; - var _Rgb16f = OpenTK.Graphics.OpenGL4.Version30.Rgb16f; - var _CompareRefToTexture = OpenTK.Graphics.OpenGL4.Version30.CompareRefToTexture; - var _Depth24Stencil8 = OpenTK.Graphics.OpenGL4.Version30.Depth24Stencil8; - var _TextureStencilSize = OpenTK.Graphics.OpenGL4.Version30.TextureStencilSize; - var _VertexAttribArrayInteger = OpenTK.Graphics.OpenGL4.Version30.VertexAttribArrayInteger; - var _MaxArrayTextureLayers = OpenTK.Graphics.OpenGL4.Version30.MaxArrayTextureLayers; - var _MinProgramTexelOffset = OpenTK.Graphics.OpenGL4.Version30.MinProgramTexelOffset; - var _MaxProgramTexelOffset = OpenTK.Graphics.OpenGL4.Version30.MaxProgramTexelOffset; - var _ClampReadColor = OpenTK.Graphics.OpenGL4.Version30.ClampReadColor; - var _FixedOnly = OpenTK.Graphics.OpenGL4.Version30.FixedOnly; - var _MaxVaryingComponents = OpenTK.Graphics.OpenGL4.Version30.MaxVaryingComponents; - var _TextureRedType = OpenTK.Graphics.OpenGL4.Version30.TextureRedType; - var _TextureGreenType = OpenTK.Graphics.OpenGL4.Version30.TextureGreenType; - var _TextureBlueType = OpenTK.Graphics.OpenGL4.Version30.TextureBlueType; - var _TextureAlphaType = OpenTK.Graphics.OpenGL4.Version30.TextureAlphaType; - var _TextureDepthType = OpenTK.Graphics.OpenGL4.Version30.TextureDepthType; - var _UnsignedNormalized = OpenTK.Graphics.OpenGL4.Version30.UnsignedNormalized; - var _Texture1DArray = OpenTK.Graphics.OpenGL4.Version30.Texture1DArray; - var _ProxyTexture1DArray = OpenTK.Graphics.OpenGL4.Version30.ProxyTexture1DArray; - var _Texture2DArray = OpenTK.Graphics.OpenGL4.Version30.Texture2DArray; - var _ProxyTexture2DArray = OpenTK.Graphics.OpenGL4.Version30.ProxyTexture2DArray; - var _TextureBinding1DArray = OpenTK.Graphics.OpenGL4.Version30.TextureBinding1DArray; - var _TextureBinding2DArray = OpenTK.Graphics.OpenGL4.Version30.TextureBinding2DArray; - var _R11fG11fB10f = OpenTK.Graphics.OpenGL4.Version30.R11fG11fB10f; - var _UnsignedInt10F11F11FRev = OpenTK.Graphics.OpenGL4.Version30.UnsignedInt10F11F11FRev; - var _Rgb9E5 = OpenTK.Graphics.OpenGL4.Version30.Rgb9E5; - var _UnsignedInt5999Rev = OpenTK.Graphics.OpenGL4.Version30.UnsignedInt5999Rev; - var _TextureSharedSize = OpenTK.Graphics.OpenGL4.Version30.TextureSharedSize; - var _TransformFeedbackVaryingMaxLength = OpenTK.Graphics.OpenGL4.Version30.TransformFeedbackVaryingMaxLength; - var _TransformFeedbackBufferMode = OpenTK.Graphics.OpenGL4.Version30.TransformFeedbackBufferMode; - var _MaxTransformFeedbackSeparateComponents = OpenTK.Graphics.OpenGL4.Version30.MaxTransformFeedbackSeparateComponents; - var _TransformFeedbackVaryings = OpenTK.Graphics.OpenGL4.Version30.TransformFeedbackVaryings; - var _TransformFeedbackBufferStart = OpenTK.Graphics.OpenGL4.Version30.TransformFeedbackBufferStart; - var _TransformFeedbackBufferSize = OpenTK.Graphics.OpenGL4.Version30.TransformFeedbackBufferSize; - var _PrimitivesGenerated = OpenTK.Graphics.OpenGL4.Version30.PrimitivesGenerated; - var _TransformFeedbackPrimitivesWritten = OpenTK.Graphics.OpenGL4.Version30.TransformFeedbackPrimitivesWritten; - var _RasterizerDiscard = OpenTK.Graphics.OpenGL4.Version30.RasterizerDiscard; - var _MaxTransformFeedbackInterleavedComponents = OpenTK.Graphics.OpenGL4.Version30.MaxTransformFeedbackInterleavedComponents; - var _MaxTransformFeedbackSeparateAttribs = OpenTK.Graphics.OpenGL4.Version30.MaxTransformFeedbackSeparateAttribs; - var _InterleavedAttribs = OpenTK.Graphics.OpenGL4.Version30.InterleavedAttribs; - var _SeparateAttribs = OpenTK.Graphics.OpenGL4.Version30.SeparateAttribs; - var _TransformFeedbackBuffer = OpenTK.Graphics.OpenGL4.Version30.TransformFeedbackBuffer; - var _TransformFeedbackBufferBinding = OpenTK.Graphics.OpenGL4.Version30.TransformFeedbackBufferBinding; - var _DrawFramebufferBinding = OpenTK.Graphics.OpenGL4.Version30.DrawFramebufferBinding; - var _FramebufferBinding = OpenTK.Graphics.OpenGL4.Version30.FramebufferBinding; - var _RenderbufferBinding = OpenTK.Graphics.OpenGL4.Version30.RenderbufferBinding; - var _ReadFramebuffer = OpenTK.Graphics.OpenGL4.Version30.ReadFramebuffer; - var _DrawFramebuffer = OpenTK.Graphics.OpenGL4.Version30.DrawFramebuffer; - var _ReadFramebufferBinding = OpenTK.Graphics.OpenGL4.Version30.ReadFramebufferBinding; - var _RenderbufferSamples = OpenTK.Graphics.OpenGL4.Version30.RenderbufferSamples; - var _DepthComponent32f = OpenTK.Graphics.OpenGL4.Version30.DepthComponent32f; - var _Depth32fStencil8 = OpenTK.Graphics.OpenGL4.Version30.Depth32fStencil8; - var _FramebufferAttachmentObjectType = OpenTK.Graphics.OpenGL4.Version30.FramebufferAttachmentObjectType; - var _FramebufferAttachmentObjectName = OpenTK.Graphics.OpenGL4.Version30.FramebufferAttachmentObjectName; - var _FramebufferAttachmentTextureLevel = OpenTK.Graphics.OpenGL4.Version30.FramebufferAttachmentTextureLevel; - var _FramebufferAttachmentTextureCubeMapFace = OpenTK.Graphics.OpenGL4.Version30.FramebufferAttachmentTextureCubeMapFace; - var _FramebufferAttachmentTextureLayer = OpenTK.Graphics.OpenGL4.Version30.FramebufferAttachmentTextureLayer; - var _FramebufferComplete = OpenTK.Graphics.OpenGL4.Version30.FramebufferComplete; - var _FramebufferIncompleteAttachment = OpenTK.Graphics.OpenGL4.Version30.FramebufferIncompleteAttachment; - var _FramebufferIncompleteMissingAttachment = OpenTK.Graphics.OpenGL4.Version30.FramebufferIncompleteMissingAttachment; - var _FramebufferIncompleteDrawBuffer = OpenTK.Graphics.OpenGL4.Version30.FramebufferIncompleteDrawBuffer; - var _FramebufferIncompleteReadBuffer = OpenTK.Graphics.OpenGL4.Version30.FramebufferIncompleteReadBuffer; - var _FramebufferUnsupported = OpenTK.Graphics.OpenGL4.Version30.FramebufferUnsupported; - var _MaxColorAttachments = OpenTK.Graphics.OpenGL4.Version30.MaxColorAttachments; - var _ColorAttachment0 = OpenTK.Graphics.OpenGL4.Version30.ColorAttachment0; - var _ColorAttachment1 = OpenTK.Graphics.OpenGL4.Version30.ColorAttachment1; - var _ColorAttachment2 = OpenTK.Graphics.OpenGL4.Version30.ColorAttachment2; - var _ColorAttachment3 = OpenTK.Graphics.OpenGL4.Version30.ColorAttachment3; - var _ColorAttachment4 = OpenTK.Graphics.OpenGL4.Version30.ColorAttachment4; - var _ColorAttachment5 = OpenTK.Graphics.OpenGL4.Version30.ColorAttachment5; - var _ColorAttachment6 = OpenTK.Graphics.OpenGL4.Version30.ColorAttachment6; - var _ColorAttachment7 = OpenTK.Graphics.OpenGL4.Version30.ColorAttachment7; - var _ColorAttachment8 = OpenTK.Graphics.OpenGL4.Version30.ColorAttachment8; - var _ColorAttachment9 = OpenTK.Graphics.OpenGL4.Version30.ColorAttachment9; - var _ColorAttachment10 = OpenTK.Graphics.OpenGL4.Version30.ColorAttachment10; - var _ColorAttachment11 = OpenTK.Graphics.OpenGL4.Version30.ColorAttachment11; - var _ColorAttachment12 = OpenTK.Graphics.OpenGL4.Version30.ColorAttachment12; - var _ColorAttachment13 = OpenTK.Graphics.OpenGL4.Version30.ColorAttachment13; - var _ColorAttachment14 = OpenTK.Graphics.OpenGL4.Version30.ColorAttachment14; - var _ColorAttachment15 = OpenTK.Graphics.OpenGL4.Version30.ColorAttachment15; - var _DepthAttachment = OpenTK.Graphics.OpenGL4.Version30.DepthAttachment; - var _StencilAttachment = OpenTK.Graphics.OpenGL4.Version30.StencilAttachment; - var _Framebuffer = OpenTK.Graphics.OpenGL4.Version30.Framebuffer; - var _Renderbuffer = OpenTK.Graphics.OpenGL4.Version30.Renderbuffer; - var _RenderbufferWidth = OpenTK.Graphics.OpenGL4.Version30.RenderbufferWidth; - var _RenderbufferHeight = OpenTK.Graphics.OpenGL4.Version30.RenderbufferHeight; - var _RenderbufferInternalFormat = OpenTK.Graphics.OpenGL4.Version30.RenderbufferInternalFormat; - var _StencilIndex1 = OpenTK.Graphics.OpenGL4.Version30.StencilIndex1; - var _StencilIndex4 = OpenTK.Graphics.OpenGL4.Version30.StencilIndex4; - var _StencilIndex8 = OpenTK.Graphics.OpenGL4.Version30.StencilIndex8; - var _StencilIndex16 = OpenTK.Graphics.OpenGL4.Version30.StencilIndex16; - var _RenderbufferRedSize = OpenTK.Graphics.OpenGL4.Version30.RenderbufferRedSize; - var _RenderbufferGreenSize = OpenTK.Graphics.OpenGL4.Version30.RenderbufferGreenSize; - var _RenderbufferBlueSize = OpenTK.Graphics.OpenGL4.Version30.RenderbufferBlueSize; - var _RenderbufferAlphaSize = OpenTK.Graphics.OpenGL4.Version30.RenderbufferAlphaSize; - var _RenderbufferDepthSize = OpenTK.Graphics.OpenGL4.Version30.RenderbufferDepthSize; - var _RenderbufferStencilSize = OpenTK.Graphics.OpenGL4.Version30.RenderbufferStencilSize; - var _FramebufferIncompleteMultisample = OpenTK.Graphics.OpenGL4.Version30.FramebufferIncompleteMultisample; - var _MaxSamples = OpenTK.Graphics.OpenGL4.Version30.MaxSamples; - var _Rgba32ui = OpenTK.Graphics.OpenGL4.Version30.Rgba32ui; - var _Rgb32ui = OpenTK.Graphics.OpenGL4.Version30.Rgb32ui; - var _Rgba16ui = OpenTK.Graphics.OpenGL4.Version30.Rgba16ui; - var _Rgb16ui = OpenTK.Graphics.OpenGL4.Version30.Rgb16ui; - var _Rgba8ui = OpenTK.Graphics.OpenGL4.Version30.Rgba8ui; - var _Rgb8ui = OpenTK.Graphics.OpenGL4.Version30.Rgb8ui; - var _Rgba32i = OpenTK.Graphics.OpenGL4.Version30.Rgba32i; - var _Rgb32i = OpenTK.Graphics.OpenGL4.Version30.Rgb32i; - var _Rgba16i = OpenTK.Graphics.OpenGL4.Version30.Rgba16i; - var _Rgb16i = OpenTK.Graphics.OpenGL4.Version30.Rgb16i; - var _Rgba8i = OpenTK.Graphics.OpenGL4.Version30.Rgba8i; - var _Rgb8i = OpenTK.Graphics.OpenGL4.Version30.Rgb8i; - var _RedInteger = OpenTK.Graphics.OpenGL4.Version30.RedInteger; - var _GreenInteger = OpenTK.Graphics.OpenGL4.Version30.GreenInteger; - var _BlueInteger = OpenTK.Graphics.OpenGL4.Version30.BlueInteger; - var _RgbInteger = OpenTK.Graphics.OpenGL4.Version30.RgbInteger; - var _RgbaInteger = OpenTK.Graphics.OpenGL4.Version30.RgbaInteger; - var _BgrInteger = OpenTK.Graphics.OpenGL4.Version30.BgrInteger; - var _BgraInteger = OpenTK.Graphics.OpenGL4.Version30.BgraInteger; - var _Float32UnsignedInt248Rev = OpenTK.Graphics.OpenGL4.Version30.Float32UnsignedInt248Rev; - var _FramebufferSrgb = OpenTK.Graphics.OpenGL4.Version30.FramebufferSrgb; - var _CompressedRedRgtc1 = OpenTK.Graphics.OpenGL4.Version30.CompressedRedRgtc1; - var _CompressedSignedRedRgtc1 = OpenTK.Graphics.OpenGL4.Version30.CompressedSignedRedRgtc1; - var _CompressedRgRgtc2 = OpenTK.Graphics.OpenGL4.Version30.CompressedRgRgtc2; - var _CompressedSignedRgRgtc2 = OpenTK.Graphics.OpenGL4.Version30.CompressedSignedRgRgtc2; - var _Sampler1DArray = OpenTK.Graphics.OpenGL4.Version30.Sampler1DArray; - var _Sampler2DArray = OpenTK.Graphics.OpenGL4.Version30.Sampler2DArray; - var _Sampler1DArrayShadow = OpenTK.Graphics.OpenGL4.Version30.Sampler1DArrayShadow; - var _Sampler2DArrayShadow = OpenTK.Graphics.OpenGL4.Version30.Sampler2DArrayShadow; - var _SamplerCubeShadow = OpenTK.Graphics.OpenGL4.Version30.SamplerCubeShadow; - var _UnsignedIntVec2 = OpenTK.Graphics.OpenGL4.Version30.UnsignedIntVec2; - var _UnsignedIntVec3 = OpenTK.Graphics.OpenGL4.Version30.UnsignedIntVec3; - var _UnsignedIntVec4 = OpenTK.Graphics.OpenGL4.Version30.UnsignedIntVec4; - var _IntSampler1D = OpenTK.Graphics.OpenGL4.Version30.IntSampler1D; - var _IntSampler2D = OpenTK.Graphics.OpenGL4.Version30.IntSampler2D; - var _IntSampler3D = OpenTK.Graphics.OpenGL4.Version30.IntSampler3D; - var _IntSamplerCube = OpenTK.Graphics.OpenGL4.Version30.IntSamplerCube; - var _IntSampler1DArray = OpenTK.Graphics.OpenGL4.Version30.IntSampler1DArray; - var _IntSampler2DArray = OpenTK.Graphics.OpenGL4.Version30.IntSampler2DArray; - var _UnsignedIntSampler1D = OpenTK.Graphics.OpenGL4.Version30.UnsignedIntSampler1D; - var _UnsignedIntSampler2D = OpenTK.Graphics.OpenGL4.Version30.UnsignedIntSampler2D; - var _UnsignedIntSampler3D = OpenTK.Graphics.OpenGL4.Version30.UnsignedIntSampler3D; - var _UnsignedIntSamplerCube = OpenTK.Graphics.OpenGL4.Version30.UnsignedIntSamplerCube; - var _UnsignedIntSampler1DArray = OpenTK.Graphics.OpenGL4.Version30.UnsignedIntSampler1DArray; - var _UnsignedIntSampler2DArray = OpenTK.Graphics.OpenGL4.Version30.UnsignedIntSampler2DArray; - var _QueryWait = OpenTK.Graphics.OpenGL4.Version30.QueryWait; - var _QueryNoWait = OpenTK.Graphics.OpenGL4.Version30.QueryNoWait; - var _QueryByRegionWait = OpenTK.Graphics.OpenGL4.Version30.QueryByRegionWait; - var _QueryByRegionNoWait = OpenTK.Graphics.OpenGL4.Version30.QueryByRegionNoWait; - var _BufferAccessFlags = OpenTK.Graphics.OpenGL4.Version30.BufferAccessFlags; - var _BufferMapLength = OpenTK.Graphics.OpenGL4.Version30.BufferMapLength; - var _BufferMapOffset = OpenTK.Graphics.OpenGL4.Version30.BufferMapOffset; -} -static void Test_Version31_37711() { - var _TextureRectangle = OpenTK.Graphics.OpenGL4.Version31.TextureRectangle; - var _TextureBindingRectangle = OpenTK.Graphics.OpenGL4.Version31.TextureBindingRectangle; - var _ProxyTextureRectangle = OpenTK.Graphics.OpenGL4.Version31.ProxyTextureRectangle; - var _MaxRectangleTextureSize = OpenTK.Graphics.OpenGL4.Version31.MaxRectangleTextureSize; - var _UniformBuffer = OpenTK.Graphics.OpenGL4.Version31.UniformBuffer; - var _UniformBufferBinding = OpenTK.Graphics.OpenGL4.Version31.UniformBufferBinding; - var _UniformBufferStart = OpenTK.Graphics.OpenGL4.Version31.UniformBufferStart; - var _UniformBufferSize = OpenTK.Graphics.OpenGL4.Version31.UniformBufferSize; - var _MaxVertexUniformBlocks = OpenTK.Graphics.OpenGL4.Version31.MaxVertexUniformBlocks; - var _MaxGeometryUniformBlocks = OpenTK.Graphics.OpenGL4.Version31.MaxGeometryUniformBlocks; - var _MaxFragmentUniformBlocks = OpenTK.Graphics.OpenGL4.Version31.MaxFragmentUniformBlocks; - var _MaxCombinedUniformBlocks = OpenTK.Graphics.OpenGL4.Version31.MaxCombinedUniformBlocks; - var _MaxUniformBufferBindings = OpenTK.Graphics.OpenGL4.Version31.MaxUniformBufferBindings; - var _MaxUniformBlockSize = OpenTK.Graphics.OpenGL4.Version31.MaxUniformBlockSize; - var _MaxCombinedVertexUniformComponents = OpenTK.Graphics.OpenGL4.Version31.MaxCombinedVertexUniformComponents; - var _MaxCombinedGeometryUniformComponents = OpenTK.Graphics.OpenGL4.Version31.MaxCombinedGeometryUniformComponents; - var _MaxCombinedFragmentUniformComponents = OpenTK.Graphics.OpenGL4.Version31.MaxCombinedFragmentUniformComponents; - var _UniformBufferOffsetAlignment = OpenTK.Graphics.OpenGL4.Version31.UniformBufferOffsetAlignment; - var _ActiveUniformBlockMaxNameLength = OpenTK.Graphics.OpenGL4.Version31.ActiveUniformBlockMaxNameLength; - var _ActiveUniformBlocks = OpenTK.Graphics.OpenGL4.Version31.ActiveUniformBlocks; - var _UniformType = OpenTK.Graphics.OpenGL4.Version31.UniformType; - var _UniformSize = OpenTK.Graphics.OpenGL4.Version31.UniformSize; - var _UniformNameLength = OpenTK.Graphics.OpenGL4.Version31.UniformNameLength; - var _UniformBlockIndex = OpenTK.Graphics.OpenGL4.Version31.UniformBlockIndex; - var _UniformOffset = OpenTK.Graphics.OpenGL4.Version31.UniformOffset; - var _UniformArrayStride = OpenTK.Graphics.OpenGL4.Version31.UniformArrayStride; - var _UniformMatrixStride = OpenTK.Graphics.OpenGL4.Version31.UniformMatrixStride; - var _UniformIsRowMajor = OpenTK.Graphics.OpenGL4.Version31.UniformIsRowMajor; - var _UniformBlockBinding = OpenTK.Graphics.OpenGL4.Version31.UniformBlockBinding; - var _UniformBlockDataSize = OpenTK.Graphics.OpenGL4.Version31.UniformBlockDataSize; - var _UniformBlockNameLength = OpenTK.Graphics.OpenGL4.Version31.UniformBlockNameLength; - var _UniformBlockActiveUniforms = OpenTK.Graphics.OpenGL4.Version31.UniformBlockActiveUniforms; - var _UniformBlockActiveUniformIndices = OpenTK.Graphics.OpenGL4.Version31.UniformBlockActiveUniformIndices; - var _UniformBlockReferencedByVertexShader = OpenTK.Graphics.OpenGL4.Version31.UniformBlockReferencedByVertexShader; - var _UniformBlockReferencedByGeometryShader = OpenTK.Graphics.OpenGL4.Version31.UniformBlockReferencedByGeometryShader; - var _UniformBlockReferencedByFragmentShader = OpenTK.Graphics.OpenGL4.Version31.UniformBlockReferencedByFragmentShader; - var _Sampler2DRect = OpenTK.Graphics.OpenGL4.Version31.Sampler2DRect; - var _Sampler2DRectShadow = OpenTK.Graphics.OpenGL4.Version31.Sampler2DRectShadow; - var _TextureBuffer = OpenTK.Graphics.OpenGL4.Version31.TextureBuffer; - var _MaxTextureBufferSize = OpenTK.Graphics.OpenGL4.Version31.MaxTextureBufferSize; - var _TextureBindingBuffer = OpenTK.Graphics.OpenGL4.Version31.TextureBindingBuffer; - var _TextureBufferDataStoreBinding = OpenTK.Graphics.OpenGL4.Version31.TextureBufferDataStoreBinding; - var _SamplerBuffer = OpenTK.Graphics.OpenGL4.Version31.SamplerBuffer; - var _IntSampler2DRect = OpenTK.Graphics.OpenGL4.Version31.IntSampler2DRect; - var _IntSamplerBuffer = OpenTK.Graphics.OpenGL4.Version31.IntSamplerBuffer; - var _UnsignedIntSampler2DRect = OpenTK.Graphics.OpenGL4.Version31.UnsignedIntSampler2DRect; - var _UnsignedIntSamplerBuffer = OpenTK.Graphics.OpenGL4.Version31.UnsignedIntSamplerBuffer; - var _CopyReadBuffer = OpenTK.Graphics.OpenGL4.Version31.CopyReadBuffer; - var _CopyWriteBuffer = OpenTK.Graphics.OpenGL4.Version31.CopyWriteBuffer; - var _R8Snorm = OpenTK.Graphics.OpenGL4.Version31.R8Snorm; - var _Rg8Snorm = OpenTK.Graphics.OpenGL4.Version31.Rg8Snorm; - var _Rgb8Snorm = OpenTK.Graphics.OpenGL4.Version31.Rgb8Snorm; - var _Rgba8Snorm = OpenTK.Graphics.OpenGL4.Version31.Rgba8Snorm; - var _R16Snorm = OpenTK.Graphics.OpenGL4.Version31.R16Snorm; - var _Rg16Snorm = OpenTK.Graphics.OpenGL4.Version31.Rg16Snorm; - var _Rgb16Snorm = OpenTK.Graphics.OpenGL4.Version31.Rgb16Snorm; - var _Rgba16Snorm = OpenTK.Graphics.OpenGL4.Version31.Rgba16Snorm; - var _SignedNormalized = OpenTK.Graphics.OpenGL4.Version31.SignedNormalized; - var _PrimitiveRestart = OpenTK.Graphics.OpenGL4.Version31.PrimitiveRestart; - var _PrimitiveRestartIndex = OpenTK.Graphics.OpenGL4.Version31.PrimitiveRestartIndex; - var _InvalidIndex = OpenTK.Graphics.OpenGL4.Version31.InvalidIndex; -} -static void Test_Version32_37712() { - var _ContextCoreProfileBit = OpenTK.Graphics.OpenGL4.Version32.ContextCoreProfileBit; - var _SyncFlushCommandsBit = OpenTK.Graphics.OpenGL4.Version32.SyncFlushCommandsBit; - var _ContextCompatibilityProfileBit = OpenTK.Graphics.OpenGL4.Version32.ContextCompatibilityProfileBit; - var _LinesAdjacency = OpenTK.Graphics.OpenGL4.Version32.LinesAdjacency; - var _LineStripAdjacency = OpenTK.Graphics.OpenGL4.Version32.LineStripAdjacency; - var _TrianglesAdjacency = OpenTK.Graphics.OpenGL4.Version32.TrianglesAdjacency; - var _TriangleStripAdjacency = OpenTK.Graphics.OpenGL4.Version32.TriangleStripAdjacency; - var _ProgramPointSize = OpenTK.Graphics.OpenGL4.Version32.ProgramPointSize; - var _DepthClamp = OpenTK.Graphics.OpenGL4.Version32.DepthClamp; - var _TextureCubeMapSeamless = OpenTK.Graphics.OpenGL4.Version32.TextureCubeMapSeamless; - var _GeometryVerticesOut = OpenTK.Graphics.OpenGL4.Version32.GeometryVerticesOut; - var _GeometryInputType = OpenTK.Graphics.OpenGL4.Version32.GeometryInputType; - var _GeometryOutputType = OpenTK.Graphics.OpenGL4.Version32.GeometryOutputType; - var _MaxGeometryTextureImageUnits = OpenTK.Graphics.OpenGL4.Version32.MaxGeometryTextureImageUnits; - var _FramebufferAttachmentLayered = OpenTK.Graphics.OpenGL4.Version32.FramebufferAttachmentLayered; - var _FramebufferIncompleteLayerTargets = OpenTK.Graphics.OpenGL4.Version32.FramebufferIncompleteLayerTargets; - var _GeometryShader = OpenTK.Graphics.OpenGL4.Version32.GeometryShader; - var _MaxGeometryUniformComponents = OpenTK.Graphics.OpenGL4.Version32.MaxGeometryUniformComponents; - var _MaxGeometryOutputVertices = OpenTK.Graphics.OpenGL4.Version32.MaxGeometryOutputVertices; - var _MaxGeometryTotalOutputComponents = OpenTK.Graphics.OpenGL4.Version32.MaxGeometryTotalOutputComponents; - var _QuadsFollowProvokingVertexConvention = OpenTK.Graphics.OpenGL4.Version32.QuadsFollowProvokingVertexConvention; - var _FirstVertexConvention = OpenTK.Graphics.OpenGL4.Version32.FirstVertexConvention; - var _LastVertexConvention = OpenTK.Graphics.OpenGL4.Version32.LastVertexConvention; - var _ProvokingVertex = OpenTK.Graphics.OpenGL4.Version32.ProvokingVertex; - var _SamplePosition = OpenTK.Graphics.OpenGL4.Version32.SamplePosition; - var _SampleMask = OpenTK.Graphics.OpenGL4.Version32.SampleMask; - var _SampleMaskValue = OpenTK.Graphics.OpenGL4.Version32.SampleMaskValue; - var _MaxSampleMaskWords = OpenTK.Graphics.OpenGL4.Version32.MaxSampleMaskWords; - var _Texture2DMultisample = OpenTK.Graphics.OpenGL4.Version32.Texture2DMultisample; - var _ProxyTexture2DMultisample = OpenTK.Graphics.OpenGL4.Version32.ProxyTexture2DMultisample; - var _Texture2DMultisampleArray = OpenTK.Graphics.OpenGL4.Version32.Texture2DMultisampleArray; - var _ProxyTexture2DMultisampleArray = OpenTK.Graphics.OpenGL4.Version32.ProxyTexture2DMultisampleArray; - var _TextureBinding2DMultisample = OpenTK.Graphics.OpenGL4.Version32.TextureBinding2DMultisample; - var _TextureBinding2DMultisampleArray = OpenTK.Graphics.OpenGL4.Version32.TextureBinding2DMultisampleArray; - var _TextureSamples = OpenTK.Graphics.OpenGL4.Version32.TextureSamples; - var _TextureFixedSampleLocations = OpenTK.Graphics.OpenGL4.Version32.TextureFixedSampleLocations; - var _Sampler2DMultisample = OpenTK.Graphics.OpenGL4.Version32.Sampler2DMultisample; - var _IntSampler2DMultisample = OpenTK.Graphics.OpenGL4.Version32.IntSampler2DMultisample; - var _UnsignedIntSampler2DMultisample = OpenTK.Graphics.OpenGL4.Version32.UnsignedIntSampler2DMultisample; - var _Sampler2DMultisampleArray = OpenTK.Graphics.OpenGL4.Version32.Sampler2DMultisampleArray; - var _IntSampler2DMultisampleArray = OpenTK.Graphics.OpenGL4.Version32.IntSampler2DMultisampleArray; - var _UnsignedIntSampler2DMultisampleArray = OpenTK.Graphics.OpenGL4.Version32.UnsignedIntSampler2DMultisampleArray; - var _MaxColorTextureSamples = OpenTK.Graphics.OpenGL4.Version32.MaxColorTextureSamples; - var _MaxDepthTextureSamples = OpenTK.Graphics.OpenGL4.Version32.MaxDepthTextureSamples; - var _MaxIntegerSamples = OpenTK.Graphics.OpenGL4.Version32.MaxIntegerSamples; - var _MaxServerWaitTimeout = OpenTK.Graphics.OpenGL4.Version32.MaxServerWaitTimeout; - var _ObjectType = OpenTK.Graphics.OpenGL4.Version32.ObjectType; - var _SyncCondition = OpenTK.Graphics.OpenGL4.Version32.SyncCondition; - var _SyncStatus = OpenTK.Graphics.OpenGL4.Version32.SyncStatus; - var _SyncFlags = OpenTK.Graphics.OpenGL4.Version32.SyncFlags; - var _SyncFence = OpenTK.Graphics.OpenGL4.Version32.SyncFence; - var _SyncGpuCommandsComplete = OpenTK.Graphics.OpenGL4.Version32.SyncGpuCommandsComplete; - var _Unsignaled = OpenTK.Graphics.OpenGL4.Version32.Unsignaled; - var _Signaled = OpenTK.Graphics.OpenGL4.Version32.Signaled; - var _AlreadySignaled = OpenTK.Graphics.OpenGL4.Version32.AlreadySignaled; - var _TimeoutExpired = OpenTK.Graphics.OpenGL4.Version32.TimeoutExpired; - var _ConditionSatisfied = OpenTK.Graphics.OpenGL4.Version32.ConditionSatisfied; - var _WaitFailed = OpenTK.Graphics.OpenGL4.Version32.WaitFailed; - var _MaxVertexOutputComponents = OpenTK.Graphics.OpenGL4.Version32.MaxVertexOutputComponents; - var _MaxGeometryInputComponents = OpenTK.Graphics.OpenGL4.Version32.MaxGeometryInputComponents; - var _MaxGeometryOutputComponents = OpenTK.Graphics.OpenGL4.Version32.MaxGeometryOutputComponents; - var _MaxFragmentInputComponents = OpenTK.Graphics.OpenGL4.Version32.MaxFragmentInputComponents; - var _ContextProfileMask = OpenTK.Graphics.OpenGL4.Version32.ContextProfileMask; - var _TimeoutIgnored = OpenTK.Graphics.OpenGL4.Version32.TimeoutIgnored; -} -static void Test_Version33_37713() { - var _TimeElapsed = OpenTK.Graphics.OpenGL4.Version33.TimeElapsed; - var _Src1Color = OpenTK.Graphics.OpenGL4.Version33.Src1Color; - var _OneMinusSrc1Color = OpenTK.Graphics.OpenGL4.Version33.OneMinusSrc1Color; - var _OneMinusSrc1Alpha = OpenTK.Graphics.OpenGL4.Version33.OneMinusSrc1Alpha; - var _MaxDualSourceDrawBuffers = OpenTK.Graphics.OpenGL4.Version33.MaxDualSourceDrawBuffers; - var _VertexAttribArrayDivisor = OpenTK.Graphics.OpenGL4.Version33.VertexAttribArrayDivisor; - var _SamplerBinding = OpenTK.Graphics.OpenGL4.Version33.SamplerBinding; - var _AnySamplesPassed = OpenTK.Graphics.OpenGL4.Version33.AnySamplesPassed; - var _Int2101010Rev = OpenTK.Graphics.OpenGL4.Version33.Int2101010Rev; - var _Timestamp = OpenTK.Graphics.OpenGL4.Version33.Timestamp; - var _TextureSwizzleR = OpenTK.Graphics.OpenGL4.Version33.TextureSwizzleR; - var _TextureSwizzleG = OpenTK.Graphics.OpenGL4.Version33.TextureSwizzleG; - var _TextureSwizzleB = OpenTK.Graphics.OpenGL4.Version33.TextureSwizzleB; - var _TextureSwizzleA = OpenTK.Graphics.OpenGL4.Version33.TextureSwizzleA; - var _TextureSwizzleRgba = OpenTK.Graphics.OpenGL4.Version33.TextureSwizzleRgba; - var _Rgb10A2ui = OpenTK.Graphics.OpenGL4.Version33.Rgb10A2ui; -} -static void Test_Version40_37714() { - var _Quads = OpenTK.Graphics.OpenGL4.Version40.Quads; - var _Patches = OpenTK.Graphics.OpenGL4.Version40.Patches; - var _UniformBlockReferencedByTessControlShader = OpenTK.Graphics.OpenGL4.Version40.UniformBlockReferencedByTessControlShader; - var _UniformBlockReferencedByTessEvaluationShader = OpenTK.Graphics.OpenGL4.Version40.UniformBlockReferencedByTessEvaluationShader; - var _MaxTessControlInputComponents = OpenTK.Graphics.OpenGL4.Version40.MaxTessControlInputComponents; - var _MaxTessEvaluationInputComponents = OpenTK.Graphics.OpenGL4.Version40.MaxTessEvaluationInputComponents; - var _GeometryShaderInvocations = OpenTK.Graphics.OpenGL4.Version40.GeometryShaderInvocations; - var _SampleShading = OpenTK.Graphics.OpenGL4.Version40.SampleShading; - var _MinSampleShadingValue = OpenTK.Graphics.OpenGL4.Version40.MinSampleShadingValue; - var _ActiveSubroutines = OpenTK.Graphics.OpenGL4.Version40.ActiveSubroutines; - var _ActiveSubroutineUniforms = OpenTK.Graphics.OpenGL4.Version40.ActiveSubroutineUniforms; - var _MaxSubroutines = OpenTK.Graphics.OpenGL4.Version40.MaxSubroutines; - var _MaxSubroutineUniformLocations = OpenTK.Graphics.OpenGL4.Version40.MaxSubroutineUniformLocations; - var _MaxCombinedTessControlUniformComponents = OpenTK.Graphics.OpenGL4.Version40.MaxCombinedTessControlUniformComponents; - var _MaxCombinedTessEvaluationUniformComponents = OpenTK.Graphics.OpenGL4.Version40.MaxCombinedTessEvaluationUniformComponents; - var _TransformFeedback = OpenTK.Graphics.OpenGL4.Version40.TransformFeedback; - var _TransformFeedbackBufferPaused = OpenTK.Graphics.OpenGL4.Version40.TransformFeedbackBufferPaused; - var _TransformFeedbackBufferActive = OpenTK.Graphics.OpenGL4.Version40.TransformFeedbackBufferActive; - var _TransformFeedbackBinding = OpenTK.Graphics.OpenGL4.Version40.TransformFeedbackBinding; - var _ActiveSubroutineUniformLocations = OpenTK.Graphics.OpenGL4.Version40.ActiveSubroutineUniformLocations; - var _ActiveSubroutineMaxLength = OpenTK.Graphics.OpenGL4.Version40.ActiveSubroutineMaxLength; - var _ActiveSubroutineUniformMaxLength = OpenTK.Graphics.OpenGL4.Version40.ActiveSubroutineUniformMaxLength; - var _NumCompatibleSubroutines = OpenTK.Graphics.OpenGL4.Version40.NumCompatibleSubroutines; - var _CompatibleSubroutines = OpenTK.Graphics.OpenGL4.Version40.CompatibleSubroutines; - var _MaxGeometryShaderInvocations = OpenTK.Graphics.OpenGL4.Version40.MaxGeometryShaderInvocations; - var _MinFragmentInterpolationOffset = OpenTK.Graphics.OpenGL4.Version40.MinFragmentInterpolationOffset; - var _MaxFragmentInterpolationOffset = OpenTK.Graphics.OpenGL4.Version40.MaxFragmentInterpolationOffset; - var _FragmentInterpolationOffsetBits = OpenTK.Graphics.OpenGL4.Version40.FragmentInterpolationOffsetBits; - var _MinProgramTextureGatherOffset = OpenTK.Graphics.OpenGL4.Version40.MinProgramTextureGatherOffset; - var _MaxProgramTextureGatherOffset = OpenTK.Graphics.OpenGL4.Version40.MaxProgramTextureGatherOffset; - var _MaxTransformFeedbackBuffers = OpenTK.Graphics.OpenGL4.Version40.MaxTransformFeedbackBuffers; - var _MaxVertexStreams = OpenTK.Graphics.OpenGL4.Version40.MaxVertexStreams; - var _PatchVertices = OpenTK.Graphics.OpenGL4.Version40.PatchVertices; - var _PatchDefaultInnerLevel = OpenTK.Graphics.OpenGL4.Version40.PatchDefaultInnerLevel; - var _PatchDefaultOuterLevel = OpenTK.Graphics.OpenGL4.Version40.PatchDefaultOuterLevel; - var _TessControlOutputVertices = OpenTK.Graphics.OpenGL4.Version40.TessControlOutputVertices; - var _TessGenMode = OpenTK.Graphics.OpenGL4.Version40.TessGenMode; - var _TessGenSpacing = OpenTK.Graphics.OpenGL4.Version40.TessGenSpacing; - var _TessGenVertexOrder = OpenTK.Graphics.OpenGL4.Version40.TessGenVertexOrder; - var _TessGenPointMode = OpenTK.Graphics.OpenGL4.Version40.TessGenPointMode; - var _Isolines = OpenTK.Graphics.OpenGL4.Version40.Isolines; - var _FractionalOdd = OpenTK.Graphics.OpenGL4.Version40.FractionalOdd; - var _FractionalEven = OpenTK.Graphics.OpenGL4.Version40.FractionalEven; - var _MaxPatchVertices = OpenTK.Graphics.OpenGL4.Version40.MaxPatchVertices; - var _MaxTessGenLevel = OpenTK.Graphics.OpenGL4.Version40.MaxTessGenLevel; - var _MaxTessControlUniformComponents = OpenTK.Graphics.OpenGL4.Version40.MaxTessControlUniformComponents; - var _MaxTessEvaluationUniformComponents = OpenTK.Graphics.OpenGL4.Version40.MaxTessEvaluationUniformComponents; - var _MaxTessControlTextureImageUnits = OpenTK.Graphics.OpenGL4.Version40.MaxTessControlTextureImageUnits; - var _MaxTessEvaluationTextureImageUnits = OpenTK.Graphics.OpenGL4.Version40.MaxTessEvaluationTextureImageUnits; - var _MaxTessControlOutputComponents = OpenTK.Graphics.OpenGL4.Version40.MaxTessControlOutputComponents; - var _MaxTessPatchComponents = OpenTK.Graphics.OpenGL4.Version40.MaxTessPatchComponents; - var _MaxTessControlTotalOutputComponents = OpenTK.Graphics.OpenGL4.Version40.MaxTessControlTotalOutputComponents; - var _MaxTessEvaluationOutputComponents = OpenTK.Graphics.OpenGL4.Version40.MaxTessEvaluationOutputComponents; - var _TessEvaluationShader = OpenTK.Graphics.OpenGL4.Version40.TessEvaluationShader; - var _TessControlShader = OpenTK.Graphics.OpenGL4.Version40.TessControlShader; - var _MaxTessControlUniformBlocks = OpenTK.Graphics.OpenGL4.Version40.MaxTessControlUniformBlocks; - var _MaxTessEvaluationUniformBlocks = OpenTK.Graphics.OpenGL4.Version40.MaxTessEvaluationUniformBlocks; - var _DrawIndirectBuffer = OpenTK.Graphics.OpenGL4.Version40.DrawIndirectBuffer; - var _DrawIndirectBufferBinding = OpenTK.Graphics.OpenGL4.Version40.DrawIndirectBufferBinding; - var _DoubleMat2 = OpenTK.Graphics.OpenGL4.Version40.DoubleMat2; - var _DoubleMat3 = OpenTK.Graphics.OpenGL4.Version40.DoubleMat3; - var _DoubleMat4 = OpenTK.Graphics.OpenGL4.Version40.DoubleMat4; - var _DoubleMat2x3 = OpenTK.Graphics.OpenGL4.Version40.DoubleMat2x3; - var _DoubleMat2x4 = OpenTK.Graphics.OpenGL4.Version40.DoubleMat2x4; - var _DoubleMat3x2 = OpenTK.Graphics.OpenGL4.Version40.DoubleMat3x2; - var _DoubleMat3x4 = OpenTK.Graphics.OpenGL4.Version40.DoubleMat3x4; - var _DoubleMat4x2 = OpenTK.Graphics.OpenGL4.Version40.DoubleMat4x2; - var _DoubleMat4x3 = OpenTK.Graphics.OpenGL4.Version40.DoubleMat4x3; - var _DoubleVec2 = OpenTK.Graphics.OpenGL4.Version40.DoubleVec2; - var _DoubleVec3 = OpenTK.Graphics.OpenGL4.Version40.DoubleVec3; - var _DoubleVec4 = OpenTK.Graphics.OpenGL4.Version40.DoubleVec4; - var _TextureCubeMapArray = OpenTK.Graphics.OpenGL4.Version40.TextureCubeMapArray; - var _TextureBindingCubeMapArray = OpenTK.Graphics.OpenGL4.Version40.TextureBindingCubeMapArray; - var _ProxyTextureCubeMapArray = OpenTK.Graphics.OpenGL4.Version40.ProxyTextureCubeMapArray; - var _SamplerCubeMapArray = OpenTK.Graphics.OpenGL4.Version40.SamplerCubeMapArray; - var _SamplerCubeMapArrayShadow = OpenTK.Graphics.OpenGL4.Version40.SamplerCubeMapArrayShadow; - var _IntSamplerCubeMapArray = OpenTK.Graphics.OpenGL4.Version40.IntSamplerCubeMapArray; - var _UnsignedIntSamplerCubeMapArray = OpenTK.Graphics.OpenGL4.Version40.UnsignedIntSamplerCubeMapArray; -} -static void Test_Version41_37715() { - var _VertexShaderBit = OpenTK.Graphics.OpenGL4.Version41.VertexShaderBit; - var _FragmentShaderBit = OpenTK.Graphics.OpenGL4.Version41.FragmentShaderBit; - var _GeometryShaderBit = OpenTK.Graphics.OpenGL4.Version41.GeometryShaderBit; - var _TessControlShaderBit = OpenTK.Graphics.OpenGL4.Version41.TessControlShaderBit; - var _TessEvaluationShaderBit = OpenTK.Graphics.OpenGL4.Version41.TessEvaluationShaderBit; - var _Fixed = OpenTK.Graphics.OpenGL4.Version41.Fixed; - var _ProgramBinaryRetrievableHint = OpenTK.Graphics.OpenGL4.Version41.ProgramBinaryRetrievableHint; - var _ProgramSeparable = OpenTK.Graphics.OpenGL4.Version41.ProgramSeparable; - var _ActiveProgram = OpenTK.Graphics.OpenGL4.Version41.ActiveProgram; - var _ProgramPipelineBinding = OpenTK.Graphics.OpenGL4.Version41.ProgramPipelineBinding; - var _MaxViewports = OpenTK.Graphics.OpenGL4.Version41.MaxViewports; - var _ViewportSubpixelBits = OpenTK.Graphics.OpenGL4.Version41.ViewportSubpixelBits; - var _ViewportBoundsRange = OpenTK.Graphics.OpenGL4.Version41.ViewportBoundsRange; - var _LayerProvokingVertex = OpenTK.Graphics.OpenGL4.Version41.LayerProvokingVertex; - var _ViewportIndexProvokingVertex = OpenTK.Graphics.OpenGL4.Version41.ViewportIndexProvokingVertex; - var _UndefinedVertex = OpenTK.Graphics.OpenGL4.Version41.UndefinedVertex; - var _ProgramBinaryLength = OpenTK.Graphics.OpenGL4.Version41.ProgramBinaryLength; - var _NumProgramBinaryFormats = OpenTK.Graphics.OpenGL4.Version41.NumProgramBinaryFormats; - var _ProgramBinaryFormats = OpenTK.Graphics.OpenGL4.Version41.ProgramBinaryFormats; - var _ImplementationColorReadType = OpenTK.Graphics.OpenGL4.Version41.ImplementationColorReadType; - var _ImplementationColorReadFormat = OpenTK.Graphics.OpenGL4.Version41.ImplementationColorReadFormat; - var _Rgb565 = OpenTK.Graphics.OpenGL4.Version41.Rgb565; - var _LowFloat = OpenTK.Graphics.OpenGL4.Version41.LowFloat; - var _MediumFloat = OpenTK.Graphics.OpenGL4.Version41.MediumFloat; - var _HighFloat = OpenTK.Graphics.OpenGL4.Version41.HighFloat; - var _LowInt = OpenTK.Graphics.OpenGL4.Version41.LowInt; - var _MediumInt = OpenTK.Graphics.OpenGL4.Version41.MediumInt; - var _HighInt = OpenTK.Graphics.OpenGL4.Version41.HighInt; - var _ShaderBinaryFormats = OpenTK.Graphics.OpenGL4.Version41.ShaderBinaryFormats; - var _NumShaderBinaryFormats = OpenTK.Graphics.OpenGL4.Version41.NumShaderBinaryFormats; - var _ShaderCompiler = OpenTK.Graphics.OpenGL4.Version41.ShaderCompiler; - var _MaxVertexUniformVectors = OpenTK.Graphics.OpenGL4.Version41.MaxVertexUniformVectors; - var _MaxVaryingVectors = OpenTK.Graphics.OpenGL4.Version41.MaxVaryingVectors; - var _MaxFragmentUniformVectors = OpenTK.Graphics.OpenGL4.Version41.MaxFragmentUniformVectors; - var _AllShaderBits = OpenTK.Graphics.OpenGL4.Version41.AllShaderBits; -} -static void Test_Version42_37716() { - var _VertexAttribArrayBarrierBit = OpenTK.Graphics.OpenGL4.Version42.VertexAttribArrayBarrierBit; - var _ElementArrayBarrierBit = OpenTK.Graphics.OpenGL4.Version42.ElementArrayBarrierBit; - var _UniformBarrierBit = OpenTK.Graphics.OpenGL4.Version42.UniformBarrierBit; - var _TextureFetchBarrierBit = OpenTK.Graphics.OpenGL4.Version42.TextureFetchBarrierBit; - var _ShaderImageAccessBarrierBit = OpenTK.Graphics.OpenGL4.Version42.ShaderImageAccessBarrierBit; - var _CommandBarrierBit = OpenTK.Graphics.OpenGL4.Version42.CommandBarrierBit; - var _PixelBufferBarrierBit = OpenTK.Graphics.OpenGL4.Version42.PixelBufferBarrierBit; - var _TextureUpdateBarrierBit = OpenTK.Graphics.OpenGL4.Version42.TextureUpdateBarrierBit; - var _BufferUpdateBarrierBit = OpenTK.Graphics.OpenGL4.Version42.BufferUpdateBarrierBit; - var _FramebufferBarrierBit = OpenTK.Graphics.OpenGL4.Version42.FramebufferBarrierBit; - var _TransformFeedbackBarrierBit = OpenTK.Graphics.OpenGL4.Version42.TransformFeedbackBarrierBit; - var _AtomicCounterBarrierBit = OpenTK.Graphics.OpenGL4.Version42.AtomicCounterBarrierBit; - var _CompressedRgbaBptcUnorm = OpenTK.Graphics.OpenGL4.Version42.CompressedRgbaBptcUnorm; - var _CompressedSrgbAlphaBptcUnorm = OpenTK.Graphics.OpenGL4.Version42.CompressedSrgbAlphaBptcUnorm; - var _CompressedRgbBptcSignedFloat = OpenTK.Graphics.OpenGL4.Version42.CompressedRgbBptcSignedFloat; - var _CompressedRgbBptcUnsignedFloat = OpenTK.Graphics.OpenGL4.Version42.CompressedRgbBptcUnsignedFloat; - var _MaxImageUnits = OpenTK.Graphics.OpenGL4.Version42.MaxImageUnits; - var _MaxCombinedImageUnitsAndFragmentOutputs = OpenTK.Graphics.OpenGL4.Version42.MaxCombinedImageUnitsAndFragmentOutputs; - var _ImageBindingName = OpenTK.Graphics.OpenGL4.Version42.ImageBindingName; - var _ImageBindingLevel = OpenTK.Graphics.OpenGL4.Version42.ImageBindingLevel; - var _ImageBindingLayered = OpenTK.Graphics.OpenGL4.Version42.ImageBindingLayered; - var _ImageBindingLayer = OpenTK.Graphics.OpenGL4.Version42.ImageBindingLayer; - var _ImageBindingAccess = OpenTK.Graphics.OpenGL4.Version42.ImageBindingAccess; - var _Image1D = OpenTK.Graphics.OpenGL4.Version42.Image1D; - var _Image2D = OpenTK.Graphics.OpenGL4.Version42.Image2D; - var _Image3D = OpenTK.Graphics.OpenGL4.Version42.Image3D; - var _Image2DRect = OpenTK.Graphics.OpenGL4.Version42.Image2DRect; - var _ImageCube = OpenTK.Graphics.OpenGL4.Version42.ImageCube; - var _ImageBuffer = OpenTK.Graphics.OpenGL4.Version42.ImageBuffer; - var _Image1DArray = OpenTK.Graphics.OpenGL4.Version42.Image1DArray; - var _Image2DArray = OpenTK.Graphics.OpenGL4.Version42.Image2DArray; - var _ImageCubeMapArray = OpenTK.Graphics.OpenGL4.Version42.ImageCubeMapArray; - var _Image2DMultisample = OpenTK.Graphics.OpenGL4.Version42.Image2DMultisample; - var _Image2DMultisampleArray = OpenTK.Graphics.OpenGL4.Version42.Image2DMultisampleArray; - var _IntImage1D = OpenTK.Graphics.OpenGL4.Version42.IntImage1D; - var _IntImage2D = OpenTK.Graphics.OpenGL4.Version42.IntImage2D; - var _IntImage3D = OpenTK.Graphics.OpenGL4.Version42.IntImage3D; - var _IntImage2DRect = OpenTK.Graphics.OpenGL4.Version42.IntImage2DRect; - var _IntImageCube = OpenTK.Graphics.OpenGL4.Version42.IntImageCube; - var _IntImageBuffer = OpenTK.Graphics.OpenGL4.Version42.IntImageBuffer; - var _IntImage1DArray = OpenTK.Graphics.OpenGL4.Version42.IntImage1DArray; - var _IntImage2DArray = OpenTK.Graphics.OpenGL4.Version42.IntImage2DArray; - var _IntImageCubeMapArray = OpenTK.Graphics.OpenGL4.Version42.IntImageCubeMapArray; - var _IntImage2DMultisample = OpenTK.Graphics.OpenGL4.Version42.IntImage2DMultisample; - var _IntImage2DMultisampleArray = OpenTK.Graphics.OpenGL4.Version42.IntImage2DMultisampleArray; - var _UnsignedIntImage1D = OpenTK.Graphics.OpenGL4.Version42.UnsignedIntImage1D; - var _UnsignedIntImage2D = OpenTK.Graphics.OpenGL4.Version42.UnsignedIntImage2D; - var _UnsignedIntImage3D = OpenTK.Graphics.OpenGL4.Version42.UnsignedIntImage3D; - var _UnsignedIntImage2DRect = OpenTK.Graphics.OpenGL4.Version42.UnsignedIntImage2DRect; - var _UnsignedIntImageCube = OpenTK.Graphics.OpenGL4.Version42.UnsignedIntImageCube; - var _UnsignedIntImageBuffer = OpenTK.Graphics.OpenGL4.Version42.UnsignedIntImageBuffer; - var _UnsignedIntImage1DArray = OpenTK.Graphics.OpenGL4.Version42.UnsignedIntImage1DArray; - var _UnsignedIntImage2DArray = OpenTK.Graphics.OpenGL4.Version42.UnsignedIntImage2DArray; - var _UnsignedIntImageCubeMapArray = OpenTK.Graphics.OpenGL4.Version42.UnsignedIntImageCubeMapArray; - var _UnsignedIntImage2DMultisample = OpenTK.Graphics.OpenGL4.Version42.UnsignedIntImage2DMultisample; - var _UnsignedIntImage2DMultisampleArray = OpenTK.Graphics.OpenGL4.Version42.UnsignedIntImage2DMultisampleArray; - var _MaxImageSamples = OpenTK.Graphics.OpenGL4.Version42.MaxImageSamples; - var _ImageBindingFormat = OpenTK.Graphics.OpenGL4.Version42.ImageBindingFormat; - var _MinMapBufferAlignment = OpenTK.Graphics.OpenGL4.Version42.MinMapBufferAlignment; - var _ImageFormatCompatibilityType = OpenTK.Graphics.OpenGL4.Version42.ImageFormatCompatibilityType; - var _ImageFormatCompatibilityBySize = OpenTK.Graphics.OpenGL4.Version42.ImageFormatCompatibilityBySize; - var _ImageFormatCompatibilityByClass = OpenTK.Graphics.OpenGL4.Version42.ImageFormatCompatibilityByClass; - var _MaxVertexImageUniforms = OpenTK.Graphics.OpenGL4.Version42.MaxVertexImageUniforms; - var _MaxTessControlImageUniforms = OpenTK.Graphics.OpenGL4.Version42.MaxTessControlImageUniforms; - var _MaxTessEvaluationImageUniforms = OpenTK.Graphics.OpenGL4.Version42.MaxTessEvaluationImageUniforms; - var _MaxGeometryImageUniforms = OpenTK.Graphics.OpenGL4.Version42.MaxGeometryImageUniforms; - var _MaxFragmentImageUniforms = OpenTK.Graphics.OpenGL4.Version42.MaxFragmentImageUniforms; - var _MaxCombinedImageUniforms = OpenTK.Graphics.OpenGL4.Version42.MaxCombinedImageUniforms; - var _UnpackCompressedBlockWidth = OpenTK.Graphics.OpenGL4.Version42.UnpackCompressedBlockWidth; - var _UnpackCompressedBlockHeight = OpenTK.Graphics.OpenGL4.Version42.UnpackCompressedBlockHeight; - var _UnpackCompressedBlockDepth = OpenTK.Graphics.OpenGL4.Version42.UnpackCompressedBlockDepth; - var _UnpackCompressedBlockSize = OpenTK.Graphics.OpenGL4.Version42.UnpackCompressedBlockSize; - var _PackCompressedBlockWidth = OpenTK.Graphics.OpenGL4.Version42.PackCompressedBlockWidth; - var _PackCompressedBlockHeight = OpenTK.Graphics.OpenGL4.Version42.PackCompressedBlockHeight; - var _PackCompressedBlockDepth = OpenTK.Graphics.OpenGL4.Version42.PackCompressedBlockDepth; - var _PackCompressedBlockSize = OpenTK.Graphics.OpenGL4.Version42.PackCompressedBlockSize; - var _TextureImmutableFormat = OpenTK.Graphics.OpenGL4.Version42.TextureImmutableFormat; - var _AtomicCounterBuffer = OpenTK.Graphics.OpenGL4.Version42.AtomicCounterBuffer; - var _AtomicCounterBufferBinding = OpenTK.Graphics.OpenGL4.Version42.AtomicCounterBufferBinding; - var _AtomicCounterBufferStart = OpenTK.Graphics.OpenGL4.Version42.AtomicCounterBufferStart; - var _AtomicCounterBufferSize = OpenTK.Graphics.OpenGL4.Version42.AtomicCounterBufferSize; - var _AtomicCounterBufferDataSize = OpenTK.Graphics.OpenGL4.Version42.AtomicCounterBufferDataSize; - var _AtomicCounterBufferActiveAtomicCounters = OpenTK.Graphics.OpenGL4.Version42.AtomicCounterBufferActiveAtomicCounters; - var _AtomicCounterBufferActiveAtomicCounterIndices = OpenTK.Graphics.OpenGL4.Version42.AtomicCounterBufferActiveAtomicCounterIndices; - var _AtomicCounterBufferReferencedByVertexShader = OpenTK.Graphics.OpenGL4.Version42.AtomicCounterBufferReferencedByVertexShader; - var _AtomicCounterBufferReferencedByTessControlShader = OpenTK.Graphics.OpenGL4.Version42.AtomicCounterBufferReferencedByTessControlShader; - var _AtomicCounterBufferReferencedByTessEvaluationShader = OpenTK.Graphics.OpenGL4.Version42.AtomicCounterBufferReferencedByTessEvaluationShader; - var _AtomicCounterBufferReferencedByGeometryShader = OpenTK.Graphics.OpenGL4.Version42.AtomicCounterBufferReferencedByGeometryShader; - var _AtomicCounterBufferReferencedByFragmentShader = OpenTK.Graphics.OpenGL4.Version42.AtomicCounterBufferReferencedByFragmentShader; - var _MaxVertexAtomicCounterBuffers = OpenTK.Graphics.OpenGL4.Version42.MaxVertexAtomicCounterBuffers; - var _MaxTessControlAtomicCounterBuffers = OpenTK.Graphics.OpenGL4.Version42.MaxTessControlAtomicCounterBuffers; - var _MaxTessEvaluationAtomicCounterBuffers = OpenTK.Graphics.OpenGL4.Version42.MaxTessEvaluationAtomicCounterBuffers; - var _MaxGeometryAtomicCounterBuffers = OpenTK.Graphics.OpenGL4.Version42.MaxGeometryAtomicCounterBuffers; - var _MaxFragmentAtomicCounterBuffers = OpenTK.Graphics.OpenGL4.Version42.MaxFragmentAtomicCounterBuffers; - var _MaxCombinedAtomicCounterBuffers = OpenTK.Graphics.OpenGL4.Version42.MaxCombinedAtomicCounterBuffers; - var _MaxVertexAtomicCounters = OpenTK.Graphics.OpenGL4.Version42.MaxVertexAtomicCounters; - var _MaxTessControlAtomicCounters = OpenTK.Graphics.OpenGL4.Version42.MaxTessControlAtomicCounters; - var _MaxTessEvaluationAtomicCounters = OpenTK.Graphics.OpenGL4.Version42.MaxTessEvaluationAtomicCounters; - var _MaxGeometryAtomicCounters = OpenTK.Graphics.OpenGL4.Version42.MaxGeometryAtomicCounters; - var _MaxFragmentAtomicCounters = OpenTK.Graphics.OpenGL4.Version42.MaxFragmentAtomicCounters; - var _MaxCombinedAtomicCounters = OpenTK.Graphics.OpenGL4.Version42.MaxCombinedAtomicCounters; - var _MaxAtomicCounterBufferSize = OpenTK.Graphics.OpenGL4.Version42.MaxAtomicCounterBufferSize; - var _ActiveAtomicCounterBuffers = OpenTK.Graphics.OpenGL4.Version42.ActiveAtomicCounterBuffers; - var _UniformAtomicCounterBufferIndex = OpenTK.Graphics.OpenGL4.Version42.UniformAtomicCounterBufferIndex; - var _UnsignedIntAtomicCounter = OpenTK.Graphics.OpenGL4.Version42.UnsignedIntAtomicCounter; - var _MaxAtomicCounterBufferBindings = OpenTK.Graphics.OpenGL4.Version42.MaxAtomicCounterBufferBindings; - var _NumSampleCounts = OpenTK.Graphics.OpenGL4.Version42.NumSampleCounts; - var _AllBarrierBits = OpenTK.Graphics.OpenGL4.Version42.AllBarrierBits; -} -static void Test_Version43_37717() { - var _ContextFlagDebugBit = OpenTK.Graphics.OpenGL4.Version43.ContextFlagDebugBit; - var _ComputeShaderBit = OpenTK.Graphics.OpenGL4.Version43.ComputeShaderBit; - var _ShaderStorageBarrierBit = OpenTK.Graphics.OpenGL4.Version43.ShaderStorageBarrierBit; - var _StackOverflow = OpenTK.Graphics.OpenGL4.Version43.StackOverflow; - var _StackUnderflow = OpenTK.Graphics.OpenGL4.Version43.StackUnderflow; - var _VertexArray = OpenTK.Graphics.OpenGL4.Version43.VertexArray; - var _DebugOutputSynchronous = OpenTK.Graphics.OpenGL4.Version43.DebugOutputSynchronous; - var _DebugNextLoggedMessageLength = OpenTK.Graphics.OpenGL4.Version43.DebugNextLoggedMessageLength; - var _DebugCallbackFunction = OpenTK.Graphics.OpenGL4.Version43.DebugCallbackFunction; - var _DebugCallbackUserParam = OpenTK.Graphics.OpenGL4.Version43.DebugCallbackUserParam; - var _DebugSourceApi = OpenTK.Graphics.OpenGL4.Version43.DebugSourceApi; - var _DebugSourceWindowSystem = OpenTK.Graphics.OpenGL4.Version43.DebugSourceWindowSystem; - var _DebugSourceShaderCompiler = OpenTK.Graphics.OpenGL4.Version43.DebugSourceShaderCompiler; - var _DebugSourceThirdParty = OpenTK.Graphics.OpenGL4.Version43.DebugSourceThirdParty; - var _DebugSourceApplication = OpenTK.Graphics.OpenGL4.Version43.DebugSourceApplication; - var _DebugSourceOther = OpenTK.Graphics.OpenGL4.Version43.DebugSourceOther; - var _DebugTypeError = OpenTK.Graphics.OpenGL4.Version43.DebugTypeError; - var _DebugTypeDeprecatedBehavior = OpenTK.Graphics.OpenGL4.Version43.DebugTypeDeprecatedBehavior; - var _DebugTypeUndefinedBehavior = OpenTK.Graphics.OpenGL4.Version43.DebugTypeUndefinedBehavior; - var _DebugTypePortability = OpenTK.Graphics.OpenGL4.Version43.DebugTypePortability; - var _DebugTypePerformance = OpenTK.Graphics.OpenGL4.Version43.DebugTypePerformance; - var _DebugTypeOther = OpenTK.Graphics.OpenGL4.Version43.DebugTypeOther; - var _MaxComputeSharedMemorySize = OpenTK.Graphics.OpenGL4.Version43.MaxComputeSharedMemorySize; - var _MaxComputeUniformComponents = OpenTK.Graphics.OpenGL4.Version43.MaxComputeUniformComponents; - var _MaxComputeAtomicCounterBuffers = OpenTK.Graphics.OpenGL4.Version43.MaxComputeAtomicCounterBuffers; - var _MaxComputeAtomicCounters = OpenTK.Graphics.OpenGL4.Version43.MaxComputeAtomicCounters; - var _MaxCombinedComputeUniformComponents = OpenTK.Graphics.OpenGL4.Version43.MaxCombinedComputeUniformComponents; - var _ComputeWorkGroupSize = OpenTK.Graphics.OpenGL4.Version43.ComputeWorkGroupSize; - var _DebugTypeMarker = OpenTK.Graphics.OpenGL4.Version43.DebugTypeMarker; - var _DebugTypePushGroup = OpenTK.Graphics.OpenGL4.Version43.DebugTypePushGroup; - var _DebugTypePopGroup = OpenTK.Graphics.OpenGL4.Version43.DebugTypePopGroup; - var _DebugSeverityNotification = OpenTK.Graphics.OpenGL4.Version43.DebugSeverityNotification; - var _MaxDebugGroupStackDepth = OpenTK.Graphics.OpenGL4.Version43.MaxDebugGroupStackDepth; - var _DebugGroupStackDepth = OpenTK.Graphics.OpenGL4.Version43.DebugGroupStackDepth; - var _MaxUniformLocations = OpenTK.Graphics.OpenGL4.Version43.MaxUniformLocations; - var _InternalformatSupported = OpenTK.Graphics.OpenGL4.Version43.InternalformatSupported; - var _InternalformatPreferred = OpenTK.Graphics.OpenGL4.Version43.InternalformatPreferred; - var _InternalformatRedSize = OpenTK.Graphics.OpenGL4.Version43.InternalformatRedSize; - var _InternalformatGreenSize = OpenTK.Graphics.OpenGL4.Version43.InternalformatGreenSize; - var _InternalformatBlueSize = OpenTK.Graphics.OpenGL4.Version43.InternalformatBlueSize; - var _InternalformatAlphaSize = OpenTK.Graphics.OpenGL4.Version43.InternalformatAlphaSize; - var _InternalformatDepthSize = OpenTK.Graphics.OpenGL4.Version43.InternalformatDepthSize; - var _InternalformatStencilSize = OpenTK.Graphics.OpenGL4.Version43.InternalformatStencilSize; - var _InternalformatSharedSize = OpenTK.Graphics.OpenGL4.Version43.InternalformatSharedSize; - var _InternalformatRedType = OpenTK.Graphics.OpenGL4.Version43.InternalformatRedType; - var _InternalformatGreenType = OpenTK.Graphics.OpenGL4.Version43.InternalformatGreenType; - var _InternalformatBlueType = OpenTK.Graphics.OpenGL4.Version43.InternalformatBlueType; - var _InternalformatAlphaType = OpenTK.Graphics.OpenGL4.Version43.InternalformatAlphaType; - var _InternalformatDepthType = OpenTK.Graphics.OpenGL4.Version43.InternalformatDepthType; - var _InternalformatStencilType = OpenTK.Graphics.OpenGL4.Version43.InternalformatStencilType; - var _MaxWidth = OpenTK.Graphics.OpenGL4.Version43.MaxWidth; - var _MaxHeight = OpenTK.Graphics.OpenGL4.Version43.MaxHeight; - var _MaxDepth = OpenTK.Graphics.OpenGL4.Version43.MaxDepth; - var _MaxLayers = OpenTK.Graphics.OpenGL4.Version43.MaxLayers; - var _MaxCombinedDimensions = OpenTK.Graphics.OpenGL4.Version43.MaxCombinedDimensions; - var _ColorComponents = OpenTK.Graphics.OpenGL4.Version43.ColorComponents; - var _DepthComponents = OpenTK.Graphics.OpenGL4.Version43.DepthComponents; - var _StencilComponents = OpenTK.Graphics.OpenGL4.Version43.StencilComponents; - var _ColorRenderable = OpenTK.Graphics.OpenGL4.Version43.ColorRenderable; - var _DepthRenderable = OpenTK.Graphics.OpenGL4.Version43.DepthRenderable; - var _StencilRenderable = OpenTK.Graphics.OpenGL4.Version43.StencilRenderable; - var _FramebufferRenderable = OpenTK.Graphics.OpenGL4.Version43.FramebufferRenderable; - var _FramebufferRenderableLayered = OpenTK.Graphics.OpenGL4.Version43.FramebufferRenderableLayered; - var _FramebufferBlend = OpenTK.Graphics.OpenGL4.Version43.FramebufferBlend; - var _ReadPixels = OpenTK.Graphics.OpenGL4.Version43.ReadPixels; - var _ReadPixelsFormat = OpenTK.Graphics.OpenGL4.Version43.ReadPixelsFormat; - var _ReadPixelsType = OpenTK.Graphics.OpenGL4.Version43.ReadPixelsType; - var _TextureImageFormat = OpenTK.Graphics.OpenGL4.Version43.TextureImageFormat; - var _TextureImageType = OpenTK.Graphics.OpenGL4.Version43.TextureImageType; - var _GetTextureImageFormat = OpenTK.Graphics.OpenGL4.Version43.GetTextureImageFormat; - var _GetTextureImageType = OpenTK.Graphics.OpenGL4.Version43.GetTextureImageType; - var _Mipmap = OpenTK.Graphics.OpenGL4.Version43.Mipmap; - var _ManualGenerateMipmap = OpenTK.Graphics.OpenGL4.Version43.ManualGenerateMipmap; - var _AutoGenerateMipmap = OpenTK.Graphics.OpenGL4.Version43.AutoGenerateMipmap; - var _ColorEncoding = OpenTK.Graphics.OpenGL4.Version43.ColorEncoding; - var _SrgbRead = OpenTK.Graphics.OpenGL4.Version43.SrgbRead; - var _SrgbWrite = OpenTK.Graphics.OpenGL4.Version43.SrgbWrite; - var _Filter = OpenTK.Graphics.OpenGL4.Version43.Filter; - var _VertexTexture = OpenTK.Graphics.OpenGL4.Version43.VertexTexture; - var _TessControlTexture = OpenTK.Graphics.OpenGL4.Version43.TessControlTexture; - var _TessEvaluationTexture = OpenTK.Graphics.OpenGL4.Version43.TessEvaluationTexture; - var _GeometryTexture = OpenTK.Graphics.OpenGL4.Version43.GeometryTexture; - var _FragmentTexture = OpenTK.Graphics.OpenGL4.Version43.FragmentTexture; - var _ComputeTexture = OpenTK.Graphics.OpenGL4.Version43.ComputeTexture; - var _TextureShadow = OpenTK.Graphics.OpenGL4.Version43.TextureShadow; - var _TextureGather = OpenTK.Graphics.OpenGL4.Version43.TextureGather; - var _TextureGatherShadow = OpenTK.Graphics.OpenGL4.Version43.TextureGatherShadow; - var _ShaderImageLoad = OpenTK.Graphics.OpenGL4.Version43.ShaderImageLoad; - var _ShaderImageStore = OpenTK.Graphics.OpenGL4.Version43.ShaderImageStore; - var _ShaderImageAtomic = OpenTK.Graphics.OpenGL4.Version43.ShaderImageAtomic; - var _ImageTexelSize = OpenTK.Graphics.OpenGL4.Version43.ImageTexelSize; - var _ImageCompatibilityClass = OpenTK.Graphics.OpenGL4.Version43.ImageCompatibilityClass; - var _ImagePixelFormat = OpenTK.Graphics.OpenGL4.Version43.ImagePixelFormat; - var _ImagePixelType = OpenTK.Graphics.OpenGL4.Version43.ImagePixelType; - var _SimultaneousTextureAndDepthTest = OpenTK.Graphics.OpenGL4.Version43.SimultaneousTextureAndDepthTest; - var _SimultaneousTextureAndStencilTest = OpenTK.Graphics.OpenGL4.Version43.SimultaneousTextureAndStencilTest; - var _SimultaneousTextureAndDepthWrite = OpenTK.Graphics.OpenGL4.Version43.SimultaneousTextureAndDepthWrite; - var _SimultaneousTextureAndStencilWrite = OpenTK.Graphics.OpenGL4.Version43.SimultaneousTextureAndStencilWrite; - var _TextureCompressedBlockWidth = OpenTK.Graphics.OpenGL4.Version43.TextureCompressedBlockWidth; - var _TextureCompressedBlockHeight = OpenTK.Graphics.OpenGL4.Version43.TextureCompressedBlockHeight; - var _TextureCompressedBlockSize = OpenTK.Graphics.OpenGL4.Version43.TextureCompressedBlockSize; - var _ClearBuffer = OpenTK.Graphics.OpenGL4.Version43.ClearBuffer; - var _TextureView = OpenTK.Graphics.OpenGL4.Version43.TextureView; - var _ViewCompatibilityClass = OpenTK.Graphics.OpenGL4.Version43.ViewCompatibilityClass; - var _FullSupport = OpenTK.Graphics.OpenGL4.Version43.FullSupport; - var _CaveatSupport = OpenTK.Graphics.OpenGL4.Version43.CaveatSupport; - var _ImageClass4X32 = OpenTK.Graphics.OpenGL4.Version43.ImageClass4X32; - var _ImageClass2X32 = OpenTK.Graphics.OpenGL4.Version43.ImageClass2X32; - var _ImageClass1X32 = OpenTK.Graphics.OpenGL4.Version43.ImageClass1X32; - var _ImageClass4X16 = OpenTK.Graphics.OpenGL4.Version43.ImageClass4X16; - var _ImageClass2X16 = OpenTK.Graphics.OpenGL4.Version43.ImageClass2X16; - var _ImageClass1X16 = OpenTK.Graphics.OpenGL4.Version43.ImageClass1X16; - var _ImageClass4X8 = OpenTK.Graphics.OpenGL4.Version43.ImageClass4X8; - var _ImageClass2X8 = OpenTK.Graphics.OpenGL4.Version43.ImageClass2X8; - var _ImageClass1X8 = OpenTK.Graphics.OpenGL4.Version43.ImageClass1X8; - var _ImageClass111110 = OpenTK.Graphics.OpenGL4.Version43.ImageClass111110; - var _ImageClass1010102 = OpenTK.Graphics.OpenGL4.Version43.ImageClass1010102; - var _ViewClass128Bits = OpenTK.Graphics.OpenGL4.Version43.ViewClass128Bits; - var _ViewClass96Bits = OpenTK.Graphics.OpenGL4.Version43.ViewClass96Bits; - var _ViewClass64Bits = OpenTK.Graphics.OpenGL4.Version43.ViewClass64Bits; - var _ViewClass48Bits = OpenTK.Graphics.OpenGL4.Version43.ViewClass48Bits; - var _ViewClass32Bits = OpenTK.Graphics.OpenGL4.Version43.ViewClass32Bits; - var _ViewClass24Bits = OpenTK.Graphics.OpenGL4.Version43.ViewClass24Bits; - var _ViewClass16Bits = OpenTK.Graphics.OpenGL4.Version43.ViewClass16Bits; - var _ViewClass8Bits = OpenTK.Graphics.OpenGL4.Version43.ViewClass8Bits; - var _ViewClassS3tcDxt1Rgb = OpenTK.Graphics.OpenGL4.Version43.ViewClassS3tcDxt1Rgb; - var _ViewClassS3tcDxt1Rgba = OpenTK.Graphics.OpenGL4.Version43.ViewClassS3tcDxt1Rgba; - var _ViewClassS3tcDxt3Rgba = OpenTK.Graphics.OpenGL4.Version43.ViewClassS3tcDxt3Rgba; - var _ViewClassS3tcDxt5Rgba = OpenTK.Graphics.OpenGL4.Version43.ViewClassS3tcDxt5Rgba; - var _ViewClassRgtc1Red = OpenTK.Graphics.OpenGL4.Version43.ViewClassRgtc1Red; - var _ViewClassRgtc2Rg = OpenTK.Graphics.OpenGL4.Version43.ViewClassRgtc2Rg; - var _ViewClassBptcUnorm = OpenTK.Graphics.OpenGL4.Version43.ViewClassBptcUnorm; - var _ViewClassBptcFloat = OpenTK.Graphics.OpenGL4.Version43.ViewClassBptcFloat; - var _VertexAttribBinding = OpenTK.Graphics.OpenGL4.Version43.VertexAttribBinding; - var _VertexAttribRelativeOffset = OpenTK.Graphics.OpenGL4.Version43.VertexAttribRelativeOffset; - var _VertexBindingDivisor = OpenTK.Graphics.OpenGL4.Version43.VertexBindingDivisor; - var _VertexBindingOffset = OpenTK.Graphics.OpenGL4.Version43.VertexBindingOffset; - var _VertexBindingStride = OpenTK.Graphics.OpenGL4.Version43.VertexBindingStride; - var _MaxVertexAttribRelativeOffset = OpenTK.Graphics.OpenGL4.Version43.MaxVertexAttribRelativeOffset; - var _MaxVertexAttribBindings = OpenTK.Graphics.OpenGL4.Version43.MaxVertexAttribBindings; - var _TextureViewMinLevel = OpenTK.Graphics.OpenGL4.Version43.TextureViewMinLevel; - var _TextureViewNumLevels = OpenTK.Graphics.OpenGL4.Version43.TextureViewNumLevels; - var _TextureViewMinLayer = OpenTK.Graphics.OpenGL4.Version43.TextureViewMinLayer; - var _TextureViewNumLayers = OpenTK.Graphics.OpenGL4.Version43.TextureViewNumLayers; - var _TextureImmutableLevels = OpenTK.Graphics.OpenGL4.Version43.TextureImmutableLevels; - var _Buffer = OpenTK.Graphics.OpenGL4.Version43.Buffer; - var _Shader = OpenTK.Graphics.OpenGL4.Version43.Shader; - var _Program = OpenTK.Graphics.OpenGL4.Version43.Program; - var _Query = OpenTK.Graphics.OpenGL4.Version43.Query; - var _ProgramPipeline = OpenTK.Graphics.OpenGL4.Version43.ProgramPipeline; - var _Sampler = OpenTK.Graphics.OpenGL4.Version43.Sampler; - var _DisplayList = OpenTK.Graphics.OpenGL4.Version43.DisplayList; - var _MaxLabelLength = OpenTK.Graphics.OpenGL4.Version43.MaxLabelLength; - var _NumShadingLanguageVersions = OpenTK.Graphics.OpenGL4.Version43.NumShadingLanguageVersions; - var _VertexAttribArrayLong = OpenTK.Graphics.OpenGL4.Version43.VertexAttribArrayLong; - var _PrimitiveRestartFixedIndex = OpenTK.Graphics.OpenGL4.Version43.PrimitiveRestartFixedIndex; - var _AnySamplesPassedConservative = OpenTK.Graphics.OpenGL4.Version43.AnySamplesPassedConservative; - var _MaxElementIndex = OpenTK.Graphics.OpenGL4.Version43.MaxElementIndex; - var _MaxCombinedShaderOutputResources = OpenTK.Graphics.OpenGL4.Version43.MaxCombinedShaderOutputResources; - var _VertexBindingBuffer = OpenTK.Graphics.OpenGL4.Version43.VertexBindingBuffer; - var _ShaderStorageBuffer = OpenTK.Graphics.OpenGL4.Version43.ShaderStorageBuffer; - var _ShaderStorageBufferBinding = OpenTK.Graphics.OpenGL4.Version43.ShaderStorageBufferBinding; - var _ShaderStorageBufferStart = OpenTK.Graphics.OpenGL4.Version43.ShaderStorageBufferStart; - var _ShaderStorageBufferSize = OpenTK.Graphics.OpenGL4.Version43.ShaderStorageBufferSize; - var _MaxVertexShaderStorageBlocks = OpenTK.Graphics.OpenGL4.Version43.MaxVertexShaderStorageBlocks; - var _MaxGeometryShaderStorageBlocks = OpenTK.Graphics.OpenGL4.Version43.MaxGeometryShaderStorageBlocks; - var _MaxTessControlShaderStorageBlocks = OpenTK.Graphics.OpenGL4.Version43.MaxTessControlShaderStorageBlocks; - var _MaxTessEvaluationShaderStorageBlocks = OpenTK.Graphics.OpenGL4.Version43.MaxTessEvaluationShaderStorageBlocks; - var _MaxFragmentShaderStorageBlocks = OpenTK.Graphics.OpenGL4.Version43.MaxFragmentShaderStorageBlocks; - var _MaxComputeShaderStorageBlocks = OpenTK.Graphics.OpenGL4.Version43.MaxComputeShaderStorageBlocks; - var _MaxCombinedShaderStorageBlocks = OpenTK.Graphics.OpenGL4.Version43.MaxCombinedShaderStorageBlocks; - var _MaxShaderStorageBufferBindings = OpenTK.Graphics.OpenGL4.Version43.MaxShaderStorageBufferBindings; - var _MaxShaderStorageBlockSize = OpenTK.Graphics.OpenGL4.Version43.MaxShaderStorageBlockSize; - var _ShaderStorageBufferOffsetAlignment = OpenTK.Graphics.OpenGL4.Version43.ShaderStorageBufferOffsetAlignment; - var _DepthStencilTextureMode = OpenTK.Graphics.OpenGL4.Version43.DepthStencilTextureMode; - var _MaxComputeWorkGroupInvocations = OpenTK.Graphics.OpenGL4.Version43.MaxComputeWorkGroupInvocations; - var _UniformBlockReferencedByComputeShader = OpenTK.Graphics.OpenGL4.Version43.UniformBlockReferencedByComputeShader; - var _AtomicCounterBufferReferencedByComputeShader = OpenTK.Graphics.OpenGL4.Version43.AtomicCounterBufferReferencedByComputeShader; - var _DispatchIndirectBuffer = OpenTK.Graphics.OpenGL4.Version43.DispatchIndirectBuffer; - var _DispatchIndirectBufferBinding = OpenTK.Graphics.OpenGL4.Version43.DispatchIndirectBufferBinding; - var _MaxDebugMessageLength = OpenTK.Graphics.OpenGL4.Version43.MaxDebugMessageLength; - var _MaxDebugLoggedMessages = OpenTK.Graphics.OpenGL4.Version43.MaxDebugLoggedMessages; - var _DebugLoggedMessages = OpenTK.Graphics.OpenGL4.Version43.DebugLoggedMessages; - var _DebugSeverityHigh = OpenTK.Graphics.OpenGL4.Version43.DebugSeverityHigh; - var _DebugSeverityMedium = OpenTK.Graphics.OpenGL4.Version43.DebugSeverityMedium; - var _DebugSeverityLow = OpenTK.Graphics.OpenGL4.Version43.DebugSeverityLow; - var _TextureBufferOffset = OpenTK.Graphics.OpenGL4.Version43.TextureBufferOffset; - var _TextureBufferSize = OpenTK.Graphics.OpenGL4.Version43.TextureBufferSize; - var _TextureBufferOffsetAlignment = OpenTK.Graphics.OpenGL4.Version43.TextureBufferOffsetAlignment; - var _ComputeShader = OpenTK.Graphics.OpenGL4.Version43.ComputeShader; - var _MaxComputeUniformBlocks = OpenTK.Graphics.OpenGL4.Version43.MaxComputeUniformBlocks; - var _MaxComputeTextureImageUnits = OpenTK.Graphics.OpenGL4.Version43.MaxComputeTextureImageUnits; - var _MaxComputeImageUniforms = OpenTK.Graphics.OpenGL4.Version43.MaxComputeImageUniforms; - var _MaxComputeWorkGroupCount = OpenTK.Graphics.OpenGL4.Version43.MaxComputeWorkGroupCount; - var _MaxComputeWorkGroupSize = OpenTK.Graphics.OpenGL4.Version43.MaxComputeWorkGroupSize; - var _CompressedR11Eac = OpenTK.Graphics.OpenGL4.Version43.CompressedR11Eac; - var _CompressedSignedR11Eac = OpenTK.Graphics.OpenGL4.Version43.CompressedSignedR11Eac; - var _CompressedRg11Eac = OpenTK.Graphics.OpenGL4.Version43.CompressedRg11Eac; - var _CompressedSignedRg11Eac = OpenTK.Graphics.OpenGL4.Version43.CompressedSignedRg11Eac; - var _CompressedRgb8Etc2 = OpenTK.Graphics.OpenGL4.Version43.CompressedRgb8Etc2; - var _CompressedSrgb8Etc2 = OpenTK.Graphics.OpenGL4.Version43.CompressedSrgb8Etc2; - var _CompressedRgb8PunchthroughAlpha1Etc2 = OpenTK.Graphics.OpenGL4.Version43.CompressedRgb8PunchthroughAlpha1Etc2; - var _CompressedSrgb8PunchthroughAlpha1Etc2 = OpenTK.Graphics.OpenGL4.Version43.CompressedSrgb8PunchthroughAlpha1Etc2; - var _CompressedRgba8Etc2Eac = OpenTK.Graphics.OpenGL4.Version43.CompressedRgba8Etc2Eac; - var _CompressedSrgb8Alpha8Etc2Eac = OpenTK.Graphics.OpenGL4.Version43.CompressedSrgb8Alpha8Etc2Eac; - var _DebugOutput = OpenTK.Graphics.OpenGL4.Version43.DebugOutput; - var _Uniform = OpenTK.Graphics.OpenGL4.Version43.Uniform; - var _UniformBlock = OpenTK.Graphics.OpenGL4.Version43.UniformBlock; - var _ProgramInput = OpenTK.Graphics.OpenGL4.Version43.ProgramInput; - var _ProgramOutput = OpenTK.Graphics.OpenGL4.Version43.ProgramOutput; - var _BufferVariable = OpenTK.Graphics.OpenGL4.Version43.BufferVariable; - var _ShaderStorageBlock = OpenTK.Graphics.OpenGL4.Version43.ShaderStorageBlock; - var _IsPerPatch = OpenTK.Graphics.OpenGL4.Version43.IsPerPatch; - var _VertexSubroutine = OpenTK.Graphics.OpenGL4.Version43.VertexSubroutine; - var _TessControlSubroutine = OpenTK.Graphics.OpenGL4.Version43.TessControlSubroutine; - var _TessEvaluationSubroutine = OpenTK.Graphics.OpenGL4.Version43.TessEvaluationSubroutine; - var _GeometrySubroutine = OpenTK.Graphics.OpenGL4.Version43.GeometrySubroutine; - var _FragmentSubroutine = OpenTK.Graphics.OpenGL4.Version43.FragmentSubroutine; - var _ComputeSubroutine = OpenTK.Graphics.OpenGL4.Version43.ComputeSubroutine; - var _VertexSubroutineUniform = OpenTK.Graphics.OpenGL4.Version43.VertexSubroutineUniform; - var _TessControlSubroutineUniform = OpenTK.Graphics.OpenGL4.Version43.TessControlSubroutineUniform; - var _TessEvaluationSubroutineUniform = OpenTK.Graphics.OpenGL4.Version43.TessEvaluationSubroutineUniform; - var _GeometrySubroutineUniform = OpenTK.Graphics.OpenGL4.Version43.GeometrySubroutineUniform; - var _FragmentSubroutineUniform = OpenTK.Graphics.OpenGL4.Version43.FragmentSubroutineUniform; - var _ComputeSubroutineUniform = OpenTK.Graphics.OpenGL4.Version43.ComputeSubroutineUniform; - var _TransformFeedbackVarying = OpenTK.Graphics.OpenGL4.Version43.TransformFeedbackVarying; - var _ActiveResources = OpenTK.Graphics.OpenGL4.Version43.ActiveResources; - var _MaxNameLength = OpenTK.Graphics.OpenGL4.Version43.MaxNameLength; - var _MaxNumActiveVariables = OpenTK.Graphics.OpenGL4.Version43.MaxNumActiveVariables; - var _MaxNumCompatibleSubroutines = OpenTK.Graphics.OpenGL4.Version43.MaxNumCompatibleSubroutines; - var _NameLength = OpenTK.Graphics.OpenGL4.Version43.NameLength; - var _Type = OpenTK.Graphics.OpenGL4.Version43.Type; - var _ArraySize = OpenTK.Graphics.OpenGL4.Version43.ArraySize; - var _Offset = OpenTK.Graphics.OpenGL4.Version43.Offset; - var _BlockIndex = OpenTK.Graphics.OpenGL4.Version43.BlockIndex; - var _ArrayStride = OpenTK.Graphics.OpenGL4.Version43.ArrayStride; - var _MatrixStride = OpenTK.Graphics.OpenGL4.Version43.MatrixStride; - var _IsRowMajor = OpenTK.Graphics.OpenGL4.Version43.IsRowMajor; - var _AtomicCounterBufferIndex = OpenTK.Graphics.OpenGL4.Version43.AtomicCounterBufferIndex; - var _BufferBinding = OpenTK.Graphics.OpenGL4.Version43.BufferBinding; - var _BufferDataSize = OpenTK.Graphics.OpenGL4.Version43.BufferDataSize; - var _NumActiveVariables = OpenTK.Graphics.OpenGL4.Version43.NumActiveVariables; - var _ActiveVariables = OpenTK.Graphics.OpenGL4.Version43.ActiveVariables; - var _ReferencedByVertexShader = OpenTK.Graphics.OpenGL4.Version43.ReferencedByVertexShader; - var _ReferencedByTessControlShader = OpenTK.Graphics.OpenGL4.Version43.ReferencedByTessControlShader; - var _ReferencedByTessEvaluationShader = OpenTK.Graphics.OpenGL4.Version43.ReferencedByTessEvaluationShader; - var _ReferencedByGeometryShader = OpenTK.Graphics.OpenGL4.Version43.ReferencedByGeometryShader; - var _ReferencedByFragmentShader = OpenTK.Graphics.OpenGL4.Version43.ReferencedByFragmentShader; - var _ReferencedByComputeShader = OpenTK.Graphics.OpenGL4.Version43.ReferencedByComputeShader; - var _TopLevelArraySize = OpenTK.Graphics.OpenGL4.Version43.TopLevelArraySize; - var _TopLevelArrayStride = OpenTK.Graphics.OpenGL4.Version43.TopLevelArrayStride; - var _Location = OpenTK.Graphics.OpenGL4.Version43.Location; - var _LocationIndex = OpenTK.Graphics.OpenGL4.Version43.LocationIndex; - var _FramebufferDefaultWidth = OpenTK.Graphics.OpenGL4.Version43.FramebufferDefaultWidth; - var _FramebufferDefaultHeight = OpenTK.Graphics.OpenGL4.Version43.FramebufferDefaultHeight; - var _FramebufferDefaultLayers = OpenTK.Graphics.OpenGL4.Version43.FramebufferDefaultLayers; - var _FramebufferDefaultSamples = OpenTK.Graphics.OpenGL4.Version43.FramebufferDefaultSamples; - var _FramebufferDefaultFixedSampleLocations = OpenTK.Graphics.OpenGL4.Version43.FramebufferDefaultFixedSampleLocations; - var _MaxFramebufferWidth = OpenTK.Graphics.OpenGL4.Version43.MaxFramebufferWidth; - var _MaxFramebufferHeight = OpenTK.Graphics.OpenGL4.Version43.MaxFramebufferHeight; - var _MaxFramebufferLayers = OpenTK.Graphics.OpenGL4.Version43.MaxFramebufferLayers; - var _MaxFramebufferSamples = OpenTK.Graphics.OpenGL4.Version43.MaxFramebufferSamples; -} -static void Test_Version44_37718() { - var _ClientMappedBufferBarrierBit = OpenTK.Graphics.OpenGL4.Version44.ClientMappedBufferBarrierBit; - var _QueryBufferBarrierBit = OpenTK.Graphics.OpenGL4.Version44.QueryBufferBarrierBit; - var _MapReadBit = OpenTK.Graphics.OpenGL4.Version44.MapReadBit; - var _MapWriteBit = OpenTK.Graphics.OpenGL4.Version44.MapWriteBit; - var _MapPersistentBit = OpenTK.Graphics.OpenGL4.Version44.MapPersistentBit; - var _MapCoherentBit = OpenTK.Graphics.OpenGL4.Version44.MapCoherentBit; - var _DynamicStorageBit = OpenTK.Graphics.OpenGL4.Version44.DynamicStorageBit; - var _ClientStorageBit = OpenTK.Graphics.OpenGL4.Version44.ClientStorageBit; - var _StencilIndex = OpenTK.Graphics.OpenGL4.Version44.StencilIndex; - var _BufferImmutableStorage = OpenTK.Graphics.OpenGL4.Version44.BufferImmutableStorage; - var _BufferStorageFlags = OpenTK.Graphics.OpenGL4.Version44.BufferStorageFlags; - var _PrimitiveRestartForPatchesSupported = OpenTK.Graphics.OpenGL4.Version44.PrimitiveRestartForPatchesSupported; - var _MaxVertexAttribStride = OpenTK.Graphics.OpenGL4.Version44.MaxVertexAttribStride; - var _MirrorClampToEdge = OpenTK.Graphics.OpenGL4.Version44.MirrorClampToEdge; - var _TextureBufferBinding = OpenTK.Graphics.OpenGL4.Version44.TextureBufferBinding; - var _UnsignedInt10F11F11FRev = OpenTK.Graphics.OpenGL4.Version44.UnsignedInt10F11F11FRev; - var _TransformFeedbackBuffer = OpenTK.Graphics.OpenGL4.Version44.TransformFeedbackBuffer; - var _StencilIndex8 = OpenTK.Graphics.OpenGL4.Version44.StencilIndex8; - var _QueryBuffer = OpenTK.Graphics.OpenGL4.Version44.QueryBuffer; - var _QueryBufferBinding = OpenTK.Graphics.OpenGL4.Version44.QueryBufferBinding; - var _QueryResultNoWait = OpenTK.Graphics.OpenGL4.Version44.QueryResultNoWait; - var _LocationComponent = OpenTK.Graphics.OpenGL4.Version44.LocationComponent; - var _TransformFeedbackBufferIndex = OpenTK.Graphics.OpenGL4.Version44.TransformFeedbackBufferIndex; - var _TransformFeedbackBufferStride = OpenTK.Graphics.OpenGL4.Version44.TransformFeedbackBufferStride; - var _ClearTexture = OpenTK.Graphics.OpenGL4.Version44.ClearTexture; -} -static void Test_VertexAttribDoubleType_37719() { - var _Double = OpenTK.Graphics.OpenGL4.VertexAttribDoubleType.Double; -} -static void Test_VertexAttribDPointerType_37720() { - var _Double = OpenTK.Graphics.OpenGL4.VertexAttribDPointerType.Double; -} -static void Test_VertexAttribIntegerType_37721() { - var _Byte = OpenTK.Graphics.OpenGL4.VertexAttribIntegerType.Byte; - var _UnsignedByte = OpenTK.Graphics.OpenGL4.VertexAttribIntegerType.UnsignedByte; - var _Short = OpenTK.Graphics.OpenGL4.VertexAttribIntegerType.Short; - var _UnsignedShort = OpenTK.Graphics.OpenGL4.VertexAttribIntegerType.UnsignedShort; - var _Int = OpenTK.Graphics.OpenGL4.VertexAttribIntegerType.Int; - var _UnsignedInt = OpenTK.Graphics.OpenGL4.VertexAttribIntegerType.UnsignedInt; -} -static void Test_VertexAttribIPointerType_37722() { - var _Byte = OpenTK.Graphics.OpenGL4.VertexAttribIPointerType.Byte; - var _UnsignedByte = OpenTK.Graphics.OpenGL4.VertexAttribIPointerType.UnsignedByte; - var _Short = OpenTK.Graphics.OpenGL4.VertexAttribIPointerType.Short; - var _UnsignedShort = OpenTK.Graphics.OpenGL4.VertexAttribIPointerType.UnsignedShort; - var _Int = OpenTK.Graphics.OpenGL4.VertexAttribIPointerType.Int; - var _UnsignedInt = OpenTK.Graphics.OpenGL4.VertexAttribIPointerType.UnsignedInt; -} -static void Test_VertexAttribParameter_37723() { - var _ArrayEnabled = OpenTK.Graphics.OpenGL4.VertexAttribParameter.ArrayEnabled; - var _ArraySize = OpenTK.Graphics.OpenGL4.VertexAttribParameter.ArraySize; - var _ArrayStride = OpenTK.Graphics.OpenGL4.VertexAttribParameter.ArrayStride; - var _ArrayType = OpenTK.Graphics.OpenGL4.VertexAttribParameter.ArrayType; - var _CurrentVertexAttrib = OpenTK.Graphics.OpenGL4.VertexAttribParameter.CurrentVertexAttrib; - var _ArrayNormalized = OpenTK.Graphics.OpenGL4.VertexAttribParameter.ArrayNormalized; - var _VertexAttribArrayInteger = OpenTK.Graphics.OpenGL4.VertexAttribParameter.VertexAttribArrayInteger; - var _VertexAttribArrayDivisor = OpenTK.Graphics.OpenGL4.VertexAttribParameter.VertexAttribArrayDivisor; -} -static void Test_VertexAttribParameterArb_37724() { - var _ArrayEnabled = OpenTK.Graphics.OpenGL4.VertexAttribParameterArb.ArrayEnabled; - var _ArraySize = OpenTK.Graphics.OpenGL4.VertexAttribParameterArb.ArraySize; - var _ArrayStride = OpenTK.Graphics.OpenGL4.VertexAttribParameterArb.ArrayStride; - var _ArrayType = OpenTK.Graphics.OpenGL4.VertexAttribParameterArb.ArrayType; - var _CurrentVertexAttrib = OpenTK.Graphics.OpenGL4.VertexAttribParameterArb.CurrentVertexAttrib; - var _ArrayNormalized = OpenTK.Graphics.OpenGL4.VertexAttribParameterArb.ArrayNormalized; - var _ArrayDivisor = OpenTK.Graphics.OpenGL4.VertexAttribParameterArb.ArrayDivisor; -} -static void Test_VertexAttribPointerParameter_37725() { - var _ArrayPointer = OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter.ArrayPointer; -} -static void Test_VertexAttribPointerParameterArb_37726() { - var _ArrayPointer = OpenTK.Graphics.OpenGL4.VertexAttribPointerParameterArb.ArrayPointer; -} -static void Test_VertexAttribPointerType_37727() { - var _Byte = OpenTK.Graphics.OpenGL4.VertexAttribPointerType.Byte; - var _UnsignedByte = OpenTK.Graphics.OpenGL4.VertexAttribPointerType.UnsignedByte; - var _Short = OpenTK.Graphics.OpenGL4.VertexAttribPointerType.Short; - var _UnsignedShort = OpenTK.Graphics.OpenGL4.VertexAttribPointerType.UnsignedShort; - var _Int = OpenTK.Graphics.OpenGL4.VertexAttribPointerType.Int; - var _UnsignedInt = OpenTK.Graphics.OpenGL4.VertexAttribPointerType.UnsignedInt; - var _Float = OpenTK.Graphics.OpenGL4.VertexAttribPointerType.Float; - var _Double = OpenTK.Graphics.OpenGL4.VertexAttribPointerType.Double; - var _HalfFloat = OpenTK.Graphics.OpenGL4.VertexAttribPointerType.HalfFloat; - var _Fixed = OpenTK.Graphics.OpenGL4.VertexAttribPointerType.Fixed; - var _UnsignedInt2101010Rev = OpenTK.Graphics.OpenGL4.VertexAttribPointerType.UnsignedInt2101010Rev; - var _Int2101010Rev = OpenTK.Graphics.OpenGL4.VertexAttribPointerType.Int2101010Rev; -} -static void Test_VertexAttribPointerTypeArb_37728() { - var _Byte = OpenTK.Graphics.OpenGL4.VertexAttribPointerTypeArb.Byte; - var _UnsignedByte = OpenTK.Graphics.OpenGL4.VertexAttribPointerTypeArb.UnsignedByte; - var _Short = OpenTK.Graphics.OpenGL4.VertexAttribPointerTypeArb.Short; - var _UnsignedShort = OpenTK.Graphics.OpenGL4.VertexAttribPointerTypeArb.UnsignedShort; - var _Int = OpenTK.Graphics.OpenGL4.VertexAttribPointerTypeArb.Int; - var _UnsignedInt = OpenTK.Graphics.OpenGL4.VertexAttribPointerTypeArb.UnsignedInt; - var _Float = OpenTK.Graphics.OpenGL4.VertexAttribPointerTypeArb.Float; - var _Double = OpenTK.Graphics.OpenGL4.VertexAttribPointerTypeArb.Double; -} -static void Test_VertexAttribType_37729() { - var _Byte = OpenTK.Graphics.OpenGL4.VertexAttribType.Byte; - var _UnsignedByte = OpenTK.Graphics.OpenGL4.VertexAttribType.UnsignedByte; - var _Short = OpenTK.Graphics.OpenGL4.VertexAttribType.Short; - var _UnsignedShort = OpenTK.Graphics.OpenGL4.VertexAttribType.UnsignedShort; - var _Int = OpenTK.Graphics.OpenGL4.VertexAttribType.Int; - var _UnsignedInt = OpenTK.Graphics.OpenGL4.VertexAttribType.UnsignedInt; - var _Float = OpenTK.Graphics.OpenGL4.VertexAttribType.Float; - var _Double = OpenTK.Graphics.OpenGL4.VertexAttribType.Double; - var _HalfFloat = OpenTK.Graphics.OpenGL4.VertexAttribType.HalfFloat; - var _Fixed = OpenTK.Graphics.OpenGL4.VertexAttribType.Fixed; - var _UnsignedInt2101010Rev = OpenTK.Graphics.OpenGL4.VertexAttribType.UnsignedInt2101010Rev; - var _Int2101010Rev = OpenTK.Graphics.OpenGL4.VertexAttribType.Int2101010Rev; -} -static void Test_VertexPointerType_37730() { - var _Short = OpenTK.Graphics.OpenGL4.VertexPointerType.Short; - var _Int = OpenTK.Graphics.OpenGL4.VertexPointerType.Int; - var _Float = OpenTK.Graphics.OpenGL4.VertexPointerType.Float; - var _Double = OpenTK.Graphics.OpenGL4.VertexPointerType.Double; - var _HalfFloat = OpenTK.Graphics.OpenGL4.VertexPointerType.HalfFloat; - var _UnsignedInt2101010Rev = OpenTK.Graphics.OpenGL4.VertexPointerType.UnsignedInt2101010Rev; - var _Int2101010Rev = OpenTK.Graphics.OpenGL4.VertexPointerType.Int2101010Rev; -} -static void Test_WaitSyncFlags_37731() { - var _None = OpenTK.Graphics.OpenGL4.WaitSyncFlags.None; -} -static void Test_WaitSyncStatus_37732() { - var _AlreadySignaled = OpenTK.Graphics.OpenGL4.WaitSyncStatus.AlreadySignaled; - var _TimeoutExpired = OpenTK.Graphics.OpenGL4.WaitSyncStatus.TimeoutExpired; - var _ConditionSatisfied = OpenTK.Graphics.OpenGL4.WaitSyncStatus.ConditionSatisfied; - var _WaitFailed = OpenTK.Graphics.OpenGL4.WaitSyncStatus.WaitFailed; -} -static void Test_AccumOp_37733() { - var _Accum = OpenTK.Graphics.ES30.AccumOp.Accum; - var _Load = OpenTK.Graphics.ES30.AccumOp.Load; - var _Return = OpenTK.Graphics.ES30.AccumOp.Return; - var _Mult = OpenTK.Graphics.ES30.AccumOp.Mult; - var _Add = OpenTK.Graphics.ES30.AccumOp.Add; -} -static void Test_ActiveAttribType_37734() { - var _Int = OpenTK.Graphics.ES30.ActiveAttribType.Int; - var _UnsignedInt = OpenTK.Graphics.ES30.ActiveAttribType.UnsignedInt; - var _Float = OpenTK.Graphics.ES30.ActiveAttribType.Float; - var _FloatVec2 = OpenTK.Graphics.ES30.ActiveAttribType.FloatVec2; - var _FloatVec3 = OpenTK.Graphics.ES30.ActiveAttribType.FloatVec3; - var _FloatVec4 = OpenTK.Graphics.ES30.ActiveAttribType.FloatVec4; - var _IntVec2 = OpenTK.Graphics.ES30.ActiveAttribType.IntVec2; - var _IntVec3 = OpenTK.Graphics.ES30.ActiveAttribType.IntVec3; - var _IntVec4 = OpenTK.Graphics.ES30.ActiveAttribType.IntVec4; - var _FloatMat2 = OpenTK.Graphics.ES30.ActiveAttribType.FloatMat2; - var _FloatMat3 = OpenTK.Graphics.ES30.ActiveAttribType.FloatMat3; - var _FloatMat4 = OpenTK.Graphics.ES30.ActiveAttribType.FloatMat4; - var _FloatMat2x3 = OpenTK.Graphics.ES30.ActiveAttribType.FloatMat2x3; - var _FloatMat2x4 = OpenTK.Graphics.ES30.ActiveAttribType.FloatMat2x4; - var _FloatMat3x2 = OpenTK.Graphics.ES30.ActiveAttribType.FloatMat3x2; - var _FloatMat3x4 = OpenTK.Graphics.ES30.ActiveAttribType.FloatMat3x4; - var _FloatMat4x2 = OpenTK.Graphics.ES30.ActiveAttribType.FloatMat4x2; - var _FloatMat4x3 = OpenTK.Graphics.ES30.ActiveAttribType.FloatMat4x3; - var _UnsignedIntVec2 = OpenTK.Graphics.ES30.ActiveAttribType.UnsignedIntVec2; - var _UnsignedIntVec3 = OpenTK.Graphics.ES30.ActiveAttribType.UnsignedIntVec3; - var _UnsignedIntVec4 = OpenTK.Graphics.ES30.ActiveAttribType.UnsignedIntVec4; -} -static void Test_ActiveUniformBlockParameter_37735() { - var _UniformBlockBinding = OpenTK.Graphics.ES30.ActiveUniformBlockParameter.UniformBlockBinding; - var _UniformBlockDataSize = OpenTK.Graphics.ES30.ActiveUniformBlockParameter.UniformBlockDataSize; - var _UniformBlockNameLength = OpenTK.Graphics.ES30.ActiveUniformBlockParameter.UniformBlockNameLength; - var _UniformBlockActiveUniforms = OpenTK.Graphics.ES30.ActiveUniformBlockParameter.UniformBlockActiveUniforms; - var _UniformBlockActiveUniformIndices = OpenTK.Graphics.ES30.ActiveUniformBlockParameter.UniformBlockActiveUniformIndices; - var _UniformBlockReferencedByVertexShader = OpenTK.Graphics.ES30.ActiveUniformBlockParameter.UniformBlockReferencedByVertexShader; - var _UniformBlockReferencedByFragmentShader = OpenTK.Graphics.ES30.ActiveUniformBlockParameter.UniformBlockReferencedByFragmentShader; -} -static void Test_ActiveUniformParameter_37736() { - var _UniformType = OpenTK.Graphics.ES30.ActiveUniformParameter.UniformType; - var _UniformSize = OpenTK.Graphics.ES30.ActiveUniformParameter.UniformSize; - var _UniformNameLength = OpenTK.Graphics.ES30.ActiveUniformParameter.UniformNameLength; - var _UniformBlockIndex = OpenTK.Graphics.ES30.ActiveUniformParameter.UniformBlockIndex; - var _UniformOffset = OpenTK.Graphics.ES30.ActiveUniformParameter.UniformOffset; - var _UniformArrayStride = OpenTK.Graphics.ES30.ActiveUniformParameter.UniformArrayStride; - var _UniformMatrixStride = OpenTK.Graphics.ES30.ActiveUniformParameter.UniformMatrixStride; - var _UniformIsRowMajor = OpenTK.Graphics.ES30.ActiveUniformParameter.UniformIsRowMajor; -} -static void Test_ActiveUniformType_37737() { - var _Int = OpenTK.Graphics.ES30.ActiveUniformType.Int; - var _UnsignedInt = OpenTK.Graphics.ES30.ActiveUniformType.UnsignedInt; - var _Float = OpenTK.Graphics.ES30.ActiveUniformType.Float; - var _FloatVec2 = OpenTK.Graphics.ES30.ActiveUniformType.FloatVec2; - var _FloatVec3 = OpenTK.Graphics.ES30.ActiveUniformType.FloatVec3; - var _FloatVec4 = OpenTK.Graphics.ES30.ActiveUniformType.FloatVec4; - var _IntVec2 = OpenTK.Graphics.ES30.ActiveUniformType.IntVec2; - var _IntVec3 = OpenTK.Graphics.ES30.ActiveUniformType.IntVec3; - var _IntVec4 = OpenTK.Graphics.ES30.ActiveUniformType.IntVec4; - var _Bool = OpenTK.Graphics.ES30.ActiveUniformType.Bool; - var _BoolVec2 = OpenTK.Graphics.ES30.ActiveUniformType.BoolVec2; - var _BoolVec3 = OpenTK.Graphics.ES30.ActiveUniformType.BoolVec3; - var _BoolVec4 = OpenTK.Graphics.ES30.ActiveUniformType.BoolVec4; - var _FloatMat2 = OpenTK.Graphics.ES30.ActiveUniformType.FloatMat2; - var _FloatMat3 = OpenTK.Graphics.ES30.ActiveUniformType.FloatMat3; - var _FloatMat4 = OpenTK.Graphics.ES30.ActiveUniformType.FloatMat4; - var _Sampler2D = OpenTK.Graphics.ES30.ActiveUniformType.Sampler2D; - var _Sampler3D = OpenTK.Graphics.ES30.ActiveUniformType.Sampler3D; - var _SamplerCube = OpenTK.Graphics.ES30.ActiveUniformType.SamplerCube; - var _Sampler2DShadow = OpenTK.Graphics.ES30.ActiveUniformType.Sampler2DShadow; - var _FloatMat2x3 = OpenTK.Graphics.ES30.ActiveUniformType.FloatMat2x3; - var _FloatMat2x4 = OpenTK.Graphics.ES30.ActiveUniformType.FloatMat2x4; - var _FloatMat3x4 = OpenTK.Graphics.ES30.ActiveUniformType.FloatMat3x4; - var _FloatMat4x2 = OpenTK.Graphics.ES30.ActiveUniformType.FloatMat4x2; - var _FloatMat4x3 = OpenTK.Graphics.ES30.ActiveUniformType.FloatMat4x3; - var _Sampler2DArray = OpenTK.Graphics.ES30.ActiveUniformType.Sampler2DArray; - var _Sampler2DArrayShadow = OpenTK.Graphics.ES30.ActiveUniformType.Sampler2DArrayShadow; - var _SamplerCubeShadow = OpenTK.Graphics.ES30.ActiveUniformType.SamplerCubeShadow; - var _UnsignedIntVec2 = OpenTK.Graphics.ES30.ActiveUniformType.UnsignedIntVec2; - var _UnsignedIntVec3 = OpenTK.Graphics.ES30.ActiveUniformType.UnsignedIntVec3; - var _UnsignedIntVec4 = OpenTK.Graphics.ES30.ActiveUniformType.UnsignedIntVec4; - var _IntSampler2D = OpenTK.Graphics.ES30.ActiveUniformType.IntSampler2D; - var _IntSampler3D = OpenTK.Graphics.ES30.ActiveUniformType.IntSampler3D; - var _IntSamplerCube = OpenTK.Graphics.ES30.ActiveUniformType.IntSamplerCube; - var _IntSampler2DArray = OpenTK.Graphics.ES30.ActiveUniformType.IntSampler2DArray; - var _UnsignedIntSampler2D = OpenTK.Graphics.ES30.ActiveUniformType.UnsignedIntSampler2D; - var _UnsignedIntSampler3D = OpenTK.Graphics.ES30.ActiveUniformType.UnsignedIntSampler3D; - var _UnsignedIntSamplerCube = OpenTK.Graphics.ES30.ActiveUniformType.UnsignedIntSamplerCube; - var _UnsignedIntSampler2DArray = OpenTK.Graphics.ES30.ActiveUniformType.UnsignedIntSampler2DArray; -} -static void Test_All_37738() { - var _False = OpenTK.Graphics.ES30.All.False; - var _LayoutDefaultIntel = OpenTK.Graphics.ES30.All.LayoutDefaultIntel; - var _NoError = OpenTK.Graphics.ES30.All.NoError; - var _None = OpenTK.Graphics.ES30.All.None; - var _NoneOes = OpenTK.Graphics.ES30.All.NoneOes; - var _Zero = OpenTK.Graphics.ES30.All.Zero; - var _Points = OpenTK.Graphics.ES30.All.Points; - var _PerfquerySingleContextIntel = OpenTK.Graphics.ES30.All.PerfquerySingleContextIntel; - var _ClientPixelStoreBit = OpenTK.Graphics.ES30.All.ClientPixelStoreBit; - var _ColorBufferBit0Qcom = OpenTK.Graphics.ES30.All.ColorBufferBit0Qcom; - var _ContextCoreProfileBit = OpenTK.Graphics.ES30.All.ContextCoreProfileBit; - var _ContextFlagForwardCompatibleBit = OpenTK.Graphics.ES30.All.ContextFlagForwardCompatibleBit; - var _CurrentBit = OpenTK.Graphics.ES30.All.CurrentBit; - var _PerfqueryGlobalContextIntel = OpenTK.Graphics.ES30.All.PerfqueryGlobalContextIntel; - var _QueryDepthPassEventBitAmd = OpenTK.Graphics.ES30.All.QueryDepthPassEventBitAmd; - var _SyncFlushCommandsBit = OpenTK.Graphics.ES30.All.SyncFlushCommandsBit; - var _SyncFlushCommandsBitApple = OpenTK.Graphics.ES30.All.SyncFlushCommandsBitApple; - var _VertexAttribArrayBarrierBit = OpenTK.Graphics.ES30.All.VertexAttribArrayBarrierBit; - var _VertexAttribArrayBarrierBitExt = OpenTK.Graphics.ES30.All.VertexAttribArrayBarrierBitExt; - var _VertexShaderBit = OpenTK.Graphics.ES30.All.VertexShaderBit; - var _VertexShaderBitExt = OpenTK.Graphics.ES30.All.VertexShaderBitExt; - var _ClientVertexArrayBit = OpenTK.Graphics.ES30.All.ClientVertexArrayBit; - var _ColorBufferBit1Qcom = OpenTK.Graphics.ES30.All.ColorBufferBit1Qcom; - var _ContextCompatibilityProfileBit = OpenTK.Graphics.ES30.All.ContextCompatibilityProfileBit; - var _ContextFlagDebugBit = OpenTK.Graphics.ES30.All.ContextFlagDebugBit; - var _ContextFlagDebugBitKhr = OpenTK.Graphics.ES30.All.ContextFlagDebugBitKhr; - var _ElementArrayBarrierBit = OpenTK.Graphics.ES30.All.ElementArrayBarrierBit; - var _ElementArrayBarrierBitExt = OpenTK.Graphics.ES30.All.ElementArrayBarrierBitExt; - var _FragmentShaderBit = OpenTK.Graphics.ES30.All.FragmentShaderBit; - var _FragmentShaderBitExt = OpenTK.Graphics.ES30.All.FragmentShaderBitExt; - var _PointBit = OpenTK.Graphics.ES30.All.PointBit; - var _QueryDepthFailEventBitAmd = OpenTK.Graphics.ES30.All.QueryDepthFailEventBitAmd; - var _ColorBufferBit2Qcom = OpenTK.Graphics.ES30.All.ColorBufferBit2Qcom; - var _ContextFlagRobustAccessBitArb = OpenTK.Graphics.ES30.All.ContextFlagRobustAccessBitArb; - var _GeometryShaderBit = OpenTK.Graphics.ES30.All.GeometryShaderBit; - var _GeometryShaderBitExt = OpenTK.Graphics.ES30.All.GeometryShaderBitExt; - var _LineBit = OpenTK.Graphics.ES30.All.LineBit; - var _QueryStencilFailEventBitAmd = OpenTK.Graphics.ES30.All.QueryStencilFailEventBitAmd; - var _UniformBarrierBit = OpenTK.Graphics.ES30.All.UniformBarrierBit; - var _UniformBarrierBitExt = OpenTK.Graphics.ES30.All.UniformBarrierBitExt; - var _ColorBufferBit3Qcom = OpenTK.Graphics.ES30.All.ColorBufferBit3Qcom; - var _PolygonBit = OpenTK.Graphics.ES30.All.PolygonBit; - var _QueryDepthBoundsFailEventBitAmd = OpenTK.Graphics.ES30.All.QueryDepthBoundsFailEventBitAmd; - var _TessControlShaderBit = OpenTK.Graphics.ES30.All.TessControlShaderBit; - var _TessControlShaderBitExt = OpenTK.Graphics.ES30.All.TessControlShaderBitExt; - var _TextureFetchBarrierBit = OpenTK.Graphics.ES30.All.TextureFetchBarrierBit; - var _TextureFetchBarrierBitExt = OpenTK.Graphics.ES30.All.TextureFetchBarrierBitExt; - var _ColorBufferBit4Qcom = OpenTK.Graphics.ES30.All.ColorBufferBit4Qcom; - var _PolygonStippleBit = OpenTK.Graphics.ES30.All.PolygonStippleBit; - var _ShaderGlobalAccessBarrierBitNv = OpenTK.Graphics.ES30.All.ShaderGlobalAccessBarrierBitNv; - var _TessEvaluationShaderBit = OpenTK.Graphics.ES30.All.TessEvaluationShaderBit; - var _TessEvaluationShaderBitExt = OpenTK.Graphics.ES30.All.TessEvaluationShaderBitExt; - var _ColorBufferBit5Qcom = OpenTK.Graphics.ES30.All.ColorBufferBit5Qcom; - var _ComputeShaderBit = OpenTK.Graphics.ES30.All.ComputeShaderBit; - var _PixelModeBit = OpenTK.Graphics.ES30.All.PixelModeBit; - var _ShaderImageAccessBarrierBit = OpenTK.Graphics.ES30.All.ShaderImageAccessBarrierBit; - var _ShaderImageAccessBarrierBitExt = OpenTK.Graphics.ES30.All.ShaderImageAccessBarrierBitExt; - var _ColorBufferBit6Qcom = OpenTK.Graphics.ES30.All.ColorBufferBit6Qcom; - var _CommandBarrierBit = OpenTK.Graphics.ES30.All.CommandBarrierBit; - var _CommandBarrierBitExt = OpenTK.Graphics.ES30.All.CommandBarrierBitExt; - var _LightingBit = OpenTK.Graphics.ES30.All.LightingBit; - var _ColorBufferBit7Qcom = OpenTK.Graphics.ES30.All.ColorBufferBit7Qcom; - var _FogBit = OpenTK.Graphics.ES30.All.FogBit; - var _PixelBufferBarrierBit = OpenTK.Graphics.ES30.All.PixelBufferBarrierBit; - var _PixelBufferBarrierBitExt = OpenTK.Graphics.ES30.All.PixelBufferBarrierBitExt; - var _DepthBufferBit = OpenTK.Graphics.ES30.All.DepthBufferBit; - var _DepthBufferBit0Qcom = OpenTK.Graphics.ES30.All.DepthBufferBit0Qcom; - var _TextureUpdateBarrierBit = OpenTK.Graphics.ES30.All.TextureUpdateBarrierBit; - var _TextureUpdateBarrierBitExt = OpenTK.Graphics.ES30.All.TextureUpdateBarrierBitExt; - var _AccumBufferBit = OpenTK.Graphics.ES30.All.AccumBufferBit; - var _BufferUpdateBarrierBit = OpenTK.Graphics.ES30.All.BufferUpdateBarrierBit; - var _BufferUpdateBarrierBitExt = OpenTK.Graphics.ES30.All.BufferUpdateBarrierBitExt; - var _DepthBufferBit1Qcom = OpenTK.Graphics.ES30.All.DepthBufferBit1Qcom; - var _DepthBufferBit2Qcom = OpenTK.Graphics.ES30.All.DepthBufferBit2Qcom; - var _FramebufferBarrierBit = OpenTK.Graphics.ES30.All.FramebufferBarrierBit; - var _FramebufferBarrierBitExt = OpenTK.Graphics.ES30.All.FramebufferBarrierBitExt; - var _StencilBufferBit = OpenTK.Graphics.ES30.All.StencilBufferBit; - var _DepthBufferBit3Qcom = OpenTK.Graphics.ES30.All.DepthBufferBit3Qcom; - var _TransformFeedbackBarrierBit = OpenTK.Graphics.ES30.All.TransformFeedbackBarrierBit; - var _TransformFeedbackBarrierBitExt = OpenTK.Graphics.ES30.All.TransformFeedbackBarrierBitExt; - var _ViewportBit = OpenTK.Graphics.ES30.All.ViewportBit; - var _AtomicCounterBarrierBit = OpenTK.Graphics.ES30.All.AtomicCounterBarrierBit; - var _AtomicCounterBarrierBitExt = OpenTK.Graphics.ES30.All.AtomicCounterBarrierBitExt; - var _DepthBufferBit4Qcom = OpenTK.Graphics.ES30.All.DepthBufferBit4Qcom; - var _TransformBit = OpenTK.Graphics.ES30.All.TransformBit; - var _DepthBufferBit5Qcom = OpenTK.Graphics.ES30.All.DepthBufferBit5Qcom; - var _EnableBit = OpenTK.Graphics.ES30.All.EnableBit; - var _ShaderStorageBarrierBit = OpenTK.Graphics.ES30.All.ShaderStorageBarrierBit; - var _ClientMappedBufferBarrierBit = OpenTK.Graphics.ES30.All.ClientMappedBufferBarrierBit; - var _ColorBufferBit = OpenTK.Graphics.ES30.All.ColorBufferBit; - var _DepthBufferBit6Qcom = OpenTK.Graphics.ES30.All.DepthBufferBit6Qcom; - var _CoverageBufferBitNv = OpenTK.Graphics.ES30.All.CoverageBufferBitNv; - var _DepthBufferBit7Qcom = OpenTK.Graphics.ES30.All.DepthBufferBit7Qcom; - var _HintBit = OpenTK.Graphics.ES30.All.HintBit; - var _QueryBufferBarrierBit = OpenTK.Graphics.ES30.All.QueryBufferBarrierBit; - var _MapReadBit = OpenTK.Graphics.ES30.All.MapReadBit; - var _MapReadBitExt = OpenTK.Graphics.ES30.All.MapReadBitExt; - var _Lines = OpenTK.Graphics.ES30.All.Lines; - var _EvalBit = OpenTK.Graphics.ES30.All.EvalBit; - var _StencilBufferBit0Qcom = OpenTK.Graphics.ES30.All.StencilBufferBit0Qcom; - var _LineLoop = OpenTK.Graphics.ES30.All.LineLoop; - var _MapWriteBit = OpenTK.Graphics.ES30.All.MapWriteBit; - var _MapWriteBitExt = OpenTK.Graphics.ES30.All.MapWriteBitExt; - var _ListBit = OpenTK.Graphics.ES30.All.ListBit; - var _StencilBufferBit1Qcom = OpenTK.Graphics.ES30.All.StencilBufferBit1Qcom; - var _LineStrip = OpenTK.Graphics.ES30.All.LineStrip; - var _MapInvalidateRangeBit = OpenTK.Graphics.ES30.All.MapInvalidateRangeBit; - var _MapInvalidateRangeBitExt = OpenTK.Graphics.ES30.All.MapInvalidateRangeBitExt; - var _Triangles = OpenTK.Graphics.ES30.All.Triangles; - var _StencilBufferBit2Qcom = OpenTK.Graphics.ES30.All.StencilBufferBit2Qcom; - var _TextureBit = OpenTK.Graphics.ES30.All.TextureBit; - var _TriangleStrip = OpenTK.Graphics.ES30.All.TriangleStrip; - var _TriangleFan = OpenTK.Graphics.ES30.All.TriangleFan; - var _Quads = OpenTK.Graphics.ES30.All.Quads; - var _QuadsExt = OpenTK.Graphics.ES30.All.QuadsExt; - var _MapInvalidateBufferBit = OpenTK.Graphics.ES30.All.MapInvalidateBufferBit; - var _MapInvalidateBufferBitExt = OpenTK.Graphics.ES30.All.MapInvalidateBufferBitExt; - var _QuadStrip = OpenTK.Graphics.ES30.All.QuadStrip; - var _ScissorBit = OpenTK.Graphics.ES30.All.ScissorBit; - var _StencilBufferBit3Qcom = OpenTK.Graphics.ES30.All.StencilBufferBit3Qcom; - var _Polygon = OpenTK.Graphics.ES30.All.Polygon; - var _LinesAdjacency = OpenTK.Graphics.ES30.All.LinesAdjacency; - var _LinesAdjacencyArb = OpenTK.Graphics.ES30.All.LinesAdjacencyArb; - var _LinesAdjacencyExt = OpenTK.Graphics.ES30.All.LinesAdjacencyExt; - var _LineStripAdjacency = OpenTK.Graphics.ES30.All.LineStripAdjacency; - var _LineStripAdjacencyArb = OpenTK.Graphics.ES30.All.LineStripAdjacencyArb; - var _LineStripAdjacencyExt = OpenTK.Graphics.ES30.All.LineStripAdjacencyExt; - var _TrianglesAdjacency = OpenTK.Graphics.ES30.All.TrianglesAdjacency; - var _TrianglesAdjacencyArb = OpenTK.Graphics.ES30.All.TrianglesAdjacencyArb; - var _TrianglesAdjacencyExt = OpenTK.Graphics.ES30.All.TrianglesAdjacencyExt; - var _TriangleStripAdjacency = OpenTK.Graphics.ES30.All.TriangleStripAdjacency; - var _TriangleStripAdjacencyArb = OpenTK.Graphics.ES30.All.TriangleStripAdjacencyArb; - var _TriangleStripAdjacencyExt = OpenTK.Graphics.ES30.All.TriangleStripAdjacencyExt; - var _Patches = OpenTK.Graphics.ES30.All.Patches; - var _PatchesExt = OpenTK.Graphics.ES30.All.PatchesExt; - var _MapFlushExplicitBit = OpenTK.Graphics.ES30.All.MapFlushExplicitBit; - var _MapFlushExplicitBitExt = OpenTK.Graphics.ES30.All.MapFlushExplicitBitExt; - var _StencilBufferBit4Qcom = OpenTK.Graphics.ES30.All.StencilBufferBit4Qcom; - var _MapUnsynchronizedBit = OpenTK.Graphics.ES30.All.MapUnsynchronizedBit; - var _MapUnsynchronizedBitExt = OpenTK.Graphics.ES30.All.MapUnsynchronizedBitExt; - var _StencilBufferBit5Qcom = OpenTK.Graphics.ES30.All.StencilBufferBit5Qcom; - var _MapPersistentBit = OpenTK.Graphics.ES30.All.MapPersistentBit; - var _StencilBufferBit6Qcom = OpenTK.Graphics.ES30.All.StencilBufferBit6Qcom; - var _MapCoherentBit = OpenTK.Graphics.ES30.All.MapCoherentBit; - var _StencilBufferBit7Qcom = OpenTK.Graphics.ES30.All.StencilBufferBit7Qcom; - var _Accum = OpenTK.Graphics.ES30.All.Accum; - var _DynamicStorageBit = OpenTK.Graphics.ES30.All.DynamicStorageBit; - var _MultisampleBufferBit0Qcom = OpenTK.Graphics.ES30.All.MultisampleBufferBit0Qcom; - var _Load = OpenTK.Graphics.ES30.All.Load; - var _Return = OpenTK.Graphics.ES30.All.Return; - var _Mult = OpenTK.Graphics.ES30.All.Mult; - var _Add = OpenTK.Graphics.ES30.All.Add; - var _ClientStorageBit = OpenTK.Graphics.ES30.All.ClientStorageBit; - var _Never = OpenTK.Graphics.ES30.All.Never; - var _MultisampleBufferBit1Qcom = OpenTK.Graphics.ES30.All.MultisampleBufferBit1Qcom; - var _Less = OpenTK.Graphics.ES30.All.Less; - var _Equal = OpenTK.Graphics.ES30.All.Equal; - var _Lequal = OpenTK.Graphics.ES30.All.Lequal; - var _Greater = OpenTK.Graphics.ES30.All.Greater; - var _Notequal = OpenTK.Graphics.ES30.All.Notequal; - var _Gequal = OpenTK.Graphics.ES30.All.Gequal; - var _Always = OpenTK.Graphics.ES30.All.Always; - var _SrcColor = OpenTK.Graphics.ES30.All.SrcColor; - var _OneMinusSrcColor = OpenTK.Graphics.ES30.All.OneMinusSrcColor; - var _SrcAlpha = OpenTK.Graphics.ES30.All.SrcAlpha; - var _OneMinusSrcAlpha = OpenTK.Graphics.ES30.All.OneMinusSrcAlpha; - var _DstAlpha = OpenTK.Graphics.ES30.All.DstAlpha; - var _OneMinusDstAlpha = OpenTK.Graphics.ES30.All.OneMinusDstAlpha; - var _DstColor = OpenTK.Graphics.ES30.All.DstColor; - var _OneMinusDstColor = OpenTK.Graphics.ES30.All.OneMinusDstColor; - var _SrcAlphaSaturate = OpenTK.Graphics.ES30.All.SrcAlphaSaturate; - var _FrontLeft = OpenTK.Graphics.ES30.All.FrontLeft; - var _MultisampleBufferBit2Qcom = OpenTK.Graphics.ES30.All.MultisampleBufferBit2Qcom; - var _FrontRight = OpenTK.Graphics.ES30.All.FrontRight; - var _BackLeft = OpenTK.Graphics.ES30.All.BackLeft; - var _BackRight = OpenTK.Graphics.ES30.All.BackRight; - var _Front = OpenTK.Graphics.ES30.All.Front; - var _Back = OpenTK.Graphics.ES30.All.Back; - var _Left = OpenTK.Graphics.ES30.All.Left; - var _Right = OpenTK.Graphics.ES30.All.Right; - var _FrontAndBack = OpenTK.Graphics.ES30.All.FrontAndBack; - var _Aux0 = OpenTK.Graphics.ES30.All.Aux0; - var _Aux1 = OpenTK.Graphics.ES30.All.Aux1; - var _Aux2 = OpenTK.Graphics.ES30.All.Aux2; - var _Aux3 = OpenTK.Graphics.ES30.All.Aux3; - var _InvalidEnum = OpenTK.Graphics.ES30.All.InvalidEnum; - var _InvalidValue = OpenTK.Graphics.ES30.All.InvalidValue; - var _InvalidOperation = OpenTK.Graphics.ES30.All.InvalidOperation; - var _StackOverflow = OpenTK.Graphics.ES30.All.StackOverflow; - var _StackOverflowKhr = OpenTK.Graphics.ES30.All.StackOverflowKhr; - var _StackUnderflow = OpenTK.Graphics.ES30.All.StackUnderflow; - var _StackUnderflowKhr = OpenTK.Graphics.ES30.All.StackUnderflowKhr; - var _OutOfMemory = OpenTK.Graphics.ES30.All.OutOfMemory; - var _InvalidFramebufferOperation = OpenTK.Graphics.ES30.All.InvalidFramebufferOperation; - var _InvalidFramebufferOperationExt = OpenTK.Graphics.ES30.All.InvalidFramebufferOperationExt; - var _InvalidFramebufferOperationOes = OpenTK.Graphics.ES30.All.InvalidFramebufferOperationOes; - var _Gl2D = OpenTK.Graphics.ES30.All.Gl2D; - var _Gl3D = OpenTK.Graphics.ES30.All.Gl3D; - var _Gl3DColor = OpenTK.Graphics.ES30.All.Gl3DColor; - var _Gl3DColorTexture = OpenTK.Graphics.ES30.All.Gl3DColorTexture; - var _Gl4DColorTexture = OpenTK.Graphics.ES30.All.Gl4DColorTexture; - var _PassThroughToken = OpenTK.Graphics.ES30.All.PassThroughToken; - var _PointToken = OpenTK.Graphics.ES30.All.PointToken; - var _LineToken = OpenTK.Graphics.ES30.All.LineToken; - var _PolygonToken = OpenTK.Graphics.ES30.All.PolygonToken; - var _BitmapToken = OpenTK.Graphics.ES30.All.BitmapToken; - var _DrawPixelToken = OpenTK.Graphics.ES30.All.DrawPixelToken; - var _CopyPixelToken = OpenTK.Graphics.ES30.All.CopyPixelToken; - var _LineResetToken = OpenTK.Graphics.ES30.All.LineResetToken; - var _Exp = OpenTK.Graphics.ES30.All.Exp; - var _MultisampleBufferBit3Qcom = OpenTK.Graphics.ES30.All.MultisampleBufferBit3Qcom; - var _Exp2 = OpenTK.Graphics.ES30.All.Exp2; - var _Cw = OpenTK.Graphics.ES30.All.Cw; - var _Ccw = OpenTK.Graphics.ES30.All.Ccw; - var _Coeff = OpenTK.Graphics.ES30.All.Coeff; - var _Order = OpenTK.Graphics.ES30.All.Order; - var _Domain = OpenTK.Graphics.ES30.All.Domain; - var _CurrentColor = OpenTK.Graphics.ES30.All.CurrentColor; - var _CurrentIndex = OpenTK.Graphics.ES30.All.CurrentIndex; - var _CurrentNormal = OpenTK.Graphics.ES30.All.CurrentNormal; - var _CurrentTextureCoords = OpenTK.Graphics.ES30.All.CurrentTextureCoords; - var _CurrentRasterColor = OpenTK.Graphics.ES30.All.CurrentRasterColor; - var _CurrentRasterIndex = OpenTK.Graphics.ES30.All.CurrentRasterIndex; - var _CurrentRasterTextureCoords = OpenTK.Graphics.ES30.All.CurrentRasterTextureCoords; - var _CurrentRasterPosition = OpenTK.Graphics.ES30.All.CurrentRasterPosition; - var _CurrentRasterPositionValid = OpenTK.Graphics.ES30.All.CurrentRasterPositionValid; - var _CurrentRasterDistance = OpenTK.Graphics.ES30.All.CurrentRasterDistance; - var _PointSmooth = OpenTK.Graphics.ES30.All.PointSmooth; - var _PointSize = OpenTK.Graphics.ES30.All.PointSize; - var _PointSizeRange = OpenTK.Graphics.ES30.All.PointSizeRange; - var _SmoothPointSizeRange = OpenTK.Graphics.ES30.All.SmoothPointSizeRange; - var _PointSizeGranularity = OpenTK.Graphics.ES30.All.PointSizeGranularity; - var _SmoothPointSizeGranularity = OpenTK.Graphics.ES30.All.SmoothPointSizeGranularity; - var _LineSmooth = OpenTK.Graphics.ES30.All.LineSmooth; - var _LineWidth = OpenTK.Graphics.ES30.All.LineWidth; - var _LineWidthRange = OpenTK.Graphics.ES30.All.LineWidthRange; - var _SmoothLineWidthRange = OpenTK.Graphics.ES30.All.SmoothLineWidthRange; - var _LineWidthGranularity = OpenTK.Graphics.ES30.All.LineWidthGranularity; - var _SmoothLineWidthGranularity = OpenTK.Graphics.ES30.All.SmoothLineWidthGranularity; - var _LineStipple = OpenTK.Graphics.ES30.All.LineStipple; - var _LineStipplePattern = OpenTK.Graphics.ES30.All.LineStipplePattern; - var _LineStippleRepeat = OpenTK.Graphics.ES30.All.LineStippleRepeat; - var _ListMode = OpenTK.Graphics.ES30.All.ListMode; - var _MaxListNesting = OpenTK.Graphics.ES30.All.MaxListNesting; - var _ListBase = OpenTK.Graphics.ES30.All.ListBase; - var _ListIndex = OpenTK.Graphics.ES30.All.ListIndex; - var _PolygonMode = OpenTK.Graphics.ES30.All.PolygonMode; - var _PolygonSmooth = OpenTK.Graphics.ES30.All.PolygonSmooth; - var _PolygonStipple = OpenTK.Graphics.ES30.All.PolygonStipple; - var _EdgeFlag = OpenTK.Graphics.ES30.All.EdgeFlag; - var _CullFace = OpenTK.Graphics.ES30.All.CullFace; - var _CullFaceMode = OpenTK.Graphics.ES30.All.CullFaceMode; - var _FrontFace = OpenTK.Graphics.ES30.All.FrontFace; - var _Lighting = OpenTK.Graphics.ES30.All.Lighting; - var _LightModelLocalViewer = OpenTK.Graphics.ES30.All.LightModelLocalViewer; - var _LightModelTwoSide = OpenTK.Graphics.ES30.All.LightModelTwoSide; - var _LightModelAmbient = OpenTK.Graphics.ES30.All.LightModelAmbient; - var _ShadeModel = OpenTK.Graphics.ES30.All.ShadeModel; - var _ColorMaterialFace = OpenTK.Graphics.ES30.All.ColorMaterialFace; - var _ColorMaterialParameter = OpenTK.Graphics.ES30.All.ColorMaterialParameter; - var _ColorMaterial = OpenTK.Graphics.ES30.All.ColorMaterial; - var _Fog = OpenTK.Graphics.ES30.All.Fog; - var _FogIndex = OpenTK.Graphics.ES30.All.FogIndex; - var _FogDensity = OpenTK.Graphics.ES30.All.FogDensity; - var _FogStart = OpenTK.Graphics.ES30.All.FogStart; - var _FogEnd = OpenTK.Graphics.ES30.All.FogEnd; - var _FogMode = OpenTK.Graphics.ES30.All.FogMode; - var _FogColor = OpenTK.Graphics.ES30.All.FogColor; - var _DepthRange = OpenTK.Graphics.ES30.All.DepthRange; - var _DepthTest = OpenTK.Graphics.ES30.All.DepthTest; - var _DepthWritemask = OpenTK.Graphics.ES30.All.DepthWritemask; - var _DepthClearValue = OpenTK.Graphics.ES30.All.DepthClearValue; - var _DepthFunc = OpenTK.Graphics.ES30.All.DepthFunc; - var _AccumClearValue = OpenTK.Graphics.ES30.All.AccumClearValue; - var _StencilTest = OpenTK.Graphics.ES30.All.StencilTest; - var _StencilClearValue = OpenTK.Graphics.ES30.All.StencilClearValue; - var _StencilFunc = OpenTK.Graphics.ES30.All.StencilFunc; - var _StencilValueMask = OpenTK.Graphics.ES30.All.StencilValueMask; - var _StencilFail = OpenTK.Graphics.ES30.All.StencilFail; - var _StencilPassDepthFail = OpenTK.Graphics.ES30.All.StencilPassDepthFail; - var _StencilPassDepthPass = OpenTK.Graphics.ES30.All.StencilPassDepthPass; - var _StencilRef = OpenTK.Graphics.ES30.All.StencilRef; - var _StencilWritemask = OpenTK.Graphics.ES30.All.StencilWritemask; - var _MatrixMode = OpenTK.Graphics.ES30.All.MatrixMode; - var _Normalize = OpenTK.Graphics.ES30.All.Normalize; - var _Viewport = OpenTK.Graphics.ES30.All.Viewport; - var _Modelview0StackDepthExt = OpenTK.Graphics.ES30.All.Modelview0StackDepthExt; - var _ModelviewStackDepth = OpenTK.Graphics.ES30.All.ModelviewStackDepth; - var _ProjectionStackDepth = OpenTK.Graphics.ES30.All.ProjectionStackDepth; - var _TextureStackDepth = OpenTK.Graphics.ES30.All.TextureStackDepth; - var _Modelview0MatrixExt = OpenTK.Graphics.ES30.All.Modelview0MatrixExt; - var _ModelviewMatrix = OpenTK.Graphics.ES30.All.ModelviewMatrix; - var _ProjectionMatrix = OpenTK.Graphics.ES30.All.ProjectionMatrix; - var _TextureMatrix = OpenTK.Graphics.ES30.All.TextureMatrix; - var _AttribStackDepth = OpenTK.Graphics.ES30.All.AttribStackDepth; - var _ClientAttribStackDepth = OpenTK.Graphics.ES30.All.ClientAttribStackDepth; - var _AlphaTest = OpenTK.Graphics.ES30.All.AlphaTest; - var _AlphaTestQcom = OpenTK.Graphics.ES30.All.AlphaTestQcom; - var _AlphaTestFunc = OpenTK.Graphics.ES30.All.AlphaTestFunc; - var _AlphaTestFuncQcom = OpenTK.Graphics.ES30.All.AlphaTestFuncQcom; - var _AlphaTestRef = OpenTK.Graphics.ES30.All.AlphaTestRef; - var _AlphaTestRefQcom = OpenTK.Graphics.ES30.All.AlphaTestRefQcom; - var _Dither = OpenTK.Graphics.ES30.All.Dither; - var _BlendDst = OpenTK.Graphics.ES30.All.BlendDst; - var _BlendSrc = OpenTK.Graphics.ES30.All.BlendSrc; - var _Blend = OpenTK.Graphics.ES30.All.Blend; - var _LogicOpMode = OpenTK.Graphics.ES30.All.LogicOpMode; - var _IndexLogicOp = OpenTK.Graphics.ES30.All.IndexLogicOp; - var _LogicOp = OpenTK.Graphics.ES30.All.LogicOp; - var _ColorLogicOp = OpenTK.Graphics.ES30.All.ColorLogicOp; - var _AuxBuffers = OpenTK.Graphics.ES30.All.AuxBuffers; - var _DrawBuffer = OpenTK.Graphics.ES30.All.DrawBuffer; - var _DrawBufferExt = OpenTK.Graphics.ES30.All.DrawBufferExt; - var _ReadBuffer = OpenTK.Graphics.ES30.All.ReadBuffer; - var _ReadBufferExt = OpenTK.Graphics.ES30.All.ReadBufferExt; - var _ReadBufferNv = OpenTK.Graphics.ES30.All.ReadBufferNv; - var _ScissorBox = OpenTK.Graphics.ES30.All.ScissorBox; - var _ScissorTest = OpenTK.Graphics.ES30.All.ScissorTest; - var _IndexClearValue = OpenTK.Graphics.ES30.All.IndexClearValue; - var _IndexWritemask = OpenTK.Graphics.ES30.All.IndexWritemask; - var _ColorClearValue = OpenTK.Graphics.ES30.All.ColorClearValue; - var _ColorWritemask = OpenTK.Graphics.ES30.All.ColorWritemask; - var _IndexMode = OpenTK.Graphics.ES30.All.IndexMode; - var _RgbaMode = OpenTK.Graphics.ES30.All.RgbaMode; - var _Doublebuffer = OpenTK.Graphics.ES30.All.Doublebuffer; - var _Stereo = OpenTK.Graphics.ES30.All.Stereo; - var _RenderMode = OpenTK.Graphics.ES30.All.RenderMode; - var _PerspectiveCorrectionHint = OpenTK.Graphics.ES30.All.PerspectiveCorrectionHint; - var _PointSmoothHint = OpenTK.Graphics.ES30.All.PointSmoothHint; - var _LineSmoothHint = OpenTK.Graphics.ES30.All.LineSmoothHint; - var _PolygonSmoothHint = OpenTK.Graphics.ES30.All.PolygonSmoothHint; - var _FogHint = OpenTK.Graphics.ES30.All.FogHint; - var _TextureGenS = OpenTK.Graphics.ES30.All.TextureGenS; - var _TextureGenT = OpenTK.Graphics.ES30.All.TextureGenT; - var _TextureGenR = OpenTK.Graphics.ES30.All.TextureGenR; - var _TextureGenQ = OpenTK.Graphics.ES30.All.TextureGenQ; - var _PixelMapIToI = OpenTK.Graphics.ES30.All.PixelMapIToI; - var _PixelMapSToS = OpenTK.Graphics.ES30.All.PixelMapSToS; - var _PixelMapIToR = OpenTK.Graphics.ES30.All.PixelMapIToR; - var _PixelMapIToG = OpenTK.Graphics.ES30.All.PixelMapIToG; - var _PixelMapIToB = OpenTK.Graphics.ES30.All.PixelMapIToB; - var _PixelMapIToA = OpenTK.Graphics.ES30.All.PixelMapIToA; - var _PixelMapRToR = OpenTK.Graphics.ES30.All.PixelMapRToR; - var _PixelMapGToG = OpenTK.Graphics.ES30.All.PixelMapGToG; - var _PixelMapBToB = OpenTK.Graphics.ES30.All.PixelMapBToB; - var _PixelMapAToA = OpenTK.Graphics.ES30.All.PixelMapAToA; - var _PixelMapIToISize = OpenTK.Graphics.ES30.All.PixelMapIToISize; - var _PixelMapSToSSize = OpenTK.Graphics.ES30.All.PixelMapSToSSize; - var _PixelMapIToRSize = OpenTK.Graphics.ES30.All.PixelMapIToRSize; - var _PixelMapIToGSize = OpenTK.Graphics.ES30.All.PixelMapIToGSize; - var _PixelMapIToBSize = OpenTK.Graphics.ES30.All.PixelMapIToBSize; - var _PixelMapIToASize = OpenTK.Graphics.ES30.All.PixelMapIToASize; - var _PixelMapRToRSize = OpenTK.Graphics.ES30.All.PixelMapRToRSize; - var _PixelMapGToGSize = OpenTK.Graphics.ES30.All.PixelMapGToGSize; - var _PixelMapBToBSize = OpenTK.Graphics.ES30.All.PixelMapBToBSize; - var _PixelMapAToASize = OpenTK.Graphics.ES30.All.PixelMapAToASize; - var _UnpackSwapBytes = OpenTK.Graphics.ES30.All.UnpackSwapBytes; - var _UnpackLsbFirst = OpenTK.Graphics.ES30.All.UnpackLsbFirst; - var _UnpackRowLength = OpenTK.Graphics.ES30.All.UnpackRowLength; - var _UnpackRowLengthExt = OpenTK.Graphics.ES30.All.UnpackRowLengthExt; - var _UnpackSkipRows = OpenTK.Graphics.ES30.All.UnpackSkipRows; - var _UnpackSkipRowsExt = OpenTK.Graphics.ES30.All.UnpackSkipRowsExt; - var _UnpackSkipPixels = OpenTK.Graphics.ES30.All.UnpackSkipPixels; - var _UnpackSkipPixelsExt = OpenTK.Graphics.ES30.All.UnpackSkipPixelsExt; - var _UnpackAlignment = OpenTK.Graphics.ES30.All.UnpackAlignment; - var _PackSwapBytes = OpenTK.Graphics.ES30.All.PackSwapBytes; - var _PackLsbFirst = OpenTK.Graphics.ES30.All.PackLsbFirst; - var _PackRowLength = OpenTK.Graphics.ES30.All.PackRowLength; - var _PackSkipRows = OpenTK.Graphics.ES30.All.PackSkipRows; - var _PackSkipPixels = OpenTK.Graphics.ES30.All.PackSkipPixels; - var _PackAlignment = OpenTK.Graphics.ES30.All.PackAlignment; - var _MapColor = OpenTK.Graphics.ES30.All.MapColor; - var _MapStencil = OpenTK.Graphics.ES30.All.MapStencil; - var _IndexShift = OpenTK.Graphics.ES30.All.IndexShift; - var _IndexOffset = OpenTK.Graphics.ES30.All.IndexOffset; - var _RedScale = OpenTK.Graphics.ES30.All.RedScale; - var _RedBias = OpenTK.Graphics.ES30.All.RedBias; - var _ZoomX = OpenTK.Graphics.ES30.All.ZoomX; - var _ZoomY = OpenTK.Graphics.ES30.All.ZoomY; - var _GreenScale = OpenTK.Graphics.ES30.All.GreenScale; - var _GreenBias = OpenTK.Graphics.ES30.All.GreenBias; - var _BlueScale = OpenTK.Graphics.ES30.All.BlueScale; - var _BlueBias = OpenTK.Graphics.ES30.All.BlueBias; - var _AlphaScale = OpenTK.Graphics.ES30.All.AlphaScale; - var _AlphaBias = OpenTK.Graphics.ES30.All.AlphaBias; - var _DepthScale = OpenTK.Graphics.ES30.All.DepthScale; - var _DepthBias = OpenTK.Graphics.ES30.All.DepthBias; - var _MaxEvalOrder = OpenTK.Graphics.ES30.All.MaxEvalOrder; - var _MaxLights = OpenTK.Graphics.ES30.All.MaxLights; - var _MaxClipDistances = OpenTK.Graphics.ES30.All.MaxClipDistances; - var _MaxClipPlanes = OpenTK.Graphics.ES30.All.MaxClipPlanes; - var _MaxTextureSize = OpenTK.Graphics.ES30.All.MaxTextureSize; - var _MaxPixelMapTable = OpenTK.Graphics.ES30.All.MaxPixelMapTable; - var _MaxAttribStackDepth = OpenTK.Graphics.ES30.All.MaxAttribStackDepth; - var _MaxModelviewStackDepth = OpenTK.Graphics.ES30.All.MaxModelviewStackDepth; - var _MaxNameStackDepth = OpenTK.Graphics.ES30.All.MaxNameStackDepth; - var _MaxProjectionStackDepth = OpenTK.Graphics.ES30.All.MaxProjectionStackDepth; - var _MaxTextureStackDepth = OpenTK.Graphics.ES30.All.MaxTextureStackDepth; - var _MaxViewportDims = OpenTK.Graphics.ES30.All.MaxViewportDims; - var _MaxClientAttribStackDepth = OpenTK.Graphics.ES30.All.MaxClientAttribStackDepth; - var _SubpixelBits = OpenTK.Graphics.ES30.All.SubpixelBits; - var _IndexBits = OpenTK.Graphics.ES30.All.IndexBits; - var _RedBits = OpenTK.Graphics.ES30.All.RedBits; - var _GreenBits = OpenTK.Graphics.ES30.All.GreenBits; - var _BlueBits = OpenTK.Graphics.ES30.All.BlueBits; - var _AlphaBits = OpenTK.Graphics.ES30.All.AlphaBits; - var _DepthBits = OpenTK.Graphics.ES30.All.DepthBits; - var _StencilBits = OpenTK.Graphics.ES30.All.StencilBits; - var _AccumRedBits = OpenTK.Graphics.ES30.All.AccumRedBits; - var _AccumGreenBits = OpenTK.Graphics.ES30.All.AccumGreenBits; - var _AccumBlueBits = OpenTK.Graphics.ES30.All.AccumBlueBits; - var _AccumAlphaBits = OpenTK.Graphics.ES30.All.AccumAlphaBits; - var _NameStackDepth = OpenTK.Graphics.ES30.All.NameStackDepth; - var _AutoNormal = OpenTK.Graphics.ES30.All.AutoNormal; - var _Map1Color4 = OpenTK.Graphics.ES30.All.Map1Color4; - var _Map1Index = OpenTK.Graphics.ES30.All.Map1Index; - var _Map1Normal = OpenTK.Graphics.ES30.All.Map1Normal; - var _Map1TextureCoord1 = OpenTK.Graphics.ES30.All.Map1TextureCoord1; - var _Map1TextureCoord2 = OpenTK.Graphics.ES30.All.Map1TextureCoord2; - var _Map1TextureCoord3 = OpenTK.Graphics.ES30.All.Map1TextureCoord3; - var _Map1TextureCoord4 = OpenTK.Graphics.ES30.All.Map1TextureCoord4; - var _Map1Vertex3 = OpenTK.Graphics.ES30.All.Map1Vertex3; - var _Map1Vertex4 = OpenTK.Graphics.ES30.All.Map1Vertex4; - var _Map2Color4 = OpenTK.Graphics.ES30.All.Map2Color4; - var _Map2Index = OpenTK.Graphics.ES30.All.Map2Index; - var _Map2Normal = OpenTK.Graphics.ES30.All.Map2Normal; - var _Map2TextureCoord1 = OpenTK.Graphics.ES30.All.Map2TextureCoord1; - var _Map2TextureCoord2 = OpenTK.Graphics.ES30.All.Map2TextureCoord2; - var _Map2TextureCoord3 = OpenTK.Graphics.ES30.All.Map2TextureCoord3; - var _Map2TextureCoord4 = OpenTK.Graphics.ES30.All.Map2TextureCoord4; - var _Map2Vertex3 = OpenTK.Graphics.ES30.All.Map2Vertex3; - var _Map2Vertex4 = OpenTK.Graphics.ES30.All.Map2Vertex4; - var _Map1GridDomain = OpenTK.Graphics.ES30.All.Map1GridDomain; - var _Map1GridSegments = OpenTK.Graphics.ES30.All.Map1GridSegments; - var _Map2GridDomain = OpenTK.Graphics.ES30.All.Map2GridDomain; - var _Map2GridSegments = OpenTK.Graphics.ES30.All.Map2GridSegments; - var _Texture1D = OpenTK.Graphics.ES30.All.Texture1D; - var _Texture2D = OpenTK.Graphics.ES30.All.Texture2D; - var _FeedbackBufferPointer = OpenTK.Graphics.ES30.All.FeedbackBufferPointer; - var _FeedbackBufferSize = OpenTK.Graphics.ES30.All.FeedbackBufferSize; - var _FeedbackBufferType = OpenTK.Graphics.ES30.All.FeedbackBufferType; - var _SelectionBufferPointer = OpenTK.Graphics.ES30.All.SelectionBufferPointer; - var _SelectionBufferSize = OpenTK.Graphics.ES30.All.SelectionBufferSize; - var _TextureWidth = OpenTK.Graphics.ES30.All.TextureWidth; - var _MultisampleBufferBit4Qcom = OpenTK.Graphics.ES30.All.MultisampleBufferBit4Qcom; - var _TextureHeight = OpenTK.Graphics.ES30.All.TextureHeight; - var _TextureComponents = OpenTK.Graphics.ES30.All.TextureComponents; - var _TextureInternalFormat = OpenTK.Graphics.ES30.All.TextureInternalFormat; - var _TextureBorderColor = OpenTK.Graphics.ES30.All.TextureBorderColor; - var _TextureBorderColorExt = OpenTK.Graphics.ES30.All.TextureBorderColorExt; - var _TextureBorderColorNv = OpenTK.Graphics.ES30.All.TextureBorderColorNv; - var _TextureBorder = OpenTK.Graphics.ES30.All.TextureBorder; - var _DontCare = OpenTK.Graphics.ES30.All.DontCare; - var _Fastest = OpenTK.Graphics.ES30.All.Fastest; - var _Nicest = OpenTK.Graphics.ES30.All.Nicest; - var _Ambient = OpenTK.Graphics.ES30.All.Ambient; - var _Diffuse = OpenTK.Graphics.ES30.All.Diffuse; - var _Specular = OpenTK.Graphics.ES30.All.Specular; - var _Position = OpenTK.Graphics.ES30.All.Position; - var _SpotDirection = OpenTK.Graphics.ES30.All.SpotDirection; - var _SpotExponent = OpenTK.Graphics.ES30.All.SpotExponent; - var _SpotCutoff = OpenTK.Graphics.ES30.All.SpotCutoff; - var _ConstantAttenuation = OpenTK.Graphics.ES30.All.ConstantAttenuation; - var _LinearAttenuation = OpenTK.Graphics.ES30.All.LinearAttenuation; - var _QuadraticAttenuation = OpenTK.Graphics.ES30.All.QuadraticAttenuation; - var _Compile = OpenTK.Graphics.ES30.All.Compile; - var _CompileAndExecute = OpenTK.Graphics.ES30.All.CompileAndExecute; - var _Byte = OpenTK.Graphics.ES30.All.Byte; - var _UnsignedByte = OpenTK.Graphics.ES30.All.UnsignedByte; - var _Short = OpenTK.Graphics.ES30.All.Short; - var _UnsignedShort = OpenTK.Graphics.ES30.All.UnsignedShort; - var _Int = OpenTK.Graphics.ES30.All.Int; - var _UnsignedInt = OpenTK.Graphics.ES30.All.UnsignedInt; - var _Float = OpenTK.Graphics.ES30.All.Float; - var _Gl2Bytes = OpenTK.Graphics.ES30.All.Gl2Bytes; - var _Gl3Bytes = OpenTK.Graphics.ES30.All.Gl3Bytes; - var _Gl4Bytes = OpenTK.Graphics.ES30.All.Gl4Bytes; - var _Double = OpenTK.Graphics.ES30.All.Double; - var _HalfFloat = OpenTK.Graphics.ES30.All.HalfFloat; - var _Fixed = OpenTK.Graphics.ES30.All.Fixed; - var _Clear = OpenTK.Graphics.ES30.All.Clear; - var _And = OpenTK.Graphics.ES30.All.And; - var _AndReverse = OpenTK.Graphics.ES30.All.AndReverse; - var _Copy = OpenTK.Graphics.ES30.All.Copy; - var _AndInverted = OpenTK.Graphics.ES30.All.AndInverted; - var _Noop = OpenTK.Graphics.ES30.All.Noop; - var _Xor = OpenTK.Graphics.ES30.All.Xor; - var _XorNv = OpenTK.Graphics.ES30.All.XorNv; - var _Or = OpenTK.Graphics.ES30.All.Or; - var _Nor = OpenTK.Graphics.ES30.All.Nor; - var _Equiv = OpenTK.Graphics.ES30.All.Equiv; - var _Invert = OpenTK.Graphics.ES30.All.Invert; - var _OrReverse = OpenTK.Graphics.ES30.All.OrReverse; - var _CopyInverted = OpenTK.Graphics.ES30.All.CopyInverted; - var _OrInverted = OpenTK.Graphics.ES30.All.OrInverted; - var _Nand = OpenTK.Graphics.ES30.All.Nand; - var _Set = OpenTK.Graphics.ES30.All.Set; - var _Emission = OpenTK.Graphics.ES30.All.Emission; - var _Shininess = OpenTK.Graphics.ES30.All.Shininess; - var _AmbientAndDiffuse = OpenTK.Graphics.ES30.All.AmbientAndDiffuse; - var _ColorIndexes = OpenTK.Graphics.ES30.All.ColorIndexes; - var _Modelview = OpenTK.Graphics.ES30.All.Modelview; - var _Modelview0Ext = OpenTK.Graphics.ES30.All.Modelview0Ext; - var _Projection = OpenTK.Graphics.ES30.All.Projection; - var _Texture = OpenTK.Graphics.ES30.All.Texture; - var _Color = OpenTK.Graphics.ES30.All.Color; - var _ColorExt = OpenTK.Graphics.ES30.All.ColorExt; - var _Depth = OpenTK.Graphics.ES30.All.Depth; - var _DepthExt = OpenTK.Graphics.ES30.All.DepthExt; - var _Stencil = OpenTK.Graphics.ES30.All.Stencil; - var _StencilExt = OpenTK.Graphics.ES30.All.StencilExt; - var _ColorIndex = OpenTK.Graphics.ES30.All.ColorIndex; - var _StencilIndex = OpenTK.Graphics.ES30.All.StencilIndex; - var _StencilIndexOes = OpenTK.Graphics.ES30.All.StencilIndexOes; - var _DepthComponent = OpenTK.Graphics.ES30.All.DepthComponent; - var _Red = OpenTK.Graphics.ES30.All.Red; - var _RedExt = OpenTK.Graphics.ES30.All.RedExt; - var _RedNv = OpenTK.Graphics.ES30.All.RedNv; - var _Green = OpenTK.Graphics.ES30.All.Green; - var _GreenNv = OpenTK.Graphics.ES30.All.GreenNv; - var _Blue = OpenTK.Graphics.ES30.All.Blue; - var _BlueNv = OpenTK.Graphics.ES30.All.BlueNv; - var _Alpha = OpenTK.Graphics.ES30.All.Alpha; - var _Rgb = OpenTK.Graphics.ES30.All.Rgb; - var _Rgba = OpenTK.Graphics.ES30.All.Rgba; - var _Luminance = OpenTK.Graphics.ES30.All.Luminance; - var _LuminanceAlpha = OpenTK.Graphics.ES30.All.LuminanceAlpha; - var _Bitmap = OpenTK.Graphics.ES30.All.Bitmap; - var _PreferDoublebufferHintPgi = OpenTK.Graphics.ES30.All.PreferDoublebufferHintPgi; - var _ConserveMemoryHintPgi = OpenTK.Graphics.ES30.All.ConserveMemoryHintPgi; - var _ReclaimMemoryHintPgi = OpenTK.Graphics.ES30.All.ReclaimMemoryHintPgi; - var _NativeGraphicsBeginHintPgi = OpenTK.Graphics.ES30.All.NativeGraphicsBeginHintPgi; - var _NativeGraphicsEndHintPgi = OpenTK.Graphics.ES30.All.NativeGraphicsEndHintPgi; - var _AlwaysFastHintPgi = OpenTK.Graphics.ES30.All.AlwaysFastHintPgi; - var _AlwaysSoftHintPgi = OpenTK.Graphics.ES30.All.AlwaysSoftHintPgi; - var _AllowDrawObjHintPgi = OpenTK.Graphics.ES30.All.AllowDrawObjHintPgi; - var _AllowDrawWinHintPgi = OpenTK.Graphics.ES30.All.AllowDrawWinHintPgi; - var _AllowDrawFrgHintPgi = OpenTK.Graphics.ES30.All.AllowDrawFrgHintPgi; - var _AllowDrawMemHintPgi = OpenTK.Graphics.ES30.All.AllowDrawMemHintPgi; - var _StrictDepthfuncHintPgi = OpenTK.Graphics.ES30.All.StrictDepthfuncHintPgi; - var _StrictLightingHintPgi = OpenTK.Graphics.ES30.All.StrictLightingHintPgi; - var _StrictScissorHintPgi = OpenTK.Graphics.ES30.All.StrictScissorHintPgi; - var _FullStippleHintPgi = OpenTK.Graphics.ES30.All.FullStippleHintPgi; - var _ClipNearHintPgi = OpenTK.Graphics.ES30.All.ClipNearHintPgi; - var _ClipFarHintPgi = OpenTK.Graphics.ES30.All.ClipFarHintPgi; - var _WideLineHintPgi = OpenTK.Graphics.ES30.All.WideLineHintPgi; - var _BackNormalsHintPgi = OpenTK.Graphics.ES30.All.BackNormalsHintPgi; - var _VertexDataHintPgi = OpenTK.Graphics.ES30.All.VertexDataHintPgi; - var _VertexConsistentHintPgi = OpenTK.Graphics.ES30.All.VertexConsistentHintPgi; - var _MaterialSideHintPgi = OpenTK.Graphics.ES30.All.MaterialSideHintPgi; - var _MaxVertexHintPgi = OpenTK.Graphics.ES30.All.MaxVertexHintPgi; - var _Point = OpenTK.Graphics.ES30.All.Point; - var _Line = OpenTK.Graphics.ES30.All.Line; - var _Fill = OpenTK.Graphics.ES30.All.Fill; - var _Render = OpenTK.Graphics.ES30.All.Render; - var _Feedback = OpenTK.Graphics.ES30.All.Feedback; - var _Select = OpenTK.Graphics.ES30.All.Select; - var _Flat = OpenTK.Graphics.ES30.All.Flat; - var _Smooth = OpenTK.Graphics.ES30.All.Smooth; - var _Keep = OpenTK.Graphics.ES30.All.Keep; - var _Replace = OpenTK.Graphics.ES30.All.Replace; - var _Incr = OpenTK.Graphics.ES30.All.Incr; - var _Decr = OpenTK.Graphics.ES30.All.Decr; - var _Vendor = OpenTK.Graphics.ES30.All.Vendor; - var _Renderer = OpenTK.Graphics.ES30.All.Renderer; - var _Version = OpenTK.Graphics.ES30.All.Version; - var _Extensions = OpenTK.Graphics.ES30.All.Extensions; - var _S = OpenTK.Graphics.ES30.All.S; - var _MultisampleBit = OpenTK.Graphics.ES30.All.MultisampleBit; - var _MultisampleBit3Dfx = OpenTK.Graphics.ES30.All.MultisampleBit3Dfx; - var _MultisampleBitArb = OpenTK.Graphics.ES30.All.MultisampleBitArb; - var _MultisampleBitExt = OpenTK.Graphics.ES30.All.MultisampleBitExt; - var _MultisampleBufferBit5Qcom = OpenTK.Graphics.ES30.All.MultisampleBufferBit5Qcom; - var _T = OpenTK.Graphics.ES30.All.T; - var _R = OpenTK.Graphics.ES30.All.R; - var _Q = OpenTK.Graphics.ES30.All.Q; - var _Modulate = OpenTK.Graphics.ES30.All.Modulate; - var _Decal = OpenTK.Graphics.ES30.All.Decal; - var _TextureEnvMode = OpenTK.Graphics.ES30.All.TextureEnvMode; - var _TextureEnvColor = OpenTK.Graphics.ES30.All.TextureEnvColor; - var _TextureEnv = OpenTK.Graphics.ES30.All.TextureEnv; - var _EyeLinear = OpenTK.Graphics.ES30.All.EyeLinear; - var _ObjectLinear = OpenTK.Graphics.ES30.All.ObjectLinear; - var _SphereMap = OpenTK.Graphics.ES30.All.SphereMap; - var _TextureGenMode = OpenTK.Graphics.ES30.All.TextureGenMode; - var _ObjectPlane = OpenTK.Graphics.ES30.All.ObjectPlane; - var _EyePlane = OpenTK.Graphics.ES30.All.EyePlane; - var _Nearest = OpenTK.Graphics.ES30.All.Nearest; - var _Linear = OpenTK.Graphics.ES30.All.Linear; - var _NearestMipmapNearest = OpenTK.Graphics.ES30.All.NearestMipmapNearest; - var _LinearMipmapNearest = OpenTK.Graphics.ES30.All.LinearMipmapNearest; - var _NearestMipmapLinear = OpenTK.Graphics.ES30.All.NearestMipmapLinear; - var _LinearMipmapLinear = OpenTK.Graphics.ES30.All.LinearMipmapLinear; - var _TextureMagFilter = OpenTK.Graphics.ES30.All.TextureMagFilter; - var _TextureMinFilter = OpenTK.Graphics.ES30.All.TextureMinFilter; - var _TextureWrapS = OpenTK.Graphics.ES30.All.TextureWrapS; - var _TextureWrapT = OpenTK.Graphics.ES30.All.TextureWrapT; - var _Clamp = OpenTK.Graphics.ES30.All.Clamp; - var _Repeat = OpenTK.Graphics.ES30.All.Repeat; - var _PolygonOffsetUnits = OpenTK.Graphics.ES30.All.PolygonOffsetUnits; - var _PolygonOffsetPoint = OpenTK.Graphics.ES30.All.PolygonOffsetPoint; - var _PolygonOffsetLine = OpenTK.Graphics.ES30.All.PolygonOffsetLine; - var _R3G3B2 = OpenTK.Graphics.ES30.All.R3G3B2; - var _V2f = OpenTK.Graphics.ES30.All.V2f; - var _V3f = OpenTK.Graphics.ES30.All.V3f; - var _C4ubV2f = OpenTK.Graphics.ES30.All.C4ubV2f; - var _C4ubV3f = OpenTK.Graphics.ES30.All.C4ubV3f; - var _C3fV3f = OpenTK.Graphics.ES30.All.C3fV3f; - var _N3fV3f = OpenTK.Graphics.ES30.All.N3fV3f; - var _C4fN3fV3f = OpenTK.Graphics.ES30.All.C4fN3fV3f; - var _T2fV3f = OpenTK.Graphics.ES30.All.T2fV3f; - var _T4fV4f = OpenTK.Graphics.ES30.All.T4fV4f; - var _T2fC4ubV3f = OpenTK.Graphics.ES30.All.T2fC4ubV3f; - var _T2fC3fV3f = OpenTK.Graphics.ES30.All.T2fC3fV3f; - var _T2fN3fV3f = OpenTK.Graphics.ES30.All.T2fN3fV3f; - var _T2fC4fN3fV3f = OpenTK.Graphics.ES30.All.T2fC4fN3fV3f; - var _T4fC4fN3fV4f = OpenTK.Graphics.ES30.All.T4fC4fN3fV4f; - var _ClipDistance0 = OpenTK.Graphics.ES30.All.ClipDistance0; - var _ClipPlane0 = OpenTK.Graphics.ES30.All.ClipPlane0; - var _ClipDistance1 = OpenTK.Graphics.ES30.All.ClipDistance1; - var _ClipPlane1 = OpenTK.Graphics.ES30.All.ClipPlane1; - var _ClipDistance2 = OpenTK.Graphics.ES30.All.ClipDistance2; - var _ClipPlane2 = OpenTK.Graphics.ES30.All.ClipPlane2; - var _ClipDistance3 = OpenTK.Graphics.ES30.All.ClipDistance3; - var _ClipPlane3 = OpenTK.Graphics.ES30.All.ClipPlane3; - var _ClipDistance4 = OpenTK.Graphics.ES30.All.ClipDistance4; - var _ClipPlane4 = OpenTK.Graphics.ES30.All.ClipPlane4; - var _ClipDistance5 = OpenTK.Graphics.ES30.All.ClipDistance5; - var _ClipPlane5 = OpenTK.Graphics.ES30.All.ClipPlane5; - var _ClipDistance6 = OpenTK.Graphics.ES30.All.ClipDistance6; - var _ClipDistance7 = OpenTK.Graphics.ES30.All.ClipDistance7; - var _Light0 = OpenTK.Graphics.ES30.All.Light0; - var _MultisampleBufferBit6Qcom = OpenTK.Graphics.ES30.All.MultisampleBufferBit6Qcom; - var _Light1 = OpenTK.Graphics.ES30.All.Light1; - var _Light2 = OpenTK.Graphics.ES30.All.Light2; - var _Light3 = OpenTK.Graphics.ES30.All.Light3; - var _Light4 = OpenTK.Graphics.ES30.All.Light4; - var _Light5 = OpenTK.Graphics.ES30.All.Light5; - var _Light6 = OpenTK.Graphics.ES30.All.Light6; - var _Light7 = OpenTK.Graphics.ES30.All.Light7; - var _AbgrExt = OpenTK.Graphics.ES30.All.AbgrExt; - var _MultisampleBufferBit7Qcom = OpenTK.Graphics.ES30.All.MultisampleBufferBit7Qcom; - var _ConstantColor = OpenTK.Graphics.ES30.All.ConstantColor; - var _ConstantColorExt = OpenTK.Graphics.ES30.All.ConstantColorExt; - var _OneMinusConstantColor = OpenTK.Graphics.ES30.All.OneMinusConstantColor; - var _OneMinusConstantColorExt = OpenTK.Graphics.ES30.All.OneMinusConstantColorExt; - var _ConstantAlpha = OpenTK.Graphics.ES30.All.ConstantAlpha; - var _ConstantAlphaExt = OpenTK.Graphics.ES30.All.ConstantAlphaExt; - var _OneMinusConstantAlpha = OpenTK.Graphics.ES30.All.OneMinusConstantAlpha; - var _OneMinusConstantAlphaExt = OpenTK.Graphics.ES30.All.OneMinusConstantAlphaExt; - var _BlendColor = OpenTK.Graphics.ES30.All.BlendColor; - var _BlendColorExt = OpenTK.Graphics.ES30.All.BlendColorExt; - var _FuncAdd = OpenTK.Graphics.ES30.All.FuncAdd; - var _FuncAddExt = OpenTK.Graphics.ES30.All.FuncAddExt; - var _Min = OpenTK.Graphics.ES30.All.Min; - var _MinExt = OpenTK.Graphics.ES30.All.MinExt; - var _Max = OpenTK.Graphics.ES30.All.Max; - var _MaxExt = OpenTK.Graphics.ES30.All.MaxExt; - var _BlendEquation = OpenTK.Graphics.ES30.All.BlendEquation; - var _BlendEquationExt = OpenTK.Graphics.ES30.All.BlendEquationExt; - var _BlendEquationRgb = OpenTK.Graphics.ES30.All.BlendEquationRgb; - var _FuncSubtract = OpenTK.Graphics.ES30.All.FuncSubtract; - var _FuncSubtractExt = OpenTK.Graphics.ES30.All.FuncSubtractExt; - var _FuncReverseSubtract = OpenTK.Graphics.ES30.All.FuncReverseSubtract; - var _FuncReverseSubtractExt = OpenTK.Graphics.ES30.All.FuncReverseSubtractExt; - var _CmykExt = OpenTK.Graphics.ES30.All.CmykExt; - var _CmykaExt = OpenTK.Graphics.ES30.All.CmykaExt; - var _PackCmykHintExt = OpenTK.Graphics.ES30.All.PackCmykHintExt; - var _UnpackCmykHintExt = OpenTK.Graphics.ES30.All.UnpackCmykHintExt; - var _Convolution1D = OpenTK.Graphics.ES30.All.Convolution1D; - var _Convolution1DExt = OpenTK.Graphics.ES30.All.Convolution1DExt; - var _Convolution2D = OpenTK.Graphics.ES30.All.Convolution2D; - var _Convolution2DExt = OpenTK.Graphics.ES30.All.Convolution2DExt; - var _Separable2D = OpenTK.Graphics.ES30.All.Separable2D; - var _Separable2DExt = OpenTK.Graphics.ES30.All.Separable2DExt; - var _ConvolutionBorderMode = OpenTK.Graphics.ES30.All.ConvolutionBorderMode; - var _ConvolutionBorderModeExt = OpenTK.Graphics.ES30.All.ConvolutionBorderModeExt; - var _ConvolutionFilterScale = OpenTK.Graphics.ES30.All.ConvolutionFilterScale; - var _ConvolutionFilterScaleExt = OpenTK.Graphics.ES30.All.ConvolutionFilterScaleExt; - var _ConvolutionFilterBias = OpenTK.Graphics.ES30.All.ConvolutionFilterBias; - var _ConvolutionFilterBiasExt = OpenTK.Graphics.ES30.All.ConvolutionFilterBiasExt; - var _Reduce = OpenTK.Graphics.ES30.All.Reduce; - var _ReduceExt = OpenTK.Graphics.ES30.All.ReduceExt; - var _ConvolutionFormatExt = OpenTK.Graphics.ES30.All.ConvolutionFormatExt; - var _ConvolutionWidthExt = OpenTK.Graphics.ES30.All.ConvolutionWidthExt; - var _ConvolutionHeightExt = OpenTK.Graphics.ES30.All.ConvolutionHeightExt; - var _MaxConvolutionWidthExt = OpenTK.Graphics.ES30.All.MaxConvolutionWidthExt; - var _MaxConvolutionHeightExt = OpenTK.Graphics.ES30.All.MaxConvolutionHeightExt; - var _PostConvolutionRedScale = OpenTK.Graphics.ES30.All.PostConvolutionRedScale; - var _PostConvolutionRedScaleExt = OpenTK.Graphics.ES30.All.PostConvolutionRedScaleExt; - var _PostConvolutionGreenScale = OpenTK.Graphics.ES30.All.PostConvolutionGreenScale; - var _PostConvolutionGreenScaleExt = OpenTK.Graphics.ES30.All.PostConvolutionGreenScaleExt; - var _PostConvolutionBlueScale = OpenTK.Graphics.ES30.All.PostConvolutionBlueScale; - var _PostConvolutionBlueScaleExt = OpenTK.Graphics.ES30.All.PostConvolutionBlueScaleExt; - var _PostConvolutionAlphaScale = OpenTK.Graphics.ES30.All.PostConvolutionAlphaScale; - var _PostConvolutionAlphaScaleExt = OpenTK.Graphics.ES30.All.PostConvolutionAlphaScaleExt; - var _PostConvolutionRedBias = OpenTK.Graphics.ES30.All.PostConvolutionRedBias; - var _PostConvolutionRedBiasExt = OpenTK.Graphics.ES30.All.PostConvolutionRedBiasExt; - var _PostConvolutionGreenBias = OpenTK.Graphics.ES30.All.PostConvolutionGreenBias; - var _PostConvolutionGreenBiasExt = OpenTK.Graphics.ES30.All.PostConvolutionGreenBiasExt; - var _PostConvolutionBlueBias = OpenTK.Graphics.ES30.All.PostConvolutionBlueBias; - var _PostConvolutionBlueBiasExt = OpenTK.Graphics.ES30.All.PostConvolutionBlueBiasExt; - var _PostConvolutionAlphaBias = OpenTK.Graphics.ES30.All.PostConvolutionAlphaBias; - var _PostConvolutionAlphaBiasExt = OpenTK.Graphics.ES30.All.PostConvolutionAlphaBiasExt; - var _Histogram = OpenTK.Graphics.ES30.All.Histogram; - var _HistogramExt = OpenTK.Graphics.ES30.All.HistogramExt; - var _ProxyHistogram = OpenTK.Graphics.ES30.All.ProxyHistogram; - var _ProxyHistogramExt = OpenTK.Graphics.ES30.All.ProxyHistogramExt; - var _HistogramWidthExt = OpenTK.Graphics.ES30.All.HistogramWidthExt; - var _HistogramFormatExt = OpenTK.Graphics.ES30.All.HistogramFormatExt; - var _HistogramRedSizeExt = OpenTK.Graphics.ES30.All.HistogramRedSizeExt; - var _HistogramGreenSizeExt = OpenTK.Graphics.ES30.All.HistogramGreenSizeExt; - var _HistogramBlueSizeExt = OpenTK.Graphics.ES30.All.HistogramBlueSizeExt; - var _HistogramAlphaSizeExt = OpenTK.Graphics.ES30.All.HistogramAlphaSizeExt; - var _HistogramLuminanceSizeExt = OpenTK.Graphics.ES30.All.HistogramLuminanceSizeExt; - var _HistogramSinkExt = OpenTK.Graphics.ES30.All.HistogramSinkExt; - var _Minmax = OpenTK.Graphics.ES30.All.Minmax; - var _MinmaxExt = OpenTK.Graphics.ES30.All.MinmaxExt; - var _MinmaxFormat = OpenTK.Graphics.ES30.All.MinmaxFormat; - var _MinmaxFormatExt = OpenTK.Graphics.ES30.All.MinmaxFormatExt; - var _MinmaxSink = OpenTK.Graphics.ES30.All.MinmaxSink; - var _MinmaxSinkExt = OpenTK.Graphics.ES30.All.MinmaxSinkExt; - var _TableTooLarge = OpenTK.Graphics.ES30.All.TableTooLarge; - var _TableTooLargeExt = OpenTK.Graphics.ES30.All.TableTooLargeExt; - var _UnsignedByte332 = OpenTK.Graphics.ES30.All.UnsignedByte332; - var _UnsignedByte332Ext = OpenTK.Graphics.ES30.All.UnsignedByte332Ext; - var _UnsignedShort4444 = OpenTK.Graphics.ES30.All.UnsignedShort4444; - var _UnsignedShort4444Ext = OpenTK.Graphics.ES30.All.UnsignedShort4444Ext; - var _UnsignedShort5551 = OpenTK.Graphics.ES30.All.UnsignedShort5551; - var _UnsignedShort5551Ext = OpenTK.Graphics.ES30.All.UnsignedShort5551Ext; - var _UnsignedInt8888 = OpenTK.Graphics.ES30.All.UnsignedInt8888; - var _UnsignedInt8888Ext = OpenTK.Graphics.ES30.All.UnsignedInt8888Ext; - var _UnsignedInt1010102 = OpenTK.Graphics.ES30.All.UnsignedInt1010102; - var _UnsignedInt1010102Ext = OpenTK.Graphics.ES30.All.UnsignedInt1010102Ext; - var _PolygonOffsetFill = OpenTK.Graphics.ES30.All.PolygonOffsetFill; - var _PolygonOffsetFactor = OpenTK.Graphics.ES30.All.PolygonOffsetFactor; - var _PolygonOffsetBiasExt = OpenTK.Graphics.ES30.All.PolygonOffsetBiasExt; - var _RescaleNormalExt = OpenTK.Graphics.ES30.All.RescaleNormalExt; - var _Alpha4 = OpenTK.Graphics.ES30.All.Alpha4; - var _Alpha8 = OpenTK.Graphics.ES30.All.Alpha8; - var _Alpha8Ext = OpenTK.Graphics.ES30.All.Alpha8Ext; - var _Alpha8Oes = OpenTK.Graphics.ES30.All.Alpha8Oes; - var _Alpha12 = OpenTK.Graphics.ES30.All.Alpha12; - var _Alpha16 = OpenTK.Graphics.ES30.All.Alpha16; - var _Luminance4 = OpenTK.Graphics.ES30.All.Luminance4; - var _Luminance8 = OpenTK.Graphics.ES30.All.Luminance8; - var _Luminance8Ext = OpenTK.Graphics.ES30.All.Luminance8Ext; - var _Luminance8Oes = OpenTK.Graphics.ES30.All.Luminance8Oes; - var _Luminance12 = OpenTK.Graphics.ES30.All.Luminance12; - var _Luminance16 = OpenTK.Graphics.ES30.All.Luminance16; - var _Luminance4Alpha4 = OpenTK.Graphics.ES30.All.Luminance4Alpha4; - var _Luminance4Alpha4Oes = OpenTK.Graphics.ES30.All.Luminance4Alpha4Oes; - var _Luminance6Alpha2 = OpenTK.Graphics.ES30.All.Luminance6Alpha2; - var _Luminance8Alpha8 = OpenTK.Graphics.ES30.All.Luminance8Alpha8; - var _Luminance8Alpha8Ext = OpenTK.Graphics.ES30.All.Luminance8Alpha8Ext; - var _Luminance8Alpha8Oes = OpenTK.Graphics.ES30.All.Luminance8Alpha8Oes; - var _Luminance12Alpha4 = OpenTK.Graphics.ES30.All.Luminance12Alpha4; - var _Luminance12Alpha12 = OpenTK.Graphics.ES30.All.Luminance12Alpha12; - var _Luminance16Alpha16 = OpenTK.Graphics.ES30.All.Luminance16Alpha16; - var _Intensity = OpenTK.Graphics.ES30.All.Intensity; - var _Intensity4 = OpenTK.Graphics.ES30.All.Intensity4; - var _Intensity8 = OpenTK.Graphics.ES30.All.Intensity8; - var _Intensity12 = OpenTK.Graphics.ES30.All.Intensity12; - var _Intensity16 = OpenTK.Graphics.ES30.All.Intensity16; - var _Rgb2Ext = OpenTK.Graphics.ES30.All.Rgb2Ext; - var _Rgb4 = OpenTK.Graphics.ES30.All.Rgb4; - var _Rgb5 = OpenTK.Graphics.ES30.All.Rgb5; - var _Rgb8 = OpenTK.Graphics.ES30.All.Rgb8; - var _Rgb8Oes = OpenTK.Graphics.ES30.All.Rgb8Oes; - var _Rgb10 = OpenTK.Graphics.ES30.All.Rgb10; - var _Rgb10Ext = OpenTK.Graphics.ES30.All.Rgb10Ext; - var _Rgb12 = OpenTK.Graphics.ES30.All.Rgb12; - var _Rgb16 = OpenTK.Graphics.ES30.All.Rgb16; - var _Rgba2 = OpenTK.Graphics.ES30.All.Rgba2; - var _Rgba4Oes = OpenTK.Graphics.ES30.All.Rgba4Oes; - var _Rgba4 = OpenTK.Graphics.ES30.All.Rgba4; - var _Rgb5A1 = OpenTK.Graphics.ES30.All.Rgb5A1; - var _Rgb5A1Oes = OpenTK.Graphics.ES30.All.Rgb5A1Oes; - var _Rgba8 = OpenTK.Graphics.ES30.All.Rgba8; - var _Rgba8Oes = OpenTK.Graphics.ES30.All.Rgba8Oes; - var _Rgb10A2 = OpenTK.Graphics.ES30.All.Rgb10A2; - var _Rgb10A2Ext = OpenTK.Graphics.ES30.All.Rgb10A2Ext; - var _Rgba12 = OpenTK.Graphics.ES30.All.Rgba12; - var _Rgba16 = OpenTK.Graphics.ES30.All.Rgba16; - var _TextureRedSize = OpenTK.Graphics.ES30.All.TextureRedSize; - var _TextureGreenSize = OpenTK.Graphics.ES30.All.TextureGreenSize; - var _TextureBlueSize = OpenTK.Graphics.ES30.All.TextureBlueSize; - var _TextureAlphaSize = OpenTK.Graphics.ES30.All.TextureAlphaSize; - var _TextureLuminanceSize = OpenTK.Graphics.ES30.All.TextureLuminanceSize; - var _TextureIntensitySize = OpenTK.Graphics.ES30.All.TextureIntensitySize; - var _ReplaceExt = OpenTK.Graphics.ES30.All.ReplaceExt; - var _ProxyTexture1D = OpenTK.Graphics.ES30.All.ProxyTexture1D; - var _ProxyTexture1DExt = OpenTK.Graphics.ES30.All.ProxyTexture1DExt; - var _ProxyTexture2D = OpenTK.Graphics.ES30.All.ProxyTexture2D; - var _ProxyTexture2DExt = OpenTK.Graphics.ES30.All.ProxyTexture2DExt; - var _TextureTooLargeExt = OpenTK.Graphics.ES30.All.TextureTooLargeExt; - var _TexturePriority = OpenTK.Graphics.ES30.All.TexturePriority; - var _TexturePriorityExt = OpenTK.Graphics.ES30.All.TexturePriorityExt; - var _TextureResident = OpenTK.Graphics.ES30.All.TextureResident; - var _TextureBinding1D = OpenTK.Graphics.ES30.All.TextureBinding1D; - var _TextureBinding2D = OpenTK.Graphics.ES30.All.TextureBinding2D; - var _Texture3DBindingExt = OpenTK.Graphics.ES30.All.Texture3DBindingExt; - var _TextureBinding3D = OpenTK.Graphics.ES30.All.TextureBinding3D; - var _TextureBinding3DOes = OpenTK.Graphics.ES30.All.TextureBinding3DOes; - var _PackSkipImages = OpenTK.Graphics.ES30.All.PackSkipImages; - var _PackSkipImagesExt = OpenTK.Graphics.ES30.All.PackSkipImagesExt; - var _PackImageHeight = OpenTK.Graphics.ES30.All.PackImageHeight; - var _PackImageHeightExt = OpenTK.Graphics.ES30.All.PackImageHeightExt; - var _UnpackSkipImages = OpenTK.Graphics.ES30.All.UnpackSkipImages; - var _UnpackSkipImagesExt = OpenTK.Graphics.ES30.All.UnpackSkipImagesExt; - var _UnpackImageHeight = OpenTK.Graphics.ES30.All.UnpackImageHeight; - var _UnpackImageHeightExt = OpenTK.Graphics.ES30.All.UnpackImageHeightExt; - var _Texture3D = OpenTK.Graphics.ES30.All.Texture3D; - var _Texture3DExt = OpenTK.Graphics.ES30.All.Texture3DExt; - var _Texture3DOes = OpenTK.Graphics.ES30.All.Texture3DOes; - var _ProxyTexture3D = OpenTK.Graphics.ES30.All.ProxyTexture3D; - var _ProxyTexture3DExt = OpenTK.Graphics.ES30.All.ProxyTexture3DExt; - var _TextureDepthExt = OpenTK.Graphics.ES30.All.TextureDepthExt; - var _TextureWrapR = OpenTK.Graphics.ES30.All.TextureWrapR; - var _TextureWrapRExt = OpenTK.Graphics.ES30.All.TextureWrapRExt; - var _TextureWrapROes = OpenTK.Graphics.ES30.All.TextureWrapROes; - var _Max3DTextureSize = OpenTK.Graphics.ES30.All.Max3DTextureSize; - var _Max3DTextureSizeExt = OpenTK.Graphics.ES30.All.Max3DTextureSizeExt; - var _Max3DTextureSizeOes = OpenTK.Graphics.ES30.All.Max3DTextureSizeOes; - var _VertexArray = OpenTK.Graphics.ES30.All.VertexArray; - var _VertexArrayKhr = OpenTK.Graphics.ES30.All.VertexArrayKhr; - var _NormalArray = OpenTK.Graphics.ES30.All.NormalArray; - var _ColorArray = OpenTK.Graphics.ES30.All.ColorArray; - var _IndexArray = OpenTK.Graphics.ES30.All.IndexArray; - var _TextureCoordArray = OpenTK.Graphics.ES30.All.TextureCoordArray; - var _EdgeFlagArray = OpenTK.Graphics.ES30.All.EdgeFlagArray; - var _VertexArraySize = OpenTK.Graphics.ES30.All.VertexArraySize; - var _VertexArrayType = OpenTK.Graphics.ES30.All.VertexArrayType; - var _VertexArrayStride = OpenTK.Graphics.ES30.All.VertexArrayStride; - var _VertexArrayCountExt = OpenTK.Graphics.ES30.All.VertexArrayCountExt; - var _NormalArrayType = OpenTK.Graphics.ES30.All.NormalArrayType; - var _NormalArrayStride = OpenTK.Graphics.ES30.All.NormalArrayStride; - var _NormalArrayCountExt = OpenTK.Graphics.ES30.All.NormalArrayCountExt; - var _ColorArraySize = OpenTK.Graphics.ES30.All.ColorArraySize; - var _ColorArrayType = OpenTK.Graphics.ES30.All.ColorArrayType; - var _ColorArrayStride = OpenTK.Graphics.ES30.All.ColorArrayStride; - var _ColorArrayCountExt = OpenTK.Graphics.ES30.All.ColorArrayCountExt; - var _IndexArrayType = OpenTK.Graphics.ES30.All.IndexArrayType; - var _IndexArrayStride = OpenTK.Graphics.ES30.All.IndexArrayStride; - var _IndexArrayCountExt = OpenTK.Graphics.ES30.All.IndexArrayCountExt; - var _TextureCoordArraySize = OpenTK.Graphics.ES30.All.TextureCoordArraySize; - var _TextureCoordArrayType = OpenTK.Graphics.ES30.All.TextureCoordArrayType; - var _TextureCoordArrayStride = OpenTK.Graphics.ES30.All.TextureCoordArrayStride; - var _TextureCoordArrayCountExt = OpenTK.Graphics.ES30.All.TextureCoordArrayCountExt; - var _EdgeFlagArrayStride = OpenTK.Graphics.ES30.All.EdgeFlagArrayStride; - var _EdgeFlagArrayCountExt = OpenTK.Graphics.ES30.All.EdgeFlagArrayCountExt; - var _VertexArrayPointer = OpenTK.Graphics.ES30.All.VertexArrayPointer; - var _VertexArrayPointerExt = OpenTK.Graphics.ES30.All.VertexArrayPointerExt; - var _NormalArrayPointer = OpenTK.Graphics.ES30.All.NormalArrayPointer; - var _NormalArrayPointerExt = OpenTK.Graphics.ES30.All.NormalArrayPointerExt; - var _ColorArrayPointer = OpenTK.Graphics.ES30.All.ColorArrayPointer; - var _ColorArrayPointerExt = OpenTK.Graphics.ES30.All.ColorArrayPointerExt; - var _IndexArrayPointer = OpenTK.Graphics.ES30.All.IndexArrayPointer; - var _IndexArrayPointerExt = OpenTK.Graphics.ES30.All.IndexArrayPointerExt; - var _TextureCoordArrayPointer = OpenTK.Graphics.ES30.All.TextureCoordArrayPointer; - var _TextureCoordArrayPointerExt = OpenTK.Graphics.ES30.All.TextureCoordArrayPointerExt; - var _EdgeFlagArrayPointer = OpenTK.Graphics.ES30.All.EdgeFlagArrayPointer; - var _EdgeFlagArrayPointerExt = OpenTK.Graphics.ES30.All.EdgeFlagArrayPointerExt; - var _InterlaceSgix = OpenTK.Graphics.ES30.All.InterlaceSgix; - var _DetailTexture2DSgis = OpenTK.Graphics.ES30.All.DetailTexture2DSgis; - var _DetailTexture2DBindingSgis = OpenTK.Graphics.ES30.All.DetailTexture2DBindingSgis; - var _LinearDetailSgis = OpenTK.Graphics.ES30.All.LinearDetailSgis; - var _LinearDetailAlphaSgis = OpenTK.Graphics.ES30.All.LinearDetailAlphaSgis; - var _LinearDetailColorSgis = OpenTK.Graphics.ES30.All.LinearDetailColorSgis; - var _DetailTextureLevelSgis = OpenTK.Graphics.ES30.All.DetailTextureLevelSgis; - var _DetailTextureModeSgis = OpenTK.Graphics.ES30.All.DetailTextureModeSgis; - var _DetailTextureFuncPointsSgis = OpenTK.Graphics.ES30.All.DetailTextureFuncPointsSgis; - var _MultisampleSgis = OpenTK.Graphics.ES30.All.MultisampleSgis; - var _SampleAlphaToCoverage = OpenTK.Graphics.ES30.All.SampleAlphaToCoverage; - var _SampleAlphaToMaskSgis = OpenTK.Graphics.ES30.All.SampleAlphaToMaskSgis; - var _SampleAlphaToOneSgis = OpenTK.Graphics.ES30.All.SampleAlphaToOneSgis; - var _SampleCoverage = OpenTK.Graphics.ES30.All.SampleCoverage; - var _SampleMaskSgis = OpenTK.Graphics.ES30.All.SampleMaskSgis; - var _Gl1PassExt = OpenTK.Graphics.ES30.All.Gl1PassExt; - var _Gl1PassSgis = OpenTK.Graphics.ES30.All.Gl1PassSgis; - var _Gl2Pass0Ext = OpenTK.Graphics.ES30.All.Gl2Pass0Ext; - var _Gl2Pass0Sgis = OpenTK.Graphics.ES30.All.Gl2Pass0Sgis; - var _Gl2Pass1Ext = OpenTK.Graphics.ES30.All.Gl2Pass1Ext; - var _Gl2Pass1Sgis = OpenTK.Graphics.ES30.All.Gl2Pass1Sgis; - var _Gl4Pass0Ext = OpenTK.Graphics.ES30.All.Gl4Pass0Ext; - var _Gl4Pass0Sgis = OpenTK.Graphics.ES30.All.Gl4Pass0Sgis; - var _Gl4Pass1Ext = OpenTK.Graphics.ES30.All.Gl4Pass1Ext; - var _Gl4Pass1Sgis = OpenTK.Graphics.ES30.All.Gl4Pass1Sgis; - var _Gl4Pass2Ext = OpenTK.Graphics.ES30.All.Gl4Pass2Ext; - var _Gl4Pass2Sgis = OpenTK.Graphics.ES30.All.Gl4Pass2Sgis; - var _Gl4Pass3Ext = OpenTK.Graphics.ES30.All.Gl4Pass3Ext; - var _Gl4Pass3Sgis = OpenTK.Graphics.ES30.All.Gl4Pass3Sgis; - var _SampleBuffers = OpenTK.Graphics.ES30.All.SampleBuffers; - var _SampleBuffersSgis = OpenTK.Graphics.ES30.All.SampleBuffersSgis; - var _SamplesSgis = OpenTK.Graphics.ES30.All.SamplesSgis; - var _Samples = OpenTK.Graphics.ES30.All.Samples; - var _SampleCoverageValue = OpenTK.Graphics.ES30.All.SampleCoverageValue; - var _SampleMaskValueSgis = OpenTK.Graphics.ES30.All.SampleMaskValueSgis; - var _SampleCoverageInvert = OpenTK.Graphics.ES30.All.SampleCoverageInvert; - var _SampleMaskInvertSgis = OpenTK.Graphics.ES30.All.SampleMaskInvertSgis; - var _SamplePatternSgis = OpenTK.Graphics.ES30.All.SamplePatternSgis; - var _LinearSharpenSgis = OpenTK.Graphics.ES30.All.LinearSharpenSgis; - var _LinearSharpenAlphaSgis = OpenTK.Graphics.ES30.All.LinearSharpenAlphaSgis; - var _LinearSharpenColorSgis = OpenTK.Graphics.ES30.All.LinearSharpenColorSgis; - var _SharpenTextureFuncPointsSgis = OpenTK.Graphics.ES30.All.SharpenTextureFuncPointsSgis; - var _ColorMatrixSgi = OpenTK.Graphics.ES30.All.ColorMatrixSgi; - var _ColorMatrixStackDepthSgi = OpenTK.Graphics.ES30.All.ColorMatrixStackDepthSgi; - var _MaxColorMatrixStackDepthSgi = OpenTK.Graphics.ES30.All.MaxColorMatrixStackDepthSgi; - var _PostColorMatrixRedScale = OpenTK.Graphics.ES30.All.PostColorMatrixRedScale; - var _PostColorMatrixRedScaleSgi = OpenTK.Graphics.ES30.All.PostColorMatrixRedScaleSgi; - var _PostColorMatrixGreenScale = OpenTK.Graphics.ES30.All.PostColorMatrixGreenScale; - var _PostColorMatrixGreenScaleSgi = OpenTK.Graphics.ES30.All.PostColorMatrixGreenScaleSgi; - var _PostColorMatrixBlueScale = OpenTK.Graphics.ES30.All.PostColorMatrixBlueScale; - var _PostColorMatrixBlueScaleSgi = OpenTK.Graphics.ES30.All.PostColorMatrixBlueScaleSgi; - var _PostColorMatrixAlphaScale = OpenTK.Graphics.ES30.All.PostColorMatrixAlphaScale; - var _PostColorMatrixAlphaScaleSgi = OpenTK.Graphics.ES30.All.PostColorMatrixAlphaScaleSgi; - var _PostColorMatrixRedBias = OpenTK.Graphics.ES30.All.PostColorMatrixRedBias; - var _PostColorMatrixRedBiasSgi = OpenTK.Graphics.ES30.All.PostColorMatrixRedBiasSgi; - var _PostColorMatrixGreenBias = OpenTK.Graphics.ES30.All.PostColorMatrixGreenBias; - var _PostColorMatrixGreenBiasSgi = OpenTK.Graphics.ES30.All.PostColorMatrixGreenBiasSgi; - var _PostColorMatrixBlueBias = OpenTK.Graphics.ES30.All.PostColorMatrixBlueBias; - var _PostColorMatrixBlueBiasSgi = OpenTK.Graphics.ES30.All.PostColorMatrixBlueBiasSgi; - var _PostColorMatrixAlphaBias = OpenTK.Graphics.ES30.All.PostColorMatrixAlphaBias; - var _PostColorMatrixAlphaBiasSgi = OpenTK.Graphics.ES30.All.PostColorMatrixAlphaBiasSgi; - var _TextureColorTableSgi = OpenTK.Graphics.ES30.All.TextureColorTableSgi; - var _ProxyTextureColorTableSgi = OpenTK.Graphics.ES30.All.ProxyTextureColorTableSgi; - var _TextureEnvBiasSgix = OpenTK.Graphics.ES30.All.TextureEnvBiasSgix; - var _ShadowAmbientSgix = OpenTK.Graphics.ES30.All.ShadowAmbientSgix; - var _BlendDstRgb = OpenTK.Graphics.ES30.All.BlendDstRgb; - var _BlendSrcRgb = OpenTK.Graphics.ES30.All.BlendSrcRgb; - var _BlendDstAlpha = OpenTK.Graphics.ES30.All.BlendDstAlpha; - var _BlendSrcAlpha = OpenTK.Graphics.ES30.All.BlendSrcAlpha; - var _ColorTable = OpenTK.Graphics.ES30.All.ColorTable; - var _ColorTableSgi = OpenTK.Graphics.ES30.All.ColorTableSgi; - var _PostConvolutionColorTable = OpenTK.Graphics.ES30.All.PostConvolutionColorTable; - var _PostConvolutionColorTableSgi = OpenTK.Graphics.ES30.All.PostConvolutionColorTableSgi; - var _PostColorMatrixColorTable = OpenTK.Graphics.ES30.All.PostColorMatrixColorTable; - var _PostColorMatrixColorTableSgi = OpenTK.Graphics.ES30.All.PostColorMatrixColorTableSgi; - var _ProxyColorTable = OpenTK.Graphics.ES30.All.ProxyColorTable; - var _ProxyColorTableSgi = OpenTK.Graphics.ES30.All.ProxyColorTableSgi; - var _ProxyPostConvolutionColorTable = OpenTK.Graphics.ES30.All.ProxyPostConvolutionColorTable; - var _ProxyPostConvolutionColorTableSgi = OpenTK.Graphics.ES30.All.ProxyPostConvolutionColorTableSgi; - var _ProxyPostColorMatrixColorTable = OpenTK.Graphics.ES30.All.ProxyPostColorMatrixColorTable; - var _ProxyPostColorMatrixColorTableSgi = OpenTK.Graphics.ES30.All.ProxyPostColorMatrixColorTableSgi; - var _ColorTableScale = OpenTK.Graphics.ES30.All.ColorTableScale; - var _ColorTableScaleSgi = OpenTK.Graphics.ES30.All.ColorTableScaleSgi; - var _ColorTableBias = OpenTK.Graphics.ES30.All.ColorTableBias; - var _ColorTableBiasSgi = OpenTK.Graphics.ES30.All.ColorTableBiasSgi; - var _ColorTableFormatSgi = OpenTK.Graphics.ES30.All.ColorTableFormatSgi; - var _ColorTableWidthSgi = OpenTK.Graphics.ES30.All.ColorTableWidthSgi; - var _ColorTableRedSizeSgi = OpenTK.Graphics.ES30.All.ColorTableRedSizeSgi; - var _ColorTableGreenSizeSgi = OpenTK.Graphics.ES30.All.ColorTableGreenSizeSgi; - var _ColorTableBlueSizeSgi = OpenTK.Graphics.ES30.All.ColorTableBlueSizeSgi; - var _ColorTableAlphaSizeSgi = OpenTK.Graphics.ES30.All.ColorTableAlphaSizeSgi; - var _ColorTableLuminanceSizeSgi = OpenTK.Graphics.ES30.All.ColorTableLuminanceSizeSgi; - var _ColorTableIntensitySizeSgi = OpenTK.Graphics.ES30.All.ColorTableIntensitySizeSgi; - var _BgraExt = OpenTK.Graphics.ES30.All.BgraExt; - var _BgraImg = OpenTK.Graphics.ES30.All.BgraImg; - var _MaxElementsVertices = OpenTK.Graphics.ES30.All.MaxElementsVertices; - var _MaxElementsIndices = OpenTK.Graphics.ES30.All.MaxElementsIndices; - var _PhongHintWin = OpenTK.Graphics.ES30.All.PhongHintWin; - var _ClipVolumeClippingHintExt = OpenTK.Graphics.ES30.All.ClipVolumeClippingHintExt; - var _DualAlpha4Sgis = OpenTK.Graphics.ES30.All.DualAlpha4Sgis; - var _DualAlpha8Sgis = OpenTK.Graphics.ES30.All.DualAlpha8Sgis; - var _DualAlpha12Sgis = OpenTK.Graphics.ES30.All.DualAlpha12Sgis; - var _DualAlpha16Sgis = OpenTK.Graphics.ES30.All.DualAlpha16Sgis; - var _DualLuminance4Sgis = OpenTK.Graphics.ES30.All.DualLuminance4Sgis; - var _DualLuminance8Sgis = OpenTK.Graphics.ES30.All.DualLuminance8Sgis; - var _DualLuminance12Sgis = OpenTK.Graphics.ES30.All.DualLuminance12Sgis; - var _DualLuminance16Sgis = OpenTK.Graphics.ES30.All.DualLuminance16Sgis; - var _DualIntensity4Sgis = OpenTK.Graphics.ES30.All.DualIntensity4Sgis; - var _DualIntensity8Sgis = OpenTK.Graphics.ES30.All.DualIntensity8Sgis; - var _DualIntensity12Sgis = OpenTK.Graphics.ES30.All.DualIntensity12Sgis; - var _DualIntensity16Sgis = OpenTK.Graphics.ES30.All.DualIntensity16Sgis; - var _DualLuminanceAlpha4Sgis = OpenTK.Graphics.ES30.All.DualLuminanceAlpha4Sgis; - var _DualLuminanceAlpha8Sgis = OpenTK.Graphics.ES30.All.DualLuminanceAlpha8Sgis; - var _QuadAlpha4Sgis = OpenTK.Graphics.ES30.All.QuadAlpha4Sgis; - var _QuadAlpha8Sgis = OpenTK.Graphics.ES30.All.QuadAlpha8Sgis; - var _QuadLuminance4Sgis = OpenTK.Graphics.ES30.All.QuadLuminance4Sgis; - var _QuadLuminance8Sgis = OpenTK.Graphics.ES30.All.QuadLuminance8Sgis; - var _QuadIntensity4Sgis = OpenTK.Graphics.ES30.All.QuadIntensity4Sgis; - var _QuadIntensity8Sgis = OpenTK.Graphics.ES30.All.QuadIntensity8Sgis; - var _DualTextureSelectSgis = OpenTK.Graphics.ES30.All.DualTextureSelectSgis; - var _QuadTextureSelectSgis = OpenTK.Graphics.ES30.All.QuadTextureSelectSgis; - var _PointSizeMin = OpenTK.Graphics.ES30.All.PointSizeMin; - var _PointSizeMinArb = OpenTK.Graphics.ES30.All.PointSizeMinArb; - var _PointSizeMinExt = OpenTK.Graphics.ES30.All.PointSizeMinExt; - var _PointSizeMinSgis = OpenTK.Graphics.ES30.All.PointSizeMinSgis; - var _PointSizeMax = OpenTK.Graphics.ES30.All.PointSizeMax; - var _PointSizeMaxArb = OpenTK.Graphics.ES30.All.PointSizeMaxArb; - var _PointSizeMaxExt = OpenTK.Graphics.ES30.All.PointSizeMaxExt; - var _PointSizeMaxSgis = OpenTK.Graphics.ES30.All.PointSizeMaxSgis; - var _PointFadeThresholdSize = OpenTK.Graphics.ES30.All.PointFadeThresholdSize; - var _PointFadeThresholdSizeArb = OpenTK.Graphics.ES30.All.PointFadeThresholdSizeArb; - var _PointFadeThresholdSizeExt = OpenTK.Graphics.ES30.All.PointFadeThresholdSizeExt; - var _PointFadeThresholdSizeSgis = OpenTK.Graphics.ES30.All.PointFadeThresholdSizeSgis; - var _DistanceAttenuationExt = OpenTK.Graphics.ES30.All.DistanceAttenuationExt; - var _DistanceAttenuationSgis = OpenTK.Graphics.ES30.All.DistanceAttenuationSgis; - var _PointDistanceAttenuation = OpenTK.Graphics.ES30.All.PointDistanceAttenuation; - var _PointDistanceAttenuationArb = OpenTK.Graphics.ES30.All.PointDistanceAttenuationArb; - var _FogFuncSgis = OpenTK.Graphics.ES30.All.FogFuncSgis; - var _FogFuncPointsSgis = OpenTK.Graphics.ES30.All.FogFuncPointsSgis; - var _MaxFogFuncPointsSgis = OpenTK.Graphics.ES30.All.MaxFogFuncPointsSgis; - var _ClampToBorder = OpenTK.Graphics.ES30.All.ClampToBorder; - var _ClampToBorderArb = OpenTK.Graphics.ES30.All.ClampToBorderArb; - var _ClampToBorderExt = OpenTK.Graphics.ES30.All.ClampToBorderExt; - var _ClampToBorderNv = OpenTK.Graphics.ES30.All.ClampToBorderNv; - var _ClampToBorderSgis = OpenTK.Graphics.ES30.All.ClampToBorderSgis; - var _TextureMultiBufferHintSgix = OpenTK.Graphics.ES30.All.TextureMultiBufferHintSgix; - var _ClampToEdge = OpenTK.Graphics.ES30.All.ClampToEdge; - var _ClampToEdgeSgis = OpenTK.Graphics.ES30.All.ClampToEdgeSgis; - var _PackSkipVolumesSgis = OpenTK.Graphics.ES30.All.PackSkipVolumesSgis; - var _PackImageDepthSgis = OpenTK.Graphics.ES30.All.PackImageDepthSgis; - var _UnpackSkipVolumesSgis = OpenTK.Graphics.ES30.All.UnpackSkipVolumesSgis; - var _UnpackImageDepthSgis = OpenTK.Graphics.ES30.All.UnpackImageDepthSgis; - var _Texture4DSgis = OpenTK.Graphics.ES30.All.Texture4DSgis; - var _ProxyTexture4DSgis = OpenTK.Graphics.ES30.All.ProxyTexture4DSgis; - var _Texture4DsizeSgis = OpenTK.Graphics.ES30.All.Texture4DsizeSgis; - var _TextureWrapQSgis = OpenTK.Graphics.ES30.All.TextureWrapQSgis; - var _Max4DTextureSizeSgis = OpenTK.Graphics.ES30.All.Max4DTextureSizeSgis; - var _PixelTexGenSgix = OpenTK.Graphics.ES30.All.PixelTexGenSgix; - var _TextureMinLod = OpenTK.Graphics.ES30.All.TextureMinLod; - var _TextureMinLodSgis = OpenTK.Graphics.ES30.All.TextureMinLodSgis; - var _TextureMaxLod = OpenTK.Graphics.ES30.All.TextureMaxLod; - var _TextureMaxLodSgis = OpenTK.Graphics.ES30.All.TextureMaxLodSgis; - var _TextureBaseLevel = OpenTK.Graphics.ES30.All.TextureBaseLevel; - var _TextureBaseLevelSgis = OpenTK.Graphics.ES30.All.TextureBaseLevelSgis; - var _TextureMaxLevel = OpenTK.Graphics.ES30.All.TextureMaxLevel; - var _TextureMaxLevelApple = OpenTK.Graphics.ES30.All.TextureMaxLevelApple; - var _TextureMaxLevelSgis = OpenTK.Graphics.ES30.All.TextureMaxLevelSgis; - var _PixelTileBestAlignmentSgix = OpenTK.Graphics.ES30.All.PixelTileBestAlignmentSgix; - var _PixelTileCacheIncrementSgix = OpenTK.Graphics.ES30.All.PixelTileCacheIncrementSgix; - var _PixelTileWidthSgix = OpenTK.Graphics.ES30.All.PixelTileWidthSgix; - var _PixelTileHeightSgix = OpenTK.Graphics.ES30.All.PixelTileHeightSgix; - var _PixelTileGridWidthSgix = OpenTK.Graphics.ES30.All.PixelTileGridWidthSgix; - var _PixelTileGridHeightSgix = OpenTK.Graphics.ES30.All.PixelTileGridHeightSgix; - var _PixelTileGridDepthSgix = OpenTK.Graphics.ES30.All.PixelTileGridDepthSgix; - var _PixelTileCacheSizeSgix = OpenTK.Graphics.ES30.All.PixelTileCacheSizeSgix; - var _Filter4Sgis = OpenTK.Graphics.ES30.All.Filter4Sgis; - var _TextureFilter4SizeSgis = OpenTK.Graphics.ES30.All.TextureFilter4SizeSgis; - var _SpriteSgix = OpenTK.Graphics.ES30.All.SpriteSgix; - var _SpriteModeSgix = OpenTK.Graphics.ES30.All.SpriteModeSgix; - var _SpriteAxisSgix = OpenTK.Graphics.ES30.All.SpriteAxisSgix; - var _SpriteTranslationSgix = OpenTK.Graphics.ES30.All.SpriteTranslationSgix; - var _Texture4DBindingSgis = OpenTK.Graphics.ES30.All.Texture4DBindingSgis; - var _LinearClipmapLinearSgix = OpenTK.Graphics.ES30.All.LinearClipmapLinearSgix; - var _TextureClipmapCenterSgix = OpenTK.Graphics.ES30.All.TextureClipmapCenterSgix; - var _TextureClipmapFrameSgix = OpenTK.Graphics.ES30.All.TextureClipmapFrameSgix; - var _TextureClipmapOffsetSgix = OpenTK.Graphics.ES30.All.TextureClipmapOffsetSgix; - var _TextureClipmapVirtualDepthSgix = OpenTK.Graphics.ES30.All.TextureClipmapVirtualDepthSgix; - var _TextureClipmapLodOffsetSgix = OpenTK.Graphics.ES30.All.TextureClipmapLodOffsetSgix; - var _TextureClipmapDepthSgix = OpenTK.Graphics.ES30.All.TextureClipmapDepthSgix; - var _MaxClipmapDepthSgix = OpenTK.Graphics.ES30.All.MaxClipmapDepthSgix; - var _MaxClipmapVirtualDepthSgix = OpenTK.Graphics.ES30.All.MaxClipmapVirtualDepthSgix; - var _PostTextureFilterBiasSgix = OpenTK.Graphics.ES30.All.PostTextureFilterBiasSgix; - var _PostTextureFilterScaleSgix = OpenTK.Graphics.ES30.All.PostTextureFilterScaleSgix; - var _PostTextureFilterBiasRangeSgix = OpenTK.Graphics.ES30.All.PostTextureFilterBiasRangeSgix; - var _PostTextureFilterScaleRangeSgix = OpenTK.Graphics.ES30.All.PostTextureFilterScaleRangeSgix; - var _ReferencePlaneSgix = OpenTK.Graphics.ES30.All.ReferencePlaneSgix; - var _ReferencePlaneEquationSgix = OpenTK.Graphics.ES30.All.ReferencePlaneEquationSgix; - var _IrInstrument1Sgix = OpenTK.Graphics.ES30.All.IrInstrument1Sgix; - var _InstrumentBufferPointerSgix = OpenTK.Graphics.ES30.All.InstrumentBufferPointerSgix; - var _InstrumentMeasurementsSgix = OpenTK.Graphics.ES30.All.InstrumentMeasurementsSgix; - var _ListPrioritySgix = OpenTK.Graphics.ES30.All.ListPrioritySgix; - var _CalligraphicFragmentSgix = OpenTK.Graphics.ES30.All.CalligraphicFragmentSgix; - var _PixelTexGenQCeilingSgix = OpenTK.Graphics.ES30.All.PixelTexGenQCeilingSgix; - var _PixelTexGenQRoundSgix = OpenTK.Graphics.ES30.All.PixelTexGenQRoundSgix; - var _PixelTexGenQFloorSgix = OpenTK.Graphics.ES30.All.PixelTexGenQFloorSgix; - var _PixelTexGenAlphaReplaceSgix = OpenTK.Graphics.ES30.All.PixelTexGenAlphaReplaceSgix; - var _PixelTexGenAlphaNoReplaceSgix = OpenTK.Graphics.ES30.All.PixelTexGenAlphaNoReplaceSgix; - var _PixelTexGenAlphaLsSgix = OpenTK.Graphics.ES30.All.PixelTexGenAlphaLsSgix; - var _PixelTexGenAlphaMsSgix = OpenTK.Graphics.ES30.All.PixelTexGenAlphaMsSgix; - var _FramezoomSgix = OpenTK.Graphics.ES30.All.FramezoomSgix; - var _FramezoomFactorSgix = OpenTK.Graphics.ES30.All.FramezoomFactorSgix; - var _MaxFramezoomFactorSgix = OpenTK.Graphics.ES30.All.MaxFramezoomFactorSgix; - var _TextureLodBiasSSgix = OpenTK.Graphics.ES30.All.TextureLodBiasSSgix; - var _TextureLodBiasTSgix = OpenTK.Graphics.ES30.All.TextureLodBiasTSgix; - var _TextureLodBiasRSgix = OpenTK.Graphics.ES30.All.TextureLodBiasRSgix; - var _GenerateMipmap = OpenTK.Graphics.ES30.All.GenerateMipmap; - var _GenerateMipmapSgis = OpenTK.Graphics.ES30.All.GenerateMipmapSgis; - var _GenerateMipmapHint = OpenTK.Graphics.ES30.All.GenerateMipmapHint; - var _GenerateMipmapHintSgis = OpenTK.Graphics.ES30.All.GenerateMipmapHintSgis; - var _GeometryDeformationSgix = OpenTK.Graphics.ES30.All.GeometryDeformationSgix; - var _TextureDeformationSgix = OpenTK.Graphics.ES30.All.TextureDeformationSgix; - var _DeformationsMaskSgix = OpenTK.Graphics.ES30.All.DeformationsMaskSgix; - var _FogOffsetSgix = OpenTK.Graphics.ES30.All.FogOffsetSgix; - var _FogOffsetValueSgix = OpenTK.Graphics.ES30.All.FogOffsetValueSgix; - var _TextureCompareSgix = OpenTK.Graphics.ES30.All.TextureCompareSgix; - var _TextureCompareOperatorSgix = OpenTK.Graphics.ES30.All.TextureCompareOperatorSgix; - var _TextureLequalRSgix = OpenTK.Graphics.ES30.All.TextureLequalRSgix; - var _TextureGequalRSgix = OpenTK.Graphics.ES30.All.TextureGequalRSgix; - var _DepthComponent16 = OpenTK.Graphics.ES30.All.DepthComponent16; - var _DepthComponent16Oes = OpenTK.Graphics.ES30.All.DepthComponent16Oes; - var _DepthComponent16Sgix = OpenTK.Graphics.ES30.All.DepthComponent16Sgix; - var _DepthComponent24 = OpenTK.Graphics.ES30.All.DepthComponent24; - var _DepthComponent24Oes = OpenTK.Graphics.ES30.All.DepthComponent24Oes; - var _DepthComponent24Sgix = OpenTK.Graphics.ES30.All.DepthComponent24Sgix; - var _DepthComponent32Oes = OpenTK.Graphics.ES30.All.DepthComponent32Oes; - var _DepthComponent32Sgix = OpenTK.Graphics.ES30.All.DepthComponent32Sgix; - var _Ycrcb422Sgix = OpenTK.Graphics.ES30.All.Ycrcb422Sgix; - var _Ycrcb444Sgix = OpenTK.Graphics.ES30.All.Ycrcb444Sgix; - var _EyeDistanceToPointSgis = OpenTK.Graphics.ES30.All.EyeDistanceToPointSgis; - var _ObjectDistanceToPointSgis = OpenTK.Graphics.ES30.All.ObjectDistanceToPointSgis; - var _EyeDistanceToLineSgis = OpenTK.Graphics.ES30.All.EyeDistanceToLineSgis; - var _ObjectDistanceToLineSgis = OpenTK.Graphics.ES30.All.ObjectDistanceToLineSgis; - var _EyePointSgis = OpenTK.Graphics.ES30.All.EyePointSgis; - var _ObjectPointSgis = OpenTK.Graphics.ES30.All.ObjectPointSgis; - var _EyeLineSgis = OpenTK.Graphics.ES30.All.EyeLineSgis; - var _ObjectLineSgis = OpenTK.Graphics.ES30.All.ObjectLineSgis; - var _LightModelColorControl = OpenTK.Graphics.ES30.All.LightModelColorControl; - var _LightModelColorControlExt = OpenTK.Graphics.ES30.All.LightModelColorControlExt; - var _SingleColor = OpenTK.Graphics.ES30.All.SingleColor; - var _SingleColorExt = OpenTK.Graphics.ES30.All.SingleColorExt; - var _SeparateSpecularColor = OpenTK.Graphics.ES30.All.SeparateSpecularColor; - var _SeparateSpecularColorExt = OpenTK.Graphics.ES30.All.SeparateSpecularColorExt; - var _SharedTexturePaletteExt = OpenTK.Graphics.ES30.All.SharedTexturePaletteExt; - var _FramebufferAttachmentColorEncoding = OpenTK.Graphics.ES30.All.FramebufferAttachmentColorEncoding; - var _FramebufferAttachmentColorEncodingExt = OpenTK.Graphics.ES30.All.FramebufferAttachmentColorEncodingExt; - var _FramebufferAttachmentComponentType = OpenTK.Graphics.ES30.All.FramebufferAttachmentComponentType; - var _FramebufferAttachmentComponentTypeExt = OpenTK.Graphics.ES30.All.FramebufferAttachmentComponentTypeExt; - var _FramebufferAttachmentRedSize = OpenTK.Graphics.ES30.All.FramebufferAttachmentRedSize; - var _FramebufferAttachmentGreenSize = OpenTK.Graphics.ES30.All.FramebufferAttachmentGreenSize; - var _FramebufferAttachmentBlueSize = OpenTK.Graphics.ES30.All.FramebufferAttachmentBlueSize; - var _FramebufferAttachmentAlphaSize = OpenTK.Graphics.ES30.All.FramebufferAttachmentAlphaSize; - var _FramebufferAttachmentDepthSize = OpenTK.Graphics.ES30.All.FramebufferAttachmentDepthSize; - var _FramebufferAttachmentStencilSize = OpenTK.Graphics.ES30.All.FramebufferAttachmentStencilSize; - var _FramebufferDefault = OpenTK.Graphics.ES30.All.FramebufferDefault; - var _FramebufferUndefined = OpenTK.Graphics.ES30.All.FramebufferUndefined; - var _FramebufferUndefinedOes = OpenTK.Graphics.ES30.All.FramebufferUndefinedOes; - var _DepthStencilAttachment = OpenTK.Graphics.ES30.All.DepthStencilAttachment; - var _MajorVersion = OpenTK.Graphics.ES30.All.MajorVersion; - var _MinorVersion = OpenTK.Graphics.ES30.All.MinorVersion; - var _NumExtensions = OpenTK.Graphics.ES30.All.NumExtensions; - var _PrimitiveRestartForPatchesSupported = OpenTK.Graphics.ES30.All.PrimitiveRestartForPatchesSupported; - var _Rg = OpenTK.Graphics.ES30.All.Rg; - var _RgExt = OpenTK.Graphics.ES30.All.RgExt; - var _RgInteger = OpenTK.Graphics.ES30.All.RgInteger; - var _R8 = OpenTK.Graphics.ES30.All.R8; - var _R8Ext = OpenTK.Graphics.ES30.All.R8Ext; - var _Rg8 = OpenTK.Graphics.ES30.All.Rg8; - var _Rg8Ext = OpenTK.Graphics.ES30.All.Rg8Ext; - var _R16f = OpenTK.Graphics.ES30.All.R16f; - var _R16fExt = OpenTK.Graphics.ES30.All.R16fExt; - var _R32f = OpenTK.Graphics.ES30.All.R32f; - var _R32fExt = OpenTK.Graphics.ES30.All.R32fExt; - var _Rg16f = OpenTK.Graphics.ES30.All.Rg16f; - var _Rg16fExt = OpenTK.Graphics.ES30.All.Rg16fExt; - var _Rg32f = OpenTK.Graphics.ES30.All.Rg32f; - var _Rg32fExt = OpenTK.Graphics.ES30.All.Rg32fExt; - var _R8i = OpenTK.Graphics.ES30.All.R8i; - var _R8ui = OpenTK.Graphics.ES30.All.R8ui; - var _R16i = OpenTK.Graphics.ES30.All.R16i; - var _R16ui = OpenTK.Graphics.ES30.All.R16ui; - var _R32i = OpenTK.Graphics.ES30.All.R32i; - var _R32ui = OpenTK.Graphics.ES30.All.R32ui; - var _Rg8i = OpenTK.Graphics.ES30.All.Rg8i; - var _Rg8ui = OpenTK.Graphics.ES30.All.Rg8ui; - var _Rg16i = OpenTK.Graphics.ES30.All.Rg16i; - var _Rg16ui = OpenTK.Graphics.ES30.All.Rg16ui; - var _Rg32i = OpenTK.Graphics.ES30.All.Rg32i; - var _Rg32ui = OpenTK.Graphics.ES30.All.Rg32ui; - var _DebugOutputSynchronous = OpenTK.Graphics.ES30.All.DebugOutputSynchronous; - var _DebugOutputSynchronousKhr = OpenTK.Graphics.ES30.All.DebugOutputSynchronousKhr; - var _DebugNextLoggedMessageLength = OpenTK.Graphics.ES30.All.DebugNextLoggedMessageLength; - var _DebugNextLoggedMessageLengthKhr = OpenTK.Graphics.ES30.All.DebugNextLoggedMessageLengthKhr; - var _DebugCallbackFunction = OpenTK.Graphics.ES30.All.DebugCallbackFunction; - var _DebugCallbackFunctionKhr = OpenTK.Graphics.ES30.All.DebugCallbackFunctionKhr; - var _DebugCallbackUserParam = OpenTK.Graphics.ES30.All.DebugCallbackUserParam; - var _DebugCallbackUserParamKhr = OpenTK.Graphics.ES30.All.DebugCallbackUserParamKhr; - var _DebugSourceApi = OpenTK.Graphics.ES30.All.DebugSourceApi; - var _DebugSourceApiKhr = OpenTK.Graphics.ES30.All.DebugSourceApiKhr; - var _DebugSourceWindowSystem = OpenTK.Graphics.ES30.All.DebugSourceWindowSystem; - var _DebugSourceWindowSystemKhr = OpenTK.Graphics.ES30.All.DebugSourceWindowSystemKhr; - var _DebugSourceShaderCompiler = OpenTK.Graphics.ES30.All.DebugSourceShaderCompiler; - var _DebugSourceShaderCompilerKhr = OpenTK.Graphics.ES30.All.DebugSourceShaderCompilerKhr; - var _DebugSourceThirdParty = OpenTK.Graphics.ES30.All.DebugSourceThirdParty; - var _DebugSourceThirdPartyKhr = OpenTK.Graphics.ES30.All.DebugSourceThirdPartyKhr; - var _DebugSourceApplication = OpenTK.Graphics.ES30.All.DebugSourceApplication; - var _DebugSourceApplicationKhr = OpenTK.Graphics.ES30.All.DebugSourceApplicationKhr; - var _DebugSourceOther = OpenTK.Graphics.ES30.All.DebugSourceOther; - var _DebugSourceOtherKhr = OpenTK.Graphics.ES30.All.DebugSourceOtherKhr; - var _DebugTypeError = OpenTK.Graphics.ES30.All.DebugTypeError; - var _DebugTypeErrorKhr = OpenTK.Graphics.ES30.All.DebugTypeErrorKhr; - var _DebugTypeDeprecatedBehavior = OpenTK.Graphics.ES30.All.DebugTypeDeprecatedBehavior; - var _DebugTypeDeprecatedBehaviorKhr = OpenTK.Graphics.ES30.All.DebugTypeDeprecatedBehaviorKhr; - var _DebugTypeUndefinedBehavior = OpenTK.Graphics.ES30.All.DebugTypeUndefinedBehavior; - var _DebugTypeUndefinedBehaviorKhr = OpenTK.Graphics.ES30.All.DebugTypeUndefinedBehaviorKhr; - var _DebugTypePortability = OpenTK.Graphics.ES30.All.DebugTypePortability; - var _DebugTypePortabilityKhr = OpenTK.Graphics.ES30.All.DebugTypePortabilityKhr; - var _DebugTypePerformance = OpenTK.Graphics.ES30.All.DebugTypePerformance; - var _DebugTypePerformanceKhr = OpenTK.Graphics.ES30.All.DebugTypePerformanceKhr; - var _DebugTypeOther = OpenTK.Graphics.ES30.All.DebugTypeOther; - var _DebugTypeOtherKhr = OpenTK.Graphics.ES30.All.DebugTypeOtherKhr; - var _LoseContextOnResetExt = OpenTK.Graphics.ES30.All.LoseContextOnResetExt; - var _GuiltyContextResetExt = OpenTK.Graphics.ES30.All.GuiltyContextResetExt; - var _InnocentContextResetExt = OpenTK.Graphics.ES30.All.InnocentContextResetExt; - var _UnknownContextResetExt = OpenTK.Graphics.ES30.All.UnknownContextResetExt; - var _ResetNotificationStrategyExt = OpenTK.Graphics.ES30.All.ResetNotificationStrategyExt; - var _ProgramBinaryRetrievableHint = OpenTK.Graphics.ES30.All.ProgramBinaryRetrievableHint; - var _ProgramSeparableExt = OpenTK.Graphics.ES30.All.ProgramSeparableExt; - var _ActiveProgramExt = OpenTK.Graphics.ES30.All.ActiveProgramExt; - var _ProgramPipelineBindingExt = OpenTK.Graphics.ES30.All.ProgramPipelineBindingExt; - var _LayerProvokingVertexExt = OpenTK.Graphics.ES30.All.LayerProvokingVertexExt; - var _UndefinedVertexExt = OpenTK.Graphics.ES30.All.UndefinedVertexExt; - var _NoResetNotificationExt = OpenTK.Graphics.ES30.All.NoResetNotificationExt; - var _DebugTypeMarker = OpenTK.Graphics.ES30.All.DebugTypeMarker; - var _DebugTypeMarkerKhr = OpenTK.Graphics.ES30.All.DebugTypeMarkerKhr; - var _DebugTypePushGroup = OpenTK.Graphics.ES30.All.DebugTypePushGroup; - var _DebugTypePushGroupKhr = OpenTK.Graphics.ES30.All.DebugTypePushGroupKhr; - var _DebugTypePopGroup = OpenTK.Graphics.ES30.All.DebugTypePopGroup; - var _DebugTypePopGroupKhr = OpenTK.Graphics.ES30.All.DebugTypePopGroupKhr; - var _DebugSeverityNotification = OpenTK.Graphics.ES30.All.DebugSeverityNotification; - var _DebugSeverityNotificationKhr = OpenTK.Graphics.ES30.All.DebugSeverityNotificationKhr; - var _MaxDebugGroupStackDepth = OpenTK.Graphics.ES30.All.MaxDebugGroupStackDepth; - var _MaxDebugGroupStackDepthKhr = OpenTK.Graphics.ES30.All.MaxDebugGroupStackDepthKhr; - var _DebugGroupStackDepth = OpenTK.Graphics.ES30.All.DebugGroupStackDepth; - var _DebugGroupStackDepthKhr = OpenTK.Graphics.ES30.All.DebugGroupStackDepthKhr; - var _TextureViewMinLevelExt = OpenTK.Graphics.ES30.All.TextureViewMinLevelExt; - var _TextureViewNumLevelsExt = OpenTK.Graphics.ES30.All.TextureViewNumLevelsExt; - var _TextureViewMinLayerExt = OpenTK.Graphics.ES30.All.TextureViewMinLayerExt; - var _TextureViewNumLayersExt = OpenTK.Graphics.ES30.All.TextureViewNumLayersExt; - var _TextureImmutableLevels = OpenTK.Graphics.ES30.All.TextureImmutableLevels; - var _Buffer = OpenTK.Graphics.ES30.All.Buffer; - var _BufferKhr = OpenTK.Graphics.ES30.All.BufferKhr; - var _Shader = OpenTK.Graphics.ES30.All.Shader; - var _ShaderKhr = OpenTK.Graphics.ES30.All.ShaderKhr; - var _Program = OpenTK.Graphics.ES30.All.Program; - var _ProgramKhr = OpenTK.Graphics.ES30.All.ProgramKhr; - var _Query = OpenTK.Graphics.ES30.All.Query; - var _QueryKhr = OpenTK.Graphics.ES30.All.QueryKhr; - var _ProgramPipeline = OpenTK.Graphics.ES30.All.ProgramPipeline; - var _Sampler = OpenTK.Graphics.ES30.All.Sampler; - var _SamplerKhr = OpenTK.Graphics.ES30.All.SamplerKhr; - var _DisplayList = OpenTK.Graphics.ES30.All.DisplayList; - var _MaxLabelLength = OpenTK.Graphics.ES30.All.MaxLabelLength; - var _MaxLabelLengthKhr = OpenTK.Graphics.ES30.All.MaxLabelLengthKhr; - var _ConvolutionHintSgix = OpenTK.Graphics.ES30.All.ConvolutionHintSgix; - var _AlphaMinSgix = OpenTK.Graphics.ES30.All.AlphaMinSgix; - var _AlphaMaxSgix = OpenTK.Graphics.ES30.All.AlphaMaxSgix; - var _ScalebiasHintSgix = OpenTK.Graphics.ES30.All.ScalebiasHintSgix; - var _AsyncMarkerSgix = OpenTK.Graphics.ES30.All.AsyncMarkerSgix; - var _PixelTexGenModeSgix = OpenTK.Graphics.ES30.All.PixelTexGenModeSgix; - var _AsyncHistogramSgix = OpenTK.Graphics.ES30.All.AsyncHistogramSgix; - var _MaxAsyncHistogramSgix = OpenTK.Graphics.ES30.All.MaxAsyncHistogramSgix; - var _PixelTextureSgis = OpenTK.Graphics.ES30.All.PixelTextureSgis; - var _PixelFragmentRgbSourceSgis = OpenTK.Graphics.ES30.All.PixelFragmentRgbSourceSgis; - var _PixelFragmentAlphaSourceSgis = OpenTK.Graphics.ES30.All.PixelFragmentAlphaSourceSgis; - var _LineQualityHintSgix = OpenTK.Graphics.ES30.All.LineQualityHintSgix; - var _AsyncTexImageSgix = OpenTK.Graphics.ES30.All.AsyncTexImageSgix; - var _AsyncDrawPixelsSgix = OpenTK.Graphics.ES30.All.AsyncDrawPixelsSgix; - var _AsyncReadPixelsSgix = OpenTK.Graphics.ES30.All.AsyncReadPixelsSgix; - var _MaxAsyncTexImageSgix = OpenTK.Graphics.ES30.All.MaxAsyncTexImageSgix; - var _MaxAsyncDrawPixelsSgix = OpenTK.Graphics.ES30.All.MaxAsyncDrawPixelsSgix; - var _MaxAsyncReadPixelsSgix = OpenTK.Graphics.ES30.All.MaxAsyncReadPixelsSgix; - var _UnsignedShort565 = OpenTK.Graphics.ES30.All.UnsignedShort565; - var _UnsignedShort4444RevExt = OpenTK.Graphics.ES30.All.UnsignedShort4444RevExt; - var _UnsignedShort4444RevImg = OpenTK.Graphics.ES30.All.UnsignedShort4444RevImg; - var _UnsignedShort1555RevExt = OpenTK.Graphics.ES30.All.UnsignedShort1555RevExt; - var _UnsignedInt2101010Rev = OpenTK.Graphics.ES30.All.UnsignedInt2101010Rev; - var _UnsignedInt2101010RevExt = OpenTK.Graphics.ES30.All.UnsignedInt2101010RevExt; - var _TextureMaxClampSSgix = OpenTK.Graphics.ES30.All.TextureMaxClampSSgix; - var _TextureMaxClampTSgix = OpenTK.Graphics.ES30.All.TextureMaxClampTSgix; - var _TextureMaxClampRSgix = OpenTK.Graphics.ES30.All.TextureMaxClampRSgix; - var _MirroredRepeat = OpenTK.Graphics.ES30.All.MirroredRepeat; - var _VertexPreclipSgix = OpenTK.Graphics.ES30.All.VertexPreclipSgix; - var _VertexPreclipHintSgix = OpenTK.Graphics.ES30.All.VertexPreclipHintSgix; - var _CompressedRgbS3tcDxt1Ext = OpenTK.Graphics.ES30.All.CompressedRgbS3tcDxt1Ext; - var _CompressedRgbaS3tcDxt1Ext = OpenTK.Graphics.ES30.All.CompressedRgbaS3tcDxt1Ext; - var _CompressedRgbaS3tcDxt3Angle = OpenTK.Graphics.ES30.All.CompressedRgbaS3tcDxt3Angle; - var _CompressedRgbaS3tcDxt3Ext = OpenTK.Graphics.ES30.All.CompressedRgbaS3tcDxt3Ext; - var _CompressedRgbaS3tcDxt5Angle = OpenTK.Graphics.ES30.All.CompressedRgbaS3tcDxt5Angle; - var _CompressedRgbaS3tcDxt5Ext = OpenTK.Graphics.ES30.All.CompressedRgbaS3tcDxt5Ext; - var _PerfqueryDonotFlushIntel = OpenTK.Graphics.ES30.All.PerfqueryDonotFlushIntel; - var _PerfqueryFlushIntel = OpenTK.Graphics.ES30.All.PerfqueryFlushIntel; - var _PerfqueryWaitIntel = OpenTK.Graphics.ES30.All.PerfqueryWaitIntel; - var _FragmentLightingSgix = OpenTK.Graphics.ES30.All.FragmentLightingSgix; - var _FragmentColorMaterialSgix = OpenTK.Graphics.ES30.All.FragmentColorMaterialSgix; - var _FragmentColorMaterialFaceSgix = OpenTK.Graphics.ES30.All.FragmentColorMaterialFaceSgix; - var _FragmentColorMaterialParameterSgix = OpenTK.Graphics.ES30.All.FragmentColorMaterialParameterSgix; - var _MaxFragmentLightsSgix = OpenTK.Graphics.ES30.All.MaxFragmentLightsSgix; - var _MaxActiveLightsSgix = OpenTK.Graphics.ES30.All.MaxActiveLightsSgix; - var _LightEnvModeSgix = OpenTK.Graphics.ES30.All.LightEnvModeSgix; - var _FragmentLightModelLocalViewerSgix = OpenTK.Graphics.ES30.All.FragmentLightModelLocalViewerSgix; - var _FragmentLightModelTwoSideSgix = OpenTK.Graphics.ES30.All.FragmentLightModelTwoSideSgix; - var _FragmentLightModelAmbientSgix = OpenTK.Graphics.ES30.All.FragmentLightModelAmbientSgix; - var _FragmentLightModelNormalInterpolationSgix = OpenTK.Graphics.ES30.All.FragmentLightModelNormalInterpolationSgix; - var _FragmentLight0Sgix = OpenTK.Graphics.ES30.All.FragmentLight0Sgix; - var _FragmentLight1Sgix = OpenTK.Graphics.ES30.All.FragmentLight1Sgix; - var _FragmentLight2Sgix = OpenTK.Graphics.ES30.All.FragmentLight2Sgix; - var _FragmentLight3Sgix = OpenTK.Graphics.ES30.All.FragmentLight3Sgix; - var _FragmentLight4Sgix = OpenTK.Graphics.ES30.All.FragmentLight4Sgix; - var _FragmentLight5Sgix = OpenTK.Graphics.ES30.All.FragmentLight5Sgix; - var _FragmentLight6Sgix = OpenTK.Graphics.ES30.All.FragmentLight6Sgix; - var _FragmentLight7Sgix = OpenTK.Graphics.ES30.All.FragmentLight7Sgix; - var _PackResampleSgix = OpenTK.Graphics.ES30.All.PackResampleSgix; - var _UnpackResampleSgix = OpenTK.Graphics.ES30.All.UnpackResampleSgix; - var _ResampleReplicateSgix = OpenTK.Graphics.ES30.All.ResampleReplicateSgix; - var _ResampleZeroFillSgix = OpenTK.Graphics.ES30.All.ResampleZeroFillSgix; - var _ResampleDecimateSgix = OpenTK.Graphics.ES30.All.ResampleDecimateSgix; - var _NearestClipmapNearestSgix = OpenTK.Graphics.ES30.All.NearestClipmapNearestSgix; - var _NearestClipmapLinearSgix = OpenTK.Graphics.ES30.All.NearestClipmapLinearSgix; - var _LinearClipmapNearestSgix = OpenTK.Graphics.ES30.All.LinearClipmapNearestSgix; - var _AliasedPointSizeRange = OpenTK.Graphics.ES30.All.AliasedPointSizeRange; - var _AliasedLineWidthRange = OpenTK.Graphics.ES30.All.AliasedLineWidthRange; - var _Texture0 = OpenTK.Graphics.ES30.All.Texture0; - var _Texture1 = OpenTK.Graphics.ES30.All.Texture1; - var _Texture2 = OpenTK.Graphics.ES30.All.Texture2; - var _Texture3 = OpenTK.Graphics.ES30.All.Texture3; - var _Texture4 = OpenTK.Graphics.ES30.All.Texture4; - var _Texture5 = OpenTK.Graphics.ES30.All.Texture5; - var _Texture6 = OpenTK.Graphics.ES30.All.Texture6; - var _Texture7 = OpenTK.Graphics.ES30.All.Texture7; - var _Texture8 = OpenTK.Graphics.ES30.All.Texture8; - var _Texture9 = OpenTK.Graphics.ES30.All.Texture9; - var _Texture10 = OpenTK.Graphics.ES30.All.Texture10; - var _Texture11 = OpenTK.Graphics.ES30.All.Texture11; - var _Texture12 = OpenTK.Graphics.ES30.All.Texture12; - var _Texture13 = OpenTK.Graphics.ES30.All.Texture13; - var _Texture14 = OpenTK.Graphics.ES30.All.Texture14; - var _Texture15 = OpenTK.Graphics.ES30.All.Texture15; - var _Texture16 = OpenTK.Graphics.ES30.All.Texture16; - var _Texture17 = OpenTK.Graphics.ES30.All.Texture17; - var _Texture18 = OpenTK.Graphics.ES30.All.Texture18; - var _Texture19 = OpenTK.Graphics.ES30.All.Texture19; - var _Texture20 = OpenTK.Graphics.ES30.All.Texture20; - var _Texture21 = OpenTK.Graphics.ES30.All.Texture21; - var _Texture22 = OpenTK.Graphics.ES30.All.Texture22; - var _Texture23 = OpenTK.Graphics.ES30.All.Texture23; - var _Texture24 = OpenTK.Graphics.ES30.All.Texture24; - var _Texture25 = OpenTK.Graphics.ES30.All.Texture25; - var _Texture26 = OpenTK.Graphics.ES30.All.Texture26; - var _Texture27 = OpenTK.Graphics.ES30.All.Texture27; - var _Texture28 = OpenTK.Graphics.ES30.All.Texture28; - var _Texture29 = OpenTK.Graphics.ES30.All.Texture29; - var _Texture30 = OpenTK.Graphics.ES30.All.Texture30; - var _Texture31 = OpenTK.Graphics.ES30.All.Texture31; - var _ActiveTexture = OpenTK.Graphics.ES30.All.ActiveTexture; - var _MaxRenderbufferSize = OpenTK.Graphics.ES30.All.MaxRenderbufferSize; - var _TextureCompressionHint = OpenTK.Graphics.ES30.All.TextureCompressionHint; - var _TextureCompressionHintArb = OpenTK.Graphics.ES30.All.TextureCompressionHintArb; - var _AllCompletedNv = OpenTK.Graphics.ES30.All.AllCompletedNv; - var _FenceStatusNv = OpenTK.Graphics.ES30.All.FenceStatusNv; - var _FenceConditionNv = OpenTK.Graphics.ES30.All.FenceConditionNv; - var _DepthStencil = OpenTK.Graphics.ES30.All.DepthStencil; - var _DepthStencilOes = OpenTK.Graphics.ES30.All.DepthStencilOes; - var _UnsignedInt248 = OpenTK.Graphics.ES30.All.UnsignedInt248; - var _UnsignedInt248Oes = OpenTK.Graphics.ES30.All.UnsignedInt248Oes; - var _MaxTextureLodBias = OpenTK.Graphics.ES30.All.MaxTextureLodBias; - var _TextureMaxAnisotropyExt = OpenTK.Graphics.ES30.All.TextureMaxAnisotropyExt; - var _MaxTextureMaxAnisotropyExt = OpenTK.Graphics.ES30.All.MaxTextureMaxAnisotropyExt; - var _IncrWrap = OpenTK.Graphics.ES30.All.IncrWrap; - var _DecrWrap = OpenTK.Graphics.ES30.All.DecrWrap; - var _TextureCubeMap = OpenTK.Graphics.ES30.All.TextureCubeMap; - var _TextureBindingCubeMap = OpenTK.Graphics.ES30.All.TextureBindingCubeMap; - var _TextureCubeMapPositiveX = OpenTK.Graphics.ES30.All.TextureCubeMapPositiveX; - var _TextureCubeMapNegativeX = OpenTK.Graphics.ES30.All.TextureCubeMapNegativeX; - var _TextureCubeMapPositiveY = OpenTK.Graphics.ES30.All.TextureCubeMapPositiveY; - var _TextureCubeMapNegativeY = OpenTK.Graphics.ES30.All.TextureCubeMapNegativeY; - var _TextureCubeMapPositiveZ = OpenTK.Graphics.ES30.All.TextureCubeMapPositiveZ; - var _TextureCubeMapNegativeZ = OpenTK.Graphics.ES30.All.TextureCubeMapNegativeZ; - var _MaxCubeMapTextureSize = OpenTK.Graphics.ES30.All.MaxCubeMapTextureSize; - var _VertexArrayStorageHintApple = OpenTK.Graphics.ES30.All.VertexArrayStorageHintApple; - var _MultisampleFilterHintNv = OpenTK.Graphics.ES30.All.MultisampleFilterHintNv; - var _PackSubsampleRateSgix = OpenTK.Graphics.ES30.All.PackSubsampleRateSgix; - var _UnpackSubsampleRateSgix = OpenTK.Graphics.ES30.All.UnpackSubsampleRateSgix; - var _PixelSubsample4444Sgix = OpenTK.Graphics.ES30.All.PixelSubsample4444Sgix; - var _PixelSubsample2424Sgix = OpenTK.Graphics.ES30.All.PixelSubsample2424Sgix; - var _PixelSubsample4242Sgix = OpenTK.Graphics.ES30.All.PixelSubsample4242Sgix; - var _TransformHintApple = OpenTK.Graphics.ES30.All.TransformHintApple; - var _VertexArrayBinding = OpenTK.Graphics.ES30.All.VertexArrayBinding; - var _VertexArrayBindingOes = OpenTK.Graphics.ES30.All.VertexArrayBindingOes; - var _UnsignedShort88Apple = OpenTK.Graphics.ES30.All.UnsignedShort88Apple; - var _UnsignedShort88RevApple = OpenTK.Graphics.ES30.All.UnsignedShort88RevApple; - var _TextureStorageHintApple = OpenTK.Graphics.ES30.All.TextureStorageHintApple; - var _VertexAttribArrayEnabled = OpenTK.Graphics.ES30.All.VertexAttribArrayEnabled; - var _VertexAttribArraySize = OpenTK.Graphics.ES30.All.VertexAttribArraySize; - var _VertexAttribArrayStride = OpenTK.Graphics.ES30.All.VertexAttribArrayStride; - var _VertexAttribArrayType = OpenTK.Graphics.ES30.All.VertexAttribArrayType; - var _CurrentVertexAttrib = OpenTK.Graphics.ES30.All.CurrentVertexAttrib; - var _VertexAttribArrayPointer = OpenTK.Graphics.ES30.All.VertexAttribArrayPointer; - var _NumCompressedTextureFormats = OpenTK.Graphics.ES30.All.NumCompressedTextureFormats; - var _CompressedTextureFormats = OpenTK.Graphics.ES30.All.CompressedTextureFormats; - var _Z400BinaryAmd = OpenTK.Graphics.ES30.All.Z400BinaryAmd; - var _ProgramBinaryLength = OpenTK.Graphics.ES30.All.ProgramBinaryLength; - var _ProgramBinaryLengthOes = OpenTK.Graphics.ES30.All.ProgramBinaryLengthOes; - var _BufferSize = OpenTK.Graphics.ES30.All.BufferSize; - var _BufferUsage = OpenTK.Graphics.ES30.All.BufferUsage; - var _AtcRgbaInterpolatedAlphaAmd = OpenTK.Graphics.ES30.All.AtcRgbaInterpolatedAlphaAmd; - var _Gl3DcXAmd = OpenTK.Graphics.ES30.All.Gl3DcXAmd; - var _Gl3DcXyAmd = OpenTK.Graphics.ES30.All.Gl3DcXyAmd; - var _NumProgramBinaryFormats = OpenTK.Graphics.ES30.All.NumProgramBinaryFormats; - var _NumProgramBinaryFormatsOes = OpenTK.Graphics.ES30.All.NumProgramBinaryFormatsOes; - var _ProgramBinaryFormats = OpenTK.Graphics.ES30.All.ProgramBinaryFormats; - var _ProgramBinaryFormatsOes = OpenTK.Graphics.ES30.All.ProgramBinaryFormatsOes; - var _StencilBackFunc = OpenTK.Graphics.ES30.All.StencilBackFunc; - var _StencilBackFail = OpenTK.Graphics.ES30.All.StencilBackFail; - var _StencilBackPassDepthFail = OpenTK.Graphics.ES30.All.StencilBackPassDepthFail; - var _StencilBackPassDepthPass = OpenTK.Graphics.ES30.All.StencilBackPassDepthPass; - var _Rgba32f = OpenTK.Graphics.ES30.All.Rgba32f; - var _Rgba32fExt = OpenTK.Graphics.ES30.All.Rgba32fExt; - var _Rgb32f = OpenTK.Graphics.ES30.All.Rgb32f; - var _Rgb32fExt = OpenTK.Graphics.ES30.All.Rgb32fExt; - var _Alpha32fExt = OpenTK.Graphics.ES30.All.Alpha32fExt; - var _Luminance32fExt = OpenTK.Graphics.ES30.All.Luminance32fExt; - var _LuminanceAlpha32fExt = OpenTK.Graphics.ES30.All.LuminanceAlpha32fExt; - var _Rgba16f = OpenTK.Graphics.ES30.All.Rgba16f; - var _Rgba16fExt = OpenTK.Graphics.ES30.All.Rgba16fExt; - var _Rgb16f = OpenTK.Graphics.ES30.All.Rgb16f; - var _Rgb16fExt = OpenTK.Graphics.ES30.All.Rgb16fExt; - var _Alpha16fExt = OpenTK.Graphics.ES30.All.Alpha16fExt; - var _Luminance16fExt = OpenTK.Graphics.ES30.All.Luminance16fExt; - var _LuminanceAlpha16fExt = OpenTK.Graphics.ES30.All.LuminanceAlpha16fExt; - var _WriteonlyRenderingQcom = OpenTK.Graphics.ES30.All.WriteonlyRenderingQcom; - var _MaxDrawBuffers = OpenTK.Graphics.ES30.All.MaxDrawBuffers; - var _MaxDrawBuffersExt = OpenTK.Graphics.ES30.All.MaxDrawBuffersExt; - var _MaxDrawBuffersNv = OpenTK.Graphics.ES30.All.MaxDrawBuffersNv; - var _DrawBuffer0 = OpenTK.Graphics.ES30.All.DrawBuffer0; - var _DrawBuffer0Ext = OpenTK.Graphics.ES30.All.DrawBuffer0Ext; - var _DrawBuffer0Nv = OpenTK.Graphics.ES30.All.DrawBuffer0Nv; - var _DrawBuffer1 = OpenTK.Graphics.ES30.All.DrawBuffer1; - var _DrawBuffer1Ext = OpenTK.Graphics.ES30.All.DrawBuffer1Ext; - var _DrawBuffer1Nv = OpenTK.Graphics.ES30.All.DrawBuffer1Nv; - var _DrawBuffer2 = OpenTK.Graphics.ES30.All.DrawBuffer2; - var _DrawBuffer2Ext = OpenTK.Graphics.ES30.All.DrawBuffer2Ext; - var _DrawBuffer2Nv = OpenTK.Graphics.ES30.All.DrawBuffer2Nv; - var _DrawBuffer3 = OpenTK.Graphics.ES30.All.DrawBuffer3; - var _DrawBuffer3Ext = OpenTK.Graphics.ES30.All.DrawBuffer3Ext; - var _DrawBuffer3Nv = OpenTK.Graphics.ES30.All.DrawBuffer3Nv; - var _DrawBuffer4 = OpenTK.Graphics.ES30.All.DrawBuffer4; - var _DrawBuffer4Ext = OpenTK.Graphics.ES30.All.DrawBuffer4Ext; - var _DrawBuffer4Nv = OpenTK.Graphics.ES30.All.DrawBuffer4Nv; - var _DrawBuffer5 = OpenTK.Graphics.ES30.All.DrawBuffer5; - var _DrawBuffer5Ext = OpenTK.Graphics.ES30.All.DrawBuffer5Ext; - var _DrawBuffer5Nv = OpenTK.Graphics.ES30.All.DrawBuffer5Nv; - var _DrawBuffer6 = OpenTK.Graphics.ES30.All.DrawBuffer6; - var _DrawBuffer6Ext = OpenTK.Graphics.ES30.All.DrawBuffer6Ext; - var _DrawBuffer6Nv = OpenTK.Graphics.ES30.All.DrawBuffer6Nv; - var _DrawBuffer7 = OpenTK.Graphics.ES30.All.DrawBuffer7; - var _DrawBuffer7Ext = OpenTK.Graphics.ES30.All.DrawBuffer7Ext; - var _DrawBuffer7Nv = OpenTK.Graphics.ES30.All.DrawBuffer7Nv; - var _DrawBuffer8 = OpenTK.Graphics.ES30.All.DrawBuffer8; - var _DrawBuffer8Ext = OpenTK.Graphics.ES30.All.DrawBuffer8Ext; - var _DrawBuffer8Nv = OpenTK.Graphics.ES30.All.DrawBuffer8Nv; - var _DrawBuffer9 = OpenTK.Graphics.ES30.All.DrawBuffer9; - var _DrawBuffer9Ext = OpenTK.Graphics.ES30.All.DrawBuffer9Ext; - var _DrawBuffer9Nv = OpenTK.Graphics.ES30.All.DrawBuffer9Nv; - var _DrawBuffer10 = OpenTK.Graphics.ES30.All.DrawBuffer10; - var _DrawBuffer10Ext = OpenTK.Graphics.ES30.All.DrawBuffer10Ext; - var _DrawBuffer10Nv = OpenTK.Graphics.ES30.All.DrawBuffer10Nv; - var _DrawBuffer11 = OpenTK.Graphics.ES30.All.DrawBuffer11; - var _DrawBuffer11Ext = OpenTK.Graphics.ES30.All.DrawBuffer11Ext; - var _DrawBuffer11Nv = OpenTK.Graphics.ES30.All.DrawBuffer11Nv; - var _DrawBuffer12 = OpenTK.Graphics.ES30.All.DrawBuffer12; - var _DrawBuffer12Ext = OpenTK.Graphics.ES30.All.DrawBuffer12Ext; - var _DrawBuffer12Nv = OpenTK.Graphics.ES30.All.DrawBuffer12Nv; - var _DrawBuffer13 = OpenTK.Graphics.ES30.All.DrawBuffer13; - var _DrawBuffer13Ext = OpenTK.Graphics.ES30.All.DrawBuffer13Ext; - var _DrawBuffer13Nv = OpenTK.Graphics.ES30.All.DrawBuffer13Nv; - var _DrawBuffer14 = OpenTK.Graphics.ES30.All.DrawBuffer14; - var _DrawBuffer14Ext = OpenTK.Graphics.ES30.All.DrawBuffer14Ext; - var _DrawBuffer14Nv = OpenTK.Graphics.ES30.All.DrawBuffer14Nv; - var _DrawBuffer15 = OpenTK.Graphics.ES30.All.DrawBuffer15; - var _DrawBuffer15Ext = OpenTK.Graphics.ES30.All.DrawBuffer15Ext; - var _DrawBuffer15Nv = OpenTK.Graphics.ES30.All.DrawBuffer15Nv; - var _BlendEquationAlpha = OpenTK.Graphics.ES30.All.BlendEquationAlpha; - var _TextureCompareMode = OpenTK.Graphics.ES30.All.TextureCompareMode; - var _TextureCompareModeExt = OpenTK.Graphics.ES30.All.TextureCompareModeExt; - var _TextureCompareFunc = OpenTK.Graphics.ES30.All.TextureCompareFunc; - var _TextureCompareFuncExt = OpenTK.Graphics.ES30.All.TextureCompareFuncExt; - var _CompareRefToTexture = OpenTK.Graphics.ES30.All.CompareRefToTexture; - var _CompareRefToTextureExt = OpenTK.Graphics.ES30.All.CompareRefToTextureExt; - var _QueryCounterBitsExt = OpenTK.Graphics.ES30.All.QueryCounterBitsExt; - var _CurrentQuery = OpenTK.Graphics.ES30.All.CurrentQuery; - var _CurrentQueryExt = OpenTK.Graphics.ES30.All.CurrentQueryExt; - var _QueryResult = OpenTK.Graphics.ES30.All.QueryResult; - var _QueryResultExt = OpenTK.Graphics.ES30.All.QueryResultExt; - var _QueryResultAvailable = OpenTK.Graphics.ES30.All.QueryResultAvailable; - var _QueryResultAvailableExt = OpenTK.Graphics.ES30.All.QueryResultAvailableExt; - var _MaxVertexAttribs = OpenTK.Graphics.ES30.All.MaxVertexAttribs; - var _VertexAttribArrayNormalized = OpenTK.Graphics.ES30.All.VertexAttribArrayNormalized; - var _MaxTessControlInputComponentsExt = OpenTK.Graphics.ES30.All.MaxTessControlInputComponentsExt; - var _MaxTessEvaluationInputComponentsExt = OpenTK.Graphics.ES30.All.MaxTessEvaluationInputComponentsExt; - var _MaxTextureImageUnits = OpenTK.Graphics.ES30.All.MaxTextureImageUnits; - var _GeometryShaderInvocationsExt = OpenTK.Graphics.ES30.All.GeometryShaderInvocationsExt; - var _ArrayBuffer = OpenTK.Graphics.ES30.All.ArrayBuffer; - var _ElementArrayBuffer = OpenTK.Graphics.ES30.All.ElementArrayBuffer; - var _ArrayBufferBinding = OpenTK.Graphics.ES30.All.ArrayBufferBinding; - var _ElementArrayBufferBinding = OpenTK.Graphics.ES30.All.ElementArrayBufferBinding; - var _VertexAttribArrayBufferBinding = OpenTK.Graphics.ES30.All.VertexAttribArrayBufferBinding; - var _WriteOnlyOes = OpenTK.Graphics.ES30.All.WriteOnlyOes; - var _BufferAccessOes = OpenTK.Graphics.ES30.All.BufferAccessOes; - var _BufferMapped = OpenTK.Graphics.ES30.All.BufferMapped; - var _BufferMappedOes = OpenTK.Graphics.ES30.All.BufferMappedOes; - var _BufferMapPointer = OpenTK.Graphics.ES30.All.BufferMapPointer; - var _BufferMapPointerOes = OpenTK.Graphics.ES30.All.BufferMapPointerOes; - var _TimeElapsedExt = OpenTK.Graphics.ES30.All.TimeElapsedExt; - var _StreamDraw = OpenTK.Graphics.ES30.All.StreamDraw; - var _StreamRead = OpenTK.Graphics.ES30.All.StreamRead; - var _StreamCopy = OpenTK.Graphics.ES30.All.StreamCopy; - var _StaticDraw = OpenTK.Graphics.ES30.All.StaticDraw; - var _StaticRead = OpenTK.Graphics.ES30.All.StaticRead; - var _StaticCopy = OpenTK.Graphics.ES30.All.StaticCopy; - var _DynamicDraw = OpenTK.Graphics.ES30.All.DynamicDraw; - var _DynamicRead = OpenTK.Graphics.ES30.All.DynamicRead; - var _DynamicCopy = OpenTK.Graphics.ES30.All.DynamicCopy; - var _PixelPackBuffer = OpenTK.Graphics.ES30.All.PixelPackBuffer; - var _PixelUnpackBuffer = OpenTK.Graphics.ES30.All.PixelUnpackBuffer; - var _PixelPackBufferBinding = OpenTK.Graphics.ES30.All.PixelPackBufferBinding; - var _Etc1Srgb8Nv = OpenTK.Graphics.ES30.All.Etc1Srgb8Nv; - var _PixelUnpackBufferBinding = OpenTK.Graphics.ES30.All.PixelUnpackBufferBinding; - var _Depth24Stencil8 = OpenTK.Graphics.ES30.All.Depth24Stencil8; - var _Depth24Stencil8Oes = OpenTK.Graphics.ES30.All.Depth24Stencil8Oes; - var _VertexAttribArrayInteger = OpenTK.Graphics.ES30.All.VertexAttribArrayInteger; - var _VertexAttribArrayDivisor = OpenTK.Graphics.ES30.All.VertexAttribArrayDivisor; - var _VertexAttribArrayDivisorAngle = OpenTK.Graphics.ES30.All.VertexAttribArrayDivisorAngle; - var _VertexAttribArrayDivisorExt = OpenTK.Graphics.ES30.All.VertexAttribArrayDivisorExt; - var _VertexAttribArrayDivisorNv = OpenTK.Graphics.ES30.All.VertexAttribArrayDivisorNv; - var _MaxArrayTextureLayers = OpenTK.Graphics.ES30.All.MaxArrayTextureLayers; - var _MinProgramTexelOffset = OpenTK.Graphics.ES30.All.MinProgramTexelOffset; - var _MaxProgramTexelOffset = OpenTK.Graphics.ES30.All.MaxProgramTexelOffset; - var _GeometryLinkedVerticesOutExt = OpenTK.Graphics.ES30.All.GeometryLinkedVerticesOutExt; - var _GeometryLinkedInputTypeExt = OpenTK.Graphics.ES30.All.GeometryLinkedInputTypeExt; - var _GeometryLinkedOutputTypeExt = OpenTK.Graphics.ES30.All.GeometryLinkedOutputTypeExt; - var _SamplerBinding = OpenTK.Graphics.ES30.All.SamplerBinding; - var _PackResampleOml = OpenTK.Graphics.ES30.All.PackResampleOml; - var _UnpackResampleOml = OpenTK.Graphics.ES30.All.UnpackResampleOml; - var _UniformBuffer = OpenTK.Graphics.ES30.All.UniformBuffer; - var _Rgb422Apple = OpenTK.Graphics.ES30.All.Rgb422Apple; - var _UniformBufferBinding = OpenTK.Graphics.ES30.All.UniformBufferBinding; - var _UniformBufferStart = OpenTK.Graphics.ES30.All.UniformBufferStart; - var _UniformBufferSize = OpenTK.Graphics.ES30.All.UniformBufferSize; - var _MaxVertexUniformBlocks = OpenTK.Graphics.ES30.All.MaxVertexUniformBlocks; - var _MaxGeometryUniformBlocksExt = OpenTK.Graphics.ES30.All.MaxGeometryUniformBlocksExt; - var _MaxFragmentUniformBlocks = OpenTK.Graphics.ES30.All.MaxFragmentUniformBlocks; - var _MaxCombinedUniformBlocks = OpenTK.Graphics.ES30.All.MaxCombinedUniformBlocks; - var _MaxUniformBufferBindings = OpenTK.Graphics.ES30.All.MaxUniformBufferBindings; - var _MaxUniformBlockSize = OpenTK.Graphics.ES30.All.MaxUniformBlockSize; - var _MaxCombinedVertexUniformComponents = OpenTK.Graphics.ES30.All.MaxCombinedVertexUniformComponents; - var _MaxCombinedGeometryUniformComponentsExt = OpenTK.Graphics.ES30.All.MaxCombinedGeometryUniformComponentsExt; - var _MaxCombinedFragmentUniformComponents = OpenTK.Graphics.ES30.All.MaxCombinedFragmentUniformComponents; - var _UniformBufferOffsetAlignment = OpenTK.Graphics.ES30.All.UniformBufferOffsetAlignment; - var _ActiveUniformBlockMaxNameLength = OpenTK.Graphics.ES30.All.ActiveUniformBlockMaxNameLength; - var _ActiveUniformBlocks = OpenTK.Graphics.ES30.All.ActiveUniformBlocks; - var _UniformType = OpenTK.Graphics.ES30.All.UniformType; - var _UniformSize = OpenTK.Graphics.ES30.All.UniformSize; - var _UniformNameLength = OpenTK.Graphics.ES30.All.UniformNameLength; - var _UniformBlockIndex = OpenTK.Graphics.ES30.All.UniformBlockIndex; - var _UniformOffset = OpenTK.Graphics.ES30.All.UniformOffset; - var _UniformArrayStride = OpenTK.Graphics.ES30.All.UniformArrayStride; - var _UniformMatrixStride = OpenTK.Graphics.ES30.All.UniformMatrixStride; - var _UniformIsRowMajor = OpenTK.Graphics.ES30.All.UniformIsRowMajor; - var _UniformBlockBinding = OpenTK.Graphics.ES30.All.UniformBlockBinding; - var _UniformBlockDataSize = OpenTK.Graphics.ES30.All.UniformBlockDataSize; - var _UniformBlockNameLength = OpenTK.Graphics.ES30.All.UniformBlockNameLength; - var _UniformBlockActiveUniforms = OpenTK.Graphics.ES30.All.UniformBlockActiveUniforms; - var _UniformBlockActiveUniformIndices = OpenTK.Graphics.ES30.All.UniformBlockActiveUniformIndices; - var _UniformBlockReferencedByVertexShader = OpenTK.Graphics.ES30.All.UniformBlockReferencedByVertexShader; - var _UniformBlockReferencedByFragmentShader = OpenTK.Graphics.ES30.All.UniformBlockReferencedByFragmentShader; - var _TextureSrgbDecodeExt = OpenTK.Graphics.ES30.All.TextureSrgbDecodeExt; - var _DecodeExt = OpenTK.Graphics.ES30.All.DecodeExt; - var _SkipDecodeExt = OpenTK.Graphics.ES30.All.SkipDecodeExt; - var _ProgramPipelineObjectExt = OpenTK.Graphics.ES30.All.ProgramPipelineObjectExt; - var _RgbRaw422Apple = OpenTK.Graphics.ES30.All.RgbRaw422Apple; - var _FragmentShaderDiscardsSamplesExt = OpenTK.Graphics.ES30.All.FragmentShaderDiscardsSamplesExt; - var _SyncObjectApple = OpenTK.Graphics.ES30.All.SyncObjectApple; - var _CompressedSrgbPvrtc2Bppv1Ext = OpenTK.Graphics.ES30.All.CompressedSrgbPvrtc2Bppv1Ext; - var _CompressedSrgbPvrtc4Bppv1Ext = OpenTK.Graphics.ES30.All.CompressedSrgbPvrtc4Bppv1Ext; - var _CompressedSrgbAlphaPvrtc2Bppv1Ext = OpenTK.Graphics.ES30.All.CompressedSrgbAlphaPvrtc2Bppv1Ext; - var _CompressedSrgbAlphaPvrtc4Bppv1Ext = OpenTK.Graphics.ES30.All.CompressedSrgbAlphaPvrtc4Bppv1Ext; - var _FragmentShader = OpenTK.Graphics.ES30.All.FragmentShader; - var _VertexShader = OpenTK.Graphics.ES30.All.VertexShader; - var _ProgramObjectExt = OpenTK.Graphics.ES30.All.ProgramObjectExt; - var _ShaderObjectExt = OpenTK.Graphics.ES30.All.ShaderObjectExt; - var _MaxFragmentUniformComponents = OpenTK.Graphics.ES30.All.MaxFragmentUniformComponents; - var _MaxVertexUniformComponents = OpenTK.Graphics.ES30.All.MaxVertexUniformComponents; - var _MaxVaryingComponents = OpenTK.Graphics.ES30.All.MaxVaryingComponents; - var _MaxVertexTextureImageUnits = OpenTK.Graphics.ES30.All.MaxVertexTextureImageUnits; - var _MaxCombinedTextureImageUnits = OpenTK.Graphics.ES30.All.MaxCombinedTextureImageUnits; - var _ShaderType = OpenTK.Graphics.ES30.All.ShaderType; - var _FloatVec2 = OpenTK.Graphics.ES30.All.FloatVec2; - var _FloatVec3 = OpenTK.Graphics.ES30.All.FloatVec3; - var _FloatVec4 = OpenTK.Graphics.ES30.All.FloatVec4; - var _IntVec2 = OpenTK.Graphics.ES30.All.IntVec2; - var _IntVec3 = OpenTK.Graphics.ES30.All.IntVec3; - var _IntVec4 = OpenTK.Graphics.ES30.All.IntVec4; - var _Bool = OpenTK.Graphics.ES30.All.Bool; - var _BoolVec2 = OpenTK.Graphics.ES30.All.BoolVec2; - var _BoolVec3 = OpenTK.Graphics.ES30.All.BoolVec3; - var _BoolVec4 = OpenTK.Graphics.ES30.All.BoolVec4; - var _FloatMat2 = OpenTK.Graphics.ES30.All.FloatMat2; - var _FloatMat3 = OpenTK.Graphics.ES30.All.FloatMat3; - var _FloatMat4 = OpenTK.Graphics.ES30.All.FloatMat4; - var _Sampler2D = OpenTK.Graphics.ES30.All.Sampler2D; - var _Sampler3D = OpenTK.Graphics.ES30.All.Sampler3D; - var _Sampler3DOes = OpenTK.Graphics.ES30.All.Sampler3DOes; - var _SamplerCube = OpenTK.Graphics.ES30.All.SamplerCube; - var _Sampler2DShadow = OpenTK.Graphics.ES30.All.Sampler2DShadow; - var _Sampler2DShadowExt = OpenTK.Graphics.ES30.All.Sampler2DShadowExt; - var _FloatMat2x3 = OpenTK.Graphics.ES30.All.FloatMat2x3; - var _FloatMat2x3Nv = OpenTK.Graphics.ES30.All.FloatMat2x3Nv; - var _FloatMat2x4 = OpenTK.Graphics.ES30.All.FloatMat2x4; - var _FloatMat2x4Nv = OpenTK.Graphics.ES30.All.FloatMat2x4Nv; - var _FloatMat3x2 = OpenTK.Graphics.ES30.All.FloatMat3x2; - var _FloatMat3x2Nv = OpenTK.Graphics.ES30.All.FloatMat3x2Nv; - var _FloatMat3x4 = OpenTK.Graphics.ES30.All.FloatMat3x4; - var _FloatMat3x4Nv = OpenTK.Graphics.ES30.All.FloatMat3x4Nv; - var _FloatMat4x2 = OpenTK.Graphics.ES30.All.FloatMat4x2; - var _FloatMat4x2Nv = OpenTK.Graphics.ES30.All.FloatMat4x2Nv; - var _FloatMat4x3 = OpenTK.Graphics.ES30.All.FloatMat4x3; - var _FloatMat4x3Nv = OpenTK.Graphics.ES30.All.FloatMat4x3Nv; - var _DeleteStatus = OpenTK.Graphics.ES30.All.DeleteStatus; - var _CompileStatus = OpenTK.Graphics.ES30.All.CompileStatus; - var _LinkStatus = OpenTK.Graphics.ES30.All.LinkStatus; - var _ValidateStatus = OpenTK.Graphics.ES30.All.ValidateStatus; - var _InfoLogLength = OpenTK.Graphics.ES30.All.InfoLogLength; - var _AttachedShaders = OpenTK.Graphics.ES30.All.AttachedShaders; - var _ActiveUniforms = OpenTK.Graphics.ES30.All.ActiveUniforms; - var _ActiveUniformMaxLength = OpenTK.Graphics.ES30.All.ActiveUniformMaxLength; - var _ShaderSourceLength = OpenTK.Graphics.ES30.All.ShaderSourceLength; - var _ActiveAttributes = OpenTK.Graphics.ES30.All.ActiveAttributes; - var _ActiveAttributeMaxLength = OpenTK.Graphics.ES30.All.ActiveAttributeMaxLength; - var _FragmentShaderDerivativeHint = OpenTK.Graphics.ES30.All.FragmentShaderDerivativeHint; - var _FragmentShaderDerivativeHintArb = OpenTK.Graphics.ES30.All.FragmentShaderDerivativeHintArb; - var _FragmentShaderDerivativeHintOes = OpenTK.Graphics.ES30.All.FragmentShaderDerivativeHintOes; - var _ShadingLanguageVersion = OpenTK.Graphics.ES30.All.ShadingLanguageVersion; - var _CurrentProgram = OpenTK.Graphics.ES30.All.CurrentProgram; - var _Palette4Rgb8Oes = OpenTK.Graphics.ES30.All.Palette4Rgb8Oes; - var _Palette4Rgba8Oes = OpenTK.Graphics.ES30.All.Palette4Rgba8Oes; - var _Palette4R5G6B5Oes = OpenTK.Graphics.ES30.All.Palette4R5G6B5Oes; - var _Palette4Rgba4Oes = OpenTK.Graphics.ES30.All.Palette4Rgba4Oes; - var _Palette4Rgb5A1Oes = OpenTK.Graphics.ES30.All.Palette4Rgb5A1Oes; - var _Palette8Rgb8Oes = OpenTK.Graphics.ES30.All.Palette8Rgb8Oes; - var _Palette8Rgba8Oes = OpenTK.Graphics.ES30.All.Palette8Rgba8Oes; - var _Palette8R5G6B5Oes = OpenTK.Graphics.ES30.All.Palette8R5G6B5Oes; - var _Palette8Rgba4Oes = OpenTK.Graphics.ES30.All.Palette8Rgba4Oes; - var _Palette8Rgb5A1Oes = OpenTK.Graphics.ES30.All.Palette8Rgb5A1Oes; - var _ImplementationColorReadType = OpenTK.Graphics.ES30.All.ImplementationColorReadType; - var _ImplementationColorReadFormat = OpenTK.Graphics.ES30.All.ImplementationColorReadFormat; - var _CounterTypeAmd = OpenTK.Graphics.ES30.All.CounterTypeAmd; - var _CounterRangeAmd = OpenTK.Graphics.ES30.All.CounterRangeAmd; - var _UnsignedInt64Amd = OpenTK.Graphics.ES30.All.UnsignedInt64Amd; - var _PercentageAmd = OpenTK.Graphics.ES30.All.PercentageAmd; - var _PerfmonResultAvailableAmd = OpenTK.Graphics.ES30.All.PerfmonResultAvailableAmd; - var _PerfmonResultSizeAmd = OpenTK.Graphics.ES30.All.PerfmonResultSizeAmd; - var _PerfmonResultAmd = OpenTK.Graphics.ES30.All.PerfmonResultAmd; - var _TextureWidthQcom = OpenTK.Graphics.ES30.All.TextureWidthQcom; - var _TextureHeightQcom = OpenTK.Graphics.ES30.All.TextureHeightQcom; - var _TextureDepthQcom = OpenTK.Graphics.ES30.All.TextureDepthQcom; - var _TextureInternalFormatQcom = OpenTK.Graphics.ES30.All.TextureInternalFormatQcom; - var _TextureFormatQcom = OpenTK.Graphics.ES30.All.TextureFormatQcom; - var _TextureTypeQcom = OpenTK.Graphics.ES30.All.TextureTypeQcom; - var _TextureImageValidQcom = OpenTK.Graphics.ES30.All.TextureImageValidQcom; - var _TextureNumLevelsQcom = OpenTK.Graphics.ES30.All.TextureNumLevelsQcom; - var _TextureTargetQcom = OpenTK.Graphics.ES30.All.TextureTargetQcom; - var _TextureObjectValidQcom = OpenTK.Graphics.ES30.All.TextureObjectValidQcom; - var _StateRestore = OpenTK.Graphics.ES30.All.StateRestore; - var _CompressedRgbPvrtc4Bppv1Img = OpenTK.Graphics.ES30.All.CompressedRgbPvrtc4Bppv1Img; - var _CompressedRgbPvrtc2Bppv1Img = OpenTK.Graphics.ES30.All.CompressedRgbPvrtc2Bppv1Img; - var _CompressedRgbaPvrtc4Bppv1Img = OpenTK.Graphics.ES30.All.CompressedRgbaPvrtc4Bppv1Img; - var _CompressedRgbaPvrtc2Bppv1Img = OpenTK.Graphics.ES30.All.CompressedRgbaPvrtc2Bppv1Img; - var _SgxBinaryImg = OpenTK.Graphics.ES30.All.SgxBinaryImg; - var _UnsignedNormalized = OpenTK.Graphics.ES30.All.UnsignedNormalized; - var _UnsignedNormalizedExt = OpenTK.Graphics.ES30.All.UnsignedNormalizedExt; - var _Texture2DArray = OpenTK.Graphics.ES30.All.Texture2DArray; - var _TextureBinding2DArray = OpenTK.Graphics.ES30.All.TextureBinding2DArray; - var _MaxGeometryTextureImageUnitsExt = OpenTK.Graphics.ES30.All.MaxGeometryTextureImageUnitsExt; - var _TextureBufferBindingExt = OpenTK.Graphics.ES30.All.TextureBufferBindingExt; - var _TextureBufferExt = OpenTK.Graphics.ES30.All.TextureBufferExt; - var _MaxTextureBufferSizeExt = OpenTK.Graphics.ES30.All.MaxTextureBufferSizeExt; - var _TextureBindingBufferExt = OpenTK.Graphics.ES30.All.TextureBindingBufferExt; - var _TextureBufferDataStoreBindingExt = OpenTK.Graphics.ES30.All.TextureBufferDataStoreBindingExt; - var _AnySamplesPassed = OpenTK.Graphics.ES30.All.AnySamplesPassed; - var _AnySamplesPassedExt = OpenTK.Graphics.ES30.All.AnySamplesPassedExt; - var _SampleShadingOes = OpenTK.Graphics.ES30.All.SampleShadingOes; - var _MinSampleShadingValueOes = OpenTK.Graphics.ES30.All.MinSampleShadingValueOes; - var _R11fG11fB10f = OpenTK.Graphics.ES30.All.R11fG11fB10f; - var _UnsignedInt10F11F11FRev = OpenTK.Graphics.ES30.All.UnsignedInt10F11F11FRev; - var _Rgb9E5 = OpenTK.Graphics.ES30.All.Rgb9E5; - var _UnsignedInt5999Rev = OpenTK.Graphics.ES30.All.UnsignedInt5999Rev; - var _Srgb = OpenTK.Graphics.ES30.All.Srgb; - var _SrgbExt = OpenTK.Graphics.ES30.All.SrgbExt; - var _Srgb8 = OpenTK.Graphics.ES30.All.Srgb8; - var _Srgb8Nv = OpenTK.Graphics.ES30.All.Srgb8Nv; - var _SrgbAlphaExt = OpenTK.Graphics.ES30.All.SrgbAlphaExt; - var _Srgb8Alpha8 = OpenTK.Graphics.ES30.All.Srgb8Alpha8; - var _Srgb8Alpha8Ext = OpenTK.Graphics.ES30.All.Srgb8Alpha8Ext; - var _SluminanceAlphaNv = OpenTK.Graphics.ES30.All.SluminanceAlphaNv; - var _Sluminance8Alpha8Nv = OpenTK.Graphics.ES30.All.Sluminance8Alpha8Nv; - var _SluminanceNv = OpenTK.Graphics.ES30.All.SluminanceNv; - var _Sluminance8Nv = OpenTK.Graphics.ES30.All.Sluminance8Nv; - var _CompressedSrgbS3tcDxt1Nv = OpenTK.Graphics.ES30.All.CompressedSrgbS3tcDxt1Nv; - var _CompressedSrgbAlphaS3tcDxt1Nv = OpenTK.Graphics.ES30.All.CompressedSrgbAlphaS3tcDxt1Nv; - var _CompressedSrgbAlphaS3tcDxt3Nv = OpenTK.Graphics.ES30.All.CompressedSrgbAlphaS3tcDxt3Nv; - var _CompressedSrgbAlphaS3tcDxt5Nv = OpenTK.Graphics.ES30.All.CompressedSrgbAlphaS3tcDxt5Nv; - var _TransformFeedbackVaryingMaxLength = OpenTK.Graphics.ES30.All.TransformFeedbackVaryingMaxLength; - var _TransformFeedbackBufferMode = OpenTK.Graphics.ES30.All.TransformFeedbackBufferMode; - var _MaxTransformFeedbackSeparateComponents = OpenTK.Graphics.ES30.All.MaxTransformFeedbackSeparateComponents; - var _TransformFeedbackVaryings = OpenTK.Graphics.ES30.All.TransformFeedbackVaryings; - var _TransformFeedbackBufferStart = OpenTK.Graphics.ES30.All.TransformFeedbackBufferStart; - var _TransformFeedbackBufferSize = OpenTK.Graphics.ES30.All.TransformFeedbackBufferSize; - var _PrimitivesGeneratedExt = OpenTK.Graphics.ES30.All.PrimitivesGeneratedExt; - var _TransformFeedbackPrimitivesWritten = OpenTK.Graphics.ES30.All.TransformFeedbackPrimitivesWritten; - var _RasterizerDiscard = OpenTK.Graphics.ES30.All.RasterizerDiscard; - var _MaxTransformFeedbackInterleavedComponents = OpenTK.Graphics.ES30.All.MaxTransformFeedbackInterleavedComponents; - var _MaxTransformFeedbackSeparateAttribs = OpenTK.Graphics.ES30.All.MaxTransformFeedbackSeparateAttribs; - var _InterleavedAttribs = OpenTK.Graphics.ES30.All.InterleavedAttribs; - var _SeparateAttribs = OpenTK.Graphics.ES30.All.SeparateAttribs; - var _TransformFeedbackBuffer = OpenTK.Graphics.ES30.All.TransformFeedbackBuffer; - var _TransformFeedbackBufferBinding = OpenTK.Graphics.ES30.All.TransformFeedbackBufferBinding; - var _AtcRgbAmd = OpenTK.Graphics.ES30.All.AtcRgbAmd; - var _AtcRgbaExplicitAlphaAmd = OpenTK.Graphics.ES30.All.AtcRgbaExplicitAlphaAmd; - var _StencilBackRef = OpenTK.Graphics.ES30.All.StencilBackRef; - var _StencilBackValueMask = OpenTK.Graphics.ES30.All.StencilBackValueMask; - var _StencilBackWritemask = OpenTK.Graphics.ES30.All.StencilBackWritemask; - var _DrawFramebufferBinding = OpenTK.Graphics.ES30.All.DrawFramebufferBinding; - var _DrawFramebufferBindingAngle = OpenTK.Graphics.ES30.All.DrawFramebufferBindingAngle; - var _DrawFramebufferBindingApple = OpenTK.Graphics.ES30.All.DrawFramebufferBindingApple; - var _DrawFramebufferBindingNv = OpenTK.Graphics.ES30.All.DrawFramebufferBindingNv; - var _FramebufferBinding = OpenTK.Graphics.ES30.All.FramebufferBinding; - var _RenderbufferBinding = OpenTK.Graphics.ES30.All.RenderbufferBinding; - var _ReadFramebuffer = OpenTK.Graphics.ES30.All.ReadFramebuffer; - var _ReadFramebufferAngle = OpenTK.Graphics.ES30.All.ReadFramebufferAngle; - var _ReadFramebufferApple = OpenTK.Graphics.ES30.All.ReadFramebufferApple; - var _ReadFramebufferNv = OpenTK.Graphics.ES30.All.ReadFramebufferNv; - var _DrawFramebuffer = OpenTK.Graphics.ES30.All.DrawFramebuffer; - var _DrawFramebufferAngle = OpenTK.Graphics.ES30.All.DrawFramebufferAngle; - var _DrawFramebufferApple = OpenTK.Graphics.ES30.All.DrawFramebufferApple; - var _DrawFramebufferNv = OpenTK.Graphics.ES30.All.DrawFramebufferNv; - var _ReadFramebufferBinding = OpenTK.Graphics.ES30.All.ReadFramebufferBinding; - var _ReadFramebufferBindingAngle = OpenTK.Graphics.ES30.All.ReadFramebufferBindingAngle; - var _ReadFramebufferBindingApple = OpenTK.Graphics.ES30.All.ReadFramebufferBindingApple; - var _ReadFramebufferBindingNv = OpenTK.Graphics.ES30.All.ReadFramebufferBindingNv; - var _RenderbufferSamples = OpenTK.Graphics.ES30.All.RenderbufferSamples; - var _RenderbufferSamplesAngle = OpenTK.Graphics.ES30.All.RenderbufferSamplesAngle; - var _RenderbufferSamplesApple = OpenTK.Graphics.ES30.All.RenderbufferSamplesApple; - var _RenderbufferSamplesExt = OpenTK.Graphics.ES30.All.RenderbufferSamplesExt; - var _RenderbufferSamplesNv = OpenTK.Graphics.ES30.All.RenderbufferSamplesNv; - var _DepthComponent32f = OpenTK.Graphics.ES30.All.DepthComponent32f; - var _Depth32fStencil8 = OpenTK.Graphics.ES30.All.Depth32fStencil8; - var _FramebufferAttachmentObjectType = OpenTK.Graphics.ES30.All.FramebufferAttachmentObjectType; - var _FramebufferAttachmentObjectName = OpenTK.Graphics.ES30.All.FramebufferAttachmentObjectName; - var _FramebufferAttachmentTextureLevel = OpenTK.Graphics.ES30.All.FramebufferAttachmentTextureLevel; - var _FramebufferAttachmentTextureCubeMapFace = OpenTK.Graphics.ES30.All.FramebufferAttachmentTextureCubeMapFace; - var _FramebufferAttachmentTexture3DZoffsetOes = OpenTK.Graphics.ES30.All.FramebufferAttachmentTexture3DZoffsetOes; - var _FramebufferAttachmentTextureLayer = OpenTK.Graphics.ES30.All.FramebufferAttachmentTextureLayer; - var _FramebufferComplete = OpenTK.Graphics.ES30.All.FramebufferComplete; - var _FramebufferIncompleteAttachment = OpenTK.Graphics.ES30.All.FramebufferIncompleteAttachment; - var _FramebufferIncompleteMissingAttachment = OpenTK.Graphics.ES30.All.FramebufferIncompleteMissingAttachment; - var _FramebufferIncompleteDimensions = OpenTK.Graphics.ES30.All.FramebufferIncompleteDimensions; - var _FramebufferUnsupported = OpenTK.Graphics.ES30.All.FramebufferUnsupported; - var _MaxColorAttachments = OpenTK.Graphics.ES30.All.MaxColorAttachments; - var _MaxColorAttachmentsExt = OpenTK.Graphics.ES30.All.MaxColorAttachmentsExt; - var _MaxColorAttachmentsNv = OpenTK.Graphics.ES30.All.MaxColorAttachmentsNv; - var _ColorAttachment0 = OpenTK.Graphics.ES30.All.ColorAttachment0; - var _ColorAttachment0Ext = OpenTK.Graphics.ES30.All.ColorAttachment0Ext; - var _ColorAttachment0Nv = OpenTK.Graphics.ES30.All.ColorAttachment0Nv; - var _ColorAttachment1 = OpenTK.Graphics.ES30.All.ColorAttachment1; - var _ColorAttachment1Ext = OpenTK.Graphics.ES30.All.ColorAttachment1Ext; - var _ColorAttachment1Nv = OpenTK.Graphics.ES30.All.ColorAttachment1Nv; - var _ColorAttachment2 = OpenTK.Graphics.ES30.All.ColorAttachment2; - var _ColorAttachment2Ext = OpenTK.Graphics.ES30.All.ColorAttachment2Ext; - var _ColorAttachment2Nv = OpenTK.Graphics.ES30.All.ColorAttachment2Nv; - var _ColorAttachment3 = OpenTK.Graphics.ES30.All.ColorAttachment3; - var _ColorAttachment3Ext = OpenTK.Graphics.ES30.All.ColorAttachment3Ext; - var _ColorAttachment3Nv = OpenTK.Graphics.ES30.All.ColorAttachment3Nv; - var _ColorAttachment4 = OpenTK.Graphics.ES30.All.ColorAttachment4; - var _ColorAttachment4Ext = OpenTK.Graphics.ES30.All.ColorAttachment4Ext; - var _ColorAttachment4Nv = OpenTK.Graphics.ES30.All.ColorAttachment4Nv; - var _ColorAttachment5 = OpenTK.Graphics.ES30.All.ColorAttachment5; - var _ColorAttachment5Ext = OpenTK.Graphics.ES30.All.ColorAttachment5Ext; - var _ColorAttachment5Nv = OpenTK.Graphics.ES30.All.ColorAttachment5Nv; - var _ColorAttachment6 = OpenTK.Graphics.ES30.All.ColorAttachment6; - var _ColorAttachment6Ext = OpenTK.Graphics.ES30.All.ColorAttachment6Ext; - var _ColorAttachment6Nv = OpenTK.Graphics.ES30.All.ColorAttachment6Nv; - var _ColorAttachment7 = OpenTK.Graphics.ES30.All.ColorAttachment7; - var _ColorAttachment7Ext = OpenTK.Graphics.ES30.All.ColorAttachment7Ext; - var _ColorAttachment7Nv = OpenTK.Graphics.ES30.All.ColorAttachment7Nv; - var _ColorAttachment8 = OpenTK.Graphics.ES30.All.ColorAttachment8; - var _ColorAttachment8Ext = OpenTK.Graphics.ES30.All.ColorAttachment8Ext; - var _ColorAttachment8Nv = OpenTK.Graphics.ES30.All.ColorAttachment8Nv; - var _ColorAttachment9 = OpenTK.Graphics.ES30.All.ColorAttachment9; - var _ColorAttachment9Ext = OpenTK.Graphics.ES30.All.ColorAttachment9Ext; - var _ColorAttachment9Nv = OpenTK.Graphics.ES30.All.ColorAttachment9Nv; - var _ColorAttachment10 = OpenTK.Graphics.ES30.All.ColorAttachment10; - var _ColorAttachment10Ext = OpenTK.Graphics.ES30.All.ColorAttachment10Ext; - var _ColorAttachment10Nv = OpenTK.Graphics.ES30.All.ColorAttachment10Nv; - var _ColorAttachment11 = OpenTK.Graphics.ES30.All.ColorAttachment11; - var _ColorAttachment11Ext = OpenTK.Graphics.ES30.All.ColorAttachment11Ext; - var _ColorAttachment11Nv = OpenTK.Graphics.ES30.All.ColorAttachment11Nv; - var _ColorAttachment12 = OpenTK.Graphics.ES30.All.ColorAttachment12; - var _ColorAttachment12Ext = OpenTK.Graphics.ES30.All.ColorAttachment12Ext; - var _ColorAttachment12Nv = OpenTK.Graphics.ES30.All.ColorAttachment12Nv; - var _ColorAttachment13 = OpenTK.Graphics.ES30.All.ColorAttachment13; - var _ColorAttachment13Ext = OpenTK.Graphics.ES30.All.ColorAttachment13Ext; - var _ColorAttachment13Nv = OpenTK.Graphics.ES30.All.ColorAttachment13Nv; - var _ColorAttachment14 = OpenTK.Graphics.ES30.All.ColorAttachment14; - var _ColorAttachment14Ext = OpenTK.Graphics.ES30.All.ColorAttachment14Ext; - var _ColorAttachment14Nv = OpenTK.Graphics.ES30.All.ColorAttachment14Nv; - var _ColorAttachment15 = OpenTK.Graphics.ES30.All.ColorAttachment15; - var _ColorAttachment15Ext = OpenTK.Graphics.ES30.All.ColorAttachment15Ext; - var _ColorAttachment15Nv = OpenTK.Graphics.ES30.All.ColorAttachment15Nv; - var _DepthAttachment = OpenTK.Graphics.ES30.All.DepthAttachment; - var _StencilAttachment = OpenTK.Graphics.ES30.All.StencilAttachment; - var _Framebuffer = OpenTK.Graphics.ES30.All.Framebuffer; - var _Renderbuffer = OpenTK.Graphics.ES30.All.Renderbuffer; - var _RenderbufferWidth = OpenTK.Graphics.ES30.All.RenderbufferWidth; - var _RenderbufferHeight = OpenTK.Graphics.ES30.All.RenderbufferHeight; - var _RenderbufferInternalFormat = OpenTK.Graphics.ES30.All.RenderbufferInternalFormat; - var _StencilIndex1Oes = OpenTK.Graphics.ES30.All.StencilIndex1Oes; - var _StencilIndex4Oes = OpenTK.Graphics.ES30.All.StencilIndex4Oes; - var _StencilIndex8 = OpenTK.Graphics.ES30.All.StencilIndex8; - var _StencilIndex8Oes = OpenTK.Graphics.ES30.All.StencilIndex8Oes; - var _RenderbufferRedSize = OpenTK.Graphics.ES30.All.RenderbufferRedSize; - var _RenderbufferGreenSize = OpenTK.Graphics.ES30.All.RenderbufferGreenSize; - var _RenderbufferBlueSize = OpenTK.Graphics.ES30.All.RenderbufferBlueSize; - var _RenderbufferAlphaSize = OpenTK.Graphics.ES30.All.RenderbufferAlphaSize; - var _RenderbufferDepthSize = OpenTK.Graphics.ES30.All.RenderbufferDepthSize; - var _RenderbufferStencilSize = OpenTK.Graphics.ES30.All.RenderbufferStencilSize; - var _FramebufferIncompleteMultisample = OpenTK.Graphics.ES30.All.FramebufferIncompleteMultisample; - var _FramebufferIncompleteMultisampleAngle = OpenTK.Graphics.ES30.All.FramebufferIncompleteMultisampleAngle; - var _FramebufferIncompleteMultisampleApple = OpenTK.Graphics.ES30.All.FramebufferIncompleteMultisampleApple; - var _FramebufferIncompleteMultisampleExt = OpenTK.Graphics.ES30.All.FramebufferIncompleteMultisampleExt; - var _FramebufferIncompleteMultisampleNv = OpenTK.Graphics.ES30.All.FramebufferIncompleteMultisampleNv; - var _MaxSamples = OpenTK.Graphics.ES30.All.MaxSamples; - var _MaxSamplesAngle = OpenTK.Graphics.ES30.All.MaxSamplesAngle; - var _MaxSamplesApple = OpenTK.Graphics.ES30.All.MaxSamplesApple; - var _MaxSamplesExt = OpenTK.Graphics.ES30.All.MaxSamplesExt; - var _MaxSamplesNv = OpenTK.Graphics.ES30.All.MaxSamplesNv; - var _HalfFloatOes = OpenTK.Graphics.ES30.All.HalfFloatOes; - var _Rgb565Oes = OpenTK.Graphics.ES30.All.Rgb565Oes; - var _Rgb565 = OpenTK.Graphics.ES30.All.Rgb565; - var _Etc1Rgb8Oes = OpenTK.Graphics.ES30.All.Etc1Rgb8Oes; - var _TextureExternalOes = OpenTK.Graphics.ES30.All.TextureExternalOes; - var _SamplerExternalOes = OpenTK.Graphics.ES30.All.SamplerExternalOes; - var _TextureBindingExternalOes = OpenTK.Graphics.ES30.All.TextureBindingExternalOes; - var _RequiredTextureImageUnitsOes = OpenTK.Graphics.ES30.All.RequiredTextureImageUnitsOes; - var _PrimitiveRestartFixedIndex = OpenTK.Graphics.ES30.All.PrimitiveRestartFixedIndex; - var _AnySamplesPassedConservative = OpenTK.Graphics.ES30.All.AnySamplesPassedConservative; - var _AnySamplesPassedConservativeExt = OpenTK.Graphics.ES30.All.AnySamplesPassedConservativeExt; - var _MaxElementIndex = OpenTK.Graphics.ES30.All.MaxElementIndex; - var _FramebufferAttachmentTextureSamplesExt = OpenTK.Graphics.ES30.All.FramebufferAttachmentTextureSamplesExt; - var _Rgba32ui = OpenTK.Graphics.ES30.All.Rgba32ui; - var _Rgb32ui = OpenTK.Graphics.ES30.All.Rgb32ui; - var _Rgba16ui = OpenTK.Graphics.ES30.All.Rgba16ui; - var _Rgb16ui = OpenTK.Graphics.ES30.All.Rgb16ui; - var _Rgba8ui = OpenTK.Graphics.ES30.All.Rgba8ui; - var _Rgb8ui = OpenTK.Graphics.ES30.All.Rgb8ui; - var _Rgba32i = OpenTK.Graphics.ES30.All.Rgba32i; - var _Rgb32i = OpenTK.Graphics.ES30.All.Rgb32i; - var _Rgba16i = OpenTK.Graphics.ES30.All.Rgba16i; - var _Rgb16i = OpenTK.Graphics.ES30.All.Rgb16i; - var _Rgba8i = OpenTK.Graphics.ES30.All.Rgba8i; - var _Rgb8i = OpenTK.Graphics.ES30.All.Rgb8i; - var _RedInteger = OpenTK.Graphics.ES30.All.RedInteger; - var _RgbInteger = OpenTK.Graphics.ES30.All.RgbInteger; - var _RgbaInteger = OpenTK.Graphics.ES30.All.RgbaInteger; - var _Int2101010Rev = OpenTK.Graphics.ES30.All.Int2101010Rev; - var _FramebufferAttachmentLayeredExt = OpenTK.Graphics.ES30.All.FramebufferAttachmentLayeredExt; - var _FramebufferIncompleteLayerTargetsExt = OpenTK.Graphics.ES30.All.FramebufferIncompleteLayerTargetsExt; - var _Float32UnsignedInt248Rev = OpenTK.Graphics.ES30.All.Float32UnsignedInt248Rev; - var _FramebufferSrgbExt = OpenTK.Graphics.ES30.All.FramebufferSrgbExt; - var _Sampler2DArray = OpenTK.Graphics.ES30.All.Sampler2DArray; - var _SamplerBufferExt = OpenTK.Graphics.ES30.All.SamplerBufferExt; - var _Sampler2DArrayShadow = OpenTK.Graphics.ES30.All.Sampler2DArrayShadow; - var _Sampler2DArrayShadowNv = OpenTK.Graphics.ES30.All.Sampler2DArrayShadowNv; - var _SamplerCubeShadow = OpenTK.Graphics.ES30.All.SamplerCubeShadow; - var _SamplerCubeShadowNv = OpenTK.Graphics.ES30.All.SamplerCubeShadowNv; - var _UnsignedIntVec2 = OpenTK.Graphics.ES30.All.UnsignedIntVec2; - var _UnsignedIntVec3 = OpenTK.Graphics.ES30.All.UnsignedIntVec3; - var _UnsignedIntVec4 = OpenTK.Graphics.ES30.All.UnsignedIntVec4; - var _IntSampler2D = OpenTK.Graphics.ES30.All.IntSampler2D; - var _IntSampler3D = OpenTK.Graphics.ES30.All.IntSampler3D; - var _IntSamplerCube = OpenTK.Graphics.ES30.All.IntSamplerCube; - var _IntSampler2DArray = OpenTK.Graphics.ES30.All.IntSampler2DArray; - var _IntSamplerBufferExt = OpenTK.Graphics.ES30.All.IntSamplerBufferExt; - var _UnsignedIntSampler2D = OpenTK.Graphics.ES30.All.UnsignedIntSampler2D; - var _UnsignedIntSampler3D = OpenTK.Graphics.ES30.All.UnsignedIntSampler3D; - var _UnsignedIntSamplerCube = OpenTK.Graphics.ES30.All.UnsignedIntSamplerCube; - var _UnsignedIntSampler2DArray = OpenTK.Graphics.ES30.All.UnsignedIntSampler2DArray; - var _UnsignedIntSamplerBufferExt = OpenTK.Graphics.ES30.All.UnsignedIntSamplerBufferExt; - var _GeometryShaderExt = OpenTK.Graphics.ES30.All.GeometryShaderExt; - var _MaxGeometryUniformComponentsExt = OpenTK.Graphics.ES30.All.MaxGeometryUniformComponentsExt; - var _MaxGeometryOutputVerticesExt = OpenTK.Graphics.ES30.All.MaxGeometryOutputVerticesExt; - var _MaxGeometryTotalOutputComponentsExt = OpenTK.Graphics.ES30.All.MaxGeometryTotalOutputComponentsExt; - var _LowFloat = OpenTK.Graphics.ES30.All.LowFloat; - var _MediumFloat = OpenTK.Graphics.ES30.All.MediumFloat; - var _HighFloat = OpenTK.Graphics.ES30.All.HighFloat; - var _LowInt = OpenTK.Graphics.ES30.All.LowInt; - var _MediumInt = OpenTK.Graphics.ES30.All.MediumInt; - var _HighInt = OpenTK.Graphics.ES30.All.HighInt; - var _UnsignedInt1010102Oes = OpenTK.Graphics.ES30.All.UnsignedInt1010102Oes; - var _Int1010102Oes = OpenTK.Graphics.ES30.All.Int1010102Oes; - var _ShaderBinaryFormats = OpenTK.Graphics.ES30.All.ShaderBinaryFormats; - var _NumShaderBinaryFormats = OpenTK.Graphics.ES30.All.NumShaderBinaryFormats; - var _ShaderCompiler = OpenTK.Graphics.ES30.All.ShaderCompiler; - var _MaxVertexUniformVectors = OpenTK.Graphics.ES30.All.MaxVertexUniformVectors; - var _MaxVaryingVectors = OpenTK.Graphics.ES30.All.MaxVaryingVectors; - var _MaxFragmentUniformVectors = OpenTK.Graphics.ES30.All.MaxFragmentUniformVectors; - var _MaxCombinedTessControlUniformComponentsExt = OpenTK.Graphics.ES30.All.MaxCombinedTessControlUniformComponentsExt; - var _MaxCombinedTessEvaluationUniformComponentsExt = OpenTK.Graphics.ES30.All.MaxCombinedTessEvaluationUniformComponentsExt; - var _TransformFeedback = OpenTK.Graphics.ES30.All.TransformFeedback; - var _TransformFeedbackPaused = OpenTK.Graphics.ES30.All.TransformFeedbackPaused; - var _TransformFeedbackActive = OpenTK.Graphics.ES30.All.TransformFeedbackActive; - var _TransformFeedbackBinding = OpenTK.Graphics.ES30.All.TransformFeedbackBinding; - var _TimestampExt = OpenTK.Graphics.ES30.All.TimestampExt; - var _DepthComponent16NonlinearNv = OpenTK.Graphics.ES30.All.DepthComponent16NonlinearNv; - var _TextureSwizzleR = OpenTK.Graphics.ES30.All.TextureSwizzleR; - var _TextureSwizzleG = OpenTK.Graphics.ES30.All.TextureSwizzleG; - var _TextureSwizzleB = OpenTK.Graphics.ES30.All.TextureSwizzleB; - var _TextureSwizzleA = OpenTK.Graphics.ES30.All.TextureSwizzleA; - var _FirstVertexConventionExt = OpenTK.Graphics.ES30.All.FirstVertexConventionExt; - var _LastVertexConventionExt = OpenTK.Graphics.ES30.All.LastVertexConventionExt; - var _MaxGeometryShaderInvocationsExt = OpenTK.Graphics.ES30.All.MaxGeometryShaderInvocationsExt; - var _MinFragmentInterpolationOffsetOes = OpenTK.Graphics.ES30.All.MinFragmentInterpolationOffsetOes; - var _MaxFragmentInterpolationOffsetOes = OpenTK.Graphics.ES30.All.MaxFragmentInterpolationOffsetOes; - var _FragmentInterpolationOffsetBitsOes = OpenTK.Graphics.ES30.All.FragmentInterpolationOffsetBitsOes; - var _PatchVerticesExt = OpenTK.Graphics.ES30.All.PatchVerticesExt; - var _TessControlOutputVerticesExt = OpenTK.Graphics.ES30.All.TessControlOutputVerticesExt; - var _TessGenModeExt = OpenTK.Graphics.ES30.All.TessGenModeExt; - var _TessGenSpacingExt = OpenTK.Graphics.ES30.All.TessGenSpacingExt; - var _TessGenVertexOrderExt = OpenTK.Graphics.ES30.All.TessGenVertexOrderExt; - var _TessGenPointModeExt = OpenTK.Graphics.ES30.All.TessGenPointModeExt; - var _IsolinesExt = OpenTK.Graphics.ES30.All.IsolinesExt; - var _FractionalOddExt = OpenTK.Graphics.ES30.All.FractionalOddExt; - var _FractionalEvenExt = OpenTK.Graphics.ES30.All.FractionalEvenExt; - var _MaxPatchVerticesExt = OpenTK.Graphics.ES30.All.MaxPatchVerticesExt; - var _MaxTessGenLevelExt = OpenTK.Graphics.ES30.All.MaxTessGenLevelExt; - var _MaxTessControlUniformComponentsExt = OpenTK.Graphics.ES30.All.MaxTessControlUniformComponentsExt; - var _MaxTessEvaluationUniformComponentsExt = OpenTK.Graphics.ES30.All.MaxTessEvaluationUniformComponentsExt; - var _MaxTessControlTextureImageUnitsExt = OpenTK.Graphics.ES30.All.MaxTessControlTextureImageUnitsExt; - var _MaxTessEvaluationTextureImageUnitsExt = OpenTK.Graphics.ES30.All.MaxTessEvaluationTextureImageUnitsExt; - var _MaxTessControlOutputComponentsExt = OpenTK.Graphics.ES30.All.MaxTessControlOutputComponentsExt; - var _MaxTessPatchComponentsExt = OpenTK.Graphics.ES30.All.MaxTessPatchComponentsExt; - var _MaxTessControlTotalOutputComponentsExt = OpenTK.Graphics.ES30.All.MaxTessControlTotalOutputComponentsExt; - var _MaxTessEvaluationOutputComponentsExt = OpenTK.Graphics.ES30.All.MaxTessEvaluationOutputComponentsExt; - var _TessEvaluationShaderExt = OpenTK.Graphics.ES30.All.TessEvaluationShaderExt; - var _TessControlShaderExt = OpenTK.Graphics.ES30.All.TessControlShaderExt; - var _MaxTessControlUniformBlocksExt = OpenTK.Graphics.ES30.All.MaxTessControlUniformBlocksExt; - var _MaxTessEvaluationUniformBlocksExt = OpenTK.Graphics.ES30.All.MaxTessEvaluationUniformBlocksExt; - var _CoverageComponentNv = OpenTK.Graphics.ES30.All.CoverageComponentNv; - var _CoverageComponent4Nv = OpenTK.Graphics.ES30.All.CoverageComponent4Nv; - var _CoverageAttachmentNv = OpenTK.Graphics.ES30.All.CoverageAttachmentNv; - var _CoverageBuffersNv = OpenTK.Graphics.ES30.All.CoverageBuffersNv; - var _CoverageSamplesNv = OpenTK.Graphics.ES30.All.CoverageSamplesNv; - var _CoverageAllFragmentsNv = OpenTK.Graphics.ES30.All.CoverageAllFragmentsNv; - var _CoverageEdgeFragmentsNv = OpenTK.Graphics.ES30.All.CoverageEdgeFragmentsNv; - var _CoverageAutomaticNv = OpenTK.Graphics.ES30.All.CoverageAutomaticNv; - var _CopyReadBuffer = OpenTK.Graphics.ES30.All.CopyReadBuffer; - var _CopyReadBufferBinding = OpenTK.Graphics.ES30.All.CopyReadBufferBinding; - var _CopyReadBufferNv = OpenTK.Graphics.ES30.All.CopyReadBufferNv; - var _CopyWriteBuffer = OpenTK.Graphics.ES30.All.CopyWriteBuffer; - var _CopyWriteBufferBinding = OpenTK.Graphics.ES30.All.CopyWriteBufferBinding; - var _CopyWriteBufferNv = OpenTK.Graphics.ES30.All.CopyWriteBufferNv; - var _MaliShaderBinaryArm = OpenTK.Graphics.ES30.All.MaliShaderBinaryArm; - var _MaliProgramBinaryArm = OpenTK.Graphics.ES30.All.MaliProgramBinaryArm; - var _MaxShaderPixelLocalStorageFastSizeExt = OpenTK.Graphics.ES30.All.MaxShaderPixelLocalStorageFastSizeExt; - var _ShaderPixelLocalStorageExt = OpenTK.Graphics.ES30.All.ShaderPixelLocalStorageExt; - var _FetchPerSampleArm = OpenTK.Graphics.ES30.All.FetchPerSampleArm; - var _FragmentShaderFramebufferFetchMrtArm = OpenTK.Graphics.ES30.All.FragmentShaderFramebufferFetchMrtArm; - var _MaxShaderPixelLocalStorageSizeExt = OpenTK.Graphics.ES30.All.MaxShaderPixelLocalStorageSizeExt; - var _R8Snorm = OpenTK.Graphics.ES30.All.R8Snorm; - var _Rg8Snorm = OpenTK.Graphics.ES30.All.Rg8Snorm; - var _Rgb8Snorm = OpenTK.Graphics.ES30.All.Rgb8Snorm; - var _Rgba8Snorm = OpenTK.Graphics.ES30.All.Rgba8Snorm; - var _SignedNormalized = OpenTK.Graphics.ES30.All.SignedNormalized; - var _PerfmonGlobalModeQcom = OpenTK.Graphics.ES30.All.PerfmonGlobalModeQcom; - var _BinningControlHintQcom = OpenTK.Graphics.ES30.All.BinningControlHintQcom; - var _CpuOptimizedQcom = OpenTK.Graphics.ES30.All.CpuOptimizedQcom; - var _GpuOptimizedQcom = OpenTK.Graphics.ES30.All.GpuOptimizedQcom; - var _RenderDirectToFramebufferQcom = OpenTK.Graphics.ES30.All.RenderDirectToFramebufferQcom; - var _GpuDisjointExt = OpenTK.Graphics.ES30.All.GpuDisjointExt; - var _ShaderBinaryViv = OpenTK.Graphics.ES30.All.ShaderBinaryViv; - var _TextureCubeMapArrayExt = OpenTK.Graphics.ES30.All.TextureCubeMapArrayExt; - var _TextureBindingCubeMapArrayExt = OpenTK.Graphics.ES30.All.TextureBindingCubeMapArrayExt; - var _SamplerCubeMapArrayExt = OpenTK.Graphics.ES30.All.SamplerCubeMapArrayExt; - var _SamplerCubeMapArrayShadowExt = OpenTK.Graphics.ES30.All.SamplerCubeMapArrayShadowExt; - var _IntSamplerCubeMapArrayExt = OpenTK.Graphics.ES30.All.IntSamplerCubeMapArrayExt; - var _UnsignedIntSamplerCubeMapArrayExt = OpenTK.Graphics.ES30.All.UnsignedIntSamplerCubeMapArrayExt; - var _ImageBufferExt = OpenTK.Graphics.ES30.All.ImageBufferExt; - var _ImageCubeMapArrayExt = OpenTK.Graphics.ES30.All.ImageCubeMapArrayExt; - var _IntImageBufferExt = OpenTK.Graphics.ES30.All.IntImageBufferExt; - var _IntImageCubeMapArrayExt = OpenTK.Graphics.ES30.All.IntImageCubeMapArrayExt; - var _UnsignedIntImageBufferExt = OpenTK.Graphics.ES30.All.UnsignedIntImageBufferExt; - var _UnsignedIntImageCubeMapArrayExt = OpenTK.Graphics.ES30.All.UnsignedIntImageCubeMapArrayExt; - var _Rgb10A2ui = OpenTK.Graphics.ES30.All.Rgb10A2ui; - var _MaxTessControlImageUniformsExt = OpenTK.Graphics.ES30.All.MaxTessControlImageUniformsExt; - var _MaxTessEvaluationImageUniformsExt = OpenTK.Graphics.ES30.All.MaxTessEvaluationImageUniformsExt; - var _MaxGeometryImageUniformsExt = OpenTK.Graphics.ES30.All.MaxGeometryImageUniformsExt; - var _MaxGeometryShaderStorageBlocksExt = OpenTK.Graphics.ES30.All.MaxGeometryShaderStorageBlocksExt; - var _MaxTessControlShaderStorageBlocksExt = OpenTK.Graphics.ES30.All.MaxTessControlShaderStorageBlocksExt; - var _MaxTessEvaluationShaderStorageBlocksExt = OpenTK.Graphics.ES30.All.MaxTessEvaluationShaderStorageBlocksExt; - var _ColorAttachmentExt = OpenTK.Graphics.ES30.All.ColorAttachmentExt; - var _MultiviewExt = OpenTK.Graphics.ES30.All.MultiviewExt; - var _MaxMultiviewBuffersExt = OpenTK.Graphics.ES30.All.MaxMultiviewBuffersExt; - var _ContextRobustAccessExt = OpenTK.Graphics.ES30.All.ContextRobustAccessExt; - var _Texture2DMultisampleArrayOes = OpenTK.Graphics.ES30.All.Texture2DMultisampleArrayOes; - var _TextureBinding2DMultisampleArrayOes = OpenTK.Graphics.ES30.All.TextureBinding2DMultisampleArrayOes; - var _Sampler2DMultisampleArrayOes = OpenTK.Graphics.ES30.All.Sampler2DMultisampleArrayOes; - var _IntSampler2DMultisampleArrayOes = OpenTK.Graphics.ES30.All.IntSampler2DMultisampleArrayOes; - var _UnsignedIntSampler2DMultisampleArrayOes = OpenTK.Graphics.ES30.All.UnsignedIntSampler2DMultisampleArrayOes; - var _MaxServerWaitTimeout = OpenTK.Graphics.ES30.All.MaxServerWaitTimeout; - var _MaxServerWaitTimeoutApple = OpenTK.Graphics.ES30.All.MaxServerWaitTimeoutApple; - var _ObjectType = OpenTK.Graphics.ES30.All.ObjectType; - var _ObjectTypeApple = OpenTK.Graphics.ES30.All.ObjectTypeApple; - var _SyncCondition = OpenTK.Graphics.ES30.All.SyncCondition; - var _SyncConditionApple = OpenTK.Graphics.ES30.All.SyncConditionApple; - var _SyncStatus = OpenTK.Graphics.ES30.All.SyncStatus; - var _SyncStatusApple = OpenTK.Graphics.ES30.All.SyncStatusApple; - var _SyncFlags = OpenTK.Graphics.ES30.All.SyncFlags; - var _SyncFlagsApple = OpenTK.Graphics.ES30.All.SyncFlagsApple; - var _SyncFence = OpenTK.Graphics.ES30.All.SyncFence; - var _SyncFenceApple = OpenTK.Graphics.ES30.All.SyncFenceApple; - var _SyncGpuCommandsComplete = OpenTK.Graphics.ES30.All.SyncGpuCommandsComplete; - var _SyncGpuCommandsCompleteApple = OpenTK.Graphics.ES30.All.SyncGpuCommandsCompleteApple; - var _Unsignaled = OpenTK.Graphics.ES30.All.Unsignaled; - var _UnsignaledApple = OpenTK.Graphics.ES30.All.UnsignaledApple; - var _Signaled = OpenTK.Graphics.ES30.All.Signaled; - var _SignaledApple = OpenTK.Graphics.ES30.All.SignaledApple; - var _AlreadySignaled = OpenTK.Graphics.ES30.All.AlreadySignaled; - var _AlreadySignaledApple = OpenTK.Graphics.ES30.All.AlreadySignaledApple; - var _TimeoutExpired = OpenTK.Graphics.ES30.All.TimeoutExpired; - var _TimeoutExpiredApple = OpenTK.Graphics.ES30.All.TimeoutExpiredApple; - var _ConditionSatisfied = OpenTK.Graphics.ES30.All.ConditionSatisfied; - var _ConditionSatisfiedApple = OpenTK.Graphics.ES30.All.ConditionSatisfiedApple; - var _WaitFailed = OpenTK.Graphics.ES30.All.WaitFailed; - var _WaitFailedApple = OpenTK.Graphics.ES30.All.WaitFailedApple; - var _BufferAccessFlags = OpenTK.Graphics.ES30.All.BufferAccessFlags; - var _BufferMapLength = OpenTK.Graphics.ES30.All.BufferMapLength; - var _BufferMapOffset = OpenTK.Graphics.ES30.All.BufferMapOffset; - var _MaxVertexOutputComponents = OpenTK.Graphics.ES30.All.MaxVertexOutputComponents; - var _MaxGeometryInputComponentsExt = OpenTK.Graphics.ES30.All.MaxGeometryInputComponentsExt; - var _MaxGeometryOutputComponentsExt = OpenTK.Graphics.ES30.All.MaxGeometryOutputComponentsExt; - var _MaxFragmentInputComponents = OpenTK.Graphics.ES30.All.MaxFragmentInputComponents; - var _TextureImmutableFormat = OpenTK.Graphics.ES30.All.TextureImmutableFormat; - var _TextureImmutableFormatExt = OpenTK.Graphics.ES30.All.TextureImmutableFormatExt; - var _SgxProgramBinaryImg = OpenTK.Graphics.ES30.All.SgxProgramBinaryImg; - var _RenderbufferSamplesImg = OpenTK.Graphics.ES30.All.RenderbufferSamplesImg; - var _FramebufferIncompleteMultisampleImg = OpenTK.Graphics.ES30.All.FramebufferIncompleteMultisampleImg; - var _MaxSamplesImg = OpenTK.Graphics.ES30.All.MaxSamplesImg; - var _TextureSamplesImg = OpenTK.Graphics.ES30.All.TextureSamplesImg; - var _CompressedRgbaPvrtc2Bppv2Img = OpenTK.Graphics.ES30.All.CompressedRgbaPvrtc2Bppv2Img; - var _CompressedRgbaPvrtc4Bppv2Img = OpenTK.Graphics.ES30.All.CompressedRgbaPvrtc4Bppv2Img; - var _MaxDebugMessageLength = OpenTK.Graphics.ES30.All.MaxDebugMessageLength; - var _MaxDebugMessageLengthKhr = OpenTK.Graphics.ES30.All.MaxDebugMessageLengthKhr; - var _MaxDebugLoggedMessages = OpenTK.Graphics.ES30.All.MaxDebugLoggedMessages; - var _MaxDebugLoggedMessagesKhr = OpenTK.Graphics.ES30.All.MaxDebugLoggedMessagesKhr; - var _DebugLoggedMessages = OpenTK.Graphics.ES30.All.DebugLoggedMessages; - var _DebugLoggedMessagesKhr = OpenTK.Graphics.ES30.All.DebugLoggedMessagesKhr; - var _DebugSeverityHigh = OpenTK.Graphics.ES30.All.DebugSeverityHigh; - var _DebugSeverityHighKhr = OpenTK.Graphics.ES30.All.DebugSeverityHighKhr; - var _DebugSeverityMedium = OpenTK.Graphics.ES30.All.DebugSeverityMedium; - var _DebugSeverityMediumKhr = OpenTK.Graphics.ES30.All.DebugSeverityMediumKhr; - var _DebugSeverityLow = OpenTK.Graphics.ES30.All.DebugSeverityLow; - var _DebugSeverityLowKhr = OpenTK.Graphics.ES30.All.DebugSeverityLowKhr; - var _BufferObjectExt = OpenTK.Graphics.ES30.All.BufferObjectExt; - var _QueryObjectExt = OpenTK.Graphics.ES30.All.QueryObjectExt; - var _VertexArrayObjectExt = OpenTK.Graphics.ES30.All.VertexArrayObjectExt; - var _TextureBufferOffsetExt = OpenTK.Graphics.ES30.All.TextureBufferOffsetExt; - var _TextureBufferSizeExt = OpenTK.Graphics.ES30.All.TextureBufferSizeExt; - var _TextureBufferOffsetAlignmentExt = OpenTK.Graphics.ES30.All.TextureBufferOffsetAlignmentExt; - var _ShaderBinaryDmp = OpenTK.Graphics.ES30.All.ShaderBinaryDmp; - var _GccsoShaderBinaryFj = OpenTK.Graphics.ES30.All.GccsoShaderBinaryFj; - var _CompressedR11Eac = OpenTK.Graphics.ES30.All.CompressedR11Eac; - var _CompressedSignedR11Eac = OpenTK.Graphics.ES30.All.CompressedSignedR11Eac; - var _CompressedRg11Eac = OpenTK.Graphics.ES30.All.CompressedRg11Eac; - var _CompressedSignedRg11Eac = OpenTK.Graphics.ES30.All.CompressedSignedRg11Eac; - var _CompressedRgb8Etc2 = OpenTK.Graphics.ES30.All.CompressedRgb8Etc2; - var _CompressedSrgb8Etc2 = OpenTK.Graphics.ES30.All.CompressedSrgb8Etc2; - var _CompressedRgb8PunchthroughAlpha1Etc2 = OpenTK.Graphics.ES30.All.CompressedRgb8PunchthroughAlpha1Etc2; - var _CompressedSrgb8PunchthroughAlpha1Etc2 = OpenTK.Graphics.ES30.All.CompressedSrgb8PunchthroughAlpha1Etc2; - var _CompressedRgba8Etc2Eac = OpenTK.Graphics.ES30.All.CompressedRgba8Etc2Eac; - var _CompressedSrgb8Alpha8Etc2Eac = OpenTK.Graphics.ES30.All.CompressedSrgb8Alpha8Etc2Eac; - var _BlendPremultipliedSrcNv = OpenTK.Graphics.ES30.All.BlendPremultipliedSrcNv; - var _BlendOverlapNv = OpenTK.Graphics.ES30.All.BlendOverlapNv; - var _UncorrelatedNv = OpenTK.Graphics.ES30.All.UncorrelatedNv; - var _DisjointNv = OpenTK.Graphics.ES30.All.DisjointNv; - var _ConjointNv = OpenTK.Graphics.ES30.All.ConjointNv; - var _BlendAdvancedCoherentKhr = OpenTK.Graphics.ES30.All.BlendAdvancedCoherentKhr; - var _BlendAdvancedCoherentNv = OpenTK.Graphics.ES30.All.BlendAdvancedCoherentNv; - var _SrcNv = OpenTK.Graphics.ES30.All.SrcNv; - var _DstNv = OpenTK.Graphics.ES30.All.DstNv; - var _SrcOverNv = OpenTK.Graphics.ES30.All.SrcOverNv; - var _DstOverNv = OpenTK.Graphics.ES30.All.DstOverNv; - var _SrcInNv = OpenTK.Graphics.ES30.All.SrcInNv; - var _DstInNv = OpenTK.Graphics.ES30.All.DstInNv; - var _SrcOutNv = OpenTK.Graphics.ES30.All.SrcOutNv; - var _DstOutNv = OpenTK.Graphics.ES30.All.DstOutNv; - var _SrcAtopNv = OpenTK.Graphics.ES30.All.SrcAtopNv; - var _DstAtopNv = OpenTK.Graphics.ES30.All.DstAtopNv; - var _PlusNv = OpenTK.Graphics.ES30.All.PlusNv; - var _PlusDarkerNv = OpenTK.Graphics.ES30.All.PlusDarkerNv; - var _MultiplyKhr = OpenTK.Graphics.ES30.All.MultiplyKhr; - var _MultiplyNv = OpenTK.Graphics.ES30.All.MultiplyNv; - var _ScreenKhr = OpenTK.Graphics.ES30.All.ScreenKhr; - var _ScreenNv = OpenTK.Graphics.ES30.All.ScreenNv; - var _OverlayKhr = OpenTK.Graphics.ES30.All.OverlayKhr; - var _OverlayNv = OpenTK.Graphics.ES30.All.OverlayNv; - var _DarkenKhr = OpenTK.Graphics.ES30.All.DarkenKhr; - var _DarkenNv = OpenTK.Graphics.ES30.All.DarkenNv; - var _LightenKhr = OpenTK.Graphics.ES30.All.LightenKhr; - var _LightenNv = OpenTK.Graphics.ES30.All.LightenNv; - var _ColordodgeKhr = OpenTK.Graphics.ES30.All.ColordodgeKhr; - var _ColordodgeNv = OpenTK.Graphics.ES30.All.ColordodgeNv; - var _ColorburnKhr = OpenTK.Graphics.ES30.All.ColorburnKhr; - var _ColorburnNv = OpenTK.Graphics.ES30.All.ColorburnNv; - var _HardlightKhr = OpenTK.Graphics.ES30.All.HardlightKhr; - var _HardlightNv = OpenTK.Graphics.ES30.All.HardlightNv; - var _SoftlightKhr = OpenTK.Graphics.ES30.All.SoftlightKhr; - var _SoftlightNv = OpenTK.Graphics.ES30.All.SoftlightNv; - var _DifferenceKhr = OpenTK.Graphics.ES30.All.DifferenceKhr; - var _DifferenceNv = OpenTK.Graphics.ES30.All.DifferenceNv; - var _MinusNv = OpenTK.Graphics.ES30.All.MinusNv; - var _ExclusionKhr = OpenTK.Graphics.ES30.All.ExclusionKhr; - var _ExclusionNv = OpenTK.Graphics.ES30.All.ExclusionNv; - var _ContrastNv = OpenTK.Graphics.ES30.All.ContrastNv; - var _InvertRgbNv = OpenTK.Graphics.ES30.All.InvertRgbNv; - var _LineardodgeNv = OpenTK.Graphics.ES30.All.LineardodgeNv; - var _LinearburnNv = OpenTK.Graphics.ES30.All.LinearburnNv; - var _VividlightNv = OpenTK.Graphics.ES30.All.VividlightNv; - var _LinearlightNv = OpenTK.Graphics.ES30.All.LinearlightNv; - var _PinlightNv = OpenTK.Graphics.ES30.All.PinlightNv; - var _HardmixNv = OpenTK.Graphics.ES30.All.HardmixNv; - var _HslHueKhr = OpenTK.Graphics.ES30.All.HslHueKhr; - var _HslHueNv = OpenTK.Graphics.ES30.All.HslHueNv; - var _HslSaturationKhr = OpenTK.Graphics.ES30.All.HslSaturationKhr; - var _HslSaturationNv = OpenTK.Graphics.ES30.All.HslSaturationNv; - var _HslColorKhr = OpenTK.Graphics.ES30.All.HslColorKhr; - var _HslColorNv = OpenTK.Graphics.ES30.All.HslColorNv; - var _HslLuminosityKhr = OpenTK.Graphics.ES30.All.HslLuminosityKhr; - var _HslLuminosityNv = OpenTK.Graphics.ES30.All.HslLuminosityNv; - var _PlusClampedNv = OpenTK.Graphics.ES30.All.PlusClampedNv; - var _PlusClampedAlphaNv = OpenTK.Graphics.ES30.All.PlusClampedAlphaNv; - var _MinusClampedNv = OpenTK.Graphics.ES30.All.MinusClampedNv; - var _InvertOvgNv = OpenTK.Graphics.ES30.All.InvertOvgNv; - var _PrimitiveBoundingBoxExt = OpenTK.Graphics.ES30.All.PrimitiveBoundingBoxExt; - var _MaxTessControlAtomicCounterBuffersExt = OpenTK.Graphics.ES30.All.MaxTessControlAtomicCounterBuffersExt; - var _MaxTessEvaluationAtomicCounterBuffersExt = OpenTK.Graphics.ES30.All.MaxTessEvaluationAtomicCounterBuffersExt; - var _MaxGeometryAtomicCounterBuffersExt = OpenTK.Graphics.ES30.All.MaxGeometryAtomicCounterBuffersExt; - var _MaxTessControlAtomicCountersExt = OpenTK.Graphics.ES30.All.MaxTessControlAtomicCountersExt; - var _MaxTessEvaluationAtomicCountersExt = OpenTK.Graphics.ES30.All.MaxTessEvaluationAtomicCountersExt; - var _MaxGeometryAtomicCountersExt = OpenTK.Graphics.ES30.All.MaxGeometryAtomicCountersExt; - var _DebugOutput = OpenTK.Graphics.ES30.All.DebugOutput; - var _DebugOutputKhr = OpenTK.Graphics.ES30.All.DebugOutputKhr; - var _IsPerPatchExt = OpenTK.Graphics.ES30.All.IsPerPatchExt; - var _ReferencedByTessControlShaderExt = OpenTK.Graphics.ES30.All.ReferencedByTessControlShaderExt; - var _ReferencedByTessEvaluationShaderExt = OpenTK.Graphics.ES30.All.ReferencedByTessEvaluationShaderExt; - var _ReferencedByGeometryShaderExt = OpenTK.Graphics.ES30.All.ReferencedByGeometryShaderExt; - var _FramebufferDefaultLayersExt = OpenTK.Graphics.ES30.All.FramebufferDefaultLayersExt; - var _MaxFramebufferLayersExt = OpenTK.Graphics.ES30.All.MaxFramebufferLayersExt; - var _NumSampleCounts = OpenTK.Graphics.ES30.All.NumSampleCounts; - var _TranslatedShaderSourceLengthAngle = OpenTK.Graphics.ES30.All.TranslatedShaderSourceLengthAngle; - var _Bgra8Ext = OpenTK.Graphics.ES30.All.Bgra8Ext; - var _TextureUsageAngle = OpenTK.Graphics.ES30.All.TextureUsageAngle; - var _FramebufferAttachmentAngle = OpenTK.Graphics.ES30.All.FramebufferAttachmentAngle; - var _PackReverseRowOrderAngle = OpenTK.Graphics.ES30.All.PackReverseRowOrderAngle; - var _ProgramBinaryAngle = OpenTK.Graphics.ES30.All.ProgramBinaryAngle; - var _CompressedRgbaAstc4X4Khr = OpenTK.Graphics.ES30.All.CompressedRgbaAstc4X4Khr; - var _CompressedRgbaAstc5X4Khr = OpenTK.Graphics.ES30.All.CompressedRgbaAstc5X4Khr; - var _CompressedRgbaAstc5X5Khr = OpenTK.Graphics.ES30.All.CompressedRgbaAstc5X5Khr; - var _CompressedRgbaAstc6X5Khr = OpenTK.Graphics.ES30.All.CompressedRgbaAstc6X5Khr; - var _CompressedRgbaAstc6X6Khr = OpenTK.Graphics.ES30.All.CompressedRgbaAstc6X6Khr; - var _CompressedRgbaAstc8X5Khr = OpenTK.Graphics.ES30.All.CompressedRgbaAstc8X5Khr; - var _CompressedRgbaAstc8X6Khr = OpenTK.Graphics.ES30.All.CompressedRgbaAstc8X6Khr; - var _CompressedRgbaAstc8X8Khr = OpenTK.Graphics.ES30.All.CompressedRgbaAstc8X8Khr; - var _CompressedRgbaAstc10X5Khr = OpenTK.Graphics.ES30.All.CompressedRgbaAstc10X5Khr; - var _CompressedRgbaAstc10X6Khr = OpenTK.Graphics.ES30.All.CompressedRgbaAstc10X6Khr; - var _CompressedRgbaAstc10X8Khr = OpenTK.Graphics.ES30.All.CompressedRgbaAstc10X8Khr; - var _CompressedRgbaAstc10X10Khr = OpenTK.Graphics.ES30.All.CompressedRgbaAstc10X10Khr; - var _CompressedRgbaAstc12X10Khr = OpenTK.Graphics.ES30.All.CompressedRgbaAstc12X10Khr; - var _CompressedRgbaAstc12X12Khr = OpenTK.Graphics.ES30.All.CompressedRgbaAstc12X12Khr; - var _CompressedRgbaAstc3X3x3Oes = OpenTK.Graphics.ES30.All.CompressedRgbaAstc3X3x3Oes; - var _CompressedRgbaAstc4X3x3Oes = OpenTK.Graphics.ES30.All.CompressedRgbaAstc4X3x3Oes; - var _CompressedRgbaAstc4X4x3Oes = OpenTK.Graphics.ES30.All.CompressedRgbaAstc4X4x3Oes; - var _CompressedRgbaAstc4X4x4Oes = OpenTK.Graphics.ES30.All.CompressedRgbaAstc4X4x4Oes; - var _CompressedRgbaAstc5X4x4Oes = OpenTK.Graphics.ES30.All.CompressedRgbaAstc5X4x4Oes; - var _CompressedRgbaAstc5X5x4Oes = OpenTK.Graphics.ES30.All.CompressedRgbaAstc5X5x4Oes; - var _CompressedRgbaAstc5X5x5Oes = OpenTK.Graphics.ES30.All.CompressedRgbaAstc5X5x5Oes; - var _CompressedRgbaAstc6X5x5Oes = OpenTK.Graphics.ES30.All.CompressedRgbaAstc6X5x5Oes; - var _CompressedRgbaAstc6X6x5Oes = OpenTK.Graphics.ES30.All.CompressedRgbaAstc6X6x5Oes; - var _CompressedRgbaAstc6X6x6Oes = OpenTK.Graphics.ES30.All.CompressedRgbaAstc6X6x6Oes; - var _CompressedSrgb8Alpha8Astc4X4Khr = OpenTK.Graphics.ES30.All.CompressedSrgb8Alpha8Astc4X4Khr; - var _CompressedSrgb8Alpha8Astc5X4Khr = OpenTK.Graphics.ES30.All.CompressedSrgb8Alpha8Astc5X4Khr; - var _CompressedSrgb8Alpha8Astc5X5Khr = OpenTK.Graphics.ES30.All.CompressedSrgb8Alpha8Astc5X5Khr; - var _CompressedSrgb8Alpha8Astc6X5Khr = OpenTK.Graphics.ES30.All.CompressedSrgb8Alpha8Astc6X5Khr; - var _CompressedSrgb8Alpha8Astc6X6Khr = OpenTK.Graphics.ES30.All.CompressedSrgb8Alpha8Astc6X6Khr; - var _CompressedSrgb8Alpha8Astc8X5Khr = OpenTK.Graphics.ES30.All.CompressedSrgb8Alpha8Astc8X5Khr; - var _CompressedSrgb8Alpha8Astc8X6Khr = OpenTK.Graphics.ES30.All.CompressedSrgb8Alpha8Astc8X6Khr; - var _CompressedSrgb8Alpha8Astc8X8Khr = OpenTK.Graphics.ES30.All.CompressedSrgb8Alpha8Astc8X8Khr; - var _CompressedSrgb8Alpha8Astc10X5Khr = OpenTK.Graphics.ES30.All.CompressedSrgb8Alpha8Astc10X5Khr; - var _CompressedSrgb8Alpha8Astc10X6Khr = OpenTK.Graphics.ES30.All.CompressedSrgb8Alpha8Astc10X6Khr; - var _CompressedSrgb8Alpha8Astc10X8Khr = OpenTK.Graphics.ES30.All.CompressedSrgb8Alpha8Astc10X8Khr; - var _CompressedSrgb8Alpha8Astc10X10Khr = OpenTK.Graphics.ES30.All.CompressedSrgb8Alpha8Astc10X10Khr; - var _CompressedSrgb8Alpha8Astc12X10Khr = OpenTK.Graphics.ES30.All.CompressedSrgb8Alpha8Astc12X10Khr; - var _CompressedSrgb8Alpha8Astc12X12Khr = OpenTK.Graphics.ES30.All.CompressedSrgb8Alpha8Astc12X12Khr; - var _CompressedSrgb8Alpha8Astc3X3x3Oes = OpenTK.Graphics.ES30.All.CompressedSrgb8Alpha8Astc3X3x3Oes; - var _CompressedSrgb8Alpha8Astc4X3x3Oes = OpenTK.Graphics.ES30.All.CompressedSrgb8Alpha8Astc4X3x3Oes; - var _CompressedSrgb8Alpha8Astc4X4x3Oes = OpenTK.Graphics.ES30.All.CompressedSrgb8Alpha8Astc4X4x3Oes; - var _CompressedSrgb8Alpha8Astc4X4x4Oes = OpenTK.Graphics.ES30.All.CompressedSrgb8Alpha8Astc4X4x4Oes; - var _CompressedSrgb8Alpha8Astc5X4x4Oes = OpenTK.Graphics.ES30.All.CompressedSrgb8Alpha8Astc5X4x4Oes; - var _CompressedSrgb8Alpha8Astc5X5x4Oes = OpenTK.Graphics.ES30.All.CompressedSrgb8Alpha8Astc5X5x4Oes; - var _CompressedSrgb8Alpha8Astc5X5x5Oes = OpenTK.Graphics.ES30.All.CompressedSrgb8Alpha8Astc5X5x5Oes; - var _CompressedSrgb8Alpha8Astc6X5x5Oes = OpenTK.Graphics.ES30.All.CompressedSrgb8Alpha8Astc6X5x5Oes; - var _CompressedSrgb8Alpha8Astc6X6x5Oes = OpenTK.Graphics.ES30.All.CompressedSrgb8Alpha8Astc6X6x5Oes; - var _CompressedSrgb8Alpha8Astc6X6x6Oes = OpenTK.Graphics.ES30.All.CompressedSrgb8Alpha8Astc6X6x6Oes; - var _CompressedSrgbAlphaPvrtc2Bppv2Img = OpenTK.Graphics.ES30.All.CompressedSrgbAlphaPvrtc2Bppv2Img; - var _CompressedSrgbAlphaPvrtc4Bppv2Img = OpenTK.Graphics.ES30.All.CompressedSrgbAlphaPvrtc4Bppv2Img; - var _PerfqueryCounterEventIntel = OpenTK.Graphics.ES30.All.PerfqueryCounterEventIntel; - var _PerfqueryCounterDurationNormIntel = OpenTK.Graphics.ES30.All.PerfqueryCounterDurationNormIntel; - var _PerfqueryCounterDurationRawIntel = OpenTK.Graphics.ES30.All.PerfqueryCounterDurationRawIntel; - var _PerfqueryCounterThroughputIntel = OpenTK.Graphics.ES30.All.PerfqueryCounterThroughputIntel; - var _PerfqueryCounterRawIntel = OpenTK.Graphics.ES30.All.PerfqueryCounterRawIntel; - var _PerfqueryCounterTimestampIntel = OpenTK.Graphics.ES30.All.PerfqueryCounterTimestampIntel; - var _PerfqueryCounterDataUint32Intel = OpenTK.Graphics.ES30.All.PerfqueryCounterDataUint32Intel; - var _PerfqueryCounterDataUint64Intel = OpenTK.Graphics.ES30.All.PerfqueryCounterDataUint64Intel; - var _PerfqueryCounterDataFloatIntel = OpenTK.Graphics.ES30.All.PerfqueryCounterDataFloatIntel; - var _PerfqueryCounterDataDoubleIntel = OpenTK.Graphics.ES30.All.PerfqueryCounterDataDoubleIntel; - var _PerfqueryCounterDataBool32Intel = OpenTK.Graphics.ES30.All.PerfqueryCounterDataBool32Intel; - var _PerfqueryQueryNameLengthMaxIntel = OpenTK.Graphics.ES30.All.PerfqueryQueryNameLengthMaxIntel; - var _PerfqueryCounterNameLengthMaxIntel = OpenTK.Graphics.ES30.All.PerfqueryCounterNameLengthMaxIntel; - var _PerfqueryCounterDescLengthMaxIntel = OpenTK.Graphics.ES30.All.PerfqueryCounterDescLengthMaxIntel; - var _PerfqueryGpaExtendedCountersIntel = OpenTK.Graphics.ES30.All.PerfqueryGpaExtendedCountersIntel; - var _AllAttribBits = OpenTK.Graphics.ES30.All.AllAttribBits; - var _AllBarrierBits = OpenTK.Graphics.ES30.All.AllBarrierBits; - var _AllBarrierBitsExt = OpenTK.Graphics.ES30.All.AllBarrierBitsExt; - var _AllShaderBits = OpenTK.Graphics.ES30.All.AllShaderBits; - var _AllShaderBitsExt = OpenTK.Graphics.ES30.All.AllShaderBitsExt; - var _ClientAllAttribBits = OpenTK.Graphics.ES30.All.ClientAllAttribBits; - var _InvalidIndex = OpenTK.Graphics.ES30.All.InvalidIndex; - var _QueryAllEventBitsAmd = OpenTK.Graphics.ES30.All.QueryAllEventBitsAmd; - var _TimeoutIgnored = OpenTK.Graphics.ES30.All.TimeoutIgnored; - var _TimeoutIgnoredApple = OpenTK.Graphics.ES30.All.TimeoutIgnoredApple; - var _LayoutLinearIntel = OpenTK.Graphics.ES30.All.LayoutLinearIntel; - var _One = OpenTK.Graphics.ES30.All.One; - var _True = OpenTK.Graphics.ES30.All.True; - var _LayoutLinearCpuCachedIntel = OpenTK.Graphics.ES30.All.LayoutLinearCpuCachedIntel; -} -static void Test_AlphaFunction_37739() { - var _Never = OpenTK.Graphics.ES30.AlphaFunction.Never; - var _Less = OpenTK.Graphics.ES30.AlphaFunction.Less; - var _Equal = OpenTK.Graphics.ES30.AlphaFunction.Equal; - var _Lequal = OpenTK.Graphics.ES30.AlphaFunction.Lequal; - var _Greater = OpenTK.Graphics.ES30.AlphaFunction.Greater; - var _Notequal = OpenTK.Graphics.ES30.AlphaFunction.Notequal; - var _Gequal = OpenTK.Graphics.ES30.AlphaFunction.Gequal; - var _Always = OpenTK.Graphics.ES30.AlphaFunction.Always; -} -static void Test_AmdCompressed3DcTexture_37740() { - var _Gl3DcXAmd = OpenTK.Graphics.ES30.AmdCompressed3DcTexture.Gl3DcXAmd; - var _Gl3DcXyAmd = OpenTK.Graphics.ES30.AmdCompressed3DcTexture.Gl3DcXyAmd; -} -static void Test_AmdCompressedAtcTexture_37741() { - var _AtcRgbaInterpolatedAlphaAmd = OpenTK.Graphics.ES30.AmdCompressedAtcTexture.AtcRgbaInterpolatedAlphaAmd; - var _AtcRgbAmd = OpenTK.Graphics.ES30.AmdCompressedAtcTexture.AtcRgbAmd; - var _AtcRgbaExplicitAlphaAmd = OpenTK.Graphics.ES30.AmdCompressedAtcTexture.AtcRgbaExplicitAlphaAmd; -} -static void Test_AmdPerformanceMonitor_37742() { - var _CounterTypeAmd = OpenTK.Graphics.ES30.AmdPerformanceMonitor.CounterTypeAmd; - var _CounterRangeAmd = OpenTK.Graphics.ES30.AmdPerformanceMonitor.CounterRangeAmd; - var _UnsignedInt64Amd = OpenTK.Graphics.ES30.AmdPerformanceMonitor.UnsignedInt64Amd; - var _PercentageAmd = OpenTK.Graphics.ES30.AmdPerformanceMonitor.PercentageAmd; - var _PerfmonResultAvailableAmd = OpenTK.Graphics.ES30.AmdPerformanceMonitor.PerfmonResultAvailableAmd; - var _PerfmonResultSizeAmd = OpenTK.Graphics.ES30.AmdPerformanceMonitor.PerfmonResultSizeAmd; - var _PerfmonResultAmd = OpenTK.Graphics.ES30.AmdPerformanceMonitor.PerfmonResultAmd; -} -static void Test_AmdProgramBinaryZ400_37743() { - var _Z400BinaryAmd = OpenTK.Graphics.ES30.AmdProgramBinaryZ400.Z400BinaryAmd; -} -static void Test_AndroidExtensionPackEs31a_37744() { -} -static void Test_AngleDepthTexture_37745() { - var _UnsignedShort = OpenTK.Graphics.ES30.AngleDepthTexture.UnsignedShort; - var _UnsignedInt = OpenTK.Graphics.ES30.AngleDepthTexture.UnsignedInt; - var _DepthComponent = OpenTK.Graphics.ES30.AngleDepthTexture.DepthComponent; - var _DepthComponent16 = OpenTK.Graphics.ES30.AngleDepthTexture.DepthComponent16; - var _DepthComponent32Oes = OpenTK.Graphics.ES30.AngleDepthTexture.DepthComponent32Oes; - var _DepthStencilOes = OpenTK.Graphics.ES30.AngleDepthTexture.DepthStencilOes; - var _UnsignedInt248Oes = OpenTK.Graphics.ES30.AngleDepthTexture.UnsignedInt248Oes; - var _Depth24Stencil8Oes = OpenTK.Graphics.ES30.AngleDepthTexture.Depth24Stencil8Oes; -} -static void Test_AngleFramebufferBlit_37746() { - var _DrawFramebufferBindingAngle = OpenTK.Graphics.ES30.AngleFramebufferBlit.DrawFramebufferBindingAngle; - var _ReadFramebufferAngle = OpenTK.Graphics.ES30.AngleFramebufferBlit.ReadFramebufferAngle; - var _DrawFramebufferAngle = OpenTK.Graphics.ES30.AngleFramebufferBlit.DrawFramebufferAngle; - var _ReadFramebufferBindingAngle = OpenTK.Graphics.ES30.AngleFramebufferBlit.ReadFramebufferBindingAngle; -} -static void Test_AngleFramebufferMultisample_37747() { - var _RenderbufferSamplesAngle = OpenTK.Graphics.ES30.AngleFramebufferMultisample.RenderbufferSamplesAngle; - var _FramebufferIncompleteMultisampleAngle = OpenTK.Graphics.ES30.AngleFramebufferMultisample.FramebufferIncompleteMultisampleAngle; - var _MaxSamplesAngle = OpenTK.Graphics.ES30.AngleFramebufferMultisample.MaxSamplesAngle; -} -static void Test_AngleInstancedArrays_37748() { - var _VertexAttribArrayDivisorAngle = OpenTK.Graphics.ES30.AngleInstancedArrays.VertexAttribArrayDivisorAngle; -} -static void Test_AnglePackReverseRowOrder_37749() { - var _PackReverseRowOrderAngle = OpenTK.Graphics.ES30.AnglePackReverseRowOrder.PackReverseRowOrderAngle; -} -static void Test_AngleProgramBinary_37750() { - var _ProgramBinaryAngle = OpenTK.Graphics.ES30.AngleProgramBinary.ProgramBinaryAngle; -} -static void Test_AngleTextureCompressionDxt3_37751() { - var _CompressedRgbaS3tcDxt3Angle = OpenTK.Graphics.ES30.AngleTextureCompressionDxt3.CompressedRgbaS3tcDxt3Angle; -} -static void Test_AngleTextureCompressionDxt5_37752() { - var _CompressedRgbaS3tcDxt5Angle = OpenTK.Graphics.ES30.AngleTextureCompressionDxt5.CompressedRgbaS3tcDxt5Angle; -} -static void Test_AngleTextureUsage_37753() { - var _TextureUsageAngle = OpenTK.Graphics.ES30.AngleTextureUsage.TextureUsageAngle; - var _FramebufferAttachmentAngle = OpenTK.Graphics.ES30.AngleTextureUsage.FramebufferAttachmentAngle; -} -static void Test_AngleTranslatedShaderSource_37754() { - var _TranslatedShaderSourceLengthAngle = OpenTK.Graphics.ES30.AngleTranslatedShaderSource.TranslatedShaderSourceLengthAngle; -} -static void Test_AppleCopyTextureLevels_37755() { -} -static void Test_AppleFramebufferMultisample_37756() { - var _DrawFramebufferBindingApple = OpenTK.Graphics.ES30.AppleFramebufferMultisample.DrawFramebufferBindingApple; - var _ReadFramebufferApple = OpenTK.Graphics.ES30.AppleFramebufferMultisample.ReadFramebufferApple; - var _DrawFramebufferApple = OpenTK.Graphics.ES30.AppleFramebufferMultisample.DrawFramebufferApple; - var _ReadFramebufferBindingApple = OpenTK.Graphics.ES30.AppleFramebufferMultisample.ReadFramebufferBindingApple; - var _RenderbufferSamplesApple = OpenTK.Graphics.ES30.AppleFramebufferMultisample.RenderbufferSamplesApple; - var _FramebufferIncompleteMultisampleApple = OpenTK.Graphics.ES30.AppleFramebufferMultisample.FramebufferIncompleteMultisampleApple; - var _MaxSamplesApple = OpenTK.Graphics.ES30.AppleFramebufferMultisample.MaxSamplesApple; -} -static void Test_AppleRgb422_37757() { - var _UnsignedShort88Apple = OpenTK.Graphics.ES30.AppleRgb422.UnsignedShort88Apple; - var _UnsignedShort88RevApple = OpenTK.Graphics.ES30.AppleRgb422.UnsignedShort88RevApple; - var _Rgb422Apple = OpenTK.Graphics.ES30.AppleRgb422.Rgb422Apple; - var _RgbRaw422Apple = OpenTK.Graphics.ES30.AppleRgb422.RgbRaw422Apple; -} -static void Test_AppleSync_37758() { - var _SyncFlushCommandsBitApple = OpenTK.Graphics.ES30.AppleSync.SyncFlushCommandsBitApple; - var _SyncObjectApple = OpenTK.Graphics.ES30.AppleSync.SyncObjectApple; - var _MaxServerWaitTimeoutApple = OpenTK.Graphics.ES30.AppleSync.MaxServerWaitTimeoutApple; - var _ObjectTypeApple = OpenTK.Graphics.ES30.AppleSync.ObjectTypeApple; - var _SyncConditionApple = OpenTK.Graphics.ES30.AppleSync.SyncConditionApple; - var _SyncStatusApple = OpenTK.Graphics.ES30.AppleSync.SyncStatusApple; - var _SyncFlagsApple = OpenTK.Graphics.ES30.AppleSync.SyncFlagsApple; - var _SyncFenceApple = OpenTK.Graphics.ES30.AppleSync.SyncFenceApple; - var _SyncGpuCommandsCompleteApple = OpenTK.Graphics.ES30.AppleSync.SyncGpuCommandsCompleteApple; - var _UnsignaledApple = OpenTK.Graphics.ES30.AppleSync.UnsignaledApple; - var _SignaledApple = OpenTK.Graphics.ES30.AppleSync.SignaledApple; - var _AlreadySignaledApple = OpenTK.Graphics.ES30.AppleSync.AlreadySignaledApple; - var _TimeoutExpiredApple = OpenTK.Graphics.ES30.AppleSync.TimeoutExpiredApple; - var _ConditionSatisfiedApple = OpenTK.Graphics.ES30.AppleSync.ConditionSatisfiedApple; - var _WaitFailedApple = OpenTK.Graphics.ES30.AppleSync.WaitFailedApple; - var _TimeoutIgnoredApple = OpenTK.Graphics.ES30.AppleSync.TimeoutIgnoredApple; -} -static void Test_AppleTextureFormatBgra8888_37759() { - var _BgraExt = OpenTK.Graphics.ES30.AppleTextureFormatBgra8888.BgraExt; - var _Bgra8Ext = OpenTK.Graphics.ES30.AppleTextureFormatBgra8888.Bgra8Ext; -} -static void Test_AppleTextureMaxLevel_37760() { - var _TextureMaxLevelApple = OpenTK.Graphics.ES30.AppleTextureMaxLevel.TextureMaxLevelApple; -} -static void Test_ArmMaliProgramBinary_37761() { - var _MaliProgramBinaryArm = OpenTK.Graphics.ES30.ArmMaliProgramBinary.MaliProgramBinaryArm; -} -static void Test_ArmMaliShaderBinary_37762() { - var _MaliShaderBinaryArm = OpenTK.Graphics.ES30.ArmMaliShaderBinary.MaliShaderBinaryArm; -} -static void Test_ArmRgba8_37763() { -} -static void Test_ArmShaderFramebufferFetch_37764() { - var _FetchPerSampleArm = OpenTK.Graphics.ES30.ArmShaderFramebufferFetch.FetchPerSampleArm; - var _FragmentShaderFramebufferFetchMrtArm = OpenTK.Graphics.ES30.ArmShaderFramebufferFetch.FragmentShaderFramebufferFetchMrtArm; -} -static void Test_ArmShaderFramebufferFetchDepthStencil_37765() { -} -static void Test_AttribMask_37766() { - var _CurrentBit = OpenTK.Graphics.ES30.AttribMask.CurrentBit; - var _PointBit = OpenTK.Graphics.ES30.AttribMask.PointBit; - var _LineBit = OpenTK.Graphics.ES30.AttribMask.LineBit; - var _PolygonBit = OpenTK.Graphics.ES30.AttribMask.PolygonBit; - var _PolygonStippleBit = OpenTK.Graphics.ES30.AttribMask.PolygonStippleBit; - var _PixelModeBit = OpenTK.Graphics.ES30.AttribMask.PixelModeBit; - var _LightingBit = OpenTK.Graphics.ES30.AttribMask.LightingBit; - var _FogBit = OpenTK.Graphics.ES30.AttribMask.FogBit; - var _DepthBufferBit = OpenTK.Graphics.ES30.AttribMask.DepthBufferBit; - var _AccumBufferBit = OpenTK.Graphics.ES30.AttribMask.AccumBufferBit; - var _StencilBufferBit = OpenTK.Graphics.ES30.AttribMask.StencilBufferBit; - var _ViewportBit = OpenTK.Graphics.ES30.AttribMask.ViewportBit; - var _TransformBit = OpenTK.Graphics.ES30.AttribMask.TransformBit; - var _EnableBit = OpenTK.Graphics.ES30.AttribMask.EnableBit; - var _ColorBufferBit = OpenTK.Graphics.ES30.AttribMask.ColorBufferBit; - var _HintBit = OpenTK.Graphics.ES30.AttribMask.HintBit; - var _EvalBit = OpenTK.Graphics.ES30.AttribMask.EvalBit; - var _ListBit = OpenTK.Graphics.ES30.AttribMask.ListBit; - var _TextureBit = OpenTK.Graphics.ES30.AttribMask.TextureBit; - var _ScissorBit = OpenTK.Graphics.ES30.AttribMask.ScissorBit; - var _MultisampleBit = OpenTK.Graphics.ES30.AttribMask.MultisampleBit; - var _MultisampleBit3Dfx = OpenTK.Graphics.ES30.AttribMask.MultisampleBit3Dfx; - var _MultisampleBitArb = OpenTK.Graphics.ES30.AttribMask.MultisampleBitArb; - var _MultisampleBitExt = OpenTK.Graphics.ES30.AttribMask.MultisampleBitExt; - var _AllAttribBits = OpenTK.Graphics.ES30.AttribMask.AllAttribBits; -} -static void Test_BeginMode_37767() { - var _Points = OpenTK.Graphics.ES30.BeginMode.Points; - var _Lines = OpenTK.Graphics.ES30.BeginMode.Lines; - var _LineLoop = OpenTK.Graphics.ES30.BeginMode.LineLoop; - var _LineStrip = OpenTK.Graphics.ES30.BeginMode.LineStrip; - var _Triangles = OpenTK.Graphics.ES30.BeginMode.Triangles; - var _TriangleStrip = OpenTK.Graphics.ES30.BeginMode.TriangleStrip; - var _TriangleFan = OpenTK.Graphics.ES30.BeginMode.TriangleFan; -} -static void Test_BlendEquationMode_37768() { - var _FuncAdd = OpenTK.Graphics.ES30.BlendEquationMode.FuncAdd; - var _Min = OpenTK.Graphics.ES30.BlendEquationMode.Min; - var _Max = OpenTK.Graphics.ES30.BlendEquationMode.Max; - var _FuncSubtract = OpenTK.Graphics.ES30.BlendEquationMode.FuncSubtract; - var _FuncReverseSubtract = OpenTK.Graphics.ES30.BlendEquationMode.FuncReverseSubtract; -} -static void Test_BlendEquationModeExt_37769() { - var _LogicOp = OpenTK.Graphics.ES30.BlendEquationModeExt.LogicOp; - var _FuncAddExt = OpenTK.Graphics.ES30.BlendEquationModeExt.FuncAddExt; - var _MinExt = OpenTK.Graphics.ES30.BlendEquationModeExt.MinExt; - var _MaxExt = OpenTK.Graphics.ES30.BlendEquationModeExt.MaxExt; - var _FuncSubtractExt = OpenTK.Graphics.ES30.BlendEquationModeExt.FuncSubtractExt; - var _FuncReverseSubtractExt = OpenTK.Graphics.ES30.BlendEquationModeExt.FuncReverseSubtractExt; - var _AlphaMinSgix = OpenTK.Graphics.ES30.BlendEquationModeExt.AlphaMinSgix; - var _AlphaMaxSgix = OpenTK.Graphics.ES30.BlendEquationModeExt.AlphaMaxSgix; -} -static void Test_BlendingFactorDest_37770() { - var _Zero = OpenTK.Graphics.ES30.BlendingFactorDest.Zero; - var _SrcColor = OpenTK.Graphics.ES30.BlendingFactorDest.SrcColor; - var _OneMinusSrcColor = OpenTK.Graphics.ES30.BlendingFactorDest.OneMinusSrcColor; - var _SrcAlpha = OpenTK.Graphics.ES30.BlendingFactorDest.SrcAlpha; - var _OneMinusSrcAlpha = OpenTK.Graphics.ES30.BlendingFactorDest.OneMinusSrcAlpha; - var _DstAlpha = OpenTK.Graphics.ES30.BlendingFactorDest.DstAlpha; - var _OneMinusDstAlpha = OpenTK.Graphics.ES30.BlendingFactorDest.OneMinusDstAlpha; - var _DstColor = OpenTK.Graphics.ES30.BlendingFactorDest.DstColor; - var _OneMinusDstColor = OpenTK.Graphics.ES30.BlendingFactorDest.OneMinusDstColor; - var _SrcAlphaSaturate = OpenTK.Graphics.ES30.BlendingFactorDest.SrcAlphaSaturate; - var _ConstantColor = OpenTK.Graphics.ES30.BlendingFactorDest.ConstantColor; - var _ConstantColorExt = OpenTK.Graphics.ES30.BlendingFactorDest.ConstantColorExt; - var _OneMinusConstantColor = OpenTK.Graphics.ES30.BlendingFactorDest.OneMinusConstantColor; - var _OneMinusConstantColorExt = OpenTK.Graphics.ES30.BlendingFactorDest.OneMinusConstantColorExt; - var _ConstantAlpha = OpenTK.Graphics.ES30.BlendingFactorDest.ConstantAlpha; - var _ConstantAlphaExt = OpenTK.Graphics.ES30.BlendingFactorDest.ConstantAlphaExt; - var _OneMinusConstantAlpha = OpenTK.Graphics.ES30.BlendingFactorDest.OneMinusConstantAlpha; - var _OneMinusConstantAlphaExt = OpenTK.Graphics.ES30.BlendingFactorDest.OneMinusConstantAlphaExt; - var _One = OpenTK.Graphics.ES30.BlendingFactorDest.One; -} -static void Test_BlendingFactorSrc_37771() { - var _Zero = OpenTK.Graphics.ES30.BlendingFactorSrc.Zero; - var _SrcColor = OpenTK.Graphics.ES30.BlendingFactorSrc.SrcColor; - var _OneMinusSrcColor = OpenTK.Graphics.ES30.BlendingFactorSrc.OneMinusSrcColor; - var _SrcAlpha = OpenTK.Graphics.ES30.BlendingFactorSrc.SrcAlpha; - var _OneMinusSrcAlpha = OpenTK.Graphics.ES30.BlendingFactorSrc.OneMinusSrcAlpha; - var _DstAlpha = OpenTK.Graphics.ES30.BlendingFactorSrc.DstAlpha; - var _OneMinusDstAlpha = OpenTK.Graphics.ES30.BlendingFactorSrc.OneMinusDstAlpha; - var _DstColor = OpenTK.Graphics.ES30.BlendingFactorSrc.DstColor; - var _OneMinusDstColor = OpenTK.Graphics.ES30.BlendingFactorSrc.OneMinusDstColor; - var _SrcAlphaSaturate = OpenTK.Graphics.ES30.BlendingFactorSrc.SrcAlphaSaturate; - var _ConstantColor = OpenTK.Graphics.ES30.BlendingFactorSrc.ConstantColor; - var _ConstantColorExt = OpenTK.Graphics.ES30.BlendingFactorSrc.ConstantColorExt; - var _OneMinusConstantColor = OpenTK.Graphics.ES30.BlendingFactorSrc.OneMinusConstantColor; - var _OneMinusConstantColorExt = OpenTK.Graphics.ES30.BlendingFactorSrc.OneMinusConstantColorExt; - var _ConstantAlpha = OpenTK.Graphics.ES30.BlendingFactorSrc.ConstantAlpha; - var _ConstantAlphaExt = OpenTK.Graphics.ES30.BlendingFactorSrc.ConstantAlphaExt; - var _OneMinusConstantAlpha = OpenTK.Graphics.ES30.BlendingFactorSrc.OneMinusConstantAlpha; - var _OneMinusConstantAlphaExt = OpenTK.Graphics.ES30.BlendingFactorSrc.OneMinusConstantAlphaExt; - var _One = OpenTK.Graphics.ES30.BlendingFactorSrc.One; -} -static void Test_BlitFramebufferFilter_37772() { - var _Nearest = OpenTK.Graphics.ES30.BlitFramebufferFilter.Nearest; - var _Linear = OpenTK.Graphics.ES30.BlitFramebufferFilter.Linear; -} -static void Test_Boolean_37773() { - var _False = OpenTK.Graphics.ES30.Boolean.False; - var _True = OpenTK.Graphics.ES30.Boolean.True; -} -static void Test_BufferAccessMask_37774() { - var _MapReadBit = OpenTK.Graphics.ES30.BufferAccessMask.MapReadBit; - var _MapWriteBit = OpenTK.Graphics.ES30.BufferAccessMask.MapWriteBit; - var _MapInvalidateRangeBit = OpenTK.Graphics.ES30.BufferAccessMask.MapInvalidateRangeBit; - var _MapInvalidateBufferBit = OpenTK.Graphics.ES30.BufferAccessMask.MapInvalidateBufferBit; - var _MapFlushExplicitBit = OpenTK.Graphics.ES30.BufferAccessMask.MapFlushExplicitBit; - var _MapUnsynchronizedBit = OpenTK.Graphics.ES30.BufferAccessMask.MapUnsynchronizedBit; -} -static void Test_BufferParameterName_37775() { - var _BufferSize = OpenTK.Graphics.ES30.BufferParameterName.BufferSize; - var _BufferUsage = OpenTK.Graphics.ES30.BufferParameterName.BufferUsage; - var _BufferMapped = OpenTK.Graphics.ES30.BufferParameterName.BufferMapped; - var _BufferMapPointer = OpenTK.Graphics.ES30.BufferParameterName.BufferMapPointer; - var _BufferAccessFlags = OpenTK.Graphics.ES30.BufferParameterName.BufferAccessFlags; - var _BufferMapLength = OpenTK.Graphics.ES30.BufferParameterName.BufferMapLength; - var _BufferMapOffset = OpenTK.Graphics.ES30.BufferParameterName.BufferMapOffset; -} -static void Test_BufferPointer_37776() { - var _BufferMapPointer = OpenTK.Graphics.ES30.BufferPointer.BufferMapPointer; - var _BufferMapPointerOes = OpenTK.Graphics.ES30.BufferPointer.BufferMapPointerOes; -} -static void Test_BufferRangeTarget_37777() { - var _UniformBuffer = OpenTK.Graphics.ES30.BufferRangeTarget.UniformBuffer; - var _TransformFeedbackBuffer = OpenTK.Graphics.ES30.BufferRangeTarget.TransformFeedbackBuffer; -} -static void Test_BufferTarget_37778() { - var _ArrayBuffer = OpenTK.Graphics.ES30.BufferTarget.ArrayBuffer; - var _ElementArrayBuffer = OpenTK.Graphics.ES30.BufferTarget.ElementArrayBuffer; - var _PixelPackBuffer = OpenTK.Graphics.ES30.BufferTarget.PixelPackBuffer; - var _PixelUnpackBuffer = OpenTK.Graphics.ES30.BufferTarget.PixelUnpackBuffer; - var _UniformBuffer = OpenTK.Graphics.ES30.BufferTarget.UniformBuffer; - var _TransformFeedbackBuffer = OpenTK.Graphics.ES30.BufferTarget.TransformFeedbackBuffer; - var _CopyReadBuffer = OpenTK.Graphics.ES30.BufferTarget.CopyReadBuffer; - var _CopyWriteBuffer = OpenTK.Graphics.ES30.BufferTarget.CopyWriteBuffer; -} -static void Test_BufferUsage_37779() { - var _StreamDraw = OpenTK.Graphics.ES30.BufferUsage.StreamDraw; - var _StaticDraw = OpenTK.Graphics.ES30.BufferUsage.StaticDraw; - var _DynamicDraw = OpenTK.Graphics.ES30.BufferUsage.DynamicDraw; -} -static void Test_BufferUsageHint_37780() { - var _StreamDraw = OpenTK.Graphics.ES30.BufferUsageHint.StreamDraw; - var _StreamRead = OpenTK.Graphics.ES30.BufferUsageHint.StreamRead; - var _StreamCopy = OpenTK.Graphics.ES30.BufferUsageHint.StreamCopy; - var _StaticDraw = OpenTK.Graphics.ES30.BufferUsageHint.StaticDraw; - var _StaticRead = OpenTK.Graphics.ES30.BufferUsageHint.StaticRead; - var _StaticCopy = OpenTK.Graphics.ES30.BufferUsageHint.StaticCopy; - var _DynamicDraw = OpenTK.Graphics.ES30.BufferUsageHint.DynamicDraw; - var _DynamicRead = OpenTK.Graphics.ES30.BufferUsageHint.DynamicRead; - var _DynamicCopy = OpenTK.Graphics.ES30.BufferUsageHint.DynamicCopy; -} -static void Test_ClearBuffer_37781() { - var _Color = OpenTK.Graphics.ES30.ClearBuffer.Color; - var _Depth = OpenTK.Graphics.ES30.ClearBuffer.Depth; - var _Stencil = OpenTK.Graphics.ES30.ClearBuffer.Stencil; -} -static void Test_ClearBufferCombined_37782() { - var _DepthStencil = OpenTK.Graphics.ES30.ClearBufferCombined.DepthStencil; -} -static void Test_ClearBufferMask_37783() { - var _DepthBufferBit = OpenTK.Graphics.ES30.ClearBufferMask.DepthBufferBit; - var _AccumBufferBit = OpenTK.Graphics.ES30.ClearBufferMask.AccumBufferBit; - var _StencilBufferBit = OpenTK.Graphics.ES30.ClearBufferMask.StencilBufferBit; - var _ColorBufferBit = OpenTK.Graphics.ES30.ClearBufferMask.ColorBufferBit; - var _CoverageBufferBitNv = OpenTK.Graphics.ES30.ClearBufferMask.CoverageBufferBitNv; -} -static void Test_ClientAttribMask_37784() { - var _ClientPixelStoreBit = OpenTK.Graphics.ES30.ClientAttribMask.ClientPixelStoreBit; - var _ClientVertexArrayBit = OpenTK.Graphics.ES30.ClientAttribMask.ClientVertexArrayBit; - var _ClientAllAttribBits = OpenTK.Graphics.ES30.ClientAttribMask.ClientAllAttribBits; -} -static void Test_ClientWaitSyncFlags_37785() { - var _None = OpenTK.Graphics.ES30.ClientWaitSyncFlags.None; - var _SyncFlushCommandsBit = OpenTK.Graphics.ES30.ClientWaitSyncFlags.SyncFlushCommandsBit; - var _SyncFlushCommandsBitApple = OpenTK.Graphics.ES30.ClientWaitSyncFlags.SyncFlushCommandsBitApple; -} -static void Test_ClipPlaneName_37786() { - var _ClipDistance0 = OpenTK.Graphics.ES30.ClipPlaneName.ClipDistance0; - var _ClipPlane0 = OpenTK.Graphics.ES30.ClipPlaneName.ClipPlane0; - var _ClipDistance1 = OpenTK.Graphics.ES30.ClipPlaneName.ClipDistance1; - var _ClipPlane1 = OpenTK.Graphics.ES30.ClipPlaneName.ClipPlane1; - var _ClipDistance2 = OpenTK.Graphics.ES30.ClipPlaneName.ClipDistance2; - var _ClipPlane2 = OpenTK.Graphics.ES30.ClipPlaneName.ClipPlane2; - var _ClipDistance3 = OpenTK.Graphics.ES30.ClipPlaneName.ClipDistance3; - var _ClipPlane3 = OpenTK.Graphics.ES30.ClipPlaneName.ClipPlane3; - var _ClipDistance4 = OpenTK.Graphics.ES30.ClipPlaneName.ClipDistance4; - var _ClipPlane4 = OpenTK.Graphics.ES30.ClipPlaneName.ClipPlane4; - var _ClipDistance5 = OpenTK.Graphics.ES30.ClipPlaneName.ClipDistance5; - var _ClipPlane5 = OpenTK.Graphics.ES30.ClipPlaneName.ClipPlane5; - var _ClipDistance6 = OpenTK.Graphics.ES30.ClipPlaneName.ClipDistance6; - var _ClipDistance7 = OpenTK.Graphics.ES30.ClipPlaneName.ClipDistance7; -} -static void Test_ColorMaterialFace_37787() { - var _Front = OpenTK.Graphics.ES30.ColorMaterialFace.Front; - var _Back = OpenTK.Graphics.ES30.ColorMaterialFace.Back; - var _FrontAndBack = OpenTK.Graphics.ES30.ColorMaterialFace.FrontAndBack; -} -static void Test_ColorMaterialParameter_37788() { - var _Ambient = OpenTK.Graphics.ES30.ColorMaterialParameter.Ambient; - var _Diffuse = OpenTK.Graphics.ES30.ColorMaterialParameter.Diffuse; - var _Specular = OpenTK.Graphics.ES30.ColorMaterialParameter.Specular; - var _Emission = OpenTK.Graphics.ES30.ColorMaterialParameter.Emission; - var _AmbientAndDiffuse = OpenTK.Graphics.ES30.ColorMaterialParameter.AmbientAndDiffuse; -} -static void Test_ColorPointerType_37789() { - var _Byte = OpenTK.Graphics.ES30.ColorPointerType.Byte; - var _UnsignedByte = OpenTK.Graphics.ES30.ColorPointerType.UnsignedByte; - var _Short = OpenTK.Graphics.ES30.ColorPointerType.Short; - var _UnsignedShort = OpenTK.Graphics.ES30.ColorPointerType.UnsignedShort; - var _Int = OpenTK.Graphics.ES30.ColorPointerType.Int; - var _UnsignedInt = OpenTK.Graphics.ES30.ColorPointerType.UnsignedInt; - var _Float = OpenTK.Graphics.ES30.ColorPointerType.Float; - var _Double = OpenTK.Graphics.ES30.ColorPointerType.Double; -} -static void Test_ColorTableParameterPNameSgi_37790() { - var _ColorTableScale = OpenTK.Graphics.ES30.ColorTableParameterPNameSgi.ColorTableScale; - var _ColorTableScaleSgi = OpenTK.Graphics.ES30.ColorTableParameterPNameSgi.ColorTableScaleSgi; - var _ColorTableBias = OpenTK.Graphics.ES30.ColorTableParameterPNameSgi.ColorTableBias; - var _ColorTableBiasSgi = OpenTK.Graphics.ES30.ColorTableParameterPNameSgi.ColorTableBiasSgi; -} -static void Test_ColorTableTargetSgi_37791() { - var _TextureColorTableSgi = OpenTK.Graphics.ES30.ColorTableTargetSgi.TextureColorTableSgi; - var _ProxyTextureColorTableSgi = OpenTK.Graphics.ES30.ColorTableTargetSgi.ProxyTextureColorTableSgi; - var _ColorTable = OpenTK.Graphics.ES30.ColorTableTargetSgi.ColorTable; - var _ColorTableSgi = OpenTK.Graphics.ES30.ColorTableTargetSgi.ColorTableSgi; - var _PostConvolutionColorTable = OpenTK.Graphics.ES30.ColorTableTargetSgi.PostConvolutionColorTable; - var _PostConvolutionColorTableSgi = OpenTK.Graphics.ES30.ColorTableTargetSgi.PostConvolutionColorTableSgi; - var _PostColorMatrixColorTable = OpenTK.Graphics.ES30.ColorTableTargetSgi.PostColorMatrixColorTable; - var _PostColorMatrixColorTableSgi = OpenTK.Graphics.ES30.ColorTableTargetSgi.PostColorMatrixColorTableSgi; - var _ProxyColorTable = OpenTK.Graphics.ES30.ColorTableTargetSgi.ProxyColorTable; - var _ProxyColorTableSgi = OpenTK.Graphics.ES30.ColorTableTargetSgi.ProxyColorTableSgi; - var _ProxyPostConvolutionColorTable = OpenTK.Graphics.ES30.ColorTableTargetSgi.ProxyPostConvolutionColorTable; - var _ProxyPostConvolutionColorTableSgi = OpenTK.Graphics.ES30.ColorTableTargetSgi.ProxyPostConvolutionColorTableSgi; - var _ProxyPostColorMatrixColorTable = OpenTK.Graphics.ES30.ColorTableTargetSgi.ProxyPostColorMatrixColorTable; - var _ProxyPostColorMatrixColorTableSgi = OpenTK.Graphics.ES30.ColorTableTargetSgi.ProxyPostColorMatrixColorTableSgi; -} -static void Test_CompressedInternalFormat_37792() { - var _Etc1Rgb8Oes = OpenTK.Graphics.ES30.CompressedInternalFormat.Etc1Rgb8Oes; - var _CompressedR11Eac = OpenTK.Graphics.ES30.CompressedInternalFormat.CompressedR11Eac; - var _CompressedSignedR11Eac = OpenTK.Graphics.ES30.CompressedInternalFormat.CompressedSignedR11Eac; - var _CompressedRg11Eac = OpenTK.Graphics.ES30.CompressedInternalFormat.CompressedRg11Eac; - var _CompressedSignedRg11Eac = OpenTK.Graphics.ES30.CompressedInternalFormat.CompressedSignedRg11Eac; - var _CompressedRgb8Etc2 = OpenTK.Graphics.ES30.CompressedInternalFormat.CompressedRgb8Etc2; - var _CompressedSrgb8Etc2 = OpenTK.Graphics.ES30.CompressedInternalFormat.CompressedSrgb8Etc2; - var _CompressedRgb8PunchthroughAlpha1Etc2 = OpenTK.Graphics.ES30.CompressedInternalFormat.CompressedRgb8PunchthroughAlpha1Etc2; - var _CompressedSrgb8PunchthroughAlpha1Etc2 = OpenTK.Graphics.ES30.CompressedInternalFormat.CompressedSrgb8PunchthroughAlpha1Etc2; - var _CompressedRgba8Etc2Eac = OpenTK.Graphics.ES30.CompressedInternalFormat.CompressedRgba8Etc2Eac; - var _CompressedSrgb8Alpha8Etc2Eac = OpenTK.Graphics.ES30.CompressedInternalFormat.CompressedSrgb8Alpha8Etc2Eac; -} -static void Test_ContextFlagMask_37793() { - var _ContextFlagForwardCompatibleBit = OpenTK.Graphics.ES30.ContextFlagMask.ContextFlagForwardCompatibleBit; - var _ContextFlagDebugBit = OpenTK.Graphics.ES30.ContextFlagMask.ContextFlagDebugBit; - var _ContextFlagDebugBitKhr = OpenTK.Graphics.ES30.ContextFlagMask.ContextFlagDebugBitKhr; - var _ContextFlagRobustAccessBitArb = OpenTK.Graphics.ES30.ContextFlagMask.ContextFlagRobustAccessBitArb; -} -static void Test_ContextProfileMask_37794() { - var _ContextCoreProfileBit = OpenTK.Graphics.ES30.ContextProfileMask.ContextCoreProfileBit; - var _ContextCompatibilityProfileBit = OpenTK.Graphics.ES30.ContextProfileMask.ContextCompatibilityProfileBit; -} -static void Test_ConvolutionBorderModeExt_37795() { - var _Reduce = OpenTK.Graphics.ES30.ConvolutionBorderModeExt.Reduce; - var _ReduceExt = OpenTK.Graphics.ES30.ConvolutionBorderModeExt.ReduceExt; -} -static void Test_ConvolutionParameterExt_37796() { - var _ConvolutionBorderMode = OpenTK.Graphics.ES30.ConvolutionParameterExt.ConvolutionBorderMode; - var _ConvolutionBorderModeExt = OpenTK.Graphics.ES30.ConvolutionParameterExt.ConvolutionBorderModeExt; - var _ConvolutionFilterScale = OpenTK.Graphics.ES30.ConvolutionParameterExt.ConvolutionFilterScale; - var _ConvolutionFilterScaleExt = OpenTK.Graphics.ES30.ConvolutionParameterExt.ConvolutionFilterScaleExt; - var _ConvolutionFilterBias = OpenTK.Graphics.ES30.ConvolutionParameterExt.ConvolutionFilterBias; - var _ConvolutionFilterBiasExt = OpenTK.Graphics.ES30.ConvolutionParameterExt.ConvolutionFilterBiasExt; -} -static void Test_ConvolutionTargetExt_37797() { - var _Convolution1D = OpenTK.Graphics.ES30.ConvolutionTargetExt.Convolution1D; - var _Convolution1DExt = OpenTK.Graphics.ES30.ConvolutionTargetExt.Convolution1DExt; - var _Convolution2D = OpenTK.Graphics.ES30.ConvolutionTargetExt.Convolution2D; - var _Convolution2DExt = OpenTK.Graphics.ES30.ConvolutionTargetExt.Convolution2DExt; -} -static void Test_CullFaceMode_37798() { - var _Front = OpenTK.Graphics.ES30.CullFaceMode.Front; - var _Back = OpenTK.Graphics.ES30.CullFaceMode.Back; - var _FrontAndBack = OpenTK.Graphics.ES30.CullFaceMode.FrontAndBack; -} -static void Test_DataType_37799() { -} -static void Test_DebugSeverity_37800() { - var _DebugSeverityNotification = OpenTK.Graphics.ES30.DebugSeverity.DebugSeverityNotification; - var _DebugSeverityHigh = OpenTK.Graphics.ES30.DebugSeverity.DebugSeverityHigh; - var _DebugSeverityMedium = OpenTK.Graphics.ES30.DebugSeverity.DebugSeverityMedium; - var _DebugSeverityLow = OpenTK.Graphics.ES30.DebugSeverity.DebugSeverityLow; -} -static void Test_DebugSeverityControl_37801() { - var _DontCare = OpenTK.Graphics.ES30.DebugSeverityControl.DontCare; - var _DebugSeverityNotification = OpenTK.Graphics.ES30.DebugSeverityControl.DebugSeverityNotification; - var _DebugSeverityHigh = OpenTK.Graphics.ES30.DebugSeverityControl.DebugSeverityHigh; - var _DebugSeverityMedium = OpenTK.Graphics.ES30.DebugSeverityControl.DebugSeverityMedium; - var _DebugSeverityLow = OpenTK.Graphics.ES30.DebugSeverityControl.DebugSeverityLow; -} -static void Test_DebugSource_37802() { - var _DebugSourceApi = OpenTK.Graphics.ES30.DebugSource.DebugSourceApi; - var _DebugSourceWindowSystem = OpenTK.Graphics.ES30.DebugSource.DebugSourceWindowSystem; - var _DebugSourceShaderCompiler = OpenTK.Graphics.ES30.DebugSource.DebugSourceShaderCompiler; - var _DebugSourceThirdParty = OpenTK.Graphics.ES30.DebugSource.DebugSourceThirdParty; - var _DebugSourceApplication = OpenTK.Graphics.ES30.DebugSource.DebugSourceApplication; - var _DebugSourceOther = OpenTK.Graphics.ES30.DebugSource.DebugSourceOther; -} -static void Test_DebugSourceControl_37803() { - var _DontCare = OpenTK.Graphics.ES30.DebugSourceControl.DontCare; - var _DebugSourceApi = OpenTK.Graphics.ES30.DebugSourceControl.DebugSourceApi; - var _DebugSourceWindowSystem = OpenTK.Graphics.ES30.DebugSourceControl.DebugSourceWindowSystem; - var _DebugSourceShaderCompiler = OpenTK.Graphics.ES30.DebugSourceControl.DebugSourceShaderCompiler; - var _DebugSourceThirdParty = OpenTK.Graphics.ES30.DebugSourceControl.DebugSourceThirdParty; - var _DebugSourceApplication = OpenTK.Graphics.ES30.DebugSourceControl.DebugSourceApplication; - var _DebugSourceOther = OpenTK.Graphics.ES30.DebugSourceControl.DebugSourceOther; -} -static void Test_DebugSourceExternal_37804() { - var _DebugSourceThirdParty = OpenTK.Graphics.ES30.DebugSourceExternal.DebugSourceThirdParty; - var _DebugSourceApplication = OpenTK.Graphics.ES30.DebugSourceExternal.DebugSourceApplication; -} -static void Test_DebugType_37805() { - var _DebugTypeError = OpenTK.Graphics.ES30.DebugType.DebugTypeError; - var _DebugTypeDeprecatedBehavior = OpenTK.Graphics.ES30.DebugType.DebugTypeDeprecatedBehavior; - var _DebugTypeUndefinedBehavior = OpenTK.Graphics.ES30.DebugType.DebugTypeUndefinedBehavior; - var _DebugTypePortability = OpenTK.Graphics.ES30.DebugType.DebugTypePortability; - var _DebugTypePerformance = OpenTK.Graphics.ES30.DebugType.DebugTypePerformance; - var _DebugTypeOther = OpenTK.Graphics.ES30.DebugType.DebugTypeOther; - var _DebugTypeMarker = OpenTK.Graphics.ES30.DebugType.DebugTypeMarker; - var _DebugTypePushGroup = OpenTK.Graphics.ES30.DebugType.DebugTypePushGroup; - var _DebugTypePopGroup = OpenTK.Graphics.ES30.DebugType.DebugTypePopGroup; -} -static void Test_DebugTypeControl_37806() { - var _DontCare = OpenTK.Graphics.ES30.DebugTypeControl.DontCare; - var _DebugTypeError = OpenTK.Graphics.ES30.DebugTypeControl.DebugTypeError; - var _DebugTypeDeprecatedBehavior = OpenTK.Graphics.ES30.DebugTypeControl.DebugTypeDeprecatedBehavior; - var _DebugTypeUndefinedBehavior = OpenTK.Graphics.ES30.DebugTypeControl.DebugTypeUndefinedBehavior; - var _DebugTypePortability = OpenTK.Graphics.ES30.DebugTypeControl.DebugTypePortability; - var _DebugTypePerformance = OpenTK.Graphics.ES30.DebugTypeControl.DebugTypePerformance; - var _DebugTypeOther = OpenTK.Graphics.ES30.DebugTypeControl.DebugTypeOther; - var _DebugTypeMarker = OpenTK.Graphics.ES30.DebugTypeControl.DebugTypeMarker; - var _DebugTypePushGroup = OpenTK.Graphics.ES30.DebugTypeControl.DebugTypePushGroup; - var _DebugTypePopGroup = OpenTK.Graphics.ES30.DebugTypeControl.DebugTypePopGroup; -} -static void Test_DepthFunction_37807() { - var _Never = OpenTK.Graphics.ES30.DepthFunction.Never; - var _Less = OpenTK.Graphics.ES30.DepthFunction.Less; - var _Equal = OpenTK.Graphics.ES30.DepthFunction.Equal; - var _Lequal = OpenTK.Graphics.ES30.DepthFunction.Lequal; - var _Greater = OpenTK.Graphics.ES30.DepthFunction.Greater; - var _Notequal = OpenTK.Graphics.ES30.DepthFunction.Notequal; - var _Gequal = OpenTK.Graphics.ES30.DepthFunction.Gequal; - var _Always = OpenTK.Graphics.ES30.DepthFunction.Always; -} -static void Test_DmpShaderBinary_37808() { - var _ShaderBinaryDmp = OpenTK.Graphics.ES30.DmpShaderBinary.ShaderBinaryDmp; -} -static void Test_DrawBufferMode_37809() { - var _None = OpenTK.Graphics.ES30.DrawBufferMode.None; - var _NoneOes = OpenTK.Graphics.ES30.DrawBufferMode.NoneOes; - var _FrontLeft = OpenTK.Graphics.ES30.DrawBufferMode.FrontLeft; - var _FrontRight = OpenTK.Graphics.ES30.DrawBufferMode.FrontRight; - var _BackLeft = OpenTK.Graphics.ES30.DrawBufferMode.BackLeft; - var _BackRight = OpenTK.Graphics.ES30.DrawBufferMode.BackRight; - var _Front = OpenTK.Graphics.ES30.DrawBufferMode.Front; - var _Back = OpenTK.Graphics.ES30.DrawBufferMode.Back; - var _Left = OpenTK.Graphics.ES30.DrawBufferMode.Left; - var _Right = OpenTK.Graphics.ES30.DrawBufferMode.Right; - var _FrontAndBack = OpenTK.Graphics.ES30.DrawBufferMode.FrontAndBack; - var _Aux0 = OpenTK.Graphics.ES30.DrawBufferMode.Aux0; - var _Aux1 = OpenTK.Graphics.ES30.DrawBufferMode.Aux1; - var _Aux2 = OpenTK.Graphics.ES30.DrawBufferMode.Aux2; - var _Aux3 = OpenTK.Graphics.ES30.DrawBufferMode.Aux3; - var _ColorAttachment0 = OpenTK.Graphics.ES30.DrawBufferMode.ColorAttachment0; - var _ColorAttachment1 = OpenTK.Graphics.ES30.DrawBufferMode.ColorAttachment1; - var _ColorAttachment2 = OpenTK.Graphics.ES30.DrawBufferMode.ColorAttachment2; - var _ColorAttachment3 = OpenTK.Graphics.ES30.DrawBufferMode.ColorAttachment3; - var _ColorAttachment4 = OpenTK.Graphics.ES30.DrawBufferMode.ColorAttachment4; - var _ColorAttachment5 = OpenTK.Graphics.ES30.DrawBufferMode.ColorAttachment5; - var _ColorAttachment6 = OpenTK.Graphics.ES30.DrawBufferMode.ColorAttachment6; - var _ColorAttachment7 = OpenTK.Graphics.ES30.DrawBufferMode.ColorAttachment7; - var _ColorAttachment8 = OpenTK.Graphics.ES30.DrawBufferMode.ColorAttachment8; - var _ColorAttachment9 = OpenTK.Graphics.ES30.DrawBufferMode.ColorAttachment9; - var _ColorAttachment10 = OpenTK.Graphics.ES30.DrawBufferMode.ColorAttachment10; - var _ColorAttachment11 = OpenTK.Graphics.ES30.DrawBufferMode.ColorAttachment11; - var _ColorAttachment12 = OpenTK.Graphics.ES30.DrawBufferMode.ColorAttachment12; - var _ColorAttachment13 = OpenTK.Graphics.ES30.DrawBufferMode.ColorAttachment13; - var _ColorAttachment14 = OpenTK.Graphics.ES30.DrawBufferMode.ColorAttachment14; - var _ColorAttachment15 = OpenTK.Graphics.ES30.DrawBufferMode.ColorAttachment15; -} -static void Test_DrawElementsType_37810() { - var _UnsignedByte = OpenTK.Graphics.ES30.DrawElementsType.UnsignedByte; - var _UnsignedShort = OpenTK.Graphics.ES30.DrawElementsType.UnsignedShort; - var _UnsignedInt = OpenTK.Graphics.ES30.DrawElementsType.UnsignedInt; -} -static void Test_EnableCap_37811() { - var _PointSmooth = OpenTK.Graphics.ES30.EnableCap.PointSmooth; - var _LineSmooth = OpenTK.Graphics.ES30.EnableCap.LineSmooth; - var _LineStipple = OpenTK.Graphics.ES30.EnableCap.LineStipple; - var _PolygonSmooth = OpenTK.Graphics.ES30.EnableCap.PolygonSmooth; - var _PolygonStipple = OpenTK.Graphics.ES30.EnableCap.PolygonStipple; - var _CullFace = OpenTK.Graphics.ES30.EnableCap.CullFace; - var _Lighting = OpenTK.Graphics.ES30.EnableCap.Lighting; - var _ColorMaterial = OpenTK.Graphics.ES30.EnableCap.ColorMaterial; - var _Fog = OpenTK.Graphics.ES30.EnableCap.Fog; - var _DepthTest = OpenTK.Graphics.ES30.EnableCap.DepthTest; - var _StencilTest = OpenTK.Graphics.ES30.EnableCap.StencilTest; - var _Normalize = OpenTK.Graphics.ES30.EnableCap.Normalize; - var _AlphaTest = OpenTK.Graphics.ES30.EnableCap.AlphaTest; - var _Dither = OpenTK.Graphics.ES30.EnableCap.Dither; - var _Blend = OpenTK.Graphics.ES30.EnableCap.Blend; - var _IndexLogicOp = OpenTK.Graphics.ES30.EnableCap.IndexLogicOp; - var _ColorLogicOp = OpenTK.Graphics.ES30.EnableCap.ColorLogicOp; - var _ScissorTest = OpenTK.Graphics.ES30.EnableCap.ScissorTest; - var _TextureGenS = OpenTK.Graphics.ES30.EnableCap.TextureGenS; - var _TextureGenT = OpenTK.Graphics.ES30.EnableCap.TextureGenT; - var _TextureGenR = OpenTK.Graphics.ES30.EnableCap.TextureGenR; - var _TextureGenQ = OpenTK.Graphics.ES30.EnableCap.TextureGenQ; - var _AutoNormal = OpenTK.Graphics.ES30.EnableCap.AutoNormal; - var _Map1Color4 = OpenTK.Graphics.ES30.EnableCap.Map1Color4; - var _Map1Index = OpenTK.Graphics.ES30.EnableCap.Map1Index; - var _Map1Normal = OpenTK.Graphics.ES30.EnableCap.Map1Normal; - var _Map1TextureCoord1 = OpenTK.Graphics.ES30.EnableCap.Map1TextureCoord1; - var _Map1TextureCoord2 = OpenTK.Graphics.ES30.EnableCap.Map1TextureCoord2; - var _Map1TextureCoord3 = OpenTK.Graphics.ES30.EnableCap.Map1TextureCoord3; - var _Map1TextureCoord4 = OpenTK.Graphics.ES30.EnableCap.Map1TextureCoord4; - var _Map1Vertex3 = OpenTK.Graphics.ES30.EnableCap.Map1Vertex3; - var _Map1Vertex4 = OpenTK.Graphics.ES30.EnableCap.Map1Vertex4; - var _Map2Color4 = OpenTK.Graphics.ES30.EnableCap.Map2Color4; - var _Map2Index = OpenTK.Graphics.ES30.EnableCap.Map2Index; - var _Map2Normal = OpenTK.Graphics.ES30.EnableCap.Map2Normal; - var _Map2TextureCoord1 = OpenTK.Graphics.ES30.EnableCap.Map2TextureCoord1; - var _Map2TextureCoord2 = OpenTK.Graphics.ES30.EnableCap.Map2TextureCoord2; - var _Map2TextureCoord3 = OpenTK.Graphics.ES30.EnableCap.Map2TextureCoord3; - var _Map2TextureCoord4 = OpenTK.Graphics.ES30.EnableCap.Map2TextureCoord4; - var _Map2Vertex3 = OpenTK.Graphics.ES30.EnableCap.Map2Vertex3; - var _Map2Vertex4 = OpenTK.Graphics.ES30.EnableCap.Map2Vertex4; - var _Texture1D = OpenTK.Graphics.ES30.EnableCap.Texture1D; - var _Texture2D = OpenTK.Graphics.ES30.EnableCap.Texture2D; - var _PolygonOffsetPoint = OpenTK.Graphics.ES30.EnableCap.PolygonOffsetPoint; - var _PolygonOffsetLine = OpenTK.Graphics.ES30.EnableCap.PolygonOffsetLine; - var _ClipPlane0 = OpenTK.Graphics.ES30.EnableCap.ClipPlane0; - var _ClipPlane1 = OpenTK.Graphics.ES30.EnableCap.ClipPlane1; - var _ClipPlane2 = OpenTK.Graphics.ES30.EnableCap.ClipPlane2; - var _ClipPlane3 = OpenTK.Graphics.ES30.EnableCap.ClipPlane3; - var _ClipPlane4 = OpenTK.Graphics.ES30.EnableCap.ClipPlane4; - var _ClipPlane5 = OpenTK.Graphics.ES30.EnableCap.ClipPlane5; - var _Light0 = OpenTK.Graphics.ES30.EnableCap.Light0; - var _Light1 = OpenTK.Graphics.ES30.EnableCap.Light1; - var _Light2 = OpenTK.Graphics.ES30.EnableCap.Light2; - var _Light3 = OpenTK.Graphics.ES30.EnableCap.Light3; - var _Light4 = OpenTK.Graphics.ES30.EnableCap.Light4; - var _Light5 = OpenTK.Graphics.ES30.EnableCap.Light5; - var _Light6 = OpenTK.Graphics.ES30.EnableCap.Light6; - var _Light7 = OpenTK.Graphics.ES30.EnableCap.Light7; - var _Convolution1DExt = OpenTK.Graphics.ES30.EnableCap.Convolution1DExt; - var _Convolution2DExt = OpenTK.Graphics.ES30.EnableCap.Convolution2DExt; - var _Separable2DExt = OpenTK.Graphics.ES30.EnableCap.Separable2DExt; - var _HistogramExt = OpenTK.Graphics.ES30.EnableCap.HistogramExt; - var _MinmaxExt = OpenTK.Graphics.ES30.EnableCap.MinmaxExt; - var _PolygonOffsetFill = OpenTK.Graphics.ES30.EnableCap.PolygonOffsetFill; - var _RescaleNormalExt = OpenTK.Graphics.ES30.EnableCap.RescaleNormalExt; - var _Texture3DExt = OpenTK.Graphics.ES30.EnableCap.Texture3DExt; - var _VertexArray = OpenTK.Graphics.ES30.EnableCap.VertexArray; - var _NormalArray = OpenTK.Graphics.ES30.EnableCap.NormalArray; - var _ColorArray = OpenTK.Graphics.ES30.EnableCap.ColorArray; - var _IndexArray = OpenTK.Graphics.ES30.EnableCap.IndexArray; - var _TextureCoordArray = OpenTK.Graphics.ES30.EnableCap.TextureCoordArray; - var _EdgeFlagArray = OpenTK.Graphics.ES30.EnableCap.EdgeFlagArray; - var _InterlaceSgix = OpenTK.Graphics.ES30.EnableCap.InterlaceSgix; - var _MultisampleSgis = OpenTK.Graphics.ES30.EnableCap.MultisampleSgis; - var _SampleAlphaToCoverage = OpenTK.Graphics.ES30.EnableCap.SampleAlphaToCoverage; - var _SampleAlphaToMaskSgis = OpenTK.Graphics.ES30.EnableCap.SampleAlphaToMaskSgis; - var _SampleAlphaToOneSgis = OpenTK.Graphics.ES30.EnableCap.SampleAlphaToOneSgis; - var _SampleCoverage = OpenTK.Graphics.ES30.EnableCap.SampleCoverage; - var _SampleMaskSgis = OpenTK.Graphics.ES30.EnableCap.SampleMaskSgis; - var _TextureColorTableSgi = OpenTK.Graphics.ES30.EnableCap.TextureColorTableSgi; - var _ColorTableSgi = OpenTK.Graphics.ES30.EnableCap.ColorTableSgi; - var _PostConvolutionColorTableSgi = OpenTK.Graphics.ES30.EnableCap.PostConvolutionColorTableSgi; - var _PostColorMatrixColorTableSgi = OpenTK.Graphics.ES30.EnableCap.PostColorMatrixColorTableSgi; - var _Texture4DSgis = OpenTK.Graphics.ES30.EnableCap.Texture4DSgis; - var _PixelTexGenSgix = OpenTK.Graphics.ES30.EnableCap.PixelTexGenSgix; - var _SpriteSgix = OpenTK.Graphics.ES30.EnableCap.SpriteSgix; - var _ReferencePlaneSgix = OpenTK.Graphics.ES30.EnableCap.ReferencePlaneSgix; - var _IrInstrument1Sgix = OpenTK.Graphics.ES30.EnableCap.IrInstrument1Sgix; - var _CalligraphicFragmentSgix = OpenTK.Graphics.ES30.EnableCap.CalligraphicFragmentSgix; - var _FramezoomSgix = OpenTK.Graphics.ES30.EnableCap.FramezoomSgix; - var _FogOffsetSgix = OpenTK.Graphics.ES30.EnableCap.FogOffsetSgix; - var _SharedTexturePaletteExt = OpenTK.Graphics.ES30.EnableCap.SharedTexturePaletteExt; - var _AsyncHistogramSgix = OpenTK.Graphics.ES30.EnableCap.AsyncHistogramSgix; - var _PixelTextureSgis = OpenTK.Graphics.ES30.EnableCap.PixelTextureSgis; - var _AsyncTexImageSgix = OpenTK.Graphics.ES30.EnableCap.AsyncTexImageSgix; - var _AsyncDrawPixelsSgix = OpenTK.Graphics.ES30.EnableCap.AsyncDrawPixelsSgix; - var _AsyncReadPixelsSgix = OpenTK.Graphics.ES30.EnableCap.AsyncReadPixelsSgix; - var _FragmentLightingSgix = OpenTK.Graphics.ES30.EnableCap.FragmentLightingSgix; - var _FragmentColorMaterialSgix = OpenTK.Graphics.ES30.EnableCap.FragmentColorMaterialSgix; - var _FragmentLight0Sgix = OpenTK.Graphics.ES30.EnableCap.FragmentLight0Sgix; - var _FragmentLight1Sgix = OpenTK.Graphics.ES30.EnableCap.FragmentLight1Sgix; - var _FragmentLight2Sgix = OpenTK.Graphics.ES30.EnableCap.FragmentLight2Sgix; - var _FragmentLight3Sgix = OpenTK.Graphics.ES30.EnableCap.FragmentLight3Sgix; - var _FragmentLight4Sgix = OpenTK.Graphics.ES30.EnableCap.FragmentLight4Sgix; - var _FragmentLight5Sgix = OpenTK.Graphics.ES30.EnableCap.FragmentLight5Sgix; - var _FragmentLight6Sgix = OpenTK.Graphics.ES30.EnableCap.FragmentLight6Sgix; - var _FragmentLight7Sgix = OpenTK.Graphics.ES30.EnableCap.FragmentLight7Sgix; - var _RasterizerDiscard = OpenTK.Graphics.ES30.EnableCap.RasterizerDiscard; - var _PrimitiveRestartFixedIndex = OpenTK.Graphics.ES30.EnableCap.PrimitiveRestartFixedIndex; -} -static void Test_ErrorCode_37812() { - var _NoError = OpenTK.Graphics.ES30.ErrorCode.NoError; - var _InvalidEnum = OpenTK.Graphics.ES30.ErrorCode.InvalidEnum; - var _InvalidValue = OpenTK.Graphics.ES30.ErrorCode.InvalidValue; - var _InvalidOperation = OpenTK.Graphics.ES30.ErrorCode.InvalidOperation; - var _StackOverflow = OpenTK.Graphics.ES30.ErrorCode.StackOverflow; - var _StackUnderflow = OpenTK.Graphics.ES30.ErrorCode.StackUnderflow; - var _OutOfMemory = OpenTK.Graphics.ES30.ErrorCode.OutOfMemory; - var _InvalidFramebufferOperation = OpenTK.Graphics.ES30.ErrorCode.InvalidFramebufferOperation; - var _InvalidFramebufferOperationExt = OpenTK.Graphics.ES30.ErrorCode.InvalidFramebufferOperationExt; - var _InvalidFramebufferOperationOes = OpenTK.Graphics.ES30.ErrorCode.InvalidFramebufferOperationOes; - var _TableTooLarge = OpenTK.Graphics.ES30.ErrorCode.TableTooLarge; - var _TableTooLargeExt = OpenTK.Graphics.ES30.ErrorCode.TableTooLargeExt; - var _TextureTooLargeExt = OpenTK.Graphics.ES30.ErrorCode.TextureTooLargeExt; -} -static void Test_EsVersion20_37813() { - var _False = OpenTK.Graphics.ES30.EsVersion20.False; - var _NoError = OpenTK.Graphics.ES30.EsVersion20.NoError; - var _None = OpenTK.Graphics.ES30.EsVersion20.None; - var _Zero = OpenTK.Graphics.ES30.EsVersion20.Zero; - var _Points = OpenTK.Graphics.ES30.EsVersion20.Points; - var _DepthBufferBit = OpenTK.Graphics.ES30.EsVersion20.DepthBufferBit; - var _StencilBufferBit = OpenTK.Graphics.ES30.EsVersion20.StencilBufferBit; - var _ColorBufferBit = OpenTK.Graphics.ES30.EsVersion20.ColorBufferBit; - var _Lines = OpenTK.Graphics.ES30.EsVersion20.Lines; - var _LineLoop = OpenTK.Graphics.ES30.EsVersion20.LineLoop; - var _LineStrip = OpenTK.Graphics.ES30.EsVersion20.LineStrip; - var _Triangles = OpenTK.Graphics.ES30.EsVersion20.Triangles; - var _TriangleStrip = OpenTK.Graphics.ES30.EsVersion20.TriangleStrip; - var _TriangleFan = OpenTK.Graphics.ES30.EsVersion20.TriangleFan; - var _Never = OpenTK.Graphics.ES30.EsVersion20.Never; - var _Less = OpenTK.Graphics.ES30.EsVersion20.Less; - var _Equal = OpenTK.Graphics.ES30.EsVersion20.Equal; - var _Lequal = OpenTK.Graphics.ES30.EsVersion20.Lequal; - var _Greater = OpenTK.Graphics.ES30.EsVersion20.Greater; - var _Notequal = OpenTK.Graphics.ES30.EsVersion20.Notequal; - var _Gequal = OpenTK.Graphics.ES30.EsVersion20.Gequal; - var _Always = OpenTK.Graphics.ES30.EsVersion20.Always; - var _SrcColor = OpenTK.Graphics.ES30.EsVersion20.SrcColor; - var _OneMinusSrcColor = OpenTK.Graphics.ES30.EsVersion20.OneMinusSrcColor; - var _SrcAlpha = OpenTK.Graphics.ES30.EsVersion20.SrcAlpha; - var _OneMinusSrcAlpha = OpenTK.Graphics.ES30.EsVersion20.OneMinusSrcAlpha; - var _DstAlpha = OpenTK.Graphics.ES30.EsVersion20.DstAlpha; - var _OneMinusDstAlpha = OpenTK.Graphics.ES30.EsVersion20.OneMinusDstAlpha; - var _DstColor = OpenTK.Graphics.ES30.EsVersion20.DstColor; - var _OneMinusDstColor = OpenTK.Graphics.ES30.EsVersion20.OneMinusDstColor; - var _SrcAlphaSaturate = OpenTK.Graphics.ES30.EsVersion20.SrcAlphaSaturate; - var _Front = OpenTK.Graphics.ES30.EsVersion20.Front; - var _Back = OpenTK.Graphics.ES30.EsVersion20.Back; - var _FrontAndBack = OpenTK.Graphics.ES30.EsVersion20.FrontAndBack; - var _InvalidEnum = OpenTK.Graphics.ES30.EsVersion20.InvalidEnum; - var _InvalidValue = OpenTK.Graphics.ES30.EsVersion20.InvalidValue; - var _InvalidOperation = OpenTK.Graphics.ES30.EsVersion20.InvalidOperation; - var _OutOfMemory = OpenTK.Graphics.ES30.EsVersion20.OutOfMemory; - var _InvalidFramebufferOperation = OpenTK.Graphics.ES30.EsVersion20.InvalidFramebufferOperation; - var _Cw = OpenTK.Graphics.ES30.EsVersion20.Cw; - var _Ccw = OpenTK.Graphics.ES30.EsVersion20.Ccw; - var _LineWidth = OpenTK.Graphics.ES30.EsVersion20.LineWidth; - var _CullFace = OpenTK.Graphics.ES30.EsVersion20.CullFace; - var _CullFaceMode = OpenTK.Graphics.ES30.EsVersion20.CullFaceMode; - var _FrontFace = OpenTK.Graphics.ES30.EsVersion20.FrontFace; - var _DepthRange = OpenTK.Graphics.ES30.EsVersion20.DepthRange; - var _DepthTest = OpenTK.Graphics.ES30.EsVersion20.DepthTest; - var _DepthWritemask = OpenTK.Graphics.ES30.EsVersion20.DepthWritemask; - var _DepthClearValue = OpenTK.Graphics.ES30.EsVersion20.DepthClearValue; - var _DepthFunc = OpenTK.Graphics.ES30.EsVersion20.DepthFunc; - var _StencilTest = OpenTK.Graphics.ES30.EsVersion20.StencilTest; - var _StencilClearValue = OpenTK.Graphics.ES30.EsVersion20.StencilClearValue; - var _StencilFunc = OpenTK.Graphics.ES30.EsVersion20.StencilFunc; - var _StencilValueMask = OpenTK.Graphics.ES30.EsVersion20.StencilValueMask; - var _StencilFail = OpenTK.Graphics.ES30.EsVersion20.StencilFail; - var _StencilPassDepthFail = OpenTK.Graphics.ES30.EsVersion20.StencilPassDepthFail; - var _StencilPassDepthPass = OpenTK.Graphics.ES30.EsVersion20.StencilPassDepthPass; - var _StencilRef = OpenTK.Graphics.ES30.EsVersion20.StencilRef; - var _StencilWritemask = OpenTK.Graphics.ES30.EsVersion20.StencilWritemask; - var _Viewport = OpenTK.Graphics.ES30.EsVersion20.Viewport; - var _Dither = OpenTK.Graphics.ES30.EsVersion20.Dither; - var _Blend = OpenTK.Graphics.ES30.EsVersion20.Blend; - var _ScissorBox = OpenTK.Graphics.ES30.EsVersion20.ScissorBox; - var _ScissorTest = OpenTK.Graphics.ES30.EsVersion20.ScissorTest; - var _ColorClearValue = OpenTK.Graphics.ES30.EsVersion20.ColorClearValue; - var _ColorWritemask = OpenTK.Graphics.ES30.EsVersion20.ColorWritemask; - var _UnpackAlignment = OpenTK.Graphics.ES30.EsVersion20.UnpackAlignment; - var _PackAlignment = OpenTK.Graphics.ES30.EsVersion20.PackAlignment; - var _MaxTextureSize = OpenTK.Graphics.ES30.EsVersion20.MaxTextureSize; - var _MaxViewportDims = OpenTK.Graphics.ES30.EsVersion20.MaxViewportDims; - var _SubpixelBits = OpenTK.Graphics.ES30.EsVersion20.SubpixelBits; - var _RedBits = OpenTK.Graphics.ES30.EsVersion20.RedBits; - var _GreenBits = OpenTK.Graphics.ES30.EsVersion20.GreenBits; - var _BlueBits = OpenTK.Graphics.ES30.EsVersion20.BlueBits; - var _AlphaBits = OpenTK.Graphics.ES30.EsVersion20.AlphaBits; - var _DepthBits = OpenTK.Graphics.ES30.EsVersion20.DepthBits; - var _StencilBits = OpenTK.Graphics.ES30.EsVersion20.StencilBits; - var _Texture2D = OpenTK.Graphics.ES30.EsVersion20.Texture2D; - var _DontCare = OpenTK.Graphics.ES30.EsVersion20.DontCare; - var _Fastest = OpenTK.Graphics.ES30.EsVersion20.Fastest; - var _Nicest = OpenTK.Graphics.ES30.EsVersion20.Nicest; - var _Byte = OpenTK.Graphics.ES30.EsVersion20.Byte; - var _UnsignedByte = OpenTK.Graphics.ES30.EsVersion20.UnsignedByte; - var _Short = OpenTK.Graphics.ES30.EsVersion20.Short; - var _UnsignedShort = OpenTK.Graphics.ES30.EsVersion20.UnsignedShort; - var _Int = OpenTK.Graphics.ES30.EsVersion20.Int; - var _UnsignedInt = OpenTK.Graphics.ES30.EsVersion20.UnsignedInt; - var _Float = OpenTK.Graphics.ES30.EsVersion20.Float; - var _Fixed = OpenTK.Graphics.ES30.EsVersion20.Fixed; - var _Invert = OpenTK.Graphics.ES30.EsVersion20.Invert; - var _Texture = OpenTK.Graphics.ES30.EsVersion20.Texture; - var _DepthComponent = OpenTK.Graphics.ES30.EsVersion20.DepthComponent; - var _Alpha = OpenTK.Graphics.ES30.EsVersion20.Alpha; - var _Rgb = OpenTK.Graphics.ES30.EsVersion20.Rgb; - var _Rgba = OpenTK.Graphics.ES30.EsVersion20.Rgba; - var _Luminance = OpenTK.Graphics.ES30.EsVersion20.Luminance; - var _LuminanceAlpha = OpenTK.Graphics.ES30.EsVersion20.LuminanceAlpha; - var _Keep = OpenTK.Graphics.ES30.EsVersion20.Keep; - var _Replace = OpenTK.Graphics.ES30.EsVersion20.Replace; - var _Incr = OpenTK.Graphics.ES30.EsVersion20.Incr; - var _Decr = OpenTK.Graphics.ES30.EsVersion20.Decr; - var _Vendor = OpenTK.Graphics.ES30.EsVersion20.Vendor; - var _Renderer = OpenTK.Graphics.ES30.EsVersion20.Renderer; - var _Version = OpenTK.Graphics.ES30.EsVersion20.Version; - var _Extensions = OpenTK.Graphics.ES30.EsVersion20.Extensions; - var _Nearest = OpenTK.Graphics.ES30.EsVersion20.Nearest; - var _Linear = OpenTK.Graphics.ES30.EsVersion20.Linear; - var _NearestMipmapNearest = OpenTK.Graphics.ES30.EsVersion20.NearestMipmapNearest; - var _LinearMipmapNearest = OpenTK.Graphics.ES30.EsVersion20.LinearMipmapNearest; - var _NearestMipmapLinear = OpenTK.Graphics.ES30.EsVersion20.NearestMipmapLinear; - var _LinearMipmapLinear = OpenTK.Graphics.ES30.EsVersion20.LinearMipmapLinear; - var _TextureMagFilter = OpenTK.Graphics.ES30.EsVersion20.TextureMagFilter; - var _TextureMinFilter = OpenTK.Graphics.ES30.EsVersion20.TextureMinFilter; - var _TextureWrapS = OpenTK.Graphics.ES30.EsVersion20.TextureWrapS; - var _TextureWrapT = OpenTK.Graphics.ES30.EsVersion20.TextureWrapT; - var _Repeat = OpenTK.Graphics.ES30.EsVersion20.Repeat; - var _PolygonOffsetUnits = OpenTK.Graphics.ES30.EsVersion20.PolygonOffsetUnits; - var _ConstantColor = OpenTK.Graphics.ES30.EsVersion20.ConstantColor; - var _OneMinusConstantColor = OpenTK.Graphics.ES30.EsVersion20.OneMinusConstantColor; - var _ConstantAlpha = OpenTK.Graphics.ES30.EsVersion20.ConstantAlpha; - var _OneMinusConstantAlpha = OpenTK.Graphics.ES30.EsVersion20.OneMinusConstantAlpha; - var _BlendColor = OpenTK.Graphics.ES30.EsVersion20.BlendColor; - var _FuncAdd = OpenTK.Graphics.ES30.EsVersion20.FuncAdd; - var _BlendEquation = OpenTK.Graphics.ES30.EsVersion20.BlendEquation; - var _BlendEquationRgb = OpenTK.Graphics.ES30.EsVersion20.BlendEquationRgb; - var _FuncSubtract = OpenTK.Graphics.ES30.EsVersion20.FuncSubtract; - var _FuncReverseSubtract = OpenTK.Graphics.ES30.EsVersion20.FuncReverseSubtract; - var _UnsignedShort4444 = OpenTK.Graphics.ES30.EsVersion20.UnsignedShort4444; - var _UnsignedShort5551 = OpenTK.Graphics.ES30.EsVersion20.UnsignedShort5551; - var _PolygonOffsetFill = OpenTK.Graphics.ES30.EsVersion20.PolygonOffsetFill; - var _PolygonOffsetFactor = OpenTK.Graphics.ES30.EsVersion20.PolygonOffsetFactor; - var _Rgba4 = OpenTK.Graphics.ES30.EsVersion20.Rgba4; - var _Rgb5A1 = OpenTK.Graphics.ES30.EsVersion20.Rgb5A1; - var _TextureBinding2D = OpenTK.Graphics.ES30.EsVersion20.TextureBinding2D; - var _SampleAlphaToCoverage = OpenTK.Graphics.ES30.EsVersion20.SampleAlphaToCoverage; - var _SampleCoverage = OpenTK.Graphics.ES30.EsVersion20.SampleCoverage; - var _SampleBuffers = OpenTK.Graphics.ES30.EsVersion20.SampleBuffers; - var _Samples = OpenTK.Graphics.ES30.EsVersion20.Samples; - var _SampleCoverageValue = OpenTK.Graphics.ES30.EsVersion20.SampleCoverageValue; - var _SampleCoverageInvert = OpenTK.Graphics.ES30.EsVersion20.SampleCoverageInvert; - var _BlendDstRgb = OpenTK.Graphics.ES30.EsVersion20.BlendDstRgb; - var _BlendSrcRgb = OpenTK.Graphics.ES30.EsVersion20.BlendSrcRgb; - var _BlendDstAlpha = OpenTK.Graphics.ES30.EsVersion20.BlendDstAlpha; - var _BlendSrcAlpha = OpenTK.Graphics.ES30.EsVersion20.BlendSrcAlpha; - var _ClampToEdge = OpenTK.Graphics.ES30.EsVersion20.ClampToEdge; - var _GenerateMipmapHint = OpenTK.Graphics.ES30.EsVersion20.GenerateMipmapHint; - var _DepthComponent16 = OpenTK.Graphics.ES30.EsVersion20.DepthComponent16; - var _UnsignedShort565 = OpenTK.Graphics.ES30.EsVersion20.UnsignedShort565; - var _MirroredRepeat = OpenTK.Graphics.ES30.EsVersion20.MirroredRepeat; - var _AliasedPointSizeRange = OpenTK.Graphics.ES30.EsVersion20.AliasedPointSizeRange; - var _AliasedLineWidthRange = OpenTK.Graphics.ES30.EsVersion20.AliasedLineWidthRange; - var _Texture0 = OpenTK.Graphics.ES30.EsVersion20.Texture0; - var _Texture1 = OpenTK.Graphics.ES30.EsVersion20.Texture1; - var _Texture2 = OpenTK.Graphics.ES30.EsVersion20.Texture2; - var _Texture3 = OpenTK.Graphics.ES30.EsVersion20.Texture3; - var _Texture4 = OpenTK.Graphics.ES30.EsVersion20.Texture4; - var _Texture5 = OpenTK.Graphics.ES30.EsVersion20.Texture5; - var _Texture6 = OpenTK.Graphics.ES30.EsVersion20.Texture6; - var _Texture7 = OpenTK.Graphics.ES30.EsVersion20.Texture7; - var _Texture8 = OpenTK.Graphics.ES30.EsVersion20.Texture8; - var _Texture9 = OpenTK.Graphics.ES30.EsVersion20.Texture9; - var _Texture10 = OpenTK.Graphics.ES30.EsVersion20.Texture10; - var _Texture11 = OpenTK.Graphics.ES30.EsVersion20.Texture11; - var _Texture12 = OpenTK.Graphics.ES30.EsVersion20.Texture12; - var _Texture13 = OpenTK.Graphics.ES30.EsVersion20.Texture13; - var _Texture14 = OpenTK.Graphics.ES30.EsVersion20.Texture14; - var _Texture15 = OpenTK.Graphics.ES30.EsVersion20.Texture15; - var _Texture16 = OpenTK.Graphics.ES30.EsVersion20.Texture16; - var _Texture17 = OpenTK.Graphics.ES30.EsVersion20.Texture17; - var _Texture18 = OpenTK.Graphics.ES30.EsVersion20.Texture18; - var _Texture19 = OpenTK.Graphics.ES30.EsVersion20.Texture19; - var _Texture20 = OpenTK.Graphics.ES30.EsVersion20.Texture20; - var _Texture21 = OpenTK.Graphics.ES30.EsVersion20.Texture21; - var _Texture22 = OpenTK.Graphics.ES30.EsVersion20.Texture22; - var _Texture23 = OpenTK.Graphics.ES30.EsVersion20.Texture23; - var _Texture24 = OpenTK.Graphics.ES30.EsVersion20.Texture24; - var _Texture25 = OpenTK.Graphics.ES30.EsVersion20.Texture25; - var _Texture26 = OpenTK.Graphics.ES30.EsVersion20.Texture26; - var _Texture27 = OpenTK.Graphics.ES30.EsVersion20.Texture27; - var _Texture28 = OpenTK.Graphics.ES30.EsVersion20.Texture28; - var _Texture29 = OpenTK.Graphics.ES30.EsVersion20.Texture29; - var _Texture30 = OpenTK.Graphics.ES30.EsVersion20.Texture30; - var _Texture31 = OpenTK.Graphics.ES30.EsVersion20.Texture31; - var _ActiveTexture = OpenTK.Graphics.ES30.EsVersion20.ActiveTexture; - var _MaxRenderbufferSize = OpenTK.Graphics.ES30.EsVersion20.MaxRenderbufferSize; - var _IncrWrap = OpenTK.Graphics.ES30.EsVersion20.IncrWrap; - var _DecrWrap = OpenTK.Graphics.ES30.EsVersion20.DecrWrap; - var _TextureCubeMap = OpenTK.Graphics.ES30.EsVersion20.TextureCubeMap; - var _TextureBindingCubeMap = OpenTK.Graphics.ES30.EsVersion20.TextureBindingCubeMap; - var _TextureCubeMapPositiveX = OpenTK.Graphics.ES30.EsVersion20.TextureCubeMapPositiveX; - var _TextureCubeMapNegativeX = OpenTK.Graphics.ES30.EsVersion20.TextureCubeMapNegativeX; - var _TextureCubeMapPositiveY = OpenTK.Graphics.ES30.EsVersion20.TextureCubeMapPositiveY; - var _TextureCubeMapNegativeY = OpenTK.Graphics.ES30.EsVersion20.TextureCubeMapNegativeY; - var _TextureCubeMapPositiveZ = OpenTK.Graphics.ES30.EsVersion20.TextureCubeMapPositiveZ; - var _TextureCubeMapNegativeZ = OpenTK.Graphics.ES30.EsVersion20.TextureCubeMapNegativeZ; - var _MaxCubeMapTextureSize = OpenTK.Graphics.ES30.EsVersion20.MaxCubeMapTextureSize; - var _VertexAttribArrayEnabled = OpenTK.Graphics.ES30.EsVersion20.VertexAttribArrayEnabled; - var _VertexAttribArraySize = OpenTK.Graphics.ES30.EsVersion20.VertexAttribArraySize; - var _VertexAttribArrayStride = OpenTK.Graphics.ES30.EsVersion20.VertexAttribArrayStride; - var _VertexAttribArrayType = OpenTK.Graphics.ES30.EsVersion20.VertexAttribArrayType; - var _CurrentVertexAttrib = OpenTK.Graphics.ES30.EsVersion20.CurrentVertexAttrib; - var _VertexAttribArrayPointer = OpenTK.Graphics.ES30.EsVersion20.VertexAttribArrayPointer; - var _NumCompressedTextureFormats = OpenTK.Graphics.ES30.EsVersion20.NumCompressedTextureFormats; - var _CompressedTextureFormats = OpenTK.Graphics.ES30.EsVersion20.CompressedTextureFormats; - var _BufferSize = OpenTK.Graphics.ES30.EsVersion20.BufferSize; - var _BufferUsage = OpenTK.Graphics.ES30.EsVersion20.BufferUsage; - var _StencilBackFunc = OpenTK.Graphics.ES30.EsVersion20.StencilBackFunc; - var _StencilBackFail = OpenTK.Graphics.ES30.EsVersion20.StencilBackFail; - var _StencilBackPassDepthFail = OpenTK.Graphics.ES30.EsVersion20.StencilBackPassDepthFail; - var _StencilBackPassDepthPass = OpenTK.Graphics.ES30.EsVersion20.StencilBackPassDepthPass; - var _BlendEquationAlpha = OpenTK.Graphics.ES30.EsVersion20.BlendEquationAlpha; - var _MaxVertexAttribs = OpenTK.Graphics.ES30.EsVersion20.MaxVertexAttribs; - var _VertexAttribArrayNormalized = OpenTK.Graphics.ES30.EsVersion20.VertexAttribArrayNormalized; - var _MaxTextureImageUnits = OpenTK.Graphics.ES30.EsVersion20.MaxTextureImageUnits; - var _ArrayBuffer = OpenTK.Graphics.ES30.EsVersion20.ArrayBuffer; - var _ElementArrayBuffer = OpenTK.Graphics.ES30.EsVersion20.ElementArrayBuffer; - var _ArrayBufferBinding = OpenTK.Graphics.ES30.EsVersion20.ArrayBufferBinding; - var _ElementArrayBufferBinding = OpenTK.Graphics.ES30.EsVersion20.ElementArrayBufferBinding; - var _VertexAttribArrayBufferBinding = OpenTK.Graphics.ES30.EsVersion20.VertexAttribArrayBufferBinding; - var _StreamDraw = OpenTK.Graphics.ES30.EsVersion20.StreamDraw; - var _StaticDraw = OpenTK.Graphics.ES30.EsVersion20.StaticDraw; - var _DynamicDraw = OpenTK.Graphics.ES30.EsVersion20.DynamicDraw; - var _FragmentShader = OpenTK.Graphics.ES30.EsVersion20.FragmentShader; - var _VertexShader = OpenTK.Graphics.ES30.EsVersion20.VertexShader; - var _MaxVertexTextureImageUnits = OpenTK.Graphics.ES30.EsVersion20.MaxVertexTextureImageUnits; - var _MaxCombinedTextureImageUnits = OpenTK.Graphics.ES30.EsVersion20.MaxCombinedTextureImageUnits; - var _ShaderType = OpenTK.Graphics.ES30.EsVersion20.ShaderType; - var _FloatVec2 = OpenTK.Graphics.ES30.EsVersion20.FloatVec2; - var _FloatVec3 = OpenTK.Graphics.ES30.EsVersion20.FloatVec3; - var _FloatVec4 = OpenTK.Graphics.ES30.EsVersion20.FloatVec4; - var _IntVec2 = OpenTK.Graphics.ES30.EsVersion20.IntVec2; - var _IntVec3 = OpenTK.Graphics.ES30.EsVersion20.IntVec3; - var _IntVec4 = OpenTK.Graphics.ES30.EsVersion20.IntVec4; - var _Bool = OpenTK.Graphics.ES30.EsVersion20.Bool; - var _BoolVec2 = OpenTK.Graphics.ES30.EsVersion20.BoolVec2; - var _BoolVec3 = OpenTK.Graphics.ES30.EsVersion20.BoolVec3; - var _BoolVec4 = OpenTK.Graphics.ES30.EsVersion20.BoolVec4; - var _FloatMat2 = OpenTK.Graphics.ES30.EsVersion20.FloatMat2; - var _FloatMat3 = OpenTK.Graphics.ES30.EsVersion20.FloatMat3; - var _FloatMat4 = OpenTK.Graphics.ES30.EsVersion20.FloatMat4; - var _Sampler2D = OpenTK.Graphics.ES30.EsVersion20.Sampler2D; - var _SamplerCube = OpenTK.Graphics.ES30.EsVersion20.SamplerCube; - var _DeleteStatus = OpenTK.Graphics.ES30.EsVersion20.DeleteStatus; - var _CompileStatus = OpenTK.Graphics.ES30.EsVersion20.CompileStatus; - var _LinkStatus = OpenTK.Graphics.ES30.EsVersion20.LinkStatus; - var _ValidateStatus = OpenTK.Graphics.ES30.EsVersion20.ValidateStatus; - var _InfoLogLength = OpenTK.Graphics.ES30.EsVersion20.InfoLogLength; - var _AttachedShaders = OpenTK.Graphics.ES30.EsVersion20.AttachedShaders; - var _ActiveUniforms = OpenTK.Graphics.ES30.EsVersion20.ActiveUniforms; - var _ActiveUniformMaxLength = OpenTK.Graphics.ES30.EsVersion20.ActiveUniformMaxLength; - var _ShaderSourceLength = OpenTK.Graphics.ES30.EsVersion20.ShaderSourceLength; - var _ActiveAttributes = OpenTK.Graphics.ES30.EsVersion20.ActiveAttributes; - var _ActiveAttributeMaxLength = OpenTK.Graphics.ES30.EsVersion20.ActiveAttributeMaxLength; - var _ShadingLanguageVersion = OpenTK.Graphics.ES30.EsVersion20.ShadingLanguageVersion; - var _CurrentProgram = OpenTK.Graphics.ES30.EsVersion20.CurrentProgram; - var _ImplementationColorReadType = OpenTK.Graphics.ES30.EsVersion20.ImplementationColorReadType; - var _ImplementationColorReadFormat = OpenTK.Graphics.ES30.EsVersion20.ImplementationColorReadFormat; - var _StencilBackRef = OpenTK.Graphics.ES30.EsVersion20.StencilBackRef; - var _StencilBackValueMask = OpenTK.Graphics.ES30.EsVersion20.StencilBackValueMask; - var _StencilBackWritemask = OpenTK.Graphics.ES30.EsVersion20.StencilBackWritemask; - var _FramebufferBinding = OpenTK.Graphics.ES30.EsVersion20.FramebufferBinding; - var _RenderbufferBinding = OpenTK.Graphics.ES30.EsVersion20.RenderbufferBinding; - var _FramebufferAttachmentObjectType = OpenTK.Graphics.ES30.EsVersion20.FramebufferAttachmentObjectType; - var _FramebufferAttachmentObjectName = OpenTK.Graphics.ES30.EsVersion20.FramebufferAttachmentObjectName; - var _FramebufferAttachmentTextureLevel = OpenTK.Graphics.ES30.EsVersion20.FramebufferAttachmentTextureLevel; - var _FramebufferAttachmentTextureCubeMapFace = OpenTK.Graphics.ES30.EsVersion20.FramebufferAttachmentTextureCubeMapFace; - var _FramebufferComplete = OpenTK.Graphics.ES30.EsVersion20.FramebufferComplete; - var _FramebufferIncompleteAttachment = OpenTK.Graphics.ES30.EsVersion20.FramebufferIncompleteAttachment; - var _FramebufferIncompleteMissingAttachment = OpenTK.Graphics.ES30.EsVersion20.FramebufferIncompleteMissingAttachment; - var _FramebufferIncompleteDimensions = OpenTK.Graphics.ES30.EsVersion20.FramebufferIncompleteDimensions; - var _FramebufferUnsupported = OpenTK.Graphics.ES30.EsVersion20.FramebufferUnsupported; - var _ColorAttachment0 = OpenTK.Graphics.ES30.EsVersion20.ColorAttachment0; - var _DepthAttachment = OpenTK.Graphics.ES30.EsVersion20.DepthAttachment; - var _StencilAttachment = OpenTK.Graphics.ES30.EsVersion20.StencilAttachment; - var _Framebuffer = OpenTK.Graphics.ES30.EsVersion20.Framebuffer; - var _Renderbuffer = OpenTK.Graphics.ES30.EsVersion20.Renderbuffer; - var _RenderbufferWidth = OpenTK.Graphics.ES30.EsVersion20.RenderbufferWidth; - var _RenderbufferHeight = OpenTK.Graphics.ES30.EsVersion20.RenderbufferHeight; - var _RenderbufferInternalFormat = OpenTK.Graphics.ES30.EsVersion20.RenderbufferInternalFormat; - var _StencilIndex8 = OpenTK.Graphics.ES30.EsVersion20.StencilIndex8; - var _RenderbufferRedSize = OpenTK.Graphics.ES30.EsVersion20.RenderbufferRedSize; - var _RenderbufferGreenSize = OpenTK.Graphics.ES30.EsVersion20.RenderbufferGreenSize; - var _RenderbufferBlueSize = OpenTK.Graphics.ES30.EsVersion20.RenderbufferBlueSize; - var _RenderbufferAlphaSize = OpenTK.Graphics.ES30.EsVersion20.RenderbufferAlphaSize; - var _RenderbufferDepthSize = OpenTK.Graphics.ES30.EsVersion20.RenderbufferDepthSize; - var _RenderbufferStencilSize = OpenTK.Graphics.ES30.EsVersion20.RenderbufferStencilSize; - var _Rgb565 = OpenTK.Graphics.ES30.EsVersion20.Rgb565; - var _LowFloat = OpenTK.Graphics.ES30.EsVersion20.LowFloat; - var _MediumFloat = OpenTK.Graphics.ES30.EsVersion20.MediumFloat; - var _HighFloat = OpenTK.Graphics.ES30.EsVersion20.HighFloat; - var _LowInt = OpenTK.Graphics.ES30.EsVersion20.LowInt; - var _MediumInt = OpenTK.Graphics.ES30.EsVersion20.MediumInt; - var _HighInt = OpenTK.Graphics.ES30.EsVersion20.HighInt; - var _ShaderBinaryFormats = OpenTK.Graphics.ES30.EsVersion20.ShaderBinaryFormats; - var _NumShaderBinaryFormats = OpenTK.Graphics.ES30.EsVersion20.NumShaderBinaryFormats; - var _ShaderCompiler = OpenTK.Graphics.ES30.EsVersion20.ShaderCompiler; - var _MaxVertexUniformVectors = OpenTK.Graphics.ES30.EsVersion20.MaxVertexUniformVectors; - var _MaxVaryingVectors = OpenTK.Graphics.ES30.EsVersion20.MaxVaryingVectors; - var _MaxFragmentUniformVectors = OpenTK.Graphics.ES30.EsVersion20.MaxFragmentUniformVectors; - var _One = OpenTK.Graphics.ES30.EsVersion20.One; - var _True = OpenTK.Graphics.ES30.EsVersion20.True; -} -static void Test_EsVersion30_37814() { - var _SyncFlushCommandsBit = OpenTK.Graphics.ES30.EsVersion30.SyncFlushCommandsBit; - var _MapReadBit = OpenTK.Graphics.ES30.EsVersion30.MapReadBit; - var _MapWriteBit = OpenTK.Graphics.ES30.EsVersion30.MapWriteBit; - var _MapInvalidateRangeBit = OpenTK.Graphics.ES30.EsVersion30.MapInvalidateRangeBit; - var _MapInvalidateBufferBit = OpenTK.Graphics.ES30.EsVersion30.MapInvalidateBufferBit; - var _MapFlushExplicitBit = OpenTK.Graphics.ES30.EsVersion30.MapFlushExplicitBit; - var _MapUnsynchronizedBit = OpenTK.Graphics.ES30.EsVersion30.MapUnsynchronizedBit; - var _ReadBuffer = OpenTK.Graphics.ES30.EsVersion30.ReadBuffer; - var _UnpackRowLength = OpenTK.Graphics.ES30.EsVersion30.UnpackRowLength; - var _UnpackSkipRows = OpenTK.Graphics.ES30.EsVersion30.UnpackSkipRows; - var _UnpackSkipPixels = OpenTK.Graphics.ES30.EsVersion30.UnpackSkipPixels; - var _PackRowLength = OpenTK.Graphics.ES30.EsVersion30.PackRowLength; - var _PackSkipRows = OpenTK.Graphics.ES30.EsVersion30.PackSkipRows; - var _PackSkipPixels = OpenTK.Graphics.ES30.EsVersion30.PackSkipPixels; - var _HalfFloat = OpenTK.Graphics.ES30.EsVersion30.HalfFloat; - var _Color = OpenTK.Graphics.ES30.EsVersion30.Color; - var _Depth = OpenTK.Graphics.ES30.EsVersion30.Depth; - var _Stencil = OpenTK.Graphics.ES30.EsVersion30.Stencil; - var _Red = OpenTK.Graphics.ES30.EsVersion30.Red; - var _Green = OpenTK.Graphics.ES30.EsVersion30.Green; - var _Blue = OpenTK.Graphics.ES30.EsVersion30.Blue; - var _Min = OpenTK.Graphics.ES30.EsVersion30.Min; - var _Max = OpenTK.Graphics.ES30.EsVersion30.Max; - var _Rgb8 = OpenTK.Graphics.ES30.EsVersion30.Rgb8; - var _Rgba8 = OpenTK.Graphics.ES30.EsVersion30.Rgba8; - var _Rgb10A2 = OpenTK.Graphics.ES30.EsVersion30.Rgb10A2; - var _TextureBinding3D = OpenTK.Graphics.ES30.EsVersion30.TextureBinding3D; - var _UnpackSkipImages = OpenTK.Graphics.ES30.EsVersion30.UnpackSkipImages; - var _UnpackImageHeight = OpenTK.Graphics.ES30.EsVersion30.UnpackImageHeight; - var _Texture3D = OpenTK.Graphics.ES30.EsVersion30.Texture3D; - var _TextureWrapR = OpenTK.Graphics.ES30.EsVersion30.TextureWrapR; - var _Max3DTextureSize = OpenTK.Graphics.ES30.EsVersion30.Max3DTextureSize; - var _MaxElementsVertices = OpenTK.Graphics.ES30.EsVersion30.MaxElementsVertices; - var _MaxElementsIndices = OpenTK.Graphics.ES30.EsVersion30.MaxElementsIndices; - var _TextureMinLod = OpenTK.Graphics.ES30.EsVersion30.TextureMinLod; - var _TextureMaxLod = OpenTK.Graphics.ES30.EsVersion30.TextureMaxLod; - var _TextureBaseLevel = OpenTK.Graphics.ES30.EsVersion30.TextureBaseLevel; - var _TextureMaxLevel = OpenTK.Graphics.ES30.EsVersion30.TextureMaxLevel; - var _DepthComponent24 = OpenTK.Graphics.ES30.EsVersion30.DepthComponent24; - var _FramebufferAttachmentColorEncoding = OpenTK.Graphics.ES30.EsVersion30.FramebufferAttachmentColorEncoding; - var _FramebufferAttachmentComponentType = OpenTK.Graphics.ES30.EsVersion30.FramebufferAttachmentComponentType; - var _FramebufferAttachmentRedSize = OpenTK.Graphics.ES30.EsVersion30.FramebufferAttachmentRedSize; - var _FramebufferAttachmentGreenSize = OpenTK.Graphics.ES30.EsVersion30.FramebufferAttachmentGreenSize; - var _FramebufferAttachmentBlueSize = OpenTK.Graphics.ES30.EsVersion30.FramebufferAttachmentBlueSize; - var _FramebufferAttachmentAlphaSize = OpenTK.Graphics.ES30.EsVersion30.FramebufferAttachmentAlphaSize; - var _FramebufferAttachmentDepthSize = OpenTK.Graphics.ES30.EsVersion30.FramebufferAttachmentDepthSize; - var _FramebufferAttachmentStencilSize = OpenTK.Graphics.ES30.EsVersion30.FramebufferAttachmentStencilSize; - var _FramebufferDefault = OpenTK.Graphics.ES30.EsVersion30.FramebufferDefault; - var _FramebufferUndefined = OpenTK.Graphics.ES30.EsVersion30.FramebufferUndefined; - var _DepthStencilAttachment = OpenTK.Graphics.ES30.EsVersion30.DepthStencilAttachment; - var _MajorVersion = OpenTK.Graphics.ES30.EsVersion30.MajorVersion; - var _MinorVersion = OpenTK.Graphics.ES30.EsVersion30.MinorVersion; - var _NumExtensions = OpenTK.Graphics.ES30.EsVersion30.NumExtensions; - var _Rg = OpenTK.Graphics.ES30.EsVersion30.Rg; - var _RgInteger = OpenTK.Graphics.ES30.EsVersion30.RgInteger; - var _R8 = OpenTK.Graphics.ES30.EsVersion30.R8; - var _Rg8 = OpenTK.Graphics.ES30.EsVersion30.Rg8; - var _R16f = OpenTK.Graphics.ES30.EsVersion30.R16f; - var _R32f = OpenTK.Graphics.ES30.EsVersion30.R32f; - var _Rg16f = OpenTK.Graphics.ES30.EsVersion30.Rg16f; - var _Rg32f = OpenTK.Graphics.ES30.EsVersion30.Rg32f; - var _R8i = OpenTK.Graphics.ES30.EsVersion30.R8i; - var _R8ui = OpenTK.Graphics.ES30.EsVersion30.R8ui; - var _R16i = OpenTK.Graphics.ES30.EsVersion30.R16i; - var _R16ui = OpenTK.Graphics.ES30.EsVersion30.R16ui; - var _R32i = OpenTK.Graphics.ES30.EsVersion30.R32i; - var _R32ui = OpenTK.Graphics.ES30.EsVersion30.R32ui; - var _Rg8i = OpenTK.Graphics.ES30.EsVersion30.Rg8i; - var _Rg8ui = OpenTK.Graphics.ES30.EsVersion30.Rg8ui; - var _Rg16i = OpenTK.Graphics.ES30.EsVersion30.Rg16i; - var _Rg16ui = OpenTK.Graphics.ES30.EsVersion30.Rg16ui; - var _Rg32i = OpenTK.Graphics.ES30.EsVersion30.Rg32i; - var _Rg32ui = OpenTK.Graphics.ES30.EsVersion30.Rg32ui; - var _ProgramBinaryRetrievableHint = OpenTK.Graphics.ES30.EsVersion30.ProgramBinaryRetrievableHint; - var _TextureImmutableLevels = OpenTK.Graphics.ES30.EsVersion30.TextureImmutableLevels; - var _UnsignedInt2101010Rev = OpenTK.Graphics.ES30.EsVersion30.UnsignedInt2101010Rev; - var _DepthStencil = OpenTK.Graphics.ES30.EsVersion30.DepthStencil; - var _UnsignedInt248 = OpenTK.Graphics.ES30.EsVersion30.UnsignedInt248; - var _MaxTextureLodBias = OpenTK.Graphics.ES30.EsVersion30.MaxTextureLodBias; - var _VertexArrayBinding = OpenTK.Graphics.ES30.EsVersion30.VertexArrayBinding; - var _ProgramBinaryLength = OpenTK.Graphics.ES30.EsVersion30.ProgramBinaryLength; - var _NumProgramBinaryFormats = OpenTK.Graphics.ES30.EsVersion30.NumProgramBinaryFormats; - var _ProgramBinaryFormats = OpenTK.Graphics.ES30.EsVersion30.ProgramBinaryFormats; - var _Rgba32f = OpenTK.Graphics.ES30.EsVersion30.Rgba32f; - var _Rgb32f = OpenTK.Graphics.ES30.EsVersion30.Rgb32f; - var _Rgba16f = OpenTK.Graphics.ES30.EsVersion30.Rgba16f; - var _Rgb16f = OpenTK.Graphics.ES30.EsVersion30.Rgb16f; - var _MaxDrawBuffers = OpenTK.Graphics.ES30.EsVersion30.MaxDrawBuffers; - var _DrawBuffer0 = OpenTK.Graphics.ES30.EsVersion30.DrawBuffer0; - var _DrawBuffer1 = OpenTK.Graphics.ES30.EsVersion30.DrawBuffer1; - var _DrawBuffer2 = OpenTK.Graphics.ES30.EsVersion30.DrawBuffer2; - var _DrawBuffer3 = OpenTK.Graphics.ES30.EsVersion30.DrawBuffer3; - var _DrawBuffer4 = OpenTK.Graphics.ES30.EsVersion30.DrawBuffer4; - var _DrawBuffer5 = OpenTK.Graphics.ES30.EsVersion30.DrawBuffer5; - var _DrawBuffer6 = OpenTK.Graphics.ES30.EsVersion30.DrawBuffer6; - var _DrawBuffer7 = OpenTK.Graphics.ES30.EsVersion30.DrawBuffer7; - var _DrawBuffer8 = OpenTK.Graphics.ES30.EsVersion30.DrawBuffer8; - var _DrawBuffer9 = OpenTK.Graphics.ES30.EsVersion30.DrawBuffer9; - var _DrawBuffer10 = OpenTK.Graphics.ES30.EsVersion30.DrawBuffer10; - var _DrawBuffer11 = OpenTK.Graphics.ES30.EsVersion30.DrawBuffer11; - var _DrawBuffer12 = OpenTK.Graphics.ES30.EsVersion30.DrawBuffer12; - var _DrawBuffer13 = OpenTK.Graphics.ES30.EsVersion30.DrawBuffer13; - var _DrawBuffer14 = OpenTK.Graphics.ES30.EsVersion30.DrawBuffer14; - var _DrawBuffer15 = OpenTK.Graphics.ES30.EsVersion30.DrawBuffer15; - var _TextureCompareMode = OpenTK.Graphics.ES30.EsVersion30.TextureCompareMode; - var _TextureCompareFunc = OpenTK.Graphics.ES30.EsVersion30.TextureCompareFunc; - var _CompareRefToTexture = OpenTK.Graphics.ES30.EsVersion30.CompareRefToTexture; - var _CurrentQuery = OpenTK.Graphics.ES30.EsVersion30.CurrentQuery; - var _QueryResult = OpenTK.Graphics.ES30.EsVersion30.QueryResult; - var _QueryResultAvailable = OpenTK.Graphics.ES30.EsVersion30.QueryResultAvailable; - var _BufferMapped = OpenTK.Graphics.ES30.EsVersion30.BufferMapped; - var _BufferMapPointer = OpenTK.Graphics.ES30.EsVersion30.BufferMapPointer; - var _StreamRead = OpenTK.Graphics.ES30.EsVersion30.StreamRead; - var _StreamCopy = OpenTK.Graphics.ES30.EsVersion30.StreamCopy; - var _StaticRead = OpenTK.Graphics.ES30.EsVersion30.StaticRead; - var _StaticCopy = OpenTK.Graphics.ES30.EsVersion30.StaticCopy; - var _DynamicRead = OpenTK.Graphics.ES30.EsVersion30.DynamicRead; - var _DynamicCopy = OpenTK.Graphics.ES30.EsVersion30.DynamicCopy; - var _PixelPackBuffer = OpenTK.Graphics.ES30.EsVersion30.PixelPackBuffer; - var _PixelUnpackBuffer = OpenTK.Graphics.ES30.EsVersion30.PixelUnpackBuffer; - var _PixelPackBufferBinding = OpenTK.Graphics.ES30.EsVersion30.PixelPackBufferBinding; - var _PixelUnpackBufferBinding = OpenTK.Graphics.ES30.EsVersion30.PixelUnpackBufferBinding; - var _Depth24Stencil8 = OpenTK.Graphics.ES30.EsVersion30.Depth24Stencil8; - var _VertexAttribArrayInteger = OpenTK.Graphics.ES30.EsVersion30.VertexAttribArrayInteger; - var _VertexAttribArrayDivisor = OpenTK.Graphics.ES30.EsVersion30.VertexAttribArrayDivisor; - var _MaxArrayTextureLayers = OpenTK.Graphics.ES30.EsVersion30.MaxArrayTextureLayers; - var _MinProgramTexelOffset = OpenTK.Graphics.ES30.EsVersion30.MinProgramTexelOffset; - var _MaxProgramTexelOffset = OpenTK.Graphics.ES30.EsVersion30.MaxProgramTexelOffset; - var _SamplerBinding = OpenTK.Graphics.ES30.EsVersion30.SamplerBinding; - var _UniformBuffer = OpenTK.Graphics.ES30.EsVersion30.UniformBuffer; - var _UniformBufferBinding = OpenTK.Graphics.ES30.EsVersion30.UniformBufferBinding; - var _UniformBufferStart = OpenTK.Graphics.ES30.EsVersion30.UniformBufferStart; - var _UniformBufferSize = OpenTK.Graphics.ES30.EsVersion30.UniformBufferSize; - var _MaxVertexUniformBlocks = OpenTK.Graphics.ES30.EsVersion30.MaxVertexUniformBlocks; - var _MaxFragmentUniformBlocks = OpenTK.Graphics.ES30.EsVersion30.MaxFragmentUniformBlocks; - var _MaxCombinedUniformBlocks = OpenTK.Graphics.ES30.EsVersion30.MaxCombinedUniformBlocks; - var _MaxUniformBufferBindings = OpenTK.Graphics.ES30.EsVersion30.MaxUniformBufferBindings; - var _MaxUniformBlockSize = OpenTK.Graphics.ES30.EsVersion30.MaxUniformBlockSize; - var _MaxCombinedVertexUniformComponents = OpenTK.Graphics.ES30.EsVersion30.MaxCombinedVertexUniformComponents; - var _MaxCombinedFragmentUniformComponents = OpenTK.Graphics.ES30.EsVersion30.MaxCombinedFragmentUniformComponents; - var _UniformBufferOffsetAlignment = OpenTK.Graphics.ES30.EsVersion30.UniformBufferOffsetAlignment; - var _ActiveUniformBlockMaxNameLength = OpenTK.Graphics.ES30.EsVersion30.ActiveUniformBlockMaxNameLength; - var _ActiveUniformBlocks = OpenTK.Graphics.ES30.EsVersion30.ActiveUniformBlocks; - var _UniformType = OpenTK.Graphics.ES30.EsVersion30.UniformType; - var _UniformSize = OpenTK.Graphics.ES30.EsVersion30.UniformSize; - var _UniformNameLength = OpenTK.Graphics.ES30.EsVersion30.UniformNameLength; - var _UniformBlockIndex = OpenTK.Graphics.ES30.EsVersion30.UniformBlockIndex; - var _UniformOffset = OpenTK.Graphics.ES30.EsVersion30.UniformOffset; - var _UniformArrayStride = OpenTK.Graphics.ES30.EsVersion30.UniformArrayStride; - var _UniformMatrixStride = OpenTK.Graphics.ES30.EsVersion30.UniformMatrixStride; - var _UniformIsRowMajor = OpenTK.Graphics.ES30.EsVersion30.UniformIsRowMajor; - var _UniformBlockBinding = OpenTK.Graphics.ES30.EsVersion30.UniformBlockBinding; - var _UniformBlockDataSize = OpenTK.Graphics.ES30.EsVersion30.UniformBlockDataSize; - var _UniformBlockNameLength = OpenTK.Graphics.ES30.EsVersion30.UniformBlockNameLength; - var _UniformBlockActiveUniforms = OpenTK.Graphics.ES30.EsVersion30.UniformBlockActiveUniforms; - var _UniformBlockActiveUniformIndices = OpenTK.Graphics.ES30.EsVersion30.UniformBlockActiveUniformIndices; - var _UniformBlockReferencedByVertexShader = OpenTK.Graphics.ES30.EsVersion30.UniformBlockReferencedByVertexShader; - var _UniformBlockReferencedByFragmentShader = OpenTK.Graphics.ES30.EsVersion30.UniformBlockReferencedByFragmentShader; - var _MaxFragmentUniformComponents = OpenTK.Graphics.ES30.EsVersion30.MaxFragmentUniformComponents; - var _MaxVertexUniformComponents = OpenTK.Graphics.ES30.EsVersion30.MaxVertexUniformComponents; - var _MaxVaryingComponents = OpenTK.Graphics.ES30.EsVersion30.MaxVaryingComponents; - var _Sampler3D = OpenTK.Graphics.ES30.EsVersion30.Sampler3D; - var _Sampler2DShadow = OpenTK.Graphics.ES30.EsVersion30.Sampler2DShadow; - var _FloatMat2x3 = OpenTK.Graphics.ES30.EsVersion30.FloatMat2x3; - var _FloatMat2x4 = OpenTK.Graphics.ES30.EsVersion30.FloatMat2x4; - var _FloatMat3x2 = OpenTK.Graphics.ES30.EsVersion30.FloatMat3x2; - var _FloatMat3x4 = OpenTK.Graphics.ES30.EsVersion30.FloatMat3x4; - var _FloatMat4x2 = OpenTK.Graphics.ES30.EsVersion30.FloatMat4x2; - var _FloatMat4x3 = OpenTK.Graphics.ES30.EsVersion30.FloatMat4x3; - var _FragmentShaderDerivativeHint = OpenTK.Graphics.ES30.EsVersion30.FragmentShaderDerivativeHint; - var _UnsignedNormalized = OpenTK.Graphics.ES30.EsVersion30.UnsignedNormalized; - var _Texture2DArray = OpenTK.Graphics.ES30.EsVersion30.Texture2DArray; - var _TextureBinding2DArray = OpenTK.Graphics.ES30.EsVersion30.TextureBinding2DArray; - var _AnySamplesPassed = OpenTK.Graphics.ES30.EsVersion30.AnySamplesPassed; - var _R11fG11fB10f = OpenTK.Graphics.ES30.EsVersion30.R11fG11fB10f; - var _UnsignedInt10F11F11FRev = OpenTK.Graphics.ES30.EsVersion30.UnsignedInt10F11F11FRev; - var _Rgb9E5 = OpenTK.Graphics.ES30.EsVersion30.Rgb9E5; - var _UnsignedInt5999Rev = OpenTK.Graphics.ES30.EsVersion30.UnsignedInt5999Rev; - var _Srgb = OpenTK.Graphics.ES30.EsVersion30.Srgb; - var _Srgb8 = OpenTK.Graphics.ES30.EsVersion30.Srgb8; - var _Srgb8Alpha8 = OpenTK.Graphics.ES30.EsVersion30.Srgb8Alpha8; - var _TransformFeedbackVaryingMaxLength = OpenTK.Graphics.ES30.EsVersion30.TransformFeedbackVaryingMaxLength; - var _TransformFeedbackBufferMode = OpenTK.Graphics.ES30.EsVersion30.TransformFeedbackBufferMode; - var _MaxTransformFeedbackSeparateComponents = OpenTK.Graphics.ES30.EsVersion30.MaxTransformFeedbackSeparateComponents; - var _TransformFeedbackVaryings = OpenTK.Graphics.ES30.EsVersion30.TransformFeedbackVaryings; - var _TransformFeedbackBufferStart = OpenTK.Graphics.ES30.EsVersion30.TransformFeedbackBufferStart; - var _TransformFeedbackBufferSize = OpenTK.Graphics.ES30.EsVersion30.TransformFeedbackBufferSize; - var _TransformFeedbackPrimitivesWritten = OpenTK.Graphics.ES30.EsVersion30.TransformFeedbackPrimitivesWritten; - var _RasterizerDiscard = OpenTK.Graphics.ES30.EsVersion30.RasterizerDiscard; - var _MaxTransformFeedbackInterleavedComponents = OpenTK.Graphics.ES30.EsVersion30.MaxTransformFeedbackInterleavedComponents; - var _MaxTransformFeedbackSeparateAttribs = OpenTK.Graphics.ES30.EsVersion30.MaxTransformFeedbackSeparateAttribs; - var _InterleavedAttribs = OpenTK.Graphics.ES30.EsVersion30.InterleavedAttribs; - var _SeparateAttribs = OpenTK.Graphics.ES30.EsVersion30.SeparateAttribs; - var _TransformFeedbackBuffer = OpenTK.Graphics.ES30.EsVersion30.TransformFeedbackBuffer; - var _TransformFeedbackBufferBinding = OpenTK.Graphics.ES30.EsVersion30.TransformFeedbackBufferBinding; - var _DrawFramebufferBinding = OpenTK.Graphics.ES30.EsVersion30.DrawFramebufferBinding; - var _ReadFramebuffer = OpenTK.Graphics.ES30.EsVersion30.ReadFramebuffer; - var _DrawFramebuffer = OpenTK.Graphics.ES30.EsVersion30.DrawFramebuffer; - var _ReadFramebufferBinding = OpenTK.Graphics.ES30.EsVersion30.ReadFramebufferBinding; - var _RenderbufferSamples = OpenTK.Graphics.ES30.EsVersion30.RenderbufferSamples; - var _DepthComponent32f = OpenTK.Graphics.ES30.EsVersion30.DepthComponent32f; - var _Depth32fStencil8 = OpenTK.Graphics.ES30.EsVersion30.Depth32fStencil8; - var _FramebufferAttachmentTextureLayer = OpenTK.Graphics.ES30.EsVersion30.FramebufferAttachmentTextureLayer; - var _MaxColorAttachments = OpenTK.Graphics.ES30.EsVersion30.MaxColorAttachments; - var _ColorAttachment1 = OpenTK.Graphics.ES30.EsVersion30.ColorAttachment1; - var _ColorAttachment2 = OpenTK.Graphics.ES30.EsVersion30.ColorAttachment2; - var _ColorAttachment3 = OpenTK.Graphics.ES30.EsVersion30.ColorAttachment3; - var _ColorAttachment4 = OpenTK.Graphics.ES30.EsVersion30.ColorAttachment4; - var _ColorAttachment5 = OpenTK.Graphics.ES30.EsVersion30.ColorAttachment5; - var _ColorAttachment6 = OpenTK.Graphics.ES30.EsVersion30.ColorAttachment6; - var _ColorAttachment7 = OpenTK.Graphics.ES30.EsVersion30.ColorAttachment7; - var _ColorAttachment8 = OpenTK.Graphics.ES30.EsVersion30.ColorAttachment8; - var _ColorAttachment9 = OpenTK.Graphics.ES30.EsVersion30.ColorAttachment9; - var _ColorAttachment10 = OpenTK.Graphics.ES30.EsVersion30.ColorAttachment10; - var _ColorAttachment11 = OpenTK.Graphics.ES30.EsVersion30.ColorAttachment11; - var _ColorAttachment12 = OpenTK.Graphics.ES30.EsVersion30.ColorAttachment12; - var _ColorAttachment13 = OpenTK.Graphics.ES30.EsVersion30.ColorAttachment13; - var _ColorAttachment14 = OpenTK.Graphics.ES30.EsVersion30.ColorAttachment14; - var _ColorAttachment15 = OpenTK.Graphics.ES30.EsVersion30.ColorAttachment15; - var _FramebufferIncompleteMultisample = OpenTK.Graphics.ES30.EsVersion30.FramebufferIncompleteMultisample; - var _MaxSamples = OpenTK.Graphics.ES30.EsVersion30.MaxSamples; - var _PrimitiveRestartFixedIndex = OpenTK.Graphics.ES30.EsVersion30.PrimitiveRestartFixedIndex; - var _AnySamplesPassedConservative = OpenTK.Graphics.ES30.EsVersion30.AnySamplesPassedConservative; - var _MaxElementIndex = OpenTK.Graphics.ES30.EsVersion30.MaxElementIndex; - var _Rgba32ui = OpenTK.Graphics.ES30.EsVersion30.Rgba32ui; - var _Rgb32ui = OpenTK.Graphics.ES30.EsVersion30.Rgb32ui; - var _Rgba16ui = OpenTK.Graphics.ES30.EsVersion30.Rgba16ui; - var _Rgb16ui = OpenTK.Graphics.ES30.EsVersion30.Rgb16ui; - var _Rgba8ui = OpenTK.Graphics.ES30.EsVersion30.Rgba8ui; - var _Rgb8ui = OpenTK.Graphics.ES30.EsVersion30.Rgb8ui; - var _Rgba32i = OpenTK.Graphics.ES30.EsVersion30.Rgba32i; - var _Rgb32i = OpenTK.Graphics.ES30.EsVersion30.Rgb32i; - var _Rgba16i = OpenTK.Graphics.ES30.EsVersion30.Rgba16i; - var _Rgb16i = OpenTK.Graphics.ES30.EsVersion30.Rgb16i; - var _Rgba8i = OpenTK.Graphics.ES30.EsVersion30.Rgba8i; - var _Rgb8i = OpenTK.Graphics.ES30.EsVersion30.Rgb8i; - var _RedInteger = OpenTK.Graphics.ES30.EsVersion30.RedInteger; - var _RgbInteger = OpenTK.Graphics.ES30.EsVersion30.RgbInteger; - var _RgbaInteger = OpenTK.Graphics.ES30.EsVersion30.RgbaInteger; - var _Int2101010Rev = OpenTK.Graphics.ES30.EsVersion30.Int2101010Rev; - var _Float32UnsignedInt248Rev = OpenTK.Graphics.ES30.EsVersion30.Float32UnsignedInt248Rev; - var _Sampler2DArray = OpenTK.Graphics.ES30.EsVersion30.Sampler2DArray; - var _Sampler2DArrayShadow = OpenTK.Graphics.ES30.EsVersion30.Sampler2DArrayShadow; - var _SamplerCubeShadow = OpenTK.Graphics.ES30.EsVersion30.SamplerCubeShadow; - var _UnsignedIntVec2 = OpenTK.Graphics.ES30.EsVersion30.UnsignedIntVec2; - var _UnsignedIntVec3 = OpenTK.Graphics.ES30.EsVersion30.UnsignedIntVec3; - var _UnsignedIntVec4 = OpenTK.Graphics.ES30.EsVersion30.UnsignedIntVec4; - var _IntSampler2D = OpenTK.Graphics.ES30.EsVersion30.IntSampler2D; - var _IntSampler3D = OpenTK.Graphics.ES30.EsVersion30.IntSampler3D; - var _IntSamplerCube = OpenTK.Graphics.ES30.EsVersion30.IntSamplerCube; - var _IntSampler2DArray = OpenTK.Graphics.ES30.EsVersion30.IntSampler2DArray; - var _UnsignedIntSampler2D = OpenTK.Graphics.ES30.EsVersion30.UnsignedIntSampler2D; - var _UnsignedIntSampler3D = OpenTK.Graphics.ES30.EsVersion30.UnsignedIntSampler3D; - var _UnsignedIntSamplerCube = OpenTK.Graphics.ES30.EsVersion30.UnsignedIntSamplerCube; - var _UnsignedIntSampler2DArray = OpenTK.Graphics.ES30.EsVersion30.UnsignedIntSampler2DArray; - var _TransformFeedback = OpenTK.Graphics.ES30.EsVersion30.TransformFeedback; - var _TransformFeedbackPaused = OpenTK.Graphics.ES30.EsVersion30.TransformFeedbackPaused; - var _TransformFeedbackActive = OpenTK.Graphics.ES30.EsVersion30.TransformFeedbackActive; - var _TransformFeedbackBinding = OpenTK.Graphics.ES30.EsVersion30.TransformFeedbackBinding; - var _TextureSwizzleR = OpenTK.Graphics.ES30.EsVersion30.TextureSwizzleR; - var _TextureSwizzleG = OpenTK.Graphics.ES30.EsVersion30.TextureSwizzleG; - var _TextureSwizzleB = OpenTK.Graphics.ES30.EsVersion30.TextureSwizzleB; - var _TextureSwizzleA = OpenTK.Graphics.ES30.EsVersion30.TextureSwizzleA; - var _CopyReadBuffer = OpenTK.Graphics.ES30.EsVersion30.CopyReadBuffer; - var _CopyReadBufferBinding = OpenTK.Graphics.ES30.EsVersion30.CopyReadBufferBinding; - var _CopyWriteBuffer = OpenTK.Graphics.ES30.EsVersion30.CopyWriteBuffer; - var _CopyWriteBufferBinding = OpenTK.Graphics.ES30.EsVersion30.CopyWriteBufferBinding; - var _R8Snorm = OpenTK.Graphics.ES30.EsVersion30.R8Snorm; - var _Rg8Snorm = OpenTK.Graphics.ES30.EsVersion30.Rg8Snorm; - var _Rgb8Snorm = OpenTK.Graphics.ES30.EsVersion30.Rgb8Snorm; - var _Rgba8Snorm = OpenTK.Graphics.ES30.EsVersion30.Rgba8Snorm; - var _SignedNormalized = OpenTK.Graphics.ES30.EsVersion30.SignedNormalized; - var _Rgb10A2ui = OpenTK.Graphics.ES30.EsVersion30.Rgb10A2ui; - var _MaxServerWaitTimeout = OpenTK.Graphics.ES30.EsVersion30.MaxServerWaitTimeout; - var _ObjectType = OpenTK.Graphics.ES30.EsVersion30.ObjectType; - var _SyncCondition = OpenTK.Graphics.ES30.EsVersion30.SyncCondition; - var _SyncStatus = OpenTK.Graphics.ES30.EsVersion30.SyncStatus; - var _SyncFlags = OpenTK.Graphics.ES30.EsVersion30.SyncFlags; - var _SyncFence = OpenTK.Graphics.ES30.EsVersion30.SyncFence; - var _SyncGpuCommandsComplete = OpenTK.Graphics.ES30.EsVersion30.SyncGpuCommandsComplete; - var _Unsignaled = OpenTK.Graphics.ES30.EsVersion30.Unsignaled; - var _Signaled = OpenTK.Graphics.ES30.EsVersion30.Signaled; - var _AlreadySignaled = OpenTK.Graphics.ES30.EsVersion30.AlreadySignaled; - var _TimeoutExpired = OpenTK.Graphics.ES30.EsVersion30.TimeoutExpired; - var _ConditionSatisfied = OpenTK.Graphics.ES30.EsVersion30.ConditionSatisfied; - var _WaitFailed = OpenTK.Graphics.ES30.EsVersion30.WaitFailed; - var _BufferAccessFlags = OpenTK.Graphics.ES30.EsVersion30.BufferAccessFlags; - var _BufferMapLength = OpenTK.Graphics.ES30.EsVersion30.BufferMapLength; - var _BufferMapOffset = OpenTK.Graphics.ES30.EsVersion30.BufferMapOffset; - var _MaxVertexOutputComponents = OpenTK.Graphics.ES30.EsVersion30.MaxVertexOutputComponents; - var _MaxFragmentInputComponents = OpenTK.Graphics.ES30.EsVersion30.MaxFragmentInputComponents; - var _TextureImmutableFormat = OpenTK.Graphics.ES30.EsVersion30.TextureImmutableFormat; - var _CompressedR11Eac = OpenTK.Graphics.ES30.EsVersion30.CompressedR11Eac; - var _CompressedSignedR11Eac = OpenTK.Graphics.ES30.EsVersion30.CompressedSignedR11Eac; - var _CompressedRg11Eac = OpenTK.Graphics.ES30.EsVersion30.CompressedRg11Eac; - var _CompressedSignedRg11Eac = OpenTK.Graphics.ES30.EsVersion30.CompressedSignedRg11Eac; - var _CompressedRgb8Etc2 = OpenTK.Graphics.ES30.EsVersion30.CompressedRgb8Etc2; - var _CompressedSrgb8Etc2 = OpenTK.Graphics.ES30.EsVersion30.CompressedSrgb8Etc2; - var _CompressedRgb8PunchthroughAlpha1Etc2 = OpenTK.Graphics.ES30.EsVersion30.CompressedRgb8PunchthroughAlpha1Etc2; - var _CompressedSrgb8PunchthroughAlpha1Etc2 = OpenTK.Graphics.ES30.EsVersion30.CompressedSrgb8PunchthroughAlpha1Etc2; - var _CompressedRgba8Etc2Eac = OpenTK.Graphics.ES30.EsVersion30.CompressedRgba8Etc2Eac; - var _CompressedSrgb8Alpha8Etc2Eac = OpenTK.Graphics.ES30.EsVersion30.CompressedSrgb8Alpha8Etc2Eac; - var _NumSampleCounts = OpenTK.Graphics.ES30.EsVersion30.NumSampleCounts; - var _InvalidIndex = OpenTK.Graphics.ES30.EsVersion30.InvalidIndex; - var _TimeoutIgnored = OpenTK.Graphics.ES30.EsVersion30.TimeoutIgnored; -} -static void Test_ExtBlendMinmax_37815() { - var _FuncAddExt = OpenTK.Graphics.ES30.ExtBlendMinmax.FuncAddExt; - var _MinExt = OpenTK.Graphics.ES30.ExtBlendMinmax.MinExt; - var _MaxExt = OpenTK.Graphics.ES30.ExtBlendMinmax.MaxExt; - var _BlendEquationExt = OpenTK.Graphics.ES30.ExtBlendMinmax.BlendEquationExt; -} -static void Test_ExtColorBufferHalfFloat_37816() { - var _FramebufferAttachmentComponentTypeExt = OpenTK.Graphics.ES30.ExtColorBufferHalfFloat.FramebufferAttachmentComponentTypeExt; - var _R16fExt = OpenTK.Graphics.ES30.ExtColorBufferHalfFloat.R16fExt; - var _Rg16fExt = OpenTK.Graphics.ES30.ExtColorBufferHalfFloat.Rg16fExt; - var _Rgba16fExt = OpenTK.Graphics.ES30.ExtColorBufferHalfFloat.Rgba16fExt; - var _Rgb16fExt = OpenTK.Graphics.ES30.ExtColorBufferHalfFloat.Rgb16fExt; - var _UnsignedNormalizedExt = OpenTK.Graphics.ES30.ExtColorBufferHalfFloat.UnsignedNormalizedExt; -} -static void Test_ExtCopyImage_37817() { -} -static void Test_ExtDebugLabel_37818() { - var _Sampler = OpenTK.Graphics.ES30.ExtDebugLabel.Sampler; - var _ProgramPipelineObjectExt = OpenTK.Graphics.ES30.ExtDebugLabel.ProgramPipelineObjectExt; - var _ProgramObjectExt = OpenTK.Graphics.ES30.ExtDebugLabel.ProgramObjectExt; - var _ShaderObjectExt = OpenTK.Graphics.ES30.ExtDebugLabel.ShaderObjectExt; - var _TransformFeedback = OpenTK.Graphics.ES30.ExtDebugLabel.TransformFeedback; - var _BufferObjectExt = OpenTK.Graphics.ES30.ExtDebugLabel.BufferObjectExt; - var _QueryObjectExt = OpenTK.Graphics.ES30.ExtDebugLabel.QueryObjectExt; - var _VertexArrayObjectExt = OpenTK.Graphics.ES30.ExtDebugLabel.VertexArrayObjectExt; -} -static void Test_ExtDebugMarker_37819() { -} -static void Test_ExtDiscardFramebuffer_37820() { - var _ColorExt = OpenTK.Graphics.ES30.ExtDiscardFramebuffer.ColorExt; - var _DepthExt = OpenTK.Graphics.ES30.ExtDiscardFramebuffer.DepthExt; - var _StencilExt = OpenTK.Graphics.ES30.ExtDiscardFramebuffer.StencilExt; -} -static void Test_ExtDisjointTimerQuery_37821() { - var _QueryCounterBitsExt = OpenTK.Graphics.ES30.ExtDisjointTimerQuery.QueryCounterBitsExt; - var _CurrentQueryExt = OpenTK.Graphics.ES30.ExtDisjointTimerQuery.CurrentQueryExt; - var _QueryResultExt = OpenTK.Graphics.ES30.ExtDisjointTimerQuery.QueryResultExt; - var _QueryResultAvailableExt = OpenTK.Graphics.ES30.ExtDisjointTimerQuery.QueryResultAvailableExt; - var _TimeElapsedExt = OpenTK.Graphics.ES30.ExtDisjointTimerQuery.TimeElapsedExt; - var _TimestampExt = OpenTK.Graphics.ES30.ExtDisjointTimerQuery.TimestampExt; - var _GpuDisjointExt = OpenTK.Graphics.ES30.ExtDisjointTimerQuery.GpuDisjointExt; -} -static void Test_ExtDrawBuffers_37822() { - var _MaxDrawBuffersExt = OpenTK.Graphics.ES30.ExtDrawBuffers.MaxDrawBuffersExt; - var _DrawBuffer0Ext = OpenTK.Graphics.ES30.ExtDrawBuffers.DrawBuffer0Ext; - var _DrawBuffer1Ext = OpenTK.Graphics.ES30.ExtDrawBuffers.DrawBuffer1Ext; - var _DrawBuffer2Ext = OpenTK.Graphics.ES30.ExtDrawBuffers.DrawBuffer2Ext; - var _DrawBuffer3Ext = OpenTK.Graphics.ES30.ExtDrawBuffers.DrawBuffer3Ext; - var _DrawBuffer4Ext = OpenTK.Graphics.ES30.ExtDrawBuffers.DrawBuffer4Ext; - var _DrawBuffer5Ext = OpenTK.Graphics.ES30.ExtDrawBuffers.DrawBuffer5Ext; - var _DrawBuffer6Ext = OpenTK.Graphics.ES30.ExtDrawBuffers.DrawBuffer6Ext; - var _DrawBuffer7Ext = OpenTK.Graphics.ES30.ExtDrawBuffers.DrawBuffer7Ext; - var _DrawBuffer8Ext = OpenTK.Graphics.ES30.ExtDrawBuffers.DrawBuffer8Ext; - var _DrawBuffer9Ext = OpenTK.Graphics.ES30.ExtDrawBuffers.DrawBuffer9Ext; - var _DrawBuffer10Ext = OpenTK.Graphics.ES30.ExtDrawBuffers.DrawBuffer10Ext; - var _DrawBuffer11Ext = OpenTK.Graphics.ES30.ExtDrawBuffers.DrawBuffer11Ext; - var _DrawBuffer12Ext = OpenTK.Graphics.ES30.ExtDrawBuffers.DrawBuffer12Ext; - var _DrawBuffer13Ext = OpenTK.Graphics.ES30.ExtDrawBuffers.DrawBuffer13Ext; - var _DrawBuffer14Ext = OpenTK.Graphics.ES30.ExtDrawBuffers.DrawBuffer14Ext; - var _DrawBuffer15Ext = OpenTK.Graphics.ES30.ExtDrawBuffers.DrawBuffer15Ext; - var _MaxColorAttachmentsExt = OpenTK.Graphics.ES30.ExtDrawBuffers.MaxColorAttachmentsExt; - var _ColorAttachment0Ext = OpenTK.Graphics.ES30.ExtDrawBuffers.ColorAttachment0Ext; - var _ColorAttachment1Ext = OpenTK.Graphics.ES30.ExtDrawBuffers.ColorAttachment1Ext; - var _ColorAttachment2Ext = OpenTK.Graphics.ES30.ExtDrawBuffers.ColorAttachment2Ext; - var _ColorAttachment3Ext = OpenTK.Graphics.ES30.ExtDrawBuffers.ColorAttachment3Ext; - var _ColorAttachment4Ext = OpenTK.Graphics.ES30.ExtDrawBuffers.ColorAttachment4Ext; - var _ColorAttachment5Ext = OpenTK.Graphics.ES30.ExtDrawBuffers.ColorAttachment5Ext; - var _ColorAttachment6Ext = OpenTK.Graphics.ES30.ExtDrawBuffers.ColorAttachment6Ext; - var _ColorAttachment7Ext = OpenTK.Graphics.ES30.ExtDrawBuffers.ColorAttachment7Ext; - var _ColorAttachment8Ext = OpenTK.Graphics.ES30.ExtDrawBuffers.ColorAttachment8Ext; - var _ColorAttachment9Ext = OpenTK.Graphics.ES30.ExtDrawBuffers.ColorAttachment9Ext; - var _ColorAttachment10Ext = OpenTK.Graphics.ES30.ExtDrawBuffers.ColorAttachment10Ext; - var _ColorAttachment11Ext = OpenTK.Graphics.ES30.ExtDrawBuffers.ColorAttachment11Ext; - var _ColorAttachment12Ext = OpenTK.Graphics.ES30.ExtDrawBuffers.ColorAttachment12Ext; - var _ColorAttachment13Ext = OpenTK.Graphics.ES30.ExtDrawBuffers.ColorAttachment13Ext; - var _ColorAttachment14Ext = OpenTK.Graphics.ES30.ExtDrawBuffers.ColorAttachment14Ext; - var _ColorAttachment15Ext = OpenTK.Graphics.ES30.ExtDrawBuffers.ColorAttachment15Ext; -} -static void Test_ExtDrawBuffersIndexed_37823() { - var _Zero = OpenTK.Graphics.ES30.ExtDrawBuffersIndexed.Zero; - var _SrcColor = OpenTK.Graphics.ES30.ExtDrawBuffersIndexed.SrcColor; - var _OneMinusSrcColor = OpenTK.Graphics.ES30.ExtDrawBuffersIndexed.OneMinusSrcColor; - var _SrcAlpha = OpenTK.Graphics.ES30.ExtDrawBuffersIndexed.SrcAlpha; - var _OneMinusSrcAlpha = OpenTK.Graphics.ES30.ExtDrawBuffersIndexed.OneMinusSrcAlpha; - var _DstAlpha = OpenTK.Graphics.ES30.ExtDrawBuffersIndexed.DstAlpha; - var _OneMinusDstAlpha = OpenTK.Graphics.ES30.ExtDrawBuffersIndexed.OneMinusDstAlpha; - var _DstColor = OpenTK.Graphics.ES30.ExtDrawBuffersIndexed.DstColor; - var _OneMinusDstColor = OpenTK.Graphics.ES30.ExtDrawBuffersIndexed.OneMinusDstColor; - var _SrcAlphaSaturate = OpenTK.Graphics.ES30.ExtDrawBuffersIndexed.SrcAlphaSaturate; - var _Blend = OpenTK.Graphics.ES30.ExtDrawBuffersIndexed.Blend; - var _ColorWritemask = OpenTK.Graphics.ES30.ExtDrawBuffersIndexed.ColorWritemask; - var _ConstantColor = OpenTK.Graphics.ES30.ExtDrawBuffersIndexed.ConstantColor; - var _OneMinusConstantColor = OpenTK.Graphics.ES30.ExtDrawBuffersIndexed.OneMinusConstantColor; - var _ConstantAlpha = OpenTK.Graphics.ES30.ExtDrawBuffersIndexed.ConstantAlpha; - var _OneMinusConstantAlpha = OpenTK.Graphics.ES30.ExtDrawBuffersIndexed.OneMinusConstantAlpha; - var _FuncAdd = OpenTK.Graphics.ES30.ExtDrawBuffersIndexed.FuncAdd; - var _Min = OpenTK.Graphics.ES30.ExtDrawBuffersIndexed.Min; - var _Max = OpenTK.Graphics.ES30.ExtDrawBuffersIndexed.Max; - var _BlendEquationRgb = OpenTK.Graphics.ES30.ExtDrawBuffersIndexed.BlendEquationRgb; - var _FuncSubtract = OpenTK.Graphics.ES30.ExtDrawBuffersIndexed.FuncSubtract; - var _FuncReverseSubtract = OpenTK.Graphics.ES30.ExtDrawBuffersIndexed.FuncReverseSubtract; - var _BlendDstRgb = OpenTK.Graphics.ES30.ExtDrawBuffersIndexed.BlendDstRgb; - var _BlendSrcRgb = OpenTK.Graphics.ES30.ExtDrawBuffersIndexed.BlendSrcRgb; - var _BlendDstAlpha = OpenTK.Graphics.ES30.ExtDrawBuffersIndexed.BlendDstAlpha; - var _BlendSrcAlpha = OpenTK.Graphics.ES30.ExtDrawBuffersIndexed.BlendSrcAlpha; - var _BlendEquationAlpha = OpenTK.Graphics.ES30.ExtDrawBuffersIndexed.BlendEquationAlpha; - var _One = OpenTK.Graphics.ES30.ExtDrawBuffersIndexed.One; -} -static void Test_ExtDrawInstanced_37824() { -} -static void Test_ExtGeometryPointSize_37825() { -} -static void Test_ExtGeometryShader_37826() { - var _GeometryShaderBitExt = OpenTK.Graphics.ES30.ExtGeometryShader.GeometryShaderBitExt; - var _LinesAdjacencyExt = OpenTK.Graphics.ES30.ExtGeometryShader.LinesAdjacencyExt; - var _LineStripAdjacencyExt = OpenTK.Graphics.ES30.ExtGeometryShader.LineStripAdjacencyExt; - var _TrianglesAdjacencyExt = OpenTK.Graphics.ES30.ExtGeometryShader.TrianglesAdjacencyExt; - var _TriangleStripAdjacencyExt = OpenTK.Graphics.ES30.ExtGeometryShader.TriangleStripAdjacencyExt; - var _LayerProvokingVertexExt = OpenTK.Graphics.ES30.ExtGeometryShader.LayerProvokingVertexExt; - var _UndefinedVertexExt = OpenTK.Graphics.ES30.ExtGeometryShader.UndefinedVertexExt; - var _GeometryShaderInvocationsExt = OpenTK.Graphics.ES30.ExtGeometryShader.GeometryShaderInvocationsExt; - var _GeometryLinkedVerticesOutExt = OpenTK.Graphics.ES30.ExtGeometryShader.GeometryLinkedVerticesOutExt; - var _GeometryLinkedInputTypeExt = OpenTK.Graphics.ES30.ExtGeometryShader.GeometryLinkedInputTypeExt; - var _GeometryLinkedOutputTypeExt = OpenTK.Graphics.ES30.ExtGeometryShader.GeometryLinkedOutputTypeExt; - var _MaxGeometryUniformBlocksExt = OpenTK.Graphics.ES30.ExtGeometryShader.MaxGeometryUniformBlocksExt; - var _MaxCombinedGeometryUniformComponentsExt = OpenTK.Graphics.ES30.ExtGeometryShader.MaxCombinedGeometryUniformComponentsExt; - var _MaxGeometryTextureImageUnitsExt = OpenTK.Graphics.ES30.ExtGeometryShader.MaxGeometryTextureImageUnitsExt; - var _PrimitivesGeneratedExt = OpenTK.Graphics.ES30.ExtGeometryShader.PrimitivesGeneratedExt; - var _FramebufferAttachmentLayeredExt = OpenTK.Graphics.ES30.ExtGeometryShader.FramebufferAttachmentLayeredExt; - var _FramebufferIncompleteLayerTargetsExt = OpenTK.Graphics.ES30.ExtGeometryShader.FramebufferIncompleteLayerTargetsExt; - var _GeometryShaderExt = OpenTK.Graphics.ES30.ExtGeometryShader.GeometryShaderExt; - var _MaxGeometryUniformComponentsExt = OpenTK.Graphics.ES30.ExtGeometryShader.MaxGeometryUniformComponentsExt; - var _MaxGeometryOutputVerticesExt = OpenTK.Graphics.ES30.ExtGeometryShader.MaxGeometryOutputVerticesExt; - var _MaxGeometryTotalOutputComponentsExt = OpenTK.Graphics.ES30.ExtGeometryShader.MaxGeometryTotalOutputComponentsExt; - var _FirstVertexConventionExt = OpenTK.Graphics.ES30.ExtGeometryShader.FirstVertexConventionExt; - var _LastVertexConventionExt = OpenTK.Graphics.ES30.ExtGeometryShader.LastVertexConventionExt; - var _MaxGeometryShaderInvocationsExt = OpenTK.Graphics.ES30.ExtGeometryShader.MaxGeometryShaderInvocationsExt; - var _MaxGeometryImageUniformsExt = OpenTK.Graphics.ES30.ExtGeometryShader.MaxGeometryImageUniformsExt; - var _MaxGeometryShaderStorageBlocksExt = OpenTK.Graphics.ES30.ExtGeometryShader.MaxGeometryShaderStorageBlocksExt; - var _MaxGeometryInputComponentsExt = OpenTK.Graphics.ES30.ExtGeometryShader.MaxGeometryInputComponentsExt; - var _MaxGeometryOutputComponentsExt = OpenTK.Graphics.ES30.ExtGeometryShader.MaxGeometryOutputComponentsExt; - var _MaxGeometryAtomicCounterBuffersExt = OpenTK.Graphics.ES30.ExtGeometryShader.MaxGeometryAtomicCounterBuffersExt; - var _MaxGeometryAtomicCountersExt = OpenTK.Graphics.ES30.ExtGeometryShader.MaxGeometryAtomicCountersExt; - var _ReferencedByGeometryShaderExt = OpenTK.Graphics.ES30.ExtGeometryShader.ReferencedByGeometryShaderExt; - var _FramebufferDefaultLayersExt = OpenTK.Graphics.ES30.ExtGeometryShader.FramebufferDefaultLayersExt; - var _MaxFramebufferLayersExt = OpenTK.Graphics.ES30.ExtGeometryShader.MaxFramebufferLayersExt; -} -static void Test_ExtGpuShader5_37827() { -} -static void Test_ExtInstancedArrays_37828() { - var _VertexAttribArrayDivisorExt = OpenTK.Graphics.ES30.ExtInstancedArrays.VertexAttribArrayDivisorExt; -} -static void Test_ExtMapBufferRange_37829() { - var _MapReadBitExt = OpenTK.Graphics.ES30.ExtMapBufferRange.MapReadBitExt; - var _MapWriteBitExt = OpenTK.Graphics.ES30.ExtMapBufferRange.MapWriteBitExt; - var _MapInvalidateRangeBitExt = OpenTK.Graphics.ES30.ExtMapBufferRange.MapInvalidateRangeBitExt; - var _MapInvalidateBufferBitExt = OpenTK.Graphics.ES30.ExtMapBufferRange.MapInvalidateBufferBitExt; - var _MapFlushExplicitBitExt = OpenTK.Graphics.ES30.ExtMapBufferRange.MapFlushExplicitBitExt; - var _MapUnsynchronizedBitExt = OpenTK.Graphics.ES30.ExtMapBufferRange.MapUnsynchronizedBitExt; -} -static void Test_ExtMultiDrawArrays_37830() { -} -static void Test_ExtMultisampledRenderToTexture_37831() { - var _RenderbufferSamplesExt = OpenTK.Graphics.ES30.ExtMultisampledRenderToTexture.RenderbufferSamplesExt; - var _FramebufferIncompleteMultisampleExt = OpenTK.Graphics.ES30.ExtMultisampledRenderToTexture.FramebufferIncompleteMultisampleExt; - var _MaxSamplesExt = OpenTK.Graphics.ES30.ExtMultisampledRenderToTexture.MaxSamplesExt; - var _FramebufferAttachmentTextureSamplesExt = OpenTK.Graphics.ES30.ExtMultisampledRenderToTexture.FramebufferAttachmentTextureSamplesExt; -} -static void Test_ExtMultiviewDrawBuffers_37832() { - var _DrawBufferExt = OpenTK.Graphics.ES30.ExtMultiviewDrawBuffers.DrawBufferExt; - var _ReadBufferExt = OpenTK.Graphics.ES30.ExtMultiviewDrawBuffers.ReadBufferExt; - var _ColorAttachmentExt = OpenTK.Graphics.ES30.ExtMultiviewDrawBuffers.ColorAttachmentExt; - var _MultiviewExt = OpenTK.Graphics.ES30.ExtMultiviewDrawBuffers.MultiviewExt; - var _MaxMultiviewBuffersExt = OpenTK.Graphics.ES30.ExtMultiviewDrawBuffers.MaxMultiviewBuffersExt; -} -static void Test_ExtOcclusionQueryBoolean_37833() { - var _CurrentQueryExt = OpenTK.Graphics.ES30.ExtOcclusionQueryBoolean.CurrentQueryExt; - var _QueryResultExt = OpenTK.Graphics.ES30.ExtOcclusionQueryBoolean.QueryResultExt; - var _QueryResultAvailableExt = OpenTK.Graphics.ES30.ExtOcclusionQueryBoolean.QueryResultAvailableExt; - var _AnySamplesPassedExt = OpenTK.Graphics.ES30.ExtOcclusionQueryBoolean.AnySamplesPassedExt; - var _AnySamplesPassedConservativeExt = OpenTK.Graphics.ES30.ExtOcclusionQueryBoolean.AnySamplesPassedConservativeExt; -} -static void Test_ExtPrimitiveBoundingBox_37834() { - var _PrimitiveBoundingBoxExt = OpenTK.Graphics.ES30.ExtPrimitiveBoundingBox.PrimitiveBoundingBoxExt; -} -static void Test_ExtPvrtcSrgb_37835() { - var _CompressedSrgbPvrtc2Bppv1Ext = OpenTK.Graphics.ES30.ExtPvrtcSrgb.CompressedSrgbPvrtc2Bppv1Ext; - var _CompressedSrgbPvrtc4Bppv1Ext = OpenTK.Graphics.ES30.ExtPvrtcSrgb.CompressedSrgbPvrtc4Bppv1Ext; - var _CompressedSrgbAlphaPvrtc2Bppv1Ext = OpenTK.Graphics.ES30.ExtPvrtcSrgb.CompressedSrgbAlphaPvrtc2Bppv1Ext; - var _CompressedSrgbAlphaPvrtc4Bppv1Ext = OpenTK.Graphics.ES30.ExtPvrtcSrgb.CompressedSrgbAlphaPvrtc4Bppv1Ext; - var _CompressedSrgbAlphaPvrtc2Bppv2Img = OpenTK.Graphics.ES30.ExtPvrtcSrgb.CompressedSrgbAlphaPvrtc2Bppv2Img; - var _CompressedSrgbAlphaPvrtc4Bppv2Img = OpenTK.Graphics.ES30.ExtPvrtcSrgb.CompressedSrgbAlphaPvrtc4Bppv2Img; -} -static void Test_ExtReadFormatBgra_37836() { - var _BgraExt = OpenTK.Graphics.ES30.ExtReadFormatBgra.BgraExt; - var _UnsignedShort4444RevExt = OpenTK.Graphics.ES30.ExtReadFormatBgra.UnsignedShort4444RevExt; - var _UnsignedShort1555RevExt = OpenTK.Graphics.ES30.ExtReadFormatBgra.UnsignedShort1555RevExt; -} -static void Test_ExtRobustness_37837() { - var _NoError = OpenTK.Graphics.ES30.ExtRobustness.NoError; - var _LoseContextOnResetExt = OpenTK.Graphics.ES30.ExtRobustness.LoseContextOnResetExt; - var _GuiltyContextResetExt = OpenTK.Graphics.ES30.ExtRobustness.GuiltyContextResetExt; - var _InnocentContextResetExt = OpenTK.Graphics.ES30.ExtRobustness.InnocentContextResetExt; - var _UnknownContextResetExt = OpenTK.Graphics.ES30.ExtRobustness.UnknownContextResetExt; - var _ResetNotificationStrategyExt = OpenTK.Graphics.ES30.ExtRobustness.ResetNotificationStrategyExt; - var _NoResetNotificationExt = OpenTK.Graphics.ES30.ExtRobustness.NoResetNotificationExt; - var _ContextRobustAccessExt = OpenTK.Graphics.ES30.ExtRobustness.ContextRobustAccessExt; -} -static void Test_ExtSeparateShaderObjects_37838() { - var _VertexShaderBitExt = OpenTK.Graphics.ES30.ExtSeparateShaderObjects.VertexShaderBitExt; - var _FragmentShaderBitExt = OpenTK.Graphics.ES30.ExtSeparateShaderObjects.FragmentShaderBitExt; - var _ProgramSeparableExt = OpenTK.Graphics.ES30.ExtSeparateShaderObjects.ProgramSeparableExt; - var _ActiveProgramExt = OpenTK.Graphics.ES30.ExtSeparateShaderObjects.ActiveProgramExt; - var _ProgramPipelineBindingExt = OpenTK.Graphics.ES30.ExtSeparateShaderObjects.ProgramPipelineBindingExt; - var _AllShaderBitsExt = OpenTK.Graphics.ES30.ExtSeparateShaderObjects.AllShaderBitsExt; -} -static void Test_ExtShaderFramebufferFetch_37839() { - var _FragmentShaderDiscardsSamplesExt = OpenTK.Graphics.ES30.ExtShaderFramebufferFetch.FragmentShaderDiscardsSamplesExt; -} -static void Test_ExtShaderImplicitConversions_37840() { -} -static void Test_ExtShaderIntegerMix_37841() { -} -static void Test_ExtShaderIoBlocks_37842() { -} -static void Test_ExtShaderPixelLocalStorage_37843() { - var _MaxShaderPixelLocalStorageFastSizeExt = OpenTK.Graphics.ES30.ExtShaderPixelLocalStorage.MaxShaderPixelLocalStorageFastSizeExt; - var _ShaderPixelLocalStorageExt = OpenTK.Graphics.ES30.ExtShaderPixelLocalStorage.ShaderPixelLocalStorageExt; - var _MaxShaderPixelLocalStorageSizeExt = OpenTK.Graphics.ES30.ExtShaderPixelLocalStorage.MaxShaderPixelLocalStorageSizeExt; -} -static void Test_ExtShaderTextureLod_37844() { -} -static void Test_ExtShadowSamplers_37845() { - var _TextureCompareModeExt = OpenTK.Graphics.ES30.ExtShadowSamplers.TextureCompareModeExt; - var _TextureCompareFuncExt = OpenTK.Graphics.ES30.ExtShadowSamplers.TextureCompareFuncExt; - var _CompareRefToTextureExt = OpenTK.Graphics.ES30.ExtShadowSamplers.CompareRefToTextureExt; - var _Sampler2DShadowExt = OpenTK.Graphics.ES30.ExtShadowSamplers.Sampler2DShadowExt; -} -static void Test_ExtSrgb_37846() { - var _FramebufferAttachmentColorEncodingExt = OpenTK.Graphics.ES30.ExtSrgb.FramebufferAttachmentColorEncodingExt; - var _SrgbExt = OpenTK.Graphics.ES30.ExtSrgb.SrgbExt; - var _SrgbAlphaExt = OpenTK.Graphics.ES30.ExtSrgb.SrgbAlphaExt; - var _Srgb8Alpha8Ext = OpenTK.Graphics.ES30.ExtSrgb.Srgb8Alpha8Ext; -} -static void Test_ExtSrgbWriteControl_37847() { - var _FramebufferSrgbExt = OpenTK.Graphics.ES30.ExtSrgbWriteControl.FramebufferSrgbExt; -} -static void Test_ExtTessellationPointSize_37848() { -} -static void Test_ExtTessellationShader_37849() { - var _TessControlShaderBitExt = OpenTK.Graphics.ES30.ExtTessellationShader.TessControlShaderBitExt; - var _TessEvaluationShaderBitExt = OpenTK.Graphics.ES30.ExtTessellationShader.TessEvaluationShaderBitExt; - var _Triangles = OpenTK.Graphics.ES30.ExtTessellationShader.Triangles; - var _QuadsExt = OpenTK.Graphics.ES30.ExtTessellationShader.QuadsExt; - var _PatchesExt = OpenTK.Graphics.ES30.ExtTessellationShader.PatchesExt; - var _Equal = OpenTK.Graphics.ES30.ExtTessellationShader.Equal; - var _Cw = OpenTK.Graphics.ES30.ExtTessellationShader.Cw; - var _Ccw = OpenTK.Graphics.ES30.ExtTessellationShader.Ccw; - var _PrimitiveRestartForPatchesSupported = OpenTK.Graphics.ES30.ExtTessellationShader.PrimitiveRestartForPatchesSupported; - var _MaxTessControlInputComponentsExt = OpenTK.Graphics.ES30.ExtTessellationShader.MaxTessControlInputComponentsExt; - var _MaxTessEvaluationInputComponentsExt = OpenTK.Graphics.ES30.ExtTessellationShader.MaxTessEvaluationInputComponentsExt; - var _MaxCombinedTessControlUniformComponentsExt = OpenTK.Graphics.ES30.ExtTessellationShader.MaxCombinedTessControlUniformComponentsExt; - var _MaxCombinedTessEvaluationUniformComponentsExt = OpenTK.Graphics.ES30.ExtTessellationShader.MaxCombinedTessEvaluationUniformComponentsExt; - var _PatchVerticesExt = OpenTK.Graphics.ES30.ExtTessellationShader.PatchVerticesExt; - var _TessControlOutputVerticesExt = OpenTK.Graphics.ES30.ExtTessellationShader.TessControlOutputVerticesExt; - var _TessGenModeExt = OpenTK.Graphics.ES30.ExtTessellationShader.TessGenModeExt; - var _TessGenSpacingExt = OpenTK.Graphics.ES30.ExtTessellationShader.TessGenSpacingExt; - var _TessGenVertexOrderExt = OpenTK.Graphics.ES30.ExtTessellationShader.TessGenVertexOrderExt; - var _TessGenPointModeExt = OpenTK.Graphics.ES30.ExtTessellationShader.TessGenPointModeExt; - var _IsolinesExt = OpenTK.Graphics.ES30.ExtTessellationShader.IsolinesExt; - var _FractionalOddExt = OpenTK.Graphics.ES30.ExtTessellationShader.FractionalOddExt; - var _FractionalEvenExt = OpenTK.Graphics.ES30.ExtTessellationShader.FractionalEvenExt; - var _MaxPatchVerticesExt = OpenTK.Graphics.ES30.ExtTessellationShader.MaxPatchVerticesExt; - var _MaxTessGenLevelExt = OpenTK.Graphics.ES30.ExtTessellationShader.MaxTessGenLevelExt; - var _MaxTessControlUniformComponentsExt = OpenTK.Graphics.ES30.ExtTessellationShader.MaxTessControlUniformComponentsExt; - var _MaxTessEvaluationUniformComponentsExt = OpenTK.Graphics.ES30.ExtTessellationShader.MaxTessEvaluationUniformComponentsExt; - var _MaxTessControlTextureImageUnitsExt = OpenTK.Graphics.ES30.ExtTessellationShader.MaxTessControlTextureImageUnitsExt; - var _MaxTessEvaluationTextureImageUnitsExt = OpenTK.Graphics.ES30.ExtTessellationShader.MaxTessEvaluationTextureImageUnitsExt; - var _MaxTessControlOutputComponentsExt = OpenTK.Graphics.ES30.ExtTessellationShader.MaxTessControlOutputComponentsExt; - var _MaxTessPatchComponentsExt = OpenTK.Graphics.ES30.ExtTessellationShader.MaxTessPatchComponentsExt; - var _MaxTessControlTotalOutputComponentsExt = OpenTK.Graphics.ES30.ExtTessellationShader.MaxTessControlTotalOutputComponentsExt; - var _MaxTessEvaluationOutputComponentsExt = OpenTK.Graphics.ES30.ExtTessellationShader.MaxTessEvaluationOutputComponentsExt; - var _TessEvaluationShaderExt = OpenTK.Graphics.ES30.ExtTessellationShader.TessEvaluationShaderExt; - var _TessControlShaderExt = OpenTK.Graphics.ES30.ExtTessellationShader.TessControlShaderExt; - var _MaxTessControlUniformBlocksExt = OpenTK.Graphics.ES30.ExtTessellationShader.MaxTessControlUniformBlocksExt; - var _MaxTessEvaluationUniformBlocksExt = OpenTK.Graphics.ES30.ExtTessellationShader.MaxTessEvaluationUniformBlocksExt; - var _MaxTessControlImageUniformsExt = OpenTK.Graphics.ES30.ExtTessellationShader.MaxTessControlImageUniformsExt; - var _MaxTessEvaluationImageUniformsExt = OpenTK.Graphics.ES30.ExtTessellationShader.MaxTessEvaluationImageUniformsExt; - var _MaxTessControlShaderStorageBlocksExt = OpenTK.Graphics.ES30.ExtTessellationShader.MaxTessControlShaderStorageBlocksExt; - var _MaxTessEvaluationShaderStorageBlocksExt = OpenTK.Graphics.ES30.ExtTessellationShader.MaxTessEvaluationShaderStorageBlocksExt; - var _MaxTessControlAtomicCounterBuffersExt = OpenTK.Graphics.ES30.ExtTessellationShader.MaxTessControlAtomicCounterBuffersExt; - var _MaxTessEvaluationAtomicCounterBuffersExt = OpenTK.Graphics.ES30.ExtTessellationShader.MaxTessEvaluationAtomicCounterBuffersExt; - var _MaxTessControlAtomicCountersExt = OpenTK.Graphics.ES30.ExtTessellationShader.MaxTessControlAtomicCountersExt; - var _MaxTessEvaluationAtomicCountersExt = OpenTK.Graphics.ES30.ExtTessellationShader.MaxTessEvaluationAtomicCountersExt; - var _IsPerPatchExt = OpenTK.Graphics.ES30.ExtTessellationShader.IsPerPatchExt; - var _ReferencedByTessControlShaderExt = OpenTK.Graphics.ES30.ExtTessellationShader.ReferencedByTessControlShaderExt; - var _ReferencedByTessEvaluationShaderExt = OpenTK.Graphics.ES30.ExtTessellationShader.ReferencedByTessEvaluationShaderExt; -} -static void Test_ExtTextureBorderClamp_37850() { - var _TextureBorderColorExt = OpenTK.Graphics.ES30.ExtTextureBorderClamp.TextureBorderColorExt; - var _ClampToBorderExt = OpenTK.Graphics.ES30.ExtTextureBorderClamp.ClampToBorderExt; -} -static void Test_ExtTextureBuffer_37851() { - var _TextureBufferBindingExt = OpenTK.Graphics.ES30.ExtTextureBuffer.TextureBufferBindingExt; - var _TextureBufferExt = OpenTK.Graphics.ES30.ExtTextureBuffer.TextureBufferExt; - var _MaxTextureBufferSizeExt = OpenTK.Graphics.ES30.ExtTextureBuffer.MaxTextureBufferSizeExt; - var _TextureBindingBufferExt = OpenTK.Graphics.ES30.ExtTextureBuffer.TextureBindingBufferExt; - var _TextureBufferDataStoreBindingExt = OpenTK.Graphics.ES30.ExtTextureBuffer.TextureBufferDataStoreBindingExt; - var _SamplerBufferExt = OpenTK.Graphics.ES30.ExtTextureBuffer.SamplerBufferExt; - var _IntSamplerBufferExt = OpenTK.Graphics.ES30.ExtTextureBuffer.IntSamplerBufferExt; - var _UnsignedIntSamplerBufferExt = OpenTK.Graphics.ES30.ExtTextureBuffer.UnsignedIntSamplerBufferExt; - var _ImageBufferExt = OpenTK.Graphics.ES30.ExtTextureBuffer.ImageBufferExt; - var _IntImageBufferExt = OpenTK.Graphics.ES30.ExtTextureBuffer.IntImageBufferExt; - var _UnsignedIntImageBufferExt = OpenTK.Graphics.ES30.ExtTextureBuffer.UnsignedIntImageBufferExt; - var _TextureBufferOffsetExt = OpenTK.Graphics.ES30.ExtTextureBuffer.TextureBufferOffsetExt; - var _TextureBufferSizeExt = OpenTK.Graphics.ES30.ExtTextureBuffer.TextureBufferSizeExt; - var _TextureBufferOffsetAlignmentExt = OpenTK.Graphics.ES30.ExtTextureBuffer.TextureBufferOffsetAlignmentExt; -} -static void Test_ExtTextureCompressionDxt1_37852() { - var _CompressedRgbS3tcDxt1Ext = OpenTK.Graphics.ES30.ExtTextureCompressionDxt1.CompressedRgbS3tcDxt1Ext; - var _CompressedRgbaS3tcDxt1Ext = OpenTK.Graphics.ES30.ExtTextureCompressionDxt1.CompressedRgbaS3tcDxt1Ext; -} -static void Test_ExtTextureCompressionS3tc_37853() { - var _CompressedRgbS3tcDxt1Ext = OpenTK.Graphics.ES30.ExtTextureCompressionS3tc.CompressedRgbS3tcDxt1Ext; - var _CompressedRgbaS3tcDxt1Ext = OpenTK.Graphics.ES30.ExtTextureCompressionS3tc.CompressedRgbaS3tcDxt1Ext; - var _CompressedRgbaS3tcDxt3Ext = OpenTK.Graphics.ES30.ExtTextureCompressionS3tc.CompressedRgbaS3tcDxt3Ext; - var _CompressedRgbaS3tcDxt5Ext = OpenTK.Graphics.ES30.ExtTextureCompressionS3tc.CompressedRgbaS3tcDxt5Ext; -} -static void Test_ExtTextureCubeMapArray_37854() { - var _TextureCubeMapArrayExt = OpenTK.Graphics.ES30.ExtTextureCubeMapArray.TextureCubeMapArrayExt; - var _TextureBindingCubeMapArrayExt = OpenTK.Graphics.ES30.ExtTextureCubeMapArray.TextureBindingCubeMapArrayExt; - var _SamplerCubeMapArrayExt = OpenTK.Graphics.ES30.ExtTextureCubeMapArray.SamplerCubeMapArrayExt; - var _SamplerCubeMapArrayShadowExt = OpenTK.Graphics.ES30.ExtTextureCubeMapArray.SamplerCubeMapArrayShadowExt; - var _IntSamplerCubeMapArrayExt = OpenTK.Graphics.ES30.ExtTextureCubeMapArray.IntSamplerCubeMapArrayExt; - var _UnsignedIntSamplerCubeMapArrayExt = OpenTK.Graphics.ES30.ExtTextureCubeMapArray.UnsignedIntSamplerCubeMapArrayExt; - var _ImageCubeMapArrayExt = OpenTK.Graphics.ES30.ExtTextureCubeMapArray.ImageCubeMapArrayExt; - var _IntImageCubeMapArrayExt = OpenTK.Graphics.ES30.ExtTextureCubeMapArray.IntImageCubeMapArrayExt; - var _UnsignedIntImageCubeMapArrayExt = OpenTK.Graphics.ES30.ExtTextureCubeMapArray.UnsignedIntImageCubeMapArrayExt; -} -static void Test_ExtTextureFilterAnisotropic_37855() { - var _TextureMaxAnisotropyExt = OpenTK.Graphics.ES30.ExtTextureFilterAnisotropic.TextureMaxAnisotropyExt; - var _MaxTextureMaxAnisotropyExt = OpenTK.Graphics.ES30.ExtTextureFilterAnisotropic.MaxTextureMaxAnisotropyExt; -} -static void Test_ExtTextureFormatBgra8888_37856() { - var _BgraExt = OpenTK.Graphics.ES30.ExtTextureFormatBgra8888.BgraExt; -} -static void Test_ExtTextureRg_37857() { - var _RedExt = OpenTK.Graphics.ES30.ExtTextureRg.RedExt; - var _RgExt = OpenTK.Graphics.ES30.ExtTextureRg.RgExt; - var _R8Ext = OpenTK.Graphics.ES30.ExtTextureRg.R8Ext; - var _Rg8Ext = OpenTK.Graphics.ES30.ExtTextureRg.Rg8Ext; -} -static void Test_ExtTextureSrgbDecode_37858() { - var _TextureSrgbDecodeExt = OpenTK.Graphics.ES30.ExtTextureSrgbDecode.TextureSrgbDecodeExt; - var _DecodeExt = OpenTK.Graphics.ES30.ExtTextureSrgbDecode.DecodeExt; - var _SkipDecodeExt = OpenTK.Graphics.ES30.ExtTextureSrgbDecode.SkipDecodeExt; -} -static void Test_ExtTextureStorage_37859() { - var _Alpha8Ext = OpenTK.Graphics.ES30.ExtTextureStorage.Alpha8Ext; - var _Luminance8Ext = OpenTK.Graphics.ES30.ExtTextureStorage.Luminance8Ext; - var _Luminance8Alpha8Ext = OpenTK.Graphics.ES30.ExtTextureStorage.Luminance8Alpha8Ext; - var _Rgb10Ext = OpenTK.Graphics.ES30.ExtTextureStorage.Rgb10Ext; - var _Rgb10A2Ext = OpenTK.Graphics.ES30.ExtTextureStorage.Rgb10A2Ext; - var _R8Ext = OpenTK.Graphics.ES30.ExtTextureStorage.R8Ext; - var _Rg8Ext = OpenTK.Graphics.ES30.ExtTextureStorage.Rg8Ext; - var _R16fExt = OpenTK.Graphics.ES30.ExtTextureStorage.R16fExt; - var _R32fExt = OpenTK.Graphics.ES30.ExtTextureStorage.R32fExt; - var _Rg16fExt = OpenTK.Graphics.ES30.ExtTextureStorage.Rg16fExt; - var _Rg32fExt = OpenTK.Graphics.ES30.ExtTextureStorage.Rg32fExt; - var _Rgba32fExt = OpenTK.Graphics.ES30.ExtTextureStorage.Rgba32fExt; - var _Rgb32fExt = OpenTK.Graphics.ES30.ExtTextureStorage.Rgb32fExt; - var _Alpha32fExt = OpenTK.Graphics.ES30.ExtTextureStorage.Alpha32fExt; - var _Luminance32fExt = OpenTK.Graphics.ES30.ExtTextureStorage.Luminance32fExt; - var _LuminanceAlpha32fExt = OpenTK.Graphics.ES30.ExtTextureStorage.LuminanceAlpha32fExt; - var _Rgba16fExt = OpenTK.Graphics.ES30.ExtTextureStorage.Rgba16fExt; - var _Rgb16fExt = OpenTK.Graphics.ES30.ExtTextureStorage.Rgb16fExt; - var _Alpha16fExt = OpenTK.Graphics.ES30.ExtTextureStorage.Alpha16fExt; - var _Luminance16fExt = OpenTK.Graphics.ES30.ExtTextureStorage.Luminance16fExt; - var _LuminanceAlpha16fExt = OpenTK.Graphics.ES30.ExtTextureStorage.LuminanceAlpha16fExt; - var _TextureImmutableFormatExt = OpenTK.Graphics.ES30.ExtTextureStorage.TextureImmutableFormatExt; - var _Bgra8Ext = OpenTK.Graphics.ES30.ExtTextureStorage.Bgra8Ext; -} -static void Test_ExtTextureType2101010Rev_37860() { - var _UnsignedInt2101010RevExt = OpenTK.Graphics.ES30.ExtTextureType2101010Rev.UnsignedInt2101010RevExt; -} -static void Test_ExtTextureView_37861() { - var _TextureViewMinLevelExt = OpenTK.Graphics.ES30.ExtTextureView.TextureViewMinLevelExt; - var _TextureViewNumLevelsExt = OpenTK.Graphics.ES30.ExtTextureView.TextureViewNumLevelsExt; - var _TextureViewMinLayerExt = OpenTK.Graphics.ES30.ExtTextureView.TextureViewMinLayerExt; - var _TextureViewNumLayersExt = OpenTK.Graphics.ES30.ExtTextureView.TextureViewNumLayersExt; - var _TextureImmutableLevels = OpenTK.Graphics.ES30.ExtTextureView.TextureImmutableLevels; -} -static void Test_ExtUnpackSubimage_37862() { - var _UnpackRowLengthExt = OpenTK.Graphics.ES30.ExtUnpackSubimage.UnpackRowLengthExt; - var _UnpackSkipRowsExt = OpenTK.Graphics.ES30.ExtUnpackSubimage.UnpackSkipRowsExt; - var _UnpackSkipPixelsExt = OpenTK.Graphics.ES30.ExtUnpackSubimage.UnpackSkipPixelsExt; -} -static void Test_FeedBackToken_37863() { - var _PassThroughToken = OpenTK.Graphics.ES30.FeedBackToken.PassThroughToken; - var _PointToken = OpenTK.Graphics.ES30.FeedBackToken.PointToken; - var _LineToken = OpenTK.Graphics.ES30.FeedBackToken.LineToken; - var _PolygonToken = OpenTK.Graphics.ES30.FeedBackToken.PolygonToken; - var _BitmapToken = OpenTK.Graphics.ES30.FeedBackToken.BitmapToken; - var _DrawPixelToken = OpenTK.Graphics.ES30.FeedBackToken.DrawPixelToken; - var _CopyPixelToken = OpenTK.Graphics.ES30.FeedBackToken.CopyPixelToken; - var _LineResetToken = OpenTK.Graphics.ES30.FeedBackToken.LineResetToken; -} -static void Test_FeedbackType_37864() { - var _Gl2D = OpenTK.Graphics.ES30.FeedbackType.Gl2D; - var _Gl3D = OpenTK.Graphics.ES30.FeedbackType.Gl3D; - var _Gl3DColor = OpenTK.Graphics.ES30.FeedbackType.Gl3DColor; - var _Gl3DColorTexture = OpenTK.Graphics.ES30.FeedbackType.Gl3DColorTexture; - var _Gl4DColorTexture = OpenTK.Graphics.ES30.FeedbackType.Gl4DColorTexture; -} -static void Test_FfdMaskSgix_37865() { -} -static void Test_FfdTargetSgix_37866() { - var _GeometryDeformationSgix = OpenTK.Graphics.ES30.FfdTargetSgix.GeometryDeformationSgix; - var _TextureDeformationSgix = OpenTK.Graphics.ES30.FfdTargetSgix.TextureDeformationSgix; -} -static void Test_FjShaderBinaryGccso_37867() { - var _GccsoShaderBinaryFj = OpenTK.Graphics.ES30.FjShaderBinaryGccso.GccsoShaderBinaryFj; -} -static void Test_FogCoordinatePointerType_37868() { - var _Float = OpenTK.Graphics.ES30.FogCoordinatePointerType.Float; - var _Double = OpenTK.Graphics.ES30.FogCoordinatePointerType.Double; -} -static void Test_FogMode_37869() { - var _Exp = OpenTK.Graphics.ES30.FogMode.Exp; - var _Exp2 = OpenTK.Graphics.ES30.FogMode.Exp2; - var _Linear = OpenTK.Graphics.ES30.FogMode.Linear; - var _FogFuncSgis = OpenTK.Graphics.ES30.FogMode.FogFuncSgis; -} -static void Test_FogParameter_37870() { - var _FogIndex = OpenTK.Graphics.ES30.FogParameter.FogIndex; - var _FogDensity = OpenTK.Graphics.ES30.FogParameter.FogDensity; - var _FogStart = OpenTK.Graphics.ES30.FogParameter.FogStart; - var _FogEnd = OpenTK.Graphics.ES30.FogParameter.FogEnd; - var _FogMode = OpenTK.Graphics.ES30.FogParameter.FogMode; - var _FogColor = OpenTK.Graphics.ES30.FogParameter.FogColor; - var _FogOffsetValueSgix = OpenTK.Graphics.ES30.FogParameter.FogOffsetValueSgix; -} -static void Test_FogPointerTypeExt_37871() { - var _Float = OpenTK.Graphics.ES30.FogPointerTypeExt.Float; - var _Double = OpenTK.Graphics.ES30.FogPointerTypeExt.Double; -} -static void Test_FogPointerTypeIbm_37872() { - var _Float = OpenTK.Graphics.ES30.FogPointerTypeIbm.Float; - var _Double = OpenTK.Graphics.ES30.FogPointerTypeIbm.Double; -} -static void Test_FragmentLightModelParameterSgix_37873() { - var _FragmentLightModelLocalViewerSgix = OpenTK.Graphics.ES30.FragmentLightModelParameterSgix.FragmentLightModelLocalViewerSgix; - var _FragmentLightModelTwoSideSgix = OpenTK.Graphics.ES30.FragmentLightModelParameterSgix.FragmentLightModelTwoSideSgix; - var _FragmentLightModelAmbientSgix = OpenTK.Graphics.ES30.FragmentLightModelParameterSgix.FragmentLightModelAmbientSgix; - var _FragmentLightModelNormalInterpolationSgix = OpenTK.Graphics.ES30.FragmentLightModelParameterSgix.FragmentLightModelNormalInterpolationSgix; -} -static void Test_FramebufferAttachment_37874() { - var _Color = OpenTK.Graphics.ES30.FramebufferAttachment.Color; - var _Depth = OpenTK.Graphics.ES30.FramebufferAttachment.Depth; - var _Stencil = OpenTK.Graphics.ES30.FramebufferAttachment.Stencil; - var _DepthStencilAttachment = OpenTK.Graphics.ES30.FramebufferAttachment.DepthStencilAttachment; - var _ColorAttachment0 = OpenTK.Graphics.ES30.FramebufferAttachment.ColorAttachment0; - var _ColorAttachment1 = OpenTK.Graphics.ES30.FramebufferAttachment.ColorAttachment1; - var _ColorAttachment2 = OpenTK.Graphics.ES30.FramebufferAttachment.ColorAttachment2; - var _ColorAttachment3 = OpenTK.Graphics.ES30.FramebufferAttachment.ColorAttachment3; - var _ColorAttachment4 = OpenTK.Graphics.ES30.FramebufferAttachment.ColorAttachment4; - var _ColorAttachment5 = OpenTK.Graphics.ES30.FramebufferAttachment.ColorAttachment5; - var _ColorAttachment6 = OpenTK.Graphics.ES30.FramebufferAttachment.ColorAttachment6; - var _ColorAttachment7 = OpenTK.Graphics.ES30.FramebufferAttachment.ColorAttachment7; - var _ColorAttachment8 = OpenTK.Graphics.ES30.FramebufferAttachment.ColorAttachment8; - var _ColorAttachment9 = OpenTK.Graphics.ES30.FramebufferAttachment.ColorAttachment9; - var _ColorAttachment10 = OpenTK.Graphics.ES30.FramebufferAttachment.ColorAttachment10; - var _ColorAttachment11 = OpenTK.Graphics.ES30.FramebufferAttachment.ColorAttachment11; - var _ColorAttachment12 = OpenTK.Graphics.ES30.FramebufferAttachment.ColorAttachment12; - var _ColorAttachment13 = OpenTK.Graphics.ES30.FramebufferAttachment.ColorAttachment13; - var _ColorAttachment14 = OpenTK.Graphics.ES30.FramebufferAttachment.ColorAttachment14; - var _ColorAttachment15 = OpenTK.Graphics.ES30.FramebufferAttachment.ColorAttachment15; - var _DepthAttachment = OpenTK.Graphics.ES30.FramebufferAttachment.DepthAttachment; - var _StencilAttachment = OpenTK.Graphics.ES30.FramebufferAttachment.StencilAttachment; -} -static void Test_FramebufferErrorCode_37875() { - var _FramebufferComplete = OpenTK.Graphics.ES30.FramebufferErrorCode.FramebufferComplete; - var _FramebufferIncompleteAttachment = OpenTK.Graphics.ES30.FramebufferErrorCode.FramebufferIncompleteAttachment; - var _FramebufferIncompleteMissingAttachment = OpenTK.Graphics.ES30.FramebufferErrorCode.FramebufferIncompleteMissingAttachment; - var _FramebufferIncompleteDimensions = OpenTK.Graphics.ES30.FramebufferErrorCode.FramebufferIncompleteDimensions; - var _FramebufferUnsupported = OpenTK.Graphics.ES30.FramebufferErrorCode.FramebufferUnsupported; -} -static void Test_FramebufferParameterName_37876() { - var _FramebufferAttachmentColorEncoding = OpenTK.Graphics.ES30.FramebufferParameterName.FramebufferAttachmentColorEncoding; - var _FramebufferAttachmentComponentType = OpenTK.Graphics.ES30.FramebufferParameterName.FramebufferAttachmentComponentType; - var _FramebufferAttachmentRedSize = OpenTK.Graphics.ES30.FramebufferParameterName.FramebufferAttachmentRedSize; - var _FramebufferAttachmentGreenSize = OpenTK.Graphics.ES30.FramebufferParameterName.FramebufferAttachmentGreenSize; - var _FramebufferAttachmentBlueSize = OpenTK.Graphics.ES30.FramebufferParameterName.FramebufferAttachmentBlueSize; - var _FramebufferAttachmentAlphaSize = OpenTK.Graphics.ES30.FramebufferParameterName.FramebufferAttachmentAlphaSize; - var _FramebufferAttachmentDepthSize = OpenTK.Graphics.ES30.FramebufferParameterName.FramebufferAttachmentDepthSize; - var _FramebufferAttachmentStencilSize = OpenTK.Graphics.ES30.FramebufferParameterName.FramebufferAttachmentStencilSize; - var _FramebufferAttachmentObjectType = OpenTK.Graphics.ES30.FramebufferParameterName.FramebufferAttachmentObjectType; - var _FramebufferAttachmentObjectName = OpenTK.Graphics.ES30.FramebufferParameterName.FramebufferAttachmentObjectName; - var _FramebufferAttachmentTextureLevel = OpenTK.Graphics.ES30.FramebufferParameterName.FramebufferAttachmentTextureLevel; - var _FramebufferAttachmentTextureCubeMapFace = OpenTK.Graphics.ES30.FramebufferParameterName.FramebufferAttachmentTextureCubeMapFace; - var _FramebufferAttachmentTextureLayer = OpenTK.Graphics.ES30.FramebufferParameterName.FramebufferAttachmentTextureLayer; -} -static void Test_FramebufferSlot_37877() { - var _DepthStencilAttachment = OpenTK.Graphics.ES30.FramebufferSlot.DepthStencilAttachment; - var _ColorAttachment0 = OpenTK.Graphics.ES30.FramebufferSlot.ColorAttachment0; - var _ColorAttachment1 = OpenTK.Graphics.ES30.FramebufferSlot.ColorAttachment1; - var _ColorAttachment2 = OpenTK.Graphics.ES30.FramebufferSlot.ColorAttachment2; - var _ColorAttachment3 = OpenTK.Graphics.ES30.FramebufferSlot.ColorAttachment3; - var _ColorAttachment4 = OpenTK.Graphics.ES30.FramebufferSlot.ColorAttachment4; - var _ColorAttachment5 = OpenTK.Graphics.ES30.FramebufferSlot.ColorAttachment5; - var _ColorAttachment6 = OpenTK.Graphics.ES30.FramebufferSlot.ColorAttachment6; - var _ColorAttachment7 = OpenTK.Graphics.ES30.FramebufferSlot.ColorAttachment7; - var _ColorAttachment8 = OpenTK.Graphics.ES30.FramebufferSlot.ColorAttachment8; - var _ColorAttachment9 = OpenTK.Graphics.ES30.FramebufferSlot.ColorAttachment9; - var _ColorAttachment10 = OpenTK.Graphics.ES30.FramebufferSlot.ColorAttachment10; - var _ColorAttachment11 = OpenTK.Graphics.ES30.FramebufferSlot.ColorAttachment11; - var _ColorAttachment12 = OpenTK.Graphics.ES30.FramebufferSlot.ColorAttachment12; - var _ColorAttachment13 = OpenTK.Graphics.ES30.FramebufferSlot.ColorAttachment13; - var _ColorAttachment14 = OpenTK.Graphics.ES30.FramebufferSlot.ColorAttachment14; - var _ColorAttachment15 = OpenTK.Graphics.ES30.FramebufferSlot.ColorAttachment15; - var _DepthAttachment = OpenTK.Graphics.ES30.FramebufferSlot.DepthAttachment; - var _StencilAttachment = OpenTK.Graphics.ES30.FramebufferSlot.StencilAttachment; -} -static void Test_FramebufferTarget_37878() { - var _ReadFramebuffer = OpenTK.Graphics.ES30.FramebufferTarget.ReadFramebuffer; - var _DrawFramebuffer = OpenTK.Graphics.ES30.FramebufferTarget.DrawFramebuffer; - var _Framebuffer = OpenTK.Graphics.ES30.FramebufferTarget.Framebuffer; -} -static void Test_FrontFaceDirection_37879() { - var _Cw = OpenTK.Graphics.ES30.FrontFaceDirection.Cw; - var _Ccw = OpenTK.Graphics.ES30.FrontFaceDirection.Ccw; -} -static void Test_GetColorTableParameterPNameSgi_37880() { - var _ColorTableScaleSgi = OpenTK.Graphics.ES30.GetColorTableParameterPNameSgi.ColorTableScaleSgi; - var _ColorTableBiasSgi = OpenTK.Graphics.ES30.GetColorTableParameterPNameSgi.ColorTableBiasSgi; - var _ColorTableFormatSgi = OpenTK.Graphics.ES30.GetColorTableParameterPNameSgi.ColorTableFormatSgi; - var _ColorTableWidthSgi = OpenTK.Graphics.ES30.GetColorTableParameterPNameSgi.ColorTableWidthSgi; - var _ColorTableRedSizeSgi = OpenTK.Graphics.ES30.GetColorTableParameterPNameSgi.ColorTableRedSizeSgi; - var _ColorTableGreenSizeSgi = OpenTK.Graphics.ES30.GetColorTableParameterPNameSgi.ColorTableGreenSizeSgi; - var _ColorTableBlueSizeSgi = OpenTK.Graphics.ES30.GetColorTableParameterPNameSgi.ColorTableBlueSizeSgi; - var _ColorTableAlphaSizeSgi = OpenTK.Graphics.ES30.GetColorTableParameterPNameSgi.ColorTableAlphaSizeSgi; - var _ColorTableLuminanceSizeSgi = OpenTK.Graphics.ES30.GetColorTableParameterPNameSgi.ColorTableLuminanceSizeSgi; - var _ColorTableIntensitySizeSgi = OpenTK.Graphics.ES30.GetColorTableParameterPNameSgi.ColorTableIntensitySizeSgi; -} -static void Test_GetConvolutionParameter_37881() { - var _ConvolutionBorderModeExt = OpenTK.Graphics.ES30.GetConvolutionParameter.ConvolutionBorderModeExt; - var _ConvolutionFilterScaleExt = OpenTK.Graphics.ES30.GetConvolutionParameter.ConvolutionFilterScaleExt; - var _ConvolutionFilterBiasExt = OpenTK.Graphics.ES30.GetConvolutionParameter.ConvolutionFilterBiasExt; - var _ConvolutionFormatExt = OpenTK.Graphics.ES30.GetConvolutionParameter.ConvolutionFormatExt; - var _ConvolutionWidthExt = OpenTK.Graphics.ES30.GetConvolutionParameter.ConvolutionWidthExt; - var _ConvolutionHeightExt = OpenTK.Graphics.ES30.GetConvolutionParameter.ConvolutionHeightExt; - var _MaxConvolutionWidthExt = OpenTK.Graphics.ES30.GetConvolutionParameter.MaxConvolutionWidthExt; - var _MaxConvolutionHeightExt = OpenTK.Graphics.ES30.GetConvolutionParameter.MaxConvolutionHeightExt; -} -static void Test_GetHistogramParameterPNameExt_37882() { - var _HistogramWidthExt = OpenTK.Graphics.ES30.GetHistogramParameterPNameExt.HistogramWidthExt; - var _HistogramFormatExt = OpenTK.Graphics.ES30.GetHistogramParameterPNameExt.HistogramFormatExt; - var _HistogramRedSizeExt = OpenTK.Graphics.ES30.GetHistogramParameterPNameExt.HistogramRedSizeExt; - var _HistogramGreenSizeExt = OpenTK.Graphics.ES30.GetHistogramParameterPNameExt.HistogramGreenSizeExt; - var _HistogramBlueSizeExt = OpenTK.Graphics.ES30.GetHistogramParameterPNameExt.HistogramBlueSizeExt; - var _HistogramAlphaSizeExt = OpenTK.Graphics.ES30.GetHistogramParameterPNameExt.HistogramAlphaSizeExt; - var _HistogramLuminanceSizeExt = OpenTK.Graphics.ES30.GetHistogramParameterPNameExt.HistogramLuminanceSizeExt; - var _HistogramSinkExt = OpenTK.Graphics.ES30.GetHistogramParameterPNameExt.HistogramSinkExt; -} -static void Test_GetIndexedPName_37883() { - var _DrawBufferExt = OpenTK.Graphics.ES30.GetIndexedPName.DrawBufferExt; - var _ReadBufferExt = OpenTK.Graphics.ES30.GetIndexedPName.ReadBufferExt; - var _UniformBufferBinding = OpenTK.Graphics.ES30.GetIndexedPName.UniformBufferBinding; - var _UniformBufferStart = OpenTK.Graphics.ES30.GetIndexedPName.UniformBufferStart; - var _UniformBufferSize = OpenTK.Graphics.ES30.GetIndexedPName.UniformBufferSize; - var _TransformFeedbackBufferStart = OpenTK.Graphics.ES30.GetIndexedPName.TransformFeedbackBufferStart; - var _TransformFeedbackBufferSize = OpenTK.Graphics.ES30.GetIndexedPName.TransformFeedbackBufferSize; - var _TransformFeedbackBufferBinding = OpenTK.Graphics.ES30.GetIndexedPName.TransformFeedbackBufferBinding; -} -static void Test_GetMapQuery_37884() { - var _Coeff = OpenTK.Graphics.ES30.GetMapQuery.Coeff; - var _Order = OpenTK.Graphics.ES30.GetMapQuery.Order; - var _Domain = OpenTK.Graphics.ES30.GetMapQuery.Domain; -} -static void Test_GetMinmaxParameterPNameExt_37885() { - var _MinmaxFormat = OpenTK.Graphics.ES30.GetMinmaxParameterPNameExt.MinmaxFormat; - var _MinmaxFormatExt = OpenTK.Graphics.ES30.GetMinmaxParameterPNameExt.MinmaxFormatExt; - var _MinmaxSink = OpenTK.Graphics.ES30.GetMinmaxParameterPNameExt.MinmaxSink; - var _MinmaxSinkExt = OpenTK.Graphics.ES30.GetMinmaxParameterPNameExt.MinmaxSinkExt; -} -static void Test_GetPixelMap_37886() { - var _PixelMapIToI = OpenTK.Graphics.ES30.GetPixelMap.PixelMapIToI; - var _PixelMapSToS = OpenTK.Graphics.ES30.GetPixelMap.PixelMapSToS; - var _PixelMapIToR = OpenTK.Graphics.ES30.GetPixelMap.PixelMapIToR; - var _PixelMapIToG = OpenTK.Graphics.ES30.GetPixelMap.PixelMapIToG; - var _PixelMapIToB = OpenTK.Graphics.ES30.GetPixelMap.PixelMapIToB; - var _PixelMapIToA = OpenTK.Graphics.ES30.GetPixelMap.PixelMapIToA; - var _PixelMapRToR = OpenTK.Graphics.ES30.GetPixelMap.PixelMapRToR; - var _PixelMapGToG = OpenTK.Graphics.ES30.GetPixelMap.PixelMapGToG; - var _PixelMapBToB = OpenTK.Graphics.ES30.GetPixelMap.PixelMapBToB; - var _PixelMapAToA = OpenTK.Graphics.ES30.GetPixelMap.PixelMapAToA; -} -static void Test_GetPName_37887() { - var _CurrentColor = OpenTK.Graphics.ES30.GetPName.CurrentColor; - var _CurrentIndex = OpenTK.Graphics.ES30.GetPName.CurrentIndex; - var _CurrentNormal = OpenTK.Graphics.ES30.GetPName.CurrentNormal; - var _CurrentTextureCoords = OpenTK.Graphics.ES30.GetPName.CurrentTextureCoords; - var _CurrentRasterColor = OpenTK.Graphics.ES30.GetPName.CurrentRasterColor; - var _CurrentRasterIndex = OpenTK.Graphics.ES30.GetPName.CurrentRasterIndex; - var _CurrentRasterTextureCoords = OpenTK.Graphics.ES30.GetPName.CurrentRasterTextureCoords; - var _CurrentRasterPosition = OpenTK.Graphics.ES30.GetPName.CurrentRasterPosition; - var _CurrentRasterPositionValid = OpenTK.Graphics.ES30.GetPName.CurrentRasterPositionValid; - var _CurrentRasterDistance = OpenTK.Graphics.ES30.GetPName.CurrentRasterDistance; - var _PointSmooth = OpenTK.Graphics.ES30.GetPName.PointSmooth; - var _PointSize = OpenTK.Graphics.ES30.GetPName.PointSize; - var _PointSizeRange = OpenTK.Graphics.ES30.GetPName.PointSizeRange; - var _SmoothPointSizeRange = OpenTK.Graphics.ES30.GetPName.SmoothPointSizeRange; - var _PointSizeGranularity = OpenTK.Graphics.ES30.GetPName.PointSizeGranularity; - var _SmoothPointSizeGranularity = OpenTK.Graphics.ES30.GetPName.SmoothPointSizeGranularity; - var _LineSmooth = OpenTK.Graphics.ES30.GetPName.LineSmooth; - var _LineWidth = OpenTK.Graphics.ES30.GetPName.LineWidth; - var _LineWidthRange = OpenTK.Graphics.ES30.GetPName.LineWidthRange; - var _SmoothLineWidthRange = OpenTK.Graphics.ES30.GetPName.SmoothLineWidthRange; - var _LineWidthGranularity = OpenTK.Graphics.ES30.GetPName.LineWidthGranularity; - var _SmoothLineWidthGranularity = OpenTK.Graphics.ES30.GetPName.SmoothLineWidthGranularity; - var _LineStipple = OpenTK.Graphics.ES30.GetPName.LineStipple; - var _LineStipplePattern = OpenTK.Graphics.ES30.GetPName.LineStipplePattern; - var _LineStippleRepeat = OpenTK.Graphics.ES30.GetPName.LineStippleRepeat; - var _ListMode = OpenTK.Graphics.ES30.GetPName.ListMode; - var _MaxListNesting = OpenTK.Graphics.ES30.GetPName.MaxListNesting; - var _ListBase = OpenTK.Graphics.ES30.GetPName.ListBase; - var _ListIndex = OpenTK.Graphics.ES30.GetPName.ListIndex; - var _PolygonMode = OpenTK.Graphics.ES30.GetPName.PolygonMode; - var _PolygonSmooth = OpenTK.Graphics.ES30.GetPName.PolygonSmooth; - var _PolygonStipple = OpenTK.Graphics.ES30.GetPName.PolygonStipple; - var _EdgeFlag = OpenTK.Graphics.ES30.GetPName.EdgeFlag; - var _CullFace = OpenTK.Graphics.ES30.GetPName.CullFace; - var _CullFaceMode = OpenTK.Graphics.ES30.GetPName.CullFaceMode; - var _FrontFace = OpenTK.Graphics.ES30.GetPName.FrontFace; - var _Lighting = OpenTK.Graphics.ES30.GetPName.Lighting; - var _LightModelLocalViewer = OpenTK.Graphics.ES30.GetPName.LightModelLocalViewer; - var _LightModelTwoSide = OpenTK.Graphics.ES30.GetPName.LightModelTwoSide; - var _LightModelAmbient = OpenTK.Graphics.ES30.GetPName.LightModelAmbient; - var _ShadeModel = OpenTK.Graphics.ES30.GetPName.ShadeModel; - var _ColorMaterialFace = OpenTK.Graphics.ES30.GetPName.ColorMaterialFace; - var _ColorMaterialParameter = OpenTK.Graphics.ES30.GetPName.ColorMaterialParameter; - var _ColorMaterial = OpenTK.Graphics.ES30.GetPName.ColorMaterial; - var _Fog = OpenTK.Graphics.ES30.GetPName.Fog; - var _FogIndex = OpenTK.Graphics.ES30.GetPName.FogIndex; - var _FogDensity = OpenTK.Graphics.ES30.GetPName.FogDensity; - var _FogStart = OpenTK.Graphics.ES30.GetPName.FogStart; - var _FogEnd = OpenTK.Graphics.ES30.GetPName.FogEnd; - var _FogMode = OpenTK.Graphics.ES30.GetPName.FogMode; - var _FogColor = OpenTK.Graphics.ES30.GetPName.FogColor; - var _DepthRange = OpenTK.Graphics.ES30.GetPName.DepthRange; - var _DepthTest = OpenTK.Graphics.ES30.GetPName.DepthTest; - var _DepthWritemask = OpenTK.Graphics.ES30.GetPName.DepthWritemask; - var _DepthClearValue = OpenTK.Graphics.ES30.GetPName.DepthClearValue; - var _DepthFunc = OpenTK.Graphics.ES30.GetPName.DepthFunc; - var _AccumClearValue = OpenTK.Graphics.ES30.GetPName.AccumClearValue; - var _StencilTest = OpenTK.Graphics.ES30.GetPName.StencilTest; - var _StencilClearValue = OpenTK.Graphics.ES30.GetPName.StencilClearValue; - var _StencilFunc = OpenTK.Graphics.ES30.GetPName.StencilFunc; - var _StencilValueMask = OpenTK.Graphics.ES30.GetPName.StencilValueMask; - var _StencilFail = OpenTK.Graphics.ES30.GetPName.StencilFail; - var _StencilPassDepthFail = OpenTK.Graphics.ES30.GetPName.StencilPassDepthFail; - var _StencilPassDepthPass = OpenTK.Graphics.ES30.GetPName.StencilPassDepthPass; - var _StencilRef = OpenTK.Graphics.ES30.GetPName.StencilRef; - var _StencilWritemask = OpenTK.Graphics.ES30.GetPName.StencilWritemask; - var _MatrixMode = OpenTK.Graphics.ES30.GetPName.MatrixMode; - var _Normalize = OpenTK.Graphics.ES30.GetPName.Normalize; - var _Viewport = OpenTK.Graphics.ES30.GetPName.Viewport; - var _Modelview0StackDepthExt = OpenTK.Graphics.ES30.GetPName.Modelview0StackDepthExt; - var _ModelviewStackDepth = OpenTK.Graphics.ES30.GetPName.ModelviewStackDepth; - var _ProjectionStackDepth = OpenTK.Graphics.ES30.GetPName.ProjectionStackDepth; - var _TextureStackDepth = OpenTK.Graphics.ES30.GetPName.TextureStackDepth; - var _Modelview0MatrixExt = OpenTK.Graphics.ES30.GetPName.Modelview0MatrixExt; - var _ModelviewMatrix = OpenTK.Graphics.ES30.GetPName.ModelviewMatrix; - var _ProjectionMatrix = OpenTK.Graphics.ES30.GetPName.ProjectionMatrix; - var _TextureMatrix = OpenTK.Graphics.ES30.GetPName.TextureMatrix; - var _AttribStackDepth = OpenTK.Graphics.ES30.GetPName.AttribStackDepth; - var _ClientAttribStackDepth = OpenTK.Graphics.ES30.GetPName.ClientAttribStackDepth; - var _AlphaTest = OpenTK.Graphics.ES30.GetPName.AlphaTest; - var _AlphaTestQcom = OpenTK.Graphics.ES30.GetPName.AlphaTestQcom; - var _AlphaTestFunc = OpenTK.Graphics.ES30.GetPName.AlphaTestFunc; - var _AlphaTestFuncQcom = OpenTK.Graphics.ES30.GetPName.AlphaTestFuncQcom; - var _AlphaTestRef = OpenTK.Graphics.ES30.GetPName.AlphaTestRef; - var _AlphaTestRefQcom = OpenTK.Graphics.ES30.GetPName.AlphaTestRefQcom; - var _Dither = OpenTK.Graphics.ES30.GetPName.Dither; - var _BlendDst = OpenTK.Graphics.ES30.GetPName.BlendDst; - var _BlendSrc = OpenTK.Graphics.ES30.GetPName.BlendSrc; - var _Blend = OpenTK.Graphics.ES30.GetPName.Blend; - var _LogicOpMode = OpenTK.Graphics.ES30.GetPName.LogicOpMode; - var _IndexLogicOp = OpenTK.Graphics.ES30.GetPName.IndexLogicOp; - var _LogicOp = OpenTK.Graphics.ES30.GetPName.LogicOp; - var _ColorLogicOp = OpenTK.Graphics.ES30.GetPName.ColorLogicOp; - var _AuxBuffers = OpenTK.Graphics.ES30.GetPName.AuxBuffers; - var _DrawBuffer = OpenTK.Graphics.ES30.GetPName.DrawBuffer; - var _DrawBufferExt = OpenTK.Graphics.ES30.GetPName.DrawBufferExt; - var _ReadBuffer = OpenTK.Graphics.ES30.GetPName.ReadBuffer; - var _ReadBufferExt = OpenTK.Graphics.ES30.GetPName.ReadBufferExt; - var _ReadBufferNv = OpenTK.Graphics.ES30.GetPName.ReadBufferNv; - var _ScissorBox = OpenTK.Graphics.ES30.GetPName.ScissorBox; - var _ScissorTest = OpenTK.Graphics.ES30.GetPName.ScissorTest; - var _IndexClearValue = OpenTK.Graphics.ES30.GetPName.IndexClearValue; - var _IndexWritemask = OpenTK.Graphics.ES30.GetPName.IndexWritemask; - var _ColorClearValue = OpenTK.Graphics.ES30.GetPName.ColorClearValue; - var _ColorWritemask = OpenTK.Graphics.ES30.GetPName.ColorWritemask; - var _IndexMode = OpenTK.Graphics.ES30.GetPName.IndexMode; - var _RgbaMode = OpenTK.Graphics.ES30.GetPName.RgbaMode; - var _Doublebuffer = OpenTK.Graphics.ES30.GetPName.Doublebuffer; - var _Stereo = OpenTK.Graphics.ES30.GetPName.Stereo; - var _RenderMode = OpenTK.Graphics.ES30.GetPName.RenderMode; - var _PerspectiveCorrectionHint = OpenTK.Graphics.ES30.GetPName.PerspectiveCorrectionHint; - var _PointSmoothHint = OpenTK.Graphics.ES30.GetPName.PointSmoothHint; - var _LineSmoothHint = OpenTK.Graphics.ES30.GetPName.LineSmoothHint; - var _PolygonSmoothHint = OpenTK.Graphics.ES30.GetPName.PolygonSmoothHint; - var _FogHint = OpenTK.Graphics.ES30.GetPName.FogHint; - var _TextureGenS = OpenTK.Graphics.ES30.GetPName.TextureGenS; - var _TextureGenT = OpenTK.Graphics.ES30.GetPName.TextureGenT; - var _TextureGenR = OpenTK.Graphics.ES30.GetPName.TextureGenR; - var _TextureGenQ = OpenTK.Graphics.ES30.GetPName.TextureGenQ; - var _PixelMapIToISize = OpenTK.Graphics.ES30.GetPName.PixelMapIToISize; - var _PixelMapSToSSize = OpenTK.Graphics.ES30.GetPName.PixelMapSToSSize; - var _PixelMapIToRSize = OpenTK.Graphics.ES30.GetPName.PixelMapIToRSize; - var _PixelMapIToGSize = OpenTK.Graphics.ES30.GetPName.PixelMapIToGSize; - var _PixelMapIToBSize = OpenTK.Graphics.ES30.GetPName.PixelMapIToBSize; - var _PixelMapIToASize = OpenTK.Graphics.ES30.GetPName.PixelMapIToASize; - var _PixelMapRToRSize = OpenTK.Graphics.ES30.GetPName.PixelMapRToRSize; - var _PixelMapGToGSize = OpenTK.Graphics.ES30.GetPName.PixelMapGToGSize; - var _PixelMapBToBSize = OpenTK.Graphics.ES30.GetPName.PixelMapBToBSize; - var _PixelMapAToASize = OpenTK.Graphics.ES30.GetPName.PixelMapAToASize; - var _UnpackSwapBytes = OpenTK.Graphics.ES30.GetPName.UnpackSwapBytes; - var _UnpackLsbFirst = OpenTK.Graphics.ES30.GetPName.UnpackLsbFirst; - var _UnpackRowLength = OpenTK.Graphics.ES30.GetPName.UnpackRowLength; - var _UnpackSkipRows = OpenTK.Graphics.ES30.GetPName.UnpackSkipRows; - var _UnpackSkipPixels = OpenTK.Graphics.ES30.GetPName.UnpackSkipPixels; - var _UnpackAlignment = OpenTK.Graphics.ES30.GetPName.UnpackAlignment; - var _PackSwapBytes = OpenTK.Graphics.ES30.GetPName.PackSwapBytes; - var _PackLsbFirst = OpenTK.Graphics.ES30.GetPName.PackLsbFirst; - var _PackRowLength = OpenTK.Graphics.ES30.GetPName.PackRowLength; - var _PackSkipRows = OpenTK.Graphics.ES30.GetPName.PackSkipRows; - var _PackSkipPixels = OpenTK.Graphics.ES30.GetPName.PackSkipPixels; - var _PackAlignment = OpenTK.Graphics.ES30.GetPName.PackAlignment; - var _MapColor = OpenTK.Graphics.ES30.GetPName.MapColor; - var _MapStencil = OpenTK.Graphics.ES30.GetPName.MapStencil; - var _IndexShift = OpenTK.Graphics.ES30.GetPName.IndexShift; - var _IndexOffset = OpenTK.Graphics.ES30.GetPName.IndexOffset; - var _RedScale = OpenTK.Graphics.ES30.GetPName.RedScale; - var _RedBias = OpenTK.Graphics.ES30.GetPName.RedBias; - var _ZoomX = OpenTK.Graphics.ES30.GetPName.ZoomX; - var _ZoomY = OpenTK.Graphics.ES30.GetPName.ZoomY; - var _GreenScale = OpenTK.Graphics.ES30.GetPName.GreenScale; - var _GreenBias = OpenTK.Graphics.ES30.GetPName.GreenBias; - var _BlueScale = OpenTK.Graphics.ES30.GetPName.BlueScale; - var _BlueBias = OpenTK.Graphics.ES30.GetPName.BlueBias; - var _AlphaScale = OpenTK.Graphics.ES30.GetPName.AlphaScale; - var _AlphaBias = OpenTK.Graphics.ES30.GetPName.AlphaBias; - var _DepthScale = OpenTK.Graphics.ES30.GetPName.DepthScale; - var _DepthBias = OpenTK.Graphics.ES30.GetPName.DepthBias; - var _MaxEvalOrder = OpenTK.Graphics.ES30.GetPName.MaxEvalOrder; - var _MaxLights = OpenTK.Graphics.ES30.GetPName.MaxLights; - var _MaxClipDistances = OpenTK.Graphics.ES30.GetPName.MaxClipDistances; - var _MaxClipPlanes = OpenTK.Graphics.ES30.GetPName.MaxClipPlanes; - var _MaxTextureSize = OpenTK.Graphics.ES30.GetPName.MaxTextureSize; - var _MaxPixelMapTable = OpenTK.Graphics.ES30.GetPName.MaxPixelMapTable; - var _MaxAttribStackDepth = OpenTK.Graphics.ES30.GetPName.MaxAttribStackDepth; - var _MaxModelviewStackDepth = OpenTK.Graphics.ES30.GetPName.MaxModelviewStackDepth; - var _MaxNameStackDepth = OpenTK.Graphics.ES30.GetPName.MaxNameStackDepth; - var _MaxProjectionStackDepth = OpenTK.Graphics.ES30.GetPName.MaxProjectionStackDepth; - var _MaxTextureStackDepth = OpenTK.Graphics.ES30.GetPName.MaxTextureStackDepth; - var _MaxViewportDims = OpenTK.Graphics.ES30.GetPName.MaxViewportDims; - var _MaxClientAttribStackDepth = OpenTK.Graphics.ES30.GetPName.MaxClientAttribStackDepth; - var _SubpixelBits = OpenTK.Graphics.ES30.GetPName.SubpixelBits; - var _IndexBits = OpenTK.Graphics.ES30.GetPName.IndexBits; - var _RedBits = OpenTK.Graphics.ES30.GetPName.RedBits; - var _GreenBits = OpenTK.Graphics.ES30.GetPName.GreenBits; - var _BlueBits = OpenTK.Graphics.ES30.GetPName.BlueBits; - var _AlphaBits = OpenTK.Graphics.ES30.GetPName.AlphaBits; - var _DepthBits = OpenTK.Graphics.ES30.GetPName.DepthBits; - var _StencilBits = OpenTK.Graphics.ES30.GetPName.StencilBits; - var _AccumRedBits = OpenTK.Graphics.ES30.GetPName.AccumRedBits; - var _AccumGreenBits = OpenTK.Graphics.ES30.GetPName.AccumGreenBits; - var _AccumBlueBits = OpenTK.Graphics.ES30.GetPName.AccumBlueBits; - var _AccumAlphaBits = OpenTK.Graphics.ES30.GetPName.AccumAlphaBits; - var _NameStackDepth = OpenTK.Graphics.ES30.GetPName.NameStackDepth; - var _AutoNormal = OpenTK.Graphics.ES30.GetPName.AutoNormal; - var _Map1Color4 = OpenTK.Graphics.ES30.GetPName.Map1Color4; - var _Map1Index = OpenTK.Graphics.ES30.GetPName.Map1Index; - var _Map1Normal = OpenTK.Graphics.ES30.GetPName.Map1Normal; - var _Map1TextureCoord1 = OpenTK.Graphics.ES30.GetPName.Map1TextureCoord1; - var _Map1TextureCoord2 = OpenTK.Graphics.ES30.GetPName.Map1TextureCoord2; - var _Map1TextureCoord3 = OpenTK.Graphics.ES30.GetPName.Map1TextureCoord3; - var _Map1TextureCoord4 = OpenTK.Graphics.ES30.GetPName.Map1TextureCoord4; - var _Map1Vertex3 = OpenTK.Graphics.ES30.GetPName.Map1Vertex3; - var _Map1Vertex4 = OpenTK.Graphics.ES30.GetPName.Map1Vertex4; - var _Map2Color4 = OpenTK.Graphics.ES30.GetPName.Map2Color4; - var _Map2Index = OpenTK.Graphics.ES30.GetPName.Map2Index; - var _Map2Normal = OpenTK.Graphics.ES30.GetPName.Map2Normal; - var _Map2TextureCoord1 = OpenTK.Graphics.ES30.GetPName.Map2TextureCoord1; - var _Map2TextureCoord2 = OpenTK.Graphics.ES30.GetPName.Map2TextureCoord2; - var _Map2TextureCoord3 = OpenTK.Graphics.ES30.GetPName.Map2TextureCoord3; - var _Map2TextureCoord4 = OpenTK.Graphics.ES30.GetPName.Map2TextureCoord4; - var _Map2Vertex3 = OpenTK.Graphics.ES30.GetPName.Map2Vertex3; - var _Map2Vertex4 = OpenTK.Graphics.ES30.GetPName.Map2Vertex4; - var _Map1GridDomain = OpenTK.Graphics.ES30.GetPName.Map1GridDomain; - var _Map1GridSegments = OpenTK.Graphics.ES30.GetPName.Map1GridSegments; - var _Map2GridDomain = OpenTK.Graphics.ES30.GetPName.Map2GridDomain; - var _Map2GridSegments = OpenTK.Graphics.ES30.GetPName.Map2GridSegments; - var _Texture1D = OpenTK.Graphics.ES30.GetPName.Texture1D; - var _Texture2D = OpenTK.Graphics.ES30.GetPName.Texture2D; - var _FeedbackBufferSize = OpenTK.Graphics.ES30.GetPName.FeedbackBufferSize; - var _FeedbackBufferType = OpenTK.Graphics.ES30.GetPName.FeedbackBufferType; - var _SelectionBufferSize = OpenTK.Graphics.ES30.GetPName.SelectionBufferSize; - var _PolygonOffsetUnits = OpenTK.Graphics.ES30.GetPName.PolygonOffsetUnits; - var _PolygonOffsetPoint = OpenTK.Graphics.ES30.GetPName.PolygonOffsetPoint; - var _PolygonOffsetLine = OpenTK.Graphics.ES30.GetPName.PolygonOffsetLine; - var _ClipPlane0 = OpenTK.Graphics.ES30.GetPName.ClipPlane0; - var _ClipPlane1 = OpenTK.Graphics.ES30.GetPName.ClipPlane1; - var _ClipPlane2 = OpenTK.Graphics.ES30.GetPName.ClipPlane2; - var _ClipPlane3 = OpenTK.Graphics.ES30.GetPName.ClipPlane3; - var _ClipPlane4 = OpenTK.Graphics.ES30.GetPName.ClipPlane4; - var _ClipPlane5 = OpenTK.Graphics.ES30.GetPName.ClipPlane5; - var _Light0 = OpenTK.Graphics.ES30.GetPName.Light0; - var _Light1 = OpenTK.Graphics.ES30.GetPName.Light1; - var _Light2 = OpenTK.Graphics.ES30.GetPName.Light2; - var _Light3 = OpenTK.Graphics.ES30.GetPName.Light3; - var _Light4 = OpenTK.Graphics.ES30.GetPName.Light4; - var _Light5 = OpenTK.Graphics.ES30.GetPName.Light5; - var _Light6 = OpenTK.Graphics.ES30.GetPName.Light6; - var _Light7 = OpenTK.Graphics.ES30.GetPName.Light7; - var _BlendColor = OpenTK.Graphics.ES30.GetPName.BlendColor; - var _BlendColorExt = OpenTK.Graphics.ES30.GetPName.BlendColorExt; - var _BlendEquationExt = OpenTK.Graphics.ES30.GetPName.BlendEquationExt; - var _BlendEquationRgb = OpenTK.Graphics.ES30.GetPName.BlendEquationRgb; - var _BlendEquation = OpenTK.Graphics.ES30.GetPName.BlendEquation; - var _PackCmykHintExt = OpenTK.Graphics.ES30.GetPName.PackCmykHintExt; - var _UnpackCmykHintExt = OpenTK.Graphics.ES30.GetPName.UnpackCmykHintExt; - var _Convolution1DExt = OpenTK.Graphics.ES30.GetPName.Convolution1DExt; - var _Convolution2DExt = OpenTK.Graphics.ES30.GetPName.Convolution2DExt; - var _Separable2DExt = OpenTK.Graphics.ES30.GetPName.Separable2DExt; - var _PostConvolutionRedScaleExt = OpenTK.Graphics.ES30.GetPName.PostConvolutionRedScaleExt; - var _PostConvolutionGreenScaleExt = OpenTK.Graphics.ES30.GetPName.PostConvolutionGreenScaleExt; - var _PostConvolutionBlueScaleExt = OpenTK.Graphics.ES30.GetPName.PostConvolutionBlueScaleExt; - var _PostConvolutionAlphaScaleExt = OpenTK.Graphics.ES30.GetPName.PostConvolutionAlphaScaleExt; - var _PostConvolutionRedBiasExt = OpenTK.Graphics.ES30.GetPName.PostConvolutionRedBiasExt; - var _PostConvolutionGreenBiasExt = OpenTK.Graphics.ES30.GetPName.PostConvolutionGreenBiasExt; - var _PostConvolutionBlueBiasExt = OpenTK.Graphics.ES30.GetPName.PostConvolutionBlueBiasExt; - var _PostConvolutionAlphaBiasExt = OpenTK.Graphics.ES30.GetPName.PostConvolutionAlphaBiasExt; - var _HistogramExt = OpenTK.Graphics.ES30.GetPName.HistogramExt; - var _MinmaxExt = OpenTK.Graphics.ES30.GetPName.MinmaxExt; - var _PolygonOffsetFill = OpenTK.Graphics.ES30.GetPName.PolygonOffsetFill; - var _PolygonOffsetFactor = OpenTK.Graphics.ES30.GetPName.PolygonOffsetFactor; - var _PolygonOffsetBiasExt = OpenTK.Graphics.ES30.GetPName.PolygonOffsetBiasExt; - var _RescaleNormalExt = OpenTK.Graphics.ES30.GetPName.RescaleNormalExt; - var _TextureBinding1D = OpenTK.Graphics.ES30.GetPName.TextureBinding1D; - var _TextureBinding2D = OpenTK.Graphics.ES30.GetPName.TextureBinding2D; - var _Texture3DBindingExt = OpenTK.Graphics.ES30.GetPName.Texture3DBindingExt; - var _TextureBinding3D = OpenTK.Graphics.ES30.GetPName.TextureBinding3D; - var _TextureBinding3DOes = OpenTK.Graphics.ES30.GetPName.TextureBinding3DOes; - var _PackSkipImagesExt = OpenTK.Graphics.ES30.GetPName.PackSkipImagesExt; - var _PackImageHeightExt = OpenTK.Graphics.ES30.GetPName.PackImageHeightExt; - var _UnpackSkipImages = OpenTK.Graphics.ES30.GetPName.UnpackSkipImages; - var _UnpackSkipImagesExt = OpenTK.Graphics.ES30.GetPName.UnpackSkipImagesExt; - var _UnpackImageHeight = OpenTK.Graphics.ES30.GetPName.UnpackImageHeight; - var _UnpackImageHeightExt = OpenTK.Graphics.ES30.GetPName.UnpackImageHeightExt; - var _Texture3DExt = OpenTK.Graphics.ES30.GetPName.Texture3DExt; - var _Max3DTextureSize = OpenTK.Graphics.ES30.GetPName.Max3DTextureSize; - var _Max3DTextureSizeExt = OpenTK.Graphics.ES30.GetPName.Max3DTextureSizeExt; - var _Max3DTextureSizeOes = OpenTK.Graphics.ES30.GetPName.Max3DTextureSizeOes; - var _VertexArray = OpenTK.Graphics.ES30.GetPName.VertexArray; - var _NormalArray = OpenTK.Graphics.ES30.GetPName.NormalArray; - var _ColorArray = OpenTK.Graphics.ES30.GetPName.ColorArray; - var _IndexArray = OpenTK.Graphics.ES30.GetPName.IndexArray; - var _TextureCoordArray = OpenTK.Graphics.ES30.GetPName.TextureCoordArray; - var _EdgeFlagArray = OpenTK.Graphics.ES30.GetPName.EdgeFlagArray; - var _VertexArraySize = OpenTK.Graphics.ES30.GetPName.VertexArraySize; - var _VertexArrayType = OpenTK.Graphics.ES30.GetPName.VertexArrayType; - var _VertexArrayStride = OpenTK.Graphics.ES30.GetPName.VertexArrayStride; - var _VertexArrayCountExt = OpenTK.Graphics.ES30.GetPName.VertexArrayCountExt; - var _NormalArrayType = OpenTK.Graphics.ES30.GetPName.NormalArrayType; - var _NormalArrayStride = OpenTK.Graphics.ES30.GetPName.NormalArrayStride; - var _NormalArrayCountExt = OpenTK.Graphics.ES30.GetPName.NormalArrayCountExt; - var _ColorArraySize = OpenTK.Graphics.ES30.GetPName.ColorArraySize; - var _ColorArrayType = OpenTK.Graphics.ES30.GetPName.ColorArrayType; - var _ColorArrayStride = OpenTK.Graphics.ES30.GetPName.ColorArrayStride; - var _ColorArrayCountExt = OpenTK.Graphics.ES30.GetPName.ColorArrayCountExt; - var _IndexArrayType = OpenTK.Graphics.ES30.GetPName.IndexArrayType; - var _IndexArrayStride = OpenTK.Graphics.ES30.GetPName.IndexArrayStride; - var _IndexArrayCountExt = OpenTK.Graphics.ES30.GetPName.IndexArrayCountExt; - var _TextureCoordArraySize = OpenTK.Graphics.ES30.GetPName.TextureCoordArraySize; - var _TextureCoordArrayType = OpenTK.Graphics.ES30.GetPName.TextureCoordArrayType; - var _TextureCoordArrayStride = OpenTK.Graphics.ES30.GetPName.TextureCoordArrayStride; - var _TextureCoordArrayCountExt = OpenTK.Graphics.ES30.GetPName.TextureCoordArrayCountExt; - var _EdgeFlagArrayStride = OpenTK.Graphics.ES30.GetPName.EdgeFlagArrayStride; - var _EdgeFlagArrayCountExt = OpenTK.Graphics.ES30.GetPName.EdgeFlagArrayCountExt; - var _InterlaceSgix = OpenTK.Graphics.ES30.GetPName.InterlaceSgix; - var _DetailTexture2DBindingSgis = OpenTK.Graphics.ES30.GetPName.DetailTexture2DBindingSgis; - var _MultisampleSgis = OpenTK.Graphics.ES30.GetPName.MultisampleSgis; - var _SampleAlphaToCoverage = OpenTK.Graphics.ES30.GetPName.SampleAlphaToCoverage; - var _SampleAlphaToMaskSgis = OpenTK.Graphics.ES30.GetPName.SampleAlphaToMaskSgis; - var _SampleAlphaToOneSgis = OpenTK.Graphics.ES30.GetPName.SampleAlphaToOneSgis; - var _SampleCoverage = OpenTK.Graphics.ES30.GetPName.SampleCoverage; - var _SampleMaskSgis = OpenTK.Graphics.ES30.GetPName.SampleMaskSgis; - var _SampleBuffers = OpenTK.Graphics.ES30.GetPName.SampleBuffers; - var _SampleBuffersSgis = OpenTK.Graphics.ES30.GetPName.SampleBuffersSgis; - var _SamplesSgis = OpenTK.Graphics.ES30.GetPName.SamplesSgis; - var _Samples = OpenTK.Graphics.ES30.GetPName.Samples; - var _SampleCoverageValue = OpenTK.Graphics.ES30.GetPName.SampleCoverageValue; - var _SampleMaskValueSgis = OpenTK.Graphics.ES30.GetPName.SampleMaskValueSgis; - var _SampleCoverageInvert = OpenTK.Graphics.ES30.GetPName.SampleCoverageInvert; - var _SampleMaskInvertSgis = OpenTK.Graphics.ES30.GetPName.SampleMaskInvertSgis; - var _SamplePatternSgis = OpenTK.Graphics.ES30.GetPName.SamplePatternSgis; - var _ColorMatrixSgi = OpenTK.Graphics.ES30.GetPName.ColorMatrixSgi; - var _ColorMatrixStackDepthSgi = OpenTK.Graphics.ES30.GetPName.ColorMatrixStackDepthSgi; - var _MaxColorMatrixStackDepthSgi = OpenTK.Graphics.ES30.GetPName.MaxColorMatrixStackDepthSgi; - var _PostColorMatrixRedScaleSgi = OpenTK.Graphics.ES30.GetPName.PostColorMatrixRedScaleSgi; - var _PostColorMatrixGreenScaleSgi = OpenTK.Graphics.ES30.GetPName.PostColorMatrixGreenScaleSgi; - var _PostColorMatrixBlueScaleSgi = OpenTK.Graphics.ES30.GetPName.PostColorMatrixBlueScaleSgi; - var _PostColorMatrixAlphaScaleSgi = OpenTK.Graphics.ES30.GetPName.PostColorMatrixAlphaScaleSgi; - var _PostColorMatrixRedBiasSgi = OpenTK.Graphics.ES30.GetPName.PostColorMatrixRedBiasSgi; - var _PostColorMatrixGreenBiasSgi = OpenTK.Graphics.ES30.GetPName.PostColorMatrixGreenBiasSgi; - var _PostColorMatrixBlueBiasSgi = OpenTK.Graphics.ES30.GetPName.PostColorMatrixBlueBiasSgi; - var _PostColorMatrixAlphaBiasSgi = OpenTK.Graphics.ES30.GetPName.PostColorMatrixAlphaBiasSgi; - var _TextureColorTableSgi = OpenTK.Graphics.ES30.GetPName.TextureColorTableSgi; - var _BlendDstRgb = OpenTK.Graphics.ES30.GetPName.BlendDstRgb; - var _BlendSrcRgb = OpenTK.Graphics.ES30.GetPName.BlendSrcRgb; - var _BlendDstAlpha = OpenTK.Graphics.ES30.GetPName.BlendDstAlpha; - var _BlendSrcAlpha = OpenTK.Graphics.ES30.GetPName.BlendSrcAlpha; - var _ColorTableSgi = OpenTK.Graphics.ES30.GetPName.ColorTableSgi; - var _PostConvolutionColorTableSgi = OpenTK.Graphics.ES30.GetPName.PostConvolutionColorTableSgi; - var _PostColorMatrixColorTableSgi = OpenTK.Graphics.ES30.GetPName.PostColorMatrixColorTableSgi; - var _MaxElementsVertices = OpenTK.Graphics.ES30.GetPName.MaxElementsVertices; - var _MaxElementsIndices = OpenTK.Graphics.ES30.GetPName.MaxElementsIndices; - var _PointSizeMinSgis = OpenTK.Graphics.ES30.GetPName.PointSizeMinSgis; - var _PointSizeMaxSgis = OpenTK.Graphics.ES30.GetPName.PointSizeMaxSgis; - var _PointFadeThresholdSizeSgis = OpenTK.Graphics.ES30.GetPName.PointFadeThresholdSizeSgis; - var _DistanceAttenuationSgis = OpenTK.Graphics.ES30.GetPName.DistanceAttenuationSgis; - var _FogFuncPointsSgis = OpenTK.Graphics.ES30.GetPName.FogFuncPointsSgis; - var _MaxFogFuncPointsSgis = OpenTK.Graphics.ES30.GetPName.MaxFogFuncPointsSgis; - var _PackSkipVolumesSgis = OpenTK.Graphics.ES30.GetPName.PackSkipVolumesSgis; - var _PackImageDepthSgis = OpenTK.Graphics.ES30.GetPName.PackImageDepthSgis; - var _UnpackSkipVolumesSgis = OpenTK.Graphics.ES30.GetPName.UnpackSkipVolumesSgis; - var _UnpackImageDepthSgis = OpenTK.Graphics.ES30.GetPName.UnpackImageDepthSgis; - var _Texture4DSgis = OpenTK.Graphics.ES30.GetPName.Texture4DSgis; - var _Max4DTextureSizeSgis = OpenTK.Graphics.ES30.GetPName.Max4DTextureSizeSgis; - var _PixelTexGenSgix = OpenTK.Graphics.ES30.GetPName.PixelTexGenSgix; - var _PixelTileBestAlignmentSgix = OpenTK.Graphics.ES30.GetPName.PixelTileBestAlignmentSgix; - var _PixelTileCacheIncrementSgix = OpenTK.Graphics.ES30.GetPName.PixelTileCacheIncrementSgix; - var _PixelTileWidthSgix = OpenTK.Graphics.ES30.GetPName.PixelTileWidthSgix; - var _PixelTileHeightSgix = OpenTK.Graphics.ES30.GetPName.PixelTileHeightSgix; - var _PixelTileGridWidthSgix = OpenTK.Graphics.ES30.GetPName.PixelTileGridWidthSgix; - var _PixelTileGridHeightSgix = OpenTK.Graphics.ES30.GetPName.PixelTileGridHeightSgix; - var _PixelTileGridDepthSgix = OpenTK.Graphics.ES30.GetPName.PixelTileGridDepthSgix; - var _PixelTileCacheSizeSgix = OpenTK.Graphics.ES30.GetPName.PixelTileCacheSizeSgix; - var _SpriteSgix = OpenTK.Graphics.ES30.GetPName.SpriteSgix; - var _SpriteModeSgix = OpenTK.Graphics.ES30.GetPName.SpriteModeSgix; - var _SpriteAxisSgix = OpenTK.Graphics.ES30.GetPName.SpriteAxisSgix; - var _SpriteTranslationSgix = OpenTK.Graphics.ES30.GetPName.SpriteTranslationSgix; - var _Texture4DBindingSgis = OpenTK.Graphics.ES30.GetPName.Texture4DBindingSgis; - var _MaxClipmapDepthSgix = OpenTK.Graphics.ES30.GetPName.MaxClipmapDepthSgix; - var _MaxClipmapVirtualDepthSgix = OpenTK.Graphics.ES30.GetPName.MaxClipmapVirtualDepthSgix; - var _PostTextureFilterBiasRangeSgix = OpenTK.Graphics.ES30.GetPName.PostTextureFilterBiasRangeSgix; - var _PostTextureFilterScaleRangeSgix = OpenTK.Graphics.ES30.GetPName.PostTextureFilterScaleRangeSgix; - var _ReferencePlaneSgix = OpenTK.Graphics.ES30.GetPName.ReferencePlaneSgix; - var _ReferencePlaneEquationSgix = OpenTK.Graphics.ES30.GetPName.ReferencePlaneEquationSgix; - var _IrInstrument1Sgix = OpenTK.Graphics.ES30.GetPName.IrInstrument1Sgix; - var _InstrumentMeasurementsSgix = OpenTK.Graphics.ES30.GetPName.InstrumentMeasurementsSgix; - var _CalligraphicFragmentSgix = OpenTK.Graphics.ES30.GetPName.CalligraphicFragmentSgix; - var _FramezoomSgix = OpenTK.Graphics.ES30.GetPName.FramezoomSgix; - var _FramezoomFactorSgix = OpenTK.Graphics.ES30.GetPName.FramezoomFactorSgix; - var _MaxFramezoomFactorSgix = OpenTK.Graphics.ES30.GetPName.MaxFramezoomFactorSgix; - var _GenerateMipmapHint = OpenTK.Graphics.ES30.GetPName.GenerateMipmapHint; - var _GenerateMipmapHintSgis = OpenTK.Graphics.ES30.GetPName.GenerateMipmapHintSgis; - var _DeformationsMaskSgix = OpenTK.Graphics.ES30.GetPName.DeformationsMaskSgix; - var _FogOffsetSgix = OpenTK.Graphics.ES30.GetPName.FogOffsetSgix; - var _FogOffsetValueSgix = OpenTK.Graphics.ES30.GetPName.FogOffsetValueSgix; - var _LightModelColorControl = OpenTK.Graphics.ES30.GetPName.LightModelColorControl; - var _SharedTexturePaletteExt = OpenTK.Graphics.ES30.GetPName.SharedTexturePaletteExt; - var _MajorVersion = OpenTK.Graphics.ES30.GetPName.MajorVersion; - var _MinorVersion = OpenTK.Graphics.ES30.GetPName.MinorVersion; - var _NumExtensions = OpenTK.Graphics.ES30.GetPName.NumExtensions; - var _ConvolutionHintSgix = OpenTK.Graphics.ES30.GetPName.ConvolutionHintSgix; - var _AsyncMarkerSgix = OpenTK.Graphics.ES30.GetPName.AsyncMarkerSgix; - var _PixelTexGenModeSgix = OpenTK.Graphics.ES30.GetPName.PixelTexGenModeSgix; - var _AsyncHistogramSgix = OpenTK.Graphics.ES30.GetPName.AsyncHistogramSgix; - var _MaxAsyncHistogramSgix = OpenTK.Graphics.ES30.GetPName.MaxAsyncHistogramSgix; - var _PixelTextureSgis = OpenTK.Graphics.ES30.GetPName.PixelTextureSgis; - var _AsyncTexImageSgix = OpenTK.Graphics.ES30.GetPName.AsyncTexImageSgix; - var _AsyncDrawPixelsSgix = OpenTK.Graphics.ES30.GetPName.AsyncDrawPixelsSgix; - var _AsyncReadPixelsSgix = OpenTK.Graphics.ES30.GetPName.AsyncReadPixelsSgix; - var _MaxAsyncTexImageSgix = OpenTK.Graphics.ES30.GetPName.MaxAsyncTexImageSgix; - var _MaxAsyncDrawPixelsSgix = OpenTK.Graphics.ES30.GetPName.MaxAsyncDrawPixelsSgix; - var _MaxAsyncReadPixelsSgix = OpenTK.Graphics.ES30.GetPName.MaxAsyncReadPixelsSgix; - var _VertexPreclipSgix = OpenTK.Graphics.ES30.GetPName.VertexPreclipSgix; - var _VertexPreclipHintSgix = OpenTK.Graphics.ES30.GetPName.VertexPreclipHintSgix; - var _FragmentLightingSgix = OpenTK.Graphics.ES30.GetPName.FragmentLightingSgix; - var _FragmentColorMaterialSgix = OpenTK.Graphics.ES30.GetPName.FragmentColorMaterialSgix; - var _FragmentColorMaterialFaceSgix = OpenTK.Graphics.ES30.GetPName.FragmentColorMaterialFaceSgix; - var _FragmentColorMaterialParameterSgix = OpenTK.Graphics.ES30.GetPName.FragmentColorMaterialParameterSgix; - var _MaxFragmentLightsSgix = OpenTK.Graphics.ES30.GetPName.MaxFragmentLightsSgix; - var _MaxActiveLightsSgix = OpenTK.Graphics.ES30.GetPName.MaxActiveLightsSgix; - var _LightEnvModeSgix = OpenTK.Graphics.ES30.GetPName.LightEnvModeSgix; - var _FragmentLightModelLocalViewerSgix = OpenTK.Graphics.ES30.GetPName.FragmentLightModelLocalViewerSgix; - var _FragmentLightModelTwoSideSgix = OpenTK.Graphics.ES30.GetPName.FragmentLightModelTwoSideSgix; - var _FragmentLightModelAmbientSgix = OpenTK.Graphics.ES30.GetPName.FragmentLightModelAmbientSgix; - var _FragmentLightModelNormalInterpolationSgix = OpenTK.Graphics.ES30.GetPName.FragmentLightModelNormalInterpolationSgix; - var _FragmentLight0Sgix = OpenTK.Graphics.ES30.GetPName.FragmentLight0Sgix; - var _PackResampleSgix = OpenTK.Graphics.ES30.GetPName.PackResampleSgix; - var _UnpackResampleSgix = OpenTK.Graphics.ES30.GetPName.UnpackResampleSgix; - var _AliasedPointSizeRange = OpenTK.Graphics.ES30.GetPName.AliasedPointSizeRange; - var _AliasedLineWidthRange = OpenTK.Graphics.ES30.GetPName.AliasedLineWidthRange; - var _ActiveTexture = OpenTK.Graphics.ES30.GetPName.ActiveTexture; - var _MaxRenderbufferSize = OpenTK.Graphics.ES30.GetPName.MaxRenderbufferSize; - var _MaxTextureLodBias = OpenTK.Graphics.ES30.GetPName.MaxTextureLodBias; - var _TextureBindingCubeMap = OpenTK.Graphics.ES30.GetPName.TextureBindingCubeMap; - var _MaxCubeMapTextureSize = OpenTK.Graphics.ES30.GetPName.MaxCubeMapTextureSize; - var _PackSubsampleRateSgix = OpenTK.Graphics.ES30.GetPName.PackSubsampleRateSgix; - var _UnpackSubsampleRateSgix = OpenTK.Graphics.ES30.GetPName.UnpackSubsampleRateSgix; - var _VertexArrayBinding = OpenTK.Graphics.ES30.GetPName.VertexArrayBinding; - var _NumCompressedTextureFormats = OpenTK.Graphics.ES30.GetPName.NumCompressedTextureFormats; - var _CompressedTextureFormats = OpenTK.Graphics.ES30.GetPName.CompressedTextureFormats; - var _NumProgramBinaryFormats = OpenTK.Graphics.ES30.GetPName.NumProgramBinaryFormats; - var _ProgramBinaryFormats = OpenTK.Graphics.ES30.GetPName.ProgramBinaryFormats; - var _StencilBackFunc = OpenTK.Graphics.ES30.GetPName.StencilBackFunc; - var _StencilBackFail = OpenTK.Graphics.ES30.GetPName.StencilBackFail; - var _StencilBackPassDepthFail = OpenTK.Graphics.ES30.GetPName.StencilBackPassDepthFail; - var _StencilBackPassDepthPass = OpenTK.Graphics.ES30.GetPName.StencilBackPassDepthPass; - var _MaxDrawBuffers = OpenTK.Graphics.ES30.GetPName.MaxDrawBuffers; - var _DrawBuffer0 = OpenTK.Graphics.ES30.GetPName.DrawBuffer0; - var _DrawBuffer1 = OpenTK.Graphics.ES30.GetPName.DrawBuffer1; - var _DrawBuffer2 = OpenTK.Graphics.ES30.GetPName.DrawBuffer2; - var _DrawBuffer3 = OpenTK.Graphics.ES30.GetPName.DrawBuffer3; - var _DrawBuffer4 = OpenTK.Graphics.ES30.GetPName.DrawBuffer4; - var _DrawBuffer5 = OpenTK.Graphics.ES30.GetPName.DrawBuffer5; - var _DrawBuffer6 = OpenTK.Graphics.ES30.GetPName.DrawBuffer6; - var _DrawBuffer7 = OpenTK.Graphics.ES30.GetPName.DrawBuffer7; - var _DrawBuffer8 = OpenTK.Graphics.ES30.GetPName.DrawBuffer8; - var _DrawBuffer9 = OpenTK.Graphics.ES30.GetPName.DrawBuffer9; - var _DrawBuffer10 = OpenTK.Graphics.ES30.GetPName.DrawBuffer10; - var _DrawBuffer11 = OpenTK.Graphics.ES30.GetPName.DrawBuffer11; - var _DrawBuffer12 = OpenTK.Graphics.ES30.GetPName.DrawBuffer12; - var _DrawBuffer13 = OpenTK.Graphics.ES30.GetPName.DrawBuffer13; - var _DrawBuffer14 = OpenTK.Graphics.ES30.GetPName.DrawBuffer14; - var _DrawBuffer15 = OpenTK.Graphics.ES30.GetPName.DrawBuffer15; - var _BlendEquationAlpha = OpenTK.Graphics.ES30.GetPName.BlendEquationAlpha; - var _MaxVertexAttribs = OpenTK.Graphics.ES30.GetPName.MaxVertexAttribs; - var _MaxTextureImageUnits = OpenTK.Graphics.ES30.GetPName.MaxTextureImageUnits; - var _ArrayBufferBinding = OpenTK.Graphics.ES30.GetPName.ArrayBufferBinding; - var _ElementArrayBufferBinding = OpenTK.Graphics.ES30.GetPName.ElementArrayBufferBinding; - var _PixelPackBufferBinding = OpenTK.Graphics.ES30.GetPName.PixelPackBufferBinding; - var _PixelUnpackBufferBinding = OpenTK.Graphics.ES30.GetPName.PixelUnpackBufferBinding; - var _MaxArrayTextureLayers = OpenTK.Graphics.ES30.GetPName.MaxArrayTextureLayers; - var _MinProgramTexelOffset = OpenTK.Graphics.ES30.GetPName.MinProgramTexelOffset; - var _MaxProgramTexelOffset = OpenTK.Graphics.ES30.GetPName.MaxProgramTexelOffset; - var _UniformBufferBinding = OpenTK.Graphics.ES30.GetPName.UniformBufferBinding; - var _MaxVertexUniformBlocks = OpenTK.Graphics.ES30.GetPName.MaxVertexUniformBlocks; - var _MaxFragmentUniformBlocks = OpenTK.Graphics.ES30.GetPName.MaxFragmentUniformBlocks; - var _MaxCombinedUniformBlocks = OpenTK.Graphics.ES30.GetPName.MaxCombinedUniformBlocks; - var _MaxUniformBufferBindings = OpenTK.Graphics.ES30.GetPName.MaxUniformBufferBindings; - var _MaxUniformBlockSize = OpenTK.Graphics.ES30.GetPName.MaxUniformBlockSize; - var _MaxCombinedVertexUniformComponents = OpenTK.Graphics.ES30.GetPName.MaxCombinedVertexUniformComponents; - var _MaxCombinedFragmentUniformComponents = OpenTK.Graphics.ES30.GetPName.MaxCombinedFragmentUniformComponents; - var _UniformBufferOffsetAlignment = OpenTK.Graphics.ES30.GetPName.UniformBufferOffsetAlignment; - var _MaxFragmentUniformComponents = OpenTK.Graphics.ES30.GetPName.MaxFragmentUniformComponents; - var _MaxVertexUniformComponents = OpenTK.Graphics.ES30.GetPName.MaxVertexUniformComponents; - var _MaxVaryingComponents = OpenTK.Graphics.ES30.GetPName.MaxVaryingComponents; - var _MaxVertexTextureImageUnits = OpenTK.Graphics.ES30.GetPName.MaxVertexTextureImageUnits; - var _MaxCombinedTextureImageUnits = OpenTK.Graphics.ES30.GetPName.MaxCombinedTextureImageUnits; - var _FragmentShaderDerivativeHint = OpenTK.Graphics.ES30.GetPName.FragmentShaderDerivativeHint; - var _CurrentProgram = OpenTK.Graphics.ES30.GetPName.CurrentProgram; - var _ImplementationColorReadType = OpenTK.Graphics.ES30.GetPName.ImplementationColorReadType; - var _ImplementationColorReadFormat = OpenTK.Graphics.ES30.GetPName.ImplementationColorReadFormat; - var _TextureBinding2DArray = OpenTK.Graphics.ES30.GetPName.TextureBinding2DArray; - var _MaxTransformFeedbackSeparateComponents = OpenTK.Graphics.ES30.GetPName.MaxTransformFeedbackSeparateComponents; - var _RasterizerDiscard = OpenTK.Graphics.ES30.GetPName.RasterizerDiscard; - var _MaxTransformFeedbackInterleavedComponents = OpenTK.Graphics.ES30.GetPName.MaxTransformFeedbackInterleavedComponents; - var _MaxTransformFeedbackSeparateAttribs = OpenTK.Graphics.ES30.GetPName.MaxTransformFeedbackSeparateAttribs; - var _TransformFeedbackBufferBinding = OpenTK.Graphics.ES30.GetPName.TransformFeedbackBufferBinding; - var _StencilBackRef = OpenTK.Graphics.ES30.GetPName.StencilBackRef; - var _StencilBackValueMask = OpenTK.Graphics.ES30.GetPName.StencilBackValueMask; - var _StencilBackWritemask = OpenTK.Graphics.ES30.GetPName.StencilBackWritemask; - var _DrawFramebufferBinding = OpenTK.Graphics.ES30.GetPName.DrawFramebufferBinding; - var _FramebufferBinding = OpenTK.Graphics.ES30.GetPName.FramebufferBinding; - var _RenderbufferBinding = OpenTK.Graphics.ES30.GetPName.RenderbufferBinding; - var _ReadFramebufferBinding = OpenTK.Graphics.ES30.GetPName.ReadFramebufferBinding; - var _MaxColorAttachments = OpenTK.Graphics.ES30.GetPName.MaxColorAttachments; - var _MaxSamples = OpenTK.Graphics.ES30.GetPName.MaxSamples; - var _PrimitiveRestartFixedIndex = OpenTK.Graphics.ES30.GetPName.PrimitiveRestartFixedIndex; - var _MaxElementIndex = OpenTK.Graphics.ES30.GetPName.MaxElementIndex; - var _ShaderBinaryFormats = OpenTK.Graphics.ES30.GetPName.ShaderBinaryFormats; - var _NumShaderBinaryFormats = OpenTK.Graphics.ES30.GetPName.NumShaderBinaryFormats; - var _ShaderCompiler = OpenTK.Graphics.ES30.GetPName.ShaderCompiler; - var _MaxVertexUniformVectors = OpenTK.Graphics.ES30.GetPName.MaxVertexUniformVectors; - var _MaxVaryingVectors = OpenTK.Graphics.ES30.GetPName.MaxVaryingVectors; - var _MaxFragmentUniformVectors = OpenTK.Graphics.ES30.GetPName.MaxFragmentUniformVectors; - var _TransformFeedbackPaused = OpenTK.Graphics.ES30.GetPName.TransformFeedbackPaused; - var _TransformFeedbackActive = OpenTK.Graphics.ES30.GetPName.TransformFeedbackActive; - var _TransformFeedbackBinding = OpenTK.Graphics.ES30.GetPName.TransformFeedbackBinding; - var _TimestampExt = OpenTK.Graphics.ES30.GetPName.TimestampExt; - var _CopyReadBufferBinding = OpenTK.Graphics.ES30.GetPName.CopyReadBufferBinding; - var _CopyWriteBufferBinding = OpenTK.Graphics.ES30.GetPName.CopyWriteBufferBinding; - var _GpuDisjointExt = OpenTK.Graphics.ES30.GetPName.GpuDisjointExt; - var _MaxMultiviewBuffersExt = OpenTK.Graphics.ES30.GetPName.MaxMultiviewBuffersExt; - var _MaxServerWaitTimeout = OpenTK.Graphics.ES30.GetPName.MaxServerWaitTimeout; - var _MaxVertexOutputComponents = OpenTK.Graphics.ES30.GetPName.MaxVertexOutputComponents; - var _MaxFragmentInputComponents = OpenTK.Graphics.ES30.GetPName.MaxFragmentInputComponents; -} -static void Test_GetPointervPName_37888() { - var _FeedbackBufferPointer = OpenTK.Graphics.ES30.GetPointervPName.FeedbackBufferPointer; - var _SelectionBufferPointer = OpenTK.Graphics.ES30.GetPointervPName.SelectionBufferPointer; - var _VertexArrayPointer = OpenTK.Graphics.ES30.GetPointervPName.VertexArrayPointer; - var _VertexArrayPointerExt = OpenTK.Graphics.ES30.GetPointervPName.VertexArrayPointerExt; - var _NormalArrayPointer = OpenTK.Graphics.ES30.GetPointervPName.NormalArrayPointer; - var _NormalArrayPointerExt = OpenTK.Graphics.ES30.GetPointervPName.NormalArrayPointerExt; - var _ColorArrayPointer = OpenTK.Graphics.ES30.GetPointervPName.ColorArrayPointer; - var _ColorArrayPointerExt = OpenTK.Graphics.ES30.GetPointervPName.ColorArrayPointerExt; - var _IndexArrayPointer = OpenTK.Graphics.ES30.GetPointervPName.IndexArrayPointer; - var _IndexArrayPointerExt = OpenTK.Graphics.ES30.GetPointervPName.IndexArrayPointerExt; - var _TextureCoordArrayPointer = OpenTK.Graphics.ES30.GetPointervPName.TextureCoordArrayPointer; - var _TextureCoordArrayPointerExt = OpenTK.Graphics.ES30.GetPointervPName.TextureCoordArrayPointerExt; - var _EdgeFlagArrayPointer = OpenTK.Graphics.ES30.GetPointervPName.EdgeFlagArrayPointer; - var _EdgeFlagArrayPointerExt = OpenTK.Graphics.ES30.GetPointervPName.EdgeFlagArrayPointerExt; - var _InstrumentBufferPointerSgix = OpenTK.Graphics.ES30.GetPointervPName.InstrumentBufferPointerSgix; -} -static void Test_GetProgramParameterName_37889() { - var _ProgramBinaryRetrievableHint = OpenTK.Graphics.ES30.GetProgramParameterName.ProgramBinaryRetrievableHint; - var _DeleteStatus = OpenTK.Graphics.ES30.GetProgramParameterName.DeleteStatus; - var _LinkStatus = OpenTK.Graphics.ES30.GetProgramParameterName.LinkStatus; - var _ValidateStatus = OpenTK.Graphics.ES30.GetProgramParameterName.ValidateStatus; - var _InfoLogLength = OpenTK.Graphics.ES30.GetProgramParameterName.InfoLogLength; - var _AttachedShaders = OpenTK.Graphics.ES30.GetProgramParameterName.AttachedShaders; - var _ActiveUniforms = OpenTK.Graphics.ES30.GetProgramParameterName.ActiveUniforms; - var _ActiveUniformMaxLength = OpenTK.Graphics.ES30.GetProgramParameterName.ActiveUniformMaxLength; - var _ActiveAttributes = OpenTK.Graphics.ES30.GetProgramParameterName.ActiveAttributes; - var _ActiveAttributeMaxLength = OpenTK.Graphics.ES30.GetProgramParameterName.ActiveAttributeMaxLength; -} -static void Test_GetQueryObjectParam_37890() { - var _QueryResult = OpenTK.Graphics.ES30.GetQueryObjectParam.QueryResult; - var _QueryResultExt = OpenTK.Graphics.ES30.GetQueryObjectParam.QueryResultExt; - var _QueryResultAvailable = OpenTK.Graphics.ES30.GetQueryObjectParam.QueryResultAvailable; - var _QueryResultAvailableExt = OpenTK.Graphics.ES30.GetQueryObjectParam.QueryResultAvailableExt; -} -static void Test_GetQueryParam_37891() { - var _QueryCounterBitsExt = OpenTK.Graphics.ES30.GetQueryParam.QueryCounterBitsExt; - var _CurrentQuery = OpenTK.Graphics.ES30.GetQueryParam.CurrentQuery; - var _CurrentQueryExt = OpenTK.Graphics.ES30.GetQueryParam.CurrentQueryExt; -} -static void Test_GetTextureParameter_37892() { - var _TextureWidth = OpenTK.Graphics.ES30.GetTextureParameter.TextureWidth; - var _TextureHeight = OpenTK.Graphics.ES30.GetTextureParameter.TextureHeight; - var _TextureComponents = OpenTK.Graphics.ES30.GetTextureParameter.TextureComponents; - var _TextureInternalFormat = OpenTK.Graphics.ES30.GetTextureParameter.TextureInternalFormat; - var _TextureBorderColor = OpenTK.Graphics.ES30.GetTextureParameter.TextureBorderColor; - var _TextureBorderColorNv = OpenTK.Graphics.ES30.GetTextureParameter.TextureBorderColorNv; - var _TextureBorder = OpenTK.Graphics.ES30.GetTextureParameter.TextureBorder; - var _TextureMagFilter = OpenTK.Graphics.ES30.GetTextureParameter.TextureMagFilter; - var _TextureMinFilter = OpenTK.Graphics.ES30.GetTextureParameter.TextureMinFilter; - var _TextureWrapS = OpenTK.Graphics.ES30.GetTextureParameter.TextureWrapS; - var _TextureWrapT = OpenTK.Graphics.ES30.GetTextureParameter.TextureWrapT; - var _TextureRedSize = OpenTK.Graphics.ES30.GetTextureParameter.TextureRedSize; - var _TextureGreenSize = OpenTK.Graphics.ES30.GetTextureParameter.TextureGreenSize; - var _TextureBlueSize = OpenTK.Graphics.ES30.GetTextureParameter.TextureBlueSize; - var _TextureAlphaSize = OpenTK.Graphics.ES30.GetTextureParameter.TextureAlphaSize; - var _TextureLuminanceSize = OpenTK.Graphics.ES30.GetTextureParameter.TextureLuminanceSize; - var _TextureIntensitySize = OpenTK.Graphics.ES30.GetTextureParameter.TextureIntensitySize; - var _TexturePriority = OpenTK.Graphics.ES30.GetTextureParameter.TexturePriority; - var _TextureResident = OpenTK.Graphics.ES30.GetTextureParameter.TextureResident; - var _TextureDepthExt = OpenTK.Graphics.ES30.GetTextureParameter.TextureDepthExt; - var _TextureWrapRExt = OpenTK.Graphics.ES30.GetTextureParameter.TextureWrapRExt; - var _DetailTextureLevelSgis = OpenTK.Graphics.ES30.GetTextureParameter.DetailTextureLevelSgis; - var _DetailTextureModeSgis = OpenTK.Graphics.ES30.GetTextureParameter.DetailTextureModeSgis; - var _DetailTextureFuncPointsSgis = OpenTK.Graphics.ES30.GetTextureParameter.DetailTextureFuncPointsSgis; - var _SharpenTextureFuncPointsSgis = OpenTK.Graphics.ES30.GetTextureParameter.SharpenTextureFuncPointsSgis; - var _ShadowAmbientSgix = OpenTK.Graphics.ES30.GetTextureParameter.ShadowAmbientSgix; - var _DualTextureSelectSgis = OpenTK.Graphics.ES30.GetTextureParameter.DualTextureSelectSgis; - var _QuadTextureSelectSgis = OpenTK.Graphics.ES30.GetTextureParameter.QuadTextureSelectSgis; - var _Texture4DsizeSgis = OpenTK.Graphics.ES30.GetTextureParameter.Texture4DsizeSgis; - var _TextureWrapQSgis = OpenTK.Graphics.ES30.GetTextureParameter.TextureWrapQSgis; - var _TextureMinLodSgis = OpenTK.Graphics.ES30.GetTextureParameter.TextureMinLodSgis; - var _TextureMaxLodSgis = OpenTK.Graphics.ES30.GetTextureParameter.TextureMaxLodSgis; - var _TextureBaseLevelSgis = OpenTK.Graphics.ES30.GetTextureParameter.TextureBaseLevelSgis; - var _TextureMaxLevelSgis = OpenTK.Graphics.ES30.GetTextureParameter.TextureMaxLevelSgis; - var _TextureFilter4SizeSgis = OpenTK.Graphics.ES30.GetTextureParameter.TextureFilter4SizeSgis; - var _TextureClipmapCenterSgix = OpenTK.Graphics.ES30.GetTextureParameter.TextureClipmapCenterSgix; - var _TextureClipmapFrameSgix = OpenTK.Graphics.ES30.GetTextureParameter.TextureClipmapFrameSgix; - var _TextureClipmapOffsetSgix = OpenTK.Graphics.ES30.GetTextureParameter.TextureClipmapOffsetSgix; - var _TextureClipmapVirtualDepthSgix = OpenTK.Graphics.ES30.GetTextureParameter.TextureClipmapVirtualDepthSgix; - var _TextureClipmapLodOffsetSgix = OpenTK.Graphics.ES30.GetTextureParameter.TextureClipmapLodOffsetSgix; - var _TextureClipmapDepthSgix = OpenTK.Graphics.ES30.GetTextureParameter.TextureClipmapDepthSgix; - var _PostTextureFilterBiasSgix = OpenTK.Graphics.ES30.GetTextureParameter.PostTextureFilterBiasSgix; - var _PostTextureFilterScaleSgix = OpenTK.Graphics.ES30.GetTextureParameter.PostTextureFilterScaleSgix; - var _TextureLodBiasSSgix = OpenTK.Graphics.ES30.GetTextureParameter.TextureLodBiasSSgix; - var _TextureLodBiasTSgix = OpenTK.Graphics.ES30.GetTextureParameter.TextureLodBiasTSgix; - var _TextureLodBiasRSgix = OpenTK.Graphics.ES30.GetTextureParameter.TextureLodBiasRSgix; - var _GenerateMipmapSgis = OpenTK.Graphics.ES30.GetTextureParameter.GenerateMipmapSgis; - var _TextureCompareSgix = OpenTK.Graphics.ES30.GetTextureParameter.TextureCompareSgix; - var _TextureCompareOperatorSgix = OpenTK.Graphics.ES30.GetTextureParameter.TextureCompareOperatorSgix; - var _TextureLequalRSgix = OpenTK.Graphics.ES30.GetTextureParameter.TextureLequalRSgix; - var _TextureGequalRSgix = OpenTK.Graphics.ES30.GetTextureParameter.TextureGequalRSgix; - var _TextureMaxClampSSgix = OpenTK.Graphics.ES30.GetTextureParameter.TextureMaxClampSSgix; - var _TextureMaxClampTSgix = OpenTK.Graphics.ES30.GetTextureParameter.TextureMaxClampTSgix; - var _TextureMaxClampRSgix = OpenTK.Graphics.ES30.GetTextureParameter.TextureMaxClampRSgix; -} -static void Test_GetTextureParameterName_37893() { - var _TextureMagFilter = OpenTK.Graphics.ES30.GetTextureParameterName.TextureMagFilter; - var _TextureMinFilter = OpenTK.Graphics.ES30.GetTextureParameterName.TextureMinFilter; - var _TextureWrapS = OpenTK.Graphics.ES30.GetTextureParameterName.TextureWrapS; - var _TextureWrapT = OpenTK.Graphics.ES30.GetTextureParameterName.TextureWrapT; - var _TextureWrapR = OpenTK.Graphics.ES30.GetTextureParameterName.TextureWrapR; - var _TextureWrapROes = OpenTK.Graphics.ES30.GetTextureParameterName.TextureWrapROes; - var _TextureMinLod = OpenTK.Graphics.ES30.GetTextureParameterName.TextureMinLod; - var _TextureMaxLod = OpenTK.Graphics.ES30.GetTextureParameterName.TextureMaxLod; - var _TextureBaseLevel = OpenTK.Graphics.ES30.GetTextureParameterName.TextureBaseLevel; - var _TextureMaxLevel = OpenTK.Graphics.ES30.GetTextureParameterName.TextureMaxLevel; - var _TextureImmutableLevels = OpenTK.Graphics.ES30.GetTextureParameterName.TextureImmutableLevels; - var _TextureCompareMode = OpenTK.Graphics.ES30.GetTextureParameterName.TextureCompareMode; - var _TextureCompareFunc = OpenTK.Graphics.ES30.GetTextureParameterName.TextureCompareFunc; - var _TextureSwizzleR = OpenTK.Graphics.ES30.GetTextureParameterName.TextureSwizzleR; - var _TextureSwizzleG = OpenTK.Graphics.ES30.GetTextureParameterName.TextureSwizzleG; - var _TextureSwizzleB = OpenTK.Graphics.ES30.GetTextureParameterName.TextureSwizzleB; - var _TextureSwizzleA = OpenTK.Graphics.ES30.GetTextureParameterName.TextureSwizzleA; - var _TextureImmutableFormat = OpenTK.Graphics.ES30.GetTextureParameterName.TextureImmutableFormat; - var _TextureImmutableFormatExt = OpenTK.Graphics.ES30.GetTextureParameterName.TextureImmutableFormatExt; -} -static void Test_HintMode_37894() { - var _DontCare = OpenTK.Graphics.ES30.HintMode.DontCare; - var _Fastest = OpenTK.Graphics.ES30.HintMode.Fastest; - var _Nicest = OpenTK.Graphics.ES30.HintMode.Nicest; -} -static void Test_HintTarget_37895() { - var _PerspectiveCorrectionHint = OpenTK.Graphics.ES30.HintTarget.PerspectiveCorrectionHint; - var _PointSmoothHint = OpenTK.Graphics.ES30.HintTarget.PointSmoothHint; - var _LineSmoothHint = OpenTK.Graphics.ES30.HintTarget.LineSmoothHint; - var _PolygonSmoothHint = OpenTK.Graphics.ES30.HintTarget.PolygonSmoothHint; - var _FogHint = OpenTK.Graphics.ES30.HintTarget.FogHint; - var _PreferDoublebufferHintPgi = OpenTK.Graphics.ES30.HintTarget.PreferDoublebufferHintPgi; - var _ConserveMemoryHintPgi = OpenTK.Graphics.ES30.HintTarget.ConserveMemoryHintPgi; - var _ReclaimMemoryHintPgi = OpenTK.Graphics.ES30.HintTarget.ReclaimMemoryHintPgi; - var _NativeGraphicsBeginHintPgi = OpenTK.Graphics.ES30.HintTarget.NativeGraphicsBeginHintPgi; - var _NativeGraphicsEndHintPgi = OpenTK.Graphics.ES30.HintTarget.NativeGraphicsEndHintPgi; - var _AlwaysFastHintPgi = OpenTK.Graphics.ES30.HintTarget.AlwaysFastHintPgi; - var _AlwaysSoftHintPgi = OpenTK.Graphics.ES30.HintTarget.AlwaysSoftHintPgi; - var _AllowDrawObjHintPgi = OpenTK.Graphics.ES30.HintTarget.AllowDrawObjHintPgi; - var _AllowDrawWinHintPgi = OpenTK.Graphics.ES30.HintTarget.AllowDrawWinHintPgi; - var _AllowDrawFrgHintPgi = OpenTK.Graphics.ES30.HintTarget.AllowDrawFrgHintPgi; - var _AllowDrawMemHintPgi = OpenTK.Graphics.ES30.HintTarget.AllowDrawMemHintPgi; - var _StrictDepthfuncHintPgi = OpenTK.Graphics.ES30.HintTarget.StrictDepthfuncHintPgi; - var _StrictLightingHintPgi = OpenTK.Graphics.ES30.HintTarget.StrictLightingHintPgi; - var _StrictScissorHintPgi = OpenTK.Graphics.ES30.HintTarget.StrictScissorHintPgi; - var _FullStippleHintPgi = OpenTK.Graphics.ES30.HintTarget.FullStippleHintPgi; - var _ClipNearHintPgi = OpenTK.Graphics.ES30.HintTarget.ClipNearHintPgi; - var _ClipFarHintPgi = OpenTK.Graphics.ES30.HintTarget.ClipFarHintPgi; - var _WideLineHintPgi = OpenTK.Graphics.ES30.HintTarget.WideLineHintPgi; - var _BackNormalsHintPgi = OpenTK.Graphics.ES30.HintTarget.BackNormalsHintPgi; - var _VertexDataHintPgi = OpenTK.Graphics.ES30.HintTarget.VertexDataHintPgi; - var _VertexConsistentHintPgi = OpenTK.Graphics.ES30.HintTarget.VertexConsistentHintPgi; - var _MaterialSideHintPgi = OpenTK.Graphics.ES30.HintTarget.MaterialSideHintPgi; - var _MaxVertexHintPgi = OpenTK.Graphics.ES30.HintTarget.MaxVertexHintPgi; - var _PackCmykHintExt = OpenTK.Graphics.ES30.HintTarget.PackCmykHintExt; - var _UnpackCmykHintExt = OpenTK.Graphics.ES30.HintTarget.UnpackCmykHintExt; - var _PhongHintWin = OpenTK.Graphics.ES30.HintTarget.PhongHintWin; - var _ClipVolumeClippingHintExt = OpenTK.Graphics.ES30.HintTarget.ClipVolumeClippingHintExt; - var _TextureMultiBufferHintSgix = OpenTK.Graphics.ES30.HintTarget.TextureMultiBufferHintSgix; - var _GenerateMipmapHint = OpenTK.Graphics.ES30.HintTarget.GenerateMipmapHint; - var _GenerateMipmapHintSgis = OpenTK.Graphics.ES30.HintTarget.GenerateMipmapHintSgis; - var _ProgramBinaryRetrievableHint = OpenTK.Graphics.ES30.HintTarget.ProgramBinaryRetrievableHint; - var _ConvolutionHintSgix = OpenTK.Graphics.ES30.HintTarget.ConvolutionHintSgix; - var _ScalebiasHintSgix = OpenTK.Graphics.ES30.HintTarget.ScalebiasHintSgix; - var _LineQualityHintSgix = OpenTK.Graphics.ES30.HintTarget.LineQualityHintSgix; - var _VertexPreclipSgix = OpenTK.Graphics.ES30.HintTarget.VertexPreclipSgix; - var _VertexPreclipHintSgix = OpenTK.Graphics.ES30.HintTarget.VertexPreclipHintSgix; - var _TextureCompressionHint = OpenTK.Graphics.ES30.HintTarget.TextureCompressionHint; - var _TextureCompressionHintArb = OpenTK.Graphics.ES30.HintTarget.TextureCompressionHintArb; - var _VertexArrayStorageHintApple = OpenTK.Graphics.ES30.HintTarget.VertexArrayStorageHintApple; - var _MultisampleFilterHintNv = OpenTK.Graphics.ES30.HintTarget.MultisampleFilterHintNv; - var _TransformHintApple = OpenTK.Graphics.ES30.HintTarget.TransformHintApple; - var _TextureStorageHintApple = OpenTK.Graphics.ES30.HintTarget.TextureStorageHintApple; - var _FragmentShaderDerivativeHint = OpenTK.Graphics.ES30.HintTarget.FragmentShaderDerivativeHint; - var _FragmentShaderDerivativeHintArb = OpenTK.Graphics.ES30.HintTarget.FragmentShaderDerivativeHintArb; - var _FragmentShaderDerivativeHintOes = OpenTK.Graphics.ES30.HintTarget.FragmentShaderDerivativeHintOes; - var _BinningControlHintQcom = OpenTK.Graphics.ES30.HintTarget.BinningControlHintQcom; -} -static void Test_HistogramTargetExt_37896() { - var _Histogram = OpenTK.Graphics.ES30.HistogramTargetExt.Histogram; - var _HistogramExt = OpenTK.Graphics.ES30.HistogramTargetExt.HistogramExt; - var _ProxyHistogram = OpenTK.Graphics.ES30.HistogramTargetExt.ProxyHistogram; - var _ProxyHistogramExt = OpenTK.Graphics.ES30.HistogramTargetExt.ProxyHistogramExt; -} -static void Test_ImageTarget_37897() { - var _Renderbuffer = OpenTK.Graphics.ES30.ImageTarget.Renderbuffer; -} -static void Test_ImgMultisampledRenderToTexture_37898() { - var _RenderbufferSamplesImg = OpenTK.Graphics.ES30.ImgMultisampledRenderToTexture.RenderbufferSamplesImg; - var _FramebufferIncompleteMultisampleImg = OpenTK.Graphics.ES30.ImgMultisampledRenderToTexture.FramebufferIncompleteMultisampleImg; - var _MaxSamplesImg = OpenTK.Graphics.ES30.ImgMultisampledRenderToTexture.MaxSamplesImg; - var _TextureSamplesImg = OpenTK.Graphics.ES30.ImgMultisampledRenderToTexture.TextureSamplesImg; -} -static void Test_ImgProgramBinary_37899() { - var _SgxProgramBinaryImg = OpenTK.Graphics.ES30.ImgProgramBinary.SgxProgramBinaryImg; -} -static void Test_ImgReadFormat_37900() { - var _BgraImg = OpenTK.Graphics.ES30.ImgReadFormat.BgraImg; - var _UnsignedShort4444RevImg = OpenTK.Graphics.ES30.ImgReadFormat.UnsignedShort4444RevImg; -} -static void Test_ImgShaderBinary_37901() { - var _SgxBinaryImg = OpenTK.Graphics.ES30.ImgShaderBinary.SgxBinaryImg; -} -static void Test_ImgTextureCompressionPvrtc_37902() { - var _CompressedRgbPvrtc4Bppv1Img = OpenTK.Graphics.ES30.ImgTextureCompressionPvrtc.CompressedRgbPvrtc4Bppv1Img; - var _CompressedRgbPvrtc2Bppv1Img = OpenTK.Graphics.ES30.ImgTextureCompressionPvrtc.CompressedRgbPvrtc2Bppv1Img; - var _CompressedRgbaPvrtc4Bppv1Img = OpenTK.Graphics.ES30.ImgTextureCompressionPvrtc.CompressedRgbaPvrtc4Bppv1Img; - var _CompressedRgbaPvrtc2Bppv1Img = OpenTK.Graphics.ES30.ImgTextureCompressionPvrtc.CompressedRgbaPvrtc2Bppv1Img; -} -static void Test_ImgTextureCompressionPvrtc2_37903() { - var _CompressedRgbaPvrtc2Bppv2Img = OpenTK.Graphics.ES30.ImgTextureCompressionPvrtc2.CompressedRgbaPvrtc2Bppv2Img; - var _CompressedRgbaPvrtc4Bppv2Img = OpenTK.Graphics.ES30.ImgTextureCompressionPvrtc2.CompressedRgbaPvrtc4Bppv2Img; -} -static void Test_IndexPointerType_37904() { - var _Short = OpenTK.Graphics.ES30.IndexPointerType.Short; - var _Int = OpenTK.Graphics.ES30.IndexPointerType.Int; - var _Float = OpenTK.Graphics.ES30.IndexPointerType.Float; - var _Double = OpenTK.Graphics.ES30.IndexPointerType.Double; -} -static void Test_IntelPerformanceQuery_37905() { - var _PerfquerySingleContextIntel = OpenTK.Graphics.ES30.IntelPerformanceQuery.PerfquerySingleContextIntel; - var _PerfqueryGlobalContextIntel = OpenTK.Graphics.ES30.IntelPerformanceQuery.PerfqueryGlobalContextIntel; - var _PerfqueryDonotFlushIntel = OpenTK.Graphics.ES30.IntelPerformanceQuery.PerfqueryDonotFlushIntel; - var _PerfqueryFlushIntel = OpenTK.Graphics.ES30.IntelPerformanceQuery.PerfqueryFlushIntel; - var _PerfqueryWaitIntel = OpenTK.Graphics.ES30.IntelPerformanceQuery.PerfqueryWaitIntel; - var _PerfqueryCounterEventIntel = OpenTK.Graphics.ES30.IntelPerformanceQuery.PerfqueryCounterEventIntel; - var _PerfqueryCounterDurationNormIntel = OpenTK.Graphics.ES30.IntelPerformanceQuery.PerfqueryCounterDurationNormIntel; - var _PerfqueryCounterDurationRawIntel = OpenTK.Graphics.ES30.IntelPerformanceQuery.PerfqueryCounterDurationRawIntel; - var _PerfqueryCounterThroughputIntel = OpenTK.Graphics.ES30.IntelPerformanceQuery.PerfqueryCounterThroughputIntel; - var _PerfqueryCounterRawIntel = OpenTK.Graphics.ES30.IntelPerformanceQuery.PerfqueryCounterRawIntel; - var _PerfqueryCounterTimestampIntel = OpenTK.Graphics.ES30.IntelPerformanceQuery.PerfqueryCounterTimestampIntel; - var _PerfqueryCounterDataUint32Intel = OpenTK.Graphics.ES30.IntelPerformanceQuery.PerfqueryCounterDataUint32Intel; - var _PerfqueryCounterDataUint64Intel = OpenTK.Graphics.ES30.IntelPerformanceQuery.PerfqueryCounterDataUint64Intel; - var _PerfqueryCounterDataFloatIntel = OpenTK.Graphics.ES30.IntelPerformanceQuery.PerfqueryCounterDataFloatIntel; - var _PerfqueryCounterDataDoubleIntel = OpenTK.Graphics.ES30.IntelPerformanceQuery.PerfqueryCounterDataDoubleIntel; - var _PerfqueryCounterDataBool32Intel = OpenTK.Graphics.ES30.IntelPerformanceQuery.PerfqueryCounterDataBool32Intel; - var _PerfqueryQueryNameLengthMaxIntel = OpenTK.Graphics.ES30.IntelPerformanceQuery.PerfqueryQueryNameLengthMaxIntel; - var _PerfqueryCounterNameLengthMaxIntel = OpenTK.Graphics.ES30.IntelPerformanceQuery.PerfqueryCounterNameLengthMaxIntel; - var _PerfqueryCounterDescLengthMaxIntel = OpenTK.Graphics.ES30.IntelPerformanceQuery.PerfqueryCounterDescLengthMaxIntel; - var _PerfqueryGpaExtendedCountersIntel = OpenTK.Graphics.ES30.IntelPerformanceQuery.PerfqueryGpaExtendedCountersIntel; -} -static void Test_InterleavedArrayFormat_37906() { - var _V2f = OpenTK.Graphics.ES30.InterleavedArrayFormat.V2f; - var _V3f = OpenTK.Graphics.ES30.InterleavedArrayFormat.V3f; - var _C4ubV2f = OpenTK.Graphics.ES30.InterleavedArrayFormat.C4ubV2f; - var _C4ubV3f = OpenTK.Graphics.ES30.InterleavedArrayFormat.C4ubV3f; - var _C3fV3f = OpenTK.Graphics.ES30.InterleavedArrayFormat.C3fV3f; - var _N3fV3f = OpenTK.Graphics.ES30.InterleavedArrayFormat.N3fV3f; - var _C4fN3fV3f = OpenTK.Graphics.ES30.InterleavedArrayFormat.C4fN3fV3f; - var _T2fV3f = OpenTK.Graphics.ES30.InterleavedArrayFormat.T2fV3f; - var _T4fV4f = OpenTK.Graphics.ES30.InterleavedArrayFormat.T4fV4f; - var _T2fC4ubV3f = OpenTK.Graphics.ES30.InterleavedArrayFormat.T2fC4ubV3f; - var _T2fC3fV3f = OpenTK.Graphics.ES30.InterleavedArrayFormat.T2fC3fV3f; - var _T2fN3fV3f = OpenTK.Graphics.ES30.InterleavedArrayFormat.T2fN3fV3f; - var _T2fC4fN3fV3f = OpenTK.Graphics.ES30.InterleavedArrayFormat.T2fC4fN3fV3f; - var _T4fC4fN3fV4f = OpenTK.Graphics.ES30.InterleavedArrayFormat.T4fC4fN3fV4f; -} -static void Test_InternalFormat_37907() { - var _R3G3B2 = OpenTK.Graphics.ES30.InternalFormat.R3G3B2; - var _Alpha4 = OpenTK.Graphics.ES30.InternalFormat.Alpha4; - var _Alpha8 = OpenTK.Graphics.ES30.InternalFormat.Alpha8; - var _Alpha12 = OpenTK.Graphics.ES30.InternalFormat.Alpha12; - var _Alpha16 = OpenTK.Graphics.ES30.InternalFormat.Alpha16; - var _Luminance4 = OpenTK.Graphics.ES30.InternalFormat.Luminance4; - var _Luminance8 = OpenTK.Graphics.ES30.InternalFormat.Luminance8; - var _Luminance12 = OpenTK.Graphics.ES30.InternalFormat.Luminance12; - var _Luminance16 = OpenTK.Graphics.ES30.InternalFormat.Luminance16; - var _Luminance4Alpha4 = OpenTK.Graphics.ES30.InternalFormat.Luminance4Alpha4; - var _Luminance6Alpha2 = OpenTK.Graphics.ES30.InternalFormat.Luminance6Alpha2; - var _Luminance8Alpha8 = OpenTK.Graphics.ES30.InternalFormat.Luminance8Alpha8; - var _Luminance12Alpha4 = OpenTK.Graphics.ES30.InternalFormat.Luminance12Alpha4; - var _Luminance12Alpha12 = OpenTK.Graphics.ES30.InternalFormat.Luminance12Alpha12; - var _Luminance16Alpha16 = OpenTK.Graphics.ES30.InternalFormat.Luminance16Alpha16; - var _Intensity = OpenTK.Graphics.ES30.InternalFormat.Intensity; - var _Intensity4 = OpenTK.Graphics.ES30.InternalFormat.Intensity4; - var _Intensity8 = OpenTK.Graphics.ES30.InternalFormat.Intensity8; - var _Intensity12 = OpenTK.Graphics.ES30.InternalFormat.Intensity12; - var _Intensity16 = OpenTK.Graphics.ES30.InternalFormat.Intensity16; - var _Rgb2Ext = OpenTK.Graphics.ES30.InternalFormat.Rgb2Ext; - var _Rgb4 = OpenTK.Graphics.ES30.InternalFormat.Rgb4; - var _Rgb5 = OpenTK.Graphics.ES30.InternalFormat.Rgb5; - var _Rgb8 = OpenTK.Graphics.ES30.InternalFormat.Rgb8; - var _Rgb10 = OpenTK.Graphics.ES30.InternalFormat.Rgb10; - var _Rgb12 = OpenTK.Graphics.ES30.InternalFormat.Rgb12; - var _Rgb16 = OpenTK.Graphics.ES30.InternalFormat.Rgb16; - var _Rgba2 = OpenTK.Graphics.ES30.InternalFormat.Rgba2; - var _Rgba4 = OpenTK.Graphics.ES30.InternalFormat.Rgba4; - var _Rgb5A1 = OpenTK.Graphics.ES30.InternalFormat.Rgb5A1; - var _Rgba8 = OpenTK.Graphics.ES30.InternalFormat.Rgba8; - var _Rgb10A2 = OpenTK.Graphics.ES30.InternalFormat.Rgb10A2; - var _Rgba12 = OpenTK.Graphics.ES30.InternalFormat.Rgba12; - var _Rgba16 = OpenTK.Graphics.ES30.InternalFormat.Rgba16; - var _DualAlpha4Sgis = OpenTK.Graphics.ES30.InternalFormat.DualAlpha4Sgis; - var _DualAlpha8Sgis = OpenTK.Graphics.ES30.InternalFormat.DualAlpha8Sgis; - var _DualAlpha12Sgis = OpenTK.Graphics.ES30.InternalFormat.DualAlpha12Sgis; - var _DualAlpha16Sgis = OpenTK.Graphics.ES30.InternalFormat.DualAlpha16Sgis; - var _DualLuminance4Sgis = OpenTK.Graphics.ES30.InternalFormat.DualLuminance4Sgis; - var _DualLuminance8Sgis = OpenTK.Graphics.ES30.InternalFormat.DualLuminance8Sgis; - var _DualLuminance12Sgis = OpenTK.Graphics.ES30.InternalFormat.DualLuminance12Sgis; - var _DualLuminance16Sgis = OpenTK.Graphics.ES30.InternalFormat.DualLuminance16Sgis; - var _DualIntensity4Sgis = OpenTK.Graphics.ES30.InternalFormat.DualIntensity4Sgis; - var _DualIntensity8Sgis = OpenTK.Graphics.ES30.InternalFormat.DualIntensity8Sgis; - var _DualIntensity12Sgis = OpenTK.Graphics.ES30.InternalFormat.DualIntensity12Sgis; - var _DualIntensity16Sgis = OpenTK.Graphics.ES30.InternalFormat.DualIntensity16Sgis; - var _DualLuminanceAlpha4Sgis = OpenTK.Graphics.ES30.InternalFormat.DualLuminanceAlpha4Sgis; - var _DualLuminanceAlpha8Sgis = OpenTK.Graphics.ES30.InternalFormat.DualLuminanceAlpha8Sgis; - var _QuadAlpha4Sgis = OpenTK.Graphics.ES30.InternalFormat.QuadAlpha4Sgis; - var _QuadAlpha8Sgis = OpenTK.Graphics.ES30.InternalFormat.QuadAlpha8Sgis; - var _QuadLuminance4Sgis = OpenTK.Graphics.ES30.InternalFormat.QuadLuminance4Sgis; - var _QuadLuminance8Sgis = OpenTK.Graphics.ES30.InternalFormat.QuadLuminance8Sgis; - var _QuadIntensity4Sgis = OpenTK.Graphics.ES30.InternalFormat.QuadIntensity4Sgis; - var _QuadIntensity8Sgis = OpenTK.Graphics.ES30.InternalFormat.QuadIntensity8Sgis; - var _DepthComponent16Sgix = OpenTK.Graphics.ES30.InternalFormat.DepthComponent16Sgix; - var _DepthComponent24Sgix = OpenTK.Graphics.ES30.InternalFormat.DepthComponent24Sgix; - var _DepthComponent32Sgix = OpenTK.Graphics.ES30.InternalFormat.DepthComponent32Sgix; -} -static void Test_InternalFormatParameter_37908() { - var _Samples = OpenTK.Graphics.ES30.InternalFormatParameter.Samples; - var _NumSampleCounts = OpenTK.Graphics.ES30.InternalFormatParameter.NumSampleCounts; -} -static void Test_KhrBlendEquationAdvanced_37909() { - var _BlendAdvancedCoherentKhr = OpenTK.Graphics.ES30.KhrBlendEquationAdvanced.BlendAdvancedCoherentKhr; - var _MultiplyKhr = OpenTK.Graphics.ES30.KhrBlendEquationAdvanced.MultiplyKhr; - var _ScreenKhr = OpenTK.Graphics.ES30.KhrBlendEquationAdvanced.ScreenKhr; - var _OverlayKhr = OpenTK.Graphics.ES30.KhrBlendEquationAdvanced.OverlayKhr; - var _DarkenKhr = OpenTK.Graphics.ES30.KhrBlendEquationAdvanced.DarkenKhr; - var _LightenKhr = OpenTK.Graphics.ES30.KhrBlendEquationAdvanced.LightenKhr; - var _ColordodgeKhr = OpenTK.Graphics.ES30.KhrBlendEquationAdvanced.ColordodgeKhr; - var _ColorburnKhr = OpenTK.Graphics.ES30.KhrBlendEquationAdvanced.ColorburnKhr; - var _HardlightKhr = OpenTK.Graphics.ES30.KhrBlendEquationAdvanced.HardlightKhr; - var _SoftlightKhr = OpenTK.Graphics.ES30.KhrBlendEquationAdvanced.SoftlightKhr; - var _DifferenceKhr = OpenTK.Graphics.ES30.KhrBlendEquationAdvanced.DifferenceKhr; - var _ExclusionKhr = OpenTK.Graphics.ES30.KhrBlendEquationAdvanced.ExclusionKhr; - var _HslHueKhr = OpenTK.Graphics.ES30.KhrBlendEquationAdvanced.HslHueKhr; - var _HslSaturationKhr = OpenTK.Graphics.ES30.KhrBlendEquationAdvanced.HslSaturationKhr; - var _HslColorKhr = OpenTK.Graphics.ES30.KhrBlendEquationAdvanced.HslColorKhr; - var _HslLuminosityKhr = OpenTK.Graphics.ES30.KhrBlendEquationAdvanced.HslLuminosityKhr; -} -static void Test_KhrDebug_37910() { - var _ContextFlagDebugBit = OpenTK.Graphics.ES30.KhrDebug.ContextFlagDebugBit; - var _ContextFlagDebugBitKhr = OpenTK.Graphics.ES30.KhrDebug.ContextFlagDebugBitKhr; - var _StackOverflow = OpenTK.Graphics.ES30.KhrDebug.StackOverflow; - var _StackOverflowKhr = OpenTK.Graphics.ES30.KhrDebug.StackOverflowKhr; - var _StackUnderflow = OpenTK.Graphics.ES30.KhrDebug.StackUnderflow; - var _StackUnderflowKhr = OpenTK.Graphics.ES30.KhrDebug.StackUnderflowKhr; - var _VertexArray = OpenTK.Graphics.ES30.KhrDebug.VertexArray; - var _VertexArrayKhr = OpenTK.Graphics.ES30.KhrDebug.VertexArrayKhr; - var _DebugOutputSynchronous = OpenTK.Graphics.ES30.KhrDebug.DebugOutputSynchronous; - var _DebugOutputSynchronousKhr = OpenTK.Graphics.ES30.KhrDebug.DebugOutputSynchronousKhr; - var _DebugNextLoggedMessageLength = OpenTK.Graphics.ES30.KhrDebug.DebugNextLoggedMessageLength; - var _DebugNextLoggedMessageLengthKhr = OpenTK.Graphics.ES30.KhrDebug.DebugNextLoggedMessageLengthKhr; - var _DebugCallbackFunction = OpenTK.Graphics.ES30.KhrDebug.DebugCallbackFunction; - var _DebugCallbackFunctionKhr = OpenTK.Graphics.ES30.KhrDebug.DebugCallbackFunctionKhr; - var _DebugCallbackUserParam = OpenTK.Graphics.ES30.KhrDebug.DebugCallbackUserParam; - var _DebugCallbackUserParamKhr = OpenTK.Graphics.ES30.KhrDebug.DebugCallbackUserParamKhr; - var _DebugSourceApi = OpenTK.Graphics.ES30.KhrDebug.DebugSourceApi; - var _DebugSourceApiKhr = OpenTK.Graphics.ES30.KhrDebug.DebugSourceApiKhr; - var _DebugSourceWindowSystem = OpenTK.Graphics.ES30.KhrDebug.DebugSourceWindowSystem; - var _DebugSourceWindowSystemKhr = OpenTK.Graphics.ES30.KhrDebug.DebugSourceWindowSystemKhr; - var _DebugSourceShaderCompiler = OpenTK.Graphics.ES30.KhrDebug.DebugSourceShaderCompiler; - var _DebugSourceShaderCompilerKhr = OpenTK.Graphics.ES30.KhrDebug.DebugSourceShaderCompilerKhr; - var _DebugSourceThirdParty = OpenTK.Graphics.ES30.KhrDebug.DebugSourceThirdParty; - var _DebugSourceThirdPartyKhr = OpenTK.Graphics.ES30.KhrDebug.DebugSourceThirdPartyKhr; - var _DebugSourceApplication = OpenTK.Graphics.ES30.KhrDebug.DebugSourceApplication; - var _DebugSourceApplicationKhr = OpenTK.Graphics.ES30.KhrDebug.DebugSourceApplicationKhr; - var _DebugSourceOther = OpenTK.Graphics.ES30.KhrDebug.DebugSourceOther; - var _DebugSourceOtherKhr = OpenTK.Graphics.ES30.KhrDebug.DebugSourceOtherKhr; - var _DebugTypeError = OpenTK.Graphics.ES30.KhrDebug.DebugTypeError; - var _DebugTypeErrorKhr = OpenTK.Graphics.ES30.KhrDebug.DebugTypeErrorKhr; - var _DebugTypeDeprecatedBehavior = OpenTK.Graphics.ES30.KhrDebug.DebugTypeDeprecatedBehavior; - var _DebugTypeDeprecatedBehaviorKhr = OpenTK.Graphics.ES30.KhrDebug.DebugTypeDeprecatedBehaviorKhr; - var _DebugTypeUndefinedBehavior = OpenTK.Graphics.ES30.KhrDebug.DebugTypeUndefinedBehavior; - var _DebugTypeUndefinedBehaviorKhr = OpenTK.Graphics.ES30.KhrDebug.DebugTypeUndefinedBehaviorKhr; - var _DebugTypePortability = OpenTK.Graphics.ES30.KhrDebug.DebugTypePortability; - var _DebugTypePortabilityKhr = OpenTK.Graphics.ES30.KhrDebug.DebugTypePortabilityKhr; - var _DebugTypePerformance = OpenTK.Graphics.ES30.KhrDebug.DebugTypePerformance; - var _DebugTypePerformanceKhr = OpenTK.Graphics.ES30.KhrDebug.DebugTypePerformanceKhr; - var _DebugTypeOther = OpenTK.Graphics.ES30.KhrDebug.DebugTypeOther; - var _DebugTypeOtherKhr = OpenTK.Graphics.ES30.KhrDebug.DebugTypeOtherKhr; - var _DebugTypeMarker = OpenTK.Graphics.ES30.KhrDebug.DebugTypeMarker; - var _DebugTypeMarkerKhr = OpenTK.Graphics.ES30.KhrDebug.DebugTypeMarkerKhr; - var _DebugTypePushGroup = OpenTK.Graphics.ES30.KhrDebug.DebugTypePushGroup; - var _DebugTypePushGroupKhr = OpenTK.Graphics.ES30.KhrDebug.DebugTypePushGroupKhr; - var _DebugTypePopGroup = OpenTK.Graphics.ES30.KhrDebug.DebugTypePopGroup; - var _DebugTypePopGroupKhr = OpenTK.Graphics.ES30.KhrDebug.DebugTypePopGroupKhr; - var _DebugSeverityNotification = OpenTK.Graphics.ES30.KhrDebug.DebugSeverityNotification; - var _DebugSeverityNotificationKhr = OpenTK.Graphics.ES30.KhrDebug.DebugSeverityNotificationKhr; - var _MaxDebugGroupStackDepth = OpenTK.Graphics.ES30.KhrDebug.MaxDebugGroupStackDepth; - var _MaxDebugGroupStackDepthKhr = OpenTK.Graphics.ES30.KhrDebug.MaxDebugGroupStackDepthKhr; - var _DebugGroupStackDepth = OpenTK.Graphics.ES30.KhrDebug.DebugGroupStackDepth; - var _DebugGroupStackDepthKhr = OpenTK.Graphics.ES30.KhrDebug.DebugGroupStackDepthKhr; - var _Buffer = OpenTK.Graphics.ES30.KhrDebug.Buffer; - var _BufferKhr = OpenTK.Graphics.ES30.KhrDebug.BufferKhr; - var _Shader = OpenTK.Graphics.ES30.KhrDebug.Shader; - var _ShaderKhr = OpenTK.Graphics.ES30.KhrDebug.ShaderKhr; - var _Program = OpenTK.Graphics.ES30.KhrDebug.Program; - var _ProgramKhr = OpenTK.Graphics.ES30.KhrDebug.ProgramKhr; - var _Query = OpenTK.Graphics.ES30.KhrDebug.Query; - var _QueryKhr = OpenTK.Graphics.ES30.KhrDebug.QueryKhr; - var _ProgramPipeline = OpenTK.Graphics.ES30.KhrDebug.ProgramPipeline; - var _Sampler = OpenTK.Graphics.ES30.KhrDebug.Sampler; - var _SamplerKhr = OpenTK.Graphics.ES30.KhrDebug.SamplerKhr; - var _DisplayList = OpenTK.Graphics.ES30.KhrDebug.DisplayList; - var _MaxLabelLength = OpenTK.Graphics.ES30.KhrDebug.MaxLabelLength; - var _MaxLabelLengthKhr = OpenTK.Graphics.ES30.KhrDebug.MaxLabelLengthKhr; - var _MaxDebugMessageLength = OpenTK.Graphics.ES30.KhrDebug.MaxDebugMessageLength; - var _MaxDebugMessageLengthKhr = OpenTK.Graphics.ES30.KhrDebug.MaxDebugMessageLengthKhr; - var _MaxDebugLoggedMessages = OpenTK.Graphics.ES30.KhrDebug.MaxDebugLoggedMessages; - var _MaxDebugLoggedMessagesKhr = OpenTK.Graphics.ES30.KhrDebug.MaxDebugLoggedMessagesKhr; - var _DebugLoggedMessages = OpenTK.Graphics.ES30.KhrDebug.DebugLoggedMessages; - var _DebugLoggedMessagesKhr = OpenTK.Graphics.ES30.KhrDebug.DebugLoggedMessagesKhr; - var _DebugSeverityHigh = OpenTK.Graphics.ES30.KhrDebug.DebugSeverityHigh; - var _DebugSeverityHighKhr = OpenTK.Graphics.ES30.KhrDebug.DebugSeverityHighKhr; - var _DebugSeverityMedium = OpenTK.Graphics.ES30.KhrDebug.DebugSeverityMedium; - var _DebugSeverityMediumKhr = OpenTK.Graphics.ES30.KhrDebug.DebugSeverityMediumKhr; - var _DebugSeverityLow = OpenTK.Graphics.ES30.KhrDebug.DebugSeverityLow; - var _DebugSeverityLowKhr = OpenTK.Graphics.ES30.KhrDebug.DebugSeverityLowKhr; - var _DebugOutput = OpenTK.Graphics.ES30.KhrDebug.DebugOutput; - var _DebugOutputKhr = OpenTK.Graphics.ES30.KhrDebug.DebugOutputKhr; -} -static void Test_KhrTextureCompressionAstcHdr_37911() { - var _CompressedRgbaAstc4X4Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcHdr.CompressedRgbaAstc4X4Khr; - var _CompressedRgbaAstc5X4Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcHdr.CompressedRgbaAstc5X4Khr; - var _CompressedRgbaAstc5X5Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcHdr.CompressedRgbaAstc5X5Khr; - var _CompressedRgbaAstc6X5Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcHdr.CompressedRgbaAstc6X5Khr; - var _CompressedRgbaAstc6X6Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcHdr.CompressedRgbaAstc6X6Khr; - var _CompressedRgbaAstc8X5Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcHdr.CompressedRgbaAstc8X5Khr; - var _CompressedRgbaAstc8X6Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcHdr.CompressedRgbaAstc8X6Khr; - var _CompressedRgbaAstc8X8Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcHdr.CompressedRgbaAstc8X8Khr; - var _CompressedRgbaAstc10X5Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcHdr.CompressedRgbaAstc10X5Khr; - var _CompressedRgbaAstc10X6Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcHdr.CompressedRgbaAstc10X6Khr; - var _CompressedRgbaAstc10X8Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcHdr.CompressedRgbaAstc10X8Khr; - var _CompressedRgbaAstc10X10Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcHdr.CompressedRgbaAstc10X10Khr; - var _CompressedRgbaAstc12X10Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcHdr.CompressedRgbaAstc12X10Khr; - var _CompressedRgbaAstc12X12Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcHdr.CompressedRgbaAstc12X12Khr; - var _CompressedSrgb8Alpha8Astc4X4Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc4X4Khr; - var _CompressedSrgb8Alpha8Astc5X4Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc5X4Khr; - var _CompressedSrgb8Alpha8Astc5X5Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc5X5Khr; - var _CompressedSrgb8Alpha8Astc6X5Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc6X5Khr; - var _CompressedSrgb8Alpha8Astc6X6Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc6X6Khr; - var _CompressedSrgb8Alpha8Astc8X5Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc8X5Khr; - var _CompressedSrgb8Alpha8Astc8X6Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc8X6Khr; - var _CompressedSrgb8Alpha8Astc8X8Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc8X8Khr; - var _CompressedSrgb8Alpha8Astc10X5Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc10X5Khr; - var _CompressedSrgb8Alpha8Astc10X6Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc10X6Khr; - var _CompressedSrgb8Alpha8Astc10X8Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc10X8Khr; - var _CompressedSrgb8Alpha8Astc10X10Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc10X10Khr; - var _CompressedSrgb8Alpha8Astc12X10Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc12X10Khr; - var _CompressedSrgb8Alpha8Astc12X12Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc12X12Khr; -} -static void Test_KhrTextureCompressionAstcLdr_37912() { - var _CompressedRgbaAstc4X4Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcLdr.CompressedRgbaAstc4X4Khr; - var _CompressedRgbaAstc5X4Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcLdr.CompressedRgbaAstc5X4Khr; - var _CompressedRgbaAstc5X5Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcLdr.CompressedRgbaAstc5X5Khr; - var _CompressedRgbaAstc6X5Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcLdr.CompressedRgbaAstc6X5Khr; - var _CompressedRgbaAstc6X6Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcLdr.CompressedRgbaAstc6X6Khr; - var _CompressedRgbaAstc8X5Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcLdr.CompressedRgbaAstc8X5Khr; - var _CompressedRgbaAstc8X6Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcLdr.CompressedRgbaAstc8X6Khr; - var _CompressedRgbaAstc8X8Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcLdr.CompressedRgbaAstc8X8Khr; - var _CompressedRgbaAstc10X5Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcLdr.CompressedRgbaAstc10X5Khr; - var _CompressedRgbaAstc10X6Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcLdr.CompressedRgbaAstc10X6Khr; - var _CompressedRgbaAstc10X8Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcLdr.CompressedRgbaAstc10X8Khr; - var _CompressedRgbaAstc10X10Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcLdr.CompressedRgbaAstc10X10Khr; - var _CompressedRgbaAstc12X10Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcLdr.CompressedRgbaAstc12X10Khr; - var _CompressedRgbaAstc12X12Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcLdr.CompressedRgbaAstc12X12Khr; - var _CompressedSrgb8Alpha8Astc4X4Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc4X4Khr; - var _CompressedSrgb8Alpha8Astc5X4Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc5X4Khr; - var _CompressedSrgb8Alpha8Astc5X5Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc5X5Khr; - var _CompressedSrgb8Alpha8Astc6X5Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc6X5Khr; - var _CompressedSrgb8Alpha8Astc6X6Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc6X6Khr; - var _CompressedSrgb8Alpha8Astc8X5Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc8X5Khr; - var _CompressedSrgb8Alpha8Astc8X6Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc8X6Khr; - var _CompressedSrgb8Alpha8Astc8X8Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc8X8Khr; - var _CompressedSrgb8Alpha8Astc10X5Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc10X5Khr; - var _CompressedSrgb8Alpha8Astc10X6Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc10X6Khr; - var _CompressedSrgb8Alpha8Astc10X8Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc10X8Khr; - var _CompressedSrgb8Alpha8Astc10X10Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc10X10Khr; - var _CompressedSrgb8Alpha8Astc12X10Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc12X10Khr; - var _CompressedSrgb8Alpha8Astc12X12Khr = OpenTK.Graphics.ES30.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc12X12Khr; -} -static void Test_LightEnvModeSgix_37913() { - var _Add = OpenTK.Graphics.ES30.LightEnvModeSgix.Add; - var _Replace = OpenTK.Graphics.ES30.LightEnvModeSgix.Replace; - var _Modulate = OpenTK.Graphics.ES30.LightEnvModeSgix.Modulate; -} -static void Test_LightEnvParameterSgix_37914() { - var _LightEnvModeSgix = OpenTK.Graphics.ES30.LightEnvParameterSgix.LightEnvModeSgix; -} -static void Test_LightModelColorControl_37915() { - var _SingleColor = OpenTK.Graphics.ES30.LightModelColorControl.SingleColor; - var _SingleColorExt = OpenTK.Graphics.ES30.LightModelColorControl.SingleColorExt; - var _SeparateSpecularColor = OpenTK.Graphics.ES30.LightModelColorControl.SeparateSpecularColor; - var _SeparateSpecularColorExt = OpenTK.Graphics.ES30.LightModelColorControl.SeparateSpecularColorExt; -} -static void Test_LightModelParameter_37916() { - var _LightModelLocalViewer = OpenTK.Graphics.ES30.LightModelParameter.LightModelLocalViewer; - var _LightModelTwoSide = OpenTK.Graphics.ES30.LightModelParameter.LightModelTwoSide; - var _LightModelAmbient = OpenTK.Graphics.ES30.LightModelParameter.LightModelAmbient; - var _LightModelColorControl = OpenTK.Graphics.ES30.LightModelParameter.LightModelColorControl; - var _LightModelColorControlExt = OpenTK.Graphics.ES30.LightModelParameter.LightModelColorControlExt; -} -static void Test_LightName_37917() { - var _Light0 = OpenTK.Graphics.ES30.LightName.Light0; - var _Light1 = OpenTK.Graphics.ES30.LightName.Light1; - var _Light2 = OpenTK.Graphics.ES30.LightName.Light2; - var _Light3 = OpenTK.Graphics.ES30.LightName.Light3; - var _Light4 = OpenTK.Graphics.ES30.LightName.Light4; - var _Light5 = OpenTK.Graphics.ES30.LightName.Light5; - var _Light6 = OpenTK.Graphics.ES30.LightName.Light6; - var _Light7 = OpenTK.Graphics.ES30.LightName.Light7; - var _FragmentLight0Sgix = OpenTK.Graphics.ES30.LightName.FragmentLight0Sgix; - var _FragmentLight1Sgix = OpenTK.Graphics.ES30.LightName.FragmentLight1Sgix; - var _FragmentLight2Sgix = OpenTK.Graphics.ES30.LightName.FragmentLight2Sgix; - var _FragmentLight3Sgix = OpenTK.Graphics.ES30.LightName.FragmentLight3Sgix; - var _FragmentLight4Sgix = OpenTK.Graphics.ES30.LightName.FragmentLight4Sgix; - var _FragmentLight5Sgix = OpenTK.Graphics.ES30.LightName.FragmentLight5Sgix; - var _FragmentLight6Sgix = OpenTK.Graphics.ES30.LightName.FragmentLight6Sgix; - var _FragmentLight7Sgix = OpenTK.Graphics.ES30.LightName.FragmentLight7Sgix; -} -static void Test_LightParameter_37918() { - var _Ambient = OpenTK.Graphics.ES30.LightParameter.Ambient; - var _Diffuse = OpenTK.Graphics.ES30.LightParameter.Diffuse; - var _Specular = OpenTK.Graphics.ES30.LightParameter.Specular; - var _Position = OpenTK.Graphics.ES30.LightParameter.Position; - var _SpotDirection = OpenTK.Graphics.ES30.LightParameter.SpotDirection; - var _SpotExponent = OpenTK.Graphics.ES30.LightParameter.SpotExponent; - var _SpotCutoff = OpenTK.Graphics.ES30.LightParameter.SpotCutoff; - var _ConstantAttenuation = OpenTK.Graphics.ES30.LightParameter.ConstantAttenuation; - var _LinearAttenuation = OpenTK.Graphics.ES30.LightParameter.LinearAttenuation; - var _QuadraticAttenuation = OpenTK.Graphics.ES30.LightParameter.QuadraticAttenuation; -} -static void Test_ListMode_37919() { - var _Compile = OpenTK.Graphics.ES30.ListMode.Compile; - var _CompileAndExecute = OpenTK.Graphics.ES30.ListMode.CompileAndExecute; -} -static void Test_ListNameType_37920() { - var _Byte = OpenTK.Graphics.ES30.ListNameType.Byte; - var _UnsignedByte = OpenTK.Graphics.ES30.ListNameType.UnsignedByte; - var _Short = OpenTK.Graphics.ES30.ListNameType.Short; - var _UnsignedShort = OpenTK.Graphics.ES30.ListNameType.UnsignedShort; - var _Int = OpenTK.Graphics.ES30.ListNameType.Int; - var _UnsignedInt = OpenTK.Graphics.ES30.ListNameType.UnsignedInt; - var _Float = OpenTK.Graphics.ES30.ListNameType.Float; - var _Gl2Bytes = OpenTK.Graphics.ES30.ListNameType.Gl2Bytes; - var _Gl3Bytes = OpenTK.Graphics.ES30.ListNameType.Gl3Bytes; - var _Gl4Bytes = OpenTK.Graphics.ES30.ListNameType.Gl4Bytes; -} -static void Test_ListParameterName_37921() { - var _ListPrioritySgix = OpenTK.Graphics.ES30.ListParameterName.ListPrioritySgix; -} -static void Test_LogicOp_37922() { - var _Clear = OpenTK.Graphics.ES30.LogicOp.Clear; - var _And = OpenTK.Graphics.ES30.LogicOp.And; - var _AndReverse = OpenTK.Graphics.ES30.LogicOp.AndReverse; - var _Copy = OpenTK.Graphics.ES30.LogicOp.Copy; - var _AndInverted = OpenTK.Graphics.ES30.LogicOp.AndInverted; - var _Noop = OpenTK.Graphics.ES30.LogicOp.Noop; - var _Xor = OpenTK.Graphics.ES30.LogicOp.Xor; - var _Or = OpenTK.Graphics.ES30.LogicOp.Or; - var _Nor = OpenTK.Graphics.ES30.LogicOp.Nor; - var _Equiv = OpenTK.Graphics.ES30.LogicOp.Equiv; - var _Invert = OpenTK.Graphics.ES30.LogicOp.Invert; - var _OrReverse = OpenTK.Graphics.ES30.LogicOp.OrReverse; - var _CopyInverted = OpenTK.Graphics.ES30.LogicOp.CopyInverted; - var _OrInverted = OpenTK.Graphics.ES30.LogicOp.OrInverted; - var _Nand = OpenTK.Graphics.ES30.LogicOp.Nand; - var _Set = OpenTK.Graphics.ES30.LogicOp.Set; -} -static void Test_MapBufferUsageMask_37923() { - var _MapReadBit = OpenTK.Graphics.ES30.MapBufferUsageMask.MapReadBit; - var _MapReadBitExt = OpenTK.Graphics.ES30.MapBufferUsageMask.MapReadBitExt; - var _MapWriteBit = OpenTK.Graphics.ES30.MapBufferUsageMask.MapWriteBit; - var _MapWriteBitExt = OpenTK.Graphics.ES30.MapBufferUsageMask.MapWriteBitExt; - var _MapInvalidateRangeBit = OpenTK.Graphics.ES30.MapBufferUsageMask.MapInvalidateRangeBit; - var _MapInvalidateRangeBitExt = OpenTK.Graphics.ES30.MapBufferUsageMask.MapInvalidateRangeBitExt; - var _MapInvalidateBufferBit = OpenTK.Graphics.ES30.MapBufferUsageMask.MapInvalidateBufferBit; - var _MapInvalidateBufferBitExt = OpenTK.Graphics.ES30.MapBufferUsageMask.MapInvalidateBufferBitExt; - var _MapFlushExplicitBit = OpenTK.Graphics.ES30.MapBufferUsageMask.MapFlushExplicitBit; - var _MapFlushExplicitBitExt = OpenTK.Graphics.ES30.MapBufferUsageMask.MapFlushExplicitBitExt; - var _MapUnsynchronizedBit = OpenTK.Graphics.ES30.MapBufferUsageMask.MapUnsynchronizedBit; - var _MapUnsynchronizedBitExt = OpenTK.Graphics.ES30.MapBufferUsageMask.MapUnsynchronizedBitExt; - var _MapPersistentBit = OpenTK.Graphics.ES30.MapBufferUsageMask.MapPersistentBit; - var _MapCoherentBit = OpenTK.Graphics.ES30.MapBufferUsageMask.MapCoherentBit; - var _DynamicStorageBit = OpenTK.Graphics.ES30.MapBufferUsageMask.DynamicStorageBit; - var _ClientStorageBit = OpenTK.Graphics.ES30.MapBufferUsageMask.ClientStorageBit; -} -static void Test_MapTarget_37924() { - var _Map1Color4 = OpenTK.Graphics.ES30.MapTarget.Map1Color4; - var _Map1Index = OpenTK.Graphics.ES30.MapTarget.Map1Index; - var _Map1Normal = OpenTK.Graphics.ES30.MapTarget.Map1Normal; - var _Map1TextureCoord1 = OpenTK.Graphics.ES30.MapTarget.Map1TextureCoord1; - var _Map1TextureCoord2 = OpenTK.Graphics.ES30.MapTarget.Map1TextureCoord2; - var _Map1TextureCoord3 = OpenTK.Graphics.ES30.MapTarget.Map1TextureCoord3; - var _Map1TextureCoord4 = OpenTK.Graphics.ES30.MapTarget.Map1TextureCoord4; - var _Map1Vertex3 = OpenTK.Graphics.ES30.MapTarget.Map1Vertex3; - var _Map1Vertex4 = OpenTK.Graphics.ES30.MapTarget.Map1Vertex4; - var _Map2Color4 = OpenTK.Graphics.ES30.MapTarget.Map2Color4; - var _Map2Index = OpenTK.Graphics.ES30.MapTarget.Map2Index; - var _Map2Normal = OpenTK.Graphics.ES30.MapTarget.Map2Normal; - var _Map2TextureCoord1 = OpenTK.Graphics.ES30.MapTarget.Map2TextureCoord1; - var _Map2TextureCoord2 = OpenTK.Graphics.ES30.MapTarget.Map2TextureCoord2; - var _Map2TextureCoord3 = OpenTK.Graphics.ES30.MapTarget.Map2TextureCoord3; - var _Map2TextureCoord4 = OpenTK.Graphics.ES30.MapTarget.Map2TextureCoord4; - var _Map2Vertex3 = OpenTK.Graphics.ES30.MapTarget.Map2Vertex3; - var _Map2Vertex4 = OpenTK.Graphics.ES30.MapTarget.Map2Vertex4; - var _GeometryDeformationSgix = OpenTK.Graphics.ES30.MapTarget.GeometryDeformationSgix; - var _TextureDeformationSgix = OpenTK.Graphics.ES30.MapTarget.TextureDeformationSgix; -} -static void Test_MapTextureFormatIntel_37925() { - var _LayoutDefaultIntel = OpenTK.Graphics.ES30.MapTextureFormatIntel.LayoutDefaultIntel; - var _LayoutLinearIntel = OpenTK.Graphics.ES30.MapTextureFormatIntel.LayoutLinearIntel; - var _LayoutLinearCpuCachedIntel = OpenTK.Graphics.ES30.MapTextureFormatIntel.LayoutLinearCpuCachedIntel; -} -static void Test_MaterialFace_37926() { - var _Front = OpenTK.Graphics.ES30.MaterialFace.Front; - var _Back = OpenTK.Graphics.ES30.MaterialFace.Back; - var _FrontAndBack = OpenTK.Graphics.ES30.MaterialFace.FrontAndBack; -} -static void Test_MaterialParameter_37927() { - var _Ambient = OpenTK.Graphics.ES30.MaterialParameter.Ambient; - var _Diffuse = OpenTK.Graphics.ES30.MaterialParameter.Diffuse; - var _Specular = OpenTK.Graphics.ES30.MaterialParameter.Specular; - var _Emission = OpenTK.Graphics.ES30.MaterialParameter.Emission; - var _Shininess = OpenTK.Graphics.ES30.MaterialParameter.Shininess; - var _AmbientAndDiffuse = OpenTK.Graphics.ES30.MaterialParameter.AmbientAndDiffuse; - var _ColorIndexes = OpenTK.Graphics.ES30.MaterialParameter.ColorIndexes; -} -static void Test_MatrixMode_37928() { - var _Modelview = OpenTK.Graphics.ES30.MatrixMode.Modelview; - var _Modelview0Ext = OpenTK.Graphics.ES30.MatrixMode.Modelview0Ext; - var _Projection = OpenTK.Graphics.ES30.MatrixMode.Projection; - var _Texture = OpenTK.Graphics.ES30.MatrixMode.Texture; -} -static void Test_MemoryBarrierMask_37929() { - var _VertexAttribArrayBarrierBit = OpenTK.Graphics.ES30.MemoryBarrierMask.VertexAttribArrayBarrierBit; - var _VertexAttribArrayBarrierBitExt = OpenTK.Graphics.ES30.MemoryBarrierMask.VertexAttribArrayBarrierBitExt; - var _ElementArrayBarrierBit = OpenTK.Graphics.ES30.MemoryBarrierMask.ElementArrayBarrierBit; - var _ElementArrayBarrierBitExt = OpenTK.Graphics.ES30.MemoryBarrierMask.ElementArrayBarrierBitExt; - var _UniformBarrierBit = OpenTK.Graphics.ES30.MemoryBarrierMask.UniformBarrierBit; - var _UniformBarrierBitExt = OpenTK.Graphics.ES30.MemoryBarrierMask.UniformBarrierBitExt; - var _TextureFetchBarrierBit = OpenTK.Graphics.ES30.MemoryBarrierMask.TextureFetchBarrierBit; - var _TextureFetchBarrierBitExt = OpenTK.Graphics.ES30.MemoryBarrierMask.TextureFetchBarrierBitExt; - var _ShaderGlobalAccessBarrierBitNv = OpenTK.Graphics.ES30.MemoryBarrierMask.ShaderGlobalAccessBarrierBitNv; - var _ShaderImageAccessBarrierBit = OpenTK.Graphics.ES30.MemoryBarrierMask.ShaderImageAccessBarrierBit; - var _ShaderImageAccessBarrierBitExt = OpenTK.Graphics.ES30.MemoryBarrierMask.ShaderImageAccessBarrierBitExt; - var _CommandBarrierBit = OpenTK.Graphics.ES30.MemoryBarrierMask.CommandBarrierBit; - var _CommandBarrierBitExt = OpenTK.Graphics.ES30.MemoryBarrierMask.CommandBarrierBitExt; - var _PixelBufferBarrierBit = OpenTK.Graphics.ES30.MemoryBarrierMask.PixelBufferBarrierBit; - var _PixelBufferBarrierBitExt = OpenTK.Graphics.ES30.MemoryBarrierMask.PixelBufferBarrierBitExt; - var _TextureUpdateBarrierBit = OpenTK.Graphics.ES30.MemoryBarrierMask.TextureUpdateBarrierBit; - var _TextureUpdateBarrierBitExt = OpenTK.Graphics.ES30.MemoryBarrierMask.TextureUpdateBarrierBitExt; - var _BufferUpdateBarrierBit = OpenTK.Graphics.ES30.MemoryBarrierMask.BufferUpdateBarrierBit; - var _BufferUpdateBarrierBitExt = OpenTK.Graphics.ES30.MemoryBarrierMask.BufferUpdateBarrierBitExt; - var _FramebufferBarrierBit = OpenTK.Graphics.ES30.MemoryBarrierMask.FramebufferBarrierBit; - var _FramebufferBarrierBitExt = OpenTK.Graphics.ES30.MemoryBarrierMask.FramebufferBarrierBitExt; - var _TransformFeedbackBarrierBit = OpenTK.Graphics.ES30.MemoryBarrierMask.TransformFeedbackBarrierBit; - var _TransformFeedbackBarrierBitExt = OpenTK.Graphics.ES30.MemoryBarrierMask.TransformFeedbackBarrierBitExt; - var _AtomicCounterBarrierBit = OpenTK.Graphics.ES30.MemoryBarrierMask.AtomicCounterBarrierBit; - var _AtomicCounterBarrierBitExt = OpenTK.Graphics.ES30.MemoryBarrierMask.AtomicCounterBarrierBitExt; - var _ShaderStorageBarrierBit = OpenTK.Graphics.ES30.MemoryBarrierMask.ShaderStorageBarrierBit; - var _ClientMappedBufferBarrierBit = OpenTK.Graphics.ES30.MemoryBarrierMask.ClientMappedBufferBarrierBit; - var _QueryBufferBarrierBit = OpenTK.Graphics.ES30.MemoryBarrierMask.QueryBufferBarrierBit; - var _AllBarrierBits = OpenTK.Graphics.ES30.MemoryBarrierMask.AllBarrierBits; - var _AllBarrierBitsExt = OpenTK.Graphics.ES30.MemoryBarrierMask.AllBarrierBitsExt; -} -static void Test_MeshMode1_37930() { - var _Point = OpenTK.Graphics.ES30.MeshMode1.Point; - var _Line = OpenTK.Graphics.ES30.MeshMode1.Line; -} -static void Test_MeshMode2_37931() { - var _Point = OpenTK.Graphics.ES30.MeshMode2.Point; - var _Line = OpenTK.Graphics.ES30.MeshMode2.Line; - var _Fill = OpenTK.Graphics.ES30.MeshMode2.Fill; -} -static void Test_MinmaxTargetExt_37932() { - var _Minmax = OpenTK.Graphics.ES30.MinmaxTargetExt.Minmax; - var _MinmaxExt = OpenTK.Graphics.ES30.MinmaxTargetExt.MinmaxExt; -} -static void Test_NormalPointerType_37933() { - var _Byte = OpenTK.Graphics.ES30.NormalPointerType.Byte; - var _Short = OpenTK.Graphics.ES30.NormalPointerType.Short; - var _Int = OpenTK.Graphics.ES30.NormalPointerType.Int; - var _Float = OpenTK.Graphics.ES30.NormalPointerType.Float; - var _Double = OpenTK.Graphics.ES30.NormalPointerType.Double; -} -static void Test_NvBlendEquationAdvanced_37934() { - var _Zero = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.Zero; - var _XorNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.XorNv; - var _Invert = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.Invert; - var _RedNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.RedNv; - var _GreenNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.GreenNv; - var _BlueNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.BlueNv; - var _BlendPremultipliedSrcNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.BlendPremultipliedSrcNv; - var _BlendOverlapNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.BlendOverlapNv; - var _UncorrelatedNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.UncorrelatedNv; - var _DisjointNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.DisjointNv; - var _ConjointNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.ConjointNv; - var _SrcNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.SrcNv; - var _DstNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.DstNv; - var _SrcOverNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.SrcOverNv; - var _DstOverNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.DstOverNv; - var _SrcInNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.SrcInNv; - var _DstInNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.DstInNv; - var _SrcOutNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.SrcOutNv; - var _DstOutNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.DstOutNv; - var _SrcAtopNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.SrcAtopNv; - var _DstAtopNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.DstAtopNv; - var _PlusNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.PlusNv; - var _PlusDarkerNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.PlusDarkerNv; - var _MultiplyNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.MultiplyNv; - var _ScreenNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.ScreenNv; - var _OverlayNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.OverlayNv; - var _DarkenNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.DarkenNv; - var _LightenNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.LightenNv; - var _ColordodgeNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.ColordodgeNv; - var _ColorburnNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.ColorburnNv; - var _HardlightNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.HardlightNv; - var _SoftlightNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.SoftlightNv; - var _DifferenceNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.DifferenceNv; - var _MinusNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.MinusNv; - var _ExclusionNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.ExclusionNv; - var _ContrastNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.ContrastNv; - var _InvertRgbNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.InvertRgbNv; - var _LineardodgeNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.LineardodgeNv; - var _LinearburnNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.LinearburnNv; - var _VividlightNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.VividlightNv; - var _LinearlightNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.LinearlightNv; - var _PinlightNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.PinlightNv; - var _HardmixNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.HardmixNv; - var _HslHueNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.HslHueNv; - var _HslSaturationNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.HslSaturationNv; - var _HslColorNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.HslColorNv; - var _HslLuminosityNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.HslLuminosityNv; - var _PlusClampedNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.PlusClampedNv; - var _PlusClampedAlphaNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.PlusClampedAlphaNv; - var _MinusClampedNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.MinusClampedNv; - var _InvertOvgNv = OpenTK.Graphics.ES30.NvBlendEquationAdvanced.InvertOvgNv; -} -static void Test_NvBlendEquationAdvancedCoherent_37935() { - var _BlendAdvancedCoherentNv = OpenTK.Graphics.ES30.NvBlendEquationAdvancedCoherent.BlendAdvancedCoherentNv; -} -static void Test_NvCopyBuffer_37936() { - var _CopyReadBufferNv = OpenTK.Graphics.ES30.NvCopyBuffer.CopyReadBufferNv; - var _CopyWriteBufferNv = OpenTK.Graphics.ES30.NvCopyBuffer.CopyWriteBufferNv; -} -static void Test_NvCoverageSample_37937() { - var _CoverageBufferBitNv = OpenTK.Graphics.ES30.NvCoverageSample.CoverageBufferBitNv; - var _CoverageComponentNv = OpenTK.Graphics.ES30.NvCoverageSample.CoverageComponentNv; - var _CoverageComponent4Nv = OpenTK.Graphics.ES30.NvCoverageSample.CoverageComponent4Nv; - var _CoverageAttachmentNv = OpenTK.Graphics.ES30.NvCoverageSample.CoverageAttachmentNv; - var _CoverageBuffersNv = OpenTK.Graphics.ES30.NvCoverageSample.CoverageBuffersNv; - var _CoverageSamplesNv = OpenTK.Graphics.ES30.NvCoverageSample.CoverageSamplesNv; - var _CoverageAllFragmentsNv = OpenTK.Graphics.ES30.NvCoverageSample.CoverageAllFragmentsNv; - var _CoverageEdgeFragmentsNv = OpenTK.Graphics.ES30.NvCoverageSample.CoverageEdgeFragmentsNv; - var _CoverageAutomaticNv = OpenTK.Graphics.ES30.NvCoverageSample.CoverageAutomaticNv; -} -static void Test_NvDepthNonlinear_37938() { - var _DepthComponent16NonlinearNv = OpenTK.Graphics.ES30.NvDepthNonlinear.DepthComponent16NonlinearNv; -} -static void Test_NvDrawBuffers_37939() { - var _MaxDrawBuffersNv = OpenTK.Graphics.ES30.NvDrawBuffers.MaxDrawBuffersNv; - var _DrawBuffer0Nv = OpenTK.Graphics.ES30.NvDrawBuffers.DrawBuffer0Nv; - var _DrawBuffer1Nv = OpenTK.Graphics.ES30.NvDrawBuffers.DrawBuffer1Nv; - var _DrawBuffer2Nv = OpenTK.Graphics.ES30.NvDrawBuffers.DrawBuffer2Nv; - var _DrawBuffer3Nv = OpenTK.Graphics.ES30.NvDrawBuffers.DrawBuffer3Nv; - var _DrawBuffer4Nv = OpenTK.Graphics.ES30.NvDrawBuffers.DrawBuffer4Nv; - var _DrawBuffer5Nv = OpenTK.Graphics.ES30.NvDrawBuffers.DrawBuffer5Nv; - var _DrawBuffer6Nv = OpenTK.Graphics.ES30.NvDrawBuffers.DrawBuffer6Nv; - var _DrawBuffer7Nv = OpenTK.Graphics.ES30.NvDrawBuffers.DrawBuffer7Nv; - var _DrawBuffer8Nv = OpenTK.Graphics.ES30.NvDrawBuffers.DrawBuffer8Nv; - var _DrawBuffer9Nv = OpenTK.Graphics.ES30.NvDrawBuffers.DrawBuffer9Nv; - var _DrawBuffer10Nv = OpenTK.Graphics.ES30.NvDrawBuffers.DrawBuffer10Nv; - var _DrawBuffer11Nv = OpenTK.Graphics.ES30.NvDrawBuffers.DrawBuffer11Nv; - var _DrawBuffer12Nv = OpenTK.Graphics.ES30.NvDrawBuffers.DrawBuffer12Nv; - var _DrawBuffer13Nv = OpenTK.Graphics.ES30.NvDrawBuffers.DrawBuffer13Nv; - var _DrawBuffer14Nv = OpenTK.Graphics.ES30.NvDrawBuffers.DrawBuffer14Nv; - var _DrawBuffer15Nv = OpenTK.Graphics.ES30.NvDrawBuffers.DrawBuffer15Nv; - var _ColorAttachment0Nv = OpenTK.Graphics.ES30.NvDrawBuffers.ColorAttachment0Nv; - var _ColorAttachment1Nv = OpenTK.Graphics.ES30.NvDrawBuffers.ColorAttachment1Nv; - var _ColorAttachment2Nv = OpenTK.Graphics.ES30.NvDrawBuffers.ColorAttachment2Nv; - var _ColorAttachment3Nv = OpenTK.Graphics.ES30.NvDrawBuffers.ColorAttachment3Nv; - var _ColorAttachment4Nv = OpenTK.Graphics.ES30.NvDrawBuffers.ColorAttachment4Nv; - var _ColorAttachment5Nv = OpenTK.Graphics.ES30.NvDrawBuffers.ColorAttachment5Nv; - var _ColorAttachment6Nv = OpenTK.Graphics.ES30.NvDrawBuffers.ColorAttachment6Nv; - var _ColorAttachment7Nv = OpenTK.Graphics.ES30.NvDrawBuffers.ColorAttachment7Nv; - var _ColorAttachment8Nv = OpenTK.Graphics.ES30.NvDrawBuffers.ColorAttachment8Nv; - var _ColorAttachment9Nv = OpenTK.Graphics.ES30.NvDrawBuffers.ColorAttachment9Nv; - var _ColorAttachment10Nv = OpenTK.Graphics.ES30.NvDrawBuffers.ColorAttachment10Nv; - var _ColorAttachment11Nv = OpenTK.Graphics.ES30.NvDrawBuffers.ColorAttachment11Nv; - var _ColorAttachment12Nv = OpenTK.Graphics.ES30.NvDrawBuffers.ColorAttachment12Nv; - var _ColorAttachment13Nv = OpenTK.Graphics.ES30.NvDrawBuffers.ColorAttachment13Nv; - var _ColorAttachment14Nv = OpenTK.Graphics.ES30.NvDrawBuffers.ColorAttachment14Nv; - var _ColorAttachment15Nv = OpenTK.Graphics.ES30.NvDrawBuffers.ColorAttachment15Nv; -} -static void Test_NvDrawInstanced_37940() { -} -static void Test_NvExplicitAttribLocation_37941() { -} -static void Test_NvFboColorAttachments_37942() { - var _MaxColorAttachmentsNv = OpenTK.Graphics.ES30.NvFboColorAttachments.MaxColorAttachmentsNv; - var _ColorAttachment0Nv = OpenTK.Graphics.ES30.NvFboColorAttachments.ColorAttachment0Nv; - var _ColorAttachment1Nv = OpenTK.Graphics.ES30.NvFboColorAttachments.ColorAttachment1Nv; - var _ColorAttachment2Nv = OpenTK.Graphics.ES30.NvFboColorAttachments.ColorAttachment2Nv; - var _ColorAttachment3Nv = OpenTK.Graphics.ES30.NvFboColorAttachments.ColorAttachment3Nv; - var _ColorAttachment4Nv = OpenTK.Graphics.ES30.NvFboColorAttachments.ColorAttachment4Nv; - var _ColorAttachment5Nv = OpenTK.Graphics.ES30.NvFboColorAttachments.ColorAttachment5Nv; - var _ColorAttachment6Nv = OpenTK.Graphics.ES30.NvFboColorAttachments.ColorAttachment6Nv; - var _ColorAttachment7Nv = OpenTK.Graphics.ES30.NvFboColorAttachments.ColorAttachment7Nv; - var _ColorAttachment8Nv = OpenTK.Graphics.ES30.NvFboColorAttachments.ColorAttachment8Nv; - var _ColorAttachment9Nv = OpenTK.Graphics.ES30.NvFboColorAttachments.ColorAttachment9Nv; - var _ColorAttachment10Nv = OpenTK.Graphics.ES30.NvFboColorAttachments.ColorAttachment10Nv; - var _ColorAttachment11Nv = OpenTK.Graphics.ES30.NvFboColorAttachments.ColorAttachment11Nv; - var _ColorAttachment12Nv = OpenTK.Graphics.ES30.NvFboColorAttachments.ColorAttachment12Nv; - var _ColorAttachment13Nv = OpenTK.Graphics.ES30.NvFboColorAttachments.ColorAttachment13Nv; - var _ColorAttachment14Nv = OpenTK.Graphics.ES30.NvFboColorAttachments.ColorAttachment14Nv; - var _ColorAttachment15Nv = OpenTK.Graphics.ES30.NvFboColorAttachments.ColorAttachment15Nv; -} -static void Test_NvFence_37943() { - var _AllCompletedNv = OpenTK.Graphics.ES30.NvFence.AllCompletedNv; - var _FenceStatusNv = OpenTK.Graphics.ES30.NvFence.FenceStatusNv; - var _FenceConditionNv = OpenTK.Graphics.ES30.NvFence.FenceConditionNv; -} -static void Test_NvFramebufferBlit_37944() { - var _DrawFramebufferBindingNv = OpenTK.Graphics.ES30.NvFramebufferBlit.DrawFramebufferBindingNv; - var _ReadFramebufferNv = OpenTK.Graphics.ES30.NvFramebufferBlit.ReadFramebufferNv; - var _DrawFramebufferNv = OpenTK.Graphics.ES30.NvFramebufferBlit.DrawFramebufferNv; - var _ReadFramebufferBindingNv = OpenTK.Graphics.ES30.NvFramebufferBlit.ReadFramebufferBindingNv; -} -static void Test_NvFramebufferMultisample_37945() { - var _RenderbufferSamplesNv = OpenTK.Graphics.ES30.NvFramebufferMultisample.RenderbufferSamplesNv; - var _FramebufferIncompleteMultisampleNv = OpenTK.Graphics.ES30.NvFramebufferMultisample.FramebufferIncompleteMultisampleNv; - var _MaxSamplesNv = OpenTK.Graphics.ES30.NvFramebufferMultisample.MaxSamplesNv; -} -static void Test_NvGenerateMipmapSrgb_37946() { -} -static void Test_NvInstancedArrays_37947() { - var _VertexAttribArrayDivisorNv = OpenTK.Graphics.ES30.NvInstancedArrays.VertexAttribArrayDivisorNv; -} -static void Test_NvNonSquareMatrices_37948() { - var _FloatMat2x3Nv = OpenTK.Graphics.ES30.NvNonSquareMatrices.FloatMat2x3Nv; - var _FloatMat2x4Nv = OpenTK.Graphics.ES30.NvNonSquareMatrices.FloatMat2x4Nv; - var _FloatMat3x2Nv = OpenTK.Graphics.ES30.NvNonSquareMatrices.FloatMat3x2Nv; - var _FloatMat3x4Nv = OpenTK.Graphics.ES30.NvNonSquareMatrices.FloatMat3x4Nv; - var _FloatMat4x2Nv = OpenTK.Graphics.ES30.NvNonSquareMatrices.FloatMat4x2Nv; - var _FloatMat4x3Nv = OpenTK.Graphics.ES30.NvNonSquareMatrices.FloatMat4x3Nv; -} -static void Test_NvReadBuffer_37949() { - var _ReadBufferNv = OpenTK.Graphics.ES30.NvReadBuffer.ReadBufferNv; -} -static void Test_NvReadBufferFront_37950() { -} -static void Test_NvReadDepth_37951() { -} -static void Test_NvReadDepthStencil_37952() { -} -static void Test_NvReadStencil_37953() { -} -static void Test_NvShadowSamplersArray_37954() { - var _Sampler2DArrayShadowNv = OpenTK.Graphics.ES30.NvShadowSamplersArray.Sampler2DArrayShadowNv; -} -static void Test_NvShadowSamplersCube_37955() { - var _SamplerCubeShadowNv = OpenTK.Graphics.ES30.NvShadowSamplersCube.SamplerCubeShadowNv; -} -static void Test_NvSrgbFormats_37956() { - var _Etc1Srgb8Nv = OpenTK.Graphics.ES30.NvSrgbFormats.Etc1Srgb8Nv; - var _Srgb8Nv = OpenTK.Graphics.ES30.NvSrgbFormats.Srgb8Nv; - var _SluminanceAlphaNv = OpenTK.Graphics.ES30.NvSrgbFormats.SluminanceAlphaNv; - var _Sluminance8Alpha8Nv = OpenTK.Graphics.ES30.NvSrgbFormats.Sluminance8Alpha8Nv; - var _SluminanceNv = OpenTK.Graphics.ES30.NvSrgbFormats.SluminanceNv; - var _Sluminance8Nv = OpenTK.Graphics.ES30.NvSrgbFormats.Sluminance8Nv; - var _CompressedSrgbS3tcDxt1Nv = OpenTK.Graphics.ES30.NvSrgbFormats.CompressedSrgbS3tcDxt1Nv; - var _CompressedSrgbAlphaS3tcDxt1Nv = OpenTK.Graphics.ES30.NvSrgbFormats.CompressedSrgbAlphaS3tcDxt1Nv; - var _CompressedSrgbAlphaS3tcDxt3Nv = OpenTK.Graphics.ES30.NvSrgbFormats.CompressedSrgbAlphaS3tcDxt3Nv; - var _CompressedSrgbAlphaS3tcDxt5Nv = OpenTK.Graphics.ES30.NvSrgbFormats.CompressedSrgbAlphaS3tcDxt5Nv; -} -static void Test_NvTextureBorderClamp_37957() { - var _TextureBorderColorNv = OpenTK.Graphics.ES30.NvTextureBorderClamp.TextureBorderColorNv; - var _ClampToBorderNv = OpenTK.Graphics.ES30.NvTextureBorderClamp.ClampToBorderNv; -} -static void Test_NvTextureCompressionS3tcUpdate_37958() { -} -static void Test_NvTextureNpot2DMipmap_37959() { -} -static void Test_ObjectLabelIdentifier_37960() { - var _Texture = OpenTK.Graphics.ES30.ObjectLabelIdentifier.Texture; - var _VertexArray = OpenTK.Graphics.ES30.ObjectLabelIdentifier.VertexArray; - var _Buffer = OpenTK.Graphics.ES30.ObjectLabelIdentifier.Buffer; - var _Shader = OpenTK.Graphics.ES30.ObjectLabelIdentifier.Shader; - var _Program = OpenTK.Graphics.ES30.ObjectLabelIdentifier.Program; - var _Query = OpenTK.Graphics.ES30.ObjectLabelIdentifier.Query; - var _ProgramPipeline = OpenTK.Graphics.ES30.ObjectLabelIdentifier.ProgramPipeline; - var _Sampler = OpenTK.Graphics.ES30.ObjectLabelIdentifier.Sampler; - var _Framebuffer = OpenTK.Graphics.ES30.ObjectLabelIdentifier.Framebuffer; - var _Renderbuffer = OpenTK.Graphics.ES30.ObjectLabelIdentifier.Renderbuffer; - var _TransformFeedback = OpenTK.Graphics.ES30.ObjectLabelIdentifier.TransformFeedback; -} -static void Test_OcclusionQueryEventMaskAmd_37961() { - var _QueryDepthPassEventBitAmd = OpenTK.Graphics.ES30.OcclusionQueryEventMaskAmd.QueryDepthPassEventBitAmd; - var _QueryDepthFailEventBitAmd = OpenTK.Graphics.ES30.OcclusionQueryEventMaskAmd.QueryDepthFailEventBitAmd; - var _QueryStencilFailEventBitAmd = OpenTK.Graphics.ES30.OcclusionQueryEventMaskAmd.QueryStencilFailEventBitAmd; - var _QueryDepthBoundsFailEventBitAmd = OpenTK.Graphics.ES30.OcclusionQueryEventMaskAmd.QueryDepthBoundsFailEventBitAmd; - var _QueryAllEventBitsAmd = OpenTK.Graphics.ES30.OcclusionQueryEventMaskAmd.QueryAllEventBitsAmd; -} -static void Test_OesCompressedEtc1Rgb8Texture_37962() { - var _Etc1Rgb8Oes = OpenTK.Graphics.ES30.OesCompressedEtc1Rgb8Texture.Etc1Rgb8Oes; -} -static void Test_OesCompressedPalettedTexture_37963() { - var _Palette4Rgb8Oes = OpenTK.Graphics.ES30.OesCompressedPalettedTexture.Palette4Rgb8Oes; - var _Palette4Rgba8Oes = OpenTK.Graphics.ES30.OesCompressedPalettedTexture.Palette4Rgba8Oes; - var _Palette4R5G6B5Oes = OpenTK.Graphics.ES30.OesCompressedPalettedTexture.Palette4R5G6B5Oes; - var _Palette4Rgba4Oes = OpenTK.Graphics.ES30.OesCompressedPalettedTexture.Palette4Rgba4Oes; - var _Palette4Rgb5A1Oes = OpenTK.Graphics.ES30.OesCompressedPalettedTexture.Palette4Rgb5A1Oes; - var _Palette8Rgb8Oes = OpenTK.Graphics.ES30.OesCompressedPalettedTexture.Palette8Rgb8Oes; - var _Palette8Rgba8Oes = OpenTK.Graphics.ES30.OesCompressedPalettedTexture.Palette8Rgba8Oes; - var _Palette8R5G6B5Oes = OpenTK.Graphics.ES30.OesCompressedPalettedTexture.Palette8R5G6B5Oes; - var _Palette8Rgba4Oes = OpenTK.Graphics.ES30.OesCompressedPalettedTexture.Palette8Rgba4Oes; - var _Palette8Rgb5A1Oes = OpenTK.Graphics.ES30.OesCompressedPalettedTexture.Palette8Rgb5A1Oes; -} -static void Test_OesDepth24_37964() { - var _DepthComponent24Oes = OpenTK.Graphics.ES30.OesDepth24.DepthComponent24Oes; -} -static void Test_OesDepth32_37965() { - var _DepthComponent32Oes = OpenTK.Graphics.ES30.OesDepth32.DepthComponent32Oes; -} -static void Test_OesDepthTexture_37966() { - var _UnsignedShort = OpenTK.Graphics.ES30.OesDepthTexture.UnsignedShort; - var _UnsignedInt = OpenTK.Graphics.ES30.OesDepthTexture.UnsignedInt; - var _DepthComponent = OpenTK.Graphics.ES30.OesDepthTexture.DepthComponent; -} -static void Test_OesEglImage_37967() { -} -static void Test_OesEglImageExternal_37968() { - var _TextureExternalOes = OpenTK.Graphics.ES30.OesEglImageExternal.TextureExternalOes; - var _SamplerExternalOes = OpenTK.Graphics.ES30.OesEglImageExternal.SamplerExternalOes; - var _TextureBindingExternalOes = OpenTK.Graphics.ES30.OesEglImageExternal.TextureBindingExternalOes; - var _RequiredTextureImageUnitsOes = OpenTK.Graphics.ES30.OesEglImageExternal.RequiredTextureImageUnitsOes; -} -static void Test_OesElementIndexUint_37969() { - var _UnsignedInt = OpenTK.Graphics.ES30.OesElementIndexUint.UnsignedInt; -} -static void Test_OesFboRenderMipmap_37970() { -} -static void Test_OesFragmentPrecisionHigh_37971() { -} -static void Test_OesGetProgramBinary_37972() { - var _ProgramBinaryLengthOes = OpenTK.Graphics.ES30.OesGetProgramBinary.ProgramBinaryLengthOes; - var _NumProgramBinaryFormatsOes = OpenTK.Graphics.ES30.OesGetProgramBinary.NumProgramBinaryFormatsOes; - var _ProgramBinaryFormatsOes = OpenTK.Graphics.ES30.OesGetProgramBinary.ProgramBinaryFormatsOes; -} -static void Test_OesMapbuffer_37973() { - var _WriteOnlyOes = OpenTK.Graphics.ES30.OesMapbuffer.WriteOnlyOes; - var _BufferAccessOes = OpenTK.Graphics.ES30.OesMapbuffer.BufferAccessOes; - var _BufferMappedOes = OpenTK.Graphics.ES30.OesMapbuffer.BufferMappedOes; - var _BufferMapPointerOes = OpenTK.Graphics.ES30.OesMapbuffer.BufferMapPointerOes; -} -static void Test_OesPackedDepthStencil_37974() { - var _DepthStencilOes = OpenTK.Graphics.ES30.OesPackedDepthStencil.DepthStencilOes; - var _UnsignedInt248Oes = OpenTK.Graphics.ES30.OesPackedDepthStencil.UnsignedInt248Oes; - var _Depth24Stencil8Oes = OpenTK.Graphics.ES30.OesPackedDepthStencil.Depth24Stencil8Oes; -} -static void Test_OesRequiredInternalformat_37975() { - var _Alpha8Oes = OpenTK.Graphics.ES30.OesRequiredInternalformat.Alpha8Oes; - var _Luminance8Oes = OpenTK.Graphics.ES30.OesRequiredInternalformat.Luminance8Oes; - var _Luminance4Alpha4Oes = OpenTK.Graphics.ES30.OesRequiredInternalformat.Luminance4Alpha4Oes; - var _Luminance8Alpha8Oes = OpenTK.Graphics.ES30.OesRequiredInternalformat.Luminance8Alpha8Oes; - var _Rgb8Oes = OpenTK.Graphics.ES30.OesRequiredInternalformat.Rgb8Oes; - var _Rgb10Ext = OpenTK.Graphics.ES30.OesRequiredInternalformat.Rgb10Ext; - var _Rgba4Oes = OpenTK.Graphics.ES30.OesRequiredInternalformat.Rgba4Oes; - var _Rgb5A1Oes = OpenTK.Graphics.ES30.OesRequiredInternalformat.Rgb5A1Oes; - var _Rgba8Oes = OpenTK.Graphics.ES30.OesRequiredInternalformat.Rgba8Oes; - var _Rgb10A2Ext = OpenTK.Graphics.ES30.OesRequiredInternalformat.Rgb10A2Ext; - var _DepthComponent16Oes = OpenTK.Graphics.ES30.OesRequiredInternalformat.DepthComponent16Oes; - var _DepthComponent24Oes = OpenTK.Graphics.ES30.OesRequiredInternalformat.DepthComponent24Oes; - var _DepthComponent32Oes = OpenTK.Graphics.ES30.OesRequiredInternalformat.DepthComponent32Oes; - var _Depth24Stencil8Oes = OpenTK.Graphics.ES30.OesRequiredInternalformat.Depth24Stencil8Oes; - var _Rgb565Oes = OpenTK.Graphics.ES30.OesRequiredInternalformat.Rgb565Oes; -} -static void Test_OesRgb8Rgba8_37976() { - var _Rgb8Oes = OpenTK.Graphics.ES30.OesRgb8Rgba8.Rgb8Oes; - var _Rgba8Oes = OpenTK.Graphics.ES30.OesRgb8Rgba8.Rgba8Oes; -} -static void Test_OesSampleShading_37977() { - var _SampleShadingOes = OpenTK.Graphics.ES30.OesSampleShading.SampleShadingOes; - var _MinSampleShadingValueOes = OpenTK.Graphics.ES30.OesSampleShading.MinSampleShadingValueOes; -} -static void Test_OesSampleVariables_37978() { -} -static void Test_OesShaderImageAtomic_37979() { -} -static void Test_OesShaderMultisampleInterpolation_37980() { - var _MinFragmentInterpolationOffsetOes = OpenTK.Graphics.ES30.OesShaderMultisampleInterpolation.MinFragmentInterpolationOffsetOes; - var _MaxFragmentInterpolationOffsetOes = OpenTK.Graphics.ES30.OesShaderMultisampleInterpolation.MaxFragmentInterpolationOffsetOes; - var _FragmentInterpolationOffsetBitsOes = OpenTK.Graphics.ES30.OesShaderMultisampleInterpolation.FragmentInterpolationOffsetBitsOes; -} -static void Test_OesStandardDerivatives_37981() { - var _FragmentShaderDerivativeHintOes = OpenTK.Graphics.ES30.OesStandardDerivatives.FragmentShaderDerivativeHintOes; -} -static void Test_OesStencil1_37982() { - var _StencilIndex1Oes = OpenTK.Graphics.ES30.OesStencil1.StencilIndex1Oes; -} -static void Test_OesStencil4_37983() { - var _StencilIndex4Oes = OpenTK.Graphics.ES30.OesStencil4.StencilIndex4Oes; -} -static void Test_OesSurfacelessContext_37984() { - var _FramebufferUndefinedOes = OpenTK.Graphics.ES30.OesSurfacelessContext.FramebufferUndefinedOes; -} -static void Test_OesTexture3D_37985() { - var _TextureBinding3DOes = OpenTK.Graphics.ES30.OesTexture3D.TextureBinding3DOes; - var _Texture3DOes = OpenTK.Graphics.ES30.OesTexture3D.Texture3DOes; - var _TextureWrapROes = OpenTK.Graphics.ES30.OesTexture3D.TextureWrapROes; - var _Max3DTextureSizeOes = OpenTK.Graphics.ES30.OesTexture3D.Max3DTextureSizeOes; - var _Sampler3DOes = OpenTK.Graphics.ES30.OesTexture3D.Sampler3DOes; - var _FramebufferAttachmentTexture3DZoffsetOes = OpenTK.Graphics.ES30.OesTexture3D.FramebufferAttachmentTexture3DZoffsetOes; -} -static void Test_OesTextureCompressionAstc_37986() { - var _CompressedRgbaAstc4X4Khr = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedRgbaAstc4X4Khr; - var _CompressedRgbaAstc5X4Khr = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedRgbaAstc5X4Khr; - var _CompressedRgbaAstc5X5Khr = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedRgbaAstc5X5Khr; - var _CompressedRgbaAstc6X5Khr = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedRgbaAstc6X5Khr; - var _CompressedRgbaAstc6X6Khr = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedRgbaAstc6X6Khr; - var _CompressedRgbaAstc8X5Khr = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedRgbaAstc8X5Khr; - var _CompressedRgbaAstc8X6Khr = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedRgbaAstc8X6Khr; - var _CompressedRgbaAstc8X8Khr = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedRgbaAstc8X8Khr; - var _CompressedRgbaAstc10X5Khr = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedRgbaAstc10X5Khr; - var _CompressedRgbaAstc10X6Khr = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedRgbaAstc10X6Khr; - var _CompressedRgbaAstc10X8Khr = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedRgbaAstc10X8Khr; - var _CompressedRgbaAstc10X10Khr = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedRgbaAstc10X10Khr; - var _CompressedRgbaAstc12X10Khr = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedRgbaAstc12X10Khr; - var _CompressedRgbaAstc12X12Khr = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedRgbaAstc12X12Khr; - var _CompressedRgbaAstc3X3x3Oes = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedRgbaAstc3X3x3Oes; - var _CompressedRgbaAstc4X3x3Oes = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedRgbaAstc4X3x3Oes; - var _CompressedRgbaAstc4X4x3Oes = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedRgbaAstc4X4x3Oes; - var _CompressedRgbaAstc4X4x4Oes = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedRgbaAstc4X4x4Oes; - var _CompressedRgbaAstc5X4x4Oes = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedRgbaAstc5X4x4Oes; - var _CompressedRgbaAstc5X5x4Oes = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedRgbaAstc5X5x4Oes; - var _CompressedRgbaAstc5X5x5Oes = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedRgbaAstc5X5x5Oes; - var _CompressedRgbaAstc6X5x5Oes = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedRgbaAstc6X5x5Oes; - var _CompressedRgbaAstc6X6x5Oes = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedRgbaAstc6X6x5Oes; - var _CompressedRgbaAstc6X6x6Oes = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedRgbaAstc6X6x6Oes; - var _CompressedSrgb8Alpha8Astc4X4Khr = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc4X4Khr; - var _CompressedSrgb8Alpha8Astc5X4Khr = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc5X4Khr; - var _CompressedSrgb8Alpha8Astc5X5Khr = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc5X5Khr; - var _CompressedSrgb8Alpha8Astc6X5Khr = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc6X5Khr; - var _CompressedSrgb8Alpha8Astc6X6Khr = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc6X6Khr; - var _CompressedSrgb8Alpha8Astc8X5Khr = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc8X5Khr; - var _CompressedSrgb8Alpha8Astc8X6Khr = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc8X6Khr; - var _CompressedSrgb8Alpha8Astc8X8Khr = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc8X8Khr; - var _CompressedSrgb8Alpha8Astc10X5Khr = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc10X5Khr; - var _CompressedSrgb8Alpha8Astc10X6Khr = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc10X6Khr; - var _CompressedSrgb8Alpha8Astc10X8Khr = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc10X8Khr; - var _CompressedSrgb8Alpha8Astc10X10Khr = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc10X10Khr; - var _CompressedSrgb8Alpha8Astc12X10Khr = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc12X10Khr; - var _CompressedSrgb8Alpha8Astc12X12Khr = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc12X12Khr; - var _CompressedSrgb8Alpha8Astc3X3x3Oes = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc3X3x3Oes; - var _CompressedSrgb8Alpha8Astc4X3x3Oes = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc4X3x3Oes; - var _CompressedSrgb8Alpha8Astc4X4x3Oes = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc4X4x3Oes; - var _CompressedSrgb8Alpha8Astc4X4x4Oes = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc4X4x4Oes; - var _CompressedSrgb8Alpha8Astc5X4x4Oes = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc5X4x4Oes; - var _CompressedSrgb8Alpha8Astc5X5x4Oes = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc5X5x4Oes; - var _CompressedSrgb8Alpha8Astc5X5x5Oes = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc5X5x5Oes; - var _CompressedSrgb8Alpha8Astc6X5x5Oes = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc6X5x5Oes; - var _CompressedSrgb8Alpha8Astc6X6x5Oes = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc6X6x5Oes; - var _CompressedSrgb8Alpha8Astc6X6x6Oes = OpenTK.Graphics.ES30.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc6X6x6Oes; -} -static void Test_OesTextureFloat_37987() { - var _Float = OpenTK.Graphics.ES30.OesTextureFloat.Float; -} -static void Test_OesTextureFloatLinear_37988() { -} -static void Test_OesTextureHalfFloat_37989() { - var _HalfFloatOes = OpenTK.Graphics.ES30.OesTextureHalfFloat.HalfFloatOes; -} -static void Test_OesTextureHalfFloatLinear_37990() { -} -static void Test_OesTextureNpot_37991() { -} -static void Test_OesTextureStencil8_37992() { - var _StencilIndexOes = OpenTK.Graphics.ES30.OesTextureStencil8.StencilIndexOes; - var _StencilIndex8Oes = OpenTK.Graphics.ES30.OesTextureStencil8.StencilIndex8Oes; -} -static void Test_OesTextureStorageMultisample2dArray_37993() { - var _Texture2DMultisampleArrayOes = OpenTK.Graphics.ES30.OesTextureStorageMultisample2dArray.Texture2DMultisampleArrayOes; - var _TextureBinding2DMultisampleArrayOes = OpenTK.Graphics.ES30.OesTextureStorageMultisample2dArray.TextureBinding2DMultisampleArrayOes; - var _Sampler2DMultisampleArrayOes = OpenTK.Graphics.ES30.OesTextureStorageMultisample2dArray.Sampler2DMultisampleArrayOes; - var _IntSampler2DMultisampleArrayOes = OpenTK.Graphics.ES30.OesTextureStorageMultisample2dArray.IntSampler2DMultisampleArrayOes; - var _UnsignedIntSampler2DMultisampleArrayOes = OpenTK.Graphics.ES30.OesTextureStorageMultisample2dArray.UnsignedIntSampler2DMultisampleArrayOes; -} -static void Test_OesVertexArrayObject_37994() { - var _VertexArrayBindingOes = OpenTK.Graphics.ES30.OesVertexArrayObject.VertexArrayBindingOes; -} -static void Test_OesVertexHalfFloat_37995() { - var _HalfFloatOes = OpenTK.Graphics.ES30.OesVertexHalfFloat.HalfFloatOes; -} -static void Test_OesVertexType1010102_37996() { - var _UnsignedInt1010102Oes = OpenTK.Graphics.ES30.OesVertexType1010102.UnsignedInt1010102Oes; - var _Int1010102Oes = OpenTK.Graphics.ES30.OesVertexType1010102.Int1010102Oes; -} -static void Test_PixelCopyType_37997() { - var _Color = OpenTK.Graphics.ES30.PixelCopyType.Color; - var _ColorExt = OpenTK.Graphics.ES30.PixelCopyType.ColorExt; - var _Depth = OpenTK.Graphics.ES30.PixelCopyType.Depth; - var _DepthExt = OpenTK.Graphics.ES30.PixelCopyType.DepthExt; - var _Stencil = OpenTK.Graphics.ES30.PixelCopyType.Stencil; - var _StencilExt = OpenTK.Graphics.ES30.PixelCopyType.StencilExt; -} -static void Test_PixelFormat_37998() { - var _UnsignedShort = OpenTK.Graphics.ES30.PixelFormat.UnsignedShort; - var _UnsignedInt = OpenTK.Graphics.ES30.PixelFormat.UnsignedInt; - var _ColorIndex = OpenTK.Graphics.ES30.PixelFormat.ColorIndex; - var _StencilIndex = OpenTK.Graphics.ES30.PixelFormat.StencilIndex; - var _DepthComponent = OpenTK.Graphics.ES30.PixelFormat.DepthComponent; - var _Red = OpenTK.Graphics.ES30.PixelFormat.Red; - var _RedExt = OpenTK.Graphics.ES30.PixelFormat.RedExt; - var _Green = OpenTK.Graphics.ES30.PixelFormat.Green; - var _Blue = OpenTK.Graphics.ES30.PixelFormat.Blue; - var _Alpha = OpenTK.Graphics.ES30.PixelFormat.Alpha; - var _Rgb = OpenTK.Graphics.ES30.PixelFormat.Rgb; - var _Rgba = OpenTK.Graphics.ES30.PixelFormat.Rgba; - var _Luminance = OpenTK.Graphics.ES30.PixelFormat.Luminance; - var _LuminanceAlpha = OpenTK.Graphics.ES30.PixelFormat.LuminanceAlpha; - var _R = OpenTK.Graphics.ES30.PixelFormat.R; - var _AbgrExt = OpenTK.Graphics.ES30.PixelFormat.AbgrExt; - var _CmykExt = OpenTK.Graphics.ES30.PixelFormat.CmykExt; - var _CmykaExt = OpenTK.Graphics.ES30.PixelFormat.CmykaExt; - var _Ycrcb422Sgix = OpenTK.Graphics.ES30.PixelFormat.Ycrcb422Sgix; - var _Ycrcb444Sgix = OpenTK.Graphics.ES30.PixelFormat.Ycrcb444Sgix; - var _Rg = OpenTK.Graphics.ES30.PixelFormat.Rg; - var _RgInteger = OpenTK.Graphics.ES30.PixelFormat.RgInteger; - var _DepthStencil = OpenTK.Graphics.ES30.PixelFormat.DepthStencil; - var _RedInteger = OpenTK.Graphics.ES30.PixelFormat.RedInteger; - var _RgbInteger = OpenTK.Graphics.ES30.PixelFormat.RgbInteger; - var _RgbaInteger = OpenTK.Graphics.ES30.PixelFormat.RgbaInteger; -} -static void Test_PixelInternalFormat_37999() { - var _Alpha = OpenTK.Graphics.ES30.PixelInternalFormat.Alpha; - var _Rgb = OpenTK.Graphics.ES30.PixelInternalFormat.Rgb; - var _Rgba = OpenTK.Graphics.ES30.PixelInternalFormat.Rgba; - var _Luminance = OpenTK.Graphics.ES30.PixelInternalFormat.Luminance; - var _LuminanceAlpha = OpenTK.Graphics.ES30.PixelInternalFormat.LuminanceAlpha; -} -static void Test_PixelMap_38000() { - var _PixelMapIToI = OpenTK.Graphics.ES30.PixelMap.PixelMapIToI; - var _PixelMapSToS = OpenTK.Graphics.ES30.PixelMap.PixelMapSToS; - var _PixelMapIToR = OpenTK.Graphics.ES30.PixelMap.PixelMapIToR; - var _PixelMapIToG = OpenTK.Graphics.ES30.PixelMap.PixelMapIToG; - var _PixelMapIToB = OpenTK.Graphics.ES30.PixelMap.PixelMapIToB; - var _PixelMapIToA = OpenTK.Graphics.ES30.PixelMap.PixelMapIToA; - var _PixelMapRToR = OpenTK.Graphics.ES30.PixelMap.PixelMapRToR; - var _PixelMapGToG = OpenTK.Graphics.ES30.PixelMap.PixelMapGToG; - var _PixelMapBToB = OpenTK.Graphics.ES30.PixelMap.PixelMapBToB; - var _PixelMapAToA = OpenTK.Graphics.ES30.PixelMap.PixelMapAToA; -} -static void Test_PixelStoreParameter_38001() { - var _UnpackSwapBytes = OpenTK.Graphics.ES30.PixelStoreParameter.UnpackSwapBytes; - var _UnpackLsbFirst = OpenTK.Graphics.ES30.PixelStoreParameter.UnpackLsbFirst; - var _UnpackRowLength = OpenTK.Graphics.ES30.PixelStoreParameter.UnpackRowLength; - var _UnpackRowLengthExt = OpenTK.Graphics.ES30.PixelStoreParameter.UnpackRowLengthExt; - var _UnpackSkipRows = OpenTK.Graphics.ES30.PixelStoreParameter.UnpackSkipRows; - var _UnpackSkipRowsExt = OpenTK.Graphics.ES30.PixelStoreParameter.UnpackSkipRowsExt; - var _UnpackSkipPixels = OpenTK.Graphics.ES30.PixelStoreParameter.UnpackSkipPixels; - var _UnpackSkipPixelsExt = OpenTK.Graphics.ES30.PixelStoreParameter.UnpackSkipPixelsExt; - var _UnpackAlignment = OpenTK.Graphics.ES30.PixelStoreParameter.UnpackAlignment; - var _PackSwapBytes = OpenTK.Graphics.ES30.PixelStoreParameter.PackSwapBytes; - var _PackLsbFirst = OpenTK.Graphics.ES30.PixelStoreParameter.PackLsbFirst; - var _PackRowLength = OpenTK.Graphics.ES30.PixelStoreParameter.PackRowLength; - var _PackSkipRows = OpenTK.Graphics.ES30.PixelStoreParameter.PackSkipRows; - var _PackSkipPixels = OpenTK.Graphics.ES30.PixelStoreParameter.PackSkipPixels; - var _PackAlignment = OpenTK.Graphics.ES30.PixelStoreParameter.PackAlignment; - var _PackSkipImages = OpenTK.Graphics.ES30.PixelStoreParameter.PackSkipImages; - var _PackSkipImagesExt = OpenTK.Graphics.ES30.PixelStoreParameter.PackSkipImagesExt; - var _PackImageHeight = OpenTK.Graphics.ES30.PixelStoreParameter.PackImageHeight; - var _PackImageHeightExt = OpenTK.Graphics.ES30.PixelStoreParameter.PackImageHeightExt; - var _UnpackSkipImages = OpenTK.Graphics.ES30.PixelStoreParameter.UnpackSkipImages; - var _UnpackSkipImagesExt = OpenTK.Graphics.ES30.PixelStoreParameter.UnpackSkipImagesExt; - var _UnpackImageHeight = OpenTK.Graphics.ES30.PixelStoreParameter.UnpackImageHeight; - var _UnpackImageHeightExt = OpenTK.Graphics.ES30.PixelStoreParameter.UnpackImageHeightExt; - var _PackSkipVolumesSgis = OpenTK.Graphics.ES30.PixelStoreParameter.PackSkipVolumesSgis; - var _PackImageDepthSgis = OpenTK.Graphics.ES30.PixelStoreParameter.PackImageDepthSgis; - var _UnpackSkipVolumesSgis = OpenTK.Graphics.ES30.PixelStoreParameter.UnpackSkipVolumesSgis; - var _UnpackImageDepthSgis = OpenTK.Graphics.ES30.PixelStoreParameter.UnpackImageDepthSgis; - var _PixelTileWidthSgix = OpenTK.Graphics.ES30.PixelStoreParameter.PixelTileWidthSgix; - var _PixelTileHeightSgix = OpenTK.Graphics.ES30.PixelStoreParameter.PixelTileHeightSgix; - var _PixelTileGridWidthSgix = OpenTK.Graphics.ES30.PixelStoreParameter.PixelTileGridWidthSgix; - var _PixelTileGridHeightSgix = OpenTK.Graphics.ES30.PixelStoreParameter.PixelTileGridHeightSgix; - var _PixelTileGridDepthSgix = OpenTK.Graphics.ES30.PixelStoreParameter.PixelTileGridDepthSgix; - var _PixelTileCacheSizeSgix = OpenTK.Graphics.ES30.PixelStoreParameter.PixelTileCacheSizeSgix; - var _PackResampleSgix = OpenTK.Graphics.ES30.PixelStoreParameter.PackResampleSgix; - var _UnpackResampleSgix = OpenTK.Graphics.ES30.PixelStoreParameter.UnpackResampleSgix; - var _PackSubsampleRateSgix = OpenTK.Graphics.ES30.PixelStoreParameter.PackSubsampleRateSgix; - var _UnpackSubsampleRateSgix = OpenTK.Graphics.ES30.PixelStoreParameter.UnpackSubsampleRateSgix; - var _PackResampleOml = OpenTK.Graphics.ES30.PixelStoreParameter.PackResampleOml; - var _UnpackResampleOml = OpenTK.Graphics.ES30.PixelStoreParameter.UnpackResampleOml; -} -static void Test_PixelStoreResampleMode_38002() { - var _ResampleReplicateSgix = OpenTK.Graphics.ES30.PixelStoreResampleMode.ResampleReplicateSgix; - var _ResampleZeroFillSgix = OpenTK.Graphics.ES30.PixelStoreResampleMode.ResampleZeroFillSgix; - var _ResampleDecimateSgix = OpenTK.Graphics.ES30.PixelStoreResampleMode.ResampleDecimateSgix; -} -static void Test_PixelStoreSubsampleRate_38003() { - var _PixelSubsample4444Sgix = OpenTK.Graphics.ES30.PixelStoreSubsampleRate.PixelSubsample4444Sgix; - var _PixelSubsample2424Sgix = OpenTK.Graphics.ES30.PixelStoreSubsampleRate.PixelSubsample2424Sgix; - var _PixelSubsample4242Sgix = OpenTK.Graphics.ES30.PixelStoreSubsampleRate.PixelSubsample4242Sgix; -} -static void Test_PixelTexGenMode_38004() { - var _None = OpenTK.Graphics.ES30.PixelTexGenMode.None; - var _Rgb = OpenTK.Graphics.ES30.PixelTexGenMode.Rgb; - var _Rgba = OpenTK.Graphics.ES30.PixelTexGenMode.Rgba; - var _Luminance = OpenTK.Graphics.ES30.PixelTexGenMode.Luminance; - var _LuminanceAlpha = OpenTK.Graphics.ES30.PixelTexGenMode.LuminanceAlpha; - var _PixelTexGenAlphaReplaceSgix = OpenTK.Graphics.ES30.PixelTexGenMode.PixelTexGenAlphaReplaceSgix; - var _PixelTexGenAlphaNoReplaceSgix = OpenTK.Graphics.ES30.PixelTexGenMode.PixelTexGenAlphaNoReplaceSgix; - var _PixelTexGenAlphaLsSgix = OpenTK.Graphics.ES30.PixelTexGenMode.PixelTexGenAlphaLsSgix; - var _PixelTexGenAlphaMsSgix = OpenTK.Graphics.ES30.PixelTexGenMode.PixelTexGenAlphaMsSgix; -} -static void Test_PixelTexGenParameterNameSgis_38005() { - var _PixelFragmentRgbSourceSgis = OpenTK.Graphics.ES30.PixelTexGenParameterNameSgis.PixelFragmentRgbSourceSgis; - var _PixelFragmentAlphaSourceSgis = OpenTK.Graphics.ES30.PixelTexGenParameterNameSgis.PixelFragmentAlphaSourceSgis; -} -static void Test_PixelTransferParameter_38006() { - var _MapColor = OpenTK.Graphics.ES30.PixelTransferParameter.MapColor; - var _MapStencil = OpenTK.Graphics.ES30.PixelTransferParameter.MapStencil; - var _IndexShift = OpenTK.Graphics.ES30.PixelTransferParameter.IndexShift; - var _IndexOffset = OpenTK.Graphics.ES30.PixelTransferParameter.IndexOffset; - var _RedScale = OpenTK.Graphics.ES30.PixelTransferParameter.RedScale; - var _RedBias = OpenTK.Graphics.ES30.PixelTransferParameter.RedBias; - var _GreenScale = OpenTK.Graphics.ES30.PixelTransferParameter.GreenScale; - var _GreenBias = OpenTK.Graphics.ES30.PixelTransferParameter.GreenBias; - var _BlueScale = OpenTK.Graphics.ES30.PixelTransferParameter.BlueScale; - var _BlueBias = OpenTK.Graphics.ES30.PixelTransferParameter.BlueBias; - var _AlphaScale = OpenTK.Graphics.ES30.PixelTransferParameter.AlphaScale; - var _AlphaBias = OpenTK.Graphics.ES30.PixelTransferParameter.AlphaBias; - var _DepthScale = OpenTK.Graphics.ES30.PixelTransferParameter.DepthScale; - var _DepthBias = OpenTK.Graphics.ES30.PixelTransferParameter.DepthBias; - var _PostConvolutionRedScale = OpenTK.Graphics.ES30.PixelTransferParameter.PostConvolutionRedScale; - var _PostConvolutionRedScaleExt = OpenTK.Graphics.ES30.PixelTransferParameter.PostConvolutionRedScaleExt; - var _PostConvolutionGreenScale = OpenTK.Graphics.ES30.PixelTransferParameter.PostConvolutionGreenScale; - var _PostConvolutionGreenScaleExt = OpenTK.Graphics.ES30.PixelTransferParameter.PostConvolutionGreenScaleExt; - var _PostConvolutionBlueScale = OpenTK.Graphics.ES30.PixelTransferParameter.PostConvolutionBlueScale; - var _PostConvolutionBlueScaleExt = OpenTK.Graphics.ES30.PixelTransferParameter.PostConvolutionBlueScaleExt; - var _PostConvolutionAlphaScale = OpenTK.Graphics.ES30.PixelTransferParameter.PostConvolutionAlphaScale; - var _PostConvolutionAlphaScaleExt = OpenTK.Graphics.ES30.PixelTransferParameter.PostConvolutionAlphaScaleExt; - var _PostConvolutionRedBias = OpenTK.Graphics.ES30.PixelTransferParameter.PostConvolutionRedBias; - var _PostConvolutionRedBiasExt = OpenTK.Graphics.ES30.PixelTransferParameter.PostConvolutionRedBiasExt; - var _PostConvolutionGreenBias = OpenTK.Graphics.ES30.PixelTransferParameter.PostConvolutionGreenBias; - var _PostConvolutionGreenBiasExt = OpenTK.Graphics.ES30.PixelTransferParameter.PostConvolutionGreenBiasExt; - var _PostConvolutionBlueBias = OpenTK.Graphics.ES30.PixelTransferParameter.PostConvolutionBlueBias; - var _PostConvolutionBlueBiasExt = OpenTK.Graphics.ES30.PixelTransferParameter.PostConvolutionBlueBiasExt; - var _PostConvolutionAlphaBias = OpenTK.Graphics.ES30.PixelTransferParameter.PostConvolutionAlphaBias; - var _PostConvolutionAlphaBiasExt = OpenTK.Graphics.ES30.PixelTransferParameter.PostConvolutionAlphaBiasExt; - var _PostColorMatrixRedScale = OpenTK.Graphics.ES30.PixelTransferParameter.PostColorMatrixRedScale; - var _PostColorMatrixRedScaleSgi = OpenTK.Graphics.ES30.PixelTransferParameter.PostColorMatrixRedScaleSgi; - var _PostColorMatrixGreenScale = OpenTK.Graphics.ES30.PixelTransferParameter.PostColorMatrixGreenScale; - var _PostColorMatrixGreenScaleSgi = OpenTK.Graphics.ES30.PixelTransferParameter.PostColorMatrixGreenScaleSgi; - var _PostColorMatrixBlueScale = OpenTK.Graphics.ES30.PixelTransferParameter.PostColorMatrixBlueScale; - var _PostColorMatrixBlueScaleSgi = OpenTK.Graphics.ES30.PixelTransferParameter.PostColorMatrixBlueScaleSgi; - var _PostColorMatrixAlphaScale = OpenTK.Graphics.ES30.PixelTransferParameter.PostColorMatrixAlphaScale; - var _PostColorMatrixAlphaScaleSgi = OpenTK.Graphics.ES30.PixelTransferParameter.PostColorMatrixAlphaScaleSgi; - var _PostColorMatrixRedBias = OpenTK.Graphics.ES30.PixelTransferParameter.PostColorMatrixRedBias; - var _PostColorMatrixRedBiasSgi = OpenTK.Graphics.ES30.PixelTransferParameter.PostColorMatrixRedBiasSgi; - var _PostColorMatrixGreenBias = OpenTK.Graphics.ES30.PixelTransferParameter.PostColorMatrixGreenBias; - var _PostColorMatrixGreenBiasSgi = OpenTK.Graphics.ES30.PixelTransferParameter.PostColorMatrixGreenBiasSgi; - var _PostColorMatrixBlueBias = OpenTK.Graphics.ES30.PixelTransferParameter.PostColorMatrixBlueBias; - var _PostColorMatrixBlueBiasSgi = OpenTK.Graphics.ES30.PixelTransferParameter.PostColorMatrixBlueBiasSgi; - var _PostColorMatrixAlphaBias = OpenTK.Graphics.ES30.PixelTransferParameter.PostColorMatrixAlphaBias; - var _PostColorMatrixAlphaBiasSgi = OpenTK.Graphics.ES30.PixelTransferParameter.PostColorMatrixAlphaBiasSgi; -} -static void Test_PixelType_38007() { - var _Byte = OpenTK.Graphics.ES30.PixelType.Byte; - var _UnsignedByte = OpenTK.Graphics.ES30.PixelType.UnsignedByte; - var _Short = OpenTK.Graphics.ES30.PixelType.Short; - var _UnsignedShort = OpenTK.Graphics.ES30.PixelType.UnsignedShort; - var _Int = OpenTK.Graphics.ES30.PixelType.Int; - var _UnsignedInt = OpenTK.Graphics.ES30.PixelType.UnsignedInt; - var _Float = OpenTK.Graphics.ES30.PixelType.Float; - var _HalfFloat = OpenTK.Graphics.ES30.PixelType.HalfFloat; - var _Bitmap = OpenTK.Graphics.ES30.PixelType.Bitmap; - var _UnsignedByte332 = OpenTK.Graphics.ES30.PixelType.UnsignedByte332; - var _UnsignedByte332Ext = OpenTK.Graphics.ES30.PixelType.UnsignedByte332Ext; - var _UnsignedShort4444 = OpenTK.Graphics.ES30.PixelType.UnsignedShort4444; - var _UnsignedShort4444Ext = OpenTK.Graphics.ES30.PixelType.UnsignedShort4444Ext; - var _UnsignedShort5551 = OpenTK.Graphics.ES30.PixelType.UnsignedShort5551; - var _UnsignedShort5551Ext = OpenTK.Graphics.ES30.PixelType.UnsignedShort5551Ext; - var _UnsignedInt8888 = OpenTK.Graphics.ES30.PixelType.UnsignedInt8888; - var _UnsignedInt8888Ext = OpenTK.Graphics.ES30.PixelType.UnsignedInt8888Ext; - var _UnsignedInt1010102 = OpenTK.Graphics.ES30.PixelType.UnsignedInt1010102; - var _UnsignedInt1010102Ext = OpenTK.Graphics.ES30.PixelType.UnsignedInt1010102Ext; - var _UnsignedShort565 = OpenTK.Graphics.ES30.PixelType.UnsignedShort565; - var _UnsignedInt2101010Rev = OpenTK.Graphics.ES30.PixelType.UnsignedInt2101010Rev; - var _UnsignedInt248 = OpenTK.Graphics.ES30.PixelType.UnsignedInt248; - var _UnsignedInt10F11F11FRev = OpenTK.Graphics.ES30.PixelType.UnsignedInt10F11F11FRev; - var _UnsignedInt5999Rev = OpenTK.Graphics.ES30.PixelType.UnsignedInt5999Rev; - var _Float32UnsignedInt248Rev = OpenTK.Graphics.ES30.PixelType.Float32UnsignedInt248Rev; -} -static void Test_PointParameterNameSgis_38008() { - var _PointSizeMin = OpenTK.Graphics.ES30.PointParameterNameSgis.PointSizeMin; - var _PointSizeMinArb = OpenTK.Graphics.ES30.PointParameterNameSgis.PointSizeMinArb; - var _PointSizeMinExt = OpenTK.Graphics.ES30.PointParameterNameSgis.PointSizeMinExt; - var _PointSizeMinSgis = OpenTK.Graphics.ES30.PointParameterNameSgis.PointSizeMinSgis; - var _PointSizeMax = OpenTK.Graphics.ES30.PointParameterNameSgis.PointSizeMax; - var _PointSizeMaxArb = OpenTK.Graphics.ES30.PointParameterNameSgis.PointSizeMaxArb; - var _PointSizeMaxExt = OpenTK.Graphics.ES30.PointParameterNameSgis.PointSizeMaxExt; - var _PointSizeMaxSgis = OpenTK.Graphics.ES30.PointParameterNameSgis.PointSizeMaxSgis; - var _PointFadeThresholdSize = OpenTK.Graphics.ES30.PointParameterNameSgis.PointFadeThresholdSize; - var _PointFadeThresholdSizeArb = OpenTK.Graphics.ES30.PointParameterNameSgis.PointFadeThresholdSizeArb; - var _PointFadeThresholdSizeExt = OpenTK.Graphics.ES30.PointParameterNameSgis.PointFadeThresholdSizeExt; - var _PointFadeThresholdSizeSgis = OpenTK.Graphics.ES30.PointParameterNameSgis.PointFadeThresholdSizeSgis; - var _DistanceAttenuationExt = OpenTK.Graphics.ES30.PointParameterNameSgis.DistanceAttenuationExt; - var _DistanceAttenuationSgis = OpenTK.Graphics.ES30.PointParameterNameSgis.DistanceAttenuationSgis; - var _PointDistanceAttenuation = OpenTK.Graphics.ES30.PointParameterNameSgis.PointDistanceAttenuation; - var _PointDistanceAttenuationArb = OpenTK.Graphics.ES30.PointParameterNameSgis.PointDistanceAttenuationArb; -} -static void Test_PolygonMode_38009() { - var _Point = OpenTK.Graphics.ES30.PolygonMode.Point; - var _Line = OpenTK.Graphics.ES30.PolygonMode.Line; - var _Fill = OpenTK.Graphics.ES30.PolygonMode.Fill; -} -static void Test_PrimitiveType_38010() { - var _Points = OpenTK.Graphics.ES30.PrimitiveType.Points; - var _Lines = OpenTK.Graphics.ES30.PrimitiveType.Lines; - var _LineLoop = OpenTK.Graphics.ES30.PrimitiveType.LineLoop; - var _LineStrip = OpenTK.Graphics.ES30.PrimitiveType.LineStrip; - var _Triangles = OpenTK.Graphics.ES30.PrimitiveType.Triangles; - var _TriangleStrip = OpenTK.Graphics.ES30.PrimitiveType.TriangleStrip; - var _TriangleFan = OpenTK.Graphics.ES30.PrimitiveType.TriangleFan; - var _Quads = OpenTK.Graphics.ES30.PrimitiveType.Quads; - var _QuadsExt = OpenTK.Graphics.ES30.PrimitiveType.QuadsExt; - var _QuadStrip = OpenTK.Graphics.ES30.PrimitiveType.QuadStrip; - var _Polygon = OpenTK.Graphics.ES30.PrimitiveType.Polygon; - var _LinesAdjacency = OpenTK.Graphics.ES30.PrimitiveType.LinesAdjacency; - var _LinesAdjacencyArb = OpenTK.Graphics.ES30.PrimitiveType.LinesAdjacencyArb; - var _LinesAdjacencyExt = OpenTK.Graphics.ES30.PrimitiveType.LinesAdjacencyExt; - var _LineStripAdjacency = OpenTK.Graphics.ES30.PrimitiveType.LineStripAdjacency; - var _LineStripAdjacencyArb = OpenTK.Graphics.ES30.PrimitiveType.LineStripAdjacencyArb; - var _LineStripAdjacencyExt = OpenTK.Graphics.ES30.PrimitiveType.LineStripAdjacencyExt; - var _TrianglesAdjacency = OpenTK.Graphics.ES30.PrimitiveType.TrianglesAdjacency; - var _TrianglesAdjacencyArb = OpenTK.Graphics.ES30.PrimitiveType.TrianglesAdjacencyArb; - var _TrianglesAdjacencyExt = OpenTK.Graphics.ES30.PrimitiveType.TrianglesAdjacencyExt; - var _TriangleStripAdjacency = OpenTK.Graphics.ES30.PrimitiveType.TriangleStripAdjacency; - var _TriangleStripAdjacencyArb = OpenTK.Graphics.ES30.PrimitiveType.TriangleStripAdjacencyArb; - var _TriangleStripAdjacencyExt = OpenTK.Graphics.ES30.PrimitiveType.TriangleStripAdjacencyExt; - var _Patches = OpenTK.Graphics.ES30.PrimitiveType.Patches; - var _PatchesExt = OpenTK.Graphics.ES30.PrimitiveType.PatchesExt; -} -static void Test_ProgramParameter_38011() { - var _ProgramBinaryRetrievableHint = OpenTK.Graphics.ES30.ProgramParameter.ProgramBinaryRetrievableHint; - var _DeleteStatus = OpenTK.Graphics.ES30.ProgramParameter.DeleteStatus; - var _LinkStatus = OpenTK.Graphics.ES30.ProgramParameter.LinkStatus; - var _ValidateStatus = OpenTK.Graphics.ES30.ProgramParameter.ValidateStatus; - var _InfoLogLength = OpenTK.Graphics.ES30.ProgramParameter.InfoLogLength; - var _AttachedShaders = OpenTK.Graphics.ES30.ProgramParameter.AttachedShaders; - var _ActiveUniforms = OpenTK.Graphics.ES30.ProgramParameter.ActiveUniforms; - var _ActiveUniformMaxLength = OpenTK.Graphics.ES30.ProgramParameter.ActiveUniformMaxLength; - var _ActiveAttributes = OpenTK.Graphics.ES30.ProgramParameter.ActiveAttributes; - var _ActiveAttributeMaxLength = OpenTK.Graphics.ES30.ProgramParameter.ActiveAttributeMaxLength; -} -static void Test_ProgramParameterName_38012() { - var _ProgramBinaryRetrievableHint = OpenTK.Graphics.ES30.ProgramParameterName.ProgramBinaryRetrievableHint; - var _ActiveUniformBlockMaxNameLength = OpenTK.Graphics.ES30.ProgramParameterName.ActiveUniformBlockMaxNameLength; - var _ActiveUniformBlocks = OpenTK.Graphics.ES30.ProgramParameterName.ActiveUniformBlocks; - var _DeleteStatus = OpenTK.Graphics.ES30.ProgramParameterName.DeleteStatus; - var _LinkStatus = OpenTK.Graphics.ES30.ProgramParameterName.LinkStatus; - var _ValidateStatus = OpenTK.Graphics.ES30.ProgramParameterName.ValidateStatus; - var _InfoLogLength = OpenTK.Graphics.ES30.ProgramParameterName.InfoLogLength; - var _AttachedShaders = OpenTK.Graphics.ES30.ProgramParameterName.AttachedShaders; - var _ActiveUniforms = OpenTK.Graphics.ES30.ProgramParameterName.ActiveUniforms; - var _ActiveUniformMaxLength = OpenTK.Graphics.ES30.ProgramParameterName.ActiveUniformMaxLength; - var _ActiveAttributes = OpenTK.Graphics.ES30.ProgramParameterName.ActiveAttributes; - var _ActiveAttributeMaxLength = OpenTK.Graphics.ES30.ProgramParameterName.ActiveAttributeMaxLength; - var _TransformFeedbackVaryingMaxLength = OpenTK.Graphics.ES30.ProgramParameterName.TransformFeedbackVaryingMaxLength; - var _TransformFeedbackBufferMode = OpenTK.Graphics.ES30.ProgramParameterName.TransformFeedbackBufferMode; - var _TransformFeedbackVaryings = OpenTK.Graphics.ES30.ProgramParameterName.TransformFeedbackVaryings; -} -static void Test_QcomAlphaTest_38013() { - var _AlphaTestQcom = OpenTK.Graphics.ES30.QcomAlphaTest.AlphaTestQcom; - var _AlphaTestFuncQcom = OpenTK.Graphics.ES30.QcomAlphaTest.AlphaTestFuncQcom; - var _AlphaTestRefQcom = OpenTK.Graphics.ES30.QcomAlphaTest.AlphaTestRefQcom; -} -static void Test_QcomBinningControl_38014() { - var _BinningControlHintQcom = OpenTK.Graphics.ES30.QcomBinningControl.BinningControlHintQcom; - var _CpuOptimizedQcom = OpenTK.Graphics.ES30.QcomBinningControl.CpuOptimizedQcom; - var _GpuOptimizedQcom = OpenTK.Graphics.ES30.QcomBinningControl.GpuOptimizedQcom; - var _RenderDirectToFramebufferQcom = OpenTK.Graphics.ES30.QcomBinningControl.RenderDirectToFramebufferQcom; -} -static void Test_QcomDriverControl_38015() { -} -static void Test_QcomExtendedGet_38016() { - var _TextureWidthQcom = OpenTK.Graphics.ES30.QcomExtendedGet.TextureWidthQcom; - var _TextureHeightQcom = OpenTK.Graphics.ES30.QcomExtendedGet.TextureHeightQcom; - var _TextureDepthQcom = OpenTK.Graphics.ES30.QcomExtendedGet.TextureDepthQcom; - var _TextureInternalFormatQcom = OpenTK.Graphics.ES30.QcomExtendedGet.TextureInternalFormatQcom; - var _TextureFormatQcom = OpenTK.Graphics.ES30.QcomExtendedGet.TextureFormatQcom; - var _TextureTypeQcom = OpenTK.Graphics.ES30.QcomExtendedGet.TextureTypeQcom; - var _TextureImageValidQcom = OpenTK.Graphics.ES30.QcomExtendedGet.TextureImageValidQcom; - var _TextureNumLevelsQcom = OpenTK.Graphics.ES30.QcomExtendedGet.TextureNumLevelsQcom; - var _TextureTargetQcom = OpenTK.Graphics.ES30.QcomExtendedGet.TextureTargetQcom; - var _TextureObjectValidQcom = OpenTK.Graphics.ES30.QcomExtendedGet.TextureObjectValidQcom; - var _StateRestore = OpenTK.Graphics.ES30.QcomExtendedGet.StateRestore; -} -static void Test_QcomExtendedGet2_38017() { -} -static void Test_QcomPerfmonGlobalMode_38018() { - var _PerfmonGlobalModeQcom = OpenTK.Graphics.ES30.QcomPerfmonGlobalMode.PerfmonGlobalModeQcom; -} -static void Test_QcomTiledRendering_38019() { - var _ColorBufferBit0Qcom = OpenTK.Graphics.ES30.QcomTiledRendering.ColorBufferBit0Qcom; - var _ColorBufferBit1Qcom = OpenTK.Graphics.ES30.QcomTiledRendering.ColorBufferBit1Qcom; - var _ColorBufferBit2Qcom = OpenTK.Graphics.ES30.QcomTiledRendering.ColorBufferBit2Qcom; - var _ColorBufferBit3Qcom = OpenTK.Graphics.ES30.QcomTiledRendering.ColorBufferBit3Qcom; - var _ColorBufferBit4Qcom = OpenTK.Graphics.ES30.QcomTiledRendering.ColorBufferBit4Qcom; - var _ColorBufferBit5Qcom = OpenTK.Graphics.ES30.QcomTiledRendering.ColorBufferBit5Qcom; - var _ColorBufferBit6Qcom = OpenTK.Graphics.ES30.QcomTiledRendering.ColorBufferBit6Qcom; - var _ColorBufferBit7Qcom = OpenTK.Graphics.ES30.QcomTiledRendering.ColorBufferBit7Qcom; - var _DepthBufferBit0Qcom = OpenTK.Graphics.ES30.QcomTiledRendering.DepthBufferBit0Qcom; - var _DepthBufferBit1Qcom = OpenTK.Graphics.ES30.QcomTiledRendering.DepthBufferBit1Qcom; - var _DepthBufferBit2Qcom = OpenTK.Graphics.ES30.QcomTiledRendering.DepthBufferBit2Qcom; - var _DepthBufferBit3Qcom = OpenTK.Graphics.ES30.QcomTiledRendering.DepthBufferBit3Qcom; - var _DepthBufferBit4Qcom = OpenTK.Graphics.ES30.QcomTiledRendering.DepthBufferBit4Qcom; - var _DepthBufferBit5Qcom = OpenTK.Graphics.ES30.QcomTiledRendering.DepthBufferBit5Qcom; - var _DepthBufferBit6Qcom = OpenTK.Graphics.ES30.QcomTiledRendering.DepthBufferBit6Qcom; - var _DepthBufferBit7Qcom = OpenTK.Graphics.ES30.QcomTiledRendering.DepthBufferBit7Qcom; - var _StencilBufferBit0Qcom = OpenTK.Graphics.ES30.QcomTiledRendering.StencilBufferBit0Qcom; - var _StencilBufferBit1Qcom = OpenTK.Graphics.ES30.QcomTiledRendering.StencilBufferBit1Qcom; - var _StencilBufferBit2Qcom = OpenTK.Graphics.ES30.QcomTiledRendering.StencilBufferBit2Qcom; - var _StencilBufferBit3Qcom = OpenTK.Graphics.ES30.QcomTiledRendering.StencilBufferBit3Qcom; - var _StencilBufferBit4Qcom = OpenTK.Graphics.ES30.QcomTiledRendering.StencilBufferBit4Qcom; - var _StencilBufferBit5Qcom = OpenTK.Graphics.ES30.QcomTiledRendering.StencilBufferBit5Qcom; - var _StencilBufferBit6Qcom = OpenTK.Graphics.ES30.QcomTiledRendering.StencilBufferBit6Qcom; - var _StencilBufferBit7Qcom = OpenTK.Graphics.ES30.QcomTiledRendering.StencilBufferBit7Qcom; - var _MultisampleBufferBit0Qcom = OpenTK.Graphics.ES30.QcomTiledRendering.MultisampleBufferBit0Qcom; - var _MultisampleBufferBit1Qcom = OpenTK.Graphics.ES30.QcomTiledRendering.MultisampleBufferBit1Qcom; - var _MultisampleBufferBit2Qcom = OpenTK.Graphics.ES30.QcomTiledRendering.MultisampleBufferBit2Qcom; - var _MultisampleBufferBit3Qcom = OpenTK.Graphics.ES30.QcomTiledRendering.MultisampleBufferBit3Qcom; - var _MultisampleBufferBit4Qcom = OpenTK.Graphics.ES30.QcomTiledRendering.MultisampleBufferBit4Qcom; - var _MultisampleBufferBit5Qcom = OpenTK.Graphics.ES30.QcomTiledRendering.MultisampleBufferBit5Qcom; - var _MultisampleBufferBit6Qcom = OpenTK.Graphics.ES30.QcomTiledRendering.MultisampleBufferBit6Qcom; - var _MultisampleBufferBit7Qcom = OpenTK.Graphics.ES30.QcomTiledRendering.MultisampleBufferBit7Qcom; -} -static void Test_QcomWriteonlyRendering_38020() { - var _WriteonlyRenderingQcom = OpenTK.Graphics.ES30.QcomWriteonlyRendering.WriteonlyRenderingQcom; -} -static void Test_QueryCounterTarget_38021() { - var _TimestampExt = OpenTK.Graphics.ES30.QueryCounterTarget.TimestampExt; -} -static void Test_QueryTarget_38022() { - var _TimeElapsedExt = OpenTK.Graphics.ES30.QueryTarget.TimeElapsedExt; - var _AnySamplesPassed = OpenTK.Graphics.ES30.QueryTarget.AnySamplesPassed; - var _AnySamplesPassedExt = OpenTK.Graphics.ES30.QueryTarget.AnySamplesPassedExt; - var _TransformFeedbackPrimitivesWritten = OpenTK.Graphics.ES30.QueryTarget.TransformFeedbackPrimitivesWritten; - var _AnySamplesPassedConservative = OpenTK.Graphics.ES30.QueryTarget.AnySamplesPassedConservative; - var _AnySamplesPassedConservativeExt = OpenTK.Graphics.ES30.QueryTarget.AnySamplesPassedConservativeExt; -} -static void Test_ReadBufferMode_38023() { - var _None = OpenTK.Graphics.ES30.ReadBufferMode.None; - var _FrontLeft = OpenTK.Graphics.ES30.ReadBufferMode.FrontLeft; - var _FrontRight = OpenTK.Graphics.ES30.ReadBufferMode.FrontRight; - var _BackLeft = OpenTK.Graphics.ES30.ReadBufferMode.BackLeft; - var _BackRight = OpenTK.Graphics.ES30.ReadBufferMode.BackRight; - var _Front = OpenTK.Graphics.ES30.ReadBufferMode.Front; - var _Back = OpenTK.Graphics.ES30.ReadBufferMode.Back; - var _Left = OpenTK.Graphics.ES30.ReadBufferMode.Left; - var _Right = OpenTK.Graphics.ES30.ReadBufferMode.Right; - var _Aux0 = OpenTK.Graphics.ES30.ReadBufferMode.Aux0; - var _Aux1 = OpenTK.Graphics.ES30.ReadBufferMode.Aux1; - var _Aux2 = OpenTK.Graphics.ES30.ReadBufferMode.Aux2; - var _Aux3 = OpenTK.Graphics.ES30.ReadBufferMode.Aux3; - var _ColorAttachment0 = OpenTK.Graphics.ES30.ReadBufferMode.ColorAttachment0; - var _ColorAttachment1 = OpenTK.Graphics.ES30.ReadBufferMode.ColorAttachment1; - var _ColorAttachment2 = OpenTK.Graphics.ES30.ReadBufferMode.ColorAttachment2; - var _ColorAttachment3 = OpenTK.Graphics.ES30.ReadBufferMode.ColorAttachment3; - var _ColorAttachment4 = OpenTK.Graphics.ES30.ReadBufferMode.ColorAttachment4; - var _ColorAttachment5 = OpenTK.Graphics.ES30.ReadBufferMode.ColorAttachment5; - var _ColorAttachment6 = OpenTK.Graphics.ES30.ReadBufferMode.ColorAttachment6; - var _ColorAttachment7 = OpenTK.Graphics.ES30.ReadBufferMode.ColorAttachment7; - var _ColorAttachment8 = OpenTK.Graphics.ES30.ReadBufferMode.ColorAttachment8; - var _ColorAttachment9 = OpenTK.Graphics.ES30.ReadBufferMode.ColorAttachment9; - var _ColorAttachment10 = OpenTK.Graphics.ES30.ReadBufferMode.ColorAttachment10; - var _ColorAttachment11 = OpenTK.Graphics.ES30.ReadBufferMode.ColorAttachment11; - var _ColorAttachment12 = OpenTK.Graphics.ES30.ReadBufferMode.ColorAttachment12; - var _ColorAttachment13 = OpenTK.Graphics.ES30.ReadBufferMode.ColorAttachment13; - var _ColorAttachment14 = OpenTK.Graphics.ES30.ReadBufferMode.ColorAttachment14; - var _ColorAttachment15 = OpenTK.Graphics.ES30.ReadBufferMode.ColorAttachment15; -} -static void Test_RenderbufferInternalFormat_38024() { - var _Rgb8 = OpenTK.Graphics.ES30.RenderbufferInternalFormat.Rgb8; - var _Rgba4 = OpenTK.Graphics.ES30.RenderbufferInternalFormat.Rgba4; - var _Rgb5A1 = OpenTK.Graphics.ES30.RenderbufferInternalFormat.Rgb5A1; - var _Rgba8 = OpenTK.Graphics.ES30.RenderbufferInternalFormat.Rgba8; - var _Rgb10A2 = OpenTK.Graphics.ES30.RenderbufferInternalFormat.Rgb10A2; - var _DepthComponent16 = OpenTK.Graphics.ES30.RenderbufferInternalFormat.DepthComponent16; - var _DepthComponent24 = OpenTK.Graphics.ES30.RenderbufferInternalFormat.DepthComponent24; - var _R8 = OpenTK.Graphics.ES30.RenderbufferInternalFormat.R8; - var _Rg8 = OpenTK.Graphics.ES30.RenderbufferInternalFormat.Rg8; - var _R16f = OpenTK.Graphics.ES30.RenderbufferInternalFormat.R16f; - var _R32f = OpenTK.Graphics.ES30.RenderbufferInternalFormat.R32f; - var _Rg16f = OpenTK.Graphics.ES30.RenderbufferInternalFormat.Rg16f; - var _Rg32f = OpenTK.Graphics.ES30.RenderbufferInternalFormat.Rg32f; - var _R8i = OpenTK.Graphics.ES30.RenderbufferInternalFormat.R8i; - var _R8ui = OpenTK.Graphics.ES30.RenderbufferInternalFormat.R8ui; - var _R16i = OpenTK.Graphics.ES30.RenderbufferInternalFormat.R16i; - var _R16ui = OpenTK.Graphics.ES30.RenderbufferInternalFormat.R16ui; - var _R32i = OpenTK.Graphics.ES30.RenderbufferInternalFormat.R32i; - var _R32ui = OpenTK.Graphics.ES30.RenderbufferInternalFormat.R32ui; - var _Rg8i = OpenTK.Graphics.ES30.RenderbufferInternalFormat.Rg8i; - var _Rg8ui = OpenTK.Graphics.ES30.RenderbufferInternalFormat.Rg8ui; - var _Rg16i = OpenTK.Graphics.ES30.RenderbufferInternalFormat.Rg16i; - var _Rg16ui = OpenTK.Graphics.ES30.RenderbufferInternalFormat.Rg16ui; - var _Rg32i = OpenTK.Graphics.ES30.RenderbufferInternalFormat.Rg32i; - var _Rg32ui = OpenTK.Graphics.ES30.RenderbufferInternalFormat.Rg32ui; - var _Rgba32f = OpenTK.Graphics.ES30.RenderbufferInternalFormat.Rgba32f; - var _Rgb32f = OpenTK.Graphics.ES30.RenderbufferInternalFormat.Rgb32f; - var _Rgba16f = OpenTK.Graphics.ES30.RenderbufferInternalFormat.Rgba16f; - var _Rgb16f = OpenTK.Graphics.ES30.RenderbufferInternalFormat.Rgb16f; - var _Depth24Stencil8 = OpenTK.Graphics.ES30.RenderbufferInternalFormat.Depth24Stencil8; - var _R11fG11fB10f = OpenTK.Graphics.ES30.RenderbufferInternalFormat.R11fG11fB10f; - var _Rgb9E5 = OpenTK.Graphics.ES30.RenderbufferInternalFormat.Rgb9E5; - var _Srgb8 = OpenTK.Graphics.ES30.RenderbufferInternalFormat.Srgb8; - var _Srgb8Alpha8 = OpenTK.Graphics.ES30.RenderbufferInternalFormat.Srgb8Alpha8; - var _DepthComponent32f = OpenTK.Graphics.ES30.RenderbufferInternalFormat.DepthComponent32f; - var _Depth32fStencil8 = OpenTK.Graphics.ES30.RenderbufferInternalFormat.Depth32fStencil8; - var _StencilIndex8 = OpenTK.Graphics.ES30.RenderbufferInternalFormat.StencilIndex8; - var _Rgb565 = OpenTK.Graphics.ES30.RenderbufferInternalFormat.Rgb565; - var _Rgba32ui = OpenTK.Graphics.ES30.RenderbufferInternalFormat.Rgba32ui; - var _Rgb32ui = OpenTK.Graphics.ES30.RenderbufferInternalFormat.Rgb32ui; - var _Rgba16ui = OpenTK.Graphics.ES30.RenderbufferInternalFormat.Rgba16ui; - var _Rgb16ui = OpenTK.Graphics.ES30.RenderbufferInternalFormat.Rgb16ui; - var _Rgba8ui = OpenTK.Graphics.ES30.RenderbufferInternalFormat.Rgba8ui; - var _Rgb8ui = OpenTK.Graphics.ES30.RenderbufferInternalFormat.Rgb8ui; - var _Rgba32i = OpenTK.Graphics.ES30.RenderbufferInternalFormat.Rgba32i; - var _Rgb32i = OpenTK.Graphics.ES30.RenderbufferInternalFormat.Rgb32i; - var _Rgba16i = OpenTK.Graphics.ES30.RenderbufferInternalFormat.Rgba16i; - var _Rgb16i = OpenTK.Graphics.ES30.RenderbufferInternalFormat.Rgb16i; - var _Rgba8i = OpenTK.Graphics.ES30.RenderbufferInternalFormat.Rgba8i; - var _Rgb8i = OpenTK.Graphics.ES30.RenderbufferInternalFormat.Rgb8i; - var _R8Snorm = OpenTK.Graphics.ES30.RenderbufferInternalFormat.R8Snorm; - var _Rg8Snorm = OpenTK.Graphics.ES30.RenderbufferInternalFormat.Rg8Snorm; - var _Rgb8Snorm = OpenTK.Graphics.ES30.RenderbufferInternalFormat.Rgb8Snorm; - var _Rgba8Snorm = OpenTK.Graphics.ES30.RenderbufferInternalFormat.Rgba8Snorm; - var _Rgb10A2ui = OpenTK.Graphics.ES30.RenderbufferInternalFormat.Rgb10A2ui; -} -static void Test_RenderbufferParameterName_38025() { - var _RenderbufferSamples = OpenTK.Graphics.ES30.RenderbufferParameterName.RenderbufferSamples; - var _RenderbufferWidth = OpenTK.Graphics.ES30.RenderbufferParameterName.RenderbufferWidth; - var _RenderbufferHeight = OpenTK.Graphics.ES30.RenderbufferParameterName.RenderbufferHeight; - var _RenderbufferInternalFormat = OpenTK.Graphics.ES30.RenderbufferParameterName.RenderbufferInternalFormat; - var _RenderbufferRedSize = OpenTK.Graphics.ES30.RenderbufferParameterName.RenderbufferRedSize; - var _RenderbufferGreenSize = OpenTK.Graphics.ES30.RenderbufferParameterName.RenderbufferGreenSize; - var _RenderbufferBlueSize = OpenTK.Graphics.ES30.RenderbufferParameterName.RenderbufferBlueSize; - var _RenderbufferAlphaSize = OpenTK.Graphics.ES30.RenderbufferParameterName.RenderbufferAlphaSize; - var _RenderbufferDepthSize = OpenTK.Graphics.ES30.RenderbufferParameterName.RenderbufferDepthSize; - var _RenderbufferStencilSize = OpenTK.Graphics.ES30.RenderbufferParameterName.RenderbufferStencilSize; -} -static void Test_RenderbufferTarget_38026() { - var _Renderbuffer = OpenTK.Graphics.ES30.RenderbufferTarget.Renderbuffer; -} -static void Test_RenderingMode_38027() { - var _Render = OpenTK.Graphics.ES30.RenderingMode.Render; - var _Feedback = OpenTK.Graphics.ES30.RenderingMode.Feedback; - var _Select = OpenTK.Graphics.ES30.RenderingMode.Select; -} -static void Test_SamplePatternSgis_38028() { - var _Gl1PassExt = OpenTK.Graphics.ES30.SamplePatternSgis.Gl1PassExt; - var _Gl1PassSgis = OpenTK.Graphics.ES30.SamplePatternSgis.Gl1PassSgis; - var _Gl2Pass0Ext = OpenTK.Graphics.ES30.SamplePatternSgis.Gl2Pass0Ext; - var _Gl2Pass0Sgis = OpenTK.Graphics.ES30.SamplePatternSgis.Gl2Pass0Sgis; - var _Gl2Pass1Ext = OpenTK.Graphics.ES30.SamplePatternSgis.Gl2Pass1Ext; - var _Gl2Pass1Sgis = OpenTK.Graphics.ES30.SamplePatternSgis.Gl2Pass1Sgis; - var _Gl4Pass0Ext = OpenTK.Graphics.ES30.SamplePatternSgis.Gl4Pass0Ext; - var _Gl4Pass0Sgis = OpenTK.Graphics.ES30.SamplePatternSgis.Gl4Pass0Sgis; - var _Gl4Pass1Ext = OpenTK.Graphics.ES30.SamplePatternSgis.Gl4Pass1Ext; - var _Gl4Pass1Sgis = OpenTK.Graphics.ES30.SamplePatternSgis.Gl4Pass1Sgis; - var _Gl4Pass2Ext = OpenTK.Graphics.ES30.SamplePatternSgis.Gl4Pass2Ext; - var _Gl4Pass2Sgis = OpenTK.Graphics.ES30.SamplePatternSgis.Gl4Pass2Sgis; - var _Gl4Pass3Ext = OpenTK.Graphics.ES30.SamplePatternSgis.Gl4Pass3Ext; - var _Gl4Pass3Sgis = OpenTK.Graphics.ES30.SamplePatternSgis.Gl4Pass3Sgis; -} -static void Test_SamplerParameterName_38029() { - var _TextureMagFilter = OpenTK.Graphics.ES30.SamplerParameterName.TextureMagFilter; - var _TextureMinFilter = OpenTK.Graphics.ES30.SamplerParameterName.TextureMinFilter; - var _TextureWrapS = OpenTK.Graphics.ES30.SamplerParameterName.TextureWrapS; - var _TextureWrapT = OpenTK.Graphics.ES30.SamplerParameterName.TextureWrapT; - var _TextureWrapR = OpenTK.Graphics.ES30.SamplerParameterName.TextureWrapR; - var _TextureMinLod = OpenTK.Graphics.ES30.SamplerParameterName.TextureMinLod; - var _TextureMaxLod = OpenTK.Graphics.ES30.SamplerParameterName.TextureMaxLod; - var _TextureCompareMode = OpenTK.Graphics.ES30.SamplerParameterName.TextureCompareMode; - var _TextureCompareFunc = OpenTK.Graphics.ES30.SamplerParameterName.TextureCompareFunc; -} -static void Test_SeparableTargetExt_38030() { - var _Separable2D = OpenTK.Graphics.ES30.SeparableTargetExt.Separable2D; - var _Separable2DExt = OpenTK.Graphics.ES30.SeparableTargetExt.Separable2DExt; -} -static void Test_ShaderBinaryFormat_38031() { -} -static void Test_ShaderParameter_38032() { - var _ShaderType = OpenTK.Graphics.ES30.ShaderParameter.ShaderType; - var _DeleteStatus = OpenTK.Graphics.ES30.ShaderParameter.DeleteStatus; - var _CompileStatus = OpenTK.Graphics.ES30.ShaderParameter.CompileStatus; - var _InfoLogLength = OpenTK.Graphics.ES30.ShaderParameter.InfoLogLength; - var _ShaderSourceLength = OpenTK.Graphics.ES30.ShaderParameter.ShaderSourceLength; -} -static void Test_ShaderPrecision_38033() { - var _LowFloat = OpenTK.Graphics.ES30.ShaderPrecision.LowFloat; - var _MediumFloat = OpenTK.Graphics.ES30.ShaderPrecision.MediumFloat; - var _HighFloat = OpenTK.Graphics.ES30.ShaderPrecision.HighFloat; - var _LowInt = OpenTK.Graphics.ES30.ShaderPrecision.LowInt; - var _MediumInt = OpenTK.Graphics.ES30.ShaderPrecision.MediumInt; - var _HighInt = OpenTK.Graphics.ES30.ShaderPrecision.HighInt; -} -static void Test_ShaderType_38034() { - var _FragmentShader = OpenTK.Graphics.ES30.ShaderType.FragmentShader; - var _VertexShader = OpenTK.Graphics.ES30.ShaderType.VertexShader; -} -static void Test_ShadingModel_38035() { - var _Flat = OpenTK.Graphics.ES30.ShadingModel.Flat; - var _Smooth = OpenTK.Graphics.ES30.ShadingModel.Smooth; -} -static void Test_SizedColorFormat_38036() { - var _Rgb8 = OpenTK.Graphics.ES30.SizedColorFormat.Rgb8; - var _Rgba4 = OpenTK.Graphics.ES30.SizedColorFormat.Rgba4; - var _Rgb5A1 = OpenTK.Graphics.ES30.SizedColorFormat.Rgb5A1; - var _Rgba8 = OpenTK.Graphics.ES30.SizedColorFormat.Rgba8; - var _Rgb10A2 = OpenTK.Graphics.ES30.SizedColorFormat.Rgb10A2; - var _R8 = OpenTK.Graphics.ES30.SizedColorFormat.R8; - var _Rg8 = OpenTK.Graphics.ES30.SizedColorFormat.Rg8; - var _R16f = OpenTK.Graphics.ES30.SizedColorFormat.R16f; - var _R32f = OpenTK.Graphics.ES30.SizedColorFormat.R32f; - var _Rg16f = OpenTK.Graphics.ES30.SizedColorFormat.Rg16f; - var _Rg32f = OpenTK.Graphics.ES30.SizedColorFormat.Rg32f; - var _R8i = OpenTK.Graphics.ES30.SizedColorFormat.R8i; - var _R8ui = OpenTK.Graphics.ES30.SizedColorFormat.R8ui; - var _R16i = OpenTK.Graphics.ES30.SizedColorFormat.R16i; - var _R16ui = OpenTK.Graphics.ES30.SizedColorFormat.R16ui; - var _R32i = OpenTK.Graphics.ES30.SizedColorFormat.R32i; - var _R32ui = OpenTK.Graphics.ES30.SizedColorFormat.R32ui; - var _Rg8i = OpenTK.Graphics.ES30.SizedColorFormat.Rg8i; - var _Rg8ui = OpenTK.Graphics.ES30.SizedColorFormat.Rg8ui; - var _Rg16i = OpenTK.Graphics.ES30.SizedColorFormat.Rg16i; - var _Rg16ui = OpenTK.Graphics.ES30.SizedColorFormat.Rg16ui; - var _Rg32i = OpenTK.Graphics.ES30.SizedColorFormat.Rg32i; - var _Rg32ui = OpenTK.Graphics.ES30.SizedColorFormat.Rg32ui; - var _Rgba32f = OpenTK.Graphics.ES30.SizedColorFormat.Rgba32f; - var _Rgb32f = OpenTK.Graphics.ES30.SizedColorFormat.Rgb32f; - var _Rgba16f = OpenTK.Graphics.ES30.SizedColorFormat.Rgba16f; - var _Rgb16f = OpenTK.Graphics.ES30.SizedColorFormat.Rgb16f; - var _R11fG11fB10f = OpenTK.Graphics.ES30.SizedColorFormat.R11fG11fB10f; - var _Rgb9E5 = OpenTK.Graphics.ES30.SizedColorFormat.Rgb9E5; - var _Srgb8 = OpenTK.Graphics.ES30.SizedColorFormat.Srgb8; - var _Srgb8Alpha8 = OpenTK.Graphics.ES30.SizedColorFormat.Srgb8Alpha8; - var _Rgb565 = OpenTK.Graphics.ES30.SizedColorFormat.Rgb565; - var _Rgba32ui = OpenTK.Graphics.ES30.SizedColorFormat.Rgba32ui; - var _Rgb32ui = OpenTK.Graphics.ES30.SizedColorFormat.Rgb32ui; - var _Rgba16ui = OpenTK.Graphics.ES30.SizedColorFormat.Rgba16ui; - var _Rgb16ui = OpenTK.Graphics.ES30.SizedColorFormat.Rgb16ui; - var _Rgba8ui = OpenTK.Graphics.ES30.SizedColorFormat.Rgba8ui; - var _Rgb8ui = OpenTK.Graphics.ES30.SizedColorFormat.Rgb8ui; - var _Rgba32i = OpenTK.Graphics.ES30.SizedColorFormat.Rgba32i; - var _Rgb32i = OpenTK.Graphics.ES30.SizedColorFormat.Rgb32i; - var _Rgba16i = OpenTK.Graphics.ES30.SizedColorFormat.Rgba16i; - var _Rgb16i = OpenTK.Graphics.ES30.SizedColorFormat.Rgb16i; - var _Rgba8i = OpenTK.Graphics.ES30.SizedColorFormat.Rgba8i; - var _Rgb8i = OpenTK.Graphics.ES30.SizedColorFormat.Rgb8i; - var _R8Snorm = OpenTK.Graphics.ES30.SizedColorFormat.R8Snorm; - var _Rg8Snorm = OpenTK.Graphics.ES30.SizedColorFormat.Rg8Snorm; - var _Rgb8Snorm = OpenTK.Graphics.ES30.SizedColorFormat.Rgb8Snorm; - var _Rgba8Snorm = OpenTK.Graphics.ES30.SizedColorFormat.Rgba8Snorm; - var _Rgb10A2ui = OpenTK.Graphics.ES30.SizedColorFormat.Rgb10A2ui; -} -static void Test_SizedDepthStencilFormat_38037() { - var _DepthComponent16 = OpenTK.Graphics.ES30.SizedDepthStencilFormat.DepthComponent16; - var _DepthComponent24 = OpenTK.Graphics.ES30.SizedDepthStencilFormat.DepthComponent24; - var _Depth24Stencil8 = OpenTK.Graphics.ES30.SizedDepthStencilFormat.Depth24Stencil8; - var _DepthComponent32f = OpenTK.Graphics.ES30.SizedDepthStencilFormat.DepthComponent32f; - var _Depth32fStencil8 = OpenTK.Graphics.ES30.SizedDepthStencilFormat.Depth32fStencil8; -} -static void Test_SizedInternalFormat_38038() { - var _Alpha8Ext = OpenTK.Graphics.ES30.SizedInternalFormat.Alpha8Ext; - var _Luminance8Ext = OpenTK.Graphics.ES30.SizedInternalFormat.Luminance8Ext; - var _Luminance8Alpha8Ext = OpenTK.Graphics.ES30.SizedInternalFormat.Luminance8Alpha8Ext; - var _Rgb8 = OpenTK.Graphics.ES30.SizedInternalFormat.Rgb8; - var _Rgb10Ext = OpenTK.Graphics.ES30.SizedInternalFormat.Rgb10Ext; - var _Rgba4 = OpenTK.Graphics.ES30.SizedInternalFormat.Rgba4; - var _Rgb5A1 = OpenTK.Graphics.ES30.SizedInternalFormat.Rgb5A1; - var _Rgba8 = OpenTK.Graphics.ES30.SizedInternalFormat.Rgba8; - var _Rgb10A2 = OpenTK.Graphics.ES30.SizedInternalFormat.Rgb10A2; - var _Rgb10A2Ext = OpenTK.Graphics.ES30.SizedInternalFormat.Rgb10A2Ext; - var _DepthComponent16 = OpenTK.Graphics.ES30.SizedInternalFormat.DepthComponent16; - var _DepthComponent24 = OpenTK.Graphics.ES30.SizedInternalFormat.DepthComponent24; - var _R8 = OpenTK.Graphics.ES30.SizedInternalFormat.R8; - var _R8Ext = OpenTK.Graphics.ES30.SizedInternalFormat.R8Ext; - var _Rg8 = OpenTK.Graphics.ES30.SizedInternalFormat.Rg8; - var _Rg8Ext = OpenTK.Graphics.ES30.SizedInternalFormat.Rg8Ext; - var _R16f = OpenTK.Graphics.ES30.SizedInternalFormat.R16f; - var _R16fExt = OpenTK.Graphics.ES30.SizedInternalFormat.R16fExt; - var _R32f = OpenTK.Graphics.ES30.SizedInternalFormat.R32f; - var _R32fExt = OpenTK.Graphics.ES30.SizedInternalFormat.R32fExt; - var _Rg16f = OpenTK.Graphics.ES30.SizedInternalFormat.Rg16f; - var _Rg16fExt = OpenTK.Graphics.ES30.SizedInternalFormat.Rg16fExt; - var _Rg32f = OpenTK.Graphics.ES30.SizedInternalFormat.Rg32f; - var _Rg32fExt = OpenTK.Graphics.ES30.SizedInternalFormat.Rg32fExt; - var _R8i = OpenTK.Graphics.ES30.SizedInternalFormat.R8i; - var _R8ui = OpenTK.Graphics.ES30.SizedInternalFormat.R8ui; - var _R16i = OpenTK.Graphics.ES30.SizedInternalFormat.R16i; - var _R16ui = OpenTK.Graphics.ES30.SizedInternalFormat.R16ui; - var _R32i = OpenTK.Graphics.ES30.SizedInternalFormat.R32i; - var _R32ui = OpenTK.Graphics.ES30.SizedInternalFormat.R32ui; - var _Rg8i = OpenTK.Graphics.ES30.SizedInternalFormat.Rg8i; - var _Rg8ui = OpenTK.Graphics.ES30.SizedInternalFormat.Rg8ui; - var _Rg16i = OpenTK.Graphics.ES30.SizedInternalFormat.Rg16i; - var _Rg16ui = OpenTK.Graphics.ES30.SizedInternalFormat.Rg16ui; - var _Rg32i = OpenTK.Graphics.ES30.SizedInternalFormat.Rg32i; - var _Rg32ui = OpenTK.Graphics.ES30.SizedInternalFormat.Rg32ui; - var _Rgba32f = OpenTK.Graphics.ES30.SizedInternalFormat.Rgba32f; - var _Rgba32fExt = OpenTK.Graphics.ES30.SizedInternalFormat.Rgba32fExt; - var _Rgb32f = OpenTK.Graphics.ES30.SizedInternalFormat.Rgb32f; - var _Rgb32fExt = OpenTK.Graphics.ES30.SizedInternalFormat.Rgb32fExt; - var _Alpha32fExt = OpenTK.Graphics.ES30.SizedInternalFormat.Alpha32fExt; - var _Luminance32fExt = OpenTK.Graphics.ES30.SizedInternalFormat.Luminance32fExt; - var _LuminanceAlpha32fExt = OpenTK.Graphics.ES30.SizedInternalFormat.LuminanceAlpha32fExt; - var _Rgba16f = OpenTK.Graphics.ES30.SizedInternalFormat.Rgba16f; - var _Rgba16fExt = OpenTK.Graphics.ES30.SizedInternalFormat.Rgba16fExt; - var _Rgb16f = OpenTK.Graphics.ES30.SizedInternalFormat.Rgb16f; - var _Rgb16fExt = OpenTK.Graphics.ES30.SizedInternalFormat.Rgb16fExt; - var _Alpha16fExt = OpenTK.Graphics.ES30.SizedInternalFormat.Alpha16fExt; - var _Luminance16fExt = OpenTK.Graphics.ES30.SizedInternalFormat.Luminance16fExt; - var _LuminanceAlpha16fExt = OpenTK.Graphics.ES30.SizedInternalFormat.LuminanceAlpha16fExt; - var _Depth24Stencil8 = OpenTK.Graphics.ES30.SizedInternalFormat.Depth24Stencil8; - var _RgbRaw422Apple = OpenTK.Graphics.ES30.SizedInternalFormat.RgbRaw422Apple; - var _R11fG11fB10f = OpenTK.Graphics.ES30.SizedInternalFormat.R11fG11fB10f; - var _Rgb9E5 = OpenTK.Graphics.ES30.SizedInternalFormat.Rgb9E5; - var _Srgb8 = OpenTK.Graphics.ES30.SizedInternalFormat.Srgb8; - var _Srgb8Alpha8 = OpenTK.Graphics.ES30.SizedInternalFormat.Srgb8Alpha8; - var _DepthComponent32f = OpenTK.Graphics.ES30.SizedInternalFormat.DepthComponent32f; - var _Depth32fStencil8 = OpenTK.Graphics.ES30.SizedInternalFormat.Depth32fStencil8; - var _Rgb565 = OpenTK.Graphics.ES30.SizedInternalFormat.Rgb565; - var _Rgba32ui = OpenTK.Graphics.ES30.SizedInternalFormat.Rgba32ui; - var _Rgb32ui = OpenTK.Graphics.ES30.SizedInternalFormat.Rgb32ui; - var _Rgba16ui = OpenTK.Graphics.ES30.SizedInternalFormat.Rgba16ui; - var _Rgb16ui = OpenTK.Graphics.ES30.SizedInternalFormat.Rgb16ui; - var _Rgba8ui = OpenTK.Graphics.ES30.SizedInternalFormat.Rgba8ui; - var _Rgb8ui = OpenTK.Graphics.ES30.SizedInternalFormat.Rgb8ui; - var _Rgba32i = OpenTK.Graphics.ES30.SizedInternalFormat.Rgba32i; - var _Rgb32i = OpenTK.Graphics.ES30.SizedInternalFormat.Rgb32i; - var _Rgba16i = OpenTK.Graphics.ES30.SizedInternalFormat.Rgba16i; - var _Rgb16i = OpenTK.Graphics.ES30.SizedInternalFormat.Rgb16i; - var _Rgba8i = OpenTK.Graphics.ES30.SizedInternalFormat.Rgba8i; - var _Rgb8i = OpenTK.Graphics.ES30.SizedInternalFormat.Rgb8i; - var _R8Snorm = OpenTK.Graphics.ES30.SizedInternalFormat.R8Snorm; - var _Rg8Snorm = OpenTK.Graphics.ES30.SizedInternalFormat.Rg8Snorm; - var _Rgb8Snorm = OpenTK.Graphics.ES30.SizedInternalFormat.Rgb8Snorm; - var _Rgba8Snorm = OpenTK.Graphics.ES30.SizedInternalFormat.Rgba8Snorm; - var _Rgb10A2ui = OpenTK.Graphics.ES30.SizedInternalFormat.Rgb10A2ui; - var _Bgra8Ext = OpenTK.Graphics.ES30.SizedInternalFormat.Bgra8Ext; -} -static void Test_StencilFace_38039() { - var _Front = OpenTK.Graphics.ES30.StencilFace.Front; - var _Back = OpenTK.Graphics.ES30.StencilFace.Back; - var _FrontAndBack = OpenTK.Graphics.ES30.StencilFace.FrontAndBack; -} -static void Test_StencilFunction_38040() { - var _Never = OpenTK.Graphics.ES30.StencilFunction.Never; - var _Less = OpenTK.Graphics.ES30.StencilFunction.Less; - var _Equal = OpenTK.Graphics.ES30.StencilFunction.Equal; - var _Lequal = OpenTK.Graphics.ES30.StencilFunction.Lequal; - var _Greater = OpenTK.Graphics.ES30.StencilFunction.Greater; - var _Notequal = OpenTK.Graphics.ES30.StencilFunction.Notequal; - var _Gequal = OpenTK.Graphics.ES30.StencilFunction.Gequal; - var _Always = OpenTK.Graphics.ES30.StencilFunction.Always; -} -static void Test_StencilOp_38041() { - var _Zero = OpenTK.Graphics.ES30.StencilOp.Zero; - var _Invert = OpenTK.Graphics.ES30.StencilOp.Invert; - var _Keep = OpenTK.Graphics.ES30.StencilOp.Keep; - var _Replace = OpenTK.Graphics.ES30.StencilOp.Replace; - var _Incr = OpenTK.Graphics.ES30.StencilOp.Incr; - var _Decr = OpenTK.Graphics.ES30.StencilOp.Decr; - var _IncrWrap = OpenTK.Graphics.ES30.StencilOp.IncrWrap; - var _DecrWrap = OpenTK.Graphics.ES30.StencilOp.DecrWrap; -} -static void Test_StringName_38042() { - var _Vendor = OpenTK.Graphics.ES30.StringName.Vendor; - var _Renderer = OpenTK.Graphics.ES30.StringName.Renderer; - var _Version = OpenTK.Graphics.ES30.StringName.Version; - var _Extensions = OpenTK.Graphics.ES30.StringName.Extensions; - var _ShadingLanguageVersion = OpenTK.Graphics.ES30.StringName.ShadingLanguageVersion; -} -static void Test_StringNameIndexed_38043() { - var _Extensions = OpenTK.Graphics.ES30.StringNameIndexed.Extensions; -} -static void Test_SyncCondition_38044() { - var _SyncGpuCommandsComplete = OpenTK.Graphics.ES30.SyncCondition.SyncGpuCommandsComplete; - var _SyncGpuCommandsCompleteApple = OpenTK.Graphics.ES30.SyncCondition.SyncGpuCommandsCompleteApple; -} -static void Test_SyncParameterName_38045() { - var _ObjectType = OpenTK.Graphics.ES30.SyncParameterName.ObjectType; - var _ObjectTypeApple = OpenTK.Graphics.ES30.SyncParameterName.ObjectTypeApple; - var _SyncCondition = OpenTK.Graphics.ES30.SyncParameterName.SyncCondition; - var _SyncConditionApple = OpenTK.Graphics.ES30.SyncParameterName.SyncConditionApple; - var _SyncStatus = OpenTK.Graphics.ES30.SyncParameterName.SyncStatus; - var _SyncStatusApple = OpenTK.Graphics.ES30.SyncParameterName.SyncStatusApple; - var _SyncFlags = OpenTK.Graphics.ES30.SyncParameterName.SyncFlags; - var _SyncFlagsApple = OpenTK.Graphics.ES30.SyncParameterName.SyncFlagsApple; -} -static void Test_TexCoordPointerType_38046() { - var _Short = OpenTK.Graphics.ES30.TexCoordPointerType.Short; - var _Int = OpenTK.Graphics.ES30.TexCoordPointerType.Int; - var _Float = OpenTK.Graphics.ES30.TexCoordPointerType.Float; - var _Double = OpenTK.Graphics.ES30.TexCoordPointerType.Double; -} -static void Test_TextureComponentCount_38047() { - var _Alpha = OpenTK.Graphics.ES30.TextureComponentCount.Alpha; - var _Rgb = OpenTK.Graphics.ES30.TextureComponentCount.Rgb; - var _Rgba = OpenTK.Graphics.ES30.TextureComponentCount.Rgba; - var _Luminance = OpenTK.Graphics.ES30.TextureComponentCount.Luminance; - var _LuminanceAlpha = OpenTK.Graphics.ES30.TextureComponentCount.LuminanceAlpha; - var _Alpha8Ext = OpenTK.Graphics.ES30.TextureComponentCount.Alpha8Ext; - var _Luminance8Ext = OpenTK.Graphics.ES30.TextureComponentCount.Luminance8Ext; - var _Luminance8Alpha8Ext = OpenTK.Graphics.ES30.TextureComponentCount.Luminance8Alpha8Ext; - var _Rgb8 = OpenTK.Graphics.ES30.TextureComponentCount.Rgb8; - var _Rgb10Ext = OpenTK.Graphics.ES30.TextureComponentCount.Rgb10Ext; - var _Rgba4 = OpenTK.Graphics.ES30.TextureComponentCount.Rgba4; - var _Rgb5A1 = OpenTK.Graphics.ES30.TextureComponentCount.Rgb5A1; - var _Rgba8 = OpenTK.Graphics.ES30.TextureComponentCount.Rgba8; - var _Rgb10A2 = OpenTK.Graphics.ES30.TextureComponentCount.Rgb10A2; - var _Rgb10A2Ext = OpenTK.Graphics.ES30.TextureComponentCount.Rgb10A2Ext; - var _DepthComponent16 = OpenTK.Graphics.ES30.TextureComponentCount.DepthComponent16; - var _DepthComponent24 = OpenTK.Graphics.ES30.TextureComponentCount.DepthComponent24; - var _R8 = OpenTK.Graphics.ES30.TextureComponentCount.R8; - var _R8Ext = OpenTK.Graphics.ES30.TextureComponentCount.R8Ext; - var _Rg8 = OpenTK.Graphics.ES30.TextureComponentCount.Rg8; - var _Rg8Ext = OpenTK.Graphics.ES30.TextureComponentCount.Rg8Ext; - var _R16f = OpenTK.Graphics.ES30.TextureComponentCount.R16f; - var _R16fExt = OpenTK.Graphics.ES30.TextureComponentCount.R16fExt; - var _R32f = OpenTK.Graphics.ES30.TextureComponentCount.R32f; - var _R32fExt = OpenTK.Graphics.ES30.TextureComponentCount.R32fExt; - var _Rg16f = OpenTK.Graphics.ES30.TextureComponentCount.Rg16f; - var _Rg16fExt = OpenTK.Graphics.ES30.TextureComponentCount.Rg16fExt; - var _Rg32f = OpenTK.Graphics.ES30.TextureComponentCount.Rg32f; - var _Rg32fExt = OpenTK.Graphics.ES30.TextureComponentCount.Rg32fExt; - var _R8i = OpenTK.Graphics.ES30.TextureComponentCount.R8i; - var _R8ui = OpenTK.Graphics.ES30.TextureComponentCount.R8ui; - var _R16i = OpenTK.Graphics.ES30.TextureComponentCount.R16i; - var _R16ui = OpenTK.Graphics.ES30.TextureComponentCount.R16ui; - var _R32i = OpenTK.Graphics.ES30.TextureComponentCount.R32i; - var _R32ui = OpenTK.Graphics.ES30.TextureComponentCount.R32ui; - var _Rg8i = OpenTK.Graphics.ES30.TextureComponentCount.Rg8i; - var _Rg8ui = OpenTK.Graphics.ES30.TextureComponentCount.Rg8ui; - var _Rg16i = OpenTK.Graphics.ES30.TextureComponentCount.Rg16i; - var _Rg16ui = OpenTK.Graphics.ES30.TextureComponentCount.Rg16ui; - var _Rg32i = OpenTK.Graphics.ES30.TextureComponentCount.Rg32i; - var _Rg32ui = OpenTK.Graphics.ES30.TextureComponentCount.Rg32ui; - var _Rgba32f = OpenTK.Graphics.ES30.TextureComponentCount.Rgba32f; - var _Rgba32fExt = OpenTK.Graphics.ES30.TextureComponentCount.Rgba32fExt; - var _Rgb32f = OpenTK.Graphics.ES30.TextureComponentCount.Rgb32f; - var _Rgb32fExt = OpenTK.Graphics.ES30.TextureComponentCount.Rgb32fExt; - var _Alpha32fExt = OpenTK.Graphics.ES30.TextureComponentCount.Alpha32fExt; - var _Luminance32fExt = OpenTK.Graphics.ES30.TextureComponentCount.Luminance32fExt; - var _LuminanceAlpha32fExt = OpenTK.Graphics.ES30.TextureComponentCount.LuminanceAlpha32fExt; - var _Rgba16f = OpenTK.Graphics.ES30.TextureComponentCount.Rgba16f; - var _Rgba16fExt = OpenTK.Graphics.ES30.TextureComponentCount.Rgba16fExt; - var _Rgb16f = OpenTK.Graphics.ES30.TextureComponentCount.Rgb16f; - var _Rgb16fExt = OpenTK.Graphics.ES30.TextureComponentCount.Rgb16fExt; - var _Alpha16fExt = OpenTK.Graphics.ES30.TextureComponentCount.Alpha16fExt; - var _Luminance16fExt = OpenTK.Graphics.ES30.TextureComponentCount.Luminance16fExt; - var _LuminanceAlpha16fExt = OpenTK.Graphics.ES30.TextureComponentCount.LuminanceAlpha16fExt; - var _Depth24Stencil8 = OpenTK.Graphics.ES30.TextureComponentCount.Depth24Stencil8; - var _RgbRaw422Apple = OpenTK.Graphics.ES30.TextureComponentCount.RgbRaw422Apple; - var _R11fG11fB10f = OpenTK.Graphics.ES30.TextureComponentCount.R11fG11fB10f; - var _Rgb9E5 = OpenTK.Graphics.ES30.TextureComponentCount.Rgb9E5; - var _Srgb8 = OpenTK.Graphics.ES30.TextureComponentCount.Srgb8; - var _Srgb8Alpha8 = OpenTK.Graphics.ES30.TextureComponentCount.Srgb8Alpha8; - var _DepthComponent32f = OpenTK.Graphics.ES30.TextureComponentCount.DepthComponent32f; - var _Depth32fStencil8 = OpenTK.Graphics.ES30.TextureComponentCount.Depth32fStencil8; - var _Rgb565 = OpenTK.Graphics.ES30.TextureComponentCount.Rgb565; - var _Rgba32ui = OpenTK.Graphics.ES30.TextureComponentCount.Rgba32ui; - var _Rgb32ui = OpenTK.Graphics.ES30.TextureComponentCount.Rgb32ui; - var _Rgba16ui = OpenTK.Graphics.ES30.TextureComponentCount.Rgba16ui; - var _Rgb16ui = OpenTK.Graphics.ES30.TextureComponentCount.Rgb16ui; - var _Rgba8ui = OpenTK.Graphics.ES30.TextureComponentCount.Rgba8ui; - var _Rgb8ui = OpenTK.Graphics.ES30.TextureComponentCount.Rgb8ui; - var _Rgba32i = OpenTK.Graphics.ES30.TextureComponentCount.Rgba32i; - var _Rgb32i = OpenTK.Graphics.ES30.TextureComponentCount.Rgb32i; - var _Rgba16i = OpenTK.Graphics.ES30.TextureComponentCount.Rgba16i; - var _Rgb16i = OpenTK.Graphics.ES30.TextureComponentCount.Rgb16i; - var _Rgba8i = OpenTK.Graphics.ES30.TextureComponentCount.Rgba8i; - var _Rgb8i = OpenTK.Graphics.ES30.TextureComponentCount.Rgb8i; - var _R8Snorm = OpenTK.Graphics.ES30.TextureComponentCount.R8Snorm; - var _Rg8Snorm = OpenTK.Graphics.ES30.TextureComponentCount.Rg8Snorm; - var _Rgb8Snorm = OpenTK.Graphics.ES30.TextureComponentCount.Rgb8Snorm; - var _Rgba8Snorm = OpenTK.Graphics.ES30.TextureComponentCount.Rgba8Snorm; - var _Rgb10A2ui = OpenTK.Graphics.ES30.TextureComponentCount.Rgb10A2ui; - var _Bgra8Ext = OpenTK.Graphics.ES30.TextureComponentCount.Bgra8Ext; -} -static void Test_TextureCoordName_38048() { - var _S = OpenTK.Graphics.ES30.TextureCoordName.S; - var _T = OpenTK.Graphics.ES30.TextureCoordName.T; - var _R = OpenTK.Graphics.ES30.TextureCoordName.R; - var _Q = OpenTK.Graphics.ES30.TextureCoordName.Q; -} -static void Test_TextureCopyComponentCount_38049() { - var _Alpha = OpenTK.Graphics.ES30.TextureCopyComponentCount.Alpha; - var _Rgb = OpenTK.Graphics.ES30.TextureCopyComponentCount.Rgb; - var _Rgba = OpenTK.Graphics.ES30.TextureCopyComponentCount.Rgba; - var _Luminance = OpenTK.Graphics.ES30.TextureCopyComponentCount.Luminance; - var _LuminanceAlpha = OpenTK.Graphics.ES30.TextureCopyComponentCount.LuminanceAlpha; - var _Rgb8 = OpenTK.Graphics.ES30.TextureCopyComponentCount.Rgb8; - var _Rgba4 = OpenTK.Graphics.ES30.TextureCopyComponentCount.Rgba4; - var _Rgb5A1 = OpenTK.Graphics.ES30.TextureCopyComponentCount.Rgb5A1; - var _Rgba8 = OpenTK.Graphics.ES30.TextureCopyComponentCount.Rgba8; - var _Rgb10A2 = OpenTK.Graphics.ES30.TextureCopyComponentCount.Rgb10A2; - var _R8 = OpenTK.Graphics.ES30.TextureCopyComponentCount.R8; - var _Rg8 = OpenTK.Graphics.ES30.TextureCopyComponentCount.Rg8; - var _R16f = OpenTK.Graphics.ES30.TextureCopyComponentCount.R16f; - var _R32f = OpenTK.Graphics.ES30.TextureCopyComponentCount.R32f; - var _Rg16f = OpenTK.Graphics.ES30.TextureCopyComponentCount.Rg16f; - var _Rg32f = OpenTK.Graphics.ES30.TextureCopyComponentCount.Rg32f; - var _R8i = OpenTK.Graphics.ES30.TextureCopyComponentCount.R8i; - var _R8ui = OpenTK.Graphics.ES30.TextureCopyComponentCount.R8ui; - var _R16i = OpenTK.Graphics.ES30.TextureCopyComponentCount.R16i; - var _R16ui = OpenTK.Graphics.ES30.TextureCopyComponentCount.R16ui; - var _R32i = OpenTK.Graphics.ES30.TextureCopyComponentCount.R32i; - var _R32ui = OpenTK.Graphics.ES30.TextureCopyComponentCount.R32ui; - var _Rg8i = OpenTK.Graphics.ES30.TextureCopyComponentCount.Rg8i; - var _Rg8ui = OpenTK.Graphics.ES30.TextureCopyComponentCount.Rg8ui; - var _Rg16i = OpenTK.Graphics.ES30.TextureCopyComponentCount.Rg16i; - var _Rg16ui = OpenTK.Graphics.ES30.TextureCopyComponentCount.Rg16ui; - var _Rg32i = OpenTK.Graphics.ES30.TextureCopyComponentCount.Rg32i; - var _Rg32ui = OpenTK.Graphics.ES30.TextureCopyComponentCount.Rg32ui; - var _Rgba32f = OpenTK.Graphics.ES30.TextureCopyComponentCount.Rgba32f; - var _Rgb32f = OpenTK.Graphics.ES30.TextureCopyComponentCount.Rgb32f; - var _Rgba16f = OpenTK.Graphics.ES30.TextureCopyComponentCount.Rgba16f; - var _Rgb16f = OpenTK.Graphics.ES30.TextureCopyComponentCount.Rgb16f; - var _R11fG11fB10f = OpenTK.Graphics.ES30.TextureCopyComponentCount.R11fG11fB10f; - var _Rgb9E5 = OpenTK.Graphics.ES30.TextureCopyComponentCount.Rgb9E5; - var _Srgb8 = OpenTK.Graphics.ES30.TextureCopyComponentCount.Srgb8; - var _Srgb8Alpha8 = OpenTK.Graphics.ES30.TextureCopyComponentCount.Srgb8Alpha8; - var _Rgb565 = OpenTK.Graphics.ES30.TextureCopyComponentCount.Rgb565; - var _Rgba32ui = OpenTK.Graphics.ES30.TextureCopyComponentCount.Rgba32ui; - var _Rgb32ui = OpenTK.Graphics.ES30.TextureCopyComponentCount.Rgb32ui; - var _Rgba16ui = OpenTK.Graphics.ES30.TextureCopyComponentCount.Rgba16ui; - var _Rgb16ui = OpenTK.Graphics.ES30.TextureCopyComponentCount.Rgb16ui; - var _Rgba8ui = OpenTK.Graphics.ES30.TextureCopyComponentCount.Rgba8ui; - var _Rgb8ui = OpenTK.Graphics.ES30.TextureCopyComponentCount.Rgb8ui; - var _Rgba32i = OpenTK.Graphics.ES30.TextureCopyComponentCount.Rgba32i; - var _Rgb32i = OpenTK.Graphics.ES30.TextureCopyComponentCount.Rgb32i; - var _Rgba16i = OpenTK.Graphics.ES30.TextureCopyComponentCount.Rgba16i; - var _Rgb16i = OpenTK.Graphics.ES30.TextureCopyComponentCount.Rgb16i; - var _Rgba8i = OpenTK.Graphics.ES30.TextureCopyComponentCount.Rgba8i; - var _Rgb8i = OpenTK.Graphics.ES30.TextureCopyComponentCount.Rgb8i; - var _R8Snorm = OpenTK.Graphics.ES30.TextureCopyComponentCount.R8Snorm; - var _Rg8Snorm = OpenTK.Graphics.ES30.TextureCopyComponentCount.Rg8Snorm; - var _Rgb8Snorm = OpenTK.Graphics.ES30.TextureCopyComponentCount.Rgb8Snorm; - var _Rgba8Snorm = OpenTK.Graphics.ES30.TextureCopyComponentCount.Rgba8Snorm; - var _Rgb10A2ui = OpenTK.Graphics.ES30.TextureCopyComponentCount.Rgb10A2ui; -} -static void Test_TextureEnvMode_38050() { - var _Add = OpenTK.Graphics.ES30.TextureEnvMode.Add; - var _Blend = OpenTK.Graphics.ES30.TextureEnvMode.Blend; - var _Modulate = OpenTK.Graphics.ES30.TextureEnvMode.Modulate; - var _Decal = OpenTK.Graphics.ES30.TextureEnvMode.Decal; - var _ReplaceExt = OpenTK.Graphics.ES30.TextureEnvMode.ReplaceExt; - var _TextureEnvBiasSgix = OpenTK.Graphics.ES30.TextureEnvMode.TextureEnvBiasSgix; -} -static void Test_TextureEnvParameter_38051() { - var _TextureEnvMode = OpenTK.Graphics.ES30.TextureEnvParameter.TextureEnvMode; - var _TextureEnvColor = OpenTK.Graphics.ES30.TextureEnvParameter.TextureEnvColor; -} -static void Test_TextureEnvTarget_38052() { - var _TextureEnv = OpenTK.Graphics.ES30.TextureEnvTarget.TextureEnv; -} -static void Test_TextureFilterFuncSgis_38053() { - var _Filter4Sgis = OpenTK.Graphics.ES30.TextureFilterFuncSgis.Filter4Sgis; -} -static void Test_TextureGenMode_38054() { - var _EyeLinear = OpenTK.Graphics.ES30.TextureGenMode.EyeLinear; - var _ObjectLinear = OpenTK.Graphics.ES30.TextureGenMode.ObjectLinear; - var _SphereMap = OpenTK.Graphics.ES30.TextureGenMode.SphereMap; - var _EyeDistanceToPointSgis = OpenTK.Graphics.ES30.TextureGenMode.EyeDistanceToPointSgis; - var _ObjectDistanceToPointSgis = OpenTK.Graphics.ES30.TextureGenMode.ObjectDistanceToPointSgis; - var _EyeDistanceToLineSgis = OpenTK.Graphics.ES30.TextureGenMode.EyeDistanceToLineSgis; - var _ObjectDistanceToLineSgis = OpenTK.Graphics.ES30.TextureGenMode.ObjectDistanceToLineSgis; -} -static void Test_TextureGenParameter_38055() { - var _TextureGenMode = OpenTK.Graphics.ES30.TextureGenParameter.TextureGenMode; - var _ObjectPlane = OpenTK.Graphics.ES30.TextureGenParameter.ObjectPlane; - var _EyePlane = OpenTK.Graphics.ES30.TextureGenParameter.EyePlane; - var _EyePointSgis = OpenTK.Graphics.ES30.TextureGenParameter.EyePointSgis; - var _ObjectPointSgis = OpenTK.Graphics.ES30.TextureGenParameter.ObjectPointSgis; - var _EyeLineSgis = OpenTK.Graphics.ES30.TextureGenParameter.EyeLineSgis; - var _ObjectLineSgis = OpenTK.Graphics.ES30.TextureGenParameter.ObjectLineSgis; -} -static void Test_TextureMagFilter_38056() { - var _Nearest = OpenTK.Graphics.ES30.TextureMagFilter.Nearest; - var _Linear = OpenTK.Graphics.ES30.TextureMagFilter.Linear; - var _LinearDetailSgis = OpenTK.Graphics.ES30.TextureMagFilter.LinearDetailSgis; - var _LinearDetailAlphaSgis = OpenTK.Graphics.ES30.TextureMagFilter.LinearDetailAlphaSgis; - var _LinearDetailColorSgis = OpenTK.Graphics.ES30.TextureMagFilter.LinearDetailColorSgis; - var _LinearSharpenSgis = OpenTK.Graphics.ES30.TextureMagFilter.LinearSharpenSgis; - var _LinearSharpenAlphaSgis = OpenTK.Graphics.ES30.TextureMagFilter.LinearSharpenAlphaSgis; - var _LinearSharpenColorSgis = OpenTK.Graphics.ES30.TextureMagFilter.LinearSharpenColorSgis; - var _Filter4Sgis = OpenTK.Graphics.ES30.TextureMagFilter.Filter4Sgis; - var _PixelTexGenQCeilingSgix = OpenTK.Graphics.ES30.TextureMagFilter.PixelTexGenQCeilingSgix; - var _PixelTexGenQRoundSgix = OpenTK.Graphics.ES30.TextureMagFilter.PixelTexGenQRoundSgix; - var _PixelTexGenQFloorSgix = OpenTK.Graphics.ES30.TextureMagFilter.PixelTexGenQFloorSgix; -} -static void Test_TextureMinFilter_38057() { - var _Nearest = OpenTK.Graphics.ES30.TextureMinFilter.Nearest; - var _Linear = OpenTK.Graphics.ES30.TextureMinFilter.Linear; - var _NearestMipmapNearest = OpenTK.Graphics.ES30.TextureMinFilter.NearestMipmapNearest; - var _LinearMipmapNearest = OpenTK.Graphics.ES30.TextureMinFilter.LinearMipmapNearest; - var _NearestMipmapLinear = OpenTK.Graphics.ES30.TextureMinFilter.NearestMipmapLinear; - var _LinearMipmapLinear = OpenTK.Graphics.ES30.TextureMinFilter.LinearMipmapLinear; - var _Filter4Sgis = OpenTK.Graphics.ES30.TextureMinFilter.Filter4Sgis; - var _LinearClipmapLinearSgix = OpenTK.Graphics.ES30.TextureMinFilter.LinearClipmapLinearSgix; - var _PixelTexGenQCeilingSgix = OpenTK.Graphics.ES30.TextureMinFilter.PixelTexGenQCeilingSgix; - var _PixelTexGenQRoundSgix = OpenTK.Graphics.ES30.TextureMinFilter.PixelTexGenQRoundSgix; - var _PixelTexGenQFloorSgix = OpenTK.Graphics.ES30.TextureMinFilter.PixelTexGenQFloorSgix; - var _NearestClipmapNearestSgix = OpenTK.Graphics.ES30.TextureMinFilter.NearestClipmapNearestSgix; - var _NearestClipmapLinearSgix = OpenTK.Graphics.ES30.TextureMinFilter.NearestClipmapLinearSgix; - var _LinearClipmapNearestSgix = OpenTK.Graphics.ES30.TextureMinFilter.LinearClipmapNearestSgix; -} -static void Test_TextureParameterName_38058() { - var _TextureBorderColor = OpenTK.Graphics.ES30.TextureParameterName.TextureBorderColor; - var _TextureMagFilter = OpenTK.Graphics.ES30.TextureParameterName.TextureMagFilter; - var _TextureMinFilter = OpenTK.Graphics.ES30.TextureParameterName.TextureMinFilter; - var _TextureWrapS = OpenTK.Graphics.ES30.TextureParameterName.TextureWrapS; - var _TextureWrapT = OpenTK.Graphics.ES30.TextureParameterName.TextureWrapT; - var _TexturePriority = OpenTK.Graphics.ES30.TextureParameterName.TexturePriority; - var _TexturePriorityExt = OpenTK.Graphics.ES30.TextureParameterName.TexturePriorityExt; - var _TextureWrapR = OpenTK.Graphics.ES30.TextureParameterName.TextureWrapR; - var _TextureWrapRExt = OpenTK.Graphics.ES30.TextureParameterName.TextureWrapRExt; - var _TextureWrapROes = OpenTK.Graphics.ES30.TextureParameterName.TextureWrapROes; - var _DetailTextureLevelSgis = OpenTK.Graphics.ES30.TextureParameterName.DetailTextureLevelSgis; - var _DetailTextureModeSgis = OpenTK.Graphics.ES30.TextureParameterName.DetailTextureModeSgis; - var _ShadowAmbientSgix = OpenTK.Graphics.ES30.TextureParameterName.ShadowAmbientSgix; - var _DualTextureSelectSgis = OpenTK.Graphics.ES30.TextureParameterName.DualTextureSelectSgis; - var _QuadTextureSelectSgis = OpenTK.Graphics.ES30.TextureParameterName.QuadTextureSelectSgis; - var _TextureWrapQSgis = OpenTK.Graphics.ES30.TextureParameterName.TextureWrapQSgis; - var _TextureMinLod = OpenTK.Graphics.ES30.TextureParameterName.TextureMinLod; - var _TextureMaxLod = OpenTK.Graphics.ES30.TextureParameterName.TextureMaxLod; - var _TextureBaseLevel = OpenTK.Graphics.ES30.TextureParameterName.TextureBaseLevel; - var _TextureMaxLevel = OpenTK.Graphics.ES30.TextureParameterName.TextureMaxLevel; - var _TextureClipmapCenterSgix = OpenTK.Graphics.ES30.TextureParameterName.TextureClipmapCenterSgix; - var _TextureClipmapFrameSgix = OpenTK.Graphics.ES30.TextureParameterName.TextureClipmapFrameSgix; - var _TextureClipmapOffsetSgix = OpenTK.Graphics.ES30.TextureParameterName.TextureClipmapOffsetSgix; - var _TextureClipmapVirtualDepthSgix = OpenTK.Graphics.ES30.TextureParameterName.TextureClipmapVirtualDepthSgix; - var _TextureClipmapLodOffsetSgix = OpenTK.Graphics.ES30.TextureParameterName.TextureClipmapLodOffsetSgix; - var _TextureClipmapDepthSgix = OpenTK.Graphics.ES30.TextureParameterName.TextureClipmapDepthSgix; - var _PostTextureFilterBiasSgix = OpenTK.Graphics.ES30.TextureParameterName.PostTextureFilterBiasSgix; - var _PostTextureFilterScaleSgix = OpenTK.Graphics.ES30.TextureParameterName.PostTextureFilterScaleSgix; - var _TextureLodBiasSSgix = OpenTK.Graphics.ES30.TextureParameterName.TextureLodBiasSSgix; - var _TextureLodBiasTSgix = OpenTK.Graphics.ES30.TextureParameterName.TextureLodBiasTSgix; - var _TextureLodBiasRSgix = OpenTK.Graphics.ES30.TextureParameterName.TextureLodBiasRSgix; - var _GenerateMipmap = OpenTK.Graphics.ES30.TextureParameterName.GenerateMipmap; - var _GenerateMipmapSgis = OpenTK.Graphics.ES30.TextureParameterName.GenerateMipmapSgis; - var _TextureCompareSgix = OpenTK.Graphics.ES30.TextureParameterName.TextureCompareSgix; - var _TextureMaxClampSSgix = OpenTK.Graphics.ES30.TextureParameterName.TextureMaxClampSSgix; - var _TextureMaxClampTSgix = OpenTK.Graphics.ES30.TextureParameterName.TextureMaxClampTSgix; - var _TextureMaxClampRSgix = OpenTK.Graphics.ES30.TextureParameterName.TextureMaxClampRSgix; - var _TextureCompareMode = OpenTK.Graphics.ES30.TextureParameterName.TextureCompareMode; - var _TextureCompareFunc = OpenTK.Graphics.ES30.TextureParameterName.TextureCompareFunc; - var _TextureSwizzleR = OpenTK.Graphics.ES30.TextureParameterName.TextureSwizzleR; - var _TextureSwizzleG = OpenTK.Graphics.ES30.TextureParameterName.TextureSwizzleG; - var _TextureSwizzleB = OpenTK.Graphics.ES30.TextureParameterName.TextureSwizzleB; - var _TextureSwizzleA = OpenTK.Graphics.ES30.TextureParameterName.TextureSwizzleA; -} -static void Test_TextureTarget_38059() { - var _Texture1D = OpenTK.Graphics.ES30.TextureTarget.Texture1D; - var _Texture2D = OpenTK.Graphics.ES30.TextureTarget.Texture2D; - var _ProxyTexture1D = OpenTK.Graphics.ES30.TextureTarget.ProxyTexture1D; - var _ProxyTexture1DExt = OpenTK.Graphics.ES30.TextureTarget.ProxyTexture1DExt; - var _ProxyTexture2D = OpenTK.Graphics.ES30.TextureTarget.ProxyTexture2D; - var _ProxyTexture2DExt = OpenTK.Graphics.ES30.TextureTarget.ProxyTexture2DExt; - var _Texture3D = OpenTK.Graphics.ES30.TextureTarget.Texture3D; - var _Texture3DExt = OpenTK.Graphics.ES30.TextureTarget.Texture3DExt; - var _Texture3DOes = OpenTK.Graphics.ES30.TextureTarget.Texture3DOes; - var _ProxyTexture3D = OpenTK.Graphics.ES30.TextureTarget.ProxyTexture3D; - var _ProxyTexture3DExt = OpenTK.Graphics.ES30.TextureTarget.ProxyTexture3DExt; - var _DetailTexture2DSgis = OpenTK.Graphics.ES30.TextureTarget.DetailTexture2DSgis; - var _Texture4DSgis = OpenTK.Graphics.ES30.TextureTarget.Texture4DSgis; - var _ProxyTexture4DSgis = OpenTK.Graphics.ES30.TextureTarget.ProxyTexture4DSgis; - var _TextureMinLod = OpenTK.Graphics.ES30.TextureTarget.TextureMinLod; - var _TextureMinLodSgis = OpenTK.Graphics.ES30.TextureTarget.TextureMinLodSgis; - var _TextureMaxLod = OpenTK.Graphics.ES30.TextureTarget.TextureMaxLod; - var _TextureMaxLodSgis = OpenTK.Graphics.ES30.TextureTarget.TextureMaxLodSgis; - var _TextureBaseLevel = OpenTK.Graphics.ES30.TextureTarget.TextureBaseLevel; - var _TextureBaseLevelSgis = OpenTK.Graphics.ES30.TextureTarget.TextureBaseLevelSgis; - var _TextureMaxLevel = OpenTK.Graphics.ES30.TextureTarget.TextureMaxLevel; - var _TextureMaxLevelSgis = OpenTK.Graphics.ES30.TextureTarget.TextureMaxLevelSgis; - var _TextureCubeMap = OpenTK.Graphics.ES30.TextureTarget.TextureCubeMap; - var _TextureCubeMapPositiveX = OpenTK.Graphics.ES30.TextureTarget.TextureCubeMapPositiveX; - var _TextureCubeMapNegativeX = OpenTK.Graphics.ES30.TextureTarget.TextureCubeMapNegativeX; - var _TextureCubeMapPositiveY = OpenTK.Graphics.ES30.TextureTarget.TextureCubeMapPositiveY; - var _TextureCubeMapNegativeY = OpenTK.Graphics.ES30.TextureTarget.TextureCubeMapNegativeY; - var _TextureCubeMapPositiveZ = OpenTK.Graphics.ES30.TextureTarget.TextureCubeMapPositiveZ; - var _TextureCubeMapNegativeZ = OpenTK.Graphics.ES30.TextureTarget.TextureCubeMapNegativeZ; - var _Texture2DArray = OpenTK.Graphics.ES30.TextureTarget.Texture2DArray; -} -static void Test_TextureTarget2d_38060() { - var _Texture2D = OpenTK.Graphics.ES30.TextureTarget2d.Texture2D; - var _TextureCubeMapPositiveX = OpenTK.Graphics.ES30.TextureTarget2d.TextureCubeMapPositiveX; - var _TextureCubeMapNegativeX = OpenTK.Graphics.ES30.TextureTarget2d.TextureCubeMapNegativeX; - var _TextureCubeMapPositiveY = OpenTK.Graphics.ES30.TextureTarget2d.TextureCubeMapPositiveY; - var _TextureCubeMapNegativeY = OpenTK.Graphics.ES30.TextureTarget2d.TextureCubeMapNegativeY; - var _TextureCubeMapPositiveZ = OpenTK.Graphics.ES30.TextureTarget2d.TextureCubeMapPositiveZ; - var _TextureCubeMapNegativeZ = OpenTK.Graphics.ES30.TextureTarget2d.TextureCubeMapNegativeZ; -} -static void Test_TextureTarget3d_38061() { - var _Texture3D = OpenTK.Graphics.ES30.TextureTarget3d.Texture3D; - var _Texture3DOes = OpenTK.Graphics.ES30.TextureTarget3d.Texture3DOes; - var _Texture2DArray = OpenTK.Graphics.ES30.TextureTarget3d.Texture2DArray; -} -static void Test_TextureUnit_38062() { - var _Texture0 = OpenTK.Graphics.ES30.TextureUnit.Texture0; - var _Texture1 = OpenTK.Graphics.ES30.TextureUnit.Texture1; - var _Texture2 = OpenTK.Graphics.ES30.TextureUnit.Texture2; - var _Texture3 = OpenTK.Graphics.ES30.TextureUnit.Texture3; - var _Texture4 = OpenTK.Graphics.ES30.TextureUnit.Texture4; - var _Texture5 = OpenTK.Graphics.ES30.TextureUnit.Texture5; - var _Texture6 = OpenTK.Graphics.ES30.TextureUnit.Texture6; - var _Texture7 = OpenTK.Graphics.ES30.TextureUnit.Texture7; - var _Texture8 = OpenTK.Graphics.ES30.TextureUnit.Texture8; - var _Texture9 = OpenTK.Graphics.ES30.TextureUnit.Texture9; - var _Texture10 = OpenTK.Graphics.ES30.TextureUnit.Texture10; - var _Texture11 = OpenTK.Graphics.ES30.TextureUnit.Texture11; - var _Texture12 = OpenTK.Graphics.ES30.TextureUnit.Texture12; - var _Texture13 = OpenTK.Graphics.ES30.TextureUnit.Texture13; - var _Texture14 = OpenTK.Graphics.ES30.TextureUnit.Texture14; - var _Texture15 = OpenTK.Graphics.ES30.TextureUnit.Texture15; - var _Texture16 = OpenTK.Graphics.ES30.TextureUnit.Texture16; - var _Texture17 = OpenTK.Graphics.ES30.TextureUnit.Texture17; - var _Texture18 = OpenTK.Graphics.ES30.TextureUnit.Texture18; - var _Texture19 = OpenTK.Graphics.ES30.TextureUnit.Texture19; - var _Texture20 = OpenTK.Graphics.ES30.TextureUnit.Texture20; - var _Texture21 = OpenTK.Graphics.ES30.TextureUnit.Texture21; - var _Texture22 = OpenTK.Graphics.ES30.TextureUnit.Texture22; - var _Texture23 = OpenTK.Graphics.ES30.TextureUnit.Texture23; - var _Texture24 = OpenTK.Graphics.ES30.TextureUnit.Texture24; - var _Texture25 = OpenTK.Graphics.ES30.TextureUnit.Texture25; - var _Texture26 = OpenTK.Graphics.ES30.TextureUnit.Texture26; - var _Texture27 = OpenTK.Graphics.ES30.TextureUnit.Texture27; - var _Texture28 = OpenTK.Graphics.ES30.TextureUnit.Texture28; - var _Texture29 = OpenTK.Graphics.ES30.TextureUnit.Texture29; - var _Texture30 = OpenTK.Graphics.ES30.TextureUnit.Texture30; - var _Texture31 = OpenTK.Graphics.ES30.TextureUnit.Texture31; -} -static void Test_TextureWrapMode_38063() { - var _Clamp = OpenTK.Graphics.ES30.TextureWrapMode.Clamp; - var _Repeat = OpenTK.Graphics.ES30.TextureWrapMode.Repeat; - var _ClampToBorder = OpenTK.Graphics.ES30.TextureWrapMode.ClampToBorder; - var _ClampToBorderArb = OpenTK.Graphics.ES30.TextureWrapMode.ClampToBorderArb; - var _ClampToBorderNv = OpenTK.Graphics.ES30.TextureWrapMode.ClampToBorderNv; - var _ClampToBorderSgis = OpenTK.Graphics.ES30.TextureWrapMode.ClampToBorderSgis; - var _ClampToEdge = OpenTK.Graphics.ES30.TextureWrapMode.ClampToEdge; - var _ClampToEdgeSgis = OpenTK.Graphics.ES30.TextureWrapMode.ClampToEdgeSgis; -} -static void Test_TransformFeedbackMode_38064() { - var _InterleavedAttribs = OpenTK.Graphics.ES30.TransformFeedbackMode.InterleavedAttribs; - var _SeparateAttribs = OpenTK.Graphics.ES30.TransformFeedbackMode.SeparateAttribs; -} -static void Test_TransformFeedbackPrimitiveType_38065() { - var _Points = OpenTK.Graphics.ES30.TransformFeedbackPrimitiveType.Points; - var _Lines = OpenTK.Graphics.ES30.TransformFeedbackPrimitiveType.Lines; - var _Triangles = OpenTK.Graphics.ES30.TransformFeedbackPrimitiveType.Triangles; -} -static void Test_TransformFeedbackTarget_38066() { - var _TransformFeedback = OpenTK.Graphics.ES30.TransformFeedbackTarget.TransformFeedback; -} -static void Test_TransformFeedbackType_38067() { - var _Int = OpenTK.Graphics.ES30.TransformFeedbackType.Int; - var _UnsignedInt = OpenTK.Graphics.ES30.TransformFeedbackType.UnsignedInt; - var _Float = OpenTK.Graphics.ES30.TransformFeedbackType.Float; - var _FloatVec2 = OpenTK.Graphics.ES30.TransformFeedbackType.FloatVec2; - var _FloatVec3 = OpenTK.Graphics.ES30.TransformFeedbackType.FloatVec3; - var _FloatVec4 = OpenTK.Graphics.ES30.TransformFeedbackType.FloatVec4; - var _IntVec2 = OpenTK.Graphics.ES30.TransformFeedbackType.IntVec2; - var _IntVec3 = OpenTK.Graphics.ES30.TransformFeedbackType.IntVec3; - var _IntVec4 = OpenTK.Graphics.ES30.TransformFeedbackType.IntVec4; - var _FloatMat2 = OpenTK.Graphics.ES30.TransformFeedbackType.FloatMat2; - var _FloatMat3 = OpenTK.Graphics.ES30.TransformFeedbackType.FloatMat3; - var _FloatMat4 = OpenTK.Graphics.ES30.TransformFeedbackType.FloatMat4; - var _FloatMat2x3 = OpenTK.Graphics.ES30.TransformFeedbackType.FloatMat2x3; - var _FloatMat2x4 = OpenTK.Graphics.ES30.TransformFeedbackType.FloatMat2x4; - var _FloatMat3x2 = OpenTK.Graphics.ES30.TransformFeedbackType.FloatMat3x2; - var _FloatMat3x4 = OpenTK.Graphics.ES30.TransformFeedbackType.FloatMat3x4; - var _FloatMat4x2 = OpenTK.Graphics.ES30.TransformFeedbackType.FloatMat4x2; - var _FloatMat4x3 = OpenTK.Graphics.ES30.TransformFeedbackType.FloatMat4x3; - var _UnsignedIntVec2 = OpenTK.Graphics.ES30.TransformFeedbackType.UnsignedIntVec2; - var _UnsignedIntVec3 = OpenTK.Graphics.ES30.TransformFeedbackType.UnsignedIntVec3; - var _UnsignedIntVec4 = OpenTK.Graphics.ES30.TransformFeedbackType.UnsignedIntVec4; -} -static void Test_UseProgramStageMask_38068() { - var _VertexShaderBit = OpenTK.Graphics.ES30.UseProgramStageMask.VertexShaderBit; - var _VertexShaderBitExt = OpenTK.Graphics.ES30.UseProgramStageMask.VertexShaderBitExt; - var _FragmentShaderBit = OpenTK.Graphics.ES30.UseProgramStageMask.FragmentShaderBit; - var _FragmentShaderBitExt = OpenTK.Graphics.ES30.UseProgramStageMask.FragmentShaderBitExt; - var _GeometryShaderBit = OpenTK.Graphics.ES30.UseProgramStageMask.GeometryShaderBit; - var _GeometryShaderBitExt = OpenTK.Graphics.ES30.UseProgramStageMask.GeometryShaderBitExt; - var _TessControlShaderBit = OpenTK.Graphics.ES30.UseProgramStageMask.TessControlShaderBit; - var _TessControlShaderBitExt = OpenTK.Graphics.ES30.UseProgramStageMask.TessControlShaderBitExt; - var _TessEvaluationShaderBit = OpenTK.Graphics.ES30.UseProgramStageMask.TessEvaluationShaderBit; - var _TessEvaluationShaderBitExt = OpenTK.Graphics.ES30.UseProgramStageMask.TessEvaluationShaderBitExt; - var _ComputeShaderBit = OpenTK.Graphics.ES30.UseProgramStageMask.ComputeShaderBit; - var _AllShaderBits = OpenTK.Graphics.ES30.UseProgramStageMask.AllShaderBits; - var _AllShaderBitsExt = OpenTK.Graphics.ES30.UseProgramStageMask.AllShaderBitsExt; -} -static void Test_VertexAttribIntegerType_38069() { - var _Byte = OpenTK.Graphics.ES30.VertexAttribIntegerType.Byte; - var _UnsignedByte = OpenTK.Graphics.ES30.VertexAttribIntegerType.UnsignedByte; - var _Short = OpenTK.Graphics.ES30.VertexAttribIntegerType.Short; - var _UnsignedShort = OpenTK.Graphics.ES30.VertexAttribIntegerType.UnsignedShort; - var _Int = OpenTK.Graphics.ES30.VertexAttribIntegerType.Int; - var _UnsignedInt = OpenTK.Graphics.ES30.VertexAttribIntegerType.UnsignedInt; -} -static void Test_VertexAttribParameter_38070() { - var _VertexAttribArrayEnabled = OpenTK.Graphics.ES30.VertexAttribParameter.VertexAttribArrayEnabled; - var _VertexAttribArraySize = OpenTK.Graphics.ES30.VertexAttribParameter.VertexAttribArraySize; - var _VertexAttribArrayStride = OpenTK.Graphics.ES30.VertexAttribParameter.VertexAttribArrayStride; - var _VertexAttribArrayType = OpenTK.Graphics.ES30.VertexAttribParameter.VertexAttribArrayType; - var _CurrentVertexAttrib = OpenTK.Graphics.ES30.VertexAttribParameter.CurrentVertexAttrib; - var _VertexAttribArrayNormalized = OpenTK.Graphics.ES30.VertexAttribParameter.VertexAttribArrayNormalized; - var _VertexAttribArrayBufferBinding = OpenTK.Graphics.ES30.VertexAttribParameter.VertexAttribArrayBufferBinding; - var _VertexAttribArrayInteger = OpenTK.Graphics.ES30.VertexAttribParameter.VertexAttribArrayInteger; - var _VertexAttribArrayDivisor = OpenTK.Graphics.ES30.VertexAttribParameter.VertexAttribArrayDivisor; -} -static void Test_VertexAttribPointerParameter_38071() { - var _VertexAttribArrayPointer = OpenTK.Graphics.ES30.VertexAttribPointerParameter.VertexAttribArrayPointer; -} -static void Test_VertexAttribPointerType_38072() { - var _Byte = OpenTK.Graphics.ES30.VertexAttribPointerType.Byte; - var _UnsignedByte = OpenTK.Graphics.ES30.VertexAttribPointerType.UnsignedByte; - var _Short = OpenTK.Graphics.ES30.VertexAttribPointerType.Short; - var _UnsignedShort = OpenTK.Graphics.ES30.VertexAttribPointerType.UnsignedShort; - var _Int = OpenTK.Graphics.ES30.VertexAttribPointerType.Int; - var _UnsignedInt = OpenTK.Graphics.ES30.VertexAttribPointerType.UnsignedInt; - var _Float = OpenTK.Graphics.ES30.VertexAttribPointerType.Float; - var _HalfFloat = OpenTK.Graphics.ES30.VertexAttribPointerType.HalfFloat; - var _Fixed = OpenTK.Graphics.ES30.VertexAttribPointerType.Fixed; - var _UnsignedInt2101010Rev = OpenTK.Graphics.ES30.VertexAttribPointerType.UnsignedInt2101010Rev; - var _Int2101010Rev = OpenTK.Graphics.ES30.VertexAttribPointerType.Int2101010Rev; -} -static void Test_VertexPointerType_38073() { - var _Short = OpenTK.Graphics.ES30.VertexPointerType.Short; - var _Int = OpenTK.Graphics.ES30.VertexPointerType.Int; - var _Float = OpenTK.Graphics.ES30.VertexPointerType.Float; - var _Double = OpenTK.Graphics.ES30.VertexPointerType.Double; -} -static void Test_VivShaderBinary_38074() { - var _ShaderBinaryViv = OpenTK.Graphics.ES30.VivShaderBinary.ShaderBinaryViv; -} -static void Test_WaitSyncFlags_38075() { - var _None = OpenTK.Graphics.ES30.WaitSyncFlags.None; -} -static void Test_WaitSyncStatus_38076() { - var _AlreadySignaled = OpenTK.Graphics.ES30.WaitSyncStatus.AlreadySignaled; - var _AlreadySignaledApple = OpenTK.Graphics.ES30.WaitSyncStatus.AlreadySignaledApple; - var _TimeoutExpired = OpenTK.Graphics.ES30.WaitSyncStatus.TimeoutExpired; - var _TimeoutExpiredApple = OpenTK.Graphics.ES30.WaitSyncStatus.TimeoutExpiredApple; - var _ConditionSatisfied = OpenTK.Graphics.ES30.WaitSyncStatus.ConditionSatisfied; - var _ConditionSatisfiedApple = OpenTK.Graphics.ES30.WaitSyncStatus.ConditionSatisfiedApple; - var _WaitFailed = OpenTK.Graphics.ES30.WaitSyncStatus.WaitFailed; - var _WaitFailedApple = OpenTK.Graphics.ES30.WaitSyncStatus.WaitFailedApple; -} -static void Test_AccumOp_38077() { - var _Accum = OpenTK.Graphics.ES20.AccumOp.Accum; - var _Load = OpenTK.Graphics.ES20.AccumOp.Load; - var _Return = OpenTK.Graphics.ES20.AccumOp.Return; - var _Mult = OpenTK.Graphics.ES20.AccumOp.Mult; - var _Add = OpenTK.Graphics.ES20.AccumOp.Add; -} -static void Test_ActiveAttribType_38078() { - var _Float = OpenTK.Graphics.ES20.ActiveAttribType.Float; - var _FloatVec2 = OpenTK.Graphics.ES20.ActiveAttribType.FloatVec2; - var _FloatVec3 = OpenTK.Graphics.ES20.ActiveAttribType.FloatVec3; - var _FloatVec4 = OpenTK.Graphics.ES20.ActiveAttribType.FloatVec4; - var _FloatMat2 = OpenTK.Graphics.ES20.ActiveAttribType.FloatMat2; - var _FloatMat3 = OpenTK.Graphics.ES20.ActiveAttribType.FloatMat3; - var _FloatMat4 = OpenTK.Graphics.ES20.ActiveAttribType.FloatMat4; -} -static void Test_ActiveUniformType_38079() { - var _Int = OpenTK.Graphics.ES20.ActiveUniformType.Int; - var _Float = OpenTK.Graphics.ES20.ActiveUniformType.Float; - var _FloatVec2 = OpenTK.Graphics.ES20.ActiveUniformType.FloatVec2; - var _FloatVec3 = OpenTK.Graphics.ES20.ActiveUniformType.FloatVec3; - var _FloatVec4 = OpenTK.Graphics.ES20.ActiveUniformType.FloatVec4; - var _IntVec2 = OpenTK.Graphics.ES20.ActiveUniformType.IntVec2; - var _IntVec3 = OpenTK.Graphics.ES20.ActiveUniformType.IntVec3; - var _IntVec4 = OpenTK.Graphics.ES20.ActiveUniformType.IntVec4; - var _Bool = OpenTK.Graphics.ES20.ActiveUniformType.Bool; - var _BoolVec2 = OpenTK.Graphics.ES20.ActiveUniformType.BoolVec2; - var _BoolVec3 = OpenTK.Graphics.ES20.ActiveUniformType.BoolVec3; - var _BoolVec4 = OpenTK.Graphics.ES20.ActiveUniformType.BoolVec4; - var _FloatMat2 = OpenTK.Graphics.ES20.ActiveUniformType.FloatMat2; - var _FloatMat3 = OpenTK.Graphics.ES20.ActiveUniformType.FloatMat3; - var _FloatMat4 = OpenTK.Graphics.ES20.ActiveUniformType.FloatMat4; - var _Sampler2D = OpenTK.Graphics.ES20.ActiveUniformType.Sampler2D; - var _SamplerCube = OpenTK.Graphics.ES20.ActiveUniformType.SamplerCube; -} -static void Test_All_38080() { - var _False = OpenTK.Graphics.ES20.All.False; - var _LayoutDefaultIntel = OpenTK.Graphics.ES20.All.LayoutDefaultIntel; - var _NoError = OpenTK.Graphics.ES20.All.NoError; - var _None = OpenTK.Graphics.ES20.All.None; - var _NoneOes = OpenTK.Graphics.ES20.All.NoneOes; - var _Zero = OpenTK.Graphics.ES20.All.Zero; - var _Points = OpenTK.Graphics.ES20.All.Points; - var _PerfquerySingleContextIntel = OpenTK.Graphics.ES20.All.PerfquerySingleContextIntel; - var _ClientPixelStoreBit = OpenTK.Graphics.ES20.All.ClientPixelStoreBit; - var _ColorBufferBit0Qcom = OpenTK.Graphics.ES20.All.ColorBufferBit0Qcom; - var _ContextCoreProfileBit = OpenTK.Graphics.ES20.All.ContextCoreProfileBit; - var _ContextFlagForwardCompatibleBit = OpenTK.Graphics.ES20.All.ContextFlagForwardCompatibleBit; - var _CurrentBit = OpenTK.Graphics.ES20.All.CurrentBit; - var _PerfqueryGlobalContextIntel = OpenTK.Graphics.ES20.All.PerfqueryGlobalContextIntel; - var _QueryDepthPassEventBitAmd = OpenTK.Graphics.ES20.All.QueryDepthPassEventBitAmd; - var _SyncFlushCommandsBitApple = OpenTK.Graphics.ES20.All.SyncFlushCommandsBitApple; - var _VertexAttribArrayBarrierBit = OpenTK.Graphics.ES20.All.VertexAttribArrayBarrierBit; - var _VertexAttribArrayBarrierBitExt = OpenTK.Graphics.ES20.All.VertexAttribArrayBarrierBitExt; - var _VertexShaderBit = OpenTK.Graphics.ES20.All.VertexShaderBit; - var _VertexShaderBitExt = OpenTK.Graphics.ES20.All.VertexShaderBitExt; - var _ClientVertexArrayBit = OpenTK.Graphics.ES20.All.ClientVertexArrayBit; - var _ColorBufferBit1Qcom = OpenTK.Graphics.ES20.All.ColorBufferBit1Qcom; - var _ContextCompatibilityProfileBit = OpenTK.Graphics.ES20.All.ContextCompatibilityProfileBit; - var _ContextFlagDebugBit = OpenTK.Graphics.ES20.All.ContextFlagDebugBit; - var _ContextFlagDebugBitKhr = OpenTK.Graphics.ES20.All.ContextFlagDebugBitKhr; - var _ElementArrayBarrierBit = OpenTK.Graphics.ES20.All.ElementArrayBarrierBit; - var _ElementArrayBarrierBitExt = OpenTK.Graphics.ES20.All.ElementArrayBarrierBitExt; - var _FragmentShaderBit = OpenTK.Graphics.ES20.All.FragmentShaderBit; - var _FragmentShaderBitExt = OpenTK.Graphics.ES20.All.FragmentShaderBitExt; - var _PointBit = OpenTK.Graphics.ES20.All.PointBit; - var _QueryDepthFailEventBitAmd = OpenTK.Graphics.ES20.All.QueryDepthFailEventBitAmd; - var _ColorBufferBit2Qcom = OpenTK.Graphics.ES20.All.ColorBufferBit2Qcom; - var _ContextFlagRobustAccessBitArb = OpenTK.Graphics.ES20.All.ContextFlagRobustAccessBitArb; - var _GeometryShaderBit = OpenTK.Graphics.ES20.All.GeometryShaderBit; - var _GeometryShaderBitExt = OpenTK.Graphics.ES20.All.GeometryShaderBitExt; - var _LineBit = OpenTK.Graphics.ES20.All.LineBit; - var _QueryStencilFailEventBitAmd = OpenTK.Graphics.ES20.All.QueryStencilFailEventBitAmd; - var _UniformBarrierBit = OpenTK.Graphics.ES20.All.UniformBarrierBit; - var _UniformBarrierBitExt = OpenTK.Graphics.ES20.All.UniformBarrierBitExt; - var _ColorBufferBit3Qcom = OpenTK.Graphics.ES20.All.ColorBufferBit3Qcom; - var _PolygonBit = OpenTK.Graphics.ES20.All.PolygonBit; - var _QueryDepthBoundsFailEventBitAmd = OpenTK.Graphics.ES20.All.QueryDepthBoundsFailEventBitAmd; - var _TessControlShaderBit = OpenTK.Graphics.ES20.All.TessControlShaderBit; - var _TessControlShaderBitExt = OpenTK.Graphics.ES20.All.TessControlShaderBitExt; - var _TextureFetchBarrierBit = OpenTK.Graphics.ES20.All.TextureFetchBarrierBit; - var _TextureFetchBarrierBitExt = OpenTK.Graphics.ES20.All.TextureFetchBarrierBitExt; - var _ColorBufferBit4Qcom = OpenTK.Graphics.ES20.All.ColorBufferBit4Qcom; - var _PolygonStippleBit = OpenTK.Graphics.ES20.All.PolygonStippleBit; - var _ShaderGlobalAccessBarrierBitNv = OpenTK.Graphics.ES20.All.ShaderGlobalAccessBarrierBitNv; - var _TessEvaluationShaderBit = OpenTK.Graphics.ES20.All.TessEvaluationShaderBit; - var _TessEvaluationShaderBitExt = OpenTK.Graphics.ES20.All.TessEvaluationShaderBitExt; - var _ColorBufferBit5Qcom = OpenTK.Graphics.ES20.All.ColorBufferBit5Qcom; - var _ComputeShaderBit = OpenTK.Graphics.ES20.All.ComputeShaderBit; - var _PixelModeBit = OpenTK.Graphics.ES20.All.PixelModeBit; - var _ShaderImageAccessBarrierBit = OpenTK.Graphics.ES20.All.ShaderImageAccessBarrierBit; - var _ShaderImageAccessBarrierBitExt = OpenTK.Graphics.ES20.All.ShaderImageAccessBarrierBitExt; - var _ColorBufferBit6Qcom = OpenTK.Graphics.ES20.All.ColorBufferBit6Qcom; - var _CommandBarrierBit = OpenTK.Graphics.ES20.All.CommandBarrierBit; - var _CommandBarrierBitExt = OpenTK.Graphics.ES20.All.CommandBarrierBitExt; - var _LightingBit = OpenTK.Graphics.ES20.All.LightingBit; - var _ColorBufferBit7Qcom = OpenTK.Graphics.ES20.All.ColorBufferBit7Qcom; - var _FogBit = OpenTK.Graphics.ES20.All.FogBit; - var _PixelBufferBarrierBit = OpenTK.Graphics.ES20.All.PixelBufferBarrierBit; - var _PixelBufferBarrierBitExt = OpenTK.Graphics.ES20.All.PixelBufferBarrierBitExt; - var _DepthBufferBit = OpenTK.Graphics.ES20.All.DepthBufferBit; - var _DepthBufferBit0Qcom = OpenTK.Graphics.ES20.All.DepthBufferBit0Qcom; - var _TextureUpdateBarrierBit = OpenTK.Graphics.ES20.All.TextureUpdateBarrierBit; - var _TextureUpdateBarrierBitExt = OpenTK.Graphics.ES20.All.TextureUpdateBarrierBitExt; - var _AccumBufferBit = OpenTK.Graphics.ES20.All.AccumBufferBit; - var _BufferUpdateBarrierBit = OpenTK.Graphics.ES20.All.BufferUpdateBarrierBit; - var _BufferUpdateBarrierBitExt = OpenTK.Graphics.ES20.All.BufferUpdateBarrierBitExt; - var _DepthBufferBit1Qcom = OpenTK.Graphics.ES20.All.DepthBufferBit1Qcom; - var _DepthBufferBit2Qcom = OpenTK.Graphics.ES20.All.DepthBufferBit2Qcom; - var _FramebufferBarrierBit = OpenTK.Graphics.ES20.All.FramebufferBarrierBit; - var _FramebufferBarrierBitExt = OpenTK.Graphics.ES20.All.FramebufferBarrierBitExt; - var _StencilBufferBit = OpenTK.Graphics.ES20.All.StencilBufferBit; - var _DepthBufferBit3Qcom = OpenTK.Graphics.ES20.All.DepthBufferBit3Qcom; - var _TransformFeedbackBarrierBit = OpenTK.Graphics.ES20.All.TransformFeedbackBarrierBit; - var _TransformFeedbackBarrierBitExt = OpenTK.Graphics.ES20.All.TransformFeedbackBarrierBitExt; - var _ViewportBit = OpenTK.Graphics.ES20.All.ViewportBit; - var _AtomicCounterBarrierBit = OpenTK.Graphics.ES20.All.AtomicCounterBarrierBit; - var _AtomicCounterBarrierBitExt = OpenTK.Graphics.ES20.All.AtomicCounterBarrierBitExt; - var _DepthBufferBit4Qcom = OpenTK.Graphics.ES20.All.DepthBufferBit4Qcom; - var _TransformBit = OpenTK.Graphics.ES20.All.TransformBit; - var _DepthBufferBit5Qcom = OpenTK.Graphics.ES20.All.DepthBufferBit5Qcom; - var _EnableBit = OpenTK.Graphics.ES20.All.EnableBit; - var _ShaderStorageBarrierBit = OpenTK.Graphics.ES20.All.ShaderStorageBarrierBit; - var _ClientMappedBufferBarrierBit = OpenTK.Graphics.ES20.All.ClientMappedBufferBarrierBit; - var _ColorBufferBit = OpenTK.Graphics.ES20.All.ColorBufferBit; - var _DepthBufferBit6Qcom = OpenTK.Graphics.ES20.All.DepthBufferBit6Qcom; - var _CoverageBufferBitNv = OpenTK.Graphics.ES20.All.CoverageBufferBitNv; - var _DepthBufferBit7Qcom = OpenTK.Graphics.ES20.All.DepthBufferBit7Qcom; - var _HintBit = OpenTK.Graphics.ES20.All.HintBit; - var _QueryBufferBarrierBit = OpenTK.Graphics.ES20.All.QueryBufferBarrierBit; - var _MapReadBit = OpenTK.Graphics.ES20.All.MapReadBit; - var _MapReadBitExt = OpenTK.Graphics.ES20.All.MapReadBitExt; - var _Lines = OpenTK.Graphics.ES20.All.Lines; - var _EvalBit = OpenTK.Graphics.ES20.All.EvalBit; - var _StencilBufferBit0Qcom = OpenTK.Graphics.ES20.All.StencilBufferBit0Qcom; - var _LineLoop = OpenTK.Graphics.ES20.All.LineLoop; - var _MapWriteBit = OpenTK.Graphics.ES20.All.MapWriteBit; - var _MapWriteBitExt = OpenTK.Graphics.ES20.All.MapWriteBitExt; - var _ListBit = OpenTK.Graphics.ES20.All.ListBit; - var _StencilBufferBit1Qcom = OpenTK.Graphics.ES20.All.StencilBufferBit1Qcom; - var _LineStrip = OpenTK.Graphics.ES20.All.LineStrip; - var _MapInvalidateRangeBit = OpenTK.Graphics.ES20.All.MapInvalidateRangeBit; - var _MapInvalidateRangeBitExt = OpenTK.Graphics.ES20.All.MapInvalidateRangeBitExt; - var _Triangles = OpenTK.Graphics.ES20.All.Triangles; - var _StencilBufferBit2Qcom = OpenTK.Graphics.ES20.All.StencilBufferBit2Qcom; - var _TextureBit = OpenTK.Graphics.ES20.All.TextureBit; - var _TriangleStrip = OpenTK.Graphics.ES20.All.TriangleStrip; - var _TriangleFan = OpenTK.Graphics.ES20.All.TriangleFan; - var _Quads = OpenTK.Graphics.ES20.All.Quads; - var _QuadsExt = OpenTK.Graphics.ES20.All.QuadsExt; - var _MapInvalidateBufferBit = OpenTK.Graphics.ES20.All.MapInvalidateBufferBit; - var _MapInvalidateBufferBitExt = OpenTK.Graphics.ES20.All.MapInvalidateBufferBitExt; - var _QuadStrip = OpenTK.Graphics.ES20.All.QuadStrip; - var _ScissorBit = OpenTK.Graphics.ES20.All.ScissorBit; - var _StencilBufferBit3Qcom = OpenTK.Graphics.ES20.All.StencilBufferBit3Qcom; - var _Polygon = OpenTK.Graphics.ES20.All.Polygon; - var _LinesAdjacency = OpenTK.Graphics.ES20.All.LinesAdjacency; - var _LinesAdjacencyArb = OpenTK.Graphics.ES20.All.LinesAdjacencyArb; - var _LinesAdjacencyExt = OpenTK.Graphics.ES20.All.LinesAdjacencyExt; - var _LineStripAdjacency = OpenTK.Graphics.ES20.All.LineStripAdjacency; - var _LineStripAdjacencyArb = OpenTK.Graphics.ES20.All.LineStripAdjacencyArb; - var _LineStripAdjacencyExt = OpenTK.Graphics.ES20.All.LineStripAdjacencyExt; - var _TrianglesAdjacency = OpenTK.Graphics.ES20.All.TrianglesAdjacency; - var _TrianglesAdjacencyArb = OpenTK.Graphics.ES20.All.TrianglesAdjacencyArb; - var _TrianglesAdjacencyExt = OpenTK.Graphics.ES20.All.TrianglesAdjacencyExt; - var _TriangleStripAdjacency = OpenTK.Graphics.ES20.All.TriangleStripAdjacency; - var _TriangleStripAdjacencyArb = OpenTK.Graphics.ES20.All.TriangleStripAdjacencyArb; - var _TriangleStripAdjacencyExt = OpenTK.Graphics.ES20.All.TriangleStripAdjacencyExt; - var _Patches = OpenTK.Graphics.ES20.All.Patches; - var _PatchesExt = OpenTK.Graphics.ES20.All.PatchesExt; - var _MapFlushExplicitBit = OpenTK.Graphics.ES20.All.MapFlushExplicitBit; - var _MapFlushExplicitBitExt = OpenTK.Graphics.ES20.All.MapFlushExplicitBitExt; - var _StencilBufferBit4Qcom = OpenTK.Graphics.ES20.All.StencilBufferBit4Qcom; - var _MapUnsynchronizedBit = OpenTK.Graphics.ES20.All.MapUnsynchronizedBit; - var _MapUnsynchronizedBitExt = OpenTK.Graphics.ES20.All.MapUnsynchronizedBitExt; - var _StencilBufferBit5Qcom = OpenTK.Graphics.ES20.All.StencilBufferBit5Qcom; - var _MapPersistentBit = OpenTK.Graphics.ES20.All.MapPersistentBit; - var _StencilBufferBit6Qcom = OpenTK.Graphics.ES20.All.StencilBufferBit6Qcom; - var _MapCoherentBit = OpenTK.Graphics.ES20.All.MapCoherentBit; - var _StencilBufferBit7Qcom = OpenTK.Graphics.ES20.All.StencilBufferBit7Qcom; - var _Accum = OpenTK.Graphics.ES20.All.Accum; - var _DynamicStorageBit = OpenTK.Graphics.ES20.All.DynamicStorageBit; - var _MultisampleBufferBit0Qcom = OpenTK.Graphics.ES20.All.MultisampleBufferBit0Qcom; - var _Load = OpenTK.Graphics.ES20.All.Load; - var _Return = OpenTK.Graphics.ES20.All.Return; - var _Mult = OpenTK.Graphics.ES20.All.Mult; - var _Add = OpenTK.Graphics.ES20.All.Add; - var _ClientStorageBit = OpenTK.Graphics.ES20.All.ClientStorageBit; - var _Never = OpenTK.Graphics.ES20.All.Never; - var _MultisampleBufferBit1Qcom = OpenTK.Graphics.ES20.All.MultisampleBufferBit1Qcom; - var _Less = OpenTK.Graphics.ES20.All.Less; - var _Equal = OpenTK.Graphics.ES20.All.Equal; - var _Lequal = OpenTK.Graphics.ES20.All.Lequal; - var _Greater = OpenTK.Graphics.ES20.All.Greater; - var _Notequal = OpenTK.Graphics.ES20.All.Notequal; - var _Gequal = OpenTK.Graphics.ES20.All.Gequal; - var _Always = OpenTK.Graphics.ES20.All.Always; - var _SrcColor = OpenTK.Graphics.ES20.All.SrcColor; - var _OneMinusSrcColor = OpenTK.Graphics.ES20.All.OneMinusSrcColor; - var _SrcAlpha = OpenTK.Graphics.ES20.All.SrcAlpha; - var _OneMinusSrcAlpha = OpenTK.Graphics.ES20.All.OneMinusSrcAlpha; - var _DstAlpha = OpenTK.Graphics.ES20.All.DstAlpha; - var _OneMinusDstAlpha = OpenTK.Graphics.ES20.All.OneMinusDstAlpha; - var _DstColor = OpenTK.Graphics.ES20.All.DstColor; - var _OneMinusDstColor = OpenTK.Graphics.ES20.All.OneMinusDstColor; - var _SrcAlphaSaturate = OpenTK.Graphics.ES20.All.SrcAlphaSaturate; - var _FrontLeft = OpenTK.Graphics.ES20.All.FrontLeft; - var _MultisampleBufferBit2Qcom = OpenTK.Graphics.ES20.All.MultisampleBufferBit2Qcom; - var _FrontRight = OpenTK.Graphics.ES20.All.FrontRight; - var _BackLeft = OpenTK.Graphics.ES20.All.BackLeft; - var _BackRight = OpenTK.Graphics.ES20.All.BackRight; - var _Front = OpenTK.Graphics.ES20.All.Front; - var _Back = OpenTK.Graphics.ES20.All.Back; - var _Left = OpenTK.Graphics.ES20.All.Left; - var _Right = OpenTK.Graphics.ES20.All.Right; - var _FrontAndBack = OpenTK.Graphics.ES20.All.FrontAndBack; - var _Aux0 = OpenTK.Graphics.ES20.All.Aux0; - var _Aux1 = OpenTK.Graphics.ES20.All.Aux1; - var _Aux2 = OpenTK.Graphics.ES20.All.Aux2; - var _Aux3 = OpenTK.Graphics.ES20.All.Aux3; - var _InvalidEnum = OpenTK.Graphics.ES20.All.InvalidEnum; - var _InvalidValue = OpenTK.Graphics.ES20.All.InvalidValue; - var _InvalidOperation = OpenTK.Graphics.ES20.All.InvalidOperation; - var _StackOverflow = OpenTK.Graphics.ES20.All.StackOverflow; - var _StackOverflowKhr = OpenTK.Graphics.ES20.All.StackOverflowKhr; - var _StackUnderflow = OpenTK.Graphics.ES20.All.StackUnderflow; - var _StackUnderflowKhr = OpenTK.Graphics.ES20.All.StackUnderflowKhr; - var _OutOfMemory = OpenTK.Graphics.ES20.All.OutOfMemory; - var _InvalidFramebufferOperation = OpenTK.Graphics.ES20.All.InvalidFramebufferOperation; - var _InvalidFramebufferOperationExt = OpenTK.Graphics.ES20.All.InvalidFramebufferOperationExt; - var _InvalidFramebufferOperationOes = OpenTK.Graphics.ES20.All.InvalidFramebufferOperationOes; - var _Gl2D = OpenTK.Graphics.ES20.All.Gl2D; - var _Gl3D = OpenTK.Graphics.ES20.All.Gl3D; - var _Gl3DColor = OpenTK.Graphics.ES20.All.Gl3DColor; - var _Gl3DColorTexture = OpenTK.Graphics.ES20.All.Gl3DColorTexture; - var _Gl4DColorTexture = OpenTK.Graphics.ES20.All.Gl4DColorTexture; - var _PassThroughToken = OpenTK.Graphics.ES20.All.PassThroughToken; - var _PointToken = OpenTK.Graphics.ES20.All.PointToken; - var _LineToken = OpenTK.Graphics.ES20.All.LineToken; - var _PolygonToken = OpenTK.Graphics.ES20.All.PolygonToken; - var _BitmapToken = OpenTK.Graphics.ES20.All.BitmapToken; - var _DrawPixelToken = OpenTK.Graphics.ES20.All.DrawPixelToken; - var _CopyPixelToken = OpenTK.Graphics.ES20.All.CopyPixelToken; - var _LineResetToken = OpenTK.Graphics.ES20.All.LineResetToken; - var _Exp = OpenTK.Graphics.ES20.All.Exp; - var _MultisampleBufferBit3Qcom = OpenTK.Graphics.ES20.All.MultisampleBufferBit3Qcom; - var _Exp2 = OpenTK.Graphics.ES20.All.Exp2; - var _Cw = OpenTK.Graphics.ES20.All.Cw; - var _Ccw = OpenTK.Graphics.ES20.All.Ccw; - var _Coeff = OpenTK.Graphics.ES20.All.Coeff; - var _Order = OpenTK.Graphics.ES20.All.Order; - var _Domain = OpenTK.Graphics.ES20.All.Domain; - var _CurrentColor = OpenTK.Graphics.ES20.All.CurrentColor; - var _CurrentIndex = OpenTK.Graphics.ES20.All.CurrentIndex; - var _CurrentNormal = OpenTK.Graphics.ES20.All.CurrentNormal; - var _CurrentTextureCoords = OpenTK.Graphics.ES20.All.CurrentTextureCoords; - var _CurrentRasterColor = OpenTK.Graphics.ES20.All.CurrentRasterColor; - var _CurrentRasterIndex = OpenTK.Graphics.ES20.All.CurrentRasterIndex; - var _CurrentRasterTextureCoords = OpenTK.Graphics.ES20.All.CurrentRasterTextureCoords; - var _CurrentRasterPosition = OpenTK.Graphics.ES20.All.CurrentRasterPosition; - var _CurrentRasterPositionValid = OpenTK.Graphics.ES20.All.CurrentRasterPositionValid; - var _CurrentRasterDistance = OpenTK.Graphics.ES20.All.CurrentRasterDistance; - var _PointSmooth = OpenTK.Graphics.ES20.All.PointSmooth; - var _PointSize = OpenTK.Graphics.ES20.All.PointSize; - var _PointSizeRange = OpenTK.Graphics.ES20.All.PointSizeRange; - var _SmoothPointSizeRange = OpenTK.Graphics.ES20.All.SmoothPointSizeRange; - var _PointSizeGranularity = OpenTK.Graphics.ES20.All.PointSizeGranularity; - var _SmoothPointSizeGranularity = OpenTK.Graphics.ES20.All.SmoothPointSizeGranularity; - var _LineSmooth = OpenTK.Graphics.ES20.All.LineSmooth; - var _LineWidth = OpenTK.Graphics.ES20.All.LineWidth; - var _LineWidthRange = OpenTK.Graphics.ES20.All.LineWidthRange; - var _SmoothLineWidthRange = OpenTK.Graphics.ES20.All.SmoothLineWidthRange; - var _LineWidthGranularity = OpenTK.Graphics.ES20.All.LineWidthGranularity; - var _SmoothLineWidthGranularity = OpenTK.Graphics.ES20.All.SmoothLineWidthGranularity; - var _LineStipple = OpenTK.Graphics.ES20.All.LineStipple; - var _LineStipplePattern = OpenTK.Graphics.ES20.All.LineStipplePattern; - var _LineStippleRepeat = OpenTK.Graphics.ES20.All.LineStippleRepeat; - var _ListMode = OpenTK.Graphics.ES20.All.ListMode; - var _MaxListNesting = OpenTK.Graphics.ES20.All.MaxListNesting; - var _ListBase = OpenTK.Graphics.ES20.All.ListBase; - var _ListIndex = OpenTK.Graphics.ES20.All.ListIndex; - var _PolygonMode = OpenTK.Graphics.ES20.All.PolygonMode; - var _PolygonSmooth = OpenTK.Graphics.ES20.All.PolygonSmooth; - var _PolygonStipple = OpenTK.Graphics.ES20.All.PolygonStipple; - var _EdgeFlag = OpenTK.Graphics.ES20.All.EdgeFlag; - var _CullFace = OpenTK.Graphics.ES20.All.CullFace; - var _CullFaceMode = OpenTK.Graphics.ES20.All.CullFaceMode; - var _FrontFace = OpenTK.Graphics.ES20.All.FrontFace; - var _Lighting = OpenTK.Graphics.ES20.All.Lighting; - var _LightModelLocalViewer = OpenTK.Graphics.ES20.All.LightModelLocalViewer; - var _LightModelTwoSide = OpenTK.Graphics.ES20.All.LightModelTwoSide; - var _LightModelAmbient = OpenTK.Graphics.ES20.All.LightModelAmbient; - var _ShadeModel = OpenTK.Graphics.ES20.All.ShadeModel; - var _ColorMaterialFace = OpenTK.Graphics.ES20.All.ColorMaterialFace; - var _ColorMaterialParameter = OpenTK.Graphics.ES20.All.ColorMaterialParameter; - var _ColorMaterial = OpenTK.Graphics.ES20.All.ColorMaterial; - var _Fog = OpenTK.Graphics.ES20.All.Fog; - var _FogIndex = OpenTK.Graphics.ES20.All.FogIndex; - var _FogDensity = OpenTK.Graphics.ES20.All.FogDensity; - var _FogStart = OpenTK.Graphics.ES20.All.FogStart; - var _FogEnd = OpenTK.Graphics.ES20.All.FogEnd; - var _FogMode = OpenTK.Graphics.ES20.All.FogMode; - var _FogColor = OpenTK.Graphics.ES20.All.FogColor; - var _DepthRange = OpenTK.Graphics.ES20.All.DepthRange; - var _DepthTest = OpenTK.Graphics.ES20.All.DepthTest; - var _DepthWritemask = OpenTK.Graphics.ES20.All.DepthWritemask; - var _DepthClearValue = OpenTK.Graphics.ES20.All.DepthClearValue; - var _DepthFunc = OpenTK.Graphics.ES20.All.DepthFunc; - var _AccumClearValue = OpenTK.Graphics.ES20.All.AccumClearValue; - var _StencilTest = OpenTK.Graphics.ES20.All.StencilTest; - var _StencilClearValue = OpenTK.Graphics.ES20.All.StencilClearValue; - var _StencilFunc = OpenTK.Graphics.ES20.All.StencilFunc; - var _StencilValueMask = OpenTK.Graphics.ES20.All.StencilValueMask; - var _StencilFail = OpenTK.Graphics.ES20.All.StencilFail; - var _StencilPassDepthFail = OpenTK.Graphics.ES20.All.StencilPassDepthFail; - var _StencilPassDepthPass = OpenTK.Graphics.ES20.All.StencilPassDepthPass; - var _StencilRef = OpenTK.Graphics.ES20.All.StencilRef; - var _StencilWritemask = OpenTK.Graphics.ES20.All.StencilWritemask; - var _MatrixMode = OpenTK.Graphics.ES20.All.MatrixMode; - var _Normalize = OpenTK.Graphics.ES20.All.Normalize; - var _Viewport = OpenTK.Graphics.ES20.All.Viewport; - var _Modelview0StackDepthExt = OpenTK.Graphics.ES20.All.Modelview0StackDepthExt; - var _ModelviewStackDepth = OpenTK.Graphics.ES20.All.ModelviewStackDepth; - var _ProjectionStackDepth = OpenTK.Graphics.ES20.All.ProjectionStackDepth; - var _TextureStackDepth = OpenTK.Graphics.ES20.All.TextureStackDepth; - var _Modelview0MatrixExt = OpenTK.Graphics.ES20.All.Modelview0MatrixExt; - var _ModelviewMatrix = OpenTK.Graphics.ES20.All.ModelviewMatrix; - var _ProjectionMatrix = OpenTK.Graphics.ES20.All.ProjectionMatrix; - var _TextureMatrix = OpenTK.Graphics.ES20.All.TextureMatrix; - var _AttribStackDepth = OpenTK.Graphics.ES20.All.AttribStackDepth; - var _ClientAttribStackDepth = OpenTK.Graphics.ES20.All.ClientAttribStackDepth; - var _AlphaTest = OpenTK.Graphics.ES20.All.AlphaTest; - var _AlphaTestQcom = OpenTK.Graphics.ES20.All.AlphaTestQcom; - var _AlphaTestFunc = OpenTK.Graphics.ES20.All.AlphaTestFunc; - var _AlphaTestFuncQcom = OpenTK.Graphics.ES20.All.AlphaTestFuncQcom; - var _AlphaTestRef = OpenTK.Graphics.ES20.All.AlphaTestRef; - var _AlphaTestRefQcom = OpenTK.Graphics.ES20.All.AlphaTestRefQcom; - var _Dither = OpenTK.Graphics.ES20.All.Dither; - var _BlendDst = OpenTK.Graphics.ES20.All.BlendDst; - var _BlendSrc = OpenTK.Graphics.ES20.All.BlendSrc; - var _Blend = OpenTK.Graphics.ES20.All.Blend; - var _LogicOpMode = OpenTK.Graphics.ES20.All.LogicOpMode; - var _IndexLogicOp = OpenTK.Graphics.ES20.All.IndexLogicOp; - var _LogicOp = OpenTK.Graphics.ES20.All.LogicOp; - var _ColorLogicOp = OpenTK.Graphics.ES20.All.ColorLogicOp; - var _AuxBuffers = OpenTK.Graphics.ES20.All.AuxBuffers; - var _DrawBuffer = OpenTK.Graphics.ES20.All.DrawBuffer; - var _DrawBufferExt = OpenTK.Graphics.ES20.All.DrawBufferExt; - var _ReadBuffer = OpenTK.Graphics.ES20.All.ReadBuffer; - var _ReadBufferExt = OpenTK.Graphics.ES20.All.ReadBufferExt; - var _ReadBufferNv = OpenTK.Graphics.ES20.All.ReadBufferNv; - var _ScissorBox = OpenTK.Graphics.ES20.All.ScissorBox; - var _ScissorTest = OpenTK.Graphics.ES20.All.ScissorTest; - var _IndexClearValue = OpenTK.Graphics.ES20.All.IndexClearValue; - var _IndexWritemask = OpenTK.Graphics.ES20.All.IndexWritemask; - var _ColorClearValue = OpenTK.Graphics.ES20.All.ColorClearValue; - var _ColorWritemask = OpenTK.Graphics.ES20.All.ColorWritemask; - var _IndexMode = OpenTK.Graphics.ES20.All.IndexMode; - var _RgbaMode = OpenTK.Graphics.ES20.All.RgbaMode; - var _Doublebuffer = OpenTK.Graphics.ES20.All.Doublebuffer; - var _Stereo = OpenTK.Graphics.ES20.All.Stereo; - var _RenderMode = OpenTK.Graphics.ES20.All.RenderMode; - var _PerspectiveCorrectionHint = OpenTK.Graphics.ES20.All.PerspectiveCorrectionHint; - var _PointSmoothHint = OpenTK.Graphics.ES20.All.PointSmoothHint; - var _LineSmoothHint = OpenTK.Graphics.ES20.All.LineSmoothHint; - var _PolygonSmoothHint = OpenTK.Graphics.ES20.All.PolygonSmoothHint; - var _FogHint = OpenTK.Graphics.ES20.All.FogHint; - var _TextureGenS = OpenTK.Graphics.ES20.All.TextureGenS; - var _TextureGenT = OpenTK.Graphics.ES20.All.TextureGenT; - var _TextureGenR = OpenTK.Graphics.ES20.All.TextureGenR; - var _TextureGenQ = OpenTK.Graphics.ES20.All.TextureGenQ; - var _PixelMapIToI = OpenTK.Graphics.ES20.All.PixelMapIToI; - var _PixelMapSToS = OpenTK.Graphics.ES20.All.PixelMapSToS; - var _PixelMapIToR = OpenTK.Graphics.ES20.All.PixelMapIToR; - var _PixelMapIToG = OpenTK.Graphics.ES20.All.PixelMapIToG; - var _PixelMapIToB = OpenTK.Graphics.ES20.All.PixelMapIToB; - var _PixelMapIToA = OpenTK.Graphics.ES20.All.PixelMapIToA; - var _PixelMapRToR = OpenTK.Graphics.ES20.All.PixelMapRToR; - var _PixelMapGToG = OpenTK.Graphics.ES20.All.PixelMapGToG; - var _PixelMapBToB = OpenTK.Graphics.ES20.All.PixelMapBToB; - var _PixelMapAToA = OpenTK.Graphics.ES20.All.PixelMapAToA; - var _PixelMapIToISize = OpenTK.Graphics.ES20.All.PixelMapIToISize; - var _PixelMapSToSSize = OpenTK.Graphics.ES20.All.PixelMapSToSSize; - var _PixelMapIToRSize = OpenTK.Graphics.ES20.All.PixelMapIToRSize; - var _PixelMapIToGSize = OpenTK.Graphics.ES20.All.PixelMapIToGSize; - var _PixelMapIToBSize = OpenTK.Graphics.ES20.All.PixelMapIToBSize; - var _PixelMapIToASize = OpenTK.Graphics.ES20.All.PixelMapIToASize; - var _PixelMapRToRSize = OpenTK.Graphics.ES20.All.PixelMapRToRSize; - var _PixelMapGToGSize = OpenTK.Graphics.ES20.All.PixelMapGToGSize; - var _PixelMapBToBSize = OpenTK.Graphics.ES20.All.PixelMapBToBSize; - var _PixelMapAToASize = OpenTK.Graphics.ES20.All.PixelMapAToASize; - var _UnpackSwapBytes = OpenTK.Graphics.ES20.All.UnpackSwapBytes; - var _UnpackLsbFirst = OpenTK.Graphics.ES20.All.UnpackLsbFirst; - var _UnpackRowLength = OpenTK.Graphics.ES20.All.UnpackRowLength; - var _UnpackRowLengthExt = OpenTK.Graphics.ES20.All.UnpackRowLengthExt; - var _UnpackSkipRows = OpenTK.Graphics.ES20.All.UnpackSkipRows; - var _UnpackSkipRowsExt = OpenTK.Graphics.ES20.All.UnpackSkipRowsExt; - var _UnpackSkipPixels = OpenTK.Graphics.ES20.All.UnpackSkipPixels; - var _UnpackSkipPixelsExt = OpenTK.Graphics.ES20.All.UnpackSkipPixelsExt; - var _UnpackAlignment = OpenTK.Graphics.ES20.All.UnpackAlignment; - var _PackSwapBytes = OpenTK.Graphics.ES20.All.PackSwapBytes; - var _PackLsbFirst = OpenTK.Graphics.ES20.All.PackLsbFirst; - var _PackRowLength = OpenTK.Graphics.ES20.All.PackRowLength; - var _PackSkipRows = OpenTK.Graphics.ES20.All.PackSkipRows; - var _PackSkipPixels = OpenTK.Graphics.ES20.All.PackSkipPixels; - var _PackAlignment = OpenTK.Graphics.ES20.All.PackAlignment; - var _MapColor = OpenTK.Graphics.ES20.All.MapColor; - var _MapStencil = OpenTK.Graphics.ES20.All.MapStencil; - var _IndexShift = OpenTK.Graphics.ES20.All.IndexShift; - var _IndexOffset = OpenTK.Graphics.ES20.All.IndexOffset; - var _RedScale = OpenTK.Graphics.ES20.All.RedScale; - var _RedBias = OpenTK.Graphics.ES20.All.RedBias; - var _ZoomX = OpenTK.Graphics.ES20.All.ZoomX; - var _ZoomY = OpenTK.Graphics.ES20.All.ZoomY; - var _GreenScale = OpenTK.Graphics.ES20.All.GreenScale; - var _GreenBias = OpenTK.Graphics.ES20.All.GreenBias; - var _BlueScale = OpenTK.Graphics.ES20.All.BlueScale; - var _BlueBias = OpenTK.Graphics.ES20.All.BlueBias; - var _AlphaScale = OpenTK.Graphics.ES20.All.AlphaScale; - var _AlphaBias = OpenTK.Graphics.ES20.All.AlphaBias; - var _DepthScale = OpenTK.Graphics.ES20.All.DepthScale; - var _DepthBias = OpenTK.Graphics.ES20.All.DepthBias; - var _MaxEvalOrder = OpenTK.Graphics.ES20.All.MaxEvalOrder; - var _MaxLights = OpenTK.Graphics.ES20.All.MaxLights; - var _MaxClipDistances = OpenTK.Graphics.ES20.All.MaxClipDistances; - var _MaxClipPlanes = OpenTK.Graphics.ES20.All.MaxClipPlanes; - var _MaxTextureSize = OpenTK.Graphics.ES20.All.MaxTextureSize; - var _MaxPixelMapTable = OpenTK.Graphics.ES20.All.MaxPixelMapTable; - var _MaxAttribStackDepth = OpenTK.Graphics.ES20.All.MaxAttribStackDepth; - var _MaxModelviewStackDepth = OpenTK.Graphics.ES20.All.MaxModelviewStackDepth; - var _MaxNameStackDepth = OpenTK.Graphics.ES20.All.MaxNameStackDepth; - var _MaxProjectionStackDepth = OpenTK.Graphics.ES20.All.MaxProjectionStackDepth; - var _MaxTextureStackDepth = OpenTK.Graphics.ES20.All.MaxTextureStackDepth; - var _MaxViewportDims = OpenTK.Graphics.ES20.All.MaxViewportDims; - var _MaxClientAttribStackDepth = OpenTK.Graphics.ES20.All.MaxClientAttribStackDepth; - var _SubpixelBits = OpenTK.Graphics.ES20.All.SubpixelBits; - var _IndexBits = OpenTK.Graphics.ES20.All.IndexBits; - var _RedBits = OpenTK.Graphics.ES20.All.RedBits; - var _GreenBits = OpenTK.Graphics.ES20.All.GreenBits; - var _BlueBits = OpenTK.Graphics.ES20.All.BlueBits; - var _AlphaBits = OpenTK.Graphics.ES20.All.AlphaBits; - var _DepthBits = OpenTK.Graphics.ES20.All.DepthBits; - var _StencilBits = OpenTK.Graphics.ES20.All.StencilBits; - var _AccumRedBits = OpenTK.Graphics.ES20.All.AccumRedBits; - var _AccumGreenBits = OpenTK.Graphics.ES20.All.AccumGreenBits; - var _AccumBlueBits = OpenTK.Graphics.ES20.All.AccumBlueBits; - var _AccumAlphaBits = OpenTK.Graphics.ES20.All.AccumAlphaBits; - var _NameStackDepth = OpenTK.Graphics.ES20.All.NameStackDepth; - var _AutoNormal = OpenTK.Graphics.ES20.All.AutoNormal; - var _Map1Color4 = OpenTK.Graphics.ES20.All.Map1Color4; - var _Map1Index = OpenTK.Graphics.ES20.All.Map1Index; - var _Map1Normal = OpenTK.Graphics.ES20.All.Map1Normal; - var _Map1TextureCoord1 = OpenTK.Graphics.ES20.All.Map1TextureCoord1; - var _Map1TextureCoord2 = OpenTK.Graphics.ES20.All.Map1TextureCoord2; - var _Map1TextureCoord3 = OpenTK.Graphics.ES20.All.Map1TextureCoord3; - var _Map1TextureCoord4 = OpenTK.Graphics.ES20.All.Map1TextureCoord4; - var _Map1Vertex3 = OpenTK.Graphics.ES20.All.Map1Vertex3; - var _Map1Vertex4 = OpenTK.Graphics.ES20.All.Map1Vertex4; - var _Map2Color4 = OpenTK.Graphics.ES20.All.Map2Color4; - var _Map2Index = OpenTK.Graphics.ES20.All.Map2Index; - var _Map2Normal = OpenTK.Graphics.ES20.All.Map2Normal; - var _Map2TextureCoord1 = OpenTK.Graphics.ES20.All.Map2TextureCoord1; - var _Map2TextureCoord2 = OpenTK.Graphics.ES20.All.Map2TextureCoord2; - var _Map2TextureCoord3 = OpenTK.Graphics.ES20.All.Map2TextureCoord3; - var _Map2TextureCoord4 = OpenTK.Graphics.ES20.All.Map2TextureCoord4; - var _Map2Vertex3 = OpenTK.Graphics.ES20.All.Map2Vertex3; - var _Map2Vertex4 = OpenTK.Graphics.ES20.All.Map2Vertex4; - var _Map1GridDomain = OpenTK.Graphics.ES20.All.Map1GridDomain; - var _Map1GridSegments = OpenTK.Graphics.ES20.All.Map1GridSegments; - var _Map2GridDomain = OpenTK.Graphics.ES20.All.Map2GridDomain; - var _Map2GridSegments = OpenTK.Graphics.ES20.All.Map2GridSegments; - var _Texture1D = OpenTK.Graphics.ES20.All.Texture1D; - var _Texture2D = OpenTK.Graphics.ES20.All.Texture2D; - var _FeedbackBufferPointer = OpenTK.Graphics.ES20.All.FeedbackBufferPointer; - var _FeedbackBufferSize = OpenTK.Graphics.ES20.All.FeedbackBufferSize; - var _FeedbackBufferType = OpenTK.Graphics.ES20.All.FeedbackBufferType; - var _SelectionBufferPointer = OpenTK.Graphics.ES20.All.SelectionBufferPointer; - var _SelectionBufferSize = OpenTK.Graphics.ES20.All.SelectionBufferSize; - var _TextureWidth = OpenTK.Graphics.ES20.All.TextureWidth; - var _MultisampleBufferBit4Qcom = OpenTK.Graphics.ES20.All.MultisampleBufferBit4Qcom; - var _TextureHeight = OpenTK.Graphics.ES20.All.TextureHeight; - var _TextureComponents = OpenTK.Graphics.ES20.All.TextureComponents; - var _TextureInternalFormat = OpenTK.Graphics.ES20.All.TextureInternalFormat; - var _TextureBorderColor = OpenTK.Graphics.ES20.All.TextureBorderColor; - var _TextureBorderColorExt = OpenTK.Graphics.ES20.All.TextureBorderColorExt; - var _TextureBorderColorNv = OpenTK.Graphics.ES20.All.TextureBorderColorNv; - var _TextureBorder = OpenTK.Graphics.ES20.All.TextureBorder; - var _DontCare = OpenTK.Graphics.ES20.All.DontCare; - var _Fastest = OpenTK.Graphics.ES20.All.Fastest; - var _Nicest = OpenTK.Graphics.ES20.All.Nicest; - var _Ambient = OpenTK.Graphics.ES20.All.Ambient; - var _Diffuse = OpenTK.Graphics.ES20.All.Diffuse; - var _Specular = OpenTK.Graphics.ES20.All.Specular; - var _Position = OpenTK.Graphics.ES20.All.Position; - var _SpotDirection = OpenTK.Graphics.ES20.All.SpotDirection; - var _SpotExponent = OpenTK.Graphics.ES20.All.SpotExponent; - var _SpotCutoff = OpenTK.Graphics.ES20.All.SpotCutoff; - var _ConstantAttenuation = OpenTK.Graphics.ES20.All.ConstantAttenuation; - var _LinearAttenuation = OpenTK.Graphics.ES20.All.LinearAttenuation; - var _QuadraticAttenuation = OpenTK.Graphics.ES20.All.QuadraticAttenuation; - var _Compile = OpenTK.Graphics.ES20.All.Compile; - var _CompileAndExecute = OpenTK.Graphics.ES20.All.CompileAndExecute; - var _Byte = OpenTK.Graphics.ES20.All.Byte; - var _UnsignedByte = OpenTK.Graphics.ES20.All.UnsignedByte; - var _Short = OpenTK.Graphics.ES20.All.Short; - var _UnsignedShort = OpenTK.Graphics.ES20.All.UnsignedShort; - var _Int = OpenTK.Graphics.ES20.All.Int; - var _UnsignedInt = OpenTK.Graphics.ES20.All.UnsignedInt; - var _Float = OpenTK.Graphics.ES20.All.Float; - var _Gl2Bytes = OpenTK.Graphics.ES20.All.Gl2Bytes; - var _Gl3Bytes = OpenTK.Graphics.ES20.All.Gl3Bytes; - var _Gl4Bytes = OpenTK.Graphics.ES20.All.Gl4Bytes; - var _Double = OpenTK.Graphics.ES20.All.Double; - var _Fixed = OpenTK.Graphics.ES20.All.Fixed; - var _Clear = OpenTK.Graphics.ES20.All.Clear; - var _And = OpenTK.Graphics.ES20.All.And; - var _AndReverse = OpenTK.Graphics.ES20.All.AndReverse; - var _Copy = OpenTK.Graphics.ES20.All.Copy; - var _AndInverted = OpenTK.Graphics.ES20.All.AndInverted; - var _Noop = OpenTK.Graphics.ES20.All.Noop; - var _Xor = OpenTK.Graphics.ES20.All.Xor; - var _XorNv = OpenTK.Graphics.ES20.All.XorNv; - var _Or = OpenTK.Graphics.ES20.All.Or; - var _Nor = OpenTK.Graphics.ES20.All.Nor; - var _Equiv = OpenTK.Graphics.ES20.All.Equiv; - var _Invert = OpenTK.Graphics.ES20.All.Invert; - var _OrReverse = OpenTK.Graphics.ES20.All.OrReverse; - var _CopyInverted = OpenTK.Graphics.ES20.All.CopyInverted; - var _OrInverted = OpenTK.Graphics.ES20.All.OrInverted; - var _Nand = OpenTK.Graphics.ES20.All.Nand; - var _Set = OpenTK.Graphics.ES20.All.Set; - var _Emission = OpenTK.Graphics.ES20.All.Emission; - var _Shininess = OpenTK.Graphics.ES20.All.Shininess; - var _AmbientAndDiffuse = OpenTK.Graphics.ES20.All.AmbientAndDiffuse; - var _ColorIndexes = OpenTK.Graphics.ES20.All.ColorIndexes; - var _Modelview = OpenTK.Graphics.ES20.All.Modelview; - var _Modelview0Ext = OpenTK.Graphics.ES20.All.Modelview0Ext; - var _Projection = OpenTK.Graphics.ES20.All.Projection; - var _Texture = OpenTK.Graphics.ES20.All.Texture; - var _Color = OpenTK.Graphics.ES20.All.Color; - var _ColorExt = OpenTK.Graphics.ES20.All.ColorExt; - var _Depth = OpenTK.Graphics.ES20.All.Depth; - var _DepthExt = OpenTK.Graphics.ES20.All.DepthExt; - var _Stencil = OpenTK.Graphics.ES20.All.Stencil; - var _StencilExt = OpenTK.Graphics.ES20.All.StencilExt; - var _ColorIndex = OpenTK.Graphics.ES20.All.ColorIndex; - var _StencilIndex = OpenTK.Graphics.ES20.All.StencilIndex; - var _StencilIndexOes = OpenTK.Graphics.ES20.All.StencilIndexOes; - var _DepthComponent = OpenTK.Graphics.ES20.All.DepthComponent; - var _Red = OpenTK.Graphics.ES20.All.Red; - var _RedExt = OpenTK.Graphics.ES20.All.RedExt; - var _RedNv = OpenTK.Graphics.ES20.All.RedNv; - var _Green = OpenTK.Graphics.ES20.All.Green; - var _GreenNv = OpenTK.Graphics.ES20.All.GreenNv; - var _Blue = OpenTK.Graphics.ES20.All.Blue; - var _BlueNv = OpenTK.Graphics.ES20.All.BlueNv; - var _Alpha = OpenTK.Graphics.ES20.All.Alpha; - var _Rgb = OpenTK.Graphics.ES20.All.Rgb; - var _Rgba = OpenTK.Graphics.ES20.All.Rgba; - var _Luminance = OpenTK.Graphics.ES20.All.Luminance; - var _LuminanceAlpha = OpenTK.Graphics.ES20.All.LuminanceAlpha; - var _Bitmap = OpenTK.Graphics.ES20.All.Bitmap; - var _PreferDoublebufferHintPgi = OpenTK.Graphics.ES20.All.PreferDoublebufferHintPgi; - var _ConserveMemoryHintPgi = OpenTK.Graphics.ES20.All.ConserveMemoryHintPgi; - var _ReclaimMemoryHintPgi = OpenTK.Graphics.ES20.All.ReclaimMemoryHintPgi; - var _NativeGraphicsBeginHintPgi = OpenTK.Graphics.ES20.All.NativeGraphicsBeginHintPgi; - var _NativeGraphicsEndHintPgi = OpenTK.Graphics.ES20.All.NativeGraphicsEndHintPgi; - var _AlwaysFastHintPgi = OpenTK.Graphics.ES20.All.AlwaysFastHintPgi; - var _AlwaysSoftHintPgi = OpenTK.Graphics.ES20.All.AlwaysSoftHintPgi; - var _AllowDrawObjHintPgi = OpenTK.Graphics.ES20.All.AllowDrawObjHintPgi; - var _AllowDrawWinHintPgi = OpenTK.Graphics.ES20.All.AllowDrawWinHintPgi; - var _AllowDrawFrgHintPgi = OpenTK.Graphics.ES20.All.AllowDrawFrgHintPgi; - var _AllowDrawMemHintPgi = OpenTK.Graphics.ES20.All.AllowDrawMemHintPgi; - var _StrictDepthfuncHintPgi = OpenTK.Graphics.ES20.All.StrictDepthfuncHintPgi; - var _StrictLightingHintPgi = OpenTK.Graphics.ES20.All.StrictLightingHintPgi; - var _StrictScissorHintPgi = OpenTK.Graphics.ES20.All.StrictScissorHintPgi; - var _FullStippleHintPgi = OpenTK.Graphics.ES20.All.FullStippleHintPgi; - var _ClipNearHintPgi = OpenTK.Graphics.ES20.All.ClipNearHintPgi; - var _ClipFarHintPgi = OpenTK.Graphics.ES20.All.ClipFarHintPgi; - var _WideLineHintPgi = OpenTK.Graphics.ES20.All.WideLineHintPgi; - var _BackNormalsHintPgi = OpenTK.Graphics.ES20.All.BackNormalsHintPgi; - var _VertexDataHintPgi = OpenTK.Graphics.ES20.All.VertexDataHintPgi; - var _VertexConsistentHintPgi = OpenTK.Graphics.ES20.All.VertexConsistentHintPgi; - var _MaterialSideHintPgi = OpenTK.Graphics.ES20.All.MaterialSideHintPgi; - var _MaxVertexHintPgi = OpenTK.Graphics.ES20.All.MaxVertexHintPgi; - var _Point = OpenTK.Graphics.ES20.All.Point; - var _Line = OpenTK.Graphics.ES20.All.Line; - var _Fill = OpenTK.Graphics.ES20.All.Fill; - var _Render = OpenTK.Graphics.ES20.All.Render; - var _Feedback = OpenTK.Graphics.ES20.All.Feedback; - var _Select = OpenTK.Graphics.ES20.All.Select; - var _Flat = OpenTK.Graphics.ES20.All.Flat; - var _Smooth = OpenTK.Graphics.ES20.All.Smooth; - var _Keep = OpenTK.Graphics.ES20.All.Keep; - var _Replace = OpenTK.Graphics.ES20.All.Replace; - var _Incr = OpenTK.Graphics.ES20.All.Incr; - var _Decr = OpenTK.Graphics.ES20.All.Decr; - var _Vendor = OpenTK.Graphics.ES20.All.Vendor; - var _Renderer = OpenTK.Graphics.ES20.All.Renderer; - var _Version = OpenTK.Graphics.ES20.All.Version; - var _Extensions = OpenTK.Graphics.ES20.All.Extensions; - var _S = OpenTK.Graphics.ES20.All.S; - var _MultisampleBit = OpenTK.Graphics.ES20.All.MultisampleBit; - var _MultisampleBit3Dfx = OpenTK.Graphics.ES20.All.MultisampleBit3Dfx; - var _MultisampleBitArb = OpenTK.Graphics.ES20.All.MultisampleBitArb; - var _MultisampleBitExt = OpenTK.Graphics.ES20.All.MultisampleBitExt; - var _MultisampleBufferBit5Qcom = OpenTK.Graphics.ES20.All.MultisampleBufferBit5Qcom; - var _T = OpenTK.Graphics.ES20.All.T; - var _R = OpenTK.Graphics.ES20.All.R; - var _Q = OpenTK.Graphics.ES20.All.Q; - var _Modulate = OpenTK.Graphics.ES20.All.Modulate; - var _Decal = OpenTK.Graphics.ES20.All.Decal; - var _TextureEnvMode = OpenTK.Graphics.ES20.All.TextureEnvMode; - var _TextureEnvColor = OpenTK.Graphics.ES20.All.TextureEnvColor; - var _TextureEnv = OpenTK.Graphics.ES20.All.TextureEnv; - var _EyeLinear = OpenTK.Graphics.ES20.All.EyeLinear; - var _ObjectLinear = OpenTK.Graphics.ES20.All.ObjectLinear; - var _SphereMap = OpenTK.Graphics.ES20.All.SphereMap; - var _TextureGenMode = OpenTK.Graphics.ES20.All.TextureGenMode; - var _ObjectPlane = OpenTK.Graphics.ES20.All.ObjectPlane; - var _EyePlane = OpenTK.Graphics.ES20.All.EyePlane; - var _Nearest = OpenTK.Graphics.ES20.All.Nearest; - var _Linear = OpenTK.Graphics.ES20.All.Linear; - var _NearestMipmapNearest = OpenTK.Graphics.ES20.All.NearestMipmapNearest; - var _LinearMipmapNearest = OpenTK.Graphics.ES20.All.LinearMipmapNearest; - var _NearestMipmapLinear = OpenTK.Graphics.ES20.All.NearestMipmapLinear; - var _LinearMipmapLinear = OpenTK.Graphics.ES20.All.LinearMipmapLinear; - var _TextureMagFilter = OpenTK.Graphics.ES20.All.TextureMagFilter; - var _TextureMinFilter = OpenTK.Graphics.ES20.All.TextureMinFilter; - var _TextureWrapS = OpenTK.Graphics.ES20.All.TextureWrapS; - var _TextureWrapT = OpenTK.Graphics.ES20.All.TextureWrapT; - var _Clamp = OpenTK.Graphics.ES20.All.Clamp; - var _Repeat = OpenTK.Graphics.ES20.All.Repeat; - var _PolygonOffsetUnits = OpenTK.Graphics.ES20.All.PolygonOffsetUnits; - var _PolygonOffsetPoint = OpenTK.Graphics.ES20.All.PolygonOffsetPoint; - var _PolygonOffsetLine = OpenTK.Graphics.ES20.All.PolygonOffsetLine; - var _R3G3B2 = OpenTK.Graphics.ES20.All.R3G3B2; - var _V2f = OpenTK.Graphics.ES20.All.V2f; - var _V3f = OpenTK.Graphics.ES20.All.V3f; - var _C4ubV2f = OpenTK.Graphics.ES20.All.C4ubV2f; - var _C4ubV3f = OpenTK.Graphics.ES20.All.C4ubV3f; - var _C3fV3f = OpenTK.Graphics.ES20.All.C3fV3f; - var _N3fV3f = OpenTK.Graphics.ES20.All.N3fV3f; - var _C4fN3fV3f = OpenTK.Graphics.ES20.All.C4fN3fV3f; - var _T2fV3f = OpenTK.Graphics.ES20.All.T2fV3f; - var _T4fV4f = OpenTK.Graphics.ES20.All.T4fV4f; - var _T2fC4ubV3f = OpenTK.Graphics.ES20.All.T2fC4ubV3f; - var _T2fC3fV3f = OpenTK.Graphics.ES20.All.T2fC3fV3f; - var _T2fN3fV3f = OpenTK.Graphics.ES20.All.T2fN3fV3f; - var _T2fC4fN3fV3f = OpenTK.Graphics.ES20.All.T2fC4fN3fV3f; - var _T4fC4fN3fV4f = OpenTK.Graphics.ES20.All.T4fC4fN3fV4f; - var _ClipDistance0 = OpenTK.Graphics.ES20.All.ClipDistance0; - var _ClipPlane0 = OpenTK.Graphics.ES20.All.ClipPlane0; - var _ClipDistance1 = OpenTK.Graphics.ES20.All.ClipDistance1; - var _ClipPlane1 = OpenTK.Graphics.ES20.All.ClipPlane1; - var _ClipDistance2 = OpenTK.Graphics.ES20.All.ClipDistance2; - var _ClipPlane2 = OpenTK.Graphics.ES20.All.ClipPlane2; - var _ClipDistance3 = OpenTK.Graphics.ES20.All.ClipDistance3; - var _ClipPlane3 = OpenTK.Graphics.ES20.All.ClipPlane3; - var _ClipDistance4 = OpenTK.Graphics.ES20.All.ClipDistance4; - var _ClipPlane4 = OpenTK.Graphics.ES20.All.ClipPlane4; - var _ClipDistance5 = OpenTK.Graphics.ES20.All.ClipDistance5; - var _ClipPlane5 = OpenTK.Graphics.ES20.All.ClipPlane5; - var _ClipDistance6 = OpenTK.Graphics.ES20.All.ClipDistance6; - var _ClipDistance7 = OpenTK.Graphics.ES20.All.ClipDistance7; - var _Light0 = OpenTK.Graphics.ES20.All.Light0; - var _MultisampleBufferBit6Qcom = OpenTK.Graphics.ES20.All.MultisampleBufferBit6Qcom; - var _Light1 = OpenTK.Graphics.ES20.All.Light1; - var _Light2 = OpenTK.Graphics.ES20.All.Light2; - var _Light3 = OpenTK.Graphics.ES20.All.Light3; - var _Light4 = OpenTK.Graphics.ES20.All.Light4; - var _Light5 = OpenTK.Graphics.ES20.All.Light5; - var _Light6 = OpenTK.Graphics.ES20.All.Light6; - var _Light7 = OpenTK.Graphics.ES20.All.Light7; - var _AbgrExt = OpenTK.Graphics.ES20.All.AbgrExt; - var _MultisampleBufferBit7Qcom = OpenTK.Graphics.ES20.All.MultisampleBufferBit7Qcom; - var _ConstantColor = OpenTK.Graphics.ES20.All.ConstantColor; - var _ConstantColorExt = OpenTK.Graphics.ES20.All.ConstantColorExt; - var _OneMinusConstantColor = OpenTK.Graphics.ES20.All.OneMinusConstantColor; - var _OneMinusConstantColorExt = OpenTK.Graphics.ES20.All.OneMinusConstantColorExt; - var _ConstantAlpha = OpenTK.Graphics.ES20.All.ConstantAlpha; - var _ConstantAlphaExt = OpenTK.Graphics.ES20.All.ConstantAlphaExt; - var _OneMinusConstantAlpha = OpenTK.Graphics.ES20.All.OneMinusConstantAlpha; - var _OneMinusConstantAlphaExt = OpenTK.Graphics.ES20.All.OneMinusConstantAlphaExt; - var _BlendColor = OpenTK.Graphics.ES20.All.BlendColor; - var _BlendColorExt = OpenTK.Graphics.ES20.All.BlendColorExt; - var _FuncAdd = OpenTK.Graphics.ES20.All.FuncAdd; - var _FuncAddExt = OpenTK.Graphics.ES20.All.FuncAddExt; - var _Min = OpenTK.Graphics.ES20.All.Min; - var _MinExt = OpenTK.Graphics.ES20.All.MinExt; - var _Max = OpenTK.Graphics.ES20.All.Max; - var _MaxExt = OpenTK.Graphics.ES20.All.MaxExt; - var _BlendEquation = OpenTK.Graphics.ES20.All.BlendEquation; - var _BlendEquationExt = OpenTK.Graphics.ES20.All.BlendEquationExt; - var _BlendEquationRgb = OpenTK.Graphics.ES20.All.BlendEquationRgb; - var _FuncSubtract = OpenTK.Graphics.ES20.All.FuncSubtract; - var _FuncSubtractExt = OpenTK.Graphics.ES20.All.FuncSubtractExt; - var _FuncReverseSubtract = OpenTK.Graphics.ES20.All.FuncReverseSubtract; - var _FuncReverseSubtractExt = OpenTK.Graphics.ES20.All.FuncReverseSubtractExt; - var _CmykExt = OpenTK.Graphics.ES20.All.CmykExt; - var _CmykaExt = OpenTK.Graphics.ES20.All.CmykaExt; - var _PackCmykHintExt = OpenTK.Graphics.ES20.All.PackCmykHintExt; - var _UnpackCmykHintExt = OpenTK.Graphics.ES20.All.UnpackCmykHintExt; - var _Convolution1D = OpenTK.Graphics.ES20.All.Convolution1D; - var _Convolution1DExt = OpenTK.Graphics.ES20.All.Convolution1DExt; - var _Convolution2D = OpenTK.Graphics.ES20.All.Convolution2D; - var _Convolution2DExt = OpenTK.Graphics.ES20.All.Convolution2DExt; - var _Separable2D = OpenTK.Graphics.ES20.All.Separable2D; - var _Separable2DExt = OpenTK.Graphics.ES20.All.Separable2DExt; - var _ConvolutionBorderMode = OpenTK.Graphics.ES20.All.ConvolutionBorderMode; - var _ConvolutionBorderModeExt = OpenTK.Graphics.ES20.All.ConvolutionBorderModeExt; - var _ConvolutionFilterScale = OpenTK.Graphics.ES20.All.ConvolutionFilterScale; - var _ConvolutionFilterScaleExt = OpenTK.Graphics.ES20.All.ConvolutionFilterScaleExt; - var _ConvolutionFilterBias = OpenTK.Graphics.ES20.All.ConvolutionFilterBias; - var _ConvolutionFilterBiasExt = OpenTK.Graphics.ES20.All.ConvolutionFilterBiasExt; - var _Reduce = OpenTK.Graphics.ES20.All.Reduce; - var _ReduceExt = OpenTK.Graphics.ES20.All.ReduceExt; - var _ConvolutionFormatExt = OpenTK.Graphics.ES20.All.ConvolutionFormatExt; - var _ConvolutionWidthExt = OpenTK.Graphics.ES20.All.ConvolutionWidthExt; - var _ConvolutionHeightExt = OpenTK.Graphics.ES20.All.ConvolutionHeightExt; - var _MaxConvolutionWidthExt = OpenTK.Graphics.ES20.All.MaxConvolutionWidthExt; - var _MaxConvolutionHeightExt = OpenTK.Graphics.ES20.All.MaxConvolutionHeightExt; - var _PostConvolutionRedScale = OpenTK.Graphics.ES20.All.PostConvolutionRedScale; - var _PostConvolutionRedScaleExt = OpenTK.Graphics.ES20.All.PostConvolutionRedScaleExt; - var _PostConvolutionGreenScale = OpenTK.Graphics.ES20.All.PostConvolutionGreenScale; - var _PostConvolutionGreenScaleExt = OpenTK.Graphics.ES20.All.PostConvolutionGreenScaleExt; - var _PostConvolutionBlueScale = OpenTK.Graphics.ES20.All.PostConvolutionBlueScale; - var _PostConvolutionBlueScaleExt = OpenTK.Graphics.ES20.All.PostConvolutionBlueScaleExt; - var _PostConvolutionAlphaScale = OpenTK.Graphics.ES20.All.PostConvolutionAlphaScale; - var _PostConvolutionAlphaScaleExt = OpenTK.Graphics.ES20.All.PostConvolutionAlphaScaleExt; - var _PostConvolutionRedBias = OpenTK.Graphics.ES20.All.PostConvolutionRedBias; - var _PostConvolutionRedBiasExt = OpenTK.Graphics.ES20.All.PostConvolutionRedBiasExt; - var _PostConvolutionGreenBias = OpenTK.Graphics.ES20.All.PostConvolutionGreenBias; - var _PostConvolutionGreenBiasExt = OpenTK.Graphics.ES20.All.PostConvolutionGreenBiasExt; - var _PostConvolutionBlueBias = OpenTK.Graphics.ES20.All.PostConvolutionBlueBias; - var _PostConvolutionBlueBiasExt = OpenTK.Graphics.ES20.All.PostConvolutionBlueBiasExt; - var _PostConvolutionAlphaBias = OpenTK.Graphics.ES20.All.PostConvolutionAlphaBias; - var _PostConvolutionAlphaBiasExt = OpenTK.Graphics.ES20.All.PostConvolutionAlphaBiasExt; - var _Histogram = OpenTK.Graphics.ES20.All.Histogram; - var _HistogramExt = OpenTK.Graphics.ES20.All.HistogramExt; - var _ProxyHistogram = OpenTK.Graphics.ES20.All.ProxyHistogram; - var _ProxyHistogramExt = OpenTK.Graphics.ES20.All.ProxyHistogramExt; - var _HistogramWidthExt = OpenTK.Graphics.ES20.All.HistogramWidthExt; - var _HistogramFormatExt = OpenTK.Graphics.ES20.All.HistogramFormatExt; - var _HistogramRedSizeExt = OpenTK.Graphics.ES20.All.HistogramRedSizeExt; - var _HistogramGreenSizeExt = OpenTK.Graphics.ES20.All.HistogramGreenSizeExt; - var _HistogramBlueSizeExt = OpenTK.Graphics.ES20.All.HistogramBlueSizeExt; - var _HistogramAlphaSizeExt = OpenTK.Graphics.ES20.All.HistogramAlphaSizeExt; - var _HistogramLuminanceSizeExt = OpenTK.Graphics.ES20.All.HistogramLuminanceSizeExt; - var _HistogramSinkExt = OpenTK.Graphics.ES20.All.HistogramSinkExt; - var _Minmax = OpenTK.Graphics.ES20.All.Minmax; - var _MinmaxExt = OpenTK.Graphics.ES20.All.MinmaxExt; - var _MinmaxFormat = OpenTK.Graphics.ES20.All.MinmaxFormat; - var _MinmaxFormatExt = OpenTK.Graphics.ES20.All.MinmaxFormatExt; - var _MinmaxSink = OpenTK.Graphics.ES20.All.MinmaxSink; - var _MinmaxSinkExt = OpenTK.Graphics.ES20.All.MinmaxSinkExt; - var _TableTooLarge = OpenTK.Graphics.ES20.All.TableTooLarge; - var _TableTooLargeExt = OpenTK.Graphics.ES20.All.TableTooLargeExt; - var _UnsignedByte332 = OpenTK.Graphics.ES20.All.UnsignedByte332; - var _UnsignedByte332Ext = OpenTK.Graphics.ES20.All.UnsignedByte332Ext; - var _UnsignedShort4444 = OpenTK.Graphics.ES20.All.UnsignedShort4444; - var _UnsignedShort4444Ext = OpenTK.Graphics.ES20.All.UnsignedShort4444Ext; - var _UnsignedShort5551 = OpenTK.Graphics.ES20.All.UnsignedShort5551; - var _UnsignedShort5551Ext = OpenTK.Graphics.ES20.All.UnsignedShort5551Ext; - var _UnsignedInt8888 = OpenTK.Graphics.ES20.All.UnsignedInt8888; - var _UnsignedInt8888Ext = OpenTK.Graphics.ES20.All.UnsignedInt8888Ext; - var _UnsignedInt1010102 = OpenTK.Graphics.ES20.All.UnsignedInt1010102; - var _UnsignedInt1010102Ext = OpenTK.Graphics.ES20.All.UnsignedInt1010102Ext; - var _PolygonOffsetFill = OpenTK.Graphics.ES20.All.PolygonOffsetFill; - var _PolygonOffsetFactor = OpenTK.Graphics.ES20.All.PolygonOffsetFactor; - var _PolygonOffsetBiasExt = OpenTK.Graphics.ES20.All.PolygonOffsetBiasExt; - var _RescaleNormalExt = OpenTK.Graphics.ES20.All.RescaleNormalExt; - var _Alpha4 = OpenTK.Graphics.ES20.All.Alpha4; - var _Alpha8 = OpenTK.Graphics.ES20.All.Alpha8; - var _Alpha8Ext = OpenTK.Graphics.ES20.All.Alpha8Ext; - var _Alpha8Oes = OpenTK.Graphics.ES20.All.Alpha8Oes; - var _Alpha12 = OpenTK.Graphics.ES20.All.Alpha12; - var _Alpha16 = OpenTK.Graphics.ES20.All.Alpha16; - var _Luminance4 = OpenTK.Graphics.ES20.All.Luminance4; - var _Luminance8 = OpenTK.Graphics.ES20.All.Luminance8; - var _Luminance8Ext = OpenTK.Graphics.ES20.All.Luminance8Ext; - var _Luminance8Oes = OpenTK.Graphics.ES20.All.Luminance8Oes; - var _Luminance12 = OpenTK.Graphics.ES20.All.Luminance12; - var _Luminance16 = OpenTK.Graphics.ES20.All.Luminance16; - var _Luminance4Alpha4 = OpenTK.Graphics.ES20.All.Luminance4Alpha4; - var _Luminance4Alpha4Oes = OpenTK.Graphics.ES20.All.Luminance4Alpha4Oes; - var _Luminance6Alpha2 = OpenTK.Graphics.ES20.All.Luminance6Alpha2; - var _Luminance8Alpha8 = OpenTK.Graphics.ES20.All.Luminance8Alpha8; - var _Luminance8Alpha8Ext = OpenTK.Graphics.ES20.All.Luminance8Alpha8Ext; - var _Luminance8Alpha8Oes = OpenTK.Graphics.ES20.All.Luminance8Alpha8Oes; - var _Luminance12Alpha4 = OpenTK.Graphics.ES20.All.Luminance12Alpha4; - var _Luminance12Alpha12 = OpenTK.Graphics.ES20.All.Luminance12Alpha12; - var _Luminance16Alpha16 = OpenTK.Graphics.ES20.All.Luminance16Alpha16; - var _Intensity = OpenTK.Graphics.ES20.All.Intensity; - var _Intensity4 = OpenTK.Graphics.ES20.All.Intensity4; - var _Intensity8 = OpenTK.Graphics.ES20.All.Intensity8; - var _Intensity12 = OpenTK.Graphics.ES20.All.Intensity12; - var _Intensity16 = OpenTK.Graphics.ES20.All.Intensity16; - var _Rgb2Ext = OpenTK.Graphics.ES20.All.Rgb2Ext; - var _Rgb4 = OpenTK.Graphics.ES20.All.Rgb4; - var _Rgb5 = OpenTK.Graphics.ES20.All.Rgb5; - var _Rgb8 = OpenTK.Graphics.ES20.All.Rgb8; - var _Rgb8Oes = OpenTK.Graphics.ES20.All.Rgb8Oes; - var _Rgb10 = OpenTK.Graphics.ES20.All.Rgb10; - var _Rgb10Ext = OpenTK.Graphics.ES20.All.Rgb10Ext; - var _Rgb12 = OpenTK.Graphics.ES20.All.Rgb12; - var _Rgb16 = OpenTK.Graphics.ES20.All.Rgb16; - var _Rgba2 = OpenTK.Graphics.ES20.All.Rgba2; - var _Rgba4Oes = OpenTK.Graphics.ES20.All.Rgba4Oes; - var _Rgba4 = OpenTK.Graphics.ES20.All.Rgba4; - var _Rgb5A1 = OpenTK.Graphics.ES20.All.Rgb5A1; - var _Rgb5A1Oes = OpenTK.Graphics.ES20.All.Rgb5A1Oes; - var _Rgba8 = OpenTK.Graphics.ES20.All.Rgba8; - var _Rgba8Oes = OpenTK.Graphics.ES20.All.Rgba8Oes; - var _Rgb10A2 = OpenTK.Graphics.ES20.All.Rgb10A2; - var _Rgb10A2Ext = OpenTK.Graphics.ES20.All.Rgb10A2Ext; - var _Rgba12 = OpenTK.Graphics.ES20.All.Rgba12; - var _Rgba16 = OpenTK.Graphics.ES20.All.Rgba16; - var _TextureRedSize = OpenTK.Graphics.ES20.All.TextureRedSize; - var _TextureGreenSize = OpenTK.Graphics.ES20.All.TextureGreenSize; - var _TextureBlueSize = OpenTK.Graphics.ES20.All.TextureBlueSize; - var _TextureAlphaSize = OpenTK.Graphics.ES20.All.TextureAlphaSize; - var _TextureLuminanceSize = OpenTK.Graphics.ES20.All.TextureLuminanceSize; - var _TextureIntensitySize = OpenTK.Graphics.ES20.All.TextureIntensitySize; - var _ReplaceExt = OpenTK.Graphics.ES20.All.ReplaceExt; - var _ProxyTexture1D = OpenTK.Graphics.ES20.All.ProxyTexture1D; - var _ProxyTexture1DExt = OpenTK.Graphics.ES20.All.ProxyTexture1DExt; - var _ProxyTexture2D = OpenTK.Graphics.ES20.All.ProxyTexture2D; - var _ProxyTexture2DExt = OpenTK.Graphics.ES20.All.ProxyTexture2DExt; - var _TextureTooLargeExt = OpenTK.Graphics.ES20.All.TextureTooLargeExt; - var _TexturePriority = OpenTK.Graphics.ES20.All.TexturePriority; - var _TexturePriorityExt = OpenTK.Graphics.ES20.All.TexturePriorityExt; - var _TextureResident = OpenTK.Graphics.ES20.All.TextureResident; - var _TextureBinding1D = OpenTK.Graphics.ES20.All.TextureBinding1D; - var _TextureBinding2D = OpenTK.Graphics.ES20.All.TextureBinding2D; - var _Texture3DBindingExt = OpenTK.Graphics.ES20.All.Texture3DBindingExt; - var _TextureBinding3D = OpenTK.Graphics.ES20.All.TextureBinding3D; - var _TextureBinding3DOes = OpenTK.Graphics.ES20.All.TextureBinding3DOes; - var _PackSkipImages = OpenTK.Graphics.ES20.All.PackSkipImages; - var _PackSkipImagesExt = OpenTK.Graphics.ES20.All.PackSkipImagesExt; - var _PackImageHeight = OpenTK.Graphics.ES20.All.PackImageHeight; - var _PackImageHeightExt = OpenTK.Graphics.ES20.All.PackImageHeightExt; - var _UnpackSkipImages = OpenTK.Graphics.ES20.All.UnpackSkipImages; - var _UnpackSkipImagesExt = OpenTK.Graphics.ES20.All.UnpackSkipImagesExt; - var _UnpackImageHeight = OpenTK.Graphics.ES20.All.UnpackImageHeight; - var _UnpackImageHeightExt = OpenTK.Graphics.ES20.All.UnpackImageHeightExt; - var _Texture3D = OpenTK.Graphics.ES20.All.Texture3D; - var _Texture3DExt = OpenTK.Graphics.ES20.All.Texture3DExt; - var _Texture3DOes = OpenTK.Graphics.ES20.All.Texture3DOes; - var _ProxyTexture3D = OpenTK.Graphics.ES20.All.ProxyTexture3D; - var _ProxyTexture3DExt = OpenTK.Graphics.ES20.All.ProxyTexture3DExt; - var _TextureDepthExt = OpenTK.Graphics.ES20.All.TextureDepthExt; - var _TextureWrapR = OpenTK.Graphics.ES20.All.TextureWrapR; - var _TextureWrapRExt = OpenTK.Graphics.ES20.All.TextureWrapRExt; - var _TextureWrapROes = OpenTK.Graphics.ES20.All.TextureWrapROes; - var _Max3DTextureSizeExt = OpenTK.Graphics.ES20.All.Max3DTextureSizeExt; - var _Max3DTextureSizeOes = OpenTK.Graphics.ES20.All.Max3DTextureSizeOes; - var _VertexArray = OpenTK.Graphics.ES20.All.VertexArray; - var _VertexArrayKhr = OpenTK.Graphics.ES20.All.VertexArrayKhr; - var _NormalArray = OpenTK.Graphics.ES20.All.NormalArray; - var _ColorArray = OpenTK.Graphics.ES20.All.ColorArray; - var _IndexArray = OpenTK.Graphics.ES20.All.IndexArray; - var _TextureCoordArray = OpenTK.Graphics.ES20.All.TextureCoordArray; - var _EdgeFlagArray = OpenTK.Graphics.ES20.All.EdgeFlagArray; - var _VertexArraySize = OpenTK.Graphics.ES20.All.VertexArraySize; - var _VertexArrayType = OpenTK.Graphics.ES20.All.VertexArrayType; - var _VertexArrayStride = OpenTK.Graphics.ES20.All.VertexArrayStride; - var _VertexArrayCountExt = OpenTK.Graphics.ES20.All.VertexArrayCountExt; - var _NormalArrayType = OpenTK.Graphics.ES20.All.NormalArrayType; - var _NormalArrayStride = OpenTK.Graphics.ES20.All.NormalArrayStride; - var _NormalArrayCountExt = OpenTK.Graphics.ES20.All.NormalArrayCountExt; - var _ColorArraySize = OpenTK.Graphics.ES20.All.ColorArraySize; - var _ColorArrayType = OpenTK.Graphics.ES20.All.ColorArrayType; - var _ColorArrayStride = OpenTK.Graphics.ES20.All.ColorArrayStride; - var _ColorArrayCountExt = OpenTK.Graphics.ES20.All.ColorArrayCountExt; - var _IndexArrayType = OpenTK.Graphics.ES20.All.IndexArrayType; - var _IndexArrayStride = OpenTK.Graphics.ES20.All.IndexArrayStride; - var _IndexArrayCountExt = OpenTK.Graphics.ES20.All.IndexArrayCountExt; - var _TextureCoordArraySize = OpenTK.Graphics.ES20.All.TextureCoordArraySize; - var _TextureCoordArrayType = OpenTK.Graphics.ES20.All.TextureCoordArrayType; - var _TextureCoordArrayStride = OpenTK.Graphics.ES20.All.TextureCoordArrayStride; - var _TextureCoordArrayCountExt = OpenTK.Graphics.ES20.All.TextureCoordArrayCountExt; - var _EdgeFlagArrayStride = OpenTK.Graphics.ES20.All.EdgeFlagArrayStride; - var _EdgeFlagArrayCountExt = OpenTK.Graphics.ES20.All.EdgeFlagArrayCountExt; - var _VertexArrayPointer = OpenTK.Graphics.ES20.All.VertexArrayPointer; - var _VertexArrayPointerExt = OpenTK.Graphics.ES20.All.VertexArrayPointerExt; - var _NormalArrayPointer = OpenTK.Graphics.ES20.All.NormalArrayPointer; - var _NormalArrayPointerExt = OpenTK.Graphics.ES20.All.NormalArrayPointerExt; - var _ColorArrayPointer = OpenTK.Graphics.ES20.All.ColorArrayPointer; - var _ColorArrayPointerExt = OpenTK.Graphics.ES20.All.ColorArrayPointerExt; - var _IndexArrayPointer = OpenTK.Graphics.ES20.All.IndexArrayPointer; - var _IndexArrayPointerExt = OpenTK.Graphics.ES20.All.IndexArrayPointerExt; - var _TextureCoordArrayPointer = OpenTK.Graphics.ES20.All.TextureCoordArrayPointer; - var _TextureCoordArrayPointerExt = OpenTK.Graphics.ES20.All.TextureCoordArrayPointerExt; - var _EdgeFlagArrayPointer = OpenTK.Graphics.ES20.All.EdgeFlagArrayPointer; - var _EdgeFlagArrayPointerExt = OpenTK.Graphics.ES20.All.EdgeFlagArrayPointerExt; - var _InterlaceSgix = OpenTK.Graphics.ES20.All.InterlaceSgix; - var _DetailTexture2DSgis = OpenTK.Graphics.ES20.All.DetailTexture2DSgis; - var _DetailTexture2DBindingSgis = OpenTK.Graphics.ES20.All.DetailTexture2DBindingSgis; - var _LinearDetailSgis = OpenTK.Graphics.ES20.All.LinearDetailSgis; - var _LinearDetailAlphaSgis = OpenTK.Graphics.ES20.All.LinearDetailAlphaSgis; - var _LinearDetailColorSgis = OpenTK.Graphics.ES20.All.LinearDetailColorSgis; - var _DetailTextureLevelSgis = OpenTK.Graphics.ES20.All.DetailTextureLevelSgis; - var _DetailTextureModeSgis = OpenTK.Graphics.ES20.All.DetailTextureModeSgis; - var _DetailTextureFuncPointsSgis = OpenTK.Graphics.ES20.All.DetailTextureFuncPointsSgis; - var _MultisampleSgis = OpenTK.Graphics.ES20.All.MultisampleSgis; - var _SampleAlphaToCoverage = OpenTK.Graphics.ES20.All.SampleAlphaToCoverage; - var _SampleAlphaToMaskSgis = OpenTK.Graphics.ES20.All.SampleAlphaToMaskSgis; - var _SampleAlphaToOneSgis = OpenTK.Graphics.ES20.All.SampleAlphaToOneSgis; - var _SampleCoverage = OpenTK.Graphics.ES20.All.SampleCoverage; - var _SampleMaskSgis = OpenTK.Graphics.ES20.All.SampleMaskSgis; - var _Gl1PassExt = OpenTK.Graphics.ES20.All.Gl1PassExt; - var _Gl1PassSgis = OpenTK.Graphics.ES20.All.Gl1PassSgis; - var _Gl2Pass0Ext = OpenTK.Graphics.ES20.All.Gl2Pass0Ext; - var _Gl2Pass0Sgis = OpenTK.Graphics.ES20.All.Gl2Pass0Sgis; - var _Gl2Pass1Ext = OpenTK.Graphics.ES20.All.Gl2Pass1Ext; - var _Gl2Pass1Sgis = OpenTK.Graphics.ES20.All.Gl2Pass1Sgis; - var _Gl4Pass0Ext = OpenTK.Graphics.ES20.All.Gl4Pass0Ext; - var _Gl4Pass0Sgis = OpenTK.Graphics.ES20.All.Gl4Pass0Sgis; - var _Gl4Pass1Ext = OpenTK.Graphics.ES20.All.Gl4Pass1Ext; - var _Gl4Pass1Sgis = OpenTK.Graphics.ES20.All.Gl4Pass1Sgis; - var _Gl4Pass2Ext = OpenTK.Graphics.ES20.All.Gl4Pass2Ext; - var _Gl4Pass2Sgis = OpenTK.Graphics.ES20.All.Gl4Pass2Sgis; - var _Gl4Pass3Ext = OpenTK.Graphics.ES20.All.Gl4Pass3Ext; - var _Gl4Pass3Sgis = OpenTK.Graphics.ES20.All.Gl4Pass3Sgis; - var _SampleBuffers = OpenTK.Graphics.ES20.All.SampleBuffers; - var _SampleBuffersSgis = OpenTK.Graphics.ES20.All.SampleBuffersSgis; - var _SamplesSgis = OpenTK.Graphics.ES20.All.SamplesSgis; - var _Samples = OpenTK.Graphics.ES20.All.Samples; - var _SampleCoverageValue = OpenTK.Graphics.ES20.All.SampleCoverageValue; - var _SampleMaskValueSgis = OpenTK.Graphics.ES20.All.SampleMaskValueSgis; - var _SampleCoverageInvert = OpenTK.Graphics.ES20.All.SampleCoverageInvert; - var _SampleMaskInvertSgis = OpenTK.Graphics.ES20.All.SampleMaskInvertSgis; - var _SamplePatternSgis = OpenTK.Graphics.ES20.All.SamplePatternSgis; - var _LinearSharpenSgis = OpenTK.Graphics.ES20.All.LinearSharpenSgis; - var _LinearSharpenAlphaSgis = OpenTK.Graphics.ES20.All.LinearSharpenAlphaSgis; - var _LinearSharpenColorSgis = OpenTK.Graphics.ES20.All.LinearSharpenColorSgis; - var _SharpenTextureFuncPointsSgis = OpenTK.Graphics.ES20.All.SharpenTextureFuncPointsSgis; - var _ColorMatrixSgi = OpenTK.Graphics.ES20.All.ColorMatrixSgi; - var _ColorMatrixStackDepthSgi = OpenTK.Graphics.ES20.All.ColorMatrixStackDepthSgi; - var _MaxColorMatrixStackDepthSgi = OpenTK.Graphics.ES20.All.MaxColorMatrixStackDepthSgi; - var _PostColorMatrixRedScale = OpenTK.Graphics.ES20.All.PostColorMatrixRedScale; - var _PostColorMatrixRedScaleSgi = OpenTK.Graphics.ES20.All.PostColorMatrixRedScaleSgi; - var _PostColorMatrixGreenScale = OpenTK.Graphics.ES20.All.PostColorMatrixGreenScale; - var _PostColorMatrixGreenScaleSgi = OpenTK.Graphics.ES20.All.PostColorMatrixGreenScaleSgi; - var _PostColorMatrixBlueScale = OpenTK.Graphics.ES20.All.PostColorMatrixBlueScale; - var _PostColorMatrixBlueScaleSgi = OpenTK.Graphics.ES20.All.PostColorMatrixBlueScaleSgi; - var _PostColorMatrixAlphaScale = OpenTK.Graphics.ES20.All.PostColorMatrixAlphaScale; - var _PostColorMatrixAlphaScaleSgi = OpenTK.Graphics.ES20.All.PostColorMatrixAlphaScaleSgi; - var _PostColorMatrixRedBias = OpenTK.Graphics.ES20.All.PostColorMatrixRedBias; - var _PostColorMatrixRedBiasSgi = OpenTK.Graphics.ES20.All.PostColorMatrixRedBiasSgi; - var _PostColorMatrixGreenBias = OpenTK.Graphics.ES20.All.PostColorMatrixGreenBias; - var _PostColorMatrixGreenBiasSgi = OpenTK.Graphics.ES20.All.PostColorMatrixGreenBiasSgi; - var _PostColorMatrixBlueBias = OpenTK.Graphics.ES20.All.PostColorMatrixBlueBias; - var _PostColorMatrixBlueBiasSgi = OpenTK.Graphics.ES20.All.PostColorMatrixBlueBiasSgi; - var _PostColorMatrixAlphaBias = OpenTK.Graphics.ES20.All.PostColorMatrixAlphaBias; - var _PostColorMatrixAlphaBiasSgi = OpenTK.Graphics.ES20.All.PostColorMatrixAlphaBiasSgi; - var _TextureColorTableSgi = OpenTK.Graphics.ES20.All.TextureColorTableSgi; - var _ProxyTextureColorTableSgi = OpenTK.Graphics.ES20.All.ProxyTextureColorTableSgi; - var _TextureEnvBiasSgix = OpenTK.Graphics.ES20.All.TextureEnvBiasSgix; - var _ShadowAmbientSgix = OpenTK.Graphics.ES20.All.ShadowAmbientSgix; - var _BlendDstRgb = OpenTK.Graphics.ES20.All.BlendDstRgb; - var _BlendSrcRgb = OpenTK.Graphics.ES20.All.BlendSrcRgb; - var _BlendDstAlpha = OpenTK.Graphics.ES20.All.BlendDstAlpha; - var _BlendSrcAlpha = OpenTK.Graphics.ES20.All.BlendSrcAlpha; - var _ColorTable = OpenTK.Graphics.ES20.All.ColorTable; - var _ColorTableSgi = OpenTK.Graphics.ES20.All.ColorTableSgi; - var _PostConvolutionColorTable = OpenTK.Graphics.ES20.All.PostConvolutionColorTable; - var _PostConvolutionColorTableSgi = OpenTK.Graphics.ES20.All.PostConvolutionColorTableSgi; - var _PostColorMatrixColorTable = OpenTK.Graphics.ES20.All.PostColorMatrixColorTable; - var _PostColorMatrixColorTableSgi = OpenTK.Graphics.ES20.All.PostColorMatrixColorTableSgi; - var _ProxyColorTable = OpenTK.Graphics.ES20.All.ProxyColorTable; - var _ProxyColorTableSgi = OpenTK.Graphics.ES20.All.ProxyColorTableSgi; - var _ProxyPostConvolutionColorTable = OpenTK.Graphics.ES20.All.ProxyPostConvolutionColorTable; - var _ProxyPostConvolutionColorTableSgi = OpenTK.Graphics.ES20.All.ProxyPostConvolutionColorTableSgi; - var _ProxyPostColorMatrixColorTable = OpenTK.Graphics.ES20.All.ProxyPostColorMatrixColorTable; - var _ProxyPostColorMatrixColorTableSgi = OpenTK.Graphics.ES20.All.ProxyPostColorMatrixColorTableSgi; - var _ColorTableScale = OpenTK.Graphics.ES20.All.ColorTableScale; - var _ColorTableScaleSgi = OpenTK.Graphics.ES20.All.ColorTableScaleSgi; - var _ColorTableBias = OpenTK.Graphics.ES20.All.ColorTableBias; - var _ColorTableBiasSgi = OpenTK.Graphics.ES20.All.ColorTableBiasSgi; - var _ColorTableFormatSgi = OpenTK.Graphics.ES20.All.ColorTableFormatSgi; - var _ColorTableWidthSgi = OpenTK.Graphics.ES20.All.ColorTableWidthSgi; - var _ColorTableRedSizeSgi = OpenTK.Graphics.ES20.All.ColorTableRedSizeSgi; - var _ColorTableGreenSizeSgi = OpenTK.Graphics.ES20.All.ColorTableGreenSizeSgi; - var _ColorTableBlueSizeSgi = OpenTK.Graphics.ES20.All.ColorTableBlueSizeSgi; - var _ColorTableAlphaSizeSgi = OpenTK.Graphics.ES20.All.ColorTableAlphaSizeSgi; - var _ColorTableLuminanceSizeSgi = OpenTK.Graphics.ES20.All.ColorTableLuminanceSizeSgi; - var _ColorTableIntensitySizeSgi = OpenTK.Graphics.ES20.All.ColorTableIntensitySizeSgi; - var _BgraExt = OpenTK.Graphics.ES20.All.BgraExt; - var _BgraImg = OpenTK.Graphics.ES20.All.BgraImg; - var _PhongHintWin = OpenTK.Graphics.ES20.All.PhongHintWin; - var _ClipVolumeClippingHintExt = OpenTK.Graphics.ES20.All.ClipVolumeClippingHintExt; - var _DualAlpha4Sgis = OpenTK.Graphics.ES20.All.DualAlpha4Sgis; - var _DualAlpha8Sgis = OpenTK.Graphics.ES20.All.DualAlpha8Sgis; - var _DualAlpha12Sgis = OpenTK.Graphics.ES20.All.DualAlpha12Sgis; - var _DualAlpha16Sgis = OpenTK.Graphics.ES20.All.DualAlpha16Sgis; - var _DualLuminance4Sgis = OpenTK.Graphics.ES20.All.DualLuminance4Sgis; - var _DualLuminance8Sgis = OpenTK.Graphics.ES20.All.DualLuminance8Sgis; - var _DualLuminance12Sgis = OpenTK.Graphics.ES20.All.DualLuminance12Sgis; - var _DualLuminance16Sgis = OpenTK.Graphics.ES20.All.DualLuminance16Sgis; - var _DualIntensity4Sgis = OpenTK.Graphics.ES20.All.DualIntensity4Sgis; - var _DualIntensity8Sgis = OpenTK.Graphics.ES20.All.DualIntensity8Sgis; - var _DualIntensity12Sgis = OpenTK.Graphics.ES20.All.DualIntensity12Sgis; - var _DualIntensity16Sgis = OpenTK.Graphics.ES20.All.DualIntensity16Sgis; - var _DualLuminanceAlpha4Sgis = OpenTK.Graphics.ES20.All.DualLuminanceAlpha4Sgis; - var _DualLuminanceAlpha8Sgis = OpenTK.Graphics.ES20.All.DualLuminanceAlpha8Sgis; - var _QuadAlpha4Sgis = OpenTK.Graphics.ES20.All.QuadAlpha4Sgis; - var _QuadAlpha8Sgis = OpenTK.Graphics.ES20.All.QuadAlpha8Sgis; - var _QuadLuminance4Sgis = OpenTK.Graphics.ES20.All.QuadLuminance4Sgis; - var _QuadLuminance8Sgis = OpenTK.Graphics.ES20.All.QuadLuminance8Sgis; - var _QuadIntensity4Sgis = OpenTK.Graphics.ES20.All.QuadIntensity4Sgis; - var _QuadIntensity8Sgis = OpenTK.Graphics.ES20.All.QuadIntensity8Sgis; - var _DualTextureSelectSgis = OpenTK.Graphics.ES20.All.DualTextureSelectSgis; - var _QuadTextureSelectSgis = OpenTK.Graphics.ES20.All.QuadTextureSelectSgis; - var _PointSizeMin = OpenTK.Graphics.ES20.All.PointSizeMin; - var _PointSizeMinArb = OpenTK.Graphics.ES20.All.PointSizeMinArb; - var _PointSizeMinExt = OpenTK.Graphics.ES20.All.PointSizeMinExt; - var _PointSizeMinSgis = OpenTK.Graphics.ES20.All.PointSizeMinSgis; - var _PointSizeMax = OpenTK.Graphics.ES20.All.PointSizeMax; - var _PointSizeMaxArb = OpenTK.Graphics.ES20.All.PointSizeMaxArb; - var _PointSizeMaxExt = OpenTK.Graphics.ES20.All.PointSizeMaxExt; - var _PointSizeMaxSgis = OpenTK.Graphics.ES20.All.PointSizeMaxSgis; - var _PointFadeThresholdSize = OpenTK.Graphics.ES20.All.PointFadeThresholdSize; - var _PointFadeThresholdSizeArb = OpenTK.Graphics.ES20.All.PointFadeThresholdSizeArb; - var _PointFadeThresholdSizeExt = OpenTK.Graphics.ES20.All.PointFadeThresholdSizeExt; - var _PointFadeThresholdSizeSgis = OpenTK.Graphics.ES20.All.PointFadeThresholdSizeSgis; - var _DistanceAttenuationExt = OpenTK.Graphics.ES20.All.DistanceAttenuationExt; - var _DistanceAttenuationSgis = OpenTK.Graphics.ES20.All.DistanceAttenuationSgis; - var _PointDistanceAttenuation = OpenTK.Graphics.ES20.All.PointDistanceAttenuation; - var _PointDistanceAttenuationArb = OpenTK.Graphics.ES20.All.PointDistanceAttenuationArb; - var _FogFuncSgis = OpenTK.Graphics.ES20.All.FogFuncSgis; - var _FogFuncPointsSgis = OpenTK.Graphics.ES20.All.FogFuncPointsSgis; - var _MaxFogFuncPointsSgis = OpenTK.Graphics.ES20.All.MaxFogFuncPointsSgis; - var _ClampToBorder = OpenTK.Graphics.ES20.All.ClampToBorder; - var _ClampToBorderArb = OpenTK.Graphics.ES20.All.ClampToBorderArb; - var _ClampToBorderExt = OpenTK.Graphics.ES20.All.ClampToBorderExt; - var _ClampToBorderNv = OpenTK.Graphics.ES20.All.ClampToBorderNv; - var _ClampToBorderSgis = OpenTK.Graphics.ES20.All.ClampToBorderSgis; - var _TextureMultiBufferHintSgix = OpenTK.Graphics.ES20.All.TextureMultiBufferHintSgix; - var _ClampToEdge = OpenTK.Graphics.ES20.All.ClampToEdge; - var _ClampToEdgeSgis = OpenTK.Graphics.ES20.All.ClampToEdgeSgis; - var _PackSkipVolumesSgis = OpenTK.Graphics.ES20.All.PackSkipVolumesSgis; - var _PackImageDepthSgis = OpenTK.Graphics.ES20.All.PackImageDepthSgis; - var _UnpackSkipVolumesSgis = OpenTK.Graphics.ES20.All.UnpackSkipVolumesSgis; - var _UnpackImageDepthSgis = OpenTK.Graphics.ES20.All.UnpackImageDepthSgis; - var _Texture4DSgis = OpenTK.Graphics.ES20.All.Texture4DSgis; - var _ProxyTexture4DSgis = OpenTK.Graphics.ES20.All.ProxyTexture4DSgis; - var _Texture4DsizeSgis = OpenTK.Graphics.ES20.All.Texture4DsizeSgis; - var _TextureWrapQSgis = OpenTK.Graphics.ES20.All.TextureWrapQSgis; - var _Max4DTextureSizeSgis = OpenTK.Graphics.ES20.All.Max4DTextureSizeSgis; - var _PixelTexGenSgix = OpenTK.Graphics.ES20.All.PixelTexGenSgix; - var _TextureMinLod = OpenTK.Graphics.ES20.All.TextureMinLod; - var _TextureMinLodSgis = OpenTK.Graphics.ES20.All.TextureMinLodSgis; - var _TextureMaxLod = OpenTK.Graphics.ES20.All.TextureMaxLod; - var _TextureMaxLodSgis = OpenTK.Graphics.ES20.All.TextureMaxLodSgis; - var _TextureBaseLevel = OpenTK.Graphics.ES20.All.TextureBaseLevel; - var _TextureBaseLevelSgis = OpenTK.Graphics.ES20.All.TextureBaseLevelSgis; - var _TextureMaxLevel = OpenTK.Graphics.ES20.All.TextureMaxLevel; - var _TextureMaxLevelApple = OpenTK.Graphics.ES20.All.TextureMaxLevelApple; - var _TextureMaxLevelSgis = OpenTK.Graphics.ES20.All.TextureMaxLevelSgis; - var _PixelTileBestAlignmentSgix = OpenTK.Graphics.ES20.All.PixelTileBestAlignmentSgix; - var _PixelTileCacheIncrementSgix = OpenTK.Graphics.ES20.All.PixelTileCacheIncrementSgix; - var _PixelTileWidthSgix = OpenTK.Graphics.ES20.All.PixelTileWidthSgix; - var _PixelTileHeightSgix = OpenTK.Graphics.ES20.All.PixelTileHeightSgix; - var _PixelTileGridWidthSgix = OpenTK.Graphics.ES20.All.PixelTileGridWidthSgix; - var _PixelTileGridHeightSgix = OpenTK.Graphics.ES20.All.PixelTileGridHeightSgix; - var _PixelTileGridDepthSgix = OpenTK.Graphics.ES20.All.PixelTileGridDepthSgix; - var _PixelTileCacheSizeSgix = OpenTK.Graphics.ES20.All.PixelTileCacheSizeSgix; - var _Filter4Sgis = OpenTK.Graphics.ES20.All.Filter4Sgis; - var _TextureFilter4SizeSgis = OpenTK.Graphics.ES20.All.TextureFilter4SizeSgis; - var _SpriteSgix = OpenTK.Graphics.ES20.All.SpriteSgix; - var _SpriteModeSgix = OpenTK.Graphics.ES20.All.SpriteModeSgix; - var _SpriteAxisSgix = OpenTK.Graphics.ES20.All.SpriteAxisSgix; - var _SpriteTranslationSgix = OpenTK.Graphics.ES20.All.SpriteTranslationSgix; - var _Texture4DBindingSgis = OpenTK.Graphics.ES20.All.Texture4DBindingSgis; - var _LinearClipmapLinearSgix = OpenTK.Graphics.ES20.All.LinearClipmapLinearSgix; - var _TextureClipmapCenterSgix = OpenTK.Graphics.ES20.All.TextureClipmapCenterSgix; - var _TextureClipmapFrameSgix = OpenTK.Graphics.ES20.All.TextureClipmapFrameSgix; - var _TextureClipmapOffsetSgix = OpenTK.Graphics.ES20.All.TextureClipmapOffsetSgix; - var _TextureClipmapVirtualDepthSgix = OpenTK.Graphics.ES20.All.TextureClipmapVirtualDepthSgix; - var _TextureClipmapLodOffsetSgix = OpenTK.Graphics.ES20.All.TextureClipmapLodOffsetSgix; - var _TextureClipmapDepthSgix = OpenTK.Graphics.ES20.All.TextureClipmapDepthSgix; - var _MaxClipmapDepthSgix = OpenTK.Graphics.ES20.All.MaxClipmapDepthSgix; - var _MaxClipmapVirtualDepthSgix = OpenTK.Graphics.ES20.All.MaxClipmapVirtualDepthSgix; - var _PostTextureFilterBiasSgix = OpenTK.Graphics.ES20.All.PostTextureFilterBiasSgix; - var _PostTextureFilterScaleSgix = OpenTK.Graphics.ES20.All.PostTextureFilterScaleSgix; - var _PostTextureFilterBiasRangeSgix = OpenTK.Graphics.ES20.All.PostTextureFilterBiasRangeSgix; - var _PostTextureFilterScaleRangeSgix = OpenTK.Graphics.ES20.All.PostTextureFilterScaleRangeSgix; - var _ReferencePlaneSgix = OpenTK.Graphics.ES20.All.ReferencePlaneSgix; - var _ReferencePlaneEquationSgix = OpenTK.Graphics.ES20.All.ReferencePlaneEquationSgix; - var _IrInstrument1Sgix = OpenTK.Graphics.ES20.All.IrInstrument1Sgix; - var _InstrumentBufferPointerSgix = OpenTK.Graphics.ES20.All.InstrumentBufferPointerSgix; - var _InstrumentMeasurementsSgix = OpenTK.Graphics.ES20.All.InstrumentMeasurementsSgix; - var _ListPrioritySgix = OpenTK.Graphics.ES20.All.ListPrioritySgix; - var _CalligraphicFragmentSgix = OpenTK.Graphics.ES20.All.CalligraphicFragmentSgix; - var _PixelTexGenQCeilingSgix = OpenTK.Graphics.ES20.All.PixelTexGenQCeilingSgix; - var _PixelTexGenQRoundSgix = OpenTK.Graphics.ES20.All.PixelTexGenQRoundSgix; - var _PixelTexGenQFloorSgix = OpenTK.Graphics.ES20.All.PixelTexGenQFloorSgix; - var _PixelTexGenAlphaReplaceSgix = OpenTK.Graphics.ES20.All.PixelTexGenAlphaReplaceSgix; - var _PixelTexGenAlphaNoReplaceSgix = OpenTK.Graphics.ES20.All.PixelTexGenAlphaNoReplaceSgix; - var _PixelTexGenAlphaLsSgix = OpenTK.Graphics.ES20.All.PixelTexGenAlphaLsSgix; - var _PixelTexGenAlphaMsSgix = OpenTK.Graphics.ES20.All.PixelTexGenAlphaMsSgix; - var _FramezoomSgix = OpenTK.Graphics.ES20.All.FramezoomSgix; - var _FramezoomFactorSgix = OpenTK.Graphics.ES20.All.FramezoomFactorSgix; - var _MaxFramezoomFactorSgix = OpenTK.Graphics.ES20.All.MaxFramezoomFactorSgix; - var _TextureLodBiasSSgix = OpenTK.Graphics.ES20.All.TextureLodBiasSSgix; - var _TextureLodBiasTSgix = OpenTK.Graphics.ES20.All.TextureLodBiasTSgix; - var _TextureLodBiasRSgix = OpenTK.Graphics.ES20.All.TextureLodBiasRSgix; - var _GenerateMipmap = OpenTK.Graphics.ES20.All.GenerateMipmap; - var _GenerateMipmapSgis = OpenTK.Graphics.ES20.All.GenerateMipmapSgis; - var _GenerateMipmapHint = OpenTK.Graphics.ES20.All.GenerateMipmapHint; - var _GenerateMipmapHintSgis = OpenTK.Graphics.ES20.All.GenerateMipmapHintSgis; - var _GeometryDeformationSgix = OpenTK.Graphics.ES20.All.GeometryDeformationSgix; - var _TextureDeformationSgix = OpenTK.Graphics.ES20.All.TextureDeformationSgix; - var _DeformationsMaskSgix = OpenTK.Graphics.ES20.All.DeformationsMaskSgix; - var _FogOffsetSgix = OpenTK.Graphics.ES20.All.FogOffsetSgix; - var _FogOffsetValueSgix = OpenTK.Graphics.ES20.All.FogOffsetValueSgix; - var _TextureCompareSgix = OpenTK.Graphics.ES20.All.TextureCompareSgix; - var _TextureCompareOperatorSgix = OpenTK.Graphics.ES20.All.TextureCompareOperatorSgix; - var _TextureLequalRSgix = OpenTK.Graphics.ES20.All.TextureLequalRSgix; - var _TextureGequalRSgix = OpenTK.Graphics.ES20.All.TextureGequalRSgix; - var _DepthComponent16 = OpenTK.Graphics.ES20.All.DepthComponent16; - var _DepthComponent16Oes = OpenTK.Graphics.ES20.All.DepthComponent16Oes; - var _DepthComponent16Sgix = OpenTK.Graphics.ES20.All.DepthComponent16Sgix; - var _DepthComponent24Oes = OpenTK.Graphics.ES20.All.DepthComponent24Oes; - var _DepthComponent24Sgix = OpenTK.Graphics.ES20.All.DepthComponent24Sgix; - var _DepthComponent32Oes = OpenTK.Graphics.ES20.All.DepthComponent32Oes; - var _DepthComponent32Sgix = OpenTK.Graphics.ES20.All.DepthComponent32Sgix; - var _Ycrcb422Sgix = OpenTK.Graphics.ES20.All.Ycrcb422Sgix; - var _Ycrcb444Sgix = OpenTK.Graphics.ES20.All.Ycrcb444Sgix; - var _EyeDistanceToPointSgis = OpenTK.Graphics.ES20.All.EyeDistanceToPointSgis; - var _ObjectDistanceToPointSgis = OpenTK.Graphics.ES20.All.ObjectDistanceToPointSgis; - var _EyeDistanceToLineSgis = OpenTK.Graphics.ES20.All.EyeDistanceToLineSgis; - var _ObjectDistanceToLineSgis = OpenTK.Graphics.ES20.All.ObjectDistanceToLineSgis; - var _EyePointSgis = OpenTK.Graphics.ES20.All.EyePointSgis; - var _ObjectPointSgis = OpenTK.Graphics.ES20.All.ObjectPointSgis; - var _EyeLineSgis = OpenTK.Graphics.ES20.All.EyeLineSgis; - var _ObjectLineSgis = OpenTK.Graphics.ES20.All.ObjectLineSgis; - var _LightModelColorControl = OpenTK.Graphics.ES20.All.LightModelColorControl; - var _LightModelColorControlExt = OpenTK.Graphics.ES20.All.LightModelColorControlExt; - var _SingleColor = OpenTK.Graphics.ES20.All.SingleColor; - var _SingleColorExt = OpenTK.Graphics.ES20.All.SingleColorExt; - var _SeparateSpecularColor = OpenTK.Graphics.ES20.All.SeparateSpecularColor; - var _SeparateSpecularColorExt = OpenTK.Graphics.ES20.All.SeparateSpecularColorExt; - var _SharedTexturePaletteExt = OpenTK.Graphics.ES20.All.SharedTexturePaletteExt; - var _FramebufferAttachmentColorEncodingExt = OpenTK.Graphics.ES20.All.FramebufferAttachmentColorEncodingExt; - var _FramebufferAttachmentComponentTypeExt = OpenTK.Graphics.ES20.All.FramebufferAttachmentComponentTypeExt; - var _FramebufferUndefinedOes = OpenTK.Graphics.ES20.All.FramebufferUndefinedOes; - var _PrimitiveRestartForPatchesSupported = OpenTK.Graphics.ES20.All.PrimitiveRestartForPatchesSupported; - var _RgExt = OpenTK.Graphics.ES20.All.RgExt; - var _R8Ext = OpenTK.Graphics.ES20.All.R8Ext; - var _Rg8Ext = OpenTK.Graphics.ES20.All.Rg8Ext; - var _R16fExt = OpenTK.Graphics.ES20.All.R16fExt; - var _R32fExt = OpenTK.Graphics.ES20.All.R32fExt; - var _Rg16fExt = OpenTK.Graphics.ES20.All.Rg16fExt; - var _Rg32fExt = OpenTK.Graphics.ES20.All.Rg32fExt; - var _DebugOutputSynchronous = OpenTK.Graphics.ES20.All.DebugOutputSynchronous; - var _DebugOutputSynchronousKhr = OpenTK.Graphics.ES20.All.DebugOutputSynchronousKhr; - var _DebugNextLoggedMessageLength = OpenTK.Graphics.ES20.All.DebugNextLoggedMessageLength; - var _DebugNextLoggedMessageLengthKhr = OpenTK.Graphics.ES20.All.DebugNextLoggedMessageLengthKhr; - var _DebugCallbackFunction = OpenTK.Graphics.ES20.All.DebugCallbackFunction; - var _DebugCallbackFunctionKhr = OpenTK.Graphics.ES20.All.DebugCallbackFunctionKhr; - var _DebugCallbackUserParam = OpenTK.Graphics.ES20.All.DebugCallbackUserParam; - var _DebugCallbackUserParamKhr = OpenTK.Graphics.ES20.All.DebugCallbackUserParamKhr; - var _DebugSourceApi = OpenTK.Graphics.ES20.All.DebugSourceApi; - var _DebugSourceApiKhr = OpenTK.Graphics.ES20.All.DebugSourceApiKhr; - var _DebugSourceWindowSystem = OpenTK.Graphics.ES20.All.DebugSourceWindowSystem; - var _DebugSourceWindowSystemKhr = OpenTK.Graphics.ES20.All.DebugSourceWindowSystemKhr; - var _DebugSourceShaderCompiler = OpenTK.Graphics.ES20.All.DebugSourceShaderCompiler; - var _DebugSourceShaderCompilerKhr = OpenTK.Graphics.ES20.All.DebugSourceShaderCompilerKhr; - var _DebugSourceThirdParty = OpenTK.Graphics.ES20.All.DebugSourceThirdParty; - var _DebugSourceThirdPartyKhr = OpenTK.Graphics.ES20.All.DebugSourceThirdPartyKhr; - var _DebugSourceApplication = OpenTK.Graphics.ES20.All.DebugSourceApplication; - var _DebugSourceApplicationKhr = OpenTK.Graphics.ES20.All.DebugSourceApplicationKhr; - var _DebugSourceOther = OpenTK.Graphics.ES20.All.DebugSourceOther; - var _DebugSourceOtherKhr = OpenTK.Graphics.ES20.All.DebugSourceOtherKhr; - var _DebugTypeError = OpenTK.Graphics.ES20.All.DebugTypeError; - var _DebugTypeErrorKhr = OpenTK.Graphics.ES20.All.DebugTypeErrorKhr; - var _DebugTypeDeprecatedBehavior = OpenTK.Graphics.ES20.All.DebugTypeDeprecatedBehavior; - var _DebugTypeDeprecatedBehaviorKhr = OpenTK.Graphics.ES20.All.DebugTypeDeprecatedBehaviorKhr; - var _DebugTypeUndefinedBehavior = OpenTK.Graphics.ES20.All.DebugTypeUndefinedBehavior; - var _DebugTypeUndefinedBehaviorKhr = OpenTK.Graphics.ES20.All.DebugTypeUndefinedBehaviorKhr; - var _DebugTypePortability = OpenTK.Graphics.ES20.All.DebugTypePortability; - var _DebugTypePortabilityKhr = OpenTK.Graphics.ES20.All.DebugTypePortabilityKhr; - var _DebugTypePerformance = OpenTK.Graphics.ES20.All.DebugTypePerformance; - var _DebugTypePerformanceKhr = OpenTK.Graphics.ES20.All.DebugTypePerformanceKhr; - var _DebugTypeOther = OpenTK.Graphics.ES20.All.DebugTypeOther; - var _DebugTypeOtherKhr = OpenTK.Graphics.ES20.All.DebugTypeOtherKhr; - var _LoseContextOnResetExt = OpenTK.Graphics.ES20.All.LoseContextOnResetExt; - var _GuiltyContextResetExt = OpenTK.Graphics.ES20.All.GuiltyContextResetExt; - var _InnocentContextResetExt = OpenTK.Graphics.ES20.All.InnocentContextResetExt; - var _UnknownContextResetExt = OpenTK.Graphics.ES20.All.UnknownContextResetExt; - var _ResetNotificationStrategyExt = OpenTK.Graphics.ES20.All.ResetNotificationStrategyExt; - var _ProgramBinaryRetrievableHint = OpenTK.Graphics.ES20.All.ProgramBinaryRetrievableHint; - var _ProgramSeparableExt = OpenTK.Graphics.ES20.All.ProgramSeparableExt; - var _ActiveProgramExt = OpenTK.Graphics.ES20.All.ActiveProgramExt; - var _ProgramPipelineBindingExt = OpenTK.Graphics.ES20.All.ProgramPipelineBindingExt; - var _LayerProvokingVertexExt = OpenTK.Graphics.ES20.All.LayerProvokingVertexExt; - var _UndefinedVertexExt = OpenTK.Graphics.ES20.All.UndefinedVertexExt; - var _NoResetNotificationExt = OpenTK.Graphics.ES20.All.NoResetNotificationExt; - var _DebugTypeMarker = OpenTK.Graphics.ES20.All.DebugTypeMarker; - var _DebugTypeMarkerKhr = OpenTK.Graphics.ES20.All.DebugTypeMarkerKhr; - var _DebugTypePushGroup = OpenTK.Graphics.ES20.All.DebugTypePushGroup; - var _DebugTypePushGroupKhr = OpenTK.Graphics.ES20.All.DebugTypePushGroupKhr; - var _DebugTypePopGroup = OpenTK.Graphics.ES20.All.DebugTypePopGroup; - var _DebugTypePopGroupKhr = OpenTK.Graphics.ES20.All.DebugTypePopGroupKhr; - var _DebugSeverityNotification = OpenTK.Graphics.ES20.All.DebugSeverityNotification; - var _DebugSeverityNotificationKhr = OpenTK.Graphics.ES20.All.DebugSeverityNotificationKhr; - var _MaxDebugGroupStackDepth = OpenTK.Graphics.ES20.All.MaxDebugGroupStackDepth; - var _MaxDebugGroupStackDepthKhr = OpenTK.Graphics.ES20.All.MaxDebugGroupStackDepthKhr; - var _DebugGroupStackDepth = OpenTK.Graphics.ES20.All.DebugGroupStackDepth; - var _DebugGroupStackDepthKhr = OpenTK.Graphics.ES20.All.DebugGroupStackDepthKhr; - var _TextureViewMinLevelExt = OpenTK.Graphics.ES20.All.TextureViewMinLevelExt; - var _TextureViewNumLevelsExt = OpenTK.Graphics.ES20.All.TextureViewNumLevelsExt; - var _TextureViewMinLayerExt = OpenTK.Graphics.ES20.All.TextureViewMinLayerExt; - var _TextureViewNumLayersExt = OpenTK.Graphics.ES20.All.TextureViewNumLayersExt; - var _TextureImmutableLevels = OpenTK.Graphics.ES20.All.TextureImmutableLevels; - var _Buffer = OpenTK.Graphics.ES20.All.Buffer; - var _BufferKhr = OpenTK.Graphics.ES20.All.BufferKhr; - var _Shader = OpenTK.Graphics.ES20.All.Shader; - var _ShaderKhr = OpenTK.Graphics.ES20.All.ShaderKhr; - var _Program = OpenTK.Graphics.ES20.All.Program; - var _ProgramKhr = OpenTK.Graphics.ES20.All.ProgramKhr; - var _Query = OpenTK.Graphics.ES20.All.Query; - var _QueryKhr = OpenTK.Graphics.ES20.All.QueryKhr; - var _ProgramPipeline = OpenTK.Graphics.ES20.All.ProgramPipeline; - var _Sampler = OpenTK.Graphics.ES20.All.Sampler; - var _SamplerKhr = OpenTK.Graphics.ES20.All.SamplerKhr; - var _DisplayList = OpenTK.Graphics.ES20.All.DisplayList; - var _MaxLabelLength = OpenTK.Graphics.ES20.All.MaxLabelLength; - var _MaxLabelLengthKhr = OpenTK.Graphics.ES20.All.MaxLabelLengthKhr; - var _ConvolutionHintSgix = OpenTK.Graphics.ES20.All.ConvolutionHintSgix; - var _AlphaMinSgix = OpenTK.Graphics.ES20.All.AlphaMinSgix; - var _AlphaMaxSgix = OpenTK.Graphics.ES20.All.AlphaMaxSgix; - var _ScalebiasHintSgix = OpenTK.Graphics.ES20.All.ScalebiasHintSgix; - var _AsyncMarkerSgix = OpenTK.Graphics.ES20.All.AsyncMarkerSgix; - var _PixelTexGenModeSgix = OpenTK.Graphics.ES20.All.PixelTexGenModeSgix; - var _AsyncHistogramSgix = OpenTK.Graphics.ES20.All.AsyncHistogramSgix; - var _MaxAsyncHistogramSgix = OpenTK.Graphics.ES20.All.MaxAsyncHistogramSgix; - var _PixelTextureSgis = OpenTK.Graphics.ES20.All.PixelTextureSgis; - var _PixelFragmentRgbSourceSgis = OpenTK.Graphics.ES20.All.PixelFragmentRgbSourceSgis; - var _PixelFragmentAlphaSourceSgis = OpenTK.Graphics.ES20.All.PixelFragmentAlphaSourceSgis; - var _LineQualityHintSgix = OpenTK.Graphics.ES20.All.LineQualityHintSgix; - var _AsyncTexImageSgix = OpenTK.Graphics.ES20.All.AsyncTexImageSgix; - var _AsyncDrawPixelsSgix = OpenTK.Graphics.ES20.All.AsyncDrawPixelsSgix; - var _AsyncReadPixelsSgix = OpenTK.Graphics.ES20.All.AsyncReadPixelsSgix; - var _MaxAsyncTexImageSgix = OpenTK.Graphics.ES20.All.MaxAsyncTexImageSgix; - var _MaxAsyncDrawPixelsSgix = OpenTK.Graphics.ES20.All.MaxAsyncDrawPixelsSgix; - var _MaxAsyncReadPixelsSgix = OpenTK.Graphics.ES20.All.MaxAsyncReadPixelsSgix; - var _UnsignedShort565 = OpenTK.Graphics.ES20.All.UnsignedShort565; - var _UnsignedShort4444RevExt = OpenTK.Graphics.ES20.All.UnsignedShort4444RevExt; - var _UnsignedShort4444RevImg = OpenTK.Graphics.ES20.All.UnsignedShort4444RevImg; - var _UnsignedShort1555RevExt = OpenTK.Graphics.ES20.All.UnsignedShort1555RevExt; - var _UnsignedInt2101010RevExt = OpenTK.Graphics.ES20.All.UnsignedInt2101010RevExt; - var _TextureMaxClampSSgix = OpenTK.Graphics.ES20.All.TextureMaxClampSSgix; - var _TextureMaxClampTSgix = OpenTK.Graphics.ES20.All.TextureMaxClampTSgix; - var _TextureMaxClampRSgix = OpenTK.Graphics.ES20.All.TextureMaxClampRSgix; - var _MirroredRepeat = OpenTK.Graphics.ES20.All.MirroredRepeat; - var _VertexPreclipSgix = OpenTK.Graphics.ES20.All.VertexPreclipSgix; - var _VertexPreclipHintSgix = OpenTK.Graphics.ES20.All.VertexPreclipHintSgix; - var _CompressedRgbS3tcDxt1Ext = OpenTK.Graphics.ES20.All.CompressedRgbS3tcDxt1Ext; - var _CompressedRgbaS3tcDxt1Ext = OpenTK.Graphics.ES20.All.CompressedRgbaS3tcDxt1Ext; - var _CompressedRgbaS3tcDxt3Angle = OpenTK.Graphics.ES20.All.CompressedRgbaS3tcDxt3Angle; - var _CompressedRgbaS3tcDxt3Ext = OpenTK.Graphics.ES20.All.CompressedRgbaS3tcDxt3Ext; - var _CompressedRgbaS3tcDxt5Angle = OpenTK.Graphics.ES20.All.CompressedRgbaS3tcDxt5Angle; - var _CompressedRgbaS3tcDxt5Ext = OpenTK.Graphics.ES20.All.CompressedRgbaS3tcDxt5Ext; - var _PerfqueryDonotFlushIntel = OpenTK.Graphics.ES20.All.PerfqueryDonotFlushIntel; - var _PerfqueryFlushIntel = OpenTK.Graphics.ES20.All.PerfqueryFlushIntel; - var _PerfqueryWaitIntel = OpenTK.Graphics.ES20.All.PerfqueryWaitIntel; - var _FragmentLightingSgix = OpenTK.Graphics.ES20.All.FragmentLightingSgix; - var _FragmentColorMaterialSgix = OpenTK.Graphics.ES20.All.FragmentColorMaterialSgix; - var _FragmentColorMaterialFaceSgix = OpenTK.Graphics.ES20.All.FragmentColorMaterialFaceSgix; - var _FragmentColorMaterialParameterSgix = OpenTK.Graphics.ES20.All.FragmentColorMaterialParameterSgix; - var _MaxFragmentLightsSgix = OpenTK.Graphics.ES20.All.MaxFragmentLightsSgix; - var _MaxActiveLightsSgix = OpenTK.Graphics.ES20.All.MaxActiveLightsSgix; - var _LightEnvModeSgix = OpenTK.Graphics.ES20.All.LightEnvModeSgix; - var _FragmentLightModelLocalViewerSgix = OpenTK.Graphics.ES20.All.FragmentLightModelLocalViewerSgix; - var _FragmentLightModelTwoSideSgix = OpenTK.Graphics.ES20.All.FragmentLightModelTwoSideSgix; - var _FragmentLightModelAmbientSgix = OpenTK.Graphics.ES20.All.FragmentLightModelAmbientSgix; - var _FragmentLightModelNormalInterpolationSgix = OpenTK.Graphics.ES20.All.FragmentLightModelNormalInterpolationSgix; - var _FragmentLight0Sgix = OpenTK.Graphics.ES20.All.FragmentLight0Sgix; - var _FragmentLight1Sgix = OpenTK.Graphics.ES20.All.FragmentLight1Sgix; - var _FragmentLight2Sgix = OpenTK.Graphics.ES20.All.FragmentLight2Sgix; - var _FragmentLight3Sgix = OpenTK.Graphics.ES20.All.FragmentLight3Sgix; - var _FragmentLight4Sgix = OpenTK.Graphics.ES20.All.FragmentLight4Sgix; - var _FragmentLight5Sgix = OpenTK.Graphics.ES20.All.FragmentLight5Sgix; - var _FragmentLight6Sgix = OpenTK.Graphics.ES20.All.FragmentLight6Sgix; - var _FragmentLight7Sgix = OpenTK.Graphics.ES20.All.FragmentLight7Sgix; - var _PackResampleSgix = OpenTK.Graphics.ES20.All.PackResampleSgix; - var _UnpackResampleSgix = OpenTK.Graphics.ES20.All.UnpackResampleSgix; - var _ResampleReplicateSgix = OpenTK.Graphics.ES20.All.ResampleReplicateSgix; - var _ResampleZeroFillSgix = OpenTK.Graphics.ES20.All.ResampleZeroFillSgix; - var _ResampleDecimateSgix = OpenTK.Graphics.ES20.All.ResampleDecimateSgix; - var _NearestClipmapNearestSgix = OpenTK.Graphics.ES20.All.NearestClipmapNearestSgix; - var _NearestClipmapLinearSgix = OpenTK.Graphics.ES20.All.NearestClipmapLinearSgix; - var _LinearClipmapNearestSgix = OpenTK.Graphics.ES20.All.LinearClipmapNearestSgix; - var _AliasedPointSizeRange = OpenTK.Graphics.ES20.All.AliasedPointSizeRange; - var _AliasedLineWidthRange = OpenTK.Graphics.ES20.All.AliasedLineWidthRange; - var _Texture0 = OpenTK.Graphics.ES20.All.Texture0; - var _Texture1 = OpenTK.Graphics.ES20.All.Texture1; - var _Texture2 = OpenTK.Graphics.ES20.All.Texture2; - var _Texture3 = OpenTK.Graphics.ES20.All.Texture3; - var _Texture4 = OpenTK.Graphics.ES20.All.Texture4; - var _Texture5 = OpenTK.Graphics.ES20.All.Texture5; - var _Texture6 = OpenTK.Graphics.ES20.All.Texture6; - var _Texture7 = OpenTK.Graphics.ES20.All.Texture7; - var _Texture8 = OpenTK.Graphics.ES20.All.Texture8; - var _Texture9 = OpenTK.Graphics.ES20.All.Texture9; - var _Texture10 = OpenTK.Graphics.ES20.All.Texture10; - var _Texture11 = OpenTK.Graphics.ES20.All.Texture11; - var _Texture12 = OpenTK.Graphics.ES20.All.Texture12; - var _Texture13 = OpenTK.Graphics.ES20.All.Texture13; - var _Texture14 = OpenTK.Graphics.ES20.All.Texture14; - var _Texture15 = OpenTK.Graphics.ES20.All.Texture15; - var _Texture16 = OpenTK.Graphics.ES20.All.Texture16; - var _Texture17 = OpenTK.Graphics.ES20.All.Texture17; - var _Texture18 = OpenTK.Graphics.ES20.All.Texture18; - var _Texture19 = OpenTK.Graphics.ES20.All.Texture19; - var _Texture20 = OpenTK.Graphics.ES20.All.Texture20; - var _Texture21 = OpenTK.Graphics.ES20.All.Texture21; - var _Texture22 = OpenTK.Graphics.ES20.All.Texture22; - var _Texture23 = OpenTK.Graphics.ES20.All.Texture23; - var _Texture24 = OpenTK.Graphics.ES20.All.Texture24; - var _Texture25 = OpenTK.Graphics.ES20.All.Texture25; - var _Texture26 = OpenTK.Graphics.ES20.All.Texture26; - var _Texture27 = OpenTK.Graphics.ES20.All.Texture27; - var _Texture28 = OpenTK.Graphics.ES20.All.Texture28; - var _Texture29 = OpenTK.Graphics.ES20.All.Texture29; - var _Texture30 = OpenTK.Graphics.ES20.All.Texture30; - var _Texture31 = OpenTK.Graphics.ES20.All.Texture31; - var _ActiveTexture = OpenTK.Graphics.ES20.All.ActiveTexture; - var _MaxRenderbufferSize = OpenTK.Graphics.ES20.All.MaxRenderbufferSize; - var _TextureCompressionHint = OpenTK.Graphics.ES20.All.TextureCompressionHint; - var _TextureCompressionHintArb = OpenTK.Graphics.ES20.All.TextureCompressionHintArb; - var _AllCompletedNv = OpenTK.Graphics.ES20.All.AllCompletedNv; - var _FenceStatusNv = OpenTK.Graphics.ES20.All.FenceStatusNv; - var _FenceConditionNv = OpenTK.Graphics.ES20.All.FenceConditionNv; - var _DepthStencilOes = OpenTK.Graphics.ES20.All.DepthStencilOes; - var _UnsignedInt248Oes = OpenTK.Graphics.ES20.All.UnsignedInt248Oes; - var _TextureMaxAnisotropyExt = OpenTK.Graphics.ES20.All.TextureMaxAnisotropyExt; - var _MaxTextureMaxAnisotropyExt = OpenTK.Graphics.ES20.All.MaxTextureMaxAnisotropyExt; - var _IncrWrap = OpenTK.Graphics.ES20.All.IncrWrap; - var _DecrWrap = OpenTK.Graphics.ES20.All.DecrWrap; - var _TextureCubeMap = OpenTK.Graphics.ES20.All.TextureCubeMap; - var _TextureBindingCubeMap = OpenTK.Graphics.ES20.All.TextureBindingCubeMap; - var _TextureCubeMapPositiveX = OpenTK.Graphics.ES20.All.TextureCubeMapPositiveX; - var _TextureCubeMapNegativeX = OpenTK.Graphics.ES20.All.TextureCubeMapNegativeX; - var _TextureCubeMapPositiveY = OpenTK.Graphics.ES20.All.TextureCubeMapPositiveY; - var _TextureCubeMapNegativeY = OpenTK.Graphics.ES20.All.TextureCubeMapNegativeY; - var _TextureCubeMapPositiveZ = OpenTK.Graphics.ES20.All.TextureCubeMapPositiveZ; - var _TextureCubeMapNegativeZ = OpenTK.Graphics.ES20.All.TextureCubeMapNegativeZ; - var _MaxCubeMapTextureSize = OpenTK.Graphics.ES20.All.MaxCubeMapTextureSize; - var _VertexArrayStorageHintApple = OpenTK.Graphics.ES20.All.VertexArrayStorageHintApple; - var _MultisampleFilterHintNv = OpenTK.Graphics.ES20.All.MultisampleFilterHintNv; - var _PackSubsampleRateSgix = OpenTK.Graphics.ES20.All.PackSubsampleRateSgix; - var _UnpackSubsampleRateSgix = OpenTK.Graphics.ES20.All.UnpackSubsampleRateSgix; - var _PixelSubsample4444Sgix = OpenTK.Graphics.ES20.All.PixelSubsample4444Sgix; - var _PixelSubsample2424Sgix = OpenTK.Graphics.ES20.All.PixelSubsample2424Sgix; - var _PixelSubsample4242Sgix = OpenTK.Graphics.ES20.All.PixelSubsample4242Sgix; - var _TransformHintApple = OpenTK.Graphics.ES20.All.TransformHintApple; - var _VertexArrayBindingOes = OpenTK.Graphics.ES20.All.VertexArrayBindingOes; - var _UnsignedShort88Apple = OpenTK.Graphics.ES20.All.UnsignedShort88Apple; - var _UnsignedShort88RevApple = OpenTK.Graphics.ES20.All.UnsignedShort88RevApple; - var _TextureStorageHintApple = OpenTK.Graphics.ES20.All.TextureStorageHintApple; - var _VertexAttribArrayEnabled = OpenTK.Graphics.ES20.All.VertexAttribArrayEnabled; - var _VertexAttribArraySize = OpenTK.Graphics.ES20.All.VertexAttribArraySize; - var _VertexAttribArrayStride = OpenTK.Graphics.ES20.All.VertexAttribArrayStride; - var _VertexAttribArrayType = OpenTK.Graphics.ES20.All.VertexAttribArrayType; - var _CurrentVertexAttrib = OpenTK.Graphics.ES20.All.CurrentVertexAttrib; - var _VertexAttribArrayPointer = OpenTK.Graphics.ES20.All.VertexAttribArrayPointer; - var _NumCompressedTextureFormats = OpenTK.Graphics.ES20.All.NumCompressedTextureFormats; - var _CompressedTextureFormats = OpenTK.Graphics.ES20.All.CompressedTextureFormats; - var _Z400BinaryAmd = OpenTK.Graphics.ES20.All.Z400BinaryAmd; - var _ProgramBinaryLengthOes = OpenTK.Graphics.ES20.All.ProgramBinaryLengthOes; - var _BufferSize = OpenTK.Graphics.ES20.All.BufferSize; - var _BufferUsage = OpenTK.Graphics.ES20.All.BufferUsage; - var _AtcRgbaInterpolatedAlphaAmd = OpenTK.Graphics.ES20.All.AtcRgbaInterpolatedAlphaAmd; - var _Gl3DcXAmd = OpenTK.Graphics.ES20.All.Gl3DcXAmd; - var _Gl3DcXyAmd = OpenTK.Graphics.ES20.All.Gl3DcXyAmd; - var _NumProgramBinaryFormatsOes = OpenTK.Graphics.ES20.All.NumProgramBinaryFormatsOes; - var _ProgramBinaryFormatsOes = OpenTK.Graphics.ES20.All.ProgramBinaryFormatsOes; - var _StencilBackFunc = OpenTK.Graphics.ES20.All.StencilBackFunc; - var _StencilBackFail = OpenTK.Graphics.ES20.All.StencilBackFail; - var _StencilBackPassDepthFail = OpenTK.Graphics.ES20.All.StencilBackPassDepthFail; - var _StencilBackPassDepthPass = OpenTK.Graphics.ES20.All.StencilBackPassDepthPass; - var _Rgba32fExt = OpenTK.Graphics.ES20.All.Rgba32fExt; - var _Rgb32fExt = OpenTK.Graphics.ES20.All.Rgb32fExt; - var _Alpha32fExt = OpenTK.Graphics.ES20.All.Alpha32fExt; - var _Luminance32fExt = OpenTK.Graphics.ES20.All.Luminance32fExt; - var _LuminanceAlpha32fExt = OpenTK.Graphics.ES20.All.LuminanceAlpha32fExt; - var _Rgba16fExt = OpenTK.Graphics.ES20.All.Rgba16fExt; - var _Rgb16fExt = OpenTK.Graphics.ES20.All.Rgb16fExt; - var _Alpha16fExt = OpenTK.Graphics.ES20.All.Alpha16fExt; - var _Luminance16fExt = OpenTK.Graphics.ES20.All.Luminance16fExt; - var _LuminanceAlpha16fExt = OpenTK.Graphics.ES20.All.LuminanceAlpha16fExt; - var _WriteonlyRenderingQcom = OpenTK.Graphics.ES20.All.WriteonlyRenderingQcom; - var _MaxDrawBuffersExt = OpenTK.Graphics.ES20.All.MaxDrawBuffersExt; - var _MaxDrawBuffersNv = OpenTK.Graphics.ES20.All.MaxDrawBuffersNv; - var _DrawBuffer0Ext = OpenTK.Graphics.ES20.All.DrawBuffer0Ext; - var _DrawBuffer0Nv = OpenTK.Graphics.ES20.All.DrawBuffer0Nv; - var _DrawBuffer1Ext = OpenTK.Graphics.ES20.All.DrawBuffer1Ext; - var _DrawBuffer1Nv = OpenTK.Graphics.ES20.All.DrawBuffer1Nv; - var _DrawBuffer2Ext = OpenTK.Graphics.ES20.All.DrawBuffer2Ext; - var _DrawBuffer2Nv = OpenTK.Graphics.ES20.All.DrawBuffer2Nv; - var _DrawBuffer3Ext = OpenTK.Graphics.ES20.All.DrawBuffer3Ext; - var _DrawBuffer3Nv = OpenTK.Graphics.ES20.All.DrawBuffer3Nv; - var _DrawBuffer4Ext = OpenTK.Graphics.ES20.All.DrawBuffer4Ext; - var _DrawBuffer4Nv = OpenTK.Graphics.ES20.All.DrawBuffer4Nv; - var _DrawBuffer5Ext = OpenTK.Graphics.ES20.All.DrawBuffer5Ext; - var _DrawBuffer5Nv = OpenTK.Graphics.ES20.All.DrawBuffer5Nv; - var _DrawBuffer6Ext = OpenTK.Graphics.ES20.All.DrawBuffer6Ext; - var _DrawBuffer6Nv = OpenTK.Graphics.ES20.All.DrawBuffer6Nv; - var _DrawBuffer7Ext = OpenTK.Graphics.ES20.All.DrawBuffer7Ext; - var _DrawBuffer7Nv = OpenTK.Graphics.ES20.All.DrawBuffer7Nv; - var _DrawBuffer8Ext = OpenTK.Graphics.ES20.All.DrawBuffer8Ext; - var _DrawBuffer8Nv = OpenTK.Graphics.ES20.All.DrawBuffer8Nv; - var _DrawBuffer9Ext = OpenTK.Graphics.ES20.All.DrawBuffer9Ext; - var _DrawBuffer9Nv = OpenTK.Graphics.ES20.All.DrawBuffer9Nv; - var _DrawBuffer10Ext = OpenTK.Graphics.ES20.All.DrawBuffer10Ext; - var _DrawBuffer10Nv = OpenTK.Graphics.ES20.All.DrawBuffer10Nv; - var _DrawBuffer11Ext = OpenTK.Graphics.ES20.All.DrawBuffer11Ext; - var _DrawBuffer11Nv = OpenTK.Graphics.ES20.All.DrawBuffer11Nv; - var _DrawBuffer12Ext = OpenTK.Graphics.ES20.All.DrawBuffer12Ext; - var _DrawBuffer12Nv = OpenTK.Graphics.ES20.All.DrawBuffer12Nv; - var _DrawBuffer13Ext = OpenTK.Graphics.ES20.All.DrawBuffer13Ext; - var _DrawBuffer13Nv = OpenTK.Graphics.ES20.All.DrawBuffer13Nv; - var _DrawBuffer14Ext = OpenTK.Graphics.ES20.All.DrawBuffer14Ext; - var _DrawBuffer14Nv = OpenTK.Graphics.ES20.All.DrawBuffer14Nv; - var _DrawBuffer15Ext = OpenTK.Graphics.ES20.All.DrawBuffer15Ext; - var _DrawBuffer15Nv = OpenTK.Graphics.ES20.All.DrawBuffer15Nv; - var _BlendEquationAlpha = OpenTK.Graphics.ES20.All.BlendEquationAlpha; - var _TextureCompareModeExt = OpenTK.Graphics.ES20.All.TextureCompareModeExt; - var _TextureCompareFuncExt = OpenTK.Graphics.ES20.All.TextureCompareFuncExt; - var _CompareRefToTextureExt = OpenTK.Graphics.ES20.All.CompareRefToTextureExt; - var _QueryCounterBitsExt = OpenTK.Graphics.ES20.All.QueryCounterBitsExt; - var _CurrentQueryExt = OpenTK.Graphics.ES20.All.CurrentQueryExt; - var _QueryResultExt = OpenTK.Graphics.ES20.All.QueryResultExt; - var _QueryResultAvailableExt = OpenTK.Graphics.ES20.All.QueryResultAvailableExt; - var _MaxVertexAttribs = OpenTK.Graphics.ES20.All.MaxVertexAttribs; - var _VertexAttribArrayNormalized = OpenTK.Graphics.ES20.All.VertexAttribArrayNormalized; - var _MaxTessControlInputComponentsExt = OpenTK.Graphics.ES20.All.MaxTessControlInputComponentsExt; - var _MaxTessEvaluationInputComponentsExt = OpenTK.Graphics.ES20.All.MaxTessEvaluationInputComponentsExt; - var _MaxTextureImageUnits = OpenTK.Graphics.ES20.All.MaxTextureImageUnits; - var _GeometryShaderInvocationsExt = OpenTK.Graphics.ES20.All.GeometryShaderInvocationsExt; - var _ArrayBuffer = OpenTK.Graphics.ES20.All.ArrayBuffer; - var _ElementArrayBuffer = OpenTK.Graphics.ES20.All.ElementArrayBuffer; - var _ArrayBufferBinding = OpenTK.Graphics.ES20.All.ArrayBufferBinding; - var _ElementArrayBufferBinding = OpenTK.Graphics.ES20.All.ElementArrayBufferBinding; - var _VertexAttribArrayBufferBinding = OpenTK.Graphics.ES20.All.VertexAttribArrayBufferBinding; - var _WriteOnlyOes = OpenTK.Graphics.ES20.All.WriteOnlyOes; - var _BufferAccessOes = OpenTK.Graphics.ES20.All.BufferAccessOes; - var _BufferMappedOes = OpenTK.Graphics.ES20.All.BufferMappedOes; - var _BufferMapPointerOes = OpenTK.Graphics.ES20.All.BufferMapPointerOes; - var _TimeElapsedExt = OpenTK.Graphics.ES20.All.TimeElapsedExt; - var _StreamDraw = OpenTK.Graphics.ES20.All.StreamDraw; - var _StaticDraw = OpenTK.Graphics.ES20.All.StaticDraw; - var _DynamicDraw = OpenTK.Graphics.ES20.All.DynamicDraw; - var _Etc1Srgb8Nv = OpenTK.Graphics.ES20.All.Etc1Srgb8Nv; - var _Depth24Stencil8Oes = OpenTK.Graphics.ES20.All.Depth24Stencil8Oes; - var _VertexAttribArrayDivisorAngle = OpenTK.Graphics.ES20.All.VertexAttribArrayDivisorAngle; - var _VertexAttribArrayDivisorExt = OpenTK.Graphics.ES20.All.VertexAttribArrayDivisorExt; - var _VertexAttribArrayDivisorNv = OpenTK.Graphics.ES20.All.VertexAttribArrayDivisorNv; - var _GeometryLinkedVerticesOutExt = OpenTK.Graphics.ES20.All.GeometryLinkedVerticesOutExt; - var _GeometryLinkedInputTypeExt = OpenTK.Graphics.ES20.All.GeometryLinkedInputTypeExt; - var _GeometryLinkedOutputTypeExt = OpenTK.Graphics.ES20.All.GeometryLinkedOutputTypeExt; - var _PackResampleOml = OpenTK.Graphics.ES20.All.PackResampleOml; - var _UnpackResampleOml = OpenTK.Graphics.ES20.All.UnpackResampleOml; - var _Rgb422Apple = OpenTK.Graphics.ES20.All.Rgb422Apple; - var _MaxGeometryUniformBlocksExt = OpenTK.Graphics.ES20.All.MaxGeometryUniformBlocksExt; - var _MaxCombinedGeometryUniformComponentsExt = OpenTK.Graphics.ES20.All.MaxCombinedGeometryUniformComponentsExt; - var _TextureSrgbDecodeExt = OpenTK.Graphics.ES20.All.TextureSrgbDecodeExt; - var _DecodeExt = OpenTK.Graphics.ES20.All.DecodeExt; - var _SkipDecodeExt = OpenTK.Graphics.ES20.All.SkipDecodeExt; - var _ProgramPipelineObjectExt = OpenTK.Graphics.ES20.All.ProgramPipelineObjectExt; - var _RgbRaw422Apple = OpenTK.Graphics.ES20.All.RgbRaw422Apple; - var _FragmentShaderDiscardsSamplesExt = OpenTK.Graphics.ES20.All.FragmentShaderDiscardsSamplesExt; - var _SyncObjectApple = OpenTK.Graphics.ES20.All.SyncObjectApple; - var _CompressedSrgbPvrtc2Bppv1Ext = OpenTK.Graphics.ES20.All.CompressedSrgbPvrtc2Bppv1Ext; - var _CompressedSrgbPvrtc4Bppv1Ext = OpenTK.Graphics.ES20.All.CompressedSrgbPvrtc4Bppv1Ext; - var _CompressedSrgbAlphaPvrtc2Bppv1Ext = OpenTK.Graphics.ES20.All.CompressedSrgbAlphaPvrtc2Bppv1Ext; - var _CompressedSrgbAlphaPvrtc4Bppv1Ext = OpenTK.Graphics.ES20.All.CompressedSrgbAlphaPvrtc4Bppv1Ext; - var _FragmentShader = OpenTK.Graphics.ES20.All.FragmentShader; - var _VertexShader = OpenTK.Graphics.ES20.All.VertexShader; - var _ProgramObjectExt = OpenTK.Graphics.ES20.All.ProgramObjectExt; - var _ShaderObjectExt = OpenTK.Graphics.ES20.All.ShaderObjectExt; - var _MaxVertexTextureImageUnits = OpenTK.Graphics.ES20.All.MaxVertexTextureImageUnits; - var _MaxCombinedTextureImageUnits = OpenTK.Graphics.ES20.All.MaxCombinedTextureImageUnits; - var _ShaderType = OpenTK.Graphics.ES20.All.ShaderType; - var _FloatVec2 = OpenTK.Graphics.ES20.All.FloatVec2; - var _FloatVec3 = OpenTK.Graphics.ES20.All.FloatVec3; - var _FloatVec4 = OpenTK.Graphics.ES20.All.FloatVec4; - var _IntVec2 = OpenTK.Graphics.ES20.All.IntVec2; - var _IntVec3 = OpenTK.Graphics.ES20.All.IntVec3; - var _IntVec4 = OpenTK.Graphics.ES20.All.IntVec4; - var _Bool = OpenTK.Graphics.ES20.All.Bool; - var _BoolVec2 = OpenTK.Graphics.ES20.All.BoolVec2; - var _BoolVec3 = OpenTK.Graphics.ES20.All.BoolVec3; - var _BoolVec4 = OpenTK.Graphics.ES20.All.BoolVec4; - var _FloatMat2 = OpenTK.Graphics.ES20.All.FloatMat2; - var _FloatMat3 = OpenTK.Graphics.ES20.All.FloatMat3; - var _FloatMat4 = OpenTK.Graphics.ES20.All.FloatMat4; - var _Sampler2D = OpenTK.Graphics.ES20.All.Sampler2D; - var _Sampler3DOes = OpenTK.Graphics.ES20.All.Sampler3DOes; - var _SamplerCube = OpenTK.Graphics.ES20.All.SamplerCube; - var _Sampler2DShadowExt = OpenTK.Graphics.ES20.All.Sampler2DShadowExt; - var _FloatMat2x3Nv = OpenTK.Graphics.ES20.All.FloatMat2x3Nv; - var _FloatMat2x4Nv = OpenTK.Graphics.ES20.All.FloatMat2x4Nv; - var _FloatMat3x2Nv = OpenTK.Graphics.ES20.All.FloatMat3x2Nv; - var _FloatMat3x4Nv = OpenTK.Graphics.ES20.All.FloatMat3x4Nv; - var _FloatMat4x2Nv = OpenTK.Graphics.ES20.All.FloatMat4x2Nv; - var _FloatMat4x3Nv = OpenTK.Graphics.ES20.All.FloatMat4x3Nv; - var _DeleteStatus = OpenTK.Graphics.ES20.All.DeleteStatus; - var _CompileStatus = OpenTK.Graphics.ES20.All.CompileStatus; - var _LinkStatus = OpenTK.Graphics.ES20.All.LinkStatus; - var _ValidateStatus = OpenTK.Graphics.ES20.All.ValidateStatus; - var _InfoLogLength = OpenTK.Graphics.ES20.All.InfoLogLength; - var _AttachedShaders = OpenTK.Graphics.ES20.All.AttachedShaders; - var _ActiveUniforms = OpenTK.Graphics.ES20.All.ActiveUniforms; - var _ActiveUniformMaxLength = OpenTK.Graphics.ES20.All.ActiveUniformMaxLength; - var _ShaderSourceLength = OpenTK.Graphics.ES20.All.ShaderSourceLength; - var _ActiveAttributes = OpenTK.Graphics.ES20.All.ActiveAttributes; - var _ActiveAttributeMaxLength = OpenTK.Graphics.ES20.All.ActiveAttributeMaxLength; - var _FragmentShaderDerivativeHint = OpenTK.Graphics.ES20.All.FragmentShaderDerivativeHint; - var _FragmentShaderDerivativeHintArb = OpenTK.Graphics.ES20.All.FragmentShaderDerivativeHintArb; - var _FragmentShaderDerivativeHintOes = OpenTK.Graphics.ES20.All.FragmentShaderDerivativeHintOes; - var _ShadingLanguageVersion = OpenTK.Graphics.ES20.All.ShadingLanguageVersion; - var _CurrentProgram = OpenTK.Graphics.ES20.All.CurrentProgram; - var _Palette4Rgb8Oes = OpenTK.Graphics.ES20.All.Palette4Rgb8Oes; - var _Palette4Rgba8Oes = OpenTK.Graphics.ES20.All.Palette4Rgba8Oes; - var _Palette4R5G6B5Oes = OpenTK.Graphics.ES20.All.Palette4R5G6B5Oes; - var _Palette4Rgba4Oes = OpenTK.Graphics.ES20.All.Palette4Rgba4Oes; - var _Palette4Rgb5A1Oes = OpenTK.Graphics.ES20.All.Palette4Rgb5A1Oes; - var _Palette8Rgb8Oes = OpenTK.Graphics.ES20.All.Palette8Rgb8Oes; - var _Palette8Rgba8Oes = OpenTK.Graphics.ES20.All.Palette8Rgba8Oes; - var _Palette8R5G6B5Oes = OpenTK.Graphics.ES20.All.Palette8R5G6B5Oes; - var _Palette8Rgba4Oes = OpenTK.Graphics.ES20.All.Palette8Rgba4Oes; - var _Palette8Rgb5A1Oes = OpenTK.Graphics.ES20.All.Palette8Rgb5A1Oes; - var _ImplementationColorReadType = OpenTK.Graphics.ES20.All.ImplementationColorReadType; - var _ImplementationColorReadFormat = OpenTK.Graphics.ES20.All.ImplementationColorReadFormat; - var _CounterTypeAmd = OpenTK.Graphics.ES20.All.CounterTypeAmd; - var _CounterRangeAmd = OpenTK.Graphics.ES20.All.CounterRangeAmd; - var _UnsignedInt64Amd = OpenTK.Graphics.ES20.All.UnsignedInt64Amd; - var _PercentageAmd = OpenTK.Graphics.ES20.All.PercentageAmd; - var _PerfmonResultAvailableAmd = OpenTK.Graphics.ES20.All.PerfmonResultAvailableAmd; - var _PerfmonResultSizeAmd = OpenTK.Graphics.ES20.All.PerfmonResultSizeAmd; - var _PerfmonResultAmd = OpenTK.Graphics.ES20.All.PerfmonResultAmd; - var _TextureWidthQcom = OpenTK.Graphics.ES20.All.TextureWidthQcom; - var _TextureHeightQcom = OpenTK.Graphics.ES20.All.TextureHeightQcom; - var _TextureDepthQcom = OpenTK.Graphics.ES20.All.TextureDepthQcom; - var _TextureInternalFormatQcom = OpenTK.Graphics.ES20.All.TextureInternalFormatQcom; - var _TextureFormatQcom = OpenTK.Graphics.ES20.All.TextureFormatQcom; - var _TextureTypeQcom = OpenTK.Graphics.ES20.All.TextureTypeQcom; - var _TextureImageValidQcom = OpenTK.Graphics.ES20.All.TextureImageValidQcom; - var _TextureNumLevelsQcom = OpenTK.Graphics.ES20.All.TextureNumLevelsQcom; - var _TextureTargetQcom = OpenTK.Graphics.ES20.All.TextureTargetQcom; - var _TextureObjectValidQcom = OpenTK.Graphics.ES20.All.TextureObjectValidQcom; - var _StateRestore = OpenTK.Graphics.ES20.All.StateRestore; - var _CompressedRgbPvrtc4Bppv1Img = OpenTK.Graphics.ES20.All.CompressedRgbPvrtc4Bppv1Img; - var _CompressedRgbPvrtc2Bppv1Img = OpenTK.Graphics.ES20.All.CompressedRgbPvrtc2Bppv1Img; - var _CompressedRgbaPvrtc4Bppv1Img = OpenTK.Graphics.ES20.All.CompressedRgbaPvrtc4Bppv1Img; - var _CompressedRgbaPvrtc2Bppv1Img = OpenTK.Graphics.ES20.All.CompressedRgbaPvrtc2Bppv1Img; - var _SgxBinaryImg = OpenTK.Graphics.ES20.All.SgxBinaryImg; - var _UnsignedNormalizedExt = OpenTK.Graphics.ES20.All.UnsignedNormalizedExt; - var _MaxGeometryTextureImageUnitsExt = OpenTK.Graphics.ES20.All.MaxGeometryTextureImageUnitsExt; - var _TextureBufferBindingExt = OpenTK.Graphics.ES20.All.TextureBufferBindingExt; - var _TextureBufferExt = OpenTK.Graphics.ES20.All.TextureBufferExt; - var _MaxTextureBufferSizeExt = OpenTK.Graphics.ES20.All.MaxTextureBufferSizeExt; - var _TextureBindingBufferExt = OpenTK.Graphics.ES20.All.TextureBindingBufferExt; - var _TextureBufferDataStoreBindingExt = OpenTK.Graphics.ES20.All.TextureBufferDataStoreBindingExt; - var _AnySamplesPassedExt = OpenTK.Graphics.ES20.All.AnySamplesPassedExt; - var _SampleShadingOes = OpenTK.Graphics.ES20.All.SampleShadingOes; - var _MinSampleShadingValueOes = OpenTK.Graphics.ES20.All.MinSampleShadingValueOes; - var _SrgbExt = OpenTK.Graphics.ES20.All.SrgbExt; - var _Srgb8Nv = OpenTK.Graphics.ES20.All.Srgb8Nv; - var _SrgbAlphaExt = OpenTK.Graphics.ES20.All.SrgbAlphaExt; - var _Srgb8Alpha8Ext = OpenTK.Graphics.ES20.All.Srgb8Alpha8Ext; - var _SluminanceAlphaNv = OpenTK.Graphics.ES20.All.SluminanceAlphaNv; - var _Sluminance8Alpha8Nv = OpenTK.Graphics.ES20.All.Sluminance8Alpha8Nv; - var _SluminanceNv = OpenTK.Graphics.ES20.All.SluminanceNv; - var _Sluminance8Nv = OpenTK.Graphics.ES20.All.Sluminance8Nv; - var _CompressedSrgbS3tcDxt1Nv = OpenTK.Graphics.ES20.All.CompressedSrgbS3tcDxt1Nv; - var _CompressedSrgbAlphaS3tcDxt1Nv = OpenTK.Graphics.ES20.All.CompressedSrgbAlphaS3tcDxt1Nv; - var _CompressedSrgbAlphaS3tcDxt3Nv = OpenTK.Graphics.ES20.All.CompressedSrgbAlphaS3tcDxt3Nv; - var _CompressedSrgbAlphaS3tcDxt5Nv = OpenTK.Graphics.ES20.All.CompressedSrgbAlphaS3tcDxt5Nv; - var _PrimitivesGeneratedExt = OpenTK.Graphics.ES20.All.PrimitivesGeneratedExt; - var _AtcRgbAmd = OpenTK.Graphics.ES20.All.AtcRgbAmd; - var _AtcRgbaExplicitAlphaAmd = OpenTK.Graphics.ES20.All.AtcRgbaExplicitAlphaAmd; - var _StencilBackRef = OpenTK.Graphics.ES20.All.StencilBackRef; - var _StencilBackValueMask = OpenTK.Graphics.ES20.All.StencilBackValueMask; - var _StencilBackWritemask = OpenTK.Graphics.ES20.All.StencilBackWritemask; - var _DrawFramebufferBindingAngle = OpenTK.Graphics.ES20.All.DrawFramebufferBindingAngle; - var _DrawFramebufferBindingApple = OpenTK.Graphics.ES20.All.DrawFramebufferBindingApple; - var _DrawFramebufferBindingNv = OpenTK.Graphics.ES20.All.DrawFramebufferBindingNv; - var _FramebufferBinding = OpenTK.Graphics.ES20.All.FramebufferBinding; - var _RenderbufferBinding = OpenTK.Graphics.ES20.All.RenderbufferBinding; - var _ReadFramebufferAngle = OpenTK.Graphics.ES20.All.ReadFramebufferAngle; - var _ReadFramebufferApple = OpenTK.Graphics.ES20.All.ReadFramebufferApple; - var _ReadFramebufferNv = OpenTK.Graphics.ES20.All.ReadFramebufferNv; - var _DrawFramebufferAngle = OpenTK.Graphics.ES20.All.DrawFramebufferAngle; - var _DrawFramebufferApple = OpenTK.Graphics.ES20.All.DrawFramebufferApple; - var _DrawFramebufferNv = OpenTK.Graphics.ES20.All.DrawFramebufferNv; - var _ReadFramebufferBindingAngle = OpenTK.Graphics.ES20.All.ReadFramebufferBindingAngle; - var _ReadFramebufferBindingApple = OpenTK.Graphics.ES20.All.ReadFramebufferBindingApple; - var _ReadFramebufferBindingNv = OpenTK.Graphics.ES20.All.ReadFramebufferBindingNv; - var _RenderbufferSamplesAngle = OpenTK.Graphics.ES20.All.RenderbufferSamplesAngle; - var _RenderbufferSamplesApple = OpenTK.Graphics.ES20.All.RenderbufferSamplesApple; - var _RenderbufferSamplesExt = OpenTK.Graphics.ES20.All.RenderbufferSamplesExt; - var _RenderbufferSamplesNv = OpenTK.Graphics.ES20.All.RenderbufferSamplesNv; - var _FramebufferAttachmentObjectType = OpenTK.Graphics.ES20.All.FramebufferAttachmentObjectType; - var _FramebufferAttachmentObjectName = OpenTK.Graphics.ES20.All.FramebufferAttachmentObjectName; - var _FramebufferAttachmentTextureLevel = OpenTK.Graphics.ES20.All.FramebufferAttachmentTextureLevel; - var _FramebufferAttachmentTextureCubeMapFace = OpenTK.Graphics.ES20.All.FramebufferAttachmentTextureCubeMapFace; - var _FramebufferAttachmentTexture3DZoffsetOes = OpenTK.Graphics.ES20.All.FramebufferAttachmentTexture3DZoffsetOes; - var _FramebufferComplete = OpenTK.Graphics.ES20.All.FramebufferComplete; - var _FramebufferIncompleteAttachment = OpenTK.Graphics.ES20.All.FramebufferIncompleteAttachment; - var _FramebufferIncompleteMissingAttachment = OpenTK.Graphics.ES20.All.FramebufferIncompleteMissingAttachment; - var _FramebufferIncompleteDimensions = OpenTK.Graphics.ES20.All.FramebufferIncompleteDimensions; - var _FramebufferUnsupported = OpenTK.Graphics.ES20.All.FramebufferUnsupported; - var _MaxColorAttachmentsExt = OpenTK.Graphics.ES20.All.MaxColorAttachmentsExt; - var _MaxColorAttachmentsNv = OpenTK.Graphics.ES20.All.MaxColorAttachmentsNv; - var _ColorAttachment0 = OpenTK.Graphics.ES20.All.ColorAttachment0; - var _ColorAttachment0Ext = OpenTK.Graphics.ES20.All.ColorAttachment0Ext; - var _ColorAttachment0Nv = OpenTK.Graphics.ES20.All.ColorAttachment0Nv; - var _ColorAttachment1Ext = OpenTK.Graphics.ES20.All.ColorAttachment1Ext; - var _ColorAttachment1Nv = OpenTK.Graphics.ES20.All.ColorAttachment1Nv; - var _ColorAttachment2Ext = OpenTK.Graphics.ES20.All.ColorAttachment2Ext; - var _ColorAttachment2Nv = OpenTK.Graphics.ES20.All.ColorAttachment2Nv; - var _ColorAttachment3Ext = OpenTK.Graphics.ES20.All.ColorAttachment3Ext; - var _ColorAttachment3Nv = OpenTK.Graphics.ES20.All.ColorAttachment3Nv; - var _ColorAttachment4Ext = OpenTK.Graphics.ES20.All.ColorAttachment4Ext; - var _ColorAttachment4Nv = OpenTK.Graphics.ES20.All.ColorAttachment4Nv; - var _ColorAttachment5Ext = OpenTK.Graphics.ES20.All.ColorAttachment5Ext; - var _ColorAttachment5Nv = OpenTK.Graphics.ES20.All.ColorAttachment5Nv; - var _ColorAttachment6Ext = OpenTK.Graphics.ES20.All.ColorAttachment6Ext; - var _ColorAttachment6Nv = OpenTK.Graphics.ES20.All.ColorAttachment6Nv; - var _ColorAttachment7Ext = OpenTK.Graphics.ES20.All.ColorAttachment7Ext; - var _ColorAttachment7Nv = OpenTK.Graphics.ES20.All.ColorAttachment7Nv; - var _ColorAttachment8Ext = OpenTK.Graphics.ES20.All.ColorAttachment8Ext; - var _ColorAttachment8Nv = OpenTK.Graphics.ES20.All.ColorAttachment8Nv; - var _ColorAttachment9Ext = OpenTK.Graphics.ES20.All.ColorAttachment9Ext; - var _ColorAttachment9Nv = OpenTK.Graphics.ES20.All.ColorAttachment9Nv; - var _ColorAttachment10Ext = OpenTK.Graphics.ES20.All.ColorAttachment10Ext; - var _ColorAttachment10Nv = OpenTK.Graphics.ES20.All.ColorAttachment10Nv; - var _ColorAttachment11Ext = OpenTK.Graphics.ES20.All.ColorAttachment11Ext; - var _ColorAttachment11Nv = OpenTK.Graphics.ES20.All.ColorAttachment11Nv; - var _ColorAttachment12Ext = OpenTK.Graphics.ES20.All.ColorAttachment12Ext; - var _ColorAttachment12Nv = OpenTK.Graphics.ES20.All.ColorAttachment12Nv; - var _ColorAttachment13Ext = OpenTK.Graphics.ES20.All.ColorAttachment13Ext; - var _ColorAttachment13Nv = OpenTK.Graphics.ES20.All.ColorAttachment13Nv; - var _ColorAttachment14Ext = OpenTK.Graphics.ES20.All.ColorAttachment14Ext; - var _ColorAttachment14Nv = OpenTK.Graphics.ES20.All.ColorAttachment14Nv; - var _ColorAttachment15Ext = OpenTK.Graphics.ES20.All.ColorAttachment15Ext; - var _ColorAttachment15Nv = OpenTK.Graphics.ES20.All.ColorAttachment15Nv; - var _DepthAttachment = OpenTK.Graphics.ES20.All.DepthAttachment; - var _StencilAttachment = OpenTK.Graphics.ES20.All.StencilAttachment; - var _Framebuffer = OpenTK.Graphics.ES20.All.Framebuffer; - var _Renderbuffer = OpenTK.Graphics.ES20.All.Renderbuffer; - var _RenderbufferWidth = OpenTK.Graphics.ES20.All.RenderbufferWidth; - var _RenderbufferHeight = OpenTK.Graphics.ES20.All.RenderbufferHeight; - var _RenderbufferInternalFormat = OpenTK.Graphics.ES20.All.RenderbufferInternalFormat; - var _StencilIndex1Oes = OpenTK.Graphics.ES20.All.StencilIndex1Oes; - var _StencilIndex4Oes = OpenTK.Graphics.ES20.All.StencilIndex4Oes; - var _StencilIndex8 = OpenTK.Graphics.ES20.All.StencilIndex8; - var _StencilIndex8Oes = OpenTK.Graphics.ES20.All.StencilIndex8Oes; - var _RenderbufferRedSize = OpenTK.Graphics.ES20.All.RenderbufferRedSize; - var _RenderbufferGreenSize = OpenTK.Graphics.ES20.All.RenderbufferGreenSize; - var _RenderbufferBlueSize = OpenTK.Graphics.ES20.All.RenderbufferBlueSize; - var _RenderbufferAlphaSize = OpenTK.Graphics.ES20.All.RenderbufferAlphaSize; - var _RenderbufferDepthSize = OpenTK.Graphics.ES20.All.RenderbufferDepthSize; - var _RenderbufferStencilSize = OpenTK.Graphics.ES20.All.RenderbufferStencilSize; - var _FramebufferIncompleteMultisampleAngle = OpenTK.Graphics.ES20.All.FramebufferIncompleteMultisampleAngle; - var _FramebufferIncompleteMultisampleApple = OpenTK.Graphics.ES20.All.FramebufferIncompleteMultisampleApple; - var _FramebufferIncompleteMultisampleExt = OpenTK.Graphics.ES20.All.FramebufferIncompleteMultisampleExt; - var _FramebufferIncompleteMultisampleNv = OpenTK.Graphics.ES20.All.FramebufferIncompleteMultisampleNv; - var _MaxSamplesAngle = OpenTK.Graphics.ES20.All.MaxSamplesAngle; - var _MaxSamplesApple = OpenTK.Graphics.ES20.All.MaxSamplesApple; - var _MaxSamplesExt = OpenTK.Graphics.ES20.All.MaxSamplesExt; - var _MaxSamplesNv = OpenTK.Graphics.ES20.All.MaxSamplesNv; - var _HalfFloatOes = OpenTK.Graphics.ES20.All.HalfFloatOes; - var _Rgb565Oes = OpenTK.Graphics.ES20.All.Rgb565Oes; - var _Rgb565 = OpenTK.Graphics.ES20.All.Rgb565; - var _Etc1Rgb8Oes = OpenTK.Graphics.ES20.All.Etc1Rgb8Oes; - var _TextureExternalOes = OpenTK.Graphics.ES20.All.TextureExternalOes; - var _SamplerExternalOes = OpenTK.Graphics.ES20.All.SamplerExternalOes; - var _TextureBindingExternalOes = OpenTK.Graphics.ES20.All.TextureBindingExternalOes; - var _RequiredTextureImageUnitsOes = OpenTK.Graphics.ES20.All.RequiredTextureImageUnitsOes; - var _AnySamplesPassedConservativeExt = OpenTK.Graphics.ES20.All.AnySamplesPassedConservativeExt; - var _FramebufferAttachmentTextureSamplesExt = OpenTK.Graphics.ES20.All.FramebufferAttachmentTextureSamplesExt; - var _FramebufferAttachmentLayeredExt = OpenTK.Graphics.ES20.All.FramebufferAttachmentLayeredExt; - var _FramebufferIncompleteLayerTargetsExt = OpenTK.Graphics.ES20.All.FramebufferIncompleteLayerTargetsExt; - var _FramebufferSrgbExt = OpenTK.Graphics.ES20.All.FramebufferSrgbExt; - var _SamplerBufferExt = OpenTK.Graphics.ES20.All.SamplerBufferExt; - var _Sampler2DArrayShadowNv = OpenTK.Graphics.ES20.All.Sampler2DArrayShadowNv; - var _SamplerCubeShadowNv = OpenTK.Graphics.ES20.All.SamplerCubeShadowNv; - var _IntSamplerBufferExt = OpenTK.Graphics.ES20.All.IntSamplerBufferExt; - var _UnsignedIntSamplerBufferExt = OpenTK.Graphics.ES20.All.UnsignedIntSamplerBufferExt; - var _GeometryShaderExt = OpenTK.Graphics.ES20.All.GeometryShaderExt; - var _MaxGeometryUniformComponentsExt = OpenTK.Graphics.ES20.All.MaxGeometryUniformComponentsExt; - var _MaxGeometryOutputVerticesExt = OpenTK.Graphics.ES20.All.MaxGeometryOutputVerticesExt; - var _MaxGeometryTotalOutputComponentsExt = OpenTK.Graphics.ES20.All.MaxGeometryTotalOutputComponentsExt; - var _LowFloat = OpenTK.Graphics.ES20.All.LowFloat; - var _MediumFloat = OpenTK.Graphics.ES20.All.MediumFloat; - var _HighFloat = OpenTK.Graphics.ES20.All.HighFloat; - var _LowInt = OpenTK.Graphics.ES20.All.LowInt; - var _MediumInt = OpenTK.Graphics.ES20.All.MediumInt; - var _HighInt = OpenTK.Graphics.ES20.All.HighInt; - var _UnsignedInt1010102Oes = OpenTK.Graphics.ES20.All.UnsignedInt1010102Oes; - var _Int1010102Oes = OpenTK.Graphics.ES20.All.Int1010102Oes; - var _ShaderBinaryFormats = OpenTK.Graphics.ES20.All.ShaderBinaryFormats; - var _NumShaderBinaryFormats = OpenTK.Graphics.ES20.All.NumShaderBinaryFormats; - var _ShaderCompiler = OpenTK.Graphics.ES20.All.ShaderCompiler; - var _MaxVertexUniformVectors = OpenTK.Graphics.ES20.All.MaxVertexUniformVectors; - var _MaxVaryingVectors = OpenTK.Graphics.ES20.All.MaxVaryingVectors; - var _MaxFragmentUniformVectors = OpenTK.Graphics.ES20.All.MaxFragmentUniformVectors; - var _MaxCombinedTessControlUniformComponentsExt = OpenTK.Graphics.ES20.All.MaxCombinedTessControlUniformComponentsExt; - var _MaxCombinedTessEvaluationUniformComponentsExt = OpenTK.Graphics.ES20.All.MaxCombinedTessEvaluationUniformComponentsExt; - var _TransformFeedback = OpenTK.Graphics.ES20.All.TransformFeedback; - var _TimestampExt = OpenTK.Graphics.ES20.All.TimestampExt; - var _DepthComponent16NonlinearNv = OpenTK.Graphics.ES20.All.DepthComponent16NonlinearNv; - var _FirstVertexConventionExt = OpenTK.Graphics.ES20.All.FirstVertexConventionExt; - var _LastVertexConventionExt = OpenTK.Graphics.ES20.All.LastVertexConventionExt; - var _MaxGeometryShaderInvocationsExt = OpenTK.Graphics.ES20.All.MaxGeometryShaderInvocationsExt; - var _MinFragmentInterpolationOffsetOes = OpenTK.Graphics.ES20.All.MinFragmentInterpolationOffsetOes; - var _MaxFragmentInterpolationOffsetOes = OpenTK.Graphics.ES20.All.MaxFragmentInterpolationOffsetOes; - var _FragmentInterpolationOffsetBitsOes = OpenTK.Graphics.ES20.All.FragmentInterpolationOffsetBitsOes; - var _PatchVerticesExt = OpenTK.Graphics.ES20.All.PatchVerticesExt; - var _TessControlOutputVerticesExt = OpenTK.Graphics.ES20.All.TessControlOutputVerticesExt; - var _TessGenModeExt = OpenTK.Graphics.ES20.All.TessGenModeExt; - var _TessGenSpacingExt = OpenTK.Graphics.ES20.All.TessGenSpacingExt; - var _TessGenVertexOrderExt = OpenTK.Graphics.ES20.All.TessGenVertexOrderExt; - var _TessGenPointModeExt = OpenTK.Graphics.ES20.All.TessGenPointModeExt; - var _IsolinesExt = OpenTK.Graphics.ES20.All.IsolinesExt; - var _FractionalOddExt = OpenTK.Graphics.ES20.All.FractionalOddExt; - var _FractionalEvenExt = OpenTK.Graphics.ES20.All.FractionalEvenExt; - var _MaxPatchVerticesExt = OpenTK.Graphics.ES20.All.MaxPatchVerticesExt; - var _MaxTessGenLevelExt = OpenTK.Graphics.ES20.All.MaxTessGenLevelExt; - var _MaxTessControlUniformComponentsExt = OpenTK.Graphics.ES20.All.MaxTessControlUniformComponentsExt; - var _MaxTessEvaluationUniformComponentsExt = OpenTK.Graphics.ES20.All.MaxTessEvaluationUniformComponentsExt; - var _MaxTessControlTextureImageUnitsExt = OpenTK.Graphics.ES20.All.MaxTessControlTextureImageUnitsExt; - var _MaxTessEvaluationTextureImageUnitsExt = OpenTK.Graphics.ES20.All.MaxTessEvaluationTextureImageUnitsExt; - var _MaxTessControlOutputComponentsExt = OpenTK.Graphics.ES20.All.MaxTessControlOutputComponentsExt; - var _MaxTessPatchComponentsExt = OpenTK.Graphics.ES20.All.MaxTessPatchComponentsExt; - var _MaxTessControlTotalOutputComponentsExt = OpenTK.Graphics.ES20.All.MaxTessControlTotalOutputComponentsExt; - var _MaxTessEvaluationOutputComponentsExt = OpenTK.Graphics.ES20.All.MaxTessEvaluationOutputComponentsExt; - var _TessEvaluationShaderExt = OpenTK.Graphics.ES20.All.TessEvaluationShaderExt; - var _TessControlShaderExt = OpenTK.Graphics.ES20.All.TessControlShaderExt; - var _MaxTessControlUniformBlocksExt = OpenTK.Graphics.ES20.All.MaxTessControlUniformBlocksExt; - var _MaxTessEvaluationUniformBlocksExt = OpenTK.Graphics.ES20.All.MaxTessEvaluationUniformBlocksExt; - var _CoverageComponentNv = OpenTK.Graphics.ES20.All.CoverageComponentNv; - var _CoverageComponent4Nv = OpenTK.Graphics.ES20.All.CoverageComponent4Nv; - var _CoverageAttachmentNv = OpenTK.Graphics.ES20.All.CoverageAttachmentNv; - var _CoverageBuffersNv = OpenTK.Graphics.ES20.All.CoverageBuffersNv; - var _CoverageSamplesNv = OpenTK.Graphics.ES20.All.CoverageSamplesNv; - var _CoverageAllFragmentsNv = OpenTK.Graphics.ES20.All.CoverageAllFragmentsNv; - var _CoverageEdgeFragmentsNv = OpenTK.Graphics.ES20.All.CoverageEdgeFragmentsNv; - var _CoverageAutomaticNv = OpenTK.Graphics.ES20.All.CoverageAutomaticNv; - var _CopyReadBufferNv = OpenTK.Graphics.ES20.All.CopyReadBufferNv; - var _CopyWriteBufferNv = OpenTK.Graphics.ES20.All.CopyWriteBufferNv; - var _MaliShaderBinaryArm = OpenTK.Graphics.ES20.All.MaliShaderBinaryArm; - var _MaliProgramBinaryArm = OpenTK.Graphics.ES20.All.MaliProgramBinaryArm; - var _MaxShaderPixelLocalStorageFastSizeExt = OpenTK.Graphics.ES20.All.MaxShaderPixelLocalStorageFastSizeExt; - var _ShaderPixelLocalStorageExt = OpenTK.Graphics.ES20.All.ShaderPixelLocalStorageExt; - var _FetchPerSampleArm = OpenTK.Graphics.ES20.All.FetchPerSampleArm; - var _FragmentShaderFramebufferFetchMrtArm = OpenTK.Graphics.ES20.All.FragmentShaderFramebufferFetchMrtArm; - var _MaxShaderPixelLocalStorageSizeExt = OpenTK.Graphics.ES20.All.MaxShaderPixelLocalStorageSizeExt; - var _PerfmonGlobalModeQcom = OpenTK.Graphics.ES20.All.PerfmonGlobalModeQcom; - var _BinningControlHintQcom = OpenTK.Graphics.ES20.All.BinningControlHintQcom; - var _CpuOptimizedQcom = OpenTK.Graphics.ES20.All.CpuOptimizedQcom; - var _GpuOptimizedQcom = OpenTK.Graphics.ES20.All.GpuOptimizedQcom; - var _RenderDirectToFramebufferQcom = OpenTK.Graphics.ES20.All.RenderDirectToFramebufferQcom; - var _GpuDisjointExt = OpenTK.Graphics.ES20.All.GpuDisjointExt; - var _ShaderBinaryViv = OpenTK.Graphics.ES20.All.ShaderBinaryViv; - var _TextureCubeMapArrayExt = OpenTK.Graphics.ES20.All.TextureCubeMapArrayExt; - var _TextureBindingCubeMapArrayExt = OpenTK.Graphics.ES20.All.TextureBindingCubeMapArrayExt; - var _SamplerCubeMapArrayExt = OpenTK.Graphics.ES20.All.SamplerCubeMapArrayExt; - var _SamplerCubeMapArrayShadowExt = OpenTK.Graphics.ES20.All.SamplerCubeMapArrayShadowExt; - var _IntSamplerCubeMapArrayExt = OpenTK.Graphics.ES20.All.IntSamplerCubeMapArrayExt; - var _UnsignedIntSamplerCubeMapArrayExt = OpenTK.Graphics.ES20.All.UnsignedIntSamplerCubeMapArrayExt; - var _ImageBufferExt = OpenTK.Graphics.ES20.All.ImageBufferExt; - var _ImageCubeMapArrayExt = OpenTK.Graphics.ES20.All.ImageCubeMapArrayExt; - var _IntImageBufferExt = OpenTK.Graphics.ES20.All.IntImageBufferExt; - var _IntImageCubeMapArrayExt = OpenTK.Graphics.ES20.All.IntImageCubeMapArrayExt; - var _UnsignedIntImageBufferExt = OpenTK.Graphics.ES20.All.UnsignedIntImageBufferExt; - var _UnsignedIntImageCubeMapArrayExt = OpenTK.Graphics.ES20.All.UnsignedIntImageCubeMapArrayExt; - var _MaxTessControlImageUniformsExt = OpenTK.Graphics.ES20.All.MaxTessControlImageUniformsExt; - var _MaxTessEvaluationImageUniformsExt = OpenTK.Graphics.ES20.All.MaxTessEvaluationImageUniformsExt; - var _MaxGeometryImageUniformsExt = OpenTK.Graphics.ES20.All.MaxGeometryImageUniformsExt; - var _MaxGeometryShaderStorageBlocksExt = OpenTK.Graphics.ES20.All.MaxGeometryShaderStorageBlocksExt; - var _MaxTessControlShaderStorageBlocksExt = OpenTK.Graphics.ES20.All.MaxTessControlShaderStorageBlocksExt; - var _MaxTessEvaluationShaderStorageBlocksExt = OpenTK.Graphics.ES20.All.MaxTessEvaluationShaderStorageBlocksExt; - var _ColorAttachmentExt = OpenTK.Graphics.ES20.All.ColorAttachmentExt; - var _MultiviewExt = OpenTK.Graphics.ES20.All.MultiviewExt; - var _MaxMultiviewBuffersExt = OpenTK.Graphics.ES20.All.MaxMultiviewBuffersExt; - var _ContextRobustAccessExt = OpenTK.Graphics.ES20.All.ContextRobustAccessExt; - var _Texture2DMultisampleArrayOes = OpenTK.Graphics.ES20.All.Texture2DMultisampleArrayOes; - var _TextureBinding2DMultisampleArrayOes = OpenTK.Graphics.ES20.All.TextureBinding2DMultisampleArrayOes; - var _Sampler2DMultisampleArrayOes = OpenTK.Graphics.ES20.All.Sampler2DMultisampleArrayOes; - var _IntSampler2DMultisampleArrayOes = OpenTK.Graphics.ES20.All.IntSampler2DMultisampleArrayOes; - var _UnsignedIntSampler2DMultisampleArrayOes = OpenTK.Graphics.ES20.All.UnsignedIntSampler2DMultisampleArrayOes; - var _MaxServerWaitTimeoutApple = OpenTK.Graphics.ES20.All.MaxServerWaitTimeoutApple; - var _ObjectTypeApple = OpenTK.Graphics.ES20.All.ObjectTypeApple; - var _SyncConditionApple = OpenTK.Graphics.ES20.All.SyncConditionApple; - var _SyncStatusApple = OpenTK.Graphics.ES20.All.SyncStatusApple; - var _SyncFlagsApple = OpenTK.Graphics.ES20.All.SyncFlagsApple; - var _SyncFenceApple = OpenTK.Graphics.ES20.All.SyncFenceApple; - var _SyncGpuCommandsCompleteApple = OpenTK.Graphics.ES20.All.SyncGpuCommandsCompleteApple; - var _UnsignaledApple = OpenTK.Graphics.ES20.All.UnsignaledApple; - var _SignaledApple = OpenTK.Graphics.ES20.All.SignaledApple; - var _AlreadySignaledApple = OpenTK.Graphics.ES20.All.AlreadySignaledApple; - var _TimeoutExpiredApple = OpenTK.Graphics.ES20.All.TimeoutExpiredApple; - var _ConditionSatisfiedApple = OpenTK.Graphics.ES20.All.ConditionSatisfiedApple; - var _WaitFailedApple = OpenTK.Graphics.ES20.All.WaitFailedApple; - var _MaxGeometryInputComponentsExt = OpenTK.Graphics.ES20.All.MaxGeometryInputComponentsExt; - var _MaxGeometryOutputComponentsExt = OpenTK.Graphics.ES20.All.MaxGeometryOutputComponentsExt; - var _TextureImmutableFormatExt = OpenTK.Graphics.ES20.All.TextureImmutableFormatExt; - var _SgxProgramBinaryImg = OpenTK.Graphics.ES20.All.SgxProgramBinaryImg; - var _RenderbufferSamplesImg = OpenTK.Graphics.ES20.All.RenderbufferSamplesImg; - var _FramebufferIncompleteMultisampleImg = OpenTK.Graphics.ES20.All.FramebufferIncompleteMultisampleImg; - var _MaxSamplesImg = OpenTK.Graphics.ES20.All.MaxSamplesImg; - var _TextureSamplesImg = OpenTK.Graphics.ES20.All.TextureSamplesImg; - var _CompressedRgbaPvrtc2Bppv2Img = OpenTK.Graphics.ES20.All.CompressedRgbaPvrtc2Bppv2Img; - var _CompressedRgbaPvrtc4Bppv2Img = OpenTK.Graphics.ES20.All.CompressedRgbaPvrtc4Bppv2Img; - var _MaxDebugMessageLength = OpenTK.Graphics.ES20.All.MaxDebugMessageLength; - var _MaxDebugMessageLengthKhr = OpenTK.Graphics.ES20.All.MaxDebugMessageLengthKhr; - var _MaxDebugLoggedMessages = OpenTK.Graphics.ES20.All.MaxDebugLoggedMessages; - var _MaxDebugLoggedMessagesKhr = OpenTK.Graphics.ES20.All.MaxDebugLoggedMessagesKhr; - var _DebugLoggedMessages = OpenTK.Graphics.ES20.All.DebugLoggedMessages; - var _DebugLoggedMessagesKhr = OpenTK.Graphics.ES20.All.DebugLoggedMessagesKhr; - var _DebugSeverityHigh = OpenTK.Graphics.ES20.All.DebugSeverityHigh; - var _DebugSeverityHighKhr = OpenTK.Graphics.ES20.All.DebugSeverityHighKhr; - var _DebugSeverityMedium = OpenTK.Graphics.ES20.All.DebugSeverityMedium; - var _DebugSeverityMediumKhr = OpenTK.Graphics.ES20.All.DebugSeverityMediumKhr; - var _DebugSeverityLow = OpenTK.Graphics.ES20.All.DebugSeverityLow; - var _DebugSeverityLowKhr = OpenTK.Graphics.ES20.All.DebugSeverityLowKhr; - var _BufferObjectExt = OpenTK.Graphics.ES20.All.BufferObjectExt; - var _QueryObjectExt = OpenTK.Graphics.ES20.All.QueryObjectExt; - var _VertexArrayObjectExt = OpenTK.Graphics.ES20.All.VertexArrayObjectExt; - var _TextureBufferOffsetExt = OpenTK.Graphics.ES20.All.TextureBufferOffsetExt; - var _TextureBufferSizeExt = OpenTK.Graphics.ES20.All.TextureBufferSizeExt; - var _TextureBufferOffsetAlignmentExt = OpenTK.Graphics.ES20.All.TextureBufferOffsetAlignmentExt; - var _ShaderBinaryDmp = OpenTK.Graphics.ES20.All.ShaderBinaryDmp; - var _GccsoShaderBinaryFj = OpenTK.Graphics.ES20.All.GccsoShaderBinaryFj; - var _BlendPremultipliedSrcNv = OpenTK.Graphics.ES20.All.BlendPremultipliedSrcNv; - var _BlendOverlapNv = OpenTK.Graphics.ES20.All.BlendOverlapNv; - var _UncorrelatedNv = OpenTK.Graphics.ES20.All.UncorrelatedNv; - var _DisjointNv = OpenTK.Graphics.ES20.All.DisjointNv; - var _ConjointNv = OpenTK.Graphics.ES20.All.ConjointNv; - var _BlendAdvancedCoherentKhr = OpenTK.Graphics.ES20.All.BlendAdvancedCoherentKhr; - var _BlendAdvancedCoherentNv = OpenTK.Graphics.ES20.All.BlendAdvancedCoherentNv; - var _SrcNv = OpenTK.Graphics.ES20.All.SrcNv; - var _DstNv = OpenTK.Graphics.ES20.All.DstNv; - var _SrcOverNv = OpenTK.Graphics.ES20.All.SrcOverNv; - var _DstOverNv = OpenTK.Graphics.ES20.All.DstOverNv; - var _SrcInNv = OpenTK.Graphics.ES20.All.SrcInNv; - var _DstInNv = OpenTK.Graphics.ES20.All.DstInNv; - var _SrcOutNv = OpenTK.Graphics.ES20.All.SrcOutNv; - var _DstOutNv = OpenTK.Graphics.ES20.All.DstOutNv; - var _SrcAtopNv = OpenTK.Graphics.ES20.All.SrcAtopNv; - var _DstAtopNv = OpenTK.Graphics.ES20.All.DstAtopNv; - var _PlusNv = OpenTK.Graphics.ES20.All.PlusNv; - var _PlusDarkerNv = OpenTK.Graphics.ES20.All.PlusDarkerNv; - var _MultiplyKhr = OpenTK.Graphics.ES20.All.MultiplyKhr; - var _MultiplyNv = OpenTK.Graphics.ES20.All.MultiplyNv; - var _ScreenKhr = OpenTK.Graphics.ES20.All.ScreenKhr; - var _ScreenNv = OpenTK.Graphics.ES20.All.ScreenNv; - var _OverlayKhr = OpenTK.Graphics.ES20.All.OverlayKhr; - var _OverlayNv = OpenTK.Graphics.ES20.All.OverlayNv; - var _DarkenKhr = OpenTK.Graphics.ES20.All.DarkenKhr; - var _DarkenNv = OpenTK.Graphics.ES20.All.DarkenNv; - var _LightenKhr = OpenTK.Graphics.ES20.All.LightenKhr; - var _LightenNv = OpenTK.Graphics.ES20.All.LightenNv; - var _ColordodgeKhr = OpenTK.Graphics.ES20.All.ColordodgeKhr; - var _ColordodgeNv = OpenTK.Graphics.ES20.All.ColordodgeNv; - var _ColorburnKhr = OpenTK.Graphics.ES20.All.ColorburnKhr; - var _ColorburnNv = OpenTK.Graphics.ES20.All.ColorburnNv; - var _HardlightKhr = OpenTK.Graphics.ES20.All.HardlightKhr; - var _HardlightNv = OpenTK.Graphics.ES20.All.HardlightNv; - var _SoftlightKhr = OpenTK.Graphics.ES20.All.SoftlightKhr; - var _SoftlightNv = OpenTK.Graphics.ES20.All.SoftlightNv; - var _DifferenceKhr = OpenTK.Graphics.ES20.All.DifferenceKhr; - var _DifferenceNv = OpenTK.Graphics.ES20.All.DifferenceNv; - var _MinusNv = OpenTK.Graphics.ES20.All.MinusNv; - var _ExclusionKhr = OpenTK.Graphics.ES20.All.ExclusionKhr; - var _ExclusionNv = OpenTK.Graphics.ES20.All.ExclusionNv; - var _ContrastNv = OpenTK.Graphics.ES20.All.ContrastNv; - var _InvertRgbNv = OpenTK.Graphics.ES20.All.InvertRgbNv; - var _LineardodgeNv = OpenTK.Graphics.ES20.All.LineardodgeNv; - var _LinearburnNv = OpenTK.Graphics.ES20.All.LinearburnNv; - var _VividlightNv = OpenTK.Graphics.ES20.All.VividlightNv; - var _LinearlightNv = OpenTK.Graphics.ES20.All.LinearlightNv; - var _PinlightNv = OpenTK.Graphics.ES20.All.PinlightNv; - var _HardmixNv = OpenTK.Graphics.ES20.All.HardmixNv; - var _HslHueKhr = OpenTK.Graphics.ES20.All.HslHueKhr; - var _HslHueNv = OpenTK.Graphics.ES20.All.HslHueNv; - var _HslSaturationKhr = OpenTK.Graphics.ES20.All.HslSaturationKhr; - var _HslSaturationNv = OpenTK.Graphics.ES20.All.HslSaturationNv; - var _HslColorKhr = OpenTK.Graphics.ES20.All.HslColorKhr; - var _HslColorNv = OpenTK.Graphics.ES20.All.HslColorNv; - var _HslLuminosityKhr = OpenTK.Graphics.ES20.All.HslLuminosityKhr; - var _HslLuminosityNv = OpenTK.Graphics.ES20.All.HslLuminosityNv; - var _PlusClampedNv = OpenTK.Graphics.ES20.All.PlusClampedNv; - var _PlusClampedAlphaNv = OpenTK.Graphics.ES20.All.PlusClampedAlphaNv; - var _MinusClampedNv = OpenTK.Graphics.ES20.All.MinusClampedNv; - var _InvertOvgNv = OpenTK.Graphics.ES20.All.InvertOvgNv; - var _PrimitiveBoundingBoxExt = OpenTK.Graphics.ES20.All.PrimitiveBoundingBoxExt; - var _MaxTessControlAtomicCounterBuffersExt = OpenTK.Graphics.ES20.All.MaxTessControlAtomicCounterBuffersExt; - var _MaxTessEvaluationAtomicCounterBuffersExt = OpenTK.Graphics.ES20.All.MaxTessEvaluationAtomicCounterBuffersExt; - var _MaxGeometryAtomicCounterBuffersExt = OpenTK.Graphics.ES20.All.MaxGeometryAtomicCounterBuffersExt; - var _MaxTessControlAtomicCountersExt = OpenTK.Graphics.ES20.All.MaxTessControlAtomicCountersExt; - var _MaxTessEvaluationAtomicCountersExt = OpenTK.Graphics.ES20.All.MaxTessEvaluationAtomicCountersExt; - var _MaxGeometryAtomicCountersExt = OpenTK.Graphics.ES20.All.MaxGeometryAtomicCountersExt; - var _DebugOutput = OpenTK.Graphics.ES20.All.DebugOutput; - var _DebugOutputKhr = OpenTK.Graphics.ES20.All.DebugOutputKhr; - var _IsPerPatchExt = OpenTK.Graphics.ES20.All.IsPerPatchExt; - var _ReferencedByTessControlShaderExt = OpenTK.Graphics.ES20.All.ReferencedByTessControlShaderExt; - var _ReferencedByTessEvaluationShaderExt = OpenTK.Graphics.ES20.All.ReferencedByTessEvaluationShaderExt; - var _ReferencedByGeometryShaderExt = OpenTK.Graphics.ES20.All.ReferencedByGeometryShaderExt; - var _FramebufferDefaultLayersExt = OpenTK.Graphics.ES20.All.FramebufferDefaultLayersExt; - var _MaxFramebufferLayersExt = OpenTK.Graphics.ES20.All.MaxFramebufferLayersExt; - var _TranslatedShaderSourceLengthAngle = OpenTK.Graphics.ES20.All.TranslatedShaderSourceLengthAngle; - var _Bgra8Ext = OpenTK.Graphics.ES20.All.Bgra8Ext; - var _TextureUsageAngle = OpenTK.Graphics.ES20.All.TextureUsageAngle; - var _FramebufferAttachmentAngle = OpenTK.Graphics.ES20.All.FramebufferAttachmentAngle; - var _PackReverseRowOrderAngle = OpenTK.Graphics.ES20.All.PackReverseRowOrderAngle; - var _ProgramBinaryAngle = OpenTK.Graphics.ES20.All.ProgramBinaryAngle; - var _CompressedRgbaAstc4X4Khr = OpenTK.Graphics.ES20.All.CompressedRgbaAstc4X4Khr; - var _CompressedRgbaAstc5X4Khr = OpenTK.Graphics.ES20.All.CompressedRgbaAstc5X4Khr; - var _CompressedRgbaAstc5X5Khr = OpenTK.Graphics.ES20.All.CompressedRgbaAstc5X5Khr; - var _CompressedRgbaAstc6X5Khr = OpenTK.Graphics.ES20.All.CompressedRgbaAstc6X5Khr; - var _CompressedRgbaAstc6X6Khr = OpenTK.Graphics.ES20.All.CompressedRgbaAstc6X6Khr; - var _CompressedRgbaAstc8X5Khr = OpenTK.Graphics.ES20.All.CompressedRgbaAstc8X5Khr; - var _CompressedRgbaAstc8X6Khr = OpenTK.Graphics.ES20.All.CompressedRgbaAstc8X6Khr; - var _CompressedRgbaAstc8X8Khr = OpenTK.Graphics.ES20.All.CompressedRgbaAstc8X8Khr; - var _CompressedRgbaAstc10X5Khr = OpenTK.Graphics.ES20.All.CompressedRgbaAstc10X5Khr; - var _CompressedRgbaAstc10X6Khr = OpenTK.Graphics.ES20.All.CompressedRgbaAstc10X6Khr; - var _CompressedRgbaAstc10X8Khr = OpenTK.Graphics.ES20.All.CompressedRgbaAstc10X8Khr; - var _CompressedRgbaAstc10X10Khr = OpenTK.Graphics.ES20.All.CompressedRgbaAstc10X10Khr; - var _CompressedRgbaAstc12X10Khr = OpenTK.Graphics.ES20.All.CompressedRgbaAstc12X10Khr; - var _CompressedRgbaAstc12X12Khr = OpenTK.Graphics.ES20.All.CompressedRgbaAstc12X12Khr; - var _CompressedRgbaAstc3X3x3Oes = OpenTK.Graphics.ES20.All.CompressedRgbaAstc3X3x3Oes; - var _CompressedRgbaAstc4X3x3Oes = OpenTK.Graphics.ES20.All.CompressedRgbaAstc4X3x3Oes; - var _CompressedRgbaAstc4X4x3Oes = OpenTK.Graphics.ES20.All.CompressedRgbaAstc4X4x3Oes; - var _CompressedRgbaAstc4X4x4Oes = OpenTK.Graphics.ES20.All.CompressedRgbaAstc4X4x4Oes; - var _CompressedRgbaAstc5X4x4Oes = OpenTK.Graphics.ES20.All.CompressedRgbaAstc5X4x4Oes; - var _CompressedRgbaAstc5X5x4Oes = OpenTK.Graphics.ES20.All.CompressedRgbaAstc5X5x4Oes; - var _CompressedRgbaAstc5X5x5Oes = OpenTK.Graphics.ES20.All.CompressedRgbaAstc5X5x5Oes; - var _CompressedRgbaAstc6X5x5Oes = OpenTK.Graphics.ES20.All.CompressedRgbaAstc6X5x5Oes; - var _CompressedRgbaAstc6X6x5Oes = OpenTK.Graphics.ES20.All.CompressedRgbaAstc6X6x5Oes; - var _CompressedRgbaAstc6X6x6Oes = OpenTK.Graphics.ES20.All.CompressedRgbaAstc6X6x6Oes; - var _CompressedSrgb8Alpha8Astc4X4Khr = OpenTK.Graphics.ES20.All.CompressedSrgb8Alpha8Astc4X4Khr; - var _CompressedSrgb8Alpha8Astc5X4Khr = OpenTK.Graphics.ES20.All.CompressedSrgb8Alpha8Astc5X4Khr; - var _CompressedSrgb8Alpha8Astc5X5Khr = OpenTK.Graphics.ES20.All.CompressedSrgb8Alpha8Astc5X5Khr; - var _CompressedSrgb8Alpha8Astc6X5Khr = OpenTK.Graphics.ES20.All.CompressedSrgb8Alpha8Astc6X5Khr; - var _CompressedSrgb8Alpha8Astc6X6Khr = OpenTK.Graphics.ES20.All.CompressedSrgb8Alpha8Astc6X6Khr; - var _CompressedSrgb8Alpha8Astc8X5Khr = OpenTK.Graphics.ES20.All.CompressedSrgb8Alpha8Astc8X5Khr; - var _CompressedSrgb8Alpha8Astc8X6Khr = OpenTK.Graphics.ES20.All.CompressedSrgb8Alpha8Astc8X6Khr; - var _CompressedSrgb8Alpha8Astc8X8Khr = OpenTK.Graphics.ES20.All.CompressedSrgb8Alpha8Astc8X8Khr; - var _CompressedSrgb8Alpha8Astc10X5Khr = OpenTK.Graphics.ES20.All.CompressedSrgb8Alpha8Astc10X5Khr; - var _CompressedSrgb8Alpha8Astc10X6Khr = OpenTK.Graphics.ES20.All.CompressedSrgb8Alpha8Astc10X6Khr; - var _CompressedSrgb8Alpha8Astc10X8Khr = OpenTK.Graphics.ES20.All.CompressedSrgb8Alpha8Astc10X8Khr; - var _CompressedSrgb8Alpha8Astc10X10Khr = OpenTK.Graphics.ES20.All.CompressedSrgb8Alpha8Astc10X10Khr; - var _CompressedSrgb8Alpha8Astc12X10Khr = OpenTK.Graphics.ES20.All.CompressedSrgb8Alpha8Astc12X10Khr; - var _CompressedSrgb8Alpha8Astc12X12Khr = OpenTK.Graphics.ES20.All.CompressedSrgb8Alpha8Astc12X12Khr; - var _CompressedSrgb8Alpha8Astc3X3x3Oes = OpenTK.Graphics.ES20.All.CompressedSrgb8Alpha8Astc3X3x3Oes; - var _CompressedSrgb8Alpha8Astc4X3x3Oes = OpenTK.Graphics.ES20.All.CompressedSrgb8Alpha8Astc4X3x3Oes; - var _CompressedSrgb8Alpha8Astc4X4x3Oes = OpenTK.Graphics.ES20.All.CompressedSrgb8Alpha8Astc4X4x3Oes; - var _CompressedSrgb8Alpha8Astc4X4x4Oes = OpenTK.Graphics.ES20.All.CompressedSrgb8Alpha8Astc4X4x4Oes; - var _CompressedSrgb8Alpha8Astc5X4x4Oes = OpenTK.Graphics.ES20.All.CompressedSrgb8Alpha8Astc5X4x4Oes; - var _CompressedSrgb8Alpha8Astc5X5x4Oes = OpenTK.Graphics.ES20.All.CompressedSrgb8Alpha8Astc5X5x4Oes; - var _CompressedSrgb8Alpha8Astc5X5x5Oes = OpenTK.Graphics.ES20.All.CompressedSrgb8Alpha8Astc5X5x5Oes; - var _CompressedSrgb8Alpha8Astc6X5x5Oes = OpenTK.Graphics.ES20.All.CompressedSrgb8Alpha8Astc6X5x5Oes; - var _CompressedSrgb8Alpha8Astc6X6x5Oes = OpenTK.Graphics.ES20.All.CompressedSrgb8Alpha8Astc6X6x5Oes; - var _CompressedSrgb8Alpha8Astc6X6x6Oes = OpenTK.Graphics.ES20.All.CompressedSrgb8Alpha8Astc6X6x6Oes; - var _CompressedSrgbAlphaPvrtc2Bppv2Img = OpenTK.Graphics.ES20.All.CompressedSrgbAlphaPvrtc2Bppv2Img; - var _CompressedSrgbAlphaPvrtc4Bppv2Img = OpenTK.Graphics.ES20.All.CompressedSrgbAlphaPvrtc4Bppv2Img; - var _PerfqueryCounterEventIntel = OpenTK.Graphics.ES20.All.PerfqueryCounterEventIntel; - var _PerfqueryCounterDurationNormIntel = OpenTK.Graphics.ES20.All.PerfqueryCounterDurationNormIntel; - var _PerfqueryCounterDurationRawIntel = OpenTK.Graphics.ES20.All.PerfqueryCounterDurationRawIntel; - var _PerfqueryCounterThroughputIntel = OpenTK.Graphics.ES20.All.PerfqueryCounterThroughputIntel; - var _PerfqueryCounterRawIntel = OpenTK.Graphics.ES20.All.PerfqueryCounterRawIntel; - var _PerfqueryCounterTimestampIntel = OpenTK.Graphics.ES20.All.PerfqueryCounterTimestampIntel; - var _PerfqueryCounterDataUint32Intel = OpenTK.Graphics.ES20.All.PerfqueryCounterDataUint32Intel; - var _PerfqueryCounterDataUint64Intel = OpenTK.Graphics.ES20.All.PerfqueryCounterDataUint64Intel; - var _PerfqueryCounterDataFloatIntel = OpenTK.Graphics.ES20.All.PerfqueryCounterDataFloatIntel; - var _PerfqueryCounterDataDoubleIntel = OpenTK.Graphics.ES20.All.PerfqueryCounterDataDoubleIntel; - var _PerfqueryCounterDataBool32Intel = OpenTK.Graphics.ES20.All.PerfqueryCounterDataBool32Intel; - var _PerfqueryQueryNameLengthMaxIntel = OpenTK.Graphics.ES20.All.PerfqueryQueryNameLengthMaxIntel; - var _PerfqueryCounterNameLengthMaxIntel = OpenTK.Graphics.ES20.All.PerfqueryCounterNameLengthMaxIntel; - var _PerfqueryCounterDescLengthMaxIntel = OpenTK.Graphics.ES20.All.PerfqueryCounterDescLengthMaxIntel; - var _PerfqueryGpaExtendedCountersIntel = OpenTK.Graphics.ES20.All.PerfqueryGpaExtendedCountersIntel; - var _AllAttribBits = OpenTK.Graphics.ES20.All.AllAttribBits; - var _AllBarrierBits = OpenTK.Graphics.ES20.All.AllBarrierBits; - var _AllBarrierBitsExt = OpenTK.Graphics.ES20.All.AllBarrierBitsExt; - var _AllShaderBits = OpenTK.Graphics.ES20.All.AllShaderBits; - var _AllShaderBitsExt = OpenTK.Graphics.ES20.All.AllShaderBitsExt; - var _ClientAllAttribBits = OpenTK.Graphics.ES20.All.ClientAllAttribBits; - var _QueryAllEventBitsAmd = OpenTK.Graphics.ES20.All.QueryAllEventBitsAmd; - var _TimeoutIgnoredApple = OpenTK.Graphics.ES20.All.TimeoutIgnoredApple; - var _LayoutLinearIntel = OpenTK.Graphics.ES20.All.LayoutLinearIntel; - var _One = OpenTK.Graphics.ES20.All.One; - var _True = OpenTK.Graphics.ES20.All.True; - var _LayoutLinearCpuCachedIntel = OpenTK.Graphics.ES20.All.LayoutLinearCpuCachedIntel; -} -static void Test_AlphaFunction_38081() { - var _Never = OpenTK.Graphics.ES20.AlphaFunction.Never; - var _Less = OpenTK.Graphics.ES20.AlphaFunction.Less; - var _Equal = OpenTK.Graphics.ES20.AlphaFunction.Equal; - var _Lequal = OpenTK.Graphics.ES20.AlphaFunction.Lequal; - var _Greater = OpenTK.Graphics.ES20.AlphaFunction.Greater; - var _Notequal = OpenTK.Graphics.ES20.AlphaFunction.Notequal; - var _Gequal = OpenTK.Graphics.ES20.AlphaFunction.Gequal; - var _Always = OpenTK.Graphics.ES20.AlphaFunction.Always; -} -static void Test_AmdCompressed3DcTexture_38082() { - var _Gl3DcXAmd = OpenTK.Graphics.ES20.AmdCompressed3DcTexture.Gl3DcXAmd; - var _Gl3DcXyAmd = OpenTK.Graphics.ES20.AmdCompressed3DcTexture.Gl3DcXyAmd; -} -static void Test_AmdCompressedAtcTexture_38083() { - var _AtcRgbaInterpolatedAlphaAmd = OpenTK.Graphics.ES20.AmdCompressedAtcTexture.AtcRgbaInterpolatedAlphaAmd; - var _AtcRgbAmd = OpenTK.Graphics.ES20.AmdCompressedAtcTexture.AtcRgbAmd; - var _AtcRgbaExplicitAlphaAmd = OpenTK.Graphics.ES20.AmdCompressedAtcTexture.AtcRgbaExplicitAlphaAmd; -} -static void Test_AmdPerformanceMonitor_38084() { - var _CounterTypeAmd = OpenTK.Graphics.ES20.AmdPerformanceMonitor.CounterTypeAmd; - var _CounterRangeAmd = OpenTK.Graphics.ES20.AmdPerformanceMonitor.CounterRangeAmd; - var _UnsignedInt64Amd = OpenTK.Graphics.ES20.AmdPerformanceMonitor.UnsignedInt64Amd; - var _PercentageAmd = OpenTK.Graphics.ES20.AmdPerformanceMonitor.PercentageAmd; - var _PerfmonResultAvailableAmd = OpenTK.Graphics.ES20.AmdPerformanceMonitor.PerfmonResultAvailableAmd; - var _PerfmonResultSizeAmd = OpenTK.Graphics.ES20.AmdPerformanceMonitor.PerfmonResultSizeAmd; - var _PerfmonResultAmd = OpenTK.Graphics.ES20.AmdPerformanceMonitor.PerfmonResultAmd; -} -static void Test_AmdProgramBinaryZ400_38085() { - var _Z400BinaryAmd = OpenTK.Graphics.ES20.AmdProgramBinaryZ400.Z400BinaryAmd; -} -static void Test_AndroidExtensionPackEs31a_38086() { -} -static void Test_AngleDepthTexture_38087() { - var _UnsignedShort = OpenTK.Graphics.ES20.AngleDepthTexture.UnsignedShort; - var _UnsignedInt = OpenTK.Graphics.ES20.AngleDepthTexture.UnsignedInt; - var _DepthComponent = OpenTK.Graphics.ES20.AngleDepthTexture.DepthComponent; - var _DepthComponent16 = OpenTK.Graphics.ES20.AngleDepthTexture.DepthComponent16; - var _DepthComponent32Oes = OpenTK.Graphics.ES20.AngleDepthTexture.DepthComponent32Oes; - var _DepthStencilOes = OpenTK.Graphics.ES20.AngleDepthTexture.DepthStencilOes; - var _UnsignedInt248Oes = OpenTK.Graphics.ES20.AngleDepthTexture.UnsignedInt248Oes; - var _Depth24Stencil8Oes = OpenTK.Graphics.ES20.AngleDepthTexture.Depth24Stencil8Oes; -} -static void Test_AngleFramebufferBlit_38088() { - var _DrawFramebufferBindingAngle = OpenTK.Graphics.ES20.AngleFramebufferBlit.DrawFramebufferBindingAngle; - var _ReadFramebufferAngle = OpenTK.Graphics.ES20.AngleFramebufferBlit.ReadFramebufferAngle; - var _DrawFramebufferAngle = OpenTK.Graphics.ES20.AngleFramebufferBlit.DrawFramebufferAngle; - var _ReadFramebufferBindingAngle = OpenTK.Graphics.ES20.AngleFramebufferBlit.ReadFramebufferBindingAngle; -} -static void Test_AngleFramebufferMultisample_38089() { - var _RenderbufferSamplesAngle = OpenTK.Graphics.ES20.AngleFramebufferMultisample.RenderbufferSamplesAngle; - var _FramebufferIncompleteMultisampleAngle = OpenTK.Graphics.ES20.AngleFramebufferMultisample.FramebufferIncompleteMultisampleAngle; - var _MaxSamplesAngle = OpenTK.Graphics.ES20.AngleFramebufferMultisample.MaxSamplesAngle; -} -static void Test_AngleInstancedArrays_38090() { - var _VertexAttribArrayDivisorAngle = OpenTK.Graphics.ES20.AngleInstancedArrays.VertexAttribArrayDivisorAngle; -} -static void Test_AnglePackReverseRowOrder_38091() { - var _PackReverseRowOrderAngle = OpenTK.Graphics.ES20.AnglePackReverseRowOrder.PackReverseRowOrderAngle; -} -static void Test_AngleProgramBinary_38092() { - var _ProgramBinaryAngle = OpenTK.Graphics.ES20.AngleProgramBinary.ProgramBinaryAngle; -} -static void Test_AngleTextureCompressionDxt3_38093() { - var _CompressedRgbaS3tcDxt3Angle = OpenTK.Graphics.ES20.AngleTextureCompressionDxt3.CompressedRgbaS3tcDxt3Angle; -} -static void Test_AngleTextureCompressionDxt5_38094() { - var _CompressedRgbaS3tcDxt5Angle = OpenTK.Graphics.ES20.AngleTextureCompressionDxt5.CompressedRgbaS3tcDxt5Angle; -} -static void Test_AngleTextureUsage_38095() { - var _TextureUsageAngle = OpenTK.Graphics.ES20.AngleTextureUsage.TextureUsageAngle; - var _FramebufferAttachmentAngle = OpenTK.Graphics.ES20.AngleTextureUsage.FramebufferAttachmentAngle; -} -static void Test_AngleTranslatedShaderSource_38096() { - var _TranslatedShaderSourceLengthAngle = OpenTK.Graphics.ES20.AngleTranslatedShaderSource.TranslatedShaderSourceLengthAngle; -} -static void Test_AppleCopyTextureLevels_38097() { -} -static void Test_AppleFramebufferMultisample_38098() { - var _DrawFramebufferBindingApple = OpenTK.Graphics.ES20.AppleFramebufferMultisample.DrawFramebufferBindingApple; - var _ReadFramebufferApple = OpenTK.Graphics.ES20.AppleFramebufferMultisample.ReadFramebufferApple; - var _DrawFramebufferApple = OpenTK.Graphics.ES20.AppleFramebufferMultisample.DrawFramebufferApple; - var _ReadFramebufferBindingApple = OpenTK.Graphics.ES20.AppleFramebufferMultisample.ReadFramebufferBindingApple; - var _RenderbufferSamplesApple = OpenTK.Graphics.ES20.AppleFramebufferMultisample.RenderbufferSamplesApple; - var _FramebufferIncompleteMultisampleApple = OpenTK.Graphics.ES20.AppleFramebufferMultisample.FramebufferIncompleteMultisampleApple; - var _MaxSamplesApple = OpenTK.Graphics.ES20.AppleFramebufferMultisample.MaxSamplesApple; -} -static void Test_AppleRgb422_38099() { - var _UnsignedShort88Apple = OpenTK.Graphics.ES20.AppleRgb422.UnsignedShort88Apple; - var _UnsignedShort88RevApple = OpenTK.Graphics.ES20.AppleRgb422.UnsignedShort88RevApple; - var _Rgb422Apple = OpenTK.Graphics.ES20.AppleRgb422.Rgb422Apple; - var _RgbRaw422Apple = OpenTK.Graphics.ES20.AppleRgb422.RgbRaw422Apple; -} -static void Test_AppleSync_38100() { - var _SyncFlushCommandsBitApple = OpenTK.Graphics.ES20.AppleSync.SyncFlushCommandsBitApple; - var _SyncObjectApple = OpenTK.Graphics.ES20.AppleSync.SyncObjectApple; - var _MaxServerWaitTimeoutApple = OpenTK.Graphics.ES20.AppleSync.MaxServerWaitTimeoutApple; - var _ObjectTypeApple = OpenTK.Graphics.ES20.AppleSync.ObjectTypeApple; - var _SyncConditionApple = OpenTK.Graphics.ES20.AppleSync.SyncConditionApple; - var _SyncStatusApple = OpenTK.Graphics.ES20.AppleSync.SyncStatusApple; - var _SyncFlagsApple = OpenTK.Graphics.ES20.AppleSync.SyncFlagsApple; - var _SyncFenceApple = OpenTK.Graphics.ES20.AppleSync.SyncFenceApple; - var _SyncGpuCommandsCompleteApple = OpenTK.Graphics.ES20.AppleSync.SyncGpuCommandsCompleteApple; - var _UnsignaledApple = OpenTK.Graphics.ES20.AppleSync.UnsignaledApple; - var _SignaledApple = OpenTK.Graphics.ES20.AppleSync.SignaledApple; - var _AlreadySignaledApple = OpenTK.Graphics.ES20.AppleSync.AlreadySignaledApple; - var _TimeoutExpiredApple = OpenTK.Graphics.ES20.AppleSync.TimeoutExpiredApple; - var _ConditionSatisfiedApple = OpenTK.Graphics.ES20.AppleSync.ConditionSatisfiedApple; - var _WaitFailedApple = OpenTK.Graphics.ES20.AppleSync.WaitFailedApple; - var _TimeoutIgnoredApple = OpenTK.Graphics.ES20.AppleSync.TimeoutIgnoredApple; -} -static void Test_AppleTextureFormatBgra8888_38101() { - var _BgraExt = OpenTK.Graphics.ES20.AppleTextureFormatBgra8888.BgraExt; - var _Bgra8Ext = OpenTK.Graphics.ES20.AppleTextureFormatBgra8888.Bgra8Ext; -} -static void Test_AppleTextureMaxLevel_38102() { - var _TextureMaxLevelApple = OpenTK.Graphics.ES20.AppleTextureMaxLevel.TextureMaxLevelApple; -} -static void Test_ArmMaliProgramBinary_38103() { - var _MaliProgramBinaryArm = OpenTK.Graphics.ES20.ArmMaliProgramBinary.MaliProgramBinaryArm; -} -static void Test_ArmMaliShaderBinary_38104() { - var _MaliShaderBinaryArm = OpenTK.Graphics.ES20.ArmMaliShaderBinary.MaliShaderBinaryArm; -} -static void Test_ArmRgba8_38105() { -} -static void Test_ArmShaderFramebufferFetch_38106() { - var _FetchPerSampleArm = OpenTK.Graphics.ES20.ArmShaderFramebufferFetch.FetchPerSampleArm; - var _FragmentShaderFramebufferFetchMrtArm = OpenTK.Graphics.ES20.ArmShaderFramebufferFetch.FragmentShaderFramebufferFetchMrtArm; -} -static void Test_ArmShaderFramebufferFetchDepthStencil_38107() { -} -static void Test_AttribMask_38108() { - var _CurrentBit = OpenTK.Graphics.ES20.AttribMask.CurrentBit; - var _PointBit = OpenTK.Graphics.ES20.AttribMask.PointBit; - var _LineBit = OpenTK.Graphics.ES20.AttribMask.LineBit; - var _PolygonBit = OpenTK.Graphics.ES20.AttribMask.PolygonBit; - var _PolygonStippleBit = OpenTK.Graphics.ES20.AttribMask.PolygonStippleBit; - var _PixelModeBit = OpenTK.Graphics.ES20.AttribMask.PixelModeBit; - var _LightingBit = OpenTK.Graphics.ES20.AttribMask.LightingBit; - var _FogBit = OpenTK.Graphics.ES20.AttribMask.FogBit; - var _DepthBufferBit = OpenTK.Graphics.ES20.AttribMask.DepthBufferBit; - var _AccumBufferBit = OpenTK.Graphics.ES20.AttribMask.AccumBufferBit; - var _StencilBufferBit = OpenTK.Graphics.ES20.AttribMask.StencilBufferBit; - var _ViewportBit = OpenTK.Graphics.ES20.AttribMask.ViewportBit; - var _TransformBit = OpenTK.Graphics.ES20.AttribMask.TransformBit; - var _EnableBit = OpenTK.Graphics.ES20.AttribMask.EnableBit; - var _ColorBufferBit = OpenTK.Graphics.ES20.AttribMask.ColorBufferBit; - var _HintBit = OpenTK.Graphics.ES20.AttribMask.HintBit; - var _EvalBit = OpenTK.Graphics.ES20.AttribMask.EvalBit; - var _ListBit = OpenTK.Graphics.ES20.AttribMask.ListBit; - var _TextureBit = OpenTK.Graphics.ES20.AttribMask.TextureBit; - var _ScissorBit = OpenTK.Graphics.ES20.AttribMask.ScissorBit; - var _MultisampleBit = OpenTK.Graphics.ES20.AttribMask.MultisampleBit; - var _MultisampleBit3Dfx = OpenTK.Graphics.ES20.AttribMask.MultisampleBit3Dfx; - var _MultisampleBitArb = OpenTK.Graphics.ES20.AttribMask.MultisampleBitArb; - var _MultisampleBitExt = OpenTK.Graphics.ES20.AttribMask.MultisampleBitExt; - var _AllAttribBits = OpenTK.Graphics.ES20.AttribMask.AllAttribBits; -} -static void Test_BeginMode_38109() { - var _Points = OpenTK.Graphics.ES20.BeginMode.Points; - var _Lines = OpenTK.Graphics.ES20.BeginMode.Lines; - var _LineLoop = OpenTK.Graphics.ES20.BeginMode.LineLoop; - var _LineStrip = OpenTK.Graphics.ES20.BeginMode.LineStrip; - var _Triangles = OpenTK.Graphics.ES20.BeginMode.Triangles; - var _TriangleStrip = OpenTK.Graphics.ES20.BeginMode.TriangleStrip; - var _TriangleFan = OpenTK.Graphics.ES20.BeginMode.TriangleFan; -} -static void Test_BlendEquationMode_38110() { - var _FuncAdd = OpenTK.Graphics.ES20.BlendEquationMode.FuncAdd; - var _FuncSubtract = OpenTK.Graphics.ES20.BlendEquationMode.FuncSubtract; - var _FuncReverseSubtract = OpenTK.Graphics.ES20.BlendEquationMode.FuncReverseSubtract; -} -static void Test_BlendEquationModeExt_38111() { - var _LogicOp = OpenTK.Graphics.ES20.BlendEquationModeExt.LogicOp; - var _FuncAddExt = OpenTK.Graphics.ES20.BlendEquationModeExt.FuncAddExt; - var _MinExt = OpenTK.Graphics.ES20.BlendEquationModeExt.MinExt; - var _MaxExt = OpenTK.Graphics.ES20.BlendEquationModeExt.MaxExt; - var _FuncSubtractExt = OpenTK.Graphics.ES20.BlendEquationModeExt.FuncSubtractExt; - var _FuncReverseSubtractExt = OpenTK.Graphics.ES20.BlendEquationModeExt.FuncReverseSubtractExt; - var _AlphaMinSgix = OpenTK.Graphics.ES20.BlendEquationModeExt.AlphaMinSgix; - var _AlphaMaxSgix = OpenTK.Graphics.ES20.BlendEquationModeExt.AlphaMaxSgix; -} -static void Test_BlendingFactorDest_38112() { - var _Zero = OpenTK.Graphics.ES20.BlendingFactorDest.Zero; - var _SrcColor = OpenTK.Graphics.ES20.BlendingFactorDest.SrcColor; - var _OneMinusSrcColor = OpenTK.Graphics.ES20.BlendingFactorDest.OneMinusSrcColor; - var _SrcAlpha = OpenTK.Graphics.ES20.BlendingFactorDest.SrcAlpha; - var _OneMinusSrcAlpha = OpenTK.Graphics.ES20.BlendingFactorDest.OneMinusSrcAlpha; - var _DstAlpha = OpenTK.Graphics.ES20.BlendingFactorDest.DstAlpha; - var _OneMinusDstAlpha = OpenTK.Graphics.ES20.BlendingFactorDest.OneMinusDstAlpha; - var _DstColor = OpenTK.Graphics.ES20.BlendingFactorDest.DstColor; - var _OneMinusDstColor = OpenTK.Graphics.ES20.BlendingFactorDest.OneMinusDstColor; - var _SrcAlphaSaturate = OpenTK.Graphics.ES20.BlendingFactorDest.SrcAlphaSaturate; - var _ConstantColorExt = OpenTK.Graphics.ES20.BlendingFactorDest.ConstantColorExt; - var _ConstantColor = OpenTK.Graphics.ES20.BlendingFactorDest.ConstantColor; - var _OneMinusConstantColorExt = OpenTK.Graphics.ES20.BlendingFactorDest.OneMinusConstantColorExt; - var _OneMinusConstantColor = OpenTK.Graphics.ES20.BlendingFactorDest.OneMinusConstantColor; - var _ConstantAlphaExt = OpenTK.Graphics.ES20.BlendingFactorDest.ConstantAlphaExt; - var _ConstantAlpha = OpenTK.Graphics.ES20.BlendingFactorDest.ConstantAlpha; - var _OneMinusConstantAlphaExt = OpenTK.Graphics.ES20.BlendingFactorDest.OneMinusConstantAlphaExt; - var _OneMinusConstantAlpha = OpenTK.Graphics.ES20.BlendingFactorDest.OneMinusConstantAlpha; - var _One = OpenTK.Graphics.ES20.BlendingFactorDest.One; -} -static void Test_BlendingFactorSrc_38113() { - var _Zero = OpenTK.Graphics.ES20.BlendingFactorSrc.Zero; - var _SrcColor = OpenTK.Graphics.ES20.BlendingFactorSrc.SrcColor; - var _OneMinusSrcColor = OpenTK.Graphics.ES20.BlendingFactorSrc.OneMinusSrcColor; - var _SrcAlpha = OpenTK.Graphics.ES20.BlendingFactorSrc.SrcAlpha; - var _OneMinusSrcAlpha = OpenTK.Graphics.ES20.BlendingFactorSrc.OneMinusSrcAlpha; - var _DstAlpha = OpenTK.Graphics.ES20.BlendingFactorSrc.DstAlpha; - var _OneMinusDstAlpha = OpenTK.Graphics.ES20.BlendingFactorSrc.OneMinusDstAlpha; - var _DstColor = OpenTK.Graphics.ES20.BlendingFactorSrc.DstColor; - var _OneMinusDstColor = OpenTK.Graphics.ES20.BlendingFactorSrc.OneMinusDstColor; - var _SrcAlphaSaturate = OpenTK.Graphics.ES20.BlendingFactorSrc.SrcAlphaSaturate; - var _ConstantColorExt = OpenTK.Graphics.ES20.BlendingFactorSrc.ConstantColorExt; - var _ConstantColor = OpenTK.Graphics.ES20.BlendingFactorSrc.ConstantColor; - var _OneMinusConstantColorExt = OpenTK.Graphics.ES20.BlendingFactorSrc.OneMinusConstantColorExt; - var _OneMinusConstantColor = OpenTK.Graphics.ES20.BlendingFactorSrc.OneMinusConstantColor; - var _ConstantAlphaExt = OpenTK.Graphics.ES20.BlendingFactorSrc.ConstantAlphaExt; - var _ConstantAlpha = OpenTK.Graphics.ES20.BlendingFactorSrc.ConstantAlpha; - var _OneMinusConstantAlphaExt = OpenTK.Graphics.ES20.BlendingFactorSrc.OneMinusConstantAlphaExt; - var _OneMinusConstantAlpha = OpenTK.Graphics.ES20.BlendingFactorSrc.OneMinusConstantAlpha; - var _One = OpenTK.Graphics.ES20.BlendingFactorSrc.One; -} -static void Test_BlitFramebufferFilter_38114() { - var _Nearest = OpenTK.Graphics.ES20.BlitFramebufferFilter.Nearest; - var _Linear = OpenTK.Graphics.ES20.BlitFramebufferFilter.Linear; -} -static void Test_Boolean_38115() { - var _False = OpenTK.Graphics.ES20.Boolean.False; - var _True = OpenTK.Graphics.ES20.Boolean.True; -} -static void Test_BufferParameterName_38116() { - var _BufferSize = OpenTK.Graphics.ES20.BufferParameterName.BufferSize; - var _BufferUsage = OpenTK.Graphics.ES20.BufferParameterName.BufferUsage; -} -static void Test_BufferPointer_38117() { - var _BufferMapPointerOes = OpenTK.Graphics.ES20.BufferPointer.BufferMapPointerOes; -} -static void Test_BufferTarget_38118() { - var _ArrayBuffer = OpenTK.Graphics.ES20.BufferTarget.ArrayBuffer; - var _ElementArrayBuffer = OpenTK.Graphics.ES20.BufferTarget.ElementArrayBuffer; -} -static void Test_BufferUsage_38119() { - var _StreamDraw = OpenTK.Graphics.ES20.BufferUsage.StreamDraw; - var _StaticDraw = OpenTK.Graphics.ES20.BufferUsage.StaticDraw; - var _DynamicDraw = OpenTK.Graphics.ES20.BufferUsage.DynamicDraw; -} -static void Test_BufferUsageHint_38120() { - var _StreamDraw = OpenTK.Graphics.ES20.BufferUsageHint.StreamDraw; - var _StaticDraw = OpenTK.Graphics.ES20.BufferUsageHint.StaticDraw; - var _DynamicDraw = OpenTK.Graphics.ES20.BufferUsageHint.DynamicDraw; -} -static void Test_ClearBufferMask_38121() { - var _DepthBufferBit = OpenTK.Graphics.ES20.ClearBufferMask.DepthBufferBit; - var _AccumBufferBit = OpenTK.Graphics.ES20.ClearBufferMask.AccumBufferBit; - var _StencilBufferBit = OpenTK.Graphics.ES20.ClearBufferMask.StencilBufferBit; - var _ColorBufferBit = OpenTK.Graphics.ES20.ClearBufferMask.ColorBufferBit; - var _CoverageBufferBitNv = OpenTK.Graphics.ES20.ClearBufferMask.CoverageBufferBitNv; -} -static void Test_ClientAttribMask_38122() { - var _ClientPixelStoreBit = OpenTK.Graphics.ES20.ClientAttribMask.ClientPixelStoreBit; - var _ClientVertexArrayBit = OpenTK.Graphics.ES20.ClientAttribMask.ClientVertexArrayBit; - var _ClientAllAttribBits = OpenTK.Graphics.ES20.ClientAttribMask.ClientAllAttribBits; -} -static void Test_ClientWaitSyncFlags_38123() { - var _None = OpenTK.Graphics.ES20.ClientWaitSyncFlags.None; - var _SyncFlushCommandsBitApple = OpenTK.Graphics.ES20.ClientWaitSyncFlags.SyncFlushCommandsBitApple; -} -static void Test_ClipPlaneName_38124() { - var _ClipDistance0 = OpenTK.Graphics.ES20.ClipPlaneName.ClipDistance0; - var _ClipPlane0 = OpenTK.Graphics.ES20.ClipPlaneName.ClipPlane0; - var _ClipDistance1 = OpenTK.Graphics.ES20.ClipPlaneName.ClipDistance1; - var _ClipPlane1 = OpenTK.Graphics.ES20.ClipPlaneName.ClipPlane1; - var _ClipDistance2 = OpenTK.Graphics.ES20.ClipPlaneName.ClipDistance2; - var _ClipPlane2 = OpenTK.Graphics.ES20.ClipPlaneName.ClipPlane2; - var _ClipDistance3 = OpenTK.Graphics.ES20.ClipPlaneName.ClipDistance3; - var _ClipPlane3 = OpenTK.Graphics.ES20.ClipPlaneName.ClipPlane3; - var _ClipDistance4 = OpenTK.Graphics.ES20.ClipPlaneName.ClipDistance4; - var _ClipPlane4 = OpenTK.Graphics.ES20.ClipPlaneName.ClipPlane4; - var _ClipDistance5 = OpenTK.Graphics.ES20.ClipPlaneName.ClipDistance5; - var _ClipPlane5 = OpenTK.Graphics.ES20.ClipPlaneName.ClipPlane5; - var _ClipDistance6 = OpenTK.Graphics.ES20.ClipPlaneName.ClipDistance6; - var _ClipDistance7 = OpenTK.Graphics.ES20.ClipPlaneName.ClipDistance7; -} -static void Test_ColorMaterialFace_38125() { - var _Front = OpenTK.Graphics.ES20.ColorMaterialFace.Front; - var _Back = OpenTK.Graphics.ES20.ColorMaterialFace.Back; - var _FrontAndBack = OpenTK.Graphics.ES20.ColorMaterialFace.FrontAndBack; -} -static void Test_ColorMaterialParameter_38126() { - var _Ambient = OpenTK.Graphics.ES20.ColorMaterialParameter.Ambient; - var _Diffuse = OpenTK.Graphics.ES20.ColorMaterialParameter.Diffuse; - var _Specular = OpenTK.Graphics.ES20.ColorMaterialParameter.Specular; - var _Emission = OpenTK.Graphics.ES20.ColorMaterialParameter.Emission; - var _AmbientAndDiffuse = OpenTK.Graphics.ES20.ColorMaterialParameter.AmbientAndDiffuse; -} -static void Test_ColorPointerType_38127() { - var _Byte = OpenTK.Graphics.ES20.ColorPointerType.Byte; - var _UnsignedByte = OpenTK.Graphics.ES20.ColorPointerType.UnsignedByte; - var _Short = OpenTK.Graphics.ES20.ColorPointerType.Short; - var _UnsignedShort = OpenTK.Graphics.ES20.ColorPointerType.UnsignedShort; - var _Int = OpenTK.Graphics.ES20.ColorPointerType.Int; - var _UnsignedInt = OpenTK.Graphics.ES20.ColorPointerType.UnsignedInt; - var _Float = OpenTK.Graphics.ES20.ColorPointerType.Float; - var _Double = OpenTK.Graphics.ES20.ColorPointerType.Double; -} -static void Test_ColorTableParameterPNameSgi_38128() { - var _ColorTableScale = OpenTK.Graphics.ES20.ColorTableParameterPNameSgi.ColorTableScale; - var _ColorTableScaleSgi = OpenTK.Graphics.ES20.ColorTableParameterPNameSgi.ColorTableScaleSgi; - var _ColorTableBias = OpenTK.Graphics.ES20.ColorTableParameterPNameSgi.ColorTableBias; - var _ColorTableBiasSgi = OpenTK.Graphics.ES20.ColorTableParameterPNameSgi.ColorTableBiasSgi; -} -static void Test_ColorTableTargetSgi_38129() { - var _TextureColorTableSgi = OpenTK.Graphics.ES20.ColorTableTargetSgi.TextureColorTableSgi; - var _ProxyTextureColorTableSgi = OpenTK.Graphics.ES20.ColorTableTargetSgi.ProxyTextureColorTableSgi; - var _ColorTable = OpenTK.Graphics.ES20.ColorTableTargetSgi.ColorTable; - var _ColorTableSgi = OpenTK.Graphics.ES20.ColorTableTargetSgi.ColorTableSgi; - var _PostConvolutionColorTable = OpenTK.Graphics.ES20.ColorTableTargetSgi.PostConvolutionColorTable; - var _PostConvolutionColorTableSgi = OpenTK.Graphics.ES20.ColorTableTargetSgi.PostConvolutionColorTableSgi; - var _PostColorMatrixColorTable = OpenTK.Graphics.ES20.ColorTableTargetSgi.PostColorMatrixColorTable; - var _PostColorMatrixColorTableSgi = OpenTK.Graphics.ES20.ColorTableTargetSgi.PostColorMatrixColorTableSgi; - var _ProxyColorTable = OpenTK.Graphics.ES20.ColorTableTargetSgi.ProxyColorTable; - var _ProxyColorTableSgi = OpenTK.Graphics.ES20.ColorTableTargetSgi.ProxyColorTableSgi; - var _ProxyPostConvolutionColorTable = OpenTK.Graphics.ES20.ColorTableTargetSgi.ProxyPostConvolutionColorTable; - var _ProxyPostConvolutionColorTableSgi = OpenTK.Graphics.ES20.ColorTableTargetSgi.ProxyPostConvolutionColorTableSgi; - var _ProxyPostColorMatrixColorTable = OpenTK.Graphics.ES20.ColorTableTargetSgi.ProxyPostColorMatrixColorTable; - var _ProxyPostColorMatrixColorTableSgi = OpenTK.Graphics.ES20.ColorTableTargetSgi.ProxyPostColorMatrixColorTableSgi; -} -static void Test_CompressedInternalFormat_38130() { - var _Etc1Rgb8Oes = OpenTK.Graphics.ES20.CompressedInternalFormat.Etc1Rgb8Oes; -} -static void Test_ContextFlagMask_38131() { - var _ContextFlagForwardCompatibleBit = OpenTK.Graphics.ES20.ContextFlagMask.ContextFlagForwardCompatibleBit; - var _ContextFlagDebugBit = OpenTK.Graphics.ES20.ContextFlagMask.ContextFlagDebugBit; - var _ContextFlagDebugBitKhr = OpenTK.Graphics.ES20.ContextFlagMask.ContextFlagDebugBitKhr; - var _ContextFlagRobustAccessBitArb = OpenTK.Graphics.ES20.ContextFlagMask.ContextFlagRobustAccessBitArb; -} -static void Test_ContextProfileMask_38132() { - var _ContextCoreProfileBit = OpenTK.Graphics.ES20.ContextProfileMask.ContextCoreProfileBit; - var _ContextCompatibilityProfileBit = OpenTK.Graphics.ES20.ContextProfileMask.ContextCompatibilityProfileBit; -} -static void Test_ConvolutionBorderModeExt_38133() { - var _Reduce = OpenTK.Graphics.ES20.ConvolutionBorderModeExt.Reduce; - var _ReduceExt = OpenTK.Graphics.ES20.ConvolutionBorderModeExt.ReduceExt; -} -static void Test_ConvolutionParameterExt_38134() { - var _ConvolutionBorderMode = OpenTK.Graphics.ES20.ConvolutionParameterExt.ConvolutionBorderMode; - var _ConvolutionBorderModeExt = OpenTK.Graphics.ES20.ConvolutionParameterExt.ConvolutionBorderModeExt; - var _ConvolutionFilterScale = OpenTK.Graphics.ES20.ConvolutionParameterExt.ConvolutionFilterScale; - var _ConvolutionFilterScaleExt = OpenTK.Graphics.ES20.ConvolutionParameterExt.ConvolutionFilterScaleExt; - var _ConvolutionFilterBias = OpenTK.Graphics.ES20.ConvolutionParameterExt.ConvolutionFilterBias; - var _ConvolutionFilterBiasExt = OpenTK.Graphics.ES20.ConvolutionParameterExt.ConvolutionFilterBiasExt; -} -static void Test_ConvolutionTargetExt_38135() { - var _Convolution1D = OpenTK.Graphics.ES20.ConvolutionTargetExt.Convolution1D; - var _Convolution1DExt = OpenTK.Graphics.ES20.ConvolutionTargetExt.Convolution1DExt; - var _Convolution2D = OpenTK.Graphics.ES20.ConvolutionTargetExt.Convolution2D; - var _Convolution2DExt = OpenTK.Graphics.ES20.ConvolutionTargetExt.Convolution2DExt; -} -static void Test_CullFaceMode_38136() { - var _Front = OpenTK.Graphics.ES20.CullFaceMode.Front; - var _Back = OpenTK.Graphics.ES20.CullFaceMode.Back; - var _FrontAndBack = OpenTK.Graphics.ES20.CullFaceMode.FrontAndBack; -} -static void Test_DataType_38137() { -} -static void Test_DebugSeverity_38138() { - var _DebugSeverityNotification = OpenTK.Graphics.ES20.DebugSeverity.DebugSeverityNotification; - var _DebugSeverityHigh = OpenTK.Graphics.ES20.DebugSeverity.DebugSeverityHigh; - var _DebugSeverityMedium = OpenTK.Graphics.ES20.DebugSeverity.DebugSeverityMedium; - var _DebugSeverityLow = OpenTK.Graphics.ES20.DebugSeverity.DebugSeverityLow; -} -static void Test_DebugSeverityControl_38139() { - var _DontCare = OpenTK.Graphics.ES20.DebugSeverityControl.DontCare; - var _DebugSeverityNotification = OpenTK.Graphics.ES20.DebugSeverityControl.DebugSeverityNotification; - var _DebugSeverityHigh = OpenTK.Graphics.ES20.DebugSeverityControl.DebugSeverityHigh; - var _DebugSeverityMedium = OpenTK.Graphics.ES20.DebugSeverityControl.DebugSeverityMedium; - var _DebugSeverityLow = OpenTK.Graphics.ES20.DebugSeverityControl.DebugSeverityLow; -} -static void Test_DebugSource_38140() { - var _DebugSourceApi = OpenTK.Graphics.ES20.DebugSource.DebugSourceApi; - var _DebugSourceWindowSystem = OpenTK.Graphics.ES20.DebugSource.DebugSourceWindowSystem; - var _DebugSourceShaderCompiler = OpenTK.Graphics.ES20.DebugSource.DebugSourceShaderCompiler; - var _DebugSourceThirdParty = OpenTK.Graphics.ES20.DebugSource.DebugSourceThirdParty; - var _DebugSourceApplication = OpenTK.Graphics.ES20.DebugSource.DebugSourceApplication; - var _DebugSourceOther = OpenTK.Graphics.ES20.DebugSource.DebugSourceOther; -} -static void Test_DebugSourceControl_38141() { - var _DontCare = OpenTK.Graphics.ES20.DebugSourceControl.DontCare; - var _DebugSourceApi = OpenTK.Graphics.ES20.DebugSourceControl.DebugSourceApi; - var _DebugSourceWindowSystem = OpenTK.Graphics.ES20.DebugSourceControl.DebugSourceWindowSystem; - var _DebugSourceShaderCompiler = OpenTK.Graphics.ES20.DebugSourceControl.DebugSourceShaderCompiler; - var _DebugSourceThirdParty = OpenTK.Graphics.ES20.DebugSourceControl.DebugSourceThirdParty; - var _DebugSourceApplication = OpenTK.Graphics.ES20.DebugSourceControl.DebugSourceApplication; - var _DebugSourceOther = OpenTK.Graphics.ES20.DebugSourceControl.DebugSourceOther; -} -static void Test_DebugSourceExternal_38142() { - var _DebugSourceThirdParty = OpenTK.Graphics.ES20.DebugSourceExternal.DebugSourceThirdParty; - var _DebugSourceApplication = OpenTK.Graphics.ES20.DebugSourceExternal.DebugSourceApplication; -} -static void Test_DebugType_38143() { - var _DebugTypeError = OpenTK.Graphics.ES20.DebugType.DebugTypeError; - var _DebugTypeDeprecatedBehavior = OpenTK.Graphics.ES20.DebugType.DebugTypeDeprecatedBehavior; - var _DebugTypeUndefinedBehavior = OpenTK.Graphics.ES20.DebugType.DebugTypeUndefinedBehavior; - var _DebugTypePortability = OpenTK.Graphics.ES20.DebugType.DebugTypePortability; - var _DebugTypePerformance = OpenTK.Graphics.ES20.DebugType.DebugTypePerformance; - var _DebugTypeOther = OpenTK.Graphics.ES20.DebugType.DebugTypeOther; - var _DebugTypeMarker = OpenTK.Graphics.ES20.DebugType.DebugTypeMarker; - var _DebugTypePushGroup = OpenTK.Graphics.ES20.DebugType.DebugTypePushGroup; - var _DebugTypePopGroup = OpenTK.Graphics.ES20.DebugType.DebugTypePopGroup; -} -static void Test_DebugTypeControl_38144() { - var _DontCare = OpenTK.Graphics.ES20.DebugTypeControl.DontCare; - var _DebugTypeError = OpenTK.Graphics.ES20.DebugTypeControl.DebugTypeError; - var _DebugTypeDeprecatedBehavior = OpenTK.Graphics.ES20.DebugTypeControl.DebugTypeDeprecatedBehavior; - var _DebugTypeUndefinedBehavior = OpenTK.Graphics.ES20.DebugTypeControl.DebugTypeUndefinedBehavior; - var _DebugTypePortability = OpenTK.Graphics.ES20.DebugTypeControl.DebugTypePortability; - var _DebugTypePerformance = OpenTK.Graphics.ES20.DebugTypeControl.DebugTypePerformance; - var _DebugTypeOther = OpenTK.Graphics.ES20.DebugTypeControl.DebugTypeOther; - var _DebugTypeMarker = OpenTK.Graphics.ES20.DebugTypeControl.DebugTypeMarker; - var _DebugTypePushGroup = OpenTK.Graphics.ES20.DebugTypeControl.DebugTypePushGroup; - var _DebugTypePopGroup = OpenTK.Graphics.ES20.DebugTypeControl.DebugTypePopGroup; -} -static void Test_DepthFunction_38145() { - var _Never = OpenTK.Graphics.ES20.DepthFunction.Never; - var _Less = OpenTK.Graphics.ES20.DepthFunction.Less; - var _Equal = OpenTK.Graphics.ES20.DepthFunction.Equal; - var _Lequal = OpenTK.Graphics.ES20.DepthFunction.Lequal; - var _Greater = OpenTK.Graphics.ES20.DepthFunction.Greater; - var _Notequal = OpenTK.Graphics.ES20.DepthFunction.Notequal; - var _Gequal = OpenTK.Graphics.ES20.DepthFunction.Gequal; - var _Always = OpenTK.Graphics.ES20.DepthFunction.Always; -} -static void Test_DmpShaderBinary_38146() { - var _ShaderBinaryDmp = OpenTK.Graphics.ES20.DmpShaderBinary.ShaderBinaryDmp; -} -static void Test_DrawBufferMode_38147() { - var _None = OpenTK.Graphics.ES20.DrawBufferMode.None; - var _NoneOes = OpenTK.Graphics.ES20.DrawBufferMode.NoneOes; - var _FrontLeft = OpenTK.Graphics.ES20.DrawBufferMode.FrontLeft; - var _FrontRight = OpenTK.Graphics.ES20.DrawBufferMode.FrontRight; - var _BackLeft = OpenTK.Graphics.ES20.DrawBufferMode.BackLeft; - var _BackRight = OpenTK.Graphics.ES20.DrawBufferMode.BackRight; - var _Front = OpenTK.Graphics.ES20.DrawBufferMode.Front; - var _Back = OpenTK.Graphics.ES20.DrawBufferMode.Back; - var _Left = OpenTK.Graphics.ES20.DrawBufferMode.Left; - var _Right = OpenTK.Graphics.ES20.DrawBufferMode.Right; - var _FrontAndBack = OpenTK.Graphics.ES20.DrawBufferMode.FrontAndBack; - var _Aux0 = OpenTK.Graphics.ES20.DrawBufferMode.Aux0; - var _Aux1 = OpenTK.Graphics.ES20.DrawBufferMode.Aux1; - var _Aux2 = OpenTK.Graphics.ES20.DrawBufferMode.Aux2; - var _Aux3 = OpenTK.Graphics.ES20.DrawBufferMode.Aux3; -} -static void Test_DrawElementsType_38148() { - var _UnsignedByte = OpenTK.Graphics.ES20.DrawElementsType.UnsignedByte; - var _UnsignedShort = OpenTK.Graphics.ES20.DrawElementsType.UnsignedShort; -} -static void Test_EnableCap_38149() { - var _PointSmooth = OpenTK.Graphics.ES20.EnableCap.PointSmooth; - var _LineSmooth = OpenTK.Graphics.ES20.EnableCap.LineSmooth; - var _LineStipple = OpenTK.Graphics.ES20.EnableCap.LineStipple; - var _PolygonSmooth = OpenTK.Graphics.ES20.EnableCap.PolygonSmooth; - var _PolygonStipple = OpenTK.Graphics.ES20.EnableCap.PolygonStipple; - var _CullFace = OpenTK.Graphics.ES20.EnableCap.CullFace; - var _Lighting = OpenTK.Graphics.ES20.EnableCap.Lighting; - var _ColorMaterial = OpenTK.Graphics.ES20.EnableCap.ColorMaterial; - var _Fog = OpenTK.Graphics.ES20.EnableCap.Fog; - var _DepthTest = OpenTK.Graphics.ES20.EnableCap.DepthTest; - var _StencilTest = OpenTK.Graphics.ES20.EnableCap.StencilTest; - var _Normalize = OpenTK.Graphics.ES20.EnableCap.Normalize; - var _AlphaTest = OpenTK.Graphics.ES20.EnableCap.AlphaTest; - var _Dither = OpenTK.Graphics.ES20.EnableCap.Dither; - var _Blend = OpenTK.Graphics.ES20.EnableCap.Blend; - var _IndexLogicOp = OpenTK.Graphics.ES20.EnableCap.IndexLogicOp; - var _ColorLogicOp = OpenTK.Graphics.ES20.EnableCap.ColorLogicOp; - var _ScissorTest = OpenTK.Graphics.ES20.EnableCap.ScissorTest; - var _TextureGenS = OpenTK.Graphics.ES20.EnableCap.TextureGenS; - var _TextureGenT = OpenTK.Graphics.ES20.EnableCap.TextureGenT; - var _TextureGenR = OpenTK.Graphics.ES20.EnableCap.TextureGenR; - var _TextureGenQ = OpenTK.Graphics.ES20.EnableCap.TextureGenQ; - var _AutoNormal = OpenTK.Graphics.ES20.EnableCap.AutoNormal; - var _Map1Color4 = OpenTK.Graphics.ES20.EnableCap.Map1Color4; - var _Map1Index = OpenTK.Graphics.ES20.EnableCap.Map1Index; - var _Map1Normal = OpenTK.Graphics.ES20.EnableCap.Map1Normal; - var _Map1TextureCoord1 = OpenTK.Graphics.ES20.EnableCap.Map1TextureCoord1; - var _Map1TextureCoord2 = OpenTK.Graphics.ES20.EnableCap.Map1TextureCoord2; - var _Map1TextureCoord3 = OpenTK.Graphics.ES20.EnableCap.Map1TextureCoord3; - var _Map1TextureCoord4 = OpenTK.Graphics.ES20.EnableCap.Map1TextureCoord4; - var _Map1Vertex3 = OpenTK.Graphics.ES20.EnableCap.Map1Vertex3; - var _Map1Vertex4 = OpenTK.Graphics.ES20.EnableCap.Map1Vertex4; - var _Map2Color4 = OpenTK.Graphics.ES20.EnableCap.Map2Color4; - var _Map2Index = OpenTK.Graphics.ES20.EnableCap.Map2Index; - var _Map2Normal = OpenTK.Graphics.ES20.EnableCap.Map2Normal; - var _Map2TextureCoord1 = OpenTK.Graphics.ES20.EnableCap.Map2TextureCoord1; - var _Map2TextureCoord2 = OpenTK.Graphics.ES20.EnableCap.Map2TextureCoord2; - var _Map2TextureCoord3 = OpenTK.Graphics.ES20.EnableCap.Map2TextureCoord3; - var _Map2TextureCoord4 = OpenTK.Graphics.ES20.EnableCap.Map2TextureCoord4; - var _Map2Vertex3 = OpenTK.Graphics.ES20.EnableCap.Map2Vertex3; - var _Map2Vertex4 = OpenTK.Graphics.ES20.EnableCap.Map2Vertex4; - var _Texture1D = OpenTK.Graphics.ES20.EnableCap.Texture1D; - var _Texture2D = OpenTK.Graphics.ES20.EnableCap.Texture2D; - var _PolygonOffsetPoint = OpenTK.Graphics.ES20.EnableCap.PolygonOffsetPoint; - var _PolygonOffsetLine = OpenTK.Graphics.ES20.EnableCap.PolygonOffsetLine; - var _ClipPlane0 = OpenTK.Graphics.ES20.EnableCap.ClipPlane0; - var _ClipPlane1 = OpenTK.Graphics.ES20.EnableCap.ClipPlane1; - var _ClipPlane2 = OpenTK.Graphics.ES20.EnableCap.ClipPlane2; - var _ClipPlane3 = OpenTK.Graphics.ES20.EnableCap.ClipPlane3; - var _ClipPlane4 = OpenTK.Graphics.ES20.EnableCap.ClipPlane4; - var _ClipPlane5 = OpenTK.Graphics.ES20.EnableCap.ClipPlane5; - var _Light0 = OpenTK.Graphics.ES20.EnableCap.Light0; - var _Light1 = OpenTK.Graphics.ES20.EnableCap.Light1; - var _Light2 = OpenTK.Graphics.ES20.EnableCap.Light2; - var _Light3 = OpenTK.Graphics.ES20.EnableCap.Light3; - var _Light4 = OpenTK.Graphics.ES20.EnableCap.Light4; - var _Light5 = OpenTK.Graphics.ES20.EnableCap.Light5; - var _Light6 = OpenTK.Graphics.ES20.EnableCap.Light6; - var _Light7 = OpenTK.Graphics.ES20.EnableCap.Light7; - var _Convolution1DExt = OpenTK.Graphics.ES20.EnableCap.Convolution1DExt; - var _Convolution2DExt = OpenTK.Graphics.ES20.EnableCap.Convolution2DExt; - var _Separable2DExt = OpenTK.Graphics.ES20.EnableCap.Separable2DExt; - var _HistogramExt = OpenTK.Graphics.ES20.EnableCap.HistogramExt; - var _MinmaxExt = OpenTK.Graphics.ES20.EnableCap.MinmaxExt; - var _PolygonOffsetFill = OpenTK.Graphics.ES20.EnableCap.PolygonOffsetFill; - var _RescaleNormalExt = OpenTK.Graphics.ES20.EnableCap.RescaleNormalExt; - var _Texture3DExt = OpenTK.Graphics.ES20.EnableCap.Texture3DExt; - var _VertexArray = OpenTK.Graphics.ES20.EnableCap.VertexArray; - var _NormalArray = OpenTK.Graphics.ES20.EnableCap.NormalArray; - var _ColorArray = OpenTK.Graphics.ES20.EnableCap.ColorArray; - var _IndexArray = OpenTK.Graphics.ES20.EnableCap.IndexArray; - var _TextureCoordArray = OpenTK.Graphics.ES20.EnableCap.TextureCoordArray; - var _EdgeFlagArray = OpenTK.Graphics.ES20.EnableCap.EdgeFlagArray; - var _InterlaceSgix = OpenTK.Graphics.ES20.EnableCap.InterlaceSgix; - var _MultisampleSgis = OpenTK.Graphics.ES20.EnableCap.MultisampleSgis; - var _SampleAlphaToMaskSgis = OpenTK.Graphics.ES20.EnableCap.SampleAlphaToMaskSgis; - var _SampleAlphaToCoverage = OpenTK.Graphics.ES20.EnableCap.SampleAlphaToCoverage; - var _SampleAlphaToOneSgis = OpenTK.Graphics.ES20.EnableCap.SampleAlphaToOneSgis; - var _SampleMaskSgis = OpenTK.Graphics.ES20.EnableCap.SampleMaskSgis; - var _SampleCoverage = OpenTK.Graphics.ES20.EnableCap.SampleCoverage; - var _TextureColorTableSgi = OpenTK.Graphics.ES20.EnableCap.TextureColorTableSgi; - var _ColorTableSgi = OpenTK.Graphics.ES20.EnableCap.ColorTableSgi; - var _PostConvolutionColorTableSgi = OpenTK.Graphics.ES20.EnableCap.PostConvolutionColorTableSgi; - var _PostColorMatrixColorTableSgi = OpenTK.Graphics.ES20.EnableCap.PostColorMatrixColorTableSgi; - var _Texture4DSgis = OpenTK.Graphics.ES20.EnableCap.Texture4DSgis; - var _PixelTexGenSgix = OpenTK.Graphics.ES20.EnableCap.PixelTexGenSgix; - var _SpriteSgix = OpenTK.Graphics.ES20.EnableCap.SpriteSgix; - var _ReferencePlaneSgix = OpenTK.Graphics.ES20.EnableCap.ReferencePlaneSgix; - var _IrInstrument1Sgix = OpenTK.Graphics.ES20.EnableCap.IrInstrument1Sgix; - var _CalligraphicFragmentSgix = OpenTK.Graphics.ES20.EnableCap.CalligraphicFragmentSgix; - var _FramezoomSgix = OpenTK.Graphics.ES20.EnableCap.FramezoomSgix; - var _FogOffsetSgix = OpenTK.Graphics.ES20.EnableCap.FogOffsetSgix; - var _SharedTexturePaletteExt = OpenTK.Graphics.ES20.EnableCap.SharedTexturePaletteExt; - var _AsyncHistogramSgix = OpenTK.Graphics.ES20.EnableCap.AsyncHistogramSgix; - var _PixelTextureSgis = OpenTK.Graphics.ES20.EnableCap.PixelTextureSgis; - var _AsyncTexImageSgix = OpenTK.Graphics.ES20.EnableCap.AsyncTexImageSgix; - var _AsyncDrawPixelsSgix = OpenTK.Graphics.ES20.EnableCap.AsyncDrawPixelsSgix; - var _AsyncReadPixelsSgix = OpenTK.Graphics.ES20.EnableCap.AsyncReadPixelsSgix; - var _FragmentLightingSgix = OpenTK.Graphics.ES20.EnableCap.FragmentLightingSgix; - var _FragmentColorMaterialSgix = OpenTK.Graphics.ES20.EnableCap.FragmentColorMaterialSgix; - var _FragmentLight0Sgix = OpenTK.Graphics.ES20.EnableCap.FragmentLight0Sgix; - var _FragmentLight1Sgix = OpenTK.Graphics.ES20.EnableCap.FragmentLight1Sgix; - var _FragmentLight2Sgix = OpenTK.Graphics.ES20.EnableCap.FragmentLight2Sgix; - var _FragmentLight3Sgix = OpenTK.Graphics.ES20.EnableCap.FragmentLight3Sgix; - var _FragmentLight4Sgix = OpenTK.Graphics.ES20.EnableCap.FragmentLight4Sgix; - var _FragmentLight5Sgix = OpenTK.Graphics.ES20.EnableCap.FragmentLight5Sgix; - var _FragmentLight6Sgix = OpenTK.Graphics.ES20.EnableCap.FragmentLight6Sgix; - var _FragmentLight7Sgix = OpenTK.Graphics.ES20.EnableCap.FragmentLight7Sgix; -} -static void Test_ErrorCode_38150() { - var _NoError = OpenTK.Graphics.ES20.ErrorCode.NoError; - var _InvalidEnum = OpenTK.Graphics.ES20.ErrorCode.InvalidEnum; - var _InvalidValue = OpenTK.Graphics.ES20.ErrorCode.InvalidValue; - var _InvalidOperation = OpenTK.Graphics.ES20.ErrorCode.InvalidOperation; - var _StackOverflow = OpenTK.Graphics.ES20.ErrorCode.StackOverflow; - var _StackUnderflow = OpenTK.Graphics.ES20.ErrorCode.StackUnderflow; - var _OutOfMemory = OpenTK.Graphics.ES20.ErrorCode.OutOfMemory; - var _InvalidFramebufferOperation = OpenTK.Graphics.ES20.ErrorCode.InvalidFramebufferOperation; - var _InvalidFramebufferOperationExt = OpenTK.Graphics.ES20.ErrorCode.InvalidFramebufferOperationExt; - var _InvalidFramebufferOperationOes = OpenTK.Graphics.ES20.ErrorCode.InvalidFramebufferOperationOes; - var _TableTooLarge = OpenTK.Graphics.ES20.ErrorCode.TableTooLarge; - var _TableTooLargeExt = OpenTK.Graphics.ES20.ErrorCode.TableTooLargeExt; - var _TextureTooLargeExt = OpenTK.Graphics.ES20.ErrorCode.TextureTooLargeExt; -} -static void Test_EsVersion20_38151() { - var _False = OpenTK.Graphics.ES20.EsVersion20.False; - var _NoError = OpenTK.Graphics.ES20.EsVersion20.NoError; - var _None = OpenTK.Graphics.ES20.EsVersion20.None; - var _Zero = OpenTK.Graphics.ES20.EsVersion20.Zero; - var _Points = OpenTK.Graphics.ES20.EsVersion20.Points; - var _DepthBufferBit = OpenTK.Graphics.ES20.EsVersion20.DepthBufferBit; - var _StencilBufferBit = OpenTK.Graphics.ES20.EsVersion20.StencilBufferBit; - var _ColorBufferBit = OpenTK.Graphics.ES20.EsVersion20.ColorBufferBit; - var _Lines = OpenTK.Graphics.ES20.EsVersion20.Lines; - var _LineLoop = OpenTK.Graphics.ES20.EsVersion20.LineLoop; - var _LineStrip = OpenTK.Graphics.ES20.EsVersion20.LineStrip; - var _Triangles = OpenTK.Graphics.ES20.EsVersion20.Triangles; - var _TriangleStrip = OpenTK.Graphics.ES20.EsVersion20.TriangleStrip; - var _TriangleFan = OpenTK.Graphics.ES20.EsVersion20.TriangleFan; - var _Never = OpenTK.Graphics.ES20.EsVersion20.Never; - var _Less = OpenTK.Graphics.ES20.EsVersion20.Less; - var _Equal = OpenTK.Graphics.ES20.EsVersion20.Equal; - var _Lequal = OpenTK.Graphics.ES20.EsVersion20.Lequal; - var _Greater = OpenTK.Graphics.ES20.EsVersion20.Greater; - var _Notequal = OpenTK.Graphics.ES20.EsVersion20.Notequal; - var _Gequal = OpenTK.Graphics.ES20.EsVersion20.Gequal; - var _Always = OpenTK.Graphics.ES20.EsVersion20.Always; - var _SrcColor = OpenTK.Graphics.ES20.EsVersion20.SrcColor; - var _OneMinusSrcColor = OpenTK.Graphics.ES20.EsVersion20.OneMinusSrcColor; - var _SrcAlpha = OpenTK.Graphics.ES20.EsVersion20.SrcAlpha; - var _OneMinusSrcAlpha = OpenTK.Graphics.ES20.EsVersion20.OneMinusSrcAlpha; - var _DstAlpha = OpenTK.Graphics.ES20.EsVersion20.DstAlpha; - var _OneMinusDstAlpha = OpenTK.Graphics.ES20.EsVersion20.OneMinusDstAlpha; - var _DstColor = OpenTK.Graphics.ES20.EsVersion20.DstColor; - var _OneMinusDstColor = OpenTK.Graphics.ES20.EsVersion20.OneMinusDstColor; - var _SrcAlphaSaturate = OpenTK.Graphics.ES20.EsVersion20.SrcAlphaSaturate; - var _Front = OpenTK.Graphics.ES20.EsVersion20.Front; - var _Back = OpenTK.Graphics.ES20.EsVersion20.Back; - var _FrontAndBack = OpenTK.Graphics.ES20.EsVersion20.FrontAndBack; - var _InvalidEnum = OpenTK.Graphics.ES20.EsVersion20.InvalidEnum; - var _InvalidValue = OpenTK.Graphics.ES20.EsVersion20.InvalidValue; - var _InvalidOperation = OpenTK.Graphics.ES20.EsVersion20.InvalidOperation; - var _OutOfMemory = OpenTK.Graphics.ES20.EsVersion20.OutOfMemory; - var _InvalidFramebufferOperation = OpenTK.Graphics.ES20.EsVersion20.InvalidFramebufferOperation; - var _Cw = OpenTK.Graphics.ES20.EsVersion20.Cw; - var _Ccw = OpenTK.Graphics.ES20.EsVersion20.Ccw; - var _LineWidth = OpenTK.Graphics.ES20.EsVersion20.LineWidth; - var _CullFace = OpenTK.Graphics.ES20.EsVersion20.CullFace; - var _CullFaceMode = OpenTK.Graphics.ES20.EsVersion20.CullFaceMode; - var _FrontFace = OpenTK.Graphics.ES20.EsVersion20.FrontFace; - var _DepthRange = OpenTK.Graphics.ES20.EsVersion20.DepthRange; - var _DepthTest = OpenTK.Graphics.ES20.EsVersion20.DepthTest; - var _DepthWritemask = OpenTK.Graphics.ES20.EsVersion20.DepthWritemask; - var _DepthClearValue = OpenTK.Graphics.ES20.EsVersion20.DepthClearValue; - var _DepthFunc = OpenTK.Graphics.ES20.EsVersion20.DepthFunc; - var _StencilTest = OpenTK.Graphics.ES20.EsVersion20.StencilTest; - var _StencilClearValue = OpenTK.Graphics.ES20.EsVersion20.StencilClearValue; - var _StencilFunc = OpenTK.Graphics.ES20.EsVersion20.StencilFunc; - var _StencilValueMask = OpenTK.Graphics.ES20.EsVersion20.StencilValueMask; - var _StencilFail = OpenTK.Graphics.ES20.EsVersion20.StencilFail; - var _StencilPassDepthFail = OpenTK.Graphics.ES20.EsVersion20.StencilPassDepthFail; - var _StencilPassDepthPass = OpenTK.Graphics.ES20.EsVersion20.StencilPassDepthPass; - var _StencilRef = OpenTK.Graphics.ES20.EsVersion20.StencilRef; - var _StencilWritemask = OpenTK.Graphics.ES20.EsVersion20.StencilWritemask; - var _Viewport = OpenTK.Graphics.ES20.EsVersion20.Viewport; - var _Dither = OpenTK.Graphics.ES20.EsVersion20.Dither; - var _Blend = OpenTK.Graphics.ES20.EsVersion20.Blend; - var _ScissorBox = OpenTK.Graphics.ES20.EsVersion20.ScissorBox; - var _ScissorTest = OpenTK.Graphics.ES20.EsVersion20.ScissorTest; - var _ColorClearValue = OpenTK.Graphics.ES20.EsVersion20.ColorClearValue; - var _ColorWritemask = OpenTK.Graphics.ES20.EsVersion20.ColorWritemask; - var _UnpackAlignment = OpenTK.Graphics.ES20.EsVersion20.UnpackAlignment; - var _PackAlignment = OpenTK.Graphics.ES20.EsVersion20.PackAlignment; - var _MaxTextureSize = OpenTK.Graphics.ES20.EsVersion20.MaxTextureSize; - var _MaxViewportDims = OpenTK.Graphics.ES20.EsVersion20.MaxViewportDims; - var _SubpixelBits = OpenTK.Graphics.ES20.EsVersion20.SubpixelBits; - var _RedBits = OpenTK.Graphics.ES20.EsVersion20.RedBits; - var _GreenBits = OpenTK.Graphics.ES20.EsVersion20.GreenBits; - var _BlueBits = OpenTK.Graphics.ES20.EsVersion20.BlueBits; - var _AlphaBits = OpenTK.Graphics.ES20.EsVersion20.AlphaBits; - var _DepthBits = OpenTK.Graphics.ES20.EsVersion20.DepthBits; - var _StencilBits = OpenTK.Graphics.ES20.EsVersion20.StencilBits; - var _Texture2D = OpenTK.Graphics.ES20.EsVersion20.Texture2D; - var _DontCare = OpenTK.Graphics.ES20.EsVersion20.DontCare; - var _Fastest = OpenTK.Graphics.ES20.EsVersion20.Fastest; - var _Nicest = OpenTK.Graphics.ES20.EsVersion20.Nicest; - var _Byte = OpenTK.Graphics.ES20.EsVersion20.Byte; - var _UnsignedByte = OpenTK.Graphics.ES20.EsVersion20.UnsignedByte; - var _Short = OpenTK.Graphics.ES20.EsVersion20.Short; - var _UnsignedShort = OpenTK.Graphics.ES20.EsVersion20.UnsignedShort; - var _Int = OpenTK.Graphics.ES20.EsVersion20.Int; - var _UnsignedInt = OpenTK.Graphics.ES20.EsVersion20.UnsignedInt; - var _Float = OpenTK.Graphics.ES20.EsVersion20.Float; - var _Fixed = OpenTK.Graphics.ES20.EsVersion20.Fixed; - var _Invert = OpenTK.Graphics.ES20.EsVersion20.Invert; - var _Texture = OpenTK.Graphics.ES20.EsVersion20.Texture; - var _DepthComponent = OpenTK.Graphics.ES20.EsVersion20.DepthComponent; - var _Alpha = OpenTK.Graphics.ES20.EsVersion20.Alpha; - var _Rgb = OpenTK.Graphics.ES20.EsVersion20.Rgb; - var _Rgba = OpenTK.Graphics.ES20.EsVersion20.Rgba; - var _Luminance = OpenTK.Graphics.ES20.EsVersion20.Luminance; - var _LuminanceAlpha = OpenTK.Graphics.ES20.EsVersion20.LuminanceAlpha; - var _Keep = OpenTK.Graphics.ES20.EsVersion20.Keep; - var _Replace = OpenTK.Graphics.ES20.EsVersion20.Replace; - var _Incr = OpenTK.Graphics.ES20.EsVersion20.Incr; - var _Decr = OpenTK.Graphics.ES20.EsVersion20.Decr; - var _Vendor = OpenTK.Graphics.ES20.EsVersion20.Vendor; - var _Renderer = OpenTK.Graphics.ES20.EsVersion20.Renderer; - var _Version = OpenTK.Graphics.ES20.EsVersion20.Version; - var _Extensions = OpenTK.Graphics.ES20.EsVersion20.Extensions; - var _Nearest = OpenTK.Graphics.ES20.EsVersion20.Nearest; - var _Linear = OpenTK.Graphics.ES20.EsVersion20.Linear; - var _NearestMipmapNearest = OpenTK.Graphics.ES20.EsVersion20.NearestMipmapNearest; - var _LinearMipmapNearest = OpenTK.Graphics.ES20.EsVersion20.LinearMipmapNearest; - var _NearestMipmapLinear = OpenTK.Graphics.ES20.EsVersion20.NearestMipmapLinear; - var _LinearMipmapLinear = OpenTK.Graphics.ES20.EsVersion20.LinearMipmapLinear; - var _TextureMagFilter = OpenTK.Graphics.ES20.EsVersion20.TextureMagFilter; - var _TextureMinFilter = OpenTK.Graphics.ES20.EsVersion20.TextureMinFilter; - var _TextureWrapS = OpenTK.Graphics.ES20.EsVersion20.TextureWrapS; - var _TextureWrapT = OpenTK.Graphics.ES20.EsVersion20.TextureWrapT; - var _Repeat = OpenTK.Graphics.ES20.EsVersion20.Repeat; - var _PolygonOffsetUnits = OpenTK.Graphics.ES20.EsVersion20.PolygonOffsetUnits; - var _ConstantColor = OpenTK.Graphics.ES20.EsVersion20.ConstantColor; - var _OneMinusConstantColor = OpenTK.Graphics.ES20.EsVersion20.OneMinusConstantColor; - var _ConstantAlpha = OpenTK.Graphics.ES20.EsVersion20.ConstantAlpha; - var _OneMinusConstantAlpha = OpenTK.Graphics.ES20.EsVersion20.OneMinusConstantAlpha; - var _BlendColor = OpenTK.Graphics.ES20.EsVersion20.BlendColor; - var _FuncAdd = OpenTK.Graphics.ES20.EsVersion20.FuncAdd; - var _BlendEquation = OpenTK.Graphics.ES20.EsVersion20.BlendEquation; - var _BlendEquationRgb = OpenTK.Graphics.ES20.EsVersion20.BlendEquationRgb; - var _FuncSubtract = OpenTK.Graphics.ES20.EsVersion20.FuncSubtract; - var _FuncReverseSubtract = OpenTK.Graphics.ES20.EsVersion20.FuncReverseSubtract; - var _UnsignedShort4444 = OpenTK.Graphics.ES20.EsVersion20.UnsignedShort4444; - var _UnsignedShort5551 = OpenTK.Graphics.ES20.EsVersion20.UnsignedShort5551; - var _PolygonOffsetFill = OpenTK.Graphics.ES20.EsVersion20.PolygonOffsetFill; - var _PolygonOffsetFactor = OpenTK.Graphics.ES20.EsVersion20.PolygonOffsetFactor; - var _Rgba4 = OpenTK.Graphics.ES20.EsVersion20.Rgba4; - var _Rgb5A1 = OpenTK.Graphics.ES20.EsVersion20.Rgb5A1; - var _TextureBinding2D = OpenTK.Graphics.ES20.EsVersion20.TextureBinding2D; - var _SampleAlphaToCoverage = OpenTK.Graphics.ES20.EsVersion20.SampleAlphaToCoverage; - var _SampleCoverage = OpenTK.Graphics.ES20.EsVersion20.SampleCoverage; - var _SampleBuffers = OpenTK.Graphics.ES20.EsVersion20.SampleBuffers; - var _Samples = OpenTK.Graphics.ES20.EsVersion20.Samples; - var _SampleCoverageValue = OpenTK.Graphics.ES20.EsVersion20.SampleCoverageValue; - var _SampleCoverageInvert = OpenTK.Graphics.ES20.EsVersion20.SampleCoverageInvert; - var _BlendDstRgb = OpenTK.Graphics.ES20.EsVersion20.BlendDstRgb; - var _BlendSrcRgb = OpenTK.Graphics.ES20.EsVersion20.BlendSrcRgb; - var _BlendDstAlpha = OpenTK.Graphics.ES20.EsVersion20.BlendDstAlpha; - var _BlendSrcAlpha = OpenTK.Graphics.ES20.EsVersion20.BlendSrcAlpha; - var _ClampToEdge = OpenTK.Graphics.ES20.EsVersion20.ClampToEdge; - var _GenerateMipmapHint = OpenTK.Graphics.ES20.EsVersion20.GenerateMipmapHint; - var _DepthComponent16 = OpenTK.Graphics.ES20.EsVersion20.DepthComponent16; - var _UnsignedShort565 = OpenTK.Graphics.ES20.EsVersion20.UnsignedShort565; - var _MirroredRepeat = OpenTK.Graphics.ES20.EsVersion20.MirroredRepeat; - var _AliasedPointSizeRange = OpenTK.Graphics.ES20.EsVersion20.AliasedPointSizeRange; - var _AliasedLineWidthRange = OpenTK.Graphics.ES20.EsVersion20.AliasedLineWidthRange; - var _Texture0 = OpenTK.Graphics.ES20.EsVersion20.Texture0; - var _Texture1 = OpenTK.Graphics.ES20.EsVersion20.Texture1; - var _Texture2 = OpenTK.Graphics.ES20.EsVersion20.Texture2; - var _Texture3 = OpenTK.Graphics.ES20.EsVersion20.Texture3; - var _Texture4 = OpenTK.Graphics.ES20.EsVersion20.Texture4; - var _Texture5 = OpenTK.Graphics.ES20.EsVersion20.Texture5; - var _Texture6 = OpenTK.Graphics.ES20.EsVersion20.Texture6; - var _Texture7 = OpenTK.Graphics.ES20.EsVersion20.Texture7; - var _Texture8 = OpenTK.Graphics.ES20.EsVersion20.Texture8; - var _Texture9 = OpenTK.Graphics.ES20.EsVersion20.Texture9; - var _Texture10 = OpenTK.Graphics.ES20.EsVersion20.Texture10; - var _Texture11 = OpenTK.Graphics.ES20.EsVersion20.Texture11; - var _Texture12 = OpenTK.Graphics.ES20.EsVersion20.Texture12; - var _Texture13 = OpenTK.Graphics.ES20.EsVersion20.Texture13; - var _Texture14 = OpenTK.Graphics.ES20.EsVersion20.Texture14; - var _Texture15 = OpenTK.Graphics.ES20.EsVersion20.Texture15; - var _Texture16 = OpenTK.Graphics.ES20.EsVersion20.Texture16; - var _Texture17 = OpenTK.Graphics.ES20.EsVersion20.Texture17; - var _Texture18 = OpenTK.Graphics.ES20.EsVersion20.Texture18; - var _Texture19 = OpenTK.Graphics.ES20.EsVersion20.Texture19; - var _Texture20 = OpenTK.Graphics.ES20.EsVersion20.Texture20; - var _Texture21 = OpenTK.Graphics.ES20.EsVersion20.Texture21; - var _Texture22 = OpenTK.Graphics.ES20.EsVersion20.Texture22; - var _Texture23 = OpenTK.Graphics.ES20.EsVersion20.Texture23; - var _Texture24 = OpenTK.Graphics.ES20.EsVersion20.Texture24; - var _Texture25 = OpenTK.Graphics.ES20.EsVersion20.Texture25; - var _Texture26 = OpenTK.Graphics.ES20.EsVersion20.Texture26; - var _Texture27 = OpenTK.Graphics.ES20.EsVersion20.Texture27; - var _Texture28 = OpenTK.Graphics.ES20.EsVersion20.Texture28; - var _Texture29 = OpenTK.Graphics.ES20.EsVersion20.Texture29; - var _Texture30 = OpenTK.Graphics.ES20.EsVersion20.Texture30; - var _Texture31 = OpenTK.Graphics.ES20.EsVersion20.Texture31; - var _ActiveTexture = OpenTK.Graphics.ES20.EsVersion20.ActiveTexture; - var _MaxRenderbufferSize = OpenTK.Graphics.ES20.EsVersion20.MaxRenderbufferSize; - var _IncrWrap = OpenTK.Graphics.ES20.EsVersion20.IncrWrap; - var _DecrWrap = OpenTK.Graphics.ES20.EsVersion20.DecrWrap; - var _TextureCubeMap = OpenTK.Graphics.ES20.EsVersion20.TextureCubeMap; - var _TextureBindingCubeMap = OpenTK.Graphics.ES20.EsVersion20.TextureBindingCubeMap; - var _TextureCubeMapPositiveX = OpenTK.Graphics.ES20.EsVersion20.TextureCubeMapPositiveX; - var _TextureCubeMapNegativeX = OpenTK.Graphics.ES20.EsVersion20.TextureCubeMapNegativeX; - var _TextureCubeMapPositiveY = OpenTK.Graphics.ES20.EsVersion20.TextureCubeMapPositiveY; - var _TextureCubeMapNegativeY = OpenTK.Graphics.ES20.EsVersion20.TextureCubeMapNegativeY; - var _TextureCubeMapPositiveZ = OpenTK.Graphics.ES20.EsVersion20.TextureCubeMapPositiveZ; - var _TextureCubeMapNegativeZ = OpenTK.Graphics.ES20.EsVersion20.TextureCubeMapNegativeZ; - var _MaxCubeMapTextureSize = OpenTK.Graphics.ES20.EsVersion20.MaxCubeMapTextureSize; - var _VertexAttribArrayEnabled = OpenTK.Graphics.ES20.EsVersion20.VertexAttribArrayEnabled; - var _VertexAttribArraySize = OpenTK.Graphics.ES20.EsVersion20.VertexAttribArraySize; - var _VertexAttribArrayStride = OpenTK.Graphics.ES20.EsVersion20.VertexAttribArrayStride; - var _VertexAttribArrayType = OpenTK.Graphics.ES20.EsVersion20.VertexAttribArrayType; - var _CurrentVertexAttrib = OpenTK.Graphics.ES20.EsVersion20.CurrentVertexAttrib; - var _VertexAttribArrayPointer = OpenTK.Graphics.ES20.EsVersion20.VertexAttribArrayPointer; - var _NumCompressedTextureFormats = OpenTK.Graphics.ES20.EsVersion20.NumCompressedTextureFormats; - var _CompressedTextureFormats = OpenTK.Graphics.ES20.EsVersion20.CompressedTextureFormats; - var _BufferSize = OpenTK.Graphics.ES20.EsVersion20.BufferSize; - var _BufferUsage = OpenTK.Graphics.ES20.EsVersion20.BufferUsage; - var _StencilBackFunc = OpenTK.Graphics.ES20.EsVersion20.StencilBackFunc; - var _StencilBackFail = OpenTK.Graphics.ES20.EsVersion20.StencilBackFail; - var _StencilBackPassDepthFail = OpenTK.Graphics.ES20.EsVersion20.StencilBackPassDepthFail; - var _StencilBackPassDepthPass = OpenTK.Graphics.ES20.EsVersion20.StencilBackPassDepthPass; - var _BlendEquationAlpha = OpenTK.Graphics.ES20.EsVersion20.BlendEquationAlpha; - var _MaxVertexAttribs = OpenTK.Graphics.ES20.EsVersion20.MaxVertexAttribs; - var _VertexAttribArrayNormalized = OpenTK.Graphics.ES20.EsVersion20.VertexAttribArrayNormalized; - var _MaxTextureImageUnits = OpenTK.Graphics.ES20.EsVersion20.MaxTextureImageUnits; - var _ArrayBuffer = OpenTK.Graphics.ES20.EsVersion20.ArrayBuffer; - var _ElementArrayBuffer = OpenTK.Graphics.ES20.EsVersion20.ElementArrayBuffer; - var _ArrayBufferBinding = OpenTK.Graphics.ES20.EsVersion20.ArrayBufferBinding; - var _ElementArrayBufferBinding = OpenTK.Graphics.ES20.EsVersion20.ElementArrayBufferBinding; - var _VertexAttribArrayBufferBinding = OpenTK.Graphics.ES20.EsVersion20.VertexAttribArrayBufferBinding; - var _StreamDraw = OpenTK.Graphics.ES20.EsVersion20.StreamDraw; - var _StaticDraw = OpenTK.Graphics.ES20.EsVersion20.StaticDraw; - var _DynamicDraw = OpenTK.Graphics.ES20.EsVersion20.DynamicDraw; - var _FragmentShader = OpenTK.Graphics.ES20.EsVersion20.FragmentShader; - var _VertexShader = OpenTK.Graphics.ES20.EsVersion20.VertexShader; - var _MaxVertexTextureImageUnits = OpenTK.Graphics.ES20.EsVersion20.MaxVertexTextureImageUnits; - var _MaxCombinedTextureImageUnits = OpenTK.Graphics.ES20.EsVersion20.MaxCombinedTextureImageUnits; - var _ShaderType = OpenTK.Graphics.ES20.EsVersion20.ShaderType; - var _FloatVec2 = OpenTK.Graphics.ES20.EsVersion20.FloatVec2; - var _FloatVec3 = OpenTK.Graphics.ES20.EsVersion20.FloatVec3; - var _FloatVec4 = OpenTK.Graphics.ES20.EsVersion20.FloatVec4; - var _IntVec2 = OpenTK.Graphics.ES20.EsVersion20.IntVec2; - var _IntVec3 = OpenTK.Graphics.ES20.EsVersion20.IntVec3; - var _IntVec4 = OpenTK.Graphics.ES20.EsVersion20.IntVec4; - var _Bool = OpenTK.Graphics.ES20.EsVersion20.Bool; - var _BoolVec2 = OpenTK.Graphics.ES20.EsVersion20.BoolVec2; - var _BoolVec3 = OpenTK.Graphics.ES20.EsVersion20.BoolVec3; - var _BoolVec4 = OpenTK.Graphics.ES20.EsVersion20.BoolVec4; - var _FloatMat2 = OpenTK.Graphics.ES20.EsVersion20.FloatMat2; - var _FloatMat3 = OpenTK.Graphics.ES20.EsVersion20.FloatMat3; - var _FloatMat4 = OpenTK.Graphics.ES20.EsVersion20.FloatMat4; - var _Sampler2D = OpenTK.Graphics.ES20.EsVersion20.Sampler2D; - var _SamplerCube = OpenTK.Graphics.ES20.EsVersion20.SamplerCube; - var _DeleteStatus = OpenTK.Graphics.ES20.EsVersion20.DeleteStatus; - var _CompileStatus = OpenTK.Graphics.ES20.EsVersion20.CompileStatus; - var _LinkStatus = OpenTK.Graphics.ES20.EsVersion20.LinkStatus; - var _ValidateStatus = OpenTK.Graphics.ES20.EsVersion20.ValidateStatus; - var _InfoLogLength = OpenTK.Graphics.ES20.EsVersion20.InfoLogLength; - var _AttachedShaders = OpenTK.Graphics.ES20.EsVersion20.AttachedShaders; - var _ActiveUniforms = OpenTK.Graphics.ES20.EsVersion20.ActiveUniforms; - var _ActiveUniformMaxLength = OpenTK.Graphics.ES20.EsVersion20.ActiveUniformMaxLength; - var _ShaderSourceLength = OpenTK.Graphics.ES20.EsVersion20.ShaderSourceLength; - var _ActiveAttributes = OpenTK.Graphics.ES20.EsVersion20.ActiveAttributes; - var _ActiveAttributeMaxLength = OpenTK.Graphics.ES20.EsVersion20.ActiveAttributeMaxLength; - var _ShadingLanguageVersion = OpenTK.Graphics.ES20.EsVersion20.ShadingLanguageVersion; - var _CurrentProgram = OpenTK.Graphics.ES20.EsVersion20.CurrentProgram; - var _ImplementationColorReadType = OpenTK.Graphics.ES20.EsVersion20.ImplementationColorReadType; - var _ImplementationColorReadFormat = OpenTK.Graphics.ES20.EsVersion20.ImplementationColorReadFormat; - var _StencilBackRef = OpenTK.Graphics.ES20.EsVersion20.StencilBackRef; - var _StencilBackValueMask = OpenTK.Graphics.ES20.EsVersion20.StencilBackValueMask; - var _StencilBackWritemask = OpenTK.Graphics.ES20.EsVersion20.StencilBackWritemask; - var _FramebufferBinding = OpenTK.Graphics.ES20.EsVersion20.FramebufferBinding; - var _RenderbufferBinding = OpenTK.Graphics.ES20.EsVersion20.RenderbufferBinding; - var _FramebufferAttachmentObjectType = OpenTK.Graphics.ES20.EsVersion20.FramebufferAttachmentObjectType; - var _FramebufferAttachmentObjectName = OpenTK.Graphics.ES20.EsVersion20.FramebufferAttachmentObjectName; - var _FramebufferAttachmentTextureLevel = OpenTK.Graphics.ES20.EsVersion20.FramebufferAttachmentTextureLevel; - var _FramebufferAttachmentTextureCubeMapFace = OpenTK.Graphics.ES20.EsVersion20.FramebufferAttachmentTextureCubeMapFace; - var _FramebufferComplete = OpenTK.Graphics.ES20.EsVersion20.FramebufferComplete; - var _FramebufferIncompleteAttachment = OpenTK.Graphics.ES20.EsVersion20.FramebufferIncompleteAttachment; - var _FramebufferIncompleteMissingAttachment = OpenTK.Graphics.ES20.EsVersion20.FramebufferIncompleteMissingAttachment; - var _FramebufferIncompleteDimensions = OpenTK.Graphics.ES20.EsVersion20.FramebufferIncompleteDimensions; - var _FramebufferUnsupported = OpenTK.Graphics.ES20.EsVersion20.FramebufferUnsupported; - var _ColorAttachment0 = OpenTK.Graphics.ES20.EsVersion20.ColorAttachment0; - var _DepthAttachment = OpenTK.Graphics.ES20.EsVersion20.DepthAttachment; - var _StencilAttachment = OpenTK.Graphics.ES20.EsVersion20.StencilAttachment; - var _Framebuffer = OpenTK.Graphics.ES20.EsVersion20.Framebuffer; - var _Renderbuffer = OpenTK.Graphics.ES20.EsVersion20.Renderbuffer; - var _RenderbufferWidth = OpenTK.Graphics.ES20.EsVersion20.RenderbufferWidth; - var _RenderbufferHeight = OpenTK.Graphics.ES20.EsVersion20.RenderbufferHeight; - var _RenderbufferInternalFormat = OpenTK.Graphics.ES20.EsVersion20.RenderbufferInternalFormat; - var _StencilIndex8 = OpenTK.Graphics.ES20.EsVersion20.StencilIndex8; - var _RenderbufferRedSize = OpenTK.Graphics.ES20.EsVersion20.RenderbufferRedSize; - var _RenderbufferGreenSize = OpenTK.Graphics.ES20.EsVersion20.RenderbufferGreenSize; - var _RenderbufferBlueSize = OpenTK.Graphics.ES20.EsVersion20.RenderbufferBlueSize; - var _RenderbufferAlphaSize = OpenTK.Graphics.ES20.EsVersion20.RenderbufferAlphaSize; - var _RenderbufferDepthSize = OpenTK.Graphics.ES20.EsVersion20.RenderbufferDepthSize; - var _RenderbufferStencilSize = OpenTK.Graphics.ES20.EsVersion20.RenderbufferStencilSize; - var _Rgb565 = OpenTK.Graphics.ES20.EsVersion20.Rgb565; - var _LowFloat = OpenTK.Graphics.ES20.EsVersion20.LowFloat; - var _MediumFloat = OpenTK.Graphics.ES20.EsVersion20.MediumFloat; - var _HighFloat = OpenTK.Graphics.ES20.EsVersion20.HighFloat; - var _LowInt = OpenTK.Graphics.ES20.EsVersion20.LowInt; - var _MediumInt = OpenTK.Graphics.ES20.EsVersion20.MediumInt; - var _HighInt = OpenTK.Graphics.ES20.EsVersion20.HighInt; - var _ShaderBinaryFormats = OpenTK.Graphics.ES20.EsVersion20.ShaderBinaryFormats; - var _NumShaderBinaryFormats = OpenTK.Graphics.ES20.EsVersion20.NumShaderBinaryFormats; - var _ShaderCompiler = OpenTK.Graphics.ES20.EsVersion20.ShaderCompiler; - var _MaxVertexUniformVectors = OpenTK.Graphics.ES20.EsVersion20.MaxVertexUniformVectors; - var _MaxVaryingVectors = OpenTK.Graphics.ES20.EsVersion20.MaxVaryingVectors; - var _MaxFragmentUniformVectors = OpenTK.Graphics.ES20.EsVersion20.MaxFragmentUniformVectors; - var _One = OpenTK.Graphics.ES20.EsVersion20.One; - var _True = OpenTK.Graphics.ES20.EsVersion20.True; -} -static void Test_ExtBlendMinmax_38152() { - var _FuncAddExt = OpenTK.Graphics.ES20.ExtBlendMinmax.FuncAddExt; - var _MinExt = OpenTK.Graphics.ES20.ExtBlendMinmax.MinExt; - var _MaxExt = OpenTK.Graphics.ES20.ExtBlendMinmax.MaxExt; - var _BlendEquationExt = OpenTK.Graphics.ES20.ExtBlendMinmax.BlendEquationExt; -} -static void Test_ExtColorBufferHalfFloat_38153() { - var _FramebufferAttachmentComponentTypeExt = OpenTK.Graphics.ES20.ExtColorBufferHalfFloat.FramebufferAttachmentComponentTypeExt; - var _R16fExt = OpenTK.Graphics.ES20.ExtColorBufferHalfFloat.R16fExt; - var _Rg16fExt = OpenTK.Graphics.ES20.ExtColorBufferHalfFloat.Rg16fExt; - var _Rgba16fExt = OpenTK.Graphics.ES20.ExtColorBufferHalfFloat.Rgba16fExt; - var _Rgb16fExt = OpenTK.Graphics.ES20.ExtColorBufferHalfFloat.Rgb16fExt; - var _UnsignedNormalizedExt = OpenTK.Graphics.ES20.ExtColorBufferHalfFloat.UnsignedNormalizedExt; -} -static void Test_ExtCopyImage_38154() { -} -static void Test_ExtDebugLabel_38155() { - var _Sampler = OpenTK.Graphics.ES20.ExtDebugLabel.Sampler; - var _ProgramPipelineObjectExt = OpenTK.Graphics.ES20.ExtDebugLabel.ProgramPipelineObjectExt; - var _ProgramObjectExt = OpenTK.Graphics.ES20.ExtDebugLabel.ProgramObjectExt; - var _ShaderObjectExt = OpenTK.Graphics.ES20.ExtDebugLabel.ShaderObjectExt; - var _TransformFeedback = OpenTK.Graphics.ES20.ExtDebugLabel.TransformFeedback; - var _BufferObjectExt = OpenTK.Graphics.ES20.ExtDebugLabel.BufferObjectExt; - var _QueryObjectExt = OpenTK.Graphics.ES20.ExtDebugLabel.QueryObjectExt; - var _VertexArrayObjectExt = OpenTK.Graphics.ES20.ExtDebugLabel.VertexArrayObjectExt; -} -static void Test_ExtDebugMarker_38156() { -} -static void Test_ExtDiscardFramebuffer_38157() { - var _ColorExt = OpenTK.Graphics.ES20.ExtDiscardFramebuffer.ColorExt; - var _DepthExt = OpenTK.Graphics.ES20.ExtDiscardFramebuffer.DepthExt; - var _StencilExt = OpenTK.Graphics.ES20.ExtDiscardFramebuffer.StencilExt; -} -static void Test_ExtDisjointTimerQuery_38158() { - var _QueryCounterBitsExt = OpenTK.Graphics.ES20.ExtDisjointTimerQuery.QueryCounterBitsExt; - var _CurrentQueryExt = OpenTK.Graphics.ES20.ExtDisjointTimerQuery.CurrentQueryExt; - var _QueryResultExt = OpenTK.Graphics.ES20.ExtDisjointTimerQuery.QueryResultExt; - var _QueryResultAvailableExt = OpenTK.Graphics.ES20.ExtDisjointTimerQuery.QueryResultAvailableExt; - var _TimeElapsedExt = OpenTK.Graphics.ES20.ExtDisjointTimerQuery.TimeElapsedExt; - var _TimestampExt = OpenTK.Graphics.ES20.ExtDisjointTimerQuery.TimestampExt; - var _GpuDisjointExt = OpenTK.Graphics.ES20.ExtDisjointTimerQuery.GpuDisjointExt; -} -static void Test_ExtDrawBuffers_38159() { - var _MaxDrawBuffersExt = OpenTK.Graphics.ES20.ExtDrawBuffers.MaxDrawBuffersExt; - var _DrawBuffer0Ext = OpenTK.Graphics.ES20.ExtDrawBuffers.DrawBuffer0Ext; - var _DrawBuffer1Ext = OpenTK.Graphics.ES20.ExtDrawBuffers.DrawBuffer1Ext; - var _DrawBuffer2Ext = OpenTK.Graphics.ES20.ExtDrawBuffers.DrawBuffer2Ext; - var _DrawBuffer3Ext = OpenTK.Graphics.ES20.ExtDrawBuffers.DrawBuffer3Ext; - var _DrawBuffer4Ext = OpenTK.Graphics.ES20.ExtDrawBuffers.DrawBuffer4Ext; - var _DrawBuffer5Ext = OpenTK.Graphics.ES20.ExtDrawBuffers.DrawBuffer5Ext; - var _DrawBuffer6Ext = OpenTK.Graphics.ES20.ExtDrawBuffers.DrawBuffer6Ext; - var _DrawBuffer7Ext = OpenTK.Graphics.ES20.ExtDrawBuffers.DrawBuffer7Ext; - var _DrawBuffer8Ext = OpenTK.Graphics.ES20.ExtDrawBuffers.DrawBuffer8Ext; - var _DrawBuffer9Ext = OpenTK.Graphics.ES20.ExtDrawBuffers.DrawBuffer9Ext; - var _DrawBuffer10Ext = OpenTK.Graphics.ES20.ExtDrawBuffers.DrawBuffer10Ext; - var _DrawBuffer11Ext = OpenTK.Graphics.ES20.ExtDrawBuffers.DrawBuffer11Ext; - var _DrawBuffer12Ext = OpenTK.Graphics.ES20.ExtDrawBuffers.DrawBuffer12Ext; - var _DrawBuffer13Ext = OpenTK.Graphics.ES20.ExtDrawBuffers.DrawBuffer13Ext; - var _DrawBuffer14Ext = OpenTK.Graphics.ES20.ExtDrawBuffers.DrawBuffer14Ext; - var _DrawBuffer15Ext = OpenTK.Graphics.ES20.ExtDrawBuffers.DrawBuffer15Ext; - var _MaxColorAttachmentsExt = OpenTK.Graphics.ES20.ExtDrawBuffers.MaxColorAttachmentsExt; - var _ColorAttachment0Ext = OpenTK.Graphics.ES20.ExtDrawBuffers.ColorAttachment0Ext; - var _ColorAttachment1Ext = OpenTK.Graphics.ES20.ExtDrawBuffers.ColorAttachment1Ext; - var _ColorAttachment2Ext = OpenTK.Graphics.ES20.ExtDrawBuffers.ColorAttachment2Ext; - var _ColorAttachment3Ext = OpenTK.Graphics.ES20.ExtDrawBuffers.ColorAttachment3Ext; - var _ColorAttachment4Ext = OpenTK.Graphics.ES20.ExtDrawBuffers.ColorAttachment4Ext; - var _ColorAttachment5Ext = OpenTK.Graphics.ES20.ExtDrawBuffers.ColorAttachment5Ext; - var _ColorAttachment6Ext = OpenTK.Graphics.ES20.ExtDrawBuffers.ColorAttachment6Ext; - var _ColorAttachment7Ext = OpenTK.Graphics.ES20.ExtDrawBuffers.ColorAttachment7Ext; - var _ColorAttachment8Ext = OpenTK.Graphics.ES20.ExtDrawBuffers.ColorAttachment8Ext; - var _ColorAttachment9Ext = OpenTK.Graphics.ES20.ExtDrawBuffers.ColorAttachment9Ext; - var _ColorAttachment10Ext = OpenTK.Graphics.ES20.ExtDrawBuffers.ColorAttachment10Ext; - var _ColorAttachment11Ext = OpenTK.Graphics.ES20.ExtDrawBuffers.ColorAttachment11Ext; - var _ColorAttachment12Ext = OpenTK.Graphics.ES20.ExtDrawBuffers.ColorAttachment12Ext; - var _ColorAttachment13Ext = OpenTK.Graphics.ES20.ExtDrawBuffers.ColorAttachment13Ext; - var _ColorAttachment14Ext = OpenTK.Graphics.ES20.ExtDrawBuffers.ColorAttachment14Ext; - var _ColorAttachment15Ext = OpenTK.Graphics.ES20.ExtDrawBuffers.ColorAttachment15Ext; -} -static void Test_ExtDrawBuffersIndexed_38160() { - var _Zero = OpenTK.Graphics.ES20.ExtDrawBuffersIndexed.Zero; - var _SrcColor = OpenTK.Graphics.ES20.ExtDrawBuffersIndexed.SrcColor; - var _OneMinusSrcColor = OpenTK.Graphics.ES20.ExtDrawBuffersIndexed.OneMinusSrcColor; - var _SrcAlpha = OpenTK.Graphics.ES20.ExtDrawBuffersIndexed.SrcAlpha; - var _OneMinusSrcAlpha = OpenTK.Graphics.ES20.ExtDrawBuffersIndexed.OneMinusSrcAlpha; - var _DstAlpha = OpenTK.Graphics.ES20.ExtDrawBuffersIndexed.DstAlpha; - var _OneMinusDstAlpha = OpenTK.Graphics.ES20.ExtDrawBuffersIndexed.OneMinusDstAlpha; - var _DstColor = OpenTK.Graphics.ES20.ExtDrawBuffersIndexed.DstColor; - var _OneMinusDstColor = OpenTK.Graphics.ES20.ExtDrawBuffersIndexed.OneMinusDstColor; - var _SrcAlphaSaturate = OpenTK.Graphics.ES20.ExtDrawBuffersIndexed.SrcAlphaSaturate; - var _Blend = OpenTK.Graphics.ES20.ExtDrawBuffersIndexed.Blend; - var _ColorWritemask = OpenTK.Graphics.ES20.ExtDrawBuffersIndexed.ColorWritemask; - var _ConstantColor = OpenTK.Graphics.ES20.ExtDrawBuffersIndexed.ConstantColor; - var _OneMinusConstantColor = OpenTK.Graphics.ES20.ExtDrawBuffersIndexed.OneMinusConstantColor; - var _ConstantAlpha = OpenTK.Graphics.ES20.ExtDrawBuffersIndexed.ConstantAlpha; - var _OneMinusConstantAlpha = OpenTK.Graphics.ES20.ExtDrawBuffersIndexed.OneMinusConstantAlpha; - var _FuncAdd = OpenTK.Graphics.ES20.ExtDrawBuffersIndexed.FuncAdd; - var _Min = OpenTK.Graphics.ES20.ExtDrawBuffersIndexed.Min; - var _Max = OpenTK.Graphics.ES20.ExtDrawBuffersIndexed.Max; - var _BlendEquationRgb = OpenTK.Graphics.ES20.ExtDrawBuffersIndexed.BlendEquationRgb; - var _FuncSubtract = OpenTK.Graphics.ES20.ExtDrawBuffersIndexed.FuncSubtract; - var _FuncReverseSubtract = OpenTK.Graphics.ES20.ExtDrawBuffersIndexed.FuncReverseSubtract; - var _BlendDstRgb = OpenTK.Graphics.ES20.ExtDrawBuffersIndexed.BlendDstRgb; - var _BlendSrcRgb = OpenTK.Graphics.ES20.ExtDrawBuffersIndexed.BlendSrcRgb; - var _BlendDstAlpha = OpenTK.Graphics.ES20.ExtDrawBuffersIndexed.BlendDstAlpha; - var _BlendSrcAlpha = OpenTK.Graphics.ES20.ExtDrawBuffersIndexed.BlendSrcAlpha; - var _BlendEquationAlpha = OpenTK.Graphics.ES20.ExtDrawBuffersIndexed.BlendEquationAlpha; - var _One = OpenTK.Graphics.ES20.ExtDrawBuffersIndexed.One; -} -static void Test_ExtDrawInstanced_38161() { -} -static void Test_ExtGeometryPointSize_38162() { -} -static void Test_ExtGeometryShader_38163() { - var _GeometryShaderBitExt = OpenTK.Graphics.ES20.ExtGeometryShader.GeometryShaderBitExt; - var _LinesAdjacencyExt = OpenTK.Graphics.ES20.ExtGeometryShader.LinesAdjacencyExt; - var _LineStripAdjacencyExt = OpenTK.Graphics.ES20.ExtGeometryShader.LineStripAdjacencyExt; - var _TrianglesAdjacencyExt = OpenTK.Graphics.ES20.ExtGeometryShader.TrianglesAdjacencyExt; - var _TriangleStripAdjacencyExt = OpenTK.Graphics.ES20.ExtGeometryShader.TriangleStripAdjacencyExt; - var _LayerProvokingVertexExt = OpenTK.Graphics.ES20.ExtGeometryShader.LayerProvokingVertexExt; - var _UndefinedVertexExt = OpenTK.Graphics.ES20.ExtGeometryShader.UndefinedVertexExt; - var _GeometryShaderInvocationsExt = OpenTK.Graphics.ES20.ExtGeometryShader.GeometryShaderInvocationsExt; - var _GeometryLinkedVerticesOutExt = OpenTK.Graphics.ES20.ExtGeometryShader.GeometryLinkedVerticesOutExt; - var _GeometryLinkedInputTypeExt = OpenTK.Graphics.ES20.ExtGeometryShader.GeometryLinkedInputTypeExt; - var _GeometryLinkedOutputTypeExt = OpenTK.Graphics.ES20.ExtGeometryShader.GeometryLinkedOutputTypeExt; - var _MaxGeometryUniformBlocksExt = OpenTK.Graphics.ES20.ExtGeometryShader.MaxGeometryUniformBlocksExt; - var _MaxCombinedGeometryUniformComponentsExt = OpenTK.Graphics.ES20.ExtGeometryShader.MaxCombinedGeometryUniformComponentsExt; - var _MaxGeometryTextureImageUnitsExt = OpenTK.Graphics.ES20.ExtGeometryShader.MaxGeometryTextureImageUnitsExt; - var _PrimitivesGeneratedExt = OpenTK.Graphics.ES20.ExtGeometryShader.PrimitivesGeneratedExt; - var _FramebufferAttachmentLayeredExt = OpenTK.Graphics.ES20.ExtGeometryShader.FramebufferAttachmentLayeredExt; - var _FramebufferIncompleteLayerTargetsExt = OpenTK.Graphics.ES20.ExtGeometryShader.FramebufferIncompleteLayerTargetsExt; - var _GeometryShaderExt = OpenTK.Graphics.ES20.ExtGeometryShader.GeometryShaderExt; - var _MaxGeometryUniformComponentsExt = OpenTK.Graphics.ES20.ExtGeometryShader.MaxGeometryUniformComponentsExt; - var _MaxGeometryOutputVerticesExt = OpenTK.Graphics.ES20.ExtGeometryShader.MaxGeometryOutputVerticesExt; - var _MaxGeometryTotalOutputComponentsExt = OpenTK.Graphics.ES20.ExtGeometryShader.MaxGeometryTotalOutputComponentsExt; - var _FirstVertexConventionExt = OpenTK.Graphics.ES20.ExtGeometryShader.FirstVertexConventionExt; - var _LastVertexConventionExt = OpenTK.Graphics.ES20.ExtGeometryShader.LastVertexConventionExt; - var _MaxGeometryShaderInvocationsExt = OpenTK.Graphics.ES20.ExtGeometryShader.MaxGeometryShaderInvocationsExt; - var _MaxGeometryImageUniformsExt = OpenTK.Graphics.ES20.ExtGeometryShader.MaxGeometryImageUniformsExt; - var _MaxGeometryShaderStorageBlocksExt = OpenTK.Graphics.ES20.ExtGeometryShader.MaxGeometryShaderStorageBlocksExt; - var _MaxGeometryInputComponentsExt = OpenTK.Graphics.ES20.ExtGeometryShader.MaxGeometryInputComponentsExt; - var _MaxGeometryOutputComponentsExt = OpenTK.Graphics.ES20.ExtGeometryShader.MaxGeometryOutputComponentsExt; - var _MaxGeometryAtomicCounterBuffersExt = OpenTK.Graphics.ES20.ExtGeometryShader.MaxGeometryAtomicCounterBuffersExt; - var _MaxGeometryAtomicCountersExt = OpenTK.Graphics.ES20.ExtGeometryShader.MaxGeometryAtomicCountersExt; - var _ReferencedByGeometryShaderExt = OpenTK.Graphics.ES20.ExtGeometryShader.ReferencedByGeometryShaderExt; - var _FramebufferDefaultLayersExt = OpenTK.Graphics.ES20.ExtGeometryShader.FramebufferDefaultLayersExt; - var _MaxFramebufferLayersExt = OpenTK.Graphics.ES20.ExtGeometryShader.MaxFramebufferLayersExt; -} -static void Test_ExtGpuShader5_38164() { -} -static void Test_ExtInstancedArrays_38165() { - var _VertexAttribArrayDivisorExt = OpenTK.Graphics.ES20.ExtInstancedArrays.VertexAttribArrayDivisorExt; -} -static void Test_ExtMapBufferRange_38166() { - var _MapReadBitExt = OpenTK.Graphics.ES20.ExtMapBufferRange.MapReadBitExt; - var _MapWriteBitExt = OpenTK.Graphics.ES20.ExtMapBufferRange.MapWriteBitExt; - var _MapInvalidateRangeBitExt = OpenTK.Graphics.ES20.ExtMapBufferRange.MapInvalidateRangeBitExt; - var _MapInvalidateBufferBitExt = OpenTK.Graphics.ES20.ExtMapBufferRange.MapInvalidateBufferBitExt; - var _MapFlushExplicitBitExt = OpenTK.Graphics.ES20.ExtMapBufferRange.MapFlushExplicitBitExt; - var _MapUnsynchronizedBitExt = OpenTK.Graphics.ES20.ExtMapBufferRange.MapUnsynchronizedBitExt; -} -static void Test_ExtMultiDrawArrays_38167() { -} -static void Test_ExtMultisampledRenderToTexture_38168() { - var _RenderbufferSamplesExt = OpenTK.Graphics.ES20.ExtMultisampledRenderToTexture.RenderbufferSamplesExt; - var _FramebufferIncompleteMultisampleExt = OpenTK.Graphics.ES20.ExtMultisampledRenderToTexture.FramebufferIncompleteMultisampleExt; - var _MaxSamplesExt = OpenTK.Graphics.ES20.ExtMultisampledRenderToTexture.MaxSamplesExt; - var _FramebufferAttachmentTextureSamplesExt = OpenTK.Graphics.ES20.ExtMultisampledRenderToTexture.FramebufferAttachmentTextureSamplesExt; -} -static void Test_ExtMultiviewDrawBuffers_38169() { - var _DrawBufferExt = OpenTK.Graphics.ES20.ExtMultiviewDrawBuffers.DrawBufferExt; - var _ReadBufferExt = OpenTK.Graphics.ES20.ExtMultiviewDrawBuffers.ReadBufferExt; - var _ColorAttachmentExt = OpenTK.Graphics.ES20.ExtMultiviewDrawBuffers.ColorAttachmentExt; - var _MultiviewExt = OpenTK.Graphics.ES20.ExtMultiviewDrawBuffers.MultiviewExt; - var _MaxMultiviewBuffersExt = OpenTK.Graphics.ES20.ExtMultiviewDrawBuffers.MaxMultiviewBuffersExt; -} -static void Test_ExtOcclusionQueryBoolean_38170() { - var _CurrentQueryExt = OpenTK.Graphics.ES20.ExtOcclusionQueryBoolean.CurrentQueryExt; - var _QueryResultExt = OpenTK.Graphics.ES20.ExtOcclusionQueryBoolean.QueryResultExt; - var _QueryResultAvailableExt = OpenTK.Graphics.ES20.ExtOcclusionQueryBoolean.QueryResultAvailableExt; - var _AnySamplesPassedExt = OpenTK.Graphics.ES20.ExtOcclusionQueryBoolean.AnySamplesPassedExt; - var _AnySamplesPassedConservativeExt = OpenTK.Graphics.ES20.ExtOcclusionQueryBoolean.AnySamplesPassedConservativeExt; -} -static void Test_ExtPrimitiveBoundingBox_38171() { - var _PrimitiveBoundingBoxExt = OpenTK.Graphics.ES20.ExtPrimitiveBoundingBox.PrimitiveBoundingBoxExt; -} -static void Test_ExtPvrtcSrgb_38172() { - var _CompressedSrgbPvrtc2Bppv1Ext = OpenTK.Graphics.ES20.ExtPvrtcSrgb.CompressedSrgbPvrtc2Bppv1Ext; - var _CompressedSrgbPvrtc4Bppv1Ext = OpenTK.Graphics.ES20.ExtPvrtcSrgb.CompressedSrgbPvrtc4Bppv1Ext; - var _CompressedSrgbAlphaPvrtc2Bppv1Ext = OpenTK.Graphics.ES20.ExtPvrtcSrgb.CompressedSrgbAlphaPvrtc2Bppv1Ext; - var _CompressedSrgbAlphaPvrtc4Bppv1Ext = OpenTK.Graphics.ES20.ExtPvrtcSrgb.CompressedSrgbAlphaPvrtc4Bppv1Ext; - var _CompressedSrgbAlphaPvrtc2Bppv2Img = OpenTK.Graphics.ES20.ExtPvrtcSrgb.CompressedSrgbAlphaPvrtc2Bppv2Img; - var _CompressedSrgbAlphaPvrtc4Bppv2Img = OpenTK.Graphics.ES20.ExtPvrtcSrgb.CompressedSrgbAlphaPvrtc4Bppv2Img; -} -static void Test_ExtReadFormatBgra_38173() { - var _BgraExt = OpenTK.Graphics.ES20.ExtReadFormatBgra.BgraExt; - var _UnsignedShort4444RevExt = OpenTK.Graphics.ES20.ExtReadFormatBgra.UnsignedShort4444RevExt; - var _UnsignedShort1555RevExt = OpenTK.Graphics.ES20.ExtReadFormatBgra.UnsignedShort1555RevExt; -} -static void Test_ExtRobustness_38174() { - var _NoError = OpenTK.Graphics.ES20.ExtRobustness.NoError; - var _LoseContextOnResetExt = OpenTK.Graphics.ES20.ExtRobustness.LoseContextOnResetExt; - var _GuiltyContextResetExt = OpenTK.Graphics.ES20.ExtRobustness.GuiltyContextResetExt; - var _InnocentContextResetExt = OpenTK.Graphics.ES20.ExtRobustness.InnocentContextResetExt; - var _UnknownContextResetExt = OpenTK.Graphics.ES20.ExtRobustness.UnknownContextResetExt; - var _ResetNotificationStrategyExt = OpenTK.Graphics.ES20.ExtRobustness.ResetNotificationStrategyExt; - var _NoResetNotificationExt = OpenTK.Graphics.ES20.ExtRobustness.NoResetNotificationExt; - var _ContextRobustAccessExt = OpenTK.Graphics.ES20.ExtRobustness.ContextRobustAccessExt; -} -static void Test_ExtSeparateShaderObjects_38175() { - var _VertexShaderBitExt = OpenTK.Graphics.ES20.ExtSeparateShaderObjects.VertexShaderBitExt; - var _FragmentShaderBitExt = OpenTK.Graphics.ES20.ExtSeparateShaderObjects.FragmentShaderBitExt; - var _ProgramSeparableExt = OpenTK.Graphics.ES20.ExtSeparateShaderObjects.ProgramSeparableExt; - var _ActiveProgramExt = OpenTK.Graphics.ES20.ExtSeparateShaderObjects.ActiveProgramExt; - var _ProgramPipelineBindingExt = OpenTK.Graphics.ES20.ExtSeparateShaderObjects.ProgramPipelineBindingExt; - var _AllShaderBitsExt = OpenTK.Graphics.ES20.ExtSeparateShaderObjects.AllShaderBitsExt; -} -static void Test_ExtShaderFramebufferFetch_38176() { - var _FragmentShaderDiscardsSamplesExt = OpenTK.Graphics.ES20.ExtShaderFramebufferFetch.FragmentShaderDiscardsSamplesExt; -} -static void Test_ExtShaderImplicitConversions_38177() { -} -static void Test_ExtShaderIntegerMix_38178() { -} -static void Test_ExtShaderIoBlocks_38179() { -} -static void Test_ExtShaderPixelLocalStorage_38180() { - var _MaxShaderPixelLocalStorageFastSizeExt = OpenTK.Graphics.ES20.ExtShaderPixelLocalStorage.MaxShaderPixelLocalStorageFastSizeExt; - var _ShaderPixelLocalStorageExt = OpenTK.Graphics.ES20.ExtShaderPixelLocalStorage.ShaderPixelLocalStorageExt; - var _MaxShaderPixelLocalStorageSizeExt = OpenTK.Graphics.ES20.ExtShaderPixelLocalStorage.MaxShaderPixelLocalStorageSizeExt; -} -static void Test_ExtShaderTextureLod_38181() { -} -static void Test_ExtShadowSamplers_38182() { - var _TextureCompareModeExt = OpenTK.Graphics.ES20.ExtShadowSamplers.TextureCompareModeExt; - var _TextureCompareFuncExt = OpenTK.Graphics.ES20.ExtShadowSamplers.TextureCompareFuncExt; - var _CompareRefToTextureExt = OpenTK.Graphics.ES20.ExtShadowSamplers.CompareRefToTextureExt; - var _Sampler2DShadowExt = OpenTK.Graphics.ES20.ExtShadowSamplers.Sampler2DShadowExt; -} -static void Test_ExtSrgb_38183() { - var _FramebufferAttachmentColorEncodingExt = OpenTK.Graphics.ES20.ExtSrgb.FramebufferAttachmentColorEncodingExt; - var _SrgbExt = OpenTK.Graphics.ES20.ExtSrgb.SrgbExt; - var _SrgbAlphaExt = OpenTK.Graphics.ES20.ExtSrgb.SrgbAlphaExt; - var _Srgb8Alpha8Ext = OpenTK.Graphics.ES20.ExtSrgb.Srgb8Alpha8Ext; -} -static void Test_ExtSrgbWriteControl_38184() { - var _FramebufferSrgbExt = OpenTK.Graphics.ES20.ExtSrgbWriteControl.FramebufferSrgbExt; -} -static void Test_ExtTessellationPointSize_38185() { -} -static void Test_ExtTessellationShader_38186() { - var _TessControlShaderBitExt = OpenTK.Graphics.ES20.ExtTessellationShader.TessControlShaderBitExt; - var _TessEvaluationShaderBitExt = OpenTK.Graphics.ES20.ExtTessellationShader.TessEvaluationShaderBitExt; - var _Triangles = OpenTK.Graphics.ES20.ExtTessellationShader.Triangles; - var _QuadsExt = OpenTK.Graphics.ES20.ExtTessellationShader.QuadsExt; - var _PatchesExt = OpenTK.Graphics.ES20.ExtTessellationShader.PatchesExt; - var _Equal = OpenTK.Graphics.ES20.ExtTessellationShader.Equal; - var _Cw = OpenTK.Graphics.ES20.ExtTessellationShader.Cw; - var _Ccw = OpenTK.Graphics.ES20.ExtTessellationShader.Ccw; - var _PrimitiveRestartForPatchesSupported = OpenTK.Graphics.ES20.ExtTessellationShader.PrimitiveRestartForPatchesSupported; - var _MaxTessControlInputComponentsExt = OpenTK.Graphics.ES20.ExtTessellationShader.MaxTessControlInputComponentsExt; - var _MaxTessEvaluationInputComponentsExt = OpenTK.Graphics.ES20.ExtTessellationShader.MaxTessEvaluationInputComponentsExt; - var _MaxCombinedTessControlUniformComponentsExt = OpenTK.Graphics.ES20.ExtTessellationShader.MaxCombinedTessControlUniformComponentsExt; - var _MaxCombinedTessEvaluationUniformComponentsExt = OpenTK.Graphics.ES20.ExtTessellationShader.MaxCombinedTessEvaluationUniformComponentsExt; - var _PatchVerticesExt = OpenTK.Graphics.ES20.ExtTessellationShader.PatchVerticesExt; - var _TessControlOutputVerticesExt = OpenTK.Graphics.ES20.ExtTessellationShader.TessControlOutputVerticesExt; - var _TessGenModeExt = OpenTK.Graphics.ES20.ExtTessellationShader.TessGenModeExt; - var _TessGenSpacingExt = OpenTK.Graphics.ES20.ExtTessellationShader.TessGenSpacingExt; - var _TessGenVertexOrderExt = OpenTK.Graphics.ES20.ExtTessellationShader.TessGenVertexOrderExt; - var _TessGenPointModeExt = OpenTK.Graphics.ES20.ExtTessellationShader.TessGenPointModeExt; - var _IsolinesExt = OpenTK.Graphics.ES20.ExtTessellationShader.IsolinesExt; - var _FractionalOddExt = OpenTK.Graphics.ES20.ExtTessellationShader.FractionalOddExt; - var _FractionalEvenExt = OpenTK.Graphics.ES20.ExtTessellationShader.FractionalEvenExt; - var _MaxPatchVerticesExt = OpenTK.Graphics.ES20.ExtTessellationShader.MaxPatchVerticesExt; - var _MaxTessGenLevelExt = OpenTK.Graphics.ES20.ExtTessellationShader.MaxTessGenLevelExt; - var _MaxTessControlUniformComponentsExt = OpenTK.Graphics.ES20.ExtTessellationShader.MaxTessControlUniformComponentsExt; - var _MaxTessEvaluationUniformComponentsExt = OpenTK.Graphics.ES20.ExtTessellationShader.MaxTessEvaluationUniformComponentsExt; - var _MaxTessControlTextureImageUnitsExt = OpenTK.Graphics.ES20.ExtTessellationShader.MaxTessControlTextureImageUnitsExt; - var _MaxTessEvaluationTextureImageUnitsExt = OpenTK.Graphics.ES20.ExtTessellationShader.MaxTessEvaluationTextureImageUnitsExt; - var _MaxTessControlOutputComponentsExt = OpenTK.Graphics.ES20.ExtTessellationShader.MaxTessControlOutputComponentsExt; - var _MaxTessPatchComponentsExt = OpenTK.Graphics.ES20.ExtTessellationShader.MaxTessPatchComponentsExt; - var _MaxTessControlTotalOutputComponentsExt = OpenTK.Graphics.ES20.ExtTessellationShader.MaxTessControlTotalOutputComponentsExt; - var _MaxTessEvaluationOutputComponentsExt = OpenTK.Graphics.ES20.ExtTessellationShader.MaxTessEvaluationOutputComponentsExt; - var _TessEvaluationShaderExt = OpenTK.Graphics.ES20.ExtTessellationShader.TessEvaluationShaderExt; - var _TessControlShaderExt = OpenTK.Graphics.ES20.ExtTessellationShader.TessControlShaderExt; - var _MaxTessControlUniformBlocksExt = OpenTK.Graphics.ES20.ExtTessellationShader.MaxTessControlUniformBlocksExt; - var _MaxTessEvaluationUniformBlocksExt = OpenTK.Graphics.ES20.ExtTessellationShader.MaxTessEvaluationUniformBlocksExt; - var _MaxTessControlImageUniformsExt = OpenTK.Graphics.ES20.ExtTessellationShader.MaxTessControlImageUniformsExt; - var _MaxTessEvaluationImageUniformsExt = OpenTK.Graphics.ES20.ExtTessellationShader.MaxTessEvaluationImageUniformsExt; - var _MaxTessControlShaderStorageBlocksExt = OpenTK.Graphics.ES20.ExtTessellationShader.MaxTessControlShaderStorageBlocksExt; - var _MaxTessEvaluationShaderStorageBlocksExt = OpenTK.Graphics.ES20.ExtTessellationShader.MaxTessEvaluationShaderStorageBlocksExt; - var _MaxTessControlAtomicCounterBuffersExt = OpenTK.Graphics.ES20.ExtTessellationShader.MaxTessControlAtomicCounterBuffersExt; - var _MaxTessEvaluationAtomicCounterBuffersExt = OpenTK.Graphics.ES20.ExtTessellationShader.MaxTessEvaluationAtomicCounterBuffersExt; - var _MaxTessControlAtomicCountersExt = OpenTK.Graphics.ES20.ExtTessellationShader.MaxTessControlAtomicCountersExt; - var _MaxTessEvaluationAtomicCountersExt = OpenTK.Graphics.ES20.ExtTessellationShader.MaxTessEvaluationAtomicCountersExt; - var _IsPerPatchExt = OpenTK.Graphics.ES20.ExtTessellationShader.IsPerPatchExt; - var _ReferencedByTessControlShaderExt = OpenTK.Graphics.ES20.ExtTessellationShader.ReferencedByTessControlShaderExt; - var _ReferencedByTessEvaluationShaderExt = OpenTK.Graphics.ES20.ExtTessellationShader.ReferencedByTessEvaluationShaderExt; -} -static void Test_ExtTextureBorderClamp_38187() { - var _TextureBorderColorExt = OpenTK.Graphics.ES20.ExtTextureBorderClamp.TextureBorderColorExt; - var _ClampToBorderExt = OpenTK.Graphics.ES20.ExtTextureBorderClamp.ClampToBorderExt; -} -static void Test_ExtTextureBuffer_38188() { - var _TextureBufferBindingExt = OpenTK.Graphics.ES20.ExtTextureBuffer.TextureBufferBindingExt; - var _TextureBufferExt = OpenTK.Graphics.ES20.ExtTextureBuffer.TextureBufferExt; - var _MaxTextureBufferSizeExt = OpenTK.Graphics.ES20.ExtTextureBuffer.MaxTextureBufferSizeExt; - var _TextureBindingBufferExt = OpenTK.Graphics.ES20.ExtTextureBuffer.TextureBindingBufferExt; - var _TextureBufferDataStoreBindingExt = OpenTK.Graphics.ES20.ExtTextureBuffer.TextureBufferDataStoreBindingExt; - var _SamplerBufferExt = OpenTK.Graphics.ES20.ExtTextureBuffer.SamplerBufferExt; - var _IntSamplerBufferExt = OpenTK.Graphics.ES20.ExtTextureBuffer.IntSamplerBufferExt; - var _UnsignedIntSamplerBufferExt = OpenTK.Graphics.ES20.ExtTextureBuffer.UnsignedIntSamplerBufferExt; - var _ImageBufferExt = OpenTK.Graphics.ES20.ExtTextureBuffer.ImageBufferExt; - var _IntImageBufferExt = OpenTK.Graphics.ES20.ExtTextureBuffer.IntImageBufferExt; - var _UnsignedIntImageBufferExt = OpenTK.Graphics.ES20.ExtTextureBuffer.UnsignedIntImageBufferExt; - var _TextureBufferOffsetExt = OpenTK.Graphics.ES20.ExtTextureBuffer.TextureBufferOffsetExt; - var _TextureBufferSizeExt = OpenTK.Graphics.ES20.ExtTextureBuffer.TextureBufferSizeExt; - var _TextureBufferOffsetAlignmentExt = OpenTK.Graphics.ES20.ExtTextureBuffer.TextureBufferOffsetAlignmentExt; -} -static void Test_ExtTextureCompressionDxt1_38189() { - var _CompressedRgbS3tcDxt1Ext = OpenTK.Graphics.ES20.ExtTextureCompressionDxt1.CompressedRgbS3tcDxt1Ext; - var _CompressedRgbaS3tcDxt1Ext = OpenTK.Graphics.ES20.ExtTextureCompressionDxt1.CompressedRgbaS3tcDxt1Ext; -} -static void Test_ExtTextureCompressionS3tc_38190() { - var _CompressedRgbS3tcDxt1Ext = OpenTK.Graphics.ES20.ExtTextureCompressionS3tc.CompressedRgbS3tcDxt1Ext; - var _CompressedRgbaS3tcDxt1Ext = OpenTK.Graphics.ES20.ExtTextureCompressionS3tc.CompressedRgbaS3tcDxt1Ext; - var _CompressedRgbaS3tcDxt3Ext = OpenTK.Graphics.ES20.ExtTextureCompressionS3tc.CompressedRgbaS3tcDxt3Ext; - var _CompressedRgbaS3tcDxt5Ext = OpenTK.Graphics.ES20.ExtTextureCompressionS3tc.CompressedRgbaS3tcDxt5Ext; -} -static void Test_ExtTextureCubeMapArray_38191() { - var _TextureCubeMapArrayExt = OpenTK.Graphics.ES20.ExtTextureCubeMapArray.TextureCubeMapArrayExt; - var _TextureBindingCubeMapArrayExt = OpenTK.Graphics.ES20.ExtTextureCubeMapArray.TextureBindingCubeMapArrayExt; - var _SamplerCubeMapArrayExt = OpenTK.Graphics.ES20.ExtTextureCubeMapArray.SamplerCubeMapArrayExt; - var _SamplerCubeMapArrayShadowExt = OpenTK.Graphics.ES20.ExtTextureCubeMapArray.SamplerCubeMapArrayShadowExt; - var _IntSamplerCubeMapArrayExt = OpenTK.Graphics.ES20.ExtTextureCubeMapArray.IntSamplerCubeMapArrayExt; - var _UnsignedIntSamplerCubeMapArrayExt = OpenTK.Graphics.ES20.ExtTextureCubeMapArray.UnsignedIntSamplerCubeMapArrayExt; - var _ImageCubeMapArrayExt = OpenTK.Graphics.ES20.ExtTextureCubeMapArray.ImageCubeMapArrayExt; - var _IntImageCubeMapArrayExt = OpenTK.Graphics.ES20.ExtTextureCubeMapArray.IntImageCubeMapArrayExt; - var _UnsignedIntImageCubeMapArrayExt = OpenTK.Graphics.ES20.ExtTextureCubeMapArray.UnsignedIntImageCubeMapArrayExt; -} -static void Test_ExtTextureFilterAnisotropic_38192() { - var _TextureMaxAnisotropyExt = OpenTK.Graphics.ES20.ExtTextureFilterAnisotropic.TextureMaxAnisotropyExt; - var _MaxTextureMaxAnisotropyExt = OpenTK.Graphics.ES20.ExtTextureFilterAnisotropic.MaxTextureMaxAnisotropyExt; -} -static void Test_ExtTextureFormatBgra8888_38193() { - var _BgraExt = OpenTK.Graphics.ES20.ExtTextureFormatBgra8888.BgraExt; -} -static void Test_ExtTextureRg_38194() { - var _RedExt = OpenTK.Graphics.ES20.ExtTextureRg.RedExt; - var _RgExt = OpenTK.Graphics.ES20.ExtTextureRg.RgExt; - var _R8Ext = OpenTK.Graphics.ES20.ExtTextureRg.R8Ext; - var _Rg8Ext = OpenTK.Graphics.ES20.ExtTextureRg.Rg8Ext; -} -static void Test_ExtTextureSrgbDecode_38195() { - var _TextureSrgbDecodeExt = OpenTK.Graphics.ES20.ExtTextureSrgbDecode.TextureSrgbDecodeExt; - var _DecodeExt = OpenTK.Graphics.ES20.ExtTextureSrgbDecode.DecodeExt; - var _SkipDecodeExt = OpenTK.Graphics.ES20.ExtTextureSrgbDecode.SkipDecodeExt; -} -static void Test_ExtTextureStorage_38196() { - var _Alpha8Ext = OpenTK.Graphics.ES20.ExtTextureStorage.Alpha8Ext; - var _Luminance8Ext = OpenTK.Graphics.ES20.ExtTextureStorage.Luminance8Ext; - var _Luminance8Alpha8Ext = OpenTK.Graphics.ES20.ExtTextureStorage.Luminance8Alpha8Ext; - var _Rgb10Ext = OpenTK.Graphics.ES20.ExtTextureStorage.Rgb10Ext; - var _Rgb10A2Ext = OpenTK.Graphics.ES20.ExtTextureStorage.Rgb10A2Ext; - var _R8Ext = OpenTK.Graphics.ES20.ExtTextureStorage.R8Ext; - var _Rg8Ext = OpenTK.Graphics.ES20.ExtTextureStorage.Rg8Ext; - var _R16fExt = OpenTK.Graphics.ES20.ExtTextureStorage.R16fExt; - var _R32fExt = OpenTK.Graphics.ES20.ExtTextureStorage.R32fExt; - var _Rg16fExt = OpenTK.Graphics.ES20.ExtTextureStorage.Rg16fExt; - var _Rg32fExt = OpenTK.Graphics.ES20.ExtTextureStorage.Rg32fExt; - var _Rgba32fExt = OpenTK.Graphics.ES20.ExtTextureStorage.Rgba32fExt; - var _Rgb32fExt = OpenTK.Graphics.ES20.ExtTextureStorage.Rgb32fExt; - var _Alpha32fExt = OpenTK.Graphics.ES20.ExtTextureStorage.Alpha32fExt; - var _Luminance32fExt = OpenTK.Graphics.ES20.ExtTextureStorage.Luminance32fExt; - var _LuminanceAlpha32fExt = OpenTK.Graphics.ES20.ExtTextureStorage.LuminanceAlpha32fExt; - var _Rgba16fExt = OpenTK.Graphics.ES20.ExtTextureStorage.Rgba16fExt; - var _Rgb16fExt = OpenTK.Graphics.ES20.ExtTextureStorage.Rgb16fExt; - var _Alpha16fExt = OpenTK.Graphics.ES20.ExtTextureStorage.Alpha16fExt; - var _Luminance16fExt = OpenTK.Graphics.ES20.ExtTextureStorage.Luminance16fExt; - var _LuminanceAlpha16fExt = OpenTK.Graphics.ES20.ExtTextureStorage.LuminanceAlpha16fExt; - var _TextureImmutableFormatExt = OpenTK.Graphics.ES20.ExtTextureStorage.TextureImmutableFormatExt; - var _Bgra8Ext = OpenTK.Graphics.ES20.ExtTextureStorage.Bgra8Ext; -} -static void Test_ExtTextureType2101010Rev_38197() { - var _UnsignedInt2101010RevExt = OpenTK.Graphics.ES20.ExtTextureType2101010Rev.UnsignedInt2101010RevExt; -} -static void Test_ExtTextureView_38198() { - var _TextureViewMinLevelExt = OpenTK.Graphics.ES20.ExtTextureView.TextureViewMinLevelExt; - var _TextureViewNumLevelsExt = OpenTK.Graphics.ES20.ExtTextureView.TextureViewNumLevelsExt; - var _TextureViewMinLayerExt = OpenTK.Graphics.ES20.ExtTextureView.TextureViewMinLayerExt; - var _TextureViewNumLayersExt = OpenTK.Graphics.ES20.ExtTextureView.TextureViewNumLayersExt; - var _TextureImmutableLevels = OpenTK.Graphics.ES20.ExtTextureView.TextureImmutableLevels; -} -static void Test_ExtUnpackSubimage_38199() { - var _UnpackRowLengthExt = OpenTK.Graphics.ES20.ExtUnpackSubimage.UnpackRowLengthExt; - var _UnpackSkipRowsExt = OpenTK.Graphics.ES20.ExtUnpackSubimage.UnpackSkipRowsExt; - var _UnpackSkipPixelsExt = OpenTK.Graphics.ES20.ExtUnpackSubimage.UnpackSkipPixelsExt; -} -static void Test_FeedBackToken_38200() { - var _PassThroughToken = OpenTK.Graphics.ES20.FeedBackToken.PassThroughToken; - var _PointToken = OpenTK.Graphics.ES20.FeedBackToken.PointToken; - var _LineToken = OpenTK.Graphics.ES20.FeedBackToken.LineToken; - var _PolygonToken = OpenTK.Graphics.ES20.FeedBackToken.PolygonToken; - var _BitmapToken = OpenTK.Graphics.ES20.FeedBackToken.BitmapToken; - var _DrawPixelToken = OpenTK.Graphics.ES20.FeedBackToken.DrawPixelToken; - var _CopyPixelToken = OpenTK.Graphics.ES20.FeedBackToken.CopyPixelToken; - var _LineResetToken = OpenTK.Graphics.ES20.FeedBackToken.LineResetToken; -} -static void Test_FeedbackType_38201() { - var _Gl2D = OpenTK.Graphics.ES20.FeedbackType.Gl2D; - var _Gl3D = OpenTK.Graphics.ES20.FeedbackType.Gl3D; - var _Gl3DColor = OpenTK.Graphics.ES20.FeedbackType.Gl3DColor; - var _Gl3DColorTexture = OpenTK.Graphics.ES20.FeedbackType.Gl3DColorTexture; - var _Gl4DColorTexture = OpenTK.Graphics.ES20.FeedbackType.Gl4DColorTexture; -} -static void Test_FfdMaskSgix_38202() { -} -static void Test_FfdTargetSgix_38203() { - var _GeometryDeformationSgix = OpenTK.Graphics.ES20.FfdTargetSgix.GeometryDeformationSgix; - var _TextureDeformationSgix = OpenTK.Graphics.ES20.FfdTargetSgix.TextureDeformationSgix; -} -static void Test_FjShaderBinaryGccso_38204() { - var _GccsoShaderBinaryFj = OpenTK.Graphics.ES20.FjShaderBinaryGccso.GccsoShaderBinaryFj; -} -static void Test_FogCoordinatePointerType_38205() { - var _Float = OpenTK.Graphics.ES20.FogCoordinatePointerType.Float; - var _Double = OpenTK.Graphics.ES20.FogCoordinatePointerType.Double; -} -static void Test_FogMode_38206() { - var _Exp = OpenTK.Graphics.ES20.FogMode.Exp; - var _Exp2 = OpenTK.Graphics.ES20.FogMode.Exp2; - var _Linear = OpenTK.Graphics.ES20.FogMode.Linear; - var _FogFuncSgis = OpenTK.Graphics.ES20.FogMode.FogFuncSgis; -} -static void Test_FogParameter_38207() { - var _FogIndex = OpenTK.Graphics.ES20.FogParameter.FogIndex; - var _FogDensity = OpenTK.Graphics.ES20.FogParameter.FogDensity; - var _FogStart = OpenTK.Graphics.ES20.FogParameter.FogStart; - var _FogEnd = OpenTK.Graphics.ES20.FogParameter.FogEnd; - var _FogMode = OpenTK.Graphics.ES20.FogParameter.FogMode; - var _FogColor = OpenTK.Graphics.ES20.FogParameter.FogColor; - var _FogOffsetValueSgix = OpenTK.Graphics.ES20.FogParameter.FogOffsetValueSgix; -} -static void Test_FogPointerTypeExt_38208() { - var _Float = OpenTK.Graphics.ES20.FogPointerTypeExt.Float; - var _Double = OpenTK.Graphics.ES20.FogPointerTypeExt.Double; -} -static void Test_FogPointerTypeIbm_38209() { - var _Float = OpenTK.Graphics.ES20.FogPointerTypeIbm.Float; - var _Double = OpenTK.Graphics.ES20.FogPointerTypeIbm.Double; -} -static void Test_FragmentLightModelParameterSgix_38210() { - var _FragmentLightModelLocalViewerSgix = OpenTK.Graphics.ES20.FragmentLightModelParameterSgix.FragmentLightModelLocalViewerSgix; - var _FragmentLightModelTwoSideSgix = OpenTK.Graphics.ES20.FragmentLightModelParameterSgix.FragmentLightModelTwoSideSgix; - var _FragmentLightModelAmbientSgix = OpenTK.Graphics.ES20.FragmentLightModelParameterSgix.FragmentLightModelAmbientSgix; - var _FragmentLightModelNormalInterpolationSgix = OpenTK.Graphics.ES20.FragmentLightModelParameterSgix.FragmentLightModelNormalInterpolationSgix; -} -static void Test_FramebufferErrorCode_38211() { - var _FramebufferComplete = OpenTK.Graphics.ES20.FramebufferErrorCode.FramebufferComplete; - var _FramebufferIncompleteAttachment = OpenTK.Graphics.ES20.FramebufferErrorCode.FramebufferIncompleteAttachment; - var _FramebufferIncompleteMissingAttachment = OpenTK.Graphics.ES20.FramebufferErrorCode.FramebufferIncompleteMissingAttachment; - var _FramebufferIncompleteDimensions = OpenTK.Graphics.ES20.FramebufferErrorCode.FramebufferIncompleteDimensions; - var _FramebufferUnsupported = OpenTK.Graphics.ES20.FramebufferErrorCode.FramebufferUnsupported; -} -static void Test_FramebufferParameterName_38212() { - var _FramebufferAttachmentObjectType = OpenTK.Graphics.ES20.FramebufferParameterName.FramebufferAttachmentObjectType; - var _FramebufferAttachmentObjectName = OpenTK.Graphics.ES20.FramebufferParameterName.FramebufferAttachmentObjectName; - var _FramebufferAttachmentTextureLevel = OpenTK.Graphics.ES20.FramebufferParameterName.FramebufferAttachmentTextureLevel; - var _FramebufferAttachmentTextureCubeMapFace = OpenTK.Graphics.ES20.FramebufferParameterName.FramebufferAttachmentTextureCubeMapFace; -} -static void Test_FramebufferSlot_38213() { - var _ColorAttachment0 = OpenTK.Graphics.ES20.FramebufferSlot.ColorAttachment0; - var _DepthAttachment = OpenTK.Graphics.ES20.FramebufferSlot.DepthAttachment; - var _StencilAttachment = OpenTK.Graphics.ES20.FramebufferSlot.StencilAttachment; -} -static void Test_FramebufferTarget_38214() { - var _Framebuffer = OpenTK.Graphics.ES20.FramebufferTarget.Framebuffer; -} -static void Test_FrontFaceDirection_38215() { - var _Cw = OpenTK.Graphics.ES20.FrontFaceDirection.Cw; - var _Ccw = OpenTK.Graphics.ES20.FrontFaceDirection.Ccw; -} -static void Test_GetColorTableParameterPNameSgi_38216() { - var _ColorTableScaleSgi = OpenTK.Graphics.ES20.GetColorTableParameterPNameSgi.ColorTableScaleSgi; - var _ColorTableBiasSgi = OpenTK.Graphics.ES20.GetColorTableParameterPNameSgi.ColorTableBiasSgi; - var _ColorTableFormatSgi = OpenTK.Graphics.ES20.GetColorTableParameterPNameSgi.ColorTableFormatSgi; - var _ColorTableWidthSgi = OpenTK.Graphics.ES20.GetColorTableParameterPNameSgi.ColorTableWidthSgi; - var _ColorTableRedSizeSgi = OpenTK.Graphics.ES20.GetColorTableParameterPNameSgi.ColorTableRedSizeSgi; - var _ColorTableGreenSizeSgi = OpenTK.Graphics.ES20.GetColorTableParameterPNameSgi.ColorTableGreenSizeSgi; - var _ColorTableBlueSizeSgi = OpenTK.Graphics.ES20.GetColorTableParameterPNameSgi.ColorTableBlueSizeSgi; - var _ColorTableAlphaSizeSgi = OpenTK.Graphics.ES20.GetColorTableParameterPNameSgi.ColorTableAlphaSizeSgi; - var _ColorTableLuminanceSizeSgi = OpenTK.Graphics.ES20.GetColorTableParameterPNameSgi.ColorTableLuminanceSizeSgi; - var _ColorTableIntensitySizeSgi = OpenTK.Graphics.ES20.GetColorTableParameterPNameSgi.ColorTableIntensitySizeSgi; -} -static void Test_GetConvolutionParameter_38217() { - var _ConvolutionBorderModeExt = OpenTK.Graphics.ES20.GetConvolutionParameter.ConvolutionBorderModeExt; - var _ConvolutionFilterScaleExt = OpenTK.Graphics.ES20.GetConvolutionParameter.ConvolutionFilterScaleExt; - var _ConvolutionFilterBiasExt = OpenTK.Graphics.ES20.GetConvolutionParameter.ConvolutionFilterBiasExt; - var _ConvolutionFormatExt = OpenTK.Graphics.ES20.GetConvolutionParameter.ConvolutionFormatExt; - var _ConvolutionWidthExt = OpenTK.Graphics.ES20.GetConvolutionParameter.ConvolutionWidthExt; - var _ConvolutionHeightExt = OpenTK.Graphics.ES20.GetConvolutionParameter.ConvolutionHeightExt; - var _MaxConvolutionWidthExt = OpenTK.Graphics.ES20.GetConvolutionParameter.MaxConvolutionWidthExt; - var _MaxConvolutionHeightExt = OpenTK.Graphics.ES20.GetConvolutionParameter.MaxConvolutionHeightExt; -} -static void Test_GetHistogramParameterPNameExt_38218() { - var _HistogramWidthExt = OpenTK.Graphics.ES20.GetHistogramParameterPNameExt.HistogramWidthExt; - var _HistogramFormatExt = OpenTK.Graphics.ES20.GetHistogramParameterPNameExt.HistogramFormatExt; - var _HistogramRedSizeExt = OpenTK.Graphics.ES20.GetHistogramParameterPNameExt.HistogramRedSizeExt; - var _HistogramGreenSizeExt = OpenTK.Graphics.ES20.GetHistogramParameterPNameExt.HistogramGreenSizeExt; - var _HistogramBlueSizeExt = OpenTK.Graphics.ES20.GetHistogramParameterPNameExt.HistogramBlueSizeExt; - var _HistogramAlphaSizeExt = OpenTK.Graphics.ES20.GetHistogramParameterPNameExt.HistogramAlphaSizeExt; - var _HistogramLuminanceSizeExt = OpenTK.Graphics.ES20.GetHistogramParameterPNameExt.HistogramLuminanceSizeExt; - var _HistogramSinkExt = OpenTK.Graphics.ES20.GetHistogramParameterPNameExt.HistogramSinkExt; -} -static void Test_GetIndexedPName_38219() { - var _DrawBufferExt = OpenTK.Graphics.ES20.GetIndexedPName.DrawBufferExt; - var _ReadBufferExt = OpenTK.Graphics.ES20.GetIndexedPName.ReadBufferExt; -} -static void Test_GetMapQuery_38220() { - var _Coeff = OpenTK.Graphics.ES20.GetMapQuery.Coeff; - var _Order = OpenTK.Graphics.ES20.GetMapQuery.Order; - var _Domain = OpenTK.Graphics.ES20.GetMapQuery.Domain; -} -static void Test_GetMinmaxParameterPNameExt_38221() { - var _MinmaxFormat = OpenTK.Graphics.ES20.GetMinmaxParameterPNameExt.MinmaxFormat; - var _MinmaxFormatExt = OpenTK.Graphics.ES20.GetMinmaxParameterPNameExt.MinmaxFormatExt; - var _MinmaxSink = OpenTK.Graphics.ES20.GetMinmaxParameterPNameExt.MinmaxSink; - var _MinmaxSinkExt = OpenTK.Graphics.ES20.GetMinmaxParameterPNameExt.MinmaxSinkExt; -} -static void Test_GetPixelMap_38222() { - var _PixelMapIToI = OpenTK.Graphics.ES20.GetPixelMap.PixelMapIToI; - var _PixelMapSToS = OpenTK.Graphics.ES20.GetPixelMap.PixelMapSToS; - var _PixelMapIToR = OpenTK.Graphics.ES20.GetPixelMap.PixelMapIToR; - var _PixelMapIToG = OpenTK.Graphics.ES20.GetPixelMap.PixelMapIToG; - var _PixelMapIToB = OpenTK.Graphics.ES20.GetPixelMap.PixelMapIToB; - var _PixelMapIToA = OpenTK.Graphics.ES20.GetPixelMap.PixelMapIToA; - var _PixelMapRToR = OpenTK.Graphics.ES20.GetPixelMap.PixelMapRToR; - var _PixelMapGToG = OpenTK.Graphics.ES20.GetPixelMap.PixelMapGToG; - var _PixelMapBToB = OpenTK.Graphics.ES20.GetPixelMap.PixelMapBToB; - var _PixelMapAToA = OpenTK.Graphics.ES20.GetPixelMap.PixelMapAToA; -} -static void Test_GetPName_38223() { - var _CurrentColor = OpenTK.Graphics.ES20.GetPName.CurrentColor; - var _CurrentIndex = OpenTK.Graphics.ES20.GetPName.CurrentIndex; - var _CurrentNormal = OpenTK.Graphics.ES20.GetPName.CurrentNormal; - var _CurrentTextureCoords = OpenTK.Graphics.ES20.GetPName.CurrentTextureCoords; - var _CurrentRasterColor = OpenTK.Graphics.ES20.GetPName.CurrentRasterColor; - var _CurrentRasterIndex = OpenTK.Graphics.ES20.GetPName.CurrentRasterIndex; - var _CurrentRasterTextureCoords = OpenTK.Graphics.ES20.GetPName.CurrentRasterTextureCoords; - var _CurrentRasterPosition = OpenTK.Graphics.ES20.GetPName.CurrentRasterPosition; - var _CurrentRasterPositionValid = OpenTK.Graphics.ES20.GetPName.CurrentRasterPositionValid; - var _CurrentRasterDistance = OpenTK.Graphics.ES20.GetPName.CurrentRasterDistance; - var _PointSmooth = OpenTK.Graphics.ES20.GetPName.PointSmooth; - var _PointSize = OpenTK.Graphics.ES20.GetPName.PointSize; - var _PointSizeRange = OpenTK.Graphics.ES20.GetPName.PointSizeRange; - var _SmoothPointSizeRange = OpenTK.Graphics.ES20.GetPName.SmoothPointSizeRange; - var _PointSizeGranularity = OpenTK.Graphics.ES20.GetPName.PointSizeGranularity; - var _SmoothPointSizeGranularity = OpenTK.Graphics.ES20.GetPName.SmoothPointSizeGranularity; - var _LineSmooth = OpenTK.Graphics.ES20.GetPName.LineSmooth; - var _LineWidth = OpenTK.Graphics.ES20.GetPName.LineWidth; - var _LineWidthRange = OpenTK.Graphics.ES20.GetPName.LineWidthRange; - var _SmoothLineWidthRange = OpenTK.Graphics.ES20.GetPName.SmoothLineWidthRange; - var _LineWidthGranularity = OpenTK.Graphics.ES20.GetPName.LineWidthGranularity; - var _SmoothLineWidthGranularity = OpenTK.Graphics.ES20.GetPName.SmoothLineWidthGranularity; - var _LineStipple = OpenTK.Graphics.ES20.GetPName.LineStipple; - var _LineStipplePattern = OpenTK.Graphics.ES20.GetPName.LineStipplePattern; - var _LineStippleRepeat = OpenTK.Graphics.ES20.GetPName.LineStippleRepeat; - var _ListMode = OpenTK.Graphics.ES20.GetPName.ListMode; - var _MaxListNesting = OpenTK.Graphics.ES20.GetPName.MaxListNesting; - var _ListBase = OpenTK.Graphics.ES20.GetPName.ListBase; - var _ListIndex = OpenTK.Graphics.ES20.GetPName.ListIndex; - var _PolygonMode = OpenTK.Graphics.ES20.GetPName.PolygonMode; - var _PolygonSmooth = OpenTK.Graphics.ES20.GetPName.PolygonSmooth; - var _PolygonStipple = OpenTK.Graphics.ES20.GetPName.PolygonStipple; - var _EdgeFlag = OpenTK.Graphics.ES20.GetPName.EdgeFlag; - var _CullFace = OpenTK.Graphics.ES20.GetPName.CullFace; - var _CullFaceMode = OpenTK.Graphics.ES20.GetPName.CullFaceMode; - var _FrontFace = OpenTK.Graphics.ES20.GetPName.FrontFace; - var _Lighting = OpenTK.Graphics.ES20.GetPName.Lighting; - var _LightModelLocalViewer = OpenTK.Graphics.ES20.GetPName.LightModelLocalViewer; - var _LightModelTwoSide = OpenTK.Graphics.ES20.GetPName.LightModelTwoSide; - var _LightModelAmbient = OpenTK.Graphics.ES20.GetPName.LightModelAmbient; - var _ShadeModel = OpenTK.Graphics.ES20.GetPName.ShadeModel; - var _ColorMaterialFace = OpenTK.Graphics.ES20.GetPName.ColorMaterialFace; - var _ColorMaterialParameter = OpenTK.Graphics.ES20.GetPName.ColorMaterialParameter; - var _ColorMaterial = OpenTK.Graphics.ES20.GetPName.ColorMaterial; - var _Fog = OpenTK.Graphics.ES20.GetPName.Fog; - var _FogIndex = OpenTK.Graphics.ES20.GetPName.FogIndex; - var _FogDensity = OpenTK.Graphics.ES20.GetPName.FogDensity; - var _FogStart = OpenTK.Graphics.ES20.GetPName.FogStart; - var _FogEnd = OpenTK.Graphics.ES20.GetPName.FogEnd; - var _FogMode = OpenTK.Graphics.ES20.GetPName.FogMode; - var _FogColor = OpenTK.Graphics.ES20.GetPName.FogColor; - var _DepthRange = OpenTK.Graphics.ES20.GetPName.DepthRange; - var _DepthTest = OpenTK.Graphics.ES20.GetPName.DepthTest; - var _DepthWritemask = OpenTK.Graphics.ES20.GetPName.DepthWritemask; - var _DepthClearValue = OpenTK.Graphics.ES20.GetPName.DepthClearValue; - var _DepthFunc = OpenTK.Graphics.ES20.GetPName.DepthFunc; - var _AccumClearValue = OpenTK.Graphics.ES20.GetPName.AccumClearValue; - var _StencilTest = OpenTK.Graphics.ES20.GetPName.StencilTest; - var _StencilClearValue = OpenTK.Graphics.ES20.GetPName.StencilClearValue; - var _StencilFunc = OpenTK.Graphics.ES20.GetPName.StencilFunc; - var _StencilValueMask = OpenTK.Graphics.ES20.GetPName.StencilValueMask; - var _StencilFail = OpenTK.Graphics.ES20.GetPName.StencilFail; - var _StencilPassDepthFail = OpenTK.Graphics.ES20.GetPName.StencilPassDepthFail; - var _StencilPassDepthPass = OpenTK.Graphics.ES20.GetPName.StencilPassDepthPass; - var _StencilRef = OpenTK.Graphics.ES20.GetPName.StencilRef; - var _StencilWritemask = OpenTK.Graphics.ES20.GetPName.StencilWritemask; - var _MatrixMode = OpenTK.Graphics.ES20.GetPName.MatrixMode; - var _Normalize = OpenTK.Graphics.ES20.GetPName.Normalize; - var _Viewport = OpenTK.Graphics.ES20.GetPName.Viewport; - var _Modelview0StackDepthExt = OpenTK.Graphics.ES20.GetPName.Modelview0StackDepthExt; - var _ModelviewStackDepth = OpenTK.Graphics.ES20.GetPName.ModelviewStackDepth; - var _ProjectionStackDepth = OpenTK.Graphics.ES20.GetPName.ProjectionStackDepth; - var _TextureStackDepth = OpenTK.Graphics.ES20.GetPName.TextureStackDepth; - var _Modelview0MatrixExt = OpenTK.Graphics.ES20.GetPName.Modelview0MatrixExt; - var _ModelviewMatrix = OpenTK.Graphics.ES20.GetPName.ModelviewMatrix; - var _ProjectionMatrix = OpenTK.Graphics.ES20.GetPName.ProjectionMatrix; - var _TextureMatrix = OpenTK.Graphics.ES20.GetPName.TextureMatrix; - var _AttribStackDepth = OpenTK.Graphics.ES20.GetPName.AttribStackDepth; - var _ClientAttribStackDepth = OpenTK.Graphics.ES20.GetPName.ClientAttribStackDepth; - var _AlphaTest = OpenTK.Graphics.ES20.GetPName.AlphaTest; - var _AlphaTestQcom = OpenTK.Graphics.ES20.GetPName.AlphaTestQcom; - var _AlphaTestFunc = OpenTK.Graphics.ES20.GetPName.AlphaTestFunc; - var _AlphaTestFuncQcom = OpenTK.Graphics.ES20.GetPName.AlphaTestFuncQcom; - var _AlphaTestRef = OpenTK.Graphics.ES20.GetPName.AlphaTestRef; - var _AlphaTestRefQcom = OpenTK.Graphics.ES20.GetPName.AlphaTestRefQcom; - var _Dither = OpenTK.Graphics.ES20.GetPName.Dither; - var _BlendDst = OpenTK.Graphics.ES20.GetPName.BlendDst; - var _BlendSrc = OpenTK.Graphics.ES20.GetPName.BlendSrc; - var _Blend = OpenTK.Graphics.ES20.GetPName.Blend; - var _LogicOpMode = OpenTK.Graphics.ES20.GetPName.LogicOpMode; - var _IndexLogicOp = OpenTK.Graphics.ES20.GetPName.IndexLogicOp; - var _LogicOp = OpenTK.Graphics.ES20.GetPName.LogicOp; - var _ColorLogicOp = OpenTK.Graphics.ES20.GetPName.ColorLogicOp; - var _AuxBuffers = OpenTK.Graphics.ES20.GetPName.AuxBuffers; - var _DrawBuffer = OpenTK.Graphics.ES20.GetPName.DrawBuffer; - var _DrawBufferExt = OpenTK.Graphics.ES20.GetPName.DrawBufferExt; - var _ReadBuffer = OpenTK.Graphics.ES20.GetPName.ReadBuffer; - var _ReadBufferExt = OpenTK.Graphics.ES20.GetPName.ReadBufferExt; - var _ReadBufferNv = OpenTK.Graphics.ES20.GetPName.ReadBufferNv; - var _ScissorBox = OpenTK.Graphics.ES20.GetPName.ScissorBox; - var _ScissorTest = OpenTK.Graphics.ES20.GetPName.ScissorTest; - var _IndexClearValue = OpenTK.Graphics.ES20.GetPName.IndexClearValue; - var _IndexWritemask = OpenTK.Graphics.ES20.GetPName.IndexWritemask; - var _ColorClearValue = OpenTK.Graphics.ES20.GetPName.ColorClearValue; - var _ColorWritemask = OpenTK.Graphics.ES20.GetPName.ColorWritemask; - var _IndexMode = OpenTK.Graphics.ES20.GetPName.IndexMode; - var _RgbaMode = OpenTK.Graphics.ES20.GetPName.RgbaMode; - var _Doublebuffer = OpenTK.Graphics.ES20.GetPName.Doublebuffer; - var _Stereo = OpenTK.Graphics.ES20.GetPName.Stereo; - var _RenderMode = OpenTK.Graphics.ES20.GetPName.RenderMode; - var _PerspectiveCorrectionHint = OpenTK.Graphics.ES20.GetPName.PerspectiveCorrectionHint; - var _PointSmoothHint = OpenTK.Graphics.ES20.GetPName.PointSmoothHint; - var _LineSmoothHint = OpenTK.Graphics.ES20.GetPName.LineSmoothHint; - var _PolygonSmoothHint = OpenTK.Graphics.ES20.GetPName.PolygonSmoothHint; - var _FogHint = OpenTK.Graphics.ES20.GetPName.FogHint; - var _TextureGenS = OpenTK.Graphics.ES20.GetPName.TextureGenS; - var _TextureGenT = OpenTK.Graphics.ES20.GetPName.TextureGenT; - var _TextureGenR = OpenTK.Graphics.ES20.GetPName.TextureGenR; - var _TextureGenQ = OpenTK.Graphics.ES20.GetPName.TextureGenQ; - var _PixelMapIToISize = OpenTK.Graphics.ES20.GetPName.PixelMapIToISize; - var _PixelMapSToSSize = OpenTK.Graphics.ES20.GetPName.PixelMapSToSSize; - var _PixelMapIToRSize = OpenTK.Graphics.ES20.GetPName.PixelMapIToRSize; - var _PixelMapIToGSize = OpenTK.Graphics.ES20.GetPName.PixelMapIToGSize; - var _PixelMapIToBSize = OpenTK.Graphics.ES20.GetPName.PixelMapIToBSize; - var _PixelMapIToASize = OpenTK.Graphics.ES20.GetPName.PixelMapIToASize; - var _PixelMapRToRSize = OpenTK.Graphics.ES20.GetPName.PixelMapRToRSize; - var _PixelMapGToGSize = OpenTK.Graphics.ES20.GetPName.PixelMapGToGSize; - var _PixelMapBToBSize = OpenTK.Graphics.ES20.GetPName.PixelMapBToBSize; - var _PixelMapAToASize = OpenTK.Graphics.ES20.GetPName.PixelMapAToASize; - var _UnpackSwapBytes = OpenTK.Graphics.ES20.GetPName.UnpackSwapBytes; - var _UnpackLsbFirst = OpenTK.Graphics.ES20.GetPName.UnpackLsbFirst; - var _UnpackRowLength = OpenTK.Graphics.ES20.GetPName.UnpackRowLength; - var _UnpackSkipRows = OpenTK.Graphics.ES20.GetPName.UnpackSkipRows; - var _UnpackSkipPixels = OpenTK.Graphics.ES20.GetPName.UnpackSkipPixels; - var _UnpackAlignment = OpenTK.Graphics.ES20.GetPName.UnpackAlignment; - var _PackSwapBytes = OpenTK.Graphics.ES20.GetPName.PackSwapBytes; - var _PackLsbFirst = OpenTK.Graphics.ES20.GetPName.PackLsbFirst; - var _PackRowLength = OpenTK.Graphics.ES20.GetPName.PackRowLength; - var _PackSkipRows = OpenTK.Graphics.ES20.GetPName.PackSkipRows; - var _PackSkipPixels = OpenTK.Graphics.ES20.GetPName.PackSkipPixels; - var _PackAlignment = OpenTK.Graphics.ES20.GetPName.PackAlignment; - var _MapColor = OpenTK.Graphics.ES20.GetPName.MapColor; - var _MapStencil = OpenTK.Graphics.ES20.GetPName.MapStencil; - var _IndexShift = OpenTK.Graphics.ES20.GetPName.IndexShift; - var _IndexOffset = OpenTK.Graphics.ES20.GetPName.IndexOffset; - var _RedScale = OpenTK.Graphics.ES20.GetPName.RedScale; - var _RedBias = OpenTK.Graphics.ES20.GetPName.RedBias; - var _ZoomX = OpenTK.Graphics.ES20.GetPName.ZoomX; - var _ZoomY = OpenTK.Graphics.ES20.GetPName.ZoomY; - var _GreenScale = OpenTK.Graphics.ES20.GetPName.GreenScale; - var _GreenBias = OpenTK.Graphics.ES20.GetPName.GreenBias; - var _BlueScale = OpenTK.Graphics.ES20.GetPName.BlueScale; - var _BlueBias = OpenTK.Graphics.ES20.GetPName.BlueBias; - var _AlphaScale = OpenTK.Graphics.ES20.GetPName.AlphaScale; - var _AlphaBias = OpenTK.Graphics.ES20.GetPName.AlphaBias; - var _DepthScale = OpenTK.Graphics.ES20.GetPName.DepthScale; - var _DepthBias = OpenTK.Graphics.ES20.GetPName.DepthBias; - var _MaxEvalOrder = OpenTK.Graphics.ES20.GetPName.MaxEvalOrder; - var _MaxLights = OpenTK.Graphics.ES20.GetPName.MaxLights; - var _MaxClipDistances = OpenTK.Graphics.ES20.GetPName.MaxClipDistances; - var _MaxClipPlanes = OpenTK.Graphics.ES20.GetPName.MaxClipPlanes; - var _MaxTextureSize = OpenTK.Graphics.ES20.GetPName.MaxTextureSize; - var _MaxPixelMapTable = OpenTK.Graphics.ES20.GetPName.MaxPixelMapTable; - var _MaxAttribStackDepth = OpenTK.Graphics.ES20.GetPName.MaxAttribStackDepth; - var _MaxModelviewStackDepth = OpenTK.Graphics.ES20.GetPName.MaxModelviewStackDepth; - var _MaxNameStackDepth = OpenTK.Graphics.ES20.GetPName.MaxNameStackDepth; - var _MaxProjectionStackDepth = OpenTK.Graphics.ES20.GetPName.MaxProjectionStackDepth; - var _MaxTextureStackDepth = OpenTK.Graphics.ES20.GetPName.MaxTextureStackDepth; - var _MaxViewportDims = OpenTK.Graphics.ES20.GetPName.MaxViewportDims; - var _MaxClientAttribStackDepth = OpenTK.Graphics.ES20.GetPName.MaxClientAttribStackDepth; - var _SubpixelBits = OpenTK.Graphics.ES20.GetPName.SubpixelBits; - var _IndexBits = OpenTK.Graphics.ES20.GetPName.IndexBits; - var _RedBits = OpenTK.Graphics.ES20.GetPName.RedBits; - var _GreenBits = OpenTK.Graphics.ES20.GetPName.GreenBits; - var _BlueBits = OpenTK.Graphics.ES20.GetPName.BlueBits; - var _AlphaBits = OpenTK.Graphics.ES20.GetPName.AlphaBits; - var _DepthBits = OpenTK.Graphics.ES20.GetPName.DepthBits; - var _StencilBits = OpenTK.Graphics.ES20.GetPName.StencilBits; - var _AccumRedBits = OpenTK.Graphics.ES20.GetPName.AccumRedBits; - var _AccumGreenBits = OpenTK.Graphics.ES20.GetPName.AccumGreenBits; - var _AccumBlueBits = OpenTK.Graphics.ES20.GetPName.AccumBlueBits; - var _AccumAlphaBits = OpenTK.Graphics.ES20.GetPName.AccumAlphaBits; - var _NameStackDepth = OpenTK.Graphics.ES20.GetPName.NameStackDepth; - var _AutoNormal = OpenTK.Graphics.ES20.GetPName.AutoNormal; - var _Map1Color4 = OpenTK.Graphics.ES20.GetPName.Map1Color4; - var _Map1Index = OpenTK.Graphics.ES20.GetPName.Map1Index; - var _Map1Normal = OpenTK.Graphics.ES20.GetPName.Map1Normal; - var _Map1TextureCoord1 = OpenTK.Graphics.ES20.GetPName.Map1TextureCoord1; - var _Map1TextureCoord2 = OpenTK.Graphics.ES20.GetPName.Map1TextureCoord2; - var _Map1TextureCoord3 = OpenTK.Graphics.ES20.GetPName.Map1TextureCoord3; - var _Map1TextureCoord4 = OpenTK.Graphics.ES20.GetPName.Map1TextureCoord4; - var _Map1Vertex3 = OpenTK.Graphics.ES20.GetPName.Map1Vertex3; - var _Map1Vertex4 = OpenTK.Graphics.ES20.GetPName.Map1Vertex4; - var _Map2Color4 = OpenTK.Graphics.ES20.GetPName.Map2Color4; - var _Map2Index = OpenTK.Graphics.ES20.GetPName.Map2Index; - var _Map2Normal = OpenTK.Graphics.ES20.GetPName.Map2Normal; - var _Map2TextureCoord1 = OpenTK.Graphics.ES20.GetPName.Map2TextureCoord1; - var _Map2TextureCoord2 = OpenTK.Graphics.ES20.GetPName.Map2TextureCoord2; - var _Map2TextureCoord3 = OpenTK.Graphics.ES20.GetPName.Map2TextureCoord3; - var _Map2TextureCoord4 = OpenTK.Graphics.ES20.GetPName.Map2TextureCoord4; - var _Map2Vertex3 = OpenTK.Graphics.ES20.GetPName.Map2Vertex3; - var _Map2Vertex4 = OpenTK.Graphics.ES20.GetPName.Map2Vertex4; - var _Map1GridDomain = OpenTK.Graphics.ES20.GetPName.Map1GridDomain; - var _Map1GridSegments = OpenTK.Graphics.ES20.GetPName.Map1GridSegments; - var _Map2GridDomain = OpenTK.Graphics.ES20.GetPName.Map2GridDomain; - var _Map2GridSegments = OpenTK.Graphics.ES20.GetPName.Map2GridSegments; - var _Texture1D = OpenTK.Graphics.ES20.GetPName.Texture1D; - var _Texture2D = OpenTK.Graphics.ES20.GetPName.Texture2D; - var _FeedbackBufferSize = OpenTK.Graphics.ES20.GetPName.FeedbackBufferSize; - var _FeedbackBufferType = OpenTK.Graphics.ES20.GetPName.FeedbackBufferType; - var _SelectionBufferSize = OpenTK.Graphics.ES20.GetPName.SelectionBufferSize; - var _PolygonOffsetUnits = OpenTK.Graphics.ES20.GetPName.PolygonOffsetUnits; - var _PolygonOffsetPoint = OpenTK.Graphics.ES20.GetPName.PolygonOffsetPoint; - var _PolygonOffsetLine = OpenTK.Graphics.ES20.GetPName.PolygonOffsetLine; - var _ClipPlane0 = OpenTK.Graphics.ES20.GetPName.ClipPlane0; - var _ClipPlane1 = OpenTK.Graphics.ES20.GetPName.ClipPlane1; - var _ClipPlane2 = OpenTK.Graphics.ES20.GetPName.ClipPlane2; - var _ClipPlane3 = OpenTK.Graphics.ES20.GetPName.ClipPlane3; - var _ClipPlane4 = OpenTK.Graphics.ES20.GetPName.ClipPlane4; - var _ClipPlane5 = OpenTK.Graphics.ES20.GetPName.ClipPlane5; - var _Light0 = OpenTK.Graphics.ES20.GetPName.Light0; - var _Light1 = OpenTK.Graphics.ES20.GetPName.Light1; - var _Light2 = OpenTK.Graphics.ES20.GetPName.Light2; - var _Light3 = OpenTK.Graphics.ES20.GetPName.Light3; - var _Light4 = OpenTK.Graphics.ES20.GetPName.Light4; - var _Light5 = OpenTK.Graphics.ES20.GetPName.Light5; - var _Light6 = OpenTK.Graphics.ES20.GetPName.Light6; - var _Light7 = OpenTK.Graphics.ES20.GetPName.Light7; - var _BlendColorExt = OpenTK.Graphics.ES20.GetPName.BlendColorExt; - var _BlendColor = OpenTK.Graphics.ES20.GetPName.BlendColor; - var _BlendEquationExt = OpenTK.Graphics.ES20.GetPName.BlendEquationExt; - var _BlendEquation = OpenTK.Graphics.ES20.GetPName.BlendEquation; - var _BlendEquationRgb = OpenTK.Graphics.ES20.GetPName.BlendEquationRgb; - var _PackCmykHintExt = OpenTK.Graphics.ES20.GetPName.PackCmykHintExt; - var _UnpackCmykHintExt = OpenTK.Graphics.ES20.GetPName.UnpackCmykHintExt; - var _Convolution1DExt = OpenTK.Graphics.ES20.GetPName.Convolution1DExt; - var _Convolution2DExt = OpenTK.Graphics.ES20.GetPName.Convolution2DExt; - var _Separable2DExt = OpenTK.Graphics.ES20.GetPName.Separable2DExt; - var _PostConvolutionRedScaleExt = OpenTK.Graphics.ES20.GetPName.PostConvolutionRedScaleExt; - var _PostConvolutionGreenScaleExt = OpenTK.Graphics.ES20.GetPName.PostConvolutionGreenScaleExt; - var _PostConvolutionBlueScaleExt = OpenTK.Graphics.ES20.GetPName.PostConvolutionBlueScaleExt; - var _PostConvolutionAlphaScaleExt = OpenTK.Graphics.ES20.GetPName.PostConvolutionAlphaScaleExt; - var _PostConvolutionRedBiasExt = OpenTK.Graphics.ES20.GetPName.PostConvolutionRedBiasExt; - var _PostConvolutionGreenBiasExt = OpenTK.Graphics.ES20.GetPName.PostConvolutionGreenBiasExt; - var _PostConvolutionBlueBiasExt = OpenTK.Graphics.ES20.GetPName.PostConvolutionBlueBiasExt; - var _PostConvolutionAlphaBiasExt = OpenTK.Graphics.ES20.GetPName.PostConvolutionAlphaBiasExt; - var _HistogramExt = OpenTK.Graphics.ES20.GetPName.HistogramExt; - var _MinmaxExt = OpenTK.Graphics.ES20.GetPName.MinmaxExt; - var _PolygonOffsetFill = OpenTK.Graphics.ES20.GetPName.PolygonOffsetFill; - var _PolygonOffsetFactor = OpenTK.Graphics.ES20.GetPName.PolygonOffsetFactor; - var _PolygonOffsetBiasExt = OpenTK.Graphics.ES20.GetPName.PolygonOffsetBiasExt; - var _RescaleNormalExt = OpenTK.Graphics.ES20.GetPName.RescaleNormalExt; - var _TextureBinding1D = OpenTK.Graphics.ES20.GetPName.TextureBinding1D; - var _TextureBinding2D = OpenTK.Graphics.ES20.GetPName.TextureBinding2D; - var _Texture3DBindingExt = OpenTK.Graphics.ES20.GetPName.Texture3DBindingExt; - var _TextureBinding3D = OpenTK.Graphics.ES20.GetPName.TextureBinding3D; - var _TextureBinding3DOes = OpenTK.Graphics.ES20.GetPName.TextureBinding3DOes; - var _PackSkipImagesExt = OpenTK.Graphics.ES20.GetPName.PackSkipImagesExt; - var _PackImageHeightExt = OpenTK.Graphics.ES20.GetPName.PackImageHeightExt; - var _UnpackSkipImagesExt = OpenTK.Graphics.ES20.GetPName.UnpackSkipImagesExt; - var _UnpackImageHeightExt = OpenTK.Graphics.ES20.GetPName.UnpackImageHeightExt; - var _Texture3DExt = OpenTK.Graphics.ES20.GetPName.Texture3DExt; - var _Max3DTextureSizeExt = OpenTK.Graphics.ES20.GetPName.Max3DTextureSizeExt; - var _Max3DTextureSizeOes = OpenTK.Graphics.ES20.GetPName.Max3DTextureSizeOes; - var _VertexArray = OpenTK.Graphics.ES20.GetPName.VertexArray; - var _NormalArray = OpenTK.Graphics.ES20.GetPName.NormalArray; - var _ColorArray = OpenTK.Graphics.ES20.GetPName.ColorArray; - var _IndexArray = OpenTK.Graphics.ES20.GetPName.IndexArray; - var _TextureCoordArray = OpenTK.Graphics.ES20.GetPName.TextureCoordArray; - var _EdgeFlagArray = OpenTK.Graphics.ES20.GetPName.EdgeFlagArray; - var _VertexArraySize = OpenTK.Graphics.ES20.GetPName.VertexArraySize; - var _VertexArrayType = OpenTK.Graphics.ES20.GetPName.VertexArrayType; - var _VertexArrayStride = OpenTK.Graphics.ES20.GetPName.VertexArrayStride; - var _VertexArrayCountExt = OpenTK.Graphics.ES20.GetPName.VertexArrayCountExt; - var _NormalArrayType = OpenTK.Graphics.ES20.GetPName.NormalArrayType; - var _NormalArrayStride = OpenTK.Graphics.ES20.GetPName.NormalArrayStride; - var _NormalArrayCountExt = OpenTK.Graphics.ES20.GetPName.NormalArrayCountExt; - var _ColorArraySize = OpenTK.Graphics.ES20.GetPName.ColorArraySize; - var _ColorArrayType = OpenTK.Graphics.ES20.GetPName.ColorArrayType; - var _ColorArrayStride = OpenTK.Graphics.ES20.GetPName.ColorArrayStride; - var _ColorArrayCountExt = OpenTK.Graphics.ES20.GetPName.ColorArrayCountExt; - var _IndexArrayType = OpenTK.Graphics.ES20.GetPName.IndexArrayType; - var _IndexArrayStride = OpenTK.Graphics.ES20.GetPName.IndexArrayStride; - var _IndexArrayCountExt = OpenTK.Graphics.ES20.GetPName.IndexArrayCountExt; - var _TextureCoordArraySize = OpenTK.Graphics.ES20.GetPName.TextureCoordArraySize; - var _TextureCoordArrayType = OpenTK.Graphics.ES20.GetPName.TextureCoordArrayType; - var _TextureCoordArrayStride = OpenTK.Graphics.ES20.GetPName.TextureCoordArrayStride; - var _TextureCoordArrayCountExt = OpenTK.Graphics.ES20.GetPName.TextureCoordArrayCountExt; - var _EdgeFlagArrayStride = OpenTK.Graphics.ES20.GetPName.EdgeFlagArrayStride; - var _EdgeFlagArrayCountExt = OpenTK.Graphics.ES20.GetPName.EdgeFlagArrayCountExt; - var _InterlaceSgix = OpenTK.Graphics.ES20.GetPName.InterlaceSgix; - var _DetailTexture2DBindingSgis = OpenTK.Graphics.ES20.GetPName.DetailTexture2DBindingSgis; - var _MultisampleSgis = OpenTK.Graphics.ES20.GetPName.MultisampleSgis; - var _SampleAlphaToMaskSgis = OpenTK.Graphics.ES20.GetPName.SampleAlphaToMaskSgis; - var _SampleAlphaToCoverage = OpenTK.Graphics.ES20.GetPName.SampleAlphaToCoverage; - var _SampleAlphaToOneSgis = OpenTK.Graphics.ES20.GetPName.SampleAlphaToOneSgis; - var _SampleMaskSgis = OpenTK.Graphics.ES20.GetPName.SampleMaskSgis; - var _SampleCoverage = OpenTK.Graphics.ES20.GetPName.SampleCoverage; - var _SampleBuffersSgis = OpenTK.Graphics.ES20.GetPName.SampleBuffersSgis; - var _SampleBuffers = OpenTK.Graphics.ES20.GetPName.SampleBuffers; - var _SamplesSgis = OpenTK.Graphics.ES20.GetPName.SamplesSgis; - var _Samples = OpenTK.Graphics.ES20.GetPName.Samples; - var _SampleMaskValueSgis = OpenTK.Graphics.ES20.GetPName.SampleMaskValueSgis; - var _SampleCoverageValue = OpenTK.Graphics.ES20.GetPName.SampleCoverageValue; - var _SampleMaskInvertSgis = OpenTK.Graphics.ES20.GetPName.SampleMaskInvertSgis; - var _SampleCoverageInvert = OpenTK.Graphics.ES20.GetPName.SampleCoverageInvert; - var _SamplePatternSgis = OpenTK.Graphics.ES20.GetPName.SamplePatternSgis; - var _ColorMatrixSgi = OpenTK.Graphics.ES20.GetPName.ColorMatrixSgi; - var _ColorMatrixStackDepthSgi = OpenTK.Graphics.ES20.GetPName.ColorMatrixStackDepthSgi; - var _MaxColorMatrixStackDepthSgi = OpenTK.Graphics.ES20.GetPName.MaxColorMatrixStackDepthSgi; - var _PostColorMatrixRedScaleSgi = OpenTK.Graphics.ES20.GetPName.PostColorMatrixRedScaleSgi; - var _PostColorMatrixGreenScaleSgi = OpenTK.Graphics.ES20.GetPName.PostColorMatrixGreenScaleSgi; - var _PostColorMatrixBlueScaleSgi = OpenTK.Graphics.ES20.GetPName.PostColorMatrixBlueScaleSgi; - var _PostColorMatrixAlphaScaleSgi = OpenTK.Graphics.ES20.GetPName.PostColorMatrixAlphaScaleSgi; - var _PostColorMatrixRedBiasSgi = OpenTK.Graphics.ES20.GetPName.PostColorMatrixRedBiasSgi; - var _PostColorMatrixGreenBiasSgi = OpenTK.Graphics.ES20.GetPName.PostColorMatrixGreenBiasSgi; - var _PostColorMatrixBlueBiasSgi = OpenTK.Graphics.ES20.GetPName.PostColorMatrixBlueBiasSgi; - var _PostColorMatrixAlphaBiasSgi = OpenTK.Graphics.ES20.GetPName.PostColorMatrixAlphaBiasSgi; - var _TextureColorTableSgi = OpenTK.Graphics.ES20.GetPName.TextureColorTableSgi; - var _BlendDstRgb = OpenTK.Graphics.ES20.GetPName.BlendDstRgb; - var _BlendSrcRgb = OpenTK.Graphics.ES20.GetPName.BlendSrcRgb; - var _BlendDstAlpha = OpenTK.Graphics.ES20.GetPName.BlendDstAlpha; - var _BlendSrcAlpha = OpenTK.Graphics.ES20.GetPName.BlendSrcAlpha; - var _ColorTableSgi = OpenTK.Graphics.ES20.GetPName.ColorTableSgi; - var _PostConvolutionColorTableSgi = OpenTK.Graphics.ES20.GetPName.PostConvolutionColorTableSgi; - var _PostColorMatrixColorTableSgi = OpenTK.Graphics.ES20.GetPName.PostColorMatrixColorTableSgi; - var _PointSizeMinSgis = OpenTK.Graphics.ES20.GetPName.PointSizeMinSgis; - var _PointSizeMaxSgis = OpenTK.Graphics.ES20.GetPName.PointSizeMaxSgis; - var _PointFadeThresholdSizeSgis = OpenTK.Graphics.ES20.GetPName.PointFadeThresholdSizeSgis; - var _DistanceAttenuationSgis = OpenTK.Graphics.ES20.GetPName.DistanceAttenuationSgis; - var _FogFuncPointsSgis = OpenTK.Graphics.ES20.GetPName.FogFuncPointsSgis; - var _MaxFogFuncPointsSgis = OpenTK.Graphics.ES20.GetPName.MaxFogFuncPointsSgis; - var _PackSkipVolumesSgis = OpenTK.Graphics.ES20.GetPName.PackSkipVolumesSgis; - var _PackImageDepthSgis = OpenTK.Graphics.ES20.GetPName.PackImageDepthSgis; - var _UnpackSkipVolumesSgis = OpenTK.Graphics.ES20.GetPName.UnpackSkipVolumesSgis; - var _UnpackImageDepthSgis = OpenTK.Graphics.ES20.GetPName.UnpackImageDepthSgis; - var _Texture4DSgis = OpenTK.Graphics.ES20.GetPName.Texture4DSgis; - var _Max4DTextureSizeSgis = OpenTK.Graphics.ES20.GetPName.Max4DTextureSizeSgis; - var _PixelTexGenSgix = OpenTK.Graphics.ES20.GetPName.PixelTexGenSgix; - var _PixelTileBestAlignmentSgix = OpenTK.Graphics.ES20.GetPName.PixelTileBestAlignmentSgix; - var _PixelTileCacheIncrementSgix = OpenTK.Graphics.ES20.GetPName.PixelTileCacheIncrementSgix; - var _PixelTileWidthSgix = OpenTK.Graphics.ES20.GetPName.PixelTileWidthSgix; - var _PixelTileHeightSgix = OpenTK.Graphics.ES20.GetPName.PixelTileHeightSgix; - var _PixelTileGridWidthSgix = OpenTK.Graphics.ES20.GetPName.PixelTileGridWidthSgix; - var _PixelTileGridHeightSgix = OpenTK.Graphics.ES20.GetPName.PixelTileGridHeightSgix; - var _PixelTileGridDepthSgix = OpenTK.Graphics.ES20.GetPName.PixelTileGridDepthSgix; - var _PixelTileCacheSizeSgix = OpenTK.Graphics.ES20.GetPName.PixelTileCacheSizeSgix; - var _SpriteSgix = OpenTK.Graphics.ES20.GetPName.SpriteSgix; - var _SpriteModeSgix = OpenTK.Graphics.ES20.GetPName.SpriteModeSgix; - var _SpriteAxisSgix = OpenTK.Graphics.ES20.GetPName.SpriteAxisSgix; - var _SpriteTranslationSgix = OpenTK.Graphics.ES20.GetPName.SpriteTranslationSgix; - var _Texture4DBindingSgis = OpenTK.Graphics.ES20.GetPName.Texture4DBindingSgis; - var _MaxClipmapDepthSgix = OpenTK.Graphics.ES20.GetPName.MaxClipmapDepthSgix; - var _MaxClipmapVirtualDepthSgix = OpenTK.Graphics.ES20.GetPName.MaxClipmapVirtualDepthSgix; - var _PostTextureFilterBiasRangeSgix = OpenTK.Graphics.ES20.GetPName.PostTextureFilterBiasRangeSgix; - var _PostTextureFilterScaleRangeSgix = OpenTK.Graphics.ES20.GetPName.PostTextureFilterScaleRangeSgix; - var _ReferencePlaneSgix = OpenTK.Graphics.ES20.GetPName.ReferencePlaneSgix; - var _ReferencePlaneEquationSgix = OpenTK.Graphics.ES20.GetPName.ReferencePlaneEquationSgix; - var _IrInstrument1Sgix = OpenTK.Graphics.ES20.GetPName.IrInstrument1Sgix; - var _InstrumentMeasurementsSgix = OpenTK.Graphics.ES20.GetPName.InstrumentMeasurementsSgix; - var _CalligraphicFragmentSgix = OpenTK.Graphics.ES20.GetPName.CalligraphicFragmentSgix; - var _FramezoomSgix = OpenTK.Graphics.ES20.GetPName.FramezoomSgix; - var _FramezoomFactorSgix = OpenTK.Graphics.ES20.GetPName.FramezoomFactorSgix; - var _MaxFramezoomFactorSgix = OpenTK.Graphics.ES20.GetPName.MaxFramezoomFactorSgix; - var _GenerateMipmapHintSgis = OpenTK.Graphics.ES20.GetPName.GenerateMipmapHintSgis; - var _GenerateMipmapHint = OpenTK.Graphics.ES20.GetPName.GenerateMipmapHint; - var _DeformationsMaskSgix = OpenTK.Graphics.ES20.GetPName.DeformationsMaskSgix; - var _FogOffsetSgix = OpenTK.Graphics.ES20.GetPName.FogOffsetSgix; - var _FogOffsetValueSgix = OpenTK.Graphics.ES20.GetPName.FogOffsetValueSgix; - var _LightModelColorControl = OpenTK.Graphics.ES20.GetPName.LightModelColorControl; - var _SharedTexturePaletteExt = OpenTK.Graphics.ES20.GetPName.SharedTexturePaletteExt; - var _ConvolutionHintSgix = OpenTK.Graphics.ES20.GetPName.ConvolutionHintSgix; - var _AsyncMarkerSgix = OpenTK.Graphics.ES20.GetPName.AsyncMarkerSgix; - var _PixelTexGenModeSgix = OpenTK.Graphics.ES20.GetPName.PixelTexGenModeSgix; - var _AsyncHistogramSgix = OpenTK.Graphics.ES20.GetPName.AsyncHistogramSgix; - var _MaxAsyncHistogramSgix = OpenTK.Graphics.ES20.GetPName.MaxAsyncHistogramSgix; - var _PixelTextureSgis = OpenTK.Graphics.ES20.GetPName.PixelTextureSgis; - var _AsyncTexImageSgix = OpenTK.Graphics.ES20.GetPName.AsyncTexImageSgix; - var _AsyncDrawPixelsSgix = OpenTK.Graphics.ES20.GetPName.AsyncDrawPixelsSgix; - var _AsyncReadPixelsSgix = OpenTK.Graphics.ES20.GetPName.AsyncReadPixelsSgix; - var _MaxAsyncTexImageSgix = OpenTK.Graphics.ES20.GetPName.MaxAsyncTexImageSgix; - var _MaxAsyncDrawPixelsSgix = OpenTK.Graphics.ES20.GetPName.MaxAsyncDrawPixelsSgix; - var _MaxAsyncReadPixelsSgix = OpenTK.Graphics.ES20.GetPName.MaxAsyncReadPixelsSgix; - var _VertexPreclipSgix = OpenTK.Graphics.ES20.GetPName.VertexPreclipSgix; - var _VertexPreclipHintSgix = OpenTK.Graphics.ES20.GetPName.VertexPreclipHintSgix; - var _FragmentLightingSgix = OpenTK.Graphics.ES20.GetPName.FragmentLightingSgix; - var _FragmentColorMaterialSgix = OpenTK.Graphics.ES20.GetPName.FragmentColorMaterialSgix; - var _FragmentColorMaterialFaceSgix = OpenTK.Graphics.ES20.GetPName.FragmentColorMaterialFaceSgix; - var _FragmentColorMaterialParameterSgix = OpenTK.Graphics.ES20.GetPName.FragmentColorMaterialParameterSgix; - var _MaxFragmentLightsSgix = OpenTK.Graphics.ES20.GetPName.MaxFragmentLightsSgix; - var _MaxActiveLightsSgix = OpenTK.Graphics.ES20.GetPName.MaxActiveLightsSgix; - var _LightEnvModeSgix = OpenTK.Graphics.ES20.GetPName.LightEnvModeSgix; - var _FragmentLightModelLocalViewerSgix = OpenTK.Graphics.ES20.GetPName.FragmentLightModelLocalViewerSgix; - var _FragmentLightModelTwoSideSgix = OpenTK.Graphics.ES20.GetPName.FragmentLightModelTwoSideSgix; - var _FragmentLightModelAmbientSgix = OpenTK.Graphics.ES20.GetPName.FragmentLightModelAmbientSgix; - var _FragmentLightModelNormalInterpolationSgix = OpenTK.Graphics.ES20.GetPName.FragmentLightModelNormalInterpolationSgix; - var _FragmentLight0Sgix = OpenTK.Graphics.ES20.GetPName.FragmentLight0Sgix; - var _PackResampleSgix = OpenTK.Graphics.ES20.GetPName.PackResampleSgix; - var _UnpackResampleSgix = OpenTK.Graphics.ES20.GetPName.UnpackResampleSgix; - var _AliasedPointSizeRange = OpenTK.Graphics.ES20.GetPName.AliasedPointSizeRange; - var _AliasedLineWidthRange = OpenTK.Graphics.ES20.GetPName.AliasedLineWidthRange; - var _ActiveTexture = OpenTK.Graphics.ES20.GetPName.ActiveTexture; - var _MaxRenderbufferSize = OpenTK.Graphics.ES20.GetPName.MaxRenderbufferSize; - var _TextureBindingCubeMap = OpenTK.Graphics.ES20.GetPName.TextureBindingCubeMap; - var _MaxCubeMapTextureSize = OpenTK.Graphics.ES20.GetPName.MaxCubeMapTextureSize; - var _PackSubsampleRateSgix = OpenTK.Graphics.ES20.GetPName.PackSubsampleRateSgix; - var _UnpackSubsampleRateSgix = OpenTK.Graphics.ES20.GetPName.UnpackSubsampleRateSgix; - var _NumCompressedTextureFormats = OpenTK.Graphics.ES20.GetPName.NumCompressedTextureFormats; - var _CompressedTextureFormats = OpenTK.Graphics.ES20.GetPName.CompressedTextureFormats; - var _StencilBackFunc = OpenTK.Graphics.ES20.GetPName.StencilBackFunc; - var _StencilBackFail = OpenTK.Graphics.ES20.GetPName.StencilBackFail; - var _StencilBackPassDepthFail = OpenTK.Graphics.ES20.GetPName.StencilBackPassDepthFail; - var _StencilBackPassDepthPass = OpenTK.Graphics.ES20.GetPName.StencilBackPassDepthPass; - var _BlendEquationAlpha = OpenTK.Graphics.ES20.GetPName.BlendEquationAlpha; - var _MaxVertexAttribs = OpenTK.Graphics.ES20.GetPName.MaxVertexAttribs; - var _MaxTextureImageUnits = OpenTK.Graphics.ES20.GetPName.MaxTextureImageUnits; - var _ArrayBufferBinding = OpenTK.Graphics.ES20.GetPName.ArrayBufferBinding; - var _ElementArrayBufferBinding = OpenTK.Graphics.ES20.GetPName.ElementArrayBufferBinding; - var _MaxVertexTextureImageUnits = OpenTK.Graphics.ES20.GetPName.MaxVertexTextureImageUnits; - var _MaxCombinedTextureImageUnits = OpenTK.Graphics.ES20.GetPName.MaxCombinedTextureImageUnits; - var _CurrentProgram = OpenTK.Graphics.ES20.GetPName.CurrentProgram; - var _ImplementationColorReadType = OpenTK.Graphics.ES20.GetPName.ImplementationColorReadType; - var _ImplementationColorReadFormat = OpenTK.Graphics.ES20.GetPName.ImplementationColorReadFormat; - var _StencilBackRef = OpenTK.Graphics.ES20.GetPName.StencilBackRef; - var _StencilBackValueMask = OpenTK.Graphics.ES20.GetPName.StencilBackValueMask; - var _StencilBackWritemask = OpenTK.Graphics.ES20.GetPName.StencilBackWritemask; - var _FramebufferBinding = OpenTK.Graphics.ES20.GetPName.FramebufferBinding; - var _RenderbufferBinding = OpenTK.Graphics.ES20.GetPName.RenderbufferBinding; - var _ShaderBinaryFormats = OpenTK.Graphics.ES20.GetPName.ShaderBinaryFormats; - var _NumShaderBinaryFormats = OpenTK.Graphics.ES20.GetPName.NumShaderBinaryFormats; - var _ShaderCompiler = OpenTK.Graphics.ES20.GetPName.ShaderCompiler; - var _MaxVertexUniformVectors = OpenTK.Graphics.ES20.GetPName.MaxVertexUniformVectors; - var _MaxVaryingVectors = OpenTK.Graphics.ES20.GetPName.MaxVaryingVectors; - var _MaxFragmentUniformVectors = OpenTK.Graphics.ES20.GetPName.MaxFragmentUniformVectors; - var _TimestampExt = OpenTK.Graphics.ES20.GetPName.TimestampExt; - var _GpuDisjointExt = OpenTK.Graphics.ES20.GetPName.GpuDisjointExt; - var _MaxMultiviewBuffersExt = OpenTK.Graphics.ES20.GetPName.MaxMultiviewBuffersExt; -} -static void Test_GetPointervPName_38224() { - var _FeedbackBufferPointer = OpenTK.Graphics.ES20.GetPointervPName.FeedbackBufferPointer; - var _SelectionBufferPointer = OpenTK.Graphics.ES20.GetPointervPName.SelectionBufferPointer; - var _VertexArrayPointer = OpenTK.Graphics.ES20.GetPointervPName.VertexArrayPointer; - var _VertexArrayPointerExt = OpenTK.Graphics.ES20.GetPointervPName.VertexArrayPointerExt; - var _NormalArrayPointer = OpenTK.Graphics.ES20.GetPointervPName.NormalArrayPointer; - var _NormalArrayPointerExt = OpenTK.Graphics.ES20.GetPointervPName.NormalArrayPointerExt; - var _ColorArrayPointer = OpenTK.Graphics.ES20.GetPointervPName.ColorArrayPointer; - var _ColorArrayPointerExt = OpenTK.Graphics.ES20.GetPointervPName.ColorArrayPointerExt; - var _IndexArrayPointer = OpenTK.Graphics.ES20.GetPointervPName.IndexArrayPointer; - var _IndexArrayPointerExt = OpenTK.Graphics.ES20.GetPointervPName.IndexArrayPointerExt; - var _TextureCoordArrayPointer = OpenTK.Graphics.ES20.GetPointervPName.TextureCoordArrayPointer; - var _TextureCoordArrayPointerExt = OpenTK.Graphics.ES20.GetPointervPName.TextureCoordArrayPointerExt; - var _EdgeFlagArrayPointer = OpenTK.Graphics.ES20.GetPointervPName.EdgeFlagArrayPointer; - var _EdgeFlagArrayPointerExt = OpenTK.Graphics.ES20.GetPointervPName.EdgeFlagArrayPointerExt; - var _InstrumentBufferPointerSgix = OpenTK.Graphics.ES20.GetPointervPName.InstrumentBufferPointerSgix; -} -static void Test_GetProgramParameterName_38225() { - var _ProgramBinaryRetrievableHint = OpenTK.Graphics.ES20.GetProgramParameterName.ProgramBinaryRetrievableHint; - var _DeleteStatus = OpenTK.Graphics.ES20.GetProgramParameterName.DeleteStatus; - var _LinkStatus = OpenTK.Graphics.ES20.GetProgramParameterName.LinkStatus; - var _ValidateStatus = OpenTK.Graphics.ES20.GetProgramParameterName.ValidateStatus; - var _InfoLogLength = OpenTK.Graphics.ES20.GetProgramParameterName.InfoLogLength; - var _AttachedShaders = OpenTK.Graphics.ES20.GetProgramParameterName.AttachedShaders; - var _ActiveUniforms = OpenTK.Graphics.ES20.GetProgramParameterName.ActiveUniforms; - var _ActiveUniformMaxLength = OpenTK.Graphics.ES20.GetProgramParameterName.ActiveUniformMaxLength; - var _ActiveAttributes = OpenTK.Graphics.ES20.GetProgramParameterName.ActiveAttributes; - var _ActiveAttributeMaxLength = OpenTK.Graphics.ES20.GetProgramParameterName.ActiveAttributeMaxLength; -} -static void Test_GetQueryObjectParam_38226() { - var _QueryResultExt = OpenTK.Graphics.ES20.GetQueryObjectParam.QueryResultExt; - var _QueryResultAvailableExt = OpenTK.Graphics.ES20.GetQueryObjectParam.QueryResultAvailableExt; -} -static void Test_GetQueryParam_38227() { - var _QueryCounterBitsExt = OpenTK.Graphics.ES20.GetQueryParam.QueryCounterBitsExt; - var _CurrentQueryExt = OpenTK.Graphics.ES20.GetQueryParam.CurrentQueryExt; -} -static void Test_GetTextureParameter_38228() { - var _TextureWidth = OpenTK.Graphics.ES20.GetTextureParameter.TextureWidth; - var _TextureHeight = OpenTK.Graphics.ES20.GetTextureParameter.TextureHeight; - var _TextureComponents = OpenTK.Graphics.ES20.GetTextureParameter.TextureComponents; - var _TextureInternalFormat = OpenTK.Graphics.ES20.GetTextureParameter.TextureInternalFormat; - var _TextureBorderColor = OpenTK.Graphics.ES20.GetTextureParameter.TextureBorderColor; - var _TextureBorderColorNv = OpenTK.Graphics.ES20.GetTextureParameter.TextureBorderColorNv; - var _TextureBorder = OpenTK.Graphics.ES20.GetTextureParameter.TextureBorder; - var _TextureMagFilter = OpenTK.Graphics.ES20.GetTextureParameter.TextureMagFilter; - var _TextureMinFilter = OpenTK.Graphics.ES20.GetTextureParameter.TextureMinFilter; - var _TextureWrapS = OpenTK.Graphics.ES20.GetTextureParameter.TextureWrapS; - var _TextureWrapT = OpenTK.Graphics.ES20.GetTextureParameter.TextureWrapT; - var _TextureRedSize = OpenTK.Graphics.ES20.GetTextureParameter.TextureRedSize; - var _TextureGreenSize = OpenTK.Graphics.ES20.GetTextureParameter.TextureGreenSize; - var _TextureBlueSize = OpenTK.Graphics.ES20.GetTextureParameter.TextureBlueSize; - var _TextureAlphaSize = OpenTK.Graphics.ES20.GetTextureParameter.TextureAlphaSize; - var _TextureLuminanceSize = OpenTK.Graphics.ES20.GetTextureParameter.TextureLuminanceSize; - var _TextureIntensitySize = OpenTK.Graphics.ES20.GetTextureParameter.TextureIntensitySize; - var _TexturePriority = OpenTK.Graphics.ES20.GetTextureParameter.TexturePriority; - var _TextureResident = OpenTK.Graphics.ES20.GetTextureParameter.TextureResident; - var _TextureDepthExt = OpenTK.Graphics.ES20.GetTextureParameter.TextureDepthExt; - var _TextureWrapRExt = OpenTK.Graphics.ES20.GetTextureParameter.TextureWrapRExt; - var _DetailTextureLevelSgis = OpenTK.Graphics.ES20.GetTextureParameter.DetailTextureLevelSgis; - var _DetailTextureModeSgis = OpenTK.Graphics.ES20.GetTextureParameter.DetailTextureModeSgis; - var _DetailTextureFuncPointsSgis = OpenTK.Graphics.ES20.GetTextureParameter.DetailTextureFuncPointsSgis; - var _SharpenTextureFuncPointsSgis = OpenTK.Graphics.ES20.GetTextureParameter.SharpenTextureFuncPointsSgis; - var _ShadowAmbientSgix = OpenTK.Graphics.ES20.GetTextureParameter.ShadowAmbientSgix; - var _DualTextureSelectSgis = OpenTK.Graphics.ES20.GetTextureParameter.DualTextureSelectSgis; - var _QuadTextureSelectSgis = OpenTK.Graphics.ES20.GetTextureParameter.QuadTextureSelectSgis; - var _Texture4DsizeSgis = OpenTK.Graphics.ES20.GetTextureParameter.Texture4DsizeSgis; - var _TextureWrapQSgis = OpenTK.Graphics.ES20.GetTextureParameter.TextureWrapQSgis; - var _TextureMinLodSgis = OpenTK.Graphics.ES20.GetTextureParameter.TextureMinLodSgis; - var _TextureMaxLodSgis = OpenTK.Graphics.ES20.GetTextureParameter.TextureMaxLodSgis; - var _TextureBaseLevelSgis = OpenTK.Graphics.ES20.GetTextureParameter.TextureBaseLevelSgis; - var _TextureMaxLevelSgis = OpenTK.Graphics.ES20.GetTextureParameter.TextureMaxLevelSgis; - var _TextureFilter4SizeSgis = OpenTK.Graphics.ES20.GetTextureParameter.TextureFilter4SizeSgis; - var _TextureClipmapCenterSgix = OpenTK.Graphics.ES20.GetTextureParameter.TextureClipmapCenterSgix; - var _TextureClipmapFrameSgix = OpenTK.Graphics.ES20.GetTextureParameter.TextureClipmapFrameSgix; - var _TextureClipmapOffsetSgix = OpenTK.Graphics.ES20.GetTextureParameter.TextureClipmapOffsetSgix; - var _TextureClipmapVirtualDepthSgix = OpenTK.Graphics.ES20.GetTextureParameter.TextureClipmapVirtualDepthSgix; - var _TextureClipmapLodOffsetSgix = OpenTK.Graphics.ES20.GetTextureParameter.TextureClipmapLodOffsetSgix; - var _TextureClipmapDepthSgix = OpenTK.Graphics.ES20.GetTextureParameter.TextureClipmapDepthSgix; - var _PostTextureFilterBiasSgix = OpenTK.Graphics.ES20.GetTextureParameter.PostTextureFilterBiasSgix; - var _PostTextureFilterScaleSgix = OpenTK.Graphics.ES20.GetTextureParameter.PostTextureFilterScaleSgix; - var _TextureLodBiasSSgix = OpenTK.Graphics.ES20.GetTextureParameter.TextureLodBiasSSgix; - var _TextureLodBiasTSgix = OpenTK.Graphics.ES20.GetTextureParameter.TextureLodBiasTSgix; - var _TextureLodBiasRSgix = OpenTK.Graphics.ES20.GetTextureParameter.TextureLodBiasRSgix; - var _GenerateMipmapSgis = OpenTK.Graphics.ES20.GetTextureParameter.GenerateMipmapSgis; - var _TextureCompareSgix = OpenTK.Graphics.ES20.GetTextureParameter.TextureCompareSgix; - var _TextureCompareOperatorSgix = OpenTK.Graphics.ES20.GetTextureParameter.TextureCompareOperatorSgix; - var _TextureLequalRSgix = OpenTK.Graphics.ES20.GetTextureParameter.TextureLequalRSgix; - var _TextureGequalRSgix = OpenTK.Graphics.ES20.GetTextureParameter.TextureGequalRSgix; - var _TextureMaxClampSSgix = OpenTK.Graphics.ES20.GetTextureParameter.TextureMaxClampSSgix; - var _TextureMaxClampTSgix = OpenTK.Graphics.ES20.GetTextureParameter.TextureMaxClampTSgix; - var _TextureMaxClampRSgix = OpenTK.Graphics.ES20.GetTextureParameter.TextureMaxClampRSgix; -} -static void Test_GetTextureParameterName_38229() { - var _TextureMagFilter = OpenTK.Graphics.ES20.GetTextureParameterName.TextureMagFilter; - var _TextureMinFilter = OpenTK.Graphics.ES20.GetTextureParameterName.TextureMinFilter; - var _TextureWrapS = OpenTK.Graphics.ES20.GetTextureParameterName.TextureWrapS; - var _TextureWrapT = OpenTK.Graphics.ES20.GetTextureParameterName.TextureWrapT; - var _TextureWrapROes = OpenTK.Graphics.ES20.GetTextureParameterName.TextureWrapROes; - var _TextureImmutableFormatExt = OpenTK.Graphics.ES20.GetTextureParameterName.TextureImmutableFormatExt; -} -static void Test_HintMode_38230() { - var _DontCare = OpenTK.Graphics.ES20.HintMode.DontCare; - var _Fastest = OpenTK.Graphics.ES20.HintMode.Fastest; - var _Nicest = OpenTK.Graphics.ES20.HintMode.Nicest; -} -static void Test_HintTarget_38231() { - var _PerspectiveCorrectionHint = OpenTK.Graphics.ES20.HintTarget.PerspectiveCorrectionHint; - var _PointSmoothHint = OpenTK.Graphics.ES20.HintTarget.PointSmoothHint; - var _LineSmoothHint = OpenTK.Graphics.ES20.HintTarget.LineSmoothHint; - var _PolygonSmoothHint = OpenTK.Graphics.ES20.HintTarget.PolygonSmoothHint; - var _FogHint = OpenTK.Graphics.ES20.HintTarget.FogHint; - var _PreferDoublebufferHintPgi = OpenTK.Graphics.ES20.HintTarget.PreferDoublebufferHintPgi; - var _ConserveMemoryHintPgi = OpenTK.Graphics.ES20.HintTarget.ConserveMemoryHintPgi; - var _ReclaimMemoryHintPgi = OpenTK.Graphics.ES20.HintTarget.ReclaimMemoryHintPgi; - var _NativeGraphicsBeginHintPgi = OpenTK.Graphics.ES20.HintTarget.NativeGraphicsBeginHintPgi; - var _NativeGraphicsEndHintPgi = OpenTK.Graphics.ES20.HintTarget.NativeGraphicsEndHintPgi; - var _AlwaysFastHintPgi = OpenTK.Graphics.ES20.HintTarget.AlwaysFastHintPgi; - var _AlwaysSoftHintPgi = OpenTK.Graphics.ES20.HintTarget.AlwaysSoftHintPgi; - var _AllowDrawObjHintPgi = OpenTK.Graphics.ES20.HintTarget.AllowDrawObjHintPgi; - var _AllowDrawWinHintPgi = OpenTK.Graphics.ES20.HintTarget.AllowDrawWinHintPgi; - var _AllowDrawFrgHintPgi = OpenTK.Graphics.ES20.HintTarget.AllowDrawFrgHintPgi; - var _AllowDrawMemHintPgi = OpenTK.Graphics.ES20.HintTarget.AllowDrawMemHintPgi; - var _StrictDepthfuncHintPgi = OpenTK.Graphics.ES20.HintTarget.StrictDepthfuncHintPgi; - var _StrictLightingHintPgi = OpenTK.Graphics.ES20.HintTarget.StrictLightingHintPgi; - var _StrictScissorHintPgi = OpenTK.Graphics.ES20.HintTarget.StrictScissorHintPgi; - var _FullStippleHintPgi = OpenTK.Graphics.ES20.HintTarget.FullStippleHintPgi; - var _ClipNearHintPgi = OpenTK.Graphics.ES20.HintTarget.ClipNearHintPgi; - var _ClipFarHintPgi = OpenTK.Graphics.ES20.HintTarget.ClipFarHintPgi; - var _WideLineHintPgi = OpenTK.Graphics.ES20.HintTarget.WideLineHintPgi; - var _BackNormalsHintPgi = OpenTK.Graphics.ES20.HintTarget.BackNormalsHintPgi; - var _VertexDataHintPgi = OpenTK.Graphics.ES20.HintTarget.VertexDataHintPgi; - var _VertexConsistentHintPgi = OpenTK.Graphics.ES20.HintTarget.VertexConsistentHintPgi; - var _MaterialSideHintPgi = OpenTK.Graphics.ES20.HintTarget.MaterialSideHintPgi; - var _MaxVertexHintPgi = OpenTK.Graphics.ES20.HintTarget.MaxVertexHintPgi; - var _PackCmykHintExt = OpenTK.Graphics.ES20.HintTarget.PackCmykHintExt; - var _UnpackCmykHintExt = OpenTK.Graphics.ES20.HintTarget.UnpackCmykHintExt; - var _PhongHintWin = OpenTK.Graphics.ES20.HintTarget.PhongHintWin; - var _ClipVolumeClippingHintExt = OpenTK.Graphics.ES20.HintTarget.ClipVolumeClippingHintExt; - var _TextureMultiBufferHintSgix = OpenTK.Graphics.ES20.HintTarget.TextureMultiBufferHintSgix; - var _GenerateMipmapHint = OpenTK.Graphics.ES20.HintTarget.GenerateMipmapHint; - var _GenerateMipmapHintSgis = OpenTK.Graphics.ES20.HintTarget.GenerateMipmapHintSgis; - var _ProgramBinaryRetrievableHint = OpenTK.Graphics.ES20.HintTarget.ProgramBinaryRetrievableHint; - var _ConvolutionHintSgix = OpenTK.Graphics.ES20.HintTarget.ConvolutionHintSgix; - var _ScalebiasHintSgix = OpenTK.Graphics.ES20.HintTarget.ScalebiasHintSgix; - var _LineQualityHintSgix = OpenTK.Graphics.ES20.HintTarget.LineQualityHintSgix; - var _VertexPreclipSgix = OpenTK.Graphics.ES20.HintTarget.VertexPreclipSgix; - var _VertexPreclipHintSgix = OpenTK.Graphics.ES20.HintTarget.VertexPreclipHintSgix; - var _TextureCompressionHint = OpenTK.Graphics.ES20.HintTarget.TextureCompressionHint; - var _TextureCompressionHintArb = OpenTK.Graphics.ES20.HintTarget.TextureCompressionHintArb; - var _VertexArrayStorageHintApple = OpenTK.Graphics.ES20.HintTarget.VertexArrayStorageHintApple; - var _MultisampleFilterHintNv = OpenTK.Graphics.ES20.HintTarget.MultisampleFilterHintNv; - var _TransformHintApple = OpenTK.Graphics.ES20.HintTarget.TransformHintApple; - var _TextureStorageHintApple = OpenTK.Graphics.ES20.HintTarget.TextureStorageHintApple; - var _FragmentShaderDerivativeHint = OpenTK.Graphics.ES20.HintTarget.FragmentShaderDerivativeHint; - var _FragmentShaderDerivativeHintArb = OpenTK.Graphics.ES20.HintTarget.FragmentShaderDerivativeHintArb; - var _FragmentShaderDerivativeHintOes = OpenTK.Graphics.ES20.HintTarget.FragmentShaderDerivativeHintOes; - var _BinningControlHintQcom = OpenTK.Graphics.ES20.HintTarget.BinningControlHintQcom; -} -static void Test_HistogramTargetExt_38232() { - var _Histogram = OpenTK.Graphics.ES20.HistogramTargetExt.Histogram; - var _HistogramExt = OpenTK.Graphics.ES20.HistogramTargetExt.HistogramExt; - var _ProxyHistogram = OpenTK.Graphics.ES20.HistogramTargetExt.ProxyHistogram; - var _ProxyHistogramExt = OpenTK.Graphics.ES20.HistogramTargetExt.ProxyHistogramExt; -} -static void Test_ImgMultisampledRenderToTexture_38233() { - var _RenderbufferSamplesImg = OpenTK.Graphics.ES20.ImgMultisampledRenderToTexture.RenderbufferSamplesImg; - var _FramebufferIncompleteMultisampleImg = OpenTK.Graphics.ES20.ImgMultisampledRenderToTexture.FramebufferIncompleteMultisampleImg; - var _MaxSamplesImg = OpenTK.Graphics.ES20.ImgMultisampledRenderToTexture.MaxSamplesImg; - var _TextureSamplesImg = OpenTK.Graphics.ES20.ImgMultisampledRenderToTexture.TextureSamplesImg; -} -static void Test_ImgProgramBinary_38234() { - var _SgxProgramBinaryImg = OpenTK.Graphics.ES20.ImgProgramBinary.SgxProgramBinaryImg; -} -static void Test_ImgReadFormat_38235() { - var _BgraImg = OpenTK.Graphics.ES20.ImgReadFormat.BgraImg; - var _UnsignedShort4444RevImg = OpenTK.Graphics.ES20.ImgReadFormat.UnsignedShort4444RevImg; -} -static void Test_ImgShaderBinary_38236() { - var _SgxBinaryImg = OpenTK.Graphics.ES20.ImgShaderBinary.SgxBinaryImg; -} -static void Test_ImgTextureCompressionPvrtc_38237() { - var _CompressedRgbPvrtc4Bppv1Img = OpenTK.Graphics.ES20.ImgTextureCompressionPvrtc.CompressedRgbPvrtc4Bppv1Img; - var _CompressedRgbPvrtc2Bppv1Img = OpenTK.Graphics.ES20.ImgTextureCompressionPvrtc.CompressedRgbPvrtc2Bppv1Img; - var _CompressedRgbaPvrtc4Bppv1Img = OpenTK.Graphics.ES20.ImgTextureCompressionPvrtc.CompressedRgbaPvrtc4Bppv1Img; - var _CompressedRgbaPvrtc2Bppv1Img = OpenTK.Graphics.ES20.ImgTextureCompressionPvrtc.CompressedRgbaPvrtc2Bppv1Img; -} -static void Test_ImgTextureCompressionPvrtc2_38238() { - var _CompressedRgbaPvrtc2Bppv2Img = OpenTK.Graphics.ES20.ImgTextureCompressionPvrtc2.CompressedRgbaPvrtc2Bppv2Img; - var _CompressedRgbaPvrtc4Bppv2Img = OpenTK.Graphics.ES20.ImgTextureCompressionPvrtc2.CompressedRgbaPvrtc4Bppv2Img; -} -static void Test_IndexPointerType_38239() { - var _Short = OpenTK.Graphics.ES20.IndexPointerType.Short; - var _Int = OpenTK.Graphics.ES20.IndexPointerType.Int; - var _Float = OpenTK.Graphics.ES20.IndexPointerType.Float; - var _Double = OpenTK.Graphics.ES20.IndexPointerType.Double; -} -static void Test_IntelPerformanceQuery_38240() { - var _PerfquerySingleContextIntel = OpenTK.Graphics.ES20.IntelPerformanceQuery.PerfquerySingleContextIntel; - var _PerfqueryGlobalContextIntel = OpenTK.Graphics.ES20.IntelPerformanceQuery.PerfqueryGlobalContextIntel; - var _PerfqueryDonotFlushIntel = OpenTK.Graphics.ES20.IntelPerformanceQuery.PerfqueryDonotFlushIntel; - var _PerfqueryFlushIntel = OpenTK.Graphics.ES20.IntelPerformanceQuery.PerfqueryFlushIntel; - var _PerfqueryWaitIntel = OpenTK.Graphics.ES20.IntelPerformanceQuery.PerfqueryWaitIntel; - var _PerfqueryCounterEventIntel = OpenTK.Graphics.ES20.IntelPerformanceQuery.PerfqueryCounterEventIntel; - var _PerfqueryCounterDurationNormIntel = OpenTK.Graphics.ES20.IntelPerformanceQuery.PerfqueryCounterDurationNormIntel; - var _PerfqueryCounterDurationRawIntel = OpenTK.Graphics.ES20.IntelPerformanceQuery.PerfqueryCounterDurationRawIntel; - var _PerfqueryCounterThroughputIntel = OpenTK.Graphics.ES20.IntelPerformanceQuery.PerfqueryCounterThroughputIntel; - var _PerfqueryCounterRawIntel = OpenTK.Graphics.ES20.IntelPerformanceQuery.PerfqueryCounterRawIntel; - var _PerfqueryCounterTimestampIntel = OpenTK.Graphics.ES20.IntelPerformanceQuery.PerfqueryCounterTimestampIntel; - var _PerfqueryCounterDataUint32Intel = OpenTK.Graphics.ES20.IntelPerformanceQuery.PerfqueryCounterDataUint32Intel; - var _PerfqueryCounterDataUint64Intel = OpenTK.Graphics.ES20.IntelPerformanceQuery.PerfqueryCounterDataUint64Intel; - var _PerfqueryCounterDataFloatIntel = OpenTK.Graphics.ES20.IntelPerformanceQuery.PerfqueryCounterDataFloatIntel; - var _PerfqueryCounterDataDoubleIntel = OpenTK.Graphics.ES20.IntelPerformanceQuery.PerfqueryCounterDataDoubleIntel; - var _PerfqueryCounterDataBool32Intel = OpenTK.Graphics.ES20.IntelPerformanceQuery.PerfqueryCounterDataBool32Intel; - var _PerfqueryQueryNameLengthMaxIntel = OpenTK.Graphics.ES20.IntelPerformanceQuery.PerfqueryQueryNameLengthMaxIntel; - var _PerfqueryCounterNameLengthMaxIntel = OpenTK.Graphics.ES20.IntelPerformanceQuery.PerfqueryCounterNameLengthMaxIntel; - var _PerfqueryCounterDescLengthMaxIntel = OpenTK.Graphics.ES20.IntelPerformanceQuery.PerfqueryCounterDescLengthMaxIntel; - var _PerfqueryGpaExtendedCountersIntel = OpenTK.Graphics.ES20.IntelPerformanceQuery.PerfqueryGpaExtendedCountersIntel; -} -static void Test_InterleavedArrayFormat_38241() { - var _V2f = OpenTK.Graphics.ES20.InterleavedArrayFormat.V2f; - var _V3f = OpenTK.Graphics.ES20.InterleavedArrayFormat.V3f; - var _C4ubV2f = OpenTK.Graphics.ES20.InterleavedArrayFormat.C4ubV2f; - var _C4ubV3f = OpenTK.Graphics.ES20.InterleavedArrayFormat.C4ubV3f; - var _C3fV3f = OpenTK.Graphics.ES20.InterleavedArrayFormat.C3fV3f; - var _N3fV3f = OpenTK.Graphics.ES20.InterleavedArrayFormat.N3fV3f; - var _C4fN3fV3f = OpenTK.Graphics.ES20.InterleavedArrayFormat.C4fN3fV3f; - var _T2fV3f = OpenTK.Graphics.ES20.InterleavedArrayFormat.T2fV3f; - var _T4fV4f = OpenTK.Graphics.ES20.InterleavedArrayFormat.T4fV4f; - var _T2fC4ubV3f = OpenTK.Graphics.ES20.InterleavedArrayFormat.T2fC4ubV3f; - var _T2fC3fV3f = OpenTK.Graphics.ES20.InterleavedArrayFormat.T2fC3fV3f; - var _T2fN3fV3f = OpenTK.Graphics.ES20.InterleavedArrayFormat.T2fN3fV3f; - var _T2fC4fN3fV3f = OpenTK.Graphics.ES20.InterleavedArrayFormat.T2fC4fN3fV3f; - var _T4fC4fN3fV4f = OpenTK.Graphics.ES20.InterleavedArrayFormat.T4fC4fN3fV4f; -} -static void Test_InternalFormat_38242() { - var _R3G3B2 = OpenTK.Graphics.ES20.InternalFormat.R3G3B2; - var _Alpha4 = OpenTK.Graphics.ES20.InternalFormat.Alpha4; - var _Alpha8 = OpenTK.Graphics.ES20.InternalFormat.Alpha8; - var _Alpha12 = OpenTK.Graphics.ES20.InternalFormat.Alpha12; - var _Alpha16 = OpenTK.Graphics.ES20.InternalFormat.Alpha16; - var _Luminance4 = OpenTK.Graphics.ES20.InternalFormat.Luminance4; - var _Luminance8 = OpenTK.Graphics.ES20.InternalFormat.Luminance8; - var _Luminance12 = OpenTK.Graphics.ES20.InternalFormat.Luminance12; - var _Luminance16 = OpenTK.Graphics.ES20.InternalFormat.Luminance16; - var _Luminance4Alpha4 = OpenTK.Graphics.ES20.InternalFormat.Luminance4Alpha4; - var _Luminance6Alpha2 = OpenTK.Graphics.ES20.InternalFormat.Luminance6Alpha2; - var _Luminance8Alpha8 = OpenTK.Graphics.ES20.InternalFormat.Luminance8Alpha8; - var _Luminance12Alpha4 = OpenTK.Graphics.ES20.InternalFormat.Luminance12Alpha4; - var _Luminance12Alpha12 = OpenTK.Graphics.ES20.InternalFormat.Luminance12Alpha12; - var _Luminance16Alpha16 = OpenTK.Graphics.ES20.InternalFormat.Luminance16Alpha16; - var _Intensity = OpenTK.Graphics.ES20.InternalFormat.Intensity; - var _Intensity4 = OpenTK.Graphics.ES20.InternalFormat.Intensity4; - var _Intensity8 = OpenTK.Graphics.ES20.InternalFormat.Intensity8; - var _Intensity12 = OpenTK.Graphics.ES20.InternalFormat.Intensity12; - var _Intensity16 = OpenTK.Graphics.ES20.InternalFormat.Intensity16; - var _Rgb2Ext = OpenTK.Graphics.ES20.InternalFormat.Rgb2Ext; - var _Rgb4 = OpenTK.Graphics.ES20.InternalFormat.Rgb4; - var _Rgb5 = OpenTK.Graphics.ES20.InternalFormat.Rgb5; - var _Rgb8 = OpenTK.Graphics.ES20.InternalFormat.Rgb8; - var _Rgb10 = OpenTK.Graphics.ES20.InternalFormat.Rgb10; - var _Rgb12 = OpenTK.Graphics.ES20.InternalFormat.Rgb12; - var _Rgb16 = OpenTK.Graphics.ES20.InternalFormat.Rgb16; - var _Rgba2 = OpenTK.Graphics.ES20.InternalFormat.Rgba2; - var _Rgba4 = OpenTK.Graphics.ES20.InternalFormat.Rgba4; - var _Rgb5A1 = OpenTK.Graphics.ES20.InternalFormat.Rgb5A1; - var _Rgba8 = OpenTK.Graphics.ES20.InternalFormat.Rgba8; - var _Rgb10A2 = OpenTK.Graphics.ES20.InternalFormat.Rgb10A2; - var _Rgba12 = OpenTK.Graphics.ES20.InternalFormat.Rgba12; - var _Rgba16 = OpenTK.Graphics.ES20.InternalFormat.Rgba16; - var _DualAlpha4Sgis = OpenTK.Graphics.ES20.InternalFormat.DualAlpha4Sgis; - var _DualAlpha8Sgis = OpenTK.Graphics.ES20.InternalFormat.DualAlpha8Sgis; - var _DualAlpha12Sgis = OpenTK.Graphics.ES20.InternalFormat.DualAlpha12Sgis; - var _DualAlpha16Sgis = OpenTK.Graphics.ES20.InternalFormat.DualAlpha16Sgis; - var _DualLuminance4Sgis = OpenTK.Graphics.ES20.InternalFormat.DualLuminance4Sgis; - var _DualLuminance8Sgis = OpenTK.Graphics.ES20.InternalFormat.DualLuminance8Sgis; - var _DualLuminance12Sgis = OpenTK.Graphics.ES20.InternalFormat.DualLuminance12Sgis; - var _DualLuminance16Sgis = OpenTK.Graphics.ES20.InternalFormat.DualLuminance16Sgis; - var _DualIntensity4Sgis = OpenTK.Graphics.ES20.InternalFormat.DualIntensity4Sgis; - var _DualIntensity8Sgis = OpenTK.Graphics.ES20.InternalFormat.DualIntensity8Sgis; - var _DualIntensity12Sgis = OpenTK.Graphics.ES20.InternalFormat.DualIntensity12Sgis; - var _DualIntensity16Sgis = OpenTK.Graphics.ES20.InternalFormat.DualIntensity16Sgis; - var _DualLuminanceAlpha4Sgis = OpenTK.Graphics.ES20.InternalFormat.DualLuminanceAlpha4Sgis; - var _DualLuminanceAlpha8Sgis = OpenTK.Graphics.ES20.InternalFormat.DualLuminanceAlpha8Sgis; - var _QuadAlpha4Sgis = OpenTK.Graphics.ES20.InternalFormat.QuadAlpha4Sgis; - var _QuadAlpha8Sgis = OpenTK.Graphics.ES20.InternalFormat.QuadAlpha8Sgis; - var _QuadLuminance4Sgis = OpenTK.Graphics.ES20.InternalFormat.QuadLuminance4Sgis; - var _QuadLuminance8Sgis = OpenTK.Graphics.ES20.InternalFormat.QuadLuminance8Sgis; - var _QuadIntensity4Sgis = OpenTK.Graphics.ES20.InternalFormat.QuadIntensity4Sgis; - var _QuadIntensity8Sgis = OpenTK.Graphics.ES20.InternalFormat.QuadIntensity8Sgis; - var _DepthComponent16Sgix = OpenTK.Graphics.ES20.InternalFormat.DepthComponent16Sgix; - var _DepthComponent24Sgix = OpenTK.Graphics.ES20.InternalFormat.DepthComponent24Sgix; - var _DepthComponent32Sgix = OpenTK.Graphics.ES20.InternalFormat.DepthComponent32Sgix; -} -static void Test_KhrBlendEquationAdvanced_38243() { - var _BlendAdvancedCoherentKhr = OpenTK.Graphics.ES20.KhrBlendEquationAdvanced.BlendAdvancedCoherentKhr; - var _MultiplyKhr = OpenTK.Graphics.ES20.KhrBlendEquationAdvanced.MultiplyKhr; - var _ScreenKhr = OpenTK.Graphics.ES20.KhrBlendEquationAdvanced.ScreenKhr; - var _OverlayKhr = OpenTK.Graphics.ES20.KhrBlendEquationAdvanced.OverlayKhr; - var _DarkenKhr = OpenTK.Graphics.ES20.KhrBlendEquationAdvanced.DarkenKhr; - var _LightenKhr = OpenTK.Graphics.ES20.KhrBlendEquationAdvanced.LightenKhr; - var _ColordodgeKhr = OpenTK.Graphics.ES20.KhrBlendEquationAdvanced.ColordodgeKhr; - var _ColorburnKhr = OpenTK.Graphics.ES20.KhrBlendEquationAdvanced.ColorburnKhr; - var _HardlightKhr = OpenTK.Graphics.ES20.KhrBlendEquationAdvanced.HardlightKhr; - var _SoftlightKhr = OpenTK.Graphics.ES20.KhrBlendEquationAdvanced.SoftlightKhr; - var _DifferenceKhr = OpenTK.Graphics.ES20.KhrBlendEquationAdvanced.DifferenceKhr; - var _ExclusionKhr = OpenTK.Graphics.ES20.KhrBlendEquationAdvanced.ExclusionKhr; - var _HslHueKhr = OpenTK.Graphics.ES20.KhrBlendEquationAdvanced.HslHueKhr; - var _HslSaturationKhr = OpenTK.Graphics.ES20.KhrBlendEquationAdvanced.HslSaturationKhr; - var _HslColorKhr = OpenTK.Graphics.ES20.KhrBlendEquationAdvanced.HslColorKhr; - var _HslLuminosityKhr = OpenTK.Graphics.ES20.KhrBlendEquationAdvanced.HslLuminosityKhr; -} -static void Test_KhrDebug_38244() { - var _ContextFlagDebugBit = OpenTK.Graphics.ES20.KhrDebug.ContextFlagDebugBit; - var _ContextFlagDebugBitKhr = OpenTK.Graphics.ES20.KhrDebug.ContextFlagDebugBitKhr; - var _StackOverflow = OpenTK.Graphics.ES20.KhrDebug.StackOverflow; - var _StackOverflowKhr = OpenTK.Graphics.ES20.KhrDebug.StackOverflowKhr; - var _StackUnderflow = OpenTK.Graphics.ES20.KhrDebug.StackUnderflow; - var _StackUnderflowKhr = OpenTK.Graphics.ES20.KhrDebug.StackUnderflowKhr; - var _VertexArray = OpenTK.Graphics.ES20.KhrDebug.VertexArray; - var _VertexArrayKhr = OpenTK.Graphics.ES20.KhrDebug.VertexArrayKhr; - var _DebugOutputSynchronous = OpenTK.Graphics.ES20.KhrDebug.DebugOutputSynchronous; - var _DebugOutputSynchronousKhr = OpenTK.Graphics.ES20.KhrDebug.DebugOutputSynchronousKhr; - var _DebugNextLoggedMessageLength = OpenTK.Graphics.ES20.KhrDebug.DebugNextLoggedMessageLength; - var _DebugNextLoggedMessageLengthKhr = OpenTK.Graphics.ES20.KhrDebug.DebugNextLoggedMessageLengthKhr; - var _DebugCallbackFunction = OpenTK.Graphics.ES20.KhrDebug.DebugCallbackFunction; - var _DebugCallbackFunctionKhr = OpenTK.Graphics.ES20.KhrDebug.DebugCallbackFunctionKhr; - var _DebugCallbackUserParam = OpenTK.Graphics.ES20.KhrDebug.DebugCallbackUserParam; - var _DebugCallbackUserParamKhr = OpenTK.Graphics.ES20.KhrDebug.DebugCallbackUserParamKhr; - var _DebugSourceApi = OpenTK.Graphics.ES20.KhrDebug.DebugSourceApi; - var _DebugSourceApiKhr = OpenTK.Graphics.ES20.KhrDebug.DebugSourceApiKhr; - var _DebugSourceWindowSystem = OpenTK.Graphics.ES20.KhrDebug.DebugSourceWindowSystem; - var _DebugSourceWindowSystemKhr = OpenTK.Graphics.ES20.KhrDebug.DebugSourceWindowSystemKhr; - var _DebugSourceShaderCompiler = OpenTK.Graphics.ES20.KhrDebug.DebugSourceShaderCompiler; - var _DebugSourceShaderCompilerKhr = OpenTK.Graphics.ES20.KhrDebug.DebugSourceShaderCompilerKhr; - var _DebugSourceThirdParty = OpenTK.Graphics.ES20.KhrDebug.DebugSourceThirdParty; - var _DebugSourceThirdPartyKhr = OpenTK.Graphics.ES20.KhrDebug.DebugSourceThirdPartyKhr; - var _DebugSourceApplication = OpenTK.Graphics.ES20.KhrDebug.DebugSourceApplication; - var _DebugSourceApplicationKhr = OpenTK.Graphics.ES20.KhrDebug.DebugSourceApplicationKhr; - var _DebugSourceOther = OpenTK.Graphics.ES20.KhrDebug.DebugSourceOther; - var _DebugSourceOtherKhr = OpenTK.Graphics.ES20.KhrDebug.DebugSourceOtherKhr; - var _DebugTypeError = OpenTK.Graphics.ES20.KhrDebug.DebugTypeError; - var _DebugTypeErrorKhr = OpenTK.Graphics.ES20.KhrDebug.DebugTypeErrorKhr; - var _DebugTypeDeprecatedBehavior = OpenTK.Graphics.ES20.KhrDebug.DebugTypeDeprecatedBehavior; - var _DebugTypeDeprecatedBehaviorKhr = OpenTK.Graphics.ES20.KhrDebug.DebugTypeDeprecatedBehaviorKhr; - var _DebugTypeUndefinedBehavior = OpenTK.Graphics.ES20.KhrDebug.DebugTypeUndefinedBehavior; - var _DebugTypeUndefinedBehaviorKhr = OpenTK.Graphics.ES20.KhrDebug.DebugTypeUndefinedBehaviorKhr; - var _DebugTypePortability = OpenTK.Graphics.ES20.KhrDebug.DebugTypePortability; - var _DebugTypePortabilityKhr = OpenTK.Graphics.ES20.KhrDebug.DebugTypePortabilityKhr; - var _DebugTypePerformance = OpenTK.Graphics.ES20.KhrDebug.DebugTypePerformance; - var _DebugTypePerformanceKhr = OpenTK.Graphics.ES20.KhrDebug.DebugTypePerformanceKhr; - var _DebugTypeOther = OpenTK.Graphics.ES20.KhrDebug.DebugTypeOther; - var _DebugTypeOtherKhr = OpenTK.Graphics.ES20.KhrDebug.DebugTypeOtherKhr; - var _DebugTypeMarker = OpenTK.Graphics.ES20.KhrDebug.DebugTypeMarker; - var _DebugTypeMarkerKhr = OpenTK.Graphics.ES20.KhrDebug.DebugTypeMarkerKhr; - var _DebugTypePushGroup = OpenTK.Graphics.ES20.KhrDebug.DebugTypePushGroup; - var _DebugTypePushGroupKhr = OpenTK.Graphics.ES20.KhrDebug.DebugTypePushGroupKhr; - var _DebugTypePopGroup = OpenTK.Graphics.ES20.KhrDebug.DebugTypePopGroup; - var _DebugTypePopGroupKhr = OpenTK.Graphics.ES20.KhrDebug.DebugTypePopGroupKhr; - var _DebugSeverityNotification = OpenTK.Graphics.ES20.KhrDebug.DebugSeverityNotification; - var _DebugSeverityNotificationKhr = OpenTK.Graphics.ES20.KhrDebug.DebugSeverityNotificationKhr; - var _MaxDebugGroupStackDepth = OpenTK.Graphics.ES20.KhrDebug.MaxDebugGroupStackDepth; - var _MaxDebugGroupStackDepthKhr = OpenTK.Graphics.ES20.KhrDebug.MaxDebugGroupStackDepthKhr; - var _DebugGroupStackDepth = OpenTK.Graphics.ES20.KhrDebug.DebugGroupStackDepth; - var _DebugGroupStackDepthKhr = OpenTK.Graphics.ES20.KhrDebug.DebugGroupStackDepthKhr; - var _Buffer = OpenTK.Graphics.ES20.KhrDebug.Buffer; - var _BufferKhr = OpenTK.Graphics.ES20.KhrDebug.BufferKhr; - var _Shader = OpenTK.Graphics.ES20.KhrDebug.Shader; - var _ShaderKhr = OpenTK.Graphics.ES20.KhrDebug.ShaderKhr; - var _Program = OpenTK.Graphics.ES20.KhrDebug.Program; - var _ProgramKhr = OpenTK.Graphics.ES20.KhrDebug.ProgramKhr; - var _Query = OpenTK.Graphics.ES20.KhrDebug.Query; - var _QueryKhr = OpenTK.Graphics.ES20.KhrDebug.QueryKhr; - var _ProgramPipeline = OpenTK.Graphics.ES20.KhrDebug.ProgramPipeline; - var _Sampler = OpenTK.Graphics.ES20.KhrDebug.Sampler; - var _SamplerKhr = OpenTK.Graphics.ES20.KhrDebug.SamplerKhr; - var _DisplayList = OpenTK.Graphics.ES20.KhrDebug.DisplayList; - var _MaxLabelLength = OpenTK.Graphics.ES20.KhrDebug.MaxLabelLength; - var _MaxLabelLengthKhr = OpenTK.Graphics.ES20.KhrDebug.MaxLabelLengthKhr; - var _MaxDebugMessageLength = OpenTK.Graphics.ES20.KhrDebug.MaxDebugMessageLength; - var _MaxDebugMessageLengthKhr = OpenTK.Graphics.ES20.KhrDebug.MaxDebugMessageLengthKhr; - var _MaxDebugLoggedMessages = OpenTK.Graphics.ES20.KhrDebug.MaxDebugLoggedMessages; - var _MaxDebugLoggedMessagesKhr = OpenTK.Graphics.ES20.KhrDebug.MaxDebugLoggedMessagesKhr; - var _DebugLoggedMessages = OpenTK.Graphics.ES20.KhrDebug.DebugLoggedMessages; - var _DebugLoggedMessagesKhr = OpenTK.Graphics.ES20.KhrDebug.DebugLoggedMessagesKhr; - var _DebugSeverityHigh = OpenTK.Graphics.ES20.KhrDebug.DebugSeverityHigh; - var _DebugSeverityHighKhr = OpenTK.Graphics.ES20.KhrDebug.DebugSeverityHighKhr; - var _DebugSeverityMedium = OpenTK.Graphics.ES20.KhrDebug.DebugSeverityMedium; - var _DebugSeverityMediumKhr = OpenTK.Graphics.ES20.KhrDebug.DebugSeverityMediumKhr; - var _DebugSeverityLow = OpenTK.Graphics.ES20.KhrDebug.DebugSeverityLow; - var _DebugSeverityLowKhr = OpenTK.Graphics.ES20.KhrDebug.DebugSeverityLowKhr; - var _DebugOutput = OpenTK.Graphics.ES20.KhrDebug.DebugOutput; - var _DebugOutputKhr = OpenTK.Graphics.ES20.KhrDebug.DebugOutputKhr; -} -static void Test_KhrTextureCompressionAstcHdr_38245() { - var _CompressedRgbaAstc4X4Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcHdr.CompressedRgbaAstc4X4Khr; - var _CompressedRgbaAstc5X4Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcHdr.CompressedRgbaAstc5X4Khr; - var _CompressedRgbaAstc5X5Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcHdr.CompressedRgbaAstc5X5Khr; - var _CompressedRgbaAstc6X5Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcHdr.CompressedRgbaAstc6X5Khr; - var _CompressedRgbaAstc6X6Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcHdr.CompressedRgbaAstc6X6Khr; - var _CompressedRgbaAstc8X5Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcHdr.CompressedRgbaAstc8X5Khr; - var _CompressedRgbaAstc8X6Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcHdr.CompressedRgbaAstc8X6Khr; - var _CompressedRgbaAstc8X8Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcHdr.CompressedRgbaAstc8X8Khr; - var _CompressedRgbaAstc10X5Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcHdr.CompressedRgbaAstc10X5Khr; - var _CompressedRgbaAstc10X6Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcHdr.CompressedRgbaAstc10X6Khr; - var _CompressedRgbaAstc10X8Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcHdr.CompressedRgbaAstc10X8Khr; - var _CompressedRgbaAstc10X10Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcHdr.CompressedRgbaAstc10X10Khr; - var _CompressedRgbaAstc12X10Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcHdr.CompressedRgbaAstc12X10Khr; - var _CompressedRgbaAstc12X12Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcHdr.CompressedRgbaAstc12X12Khr; - var _CompressedSrgb8Alpha8Astc4X4Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc4X4Khr; - var _CompressedSrgb8Alpha8Astc5X4Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc5X4Khr; - var _CompressedSrgb8Alpha8Astc5X5Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc5X5Khr; - var _CompressedSrgb8Alpha8Astc6X5Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc6X5Khr; - var _CompressedSrgb8Alpha8Astc6X6Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc6X6Khr; - var _CompressedSrgb8Alpha8Astc8X5Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc8X5Khr; - var _CompressedSrgb8Alpha8Astc8X6Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc8X6Khr; - var _CompressedSrgb8Alpha8Astc8X8Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc8X8Khr; - var _CompressedSrgb8Alpha8Astc10X5Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc10X5Khr; - var _CompressedSrgb8Alpha8Astc10X6Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc10X6Khr; - var _CompressedSrgb8Alpha8Astc10X8Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc10X8Khr; - var _CompressedSrgb8Alpha8Astc10X10Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc10X10Khr; - var _CompressedSrgb8Alpha8Astc12X10Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc12X10Khr; - var _CompressedSrgb8Alpha8Astc12X12Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcHdr.CompressedSrgb8Alpha8Astc12X12Khr; -} -static void Test_KhrTextureCompressionAstcLdr_38246() { - var _CompressedRgbaAstc4X4Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcLdr.CompressedRgbaAstc4X4Khr; - var _CompressedRgbaAstc5X4Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcLdr.CompressedRgbaAstc5X4Khr; - var _CompressedRgbaAstc5X5Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcLdr.CompressedRgbaAstc5X5Khr; - var _CompressedRgbaAstc6X5Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcLdr.CompressedRgbaAstc6X5Khr; - var _CompressedRgbaAstc6X6Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcLdr.CompressedRgbaAstc6X6Khr; - var _CompressedRgbaAstc8X5Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcLdr.CompressedRgbaAstc8X5Khr; - var _CompressedRgbaAstc8X6Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcLdr.CompressedRgbaAstc8X6Khr; - var _CompressedRgbaAstc8X8Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcLdr.CompressedRgbaAstc8X8Khr; - var _CompressedRgbaAstc10X5Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcLdr.CompressedRgbaAstc10X5Khr; - var _CompressedRgbaAstc10X6Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcLdr.CompressedRgbaAstc10X6Khr; - var _CompressedRgbaAstc10X8Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcLdr.CompressedRgbaAstc10X8Khr; - var _CompressedRgbaAstc10X10Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcLdr.CompressedRgbaAstc10X10Khr; - var _CompressedRgbaAstc12X10Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcLdr.CompressedRgbaAstc12X10Khr; - var _CompressedRgbaAstc12X12Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcLdr.CompressedRgbaAstc12X12Khr; - var _CompressedSrgb8Alpha8Astc4X4Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc4X4Khr; - var _CompressedSrgb8Alpha8Astc5X4Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc5X4Khr; - var _CompressedSrgb8Alpha8Astc5X5Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc5X5Khr; - var _CompressedSrgb8Alpha8Astc6X5Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc6X5Khr; - var _CompressedSrgb8Alpha8Astc6X6Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc6X6Khr; - var _CompressedSrgb8Alpha8Astc8X5Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc8X5Khr; - var _CompressedSrgb8Alpha8Astc8X6Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc8X6Khr; - var _CompressedSrgb8Alpha8Astc8X8Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc8X8Khr; - var _CompressedSrgb8Alpha8Astc10X5Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc10X5Khr; - var _CompressedSrgb8Alpha8Astc10X6Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc10X6Khr; - var _CompressedSrgb8Alpha8Astc10X8Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc10X8Khr; - var _CompressedSrgb8Alpha8Astc10X10Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc10X10Khr; - var _CompressedSrgb8Alpha8Astc12X10Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc12X10Khr; - var _CompressedSrgb8Alpha8Astc12X12Khr = OpenTK.Graphics.ES20.KhrTextureCompressionAstcLdr.CompressedSrgb8Alpha8Astc12X12Khr; -} -static void Test_LightEnvModeSgix_38247() { - var _Add = OpenTK.Graphics.ES20.LightEnvModeSgix.Add; - var _Replace = OpenTK.Graphics.ES20.LightEnvModeSgix.Replace; - var _Modulate = OpenTK.Graphics.ES20.LightEnvModeSgix.Modulate; -} -static void Test_LightEnvParameterSgix_38248() { - var _LightEnvModeSgix = OpenTK.Graphics.ES20.LightEnvParameterSgix.LightEnvModeSgix; -} -static void Test_LightModelColorControl_38249() { - var _SingleColor = OpenTK.Graphics.ES20.LightModelColorControl.SingleColor; - var _SingleColorExt = OpenTK.Graphics.ES20.LightModelColorControl.SingleColorExt; - var _SeparateSpecularColor = OpenTK.Graphics.ES20.LightModelColorControl.SeparateSpecularColor; - var _SeparateSpecularColorExt = OpenTK.Graphics.ES20.LightModelColorControl.SeparateSpecularColorExt; -} -static void Test_LightModelParameter_38250() { - var _LightModelLocalViewer = OpenTK.Graphics.ES20.LightModelParameter.LightModelLocalViewer; - var _LightModelTwoSide = OpenTK.Graphics.ES20.LightModelParameter.LightModelTwoSide; - var _LightModelAmbient = OpenTK.Graphics.ES20.LightModelParameter.LightModelAmbient; - var _LightModelColorControl = OpenTK.Graphics.ES20.LightModelParameter.LightModelColorControl; - var _LightModelColorControlExt = OpenTK.Graphics.ES20.LightModelParameter.LightModelColorControlExt; -} -static void Test_LightName_38251() { - var _Light0 = OpenTK.Graphics.ES20.LightName.Light0; - var _Light1 = OpenTK.Graphics.ES20.LightName.Light1; - var _Light2 = OpenTK.Graphics.ES20.LightName.Light2; - var _Light3 = OpenTK.Graphics.ES20.LightName.Light3; - var _Light4 = OpenTK.Graphics.ES20.LightName.Light4; - var _Light5 = OpenTK.Graphics.ES20.LightName.Light5; - var _Light6 = OpenTK.Graphics.ES20.LightName.Light6; - var _Light7 = OpenTK.Graphics.ES20.LightName.Light7; - var _FragmentLight0Sgix = OpenTK.Graphics.ES20.LightName.FragmentLight0Sgix; - var _FragmentLight1Sgix = OpenTK.Graphics.ES20.LightName.FragmentLight1Sgix; - var _FragmentLight2Sgix = OpenTK.Graphics.ES20.LightName.FragmentLight2Sgix; - var _FragmentLight3Sgix = OpenTK.Graphics.ES20.LightName.FragmentLight3Sgix; - var _FragmentLight4Sgix = OpenTK.Graphics.ES20.LightName.FragmentLight4Sgix; - var _FragmentLight5Sgix = OpenTK.Graphics.ES20.LightName.FragmentLight5Sgix; - var _FragmentLight6Sgix = OpenTK.Graphics.ES20.LightName.FragmentLight6Sgix; - var _FragmentLight7Sgix = OpenTK.Graphics.ES20.LightName.FragmentLight7Sgix; -} -static void Test_LightParameter_38252() { - var _Ambient = OpenTK.Graphics.ES20.LightParameter.Ambient; - var _Diffuse = OpenTK.Graphics.ES20.LightParameter.Diffuse; - var _Specular = OpenTK.Graphics.ES20.LightParameter.Specular; - var _Position = OpenTK.Graphics.ES20.LightParameter.Position; - var _SpotDirection = OpenTK.Graphics.ES20.LightParameter.SpotDirection; - var _SpotExponent = OpenTK.Graphics.ES20.LightParameter.SpotExponent; - var _SpotCutoff = OpenTK.Graphics.ES20.LightParameter.SpotCutoff; - var _ConstantAttenuation = OpenTK.Graphics.ES20.LightParameter.ConstantAttenuation; - var _LinearAttenuation = OpenTK.Graphics.ES20.LightParameter.LinearAttenuation; - var _QuadraticAttenuation = OpenTK.Graphics.ES20.LightParameter.QuadraticAttenuation; -} -static void Test_ListMode_38253() { - var _Compile = OpenTK.Graphics.ES20.ListMode.Compile; - var _CompileAndExecute = OpenTK.Graphics.ES20.ListMode.CompileAndExecute; -} -static void Test_ListNameType_38254() { - var _Byte = OpenTK.Graphics.ES20.ListNameType.Byte; - var _UnsignedByte = OpenTK.Graphics.ES20.ListNameType.UnsignedByte; - var _Short = OpenTK.Graphics.ES20.ListNameType.Short; - var _UnsignedShort = OpenTK.Graphics.ES20.ListNameType.UnsignedShort; - var _Int = OpenTK.Graphics.ES20.ListNameType.Int; - var _UnsignedInt = OpenTK.Graphics.ES20.ListNameType.UnsignedInt; - var _Float = OpenTK.Graphics.ES20.ListNameType.Float; - var _Gl2Bytes = OpenTK.Graphics.ES20.ListNameType.Gl2Bytes; - var _Gl3Bytes = OpenTK.Graphics.ES20.ListNameType.Gl3Bytes; - var _Gl4Bytes = OpenTK.Graphics.ES20.ListNameType.Gl4Bytes; -} -static void Test_ListParameterName_38255() { - var _ListPrioritySgix = OpenTK.Graphics.ES20.ListParameterName.ListPrioritySgix; -} -static void Test_LogicOp_38256() { - var _Clear = OpenTK.Graphics.ES20.LogicOp.Clear; - var _And = OpenTK.Graphics.ES20.LogicOp.And; - var _AndReverse = OpenTK.Graphics.ES20.LogicOp.AndReverse; - var _Copy = OpenTK.Graphics.ES20.LogicOp.Copy; - var _AndInverted = OpenTK.Graphics.ES20.LogicOp.AndInverted; - var _Noop = OpenTK.Graphics.ES20.LogicOp.Noop; - var _Xor = OpenTK.Graphics.ES20.LogicOp.Xor; - var _Or = OpenTK.Graphics.ES20.LogicOp.Or; - var _Nor = OpenTK.Graphics.ES20.LogicOp.Nor; - var _Equiv = OpenTK.Graphics.ES20.LogicOp.Equiv; - var _Invert = OpenTK.Graphics.ES20.LogicOp.Invert; - var _OrReverse = OpenTK.Graphics.ES20.LogicOp.OrReverse; - var _CopyInverted = OpenTK.Graphics.ES20.LogicOp.CopyInverted; - var _OrInverted = OpenTK.Graphics.ES20.LogicOp.OrInverted; - var _Nand = OpenTK.Graphics.ES20.LogicOp.Nand; - var _Set = OpenTK.Graphics.ES20.LogicOp.Set; -} -static void Test_MapBufferUsageMask_38257() { - var _MapReadBit = OpenTK.Graphics.ES20.MapBufferUsageMask.MapReadBit; - var _MapReadBitExt = OpenTK.Graphics.ES20.MapBufferUsageMask.MapReadBitExt; - var _MapWriteBit = OpenTK.Graphics.ES20.MapBufferUsageMask.MapWriteBit; - var _MapWriteBitExt = OpenTK.Graphics.ES20.MapBufferUsageMask.MapWriteBitExt; - var _MapInvalidateRangeBit = OpenTK.Graphics.ES20.MapBufferUsageMask.MapInvalidateRangeBit; - var _MapInvalidateRangeBitExt = OpenTK.Graphics.ES20.MapBufferUsageMask.MapInvalidateRangeBitExt; - var _MapInvalidateBufferBit = OpenTK.Graphics.ES20.MapBufferUsageMask.MapInvalidateBufferBit; - var _MapInvalidateBufferBitExt = OpenTK.Graphics.ES20.MapBufferUsageMask.MapInvalidateBufferBitExt; - var _MapFlushExplicitBit = OpenTK.Graphics.ES20.MapBufferUsageMask.MapFlushExplicitBit; - var _MapFlushExplicitBitExt = OpenTK.Graphics.ES20.MapBufferUsageMask.MapFlushExplicitBitExt; - var _MapUnsynchronizedBit = OpenTK.Graphics.ES20.MapBufferUsageMask.MapUnsynchronizedBit; - var _MapUnsynchronizedBitExt = OpenTK.Graphics.ES20.MapBufferUsageMask.MapUnsynchronizedBitExt; - var _MapPersistentBit = OpenTK.Graphics.ES20.MapBufferUsageMask.MapPersistentBit; - var _MapCoherentBit = OpenTK.Graphics.ES20.MapBufferUsageMask.MapCoherentBit; - var _DynamicStorageBit = OpenTK.Graphics.ES20.MapBufferUsageMask.DynamicStorageBit; - var _ClientStorageBit = OpenTK.Graphics.ES20.MapBufferUsageMask.ClientStorageBit; -} -static void Test_MapTarget_38258() { - var _Map1Color4 = OpenTK.Graphics.ES20.MapTarget.Map1Color4; - var _Map1Index = OpenTK.Graphics.ES20.MapTarget.Map1Index; - var _Map1Normal = OpenTK.Graphics.ES20.MapTarget.Map1Normal; - var _Map1TextureCoord1 = OpenTK.Graphics.ES20.MapTarget.Map1TextureCoord1; - var _Map1TextureCoord2 = OpenTK.Graphics.ES20.MapTarget.Map1TextureCoord2; - var _Map1TextureCoord3 = OpenTK.Graphics.ES20.MapTarget.Map1TextureCoord3; - var _Map1TextureCoord4 = OpenTK.Graphics.ES20.MapTarget.Map1TextureCoord4; - var _Map1Vertex3 = OpenTK.Graphics.ES20.MapTarget.Map1Vertex3; - var _Map1Vertex4 = OpenTK.Graphics.ES20.MapTarget.Map1Vertex4; - var _Map2Color4 = OpenTK.Graphics.ES20.MapTarget.Map2Color4; - var _Map2Index = OpenTK.Graphics.ES20.MapTarget.Map2Index; - var _Map2Normal = OpenTK.Graphics.ES20.MapTarget.Map2Normal; - var _Map2TextureCoord1 = OpenTK.Graphics.ES20.MapTarget.Map2TextureCoord1; - var _Map2TextureCoord2 = OpenTK.Graphics.ES20.MapTarget.Map2TextureCoord2; - var _Map2TextureCoord3 = OpenTK.Graphics.ES20.MapTarget.Map2TextureCoord3; - var _Map2TextureCoord4 = OpenTK.Graphics.ES20.MapTarget.Map2TextureCoord4; - var _Map2Vertex3 = OpenTK.Graphics.ES20.MapTarget.Map2Vertex3; - var _Map2Vertex4 = OpenTK.Graphics.ES20.MapTarget.Map2Vertex4; - var _GeometryDeformationSgix = OpenTK.Graphics.ES20.MapTarget.GeometryDeformationSgix; - var _TextureDeformationSgix = OpenTK.Graphics.ES20.MapTarget.TextureDeformationSgix; -} -static void Test_MapTextureFormatIntel_38259() { - var _LayoutDefaultIntel = OpenTK.Graphics.ES20.MapTextureFormatIntel.LayoutDefaultIntel; - var _LayoutLinearIntel = OpenTK.Graphics.ES20.MapTextureFormatIntel.LayoutLinearIntel; - var _LayoutLinearCpuCachedIntel = OpenTK.Graphics.ES20.MapTextureFormatIntel.LayoutLinearCpuCachedIntel; -} -static void Test_MaterialFace_38260() { - var _Front = OpenTK.Graphics.ES20.MaterialFace.Front; - var _Back = OpenTK.Graphics.ES20.MaterialFace.Back; - var _FrontAndBack = OpenTK.Graphics.ES20.MaterialFace.FrontAndBack; -} -static void Test_MaterialParameter_38261() { - var _Ambient = OpenTK.Graphics.ES20.MaterialParameter.Ambient; - var _Diffuse = OpenTK.Graphics.ES20.MaterialParameter.Diffuse; - var _Specular = OpenTK.Graphics.ES20.MaterialParameter.Specular; - var _Emission = OpenTK.Graphics.ES20.MaterialParameter.Emission; - var _Shininess = OpenTK.Graphics.ES20.MaterialParameter.Shininess; - var _AmbientAndDiffuse = OpenTK.Graphics.ES20.MaterialParameter.AmbientAndDiffuse; - var _ColorIndexes = OpenTK.Graphics.ES20.MaterialParameter.ColorIndexes; -} -static void Test_MatrixMode_38262() { - var _Modelview = OpenTK.Graphics.ES20.MatrixMode.Modelview; - var _Modelview0Ext = OpenTK.Graphics.ES20.MatrixMode.Modelview0Ext; - var _Projection = OpenTK.Graphics.ES20.MatrixMode.Projection; - var _Texture = OpenTK.Graphics.ES20.MatrixMode.Texture; -} -static void Test_MemoryBarrierMask_38263() { - var _VertexAttribArrayBarrierBit = OpenTK.Graphics.ES20.MemoryBarrierMask.VertexAttribArrayBarrierBit; - var _VertexAttribArrayBarrierBitExt = OpenTK.Graphics.ES20.MemoryBarrierMask.VertexAttribArrayBarrierBitExt; - var _ElementArrayBarrierBit = OpenTK.Graphics.ES20.MemoryBarrierMask.ElementArrayBarrierBit; - var _ElementArrayBarrierBitExt = OpenTK.Graphics.ES20.MemoryBarrierMask.ElementArrayBarrierBitExt; - var _UniformBarrierBit = OpenTK.Graphics.ES20.MemoryBarrierMask.UniformBarrierBit; - var _UniformBarrierBitExt = OpenTK.Graphics.ES20.MemoryBarrierMask.UniformBarrierBitExt; - var _TextureFetchBarrierBit = OpenTK.Graphics.ES20.MemoryBarrierMask.TextureFetchBarrierBit; - var _TextureFetchBarrierBitExt = OpenTK.Graphics.ES20.MemoryBarrierMask.TextureFetchBarrierBitExt; - var _ShaderGlobalAccessBarrierBitNv = OpenTK.Graphics.ES20.MemoryBarrierMask.ShaderGlobalAccessBarrierBitNv; - var _ShaderImageAccessBarrierBit = OpenTK.Graphics.ES20.MemoryBarrierMask.ShaderImageAccessBarrierBit; - var _ShaderImageAccessBarrierBitExt = OpenTK.Graphics.ES20.MemoryBarrierMask.ShaderImageAccessBarrierBitExt; - var _CommandBarrierBit = OpenTK.Graphics.ES20.MemoryBarrierMask.CommandBarrierBit; - var _CommandBarrierBitExt = OpenTK.Graphics.ES20.MemoryBarrierMask.CommandBarrierBitExt; - var _PixelBufferBarrierBit = OpenTK.Graphics.ES20.MemoryBarrierMask.PixelBufferBarrierBit; - var _PixelBufferBarrierBitExt = OpenTK.Graphics.ES20.MemoryBarrierMask.PixelBufferBarrierBitExt; - var _TextureUpdateBarrierBit = OpenTK.Graphics.ES20.MemoryBarrierMask.TextureUpdateBarrierBit; - var _TextureUpdateBarrierBitExt = OpenTK.Graphics.ES20.MemoryBarrierMask.TextureUpdateBarrierBitExt; - var _BufferUpdateBarrierBit = OpenTK.Graphics.ES20.MemoryBarrierMask.BufferUpdateBarrierBit; - var _BufferUpdateBarrierBitExt = OpenTK.Graphics.ES20.MemoryBarrierMask.BufferUpdateBarrierBitExt; - var _FramebufferBarrierBit = OpenTK.Graphics.ES20.MemoryBarrierMask.FramebufferBarrierBit; - var _FramebufferBarrierBitExt = OpenTK.Graphics.ES20.MemoryBarrierMask.FramebufferBarrierBitExt; - var _TransformFeedbackBarrierBit = OpenTK.Graphics.ES20.MemoryBarrierMask.TransformFeedbackBarrierBit; - var _TransformFeedbackBarrierBitExt = OpenTK.Graphics.ES20.MemoryBarrierMask.TransformFeedbackBarrierBitExt; - var _AtomicCounterBarrierBit = OpenTK.Graphics.ES20.MemoryBarrierMask.AtomicCounterBarrierBit; - var _AtomicCounterBarrierBitExt = OpenTK.Graphics.ES20.MemoryBarrierMask.AtomicCounterBarrierBitExt; - var _ShaderStorageBarrierBit = OpenTK.Graphics.ES20.MemoryBarrierMask.ShaderStorageBarrierBit; - var _ClientMappedBufferBarrierBit = OpenTK.Graphics.ES20.MemoryBarrierMask.ClientMappedBufferBarrierBit; - var _QueryBufferBarrierBit = OpenTK.Graphics.ES20.MemoryBarrierMask.QueryBufferBarrierBit; - var _AllBarrierBits = OpenTK.Graphics.ES20.MemoryBarrierMask.AllBarrierBits; - var _AllBarrierBitsExt = OpenTK.Graphics.ES20.MemoryBarrierMask.AllBarrierBitsExt; -} -static void Test_MeshMode1_38264() { - var _Point = OpenTK.Graphics.ES20.MeshMode1.Point; - var _Line = OpenTK.Graphics.ES20.MeshMode1.Line; -} -static void Test_MeshMode2_38265() { - var _Point = OpenTK.Graphics.ES20.MeshMode2.Point; - var _Line = OpenTK.Graphics.ES20.MeshMode2.Line; - var _Fill = OpenTK.Graphics.ES20.MeshMode2.Fill; -} -static void Test_MinmaxTargetExt_38266() { - var _Minmax = OpenTK.Graphics.ES20.MinmaxTargetExt.Minmax; - var _MinmaxExt = OpenTK.Graphics.ES20.MinmaxTargetExt.MinmaxExt; -} -static void Test_NormalPointerType_38267() { - var _Byte = OpenTK.Graphics.ES20.NormalPointerType.Byte; - var _Short = OpenTK.Graphics.ES20.NormalPointerType.Short; - var _Int = OpenTK.Graphics.ES20.NormalPointerType.Int; - var _Float = OpenTK.Graphics.ES20.NormalPointerType.Float; - var _Double = OpenTK.Graphics.ES20.NormalPointerType.Double; -} -static void Test_NvBlendEquationAdvanced_38268() { - var _Zero = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.Zero; - var _XorNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.XorNv; - var _Invert = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.Invert; - var _RedNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.RedNv; - var _GreenNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.GreenNv; - var _BlueNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.BlueNv; - var _BlendPremultipliedSrcNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.BlendPremultipliedSrcNv; - var _BlendOverlapNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.BlendOverlapNv; - var _UncorrelatedNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.UncorrelatedNv; - var _DisjointNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.DisjointNv; - var _ConjointNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.ConjointNv; - var _SrcNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.SrcNv; - var _DstNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.DstNv; - var _SrcOverNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.SrcOverNv; - var _DstOverNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.DstOverNv; - var _SrcInNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.SrcInNv; - var _DstInNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.DstInNv; - var _SrcOutNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.SrcOutNv; - var _DstOutNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.DstOutNv; - var _SrcAtopNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.SrcAtopNv; - var _DstAtopNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.DstAtopNv; - var _PlusNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.PlusNv; - var _PlusDarkerNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.PlusDarkerNv; - var _MultiplyNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.MultiplyNv; - var _ScreenNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.ScreenNv; - var _OverlayNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.OverlayNv; - var _DarkenNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.DarkenNv; - var _LightenNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.LightenNv; - var _ColordodgeNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.ColordodgeNv; - var _ColorburnNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.ColorburnNv; - var _HardlightNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.HardlightNv; - var _SoftlightNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.SoftlightNv; - var _DifferenceNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.DifferenceNv; - var _MinusNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.MinusNv; - var _ExclusionNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.ExclusionNv; - var _ContrastNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.ContrastNv; - var _InvertRgbNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.InvertRgbNv; - var _LineardodgeNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.LineardodgeNv; - var _LinearburnNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.LinearburnNv; - var _VividlightNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.VividlightNv; - var _LinearlightNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.LinearlightNv; - var _PinlightNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.PinlightNv; - var _HardmixNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.HardmixNv; - var _HslHueNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.HslHueNv; - var _HslSaturationNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.HslSaturationNv; - var _HslColorNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.HslColorNv; - var _HslLuminosityNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.HslLuminosityNv; - var _PlusClampedNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.PlusClampedNv; - var _PlusClampedAlphaNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.PlusClampedAlphaNv; - var _MinusClampedNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.MinusClampedNv; - var _InvertOvgNv = OpenTK.Graphics.ES20.NvBlendEquationAdvanced.InvertOvgNv; -} -static void Test_NvBlendEquationAdvancedCoherent_38269() { - var _BlendAdvancedCoherentNv = OpenTK.Graphics.ES20.NvBlendEquationAdvancedCoherent.BlendAdvancedCoherentNv; -} -static void Test_NvCopyBuffer_38270() { - var _CopyReadBufferNv = OpenTK.Graphics.ES20.NvCopyBuffer.CopyReadBufferNv; - var _CopyWriteBufferNv = OpenTK.Graphics.ES20.NvCopyBuffer.CopyWriteBufferNv; -} -static void Test_NvCoverageSample_38271() { - var _CoverageBufferBitNv = OpenTK.Graphics.ES20.NvCoverageSample.CoverageBufferBitNv; - var _CoverageComponentNv = OpenTK.Graphics.ES20.NvCoverageSample.CoverageComponentNv; - var _CoverageComponent4Nv = OpenTK.Graphics.ES20.NvCoverageSample.CoverageComponent4Nv; - var _CoverageAttachmentNv = OpenTK.Graphics.ES20.NvCoverageSample.CoverageAttachmentNv; - var _CoverageBuffersNv = OpenTK.Graphics.ES20.NvCoverageSample.CoverageBuffersNv; - var _CoverageSamplesNv = OpenTK.Graphics.ES20.NvCoverageSample.CoverageSamplesNv; - var _CoverageAllFragmentsNv = OpenTK.Graphics.ES20.NvCoverageSample.CoverageAllFragmentsNv; - var _CoverageEdgeFragmentsNv = OpenTK.Graphics.ES20.NvCoverageSample.CoverageEdgeFragmentsNv; - var _CoverageAutomaticNv = OpenTK.Graphics.ES20.NvCoverageSample.CoverageAutomaticNv; -} -static void Test_NvDepthNonlinear_38272() { - var _DepthComponent16NonlinearNv = OpenTK.Graphics.ES20.NvDepthNonlinear.DepthComponent16NonlinearNv; -} -static void Test_NvDrawBuffers_38273() { - var _MaxDrawBuffersNv = OpenTK.Graphics.ES20.NvDrawBuffers.MaxDrawBuffersNv; - var _DrawBuffer0Nv = OpenTK.Graphics.ES20.NvDrawBuffers.DrawBuffer0Nv; - var _DrawBuffer1Nv = OpenTK.Graphics.ES20.NvDrawBuffers.DrawBuffer1Nv; - var _DrawBuffer2Nv = OpenTK.Graphics.ES20.NvDrawBuffers.DrawBuffer2Nv; - var _DrawBuffer3Nv = OpenTK.Graphics.ES20.NvDrawBuffers.DrawBuffer3Nv; - var _DrawBuffer4Nv = OpenTK.Graphics.ES20.NvDrawBuffers.DrawBuffer4Nv; - var _DrawBuffer5Nv = OpenTK.Graphics.ES20.NvDrawBuffers.DrawBuffer5Nv; - var _DrawBuffer6Nv = OpenTK.Graphics.ES20.NvDrawBuffers.DrawBuffer6Nv; - var _DrawBuffer7Nv = OpenTK.Graphics.ES20.NvDrawBuffers.DrawBuffer7Nv; - var _DrawBuffer8Nv = OpenTK.Graphics.ES20.NvDrawBuffers.DrawBuffer8Nv; - var _DrawBuffer9Nv = OpenTK.Graphics.ES20.NvDrawBuffers.DrawBuffer9Nv; - var _DrawBuffer10Nv = OpenTK.Graphics.ES20.NvDrawBuffers.DrawBuffer10Nv; - var _DrawBuffer11Nv = OpenTK.Graphics.ES20.NvDrawBuffers.DrawBuffer11Nv; - var _DrawBuffer12Nv = OpenTK.Graphics.ES20.NvDrawBuffers.DrawBuffer12Nv; - var _DrawBuffer13Nv = OpenTK.Graphics.ES20.NvDrawBuffers.DrawBuffer13Nv; - var _DrawBuffer14Nv = OpenTK.Graphics.ES20.NvDrawBuffers.DrawBuffer14Nv; - var _DrawBuffer15Nv = OpenTK.Graphics.ES20.NvDrawBuffers.DrawBuffer15Nv; - var _ColorAttachment0Nv = OpenTK.Graphics.ES20.NvDrawBuffers.ColorAttachment0Nv; - var _ColorAttachment1Nv = OpenTK.Graphics.ES20.NvDrawBuffers.ColorAttachment1Nv; - var _ColorAttachment2Nv = OpenTK.Graphics.ES20.NvDrawBuffers.ColorAttachment2Nv; - var _ColorAttachment3Nv = OpenTK.Graphics.ES20.NvDrawBuffers.ColorAttachment3Nv; - var _ColorAttachment4Nv = OpenTK.Graphics.ES20.NvDrawBuffers.ColorAttachment4Nv; - var _ColorAttachment5Nv = OpenTK.Graphics.ES20.NvDrawBuffers.ColorAttachment5Nv; - var _ColorAttachment6Nv = OpenTK.Graphics.ES20.NvDrawBuffers.ColorAttachment6Nv; - var _ColorAttachment7Nv = OpenTK.Graphics.ES20.NvDrawBuffers.ColorAttachment7Nv; - var _ColorAttachment8Nv = OpenTK.Graphics.ES20.NvDrawBuffers.ColorAttachment8Nv; - var _ColorAttachment9Nv = OpenTK.Graphics.ES20.NvDrawBuffers.ColorAttachment9Nv; - var _ColorAttachment10Nv = OpenTK.Graphics.ES20.NvDrawBuffers.ColorAttachment10Nv; - var _ColorAttachment11Nv = OpenTK.Graphics.ES20.NvDrawBuffers.ColorAttachment11Nv; - var _ColorAttachment12Nv = OpenTK.Graphics.ES20.NvDrawBuffers.ColorAttachment12Nv; - var _ColorAttachment13Nv = OpenTK.Graphics.ES20.NvDrawBuffers.ColorAttachment13Nv; - var _ColorAttachment14Nv = OpenTK.Graphics.ES20.NvDrawBuffers.ColorAttachment14Nv; - var _ColorAttachment15Nv = OpenTK.Graphics.ES20.NvDrawBuffers.ColorAttachment15Nv; -} -static void Test_NvDrawInstanced_38274() { -} -static void Test_NvExplicitAttribLocation_38275() { -} -static void Test_NvFboColorAttachments_38276() { - var _MaxColorAttachmentsNv = OpenTK.Graphics.ES20.NvFboColorAttachments.MaxColorAttachmentsNv; - var _ColorAttachment0Nv = OpenTK.Graphics.ES20.NvFboColorAttachments.ColorAttachment0Nv; - var _ColorAttachment1Nv = OpenTK.Graphics.ES20.NvFboColorAttachments.ColorAttachment1Nv; - var _ColorAttachment2Nv = OpenTK.Graphics.ES20.NvFboColorAttachments.ColorAttachment2Nv; - var _ColorAttachment3Nv = OpenTK.Graphics.ES20.NvFboColorAttachments.ColorAttachment3Nv; - var _ColorAttachment4Nv = OpenTK.Graphics.ES20.NvFboColorAttachments.ColorAttachment4Nv; - var _ColorAttachment5Nv = OpenTK.Graphics.ES20.NvFboColorAttachments.ColorAttachment5Nv; - var _ColorAttachment6Nv = OpenTK.Graphics.ES20.NvFboColorAttachments.ColorAttachment6Nv; - var _ColorAttachment7Nv = OpenTK.Graphics.ES20.NvFboColorAttachments.ColorAttachment7Nv; - var _ColorAttachment8Nv = OpenTK.Graphics.ES20.NvFboColorAttachments.ColorAttachment8Nv; - var _ColorAttachment9Nv = OpenTK.Graphics.ES20.NvFboColorAttachments.ColorAttachment9Nv; - var _ColorAttachment10Nv = OpenTK.Graphics.ES20.NvFboColorAttachments.ColorAttachment10Nv; - var _ColorAttachment11Nv = OpenTK.Graphics.ES20.NvFboColorAttachments.ColorAttachment11Nv; - var _ColorAttachment12Nv = OpenTK.Graphics.ES20.NvFboColorAttachments.ColorAttachment12Nv; - var _ColorAttachment13Nv = OpenTK.Graphics.ES20.NvFboColorAttachments.ColorAttachment13Nv; - var _ColorAttachment14Nv = OpenTK.Graphics.ES20.NvFboColorAttachments.ColorAttachment14Nv; - var _ColorAttachment15Nv = OpenTK.Graphics.ES20.NvFboColorAttachments.ColorAttachment15Nv; -} -static void Test_NvFence_38277() { - var _AllCompletedNv = OpenTK.Graphics.ES20.NvFence.AllCompletedNv; - var _FenceStatusNv = OpenTK.Graphics.ES20.NvFence.FenceStatusNv; - var _FenceConditionNv = OpenTK.Graphics.ES20.NvFence.FenceConditionNv; -} -static void Test_NvFramebufferBlit_38278() { - var _DrawFramebufferBindingNv = OpenTK.Graphics.ES20.NvFramebufferBlit.DrawFramebufferBindingNv; - var _ReadFramebufferNv = OpenTK.Graphics.ES20.NvFramebufferBlit.ReadFramebufferNv; - var _DrawFramebufferNv = OpenTK.Graphics.ES20.NvFramebufferBlit.DrawFramebufferNv; - var _ReadFramebufferBindingNv = OpenTK.Graphics.ES20.NvFramebufferBlit.ReadFramebufferBindingNv; -} -static void Test_NvFramebufferMultisample_38279() { - var _RenderbufferSamplesNv = OpenTK.Graphics.ES20.NvFramebufferMultisample.RenderbufferSamplesNv; - var _FramebufferIncompleteMultisampleNv = OpenTK.Graphics.ES20.NvFramebufferMultisample.FramebufferIncompleteMultisampleNv; - var _MaxSamplesNv = OpenTK.Graphics.ES20.NvFramebufferMultisample.MaxSamplesNv; -} -static void Test_NvGenerateMipmapSrgb_38280() { -} -static void Test_NvInstancedArrays_38281() { - var _VertexAttribArrayDivisorNv = OpenTK.Graphics.ES20.NvInstancedArrays.VertexAttribArrayDivisorNv; -} -static void Test_NvNonSquareMatrices_38282() { - var _FloatMat2x3Nv = OpenTK.Graphics.ES20.NvNonSquareMatrices.FloatMat2x3Nv; - var _FloatMat2x4Nv = OpenTK.Graphics.ES20.NvNonSquareMatrices.FloatMat2x4Nv; - var _FloatMat3x2Nv = OpenTK.Graphics.ES20.NvNonSquareMatrices.FloatMat3x2Nv; - var _FloatMat3x4Nv = OpenTK.Graphics.ES20.NvNonSquareMatrices.FloatMat3x4Nv; - var _FloatMat4x2Nv = OpenTK.Graphics.ES20.NvNonSquareMatrices.FloatMat4x2Nv; - var _FloatMat4x3Nv = OpenTK.Graphics.ES20.NvNonSquareMatrices.FloatMat4x3Nv; -} -static void Test_NvReadBuffer_38283() { - var _ReadBufferNv = OpenTK.Graphics.ES20.NvReadBuffer.ReadBufferNv; -} -static void Test_NvReadBufferFront_38284() { -} -static void Test_NvReadDepth_38285() { -} -static void Test_NvReadDepthStencil_38286() { -} -static void Test_NvReadStencil_38287() { -} -static void Test_NvShadowSamplersArray_38288() { - var _Sampler2DArrayShadowNv = OpenTK.Graphics.ES20.NvShadowSamplersArray.Sampler2DArrayShadowNv; -} -static void Test_NvShadowSamplersCube_38289() { - var _SamplerCubeShadowNv = OpenTK.Graphics.ES20.NvShadowSamplersCube.SamplerCubeShadowNv; -} -static void Test_NvSrgbFormats_38290() { - var _Etc1Srgb8Nv = OpenTK.Graphics.ES20.NvSrgbFormats.Etc1Srgb8Nv; - var _Srgb8Nv = OpenTK.Graphics.ES20.NvSrgbFormats.Srgb8Nv; - var _SluminanceAlphaNv = OpenTK.Graphics.ES20.NvSrgbFormats.SluminanceAlphaNv; - var _Sluminance8Alpha8Nv = OpenTK.Graphics.ES20.NvSrgbFormats.Sluminance8Alpha8Nv; - var _SluminanceNv = OpenTK.Graphics.ES20.NvSrgbFormats.SluminanceNv; - var _Sluminance8Nv = OpenTK.Graphics.ES20.NvSrgbFormats.Sluminance8Nv; - var _CompressedSrgbS3tcDxt1Nv = OpenTK.Graphics.ES20.NvSrgbFormats.CompressedSrgbS3tcDxt1Nv; - var _CompressedSrgbAlphaS3tcDxt1Nv = OpenTK.Graphics.ES20.NvSrgbFormats.CompressedSrgbAlphaS3tcDxt1Nv; - var _CompressedSrgbAlphaS3tcDxt3Nv = OpenTK.Graphics.ES20.NvSrgbFormats.CompressedSrgbAlphaS3tcDxt3Nv; - var _CompressedSrgbAlphaS3tcDxt5Nv = OpenTK.Graphics.ES20.NvSrgbFormats.CompressedSrgbAlphaS3tcDxt5Nv; -} -static void Test_NvTextureBorderClamp_38291() { - var _TextureBorderColorNv = OpenTK.Graphics.ES20.NvTextureBorderClamp.TextureBorderColorNv; - var _ClampToBorderNv = OpenTK.Graphics.ES20.NvTextureBorderClamp.ClampToBorderNv; -} -static void Test_NvTextureCompressionS3tcUpdate_38292() { -} -static void Test_NvTextureNpot2DMipmap_38293() { -} -static void Test_ObjectLabelIdentifier_38294() { - var _Texture = OpenTK.Graphics.ES20.ObjectLabelIdentifier.Texture; - var _VertexArray = OpenTK.Graphics.ES20.ObjectLabelIdentifier.VertexArray; - var _Buffer = OpenTK.Graphics.ES20.ObjectLabelIdentifier.Buffer; - var _Shader = OpenTK.Graphics.ES20.ObjectLabelIdentifier.Shader; - var _Program = OpenTK.Graphics.ES20.ObjectLabelIdentifier.Program; - var _Query = OpenTK.Graphics.ES20.ObjectLabelIdentifier.Query; - var _ProgramPipeline = OpenTK.Graphics.ES20.ObjectLabelIdentifier.ProgramPipeline; - var _Sampler = OpenTK.Graphics.ES20.ObjectLabelIdentifier.Sampler; - var _Framebuffer = OpenTK.Graphics.ES20.ObjectLabelIdentifier.Framebuffer; - var _Renderbuffer = OpenTK.Graphics.ES20.ObjectLabelIdentifier.Renderbuffer; -} -static void Test_OcclusionQueryEventMaskAmd_38295() { - var _QueryDepthPassEventBitAmd = OpenTK.Graphics.ES20.OcclusionQueryEventMaskAmd.QueryDepthPassEventBitAmd; - var _QueryDepthFailEventBitAmd = OpenTK.Graphics.ES20.OcclusionQueryEventMaskAmd.QueryDepthFailEventBitAmd; - var _QueryStencilFailEventBitAmd = OpenTK.Graphics.ES20.OcclusionQueryEventMaskAmd.QueryStencilFailEventBitAmd; - var _QueryDepthBoundsFailEventBitAmd = OpenTK.Graphics.ES20.OcclusionQueryEventMaskAmd.QueryDepthBoundsFailEventBitAmd; - var _QueryAllEventBitsAmd = OpenTK.Graphics.ES20.OcclusionQueryEventMaskAmd.QueryAllEventBitsAmd; -} -static void Test_OesCompressedEtc1Rgb8Texture_38296() { - var _Etc1Rgb8Oes = OpenTK.Graphics.ES20.OesCompressedEtc1Rgb8Texture.Etc1Rgb8Oes; -} -static void Test_OesCompressedPalettedTexture_38297() { - var _Palette4Rgb8Oes = OpenTK.Graphics.ES20.OesCompressedPalettedTexture.Palette4Rgb8Oes; - var _Palette4Rgba8Oes = OpenTK.Graphics.ES20.OesCompressedPalettedTexture.Palette4Rgba8Oes; - var _Palette4R5G6B5Oes = OpenTK.Graphics.ES20.OesCompressedPalettedTexture.Palette4R5G6B5Oes; - var _Palette4Rgba4Oes = OpenTK.Graphics.ES20.OesCompressedPalettedTexture.Palette4Rgba4Oes; - var _Palette4Rgb5A1Oes = OpenTK.Graphics.ES20.OesCompressedPalettedTexture.Palette4Rgb5A1Oes; - var _Palette8Rgb8Oes = OpenTK.Graphics.ES20.OesCompressedPalettedTexture.Palette8Rgb8Oes; - var _Palette8Rgba8Oes = OpenTK.Graphics.ES20.OesCompressedPalettedTexture.Palette8Rgba8Oes; - var _Palette8R5G6B5Oes = OpenTK.Graphics.ES20.OesCompressedPalettedTexture.Palette8R5G6B5Oes; - var _Palette8Rgba4Oes = OpenTK.Graphics.ES20.OesCompressedPalettedTexture.Palette8Rgba4Oes; - var _Palette8Rgb5A1Oes = OpenTK.Graphics.ES20.OesCompressedPalettedTexture.Palette8Rgb5A1Oes; -} -static void Test_OesDepth24_38298() { - var _DepthComponent24Oes = OpenTK.Graphics.ES20.OesDepth24.DepthComponent24Oes; -} -static void Test_OesDepth32_38299() { - var _DepthComponent32Oes = OpenTK.Graphics.ES20.OesDepth32.DepthComponent32Oes; -} -static void Test_OesDepthTexture_38300() { - var _UnsignedShort = OpenTK.Graphics.ES20.OesDepthTexture.UnsignedShort; - var _UnsignedInt = OpenTK.Graphics.ES20.OesDepthTexture.UnsignedInt; - var _DepthComponent = OpenTK.Graphics.ES20.OesDepthTexture.DepthComponent; -} -static void Test_OesEglImage_38301() { -} -static void Test_OesEglImageExternal_38302() { - var _TextureExternalOes = OpenTK.Graphics.ES20.OesEglImageExternal.TextureExternalOes; - var _SamplerExternalOes = OpenTK.Graphics.ES20.OesEglImageExternal.SamplerExternalOes; - var _TextureBindingExternalOes = OpenTK.Graphics.ES20.OesEglImageExternal.TextureBindingExternalOes; - var _RequiredTextureImageUnitsOes = OpenTK.Graphics.ES20.OesEglImageExternal.RequiredTextureImageUnitsOes; -} -static void Test_OesElementIndexUint_38303() { - var _UnsignedInt = OpenTK.Graphics.ES20.OesElementIndexUint.UnsignedInt; -} -static void Test_OesFboRenderMipmap_38304() { -} -static void Test_OesFragmentPrecisionHigh_38305() { -} -static void Test_OesGetProgramBinary_38306() { - var _ProgramBinaryLengthOes = OpenTK.Graphics.ES20.OesGetProgramBinary.ProgramBinaryLengthOes; - var _NumProgramBinaryFormatsOes = OpenTK.Graphics.ES20.OesGetProgramBinary.NumProgramBinaryFormatsOes; - var _ProgramBinaryFormatsOes = OpenTK.Graphics.ES20.OesGetProgramBinary.ProgramBinaryFormatsOes; -} -static void Test_OesMapbuffer_38307() { - var _WriteOnlyOes = OpenTK.Graphics.ES20.OesMapbuffer.WriteOnlyOes; - var _BufferAccessOes = OpenTK.Graphics.ES20.OesMapbuffer.BufferAccessOes; - var _BufferMappedOes = OpenTK.Graphics.ES20.OesMapbuffer.BufferMappedOes; - var _BufferMapPointerOes = OpenTK.Graphics.ES20.OesMapbuffer.BufferMapPointerOes; -} -static void Test_OesPackedDepthStencil_38308() { - var _DepthStencilOes = OpenTK.Graphics.ES20.OesPackedDepthStencil.DepthStencilOes; - var _UnsignedInt248Oes = OpenTK.Graphics.ES20.OesPackedDepthStencil.UnsignedInt248Oes; - var _Depth24Stencil8Oes = OpenTK.Graphics.ES20.OesPackedDepthStencil.Depth24Stencil8Oes; -} -static void Test_OesRequiredInternalformat_38309() { - var _Alpha8Oes = OpenTK.Graphics.ES20.OesRequiredInternalformat.Alpha8Oes; - var _Luminance8Oes = OpenTK.Graphics.ES20.OesRequiredInternalformat.Luminance8Oes; - var _Luminance4Alpha4Oes = OpenTK.Graphics.ES20.OesRequiredInternalformat.Luminance4Alpha4Oes; - var _Luminance8Alpha8Oes = OpenTK.Graphics.ES20.OesRequiredInternalformat.Luminance8Alpha8Oes; - var _Rgb8Oes = OpenTK.Graphics.ES20.OesRequiredInternalformat.Rgb8Oes; - var _Rgb10Ext = OpenTK.Graphics.ES20.OesRequiredInternalformat.Rgb10Ext; - var _Rgba4Oes = OpenTK.Graphics.ES20.OesRequiredInternalformat.Rgba4Oes; - var _Rgb5A1Oes = OpenTK.Graphics.ES20.OesRequiredInternalformat.Rgb5A1Oes; - var _Rgba8Oes = OpenTK.Graphics.ES20.OesRequiredInternalformat.Rgba8Oes; - var _Rgb10A2Ext = OpenTK.Graphics.ES20.OesRequiredInternalformat.Rgb10A2Ext; - var _DepthComponent16Oes = OpenTK.Graphics.ES20.OesRequiredInternalformat.DepthComponent16Oes; - var _DepthComponent24Oes = OpenTK.Graphics.ES20.OesRequiredInternalformat.DepthComponent24Oes; - var _DepthComponent32Oes = OpenTK.Graphics.ES20.OesRequiredInternalformat.DepthComponent32Oes; - var _Depth24Stencil8Oes = OpenTK.Graphics.ES20.OesRequiredInternalformat.Depth24Stencil8Oes; - var _Rgb565Oes = OpenTK.Graphics.ES20.OesRequiredInternalformat.Rgb565Oes; -} -static void Test_OesRgb8Rgba8_38310() { - var _Rgb8Oes = OpenTK.Graphics.ES20.OesRgb8Rgba8.Rgb8Oes; - var _Rgba8Oes = OpenTK.Graphics.ES20.OesRgb8Rgba8.Rgba8Oes; -} -static void Test_OesSampleShading_38311() { - var _SampleShadingOes = OpenTK.Graphics.ES20.OesSampleShading.SampleShadingOes; - var _MinSampleShadingValueOes = OpenTK.Graphics.ES20.OesSampleShading.MinSampleShadingValueOes; -} -static void Test_OesSampleVariables_38312() { -} -static void Test_OesShaderImageAtomic_38313() { -} -static void Test_OesShaderMultisampleInterpolation_38314() { - var _MinFragmentInterpolationOffsetOes = OpenTK.Graphics.ES20.OesShaderMultisampleInterpolation.MinFragmentInterpolationOffsetOes; - var _MaxFragmentInterpolationOffsetOes = OpenTK.Graphics.ES20.OesShaderMultisampleInterpolation.MaxFragmentInterpolationOffsetOes; - var _FragmentInterpolationOffsetBitsOes = OpenTK.Graphics.ES20.OesShaderMultisampleInterpolation.FragmentInterpolationOffsetBitsOes; -} -static void Test_OesStandardDerivatives_38315() { - var _FragmentShaderDerivativeHintOes = OpenTK.Graphics.ES20.OesStandardDerivatives.FragmentShaderDerivativeHintOes; -} -static void Test_OesStencil1_38316() { - var _StencilIndex1Oes = OpenTK.Graphics.ES20.OesStencil1.StencilIndex1Oes; -} -static void Test_OesStencil4_38317() { - var _StencilIndex4Oes = OpenTK.Graphics.ES20.OesStencil4.StencilIndex4Oes; -} -static void Test_OesSurfacelessContext_38318() { - var _FramebufferUndefinedOes = OpenTK.Graphics.ES20.OesSurfacelessContext.FramebufferUndefinedOes; -} -static void Test_OesTexture3D_38319() { - var _TextureBinding3DOes = OpenTK.Graphics.ES20.OesTexture3D.TextureBinding3DOes; - var _Texture3DOes = OpenTK.Graphics.ES20.OesTexture3D.Texture3DOes; - var _TextureWrapROes = OpenTK.Graphics.ES20.OesTexture3D.TextureWrapROes; - var _Max3DTextureSizeOes = OpenTK.Graphics.ES20.OesTexture3D.Max3DTextureSizeOes; - var _Sampler3DOes = OpenTK.Graphics.ES20.OesTexture3D.Sampler3DOes; - var _FramebufferAttachmentTexture3DZoffsetOes = OpenTK.Graphics.ES20.OesTexture3D.FramebufferAttachmentTexture3DZoffsetOes; -} -static void Test_OesTextureCompressionAstc_38320() { - var _CompressedRgbaAstc4X4Khr = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedRgbaAstc4X4Khr; - var _CompressedRgbaAstc5X4Khr = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedRgbaAstc5X4Khr; - var _CompressedRgbaAstc5X5Khr = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedRgbaAstc5X5Khr; - var _CompressedRgbaAstc6X5Khr = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedRgbaAstc6X5Khr; - var _CompressedRgbaAstc6X6Khr = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedRgbaAstc6X6Khr; - var _CompressedRgbaAstc8X5Khr = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedRgbaAstc8X5Khr; - var _CompressedRgbaAstc8X6Khr = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedRgbaAstc8X6Khr; - var _CompressedRgbaAstc8X8Khr = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedRgbaAstc8X8Khr; - var _CompressedRgbaAstc10X5Khr = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedRgbaAstc10X5Khr; - var _CompressedRgbaAstc10X6Khr = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedRgbaAstc10X6Khr; - var _CompressedRgbaAstc10X8Khr = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedRgbaAstc10X8Khr; - var _CompressedRgbaAstc10X10Khr = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedRgbaAstc10X10Khr; - var _CompressedRgbaAstc12X10Khr = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedRgbaAstc12X10Khr; - var _CompressedRgbaAstc12X12Khr = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedRgbaAstc12X12Khr; - var _CompressedRgbaAstc3X3x3Oes = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedRgbaAstc3X3x3Oes; - var _CompressedRgbaAstc4X3x3Oes = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedRgbaAstc4X3x3Oes; - var _CompressedRgbaAstc4X4x3Oes = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedRgbaAstc4X4x3Oes; - var _CompressedRgbaAstc4X4x4Oes = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedRgbaAstc4X4x4Oes; - var _CompressedRgbaAstc5X4x4Oes = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedRgbaAstc5X4x4Oes; - var _CompressedRgbaAstc5X5x4Oes = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedRgbaAstc5X5x4Oes; - var _CompressedRgbaAstc5X5x5Oes = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedRgbaAstc5X5x5Oes; - var _CompressedRgbaAstc6X5x5Oes = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedRgbaAstc6X5x5Oes; - var _CompressedRgbaAstc6X6x5Oes = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedRgbaAstc6X6x5Oes; - var _CompressedRgbaAstc6X6x6Oes = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedRgbaAstc6X6x6Oes; - var _CompressedSrgb8Alpha8Astc4X4Khr = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc4X4Khr; - var _CompressedSrgb8Alpha8Astc5X4Khr = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc5X4Khr; - var _CompressedSrgb8Alpha8Astc5X5Khr = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc5X5Khr; - var _CompressedSrgb8Alpha8Astc6X5Khr = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc6X5Khr; - var _CompressedSrgb8Alpha8Astc6X6Khr = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc6X6Khr; - var _CompressedSrgb8Alpha8Astc8X5Khr = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc8X5Khr; - var _CompressedSrgb8Alpha8Astc8X6Khr = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc8X6Khr; - var _CompressedSrgb8Alpha8Astc8X8Khr = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc8X8Khr; - var _CompressedSrgb8Alpha8Astc10X5Khr = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc10X5Khr; - var _CompressedSrgb8Alpha8Astc10X6Khr = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc10X6Khr; - var _CompressedSrgb8Alpha8Astc10X8Khr = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc10X8Khr; - var _CompressedSrgb8Alpha8Astc10X10Khr = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc10X10Khr; - var _CompressedSrgb8Alpha8Astc12X10Khr = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc12X10Khr; - var _CompressedSrgb8Alpha8Astc12X12Khr = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc12X12Khr; - var _CompressedSrgb8Alpha8Astc3X3x3Oes = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc3X3x3Oes; - var _CompressedSrgb8Alpha8Astc4X3x3Oes = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc4X3x3Oes; - var _CompressedSrgb8Alpha8Astc4X4x3Oes = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc4X4x3Oes; - var _CompressedSrgb8Alpha8Astc4X4x4Oes = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc4X4x4Oes; - var _CompressedSrgb8Alpha8Astc5X4x4Oes = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc5X4x4Oes; - var _CompressedSrgb8Alpha8Astc5X5x4Oes = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc5X5x4Oes; - var _CompressedSrgb8Alpha8Astc5X5x5Oes = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc5X5x5Oes; - var _CompressedSrgb8Alpha8Astc6X5x5Oes = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc6X5x5Oes; - var _CompressedSrgb8Alpha8Astc6X6x5Oes = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc6X6x5Oes; - var _CompressedSrgb8Alpha8Astc6X6x6Oes = OpenTK.Graphics.ES20.OesTextureCompressionAstc.CompressedSrgb8Alpha8Astc6X6x6Oes; -} -static void Test_OesTextureFloat_38321() { - var _Float = OpenTK.Graphics.ES20.OesTextureFloat.Float; -} -static void Test_OesTextureFloatLinear_38322() { -} -static void Test_OesTextureHalfFloat_38323() { - var _HalfFloatOes = OpenTK.Graphics.ES20.OesTextureHalfFloat.HalfFloatOes; -} -static void Test_OesTextureHalfFloatLinear_38324() { -} -static void Test_OesTextureNpot_38325() { -} -static void Test_OesTextureStencil8_38326() { - var _StencilIndexOes = OpenTK.Graphics.ES20.OesTextureStencil8.StencilIndexOes; - var _StencilIndex8Oes = OpenTK.Graphics.ES20.OesTextureStencil8.StencilIndex8Oes; -} -static void Test_OesTextureStorageMultisample2dArray_38327() { - var _Texture2DMultisampleArrayOes = OpenTK.Graphics.ES20.OesTextureStorageMultisample2dArray.Texture2DMultisampleArrayOes; - var _TextureBinding2DMultisampleArrayOes = OpenTK.Graphics.ES20.OesTextureStorageMultisample2dArray.TextureBinding2DMultisampleArrayOes; - var _Sampler2DMultisampleArrayOes = OpenTK.Graphics.ES20.OesTextureStorageMultisample2dArray.Sampler2DMultisampleArrayOes; - var _IntSampler2DMultisampleArrayOes = OpenTK.Graphics.ES20.OesTextureStorageMultisample2dArray.IntSampler2DMultisampleArrayOes; - var _UnsignedIntSampler2DMultisampleArrayOes = OpenTK.Graphics.ES20.OesTextureStorageMultisample2dArray.UnsignedIntSampler2DMultisampleArrayOes; -} -static void Test_OesVertexArrayObject_38328() { - var _VertexArrayBindingOes = OpenTK.Graphics.ES20.OesVertexArrayObject.VertexArrayBindingOes; -} -static void Test_OesVertexHalfFloat_38329() { - var _HalfFloatOes = OpenTK.Graphics.ES20.OesVertexHalfFloat.HalfFloatOes; -} -static void Test_OesVertexType1010102_38330() { - var _UnsignedInt1010102Oes = OpenTK.Graphics.ES20.OesVertexType1010102.UnsignedInt1010102Oes; - var _Int1010102Oes = OpenTK.Graphics.ES20.OesVertexType1010102.Int1010102Oes; -} -static void Test_PixelCopyType_38331() { - var _Color = OpenTK.Graphics.ES20.PixelCopyType.Color; - var _ColorExt = OpenTK.Graphics.ES20.PixelCopyType.ColorExt; - var _Depth = OpenTK.Graphics.ES20.PixelCopyType.Depth; - var _DepthExt = OpenTK.Graphics.ES20.PixelCopyType.DepthExt; - var _Stencil = OpenTK.Graphics.ES20.PixelCopyType.Stencil; - var _StencilExt = OpenTK.Graphics.ES20.PixelCopyType.StencilExt; -} -static void Test_PixelFormat_38332() { - var _UnsignedShort = OpenTK.Graphics.ES20.PixelFormat.UnsignedShort; - var _UnsignedInt = OpenTK.Graphics.ES20.PixelFormat.UnsignedInt; - var _ColorIndex = OpenTK.Graphics.ES20.PixelFormat.ColorIndex; - var _StencilIndex = OpenTK.Graphics.ES20.PixelFormat.StencilIndex; - var _DepthComponent = OpenTK.Graphics.ES20.PixelFormat.DepthComponent; - var _Red = OpenTK.Graphics.ES20.PixelFormat.Red; - var _RedExt = OpenTK.Graphics.ES20.PixelFormat.RedExt; - var _Green = OpenTK.Graphics.ES20.PixelFormat.Green; - var _Blue = OpenTK.Graphics.ES20.PixelFormat.Blue; - var _Alpha = OpenTK.Graphics.ES20.PixelFormat.Alpha; - var _Rgb = OpenTK.Graphics.ES20.PixelFormat.Rgb; - var _Rgba = OpenTK.Graphics.ES20.PixelFormat.Rgba; - var _Luminance = OpenTK.Graphics.ES20.PixelFormat.Luminance; - var _LuminanceAlpha = OpenTK.Graphics.ES20.PixelFormat.LuminanceAlpha; - var _AbgrExt = OpenTK.Graphics.ES20.PixelFormat.AbgrExt; - var _CmykExt = OpenTK.Graphics.ES20.PixelFormat.CmykExt; - var _CmykaExt = OpenTK.Graphics.ES20.PixelFormat.CmykaExt; - var _Ycrcb422Sgix = OpenTK.Graphics.ES20.PixelFormat.Ycrcb422Sgix; - var _Ycrcb444Sgix = OpenTK.Graphics.ES20.PixelFormat.Ycrcb444Sgix; -} -static void Test_PixelInternalFormat_38333() { - var _Alpha = OpenTK.Graphics.ES20.PixelInternalFormat.Alpha; - var _Rgb = OpenTK.Graphics.ES20.PixelInternalFormat.Rgb; - var _Rgba = OpenTK.Graphics.ES20.PixelInternalFormat.Rgba; - var _Luminance = OpenTK.Graphics.ES20.PixelInternalFormat.Luminance; - var _LuminanceAlpha = OpenTK.Graphics.ES20.PixelInternalFormat.LuminanceAlpha; -} -static void Test_PixelMap_38334() { - var _PixelMapIToI = OpenTK.Graphics.ES20.PixelMap.PixelMapIToI; - var _PixelMapSToS = OpenTK.Graphics.ES20.PixelMap.PixelMapSToS; - var _PixelMapIToR = OpenTK.Graphics.ES20.PixelMap.PixelMapIToR; - var _PixelMapIToG = OpenTK.Graphics.ES20.PixelMap.PixelMapIToG; - var _PixelMapIToB = OpenTK.Graphics.ES20.PixelMap.PixelMapIToB; - var _PixelMapIToA = OpenTK.Graphics.ES20.PixelMap.PixelMapIToA; - var _PixelMapRToR = OpenTK.Graphics.ES20.PixelMap.PixelMapRToR; - var _PixelMapGToG = OpenTK.Graphics.ES20.PixelMap.PixelMapGToG; - var _PixelMapBToB = OpenTK.Graphics.ES20.PixelMap.PixelMapBToB; - var _PixelMapAToA = OpenTK.Graphics.ES20.PixelMap.PixelMapAToA; -} -static void Test_PixelStoreParameter_38335() { - var _UnpackSwapBytes = OpenTK.Graphics.ES20.PixelStoreParameter.UnpackSwapBytes; - var _UnpackLsbFirst = OpenTK.Graphics.ES20.PixelStoreParameter.UnpackLsbFirst; - var _UnpackRowLength = OpenTK.Graphics.ES20.PixelStoreParameter.UnpackRowLength; - var _UnpackRowLengthExt = OpenTK.Graphics.ES20.PixelStoreParameter.UnpackRowLengthExt; - var _UnpackSkipRows = OpenTK.Graphics.ES20.PixelStoreParameter.UnpackSkipRows; - var _UnpackSkipRowsExt = OpenTK.Graphics.ES20.PixelStoreParameter.UnpackSkipRowsExt; - var _UnpackSkipPixels = OpenTK.Graphics.ES20.PixelStoreParameter.UnpackSkipPixels; - var _UnpackSkipPixelsExt = OpenTK.Graphics.ES20.PixelStoreParameter.UnpackSkipPixelsExt; - var _UnpackAlignment = OpenTK.Graphics.ES20.PixelStoreParameter.UnpackAlignment; - var _PackSwapBytes = OpenTK.Graphics.ES20.PixelStoreParameter.PackSwapBytes; - var _PackLsbFirst = OpenTK.Graphics.ES20.PixelStoreParameter.PackLsbFirst; - var _PackRowLength = OpenTK.Graphics.ES20.PixelStoreParameter.PackRowLength; - var _PackSkipRows = OpenTK.Graphics.ES20.PixelStoreParameter.PackSkipRows; - var _PackSkipPixels = OpenTK.Graphics.ES20.PixelStoreParameter.PackSkipPixels; - var _PackAlignment = OpenTK.Graphics.ES20.PixelStoreParameter.PackAlignment; - var _PackSkipImages = OpenTK.Graphics.ES20.PixelStoreParameter.PackSkipImages; - var _PackSkipImagesExt = OpenTK.Graphics.ES20.PixelStoreParameter.PackSkipImagesExt; - var _PackImageHeight = OpenTK.Graphics.ES20.PixelStoreParameter.PackImageHeight; - var _PackImageHeightExt = OpenTK.Graphics.ES20.PixelStoreParameter.PackImageHeightExt; - var _UnpackSkipImages = OpenTK.Graphics.ES20.PixelStoreParameter.UnpackSkipImages; - var _UnpackSkipImagesExt = OpenTK.Graphics.ES20.PixelStoreParameter.UnpackSkipImagesExt; - var _UnpackImageHeight = OpenTK.Graphics.ES20.PixelStoreParameter.UnpackImageHeight; - var _UnpackImageHeightExt = OpenTK.Graphics.ES20.PixelStoreParameter.UnpackImageHeightExt; - var _PackSkipVolumesSgis = OpenTK.Graphics.ES20.PixelStoreParameter.PackSkipVolumesSgis; - var _PackImageDepthSgis = OpenTK.Graphics.ES20.PixelStoreParameter.PackImageDepthSgis; - var _UnpackSkipVolumesSgis = OpenTK.Graphics.ES20.PixelStoreParameter.UnpackSkipVolumesSgis; - var _UnpackImageDepthSgis = OpenTK.Graphics.ES20.PixelStoreParameter.UnpackImageDepthSgis; - var _PixelTileWidthSgix = OpenTK.Graphics.ES20.PixelStoreParameter.PixelTileWidthSgix; - var _PixelTileHeightSgix = OpenTK.Graphics.ES20.PixelStoreParameter.PixelTileHeightSgix; - var _PixelTileGridWidthSgix = OpenTK.Graphics.ES20.PixelStoreParameter.PixelTileGridWidthSgix; - var _PixelTileGridHeightSgix = OpenTK.Graphics.ES20.PixelStoreParameter.PixelTileGridHeightSgix; - var _PixelTileGridDepthSgix = OpenTK.Graphics.ES20.PixelStoreParameter.PixelTileGridDepthSgix; - var _PixelTileCacheSizeSgix = OpenTK.Graphics.ES20.PixelStoreParameter.PixelTileCacheSizeSgix; - var _PackResampleSgix = OpenTK.Graphics.ES20.PixelStoreParameter.PackResampleSgix; - var _UnpackResampleSgix = OpenTK.Graphics.ES20.PixelStoreParameter.UnpackResampleSgix; - var _PackSubsampleRateSgix = OpenTK.Graphics.ES20.PixelStoreParameter.PackSubsampleRateSgix; - var _UnpackSubsampleRateSgix = OpenTK.Graphics.ES20.PixelStoreParameter.UnpackSubsampleRateSgix; - var _PackResampleOml = OpenTK.Graphics.ES20.PixelStoreParameter.PackResampleOml; - var _UnpackResampleOml = OpenTK.Graphics.ES20.PixelStoreParameter.UnpackResampleOml; -} -static void Test_PixelStoreResampleMode_38336() { - var _ResampleReplicateSgix = OpenTK.Graphics.ES20.PixelStoreResampleMode.ResampleReplicateSgix; - var _ResampleZeroFillSgix = OpenTK.Graphics.ES20.PixelStoreResampleMode.ResampleZeroFillSgix; - var _ResampleDecimateSgix = OpenTK.Graphics.ES20.PixelStoreResampleMode.ResampleDecimateSgix; -} -static void Test_PixelStoreSubsampleRate_38337() { - var _PixelSubsample4444Sgix = OpenTK.Graphics.ES20.PixelStoreSubsampleRate.PixelSubsample4444Sgix; - var _PixelSubsample2424Sgix = OpenTK.Graphics.ES20.PixelStoreSubsampleRate.PixelSubsample2424Sgix; - var _PixelSubsample4242Sgix = OpenTK.Graphics.ES20.PixelStoreSubsampleRate.PixelSubsample4242Sgix; -} -static void Test_PixelTexGenMode_38338() { - var _None = OpenTK.Graphics.ES20.PixelTexGenMode.None; - var _Rgb = OpenTK.Graphics.ES20.PixelTexGenMode.Rgb; - var _Rgba = OpenTK.Graphics.ES20.PixelTexGenMode.Rgba; - var _Luminance = OpenTK.Graphics.ES20.PixelTexGenMode.Luminance; - var _LuminanceAlpha = OpenTK.Graphics.ES20.PixelTexGenMode.LuminanceAlpha; - var _PixelTexGenAlphaReplaceSgix = OpenTK.Graphics.ES20.PixelTexGenMode.PixelTexGenAlphaReplaceSgix; - var _PixelTexGenAlphaNoReplaceSgix = OpenTK.Graphics.ES20.PixelTexGenMode.PixelTexGenAlphaNoReplaceSgix; - var _PixelTexGenAlphaLsSgix = OpenTK.Graphics.ES20.PixelTexGenMode.PixelTexGenAlphaLsSgix; - var _PixelTexGenAlphaMsSgix = OpenTK.Graphics.ES20.PixelTexGenMode.PixelTexGenAlphaMsSgix; -} -static void Test_PixelTexGenParameterNameSgis_38339() { - var _PixelFragmentRgbSourceSgis = OpenTK.Graphics.ES20.PixelTexGenParameterNameSgis.PixelFragmentRgbSourceSgis; - var _PixelFragmentAlphaSourceSgis = OpenTK.Graphics.ES20.PixelTexGenParameterNameSgis.PixelFragmentAlphaSourceSgis; -} -static void Test_PixelTransferParameter_38340() { - var _MapColor = OpenTK.Graphics.ES20.PixelTransferParameter.MapColor; - var _MapStencil = OpenTK.Graphics.ES20.PixelTransferParameter.MapStencil; - var _IndexShift = OpenTK.Graphics.ES20.PixelTransferParameter.IndexShift; - var _IndexOffset = OpenTK.Graphics.ES20.PixelTransferParameter.IndexOffset; - var _RedScale = OpenTK.Graphics.ES20.PixelTransferParameter.RedScale; - var _RedBias = OpenTK.Graphics.ES20.PixelTransferParameter.RedBias; - var _GreenScale = OpenTK.Graphics.ES20.PixelTransferParameter.GreenScale; - var _GreenBias = OpenTK.Graphics.ES20.PixelTransferParameter.GreenBias; - var _BlueScale = OpenTK.Graphics.ES20.PixelTransferParameter.BlueScale; - var _BlueBias = OpenTK.Graphics.ES20.PixelTransferParameter.BlueBias; - var _AlphaScale = OpenTK.Graphics.ES20.PixelTransferParameter.AlphaScale; - var _AlphaBias = OpenTK.Graphics.ES20.PixelTransferParameter.AlphaBias; - var _DepthScale = OpenTK.Graphics.ES20.PixelTransferParameter.DepthScale; - var _DepthBias = OpenTK.Graphics.ES20.PixelTransferParameter.DepthBias; - var _PostConvolutionRedScale = OpenTK.Graphics.ES20.PixelTransferParameter.PostConvolutionRedScale; - var _PostConvolutionRedScaleExt = OpenTK.Graphics.ES20.PixelTransferParameter.PostConvolutionRedScaleExt; - var _PostConvolutionGreenScale = OpenTK.Graphics.ES20.PixelTransferParameter.PostConvolutionGreenScale; - var _PostConvolutionGreenScaleExt = OpenTK.Graphics.ES20.PixelTransferParameter.PostConvolutionGreenScaleExt; - var _PostConvolutionBlueScale = OpenTK.Graphics.ES20.PixelTransferParameter.PostConvolutionBlueScale; - var _PostConvolutionBlueScaleExt = OpenTK.Graphics.ES20.PixelTransferParameter.PostConvolutionBlueScaleExt; - var _PostConvolutionAlphaScale = OpenTK.Graphics.ES20.PixelTransferParameter.PostConvolutionAlphaScale; - var _PostConvolutionAlphaScaleExt = OpenTK.Graphics.ES20.PixelTransferParameter.PostConvolutionAlphaScaleExt; - var _PostConvolutionRedBias = OpenTK.Graphics.ES20.PixelTransferParameter.PostConvolutionRedBias; - var _PostConvolutionRedBiasExt = OpenTK.Graphics.ES20.PixelTransferParameter.PostConvolutionRedBiasExt; - var _PostConvolutionGreenBias = OpenTK.Graphics.ES20.PixelTransferParameter.PostConvolutionGreenBias; - var _PostConvolutionGreenBiasExt = OpenTK.Graphics.ES20.PixelTransferParameter.PostConvolutionGreenBiasExt; - var _PostConvolutionBlueBias = OpenTK.Graphics.ES20.PixelTransferParameter.PostConvolutionBlueBias; - var _PostConvolutionBlueBiasExt = OpenTK.Graphics.ES20.PixelTransferParameter.PostConvolutionBlueBiasExt; - var _PostConvolutionAlphaBias = OpenTK.Graphics.ES20.PixelTransferParameter.PostConvolutionAlphaBias; - var _PostConvolutionAlphaBiasExt = OpenTK.Graphics.ES20.PixelTransferParameter.PostConvolutionAlphaBiasExt; - var _PostColorMatrixRedScale = OpenTK.Graphics.ES20.PixelTransferParameter.PostColorMatrixRedScale; - var _PostColorMatrixRedScaleSgi = OpenTK.Graphics.ES20.PixelTransferParameter.PostColorMatrixRedScaleSgi; - var _PostColorMatrixGreenScale = OpenTK.Graphics.ES20.PixelTransferParameter.PostColorMatrixGreenScale; - var _PostColorMatrixGreenScaleSgi = OpenTK.Graphics.ES20.PixelTransferParameter.PostColorMatrixGreenScaleSgi; - var _PostColorMatrixBlueScale = OpenTK.Graphics.ES20.PixelTransferParameter.PostColorMatrixBlueScale; - var _PostColorMatrixBlueScaleSgi = OpenTK.Graphics.ES20.PixelTransferParameter.PostColorMatrixBlueScaleSgi; - var _PostColorMatrixAlphaScale = OpenTK.Graphics.ES20.PixelTransferParameter.PostColorMatrixAlphaScale; - var _PostColorMatrixAlphaScaleSgi = OpenTK.Graphics.ES20.PixelTransferParameter.PostColorMatrixAlphaScaleSgi; - var _PostColorMatrixRedBias = OpenTK.Graphics.ES20.PixelTransferParameter.PostColorMatrixRedBias; - var _PostColorMatrixRedBiasSgi = OpenTK.Graphics.ES20.PixelTransferParameter.PostColorMatrixRedBiasSgi; - var _PostColorMatrixGreenBias = OpenTK.Graphics.ES20.PixelTransferParameter.PostColorMatrixGreenBias; - var _PostColorMatrixGreenBiasSgi = OpenTK.Graphics.ES20.PixelTransferParameter.PostColorMatrixGreenBiasSgi; - var _PostColorMatrixBlueBias = OpenTK.Graphics.ES20.PixelTransferParameter.PostColorMatrixBlueBias; - var _PostColorMatrixBlueBiasSgi = OpenTK.Graphics.ES20.PixelTransferParameter.PostColorMatrixBlueBiasSgi; - var _PostColorMatrixAlphaBias = OpenTK.Graphics.ES20.PixelTransferParameter.PostColorMatrixAlphaBias; - var _PostColorMatrixAlphaBiasSgi = OpenTK.Graphics.ES20.PixelTransferParameter.PostColorMatrixAlphaBiasSgi; -} -static void Test_PixelType_38341() { - var _Byte = OpenTK.Graphics.ES20.PixelType.Byte; - var _UnsignedByte = OpenTK.Graphics.ES20.PixelType.UnsignedByte; - var _Short = OpenTK.Graphics.ES20.PixelType.Short; - var _UnsignedShort = OpenTK.Graphics.ES20.PixelType.UnsignedShort; - var _Int = OpenTK.Graphics.ES20.PixelType.Int; - var _UnsignedInt = OpenTK.Graphics.ES20.PixelType.UnsignedInt; - var _Float = OpenTK.Graphics.ES20.PixelType.Float; - var _Bitmap = OpenTK.Graphics.ES20.PixelType.Bitmap; - var _UnsignedByte332 = OpenTK.Graphics.ES20.PixelType.UnsignedByte332; - var _UnsignedByte332Ext = OpenTK.Graphics.ES20.PixelType.UnsignedByte332Ext; - var _UnsignedShort4444 = OpenTK.Graphics.ES20.PixelType.UnsignedShort4444; - var _UnsignedShort4444Ext = OpenTK.Graphics.ES20.PixelType.UnsignedShort4444Ext; - var _UnsignedShort5551 = OpenTK.Graphics.ES20.PixelType.UnsignedShort5551; - var _UnsignedShort5551Ext = OpenTK.Graphics.ES20.PixelType.UnsignedShort5551Ext; - var _UnsignedInt8888 = OpenTK.Graphics.ES20.PixelType.UnsignedInt8888; - var _UnsignedInt8888Ext = OpenTK.Graphics.ES20.PixelType.UnsignedInt8888Ext; - var _UnsignedInt1010102 = OpenTK.Graphics.ES20.PixelType.UnsignedInt1010102; - var _UnsignedInt1010102Ext = OpenTK.Graphics.ES20.PixelType.UnsignedInt1010102Ext; - var _UnsignedShort565 = OpenTK.Graphics.ES20.PixelType.UnsignedShort565; -} -static void Test_PointParameterNameSgis_38342() { - var _PointSizeMin = OpenTK.Graphics.ES20.PointParameterNameSgis.PointSizeMin; - var _PointSizeMinArb = OpenTK.Graphics.ES20.PointParameterNameSgis.PointSizeMinArb; - var _PointSizeMinExt = OpenTK.Graphics.ES20.PointParameterNameSgis.PointSizeMinExt; - var _PointSizeMinSgis = OpenTK.Graphics.ES20.PointParameterNameSgis.PointSizeMinSgis; - var _PointSizeMax = OpenTK.Graphics.ES20.PointParameterNameSgis.PointSizeMax; - var _PointSizeMaxArb = OpenTK.Graphics.ES20.PointParameterNameSgis.PointSizeMaxArb; - var _PointSizeMaxExt = OpenTK.Graphics.ES20.PointParameterNameSgis.PointSizeMaxExt; - var _PointSizeMaxSgis = OpenTK.Graphics.ES20.PointParameterNameSgis.PointSizeMaxSgis; - var _PointFadeThresholdSize = OpenTK.Graphics.ES20.PointParameterNameSgis.PointFadeThresholdSize; - var _PointFadeThresholdSizeArb = OpenTK.Graphics.ES20.PointParameterNameSgis.PointFadeThresholdSizeArb; - var _PointFadeThresholdSizeExt = OpenTK.Graphics.ES20.PointParameterNameSgis.PointFadeThresholdSizeExt; - var _PointFadeThresholdSizeSgis = OpenTK.Graphics.ES20.PointParameterNameSgis.PointFadeThresholdSizeSgis; - var _DistanceAttenuationExt = OpenTK.Graphics.ES20.PointParameterNameSgis.DistanceAttenuationExt; - var _DistanceAttenuationSgis = OpenTK.Graphics.ES20.PointParameterNameSgis.DistanceAttenuationSgis; - var _PointDistanceAttenuation = OpenTK.Graphics.ES20.PointParameterNameSgis.PointDistanceAttenuation; - var _PointDistanceAttenuationArb = OpenTK.Graphics.ES20.PointParameterNameSgis.PointDistanceAttenuationArb; -} -static void Test_PolygonMode_38343() { - var _Point = OpenTK.Graphics.ES20.PolygonMode.Point; - var _Line = OpenTK.Graphics.ES20.PolygonMode.Line; - var _Fill = OpenTK.Graphics.ES20.PolygonMode.Fill; -} -static void Test_PrimitiveType_38344() { - var _Points = OpenTK.Graphics.ES20.PrimitiveType.Points; - var _Lines = OpenTK.Graphics.ES20.PrimitiveType.Lines; - var _LineLoop = OpenTK.Graphics.ES20.PrimitiveType.LineLoop; - var _LineStrip = OpenTK.Graphics.ES20.PrimitiveType.LineStrip; - var _Triangles = OpenTK.Graphics.ES20.PrimitiveType.Triangles; - var _TriangleStrip = OpenTK.Graphics.ES20.PrimitiveType.TriangleStrip; - var _TriangleFan = OpenTK.Graphics.ES20.PrimitiveType.TriangleFan; - var _Quads = OpenTK.Graphics.ES20.PrimitiveType.Quads; - var _QuadsExt = OpenTK.Graphics.ES20.PrimitiveType.QuadsExt; - var _QuadStrip = OpenTK.Graphics.ES20.PrimitiveType.QuadStrip; - var _Polygon = OpenTK.Graphics.ES20.PrimitiveType.Polygon; - var _LinesAdjacency = OpenTK.Graphics.ES20.PrimitiveType.LinesAdjacency; - var _LinesAdjacencyArb = OpenTK.Graphics.ES20.PrimitiveType.LinesAdjacencyArb; - var _LinesAdjacencyExt = OpenTK.Graphics.ES20.PrimitiveType.LinesAdjacencyExt; - var _LineStripAdjacency = OpenTK.Graphics.ES20.PrimitiveType.LineStripAdjacency; - var _LineStripAdjacencyArb = OpenTK.Graphics.ES20.PrimitiveType.LineStripAdjacencyArb; - var _LineStripAdjacencyExt = OpenTK.Graphics.ES20.PrimitiveType.LineStripAdjacencyExt; - var _TrianglesAdjacency = OpenTK.Graphics.ES20.PrimitiveType.TrianglesAdjacency; - var _TrianglesAdjacencyArb = OpenTK.Graphics.ES20.PrimitiveType.TrianglesAdjacencyArb; - var _TrianglesAdjacencyExt = OpenTK.Graphics.ES20.PrimitiveType.TrianglesAdjacencyExt; - var _TriangleStripAdjacency = OpenTK.Graphics.ES20.PrimitiveType.TriangleStripAdjacency; - var _TriangleStripAdjacencyArb = OpenTK.Graphics.ES20.PrimitiveType.TriangleStripAdjacencyArb; - var _TriangleStripAdjacencyExt = OpenTK.Graphics.ES20.PrimitiveType.TriangleStripAdjacencyExt; - var _Patches = OpenTK.Graphics.ES20.PrimitiveType.Patches; - var _PatchesExt = OpenTK.Graphics.ES20.PrimitiveType.PatchesExt; -} -static void Test_ProgramParameter_38345() { - var _ProgramBinaryRetrievableHint = OpenTK.Graphics.ES20.ProgramParameter.ProgramBinaryRetrievableHint; - var _DeleteStatus = OpenTK.Graphics.ES20.ProgramParameter.DeleteStatus; - var _LinkStatus = OpenTK.Graphics.ES20.ProgramParameter.LinkStatus; - var _ValidateStatus = OpenTK.Graphics.ES20.ProgramParameter.ValidateStatus; - var _InfoLogLength = OpenTK.Graphics.ES20.ProgramParameter.InfoLogLength; - var _AttachedShaders = OpenTK.Graphics.ES20.ProgramParameter.AttachedShaders; - var _ActiveUniforms = OpenTK.Graphics.ES20.ProgramParameter.ActiveUniforms; - var _ActiveUniformMaxLength = OpenTK.Graphics.ES20.ProgramParameter.ActiveUniformMaxLength; - var _ActiveAttributes = OpenTK.Graphics.ES20.ProgramParameter.ActiveAttributes; - var _ActiveAttributeMaxLength = OpenTK.Graphics.ES20.ProgramParameter.ActiveAttributeMaxLength; -} -static void Test_ProgramParameterName_38346() { - var _ProgramBinaryRetrievableHint = OpenTK.Graphics.ES20.ProgramParameterName.ProgramBinaryRetrievableHint; -} -static void Test_QcomAlphaTest_38347() { - var _AlphaTestQcom = OpenTK.Graphics.ES20.QcomAlphaTest.AlphaTestQcom; - var _AlphaTestFuncQcom = OpenTK.Graphics.ES20.QcomAlphaTest.AlphaTestFuncQcom; - var _AlphaTestRefQcom = OpenTK.Graphics.ES20.QcomAlphaTest.AlphaTestRefQcom; -} -static void Test_QcomBinningControl_38348() { - var _BinningControlHintQcom = OpenTK.Graphics.ES20.QcomBinningControl.BinningControlHintQcom; - var _CpuOptimizedQcom = OpenTK.Graphics.ES20.QcomBinningControl.CpuOptimizedQcom; - var _GpuOptimizedQcom = OpenTK.Graphics.ES20.QcomBinningControl.GpuOptimizedQcom; - var _RenderDirectToFramebufferQcom = OpenTK.Graphics.ES20.QcomBinningControl.RenderDirectToFramebufferQcom; -} -static void Test_QcomDriverControl_38349() { -} -static void Test_QcomExtendedGet_38350() { - var _TextureWidthQcom = OpenTK.Graphics.ES20.QcomExtendedGet.TextureWidthQcom; - var _TextureHeightQcom = OpenTK.Graphics.ES20.QcomExtendedGet.TextureHeightQcom; - var _TextureDepthQcom = OpenTK.Graphics.ES20.QcomExtendedGet.TextureDepthQcom; - var _TextureInternalFormatQcom = OpenTK.Graphics.ES20.QcomExtendedGet.TextureInternalFormatQcom; - var _TextureFormatQcom = OpenTK.Graphics.ES20.QcomExtendedGet.TextureFormatQcom; - var _TextureTypeQcom = OpenTK.Graphics.ES20.QcomExtendedGet.TextureTypeQcom; - var _TextureImageValidQcom = OpenTK.Graphics.ES20.QcomExtendedGet.TextureImageValidQcom; - var _TextureNumLevelsQcom = OpenTK.Graphics.ES20.QcomExtendedGet.TextureNumLevelsQcom; - var _TextureTargetQcom = OpenTK.Graphics.ES20.QcomExtendedGet.TextureTargetQcom; - var _TextureObjectValidQcom = OpenTK.Graphics.ES20.QcomExtendedGet.TextureObjectValidQcom; - var _StateRestore = OpenTK.Graphics.ES20.QcomExtendedGet.StateRestore; -} -static void Test_QcomExtendedGet2_38351() { -} -static void Test_QcomPerfmonGlobalMode_38352() { - var _PerfmonGlobalModeQcom = OpenTK.Graphics.ES20.QcomPerfmonGlobalMode.PerfmonGlobalModeQcom; -} -static void Test_QcomTiledRendering_38353() { - var _ColorBufferBit0Qcom = OpenTK.Graphics.ES20.QcomTiledRendering.ColorBufferBit0Qcom; - var _ColorBufferBit1Qcom = OpenTK.Graphics.ES20.QcomTiledRendering.ColorBufferBit1Qcom; - var _ColorBufferBit2Qcom = OpenTK.Graphics.ES20.QcomTiledRendering.ColorBufferBit2Qcom; - var _ColorBufferBit3Qcom = OpenTK.Graphics.ES20.QcomTiledRendering.ColorBufferBit3Qcom; - var _ColorBufferBit4Qcom = OpenTK.Graphics.ES20.QcomTiledRendering.ColorBufferBit4Qcom; - var _ColorBufferBit5Qcom = OpenTK.Graphics.ES20.QcomTiledRendering.ColorBufferBit5Qcom; - var _ColorBufferBit6Qcom = OpenTK.Graphics.ES20.QcomTiledRendering.ColorBufferBit6Qcom; - var _ColorBufferBit7Qcom = OpenTK.Graphics.ES20.QcomTiledRendering.ColorBufferBit7Qcom; - var _DepthBufferBit0Qcom = OpenTK.Graphics.ES20.QcomTiledRendering.DepthBufferBit0Qcom; - var _DepthBufferBit1Qcom = OpenTK.Graphics.ES20.QcomTiledRendering.DepthBufferBit1Qcom; - var _DepthBufferBit2Qcom = OpenTK.Graphics.ES20.QcomTiledRendering.DepthBufferBit2Qcom; - var _DepthBufferBit3Qcom = OpenTK.Graphics.ES20.QcomTiledRendering.DepthBufferBit3Qcom; - var _DepthBufferBit4Qcom = OpenTK.Graphics.ES20.QcomTiledRendering.DepthBufferBit4Qcom; - var _DepthBufferBit5Qcom = OpenTK.Graphics.ES20.QcomTiledRendering.DepthBufferBit5Qcom; - var _DepthBufferBit6Qcom = OpenTK.Graphics.ES20.QcomTiledRendering.DepthBufferBit6Qcom; - var _DepthBufferBit7Qcom = OpenTK.Graphics.ES20.QcomTiledRendering.DepthBufferBit7Qcom; - var _StencilBufferBit0Qcom = OpenTK.Graphics.ES20.QcomTiledRendering.StencilBufferBit0Qcom; - var _StencilBufferBit1Qcom = OpenTK.Graphics.ES20.QcomTiledRendering.StencilBufferBit1Qcom; - var _StencilBufferBit2Qcom = OpenTK.Graphics.ES20.QcomTiledRendering.StencilBufferBit2Qcom; - var _StencilBufferBit3Qcom = OpenTK.Graphics.ES20.QcomTiledRendering.StencilBufferBit3Qcom; - var _StencilBufferBit4Qcom = OpenTK.Graphics.ES20.QcomTiledRendering.StencilBufferBit4Qcom; - var _StencilBufferBit5Qcom = OpenTK.Graphics.ES20.QcomTiledRendering.StencilBufferBit5Qcom; - var _StencilBufferBit6Qcom = OpenTK.Graphics.ES20.QcomTiledRendering.StencilBufferBit6Qcom; - var _StencilBufferBit7Qcom = OpenTK.Graphics.ES20.QcomTiledRendering.StencilBufferBit7Qcom; - var _MultisampleBufferBit0Qcom = OpenTK.Graphics.ES20.QcomTiledRendering.MultisampleBufferBit0Qcom; - var _MultisampleBufferBit1Qcom = OpenTK.Graphics.ES20.QcomTiledRendering.MultisampleBufferBit1Qcom; - var _MultisampleBufferBit2Qcom = OpenTK.Graphics.ES20.QcomTiledRendering.MultisampleBufferBit2Qcom; - var _MultisampleBufferBit3Qcom = OpenTK.Graphics.ES20.QcomTiledRendering.MultisampleBufferBit3Qcom; - var _MultisampleBufferBit4Qcom = OpenTK.Graphics.ES20.QcomTiledRendering.MultisampleBufferBit4Qcom; - var _MultisampleBufferBit5Qcom = OpenTK.Graphics.ES20.QcomTiledRendering.MultisampleBufferBit5Qcom; - var _MultisampleBufferBit6Qcom = OpenTK.Graphics.ES20.QcomTiledRendering.MultisampleBufferBit6Qcom; - var _MultisampleBufferBit7Qcom = OpenTK.Graphics.ES20.QcomTiledRendering.MultisampleBufferBit7Qcom; -} -static void Test_QcomWriteonlyRendering_38354() { - var _WriteonlyRenderingQcom = OpenTK.Graphics.ES20.QcomWriteonlyRendering.WriteonlyRenderingQcom; -} -static void Test_QueryCounterTarget_38355() { - var _TimestampExt = OpenTK.Graphics.ES20.QueryCounterTarget.TimestampExt; -} -static void Test_QueryTarget_38356() { - var _TimeElapsedExt = OpenTK.Graphics.ES20.QueryTarget.TimeElapsedExt; - var _AnySamplesPassedExt = OpenTK.Graphics.ES20.QueryTarget.AnySamplesPassedExt; - var _AnySamplesPassedConservativeExt = OpenTK.Graphics.ES20.QueryTarget.AnySamplesPassedConservativeExt; -} -static void Test_ReadBufferMode_38357() { - var _FrontLeft = OpenTK.Graphics.ES20.ReadBufferMode.FrontLeft; - var _FrontRight = OpenTK.Graphics.ES20.ReadBufferMode.FrontRight; - var _BackLeft = OpenTK.Graphics.ES20.ReadBufferMode.BackLeft; - var _BackRight = OpenTK.Graphics.ES20.ReadBufferMode.BackRight; - var _Front = OpenTK.Graphics.ES20.ReadBufferMode.Front; - var _Back = OpenTK.Graphics.ES20.ReadBufferMode.Back; - var _Left = OpenTK.Graphics.ES20.ReadBufferMode.Left; - var _Right = OpenTK.Graphics.ES20.ReadBufferMode.Right; - var _Aux0 = OpenTK.Graphics.ES20.ReadBufferMode.Aux0; - var _Aux1 = OpenTK.Graphics.ES20.ReadBufferMode.Aux1; - var _Aux2 = OpenTK.Graphics.ES20.ReadBufferMode.Aux2; - var _Aux3 = OpenTK.Graphics.ES20.ReadBufferMode.Aux3; -} -static void Test_RenderbufferInternalFormat_38358() { - var _Rgba4 = OpenTK.Graphics.ES20.RenderbufferInternalFormat.Rgba4; - var _Rgb5A1 = OpenTK.Graphics.ES20.RenderbufferInternalFormat.Rgb5A1; - var _DepthComponent16 = OpenTK.Graphics.ES20.RenderbufferInternalFormat.DepthComponent16; - var _StencilIndex8 = OpenTK.Graphics.ES20.RenderbufferInternalFormat.StencilIndex8; - var _Rgb565 = OpenTK.Graphics.ES20.RenderbufferInternalFormat.Rgb565; -} -static void Test_RenderbufferParameterName_38359() { - var _RenderbufferWidth = OpenTK.Graphics.ES20.RenderbufferParameterName.RenderbufferWidth; - var _RenderbufferHeight = OpenTK.Graphics.ES20.RenderbufferParameterName.RenderbufferHeight; - var _RenderbufferInternalFormat = OpenTK.Graphics.ES20.RenderbufferParameterName.RenderbufferInternalFormat; - var _RenderbufferRedSize = OpenTK.Graphics.ES20.RenderbufferParameterName.RenderbufferRedSize; - var _RenderbufferGreenSize = OpenTK.Graphics.ES20.RenderbufferParameterName.RenderbufferGreenSize; - var _RenderbufferBlueSize = OpenTK.Graphics.ES20.RenderbufferParameterName.RenderbufferBlueSize; - var _RenderbufferAlphaSize = OpenTK.Graphics.ES20.RenderbufferParameterName.RenderbufferAlphaSize; - var _RenderbufferDepthSize = OpenTK.Graphics.ES20.RenderbufferParameterName.RenderbufferDepthSize; - var _RenderbufferStencilSize = OpenTK.Graphics.ES20.RenderbufferParameterName.RenderbufferStencilSize; -} -static void Test_RenderbufferTarget_38360() { - var _Renderbuffer = OpenTK.Graphics.ES20.RenderbufferTarget.Renderbuffer; -} -static void Test_RenderingMode_38361() { - var _Render = OpenTK.Graphics.ES20.RenderingMode.Render; - var _Feedback = OpenTK.Graphics.ES20.RenderingMode.Feedback; - var _Select = OpenTK.Graphics.ES20.RenderingMode.Select; -} -static void Test_SamplePatternSgis_38362() { - var _Gl1PassExt = OpenTK.Graphics.ES20.SamplePatternSgis.Gl1PassExt; - var _Gl1PassSgis = OpenTK.Graphics.ES20.SamplePatternSgis.Gl1PassSgis; - var _Gl2Pass0Ext = OpenTK.Graphics.ES20.SamplePatternSgis.Gl2Pass0Ext; - var _Gl2Pass0Sgis = OpenTK.Graphics.ES20.SamplePatternSgis.Gl2Pass0Sgis; - var _Gl2Pass1Ext = OpenTK.Graphics.ES20.SamplePatternSgis.Gl2Pass1Ext; - var _Gl2Pass1Sgis = OpenTK.Graphics.ES20.SamplePatternSgis.Gl2Pass1Sgis; - var _Gl4Pass0Ext = OpenTK.Graphics.ES20.SamplePatternSgis.Gl4Pass0Ext; - var _Gl4Pass0Sgis = OpenTK.Graphics.ES20.SamplePatternSgis.Gl4Pass0Sgis; - var _Gl4Pass1Ext = OpenTK.Graphics.ES20.SamplePatternSgis.Gl4Pass1Ext; - var _Gl4Pass1Sgis = OpenTK.Graphics.ES20.SamplePatternSgis.Gl4Pass1Sgis; - var _Gl4Pass2Ext = OpenTK.Graphics.ES20.SamplePatternSgis.Gl4Pass2Ext; - var _Gl4Pass2Sgis = OpenTK.Graphics.ES20.SamplePatternSgis.Gl4Pass2Sgis; - var _Gl4Pass3Ext = OpenTK.Graphics.ES20.SamplePatternSgis.Gl4Pass3Ext; - var _Gl4Pass3Sgis = OpenTK.Graphics.ES20.SamplePatternSgis.Gl4Pass3Sgis; -} -static void Test_SeparableTargetExt_38363() { - var _Separable2D = OpenTK.Graphics.ES20.SeparableTargetExt.Separable2D; - var _Separable2DExt = OpenTK.Graphics.ES20.SeparableTargetExt.Separable2DExt; -} -static void Test_ShaderBinaryFormat_38364() { -} -static void Test_ShaderParameter_38365() { - var _ShaderType = OpenTK.Graphics.ES20.ShaderParameter.ShaderType; - var _DeleteStatus = OpenTK.Graphics.ES20.ShaderParameter.DeleteStatus; - var _CompileStatus = OpenTK.Graphics.ES20.ShaderParameter.CompileStatus; - var _InfoLogLength = OpenTK.Graphics.ES20.ShaderParameter.InfoLogLength; - var _ShaderSourceLength = OpenTK.Graphics.ES20.ShaderParameter.ShaderSourceLength; -} -static void Test_ShaderPrecision_38366() { - var _LowFloat = OpenTK.Graphics.ES20.ShaderPrecision.LowFloat; - var _MediumFloat = OpenTK.Graphics.ES20.ShaderPrecision.MediumFloat; - var _HighFloat = OpenTK.Graphics.ES20.ShaderPrecision.HighFloat; - var _LowInt = OpenTK.Graphics.ES20.ShaderPrecision.LowInt; - var _MediumInt = OpenTK.Graphics.ES20.ShaderPrecision.MediumInt; - var _HighInt = OpenTK.Graphics.ES20.ShaderPrecision.HighInt; -} -static void Test_ShaderType_38367() { - var _FragmentShader = OpenTK.Graphics.ES20.ShaderType.FragmentShader; - var _VertexShader = OpenTK.Graphics.ES20.ShaderType.VertexShader; -} -static void Test_ShadingModel_38368() { - var _Flat = OpenTK.Graphics.ES20.ShadingModel.Flat; - var _Smooth = OpenTK.Graphics.ES20.ShadingModel.Smooth; -} -static void Test_SizedInternalFormat_38369() { - var _Alpha8Ext = OpenTK.Graphics.ES20.SizedInternalFormat.Alpha8Ext; - var _Luminance8Ext = OpenTK.Graphics.ES20.SizedInternalFormat.Luminance8Ext; - var _Luminance8Alpha8Ext = OpenTK.Graphics.ES20.SizedInternalFormat.Luminance8Alpha8Ext; - var _Rgb10Ext = OpenTK.Graphics.ES20.SizedInternalFormat.Rgb10Ext; - var _Rgb10A2Ext = OpenTK.Graphics.ES20.SizedInternalFormat.Rgb10A2Ext; - var _R8Ext = OpenTK.Graphics.ES20.SizedInternalFormat.R8Ext; - var _Rg8Ext = OpenTK.Graphics.ES20.SizedInternalFormat.Rg8Ext; - var _R16fExt = OpenTK.Graphics.ES20.SizedInternalFormat.R16fExt; - var _R32fExt = OpenTK.Graphics.ES20.SizedInternalFormat.R32fExt; - var _Rg16fExt = OpenTK.Graphics.ES20.SizedInternalFormat.Rg16fExt; - var _Rg32fExt = OpenTK.Graphics.ES20.SizedInternalFormat.Rg32fExt; - var _Rgba32fExt = OpenTK.Graphics.ES20.SizedInternalFormat.Rgba32fExt; - var _Rgb32fExt = OpenTK.Graphics.ES20.SizedInternalFormat.Rgb32fExt; - var _Alpha32fExt = OpenTK.Graphics.ES20.SizedInternalFormat.Alpha32fExt; - var _Luminance32fExt = OpenTK.Graphics.ES20.SizedInternalFormat.Luminance32fExt; - var _LuminanceAlpha32fExt = OpenTK.Graphics.ES20.SizedInternalFormat.LuminanceAlpha32fExt; - var _Rgba16fExt = OpenTK.Graphics.ES20.SizedInternalFormat.Rgba16fExt; - var _Rgb16fExt = OpenTK.Graphics.ES20.SizedInternalFormat.Rgb16fExt; - var _Alpha16fExt = OpenTK.Graphics.ES20.SizedInternalFormat.Alpha16fExt; - var _Luminance16fExt = OpenTK.Graphics.ES20.SizedInternalFormat.Luminance16fExt; - var _LuminanceAlpha16fExt = OpenTK.Graphics.ES20.SizedInternalFormat.LuminanceAlpha16fExt; - var _RgbRaw422Apple = OpenTK.Graphics.ES20.SizedInternalFormat.RgbRaw422Apple; - var _Bgra8Ext = OpenTK.Graphics.ES20.SizedInternalFormat.Bgra8Ext; -} -static void Test_StencilFace_38370() { - var _Front = OpenTK.Graphics.ES20.StencilFace.Front; - var _Back = OpenTK.Graphics.ES20.StencilFace.Back; - var _FrontAndBack = OpenTK.Graphics.ES20.StencilFace.FrontAndBack; -} -static void Test_StencilFunction_38371() { - var _Never = OpenTK.Graphics.ES20.StencilFunction.Never; - var _Less = OpenTK.Graphics.ES20.StencilFunction.Less; - var _Equal = OpenTK.Graphics.ES20.StencilFunction.Equal; - var _Lequal = OpenTK.Graphics.ES20.StencilFunction.Lequal; - var _Greater = OpenTK.Graphics.ES20.StencilFunction.Greater; - var _Notequal = OpenTK.Graphics.ES20.StencilFunction.Notequal; - var _Gequal = OpenTK.Graphics.ES20.StencilFunction.Gequal; - var _Always = OpenTK.Graphics.ES20.StencilFunction.Always; -} -static void Test_StencilOp_38372() { - var _Zero = OpenTK.Graphics.ES20.StencilOp.Zero; - var _Invert = OpenTK.Graphics.ES20.StencilOp.Invert; - var _Keep = OpenTK.Graphics.ES20.StencilOp.Keep; - var _Replace = OpenTK.Graphics.ES20.StencilOp.Replace; - var _Incr = OpenTK.Graphics.ES20.StencilOp.Incr; - var _Decr = OpenTK.Graphics.ES20.StencilOp.Decr; - var _IncrWrap = OpenTK.Graphics.ES20.StencilOp.IncrWrap; - var _DecrWrap = OpenTK.Graphics.ES20.StencilOp.DecrWrap; -} -static void Test_StringName_38373() { - var _Vendor = OpenTK.Graphics.ES20.StringName.Vendor; - var _Renderer = OpenTK.Graphics.ES20.StringName.Renderer; - var _Version = OpenTK.Graphics.ES20.StringName.Version; - var _Extensions = OpenTK.Graphics.ES20.StringName.Extensions; - var _ShadingLanguageVersion = OpenTK.Graphics.ES20.StringName.ShadingLanguageVersion; -} -static void Test_SyncCondition_38374() { - var _SyncGpuCommandsCompleteApple = OpenTK.Graphics.ES20.SyncCondition.SyncGpuCommandsCompleteApple; -} -static void Test_SyncParameterName_38375() { - var _ObjectTypeApple = OpenTK.Graphics.ES20.SyncParameterName.ObjectTypeApple; - var _SyncConditionApple = OpenTK.Graphics.ES20.SyncParameterName.SyncConditionApple; - var _SyncStatusApple = OpenTK.Graphics.ES20.SyncParameterName.SyncStatusApple; - var _SyncFlagsApple = OpenTK.Graphics.ES20.SyncParameterName.SyncFlagsApple; -} -static void Test_TexCoordPointerType_38376() { - var _Short = OpenTK.Graphics.ES20.TexCoordPointerType.Short; - var _Int = OpenTK.Graphics.ES20.TexCoordPointerType.Int; - var _Float = OpenTK.Graphics.ES20.TexCoordPointerType.Float; - var _Double = OpenTK.Graphics.ES20.TexCoordPointerType.Double; -} -static void Test_TextureComponentCount_38377() { - var _Alpha = OpenTK.Graphics.ES20.TextureComponentCount.Alpha; - var _Rgb = OpenTK.Graphics.ES20.TextureComponentCount.Rgb; - var _Rgba = OpenTK.Graphics.ES20.TextureComponentCount.Rgba; - var _Luminance = OpenTK.Graphics.ES20.TextureComponentCount.Luminance; - var _LuminanceAlpha = OpenTK.Graphics.ES20.TextureComponentCount.LuminanceAlpha; - var _Alpha8Ext = OpenTK.Graphics.ES20.TextureComponentCount.Alpha8Ext; - var _Luminance8Ext = OpenTK.Graphics.ES20.TextureComponentCount.Luminance8Ext; - var _Luminance8Alpha8Ext = OpenTK.Graphics.ES20.TextureComponentCount.Luminance8Alpha8Ext; - var _Rgb10Ext = OpenTK.Graphics.ES20.TextureComponentCount.Rgb10Ext; - var _Rgb10A2Ext = OpenTK.Graphics.ES20.TextureComponentCount.Rgb10A2Ext; - var _R8Ext = OpenTK.Graphics.ES20.TextureComponentCount.R8Ext; - var _Rg8Ext = OpenTK.Graphics.ES20.TextureComponentCount.Rg8Ext; - var _R16fExt = OpenTK.Graphics.ES20.TextureComponentCount.R16fExt; - var _R32fExt = OpenTK.Graphics.ES20.TextureComponentCount.R32fExt; - var _Rg16fExt = OpenTK.Graphics.ES20.TextureComponentCount.Rg16fExt; - var _Rg32fExt = OpenTK.Graphics.ES20.TextureComponentCount.Rg32fExt; - var _Rgba32fExt = OpenTK.Graphics.ES20.TextureComponentCount.Rgba32fExt; - var _Rgb32fExt = OpenTK.Graphics.ES20.TextureComponentCount.Rgb32fExt; - var _Alpha32fExt = OpenTK.Graphics.ES20.TextureComponentCount.Alpha32fExt; - var _Luminance32fExt = OpenTK.Graphics.ES20.TextureComponentCount.Luminance32fExt; - var _LuminanceAlpha32fExt = OpenTK.Graphics.ES20.TextureComponentCount.LuminanceAlpha32fExt; - var _Rgba16fExt = OpenTK.Graphics.ES20.TextureComponentCount.Rgba16fExt; - var _Rgb16fExt = OpenTK.Graphics.ES20.TextureComponentCount.Rgb16fExt; - var _Alpha16fExt = OpenTK.Graphics.ES20.TextureComponentCount.Alpha16fExt; - var _Luminance16fExt = OpenTK.Graphics.ES20.TextureComponentCount.Luminance16fExt; - var _LuminanceAlpha16fExt = OpenTK.Graphics.ES20.TextureComponentCount.LuminanceAlpha16fExt; - var _RgbRaw422Apple = OpenTK.Graphics.ES20.TextureComponentCount.RgbRaw422Apple; - var _Bgra8Ext = OpenTK.Graphics.ES20.TextureComponentCount.Bgra8Ext; -} -static void Test_TextureCoordName_38378() { - var _S = OpenTK.Graphics.ES20.TextureCoordName.S; - var _T = OpenTK.Graphics.ES20.TextureCoordName.T; - var _R = OpenTK.Graphics.ES20.TextureCoordName.R; - var _Q = OpenTK.Graphics.ES20.TextureCoordName.Q; -} -static void Test_TextureCopyComponentCount_38379() { - var _Alpha = OpenTK.Graphics.ES20.TextureCopyComponentCount.Alpha; - var _Rgb = OpenTK.Graphics.ES20.TextureCopyComponentCount.Rgb; - var _Rgba = OpenTK.Graphics.ES20.TextureCopyComponentCount.Rgba; - var _Luminance = OpenTK.Graphics.ES20.TextureCopyComponentCount.Luminance; - var _LuminanceAlpha = OpenTK.Graphics.ES20.TextureCopyComponentCount.LuminanceAlpha; -} -static void Test_TextureEnvMode_38380() { - var _Add = OpenTK.Graphics.ES20.TextureEnvMode.Add; - var _Blend = OpenTK.Graphics.ES20.TextureEnvMode.Blend; - var _Modulate = OpenTK.Graphics.ES20.TextureEnvMode.Modulate; - var _Decal = OpenTK.Graphics.ES20.TextureEnvMode.Decal; - var _ReplaceExt = OpenTK.Graphics.ES20.TextureEnvMode.ReplaceExt; - var _TextureEnvBiasSgix = OpenTK.Graphics.ES20.TextureEnvMode.TextureEnvBiasSgix; -} -static void Test_TextureEnvParameter_38381() { - var _TextureEnvMode = OpenTK.Graphics.ES20.TextureEnvParameter.TextureEnvMode; - var _TextureEnvColor = OpenTK.Graphics.ES20.TextureEnvParameter.TextureEnvColor; -} -static void Test_TextureEnvTarget_38382() { - var _TextureEnv = OpenTK.Graphics.ES20.TextureEnvTarget.TextureEnv; -} -static void Test_TextureFilterFuncSgis_38383() { - var _Filter4Sgis = OpenTK.Graphics.ES20.TextureFilterFuncSgis.Filter4Sgis; -} -static void Test_TextureGenMode_38384() { - var _EyeLinear = OpenTK.Graphics.ES20.TextureGenMode.EyeLinear; - var _ObjectLinear = OpenTK.Graphics.ES20.TextureGenMode.ObjectLinear; - var _SphereMap = OpenTK.Graphics.ES20.TextureGenMode.SphereMap; - var _EyeDistanceToPointSgis = OpenTK.Graphics.ES20.TextureGenMode.EyeDistanceToPointSgis; - var _ObjectDistanceToPointSgis = OpenTK.Graphics.ES20.TextureGenMode.ObjectDistanceToPointSgis; - var _EyeDistanceToLineSgis = OpenTK.Graphics.ES20.TextureGenMode.EyeDistanceToLineSgis; - var _ObjectDistanceToLineSgis = OpenTK.Graphics.ES20.TextureGenMode.ObjectDistanceToLineSgis; -} -static void Test_TextureGenParameter_38385() { - var _TextureGenMode = OpenTK.Graphics.ES20.TextureGenParameter.TextureGenMode; - var _ObjectPlane = OpenTK.Graphics.ES20.TextureGenParameter.ObjectPlane; - var _EyePlane = OpenTK.Graphics.ES20.TextureGenParameter.EyePlane; - var _EyePointSgis = OpenTK.Graphics.ES20.TextureGenParameter.EyePointSgis; - var _ObjectPointSgis = OpenTK.Graphics.ES20.TextureGenParameter.ObjectPointSgis; - var _EyeLineSgis = OpenTK.Graphics.ES20.TextureGenParameter.EyeLineSgis; - var _ObjectLineSgis = OpenTK.Graphics.ES20.TextureGenParameter.ObjectLineSgis; -} -static void Test_TextureMagFilter_38386() { - var _Nearest = OpenTK.Graphics.ES20.TextureMagFilter.Nearest; - var _Linear = OpenTK.Graphics.ES20.TextureMagFilter.Linear; - var _LinearDetailSgis = OpenTK.Graphics.ES20.TextureMagFilter.LinearDetailSgis; - var _LinearDetailAlphaSgis = OpenTK.Graphics.ES20.TextureMagFilter.LinearDetailAlphaSgis; - var _LinearDetailColorSgis = OpenTK.Graphics.ES20.TextureMagFilter.LinearDetailColorSgis; - var _LinearSharpenSgis = OpenTK.Graphics.ES20.TextureMagFilter.LinearSharpenSgis; - var _LinearSharpenAlphaSgis = OpenTK.Graphics.ES20.TextureMagFilter.LinearSharpenAlphaSgis; - var _LinearSharpenColorSgis = OpenTK.Graphics.ES20.TextureMagFilter.LinearSharpenColorSgis; - var _Filter4Sgis = OpenTK.Graphics.ES20.TextureMagFilter.Filter4Sgis; - var _PixelTexGenQCeilingSgix = OpenTK.Graphics.ES20.TextureMagFilter.PixelTexGenQCeilingSgix; - var _PixelTexGenQRoundSgix = OpenTK.Graphics.ES20.TextureMagFilter.PixelTexGenQRoundSgix; - var _PixelTexGenQFloorSgix = OpenTK.Graphics.ES20.TextureMagFilter.PixelTexGenQFloorSgix; -} -static void Test_TextureMinFilter_38387() { - var _Nearest = OpenTK.Graphics.ES20.TextureMinFilter.Nearest; - var _Linear = OpenTK.Graphics.ES20.TextureMinFilter.Linear; - var _NearestMipmapNearest = OpenTK.Graphics.ES20.TextureMinFilter.NearestMipmapNearest; - var _LinearMipmapNearest = OpenTK.Graphics.ES20.TextureMinFilter.LinearMipmapNearest; - var _NearestMipmapLinear = OpenTK.Graphics.ES20.TextureMinFilter.NearestMipmapLinear; - var _LinearMipmapLinear = OpenTK.Graphics.ES20.TextureMinFilter.LinearMipmapLinear; - var _Filter4Sgis = OpenTK.Graphics.ES20.TextureMinFilter.Filter4Sgis; - var _LinearClipmapLinearSgix = OpenTK.Graphics.ES20.TextureMinFilter.LinearClipmapLinearSgix; - var _PixelTexGenQCeilingSgix = OpenTK.Graphics.ES20.TextureMinFilter.PixelTexGenQCeilingSgix; - var _PixelTexGenQRoundSgix = OpenTK.Graphics.ES20.TextureMinFilter.PixelTexGenQRoundSgix; - var _PixelTexGenQFloorSgix = OpenTK.Graphics.ES20.TextureMinFilter.PixelTexGenQFloorSgix; - var _NearestClipmapNearestSgix = OpenTK.Graphics.ES20.TextureMinFilter.NearestClipmapNearestSgix; - var _NearestClipmapLinearSgix = OpenTK.Graphics.ES20.TextureMinFilter.NearestClipmapLinearSgix; - var _LinearClipmapNearestSgix = OpenTK.Graphics.ES20.TextureMinFilter.LinearClipmapNearestSgix; -} -static void Test_TextureParameterName_38388() { - var _TextureBorderColor = OpenTK.Graphics.ES20.TextureParameterName.TextureBorderColor; - var _TextureMagFilter = OpenTK.Graphics.ES20.TextureParameterName.TextureMagFilter; - var _TextureMinFilter = OpenTK.Graphics.ES20.TextureParameterName.TextureMinFilter; - var _TextureWrapS = OpenTK.Graphics.ES20.TextureParameterName.TextureWrapS; - var _TextureWrapT = OpenTK.Graphics.ES20.TextureParameterName.TextureWrapT; - var _TexturePriority = OpenTK.Graphics.ES20.TextureParameterName.TexturePriority; - var _TexturePriorityExt = OpenTK.Graphics.ES20.TextureParameterName.TexturePriorityExt; - var _TextureWrapR = OpenTK.Graphics.ES20.TextureParameterName.TextureWrapR; - var _TextureWrapRExt = OpenTK.Graphics.ES20.TextureParameterName.TextureWrapRExt; - var _TextureWrapROes = OpenTK.Graphics.ES20.TextureParameterName.TextureWrapROes; - var _DetailTextureLevelSgis = OpenTK.Graphics.ES20.TextureParameterName.DetailTextureLevelSgis; - var _DetailTextureModeSgis = OpenTK.Graphics.ES20.TextureParameterName.DetailTextureModeSgis; - var _ShadowAmbientSgix = OpenTK.Graphics.ES20.TextureParameterName.ShadowAmbientSgix; - var _DualTextureSelectSgis = OpenTK.Graphics.ES20.TextureParameterName.DualTextureSelectSgis; - var _QuadTextureSelectSgis = OpenTK.Graphics.ES20.TextureParameterName.QuadTextureSelectSgis; - var _TextureWrapQSgis = OpenTK.Graphics.ES20.TextureParameterName.TextureWrapQSgis; - var _TextureClipmapCenterSgix = OpenTK.Graphics.ES20.TextureParameterName.TextureClipmapCenterSgix; - var _TextureClipmapFrameSgix = OpenTK.Graphics.ES20.TextureParameterName.TextureClipmapFrameSgix; - var _TextureClipmapOffsetSgix = OpenTK.Graphics.ES20.TextureParameterName.TextureClipmapOffsetSgix; - var _TextureClipmapVirtualDepthSgix = OpenTK.Graphics.ES20.TextureParameterName.TextureClipmapVirtualDepthSgix; - var _TextureClipmapLodOffsetSgix = OpenTK.Graphics.ES20.TextureParameterName.TextureClipmapLodOffsetSgix; - var _TextureClipmapDepthSgix = OpenTK.Graphics.ES20.TextureParameterName.TextureClipmapDepthSgix; - var _PostTextureFilterBiasSgix = OpenTK.Graphics.ES20.TextureParameterName.PostTextureFilterBiasSgix; - var _PostTextureFilterScaleSgix = OpenTK.Graphics.ES20.TextureParameterName.PostTextureFilterScaleSgix; - var _TextureLodBiasSSgix = OpenTK.Graphics.ES20.TextureParameterName.TextureLodBiasSSgix; - var _TextureLodBiasTSgix = OpenTK.Graphics.ES20.TextureParameterName.TextureLodBiasTSgix; - var _TextureLodBiasRSgix = OpenTK.Graphics.ES20.TextureParameterName.TextureLodBiasRSgix; - var _GenerateMipmap = OpenTK.Graphics.ES20.TextureParameterName.GenerateMipmap; - var _GenerateMipmapSgis = OpenTK.Graphics.ES20.TextureParameterName.GenerateMipmapSgis; - var _TextureCompareSgix = OpenTK.Graphics.ES20.TextureParameterName.TextureCompareSgix; - var _TextureMaxClampSSgix = OpenTK.Graphics.ES20.TextureParameterName.TextureMaxClampSSgix; - var _TextureMaxClampTSgix = OpenTK.Graphics.ES20.TextureParameterName.TextureMaxClampTSgix; - var _TextureMaxClampRSgix = OpenTK.Graphics.ES20.TextureParameterName.TextureMaxClampRSgix; -} -static void Test_TextureTarget_38389() { - var _Texture1D = OpenTK.Graphics.ES20.TextureTarget.Texture1D; - var _Texture2D = OpenTK.Graphics.ES20.TextureTarget.Texture2D; - var _ProxyTexture1D = OpenTK.Graphics.ES20.TextureTarget.ProxyTexture1D; - var _ProxyTexture1DExt = OpenTK.Graphics.ES20.TextureTarget.ProxyTexture1DExt; - var _ProxyTexture2D = OpenTK.Graphics.ES20.TextureTarget.ProxyTexture2D; - var _ProxyTexture2DExt = OpenTK.Graphics.ES20.TextureTarget.ProxyTexture2DExt; - var _Texture3D = OpenTK.Graphics.ES20.TextureTarget.Texture3D; - var _Texture3DExt = OpenTK.Graphics.ES20.TextureTarget.Texture3DExt; - var _Texture3DOes = OpenTK.Graphics.ES20.TextureTarget.Texture3DOes; - var _ProxyTexture3D = OpenTK.Graphics.ES20.TextureTarget.ProxyTexture3D; - var _ProxyTexture3DExt = OpenTK.Graphics.ES20.TextureTarget.ProxyTexture3DExt; - var _DetailTexture2DSgis = OpenTK.Graphics.ES20.TextureTarget.DetailTexture2DSgis; - var _Texture4DSgis = OpenTK.Graphics.ES20.TextureTarget.Texture4DSgis; - var _ProxyTexture4DSgis = OpenTK.Graphics.ES20.TextureTarget.ProxyTexture4DSgis; - var _TextureMinLod = OpenTK.Graphics.ES20.TextureTarget.TextureMinLod; - var _TextureMinLodSgis = OpenTK.Graphics.ES20.TextureTarget.TextureMinLodSgis; - var _TextureMaxLod = OpenTK.Graphics.ES20.TextureTarget.TextureMaxLod; - var _TextureMaxLodSgis = OpenTK.Graphics.ES20.TextureTarget.TextureMaxLodSgis; - var _TextureBaseLevel = OpenTK.Graphics.ES20.TextureTarget.TextureBaseLevel; - var _TextureBaseLevelSgis = OpenTK.Graphics.ES20.TextureTarget.TextureBaseLevelSgis; - var _TextureMaxLevel = OpenTK.Graphics.ES20.TextureTarget.TextureMaxLevel; - var _TextureMaxLevelSgis = OpenTK.Graphics.ES20.TextureTarget.TextureMaxLevelSgis; - var _TextureCubeMap = OpenTK.Graphics.ES20.TextureTarget.TextureCubeMap; - var _TextureCubeMapPositiveX = OpenTK.Graphics.ES20.TextureTarget.TextureCubeMapPositiveX; - var _TextureCubeMapNegativeX = OpenTK.Graphics.ES20.TextureTarget.TextureCubeMapNegativeX; - var _TextureCubeMapPositiveY = OpenTK.Graphics.ES20.TextureTarget.TextureCubeMapPositiveY; - var _TextureCubeMapNegativeY = OpenTK.Graphics.ES20.TextureTarget.TextureCubeMapNegativeY; - var _TextureCubeMapPositiveZ = OpenTK.Graphics.ES20.TextureTarget.TextureCubeMapPositiveZ; - var _TextureCubeMapNegativeZ = OpenTK.Graphics.ES20.TextureTarget.TextureCubeMapNegativeZ; -} -static void Test_TextureTarget2d_38390() { - var _Texture2D = OpenTK.Graphics.ES20.TextureTarget2d.Texture2D; - var _TextureCubeMapPositiveX = OpenTK.Graphics.ES20.TextureTarget2d.TextureCubeMapPositiveX; - var _TextureCubeMapNegativeX = OpenTK.Graphics.ES20.TextureTarget2d.TextureCubeMapNegativeX; - var _TextureCubeMapPositiveY = OpenTK.Graphics.ES20.TextureTarget2d.TextureCubeMapPositiveY; - var _TextureCubeMapNegativeY = OpenTK.Graphics.ES20.TextureTarget2d.TextureCubeMapNegativeY; - var _TextureCubeMapPositiveZ = OpenTK.Graphics.ES20.TextureTarget2d.TextureCubeMapPositiveZ; - var _TextureCubeMapNegativeZ = OpenTK.Graphics.ES20.TextureTarget2d.TextureCubeMapNegativeZ; -} -static void Test_TextureTarget3d_38391() { - var _Texture3DOes = OpenTK.Graphics.ES20.TextureTarget3d.Texture3DOes; -} -static void Test_TextureUnit_38392() { - var _Texture0 = OpenTK.Graphics.ES20.TextureUnit.Texture0; - var _Texture1 = OpenTK.Graphics.ES20.TextureUnit.Texture1; - var _Texture2 = OpenTK.Graphics.ES20.TextureUnit.Texture2; - var _Texture3 = OpenTK.Graphics.ES20.TextureUnit.Texture3; - var _Texture4 = OpenTK.Graphics.ES20.TextureUnit.Texture4; - var _Texture5 = OpenTK.Graphics.ES20.TextureUnit.Texture5; - var _Texture6 = OpenTK.Graphics.ES20.TextureUnit.Texture6; - var _Texture7 = OpenTK.Graphics.ES20.TextureUnit.Texture7; - var _Texture8 = OpenTK.Graphics.ES20.TextureUnit.Texture8; - var _Texture9 = OpenTK.Graphics.ES20.TextureUnit.Texture9; - var _Texture10 = OpenTK.Graphics.ES20.TextureUnit.Texture10; - var _Texture11 = OpenTK.Graphics.ES20.TextureUnit.Texture11; - var _Texture12 = OpenTK.Graphics.ES20.TextureUnit.Texture12; - var _Texture13 = OpenTK.Graphics.ES20.TextureUnit.Texture13; - var _Texture14 = OpenTK.Graphics.ES20.TextureUnit.Texture14; - var _Texture15 = OpenTK.Graphics.ES20.TextureUnit.Texture15; - var _Texture16 = OpenTK.Graphics.ES20.TextureUnit.Texture16; - var _Texture17 = OpenTK.Graphics.ES20.TextureUnit.Texture17; - var _Texture18 = OpenTK.Graphics.ES20.TextureUnit.Texture18; - var _Texture19 = OpenTK.Graphics.ES20.TextureUnit.Texture19; - var _Texture20 = OpenTK.Graphics.ES20.TextureUnit.Texture20; - var _Texture21 = OpenTK.Graphics.ES20.TextureUnit.Texture21; - var _Texture22 = OpenTK.Graphics.ES20.TextureUnit.Texture22; - var _Texture23 = OpenTK.Graphics.ES20.TextureUnit.Texture23; - var _Texture24 = OpenTK.Graphics.ES20.TextureUnit.Texture24; - var _Texture25 = OpenTK.Graphics.ES20.TextureUnit.Texture25; - var _Texture26 = OpenTK.Graphics.ES20.TextureUnit.Texture26; - var _Texture27 = OpenTK.Graphics.ES20.TextureUnit.Texture27; - var _Texture28 = OpenTK.Graphics.ES20.TextureUnit.Texture28; - var _Texture29 = OpenTK.Graphics.ES20.TextureUnit.Texture29; - var _Texture30 = OpenTK.Graphics.ES20.TextureUnit.Texture30; - var _Texture31 = OpenTK.Graphics.ES20.TextureUnit.Texture31; -} -static void Test_TextureWrapMode_38393() { - var _Clamp = OpenTK.Graphics.ES20.TextureWrapMode.Clamp; - var _Repeat = OpenTK.Graphics.ES20.TextureWrapMode.Repeat; - var _ClampToBorder = OpenTK.Graphics.ES20.TextureWrapMode.ClampToBorder; - var _ClampToBorderArb = OpenTK.Graphics.ES20.TextureWrapMode.ClampToBorderArb; - var _ClampToBorderNv = OpenTK.Graphics.ES20.TextureWrapMode.ClampToBorderNv; - var _ClampToBorderSgis = OpenTK.Graphics.ES20.TextureWrapMode.ClampToBorderSgis; - var _ClampToEdge = OpenTK.Graphics.ES20.TextureWrapMode.ClampToEdge; - var _ClampToEdgeSgis = OpenTK.Graphics.ES20.TextureWrapMode.ClampToEdgeSgis; -} -static void Test_UseProgramStageMask_38394() { - var _VertexShaderBit = OpenTK.Graphics.ES20.UseProgramStageMask.VertexShaderBit; - var _VertexShaderBitExt = OpenTK.Graphics.ES20.UseProgramStageMask.VertexShaderBitExt; - var _FragmentShaderBit = OpenTK.Graphics.ES20.UseProgramStageMask.FragmentShaderBit; - var _FragmentShaderBitExt = OpenTK.Graphics.ES20.UseProgramStageMask.FragmentShaderBitExt; - var _GeometryShaderBit = OpenTK.Graphics.ES20.UseProgramStageMask.GeometryShaderBit; - var _GeometryShaderBitExt = OpenTK.Graphics.ES20.UseProgramStageMask.GeometryShaderBitExt; - var _TessControlShaderBit = OpenTK.Graphics.ES20.UseProgramStageMask.TessControlShaderBit; - var _TessControlShaderBitExt = OpenTK.Graphics.ES20.UseProgramStageMask.TessControlShaderBitExt; - var _TessEvaluationShaderBit = OpenTK.Graphics.ES20.UseProgramStageMask.TessEvaluationShaderBit; - var _TessEvaluationShaderBitExt = OpenTK.Graphics.ES20.UseProgramStageMask.TessEvaluationShaderBitExt; - var _ComputeShaderBit = OpenTK.Graphics.ES20.UseProgramStageMask.ComputeShaderBit; - var _AllShaderBits = OpenTK.Graphics.ES20.UseProgramStageMask.AllShaderBits; - var _AllShaderBitsExt = OpenTK.Graphics.ES20.UseProgramStageMask.AllShaderBitsExt; -} -static void Test_VertexAttribParameter_38395() { - var _VertexAttribArrayEnabled = OpenTK.Graphics.ES20.VertexAttribParameter.VertexAttribArrayEnabled; - var _VertexAttribArraySize = OpenTK.Graphics.ES20.VertexAttribParameter.VertexAttribArraySize; - var _VertexAttribArrayStride = OpenTK.Graphics.ES20.VertexAttribParameter.VertexAttribArrayStride; - var _VertexAttribArrayType = OpenTK.Graphics.ES20.VertexAttribParameter.VertexAttribArrayType; - var _CurrentVertexAttrib = OpenTK.Graphics.ES20.VertexAttribParameter.CurrentVertexAttrib; - var _VertexAttribArrayNormalized = OpenTK.Graphics.ES20.VertexAttribParameter.VertexAttribArrayNormalized; - var _VertexAttribArrayBufferBinding = OpenTK.Graphics.ES20.VertexAttribParameter.VertexAttribArrayBufferBinding; -} -static void Test_VertexAttribPointerParameter_38396() { - var _VertexAttribArrayPointer = OpenTK.Graphics.ES20.VertexAttribPointerParameter.VertexAttribArrayPointer; -} -static void Test_VertexAttribPointerType_38397() { - var _Byte = OpenTK.Graphics.ES20.VertexAttribPointerType.Byte; - var _UnsignedByte = OpenTK.Graphics.ES20.VertexAttribPointerType.UnsignedByte; - var _Short = OpenTK.Graphics.ES20.VertexAttribPointerType.Short; - var _UnsignedShort = OpenTK.Graphics.ES20.VertexAttribPointerType.UnsignedShort; - var _Float = OpenTK.Graphics.ES20.VertexAttribPointerType.Float; - var _Fixed = OpenTK.Graphics.ES20.VertexAttribPointerType.Fixed; -} -static void Test_VertexPointerType_38398() { - var _Short = OpenTK.Graphics.ES20.VertexPointerType.Short; - var _Int = OpenTK.Graphics.ES20.VertexPointerType.Int; - var _Float = OpenTK.Graphics.ES20.VertexPointerType.Float; - var _Double = OpenTK.Graphics.ES20.VertexPointerType.Double; -} -static void Test_VivShaderBinary_38399() { - var _ShaderBinaryViv = OpenTK.Graphics.ES20.VivShaderBinary.ShaderBinaryViv; -} -static void Test_WaitSyncFlags_38400() { - var _None = OpenTK.Graphics.ES20.WaitSyncFlags.None; -} -static void Test_WaitSyncStatus_38401() { - var _AlreadySignaledApple = OpenTK.Graphics.ES20.WaitSyncStatus.AlreadySignaledApple; - var _TimeoutExpiredApple = OpenTK.Graphics.ES20.WaitSyncStatus.TimeoutExpiredApple; - var _ConditionSatisfiedApple = OpenTK.Graphics.ES20.WaitSyncStatus.ConditionSatisfiedApple; - var _WaitFailedApple = OpenTK.Graphics.ES20.WaitSyncStatus.WaitFailedApple; -} -static void Test_AccumOp_38402() { - var _Accum = OpenTK.Graphics.ES11.AccumOp.Accum; - var _Load = OpenTK.Graphics.ES11.AccumOp.Load; - var _Return = OpenTK.Graphics.ES11.AccumOp.Return; - var _Mult = OpenTK.Graphics.ES11.AccumOp.Mult; - var _Add = OpenTK.Graphics.ES11.AccumOp.Add; -} -static void Test_All_38403() { - var _False = OpenTK.Graphics.ES11.All.False; - var _LayoutDefaultIntel = OpenTK.Graphics.ES11.All.LayoutDefaultIntel; - var _NoError = OpenTK.Graphics.ES11.All.NoError; - var _None = OpenTK.Graphics.ES11.All.None; - var _NoneOes = OpenTK.Graphics.ES11.All.NoneOes; - var _Zero = OpenTK.Graphics.ES11.All.Zero; - var _Points = OpenTK.Graphics.ES11.All.Points; - var _ClientPixelStoreBit = OpenTK.Graphics.ES11.All.ClientPixelStoreBit; - var _ColorBufferBit0Qcom = OpenTK.Graphics.ES11.All.ColorBufferBit0Qcom; - var _ContextCoreProfileBit = OpenTK.Graphics.ES11.All.ContextCoreProfileBit; - var _ContextFlagForwardCompatibleBit = OpenTK.Graphics.ES11.All.ContextFlagForwardCompatibleBit; - var _CurrentBit = OpenTK.Graphics.ES11.All.CurrentBit; - var _QueryDepthPassEventBitAmd = OpenTK.Graphics.ES11.All.QueryDepthPassEventBitAmd; - var _SyncFlushCommandsBitApple = OpenTK.Graphics.ES11.All.SyncFlushCommandsBitApple; - var _VertexAttribArrayBarrierBit = OpenTK.Graphics.ES11.All.VertexAttribArrayBarrierBit; - var _VertexAttribArrayBarrierBitExt = OpenTK.Graphics.ES11.All.VertexAttribArrayBarrierBitExt; - var _VertexShaderBit = OpenTK.Graphics.ES11.All.VertexShaderBit; - var _VertexShaderBitExt = OpenTK.Graphics.ES11.All.VertexShaderBitExt; - var _ClientVertexArrayBit = OpenTK.Graphics.ES11.All.ClientVertexArrayBit; - var _ColorBufferBit1Qcom = OpenTK.Graphics.ES11.All.ColorBufferBit1Qcom; - var _ContextCompatibilityProfileBit = OpenTK.Graphics.ES11.All.ContextCompatibilityProfileBit; - var _ContextFlagDebugBit = OpenTK.Graphics.ES11.All.ContextFlagDebugBit; - var _ContextFlagDebugBitKhr = OpenTK.Graphics.ES11.All.ContextFlagDebugBitKhr; - var _ElementArrayBarrierBit = OpenTK.Graphics.ES11.All.ElementArrayBarrierBit; - var _ElementArrayBarrierBitExt = OpenTK.Graphics.ES11.All.ElementArrayBarrierBitExt; - var _FragmentShaderBit = OpenTK.Graphics.ES11.All.FragmentShaderBit; - var _FragmentShaderBitExt = OpenTK.Graphics.ES11.All.FragmentShaderBitExt; - var _PointBit = OpenTK.Graphics.ES11.All.PointBit; - var _QueryDepthFailEventBitAmd = OpenTK.Graphics.ES11.All.QueryDepthFailEventBitAmd; - var _ColorBufferBit2Qcom = OpenTK.Graphics.ES11.All.ColorBufferBit2Qcom; - var _ContextFlagRobustAccessBitArb = OpenTK.Graphics.ES11.All.ContextFlagRobustAccessBitArb; - var _GeometryShaderBit = OpenTK.Graphics.ES11.All.GeometryShaderBit; - var _GeometryShaderBitExt = OpenTK.Graphics.ES11.All.GeometryShaderBitExt; - var _LineBit = OpenTK.Graphics.ES11.All.LineBit; - var _QueryStencilFailEventBitAmd = OpenTK.Graphics.ES11.All.QueryStencilFailEventBitAmd; - var _UniformBarrierBit = OpenTK.Graphics.ES11.All.UniformBarrierBit; - var _UniformBarrierBitExt = OpenTK.Graphics.ES11.All.UniformBarrierBitExt; - var _ColorBufferBit3Qcom = OpenTK.Graphics.ES11.All.ColorBufferBit3Qcom; - var _PolygonBit = OpenTK.Graphics.ES11.All.PolygonBit; - var _QueryDepthBoundsFailEventBitAmd = OpenTK.Graphics.ES11.All.QueryDepthBoundsFailEventBitAmd; - var _TessControlShaderBit = OpenTK.Graphics.ES11.All.TessControlShaderBit; - var _TessControlShaderBitExt = OpenTK.Graphics.ES11.All.TessControlShaderBitExt; - var _TextureFetchBarrierBit = OpenTK.Graphics.ES11.All.TextureFetchBarrierBit; - var _TextureFetchBarrierBitExt = OpenTK.Graphics.ES11.All.TextureFetchBarrierBitExt; - var _ColorBufferBit4Qcom = OpenTK.Graphics.ES11.All.ColorBufferBit4Qcom; - var _PolygonStippleBit = OpenTK.Graphics.ES11.All.PolygonStippleBit; - var _ShaderGlobalAccessBarrierBitNv = OpenTK.Graphics.ES11.All.ShaderGlobalAccessBarrierBitNv; - var _TessEvaluationShaderBit = OpenTK.Graphics.ES11.All.TessEvaluationShaderBit; - var _TessEvaluationShaderBitExt = OpenTK.Graphics.ES11.All.TessEvaluationShaderBitExt; - var _ColorBufferBit5Qcom = OpenTK.Graphics.ES11.All.ColorBufferBit5Qcom; - var _ComputeShaderBit = OpenTK.Graphics.ES11.All.ComputeShaderBit; - var _PixelModeBit = OpenTK.Graphics.ES11.All.PixelModeBit; - var _ShaderImageAccessBarrierBit = OpenTK.Graphics.ES11.All.ShaderImageAccessBarrierBit; - var _ShaderImageAccessBarrierBitExt = OpenTK.Graphics.ES11.All.ShaderImageAccessBarrierBitExt; - var _ColorBufferBit6Qcom = OpenTK.Graphics.ES11.All.ColorBufferBit6Qcom; - var _CommandBarrierBit = OpenTK.Graphics.ES11.All.CommandBarrierBit; - var _CommandBarrierBitExt = OpenTK.Graphics.ES11.All.CommandBarrierBitExt; - var _LightingBit = OpenTK.Graphics.ES11.All.LightingBit; - var _ColorBufferBit7Qcom = OpenTK.Graphics.ES11.All.ColorBufferBit7Qcom; - var _FogBit = OpenTK.Graphics.ES11.All.FogBit; - var _PixelBufferBarrierBit = OpenTK.Graphics.ES11.All.PixelBufferBarrierBit; - var _PixelBufferBarrierBitExt = OpenTK.Graphics.ES11.All.PixelBufferBarrierBitExt; - var _DepthBufferBit = OpenTK.Graphics.ES11.All.DepthBufferBit; - var _DepthBufferBit0Qcom = OpenTK.Graphics.ES11.All.DepthBufferBit0Qcom; - var _TextureUpdateBarrierBit = OpenTK.Graphics.ES11.All.TextureUpdateBarrierBit; - var _TextureUpdateBarrierBitExt = OpenTK.Graphics.ES11.All.TextureUpdateBarrierBitExt; - var _AccumBufferBit = OpenTK.Graphics.ES11.All.AccumBufferBit; - var _BufferUpdateBarrierBit = OpenTK.Graphics.ES11.All.BufferUpdateBarrierBit; - var _BufferUpdateBarrierBitExt = OpenTK.Graphics.ES11.All.BufferUpdateBarrierBitExt; - var _DepthBufferBit1Qcom = OpenTK.Graphics.ES11.All.DepthBufferBit1Qcom; - var _DepthBufferBit2Qcom = OpenTK.Graphics.ES11.All.DepthBufferBit2Qcom; - var _FramebufferBarrierBit = OpenTK.Graphics.ES11.All.FramebufferBarrierBit; - var _FramebufferBarrierBitExt = OpenTK.Graphics.ES11.All.FramebufferBarrierBitExt; - var _StencilBufferBit = OpenTK.Graphics.ES11.All.StencilBufferBit; - var _DepthBufferBit3Qcom = OpenTK.Graphics.ES11.All.DepthBufferBit3Qcom; - var _TransformFeedbackBarrierBit = OpenTK.Graphics.ES11.All.TransformFeedbackBarrierBit; - var _TransformFeedbackBarrierBitExt = OpenTK.Graphics.ES11.All.TransformFeedbackBarrierBitExt; - var _ViewportBit = OpenTK.Graphics.ES11.All.ViewportBit; - var _AtomicCounterBarrierBit = OpenTK.Graphics.ES11.All.AtomicCounterBarrierBit; - var _AtomicCounterBarrierBitExt = OpenTK.Graphics.ES11.All.AtomicCounterBarrierBitExt; - var _DepthBufferBit4Qcom = OpenTK.Graphics.ES11.All.DepthBufferBit4Qcom; - var _TransformBit = OpenTK.Graphics.ES11.All.TransformBit; - var _DepthBufferBit5Qcom = OpenTK.Graphics.ES11.All.DepthBufferBit5Qcom; - var _EnableBit = OpenTK.Graphics.ES11.All.EnableBit; - var _ShaderStorageBarrierBit = OpenTK.Graphics.ES11.All.ShaderStorageBarrierBit; - var _ClientMappedBufferBarrierBit = OpenTK.Graphics.ES11.All.ClientMappedBufferBarrierBit; - var _ColorBufferBit = OpenTK.Graphics.ES11.All.ColorBufferBit; - var _DepthBufferBit6Qcom = OpenTK.Graphics.ES11.All.DepthBufferBit6Qcom; - var _CoverageBufferBitNv = OpenTK.Graphics.ES11.All.CoverageBufferBitNv; - var _DepthBufferBit7Qcom = OpenTK.Graphics.ES11.All.DepthBufferBit7Qcom; - var _HintBit = OpenTK.Graphics.ES11.All.HintBit; - var _QueryBufferBarrierBit = OpenTK.Graphics.ES11.All.QueryBufferBarrierBit; - var _MapReadBit = OpenTK.Graphics.ES11.All.MapReadBit; - var _MapReadBitExt = OpenTK.Graphics.ES11.All.MapReadBitExt; - var _Lines = OpenTK.Graphics.ES11.All.Lines; - var _EvalBit = OpenTK.Graphics.ES11.All.EvalBit; - var _StencilBufferBit0Qcom = OpenTK.Graphics.ES11.All.StencilBufferBit0Qcom; - var _LineLoop = OpenTK.Graphics.ES11.All.LineLoop; - var _MapWriteBit = OpenTK.Graphics.ES11.All.MapWriteBit; - var _MapWriteBitExt = OpenTK.Graphics.ES11.All.MapWriteBitExt; - var _ListBit = OpenTK.Graphics.ES11.All.ListBit; - var _StencilBufferBit1Qcom = OpenTK.Graphics.ES11.All.StencilBufferBit1Qcom; - var _LineStrip = OpenTK.Graphics.ES11.All.LineStrip; - var _MapInvalidateRangeBit = OpenTK.Graphics.ES11.All.MapInvalidateRangeBit; - var _MapInvalidateRangeBitExt = OpenTK.Graphics.ES11.All.MapInvalidateRangeBitExt; - var _Triangles = OpenTK.Graphics.ES11.All.Triangles; - var _StencilBufferBit2Qcom = OpenTK.Graphics.ES11.All.StencilBufferBit2Qcom; - var _TextureBit = OpenTK.Graphics.ES11.All.TextureBit; - var _TriangleStrip = OpenTK.Graphics.ES11.All.TriangleStrip; - var _TriangleFan = OpenTK.Graphics.ES11.All.TriangleFan; - var _Quads = OpenTK.Graphics.ES11.All.Quads; - var _QuadsExt = OpenTK.Graphics.ES11.All.QuadsExt; - var _MapInvalidateBufferBit = OpenTK.Graphics.ES11.All.MapInvalidateBufferBit; - var _MapInvalidateBufferBitExt = OpenTK.Graphics.ES11.All.MapInvalidateBufferBitExt; - var _QuadStrip = OpenTK.Graphics.ES11.All.QuadStrip; - var _ScissorBit = OpenTK.Graphics.ES11.All.ScissorBit; - var _StencilBufferBit3Qcom = OpenTK.Graphics.ES11.All.StencilBufferBit3Qcom; - var _Polygon = OpenTK.Graphics.ES11.All.Polygon; - var _LinesAdjacency = OpenTK.Graphics.ES11.All.LinesAdjacency; - var _LinesAdjacencyArb = OpenTK.Graphics.ES11.All.LinesAdjacencyArb; - var _LinesAdjacencyExt = OpenTK.Graphics.ES11.All.LinesAdjacencyExt; - var _LineStripAdjacency = OpenTK.Graphics.ES11.All.LineStripAdjacency; - var _LineStripAdjacencyArb = OpenTK.Graphics.ES11.All.LineStripAdjacencyArb; - var _LineStripAdjacencyExt = OpenTK.Graphics.ES11.All.LineStripAdjacencyExt; - var _TrianglesAdjacency = OpenTK.Graphics.ES11.All.TrianglesAdjacency; - var _TrianglesAdjacencyArb = OpenTK.Graphics.ES11.All.TrianglesAdjacencyArb; - var _TrianglesAdjacencyExt = OpenTK.Graphics.ES11.All.TrianglesAdjacencyExt; - var _TriangleStripAdjacency = OpenTK.Graphics.ES11.All.TriangleStripAdjacency; - var _TriangleStripAdjacencyArb = OpenTK.Graphics.ES11.All.TriangleStripAdjacencyArb; - var _TriangleStripAdjacencyExt = OpenTK.Graphics.ES11.All.TriangleStripAdjacencyExt; - var _Patches = OpenTK.Graphics.ES11.All.Patches; - var _PatchesExt = OpenTK.Graphics.ES11.All.PatchesExt; - var _MapFlushExplicitBit = OpenTK.Graphics.ES11.All.MapFlushExplicitBit; - var _MapFlushExplicitBitExt = OpenTK.Graphics.ES11.All.MapFlushExplicitBitExt; - var _StencilBufferBit4Qcom = OpenTK.Graphics.ES11.All.StencilBufferBit4Qcom; - var _MapUnsynchronizedBit = OpenTK.Graphics.ES11.All.MapUnsynchronizedBit; - var _MapUnsynchronizedBitExt = OpenTK.Graphics.ES11.All.MapUnsynchronizedBitExt; - var _StencilBufferBit5Qcom = OpenTK.Graphics.ES11.All.StencilBufferBit5Qcom; - var _MapPersistentBit = OpenTK.Graphics.ES11.All.MapPersistentBit; - var _StencilBufferBit6Qcom = OpenTK.Graphics.ES11.All.StencilBufferBit6Qcom; - var _MapCoherentBit = OpenTK.Graphics.ES11.All.MapCoherentBit; - var _StencilBufferBit7Qcom = OpenTK.Graphics.ES11.All.StencilBufferBit7Qcom; - var _Accum = OpenTK.Graphics.ES11.All.Accum; - var _DynamicStorageBit = OpenTK.Graphics.ES11.All.DynamicStorageBit; - var _MultisampleBufferBit0Qcom = OpenTK.Graphics.ES11.All.MultisampleBufferBit0Qcom; - var _Load = OpenTK.Graphics.ES11.All.Load; - var _Return = OpenTK.Graphics.ES11.All.Return; - var _Mult = OpenTK.Graphics.ES11.All.Mult; - var _Add = OpenTK.Graphics.ES11.All.Add; - var _ClientStorageBit = OpenTK.Graphics.ES11.All.ClientStorageBit; - var _Never = OpenTK.Graphics.ES11.All.Never; - var _MultisampleBufferBit1Qcom = OpenTK.Graphics.ES11.All.MultisampleBufferBit1Qcom; - var _Less = OpenTK.Graphics.ES11.All.Less; - var _Equal = OpenTK.Graphics.ES11.All.Equal; - var _Lequal = OpenTK.Graphics.ES11.All.Lequal; - var _Greater = OpenTK.Graphics.ES11.All.Greater; - var _Notequal = OpenTK.Graphics.ES11.All.Notequal; - var _Gequal = OpenTK.Graphics.ES11.All.Gequal; - var _Always = OpenTK.Graphics.ES11.All.Always; - var _SrcColor = OpenTK.Graphics.ES11.All.SrcColor; - var _OneMinusSrcColor = OpenTK.Graphics.ES11.All.OneMinusSrcColor; - var _SrcAlpha = OpenTK.Graphics.ES11.All.SrcAlpha; - var _OneMinusSrcAlpha = OpenTK.Graphics.ES11.All.OneMinusSrcAlpha; - var _DstAlpha = OpenTK.Graphics.ES11.All.DstAlpha; - var _OneMinusDstAlpha = OpenTK.Graphics.ES11.All.OneMinusDstAlpha; - var _DstColor = OpenTK.Graphics.ES11.All.DstColor; - var _OneMinusDstColor = OpenTK.Graphics.ES11.All.OneMinusDstColor; - var _SrcAlphaSaturate = OpenTK.Graphics.ES11.All.SrcAlphaSaturate; - var _FrontLeft = OpenTK.Graphics.ES11.All.FrontLeft; - var _MultisampleBufferBit2Qcom = OpenTK.Graphics.ES11.All.MultisampleBufferBit2Qcom; - var _FrontRight = OpenTK.Graphics.ES11.All.FrontRight; - var _BackLeft = OpenTK.Graphics.ES11.All.BackLeft; - var _BackRight = OpenTK.Graphics.ES11.All.BackRight; - var _Front = OpenTK.Graphics.ES11.All.Front; - var _Back = OpenTK.Graphics.ES11.All.Back; - var _Left = OpenTK.Graphics.ES11.All.Left; - var _Right = OpenTK.Graphics.ES11.All.Right; - var _FrontAndBack = OpenTK.Graphics.ES11.All.FrontAndBack; - var _Aux0 = OpenTK.Graphics.ES11.All.Aux0; - var _Aux1 = OpenTK.Graphics.ES11.All.Aux1; - var _Aux2 = OpenTK.Graphics.ES11.All.Aux2; - var _Aux3 = OpenTK.Graphics.ES11.All.Aux3; - var _InvalidEnum = OpenTK.Graphics.ES11.All.InvalidEnum; - var _InvalidValue = OpenTK.Graphics.ES11.All.InvalidValue; - var _InvalidOperation = OpenTK.Graphics.ES11.All.InvalidOperation; - var _StackOverflow = OpenTK.Graphics.ES11.All.StackOverflow; - var _StackUnderflow = OpenTK.Graphics.ES11.All.StackUnderflow; - var _OutOfMemory = OpenTK.Graphics.ES11.All.OutOfMemory; - var _InvalidFramebufferOperation = OpenTK.Graphics.ES11.All.InvalidFramebufferOperation; - var _InvalidFramebufferOperationExt = OpenTK.Graphics.ES11.All.InvalidFramebufferOperationExt; - var _InvalidFramebufferOperationOes = OpenTK.Graphics.ES11.All.InvalidFramebufferOperationOes; - var _Gl2D = OpenTK.Graphics.ES11.All.Gl2D; - var _Gl3D = OpenTK.Graphics.ES11.All.Gl3D; - var _Gl3DColor = OpenTK.Graphics.ES11.All.Gl3DColor; - var _Gl3DColorTexture = OpenTK.Graphics.ES11.All.Gl3DColorTexture; - var _Gl4DColorTexture = OpenTK.Graphics.ES11.All.Gl4DColorTexture; - var _PassThroughToken = OpenTK.Graphics.ES11.All.PassThroughToken; - var _PointToken = OpenTK.Graphics.ES11.All.PointToken; - var _LineToken = OpenTK.Graphics.ES11.All.LineToken; - var _PolygonToken = OpenTK.Graphics.ES11.All.PolygonToken; - var _BitmapToken = OpenTK.Graphics.ES11.All.BitmapToken; - var _DrawPixelToken = OpenTK.Graphics.ES11.All.DrawPixelToken; - var _CopyPixelToken = OpenTK.Graphics.ES11.All.CopyPixelToken; - var _LineResetToken = OpenTK.Graphics.ES11.All.LineResetToken; - var _Exp = OpenTK.Graphics.ES11.All.Exp; - var _MultisampleBufferBit3Qcom = OpenTK.Graphics.ES11.All.MultisampleBufferBit3Qcom; - var _Exp2 = OpenTK.Graphics.ES11.All.Exp2; - var _Cw = OpenTK.Graphics.ES11.All.Cw; - var _Ccw = OpenTK.Graphics.ES11.All.Ccw; - var _Coeff = OpenTK.Graphics.ES11.All.Coeff; - var _Order = OpenTK.Graphics.ES11.All.Order; - var _Domain = OpenTK.Graphics.ES11.All.Domain; - var _CurrentColor = OpenTK.Graphics.ES11.All.CurrentColor; - var _CurrentIndex = OpenTK.Graphics.ES11.All.CurrentIndex; - var _CurrentNormal = OpenTK.Graphics.ES11.All.CurrentNormal; - var _CurrentTextureCoords = OpenTK.Graphics.ES11.All.CurrentTextureCoords; - var _CurrentRasterColor = OpenTK.Graphics.ES11.All.CurrentRasterColor; - var _CurrentRasterIndex = OpenTK.Graphics.ES11.All.CurrentRasterIndex; - var _CurrentRasterTextureCoords = OpenTK.Graphics.ES11.All.CurrentRasterTextureCoords; - var _CurrentRasterPosition = OpenTK.Graphics.ES11.All.CurrentRasterPosition; - var _CurrentRasterPositionValid = OpenTK.Graphics.ES11.All.CurrentRasterPositionValid; - var _CurrentRasterDistance = OpenTK.Graphics.ES11.All.CurrentRasterDistance; - var _PointSmooth = OpenTK.Graphics.ES11.All.PointSmooth; - var _PointSize = OpenTK.Graphics.ES11.All.PointSize; - var _PointSizeRange = OpenTK.Graphics.ES11.All.PointSizeRange; - var _SmoothPointSizeRange = OpenTK.Graphics.ES11.All.SmoothPointSizeRange; - var _PointSizeGranularity = OpenTK.Graphics.ES11.All.PointSizeGranularity; - var _SmoothPointSizeGranularity = OpenTK.Graphics.ES11.All.SmoothPointSizeGranularity; - var _LineSmooth = OpenTK.Graphics.ES11.All.LineSmooth; - var _LineWidth = OpenTK.Graphics.ES11.All.LineWidth; - var _LineWidthRange = OpenTK.Graphics.ES11.All.LineWidthRange; - var _SmoothLineWidthRange = OpenTK.Graphics.ES11.All.SmoothLineWidthRange; - var _LineWidthGranularity = OpenTK.Graphics.ES11.All.LineWidthGranularity; - var _SmoothLineWidthGranularity = OpenTK.Graphics.ES11.All.SmoothLineWidthGranularity; - var _LineStipple = OpenTK.Graphics.ES11.All.LineStipple; - var _LineStipplePattern = OpenTK.Graphics.ES11.All.LineStipplePattern; - var _LineStippleRepeat = OpenTK.Graphics.ES11.All.LineStippleRepeat; - var _ListMode = OpenTK.Graphics.ES11.All.ListMode; - var _MaxListNesting = OpenTK.Graphics.ES11.All.MaxListNesting; - var _ListBase = OpenTK.Graphics.ES11.All.ListBase; - var _ListIndex = OpenTK.Graphics.ES11.All.ListIndex; - var _PolygonMode = OpenTK.Graphics.ES11.All.PolygonMode; - var _PolygonSmooth = OpenTK.Graphics.ES11.All.PolygonSmooth; - var _PolygonStipple = OpenTK.Graphics.ES11.All.PolygonStipple; - var _EdgeFlag = OpenTK.Graphics.ES11.All.EdgeFlag; - var _CullFace = OpenTK.Graphics.ES11.All.CullFace; - var _CullFaceMode = OpenTK.Graphics.ES11.All.CullFaceMode; - var _FrontFace = OpenTK.Graphics.ES11.All.FrontFace; - var _Lighting = OpenTK.Graphics.ES11.All.Lighting; - var _LightModelLocalViewer = OpenTK.Graphics.ES11.All.LightModelLocalViewer; - var _LightModelTwoSide = OpenTK.Graphics.ES11.All.LightModelTwoSide; - var _LightModelAmbient = OpenTK.Graphics.ES11.All.LightModelAmbient; - var _ShadeModel = OpenTK.Graphics.ES11.All.ShadeModel; - var _ColorMaterialFace = OpenTK.Graphics.ES11.All.ColorMaterialFace; - var _ColorMaterialParameter = OpenTK.Graphics.ES11.All.ColorMaterialParameter; - var _ColorMaterial = OpenTK.Graphics.ES11.All.ColorMaterial; - var _Fog = OpenTK.Graphics.ES11.All.Fog; - var _FogIndex = OpenTK.Graphics.ES11.All.FogIndex; - var _FogDensity = OpenTK.Graphics.ES11.All.FogDensity; - var _FogStart = OpenTK.Graphics.ES11.All.FogStart; - var _FogEnd = OpenTK.Graphics.ES11.All.FogEnd; - var _FogMode = OpenTK.Graphics.ES11.All.FogMode; - var _FogColor = OpenTK.Graphics.ES11.All.FogColor; - var _DepthRange = OpenTK.Graphics.ES11.All.DepthRange; - var _DepthTest = OpenTK.Graphics.ES11.All.DepthTest; - var _DepthWritemask = OpenTK.Graphics.ES11.All.DepthWritemask; - var _DepthClearValue = OpenTK.Graphics.ES11.All.DepthClearValue; - var _DepthFunc = OpenTK.Graphics.ES11.All.DepthFunc; - var _AccumClearValue = OpenTK.Graphics.ES11.All.AccumClearValue; - var _StencilTest = OpenTK.Graphics.ES11.All.StencilTest; - var _StencilClearValue = OpenTK.Graphics.ES11.All.StencilClearValue; - var _StencilFunc = OpenTK.Graphics.ES11.All.StencilFunc; - var _StencilValueMask = OpenTK.Graphics.ES11.All.StencilValueMask; - var _StencilFail = OpenTK.Graphics.ES11.All.StencilFail; - var _StencilPassDepthFail = OpenTK.Graphics.ES11.All.StencilPassDepthFail; - var _StencilPassDepthPass = OpenTK.Graphics.ES11.All.StencilPassDepthPass; - var _StencilRef = OpenTK.Graphics.ES11.All.StencilRef; - var _StencilWritemask = OpenTK.Graphics.ES11.All.StencilWritemask; - var _MatrixMode = OpenTK.Graphics.ES11.All.MatrixMode; - var _Normalize = OpenTK.Graphics.ES11.All.Normalize; - var _Viewport = OpenTK.Graphics.ES11.All.Viewport; - var _Modelview0StackDepthExt = OpenTK.Graphics.ES11.All.Modelview0StackDepthExt; - var _ModelviewStackDepth = OpenTK.Graphics.ES11.All.ModelviewStackDepth; - var _ProjectionStackDepth = OpenTK.Graphics.ES11.All.ProjectionStackDepth; - var _TextureStackDepth = OpenTK.Graphics.ES11.All.TextureStackDepth; - var _Modelview0MatrixExt = OpenTK.Graphics.ES11.All.Modelview0MatrixExt; - var _ModelviewMatrix = OpenTK.Graphics.ES11.All.ModelviewMatrix; - var _ProjectionMatrix = OpenTK.Graphics.ES11.All.ProjectionMatrix; - var _TextureMatrix = OpenTK.Graphics.ES11.All.TextureMatrix; - var _AttribStackDepth = OpenTK.Graphics.ES11.All.AttribStackDepth; - var _ClientAttribStackDepth = OpenTK.Graphics.ES11.All.ClientAttribStackDepth; - var _AlphaTest = OpenTK.Graphics.ES11.All.AlphaTest; - var _AlphaTestQcom = OpenTK.Graphics.ES11.All.AlphaTestQcom; - var _AlphaTestFunc = OpenTK.Graphics.ES11.All.AlphaTestFunc; - var _AlphaTestFuncQcom = OpenTK.Graphics.ES11.All.AlphaTestFuncQcom; - var _AlphaTestRef = OpenTK.Graphics.ES11.All.AlphaTestRef; - var _AlphaTestRefQcom = OpenTK.Graphics.ES11.All.AlphaTestRefQcom; - var _Dither = OpenTK.Graphics.ES11.All.Dither; - var _BlendDst = OpenTK.Graphics.ES11.All.BlendDst; - var _BlendSrc = OpenTK.Graphics.ES11.All.BlendSrc; - var _Blend = OpenTK.Graphics.ES11.All.Blend; - var _LogicOpMode = OpenTK.Graphics.ES11.All.LogicOpMode; - var _IndexLogicOp = OpenTK.Graphics.ES11.All.IndexLogicOp; - var _LogicOp = OpenTK.Graphics.ES11.All.LogicOp; - var _ColorLogicOp = OpenTK.Graphics.ES11.All.ColorLogicOp; - var _AuxBuffers = OpenTK.Graphics.ES11.All.AuxBuffers; - var _DrawBuffer = OpenTK.Graphics.ES11.All.DrawBuffer; - var _DrawBufferExt = OpenTK.Graphics.ES11.All.DrawBufferExt; - var _ReadBuffer = OpenTK.Graphics.ES11.All.ReadBuffer; - var _ReadBufferExt = OpenTK.Graphics.ES11.All.ReadBufferExt; - var _ReadBufferNv = OpenTK.Graphics.ES11.All.ReadBufferNv; - var _ScissorBox = OpenTK.Graphics.ES11.All.ScissorBox; - var _ScissorTest = OpenTK.Graphics.ES11.All.ScissorTest; - var _IndexClearValue = OpenTK.Graphics.ES11.All.IndexClearValue; - var _IndexWritemask = OpenTK.Graphics.ES11.All.IndexWritemask; - var _ColorClearValue = OpenTK.Graphics.ES11.All.ColorClearValue; - var _ColorWritemask = OpenTK.Graphics.ES11.All.ColorWritemask; - var _IndexMode = OpenTK.Graphics.ES11.All.IndexMode; - var _RgbaMode = OpenTK.Graphics.ES11.All.RgbaMode; - var _Doublebuffer = OpenTK.Graphics.ES11.All.Doublebuffer; - var _Stereo = OpenTK.Graphics.ES11.All.Stereo; - var _RenderMode = OpenTK.Graphics.ES11.All.RenderMode; - var _PerspectiveCorrectionHint = OpenTK.Graphics.ES11.All.PerspectiveCorrectionHint; - var _PointSmoothHint = OpenTK.Graphics.ES11.All.PointSmoothHint; - var _LineSmoothHint = OpenTK.Graphics.ES11.All.LineSmoothHint; - var _PolygonSmoothHint = OpenTK.Graphics.ES11.All.PolygonSmoothHint; - var _FogHint = OpenTK.Graphics.ES11.All.FogHint; - var _TextureGenS = OpenTK.Graphics.ES11.All.TextureGenS; - var _TextureGenT = OpenTK.Graphics.ES11.All.TextureGenT; - var _TextureGenR = OpenTK.Graphics.ES11.All.TextureGenR; - var _TextureGenQ = OpenTK.Graphics.ES11.All.TextureGenQ; - var _PixelMapIToI = OpenTK.Graphics.ES11.All.PixelMapIToI; - var _PixelMapSToS = OpenTK.Graphics.ES11.All.PixelMapSToS; - var _PixelMapIToR = OpenTK.Graphics.ES11.All.PixelMapIToR; - var _PixelMapIToG = OpenTK.Graphics.ES11.All.PixelMapIToG; - var _PixelMapIToB = OpenTK.Graphics.ES11.All.PixelMapIToB; - var _PixelMapIToA = OpenTK.Graphics.ES11.All.PixelMapIToA; - var _PixelMapRToR = OpenTK.Graphics.ES11.All.PixelMapRToR; - var _PixelMapGToG = OpenTK.Graphics.ES11.All.PixelMapGToG; - var _PixelMapBToB = OpenTK.Graphics.ES11.All.PixelMapBToB; - var _PixelMapAToA = OpenTK.Graphics.ES11.All.PixelMapAToA; - var _PixelMapIToISize = OpenTK.Graphics.ES11.All.PixelMapIToISize; - var _PixelMapSToSSize = OpenTK.Graphics.ES11.All.PixelMapSToSSize; - var _PixelMapIToRSize = OpenTK.Graphics.ES11.All.PixelMapIToRSize; - var _PixelMapIToGSize = OpenTK.Graphics.ES11.All.PixelMapIToGSize; - var _PixelMapIToBSize = OpenTK.Graphics.ES11.All.PixelMapIToBSize; - var _PixelMapIToASize = OpenTK.Graphics.ES11.All.PixelMapIToASize; - var _PixelMapRToRSize = OpenTK.Graphics.ES11.All.PixelMapRToRSize; - var _PixelMapGToGSize = OpenTK.Graphics.ES11.All.PixelMapGToGSize; - var _PixelMapBToBSize = OpenTK.Graphics.ES11.All.PixelMapBToBSize; - var _PixelMapAToASize = OpenTK.Graphics.ES11.All.PixelMapAToASize; - var _UnpackSwapBytes = OpenTK.Graphics.ES11.All.UnpackSwapBytes; - var _UnpackLsbFirst = OpenTK.Graphics.ES11.All.UnpackLsbFirst; - var _UnpackRowLength = OpenTK.Graphics.ES11.All.UnpackRowLength; - var _UnpackRowLengthExt = OpenTK.Graphics.ES11.All.UnpackRowLengthExt; - var _UnpackSkipRows = OpenTK.Graphics.ES11.All.UnpackSkipRows; - var _UnpackSkipRowsExt = OpenTK.Graphics.ES11.All.UnpackSkipRowsExt; - var _UnpackSkipPixels = OpenTK.Graphics.ES11.All.UnpackSkipPixels; - var _UnpackSkipPixelsExt = OpenTK.Graphics.ES11.All.UnpackSkipPixelsExt; - var _UnpackAlignment = OpenTK.Graphics.ES11.All.UnpackAlignment; - var _PackSwapBytes = OpenTK.Graphics.ES11.All.PackSwapBytes; - var _PackLsbFirst = OpenTK.Graphics.ES11.All.PackLsbFirst; - var _PackRowLength = OpenTK.Graphics.ES11.All.PackRowLength; - var _PackSkipRows = OpenTK.Graphics.ES11.All.PackSkipRows; - var _PackSkipPixels = OpenTK.Graphics.ES11.All.PackSkipPixels; - var _PackAlignment = OpenTK.Graphics.ES11.All.PackAlignment; - var _MapColor = OpenTK.Graphics.ES11.All.MapColor; - var _MapStencil = OpenTK.Graphics.ES11.All.MapStencil; - var _IndexShift = OpenTK.Graphics.ES11.All.IndexShift; - var _IndexOffset = OpenTK.Graphics.ES11.All.IndexOffset; - var _RedScale = OpenTK.Graphics.ES11.All.RedScale; - var _RedBias = OpenTK.Graphics.ES11.All.RedBias; - var _ZoomX = OpenTK.Graphics.ES11.All.ZoomX; - var _ZoomY = OpenTK.Graphics.ES11.All.ZoomY; - var _GreenScale = OpenTK.Graphics.ES11.All.GreenScale; - var _GreenBias = OpenTK.Graphics.ES11.All.GreenBias; - var _BlueScale = OpenTK.Graphics.ES11.All.BlueScale; - var _BlueBias = OpenTK.Graphics.ES11.All.BlueBias; - var _AlphaScale = OpenTK.Graphics.ES11.All.AlphaScale; - var _AlphaBias = OpenTK.Graphics.ES11.All.AlphaBias; - var _DepthScale = OpenTK.Graphics.ES11.All.DepthScale; - var _DepthBias = OpenTK.Graphics.ES11.All.DepthBias; - var _MaxEvalOrder = OpenTK.Graphics.ES11.All.MaxEvalOrder; - var _MaxLights = OpenTK.Graphics.ES11.All.MaxLights; - var _MaxClipDistances = OpenTK.Graphics.ES11.All.MaxClipDistances; - var _MaxClipPlanes = OpenTK.Graphics.ES11.All.MaxClipPlanes; - var _MaxClipPlanesImg = OpenTK.Graphics.ES11.All.MaxClipPlanesImg; - var _MaxTextureSize = OpenTK.Graphics.ES11.All.MaxTextureSize; - var _MaxPixelMapTable = OpenTK.Graphics.ES11.All.MaxPixelMapTable; - var _MaxAttribStackDepth = OpenTK.Graphics.ES11.All.MaxAttribStackDepth; - var _MaxModelviewStackDepth = OpenTK.Graphics.ES11.All.MaxModelviewStackDepth; - var _MaxNameStackDepth = OpenTK.Graphics.ES11.All.MaxNameStackDepth; - var _MaxProjectionStackDepth = OpenTK.Graphics.ES11.All.MaxProjectionStackDepth; - var _MaxTextureStackDepth = OpenTK.Graphics.ES11.All.MaxTextureStackDepth; - var _MaxViewportDims = OpenTK.Graphics.ES11.All.MaxViewportDims; - var _MaxClientAttribStackDepth = OpenTK.Graphics.ES11.All.MaxClientAttribStackDepth; - var _SubpixelBits = OpenTK.Graphics.ES11.All.SubpixelBits; - var _IndexBits = OpenTK.Graphics.ES11.All.IndexBits; - var _RedBits = OpenTK.Graphics.ES11.All.RedBits; - var _GreenBits = OpenTK.Graphics.ES11.All.GreenBits; - var _BlueBits = OpenTK.Graphics.ES11.All.BlueBits; - var _AlphaBits = OpenTK.Graphics.ES11.All.AlphaBits; - var _DepthBits = OpenTK.Graphics.ES11.All.DepthBits; - var _StencilBits = OpenTK.Graphics.ES11.All.StencilBits; - var _AccumRedBits = OpenTK.Graphics.ES11.All.AccumRedBits; - var _AccumGreenBits = OpenTK.Graphics.ES11.All.AccumGreenBits; - var _AccumBlueBits = OpenTK.Graphics.ES11.All.AccumBlueBits; - var _AccumAlphaBits = OpenTK.Graphics.ES11.All.AccumAlphaBits; - var _NameStackDepth = OpenTK.Graphics.ES11.All.NameStackDepth; - var _AutoNormal = OpenTK.Graphics.ES11.All.AutoNormal; - var _Map1Color4 = OpenTK.Graphics.ES11.All.Map1Color4; - var _Map1Index = OpenTK.Graphics.ES11.All.Map1Index; - var _Map1Normal = OpenTK.Graphics.ES11.All.Map1Normal; - var _Map1TextureCoord1 = OpenTK.Graphics.ES11.All.Map1TextureCoord1; - var _Map1TextureCoord2 = OpenTK.Graphics.ES11.All.Map1TextureCoord2; - var _Map1TextureCoord3 = OpenTK.Graphics.ES11.All.Map1TextureCoord3; - var _Map1TextureCoord4 = OpenTK.Graphics.ES11.All.Map1TextureCoord4; - var _Map1Vertex3 = OpenTK.Graphics.ES11.All.Map1Vertex3; - var _Map1Vertex4 = OpenTK.Graphics.ES11.All.Map1Vertex4; - var _Map2Color4 = OpenTK.Graphics.ES11.All.Map2Color4; - var _Map2Index = OpenTK.Graphics.ES11.All.Map2Index; - var _Map2Normal = OpenTK.Graphics.ES11.All.Map2Normal; - var _Map2TextureCoord1 = OpenTK.Graphics.ES11.All.Map2TextureCoord1; - var _Map2TextureCoord2 = OpenTK.Graphics.ES11.All.Map2TextureCoord2; - var _Map2TextureCoord3 = OpenTK.Graphics.ES11.All.Map2TextureCoord3; - var _Map2TextureCoord4 = OpenTK.Graphics.ES11.All.Map2TextureCoord4; - var _Map2Vertex3 = OpenTK.Graphics.ES11.All.Map2Vertex3; - var _Map2Vertex4 = OpenTK.Graphics.ES11.All.Map2Vertex4; - var _Map1GridDomain = OpenTK.Graphics.ES11.All.Map1GridDomain; - var _Map1GridSegments = OpenTK.Graphics.ES11.All.Map1GridSegments; - var _Map2GridDomain = OpenTK.Graphics.ES11.All.Map2GridDomain; - var _Map2GridSegments = OpenTK.Graphics.ES11.All.Map2GridSegments; - var _Texture1D = OpenTK.Graphics.ES11.All.Texture1D; - var _Texture2D = OpenTK.Graphics.ES11.All.Texture2D; - var _FeedbackBufferPointer = OpenTK.Graphics.ES11.All.FeedbackBufferPointer; - var _FeedbackBufferSize = OpenTK.Graphics.ES11.All.FeedbackBufferSize; - var _FeedbackBufferType = OpenTK.Graphics.ES11.All.FeedbackBufferType; - var _SelectionBufferPointer = OpenTK.Graphics.ES11.All.SelectionBufferPointer; - var _SelectionBufferSize = OpenTK.Graphics.ES11.All.SelectionBufferSize; - var _TextureWidth = OpenTK.Graphics.ES11.All.TextureWidth; - var _MultisampleBufferBit4Qcom = OpenTK.Graphics.ES11.All.MultisampleBufferBit4Qcom; - var _TextureHeight = OpenTK.Graphics.ES11.All.TextureHeight; - var _TextureComponents = OpenTK.Graphics.ES11.All.TextureComponents; - var _TextureInternalFormat = OpenTK.Graphics.ES11.All.TextureInternalFormat; - var _TextureBorderColor = OpenTK.Graphics.ES11.All.TextureBorderColor; - var _TextureBorderColorNv = OpenTK.Graphics.ES11.All.TextureBorderColorNv; - var _TextureBorder = OpenTK.Graphics.ES11.All.TextureBorder; - var _DontCare = OpenTK.Graphics.ES11.All.DontCare; - var _Fastest = OpenTK.Graphics.ES11.All.Fastest; - var _Nicest = OpenTK.Graphics.ES11.All.Nicest; - var _Ambient = OpenTK.Graphics.ES11.All.Ambient; - var _Diffuse = OpenTK.Graphics.ES11.All.Diffuse; - var _Specular = OpenTK.Graphics.ES11.All.Specular; - var _Position = OpenTK.Graphics.ES11.All.Position; - var _SpotDirection = OpenTK.Graphics.ES11.All.SpotDirection; - var _SpotExponent = OpenTK.Graphics.ES11.All.SpotExponent; - var _SpotCutoff = OpenTK.Graphics.ES11.All.SpotCutoff; - var _ConstantAttenuation = OpenTK.Graphics.ES11.All.ConstantAttenuation; - var _LinearAttenuation = OpenTK.Graphics.ES11.All.LinearAttenuation; - var _QuadraticAttenuation = OpenTK.Graphics.ES11.All.QuadraticAttenuation; - var _Compile = OpenTK.Graphics.ES11.All.Compile; - var _CompileAndExecute = OpenTK.Graphics.ES11.All.CompileAndExecute; - var _Byte = OpenTK.Graphics.ES11.All.Byte; - var _UnsignedByte = OpenTK.Graphics.ES11.All.UnsignedByte; - var _Short = OpenTK.Graphics.ES11.All.Short; - var _UnsignedShort = OpenTK.Graphics.ES11.All.UnsignedShort; - var _Int = OpenTK.Graphics.ES11.All.Int; - var _UnsignedInt = OpenTK.Graphics.ES11.All.UnsignedInt; - var _Float = OpenTK.Graphics.ES11.All.Float; - var _Gl2Bytes = OpenTK.Graphics.ES11.All.Gl2Bytes; - var _Gl3Bytes = OpenTK.Graphics.ES11.All.Gl3Bytes; - var _Gl4Bytes = OpenTK.Graphics.ES11.All.Gl4Bytes; - var _Double = OpenTK.Graphics.ES11.All.Double; - var _Fixed = OpenTK.Graphics.ES11.All.Fixed; - var _FixedOes = OpenTK.Graphics.ES11.All.FixedOes; - var _Clear = OpenTK.Graphics.ES11.All.Clear; - var _And = OpenTK.Graphics.ES11.All.And; - var _AndReverse = OpenTK.Graphics.ES11.All.AndReverse; - var _Copy = OpenTK.Graphics.ES11.All.Copy; - var _AndInverted = OpenTK.Graphics.ES11.All.AndInverted; - var _Noop = OpenTK.Graphics.ES11.All.Noop; - var _Xor = OpenTK.Graphics.ES11.All.Xor; - var _Or = OpenTK.Graphics.ES11.All.Or; - var _Nor = OpenTK.Graphics.ES11.All.Nor; - var _Equiv = OpenTK.Graphics.ES11.All.Equiv; - var _Invert = OpenTK.Graphics.ES11.All.Invert; - var _OrReverse = OpenTK.Graphics.ES11.All.OrReverse; - var _CopyInverted = OpenTK.Graphics.ES11.All.CopyInverted; - var _OrInverted = OpenTK.Graphics.ES11.All.OrInverted; - var _Nand = OpenTK.Graphics.ES11.All.Nand; - var _Set = OpenTK.Graphics.ES11.All.Set; - var _Emission = OpenTK.Graphics.ES11.All.Emission; - var _Shininess = OpenTK.Graphics.ES11.All.Shininess; - var _AmbientAndDiffuse = OpenTK.Graphics.ES11.All.AmbientAndDiffuse; - var _ColorIndexes = OpenTK.Graphics.ES11.All.ColorIndexes; - var _Modelview = OpenTK.Graphics.ES11.All.Modelview; - var _Modelview0Ext = OpenTK.Graphics.ES11.All.Modelview0Ext; - var _Projection = OpenTK.Graphics.ES11.All.Projection; - var _Texture = OpenTK.Graphics.ES11.All.Texture; - var _Color = OpenTK.Graphics.ES11.All.Color; - var _ColorExt = OpenTK.Graphics.ES11.All.ColorExt; - var _Depth = OpenTK.Graphics.ES11.All.Depth; - var _DepthExt = OpenTK.Graphics.ES11.All.DepthExt; - var _Stencil = OpenTK.Graphics.ES11.All.Stencil; - var _StencilExt = OpenTK.Graphics.ES11.All.StencilExt; - var _ColorIndex = OpenTK.Graphics.ES11.All.ColorIndex; - var _StencilIndex = OpenTK.Graphics.ES11.All.StencilIndex; - var _DepthComponent = OpenTK.Graphics.ES11.All.DepthComponent; - var _Red = OpenTK.Graphics.ES11.All.Red; - var _RedExt = OpenTK.Graphics.ES11.All.RedExt; - var _Green = OpenTK.Graphics.ES11.All.Green; - var _Blue = OpenTK.Graphics.ES11.All.Blue; - var _Alpha = OpenTK.Graphics.ES11.All.Alpha; - var _Rgb = OpenTK.Graphics.ES11.All.Rgb; - var _Rgba = OpenTK.Graphics.ES11.All.Rgba; - var _Luminance = OpenTK.Graphics.ES11.All.Luminance; - var _LuminanceAlpha = OpenTK.Graphics.ES11.All.LuminanceAlpha; - var _Bitmap = OpenTK.Graphics.ES11.All.Bitmap; - var _PreferDoublebufferHintPgi = OpenTK.Graphics.ES11.All.PreferDoublebufferHintPgi; - var _ConserveMemoryHintPgi = OpenTK.Graphics.ES11.All.ConserveMemoryHintPgi; - var _ReclaimMemoryHintPgi = OpenTK.Graphics.ES11.All.ReclaimMemoryHintPgi; - var _NativeGraphicsBeginHintPgi = OpenTK.Graphics.ES11.All.NativeGraphicsBeginHintPgi; - var _NativeGraphicsEndHintPgi = OpenTK.Graphics.ES11.All.NativeGraphicsEndHintPgi; - var _AlwaysFastHintPgi = OpenTK.Graphics.ES11.All.AlwaysFastHintPgi; - var _AlwaysSoftHintPgi = OpenTK.Graphics.ES11.All.AlwaysSoftHintPgi; - var _AllowDrawObjHintPgi = OpenTK.Graphics.ES11.All.AllowDrawObjHintPgi; - var _AllowDrawWinHintPgi = OpenTK.Graphics.ES11.All.AllowDrawWinHintPgi; - var _AllowDrawFrgHintPgi = OpenTK.Graphics.ES11.All.AllowDrawFrgHintPgi; - var _AllowDrawMemHintPgi = OpenTK.Graphics.ES11.All.AllowDrawMemHintPgi; - var _StrictDepthfuncHintPgi = OpenTK.Graphics.ES11.All.StrictDepthfuncHintPgi; - var _StrictLightingHintPgi = OpenTK.Graphics.ES11.All.StrictLightingHintPgi; - var _StrictScissorHintPgi = OpenTK.Graphics.ES11.All.StrictScissorHintPgi; - var _FullStippleHintPgi = OpenTK.Graphics.ES11.All.FullStippleHintPgi; - var _ClipNearHintPgi = OpenTK.Graphics.ES11.All.ClipNearHintPgi; - var _ClipFarHintPgi = OpenTK.Graphics.ES11.All.ClipFarHintPgi; - var _WideLineHintPgi = OpenTK.Graphics.ES11.All.WideLineHintPgi; - var _BackNormalsHintPgi = OpenTK.Graphics.ES11.All.BackNormalsHintPgi; - var _VertexDataHintPgi = OpenTK.Graphics.ES11.All.VertexDataHintPgi; - var _VertexConsistentHintPgi = OpenTK.Graphics.ES11.All.VertexConsistentHintPgi; - var _MaterialSideHintPgi = OpenTK.Graphics.ES11.All.MaterialSideHintPgi; - var _MaxVertexHintPgi = OpenTK.Graphics.ES11.All.MaxVertexHintPgi; - var _Point = OpenTK.Graphics.ES11.All.Point; - var _Line = OpenTK.Graphics.ES11.All.Line; - var _Fill = OpenTK.Graphics.ES11.All.Fill; - var _Render = OpenTK.Graphics.ES11.All.Render; - var _Feedback = OpenTK.Graphics.ES11.All.Feedback; - var _Select = OpenTK.Graphics.ES11.All.Select; - var _Flat = OpenTK.Graphics.ES11.All.Flat; - var _Smooth = OpenTK.Graphics.ES11.All.Smooth; - var _Keep = OpenTK.Graphics.ES11.All.Keep; - var _Replace = OpenTK.Graphics.ES11.All.Replace; - var _Incr = OpenTK.Graphics.ES11.All.Incr; - var _Decr = OpenTK.Graphics.ES11.All.Decr; - var _Vendor = OpenTK.Graphics.ES11.All.Vendor; - var _Renderer = OpenTK.Graphics.ES11.All.Renderer; - var _Version = OpenTK.Graphics.ES11.All.Version; - var _Extensions = OpenTK.Graphics.ES11.All.Extensions; - var _S = OpenTK.Graphics.ES11.All.S; - var _MultisampleBit = OpenTK.Graphics.ES11.All.MultisampleBit; - var _MultisampleBit3Dfx = OpenTK.Graphics.ES11.All.MultisampleBit3Dfx; - var _MultisampleBitArb = OpenTK.Graphics.ES11.All.MultisampleBitArb; - var _MultisampleBitExt = OpenTK.Graphics.ES11.All.MultisampleBitExt; - var _MultisampleBufferBit5Qcom = OpenTK.Graphics.ES11.All.MultisampleBufferBit5Qcom; - var _T = OpenTK.Graphics.ES11.All.T; - var _R = OpenTK.Graphics.ES11.All.R; - var _Q = OpenTK.Graphics.ES11.All.Q; - var _Modulate = OpenTK.Graphics.ES11.All.Modulate; - var _Decal = OpenTK.Graphics.ES11.All.Decal; - var _TextureEnvMode = OpenTK.Graphics.ES11.All.TextureEnvMode; - var _TextureEnvColor = OpenTK.Graphics.ES11.All.TextureEnvColor; - var _TextureEnv = OpenTK.Graphics.ES11.All.TextureEnv; - var _EyeLinear = OpenTK.Graphics.ES11.All.EyeLinear; - var _ObjectLinear = OpenTK.Graphics.ES11.All.ObjectLinear; - var _SphereMap = OpenTK.Graphics.ES11.All.SphereMap; - var _TextureGenMode = OpenTK.Graphics.ES11.All.TextureGenMode; - var _TextureGenModeOes = OpenTK.Graphics.ES11.All.TextureGenModeOes; - var _ObjectPlane = OpenTK.Graphics.ES11.All.ObjectPlane; - var _EyePlane = OpenTK.Graphics.ES11.All.EyePlane; - var _Nearest = OpenTK.Graphics.ES11.All.Nearest; - var _Linear = OpenTK.Graphics.ES11.All.Linear; - var _NearestMipmapNearest = OpenTK.Graphics.ES11.All.NearestMipmapNearest; - var _LinearMipmapNearest = OpenTK.Graphics.ES11.All.LinearMipmapNearest; - var _NearestMipmapLinear = OpenTK.Graphics.ES11.All.NearestMipmapLinear; - var _LinearMipmapLinear = OpenTK.Graphics.ES11.All.LinearMipmapLinear; - var _TextureMagFilter = OpenTK.Graphics.ES11.All.TextureMagFilter; - var _TextureMinFilter = OpenTK.Graphics.ES11.All.TextureMinFilter; - var _TextureWrapS = OpenTK.Graphics.ES11.All.TextureWrapS; - var _TextureWrapT = OpenTK.Graphics.ES11.All.TextureWrapT; - var _Clamp = OpenTK.Graphics.ES11.All.Clamp; - var _Repeat = OpenTK.Graphics.ES11.All.Repeat; - var _PolygonOffsetUnits = OpenTK.Graphics.ES11.All.PolygonOffsetUnits; - var _PolygonOffsetPoint = OpenTK.Graphics.ES11.All.PolygonOffsetPoint; - var _PolygonOffsetLine = OpenTK.Graphics.ES11.All.PolygonOffsetLine; - var _R3G3B2 = OpenTK.Graphics.ES11.All.R3G3B2; - var _V2f = OpenTK.Graphics.ES11.All.V2f; - var _V3f = OpenTK.Graphics.ES11.All.V3f; - var _C4ubV2f = OpenTK.Graphics.ES11.All.C4ubV2f; - var _C4ubV3f = OpenTK.Graphics.ES11.All.C4ubV3f; - var _C3fV3f = OpenTK.Graphics.ES11.All.C3fV3f; - var _N3fV3f = OpenTK.Graphics.ES11.All.N3fV3f; - var _C4fN3fV3f = OpenTK.Graphics.ES11.All.C4fN3fV3f; - var _T2fV3f = OpenTK.Graphics.ES11.All.T2fV3f; - var _T4fV4f = OpenTK.Graphics.ES11.All.T4fV4f; - var _T2fC4ubV3f = OpenTK.Graphics.ES11.All.T2fC4ubV3f; - var _T2fC3fV3f = OpenTK.Graphics.ES11.All.T2fC3fV3f; - var _T2fN3fV3f = OpenTK.Graphics.ES11.All.T2fN3fV3f; - var _T2fC4fN3fV3f = OpenTK.Graphics.ES11.All.T2fC4fN3fV3f; - var _T4fC4fN3fV4f = OpenTK.Graphics.ES11.All.T4fC4fN3fV4f; - var _ClipDistance0 = OpenTK.Graphics.ES11.All.ClipDistance0; - var _ClipPlane0 = OpenTK.Graphics.ES11.All.ClipPlane0; - var _ClipPlane0Img = OpenTK.Graphics.ES11.All.ClipPlane0Img; - var _ClipDistance1 = OpenTK.Graphics.ES11.All.ClipDistance1; - var _ClipPlane1 = OpenTK.Graphics.ES11.All.ClipPlane1; - var _ClipPlane1Img = OpenTK.Graphics.ES11.All.ClipPlane1Img; - var _ClipDistance2 = OpenTK.Graphics.ES11.All.ClipDistance2; - var _ClipPlane2 = OpenTK.Graphics.ES11.All.ClipPlane2; - var _ClipPlane2Img = OpenTK.Graphics.ES11.All.ClipPlane2Img; - var _ClipDistance3 = OpenTK.Graphics.ES11.All.ClipDistance3; - var _ClipPlane3 = OpenTK.Graphics.ES11.All.ClipPlane3; - var _ClipPlane3Img = OpenTK.Graphics.ES11.All.ClipPlane3Img; - var _ClipDistance4 = OpenTK.Graphics.ES11.All.ClipDistance4; - var _ClipPlane4 = OpenTK.Graphics.ES11.All.ClipPlane4; - var _ClipPlane4Img = OpenTK.Graphics.ES11.All.ClipPlane4Img; - var _ClipDistance5 = OpenTK.Graphics.ES11.All.ClipDistance5; - var _ClipPlane5 = OpenTK.Graphics.ES11.All.ClipPlane5; - var _ClipPlane5Img = OpenTK.Graphics.ES11.All.ClipPlane5Img; - var _ClipDistance6 = OpenTK.Graphics.ES11.All.ClipDistance6; - var _ClipDistance7 = OpenTK.Graphics.ES11.All.ClipDistance7; - var _Light0 = OpenTK.Graphics.ES11.All.Light0; - var _MultisampleBufferBit6Qcom = OpenTK.Graphics.ES11.All.MultisampleBufferBit6Qcom; - var _Light1 = OpenTK.Graphics.ES11.All.Light1; - var _Light2 = OpenTK.Graphics.ES11.All.Light2; - var _Light3 = OpenTK.Graphics.ES11.All.Light3; - var _Light4 = OpenTK.Graphics.ES11.All.Light4; - var _Light5 = OpenTK.Graphics.ES11.All.Light5; - var _Light6 = OpenTK.Graphics.ES11.All.Light6; - var _Light7 = OpenTK.Graphics.ES11.All.Light7; - var _AbgrExt = OpenTK.Graphics.ES11.All.AbgrExt; - var _MultisampleBufferBit7Qcom = OpenTK.Graphics.ES11.All.MultisampleBufferBit7Qcom; - var _ConstantColorExt = OpenTK.Graphics.ES11.All.ConstantColorExt; - var _OneMinusConstantColorExt = OpenTK.Graphics.ES11.All.OneMinusConstantColorExt; - var _ConstantAlphaExt = OpenTK.Graphics.ES11.All.ConstantAlphaExt; - var _OneMinusConstantAlphaExt = OpenTK.Graphics.ES11.All.OneMinusConstantAlphaExt; - var _BlendColorExt = OpenTK.Graphics.ES11.All.BlendColorExt; - var _FuncAddExt = OpenTK.Graphics.ES11.All.FuncAddExt; - var _FuncAddOes = OpenTK.Graphics.ES11.All.FuncAddOes; - var _MinExt = OpenTK.Graphics.ES11.All.MinExt; - var _MaxExt = OpenTK.Graphics.ES11.All.MaxExt; - var _BlendEquationExt = OpenTK.Graphics.ES11.All.BlendEquationExt; - var _BlendEquationOes = OpenTK.Graphics.ES11.All.BlendEquationOes; - var _BlendEquationRgbOes = OpenTK.Graphics.ES11.All.BlendEquationRgbOes; - var _FuncSubtractExt = OpenTK.Graphics.ES11.All.FuncSubtractExt; - var _FuncSubtractOes = OpenTK.Graphics.ES11.All.FuncSubtractOes; - var _FuncReverseSubtractExt = OpenTK.Graphics.ES11.All.FuncReverseSubtractExt; - var _FuncReverseSubtractOes = OpenTK.Graphics.ES11.All.FuncReverseSubtractOes; - var _CmykExt = OpenTK.Graphics.ES11.All.CmykExt; - var _CmykaExt = OpenTK.Graphics.ES11.All.CmykaExt; - var _PackCmykHintExt = OpenTK.Graphics.ES11.All.PackCmykHintExt; - var _UnpackCmykHintExt = OpenTK.Graphics.ES11.All.UnpackCmykHintExt; - var _Convolution1D = OpenTK.Graphics.ES11.All.Convolution1D; - var _Convolution1DExt = OpenTK.Graphics.ES11.All.Convolution1DExt; - var _Convolution2D = OpenTK.Graphics.ES11.All.Convolution2D; - var _Convolution2DExt = OpenTK.Graphics.ES11.All.Convolution2DExt; - var _Separable2D = OpenTK.Graphics.ES11.All.Separable2D; - var _Separable2DExt = OpenTK.Graphics.ES11.All.Separable2DExt; - var _ConvolutionBorderMode = OpenTK.Graphics.ES11.All.ConvolutionBorderMode; - var _ConvolutionBorderModeExt = OpenTK.Graphics.ES11.All.ConvolutionBorderModeExt; - var _ConvolutionFilterScale = OpenTK.Graphics.ES11.All.ConvolutionFilterScale; - var _ConvolutionFilterScaleExt = OpenTK.Graphics.ES11.All.ConvolutionFilterScaleExt; - var _ConvolutionFilterBias = OpenTK.Graphics.ES11.All.ConvolutionFilterBias; - var _ConvolutionFilterBiasExt = OpenTK.Graphics.ES11.All.ConvolutionFilterBiasExt; - var _Reduce = OpenTK.Graphics.ES11.All.Reduce; - var _ReduceExt = OpenTK.Graphics.ES11.All.ReduceExt; - var _ConvolutionFormatExt = OpenTK.Graphics.ES11.All.ConvolutionFormatExt; - var _ConvolutionWidthExt = OpenTK.Graphics.ES11.All.ConvolutionWidthExt; - var _ConvolutionHeightExt = OpenTK.Graphics.ES11.All.ConvolutionHeightExt; - var _MaxConvolutionWidthExt = OpenTK.Graphics.ES11.All.MaxConvolutionWidthExt; - var _MaxConvolutionHeightExt = OpenTK.Graphics.ES11.All.MaxConvolutionHeightExt; - var _PostConvolutionRedScale = OpenTK.Graphics.ES11.All.PostConvolutionRedScale; - var _PostConvolutionRedScaleExt = OpenTK.Graphics.ES11.All.PostConvolutionRedScaleExt; - var _PostConvolutionGreenScale = OpenTK.Graphics.ES11.All.PostConvolutionGreenScale; - var _PostConvolutionGreenScaleExt = OpenTK.Graphics.ES11.All.PostConvolutionGreenScaleExt; - var _PostConvolutionBlueScale = OpenTK.Graphics.ES11.All.PostConvolutionBlueScale; - var _PostConvolutionBlueScaleExt = OpenTK.Graphics.ES11.All.PostConvolutionBlueScaleExt; - var _PostConvolutionAlphaScale = OpenTK.Graphics.ES11.All.PostConvolutionAlphaScale; - var _PostConvolutionAlphaScaleExt = OpenTK.Graphics.ES11.All.PostConvolutionAlphaScaleExt; - var _PostConvolutionRedBias = OpenTK.Graphics.ES11.All.PostConvolutionRedBias; - var _PostConvolutionRedBiasExt = OpenTK.Graphics.ES11.All.PostConvolutionRedBiasExt; - var _PostConvolutionGreenBias = OpenTK.Graphics.ES11.All.PostConvolutionGreenBias; - var _PostConvolutionGreenBiasExt = OpenTK.Graphics.ES11.All.PostConvolutionGreenBiasExt; - var _PostConvolutionBlueBias = OpenTK.Graphics.ES11.All.PostConvolutionBlueBias; - var _PostConvolutionBlueBiasExt = OpenTK.Graphics.ES11.All.PostConvolutionBlueBiasExt; - var _PostConvolutionAlphaBias = OpenTK.Graphics.ES11.All.PostConvolutionAlphaBias; - var _PostConvolutionAlphaBiasExt = OpenTK.Graphics.ES11.All.PostConvolutionAlphaBiasExt; - var _Histogram = OpenTK.Graphics.ES11.All.Histogram; - var _HistogramExt = OpenTK.Graphics.ES11.All.HistogramExt; - var _ProxyHistogram = OpenTK.Graphics.ES11.All.ProxyHistogram; - var _ProxyHistogramExt = OpenTK.Graphics.ES11.All.ProxyHistogramExt; - var _HistogramWidthExt = OpenTK.Graphics.ES11.All.HistogramWidthExt; - var _HistogramFormatExt = OpenTK.Graphics.ES11.All.HistogramFormatExt; - var _HistogramRedSizeExt = OpenTK.Graphics.ES11.All.HistogramRedSizeExt; - var _HistogramGreenSizeExt = OpenTK.Graphics.ES11.All.HistogramGreenSizeExt; - var _HistogramBlueSizeExt = OpenTK.Graphics.ES11.All.HistogramBlueSizeExt; - var _HistogramAlphaSizeExt = OpenTK.Graphics.ES11.All.HistogramAlphaSizeExt; - var _HistogramLuminanceSizeExt = OpenTK.Graphics.ES11.All.HistogramLuminanceSizeExt; - var _HistogramSinkExt = OpenTK.Graphics.ES11.All.HistogramSinkExt; - var _Minmax = OpenTK.Graphics.ES11.All.Minmax; - var _MinmaxExt = OpenTK.Graphics.ES11.All.MinmaxExt; - var _MinmaxFormat = OpenTK.Graphics.ES11.All.MinmaxFormat; - var _MinmaxFormatExt = OpenTK.Graphics.ES11.All.MinmaxFormatExt; - var _MinmaxSink = OpenTK.Graphics.ES11.All.MinmaxSink; - var _MinmaxSinkExt = OpenTK.Graphics.ES11.All.MinmaxSinkExt; - var _TableTooLarge = OpenTK.Graphics.ES11.All.TableTooLarge; - var _TableTooLargeExt = OpenTK.Graphics.ES11.All.TableTooLargeExt; - var _UnsignedByte332 = OpenTK.Graphics.ES11.All.UnsignedByte332; - var _UnsignedByte332Ext = OpenTK.Graphics.ES11.All.UnsignedByte332Ext; - var _UnsignedShort4444 = OpenTK.Graphics.ES11.All.UnsignedShort4444; - var _UnsignedShort4444Ext = OpenTK.Graphics.ES11.All.UnsignedShort4444Ext; - var _UnsignedShort5551 = OpenTK.Graphics.ES11.All.UnsignedShort5551; - var _UnsignedShort5551Ext = OpenTK.Graphics.ES11.All.UnsignedShort5551Ext; - var _UnsignedInt8888 = OpenTK.Graphics.ES11.All.UnsignedInt8888; - var _UnsignedInt8888Ext = OpenTK.Graphics.ES11.All.UnsignedInt8888Ext; - var _UnsignedInt1010102 = OpenTK.Graphics.ES11.All.UnsignedInt1010102; - var _UnsignedInt1010102Ext = OpenTK.Graphics.ES11.All.UnsignedInt1010102Ext; - var _PolygonOffsetFill = OpenTK.Graphics.ES11.All.PolygonOffsetFill; - var _PolygonOffsetFactor = OpenTK.Graphics.ES11.All.PolygonOffsetFactor; - var _PolygonOffsetBiasExt = OpenTK.Graphics.ES11.All.PolygonOffsetBiasExt; - var _RescaleNormal = OpenTK.Graphics.ES11.All.RescaleNormal; - var _RescaleNormalExt = OpenTK.Graphics.ES11.All.RescaleNormalExt; - var _Alpha4 = OpenTK.Graphics.ES11.All.Alpha4; - var _Alpha8 = OpenTK.Graphics.ES11.All.Alpha8; - var _Alpha8Ext = OpenTK.Graphics.ES11.All.Alpha8Ext; - var _Alpha8Oes = OpenTK.Graphics.ES11.All.Alpha8Oes; - var _Alpha12 = OpenTK.Graphics.ES11.All.Alpha12; - var _Alpha16 = OpenTK.Graphics.ES11.All.Alpha16; - var _Luminance4 = OpenTK.Graphics.ES11.All.Luminance4; - var _Luminance8 = OpenTK.Graphics.ES11.All.Luminance8; - var _Luminance8Ext = OpenTK.Graphics.ES11.All.Luminance8Ext; - var _Luminance8Oes = OpenTK.Graphics.ES11.All.Luminance8Oes; - var _Luminance12 = OpenTK.Graphics.ES11.All.Luminance12; - var _Luminance16 = OpenTK.Graphics.ES11.All.Luminance16; - var _Luminance4Alpha4 = OpenTK.Graphics.ES11.All.Luminance4Alpha4; - var _Luminance4Alpha4Oes = OpenTK.Graphics.ES11.All.Luminance4Alpha4Oes; - var _Luminance6Alpha2 = OpenTK.Graphics.ES11.All.Luminance6Alpha2; - var _Luminance8Alpha8 = OpenTK.Graphics.ES11.All.Luminance8Alpha8; - var _Luminance8Alpha8Ext = OpenTK.Graphics.ES11.All.Luminance8Alpha8Ext; - var _Luminance8Alpha8Oes = OpenTK.Graphics.ES11.All.Luminance8Alpha8Oes; - var _Luminance12Alpha4 = OpenTK.Graphics.ES11.All.Luminance12Alpha4; - var _Luminance12Alpha12 = OpenTK.Graphics.ES11.All.Luminance12Alpha12; - var _Luminance16Alpha16 = OpenTK.Graphics.ES11.All.Luminance16Alpha16; - var _Intensity = OpenTK.Graphics.ES11.All.Intensity; - var _Intensity4 = OpenTK.Graphics.ES11.All.Intensity4; - var _Intensity8 = OpenTK.Graphics.ES11.All.Intensity8; - var _Intensity12 = OpenTK.Graphics.ES11.All.Intensity12; - var _Intensity16 = OpenTK.Graphics.ES11.All.Intensity16; - var _Rgb2Ext = OpenTK.Graphics.ES11.All.Rgb2Ext; - var _Rgb4 = OpenTK.Graphics.ES11.All.Rgb4; - var _Rgb5 = OpenTK.Graphics.ES11.All.Rgb5; - var _Rgb8 = OpenTK.Graphics.ES11.All.Rgb8; - var _Rgb8Oes = OpenTK.Graphics.ES11.All.Rgb8Oes; - var _Rgb10 = OpenTK.Graphics.ES11.All.Rgb10; - var _Rgb10Ext = OpenTK.Graphics.ES11.All.Rgb10Ext; - var _Rgb12 = OpenTK.Graphics.ES11.All.Rgb12; - var _Rgb16 = OpenTK.Graphics.ES11.All.Rgb16; - var _Rgba2 = OpenTK.Graphics.ES11.All.Rgba2; - var _Rgba4 = OpenTK.Graphics.ES11.All.Rgba4; - var _Rgba4Oes = OpenTK.Graphics.ES11.All.Rgba4Oes; - var _Rgb5A1 = OpenTK.Graphics.ES11.All.Rgb5A1; - var _Rgb5A1Oes = OpenTK.Graphics.ES11.All.Rgb5A1Oes; - var _Rgba8 = OpenTK.Graphics.ES11.All.Rgba8; - var _Rgba8Oes = OpenTK.Graphics.ES11.All.Rgba8Oes; - var _Rgb10A2 = OpenTK.Graphics.ES11.All.Rgb10A2; - var _Rgb10A2Ext = OpenTK.Graphics.ES11.All.Rgb10A2Ext; - var _Rgba12 = OpenTK.Graphics.ES11.All.Rgba12; - var _Rgba16 = OpenTK.Graphics.ES11.All.Rgba16; - var _TextureRedSize = OpenTK.Graphics.ES11.All.TextureRedSize; - var _TextureGreenSize = OpenTK.Graphics.ES11.All.TextureGreenSize; - var _TextureBlueSize = OpenTK.Graphics.ES11.All.TextureBlueSize; - var _TextureAlphaSize = OpenTK.Graphics.ES11.All.TextureAlphaSize; - var _TextureLuminanceSize = OpenTK.Graphics.ES11.All.TextureLuminanceSize; - var _TextureIntensitySize = OpenTK.Graphics.ES11.All.TextureIntensitySize; - var _ReplaceExt = OpenTK.Graphics.ES11.All.ReplaceExt; - var _ProxyTexture1D = OpenTK.Graphics.ES11.All.ProxyTexture1D; - var _ProxyTexture1DExt = OpenTK.Graphics.ES11.All.ProxyTexture1DExt; - var _ProxyTexture2D = OpenTK.Graphics.ES11.All.ProxyTexture2D; - var _ProxyTexture2DExt = OpenTK.Graphics.ES11.All.ProxyTexture2DExt; - var _TextureTooLargeExt = OpenTK.Graphics.ES11.All.TextureTooLargeExt; - var _TexturePriority = OpenTK.Graphics.ES11.All.TexturePriority; - var _TexturePriorityExt = OpenTK.Graphics.ES11.All.TexturePriorityExt; - var _TextureResident = OpenTK.Graphics.ES11.All.TextureResident; - var _TextureBinding1D = OpenTK.Graphics.ES11.All.TextureBinding1D; - var _TextureBinding2D = OpenTK.Graphics.ES11.All.TextureBinding2D; - var _Texture3DBindingExt = OpenTK.Graphics.ES11.All.Texture3DBindingExt; - var _TextureBinding3D = OpenTK.Graphics.ES11.All.TextureBinding3D; - var _PackSkipImages = OpenTK.Graphics.ES11.All.PackSkipImages; - var _PackSkipImagesExt = OpenTK.Graphics.ES11.All.PackSkipImagesExt; - var _PackImageHeight = OpenTK.Graphics.ES11.All.PackImageHeight; - var _PackImageHeightExt = OpenTK.Graphics.ES11.All.PackImageHeightExt; - var _UnpackSkipImages = OpenTK.Graphics.ES11.All.UnpackSkipImages; - var _UnpackSkipImagesExt = OpenTK.Graphics.ES11.All.UnpackSkipImagesExt; - var _UnpackImageHeight = OpenTK.Graphics.ES11.All.UnpackImageHeight; - var _UnpackImageHeightExt = OpenTK.Graphics.ES11.All.UnpackImageHeightExt; - var _Texture3D = OpenTK.Graphics.ES11.All.Texture3D; - var _Texture3DExt = OpenTK.Graphics.ES11.All.Texture3DExt; - var _Texture3DOes = OpenTK.Graphics.ES11.All.Texture3DOes; - var _ProxyTexture3D = OpenTK.Graphics.ES11.All.ProxyTexture3D; - var _ProxyTexture3DExt = OpenTK.Graphics.ES11.All.ProxyTexture3DExt; - var _TextureDepthExt = OpenTK.Graphics.ES11.All.TextureDepthExt; - var _TextureWrapR = OpenTK.Graphics.ES11.All.TextureWrapR; - var _TextureWrapRExt = OpenTK.Graphics.ES11.All.TextureWrapRExt; - var _TextureWrapROes = OpenTK.Graphics.ES11.All.TextureWrapROes; - var _Max3DTextureSizeExt = OpenTK.Graphics.ES11.All.Max3DTextureSizeExt; - var _VertexArray = OpenTK.Graphics.ES11.All.VertexArray; - var _NormalArray = OpenTK.Graphics.ES11.All.NormalArray; - var _ColorArray = OpenTK.Graphics.ES11.All.ColorArray; - var _IndexArray = OpenTK.Graphics.ES11.All.IndexArray; - var _TextureCoordArray = OpenTK.Graphics.ES11.All.TextureCoordArray; - var _EdgeFlagArray = OpenTK.Graphics.ES11.All.EdgeFlagArray; - var _VertexArraySize = OpenTK.Graphics.ES11.All.VertexArraySize; - var _VertexArrayType = OpenTK.Graphics.ES11.All.VertexArrayType; - var _VertexArrayStride = OpenTK.Graphics.ES11.All.VertexArrayStride; - var _VertexArrayCountExt = OpenTK.Graphics.ES11.All.VertexArrayCountExt; - var _NormalArrayType = OpenTK.Graphics.ES11.All.NormalArrayType; - var _NormalArrayStride = OpenTK.Graphics.ES11.All.NormalArrayStride; - var _NormalArrayCountExt = OpenTK.Graphics.ES11.All.NormalArrayCountExt; - var _ColorArraySize = OpenTK.Graphics.ES11.All.ColorArraySize; - var _ColorArrayType = OpenTK.Graphics.ES11.All.ColorArrayType; - var _ColorArrayStride = OpenTK.Graphics.ES11.All.ColorArrayStride; - var _ColorArrayCountExt = OpenTK.Graphics.ES11.All.ColorArrayCountExt; - var _IndexArrayType = OpenTK.Graphics.ES11.All.IndexArrayType; - var _IndexArrayStride = OpenTK.Graphics.ES11.All.IndexArrayStride; - var _IndexArrayCountExt = OpenTK.Graphics.ES11.All.IndexArrayCountExt; - var _TextureCoordArraySize = OpenTK.Graphics.ES11.All.TextureCoordArraySize; - var _TextureCoordArrayType = OpenTK.Graphics.ES11.All.TextureCoordArrayType; - var _TextureCoordArrayStride = OpenTK.Graphics.ES11.All.TextureCoordArrayStride; - var _TextureCoordArrayCountExt = OpenTK.Graphics.ES11.All.TextureCoordArrayCountExt; - var _EdgeFlagArrayStride = OpenTK.Graphics.ES11.All.EdgeFlagArrayStride; - var _EdgeFlagArrayCountExt = OpenTK.Graphics.ES11.All.EdgeFlagArrayCountExt; - var _VertexArrayPointer = OpenTK.Graphics.ES11.All.VertexArrayPointer; - var _VertexArrayPointerExt = OpenTK.Graphics.ES11.All.VertexArrayPointerExt; - var _NormalArrayPointer = OpenTK.Graphics.ES11.All.NormalArrayPointer; - var _NormalArrayPointerExt = OpenTK.Graphics.ES11.All.NormalArrayPointerExt; - var _ColorArrayPointer = OpenTK.Graphics.ES11.All.ColorArrayPointer; - var _ColorArrayPointerExt = OpenTK.Graphics.ES11.All.ColorArrayPointerExt; - var _IndexArrayPointer = OpenTK.Graphics.ES11.All.IndexArrayPointer; - var _IndexArrayPointerExt = OpenTK.Graphics.ES11.All.IndexArrayPointerExt; - var _TextureCoordArrayPointer = OpenTK.Graphics.ES11.All.TextureCoordArrayPointer; - var _TextureCoordArrayPointerExt = OpenTK.Graphics.ES11.All.TextureCoordArrayPointerExt; - var _EdgeFlagArrayPointer = OpenTK.Graphics.ES11.All.EdgeFlagArrayPointer; - var _EdgeFlagArrayPointerExt = OpenTK.Graphics.ES11.All.EdgeFlagArrayPointerExt; - var _InterlaceSgix = OpenTK.Graphics.ES11.All.InterlaceSgix; - var _DetailTexture2DSgis = OpenTK.Graphics.ES11.All.DetailTexture2DSgis; - var _DetailTexture2DBindingSgis = OpenTK.Graphics.ES11.All.DetailTexture2DBindingSgis; - var _LinearDetailSgis = OpenTK.Graphics.ES11.All.LinearDetailSgis; - var _LinearDetailAlphaSgis = OpenTK.Graphics.ES11.All.LinearDetailAlphaSgis; - var _LinearDetailColorSgis = OpenTK.Graphics.ES11.All.LinearDetailColorSgis; - var _DetailTextureLevelSgis = OpenTK.Graphics.ES11.All.DetailTextureLevelSgis; - var _DetailTextureModeSgis = OpenTK.Graphics.ES11.All.DetailTextureModeSgis; - var _DetailTextureFuncPointsSgis = OpenTK.Graphics.ES11.All.DetailTextureFuncPointsSgis; - var _Multisample = OpenTK.Graphics.ES11.All.Multisample; - var _MultisampleSgis = OpenTK.Graphics.ES11.All.MultisampleSgis; - var _SampleAlphaToCoverage = OpenTK.Graphics.ES11.All.SampleAlphaToCoverage; - var _SampleAlphaToMaskSgis = OpenTK.Graphics.ES11.All.SampleAlphaToMaskSgis; - var _SampleAlphaToOne = OpenTK.Graphics.ES11.All.SampleAlphaToOne; - var _SampleAlphaToOneSgis = OpenTK.Graphics.ES11.All.SampleAlphaToOneSgis; - var _SampleCoverage = OpenTK.Graphics.ES11.All.SampleCoverage; - var _SampleMaskSgis = OpenTK.Graphics.ES11.All.SampleMaskSgis; - var _Gl1PassExt = OpenTK.Graphics.ES11.All.Gl1PassExt; - var _Gl1PassSgis = OpenTK.Graphics.ES11.All.Gl1PassSgis; - var _Gl2Pass0Ext = OpenTK.Graphics.ES11.All.Gl2Pass0Ext; - var _Gl2Pass0Sgis = OpenTK.Graphics.ES11.All.Gl2Pass0Sgis; - var _Gl2Pass1Ext = OpenTK.Graphics.ES11.All.Gl2Pass1Ext; - var _Gl2Pass1Sgis = OpenTK.Graphics.ES11.All.Gl2Pass1Sgis; - var _Gl4Pass0Ext = OpenTK.Graphics.ES11.All.Gl4Pass0Ext; - var _Gl4Pass0Sgis = OpenTK.Graphics.ES11.All.Gl4Pass0Sgis; - var _Gl4Pass1Ext = OpenTK.Graphics.ES11.All.Gl4Pass1Ext; - var _Gl4Pass1Sgis = OpenTK.Graphics.ES11.All.Gl4Pass1Sgis; - var _Gl4Pass2Ext = OpenTK.Graphics.ES11.All.Gl4Pass2Ext; - var _Gl4Pass2Sgis = OpenTK.Graphics.ES11.All.Gl4Pass2Sgis; - var _Gl4Pass3Ext = OpenTK.Graphics.ES11.All.Gl4Pass3Ext; - var _Gl4Pass3Sgis = OpenTK.Graphics.ES11.All.Gl4Pass3Sgis; - var _SampleBuffers = OpenTK.Graphics.ES11.All.SampleBuffers; - var _SampleBuffersSgis = OpenTK.Graphics.ES11.All.SampleBuffersSgis; - var _Samples = OpenTK.Graphics.ES11.All.Samples; - var _SamplesSgis = OpenTK.Graphics.ES11.All.SamplesSgis; - var _SampleCoverageValue = OpenTK.Graphics.ES11.All.SampleCoverageValue; - var _SampleMaskValueSgis = OpenTK.Graphics.ES11.All.SampleMaskValueSgis; - var _SampleCoverageInvert = OpenTK.Graphics.ES11.All.SampleCoverageInvert; - var _SampleMaskInvertSgis = OpenTK.Graphics.ES11.All.SampleMaskInvertSgis; - var _SamplePatternSgis = OpenTK.Graphics.ES11.All.SamplePatternSgis; - var _LinearSharpenSgis = OpenTK.Graphics.ES11.All.LinearSharpenSgis; - var _LinearSharpenAlphaSgis = OpenTK.Graphics.ES11.All.LinearSharpenAlphaSgis; - var _LinearSharpenColorSgis = OpenTK.Graphics.ES11.All.LinearSharpenColorSgis; - var _SharpenTextureFuncPointsSgis = OpenTK.Graphics.ES11.All.SharpenTextureFuncPointsSgis; - var _ColorMatrixSgi = OpenTK.Graphics.ES11.All.ColorMatrixSgi; - var _ColorMatrixStackDepthSgi = OpenTK.Graphics.ES11.All.ColorMatrixStackDepthSgi; - var _MaxColorMatrixStackDepthSgi = OpenTK.Graphics.ES11.All.MaxColorMatrixStackDepthSgi; - var _PostColorMatrixRedScale = OpenTK.Graphics.ES11.All.PostColorMatrixRedScale; - var _PostColorMatrixRedScaleSgi = OpenTK.Graphics.ES11.All.PostColorMatrixRedScaleSgi; - var _PostColorMatrixGreenScale = OpenTK.Graphics.ES11.All.PostColorMatrixGreenScale; - var _PostColorMatrixGreenScaleSgi = OpenTK.Graphics.ES11.All.PostColorMatrixGreenScaleSgi; - var _PostColorMatrixBlueScale = OpenTK.Graphics.ES11.All.PostColorMatrixBlueScale; - var _PostColorMatrixBlueScaleSgi = OpenTK.Graphics.ES11.All.PostColorMatrixBlueScaleSgi; - var _PostColorMatrixAlphaScale = OpenTK.Graphics.ES11.All.PostColorMatrixAlphaScale; - var _PostColorMatrixAlphaScaleSgi = OpenTK.Graphics.ES11.All.PostColorMatrixAlphaScaleSgi; - var _PostColorMatrixRedBias = OpenTK.Graphics.ES11.All.PostColorMatrixRedBias; - var _PostColorMatrixRedBiasSgi = OpenTK.Graphics.ES11.All.PostColorMatrixRedBiasSgi; - var _PostColorMatrixGreenBias = OpenTK.Graphics.ES11.All.PostColorMatrixGreenBias; - var _PostColorMatrixGreenBiasSgi = OpenTK.Graphics.ES11.All.PostColorMatrixGreenBiasSgi; - var _PostColorMatrixBlueBias = OpenTK.Graphics.ES11.All.PostColorMatrixBlueBias; - var _PostColorMatrixBlueBiasSgi = OpenTK.Graphics.ES11.All.PostColorMatrixBlueBiasSgi; - var _PostColorMatrixAlphaBias = OpenTK.Graphics.ES11.All.PostColorMatrixAlphaBias; - var _PostColorMatrixAlphaBiasSgi = OpenTK.Graphics.ES11.All.PostColorMatrixAlphaBiasSgi; - var _TextureColorTableSgi = OpenTK.Graphics.ES11.All.TextureColorTableSgi; - var _ProxyTextureColorTableSgi = OpenTK.Graphics.ES11.All.ProxyTextureColorTableSgi; - var _TextureEnvBiasSgix = OpenTK.Graphics.ES11.All.TextureEnvBiasSgix; - var _ShadowAmbientSgix = OpenTK.Graphics.ES11.All.ShadowAmbientSgix; - var _BlendDstRgbOes = OpenTK.Graphics.ES11.All.BlendDstRgbOes; - var _BlendSrcRgbOes = OpenTK.Graphics.ES11.All.BlendSrcRgbOes; - var _BlendDstAlphaOes = OpenTK.Graphics.ES11.All.BlendDstAlphaOes; - var _BlendSrcAlphaOes = OpenTK.Graphics.ES11.All.BlendSrcAlphaOes; - var _ColorTable = OpenTK.Graphics.ES11.All.ColorTable; - var _ColorTableSgi = OpenTK.Graphics.ES11.All.ColorTableSgi; - var _PostConvolutionColorTable = OpenTK.Graphics.ES11.All.PostConvolutionColorTable; - var _PostConvolutionColorTableSgi = OpenTK.Graphics.ES11.All.PostConvolutionColorTableSgi; - var _PostColorMatrixColorTable = OpenTK.Graphics.ES11.All.PostColorMatrixColorTable; - var _PostColorMatrixColorTableSgi = OpenTK.Graphics.ES11.All.PostColorMatrixColorTableSgi; - var _ProxyColorTable = OpenTK.Graphics.ES11.All.ProxyColorTable; - var _ProxyColorTableSgi = OpenTK.Graphics.ES11.All.ProxyColorTableSgi; - var _ProxyPostConvolutionColorTable = OpenTK.Graphics.ES11.All.ProxyPostConvolutionColorTable; - var _ProxyPostConvolutionColorTableSgi = OpenTK.Graphics.ES11.All.ProxyPostConvolutionColorTableSgi; - var _ProxyPostColorMatrixColorTable = OpenTK.Graphics.ES11.All.ProxyPostColorMatrixColorTable; - var _ProxyPostColorMatrixColorTableSgi = OpenTK.Graphics.ES11.All.ProxyPostColorMatrixColorTableSgi; - var _ColorTableScale = OpenTK.Graphics.ES11.All.ColorTableScale; - var _ColorTableScaleSgi = OpenTK.Graphics.ES11.All.ColorTableScaleSgi; - var _ColorTableBias = OpenTK.Graphics.ES11.All.ColorTableBias; - var _ColorTableBiasSgi = OpenTK.Graphics.ES11.All.ColorTableBiasSgi; - var _ColorTableFormatSgi = OpenTK.Graphics.ES11.All.ColorTableFormatSgi; - var _ColorTableWidthSgi = OpenTK.Graphics.ES11.All.ColorTableWidthSgi; - var _ColorTableRedSizeSgi = OpenTK.Graphics.ES11.All.ColorTableRedSizeSgi; - var _ColorTableGreenSizeSgi = OpenTK.Graphics.ES11.All.ColorTableGreenSizeSgi; - var _ColorTableBlueSizeSgi = OpenTK.Graphics.ES11.All.ColorTableBlueSizeSgi; - var _ColorTableAlphaSizeSgi = OpenTK.Graphics.ES11.All.ColorTableAlphaSizeSgi; - var _ColorTableLuminanceSizeSgi = OpenTK.Graphics.ES11.All.ColorTableLuminanceSizeSgi; - var _ColorTableIntensitySizeSgi = OpenTK.Graphics.ES11.All.ColorTableIntensitySizeSgi; - var _Bgra = OpenTK.Graphics.ES11.All.Bgra; - var _BgraExt = OpenTK.Graphics.ES11.All.BgraExt; - var _BgraImg = OpenTK.Graphics.ES11.All.BgraImg; - var _PhongHintWin = OpenTK.Graphics.ES11.All.PhongHintWin; - var _ClipVolumeClippingHintExt = OpenTK.Graphics.ES11.All.ClipVolumeClippingHintExt; - var _DualAlpha4Sgis = OpenTK.Graphics.ES11.All.DualAlpha4Sgis; - var _DualAlpha8Sgis = OpenTK.Graphics.ES11.All.DualAlpha8Sgis; - var _DualAlpha12Sgis = OpenTK.Graphics.ES11.All.DualAlpha12Sgis; - var _DualAlpha16Sgis = OpenTK.Graphics.ES11.All.DualAlpha16Sgis; - var _DualLuminance4Sgis = OpenTK.Graphics.ES11.All.DualLuminance4Sgis; - var _DualLuminance8Sgis = OpenTK.Graphics.ES11.All.DualLuminance8Sgis; - var _DualLuminance12Sgis = OpenTK.Graphics.ES11.All.DualLuminance12Sgis; - var _DualLuminance16Sgis = OpenTK.Graphics.ES11.All.DualLuminance16Sgis; - var _DualIntensity4Sgis = OpenTK.Graphics.ES11.All.DualIntensity4Sgis; - var _DualIntensity8Sgis = OpenTK.Graphics.ES11.All.DualIntensity8Sgis; - var _DualIntensity12Sgis = OpenTK.Graphics.ES11.All.DualIntensity12Sgis; - var _DualIntensity16Sgis = OpenTK.Graphics.ES11.All.DualIntensity16Sgis; - var _DualLuminanceAlpha4Sgis = OpenTK.Graphics.ES11.All.DualLuminanceAlpha4Sgis; - var _DualLuminanceAlpha8Sgis = OpenTK.Graphics.ES11.All.DualLuminanceAlpha8Sgis; - var _QuadAlpha4Sgis = OpenTK.Graphics.ES11.All.QuadAlpha4Sgis; - var _QuadAlpha8Sgis = OpenTK.Graphics.ES11.All.QuadAlpha8Sgis; - var _QuadLuminance4Sgis = OpenTK.Graphics.ES11.All.QuadLuminance4Sgis; - var _QuadLuminance8Sgis = OpenTK.Graphics.ES11.All.QuadLuminance8Sgis; - var _QuadIntensity4Sgis = OpenTK.Graphics.ES11.All.QuadIntensity4Sgis; - var _QuadIntensity8Sgis = OpenTK.Graphics.ES11.All.QuadIntensity8Sgis; - var _DualTextureSelectSgis = OpenTK.Graphics.ES11.All.DualTextureSelectSgis; - var _QuadTextureSelectSgis = OpenTK.Graphics.ES11.All.QuadTextureSelectSgis; - var _PointSizeMin = OpenTK.Graphics.ES11.All.PointSizeMin; - var _PointSizeMinArb = OpenTK.Graphics.ES11.All.PointSizeMinArb; - var _PointSizeMinExt = OpenTK.Graphics.ES11.All.PointSizeMinExt; - var _PointSizeMinSgis = OpenTK.Graphics.ES11.All.PointSizeMinSgis; - var _PointSizeMax = OpenTK.Graphics.ES11.All.PointSizeMax; - var _PointSizeMaxArb = OpenTK.Graphics.ES11.All.PointSizeMaxArb; - var _PointSizeMaxExt = OpenTK.Graphics.ES11.All.PointSizeMaxExt; - var _PointSizeMaxSgis = OpenTK.Graphics.ES11.All.PointSizeMaxSgis; - var _PointFadeThresholdSize = OpenTK.Graphics.ES11.All.PointFadeThresholdSize; - var _PointFadeThresholdSizeArb = OpenTK.Graphics.ES11.All.PointFadeThresholdSizeArb; - var _PointFadeThresholdSizeExt = OpenTK.Graphics.ES11.All.PointFadeThresholdSizeExt; - var _PointFadeThresholdSizeSgis = OpenTK.Graphics.ES11.All.PointFadeThresholdSizeSgis; - var _DistanceAttenuationExt = OpenTK.Graphics.ES11.All.DistanceAttenuationExt; - var _DistanceAttenuationSgis = OpenTK.Graphics.ES11.All.DistanceAttenuationSgis; - var _PointDistanceAttenuation = OpenTK.Graphics.ES11.All.PointDistanceAttenuation; - var _PointDistanceAttenuationArb = OpenTK.Graphics.ES11.All.PointDistanceAttenuationArb; - var _FogFuncSgis = OpenTK.Graphics.ES11.All.FogFuncSgis; - var _FogFuncPointsSgis = OpenTK.Graphics.ES11.All.FogFuncPointsSgis; - var _MaxFogFuncPointsSgis = OpenTK.Graphics.ES11.All.MaxFogFuncPointsSgis; - var _ClampToBorder = OpenTK.Graphics.ES11.All.ClampToBorder; - var _ClampToBorderArb = OpenTK.Graphics.ES11.All.ClampToBorderArb; - var _ClampToBorderNv = OpenTK.Graphics.ES11.All.ClampToBorderNv; - var _ClampToBorderSgis = OpenTK.Graphics.ES11.All.ClampToBorderSgis; - var _TextureMultiBufferHintSgix = OpenTK.Graphics.ES11.All.TextureMultiBufferHintSgix; - var _ClampToEdge = OpenTK.Graphics.ES11.All.ClampToEdge; - var _ClampToEdgeSgis = OpenTK.Graphics.ES11.All.ClampToEdgeSgis; - var _PackSkipVolumesSgis = OpenTK.Graphics.ES11.All.PackSkipVolumesSgis; - var _PackImageDepthSgis = OpenTK.Graphics.ES11.All.PackImageDepthSgis; - var _UnpackSkipVolumesSgis = OpenTK.Graphics.ES11.All.UnpackSkipVolumesSgis; - var _UnpackImageDepthSgis = OpenTK.Graphics.ES11.All.UnpackImageDepthSgis; - var _Texture4DSgis = OpenTK.Graphics.ES11.All.Texture4DSgis; - var _ProxyTexture4DSgis = OpenTK.Graphics.ES11.All.ProxyTexture4DSgis; - var _Texture4DsizeSgis = OpenTK.Graphics.ES11.All.Texture4DsizeSgis; - var _TextureWrapQSgis = OpenTK.Graphics.ES11.All.TextureWrapQSgis; - var _Max4DTextureSizeSgis = OpenTK.Graphics.ES11.All.Max4DTextureSizeSgis; - var _PixelTexGenSgix = OpenTK.Graphics.ES11.All.PixelTexGenSgix; - var _TextureMinLod = OpenTK.Graphics.ES11.All.TextureMinLod; - var _TextureMinLodSgis = OpenTK.Graphics.ES11.All.TextureMinLodSgis; - var _TextureMaxLod = OpenTK.Graphics.ES11.All.TextureMaxLod; - var _TextureMaxLodSgis = OpenTK.Graphics.ES11.All.TextureMaxLodSgis; - var _TextureBaseLevel = OpenTK.Graphics.ES11.All.TextureBaseLevel; - var _TextureBaseLevelSgis = OpenTK.Graphics.ES11.All.TextureBaseLevelSgis; - var _TextureMaxLevel = OpenTK.Graphics.ES11.All.TextureMaxLevel; - var _TextureMaxLevelApple = OpenTK.Graphics.ES11.All.TextureMaxLevelApple; - var _TextureMaxLevelSgis = OpenTK.Graphics.ES11.All.TextureMaxLevelSgis; - var _PixelTileBestAlignmentSgix = OpenTK.Graphics.ES11.All.PixelTileBestAlignmentSgix; - var _PixelTileCacheIncrementSgix = OpenTK.Graphics.ES11.All.PixelTileCacheIncrementSgix; - var _PixelTileWidthSgix = OpenTK.Graphics.ES11.All.PixelTileWidthSgix; - var _PixelTileHeightSgix = OpenTK.Graphics.ES11.All.PixelTileHeightSgix; - var _PixelTileGridWidthSgix = OpenTK.Graphics.ES11.All.PixelTileGridWidthSgix; - var _PixelTileGridHeightSgix = OpenTK.Graphics.ES11.All.PixelTileGridHeightSgix; - var _PixelTileGridDepthSgix = OpenTK.Graphics.ES11.All.PixelTileGridDepthSgix; - var _PixelTileCacheSizeSgix = OpenTK.Graphics.ES11.All.PixelTileCacheSizeSgix; - var _Filter4Sgis = OpenTK.Graphics.ES11.All.Filter4Sgis; - var _TextureFilter4SizeSgis = OpenTK.Graphics.ES11.All.TextureFilter4SizeSgis; - var _SpriteSgix = OpenTK.Graphics.ES11.All.SpriteSgix; - var _SpriteModeSgix = OpenTK.Graphics.ES11.All.SpriteModeSgix; - var _SpriteAxisSgix = OpenTK.Graphics.ES11.All.SpriteAxisSgix; - var _SpriteTranslationSgix = OpenTK.Graphics.ES11.All.SpriteTranslationSgix; - var _Texture4DBindingSgis = OpenTK.Graphics.ES11.All.Texture4DBindingSgis; - var _LinearClipmapLinearSgix = OpenTK.Graphics.ES11.All.LinearClipmapLinearSgix; - var _TextureClipmapCenterSgix = OpenTK.Graphics.ES11.All.TextureClipmapCenterSgix; - var _TextureClipmapFrameSgix = OpenTK.Graphics.ES11.All.TextureClipmapFrameSgix; - var _TextureClipmapOffsetSgix = OpenTK.Graphics.ES11.All.TextureClipmapOffsetSgix; - var _TextureClipmapVirtualDepthSgix = OpenTK.Graphics.ES11.All.TextureClipmapVirtualDepthSgix; - var _TextureClipmapLodOffsetSgix = OpenTK.Graphics.ES11.All.TextureClipmapLodOffsetSgix; - var _TextureClipmapDepthSgix = OpenTK.Graphics.ES11.All.TextureClipmapDepthSgix; - var _MaxClipmapDepthSgix = OpenTK.Graphics.ES11.All.MaxClipmapDepthSgix; - var _MaxClipmapVirtualDepthSgix = OpenTK.Graphics.ES11.All.MaxClipmapVirtualDepthSgix; - var _PostTextureFilterBiasSgix = OpenTK.Graphics.ES11.All.PostTextureFilterBiasSgix; - var _PostTextureFilterScaleSgix = OpenTK.Graphics.ES11.All.PostTextureFilterScaleSgix; - var _PostTextureFilterBiasRangeSgix = OpenTK.Graphics.ES11.All.PostTextureFilterBiasRangeSgix; - var _PostTextureFilterScaleRangeSgix = OpenTK.Graphics.ES11.All.PostTextureFilterScaleRangeSgix; - var _ReferencePlaneSgix = OpenTK.Graphics.ES11.All.ReferencePlaneSgix; - var _ReferencePlaneEquationSgix = OpenTK.Graphics.ES11.All.ReferencePlaneEquationSgix; - var _IrInstrument1Sgix = OpenTK.Graphics.ES11.All.IrInstrument1Sgix; - var _InstrumentBufferPointerSgix = OpenTK.Graphics.ES11.All.InstrumentBufferPointerSgix; - var _InstrumentMeasurementsSgix = OpenTK.Graphics.ES11.All.InstrumentMeasurementsSgix; - var _ListPrioritySgix = OpenTK.Graphics.ES11.All.ListPrioritySgix; - var _CalligraphicFragmentSgix = OpenTK.Graphics.ES11.All.CalligraphicFragmentSgix; - var _PixelTexGenQCeilingSgix = OpenTK.Graphics.ES11.All.PixelTexGenQCeilingSgix; - var _PixelTexGenQRoundSgix = OpenTK.Graphics.ES11.All.PixelTexGenQRoundSgix; - var _PixelTexGenQFloorSgix = OpenTK.Graphics.ES11.All.PixelTexGenQFloorSgix; - var _PixelTexGenAlphaReplaceSgix = OpenTK.Graphics.ES11.All.PixelTexGenAlphaReplaceSgix; - var _PixelTexGenAlphaNoReplaceSgix = OpenTK.Graphics.ES11.All.PixelTexGenAlphaNoReplaceSgix; - var _PixelTexGenAlphaLsSgix = OpenTK.Graphics.ES11.All.PixelTexGenAlphaLsSgix; - var _PixelTexGenAlphaMsSgix = OpenTK.Graphics.ES11.All.PixelTexGenAlphaMsSgix; - var _FramezoomSgix = OpenTK.Graphics.ES11.All.FramezoomSgix; - var _FramezoomFactorSgix = OpenTK.Graphics.ES11.All.FramezoomFactorSgix; - var _MaxFramezoomFactorSgix = OpenTK.Graphics.ES11.All.MaxFramezoomFactorSgix; - var _TextureLodBiasSSgix = OpenTK.Graphics.ES11.All.TextureLodBiasSSgix; - var _TextureLodBiasTSgix = OpenTK.Graphics.ES11.All.TextureLodBiasTSgix; - var _TextureLodBiasRSgix = OpenTK.Graphics.ES11.All.TextureLodBiasRSgix; - var _GenerateMipmap = OpenTK.Graphics.ES11.All.GenerateMipmap; - var _GenerateMipmapSgis = OpenTK.Graphics.ES11.All.GenerateMipmapSgis; - var _GenerateMipmapHint = OpenTK.Graphics.ES11.All.GenerateMipmapHint; - var _GenerateMipmapHintSgis = OpenTK.Graphics.ES11.All.GenerateMipmapHintSgis; - var _GeometryDeformationSgix = OpenTK.Graphics.ES11.All.GeometryDeformationSgix; - var _TextureDeformationSgix = OpenTK.Graphics.ES11.All.TextureDeformationSgix; - var _DeformationsMaskSgix = OpenTK.Graphics.ES11.All.DeformationsMaskSgix; - var _FogOffsetSgix = OpenTK.Graphics.ES11.All.FogOffsetSgix; - var _FogOffsetValueSgix = OpenTK.Graphics.ES11.All.FogOffsetValueSgix; - var _TextureCompareSgix = OpenTK.Graphics.ES11.All.TextureCompareSgix; - var _TextureCompareOperatorSgix = OpenTK.Graphics.ES11.All.TextureCompareOperatorSgix; - var _TextureLequalRSgix = OpenTK.Graphics.ES11.All.TextureLequalRSgix; - var _TextureGequalRSgix = OpenTK.Graphics.ES11.All.TextureGequalRSgix; - var _DepthComponent16Oes = OpenTK.Graphics.ES11.All.DepthComponent16Oes; - var _DepthComponent16Sgix = OpenTK.Graphics.ES11.All.DepthComponent16Sgix; - var _DepthComponent24Oes = OpenTK.Graphics.ES11.All.DepthComponent24Oes; - var _DepthComponent24Sgix = OpenTK.Graphics.ES11.All.DepthComponent24Sgix; - var _DepthComponent32Oes = OpenTK.Graphics.ES11.All.DepthComponent32Oes; - var _DepthComponent32Sgix = OpenTK.Graphics.ES11.All.DepthComponent32Sgix; - var _Ycrcb422Sgix = OpenTK.Graphics.ES11.All.Ycrcb422Sgix; - var _Ycrcb444Sgix = OpenTK.Graphics.ES11.All.Ycrcb444Sgix; - var _EyeDistanceToPointSgis = OpenTK.Graphics.ES11.All.EyeDistanceToPointSgis; - var _ObjectDistanceToPointSgis = OpenTK.Graphics.ES11.All.ObjectDistanceToPointSgis; - var _EyeDistanceToLineSgis = OpenTK.Graphics.ES11.All.EyeDistanceToLineSgis; - var _ObjectDistanceToLineSgis = OpenTK.Graphics.ES11.All.ObjectDistanceToLineSgis; - var _EyePointSgis = OpenTK.Graphics.ES11.All.EyePointSgis; - var _ObjectPointSgis = OpenTK.Graphics.ES11.All.ObjectPointSgis; - var _EyeLineSgis = OpenTK.Graphics.ES11.All.EyeLineSgis; - var _ObjectLineSgis = OpenTK.Graphics.ES11.All.ObjectLineSgis; - var _LightModelColorControl = OpenTK.Graphics.ES11.All.LightModelColorControl; - var _LightModelColorControlExt = OpenTK.Graphics.ES11.All.LightModelColorControlExt; - var _SingleColor = OpenTK.Graphics.ES11.All.SingleColor; - var _SingleColorExt = OpenTK.Graphics.ES11.All.SingleColorExt; - var _SeparateSpecularColor = OpenTK.Graphics.ES11.All.SeparateSpecularColor; - var _SeparateSpecularColorExt = OpenTK.Graphics.ES11.All.SeparateSpecularColorExt; - var _SharedTexturePaletteExt = OpenTK.Graphics.ES11.All.SharedTexturePaletteExt; - var _FramebufferAttachmentColorEncodingExt = OpenTK.Graphics.ES11.All.FramebufferAttachmentColorEncodingExt; - var _R8Ext = OpenTK.Graphics.ES11.All.R8Ext; - var _Rg8Ext = OpenTK.Graphics.ES11.All.Rg8Ext; - var _R16fExt = OpenTK.Graphics.ES11.All.R16fExt; - var _R32fExt = OpenTK.Graphics.ES11.All.R32fExt; - var _Rg16fExt = OpenTK.Graphics.ES11.All.Rg16fExt; - var _Rg32fExt = OpenTK.Graphics.ES11.All.Rg32fExt; - var _LoseContextOnResetExt = OpenTK.Graphics.ES11.All.LoseContextOnResetExt; - var _GuiltyContextResetExt = OpenTK.Graphics.ES11.All.GuiltyContextResetExt; - var _InnocentContextResetExt = OpenTK.Graphics.ES11.All.InnocentContextResetExt; - var _UnknownContextResetExt = OpenTK.Graphics.ES11.All.UnknownContextResetExt; - var _ResetNotificationStrategyExt = OpenTK.Graphics.ES11.All.ResetNotificationStrategyExt; - var _ProgramBinaryRetrievableHint = OpenTK.Graphics.ES11.All.ProgramBinaryRetrievableHint; - var _NoResetNotificationExt = OpenTK.Graphics.ES11.All.NoResetNotificationExt; - var _ConvolutionHintSgix = OpenTK.Graphics.ES11.All.ConvolutionHintSgix; - var _AlphaMinSgix = OpenTK.Graphics.ES11.All.AlphaMinSgix; - var _AlphaMaxSgix = OpenTK.Graphics.ES11.All.AlphaMaxSgix; - var _ScalebiasHintSgix = OpenTK.Graphics.ES11.All.ScalebiasHintSgix; - var _AsyncMarkerSgix = OpenTK.Graphics.ES11.All.AsyncMarkerSgix; - var _PixelTexGenModeSgix = OpenTK.Graphics.ES11.All.PixelTexGenModeSgix; - var _AsyncHistogramSgix = OpenTK.Graphics.ES11.All.AsyncHistogramSgix; - var _MaxAsyncHistogramSgix = OpenTK.Graphics.ES11.All.MaxAsyncHistogramSgix; - var _PixelTextureSgis = OpenTK.Graphics.ES11.All.PixelTextureSgis; - var _PixelFragmentRgbSourceSgis = OpenTK.Graphics.ES11.All.PixelFragmentRgbSourceSgis; - var _PixelFragmentAlphaSourceSgis = OpenTK.Graphics.ES11.All.PixelFragmentAlphaSourceSgis; - var _LineQualityHintSgix = OpenTK.Graphics.ES11.All.LineQualityHintSgix; - var _AsyncTexImageSgix = OpenTK.Graphics.ES11.All.AsyncTexImageSgix; - var _AsyncDrawPixelsSgix = OpenTK.Graphics.ES11.All.AsyncDrawPixelsSgix; - var _AsyncReadPixelsSgix = OpenTK.Graphics.ES11.All.AsyncReadPixelsSgix; - var _MaxAsyncTexImageSgix = OpenTK.Graphics.ES11.All.MaxAsyncTexImageSgix; - var _MaxAsyncDrawPixelsSgix = OpenTK.Graphics.ES11.All.MaxAsyncDrawPixelsSgix; - var _MaxAsyncReadPixelsSgix = OpenTK.Graphics.ES11.All.MaxAsyncReadPixelsSgix; - var _UnsignedShort565 = OpenTK.Graphics.ES11.All.UnsignedShort565; - var _UnsignedShort4444Rev = OpenTK.Graphics.ES11.All.UnsignedShort4444Rev; - var _UnsignedShort4444RevExt = OpenTK.Graphics.ES11.All.UnsignedShort4444RevExt; - var _UnsignedShort4444RevImg = OpenTK.Graphics.ES11.All.UnsignedShort4444RevImg; - var _UnsignedShort1555Rev = OpenTK.Graphics.ES11.All.UnsignedShort1555Rev; - var _UnsignedShort1555RevExt = OpenTK.Graphics.ES11.All.UnsignedShort1555RevExt; - var _TextureMaxClampSSgix = OpenTK.Graphics.ES11.All.TextureMaxClampSSgix; - var _TextureMaxClampTSgix = OpenTK.Graphics.ES11.All.TextureMaxClampTSgix; - var _TextureMaxClampRSgix = OpenTK.Graphics.ES11.All.TextureMaxClampRSgix; - var _MirroredRepeatOes = OpenTK.Graphics.ES11.All.MirroredRepeatOes; - var _VertexPreclipSgix = OpenTK.Graphics.ES11.All.VertexPreclipSgix; - var _VertexPreclipHintSgix = OpenTK.Graphics.ES11.All.VertexPreclipHintSgix; - var _CompressedRgbS3tcDxt1Ext = OpenTK.Graphics.ES11.All.CompressedRgbS3tcDxt1Ext; - var _CompressedRgbaS3tcDxt1Ext = OpenTK.Graphics.ES11.All.CompressedRgbaS3tcDxt1Ext; - var _FragmentLightingSgix = OpenTK.Graphics.ES11.All.FragmentLightingSgix; - var _FragmentColorMaterialSgix = OpenTK.Graphics.ES11.All.FragmentColorMaterialSgix; - var _FragmentColorMaterialFaceSgix = OpenTK.Graphics.ES11.All.FragmentColorMaterialFaceSgix; - var _FragmentColorMaterialParameterSgix = OpenTK.Graphics.ES11.All.FragmentColorMaterialParameterSgix; - var _MaxFragmentLightsSgix = OpenTK.Graphics.ES11.All.MaxFragmentLightsSgix; - var _MaxActiveLightsSgix = OpenTK.Graphics.ES11.All.MaxActiveLightsSgix; - var _LightEnvModeSgix = OpenTK.Graphics.ES11.All.LightEnvModeSgix; - var _FragmentLightModelLocalViewerSgix = OpenTK.Graphics.ES11.All.FragmentLightModelLocalViewerSgix; - var _FragmentLightModelTwoSideSgix = OpenTK.Graphics.ES11.All.FragmentLightModelTwoSideSgix; - var _FragmentLightModelAmbientSgix = OpenTK.Graphics.ES11.All.FragmentLightModelAmbientSgix; - var _FragmentLightModelNormalInterpolationSgix = OpenTK.Graphics.ES11.All.FragmentLightModelNormalInterpolationSgix; - var _FragmentLight0Sgix = OpenTK.Graphics.ES11.All.FragmentLight0Sgix; - var _FragmentLight1Sgix = OpenTK.Graphics.ES11.All.FragmentLight1Sgix; - var _FragmentLight2Sgix = OpenTK.Graphics.ES11.All.FragmentLight2Sgix; - var _FragmentLight3Sgix = OpenTK.Graphics.ES11.All.FragmentLight3Sgix; - var _FragmentLight4Sgix = OpenTK.Graphics.ES11.All.FragmentLight4Sgix; - var _FragmentLight5Sgix = OpenTK.Graphics.ES11.All.FragmentLight5Sgix; - var _FragmentLight6Sgix = OpenTK.Graphics.ES11.All.FragmentLight6Sgix; - var _FragmentLight7Sgix = OpenTK.Graphics.ES11.All.FragmentLight7Sgix; - var _PackResampleSgix = OpenTK.Graphics.ES11.All.PackResampleSgix; - var _UnpackResampleSgix = OpenTK.Graphics.ES11.All.UnpackResampleSgix; - var _ResampleReplicateSgix = OpenTK.Graphics.ES11.All.ResampleReplicateSgix; - var _ResampleZeroFillSgix = OpenTK.Graphics.ES11.All.ResampleZeroFillSgix; - var _ResampleDecimateSgix = OpenTK.Graphics.ES11.All.ResampleDecimateSgix; - var _NearestClipmapNearestSgix = OpenTK.Graphics.ES11.All.NearestClipmapNearestSgix; - var _NearestClipmapLinearSgix = OpenTK.Graphics.ES11.All.NearestClipmapLinearSgix; - var _LinearClipmapNearestSgix = OpenTK.Graphics.ES11.All.LinearClipmapNearestSgix; - var _AliasedPointSizeRange = OpenTK.Graphics.ES11.All.AliasedPointSizeRange; - var _AliasedLineWidthRange = OpenTK.Graphics.ES11.All.AliasedLineWidthRange; - var _Texture0 = OpenTK.Graphics.ES11.All.Texture0; - var _Texture1 = OpenTK.Graphics.ES11.All.Texture1; - var _Texture2 = OpenTK.Graphics.ES11.All.Texture2; - var _Texture3 = OpenTK.Graphics.ES11.All.Texture3; - var _Texture4 = OpenTK.Graphics.ES11.All.Texture4; - var _Texture5 = OpenTK.Graphics.ES11.All.Texture5; - var _Texture6 = OpenTK.Graphics.ES11.All.Texture6; - var _Texture7 = OpenTK.Graphics.ES11.All.Texture7; - var _Texture8 = OpenTK.Graphics.ES11.All.Texture8; - var _Texture9 = OpenTK.Graphics.ES11.All.Texture9; - var _Texture10 = OpenTK.Graphics.ES11.All.Texture10; - var _Texture11 = OpenTK.Graphics.ES11.All.Texture11; - var _Texture12 = OpenTK.Graphics.ES11.All.Texture12; - var _Texture13 = OpenTK.Graphics.ES11.All.Texture13; - var _Texture14 = OpenTK.Graphics.ES11.All.Texture14; - var _Texture15 = OpenTK.Graphics.ES11.All.Texture15; - var _Texture16 = OpenTK.Graphics.ES11.All.Texture16; - var _Texture17 = OpenTK.Graphics.ES11.All.Texture17; - var _Texture18 = OpenTK.Graphics.ES11.All.Texture18; - var _Texture19 = OpenTK.Graphics.ES11.All.Texture19; - var _Texture20 = OpenTK.Graphics.ES11.All.Texture20; - var _Texture21 = OpenTK.Graphics.ES11.All.Texture21; - var _Texture22 = OpenTK.Graphics.ES11.All.Texture22; - var _Texture23 = OpenTK.Graphics.ES11.All.Texture23; - var _Texture24 = OpenTK.Graphics.ES11.All.Texture24; - var _Texture25 = OpenTK.Graphics.ES11.All.Texture25; - var _Texture26 = OpenTK.Graphics.ES11.All.Texture26; - var _Texture27 = OpenTK.Graphics.ES11.All.Texture27; - var _Texture28 = OpenTK.Graphics.ES11.All.Texture28; - var _Texture29 = OpenTK.Graphics.ES11.All.Texture29; - var _Texture30 = OpenTK.Graphics.ES11.All.Texture30; - var _Texture31 = OpenTK.Graphics.ES11.All.Texture31; - var _ActiveTexture = OpenTK.Graphics.ES11.All.ActiveTexture; - var _ClientActiveTexture = OpenTK.Graphics.ES11.All.ClientActiveTexture; - var _MaxTextureUnits = OpenTK.Graphics.ES11.All.MaxTextureUnits; - var _Subtract = OpenTK.Graphics.ES11.All.Subtract; - var _MaxRenderbufferSizeOes = OpenTK.Graphics.ES11.All.MaxRenderbufferSizeOes; - var _TextureCompressionHint = OpenTK.Graphics.ES11.All.TextureCompressionHint; - var _TextureCompressionHintArb = OpenTK.Graphics.ES11.All.TextureCompressionHintArb; - var _AllCompletedNv = OpenTK.Graphics.ES11.All.AllCompletedNv; - var _FenceStatusNv = OpenTK.Graphics.ES11.All.FenceStatusNv; - var _FenceConditionNv = OpenTK.Graphics.ES11.All.FenceConditionNv; - var _DepthStencilOes = OpenTK.Graphics.ES11.All.DepthStencilOes; - var _UnsignedInt248Oes = OpenTK.Graphics.ES11.All.UnsignedInt248Oes; - var _MaxTextureLodBiasExt = OpenTK.Graphics.ES11.All.MaxTextureLodBiasExt; - var _TextureMaxAnisotropyExt = OpenTK.Graphics.ES11.All.TextureMaxAnisotropyExt; - var _MaxTextureMaxAnisotropyExt = OpenTK.Graphics.ES11.All.MaxTextureMaxAnisotropyExt; - var _TextureFilterControlExt = OpenTK.Graphics.ES11.All.TextureFilterControlExt; - var _TextureLodBiasExt = OpenTK.Graphics.ES11.All.TextureLodBiasExt; - var _IncrWrapOes = OpenTK.Graphics.ES11.All.IncrWrapOes; - var _DecrWrapOes = OpenTK.Graphics.ES11.All.DecrWrapOes; - var _NormalMapOes = OpenTK.Graphics.ES11.All.NormalMapOes; - var _ReflectionMapOes = OpenTK.Graphics.ES11.All.ReflectionMapOes; - var _TextureCubeMapOes = OpenTK.Graphics.ES11.All.TextureCubeMapOes; - var _TextureBindingCubeMapOes = OpenTK.Graphics.ES11.All.TextureBindingCubeMapOes; - var _TextureCubeMapPositiveXOes = OpenTK.Graphics.ES11.All.TextureCubeMapPositiveXOes; - var _TextureCubeMapNegativeXOes = OpenTK.Graphics.ES11.All.TextureCubeMapNegativeXOes; - var _TextureCubeMapPositiveYOes = OpenTK.Graphics.ES11.All.TextureCubeMapPositiveYOes; - var _TextureCubeMapNegativeYOes = OpenTK.Graphics.ES11.All.TextureCubeMapNegativeYOes; - var _TextureCubeMapPositiveZOes = OpenTK.Graphics.ES11.All.TextureCubeMapPositiveZOes; - var _TextureCubeMapNegativeZOes = OpenTK.Graphics.ES11.All.TextureCubeMapNegativeZOes; - var _MaxCubeMapTextureSizeOes = OpenTK.Graphics.ES11.All.MaxCubeMapTextureSizeOes; - var _VertexArrayStorageHintApple = OpenTK.Graphics.ES11.All.VertexArrayStorageHintApple; - var _MultisampleFilterHintNv = OpenTK.Graphics.ES11.All.MultisampleFilterHintNv; - var _Combine = OpenTK.Graphics.ES11.All.Combine; - var _CombineRgb = OpenTK.Graphics.ES11.All.CombineRgb; - var _CombineAlpha = OpenTK.Graphics.ES11.All.CombineAlpha; - var _RgbScale = OpenTK.Graphics.ES11.All.RgbScale; - var _AddSigned = OpenTK.Graphics.ES11.All.AddSigned; - var _Interpolate = OpenTK.Graphics.ES11.All.Interpolate; - var _Constant = OpenTK.Graphics.ES11.All.Constant; - var _PrimaryColor = OpenTK.Graphics.ES11.All.PrimaryColor; - var _Previous = OpenTK.Graphics.ES11.All.Previous; - var _Src0Rgb = OpenTK.Graphics.ES11.All.Src0Rgb; - var _Src1Rgb = OpenTK.Graphics.ES11.All.Src1Rgb; - var _Src2Rgb = OpenTK.Graphics.ES11.All.Src2Rgb; - var _Src0Alpha = OpenTK.Graphics.ES11.All.Src0Alpha; - var _Src1Alpha = OpenTK.Graphics.ES11.All.Src1Alpha; - var _Src2Alpha = OpenTK.Graphics.ES11.All.Src2Alpha; - var _Operand0Rgb = OpenTK.Graphics.ES11.All.Operand0Rgb; - var _Operand1Rgb = OpenTK.Graphics.ES11.All.Operand1Rgb; - var _Operand2Rgb = OpenTK.Graphics.ES11.All.Operand2Rgb; - var _Operand0Alpha = OpenTK.Graphics.ES11.All.Operand0Alpha; - var _Operand1Alpha = OpenTK.Graphics.ES11.All.Operand1Alpha; - var _Operand2Alpha = OpenTK.Graphics.ES11.All.Operand2Alpha; - var _PackSubsampleRateSgix = OpenTK.Graphics.ES11.All.PackSubsampleRateSgix; - var _UnpackSubsampleRateSgix = OpenTK.Graphics.ES11.All.UnpackSubsampleRateSgix; - var _PixelSubsample4444Sgix = OpenTK.Graphics.ES11.All.PixelSubsample4444Sgix; - var _PixelSubsample2424Sgix = OpenTK.Graphics.ES11.All.PixelSubsample2424Sgix; - var _PixelSubsample4242Sgix = OpenTK.Graphics.ES11.All.PixelSubsample4242Sgix; - var _TransformHintApple = OpenTK.Graphics.ES11.All.TransformHintApple; - var _VertexArrayBindingOes = OpenTK.Graphics.ES11.All.VertexArrayBindingOes; - var _TextureStorageHintApple = OpenTK.Graphics.ES11.All.TextureStorageHintApple; - var _NumCompressedTextureFormats = OpenTK.Graphics.ES11.All.NumCompressedTextureFormats; - var _CompressedTextureFormats = OpenTK.Graphics.ES11.All.CompressedTextureFormats; - var _MaxVertexUnitsOes = OpenTK.Graphics.ES11.All.MaxVertexUnitsOes; - var _WeightArrayTypeOes = OpenTK.Graphics.ES11.All.WeightArrayTypeOes; - var _WeightArrayStrideOes = OpenTK.Graphics.ES11.All.WeightArrayStrideOes; - var _WeightArraySizeOes = OpenTK.Graphics.ES11.All.WeightArraySizeOes; - var _WeightArrayPointerOes = OpenTK.Graphics.ES11.All.WeightArrayPointerOes; - var _WeightArrayOes = OpenTK.Graphics.ES11.All.WeightArrayOes; - var _Dot3Rgb = OpenTK.Graphics.ES11.All.Dot3Rgb; - var _Dot3Rgba = OpenTK.Graphics.ES11.All.Dot3Rgba; - var _Dot3RgbaImg = OpenTK.Graphics.ES11.All.Dot3RgbaImg; - var _BufferSize = OpenTK.Graphics.ES11.All.BufferSize; - var _BufferUsage = OpenTK.Graphics.ES11.All.BufferUsage; - var _AtcRgbaInterpolatedAlphaAmd = OpenTK.Graphics.ES11.All.AtcRgbaInterpolatedAlphaAmd; - var _Gl3DcXAmd = OpenTK.Graphics.ES11.All.Gl3DcXAmd; - var _Gl3DcXyAmd = OpenTK.Graphics.ES11.All.Gl3DcXyAmd; - var _Rgba32fExt = OpenTK.Graphics.ES11.All.Rgba32fExt; - var _Rgb32fExt = OpenTK.Graphics.ES11.All.Rgb32fExt; - var _Alpha32fExt = OpenTK.Graphics.ES11.All.Alpha32fExt; - var _Luminance32fExt = OpenTK.Graphics.ES11.All.Luminance32fExt; - var _LuminanceAlpha32fExt = OpenTK.Graphics.ES11.All.LuminanceAlpha32fExt; - var _Rgba16fExt = OpenTK.Graphics.ES11.All.Rgba16fExt; - var _Rgb16fExt = OpenTK.Graphics.ES11.All.Rgb16fExt; - var _Alpha16fExt = OpenTK.Graphics.ES11.All.Alpha16fExt; - var _Luminance16fExt = OpenTK.Graphics.ES11.All.Luminance16fExt; - var _LuminanceAlpha16fExt = OpenTK.Graphics.ES11.All.LuminanceAlpha16fExt; - var _WriteonlyRenderingQcom = OpenTK.Graphics.ES11.All.WriteonlyRenderingQcom; - var _BlendEquationAlphaOes = OpenTK.Graphics.ES11.All.BlendEquationAlphaOes; - var _MatrixPaletteOes = OpenTK.Graphics.ES11.All.MatrixPaletteOes; - var _MaxPaletteMatricesOes = OpenTK.Graphics.ES11.All.MaxPaletteMatricesOes; - var _CurrentPaletteMatrixOes = OpenTK.Graphics.ES11.All.CurrentPaletteMatrixOes; - var _MatrixIndexArrayOes = OpenTK.Graphics.ES11.All.MatrixIndexArrayOes; - var _MatrixIndexArraySizeOes = OpenTK.Graphics.ES11.All.MatrixIndexArraySizeOes; - var _MatrixIndexArrayTypeOes = OpenTK.Graphics.ES11.All.MatrixIndexArrayTypeOes; - var _MatrixIndexArrayStrideOes = OpenTK.Graphics.ES11.All.MatrixIndexArrayStrideOes; - var _MatrixIndexArrayPointerOes = OpenTK.Graphics.ES11.All.MatrixIndexArrayPointerOes; - var _PointSpriteOes = OpenTK.Graphics.ES11.All.PointSpriteOes; - var _CoordReplaceOes = OpenTK.Graphics.ES11.All.CoordReplaceOes; - var _ArrayBuffer = OpenTK.Graphics.ES11.All.ArrayBuffer; - var _ElementArrayBuffer = OpenTK.Graphics.ES11.All.ElementArrayBuffer; - var _ArrayBufferBinding = OpenTK.Graphics.ES11.All.ArrayBufferBinding; - var _ElementArrayBufferBinding = OpenTK.Graphics.ES11.All.ElementArrayBufferBinding; - var _VertexArrayBufferBinding = OpenTK.Graphics.ES11.All.VertexArrayBufferBinding; - var _NormalArrayBufferBinding = OpenTK.Graphics.ES11.All.NormalArrayBufferBinding; - var _ColorArrayBufferBinding = OpenTK.Graphics.ES11.All.ColorArrayBufferBinding; - var _TextureCoordArrayBufferBinding = OpenTK.Graphics.ES11.All.TextureCoordArrayBufferBinding; - var _WeightArrayBufferBindingOes = OpenTK.Graphics.ES11.All.WeightArrayBufferBindingOes; - var _WriteOnlyOes = OpenTK.Graphics.ES11.All.WriteOnlyOes; - var _BufferAccessOes = OpenTK.Graphics.ES11.All.BufferAccessOes; - var _BufferMappedOes = OpenTK.Graphics.ES11.All.BufferMappedOes; - var _BufferMapPointerOes = OpenTK.Graphics.ES11.All.BufferMapPointerOes; - var _StaticDraw = OpenTK.Graphics.ES11.All.StaticDraw; - var _DynamicDraw = OpenTK.Graphics.ES11.All.DynamicDraw; - var _Depth24Stencil8Oes = OpenTK.Graphics.ES11.All.Depth24Stencil8Oes; - var _PackResampleOml = OpenTK.Graphics.ES11.All.PackResampleOml; - var _UnpackResampleOml = OpenTK.Graphics.ES11.All.UnpackResampleOml; - var _PointSizeArrayTypeOes = OpenTK.Graphics.ES11.All.PointSizeArrayTypeOes; - var _PointSizeArrayStrideOes = OpenTK.Graphics.ES11.All.PointSizeArrayStrideOes; - var _PointSizeArrayPointerOes = OpenTK.Graphics.ES11.All.PointSizeArrayPointerOes; - var _ModelviewMatrixFloatAsIntBitsOes = OpenTK.Graphics.ES11.All.ModelviewMatrixFloatAsIntBitsOes; - var _ProjectionMatrixFloatAsIntBitsOes = OpenTK.Graphics.ES11.All.ProjectionMatrixFloatAsIntBitsOes; - var _TextureMatrixFloatAsIntBitsOes = OpenTK.Graphics.ES11.All.TextureMatrixFloatAsIntBitsOes; - var _SyncObjectApple = OpenTK.Graphics.ES11.All.SyncObjectApple; - var _FragmentShaderDerivativeHint = OpenTK.Graphics.ES11.All.FragmentShaderDerivativeHint; - var _FragmentShaderDerivativeHintArb = OpenTK.Graphics.ES11.All.FragmentShaderDerivativeHintArb; - var _FragmentShaderDerivativeHintOes = OpenTK.Graphics.ES11.All.FragmentShaderDerivativeHintOes; - var _Palette4Rgb8Oes = OpenTK.Graphics.ES11.All.Palette4Rgb8Oes; - var _Palette4Rgba8Oes = OpenTK.Graphics.ES11.All.Palette4Rgba8Oes; - var _Palette4R5G6B5Oes = OpenTK.Graphics.ES11.All.Palette4R5G6B5Oes; - var _Palette4Rgba4Oes = OpenTK.Graphics.ES11.All.Palette4Rgba4Oes; - var _Palette4Rgb5A1Oes = OpenTK.Graphics.ES11.All.Palette4Rgb5A1Oes; - var _Palette8Rgb8Oes = OpenTK.Graphics.ES11.All.Palette8Rgb8Oes; - var _Palette8Rgba8Oes = OpenTK.Graphics.ES11.All.Palette8Rgba8Oes; - var _Palette8R5G6B5Oes = OpenTK.Graphics.ES11.All.Palette8R5G6B5Oes; - var _Palette8Rgba4Oes = OpenTK.Graphics.ES11.All.Palette8Rgba4Oes; - var _Palette8Rgb5A1Oes = OpenTK.Graphics.ES11.All.Palette8Rgb5A1Oes; - var _ImplementationColorReadTypeOes = OpenTK.Graphics.ES11.All.ImplementationColorReadTypeOes; - var _ImplementationColorReadFormatOes = OpenTK.Graphics.ES11.All.ImplementationColorReadFormatOes; - var _PointSizeArrayOes = OpenTK.Graphics.ES11.All.PointSizeArrayOes; - var _TextureCropRectOes = OpenTK.Graphics.ES11.All.TextureCropRectOes; - var _MatrixIndexArrayBufferBindingOes = OpenTK.Graphics.ES11.All.MatrixIndexArrayBufferBindingOes; - var _PointSizeArrayBufferBindingOes = OpenTK.Graphics.ES11.All.PointSizeArrayBufferBindingOes; - var _TextureWidthQcom = OpenTK.Graphics.ES11.All.TextureWidthQcom; - var _TextureHeightQcom = OpenTK.Graphics.ES11.All.TextureHeightQcom; - var _TextureDepthQcom = OpenTK.Graphics.ES11.All.TextureDepthQcom; - var _TextureInternalFormatQcom = OpenTK.Graphics.ES11.All.TextureInternalFormatQcom; - var _TextureFormatQcom = OpenTK.Graphics.ES11.All.TextureFormatQcom; - var _TextureTypeQcom = OpenTK.Graphics.ES11.All.TextureTypeQcom; - var _TextureImageValidQcom = OpenTK.Graphics.ES11.All.TextureImageValidQcom; - var _TextureNumLevelsQcom = OpenTK.Graphics.ES11.All.TextureNumLevelsQcom; - var _TextureTargetQcom = OpenTK.Graphics.ES11.All.TextureTargetQcom; - var _TextureObjectValidQcom = OpenTK.Graphics.ES11.All.TextureObjectValidQcom; - var _StateRestore = OpenTK.Graphics.ES11.All.StateRestore; - var _CompressedRgbPvrtc4Bppv1Img = OpenTK.Graphics.ES11.All.CompressedRgbPvrtc4Bppv1Img; - var _CompressedRgbPvrtc2Bppv1Img = OpenTK.Graphics.ES11.All.CompressedRgbPvrtc2Bppv1Img; - var _CompressedRgbaPvrtc4Bppv1Img = OpenTK.Graphics.ES11.All.CompressedRgbaPvrtc4Bppv1Img; - var _CompressedRgbaPvrtc2Bppv1Img = OpenTK.Graphics.ES11.All.CompressedRgbaPvrtc2Bppv1Img; - var _ModulateColorImg = OpenTK.Graphics.ES11.All.ModulateColorImg; - var _RecipAddSignedAlphaImg = OpenTK.Graphics.ES11.All.RecipAddSignedAlphaImg; - var _TextureAlphaModulateImg = OpenTK.Graphics.ES11.All.TextureAlphaModulateImg; - var _FactorAlphaModulateImg = OpenTK.Graphics.ES11.All.FactorAlphaModulateImg; - var _FragmentAlphaModulateImg = OpenTK.Graphics.ES11.All.FragmentAlphaModulateImg; - var _AddBlendImg = OpenTK.Graphics.ES11.All.AddBlendImg; - var _SrgbExt = OpenTK.Graphics.ES11.All.SrgbExt; - var _SrgbAlphaExt = OpenTK.Graphics.ES11.All.SrgbAlphaExt; - var _Srgb8Alpha8Ext = OpenTK.Graphics.ES11.All.Srgb8Alpha8Ext; - var _AtcRgbAmd = OpenTK.Graphics.ES11.All.AtcRgbAmd; - var _AtcRgbaExplicitAlphaAmd = OpenTK.Graphics.ES11.All.AtcRgbaExplicitAlphaAmd; - var _DrawFramebufferBindingApple = OpenTK.Graphics.ES11.All.DrawFramebufferBindingApple; - var _FramebufferBindingOes = OpenTK.Graphics.ES11.All.FramebufferBindingOes; - var _RenderbufferBindingOes = OpenTK.Graphics.ES11.All.RenderbufferBindingOes; - var _ReadFramebufferApple = OpenTK.Graphics.ES11.All.ReadFramebufferApple; - var _DrawFramebufferApple = OpenTK.Graphics.ES11.All.DrawFramebufferApple; - var _ReadFramebufferBindingApple = OpenTK.Graphics.ES11.All.ReadFramebufferBindingApple; - var _RenderbufferSamplesApple = OpenTK.Graphics.ES11.All.RenderbufferSamplesApple; - var _RenderbufferSamplesExt = OpenTK.Graphics.ES11.All.RenderbufferSamplesExt; - var _FramebufferAttachmentObjectTypeOes = OpenTK.Graphics.ES11.All.FramebufferAttachmentObjectTypeOes; - var _FramebufferAttachmentObjectNameOes = OpenTK.Graphics.ES11.All.FramebufferAttachmentObjectNameOes; - var _FramebufferAttachmentTextureLevelOes = OpenTK.Graphics.ES11.All.FramebufferAttachmentTextureLevelOes; - var _FramebufferAttachmentTextureCubeMapFaceOes = OpenTK.Graphics.ES11.All.FramebufferAttachmentTextureCubeMapFaceOes; - var _FramebufferCompleteOes = OpenTK.Graphics.ES11.All.FramebufferCompleteOes; - var _FramebufferIncompleteAttachmentOes = OpenTK.Graphics.ES11.All.FramebufferIncompleteAttachmentOes; - var _FramebufferIncompleteMissingAttachmentOes = OpenTK.Graphics.ES11.All.FramebufferIncompleteMissingAttachmentOes; - var _FramebufferIncompleteDimensionsOes = OpenTK.Graphics.ES11.All.FramebufferIncompleteDimensionsOes; - var _FramebufferIncompleteFormatsOes = OpenTK.Graphics.ES11.All.FramebufferIncompleteFormatsOes; - var _FramebufferUnsupportedOes = OpenTK.Graphics.ES11.All.FramebufferUnsupportedOes; - var _ColorAttachment0Oes = OpenTK.Graphics.ES11.All.ColorAttachment0Oes; - var _DepthAttachmentOes = OpenTK.Graphics.ES11.All.DepthAttachmentOes; - var _StencilAttachmentOes = OpenTK.Graphics.ES11.All.StencilAttachmentOes; - var _FramebufferOes = OpenTK.Graphics.ES11.All.FramebufferOes; - var _RenderbufferOes = OpenTK.Graphics.ES11.All.RenderbufferOes; - var _RenderbufferWidthOes = OpenTK.Graphics.ES11.All.RenderbufferWidthOes; - var _RenderbufferHeightOes = OpenTK.Graphics.ES11.All.RenderbufferHeightOes; - var _RenderbufferInternalFormatOes = OpenTK.Graphics.ES11.All.RenderbufferInternalFormatOes; - var _StencilIndex1Oes = OpenTK.Graphics.ES11.All.StencilIndex1Oes; - var _StencilIndex4Oes = OpenTK.Graphics.ES11.All.StencilIndex4Oes; - var _StencilIndex8Oes = OpenTK.Graphics.ES11.All.StencilIndex8Oes; - var _RenderbufferRedSizeOes = OpenTK.Graphics.ES11.All.RenderbufferRedSizeOes; - var _RenderbufferGreenSizeOes = OpenTK.Graphics.ES11.All.RenderbufferGreenSizeOes; - var _RenderbufferBlueSizeOes = OpenTK.Graphics.ES11.All.RenderbufferBlueSizeOes; - var _RenderbufferAlphaSizeOes = OpenTK.Graphics.ES11.All.RenderbufferAlphaSizeOes; - var _RenderbufferDepthSizeOes = OpenTK.Graphics.ES11.All.RenderbufferDepthSizeOes; - var _RenderbufferStencilSizeOes = OpenTK.Graphics.ES11.All.RenderbufferStencilSizeOes; - var _FramebufferIncompleteMultisampleApple = OpenTK.Graphics.ES11.All.FramebufferIncompleteMultisampleApple; - var _FramebufferIncompleteMultisampleExt = OpenTK.Graphics.ES11.All.FramebufferIncompleteMultisampleExt; - var _MaxSamplesApple = OpenTK.Graphics.ES11.All.MaxSamplesApple; - var _MaxSamplesExt = OpenTK.Graphics.ES11.All.MaxSamplesExt; - var _TextureGenStrOes = OpenTK.Graphics.ES11.All.TextureGenStrOes; - var _Rgb565Oes = OpenTK.Graphics.ES11.All.Rgb565Oes; - var _Etc1Rgb8Oes = OpenTK.Graphics.ES11.All.Etc1Rgb8Oes; - var _TextureExternalOes = OpenTK.Graphics.ES11.All.TextureExternalOes; - var _SamplerExternalOes = OpenTK.Graphics.ES11.All.SamplerExternalOes; - var _TextureBindingExternalOes = OpenTK.Graphics.ES11.All.TextureBindingExternalOes; - var _RequiredTextureImageUnitsOes = OpenTK.Graphics.ES11.All.RequiredTextureImageUnitsOes; - var _FramebufferAttachmentTextureSamplesExt = OpenTK.Graphics.ES11.All.FramebufferAttachmentTextureSamplesExt; - var _PerfmonGlobalModeQcom = OpenTK.Graphics.ES11.All.PerfmonGlobalModeQcom; - var _BinningControlHintQcom = OpenTK.Graphics.ES11.All.BinningControlHintQcom; - var _ContextRobustAccessExt = OpenTK.Graphics.ES11.All.ContextRobustAccessExt; - var _MaxServerWaitTimeoutApple = OpenTK.Graphics.ES11.All.MaxServerWaitTimeoutApple; - var _ObjectTypeApple = OpenTK.Graphics.ES11.All.ObjectTypeApple; - var _SyncConditionApple = OpenTK.Graphics.ES11.All.SyncConditionApple; - var _SyncStatusApple = OpenTK.Graphics.ES11.All.SyncStatusApple; - var _SyncFlagsApple = OpenTK.Graphics.ES11.All.SyncFlagsApple; - var _SyncFenceApple = OpenTK.Graphics.ES11.All.SyncFenceApple; - var _SyncGpuCommandsCompleteApple = OpenTK.Graphics.ES11.All.SyncGpuCommandsCompleteApple; - var _UnsignaledApple = OpenTK.Graphics.ES11.All.UnsignaledApple; - var _SignaledApple = OpenTK.Graphics.ES11.All.SignaledApple; - var _AlreadySignaledApple = OpenTK.Graphics.ES11.All.AlreadySignaledApple; - var _TimeoutExpiredApple = OpenTK.Graphics.ES11.All.TimeoutExpiredApple; - var _ConditionSatisfiedApple = OpenTK.Graphics.ES11.All.ConditionSatisfiedApple; - var _WaitFailedApple = OpenTK.Graphics.ES11.All.WaitFailedApple; - var _TextureImmutableFormatExt = OpenTK.Graphics.ES11.All.TextureImmutableFormatExt; - var _RenderbufferSamplesImg = OpenTK.Graphics.ES11.All.RenderbufferSamplesImg; - var _FramebufferIncompleteMultisampleImg = OpenTK.Graphics.ES11.All.FramebufferIncompleteMultisampleImg; - var _MaxSamplesImg = OpenTK.Graphics.ES11.All.MaxSamplesImg; - var _TextureSamplesImg = OpenTK.Graphics.ES11.All.TextureSamplesImg; - var _Bgra8Ext = OpenTK.Graphics.ES11.All.Bgra8Ext; - var _AllAttribBits = OpenTK.Graphics.ES11.All.AllAttribBits; - var _AllBarrierBits = OpenTK.Graphics.ES11.All.AllBarrierBits; - var _AllBarrierBitsExt = OpenTK.Graphics.ES11.All.AllBarrierBitsExt; - var _AllShaderBits = OpenTK.Graphics.ES11.All.AllShaderBits; - var _AllShaderBitsExt = OpenTK.Graphics.ES11.All.AllShaderBitsExt; - var _ClientAllAttribBits = OpenTK.Graphics.ES11.All.ClientAllAttribBits; - var _QueryAllEventBitsAmd = OpenTK.Graphics.ES11.All.QueryAllEventBitsAmd; - var _TimeoutIgnoredApple = OpenTK.Graphics.ES11.All.TimeoutIgnoredApple; - var _AmdCompressed3DcTexture = OpenTK.Graphics.ES11.All.AmdCompressed3DcTexture; - var _AmdCompressedAtcTexture = OpenTK.Graphics.ES11.All.AmdCompressedAtcTexture; - var _ExtTextureFilterAnisotropic = OpenTK.Graphics.ES11.All.ExtTextureFilterAnisotropic; - var _ExtTextureFormatBgra8888 = OpenTK.Graphics.ES11.All.ExtTextureFormatBgra8888; - var _ImgReadFormat = OpenTK.Graphics.ES11.All.ImgReadFormat; - var _ImgTextureCompressionPvrtc = OpenTK.Graphics.ES11.All.ImgTextureCompressionPvrtc; - var _ImgTextureEnvEnhancedFixedFunction = OpenTK.Graphics.ES11.All.ImgTextureEnvEnhancedFixedFunction; - var _ImgUserClipPlane = OpenTK.Graphics.ES11.All.ImgUserClipPlane; - var _LayoutLinearIntel = OpenTK.Graphics.ES11.All.LayoutLinearIntel; - var _NvFence = OpenTK.Graphics.ES11.All.NvFence; - var _OesBlendEquationSeparate = OpenTK.Graphics.ES11.All.OesBlendEquationSeparate; - var _OesBlendFuncSeparate = OpenTK.Graphics.ES11.All.OesBlendFuncSeparate; - var _OesBlendSubtract = OpenTK.Graphics.ES11.All.OesBlendSubtract; - var _OesByteCoordinates = OpenTK.Graphics.ES11.All.OesByteCoordinates; - var _OesCompressedEtc1Rgb8Texture = OpenTK.Graphics.ES11.All.OesCompressedEtc1Rgb8Texture; - var _OesCompressedPalettedTexture = OpenTK.Graphics.ES11.All.OesCompressedPalettedTexture; - var _OesDepth24 = OpenTK.Graphics.ES11.All.OesDepth24; - var _OesDepth32 = OpenTK.Graphics.ES11.All.OesDepth32; - var _OesDrawTexture = OpenTK.Graphics.ES11.All.OesDrawTexture; - var _OesEglImage = OpenTK.Graphics.ES11.All.OesEglImage; - var _OesElementIndexUint = OpenTK.Graphics.ES11.All.OesElementIndexUint; - var _OesExtendedMatrixPalette = OpenTK.Graphics.ES11.All.OesExtendedMatrixPalette; - var _OesFboRenderMipmap = OpenTK.Graphics.ES11.All.OesFboRenderMipmap; - var _OesFixedPoint = OpenTK.Graphics.ES11.All.OesFixedPoint; - var _OesFramebufferObject = OpenTK.Graphics.ES11.All.OesFramebufferObject; - var _OesMapbuffer = OpenTK.Graphics.ES11.All.OesMapbuffer; - var _OesMatrixGet = OpenTK.Graphics.ES11.All.OesMatrixGet; - var _OesMatrixPalette = OpenTK.Graphics.ES11.All.OesMatrixPalette; - var _OesPackedDepthStencil = OpenTK.Graphics.ES11.All.OesPackedDepthStencil; - var _OesPointSizeArray = OpenTK.Graphics.ES11.All.OesPointSizeArray; - var _OesPointSprite = OpenTK.Graphics.ES11.All.OesPointSprite; - var _OesQueryMatrix = OpenTK.Graphics.ES11.All.OesQueryMatrix; - var _OesReadFormat = OpenTK.Graphics.ES11.All.OesReadFormat; - var _OesRgb8Rgba8 = OpenTK.Graphics.ES11.All.OesRgb8Rgba8; - var _OesSinglePrecision = OpenTK.Graphics.ES11.All.OesSinglePrecision; - var _OesStencil1 = OpenTK.Graphics.ES11.All.OesStencil1; - var _OesStencil4 = OpenTK.Graphics.ES11.All.OesStencil4; - var _OesStencil8 = OpenTK.Graphics.ES11.All.OesStencil8; - var _OesStencilWrap = OpenTK.Graphics.ES11.All.OesStencilWrap; - var _OesTextureCubeMap = OpenTK.Graphics.ES11.All.OesTextureCubeMap; - var _OesTextureEnvCrossbar = OpenTK.Graphics.ES11.All.OesTextureEnvCrossbar; - var _OesTextureMirroredRepeat = OpenTK.Graphics.ES11.All.OesTextureMirroredRepeat; - var _One = OpenTK.Graphics.ES11.All.One; - var _QcomDriverControl = OpenTK.Graphics.ES11.All.QcomDriverControl; - var _QcomPerfmonGlobalMode = OpenTK.Graphics.ES11.All.QcomPerfmonGlobalMode; - var _True = OpenTK.Graphics.ES11.All.True; - var _VersionEsCl10 = OpenTK.Graphics.ES11.All.VersionEsCl10; - var _VersionEsCl11 = OpenTK.Graphics.ES11.All.VersionEsCl11; - var _VersionEsCm10 = OpenTK.Graphics.ES11.All.VersionEsCm10; - var _VersionEsCm11 = OpenTK.Graphics.ES11.All.VersionEsCm11; - var _LayoutLinearCpuCachedIntel = OpenTK.Graphics.ES11.All.LayoutLinearCpuCachedIntel; -} -static void Test_AlphaFunction_38404() { - var _Never = OpenTK.Graphics.ES11.AlphaFunction.Never; - var _Less = OpenTK.Graphics.ES11.AlphaFunction.Less; - var _Equal = OpenTK.Graphics.ES11.AlphaFunction.Equal; - var _Lequal = OpenTK.Graphics.ES11.AlphaFunction.Lequal; - var _Greater = OpenTK.Graphics.ES11.AlphaFunction.Greater; - var _Notequal = OpenTK.Graphics.ES11.AlphaFunction.Notequal; - var _Gequal = OpenTK.Graphics.ES11.AlphaFunction.Gequal; - var _Always = OpenTK.Graphics.ES11.AlphaFunction.Always; -} -static void Test_Amdcompressed3Dctexture_38405() { - var _Gl3DcXAmd = OpenTK.Graphics.ES11.Amdcompressed3Dctexture.Gl3DcXAmd; - var _Gl3DcXyAmd = OpenTK.Graphics.ES11.Amdcompressed3Dctexture.Gl3DcXyAmd; - var _AmdCompressed3DcTexture = OpenTK.Graphics.ES11.Amdcompressed3Dctexture.AmdCompressed3DcTexture; -} -static void Test_AmdCompressed3DcTexture_38406() { - var _Gl3DcXAmd = OpenTK.Graphics.ES11.AmdCompressed3DcTexture.Gl3DcXAmd; - var _Gl3DcXyAmd = OpenTK.Graphics.ES11.AmdCompressed3DcTexture.Gl3DcXyAmd; -} -static void Test_AmdcompressedAtctexture_38407() { - var _AtcRgbaInterpolatedAlphaAmd = OpenTK.Graphics.ES11.AmdcompressedAtctexture.AtcRgbaInterpolatedAlphaAmd; - var _AtcRgbAmd = OpenTK.Graphics.ES11.AmdcompressedAtctexture.AtcRgbAmd; - var _AtcRgbaExplicitAlphaAmd = OpenTK.Graphics.ES11.AmdcompressedAtctexture.AtcRgbaExplicitAlphaAmd; - var _AmdCompressedAtcTexture = OpenTK.Graphics.ES11.AmdcompressedAtctexture.AmdCompressedAtcTexture; -} -static void Test_AmdCompressedAtcTexture_38408() { - var _AtcRgbaInterpolatedAlphaAmd = OpenTK.Graphics.ES11.AmdCompressedAtcTexture.AtcRgbaInterpolatedAlphaAmd; - var _AtcRgbAmd = OpenTK.Graphics.ES11.AmdCompressedAtcTexture.AtcRgbAmd; - var _AtcRgbaExplicitAlphaAmd = OpenTK.Graphics.ES11.AmdCompressedAtcTexture.AtcRgbaExplicitAlphaAmd; -} -static void Test_AppleCopyTextureLevels_38409() { -} -static void Test_AppleFramebufferMultisample_38410() { - var _DrawFramebufferBindingApple = OpenTK.Graphics.ES11.AppleFramebufferMultisample.DrawFramebufferBindingApple; - var _ReadFramebufferApple = OpenTK.Graphics.ES11.AppleFramebufferMultisample.ReadFramebufferApple; - var _DrawFramebufferApple = OpenTK.Graphics.ES11.AppleFramebufferMultisample.DrawFramebufferApple; - var _ReadFramebufferBindingApple = OpenTK.Graphics.ES11.AppleFramebufferMultisample.ReadFramebufferBindingApple; - var _RenderbufferSamplesApple = OpenTK.Graphics.ES11.AppleFramebufferMultisample.RenderbufferSamplesApple; - var _FramebufferIncompleteMultisampleApple = OpenTK.Graphics.ES11.AppleFramebufferMultisample.FramebufferIncompleteMultisampleApple; - var _MaxSamplesApple = OpenTK.Graphics.ES11.AppleFramebufferMultisample.MaxSamplesApple; -} -static void Test_AppleSync_38411() { - var _SyncFlushCommandsBitApple = OpenTK.Graphics.ES11.AppleSync.SyncFlushCommandsBitApple; - var _SyncObjectApple = OpenTK.Graphics.ES11.AppleSync.SyncObjectApple; - var _MaxServerWaitTimeoutApple = OpenTK.Graphics.ES11.AppleSync.MaxServerWaitTimeoutApple; - var _ObjectTypeApple = OpenTK.Graphics.ES11.AppleSync.ObjectTypeApple; - var _SyncConditionApple = OpenTK.Graphics.ES11.AppleSync.SyncConditionApple; - var _SyncStatusApple = OpenTK.Graphics.ES11.AppleSync.SyncStatusApple; - var _SyncFlagsApple = OpenTK.Graphics.ES11.AppleSync.SyncFlagsApple; - var _SyncFenceApple = OpenTK.Graphics.ES11.AppleSync.SyncFenceApple; - var _SyncGpuCommandsCompleteApple = OpenTK.Graphics.ES11.AppleSync.SyncGpuCommandsCompleteApple; - var _UnsignaledApple = OpenTK.Graphics.ES11.AppleSync.UnsignaledApple; - var _SignaledApple = OpenTK.Graphics.ES11.AppleSync.SignaledApple; - var _AlreadySignaledApple = OpenTK.Graphics.ES11.AppleSync.AlreadySignaledApple; - var _TimeoutExpiredApple = OpenTK.Graphics.ES11.AppleSync.TimeoutExpiredApple; - var _ConditionSatisfiedApple = OpenTK.Graphics.ES11.AppleSync.ConditionSatisfiedApple; - var _WaitFailedApple = OpenTK.Graphics.ES11.AppleSync.WaitFailedApple; - var _TimeoutIgnoredApple = OpenTK.Graphics.ES11.AppleSync.TimeoutIgnoredApple; -} -static void Test_AppleTexture2DLimitedNpot_38412() { -} -static void Test_AppleTextureFormatBgra8888_38413() { - var _BgraExt = OpenTK.Graphics.ES11.AppleTextureFormatBgra8888.BgraExt; - var _Bgra8Ext = OpenTK.Graphics.ES11.AppleTextureFormatBgra8888.Bgra8Ext; -} -static void Test_AppleTextureMaxLevel_38414() { - var _TextureMaxLevelApple = OpenTK.Graphics.ES11.AppleTextureMaxLevel.TextureMaxLevelApple; -} -static void Test_ArmRgba8_38415() { -} -static void Test_AttribMask_38416() { - var _CurrentBit = OpenTK.Graphics.ES11.AttribMask.CurrentBit; - var _PointBit = OpenTK.Graphics.ES11.AttribMask.PointBit; - var _LineBit = OpenTK.Graphics.ES11.AttribMask.LineBit; - var _PolygonBit = OpenTK.Graphics.ES11.AttribMask.PolygonBit; - var _PolygonStippleBit = OpenTK.Graphics.ES11.AttribMask.PolygonStippleBit; - var _PixelModeBit = OpenTK.Graphics.ES11.AttribMask.PixelModeBit; - var _LightingBit = OpenTK.Graphics.ES11.AttribMask.LightingBit; - var _FogBit = OpenTK.Graphics.ES11.AttribMask.FogBit; - var _DepthBufferBit = OpenTK.Graphics.ES11.AttribMask.DepthBufferBit; - var _AccumBufferBit = OpenTK.Graphics.ES11.AttribMask.AccumBufferBit; - var _StencilBufferBit = OpenTK.Graphics.ES11.AttribMask.StencilBufferBit; - var _ViewportBit = OpenTK.Graphics.ES11.AttribMask.ViewportBit; - var _TransformBit = OpenTK.Graphics.ES11.AttribMask.TransformBit; - var _EnableBit = OpenTK.Graphics.ES11.AttribMask.EnableBit; - var _ColorBufferBit = OpenTK.Graphics.ES11.AttribMask.ColorBufferBit; - var _HintBit = OpenTK.Graphics.ES11.AttribMask.HintBit; - var _EvalBit = OpenTK.Graphics.ES11.AttribMask.EvalBit; - var _ListBit = OpenTK.Graphics.ES11.AttribMask.ListBit; - var _TextureBit = OpenTK.Graphics.ES11.AttribMask.TextureBit; - var _ScissorBit = OpenTK.Graphics.ES11.AttribMask.ScissorBit; - var _MultisampleBit = OpenTK.Graphics.ES11.AttribMask.MultisampleBit; - var _MultisampleBit3Dfx = OpenTK.Graphics.ES11.AttribMask.MultisampleBit3Dfx; - var _MultisampleBitArb = OpenTK.Graphics.ES11.AttribMask.MultisampleBitArb; - var _MultisampleBitExt = OpenTK.Graphics.ES11.AttribMask.MultisampleBitExt; - var _AllAttribBits = OpenTK.Graphics.ES11.AttribMask.AllAttribBits; -} -static void Test_BeginMode_38417() { - var _Points = OpenTK.Graphics.ES11.BeginMode.Points; - var _Lines = OpenTK.Graphics.ES11.BeginMode.Lines; - var _LineLoop = OpenTK.Graphics.ES11.BeginMode.LineLoop; - var _LineStrip = OpenTK.Graphics.ES11.BeginMode.LineStrip; - var _Triangles = OpenTK.Graphics.ES11.BeginMode.Triangles; - var _TriangleStrip = OpenTK.Graphics.ES11.BeginMode.TriangleStrip; - var _TriangleFan = OpenTK.Graphics.ES11.BeginMode.TriangleFan; -} -static void Test_BlendEquationModeExt_38418() { - var _LogicOp = OpenTK.Graphics.ES11.BlendEquationModeExt.LogicOp; - var _FuncAddExt = OpenTK.Graphics.ES11.BlendEquationModeExt.FuncAddExt; - var _MinExt = OpenTK.Graphics.ES11.BlendEquationModeExt.MinExt; - var _MaxExt = OpenTK.Graphics.ES11.BlendEquationModeExt.MaxExt; - var _FuncSubtractExt = OpenTK.Graphics.ES11.BlendEquationModeExt.FuncSubtractExt; - var _FuncReverseSubtractExt = OpenTK.Graphics.ES11.BlendEquationModeExt.FuncReverseSubtractExt; - var _AlphaMinSgix = OpenTK.Graphics.ES11.BlendEquationModeExt.AlphaMinSgix; - var _AlphaMaxSgix = OpenTK.Graphics.ES11.BlendEquationModeExt.AlphaMaxSgix; -} -static void Test_BlendingFactorDest_38419() { - var _Zero = OpenTK.Graphics.ES11.BlendingFactorDest.Zero; - var _SrcColor = OpenTK.Graphics.ES11.BlendingFactorDest.SrcColor; - var _OneMinusSrcColor = OpenTK.Graphics.ES11.BlendingFactorDest.OneMinusSrcColor; - var _SrcAlpha = OpenTK.Graphics.ES11.BlendingFactorDest.SrcAlpha; - var _OneMinusSrcAlpha = OpenTK.Graphics.ES11.BlendingFactorDest.OneMinusSrcAlpha; - var _DstAlpha = OpenTK.Graphics.ES11.BlendingFactorDest.DstAlpha; - var _OneMinusDstAlpha = OpenTK.Graphics.ES11.BlendingFactorDest.OneMinusDstAlpha; - var _ConstantColorExt = OpenTK.Graphics.ES11.BlendingFactorDest.ConstantColorExt; - var _OneMinusConstantColorExt = OpenTK.Graphics.ES11.BlendingFactorDest.OneMinusConstantColorExt; - var _ConstantAlphaExt = OpenTK.Graphics.ES11.BlendingFactorDest.ConstantAlphaExt; - var _OneMinusConstantAlphaExt = OpenTK.Graphics.ES11.BlendingFactorDest.OneMinusConstantAlphaExt; - var _One = OpenTK.Graphics.ES11.BlendingFactorDest.One; -} -static void Test_BlendingFactorSrc_38420() { - var _Zero = OpenTK.Graphics.ES11.BlendingFactorSrc.Zero; - var _SrcAlpha = OpenTK.Graphics.ES11.BlendingFactorSrc.SrcAlpha; - var _OneMinusSrcAlpha = OpenTK.Graphics.ES11.BlendingFactorSrc.OneMinusSrcAlpha; - var _DstAlpha = OpenTK.Graphics.ES11.BlendingFactorSrc.DstAlpha; - var _OneMinusDstAlpha = OpenTK.Graphics.ES11.BlendingFactorSrc.OneMinusDstAlpha; - var _DstColor = OpenTK.Graphics.ES11.BlendingFactorSrc.DstColor; - var _OneMinusDstColor = OpenTK.Graphics.ES11.BlendingFactorSrc.OneMinusDstColor; - var _SrcAlphaSaturate = OpenTK.Graphics.ES11.BlendingFactorSrc.SrcAlphaSaturate; - var _ConstantColorExt = OpenTK.Graphics.ES11.BlendingFactorSrc.ConstantColorExt; - var _OneMinusConstantColorExt = OpenTK.Graphics.ES11.BlendingFactorSrc.OneMinusConstantColorExt; - var _ConstantAlphaExt = OpenTK.Graphics.ES11.BlendingFactorSrc.ConstantAlphaExt; - var _OneMinusConstantAlphaExt = OpenTK.Graphics.ES11.BlendingFactorSrc.OneMinusConstantAlphaExt; - var _One = OpenTK.Graphics.ES11.BlendingFactorSrc.One; -} -static void Test_Boolean_38421() { - var _False = OpenTK.Graphics.ES11.Boolean.False; - var _True = OpenTK.Graphics.ES11.Boolean.True; -} -static void Test_BufferObjects_38422() { - var _BufferSize = OpenTK.Graphics.ES11.BufferObjects.BufferSize; - var _BufferUsage = OpenTK.Graphics.ES11.BufferObjects.BufferUsage; - var _ArrayBuffer = OpenTK.Graphics.ES11.BufferObjects.ArrayBuffer; - var _ElementArrayBuffer = OpenTK.Graphics.ES11.BufferObjects.ElementArrayBuffer; - var _ArrayBufferBinding = OpenTK.Graphics.ES11.BufferObjects.ArrayBufferBinding; - var _ElementArrayBufferBinding = OpenTK.Graphics.ES11.BufferObjects.ElementArrayBufferBinding; - var _VertexArrayBufferBinding = OpenTK.Graphics.ES11.BufferObjects.VertexArrayBufferBinding; - var _NormalArrayBufferBinding = OpenTK.Graphics.ES11.BufferObjects.NormalArrayBufferBinding; - var _ColorArrayBufferBinding = OpenTK.Graphics.ES11.BufferObjects.ColorArrayBufferBinding; - var _TextureCoordArrayBufferBinding = OpenTK.Graphics.ES11.BufferObjects.TextureCoordArrayBufferBinding; - var _StaticDraw = OpenTK.Graphics.ES11.BufferObjects.StaticDraw; - var _DynamicDraw = OpenTK.Graphics.ES11.BufferObjects.DynamicDraw; -} -static void Test_ClearBufferMask_38423() { - var _DepthBufferBit = OpenTK.Graphics.ES11.ClearBufferMask.DepthBufferBit; - var _AccumBufferBit = OpenTK.Graphics.ES11.ClearBufferMask.AccumBufferBit; - var _StencilBufferBit = OpenTK.Graphics.ES11.ClearBufferMask.StencilBufferBit; - var _ColorBufferBit = OpenTK.Graphics.ES11.ClearBufferMask.ColorBufferBit; - var _CoverageBufferBitNv = OpenTK.Graphics.ES11.ClearBufferMask.CoverageBufferBitNv; -} -static void Test_ClientAttribMask_38424() { - var _ClientPixelStoreBit = OpenTK.Graphics.ES11.ClientAttribMask.ClientPixelStoreBit; - var _ClientVertexArrayBit = OpenTK.Graphics.ES11.ClientAttribMask.ClientVertexArrayBit; - var _ClientAllAttribBits = OpenTK.Graphics.ES11.ClientAttribMask.ClientAllAttribBits; -} -static void Test_ClipPlaneName_38425() { - var _ClipDistance0 = OpenTK.Graphics.ES11.ClipPlaneName.ClipDistance0; - var _ClipPlane0 = OpenTK.Graphics.ES11.ClipPlaneName.ClipPlane0; - var _ClipDistance1 = OpenTK.Graphics.ES11.ClipPlaneName.ClipDistance1; - var _ClipPlane1 = OpenTK.Graphics.ES11.ClipPlaneName.ClipPlane1; - var _ClipDistance2 = OpenTK.Graphics.ES11.ClipPlaneName.ClipDistance2; - var _ClipPlane2 = OpenTK.Graphics.ES11.ClipPlaneName.ClipPlane2; - var _ClipDistance3 = OpenTK.Graphics.ES11.ClipPlaneName.ClipDistance3; - var _ClipPlane3 = OpenTK.Graphics.ES11.ClipPlaneName.ClipPlane3; - var _ClipDistance4 = OpenTK.Graphics.ES11.ClipPlaneName.ClipDistance4; - var _ClipPlane4 = OpenTK.Graphics.ES11.ClipPlaneName.ClipPlane4; - var _ClipDistance5 = OpenTK.Graphics.ES11.ClipPlaneName.ClipDistance5; - var _ClipPlane5 = OpenTK.Graphics.ES11.ClipPlaneName.ClipPlane5; - var _ClipDistance6 = OpenTK.Graphics.ES11.ClipPlaneName.ClipDistance6; - var _ClipDistance7 = OpenTK.Graphics.ES11.ClipPlaneName.ClipDistance7; -} -static void Test_ColorMaterialFace_38426() { - var _Front = OpenTK.Graphics.ES11.ColorMaterialFace.Front; - var _Back = OpenTK.Graphics.ES11.ColorMaterialFace.Back; - var _FrontAndBack = OpenTK.Graphics.ES11.ColorMaterialFace.FrontAndBack; -} -static void Test_ColorMaterialParameter_38427() { - var _Ambient = OpenTK.Graphics.ES11.ColorMaterialParameter.Ambient; - var _Diffuse = OpenTK.Graphics.ES11.ColorMaterialParameter.Diffuse; - var _Specular = OpenTK.Graphics.ES11.ColorMaterialParameter.Specular; - var _Emission = OpenTK.Graphics.ES11.ColorMaterialParameter.Emission; - var _AmbientAndDiffuse = OpenTK.Graphics.ES11.ColorMaterialParameter.AmbientAndDiffuse; -} -static void Test_ColorPointerType_38428() { - var _Byte = OpenTK.Graphics.ES11.ColorPointerType.Byte; - var _UnsignedByte = OpenTK.Graphics.ES11.ColorPointerType.UnsignedByte; - var _Short = OpenTK.Graphics.ES11.ColorPointerType.Short; - var _UnsignedShort = OpenTK.Graphics.ES11.ColorPointerType.UnsignedShort; - var _Int = OpenTK.Graphics.ES11.ColorPointerType.Int; - var _UnsignedInt = OpenTK.Graphics.ES11.ColorPointerType.UnsignedInt; - var _Float = OpenTK.Graphics.ES11.ColorPointerType.Float; - var _Double = OpenTK.Graphics.ES11.ColorPointerType.Double; -} -static void Test_ColorTableParameterPNameSgi_38429() { - var _ColorTableScale = OpenTK.Graphics.ES11.ColorTableParameterPNameSgi.ColorTableScale; - var _ColorTableScaleSgi = OpenTK.Graphics.ES11.ColorTableParameterPNameSgi.ColorTableScaleSgi; - var _ColorTableBias = OpenTK.Graphics.ES11.ColorTableParameterPNameSgi.ColorTableBias; - var _ColorTableBiasSgi = OpenTK.Graphics.ES11.ColorTableParameterPNameSgi.ColorTableBiasSgi; -} -static void Test_ColorTableTargetSgi_38430() { - var _TextureColorTableSgi = OpenTK.Graphics.ES11.ColorTableTargetSgi.TextureColorTableSgi; - var _ProxyTextureColorTableSgi = OpenTK.Graphics.ES11.ColorTableTargetSgi.ProxyTextureColorTableSgi; - var _ColorTable = OpenTK.Graphics.ES11.ColorTableTargetSgi.ColorTable; - var _ColorTableSgi = OpenTK.Graphics.ES11.ColorTableTargetSgi.ColorTableSgi; - var _PostConvolutionColorTable = OpenTK.Graphics.ES11.ColorTableTargetSgi.PostConvolutionColorTable; - var _PostConvolutionColorTableSgi = OpenTK.Graphics.ES11.ColorTableTargetSgi.PostConvolutionColorTableSgi; - var _PostColorMatrixColorTable = OpenTK.Graphics.ES11.ColorTableTargetSgi.PostColorMatrixColorTable; - var _PostColorMatrixColorTableSgi = OpenTK.Graphics.ES11.ColorTableTargetSgi.PostColorMatrixColorTableSgi; - var _ProxyColorTable = OpenTK.Graphics.ES11.ColorTableTargetSgi.ProxyColorTable; - var _ProxyColorTableSgi = OpenTK.Graphics.ES11.ColorTableTargetSgi.ProxyColorTableSgi; - var _ProxyPostConvolutionColorTable = OpenTK.Graphics.ES11.ColorTableTargetSgi.ProxyPostConvolutionColorTable; - var _ProxyPostConvolutionColorTableSgi = OpenTK.Graphics.ES11.ColorTableTargetSgi.ProxyPostConvolutionColorTableSgi; - var _ProxyPostColorMatrixColorTable = OpenTK.Graphics.ES11.ColorTableTargetSgi.ProxyPostColorMatrixColorTable; - var _ProxyPostColorMatrixColorTableSgi = OpenTK.Graphics.ES11.ColorTableTargetSgi.ProxyPostColorMatrixColorTableSgi; -} -static void Test_ContextFlagMask_38431() { - var _ContextFlagForwardCompatibleBit = OpenTK.Graphics.ES11.ContextFlagMask.ContextFlagForwardCompatibleBit; - var _ContextFlagDebugBit = OpenTK.Graphics.ES11.ContextFlagMask.ContextFlagDebugBit; - var _ContextFlagDebugBitKhr = OpenTK.Graphics.ES11.ContextFlagMask.ContextFlagDebugBitKhr; - var _ContextFlagRobustAccessBitArb = OpenTK.Graphics.ES11.ContextFlagMask.ContextFlagRobustAccessBitArb; -} -static void Test_ContextProfileMask_38432() { - var _ContextCoreProfileBit = OpenTK.Graphics.ES11.ContextProfileMask.ContextCoreProfileBit; - var _ContextCompatibilityProfileBit = OpenTK.Graphics.ES11.ContextProfileMask.ContextCompatibilityProfileBit; -} -static void Test_ConvolutionBorderModeExt_38433() { - var _Reduce = OpenTK.Graphics.ES11.ConvolutionBorderModeExt.Reduce; - var _ReduceExt = OpenTK.Graphics.ES11.ConvolutionBorderModeExt.ReduceExt; -} -static void Test_ConvolutionParameterExt_38434() { - var _ConvolutionBorderMode = OpenTK.Graphics.ES11.ConvolutionParameterExt.ConvolutionBorderMode; - var _ConvolutionBorderModeExt = OpenTK.Graphics.ES11.ConvolutionParameterExt.ConvolutionBorderModeExt; - var _ConvolutionFilterScale = OpenTK.Graphics.ES11.ConvolutionParameterExt.ConvolutionFilterScale; - var _ConvolutionFilterScaleExt = OpenTK.Graphics.ES11.ConvolutionParameterExt.ConvolutionFilterScaleExt; - var _ConvolutionFilterBias = OpenTK.Graphics.ES11.ConvolutionParameterExt.ConvolutionFilterBias; - var _ConvolutionFilterBiasExt = OpenTK.Graphics.ES11.ConvolutionParameterExt.ConvolutionFilterBiasExt; -} -static void Test_ConvolutionTargetExt_38435() { - var _Convolution1D = OpenTK.Graphics.ES11.ConvolutionTargetExt.Convolution1D; - var _Convolution1DExt = OpenTK.Graphics.ES11.ConvolutionTargetExt.Convolution1DExt; - var _Convolution2D = OpenTK.Graphics.ES11.ConvolutionTargetExt.Convolution2D; - var _Convolution2DExt = OpenTK.Graphics.ES11.ConvolutionTargetExt.Convolution2DExt; -} -static void Test_CullFaceMode_38436() { - var _Front = OpenTK.Graphics.ES11.CullFaceMode.Front; - var _Back = OpenTK.Graphics.ES11.CullFaceMode.Back; - var _FrontAndBack = OpenTK.Graphics.ES11.CullFaceMode.FrontAndBack; -} -static void Test_DataType_38437() { -} -static void Test_DepthFunction_38438() { - var _Never = OpenTK.Graphics.ES11.DepthFunction.Never; - var _Less = OpenTK.Graphics.ES11.DepthFunction.Less; - var _Equal = OpenTK.Graphics.ES11.DepthFunction.Equal; - var _Lequal = OpenTK.Graphics.ES11.DepthFunction.Lequal; - var _Greater = OpenTK.Graphics.ES11.DepthFunction.Greater; - var _Notequal = OpenTK.Graphics.ES11.DepthFunction.Notequal; - var _Gequal = OpenTK.Graphics.ES11.DepthFunction.Gequal; - var _Always = OpenTK.Graphics.ES11.DepthFunction.Always; -} -static void Test_DrawBufferMode_38439() { - var _None = OpenTK.Graphics.ES11.DrawBufferMode.None; - var _NoneOes = OpenTK.Graphics.ES11.DrawBufferMode.NoneOes; - var _FrontLeft = OpenTK.Graphics.ES11.DrawBufferMode.FrontLeft; - var _FrontRight = OpenTK.Graphics.ES11.DrawBufferMode.FrontRight; - var _BackLeft = OpenTK.Graphics.ES11.DrawBufferMode.BackLeft; - var _BackRight = OpenTK.Graphics.ES11.DrawBufferMode.BackRight; - var _Front = OpenTK.Graphics.ES11.DrawBufferMode.Front; - var _Back = OpenTK.Graphics.ES11.DrawBufferMode.Back; - var _Left = OpenTK.Graphics.ES11.DrawBufferMode.Left; - var _Right = OpenTK.Graphics.ES11.DrawBufferMode.Right; - var _FrontAndBack = OpenTK.Graphics.ES11.DrawBufferMode.FrontAndBack; - var _Aux0 = OpenTK.Graphics.ES11.DrawBufferMode.Aux0; - var _Aux1 = OpenTK.Graphics.ES11.DrawBufferMode.Aux1; - var _Aux2 = OpenTK.Graphics.ES11.DrawBufferMode.Aux2; - var _Aux3 = OpenTK.Graphics.ES11.DrawBufferMode.Aux3; -} -static void Test_EnableCap_38440() { - var _PointSmooth = OpenTK.Graphics.ES11.EnableCap.PointSmooth; - var _LineSmooth = OpenTK.Graphics.ES11.EnableCap.LineSmooth; - var _LineStipple = OpenTK.Graphics.ES11.EnableCap.LineStipple; - var _PolygonSmooth = OpenTK.Graphics.ES11.EnableCap.PolygonSmooth; - var _PolygonStipple = OpenTK.Graphics.ES11.EnableCap.PolygonStipple; - var _CullFace = OpenTK.Graphics.ES11.EnableCap.CullFace; - var _Lighting = OpenTK.Graphics.ES11.EnableCap.Lighting; - var _ColorMaterial = OpenTK.Graphics.ES11.EnableCap.ColorMaterial; - var _Fog = OpenTK.Graphics.ES11.EnableCap.Fog; - var _DepthTest = OpenTK.Graphics.ES11.EnableCap.DepthTest; - var _StencilTest = OpenTK.Graphics.ES11.EnableCap.StencilTest; - var _Normalize = OpenTK.Graphics.ES11.EnableCap.Normalize; - var _AlphaTest = OpenTK.Graphics.ES11.EnableCap.AlphaTest; - var _Dither = OpenTK.Graphics.ES11.EnableCap.Dither; - var _Blend = OpenTK.Graphics.ES11.EnableCap.Blend; - var _IndexLogicOp = OpenTK.Graphics.ES11.EnableCap.IndexLogicOp; - var _ColorLogicOp = OpenTK.Graphics.ES11.EnableCap.ColorLogicOp; - var _ScissorTest = OpenTK.Graphics.ES11.EnableCap.ScissorTest; - var _TextureGenS = OpenTK.Graphics.ES11.EnableCap.TextureGenS; - var _TextureGenT = OpenTK.Graphics.ES11.EnableCap.TextureGenT; - var _TextureGenR = OpenTK.Graphics.ES11.EnableCap.TextureGenR; - var _TextureGenQ = OpenTK.Graphics.ES11.EnableCap.TextureGenQ; - var _AutoNormal = OpenTK.Graphics.ES11.EnableCap.AutoNormal; - var _Map1Color4 = OpenTK.Graphics.ES11.EnableCap.Map1Color4; - var _Map1Index = OpenTK.Graphics.ES11.EnableCap.Map1Index; - var _Map1Normal = OpenTK.Graphics.ES11.EnableCap.Map1Normal; - var _Map1TextureCoord1 = OpenTK.Graphics.ES11.EnableCap.Map1TextureCoord1; - var _Map1TextureCoord2 = OpenTK.Graphics.ES11.EnableCap.Map1TextureCoord2; - var _Map1TextureCoord3 = OpenTK.Graphics.ES11.EnableCap.Map1TextureCoord3; - var _Map1TextureCoord4 = OpenTK.Graphics.ES11.EnableCap.Map1TextureCoord4; - var _Map1Vertex3 = OpenTK.Graphics.ES11.EnableCap.Map1Vertex3; - var _Map1Vertex4 = OpenTK.Graphics.ES11.EnableCap.Map1Vertex4; - var _Map2Color4 = OpenTK.Graphics.ES11.EnableCap.Map2Color4; - var _Map2Index = OpenTK.Graphics.ES11.EnableCap.Map2Index; - var _Map2Normal = OpenTK.Graphics.ES11.EnableCap.Map2Normal; - var _Map2TextureCoord1 = OpenTK.Graphics.ES11.EnableCap.Map2TextureCoord1; - var _Map2TextureCoord2 = OpenTK.Graphics.ES11.EnableCap.Map2TextureCoord2; - var _Map2TextureCoord3 = OpenTK.Graphics.ES11.EnableCap.Map2TextureCoord3; - var _Map2TextureCoord4 = OpenTK.Graphics.ES11.EnableCap.Map2TextureCoord4; - var _Map2Vertex3 = OpenTK.Graphics.ES11.EnableCap.Map2Vertex3; - var _Map2Vertex4 = OpenTK.Graphics.ES11.EnableCap.Map2Vertex4; - var _Texture1D = OpenTK.Graphics.ES11.EnableCap.Texture1D; - var _Texture2D = OpenTK.Graphics.ES11.EnableCap.Texture2D; - var _PolygonOffsetPoint = OpenTK.Graphics.ES11.EnableCap.PolygonOffsetPoint; - var _PolygonOffsetLine = OpenTK.Graphics.ES11.EnableCap.PolygonOffsetLine; - var _ClipPlane0 = OpenTK.Graphics.ES11.EnableCap.ClipPlane0; - var _ClipPlane1 = OpenTK.Graphics.ES11.EnableCap.ClipPlane1; - var _ClipPlane2 = OpenTK.Graphics.ES11.EnableCap.ClipPlane2; - var _ClipPlane3 = OpenTK.Graphics.ES11.EnableCap.ClipPlane3; - var _ClipPlane4 = OpenTK.Graphics.ES11.EnableCap.ClipPlane4; - var _ClipPlane5 = OpenTK.Graphics.ES11.EnableCap.ClipPlane5; - var _Light0 = OpenTK.Graphics.ES11.EnableCap.Light0; - var _Light1 = OpenTK.Graphics.ES11.EnableCap.Light1; - var _Light2 = OpenTK.Graphics.ES11.EnableCap.Light2; - var _Light3 = OpenTK.Graphics.ES11.EnableCap.Light3; - var _Light4 = OpenTK.Graphics.ES11.EnableCap.Light4; - var _Light5 = OpenTK.Graphics.ES11.EnableCap.Light5; - var _Light6 = OpenTK.Graphics.ES11.EnableCap.Light6; - var _Light7 = OpenTK.Graphics.ES11.EnableCap.Light7; - var _Convolution1DExt = OpenTK.Graphics.ES11.EnableCap.Convolution1DExt; - var _Convolution2DExt = OpenTK.Graphics.ES11.EnableCap.Convolution2DExt; - var _Separable2DExt = OpenTK.Graphics.ES11.EnableCap.Separable2DExt; - var _HistogramExt = OpenTK.Graphics.ES11.EnableCap.HistogramExt; - var _MinmaxExt = OpenTK.Graphics.ES11.EnableCap.MinmaxExt; - var _PolygonOffsetFill = OpenTK.Graphics.ES11.EnableCap.PolygonOffsetFill; - var _RescaleNormalExt = OpenTK.Graphics.ES11.EnableCap.RescaleNormalExt; - var _Texture3DExt = OpenTK.Graphics.ES11.EnableCap.Texture3DExt; - var _VertexArray = OpenTK.Graphics.ES11.EnableCap.VertexArray; - var _NormalArray = OpenTK.Graphics.ES11.EnableCap.NormalArray; - var _ColorArray = OpenTK.Graphics.ES11.EnableCap.ColorArray; - var _IndexArray = OpenTK.Graphics.ES11.EnableCap.IndexArray; - var _TextureCoordArray = OpenTK.Graphics.ES11.EnableCap.TextureCoordArray; - var _EdgeFlagArray = OpenTK.Graphics.ES11.EnableCap.EdgeFlagArray; - var _InterlaceSgix = OpenTK.Graphics.ES11.EnableCap.InterlaceSgix; - var _MultisampleSgis = OpenTK.Graphics.ES11.EnableCap.MultisampleSgis; - var _SampleAlphaToMaskSgis = OpenTK.Graphics.ES11.EnableCap.SampleAlphaToMaskSgis; - var _SampleAlphaToOneSgis = OpenTK.Graphics.ES11.EnableCap.SampleAlphaToOneSgis; - var _SampleMaskSgis = OpenTK.Graphics.ES11.EnableCap.SampleMaskSgis; - var _TextureColorTableSgi = OpenTK.Graphics.ES11.EnableCap.TextureColorTableSgi; - var _ColorTableSgi = OpenTK.Graphics.ES11.EnableCap.ColorTableSgi; - var _PostConvolutionColorTableSgi = OpenTK.Graphics.ES11.EnableCap.PostConvolutionColorTableSgi; - var _PostColorMatrixColorTableSgi = OpenTK.Graphics.ES11.EnableCap.PostColorMatrixColorTableSgi; - var _Texture4DSgis = OpenTK.Graphics.ES11.EnableCap.Texture4DSgis; - var _PixelTexGenSgix = OpenTK.Graphics.ES11.EnableCap.PixelTexGenSgix; - var _SpriteSgix = OpenTK.Graphics.ES11.EnableCap.SpriteSgix; - var _ReferencePlaneSgix = OpenTK.Graphics.ES11.EnableCap.ReferencePlaneSgix; - var _IrInstrument1Sgix = OpenTK.Graphics.ES11.EnableCap.IrInstrument1Sgix; - var _CalligraphicFragmentSgix = OpenTK.Graphics.ES11.EnableCap.CalligraphicFragmentSgix; - var _FramezoomSgix = OpenTK.Graphics.ES11.EnableCap.FramezoomSgix; - var _FogOffsetSgix = OpenTK.Graphics.ES11.EnableCap.FogOffsetSgix; - var _SharedTexturePaletteExt = OpenTK.Graphics.ES11.EnableCap.SharedTexturePaletteExt; - var _AsyncHistogramSgix = OpenTK.Graphics.ES11.EnableCap.AsyncHistogramSgix; - var _PixelTextureSgis = OpenTK.Graphics.ES11.EnableCap.PixelTextureSgis; - var _AsyncTexImageSgix = OpenTK.Graphics.ES11.EnableCap.AsyncTexImageSgix; - var _AsyncDrawPixelsSgix = OpenTK.Graphics.ES11.EnableCap.AsyncDrawPixelsSgix; - var _AsyncReadPixelsSgix = OpenTK.Graphics.ES11.EnableCap.AsyncReadPixelsSgix; - var _FragmentLightingSgix = OpenTK.Graphics.ES11.EnableCap.FragmentLightingSgix; - var _FragmentColorMaterialSgix = OpenTK.Graphics.ES11.EnableCap.FragmentColorMaterialSgix; - var _FragmentLight0Sgix = OpenTK.Graphics.ES11.EnableCap.FragmentLight0Sgix; - var _FragmentLight1Sgix = OpenTK.Graphics.ES11.EnableCap.FragmentLight1Sgix; - var _FragmentLight2Sgix = OpenTK.Graphics.ES11.EnableCap.FragmentLight2Sgix; - var _FragmentLight3Sgix = OpenTK.Graphics.ES11.EnableCap.FragmentLight3Sgix; - var _FragmentLight4Sgix = OpenTK.Graphics.ES11.EnableCap.FragmentLight4Sgix; - var _FragmentLight5Sgix = OpenTK.Graphics.ES11.EnableCap.FragmentLight5Sgix; - var _FragmentLight6Sgix = OpenTK.Graphics.ES11.EnableCap.FragmentLight6Sgix; - var _FragmentLight7Sgix = OpenTK.Graphics.ES11.EnableCap.FragmentLight7Sgix; -} -static void Test_ErrorCode_38441() { - var _NoError = OpenTK.Graphics.ES11.ErrorCode.NoError; - var _InvalidEnum = OpenTK.Graphics.ES11.ErrorCode.InvalidEnum; - var _InvalidValue = OpenTK.Graphics.ES11.ErrorCode.InvalidValue; - var _InvalidOperation = OpenTK.Graphics.ES11.ErrorCode.InvalidOperation; - var _StackOverflow = OpenTK.Graphics.ES11.ErrorCode.StackOverflow; - var _StackUnderflow = OpenTK.Graphics.ES11.ErrorCode.StackUnderflow; - var _OutOfMemory = OpenTK.Graphics.ES11.ErrorCode.OutOfMemory; - var _InvalidFramebufferOperation = OpenTK.Graphics.ES11.ErrorCode.InvalidFramebufferOperation; - var _InvalidFramebufferOperationExt = OpenTK.Graphics.ES11.ErrorCode.InvalidFramebufferOperationExt; - var _InvalidFramebufferOperationOes = OpenTK.Graphics.ES11.ErrorCode.InvalidFramebufferOperationOes; - var _TableTooLarge = OpenTK.Graphics.ES11.ErrorCode.TableTooLarge; - var _TableTooLargeExt = OpenTK.Graphics.ES11.ErrorCode.TableTooLargeExt; - var _TextureTooLargeExt = OpenTK.Graphics.ES11.ErrorCode.TextureTooLargeExt; -} -static void Test_ExtBlendMinmax_38442() { - var _FuncAddExt = OpenTK.Graphics.ES11.ExtBlendMinmax.FuncAddExt; - var _MinExt = OpenTK.Graphics.ES11.ExtBlendMinmax.MinExt; - var _MaxExt = OpenTK.Graphics.ES11.ExtBlendMinmax.MaxExt; - var _BlendEquationExt = OpenTK.Graphics.ES11.ExtBlendMinmax.BlendEquationExt; -} -static void Test_ExtDiscardFramebuffer_38443() { - var _ColorExt = OpenTK.Graphics.ES11.ExtDiscardFramebuffer.ColorExt; - var _DepthExt = OpenTK.Graphics.ES11.ExtDiscardFramebuffer.DepthExt; - var _StencilExt = OpenTK.Graphics.ES11.ExtDiscardFramebuffer.StencilExt; -} -static void Test_ExtMapBufferRange_38444() { - var _MapReadBitExt = OpenTK.Graphics.ES11.ExtMapBufferRange.MapReadBitExt; - var _MapWriteBitExt = OpenTK.Graphics.ES11.ExtMapBufferRange.MapWriteBitExt; - var _MapInvalidateRangeBitExt = OpenTK.Graphics.ES11.ExtMapBufferRange.MapInvalidateRangeBitExt; - var _MapInvalidateBufferBitExt = OpenTK.Graphics.ES11.ExtMapBufferRange.MapInvalidateBufferBitExt; - var _MapFlushExplicitBitExt = OpenTK.Graphics.ES11.ExtMapBufferRange.MapFlushExplicitBitExt; - var _MapUnsynchronizedBitExt = OpenTK.Graphics.ES11.ExtMapBufferRange.MapUnsynchronizedBitExt; -} -static void Test_ExtMultiDrawArrays_38445() { -} -static void Test_ExtMultisampledRenderToTexture_38446() { - var _RenderbufferSamplesExt = OpenTK.Graphics.ES11.ExtMultisampledRenderToTexture.RenderbufferSamplesExt; - var _FramebufferIncompleteMultisampleExt = OpenTK.Graphics.ES11.ExtMultisampledRenderToTexture.FramebufferIncompleteMultisampleExt; - var _MaxSamplesExt = OpenTK.Graphics.ES11.ExtMultisampledRenderToTexture.MaxSamplesExt; - var _FramebufferAttachmentTextureSamplesExt = OpenTK.Graphics.ES11.ExtMultisampledRenderToTexture.FramebufferAttachmentTextureSamplesExt; -} -static void Test_ExtReadFormatBgra_38447() { - var _BgraExt = OpenTK.Graphics.ES11.ExtReadFormatBgra.BgraExt; - var _UnsignedShort4444RevExt = OpenTK.Graphics.ES11.ExtReadFormatBgra.UnsignedShort4444RevExt; - var _UnsignedShort1555RevExt = OpenTK.Graphics.ES11.ExtReadFormatBgra.UnsignedShort1555RevExt; -} -static void Test_ExtRobustness_38448() { - var _NoError = OpenTK.Graphics.ES11.ExtRobustness.NoError; - var _LoseContextOnResetExt = OpenTK.Graphics.ES11.ExtRobustness.LoseContextOnResetExt; - var _GuiltyContextResetExt = OpenTK.Graphics.ES11.ExtRobustness.GuiltyContextResetExt; - var _InnocentContextResetExt = OpenTK.Graphics.ES11.ExtRobustness.InnocentContextResetExt; - var _UnknownContextResetExt = OpenTK.Graphics.ES11.ExtRobustness.UnknownContextResetExt; - var _ResetNotificationStrategyExt = OpenTK.Graphics.ES11.ExtRobustness.ResetNotificationStrategyExt; - var _NoResetNotificationExt = OpenTK.Graphics.ES11.ExtRobustness.NoResetNotificationExt; - var _ContextRobustAccessExt = OpenTK.Graphics.ES11.ExtRobustness.ContextRobustAccessExt; -} -static void Test_ExtSrgb_38449() { - var _FramebufferAttachmentColorEncodingExt = OpenTK.Graphics.ES11.ExtSrgb.FramebufferAttachmentColorEncodingExt; - var _SrgbExt = OpenTK.Graphics.ES11.ExtSrgb.SrgbExt; - var _SrgbAlphaExt = OpenTK.Graphics.ES11.ExtSrgb.SrgbAlphaExt; - var _Srgb8Alpha8Ext = OpenTK.Graphics.ES11.ExtSrgb.Srgb8Alpha8Ext; -} -static void Test_ExtTextureCompressionDxt1_38450() { - var _CompressedRgbS3tcDxt1Ext = OpenTK.Graphics.ES11.ExtTextureCompressionDxt1.CompressedRgbS3tcDxt1Ext; - var _CompressedRgbaS3tcDxt1Ext = OpenTK.Graphics.ES11.ExtTextureCompressionDxt1.CompressedRgbaS3tcDxt1Ext; -} -static void Test_ExttextureFilterAnisotropic_38451() { - var _TextureMaxAnisotropyExt = OpenTK.Graphics.ES11.ExttextureFilterAnisotropic.TextureMaxAnisotropyExt; - var _MaxTextureMaxAnisotropyExt = OpenTK.Graphics.ES11.ExttextureFilterAnisotropic.MaxTextureMaxAnisotropyExt; - var _ExtTextureFilterAnisotropic = OpenTK.Graphics.ES11.ExttextureFilterAnisotropic.ExtTextureFilterAnisotropic; -} -static void Test_ExtTextureFilterAnisotropic_38452() { - var _TextureMaxAnisotropyExt = OpenTK.Graphics.ES11.ExtTextureFilterAnisotropic.TextureMaxAnisotropyExt; - var _MaxTextureMaxAnisotropyExt = OpenTK.Graphics.ES11.ExtTextureFilterAnisotropic.MaxTextureMaxAnisotropyExt; -} -static void Test_ExttextureFormatBgra8888_38453() { - var _Bgra = OpenTK.Graphics.ES11.ExttextureFormatBgra8888.Bgra; - var _ExtTextureFormatBgra8888 = OpenTK.Graphics.ES11.ExttextureFormatBgra8888.ExtTextureFormatBgra8888; -} -static void Test_ExtTextureFormatBgra8888_38454() { - var _BgraExt = OpenTK.Graphics.ES11.ExtTextureFormatBgra8888.BgraExt; -} -static void Test_ExtTextureLodBias_38455() { - var _MaxTextureLodBiasExt = OpenTK.Graphics.ES11.ExtTextureLodBias.MaxTextureLodBiasExt; - var _TextureFilterControlExt = OpenTK.Graphics.ES11.ExtTextureLodBias.TextureFilterControlExt; - var _TextureLodBiasExt = OpenTK.Graphics.ES11.ExtTextureLodBias.TextureLodBiasExt; -} -static void Test_ExtTextureStorage_38456() { - var _Alpha8Ext = OpenTK.Graphics.ES11.ExtTextureStorage.Alpha8Ext; - var _Luminance8Ext = OpenTK.Graphics.ES11.ExtTextureStorage.Luminance8Ext; - var _Luminance8Alpha8Ext = OpenTK.Graphics.ES11.ExtTextureStorage.Luminance8Alpha8Ext; - var _Rgb10Ext = OpenTK.Graphics.ES11.ExtTextureStorage.Rgb10Ext; - var _Rgb10A2Ext = OpenTK.Graphics.ES11.ExtTextureStorage.Rgb10A2Ext; - var _R8Ext = OpenTK.Graphics.ES11.ExtTextureStorage.R8Ext; - var _Rg8Ext = OpenTK.Graphics.ES11.ExtTextureStorage.Rg8Ext; - var _R16fExt = OpenTK.Graphics.ES11.ExtTextureStorage.R16fExt; - var _R32fExt = OpenTK.Graphics.ES11.ExtTextureStorage.R32fExt; - var _Rg16fExt = OpenTK.Graphics.ES11.ExtTextureStorage.Rg16fExt; - var _Rg32fExt = OpenTK.Graphics.ES11.ExtTextureStorage.Rg32fExt; - var _Rgba32fExt = OpenTK.Graphics.ES11.ExtTextureStorage.Rgba32fExt; - var _Rgb32fExt = OpenTK.Graphics.ES11.ExtTextureStorage.Rgb32fExt; - var _Alpha32fExt = OpenTK.Graphics.ES11.ExtTextureStorage.Alpha32fExt; - var _Luminance32fExt = OpenTK.Graphics.ES11.ExtTextureStorage.Luminance32fExt; - var _LuminanceAlpha32fExt = OpenTK.Graphics.ES11.ExtTextureStorage.LuminanceAlpha32fExt; - var _Rgba16fExt = OpenTK.Graphics.ES11.ExtTextureStorage.Rgba16fExt; - var _Rgb16fExt = OpenTK.Graphics.ES11.ExtTextureStorage.Rgb16fExt; - var _Alpha16fExt = OpenTK.Graphics.ES11.ExtTextureStorage.Alpha16fExt; - var _Luminance16fExt = OpenTK.Graphics.ES11.ExtTextureStorage.Luminance16fExt; - var _LuminanceAlpha16fExt = OpenTK.Graphics.ES11.ExtTextureStorage.LuminanceAlpha16fExt; - var _TextureImmutableFormatExt = OpenTK.Graphics.ES11.ExtTextureStorage.TextureImmutableFormatExt; - var _Bgra8Ext = OpenTK.Graphics.ES11.ExtTextureStorage.Bgra8Ext; -} -static void Test_FeedBackToken_38457() { - var _PassThroughToken = OpenTK.Graphics.ES11.FeedBackToken.PassThroughToken; - var _PointToken = OpenTK.Graphics.ES11.FeedBackToken.PointToken; - var _LineToken = OpenTK.Graphics.ES11.FeedBackToken.LineToken; - var _PolygonToken = OpenTK.Graphics.ES11.FeedBackToken.PolygonToken; - var _BitmapToken = OpenTK.Graphics.ES11.FeedBackToken.BitmapToken; - var _DrawPixelToken = OpenTK.Graphics.ES11.FeedBackToken.DrawPixelToken; - var _CopyPixelToken = OpenTK.Graphics.ES11.FeedBackToken.CopyPixelToken; - var _LineResetToken = OpenTK.Graphics.ES11.FeedBackToken.LineResetToken; -} -static void Test_FeedbackType_38458() { - var _Gl2D = OpenTK.Graphics.ES11.FeedbackType.Gl2D; - var _Gl3D = OpenTK.Graphics.ES11.FeedbackType.Gl3D; - var _Gl3DColor = OpenTK.Graphics.ES11.FeedbackType.Gl3DColor; - var _Gl3DColorTexture = OpenTK.Graphics.ES11.FeedbackType.Gl3DColorTexture; - var _Gl4DColorTexture = OpenTK.Graphics.ES11.FeedbackType.Gl4DColorTexture; -} -static void Test_FfdMaskSgix_38459() { -} -static void Test_FfdTargetSgix_38460() { - var _GeometryDeformationSgix = OpenTK.Graphics.ES11.FfdTargetSgix.GeometryDeformationSgix; - var _TextureDeformationSgix = OpenTK.Graphics.ES11.FfdTargetSgix.TextureDeformationSgix; -} -static void Test_FogCoordinatePointerType_38461() { - var _Float = OpenTK.Graphics.ES11.FogCoordinatePointerType.Float; - var _Double = OpenTK.Graphics.ES11.FogCoordinatePointerType.Double; -} -static void Test_FogMode_38462() { - var _Exp = OpenTK.Graphics.ES11.FogMode.Exp; - var _Exp2 = OpenTK.Graphics.ES11.FogMode.Exp2; - var _Linear = OpenTK.Graphics.ES11.FogMode.Linear; - var _FogFuncSgis = OpenTK.Graphics.ES11.FogMode.FogFuncSgis; -} -static void Test_FogParameter_38463() { - var _FogIndex = OpenTK.Graphics.ES11.FogParameter.FogIndex; - var _FogDensity = OpenTK.Graphics.ES11.FogParameter.FogDensity; - var _FogStart = OpenTK.Graphics.ES11.FogParameter.FogStart; - var _FogEnd = OpenTK.Graphics.ES11.FogParameter.FogEnd; - var _FogMode = OpenTK.Graphics.ES11.FogParameter.FogMode; - var _FogColor = OpenTK.Graphics.ES11.FogParameter.FogColor; - var _FogOffsetValueSgix = OpenTK.Graphics.ES11.FogParameter.FogOffsetValueSgix; -} -static void Test_FogPointerTypeExt_38464() { - var _Float = OpenTK.Graphics.ES11.FogPointerTypeExt.Float; - var _Double = OpenTK.Graphics.ES11.FogPointerTypeExt.Double; -} -static void Test_FogPointerTypeIbm_38465() { - var _Float = OpenTK.Graphics.ES11.FogPointerTypeIbm.Float; - var _Double = OpenTK.Graphics.ES11.FogPointerTypeIbm.Double; -} -static void Test_FragmentLightModelParameterSgix_38466() { - var _FragmentLightModelLocalViewerSgix = OpenTK.Graphics.ES11.FragmentLightModelParameterSgix.FragmentLightModelLocalViewerSgix; - var _FragmentLightModelTwoSideSgix = OpenTK.Graphics.ES11.FragmentLightModelParameterSgix.FragmentLightModelTwoSideSgix; - var _FragmentLightModelAmbientSgix = OpenTK.Graphics.ES11.FragmentLightModelParameterSgix.FragmentLightModelAmbientSgix; - var _FragmentLightModelNormalInterpolationSgix = OpenTK.Graphics.ES11.FragmentLightModelParameterSgix.FragmentLightModelNormalInterpolationSgix; -} -static void Test_FrontFaceDirection_38467() { - var _Cw = OpenTK.Graphics.ES11.FrontFaceDirection.Cw; - var _Ccw = OpenTK.Graphics.ES11.FrontFaceDirection.Ccw; -} -static void Test_GetColorTableParameterPNameSgi_38468() { - var _ColorTableScaleSgi = OpenTK.Graphics.ES11.GetColorTableParameterPNameSgi.ColorTableScaleSgi; - var _ColorTableBiasSgi = OpenTK.Graphics.ES11.GetColorTableParameterPNameSgi.ColorTableBiasSgi; - var _ColorTableFormatSgi = OpenTK.Graphics.ES11.GetColorTableParameterPNameSgi.ColorTableFormatSgi; - var _ColorTableWidthSgi = OpenTK.Graphics.ES11.GetColorTableParameterPNameSgi.ColorTableWidthSgi; - var _ColorTableRedSizeSgi = OpenTK.Graphics.ES11.GetColorTableParameterPNameSgi.ColorTableRedSizeSgi; - var _ColorTableGreenSizeSgi = OpenTK.Graphics.ES11.GetColorTableParameterPNameSgi.ColorTableGreenSizeSgi; - var _ColorTableBlueSizeSgi = OpenTK.Graphics.ES11.GetColorTableParameterPNameSgi.ColorTableBlueSizeSgi; - var _ColorTableAlphaSizeSgi = OpenTK.Graphics.ES11.GetColorTableParameterPNameSgi.ColorTableAlphaSizeSgi; - var _ColorTableLuminanceSizeSgi = OpenTK.Graphics.ES11.GetColorTableParameterPNameSgi.ColorTableLuminanceSizeSgi; - var _ColorTableIntensitySizeSgi = OpenTK.Graphics.ES11.GetColorTableParameterPNameSgi.ColorTableIntensitySizeSgi; -} -static void Test_GetConvolutionParameter_38469() { - var _ConvolutionBorderModeExt = OpenTK.Graphics.ES11.GetConvolutionParameter.ConvolutionBorderModeExt; - var _ConvolutionFilterScaleExt = OpenTK.Graphics.ES11.GetConvolutionParameter.ConvolutionFilterScaleExt; - var _ConvolutionFilterBiasExt = OpenTK.Graphics.ES11.GetConvolutionParameter.ConvolutionFilterBiasExt; - var _ConvolutionFormatExt = OpenTK.Graphics.ES11.GetConvolutionParameter.ConvolutionFormatExt; - var _ConvolutionWidthExt = OpenTK.Graphics.ES11.GetConvolutionParameter.ConvolutionWidthExt; - var _ConvolutionHeightExt = OpenTK.Graphics.ES11.GetConvolutionParameter.ConvolutionHeightExt; - var _MaxConvolutionWidthExt = OpenTK.Graphics.ES11.GetConvolutionParameter.MaxConvolutionWidthExt; - var _MaxConvolutionHeightExt = OpenTK.Graphics.ES11.GetConvolutionParameter.MaxConvolutionHeightExt; -} -static void Test_GetHistogramParameterPNameExt_38470() { - var _HistogramWidthExt = OpenTK.Graphics.ES11.GetHistogramParameterPNameExt.HistogramWidthExt; - var _HistogramFormatExt = OpenTK.Graphics.ES11.GetHistogramParameterPNameExt.HistogramFormatExt; - var _HistogramRedSizeExt = OpenTK.Graphics.ES11.GetHistogramParameterPNameExt.HistogramRedSizeExt; - var _HistogramGreenSizeExt = OpenTK.Graphics.ES11.GetHistogramParameterPNameExt.HistogramGreenSizeExt; - var _HistogramBlueSizeExt = OpenTK.Graphics.ES11.GetHistogramParameterPNameExt.HistogramBlueSizeExt; - var _HistogramAlphaSizeExt = OpenTK.Graphics.ES11.GetHistogramParameterPNameExt.HistogramAlphaSizeExt; - var _HistogramLuminanceSizeExt = OpenTK.Graphics.ES11.GetHistogramParameterPNameExt.HistogramLuminanceSizeExt; - var _HistogramSinkExt = OpenTK.Graphics.ES11.GetHistogramParameterPNameExt.HistogramSinkExt; -} -static void Test_GetMapQuery_38471() { - var _Coeff = OpenTK.Graphics.ES11.GetMapQuery.Coeff; - var _Order = OpenTK.Graphics.ES11.GetMapQuery.Order; - var _Domain = OpenTK.Graphics.ES11.GetMapQuery.Domain; -} -static void Test_GetMinmaxParameterPNameExt_38472() { - var _MinmaxFormat = OpenTK.Graphics.ES11.GetMinmaxParameterPNameExt.MinmaxFormat; - var _MinmaxFormatExt = OpenTK.Graphics.ES11.GetMinmaxParameterPNameExt.MinmaxFormatExt; - var _MinmaxSink = OpenTK.Graphics.ES11.GetMinmaxParameterPNameExt.MinmaxSink; - var _MinmaxSinkExt = OpenTK.Graphics.ES11.GetMinmaxParameterPNameExt.MinmaxSinkExt; -} -static void Test_GetPixelMap_38473() { - var _PixelMapIToI = OpenTK.Graphics.ES11.GetPixelMap.PixelMapIToI; - var _PixelMapSToS = OpenTK.Graphics.ES11.GetPixelMap.PixelMapSToS; - var _PixelMapIToR = OpenTK.Graphics.ES11.GetPixelMap.PixelMapIToR; - var _PixelMapIToG = OpenTK.Graphics.ES11.GetPixelMap.PixelMapIToG; - var _PixelMapIToB = OpenTK.Graphics.ES11.GetPixelMap.PixelMapIToB; - var _PixelMapIToA = OpenTK.Graphics.ES11.GetPixelMap.PixelMapIToA; - var _PixelMapRToR = OpenTK.Graphics.ES11.GetPixelMap.PixelMapRToR; - var _PixelMapGToG = OpenTK.Graphics.ES11.GetPixelMap.PixelMapGToG; - var _PixelMapBToB = OpenTK.Graphics.ES11.GetPixelMap.PixelMapBToB; - var _PixelMapAToA = OpenTK.Graphics.ES11.GetPixelMap.PixelMapAToA; -} -static void Test_GetPName_38474() { - var _CurrentColor = OpenTK.Graphics.ES11.GetPName.CurrentColor; - var _CurrentIndex = OpenTK.Graphics.ES11.GetPName.CurrentIndex; - var _CurrentNormal = OpenTK.Graphics.ES11.GetPName.CurrentNormal; - var _CurrentTextureCoords = OpenTK.Graphics.ES11.GetPName.CurrentTextureCoords; - var _CurrentRasterColor = OpenTK.Graphics.ES11.GetPName.CurrentRasterColor; - var _CurrentRasterIndex = OpenTK.Graphics.ES11.GetPName.CurrentRasterIndex; - var _CurrentRasterTextureCoords = OpenTK.Graphics.ES11.GetPName.CurrentRasterTextureCoords; - var _CurrentRasterPosition = OpenTK.Graphics.ES11.GetPName.CurrentRasterPosition; - var _CurrentRasterPositionValid = OpenTK.Graphics.ES11.GetPName.CurrentRasterPositionValid; - var _CurrentRasterDistance = OpenTK.Graphics.ES11.GetPName.CurrentRasterDistance; - var _PointSmooth = OpenTK.Graphics.ES11.GetPName.PointSmooth; - var _PointSize = OpenTK.Graphics.ES11.GetPName.PointSize; - var _PointSizeRange = OpenTK.Graphics.ES11.GetPName.PointSizeRange; - var _SmoothPointSizeRange = OpenTK.Graphics.ES11.GetPName.SmoothPointSizeRange; - var _PointSizeGranularity = OpenTK.Graphics.ES11.GetPName.PointSizeGranularity; - var _SmoothPointSizeGranularity = OpenTK.Graphics.ES11.GetPName.SmoothPointSizeGranularity; - var _LineSmooth = OpenTK.Graphics.ES11.GetPName.LineSmooth; - var _LineWidth = OpenTK.Graphics.ES11.GetPName.LineWidth; - var _LineWidthRange = OpenTK.Graphics.ES11.GetPName.LineWidthRange; - var _SmoothLineWidthRange = OpenTK.Graphics.ES11.GetPName.SmoothLineWidthRange; - var _LineWidthGranularity = OpenTK.Graphics.ES11.GetPName.LineWidthGranularity; - var _SmoothLineWidthGranularity = OpenTK.Graphics.ES11.GetPName.SmoothLineWidthGranularity; - var _LineStipple = OpenTK.Graphics.ES11.GetPName.LineStipple; - var _LineStipplePattern = OpenTK.Graphics.ES11.GetPName.LineStipplePattern; - var _LineStippleRepeat = OpenTK.Graphics.ES11.GetPName.LineStippleRepeat; - var _ListMode = OpenTK.Graphics.ES11.GetPName.ListMode; - var _MaxListNesting = OpenTK.Graphics.ES11.GetPName.MaxListNesting; - var _ListBase = OpenTK.Graphics.ES11.GetPName.ListBase; - var _ListIndex = OpenTK.Graphics.ES11.GetPName.ListIndex; - var _PolygonMode = OpenTK.Graphics.ES11.GetPName.PolygonMode; - var _PolygonSmooth = OpenTK.Graphics.ES11.GetPName.PolygonSmooth; - var _PolygonStipple = OpenTK.Graphics.ES11.GetPName.PolygonStipple; - var _EdgeFlag = OpenTK.Graphics.ES11.GetPName.EdgeFlag; - var _CullFace = OpenTK.Graphics.ES11.GetPName.CullFace; - var _CullFaceMode = OpenTK.Graphics.ES11.GetPName.CullFaceMode; - var _FrontFace = OpenTK.Graphics.ES11.GetPName.FrontFace; - var _Lighting = OpenTK.Graphics.ES11.GetPName.Lighting; - var _LightModelLocalViewer = OpenTK.Graphics.ES11.GetPName.LightModelLocalViewer; - var _LightModelTwoSide = OpenTK.Graphics.ES11.GetPName.LightModelTwoSide; - var _LightModelAmbient = OpenTK.Graphics.ES11.GetPName.LightModelAmbient; - var _ShadeModel = OpenTK.Graphics.ES11.GetPName.ShadeModel; - var _ColorMaterialFace = OpenTK.Graphics.ES11.GetPName.ColorMaterialFace; - var _ColorMaterialParameter = OpenTK.Graphics.ES11.GetPName.ColorMaterialParameter; - var _ColorMaterial = OpenTK.Graphics.ES11.GetPName.ColorMaterial; - var _Fog = OpenTK.Graphics.ES11.GetPName.Fog; - var _FogIndex = OpenTK.Graphics.ES11.GetPName.FogIndex; - var _FogDensity = OpenTK.Graphics.ES11.GetPName.FogDensity; - var _FogStart = OpenTK.Graphics.ES11.GetPName.FogStart; - var _FogEnd = OpenTK.Graphics.ES11.GetPName.FogEnd; - var _FogMode = OpenTK.Graphics.ES11.GetPName.FogMode; - var _FogColor = OpenTK.Graphics.ES11.GetPName.FogColor; - var _DepthRange = OpenTK.Graphics.ES11.GetPName.DepthRange; - var _DepthTest = OpenTK.Graphics.ES11.GetPName.DepthTest; - var _DepthWritemask = OpenTK.Graphics.ES11.GetPName.DepthWritemask; - var _DepthClearValue = OpenTK.Graphics.ES11.GetPName.DepthClearValue; - var _DepthFunc = OpenTK.Graphics.ES11.GetPName.DepthFunc; - var _AccumClearValue = OpenTK.Graphics.ES11.GetPName.AccumClearValue; - var _StencilTest = OpenTK.Graphics.ES11.GetPName.StencilTest; - var _StencilClearValue = OpenTK.Graphics.ES11.GetPName.StencilClearValue; - var _StencilFunc = OpenTK.Graphics.ES11.GetPName.StencilFunc; - var _StencilValueMask = OpenTK.Graphics.ES11.GetPName.StencilValueMask; - var _StencilFail = OpenTK.Graphics.ES11.GetPName.StencilFail; - var _StencilPassDepthFail = OpenTK.Graphics.ES11.GetPName.StencilPassDepthFail; - var _StencilPassDepthPass = OpenTK.Graphics.ES11.GetPName.StencilPassDepthPass; - var _StencilRef = OpenTK.Graphics.ES11.GetPName.StencilRef; - var _StencilWritemask = OpenTK.Graphics.ES11.GetPName.StencilWritemask; - var _MatrixMode = OpenTK.Graphics.ES11.GetPName.MatrixMode; - var _Normalize = OpenTK.Graphics.ES11.GetPName.Normalize; - var _Viewport = OpenTK.Graphics.ES11.GetPName.Viewport; - var _Modelview0StackDepthExt = OpenTK.Graphics.ES11.GetPName.Modelview0StackDepthExt; - var _ModelviewStackDepth = OpenTK.Graphics.ES11.GetPName.ModelviewStackDepth; - var _ProjectionStackDepth = OpenTK.Graphics.ES11.GetPName.ProjectionStackDepth; - var _TextureStackDepth = OpenTK.Graphics.ES11.GetPName.TextureStackDepth; - var _Modelview0MatrixExt = OpenTK.Graphics.ES11.GetPName.Modelview0MatrixExt; - var _ModelviewMatrix = OpenTK.Graphics.ES11.GetPName.ModelviewMatrix; - var _ProjectionMatrix = OpenTK.Graphics.ES11.GetPName.ProjectionMatrix; - var _TextureMatrix = OpenTK.Graphics.ES11.GetPName.TextureMatrix; - var _AttribStackDepth = OpenTK.Graphics.ES11.GetPName.AttribStackDepth; - var _ClientAttribStackDepth = OpenTK.Graphics.ES11.GetPName.ClientAttribStackDepth; - var _AlphaTest = OpenTK.Graphics.ES11.GetPName.AlphaTest; - var _AlphaTestQcom = OpenTK.Graphics.ES11.GetPName.AlphaTestQcom; - var _AlphaTestFunc = OpenTK.Graphics.ES11.GetPName.AlphaTestFunc; - var _AlphaTestFuncQcom = OpenTK.Graphics.ES11.GetPName.AlphaTestFuncQcom; - var _AlphaTestRef = OpenTK.Graphics.ES11.GetPName.AlphaTestRef; - var _AlphaTestRefQcom = OpenTK.Graphics.ES11.GetPName.AlphaTestRefQcom; - var _Dither = OpenTK.Graphics.ES11.GetPName.Dither; - var _BlendDst = OpenTK.Graphics.ES11.GetPName.BlendDst; - var _BlendSrc = OpenTK.Graphics.ES11.GetPName.BlendSrc; - var _Blend = OpenTK.Graphics.ES11.GetPName.Blend; - var _LogicOpMode = OpenTK.Graphics.ES11.GetPName.LogicOpMode; - var _IndexLogicOp = OpenTK.Graphics.ES11.GetPName.IndexLogicOp; - var _LogicOp = OpenTK.Graphics.ES11.GetPName.LogicOp; - var _ColorLogicOp = OpenTK.Graphics.ES11.GetPName.ColorLogicOp; - var _AuxBuffers = OpenTK.Graphics.ES11.GetPName.AuxBuffers; - var _DrawBuffer = OpenTK.Graphics.ES11.GetPName.DrawBuffer; - var _DrawBufferExt = OpenTK.Graphics.ES11.GetPName.DrawBufferExt; - var _ReadBuffer = OpenTK.Graphics.ES11.GetPName.ReadBuffer; - var _ReadBufferExt = OpenTK.Graphics.ES11.GetPName.ReadBufferExt; - var _ReadBufferNv = OpenTK.Graphics.ES11.GetPName.ReadBufferNv; - var _ScissorBox = OpenTK.Graphics.ES11.GetPName.ScissorBox; - var _ScissorTest = OpenTK.Graphics.ES11.GetPName.ScissorTest; - var _IndexClearValue = OpenTK.Graphics.ES11.GetPName.IndexClearValue; - var _IndexWritemask = OpenTK.Graphics.ES11.GetPName.IndexWritemask; - var _ColorClearValue = OpenTK.Graphics.ES11.GetPName.ColorClearValue; - var _ColorWritemask = OpenTK.Graphics.ES11.GetPName.ColorWritemask; - var _IndexMode = OpenTK.Graphics.ES11.GetPName.IndexMode; - var _RgbaMode = OpenTK.Graphics.ES11.GetPName.RgbaMode; - var _Doublebuffer = OpenTK.Graphics.ES11.GetPName.Doublebuffer; - var _Stereo = OpenTK.Graphics.ES11.GetPName.Stereo; - var _RenderMode = OpenTK.Graphics.ES11.GetPName.RenderMode; - var _PerspectiveCorrectionHint = OpenTK.Graphics.ES11.GetPName.PerspectiveCorrectionHint; - var _PointSmoothHint = OpenTK.Graphics.ES11.GetPName.PointSmoothHint; - var _LineSmoothHint = OpenTK.Graphics.ES11.GetPName.LineSmoothHint; - var _PolygonSmoothHint = OpenTK.Graphics.ES11.GetPName.PolygonSmoothHint; - var _FogHint = OpenTK.Graphics.ES11.GetPName.FogHint; - var _TextureGenS = OpenTK.Graphics.ES11.GetPName.TextureGenS; - var _TextureGenT = OpenTK.Graphics.ES11.GetPName.TextureGenT; - var _TextureGenR = OpenTK.Graphics.ES11.GetPName.TextureGenR; - var _TextureGenQ = OpenTK.Graphics.ES11.GetPName.TextureGenQ; - var _PixelMapIToISize = OpenTK.Graphics.ES11.GetPName.PixelMapIToISize; - var _PixelMapSToSSize = OpenTK.Graphics.ES11.GetPName.PixelMapSToSSize; - var _PixelMapIToRSize = OpenTK.Graphics.ES11.GetPName.PixelMapIToRSize; - var _PixelMapIToGSize = OpenTK.Graphics.ES11.GetPName.PixelMapIToGSize; - var _PixelMapIToBSize = OpenTK.Graphics.ES11.GetPName.PixelMapIToBSize; - var _PixelMapIToASize = OpenTK.Graphics.ES11.GetPName.PixelMapIToASize; - var _PixelMapRToRSize = OpenTK.Graphics.ES11.GetPName.PixelMapRToRSize; - var _PixelMapGToGSize = OpenTK.Graphics.ES11.GetPName.PixelMapGToGSize; - var _PixelMapBToBSize = OpenTK.Graphics.ES11.GetPName.PixelMapBToBSize; - var _PixelMapAToASize = OpenTK.Graphics.ES11.GetPName.PixelMapAToASize; - var _UnpackSwapBytes = OpenTK.Graphics.ES11.GetPName.UnpackSwapBytes; - var _UnpackLsbFirst = OpenTK.Graphics.ES11.GetPName.UnpackLsbFirst; - var _UnpackRowLength = OpenTK.Graphics.ES11.GetPName.UnpackRowLength; - var _UnpackSkipRows = OpenTK.Graphics.ES11.GetPName.UnpackSkipRows; - var _UnpackSkipPixels = OpenTK.Graphics.ES11.GetPName.UnpackSkipPixels; - var _UnpackAlignment = OpenTK.Graphics.ES11.GetPName.UnpackAlignment; - var _PackSwapBytes = OpenTK.Graphics.ES11.GetPName.PackSwapBytes; - var _PackLsbFirst = OpenTK.Graphics.ES11.GetPName.PackLsbFirst; - var _PackRowLength = OpenTK.Graphics.ES11.GetPName.PackRowLength; - var _PackSkipRows = OpenTK.Graphics.ES11.GetPName.PackSkipRows; - var _PackSkipPixels = OpenTK.Graphics.ES11.GetPName.PackSkipPixels; - var _PackAlignment = OpenTK.Graphics.ES11.GetPName.PackAlignment; - var _MapColor = OpenTK.Graphics.ES11.GetPName.MapColor; - var _MapStencil = OpenTK.Graphics.ES11.GetPName.MapStencil; - var _IndexShift = OpenTK.Graphics.ES11.GetPName.IndexShift; - var _IndexOffset = OpenTK.Graphics.ES11.GetPName.IndexOffset; - var _RedScale = OpenTK.Graphics.ES11.GetPName.RedScale; - var _RedBias = OpenTK.Graphics.ES11.GetPName.RedBias; - var _ZoomX = OpenTK.Graphics.ES11.GetPName.ZoomX; - var _ZoomY = OpenTK.Graphics.ES11.GetPName.ZoomY; - var _GreenScale = OpenTK.Graphics.ES11.GetPName.GreenScale; - var _GreenBias = OpenTK.Graphics.ES11.GetPName.GreenBias; - var _BlueScale = OpenTK.Graphics.ES11.GetPName.BlueScale; - var _BlueBias = OpenTK.Graphics.ES11.GetPName.BlueBias; - var _AlphaScale = OpenTK.Graphics.ES11.GetPName.AlphaScale; - var _AlphaBias = OpenTK.Graphics.ES11.GetPName.AlphaBias; - var _DepthScale = OpenTK.Graphics.ES11.GetPName.DepthScale; - var _DepthBias = OpenTK.Graphics.ES11.GetPName.DepthBias; - var _MaxEvalOrder = OpenTK.Graphics.ES11.GetPName.MaxEvalOrder; - var _MaxLights = OpenTK.Graphics.ES11.GetPName.MaxLights; - var _MaxClipDistances = OpenTK.Graphics.ES11.GetPName.MaxClipDistances; - var _MaxClipPlanes = OpenTK.Graphics.ES11.GetPName.MaxClipPlanes; - var _MaxTextureSize = OpenTK.Graphics.ES11.GetPName.MaxTextureSize; - var _MaxPixelMapTable = OpenTK.Graphics.ES11.GetPName.MaxPixelMapTable; - var _MaxAttribStackDepth = OpenTK.Graphics.ES11.GetPName.MaxAttribStackDepth; - var _MaxModelviewStackDepth = OpenTK.Graphics.ES11.GetPName.MaxModelviewStackDepth; - var _MaxNameStackDepth = OpenTK.Graphics.ES11.GetPName.MaxNameStackDepth; - var _MaxProjectionStackDepth = OpenTK.Graphics.ES11.GetPName.MaxProjectionStackDepth; - var _MaxTextureStackDepth = OpenTK.Graphics.ES11.GetPName.MaxTextureStackDepth; - var _MaxViewportDims = OpenTK.Graphics.ES11.GetPName.MaxViewportDims; - var _MaxClientAttribStackDepth = OpenTK.Graphics.ES11.GetPName.MaxClientAttribStackDepth; - var _SubpixelBits = OpenTK.Graphics.ES11.GetPName.SubpixelBits; - var _IndexBits = OpenTK.Graphics.ES11.GetPName.IndexBits; - var _RedBits = OpenTK.Graphics.ES11.GetPName.RedBits; - var _GreenBits = OpenTK.Graphics.ES11.GetPName.GreenBits; - var _BlueBits = OpenTK.Graphics.ES11.GetPName.BlueBits; - var _AlphaBits = OpenTK.Graphics.ES11.GetPName.AlphaBits; - var _DepthBits = OpenTK.Graphics.ES11.GetPName.DepthBits; - var _StencilBits = OpenTK.Graphics.ES11.GetPName.StencilBits; - var _AccumRedBits = OpenTK.Graphics.ES11.GetPName.AccumRedBits; - var _AccumGreenBits = OpenTK.Graphics.ES11.GetPName.AccumGreenBits; - var _AccumBlueBits = OpenTK.Graphics.ES11.GetPName.AccumBlueBits; - var _AccumAlphaBits = OpenTK.Graphics.ES11.GetPName.AccumAlphaBits; - var _NameStackDepth = OpenTK.Graphics.ES11.GetPName.NameStackDepth; - var _AutoNormal = OpenTK.Graphics.ES11.GetPName.AutoNormal; - var _Map1Color4 = OpenTK.Graphics.ES11.GetPName.Map1Color4; - var _Map1Index = OpenTK.Graphics.ES11.GetPName.Map1Index; - var _Map1Normal = OpenTK.Graphics.ES11.GetPName.Map1Normal; - var _Map1TextureCoord1 = OpenTK.Graphics.ES11.GetPName.Map1TextureCoord1; - var _Map1TextureCoord2 = OpenTK.Graphics.ES11.GetPName.Map1TextureCoord2; - var _Map1TextureCoord3 = OpenTK.Graphics.ES11.GetPName.Map1TextureCoord3; - var _Map1TextureCoord4 = OpenTK.Graphics.ES11.GetPName.Map1TextureCoord4; - var _Map1Vertex3 = OpenTK.Graphics.ES11.GetPName.Map1Vertex3; - var _Map1Vertex4 = OpenTK.Graphics.ES11.GetPName.Map1Vertex4; - var _Map2Color4 = OpenTK.Graphics.ES11.GetPName.Map2Color4; - var _Map2Index = OpenTK.Graphics.ES11.GetPName.Map2Index; - var _Map2Normal = OpenTK.Graphics.ES11.GetPName.Map2Normal; - var _Map2TextureCoord1 = OpenTK.Graphics.ES11.GetPName.Map2TextureCoord1; - var _Map2TextureCoord2 = OpenTK.Graphics.ES11.GetPName.Map2TextureCoord2; - var _Map2TextureCoord3 = OpenTK.Graphics.ES11.GetPName.Map2TextureCoord3; - var _Map2TextureCoord4 = OpenTK.Graphics.ES11.GetPName.Map2TextureCoord4; - var _Map2Vertex3 = OpenTK.Graphics.ES11.GetPName.Map2Vertex3; - var _Map2Vertex4 = OpenTK.Graphics.ES11.GetPName.Map2Vertex4; - var _Map1GridDomain = OpenTK.Graphics.ES11.GetPName.Map1GridDomain; - var _Map1GridSegments = OpenTK.Graphics.ES11.GetPName.Map1GridSegments; - var _Map2GridDomain = OpenTK.Graphics.ES11.GetPName.Map2GridDomain; - var _Map2GridSegments = OpenTK.Graphics.ES11.GetPName.Map2GridSegments; - var _Texture1D = OpenTK.Graphics.ES11.GetPName.Texture1D; - var _Texture2D = OpenTK.Graphics.ES11.GetPName.Texture2D; - var _FeedbackBufferSize = OpenTK.Graphics.ES11.GetPName.FeedbackBufferSize; - var _FeedbackBufferType = OpenTK.Graphics.ES11.GetPName.FeedbackBufferType; - var _SelectionBufferSize = OpenTK.Graphics.ES11.GetPName.SelectionBufferSize; - var _PolygonOffsetUnits = OpenTK.Graphics.ES11.GetPName.PolygonOffsetUnits; - var _PolygonOffsetPoint = OpenTK.Graphics.ES11.GetPName.PolygonOffsetPoint; - var _PolygonOffsetLine = OpenTK.Graphics.ES11.GetPName.PolygonOffsetLine; - var _ClipPlane0 = OpenTK.Graphics.ES11.GetPName.ClipPlane0; - var _ClipPlane1 = OpenTK.Graphics.ES11.GetPName.ClipPlane1; - var _ClipPlane2 = OpenTK.Graphics.ES11.GetPName.ClipPlane2; - var _ClipPlane3 = OpenTK.Graphics.ES11.GetPName.ClipPlane3; - var _ClipPlane4 = OpenTK.Graphics.ES11.GetPName.ClipPlane4; - var _ClipPlane5 = OpenTK.Graphics.ES11.GetPName.ClipPlane5; - var _Light0 = OpenTK.Graphics.ES11.GetPName.Light0; - var _Light1 = OpenTK.Graphics.ES11.GetPName.Light1; - var _Light2 = OpenTK.Graphics.ES11.GetPName.Light2; - var _Light3 = OpenTK.Graphics.ES11.GetPName.Light3; - var _Light4 = OpenTK.Graphics.ES11.GetPName.Light4; - var _Light5 = OpenTK.Graphics.ES11.GetPName.Light5; - var _Light6 = OpenTK.Graphics.ES11.GetPName.Light6; - var _Light7 = OpenTK.Graphics.ES11.GetPName.Light7; - var _BlendColorExt = OpenTK.Graphics.ES11.GetPName.BlendColorExt; - var _BlendEquationExt = OpenTK.Graphics.ES11.GetPName.BlendEquationExt; - var _PackCmykHintExt = OpenTK.Graphics.ES11.GetPName.PackCmykHintExt; - var _UnpackCmykHintExt = OpenTK.Graphics.ES11.GetPName.UnpackCmykHintExt; - var _Convolution1DExt = OpenTK.Graphics.ES11.GetPName.Convolution1DExt; - var _Convolution2DExt = OpenTK.Graphics.ES11.GetPName.Convolution2DExt; - var _Separable2DExt = OpenTK.Graphics.ES11.GetPName.Separable2DExt; - var _PostConvolutionRedScaleExt = OpenTK.Graphics.ES11.GetPName.PostConvolutionRedScaleExt; - var _PostConvolutionGreenScaleExt = OpenTK.Graphics.ES11.GetPName.PostConvolutionGreenScaleExt; - var _PostConvolutionBlueScaleExt = OpenTK.Graphics.ES11.GetPName.PostConvolutionBlueScaleExt; - var _PostConvolutionAlphaScaleExt = OpenTK.Graphics.ES11.GetPName.PostConvolutionAlphaScaleExt; - var _PostConvolutionRedBiasExt = OpenTK.Graphics.ES11.GetPName.PostConvolutionRedBiasExt; - var _PostConvolutionGreenBiasExt = OpenTK.Graphics.ES11.GetPName.PostConvolutionGreenBiasExt; - var _PostConvolutionBlueBiasExt = OpenTK.Graphics.ES11.GetPName.PostConvolutionBlueBiasExt; - var _PostConvolutionAlphaBiasExt = OpenTK.Graphics.ES11.GetPName.PostConvolutionAlphaBiasExt; - var _HistogramExt = OpenTK.Graphics.ES11.GetPName.HistogramExt; - var _MinmaxExt = OpenTK.Graphics.ES11.GetPName.MinmaxExt; - var _PolygonOffsetFill = OpenTK.Graphics.ES11.GetPName.PolygonOffsetFill; - var _PolygonOffsetFactor = OpenTK.Graphics.ES11.GetPName.PolygonOffsetFactor; - var _PolygonOffsetBiasExt = OpenTK.Graphics.ES11.GetPName.PolygonOffsetBiasExt; - var _RescaleNormalExt = OpenTK.Graphics.ES11.GetPName.RescaleNormalExt; - var _TextureBinding1D = OpenTK.Graphics.ES11.GetPName.TextureBinding1D; - var _TextureBinding2D = OpenTK.Graphics.ES11.GetPName.TextureBinding2D; - var _Texture3DBindingExt = OpenTK.Graphics.ES11.GetPName.Texture3DBindingExt; - var _TextureBinding3D = OpenTK.Graphics.ES11.GetPName.TextureBinding3D; - var _PackSkipImagesExt = OpenTK.Graphics.ES11.GetPName.PackSkipImagesExt; - var _PackImageHeightExt = OpenTK.Graphics.ES11.GetPName.PackImageHeightExt; - var _UnpackSkipImagesExt = OpenTK.Graphics.ES11.GetPName.UnpackSkipImagesExt; - var _UnpackImageHeightExt = OpenTK.Graphics.ES11.GetPName.UnpackImageHeightExt; - var _Texture3DExt = OpenTK.Graphics.ES11.GetPName.Texture3DExt; - var _Max3DTextureSizeExt = OpenTK.Graphics.ES11.GetPName.Max3DTextureSizeExt; - var _VertexArray = OpenTK.Graphics.ES11.GetPName.VertexArray; - var _NormalArray = OpenTK.Graphics.ES11.GetPName.NormalArray; - var _ColorArray = OpenTK.Graphics.ES11.GetPName.ColorArray; - var _IndexArray = OpenTK.Graphics.ES11.GetPName.IndexArray; - var _TextureCoordArray = OpenTK.Graphics.ES11.GetPName.TextureCoordArray; - var _EdgeFlagArray = OpenTK.Graphics.ES11.GetPName.EdgeFlagArray; - var _VertexArraySize = OpenTK.Graphics.ES11.GetPName.VertexArraySize; - var _VertexArrayType = OpenTK.Graphics.ES11.GetPName.VertexArrayType; - var _VertexArrayStride = OpenTK.Graphics.ES11.GetPName.VertexArrayStride; - var _VertexArrayCountExt = OpenTK.Graphics.ES11.GetPName.VertexArrayCountExt; - var _NormalArrayType = OpenTK.Graphics.ES11.GetPName.NormalArrayType; - var _NormalArrayStride = OpenTK.Graphics.ES11.GetPName.NormalArrayStride; - var _NormalArrayCountExt = OpenTK.Graphics.ES11.GetPName.NormalArrayCountExt; - var _ColorArraySize = OpenTK.Graphics.ES11.GetPName.ColorArraySize; - var _ColorArrayType = OpenTK.Graphics.ES11.GetPName.ColorArrayType; - var _ColorArrayStride = OpenTK.Graphics.ES11.GetPName.ColorArrayStride; - var _ColorArrayCountExt = OpenTK.Graphics.ES11.GetPName.ColorArrayCountExt; - var _IndexArrayType = OpenTK.Graphics.ES11.GetPName.IndexArrayType; - var _IndexArrayStride = OpenTK.Graphics.ES11.GetPName.IndexArrayStride; - var _IndexArrayCountExt = OpenTK.Graphics.ES11.GetPName.IndexArrayCountExt; - var _TextureCoordArraySize = OpenTK.Graphics.ES11.GetPName.TextureCoordArraySize; - var _TextureCoordArrayType = OpenTK.Graphics.ES11.GetPName.TextureCoordArrayType; - var _TextureCoordArrayStride = OpenTK.Graphics.ES11.GetPName.TextureCoordArrayStride; - var _TextureCoordArrayCountExt = OpenTK.Graphics.ES11.GetPName.TextureCoordArrayCountExt; - var _EdgeFlagArrayStride = OpenTK.Graphics.ES11.GetPName.EdgeFlagArrayStride; - var _EdgeFlagArrayCountExt = OpenTK.Graphics.ES11.GetPName.EdgeFlagArrayCountExt; - var _InterlaceSgix = OpenTK.Graphics.ES11.GetPName.InterlaceSgix; - var _DetailTexture2DBindingSgis = OpenTK.Graphics.ES11.GetPName.DetailTexture2DBindingSgis; - var _MultisampleSgis = OpenTK.Graphics.ES11.GetPName.MultisampleSgis; - var _SampleAlphaToMaskSgis = OpenTK.Graphics.ES11.GetPName.SampleAlphaToMaskSgis; - var _SampleAlphaToOneSgis = OpenTK.Graphics.ES11.GetPName.SampleAlphaToOneSgis; - var _SampleMaskSgis = OpenTK.Graphics.ES11.GetPName.SampleMaskSgis; - var _SampleBuffersSgis = OpenTK.Graphics.ES11.GetPName.SampleBuffersSgis; - var _SamplesSgis = OpenTK.Graphics.ES11.GetPName.SamplesSgis; - var _SampleMaskValueSgis = OpenTK.Graphics.ES11.GetPName.SampleMaskValueSgis; - var _SampleMaskInvertSgis = OpenTK.Graphics.ES11.GetPName.SampleMaskInvertSgis; - var _SamplePatternSgis = OpenTK.Graphics.ES11.GetPName.SamplePatternSgis; - var _ColorMatrixSgi = OpenTK.Graphics.ES11.GetPName.ColorMatrixSgi; - var _ColorMatrixStackDepthSgi = OpenTK.Graphics.ES11.GetPName.ColorMatrixStackDepthSgi; - var _MaxColorMatrixStackDepthSgi = OpenTK.Graphics.ES11.GetPName.MaxColorMatrixStackDepthSgi; - var _PostColorMatrixRedScaleSgi = OpenTK.Graphics.ES11.GetPName.PostColorMatrixRedScaleSgi; - var _PostColorMatrixGreenScaleSgi = OpenTK.Graphics.ES11.GetPName.PostColorMatrixGreenScaleSgi; - var _PostColorMatrixBlueScaleSgi = OpenTK.Graphics.ES11.GetPName.PostColorMatrixBlueScaleSgi; - var _PostColorMatrixAlphaScaleSgi = OpenTK.Graphics.ES11.GetPName.PostColorMatrixAlphaScaleSgi; - var _PostColorMatrixRedBiasSgi = OpenTK.Graphics.ES11.GetPName.PostColorMatrixRedBiasSgi; - var _PostColorMatrixGreenBiasSgi = OpenTK.Graphics.ES11.GetPName.PostColorMatrixGreenBiasSgi; - var _PostColorMatrixBlueBiasSgi = OpenTK.Graphics.ES11.GetPName.PostColorMatrixBlueBiasSgi; - var _PostColorMatrixAlphaBiasSgi = OpenTK.Graphics.ES11.GetPName.PostColorMatrixAlphaBiasSgi; - var _TextureColorTableSgi = OpenTK.Graphics.ES11.GetPName.TextureColorTableSgi; - var _ColorTableSgi = OpenTK.Graphics.ES11.GetPName.ColorTableSgi; - var _PostConvolutionColorTableSgi = OpenTK.Graphics.ES11.GetPName.PostConvolutionColorTableSgi; - var _PostColorMatrixColorTableSgi = OpenTK.Graphics.ES11.GetPName.PostColorMatrixColorTableSgi; - var _PointSizeMinSgis = OpenTK.Graphics.ES11.GetPName.PointSizeMinSgis; - var _PointSizeMaxSgis = OpenTK.Graphics.ES11.GetPName.PointSizeMaxSgis; - var _PointFadeThresholdSizeSgis = OpenTK.Graphics.ES11.GetPName.PointFadeThresholdSizeSgis; - var _DistanceAttenuationSgis = OpenTK.Graphics.ES11.GetPName.DistanceAttenuationSgis; - var _FogFuncPointsSgis = OpenTK.Graphics.ES11.GetPName.FogFuncPointsSgis; - var _MaxFogFuncPointsSgis = OpenTK.Graphics.ES11.GetPName.MaxFogFuncPointsSgis; - var _PackSkipVolumesSgis = OpenTK.Graphics.ES11.GetPName.PackSkipVolumesSgis; - var _PackImageDepthSgis = OpenTK.Graphics.ES11.GetPName.PackImageDepthSgis; - var _UnpackSkipVolumesSgis = OpenTK.Graphics.ES11.GetPName.UnpackSkipVolumesSgis; - var _UnpackImageDepthSgis = OpenTK.Graphics.ES11.GetPName.UnpackImageDepthSgis; - var _Texture4DSgis = OpenTK.Graphics.ES11.GetPName.Texture4DSgis; - var _Max4DTextureSizeSgis = OpenTK.Graphics.ES11.GetPName.Max4DTextureSizeSgis; - var _PixelTexGenSgix = OpenTK.Graphics.ES11.GetPName.PixelTexGenSgix; - var _PixelTileBestAlignmentSgix = OpenTK.Graphics.ES11.GetPName.PixelTileBestAlignmentSgix; - var _PixelTileCacheIncrementSgix = OpenTK.Graphics.ES11.GetPName.PixelTileCacheIncrementSgix; - var _PixelTileWidthSgix = OpenTK.Graphics.ES11.GetPName.PixelTileWidthSgix; - var _PixelTileHeightSgix = OpenTK.Graphics.ES11.GetPName.PixelTileHeightSgix; - var _PixelTileGridWidthSgix = OpenTK.Graphics.ES11.GetPName.PixelTileGridWidthSgix; - var _PixelTileGridHeightSgix = OpenTK.Graphics.ES11.GetPName.PixelTileGridHeightSgix; - var _PixelTileGridDepthSgix = OpenTK.Graphics.ES11.GetPName.PixelTileGridDepthSgix; - var _PixelTileCacheSizeSgix = OpenTK.Graphics.ES11.GetPName.PixelTileCacheSizeSgix; - var _SpriteSgix = OpenTK.Graphics.ES11.GetPName.SpriteSgix; - var _SpriteModeSgix = OpenTK.Graphics.ES11.GetPName.SpriteModeSgix; - var _SpriteAxisSgix = OpenTK.Graphics.ES11.GetPName.SpriteAxisSgix; - var _SpriteTranslationSgix = OpenTK.Graphics.ES11.GetPName.SpriteTranslationSgix; - var _Texture4DBindingSgis = OpenTK.Graphics.ES11.GetPName.Texture4DBindingSgis; - var _MaxClipmapDepthSgix = OpenTK.Graphics.ES11.GetPName.MaxClipmapDepthSgix; - var _MaxClipmapVirtualDepthSgix = OpenTK.Graphics.ES11.GetPName.MaxClipmapVirtualDepthSgix; - var _PostTextureFilterBiasRangeSgix = OpenTK.Graphics.ES11.GetPName.PostTextureFilterBiasRangeSgix; - var _PostTextureFilterScaleRangeSgix = OpenTK.Graphics.ES11.GetPName.PostTextureFilterScaleRangeSgix; - var _ReferencePlaneSgix = OpenTK.Graphics.ES11.GetPName.ReferencePlaneSgix; - var _ReferencePlaneEquationSgix = OpenTK.Graphics.ES11.GetPName.ReferencePlaneEquationSgix; - var _IrInstrument1Sgix = OpenTK.Graphics.ES11.GetPName.IrInstrument1Sgix; - var _InstrumentMeasurementsSgix = OpenTK.Graphics.ES11.GetPName.InstrumentMeasurementsSgix; - var _CalligraphicFragmentSgix = OpenTK.Graphics.ES11.GetPName.CalligraphicFragmentSgix; - var _FramezoomSgix = OpenTK.Graphics.ES11.GetPName.FramezoomSgix; - var _FramezoomFactorSgix = OpenTK.Graphics.ES11.GetPName.FramezoomFactorSgix; - var _MaxFramezoomFactorSgix = OpenTK.Graphics.ES11.GetPName.MaxFramezoomFactorSgix; - var _GenerateMipmapHintSgis = OpenTK.Graphics.ES11.GetPName.GenerateMipmapHintSgis; - var _DeformationsMaskSgix = OpenTK.Graphics.ES11.GetPName.DeformationsMaskSgix; - var _FogOffsetSgix = OpenTK.Graphics.ES11.GetPName.FogOffsetSgix; - var _FogOffsetValueSgix = OpenTK.Graphics.ES11.GetPName.FogOffsetValueSgix; - var _LightModelColorControl = OpenTK.Graphics.ES11.GetPName.LightModelColorControl; - var _SharedTexturePaletteExt = OpenTK.Graphics.ES11.GetPName.SharedTexturePaletteExt; - var _ConvolutionHintSgix = OpenTK.Graphics.ES11.GetPName.ConvolutionHintSgix; - var _AsyncMarkerSgix = OpenTK.Graphics.ES11.GetPName.AsyncMarkerSgix; - var _PixelTexGenModeSgix = OpenTK.Graphics.ES11.GetPName.PixelTexGenModeSgix; - var _AsyncHistogramSgix = OpenTK.Graphics.ES11.GetPName.AsyncHistogramSgix; - var _MaxAsyncHistogramSgix = OpenTK.Graphics.ES11.GetPName.MaxAsyncHistogramSgix; - var _PixelTextureSgis = OpenTK.Graphics.ES11.GetPName.PixelTextureSgis; - var _AsyncTexImageSgix = OpenTK.Graphics.ES11.GetPName.AsyncTexImageSgix; - var _AsyncDrawPixelsSgix = OpenTK.Graphics.ES11.GetPName.AsyncDrawPixelsSgix; - var _AsyncReadPixelsSgix = OpenTK.Graphics.ES11.GetPName.AsyncReadPixelsSgix; - var _MaxAsyncTexImageSgix = OpenTK.Graphics.ES11.GetPName.MaxAsyncTexImageSgix; - var _MaxAsyncDrawPixelsSgix = OpenTK.Graphics.ES11.GetPName.MaxAsyncDrawPixelsSgix; - var _MaxAsyncReadPixelsSgix = OpenTK.Graphics.ES11.GetPName.MaxAsyncReadPixelsSgix; - var _VertexPreclipSgix = OpenTK.Graphics.ES11.GetPName.VertexPreclipSgix; - var _VertexPreclipHintSgix = OpenTK.Graphics.ES11.GetPName.VertexPreclipHintSgix; - var _FragmentLightingSgix = OpenTK.Graphics.ES11.GetPName.FragmentLightingSgix; - var _FragmentColorMaterialSgix = OpenTK.Graphics.ES11.GetPName.FragmentColorMaterialSgix; - var _FragmentColorMaterialFaceSgix = OpenTK.Graphics.ES11.GetPName.FragmentColorMaterialFaceSgix; - var _FragmentColorMaterialParameterSgix = OpenTK.Graphics.ES11.GetPName.FragmentColorMaterialParameterSgix; - var _MaxFragmentLightsSgix = OpenTK.Graphics.ES11.GetPName.MaxFragmentLightsSgix; - var _MaxActiveLightsSgix = OpenTK.Graphics.ES11.GetPName.MaxActiveLightsSgix; - var _LightEnvModeSgix = OpenTK.Graphics.ES11.GetPName.LightEnvModeSgix; - var _FragmentLightModelLocalViewerSgix = OpenTK.Graphics.ES11.GetPName.FragmentLightModelLocalViewerSgix; - var _FragmentLightModelTwoSideSgix = OpenTK.Graphics.ES11.GetPName.FragmentLightModelTwoSideSgix; - var _FragmentLightModelAmbientSgix = OpenTK.Graphics.ES11.GetPName.FragmentLightModelAmbientSgix; - var _FragmentLightModelNormalInterpolationSgix = OpenTK.Graphics.ES11.GetPName.FragmentLightModelNormalInterpolationSgix; - var _FragmentLight0Sgix = OpenTK.Graphics.ES11.GetPName.FragmentLight0Sgix; - var _PackResampleSgix = OpenTK.Graphics.ES11.GetPName.PackResampleSgix; - var _UnpackResampleSgix = OpenTK.Graphics.ES11.GetPName.UnpackResampleSgix; - var _AliasedPointSizeRange = OpenTK.Graphics.ES11.GetPName.AliasedPointSizeRange; - var _AliasedLineWidthRange = OpenTK.Graphics.ES11.GetPName.AliasedLineWidthRange; - var _PackSubsampleRateSgix = OpenTK.Graphics.ES11.GetPName.PackSubsampleRateSgix; - var _UnpackSubsampleRateSgix = OpenTK.Graphics.ES11.GetPName.UnpackSubsampleRateSgix; -} -static void Test_GetPointervPName_38475() { - var _FeedbackBufferPointer = OpenTK.Graphics.ES11.GetPointervPName.FeedbackBufferPointer; - var _SelectionBufferPointer = OpenTK.Graphics.ES11.GetPointervPName.SelectionBufferPointer; - var _VertexArrayPointer = OpenTK.Graphics.ES11.GetPointervPName.VertexArrayPointer; - var _VertexArrayPointerExt = OpenTK.Graphics.ES11.GetPointervPName.VertexArrayPointerExt; - var _NormalArrayPointer = OpenTK.Graphics.ES11.GetPointervPName.NormalArrayPointer; - var _NormalArrayPointerExt = OpenTK.Graphics.ES11.GetPointervPName.NormalArrayPointerExt; - var _ColorArrayPointer = OpenTK.Graphics.ES11.GetPointervPName.ColorArrayPointer; - var _ColorArrayPointerExt = OpenTK.Graphics.ES11.GetPointervPName.ColorArrayPointerExt; - var _IndexArrayPointer = OpenTK.Graphics.ES11.GetPointervPName.IndexArrayPointer; - var _IndexArrayPointerExt = OpenTK.Graphics.ES11.GetPointervPName.IndexArrayPointerExt; - var _TextureCoordArrayPointer = OpenTK.Graphics.ES11.GetPointervPName.TextureCoordArrayPointer; - var _TextureCoordArrayPointerExt = OpenTK.Graphics.ES11.GetPointervPName.TextureCoordArrayPointerExt; - var _EdgeFlagArrayPointer = OpenTK.Graphics.ES11.GetPointervPName.EdgeFlagArrayPointer; - var _EdgeFlagArrayPointerExt = OpenTK.Graphics.ES11.GetPointervPName.EdgeFlagArrayPointerExt; - var _InstrumentBufferPointerSgix = OpenTK.Graphics.ES11.GetPointervPName.InstrumentBufferPointerSgix; -} -static void Test_GetTextureParameter_38476() { - var _TextureWidth = OpenTK.Graphics.ES11.GetTextureParameter.TextureWidth; - var _TextureHeight = OpenTK.Graphics.ES11.GetTextureParameter.TextureHeight; - var _TextureComponents = OpenTK.Graphics.ES11.GetTextureParameter.TextureComponents; - var _TextureInternalFormat = OpenTK.Graphics.ES11.GetTextureParameter.TextureInternalFormat; - var _TextureBorderColor = OpenTK.Graphics.ES11.GetTextureParameter.TextureBorderColor; - var _TextureBorderColorNv = OpenTK.Graphics.ES11.GetTextureParameter.TextureBorderColorNv; - var _TextureBorder = OpenTK.Graphics.ES11.GetTextureParameter.TextureBorder; - var _TextureMagFilter = OpenTK.Graphics.ES11.GetTextureParameter.TextureMagFilter; - var _TextureMinFilter = OpenTK.Graphics.ES11.GetTextureParameter.TextureMinFilter; - var _TextureWrapS = OpenTK.Graphics.ES11.GetTextureParameter.TextureWrapS; - var _TextureWrapT = OpenTK.Graphics.ES11.GetTextureParameter.TextureWrapT; - var _TextureRedSize = OpenTK.Graphics.ES11.GetTextureParameter.TextureRedSize; - var _TextureGreenSize = OpenTK.Graphics.ES11.GetTextureParameter.TextureGreenSize; - var _TextureBlueSize = OpenTK.Graphics.ES11.GetTextureParameter.TextureBlueSize; - var _TextureAlphaSize = OpenTK.Graphics.ES11.GetTextureParameter.TextureAlphaSize; - var _TextureLuminanceSize = OpenTK.Graphics.ES11.GetTextureParameter.TextureLuminanceSize; - var _TextureIntensitySize = OpenTK.Graphics.ES11.GetTextureParameter.TextureIntensitySize; - var _TexturePriority = OpenTK.Graphics.ES11.GetTextureParameter.TexturePriority; - var _TextureResident = OpenTK.Graphics.ES11.GetTextureParameter.TextureResident; - var _TextureDepthExt = OpenTK.Graphics.ES11.GetTextureParameter.TextureDepthExt; - var _TextureWrapRExt = OpenTK.Graphics.ES11.GetTextureParameter.TextureWrapRExt; - var _DetailTextureLevelSgis = OpenTK.Graphics.ES11.GetTextureParameter.DetailTextureLevelSgis; - var _DetailTextureModeSgis = OpenTK.Graphics.ES11.GetTextureParameter.DetailTextureModeSgis; - var _DetailTextureFuncPointsSgis = OpenTK.Graphics.ES11.GetTextureParameter.DetailTextureFuncPointsSgis; - var _SharpenTextureFuncPointsSgis = OpenTK.Graphics.ES11.GetTextureParameter.SharpenTextureFuncPointsSgis; - var _ShadowAmbientSgix = OpenTK.Graphics.ES11.GetTextureParameter.ShadowAmbientSgix; - var _DualTextureSelectSgis = OpenTK.Graphics.ES11.GetTextureParameter.DualTextureSelectSgis; - var _QuadTextureSelectSgis = OpenTK.Graphics.ES11.GetTextureParameter.QuadTextureSelectSgis; - var _Texture4DsizeSgis = OpenTK.Graphics.ES11.GetTextureParameter.Texture4DsizeSgis; - var _TextureWrapQSgis = OpenTK.Graphics.ES11.GetTextureParameter.TextureWrapQSgis; - var _TextureMinLodSgis = OpenTK.Graphics.ES11.GetTextureParameter.TextureMinLodSgis; - var _TextureMaxLodSgis = OpenTK.Graphics.ES11.GetTextureParameter.TextureMaxLodSgis; - var _TextureBaseLevelSgis = OpenTK.Graphics.ES11.GetTextureParameter.TextureBaseLevelSgis; - var _TextureMaxLevelSgis = OpenTK.Graphics.ES11.GetTextureParameter.TextureMaxLevelSgis; - var _TextureFilter4SizeSgis = OpenTK.Graphics.ES11.GetTextureParameter.TextureFilter4SizeSgis; - var _TextureClipmapCenterSgix = OpenTK.Graphics.ES11.GetTextureParameter.TextureClipmapCenterSgix; - var _TextureClipmapFrameSgix = OpenTK.Graphics.ES11.GetTextureParameter.TextureClipmapFrameSgix; - var _TextureClipmapOffsetSgix = OpenTK.Graphics.ES11.GetTextureParameter.TextureClipmapOffsetSgix; - var _TextureClipmapVirtualDepthSgix = OpenTK.Graphics.ES11.GetTextureParameter.TextureClipmapVirtualDepthSgix; - var _TextureClipmapLodOffsetSgix = OpenTK.Graphics.ES11.GetTextureParameter.TextureClipmapLodOffsetSgix; - var _TextureClipmapDepthSgix = OpenTK.Graphics.ES11.GetTextureParameter.TextureClipmapDepthSgix; - var _PostTextureFilterBiasSgix = OpenTK.Graphics.ES11.GetTextureParameter.PostTextureFilterBiasSgix; - var _PostTextureFilterScaleSgix = OpenTK.Graphics.ES11.GetTextureParameter.PostTextureFilterScaleSgix; - var _TextureLodBiasSSgix = OpenTK.Graphics.ES11.GetTextureParameter.TextureLodBiasSSgix; - var _TextureLodBiasTSgix = OpenTK.Graphics.ES11.GetTextureParameter.TextureLodBiasTSgix; - var _TextureLodBiasRSgix = OpenTK.Graphics.ES11.GetTextureParameter.TextureLodBiasRSgix; - var _GenerateMipmapSgis = OpenTK.Graphics.ES11.GetTextureParameter.GenerateMipmapSgis; - var _TextureCompareSgix = OpenTK.Graphics.ES11.GetTextureParameter.TextureCompareSgix; - var _TextureCompareOperatorSgix = OpenTK.Graphics.ES11.GetTextureParameter.TextureCompareOperatorSgix; - var _TextureLequalRSgix = OpenTK.Graphics.ES11.GetTextureParameter.TextureLequalRSgix; - var _TextureGequalRSgix = OpenTK.Graphics.ES11.GetTextureParameter.TextureGequalRSgix; - var _TextureMaxClampSSgix = OpenTK.Graphics.ES11.GetTextureParameter.TextureMaxClampSSgix; - var _TextureMaxClampTSgix = OpenTK.Graphics.ES11.GetTextureParameter.TextureMaxClampTSgix; - var _TextureMaxClampRSgix = OpenTK.Graphics.ES11.GetTextureParameter.TextureMaxClampRSgix; -} -static void Test_HintMode_38477() { - var _DontCare = OpenTK.Graphics.ES11.HintMode.DontCare; - var _Fastest = OpenTK.Graphics.ES11.HintMode.Fastest; - var _Nicest = OpenTK.Graphics.ES11.HintMode.Nicest; -} -static void Test_HintTarget_38478() { - var _PerspectiveCorrectionHint = OpenTK.Graphics.ES11.HintTarget.PerspectiveCorrectionHint; - var _PointSmoothHint = OpenTK.Graphics.ES11.HintTarget.PointSmoothHint; - var _LineSmoothHint = OpenTK.Graphics.ES11.HintTarget.LineSmoothHint; - var _PolygonSmoothHint = OpenTK.Graphics.ES11.HintTarget.PolygonSmoothHint; - var _FogHint = OpenTK.Graphics.ES11.HintTarget.FogHint; - var _PreferDoublebufferHintPgi = OpenTK.Graphics.ES11.HintTarget.PreferDoublebufferHintPgi; - var _ConserveMemoryHintPgi = OpenTK.Graphics.ES11.HintTarget.ConserveMemoryHintPgi; - var _ReclaimMemoryHintPgi = OpenTK.Graphics.ES11.HintTarget.ReclaimMemoryHintPgi; - var _NativeGraphicsBeginHintPgi = OpenTK.Graphics.ES11.HintTarget.NativeGraphicsBeginHintPgi; - var _NativeGraphicsEndHintPgi = OpenTK.Graphics.ES11.HintTarget.NativeGraphicsEndHintPgi; - var _AlwaysFastHintPgi = OpenTK.Graphics.ES11.HintTarget.AlwaysFastHintPgi; - var _AlwaysSoftHintPgi = OpenTK.Graphics.ES11.HintTarget.AlwaysSoftHintPgi; - var _AllowDrawObjHintPgi = OpenTK.Graphics.ES11.HintTarget.AllowDrawObjHintPgi; - var _AllowDrawWinHintPgi = OpenTK.Graphics.ES11.HintTarget.AllowDrawWinHintPgi; - var _AllowDrawFrgHintPgi = OpenTK.Graphics.ES11.HintTarget.AllowDrawFrgHintPgi; - var _AllowDrawMemHintPgi = OpenTK.Graphics.ES11.HintTarget.AllowDrawMemHintPgi; - var _StrictDepthfuncHintPgi = OpenTK.Graphics.ES11.HintTarget.StrictDepthfuncHintPgi; - var _StrictLightingHintPgi = OpenTK.Graphics.ES11.HintTarget.StrictLightingHintPgi; - var _StrictScissorHintPgi = OpenTK.Graphics.ES11.HintTarget.StrictScissorHintPgi; - var _FullStippleHintPgi = OpenTK.Graphics.ES11.HintTarget.FullStippleHintPgi; - var _ClipNearHintPgi = OpenTK.Graphics.ES11.HintTarget.ClipNearHintPgi; - var _ClipFarHintPgi = OpenTK.Graphics.ES11.HintTarget.ClipFarHintPgi; - var _WideLineHintPgi = OpenTK.Graphics.ES11.HintTarget.WideLineHintPgi; - var _BackNormalsHintPgi = OpenTK.Graphics.ES11.HintTarget.BackNormalsHintPgi; - var _VertexDataHintPgi = OpenTK.Graphics.ES11.HintTarget.VertexDataHintPgi; - var _VertexConsistentHintPgi = OpenTK.Graphics.ES11.HintTarget.VertexConsistentHintPgi; - var _MaterialSideHintPgi = OpenTK.Graphics.ES11.HintTarget.MaterialSideHintPgi; - var _MaxVertexHintPgi = OpenTK.Graphics.ES11.HintTarget.MaxVertexHintPgi; - var _PackCmykHintExt = OpenTK.Graphics.ES11.HintTarget.PackCmykHintExt; - var _UnpackCmykHintExt = OpenTK.Graphics.ES11.HintTarget.UnpackCmykHintExt; - var _PhongHintWin = OpenTK.Graphics.ES11.HintTarget.PhongHintWin; - var _ClipVolumeClippingHintExt = OpenTK.Graphics.ES11.HintTarget.ClipVolumeClippingHintExt; - var _TextureMultiBufferHintSgix = OpenTK.Graphics.ES11.HintTarget.TextureMultiBufferHintSgix; - var _GenerateMipmapHint = OpenTK.Graphics.ES11.HintTarget.GenerateMipmapHint; - var _GenerateMipmapHintSgis = OpenTK.Graphics.ES11.HintTarget.GenerateMipmapHintSgis; - var _ProgramBinaryRetrievableHint = OpenTK.Graphics.ES11.HintTarget.ProgramBinaryRetrievableHint; - var _ConvolutionHintSgix = OpenTK.Graphics.ES11.HintTarget.ConvolutionHintSgix; - var _ScalebiasHintSgix = OpenTK.Graphics.ES11.HintTarget.ScalebiasHintSgix; - var _LineQualityHintSgix = OpenTK.Graphics.ES11.HintTarget.LineQualityHintSgix; - var _VertexPreclipSgix = OpenTK.Graphics.ES11.HintTarget.VertexPreclipSgix; - var _VertexPreclipHintSgix = OpenTK.Graphics.ES11.HintTarget.VertexPreclipHintSgix; - var _TextureCompressionHint = OpenTK.Graphics.ES11.HintTarget.TextureCompressionHint; - var _TextureCompressionHintArb = OpenTK.Graphics.ES11.HintTarget.TextureCompressionHintArb; - var _VertexArrayStorageHintApple = OpenTK.Graphics.ES11.HintTarget.VertexArrayStorageHintApple; - var _MultisampleFilterHintNv = OpenTK.Graphics.ES11.HintTarget.MultisampleFilterHintNv; - var _TransformHintApple = OpenTK.Graphics.ES11.HintTarget.TransformHintApple; - var _TextureStorageHintApple = OpenTK.Graphics.ES11.HintTarget.TextureStorageHintApple; - var _FragmentShaderDerivativeHint = OpenTK.Graphics.ES11.HintTarget.FragmentShaderDerivativeHint; - var _FragmentShaderDerivativeHintArb = OpenTK.Graphics.ES11.HintTarget.FragmentShaderDerivativeHintArb; - var _FragmentShaderDerivativeHintOes = OpenTK.Graphics.ES11.HintTarget.FragmentShaderDerivativeHintOes; - var _BinningControlHintQcom = OpenTK.Graphics.ES11.HintTarget.BinningControlHintQcom; -} -static void Test_HistogramTargetExt_38479() { - var _Histogram = OpenTK.Graphics.ES11.HistogramTargetExt.Histogram; - var _HistogramExt = OpenTK.Graphics.ES11.HistogramTargetExt.HistogramExt; - var _ProxyHistogram = OpenTK.Graphics.ES11.HistogramTargetExt.ProxyHistogram; - var _ProxyHistogramExt = OpenTK.Graphics.ES11.HistogramTargetExt.ProxyHistogramExt; -} -static void Test_ImgMultisampledRenderToTexture_38480() { - var _RenderbufferSamplesImg = OpenTK.Graphics.ES11.ImgMultisampledRenderToTexture.RenderbufferSamplesImg; - var _FramebufferIncompleteMultisampleImg = OpenTK.Graphics.ES11.ImgMultisampledRenderToTexture.FramebufferIncompleteMultisampleImg; - var _MaxSamplesImg = OpenTK.Graphics.ES11.ImgMultisampledRenderToTexture.MaxSamplesImg; - var _TextureSamplesImg = OpenTK.Graphics.ES11.ImgMultisampledRenderToTexture.TextureSamplesImg; -} -static void Test_ImgreadFormat_38481() { - var _Bgra = OpenTK.Graphics.ES11.ImgreadFormat.Bgra; - var _UnsignedShort4444Rev = OpenTK.Graphics.ES11.ImgreadFormat.UnsignedShort4444Rev; - var _UnsignedShort1555Rev = OpenTK.Graphics.ES11.ImgreadFormat.UnsignedShort1555Rev; - var _ImgReadFormat = OpenTK.Graphics.ES11.ImgreadFormat.ImgReadFormat; -} -static void Test_ImgReadFormat_38482() { - var _BgraImg = OpenTK.Graphics.ES11.ImgReadFormat.BgraImg; - var _UnsignedShort4444RevImg = OpenTK.Graphics.ES11.ImgReadFormat.UnsignedShort4444RevImg; -} -static void Test_ImgtextureCompressionPvrtc_38483() { - var _CompressedRgbPvrtc4Bppv1Img = OpenTK.Graphics.ES11.ImgtextureCompressionPvrtc.CompressedRgbPvrtc4Bppv1Img; - var _CompressedRgbPvrtc2Bppv1Img = OpenTK.Graphics.ES11.ImgtextureCompressionPvrtc.CompressedRgbPvrtc2Bppv1Img; - var _CompressedRgbaPvrtc4Bppv1Img = OpenTK.Graphics.ES11.ImgtextureCompressionPvrtc.CompressedRgbaPvrtc4Bppv1Img; - var _CompressedRgbaPvrtc2Bppv1Img = OpenTK.Graphics.ES11.ImgtextureCompressionPvrtc.CompressedRgbaPvrtc2Bppv1Img; - var _ImgTextureCompressionPvrtc = OpenTK.Graphics.ES11.ImgtextureCompressionPvrtc.ImgTextureCompressionPvrtc; -} -static void Test_ImgTextureCompressionPvrtc_38484() { - var _CompressedRgbPvrtc4Bppv1Img = OpenTK.Graphics.ES11.ImgTextureCompressionPvrtc.CompressedRgbPvrtc4Bppv1Img; - var _CompressedRgbPvrtc2Bppv1Img = OpenTK.Graphics.ES11.ImgTextureCompressionPvrtc.CompressedRgbPvrtc2Bppv1Img; - var _CompressedRgbaPvrtc4Bppv1Img = OpenTK.Graphics.ES11.ImgTextureCompressionPvrtc.CompressedRgbaPvrtc4Bppv1Img; - var _CompressedRgbaPvrtc2Bppv1Img = OpenTK.Graphics.ES11.ImgTextureCompressionPvrtc.CompressedRgbaPvrtc2Bppv1Img; -} -static void Test_ImgtextureEnvEnhancedFixedFunction_38485() { - var _Dot3RgbaImg = OpenTK.Graphics.ES11.ImgtextureEnvEnhancedFixedFunction.Dot3RgbaImg; - var _ModulateColorImg = OpenTK.Graphics.ES11.ImgtextureEnvEnhancedFixedFunction.ModulateColorImg; - var _RecipAddSignedAlphaImg = OpenTK.Graphics.ES11.ImgtextureEnvEnhancedFixedFunction.RecipAddSignedAlphaImg; - var _TextureAlphaModulateImg = OpenTK.Graphics.ES11.ImgtextureEnvEnhancedFixedFunction.TextureAlphaModulateImg; - var _FactorAlphaModulateImg = OpenTK.Graphics.ES11.ImgtextureEnvEnhancedFixedFunction.FactorAlphaModulateImg; - var _FragmentAlphaModulateImg = OpenTK.Graphics.ES11.ImgtextureEnvEnhancedFixedFunction.FragmentAlphaModulateImg; - var _AddBlendImg = OpenTK.Graphics.ES11.ImgtextureEnvEnhancedFixedFunction.AddBlendImg; - var _ImgTextureEnvEnhancedFixedFunction = OpenTK.Graphics.ES11.ImgtextureEnvEnhancedFixedFunction.ImgTextureEnvEnhancedFixedFunction; -} -static void Test_ImgTextureEnvEnhancedFixedFunction_38486() { - var _Dot3RgbaImg = OpenTK.Graphics.ES11.ImgTextureEnvEnhancedFixedFunction.Dot3RgbaImg; - var _ModulateColorImg = OpenTK.Graphics.ES11.ImgTextureEnvEnhancedFixedFunction.ModulateColorImg; - var _RecipAddSignedAlphaImg = OpenTK.Graphics.ES11.ImgTextureEnvEnhancedFixedFunction.RecipAddSignedAlphaImg; - var _TextureAlphaModulateImg = OpenTK.Graphics.ES11.ImgTextureEnvEnhancedFixedFunction.TextureAlphaModulateImg; - var _FactorAlphaModulateImg = OpenTK.Graphics.ES11.ImgTextureEnvEnhancedFixedFunction.FactorAlphaModulateImg; - var _FragmentAlphaModulateImg = OpenTK.Graphics.ES11.ImgTextureEnvEnhancedFixedFunction.FragmentAlphaModulateImg; - var _AddBlendImg = OpenTK.Graphics.ES11.ImgTextureEnvEnhancedFixedFunction.AddBlendImg; -} -static void Test_ImguserClipPlane_38487() { - var _MaxClipPlanesImg = OpenTK.Graphics.ES11.ImguserClipPlane.MaxClipPlanesImg; - var _ClipPlane0Img = OpenTK.Graphics.ES11.ImguserClipPlane.ClipPlane0Img; - var _ClipPlane1Img = OpenTK.Graphics.ES11.ImguserClipPlane.ClipPlane1Img; - var _ClipPlane2Img = OpenTK.Graphics.ES11.ImguserClipPlane.ClipPlane2Img; - var _ClipPlane3Img = OpenTK.Graphics.ES11.ImguserClipPlane.ClipPlane3Img; - var _ClipPlane4Img = OpenTK.Graphics.ES11.ImguserClipPlane.ClipPlane4Img; - var _ClipPlane5Img = OpenTK.Graphics.ES11.ImguserClipPlane.ClipPlane5Img; - var _ImgUserClipPlane = OpenTK.Graphics.ES11.ImguserClipPlane.ImgUserClipPlane; -} -static void Test_ImgUserClipPlane_38488() { - var _MaxClipPlanesImg = OpenTK.Graphics.ES11.ImgUserClipPlane.MaxClipPlanesImg; - var _ClipPlane0Img = OpenTK.Graphics.ES11.ImgUserClipPlane.ClipPlane0Img; - var _ClipPlane1Img = OpenTK.Graphics.ES11.ImgUserClipPlane.ClipPlane1Img; - var _ClipPlane2Img = OpenTK.Graphics.ES11.ImgUserClipPlane.ClipPlane2Img; - var _ClipPlane3Img = OpenTK.Graphics.ES11.ImgUserClipPlane.ClipPlane3Img; - var _ClipPlane4Img = OpenTK.Graphics.ES11.ImgUserClipPlane.ClipPlane4Img; - var _ClipPlane5Img = OpenTK.Graphics.ES11.ImgUserClipPlane.ClipPlane5Img; -} -static void Test_IndexPointerType_38489() { - var _Short = OpenTK.Graphics.ES11.IndexPointerType.Short; - var _Int = OpenTK.Graphics.ES11.IndexPointerType.Int; - var _Float = OpenTK.Graphics.ES11.IndexPointerType.Float; - var _Double = OpenTK.Graphics.ES11.IndexPointerType.Double; -} -static void Test_InterleavedArrayFormat_38490() { - var _V2f = OpenTK.Graphics.ES11.InterleavedArrayFormat.V2f; - var _V3f = OpenTK.Graphics.ES11.InterleavedArrayFormat.V3f; - var _C4ubV2f = OpenTK.Graphics.ES11.InterleavedArrayFormat.C4ubV2f; - var _C4ubV3f = OpenTK.Graphics.ES11.InterleavedArrayFormat.C4ubV3f; - var _C3fV3f = OpenTK.Graphics.ES11.InterleavedArrayFormat.C3fV3f; - var _N3fV3f = OpenTK.Graphics.ES11.InterleavedArrayFormat.N3fV3f; - var _C4fN3fV3f = OpenTK.Graphics.ES11.InterleavedArrayFormat.C4fN3fV3f; - var _T2fV3f = OpenTK.Graphics.ES11.InterleavedArrayFormat.T2fV3f; - var _T4fV4f = OpenTK.Graphics.ES11.InterleavedArrayFormat.T4fV4f; - var _T2fC4ubV3f = OpenTK.Graphics.ES11.InterleavedArrayFormat.T2fC4ubV3f; - var _T2fC3fV3f = OpenTK.Graphics.ES11.InterleavedArrayFormat.T2fC3fV3f; - var _T2fN3fV3f = OpenTK.Graphics.ES11.InterleavedArrayFormat.T2fN3fV3f; - var _T2fC4fN3fV3f = OpenTK.Graphics.ES11.InterleavedArrayFormat.T2fC4fN3fV3f; - var _T4fC4fN3fV4f = OpenTK.Graphics.ES11.InterleavedArrayFormat.T4fC4fN3fV4f; -} -static void Test_InternalFormat_38491() { - var _R3G3B2 = OpenTK.Graphics.ES11.InternalFormat.R3G3B2; - var _Alpha4 = OpenTK.Graphics.ES11.InternalFormat.Alpha4; - var _Alpha8 = OpenTK.Graphics.ES11.InternalFormat.Alpha8; - var _Alpha12 = OpenTK.Graphics.ES11.InternalFormat.Alpha12; - var _Alpha16 = OpenTK.Graphics.ES11.InternalFormat.Alpha16; - var _Luminance4 = OpenTK.Graphics.ES11.InternalFormat.Luminance4; - var _Luminance8 = OpenTK.Graphics.ES11.InternalFormat.Luminance8; - var _Luminance12 = OpenTK.Graphics.ES11.InternalFormat.Luminance12; - var _Luminance16 = OpenTK.Graphics.ES11.InternalFormat.Luminance16; - var _Luminance4Alpha4 = OpenTK.Graphics.ES11.InternalFormat.Luminance4Alpha4; - var _Luminance6Alpha2 = OpenTK.Graphics.ES11.InternalFormat.Luminance6Alpha2; - var _Luminance8Alpha8 = OpenTK.Graphics.ES11.InternalFormat.Luminance8Alpha8; - var _Luminance12Alpha4 = OpenTK.Graphics.ES11.InternalFormat.Luminance12Alpha4; - var _Luminance12Alpha12 = OpenTK.Graphics.ES11.InternalFormat.Luminance12Alpha12; - var _Luminance16Alpha16 = OpenTK.Graphics.ES11.InternalFormat.Luminance16Alpha16; - var _Intensity = OpenTK.Graphics.ES11.InternalFormat.Intensity; - var _Intensity4 = OpenTK.Graphics.ES11.InternalFormat.Intensity4; - var _Intensity8 = OpenTK.Graphics.ES11.InternalFormat.Intensity8; - var _Intensity12 = OpenTK.Graphics.ES11.InternalFormat.Intensity12; - var _Intensity16 = OpenTK.Graphics.ES11.InternalFormat.Intensity16; - var _Rgb2Ext = OpenTK.Graphics.ES11.InternalFormat.Rgb2Ext; - var _Rgb4 = OpenTK.Graphics.ES11.InternalFormat.Rgb4; - var _Rgb5 = OpenTK.Graphics.ES11.InternalFormat.Rgb5; - var _Rgb8 = OpenTK.Graphics.ES11.InternalFormat.Rgb8; - var _Rgb10 = OpenTK.Graphics.ES11.InternalFormat.Rgb10; - var _Rgb12 = OpenTK.Graphics.ES11.InternalFormat.Rgb12; - var _Rgb16 = OpenTK.Graphics.ES11.InternalFormat.Rgb16; - var _Rgba2 = OpenTK.Graphics.ES11.InternalFormat.Rgba2; - var _Rgba4 = OpenTK.Graphics.ES11.InternalFormat.Rgba4; - var _Rgb5A1 = OpenTK.Graphics.ES11.InternalFormat.Rgb5A1; - var _Rgba8 = OpenTK.Graphics.ES11.InternalFormat.Rgba8; - var _Rgb10A2 = OpenTK.Graphics.ES11.InternalFormat.Rgb10A2; - var _Rgba12 = OpenTK.Graphics.ES11.InternalFormat.Rgba12; - var _Rgba16 = OpenTK.Graphics.ES11.InternalFormat.Rgba16; - var _DualAlpha4Sgis = OpenTK.Graphics.ES11.InternalFormat.DualAlpha4Sgis; - var _DualAlpha8Sgis = OpenTK.Graphics.ES11.InternalFormat.DualAlpha8Sgis; - var _DualAlpha12Sgis = OpenTK.Graphics.ES11.InternalFormat.DualAlpha12Sgis; - var _DualAlpha16Sgis = OpenTK.Graphics.ES11.InternalFormat.DualAlpha16Sgis; - var _DualLuminance4Sgis = OpenTK.Graphics.ES11.InternalFormat.DualLuminance4Sgis; - var _DualLuminance8Sgis = OpenTK.Graphics.ES11.InternalFormat.DualLuminance8Sgis; - var _DualLuminance12Sgis = OpenTK.Graphics.ES11.InternalFormat.DualLuminance12Sgis; - var _DualLuminance16Sgis = OpenTK.Graphics.ES11.InternalFormat.DualLuminance16Sgis; - var _DualIntensity4Sgis = OpenTK.Graphics.ES11.InternalFormat.DualIntensity4Sgis; - var _DualIntensity8Sgis = OpenTK.Graphics.ES11.InternalFormat.DualIntensity8Sgis; - var _DualIntensity12Sgis = OpenTK.Graphics.ES11.InternalFormat.DualIntensity12Sgis; - var _DualIntensity16Sgis = OpenTK.Graphics.ES11.InternalFormat.DualIntensity16Sgis; - var _DualLuminanceAlpha4Sgis = OpenTK.Graphics.ES11.InternalFormat.DualLuminanceAlpha4Sgis; - var _DualLuminanceAlpha8Sgis = OpenTK.Graphics.ES11.InternalFormat.DualLuminanceAlpha8Sgis; - var _QuadAlpha4Sgis = OpenTK.Graphics.ES11.InternalFormat.QuadAlpha4Sgis; - var _QuadAlpha8Sgis = OpenTK.Graphics.ES11.InternalFormat.QuadAlpha8Sgis; - var _QuadLuminance4Sgis = OpenTK.Graphics.ES11.InternalFormat.QuadLuminance4Sgis; - var _QuadLuminance8Sgis = OpenTK.Graphics.ES11.InternalFormat.QuadLuminance8Sgis; - var _QuadIntensity4Sgis = OpenTK.Graphics.ES11.InternalFormat.QuadIntensity4Sgis; - var _QuadIntensity8Sgis = OpenTK.Graphics.ES11.InternalFormat.QuadIntensity8Sgis; - var _DepthComponent16Sgix = OpenTK.Graphics.ES11.InternalFormat.DepthComponent16Sgix; - var _DepthComponent24Sgix = OpenTK.Graphics.ES11.InternalFormat.DepthComponent24Sgix; - var _DepthComponent32Sgix = OpenTK.Graphics.ES11.InternalFormat.DepthComponent32Sgix; -} -static void Test_LightEnvModeSgix_38492() { - var _Add = OpenTK.Graphics.ES11.LightEnvModeSgix.Add; - var _Replace = OpenTK.Graphics.ES11.LightEnvModeSgix.Replace; - var _Modulate = OpenTK.Graphics.ES11.LightEnvModeSgix.Modulate; -} -static void Test_LightEnvParameterSgix_38493() { - var _LightEnvModeSgix = OpenTK.Graphics.ES11.LightEnvParameterSgix.LightEnvModeSgix; -} -static void Test_LightModelColorControl_38494() { - var _SingleColor = OpenTK.Graphics.ES11.LightModelColorControl.SingleColor; - var _SingleColorExt = OpenTK.Graphics.ES11.LightModelColorControl.SingleColorExt; - var _SeparateSpecularColor = OpenTK.Graphics.ES11.LightModelColorControl.SeparateSpecularColor; - var _SeparateSpecularColorExt = OpenTK.Graphics.ES11.LightModelColorControl.SeparateSpecularColorExt; -} -static void Test_LightModelParameter_38495() { - var _LightModelLocalViewer = OpenTK.Graphics.ES11.LightModelParameter.LightModelLocalViewer; - var _LightModelTwoSide = OpenTK.Graphics.ES11.LightModelParameter.LightModelTwoSide; - var _LightModelAmbient = OpenTK.Graphics.ES11.LightModelParameter.LightModelAmbient; - var _LightModelColorControl = OpenTK.Graphics.ES11.LightModelParameter.LightModelColorControl; - var _LightModelColorControlExt = OpenTK.Graphics.ES11.LightModelParameter.LightModelColorControlExt; -} -static void Test_LightName_38496() { - var _Light0 = OpenTK.Graphics.ES11.LightName.Light0; - var _Light1 = OpenTK.Graphics.ES11.LightName.Light1; - var _Light2 = OpenTK.Graphics.ES11.LightName.Light2; - var _Light3 = OpenTK.Graphics.ES11.LightName.Light3; - var _Light4 = OpenTK.Graphics.ES11.LightName.Light4; - var _Light5 = OpenTK.Graphics.ES11.LightName.Light5; - var _Light6 = OpenTK.Graphics.ES11.LightName.Light6; - var _Light7 = OpenTK.Graphics.ES11.LightName.Light7; - var _FragmentLight0Sgix = OpenTK.Graphics.ES11.LightName.FragmentLight0Sgix; - var _FragmentLight1Sgix = OpenTK.Graphics.ES11.LightName.FragmentLight1Sgix; - var _FragmentLight2Sgix = OpenTK.Graphics.ES11.LightName.FragmentLight2Sgix; - var _FragmentLight3Sgix = OpenTK.Graphics.ES11.LightName.FragmentLight3Sgix; - var _FragmentLight4Sgix = OpenTK.Graphics.ES11.LightName.FragmentLight4Sgix; - var _FragmentLight5Sgix = OpenTK.Graphics.ES11.LightName.FragmentLight5Sgix; - var _FragmentLight6Sgix = OpenTK.Graphics.ES11.LightName.FragmentLight6Sgix; - var _FragmentLight7Sgix = OpenTK.Graphics.ES11.LightName.FragmentLight7Sgix; -} -static void Test_LightParameter_38497() { - var _Ambient = OpenTK.Graphics.ES11.LightParameter.Ambient; - var _Diffuse = OpenTK.Graphics.ES11.LightParameter.Diffuse; - var _Specular = OpenTK.Graphics.ES11.LightParameter.Specular; - var _Position = OpenTK.Graphics.ES11.LightParameter.Position; - var _SpotDirection = OpenTK.Graphics.ES11.LightParameter.SpotDirection; - var _SpotExponent = OpenTK.Graphics.ES11.LightParameter.SpotExponent; - var _SpotCutoff = OpenTK.Graphics.ES11.LightParameter.SpotCutoff; - var _ConstantAttenuation = OpenTK.Graphics.ES11.LightParameter.ConstantAttenuation; - var _LinearAttenuation = OpenTK.Graphics.ES11.LightParameter.LinearAttenuation; - var _QuadraticAttenuation = OpenTK.Graphics.ES11.LightParameter.QuadraticAttenuation; -} -static void Test_ListMode_38498() { - var _Compile = OpenTK.Graphics.ES11.ListMode.Compile; - var _CompileAndExecute = OpenTK.Graphics.ES11.ListMode.CompileAndExecute; -} -static void Test_ListNameType_38499() { - var _Byte = OpenTK.Graphics.ES11.ListNameType.Byte; - var _UnsignedByte = OpenTK.Graphics.ES11.ListNameType.UnsignedByte; - var _Short = OpenTK.Graphics.ES11.ListNameType.Short; - var _UnsignedShort = OpenTK.Graphics.ES11.ListNameType.UnsignedShort; - var _Int = OpenTK.Graphics.ES11.ListNameType.Int; - var _UnsignedInt = OpenTK.Graphics.ES11.ListNameType.UnsignedInt; - var _Float = OpenTK.Graphics.ES11.ListNameType.Float; - var _Gl2Bytes = OpenTK.Graphics.ES11.ListNameType.Gl2Bytes; - var _Gl3Bytes = OpenTK.Graphics.ES11.ListNameType.Gl3Bytes; - var _Gl4Bytes = OpenTK.Graphics.ES11.ListNameType.Gl4Bytes; -} -static void Test_ListParameterName_38500() { - var _ListPrioritySgix = OpenTK.Graphics.ES11.ListParameterName.ListPrioritySgix; -} -static void Test_LogicOp_38501() { - var _Clear = OpenTK.Graphics.ES11.LogicOp.Clear; - var _And = OpenTK.Graphics.ES11.LogicOp.And; - var _AndReverse = OpenTK.Graphics.ES11.LogicOp.AndReverse; - var _Copy = OpenTK.Graphics.ES11.LogicOp.Copy; - var _AndInverted = OpenTK.Graphics.ES11.LogicOp.AndInverted; - var _Noop = OpenTK.Graphics.ES11.LogicOp.Noop; - var _Xor = OpenTK.Graphics.ES11.LogicOp.Xor; - var _Or = OpenTK.Graphics.ES11.LogicOp.Or; - var _Nor = OpenTK.Graphics.ES11.LogicOp.Nor; - var _Equiv = OpenTK.Graphics.ES11.LogicOp.Equiv; - var _Invert = OpenTK.Graphics.ES11.LogicOp.Invert; - var _OrReverse = OpenTK.Graphics.ES11.LogicOp.OrReverse; - var _CopyInverted = OpenTK.Graphics.ES11.LogicOp.CopyInverted; - var _OrInverted = OpenTK.Graphics.ES11.LogicOp.OrInverted; - var _Nand = OpenTK.Graphics.ES11.LogicOp.Nand; - var _Set = OpenTK.Graphics.ES11.LogicOp.Set; -} -static void Test_MapBufferUsageMask_38502() { - var _MapReadBit = OpenTK.Graphics.ES11.MapBufferUsageMask.MapReadBit; - var _MapReadBitExt = OpenTK.Graphics.ES11.MapBufferUsageMask.MapReadBitExt; - var _MapWriteBit = OpenTK.Graphics.ES11.MapBufferUsageMask.MapWriteBit; - var _MapWriteBitExt = OpenTK.Graphics.ES11.MapBufferUsageMask.MapWriteBitExt; - var _MapInvalidateRangeBit = OpenTK.Graphics.ES11.MapBufferUsageMask.MapInvalidateRangeBit; - var _MapInvalidateRangeBitExt = OpenTK.Graphics.ES11.MapBufferUsageMask.MapInvalidateRangeBitExt; - var _MapInvalidateBufferBit = OpenTK.Graphics.ES11.MapBufferUsageMask.MapInvalidateBufferBit; - var _MapInvalidateBufferBitExt = OpenTK.Graphics.ES11.MapBufferUsageMask.MapInvalidateBufferBitExt; - var _MapFlushExplicitBit = OpenTK.Graphics.ES11.MapBufferUsageMask.MapFlushExplicitBit; - var _MapFlushExplicitBitExt = OpenTK.Graphics.ES11.MapBufferUsageMask.MapFlushExplicitBitExt; - var _MapUnsynchronizedBit = OpenTK.Graphics.ES11.MapBufferUsageMask.MapUnsynchronizedBit; - var _MapUnsynchronizedBitExt = OpenTK.Graphics.ES11.MapBufferUsageMask.MapUnsynchronizedBitExt; - var _MapPersistentBit = OpenTK.Graphics.ES11.MapBufferUsageMask.MapPersistentBit; - var _MapCoherentBit = OpenTK.Graphics.ES11.MapBufferUsageMask.MapCoherentBit; - var _DynamicStorageBit = OpenTK.Graphics.ES11.MapBufferUsageMask.DynamicStorageBit; - var _ClientStorageBit = OpenTK.Graphics.ES11.MapBufferUsageMask.ClientStorageBit; -} -static void Test_MapTarget_38503() { - var _Map1Color4 = OpenTK.Graphics.ES11.MapTarget.Map1Color4; - var _Map1Index = OpenTK.Graphics.ES11.MapTarget.Map1Index; - var _Map1Normal = OpenTK.Graphics.ES11.MapTarget.Map1Normal; - var _Map1TextureCoord1 = OpenTK.Graphics.ES11.MapTarget.Map1TextureCoord1; - var _Map1TextureCoord2 = OpenTK.Graphics.ES11.MapTarget.Map1TextureCoord2; - var _Map1TextureCoord3 = OpenTK.Graphics.ES11.MapTarget.Map1TextureCoord3; - var _Map1TextureCoord4 = OpenTK.Graphics.ES11.MapTarget.Map1TextureCoord4; - var _Map1Vertex3 = OpenTK.Graphics.ES11.MapTarget.Map1Vertex3; - var _Map1Vertex4 = OpenTK.Graphics.ES11.MapTarget.Map1Vertex4; - var _Map2Color4 = OpenTK.Graphics.ES11.MapTarget.Map2Color4; - var _Map2Index = OpenTK.Graphics.ES11.MapTarget.Map2Index; - var _Map2Normal = OpenTK.Graphics.ES11.MapTarget.Map2Normal; - var _Map2TextureCoord1 = OpenTK.Graphics.ES11.MapTarget.Map2TextureCoord1; - var _Map2TextureCoord2 = OpenTK.Graphics.ES11.MapTarget.Map2TextureCoord2; - var _Map2TextureCoord3 = OpenTK.Graphics.ES11.MapTarget.Map2TextureCoord3; - var _Map2TextureCoord4 = OpenTK.Graphics.ES11.MapTarget.Map2TextureCoord4; - var _Map2Vertex3 = OpenTK.Graphics.ES11.MapTarget.Map2Vertex3; - var _Map2Vertex4 = OpenTK.Graphics.ES11.MapTarget.Map2Vertex4; - var _GeometryDeformationSgix = OpenTK.Graphics.ES11.MapTarget.GeometryDeformationSgix; - var _TextureDeformationSgix = OpenTK.Graphics.ES11.MapTarget.TextureDeformationSgix; -} -static void Test_MapTextureFormatIntel_38504() { - var _LayoutDefaultIntel = OpenTK.Graphics.ES11.MapTextureFormatIntel.LayoutDefaultIntel; - var _LayoutLinearIntel = OpenTK.Graphics.ES11.MapTextureFormatIntel.LayoutLinearIntel; - var _LayoutLinearCpuCachedIntel = OpenTK.Graphics.ES11.MapTextureFormatIntel.LayoutLinearCpuCachedIntel; -} -static void Test_MaterialFace_38505() { - var _Front = OpenTK.Graphics.ES11.MaterialFace.Front; - var _Back = OpenTK.Graphics.ES11.MaterialFace.Back; - var _FrontAndBack = OpenTK.Graphics.ES11.MaterialFace.FrontAndBack; -} -static void Test_MaterialParameter_38506() { - var _Ambient = OpenTK.Graphics.ES11.MaterialParameter.Ambient; - var _Diffuse = OpenTK.Graphics.ES11.MaterialParameter.Diffuse; - var _Specular = OpenTK.Graphics.ES11.MaterialParameter.Specular; - var _Emission = OpenTK.Graphics.ES11.MaterialParameter.Emission; - var _Shininess = OpenTK.Graphics.ES11.MaterialParameter.Shininess; - var _AmbientAndDiffuse = OpenTK.Graphics.ES11.MaterialParameter.AmbientAndDiffuse; - var _ColorIndexes = OpenTK.Graphics.ES11.MaterialParameter.ColorIndexes; -} -static void Test_MatrixMode_38507() { - var _Modelview = OpenTK.Graphics.ES11.MatrixMode.Modelview; - var _Modelview0Ext = OpenTK.Graphics.ES11.MatrixMode.Modelview0Ext; - var _Projection = OpenTK.Graphics.ES11.MatrixMode.Projection; - var _Texture = OpenTK.Graphics.ES11.MatrixMode.Texture; -} -static void Test_MemoryBarrierMask_38508() { - var _VertexAttribArrayBarrierBit = OpenTK.Graphics.ES11.MemoryBarrierMask.VertexAttribArrayBarrierBit; - var _VertexAttribArrayBarrierBitExt = OpenTK.Graphics.ES11.MemoryBarrierMask.VertexAttribArrayBarrierBitExt; - var _ElementArrayBarrierBit = OpenTK.Graphics.ES11.MemoryBarrierMask.ElementArrayBarrierBit; - var _ElementArrayBarrierBitExt = OpenTK.Graphics.ES11.MemoryBarrierMask.ElementArrayBarrierBitExt; - var _UniformBarrierBit = OpenTK.Graphics.ES11.MemoryBarrierMask.UniformBarrierBit; - var _UniformBarrierBitExt = OpenTK.Graphics.ES11.MemoryBarrierMask.UniformBarrierBitExt; - var _TextureFetchBarrierBit = OpenTK.Graphics.ES11.MemoryBarrierMask.TextureFetchBarrierBit; - var _TextureFetchBarrierBitExt = OpenTK.Graphics.ES11.MemoryBarrierMask.TextureFetchBarrierBitExt; - var _ShaderGlobalAccessBarrierBitNv = OpenTK.Graphics.ES11.MemoryBarrierMask.ShaderGlobalAccessBarrierBitNv; - var _ShaderImageAccessBarrierBit = OpenTK.Graphics.ES11.MemoryBarrierMask.ShaderImageAccessBarrierBit; - var _ShaderImageAccessBarrierBitExt = OpenTK.Graphics.ES11.MemoryBarrierMask.ShaderImageAccessBarrierBitExt; - var _CommandBarrierBit = OpenTK.Graphics.ES11.MemoryBarrierMask.CommandBarrierBit; - var _CommandBarrierBitExt = OpenTK.Graphics.ES11.MemoryBarrierMask.CommandBarrierBitExt; - var _PixelBufferBarrierBit = OpenTK.Graphics.ES11.MemoryBarrierMask.PixelBufferBarrierBit; - var _PixelBufferBarrierBitExt = OpenTK.Graphics.ES11.MemoryBarrierMask.PixelBufferBarrierBitExt; - var _TextureUpdateBarrierBit = OpenTK.Graphics.ES11.MemoryBarrierMask.TextureUpdateBarrierBit; - var _TextureUpdateBarrierBitExt = OpenTK.Graphics.ES11.MemoryBarrierMask.TextureUpdateBarrierBitExt; - var _BufferUpdateBarrierBit = OpenTK.Graphics.ES11.MemoryBarrierMask.BufferUpdateBarrierBit; - var _BufferUpdateBarrierBitExt = OpenTK.Graphics.ES11.MemoryBarrierMask.BufferUpdateBarrierBitExt; - var _FramebufferBarrierBit = OpenTK.Graphics.ES11.MemoryBarrierMask.FramebufferBarrierBit; - var _FramebufferBarrierBitExt = OpenTK.Graphics.ES11.MemoryBarrierMask.FramebufferBarrierBitExt; - var _TransformFeedbackBarrierBit = OpenTK.Graphics.ES11.MemoryBarrierMask.TransformFeedbackBarrierBit; - var _TransformFeedbackBarrierBitExt = OpenTK.Graphics.ES11.MemoryBarrierMask.TransformFeedbackBarrierBitExt; - var _AtomicCounterBarrierBit = OpenTK.Graphics.ES11.MemoryBarrierMask.AtomicCounterBarrierBit; - var _AtomicCounterBarrierBitExt = OpenTK.Graphics.ES11.MemoryBarrierMask.AtomicCounterBarrierBitExt; - var _ShaderStorageBarrierBit = OpenTK.Graphics.ES11.MemoryBarrierMask.ShaderStorageBarrierBit; - var _ClientMappedBufferBarrierBit = OpenTK.Graphics.ES11.MemoryBarrierMask.ClientMappedBufferBarrierBit; - var _QueryBufferBarrierBit = OpenTK.Graphics.ES11.MemoryBarrierMask.QueryBufferBarrierBit; - var _AllBarrierBits = OpenTK.Graphics.ES11.MemoryBarrierMask.AllBarrierBits; - var _AllBarrierBitsExt = OpenTK.Graphics.ES11.MemoryBarrierMask.AllBarrierBitsExt; -} -static void Test_MeshMode1_38509() { - var _Point = OpenTK.Graphics.ES11.MeshMode1.Point; - var _Line = OpenTK.Graphics.ES11.MeshMode1.Line; -} -static void Test_MeshMode2_38510() { - var _Point = OpenTK.Graphics.ES11.MeshMode2.Point; - var _Line = OpenTK.Graphics.ES11.MeshMode2.Line; - var _Fill = OpenTK.Graphics.ES11.MeshMode2.Fill; -} -static void Test_MinmaxTargetExt_38511() { - var _Minmax = OpenTK.Graphics.ES11.MinmaxTargetExt.Minmax; - var _MinmaxExt = OpenTK.Graphics.ES11.MinmaxTargetExt.MinmaxExt; -} -static void Test_NormalPointerType_38512() { - var _Byte = OpenTK.Graphics.ES11.NormalPointerType.Byte; - var _Short = OpenTK.Graphics.ES11.NormalPointerType.Short; - var _Int = OpenTK.Graphics.ES11.NormalPointerType.Int; - var _Float = OpenTK.Graphics.ES11.NormalPointerType.Float; - var _Double = OpenTK.Graphics.ES11.NormalPointerType.Double; -} -static void Test_Nvfence_38513() { - var _AllCompletedNv = OpenTK.Graphics.ES11.Nvfence.AllCompletedNv; - var _FenceStatusNv = OpenTK.Graphics.ES11.Nvfence.FenceStatusNv; - var _FenceConditionNv = OpenTK.Graphics.ES11.Nvfence.FenceConditionNv; - var _NvFence = OpenTK.Graphics.ES11.Nvfence.NvFence; -} -static void Test_NvFence_38514() { - var _AllCompletedNv = OpenTK.Graphics.ES11.NvFence.AllCompletedNv; - var _FenceStatusNv = OpenTK.Graphics.ES11.NvFence.FenceStatusNv; - var _FenceConditionNv = OpenTK.Graphics.ES11.NvFence.FenceConditionNv; -} -static void Test_OcclusionQueryEventMaskAmd_38515() { - var _QueryDepthPassEventBitAmd = OpenTK.Graphics.ES11.OcclusionQueryEventMaskAmd.QueryDepthPassEventBitAmd; - var _QueryDepthFailEventBitAmd = OpenTK.Graphics.ES11.OcclusionQueryEventMaskAmd.QueryDepthFailEventBitAmd; - var _QueryStencilFailEventBitAmd = OpenTK.Graphics.ES11.OcclusionQueryEventMaskAmd.QueryStencilFailEventBitAmd; - var _QueryDepthBoundsFailEventBitAmd = OpenTK.Graphics.ES11.OcclusionQueryEventMaskAmd.QueryDepthBoundsFailEventBitAmd; - var _QueryAllEventBitsAmd = OpenTK.Graphics.ES11.OcclusionQueryEventMaskAmd.QueryAllEventBitsAmd; -} -static void Test_OesblendEquationSeparate_38516() { - var _BlendEquationRgbOes = OpenTK.Graphics.ES11.OesblendEquationSeparate.BlendEquationRgbOes; - var _BlendEquationAlphaOes = OpenTK.Graphics.ES11.OesblendEquationSeparate.BlendEquationAlphaOes; - var _OesBlendEquationSeparate = OpenTK.Graphics.ES11.OesblendEquationSeparate.OesBlendEquationSeparate; -} -static void Test_OesBlendEquationSeparate_38517() { - var _BlendEquationRgbOes = OpenTK.Graphics.ES11.OesBlendEquationSeparate.BlendEquationRgbOes; - var _BlendEquationAlphaOes = OpenTK.Graphics.ES11.OesBlendEquationSeparate.BlendEquationAlphaOes; -} -static void Test_OesblendFuncSeparate_38518() { - var _BlendDstRgbOes = OpenTK.Graphics.ES11.OesblendFuncSeparate.BlendDstRgbOes; - var _BlendSrcRgbOes = OpenTK.Graphics.ES11.OesblendFuncSeparate.BlendSrcRgbOes; - var _BlendDstAlphaOes = OpenTK.Graphics.ES11.OesblendFuncSeparate.BlendDstAlphaOes; - var _BlendSrcAlphaOes = OpenTK.Graphics.ES11.OesblendFuncSeparate.BlendSrcAlphaOes; - var _OesBlendFuncSeparate = OpenTK.Graphics.ES11.OesblendFuncSeparate.OesBlendFuncSeparate; -} -static void Test_OesBlendFuncSeparate_38519() { - var _BlendDstRgbOes = OpenTK.Graphics.ES11.OesBlendFuncSeparate.BlendDstRgbOes; - var _BlendSrcRgbOes = OpenTK.Graphics.ES11.OesBlendFuncSeparate.BlendSrcRgbOes; - var _BlendDstAlphaOes = OpenTK.Graphics.ES11.OesBlendFuncSeparate.BlendDstAlphaOes; - var _BlendSrcAlphaOes = OpenTK.Graphics.ES11.OesBlendFuncSeparate.BlendSrcAlphaOes; -} -static void Test_OesblendSubtract_38520() { - var _FuncAddOes = OpenTK.Graphics.ES11.OesblendSubtract.FuncAddOes; - var _BlendEquationOes = OpenTK.Graphics.ES11.OesblendSubtract.BlendEquationOes; - var _FuncSubtractOes = OpenTK.Graphics.ES11.OesblendSubtract.FuncSubtractOes; - var _FuncReverseSubtractOes = OpenTK.Graphics.ES11.OesblendSubtract.FuncReverseSubtractOes; - var _OesBlendSubtract = OpenTK.Graphics.ES11.OesblendSubtract.OesBlendSubtract; -} -static void Test_OesBlendSubtract_38521() { - var _FuncAddOes = OpenTK.Graphics.ES11.OesBlendSubtract.FuncAddOes; - var _BlendEquationOes = OpenTK.Graphics.ES11.OesBlendSubtract.BlendEquationOes; - var _FuncSubtractOes = OpenTK.Graphics.ES11.OesBlendSubtract.FuncSubtractOes; - var _FuncReverseSubtractOes = OpenTK.Graphics.ES11.OesBlendSubtract.FuncReverseSubtractOes; -} -static void Test_OesbyteCoordinates_38522() { - var _OesByteCoordinates = OpenTK.Graphics.ES11.OesbyteCoordinates.OesByteCoordinates; -} -static void Test_OesByteCoordinates_38523() { - var _Byte = OpenTK.Graphics.ES11.OesByteCoordinates.Byte; -} -static void Test_OescompressedEtc1Rgb8Texture_38524() { - var _Etc1Rgb8Oes = OpenTK.Graphics.ES11.OescompressedEtc1Rgb8Texture.Etc1Rgb8Oes; - var _OesCompressedEtc1Rgb8Texture = OpenTK.Graphics.ES11.OescompressedEtc1Rgb8Texture.OesCompressedEtc1Rgb8Texture; -} -static void Test_OesCompressedEtc1Rgb8Texture_38525() { - var _Etc1Rgb8Oes = OpenTK.Graphics.ES11.OesCompressedEtc1Rgb8Texture.Etc1Rgb8Oes; -} -static void Test_OescompressedPalettedTexture_38526() { - var _Palette4Rgb8Oes = OpenTK.Graphics.ES11.OescompressedPalettedTexture.Palette4Rgb8Oes; - var _Palette4Rgba8Oes = OpenTK.Graphics.ES11.OescompressedPalettedTexture.Palette4Rgba8Oes; - var _Palette4R5G6B5Oes = OpenTK.Graphics.ES11.OescompressedPalettedTexture.Palette4R5G6B5Oes; - var _Palette4Rgba4Oes = OpenTK.Graphics.ES11.OescompressedPalettedTexture.Palette4Rgba4Oes; - var _Palette4Rgb5A1Oes = OpenTK.Graphics.ES11.OescompressedPalettedTexture.Palette4Rgb5A1Oes; - var _Palette8Rgb8Oes = OpenTK.Graphics.ES11.OescompressedPalettedTexture.Palette8Rgb8Oes; - var _Palette8Rgba8Oes = OpenTK.Graphics.ES11.OescompressedPalettedTexture.Palette8Rgba8Oes; - var _Palette8R5G6B5Oes = OpenTK.Graphics.ES11.OescompressedPalettedTexture.Palette8R5G6B5Oes; - var _Palette8Rgba4Oes = OpenTK.Graphics.ES11.OescompressedPalettedTexture.Palette8Rgba4Oes; - var _Palette8Rgb5A1Oes = OpenTK.Graphics.ES11.OescompressedPalettedTexture.Palette8Rgb5A1Oes; - var _OesCompressedPalettedTexture = OpenTK.Graphics.ES11.OescompressedPalettedTexture.OesCompressedPalettedTexture; -} -static void Test_OesCompressedPalettedTexture_38527() { - var _Palette4Rgb8Oes = OpenTK.Graphics.ES11.OesCompressedPalettedTexture.Palette4Rgb8Oes; - var _Palette4Rgba8Oes = OpenTK.Graphics.ES11.OesCompressedPalettedTexture.Palette4Rgba8Oes; - var _Palette4R5G6B5Oes = OpenTK.Graphics.ES11.OesCompressedPalettedTexture.Palette4R5G6B5Oes; - var _Palette4Rgba4Oes = OpenTK.Graphics.ES11.OesCompressedPalettedTexture.Palette4Rgba4Oes; - var _Palette4Rgb5A1Oes = OpenTK.Graphics.ES11.OesCompressedPalettedTexture.Palette4Rgb5A1Oes; - var _Palette8Rgb8Oes = OpenTK.Graphics.ES11.OesCompressedPalettedTexture.Palette8Rgb8Oes; - var _Palette8Rgba8Oes = OpenTK.Graphics.ES11.OesCompressedPalettedTexture.Palette8Rgba8Oes; - var _Palette8R5G6B5Oes = OpenTK.Graphics.ES11.OesCompressedPalettedTexture.Palette8R5G6B5Oes; - var _Palette8Rgba4Oes = OpenTK.Graphics.ES11.OesCompressedPalettedTexture.Palette8Rgba4Oes; - var _Palette8Rgb5A1Oes = OpenTK.Graphics.ES11.OesCompressedPalettedTexture.Palette8Rgb5A1Oes; -} -static void Test_Oesdepth24_38528() { - var _DepthComponent24Oes = OpenTK.Graphics.ES11.Oesdepth24.DepthComponent24Oes; - var _OesDepth24 = OpenTK.Graphics.ES11.Oesdepth24.OesDepth24; -} -static void Test_OesDepth24_38529() { - var _DepthComponent24Oes = OpenTK.Graphics.ES11.OesDepth24.DepthComponent24Oes; -} -static void Test_Oesdepth32_38530() { - var _DepthComponent32Oes = OpenTK.Graphics.ES11.Oesdepth32.DepthComponent32Oes; - var _OesDepth32 = OpenTK.Graphics.ES11.Oesdepth32.OesDepth32; -} -static void Test_OesDepth32_38531() { - var _DepthComponent32Oes = OpenTK.Graphics.ES11.OesDepth32.DepthComponent32Oes; -} -static void Test_OesdrawTexture_38532() { - var _TextureCropRectOes = OpenTK.Graphics.ES11.OesdrawTexture.TextureCropRectOes; - var _OesDrawTexture = OpenTK.Graphics.ES11.OesdrawTexture.OesDrawTexture; -} -static void Test_OesDrawTexture_38533() { - var _TextureCropRectOes = OpenTK.Graphics.ES11.OesDrawTexture.TextureCropRectOes; -} -static void Test_Oeseglimage_38534() { - var _OesEglImage = OpenTK.Graphics.ES11.Oeseglimage.OesEglImage; -} -static void Test_OesEglImage_38535() { -} -static void Test_OesEglImageExternal_38536() { - var _TextureExternalOes = OpenTK.Graphics.ES11.OesEglImageExternal.TextureExternalOes; - var _SamplerExternalOes = OpenTK.Graphics.ES11.OesEglImageExternal.SamplerExternalOes; - var _TextureBindingExternalOes = OpenTK.Graphics.ES11.OesEglImageExternal.TextureBindingExternalOes; - var _RequiredTextureImageUnitsOes = OpenTK.Graphics.ES11.OesEglImageExternal.RequiredTextureImageUnitsOes; -} -static void Test_OeselementIndexUint_38537() { - var _OesElementIndexUint = OpenTK.Graphics.ES11.OeselementIndexUint.OesElementIndexUint; -} -static void Test_OesElementIndexUint_38538() { - var _UnsignedInt = OpenTK.Graphics.ES11.OesElementIndexUint.UnsignedInt; -} -static void Test_OesextendedMatrixPalette_38539() { - var _OesExtendedMatrixPalette = OpenTK.Graphics.ES11.OesextendedMatrixPalette.OesExtendedMatrixPalette; -} -static void Test_OesExtendedMatrixPalette_38540() { -} -static void Test_OesfboRenderMipmap_38541() { - var _OesFboRenderMipmap = OpenTK.Graphics.ES11.OesfboRenderMipmap.OesFboRenderMipmap; -} -static void Test_OesFboRenderMipmap_38542() { -} -static void Test_OesfixedPoint_38543() { - var _FixedOes = OpenTK.Graphics.ES11.OesfixedPoint.FixedOes; - var _OesFixedPoint = OpenTK.Graphics.ES11.OesfixedPoint.OesFixedPoint; -} -static void Test_OesFixedPoint_38544() { - var _FixedOes = OpenTK.Graphics.ES11.OesFixedPoint.FixedOes; -} -static void Test_OesframebufferObject_38545() { - var _NoneOes = OpenTK.Graphics.ES11.OesframebufferObject.NoneOes; - var _InvalidFramebufferOperationOes = OpenTK.Graphics.ES11.OesframebufferObject.InvalidFramebufferOperationOes; - var _Rgba4Oes = OpenTK.Graphics.ES11.OesframebufferObject.Rgba4Oes; - var _Rgb5A1Oes = OpenTK.Graphics.ES11.OesframebufferObject.Rgb5A1Oes; - var _DepthComponent16Oes = OpenTK.Graphics.ES11.OesframebufferObject.DepthComponent16Oes; - var _MaxRenderbufferSizeOes = OpenTK.Graphics.ES11.OesframebufferObject.MaxRenderbufferSizeOes; - var _FramebufferBindingOes = OpenTK.Graphics.ES11.OesframebufferObject.FramebufferBindingOes; - var _RenderbufferBindingOes = OpenTK.Graphics.ES11.OesframebufferObject.RenderbufferBindingOes; - var _FramebufferAttachmentObjectTypeOes = OpenTK.Graphics.ES11.OesframebufferObject.FramebufferAttachmentObjectTypeOes; - var _FramebufferAttachmentObjectNameOes = OpenTK.Graphics.ES11.OesframebufferObject.FramebufferAttachmentObjectNameOes; - var _FramebufferAttachmentTextureLevelOes = OpenTK.Graphics.ES11.OesframebufferObject.FramebufferAttachmentTextureLevelOes; - var _FramebufferAttachmentTextureCubeMapFaceOes = OpenTK.Graphics.ES11.OesframebufferObject.FramebufferAttachmentTextureCubeMapFaceOes; - var _FramebufferCompleteOes = OpenTK.Graphics.ES11.OesframebufferObject.FramebufferCompleteOes; - var _FramebufferIncompleteAttachmentOes = OpenTK.Graphics.ES11.OesframebufferObject.FramebufferIncompleteAttachmentOes; - var _FramebufferIncompleteMissingAttachmentOes = OpenTK.Graphics.ES11.OesframebufferObject.FramebufferIncompleteMissingAttachmentOes; - var _FramebufferIncompleteDimensionsOes = OpenTK.Graphics.ES11.OesframebufferObject.FramebufferIncompleteDimensionsOes; - var _FramebufferIncompleteFormatsOes = OpenTK.Graphics.ES11.OesframebufferObject.FramebufferIncompleteFormatsOes; - var _FramebufferUnsupportedOes = OpenTK.Graphics.ES11.OesframebufferObject.FramebufferUnsupportedOes; - var _ColorAttachment0Oes = OpenTK.Graphics.ES11.OesframebufferObject.ColorAttachment0Oes; - var _DepthAttachmentOes = OpenTK.Graphics.ES11.OesframebufferObject.DepthAttachmentOes; - var _StencilAttachmentOes = OpenTK.Graphics.ES11.OesframebufferObject.StencilAttachmentOes; - var _FramebufferOes = OpenTK.Graphics.ES11.OesframebufferObject.FramebufferOes; - var _RenderbufferOes = OpenTK.Graphics.ES11.OesframebufferObject.RenderbufferOes; - var _RenderbufferWidthOes = OpenTK.Graphics.ES11.OesframebufferObject.RenderbufferWidthOes; - var _RenderbufferHeightOes = OpenTK.Graphics.ES11.OesframebufferObject.RenderbufferHeightOes; - var _RenderbufferInternalFormatOes = OpenTK.Graphics.ES11.OesframebufferObject.RenderbufferInternalFormatOes; - var _RenderbufferRedSizeOes = OpenTK.Graphics.ES11.OesframebufferObject.RenderbufferRedSizeOes; - var _RenderbufferGreenSizeOes = OpenTK.Graphics.ES11.OesframebufferObject.RenderbufferGreenSizeOes; - var _RenderbufferBlueSizeOes = OpenTK.Graphics.ES11.OesframebufferObject.RenderbufferBlueSizeOes; - var _RenderbufferAlphaSizeOes = OpenTK.Graphics.ES11.OesframebufferObject.RenderbufferAlphaSizeOes; - var _RenderbufferDepthSizeOes = OpenTK.Graphics.ES11.OesframebufferObject.RenderbufferDepthSizeOes; - var _RenderbufferStencilSizeOes = OpenTK.Graphics.ES11.OesframebufferObject.RenderbufferStencilSizeOes; - var _Rgb565Oes = OpenTK.Graphics.ES11.OesframebufferObject.Rgb565Oes; - var _OesFramebufferObject = OpenTK.Graphics.ES11.OesframebufferObject.OesFramebufferObject; -} -static void Test_OesFramebufferObject_38546() { - var _NoneOes = OpenTK.Graphics.ES11.OesFramebufferObject.NoneOes; - var _InvalidFramebufferOperationOes = OpenTK.Graphics.ES11.OesFramebufferObject.InvalidFramebufferOperationOes; - var _Rgba4Oes = OpenTK.Graphics.ES11.OesFramebufferObject.Rgba4Oes; - var _Rgb5A1Oes = OpenTK.Graphics.ES11.OesFramebufferObject.Rgb5A1Oes; - var _DepthComponent16Oes = OpenTK.Graphics.ES11.OesFramebufferObject.DepthComponent16Oes; - var _MaxRenderbufferSizeOes = OpenTK.Graphics.ES11.OesFramebufferObject.MaxRenderbufferSizeOes; - var _FramebufferBindingOes = OpenTK.Graphics.ES11.OesFramebufferObject.FramebufferBindingOes; - var _RenderbufferBindingOes = OpenTK.Graphics.ES11.OesFramebufferObject.RenderbufferBindingOes; - var _FramebufferAttachmentObjectTypeOes = OpenTK.Graphics.ES11.OesFramebufferObject.FramebufferAttachmentObjectTypeOes; - var _FramebufferAttachmentObjectNameOes = OpenTK.Graphics.ES11.OesFramebufferObject.FramebufferAttachmentObjectNameOes; - var _FramebufferAttachmentTextureLevelOes = OpenTK.Graphics.ES11.OesFramebufferObject.FramebufferAttachmentTextureLevelOes; - var _FramebufferAttachmentTextureCubeMapFaceOes = OpenTK.Graphics.ES11.OesFramebufferObject.FramebufferAttachmentTextureCubeMapFaceOes; - var _FramebufferCompleteOes = OpenTK.Graphics.ES11.OesFramebufferObject.FramebufferCompleteOes; - var _FramebufferIncompleteAttachmentOes = OpenTK.Graphics.ES11.OesFramebufferObject.FramebufferIncompleteAttachmentOes; - var _FramebufferIncompleteMissingAttachmentOes = OpenTK.Graphics.ES11.OesFramebufferObject.FramebufferIncompleteMissingAttachmentOes; - var _FramebufferIncompleteDimensionsOes = OpenTK.Graphics.ES11.OesFramebufferObject.FramebufferIncompleteDimensionsOes; - var _FramebufferIncompleteFormatsOes = OpenTK.Graphics.ES11.OesFramebufferObject.FramebufferIncompleteFormatsOes; - var _FramebufferUnsupportedOes = OpenTK.Graphics.ES11.OesFramebufferObject.FramebufferUnsupportedOes; - var _ColorAttachment0Oes = OpenTK.Graphics.ES11.OesFramebufferObject.ColorAttachment0Oes; - var _DepthAttachmentOes = OpenTK.Graphics.ES11.OesFramebufferObject.DepthAttachmentOes; - var _StencilAttachmentOes = OpenTK.Graphics.ES11.OesFramebufferObject.StencilAttachmentOes; - var _FramebufferOes = OpenTK.Graphics.ES11.OesFramebufferObject.FramebufferOes; - var _RenderbufferOes = OpenTK.Graphics.ES11.OesFramebufferObject.RenderbufferOes; - var _RenderbufferWidthOes = OpenTK.Graphics.ES11.OesFramebufferObject.RenderbufferWidthOes; - var _RenderbufferHeightOes = OpenTK.Graphics.ES11.OesFramebufferObject.RenderbufferHeightOes; - var _RenderbufferInternalFormatOes = OpenTK.Graphics.ES11.OesFramebufferObject.RenderbufferInternalFormatOes; - var _RenderbufferRedSizeOes = OpenTK.Graphics.ES11.OesFramebufferObject.RenderbufferRedSizeOes; - var _RenderbufferGreenSizeOes = OpenTK.Graphics.ES11.OesFramebufferObject.RenderbufferGreenSizeOes; - var _RenderbufferBlueSizeOes = OpenTK.Graphics.ES11.OesFramebufferObject.RenderbufferBlueSizeOes; - var _RenderbufferAlphaSizeOes = OpenTK.Graphics.ES11.OesFramebufferObject.RenderbufferAlphaSizeOes; - var _RenderbufferDepthSizeOes = OpenTK.Graphics.ES11.OesFramebufferObject.RenderbufferDepthSizeOes; - var _RenderbufferStencilSizeOes = OpenTK.Graphics.ES11.OesFramebufferObject.RenderbufferStencilSizeOes; - var _Rgb565Oes = OpenTK.Graphics.ES11.OesFramebufferObject.Rgb565Oes; -} -static void Test_Oesmapbuffer_38547() { - var _WriteOnlyOes = OpenTK.Graphics.ES11.Oesmapbuffer.WriteOnlyOes; - var _BufferAccessOes = OpenTK.Graphics.ES11.Oesmapbuffer.BufferAccessOes; - var _BufferMappedOes = OpenTK.Graphics.ES11.Oesmapbuffer.BufferMappedOes; - var _BufferMapPointerOes = OpenTK.Graphics.ES11.Oesmapbuffer.BufferMapPointerOes; - var _OesMapbuffer = OpenTK.Graphics.ES11.Oesmapbuffer.OesMapbuffer; -} -static void Test_OesMapbuffer_38548() { - var _WriteOnlyOes = OpenTK.Graphics.ES11.OesMapbuffer.WriteOnlyOes; - var _BufferAccessOes = OpenTK.Graphics.ES11.OesMapbuffer.BufferAccessOes; - var _BufferMappedOes = OpenTK.Graphics.ES11.OesMapbuffer.BufferMappedOes; - var _BufferMapPointerOes = OpenTK.Graphics.ES11.OesMapbuffer.BufferMapPointerOes; -} -static void Test_OesmatrixGet_38549() { - var _ModelviewMatrixFloatAsIntBitsOes = OpenTK.Graphics.ES11.OesmatrixGet.ModelviewMatrixFloatAsIntBitsOes; - var _ProjectionMatrixFloatAsIntBitsOes = OpenTK.Graphics.ES11.OesmatrixGet.ProjectionMatrixFloatAsIntBitsOes; - var _TextureMatrixFloatAsIntBitsOes = OpenTK.Graphics.ES11.OesmatrixGet.TextureMatrixFloatAsIntBitsOes; - var _OesMatrixGet = OpenTK.Graphics.ES11.OesmatrixGet.OesMatrixGet; -} -static void Test_OesMatrixGet_38550() { - var _ModelviewMatrixFloatAsIntBitsOes = OpenTK.Graphics.ES11.OesMatrixGet.ModelviewMatrixFloatAsIntBitsOes; - var _ProjectionMatrixFloatAsIntBitsOes = OpenTK.Graphics.ES11.OesMatrixGet.ProjectionMatrixFloatAsIntBitsOes; - var _TextureMatrixFloatAsIntBitsOes = OpenTK.Graphics.ES11.OesMatrixGet.TextureMatrixFloatAsIntBitsOes; -} -static void Test_OesmatrixPalette_38551() { - var _MaxVertexUnitsOes = OpenTK.Graphics.ES11.OesmatrixPalette.MaxVertexUnitsOes; - var _WeightArrayTypeOes = OpenTK.Graphics.ES11.OesmatrixPalette.WeightArrayTypeOes; - var _WeightArrayStrideOes = OpenTK.Graphics.ES11.OesmatrixPalette.WeightArrayStrideOes; - var _WeightArraySizeOes = OpenTK.Graphics.ES11.OesmatrixPalette.WeightArraySizeOes; - var _WeightArrayPointerOes = OpenTK.Graphics.ES11.OesmatrixPalette.WeightArrayPointerOes; - var _WeightArrayOes = OpenTK.Graphics.ES11.OesmatrixPalette.WeightArrayOes; - var _MatrixPaletteOes = OpenTK.Graphics.ES11.OesmatrixPalette.MatrixPaletteOes; - var _MaxPaletteMatricesOes = OpenTK.Graphics.ES11.OesmatrixPalette.MaxPaletteMatricesOes; - var _CurrentPaletteMatrixOes = OpenTK.Graphics.ES11.OesmatrixPalette.CurrentPaletteMatrixOes; - var _MatrixIndexArrayOes = OpenTK.Graphics.ES11.OesmatrixPalette.MatrixIndexArrayOes; - var _MatrixIndexArraySizeOes = OpenTK.Graphics.ES11.OesmatrixPalette.MatrixIndexArraySizeOes; - var _MatrixIndexArrayTypeOes = OpenTK.Graphics.ES11.OesmatrixPalette.MatrixIndexArrayTypeOes; - var _MatrixIndexArrayStrideOes = OpenTK.Graphics.ES11.OesmatrixPalette.MatrixIndexArrayStrideOes; - var _MatrixIndexArrayPointerOes = OpenTK.Graphics.ES11.OesmatrixPalette.MatrixIndexArrayPointerOes; - var _WeightArrayBufferBindingOes = OpenTK.Graphics.ES11.OesmatrixPalette.WeightArrayBufferBindingOes; - var _MatrixIndexArrayBufferBindingOes = OpenTK.Graphics.ES11.OesmatrixPalette.MatrixIndexArrayBufferBindingOes; - var _OesMatrixPalette = OpenTK.Graphics.ES11.OesmatrixPalette.OesMatrixPalette; -} -static void Test_OesMatrixPalette_38552() { - var _MaxVertexUnitsOes = OpenTK.Graphics.ES11.OesMatrixPalette.MaxVertexUnitsOes; - var _WeightArrayTypeOes = OpenTK.Graphics.ES11.OesMatrixPalette.WeightArrayTypeOes; - var _WeightArrayStrideOes = OpenTK.Graphics.ES11.OesMatrixPalette.WeightArrayStrideOes; - var _WeightArraySizeOes = OpenTK.Graphics.ES11.OesMatrixPalette.WeightArraySizeOes; - var _WeightArrayPointerOes = OpenTK.Graphics.ES11.OesMatrixPalette.WeightArrayPointerOes; - var _WeightArrayOes = OpenTK.Graphics.ES11.OesMatrixPalette.WeightArrayOes; - var _MatrixPaletteOes = OpenTK.Graphics.ES11.OesMatrixPalette.MatrixPaletteOes; - var _MaxPaletteMatricesOes = OpenTK.Graphics.ES11.OesMatrixPalette.MaxPaletteMatricesOes; - var _CurrentPaletteMatrixOes = OpenTK.Graphics.ES11.OesMatrixPalette.CurrentPaletteMatrixOes; - var _MatrixIndexArrayOes = OpenTK.Graphics.ES11.OesMatrixPalette.MatrixIndexArrayOes; - var _MatrixIndexArraySizeOes = OpenTK.Graphics.ES11.OesMatrixPalette.MatrixIndexArraySizeOes; - var _MatrixIndexArrayTypeOes = OpenTK.Graphics.ES11.OesMatrixPalette.MatrixIndexArrayTypeOes; - var _MatrixIndexArrayStrideOes = OpenTK.Graphics.ES11.OesMatrixPalette.MatrixIndexArrayStrideOes; - var _MatrixIndexArrayPointerOes = OpenTK.Graphics.ES11.OesMatrixPalette.MatrixIndexArrayPointerOes; - var _WeightArrayBufferBindingOes = OpenTK.Graphics.ES11.OesMatrixPalette.WeightArrayBufferBindingOes; - var _MatrixIndexArrayBufferBindingOes = OpenTK.Graphics.ES11.OesMatrixPalette.MatrixIndexArrayBufferBindingOes; -} -static void Test_OespackedDepthStencil_38553() { - var _DepthStencilOes = OpenTK.Graphics.ES11.OespackedDepthStencil.DepthStencilOes; - var _UnsignedInt248Oes = OpenTK.Graphics.ES11.OespackedDepthStencil.UnsignedInt248Oes; - var _Depth24Stencil8Oes = OpenTK.Graphics.ES11.OespackedDepthStencil.Depth24Stencil8Oes; - var _OesPackedDepthStencil = OpenTK.Graphics.ES11.OespackedDepthStencil.OesPackedDepthStencil; -} -static void Test_OesPackedDepthStencil_38554() { - var _DepthStencilOes = OpenTK.Graphics.ES11.OesPackedDepthStencil.DepthStencilOes; - var _UnsignedInt248Oes = OpenTK.Graphics.ES11.OesPackedDepthStencil.UnsignedInt248Oes; - var _Depth24Stencil8Oes = OpenTK.Graphics.ES11.OesPackedDepthStencil.Depth24Stencil8Oes; -} -static void Test_OespointSizeArray_38555() { - var _PointSizeArrayTypeOes = OpenTK.Graphics.ES11.OespointSizeArray.PointSizeArrayTypeOes; - var _PointSizeArrayStrideOes = OpenTK.Graphics.ES11.OespointSizeArray.PointSizeArrayStrideOes; - var _PointSizeArrayPointerOes = OpenTK.Graphics.ES11.OespointSizeArray.PointSizeArrayPointerOes; - var _PointSizeArrayOes = OpenTK.Graphics.ES11.OespointSizeArray.PointSizeArrayOes; - var _PointSizeArrayBufferBindingOes = OpenTK.Graphics.ES11.OespointSizeArray.PointSizeArrayBufferBindingOes; - var _OesPointSizeArray = OpenTK.Graphics.ES11.OespointSizeArray.OesPointSizeArray; -} -static void Test_OesPointSizeArray_38556() { - var _PointSizeArrayTypeOes = OpenTK.Graphics.ES11.OesPointSizeArray.PointSizeArrayTypeOes; - var _PointSizeArrayStrideOes = OpenTK.Graphics.ES11.OesPointSizeArray.PointSizeArrayStrideOes; - var _PointSizeArrayPointerOes = OpenTK.Graphics.ES11.OesPointSizeArray.PointSizeArrayPointerOes; - var _PointSizeArrayOes = OpenTK.Graphics.ES11.OesPointSizeArray.PointSizeArrayOes; - var _PointSizeArrayBufferBindingOes = OpenTK.Graphics.ES11.OesPointSizeArray.PointSizeArrayBufferBindingOes; -} -static void Test_OespointSprite_38557() { - var _PointSpriteOes = OpenTK.Graphics.ES11.OespointSprite.PointSpriteOes; - var _CoordReplaceOes = OpenTK.Graphics.ES11.OespointSprite.CoordReplaceOes; - var _OesPointSprite = OpenTK.Graphics.ES11.OespointSprite.OesPointSprite; -} -static void Test_OesPointSprite_38558() { - var _PointSpriteOes = OpenTK.Graphics.ES11.OesPointSprite.PointSpriteOes; - var _CoordReplaceOes = OpenTK.Graphics.ES11.OesPointSprite.CoordReplaceOes; -} -static void Test_OesqueryMatrix_38559() { - var _OesQueryMatrix = OpenTK.Graphics.ES11.OesqueryMatrix.OesQueryMatrix; -} -static void Test_OesQueryMatrix_38560() { -} -static void Test_OesreadFormat_38561() { - var _ImplementationColorReadTypeOes = OpenTK.Graphics.ES11.OesreadFormat.ImplementationColorReadTypeOes; - var _ImplementationColorReadFormatOes = OpenTK.Graphics.ES11.OesreadFormat.ImplementationColorReadFormatOes; - var _OesReadFormat = OpenTK.Graphics.ES11.OesreadFormat.OesReadFormat; -} -static void Test_OesReadFormat_38562() { - var _ImplementationColorReadTypeOes = OpenTK.Graphics.ES11.OesReadFormat.ImplementationColorReadTypeOes; - var _ImplementationColorReadFormatOes = OpenTK.Graphics.ES11.OesReadFormat.ImplementationColorReadFormatOes; -} -static void Test_OesRequiredInternalformat_38563() { - var _Alpha8Oes = OpenTK.Graphics.ES11.OesRequiredInternalformat.Alpha8Oes; - var _Luminance8Oes = OpenTK.Graphics.ES11.OesRequiredInternalformat.Luminance8Oes; - var _Luminance4Alpha4Oes = OpenTK.Graphics.ES11.OesRequiredInternalformat.Luminance4Alpha4Oes; - var _Luminance8Alpha8Oes = OpenTK.Graphics.ES11.OesRequiredInternalformat.Luminance8Alpha8Oes; - var _Rgb8Oes = OpenTK.Graphics.ES11.OesRequiredInternalformat.Rgb8Oes; - var _Rgb10Ext = OpenTK.Graphics.ES11.OesRequiredInternalformat.Rgb10Ext; - var _Rgba4Oes = OpenTK.Graphics.ES11.OesRequiredInternalformat.Rgba4Oes; - var _Rgb5A1Oes = OpenTK.Graphics.ES11.OesRequiredInternalformat.Rgb5A1Oes; - var _Rgba8Oes = OpenTK.Graphics.ES11.OesRequiredInternalformat.Rgba8Oes; - var _Rgb10A2Ext = OpenTK.Graphics.ES11.OesRequiredInternalformat.Rgb10A2Ext; - var _DepthComponent16Oes = OpenTK.Graphics.ES11.OesRequiredInternalformat.DepthComponent16Oes; - var _DepthComponent24Oes = OpenTK.Graphics.ES11.OesRequiredInternalformat.DepthComponent24Oes; - var _DepthComponent32Oes = OpenTK.Graphics.ES11.OesRequiredInternalformat.DepthComponent32Oes; - var _Depth24Stencil8Oes = OpenTK.Graphics.ES11.OesRequiredInternalformat.Depth24Stencil8Oes; - var _Rgb565Oes = OpenTK.Graphics.ES11.OesRequiredInternalformat.Rgb565Oes; -} -static void Test_Oesrgb8Rgba8_38564() { - var _Rgb8Oes = OpenTK.Graphics.ES11.Oesrgb8Rgba8.Rgb8Oes; - var _Rgba8Oes = OpenTK.Graphics.ES11.Oesrgb8Rgba8.Rgba8Oes; - var _OesRgb8Rgba8 = OpenTK.Graphics.ES11.Oesrgb8Rgba8.OesRgb8Rgba8; -} -static void Test_OesRgb8Rgba8_38565() { - var _Rgb8Oes = OpenTK.Graphics.ES11.OesRgb8Rgba8.Rgb8Oes; - var _Rgba8Oes = OpenTK.Graphics.ES11.OesRgb8Rgba8.Rgba8Oes; -} -static void Test_OessinglePrecision_38566() { - var _OesSinglePrecision = OpenTK.Graphics.ES11.OessinglePrecision.OesSinglePrecision; -} -static void Test_OesSinglePrecision_38567() { -} -static void Test_Oesstencil1_38568() { - var _StencilIndex1Oes = OpenTK.Graphics.ES11.Oesstencil1.StencilIndex1Oes; - var _OesStencil1 = OpenTK.Graphics.ES11.Oesstencil1.OesStencil1; -} -static void Test_OesStencil1_38569() { - var _StencilIndex1Oes = OpenTK.Graphics.ES11.OesStencil1.StencilIndex1Oes; -} -static void Test_Oesstencil4_38570() { - var _StencilIndex4Oes = OpenTK.Graphics.ES11.Oesstencil4.StencilIndex4Oes; - var _OesStencil4 = OpenTK.Graphics.ES11.Oesstencil4.OesStencil4; -} -static void Test_OesStencil4_38571() { - var _StencilIndex4Oes = OpenTK.Graphics.ES11.OesStencil4.StencilIndex4Oes; -} -static void Test_Oesstencil8_38572() { - var _StencilIndex8Oes = OpenTK.Graphics.ES11.Oesstencil8.StencilIndex8Oes; - var _OesStencil8 = OpenTK.Graphics.ES11.Oesstencil8.OesStencil8; -} -static void Test_OesStencil8_38573() { - var _StencilIndex8Oes = OpenTK.Graphics.ES11.OesStencil8.StencilIndex8Oes; -} -static void Test_OesstencilWrap_38574() { - var _IncrWrapOes = OpenTK.Graphics.ES11.OesstencilWrap.IncrWrapOes; - var _DecrWrapOes = OpenTK.Graphics.ES11.OesstencilWrap.DecrWrapOes; - var _OesStencilWrap = OpenTK.Graphics.ES11.OesstencilWrap.OesStencilWrap; -} -static void Test_OesStencilWrap_38575() { - var _IncrWrapOes = OpenTK.Graphics.ES11.OesStencilWrap.IncrWrapOes; - var _DecrWrapOes = OpenTK.Graphics.ES11.OesStencilWrap.DecrWrapOes; -} -static void Test_OestextureCubeMap_38576() { - var _TextureGenModeOes = OpenTK.Graphics.ES11.OestextureCubeMap.TextureGenModeOes; - var _NormalMapOes = OpenTK.Graphics.ES11.OestextureCubeMap.NormalMapOes; - var _ReflectionMapOes = OpenTK.Graphics.ES11.OestextureCubeMap.ReflectionMapOes; - var _TextureCubeMapOes = OpenTK.Graphics.ES11.OestextureCubeMap.TextureCubeMapOes; - var _TextureBindingCubeMapOes = OpenTK.Graphics.ES11.OestextureCubeMap.TextureBindingCubeMapOes; - var _TextureCubeMapPositiveXOes = OpenTK.Graphics.ES11.OestextureCubeMap.TextureCubeMapPositiveXOes; - var _TextureCubeMapNegativeXOes = OpenTK.Graphics.ES11.OestextureCubeMap.TextureCubeMapNegativeXOes; - var _TextureCubeMapPositiveYOes = OpenTK.Graphics.ES11.OestextureCubeMap.TextureCubeMapPositiveYOes; - var _TextureCubeMapNegativeYOes = OpenTK.Graphics.ES11.OestextureCubeMap.TextureCubeMapNegativeYOes; - var _TextureCubeMapPositiveZOes = OpenTK.Graphics.ES11.OestextureCubeMap.TextureCubeMapPositiveZOes; - var _TextureCubeMapNegativeZOes = OpenTK.Graphics.ES11.OestextureCubeMap.TextureCubeMapNegativeZOes; - var _MaxCubeMapTextureSizeOes = OpenTK.Graphics.ES11.OestextureCubeMap.MaxCubeMapTextureSizeOes; - var _TextureGenStrOes = OpenTK.Graphics.ES11.OestextureCubeMap.TextureGenStrOes; - var _OesTextureCubeMap = OpenTK.Graphics.ES11.OestextureCubeMap.OesTextureCubeMap; -} -static void Test_OesTextureCubeMap_38577() { - var _TextureGenModeOes = OpenTK.Graphics.ES11.OesTextureCubeMap.TextureGenModeOes; - var _NormalMapOes = OpenTK.Graphics.ES11.OesTextureCubeMap.NormalMapOes; - var _ReflectionMapOes = OpenTK.Graphics.ES11.OesTextureCubeMap.ReflectionMapOes; - var _TextureCubeMapOes = OpenTK.Graphics.ES11.OesTextureCubeMap.TextureCubeMapOes; - var _TextureBindingCubeMapOes = OpenTK.Graphics.ES11.OesTextureCubeMap.TextureBindingCubeMapOes; - var _TextureCubeMapPositiveXOes = OpenTK.Graphics.ES11.OesTextureCubeMap.TextureCubeMapPositiveXOes; - var _TextureCubeMapNegativeXOes = OpenTK.Graphics.ES11.OesTextureCubeMap.TextureCubeMapNegativeXOes; - var _TextureCubeMapPositiveYOes = OpenTK.Graphics.ES11.OesTextureCubeMap.TextureCubeMapPositiveYOes; - var _TextureCubeMapNegativeYOes = OpenTK.Graphics.ES11.OesTextureCubeMap.TextureCubeMapNegativeYOes; - var _TextureCubeMapPositiveZOes = OpenTK.Graphics.ES11.OesTextureCubeMap.TextureCubeMapPositiveZOes; - var _TextureCubeMapNegativeZOes = OpenTK.Graphics.ES11.OesTextureCubeMap.TextureCubeMapNegativeZOes; - var _MaxCubeMapTextureSizeOes = OpenTK.Graphics.ES11.OesTextureCubeMap.MaxCubeMapTextureSizeOes; - var _TextureGenStrOes = OpenTK.Graphics.ES11.OesTextureCubeMap.TextureGenStrOes; -} -static void Test_OestextureEnvCrossbar_38578() { - var _OesTextureEnvCrossbar = OpenTK.Graphics.ES11.OestextureEnvCrossbar.OesTextureEnvCrossbar; -} -static void Test_OesTextureEnvCrossbar_38579() { -} -static void Test_OestextureMirroredRepeat_38580() { - var _MirroredRepeatOes = OpenTK.Graphics.ES11.OestextureMirroredRepeat.MirroredRepeatOes; - var _OesTextureMirroredRepeat = OpenTK.Graphics.ES11.OestextureMirroredRepeat.OesTextureMirroredRepeat; -} -static void Test_OesTextureMirroredRepeat_38581() { - var _MirroredRepeatOes = OpenTK.Graphics.ES11.OesTextureMirroredRepeat.MirroredRepeatOes; -} -static void Test_OesVertexArrayObject_38582() { - var _VertexArrayBindingOes = OpenTK.Graphics.ES11.OesVertexArrayObject.VertexArrayBindingOes; -} -static void Test_OpenGlescoreVersions_38583() { - var _VersionEsCl10 = OpenTK.Graphics.ES11.OpenGlescoreVersions.VersionEsCl10; - var _VersionEsCl11 = OpenTK.Graphics.ES11.OpenGlescoreVersions.VersionEsCl11; - var _VersionEsCm10 = OpenTK.Graphics.ES11.OpenGlescoreVersions.VersionEsCm10; - var _VersionEsCm11 = OpenTK.Graphics.ES11.OpenGlescoreVersions.VersionEsCm11; -} -static void Test_PixelCopyType_38584() { - var _Color = OpenTK.Graphics.ES11.PixelCopyType.Color; - var _ColorExt = OpenTK.Graphics.ES11.PixelCopyType.ColorExt; - var _Depth = OpenTK.Graphics.ES11.PixelCopyType.Depth; - var _DepthExt = OpenTK.Graphics.ES11.PixelCopyType.DepthExt; - var _Stencil = OpenTK.Graphics.ES11.PixelCopyType.Stencil; - var _StencilExt = OpenTK.Graphics.ES11.PixelCopyType.StencilExt; -} -static void Test_PixelFormat_38585() { - var _UnsignedShort = OpenTK.Graphics.ES11.PixelFormat.UnsignedShort; - var _UnsignedInt = OpenTK.Graphics.ES11.PixelFormat.UnsignedInt; - var _ColorIndex = OpenTK.Graphics.ES11.PixelFormat.ColorIndex; - var _StencilIndex = OpenTK.Graphics.ES11.PixelFormat.StencilIndex; - var _DepthComponent = OpenTK.Graphics.ES11.PixelFormat.DepthComponent; - var _Red = OpenTK.Graphics.ES11.PixelFormat.Red; - var _RedExt = OpenTK.Graphics.ES11.PixelFormat.RedExt; - var _Green = OpenTK.Graphics.ES11.PixelFormat.Green; - var _Blue = OpenTK.Graphics.ES11.PixelFormat.Blue; - var _Alpha = OpenTK.Graphics.ES11.PixelFormat.Alpha; - var _Rgb = OpenTK.Graphics.ES11.PixelFormat.Rgb; - var _Rgba = OpenTK.Graphics.ES11.PixelFormat.Rgba; - var _Luminance = OpenTK.Graphics.ES11.PixelFormat.Luminance; - var _LuminanceAlpha = OpenTK.Graphics.ES11.PixelFormat.LuminanceAlpha; - var _AbgrExt = OpenTK.Graphics.ES11.PixelFormat.AbgrExt; - var _CmykExt = OpenTK.Graphics.ES11.PixelFormat.CmykExt; - var _CmykaExt = OpenTK.Graphics.ES11.PixelFormat.CmykaExt; - var _Ycrcb422Sgix = OpenTK.Graphics.ES11.PixelFormat.Ycrcb422Sgix; - var _Ycrcb444Sgix = OpenTK.Graphics.ES11.PixelFormat.Ycrcb444Sgix; -} -static void Test_PixelMap_38586() { - var _PixelMapIToI = OpenTK.Graphics.ES11.PixelMap.PixelMapIToI; - var _PixelMapSToS = OpenTK.Graphics.ES11.PixelMap.PixelMapSToS; - var _PixelMapIToR = OpenTK.Graphics.ES11.PixelMap.PixelMapIToR; - var _PixelMapIToG = OpenTK.Graphics.ES11.PixelMap.PixelMapIToG; - var _PixelMapIToB = OpenTK.Graphics.ES11.PixelMap.PixelMapIToB; - var _PixelMapIToA = OpenTK.Graphics.ES11.PixelMap.PixelMapIToA; - var _PixelMapRToR = OpenTK.Graphics.ES11.PixelMap.PixelMapRToR; - var _PixelMapGToG = OpenTK.Graphics.ES11.PixelMap.PixelMapGToG; - var _PixelMapBToB = OpenTK.Graphics.ES11.PixelMap.PixelMapBToB; - var _PixelMapAToA = OpenTK.Graphics.ES11.PixelMap.PixelMapAToA; -} -static void Test_PixelStoreParameter_38587() { - var _UnpackSwapBytes = OpenTK.Graphics.ES11.PixelStoreParameter.UnpackSwapBytes; - var _UnpackLsbFirst = OpenTK.Graphics.ES11.PixelStoreParameter.UnpackLsbFirst; - var _UnpackRowLength = OpenTK.Graphics.ES11.PixelStoreParameter.UnpackRowLength; - var _UnpackRowLengthExt = OpenTK.Graphics.ES11.PixelStoreParameter.UnpackRowLengthExt; - var _UnpackSkipRows = OpenTK.Graphics.ES11.PixelStoreParameter.UnpackSkipRows; - var _UnpackSkipRowsExt = OpenTK.Graphics.ES11.PixelStoreParameter.UnpackSkipRowsExt; - var _UnpackSkipPixels = OpenTK.Graphics.ES11.PixelStoreParameter.UnpackSkipPixels; - var _UnpackSkipPixelsExt = OpenTK.Graphics.ES11.PixelStoreParameter.UnpackSkipPixelsExt; - var _UnpackAlignment = OpenTK.Graphics.ES11.PixelStoreParameter.UnpackAlignment; - var _PackSwapBytes = OpenTK.Graphics.ES11.PixelStoreParameter.PackSwapBytes; - var _PackLsbFirst = OpenTK.Graphics.ES11.PixelStoreParameter.PackLsbFirst; - var _PackRowLength = OpenTK.Graphics.ES11.PixelStoreParameter.PackRowLength; - var _PackSkipRows = OpenTK.Graphics.ES11.PixelStoreParameter.PackSkipRows; - var _PackSkipPixels = OpenTK.Graphics.ES11.PixelStoreParameter.PackSkipPixels; - var _PackAlignment = OpenTK.Graphics.ES11.PixelStoreParameter.PackAlignment; - var _PackSkipImages = OpenTK.Graphics.ES11.PixelStoreParameter.PackSkipImages; - var _PackSkipImagesExt = OpenTK.Graphics.ES11.PixelStoreParameter.PackSkipImagesExt; - var _PackImageHeight = OpenTK.Graphics.ES11.PixelStoreParameter.PackImageHeight; - var _PackImageHeightExt = OpenTK.Graphics.ES11.PixelStoreParameter.PackImageHeightExt; - var _UnpackSkipImages = OpenTK.Graphics.ES11.PixelStoreParameter.UnpackSkipImages; - var _UnpackSkipImagesExt = OpenTK.Graphics.ES11.PixelStoreParameter.UnpackSkipImagesExt; - var _UnpackImageHeight = OpenTK.Graphics.ES11.PixelStoreParameter.UnpackImageHeight; - var _UnpackImageHeightExt = OpenTK.Graphics.ES11.PixelStoreParameter.UnpackImageHeightExt; - var _PackSkipVolumesSgis = OpenTK.Graphics.ES11.PixelStoreParameter.PackSkipVolumesSgis; - var _PackImageDepthSgis = OpenTK.Graphics.ES11.PixelStoreParameter.PackImageDepthSgis; - var _UnpackSkipVolumesSgis = OpenTK.Graphics.ES11.PixelStoreParameter.UnpackSkipVolumesSgis; - var _UnpackImageDepthSgis = OpenTK.Graphics.ES11.PixelStoreParameter.UnpackImageDepthSgis; - var _PixelTileWidthSgix = OpenTK.Graphics.ES11.PixelStoreParameter.PixelTileWidthSgix; - var _PixelTileHeightSgix = OpenTK.Graphics.ES11.PixelStoreParameter.PixelTileHeightSgix; - var _PixelTileGridWidthSgix = OpenTK.Graphics.ES11.PixelStoreParameter.PixelTileGridWidthSgix; - var _PixelTileGridHeightSgix = OpenTK.Graphics.ES11.PixelStoreParameter.PixelTileGridHeightSgix; - var _PixelTileGridDepthSgix = OpenTK.Graphics.ES11.PixelStoreParameter.PixelTileGridDepthSgix; - var _PixelTileCacheSizeSgix = OpenTK.Graphics.ES11.PixelStoreParameter.PixelTileCacheSizeSgix; - var _PackResampleSgix = OpenTK.Graphics.ES11.PixelStoreParameter.PackResampleSgix; - var _UnpackResampleSgix = OpenTK.Graphics.ES11.PixelStoreParameter.UnpackResampleSgix; - var _PackSubsampleRateSgix = OpenTK.Graphics.ES11.PixelStoreParameter.PackSubsampleRateSgix; - var _UnpackSubsampleRateSgix = OpenTK.Graphics.ES11.PixelStoreParameter.UnpackSubsampleRateSgix; - var _PackResampleOml = OpenTK.Graphics.ES11.PixelStoreParameter.PackResampleOml; - var _UnpackResampleOml = OpenTK.Graphics.ES11.PixelStoreParameter.UnpackResampleOml; -} -static void Test_PixelStoreResampleMode_38588() { - var _ResampleReplicateSgix = OpenTK.Graphics.ES11.PixelStoreResampleMode.ResampleReplicateSgix; - var _ResampleZeroFillSgix = OpenTK.Graphics.ES11.PixelStoreResampleMode.ResampleZeroFillSgix; - var _ResampleDecimateSgix = OpenTK.Graphics.ES11.PixelStoreResampleMode.ResampleDecimateSgix; -} -static void Test_PixelStoreSubsampleRate_38589() { - var _PixelSubsample4444Sgix = OpenTK.Graphics.ES11.PixelStoreSubsampleRate.PixelSubsample4444Sgix; - var _PixelSubsample2424Sgix = OpenTK.Graphics.ES11.PixelStoreSubsampleRate.PixelSubsample2424Sgix; - var _PixelSubsample4242Sgix = OpenTK.Graphics.ES11.PixelStoreSubsampleRate.PixelSubsample4242Sgix; -} -static void Test_PixelTexGenMode_38590() { - var _None = OpenTK.Graphics.ES11.PixelTexGenMode.None; - var _Rgb = OpenTK.Graphics.ES11.PixelTexGenMode.Rgb; - var _Rgba = OpenTK.Graphics.ES11.PixelTexGenMode.Rgba; - var _Luminance = OpenTK.Graphics.ES11.PixelTexGenMode.Luminance; - var _LuminanceAlpha = OpenTK.Graphics.ES11.PixelTexGenMode.LuminanceAlpha; - var _PixelTexGenAlphaReplaceSgix = OpenTK.Graphics.ES11.PixelTexGenMode.PixelTexGenAlphaReplaceSgix; - var _PixelTexGenAlphaNoReplaceSgix = OpenTK.Graphics.ES11.PixelTexGenMode.PixelTexGenAlphaNoReplaceSgix; - var _PixelTexGenAlphaLsSgix = OpenTK.Graphics.ES11.PixelTexGenMode.PixelTexGenAlphaLsSgix; - var _PixelTexGenAlphaMsSgix = OpenTK.Graphics.ES11.PixelTexGenMode.PixelTexGenAlphaMsSgix; -} -static void Test_PixelTexGenParameterNameSgis_38591() { - var _PixelFragmentRgbSourceSgis = OpenTK.Graphics.ES11.PixelTexGenParameterNameSgis.PixelFragmentRgbSourceSgis; - var _PixelFragmentAlphaSourceSgis = OpenTK.Graphics.ES11.PixelTexGenParameterNameSgis.PixelFragmentAlphaSourceSgis; -} -static void Test_PixelTransferParameter_38592() { - var _MapColor = OpenTK.Graphics.ES11.PixelTransferParameter.MapColor; - var _MapStencil = OpenTK.Graphics.ES11.PixelTransferParameter.MapStencil; - var _IndexShift = OpenTK.Graphics.ES11.PixelTransferParameter.IndexShift; - var _IndexOffset = OpenTK.Graphics.ES11.PixelTransferParameter.IndexOffset; - var _RedScale = OpenTK.Graphics.ES11.PixelTransferParameter.RedScale; - var _RedBias = OpenTK.Graphics.ES11.PixelTransferParameter.RedBias; - var _GreenScale = OpenTK.Graphics.ES11.PixelTransferParameter.GreenScale; - var _GreenBias = OpenTK.Graphics.ES11.PixelTransferParameter.GreenBias; - var _BlueScale = OpenTK.Graphics.ES11.PixelTransferParameter.BlueScale; - var _BlueBias = OpenTK.Graphics.ES11.PixelTransferParameter.BlueBias; - var _AlphaScale = OpenTK.Graphics.ES11.PixelTransferParameter.AlphaScale; - var _AlphaBias = OpenTK.Graphics.ES11.PixelTransferParameter.AlphaBias; - var _DepthScale = OpenTK.Graphics.ES11.PixelTransferParameter.DepthScale; - var _DepthBias = OpenTK.Graphics.ES11.PixelTransferParameter.DepthBias; - var _PostConvolutionRedScale = OpenTK.Graphics.ES11.PixelTransferParameter.PostConvolutionRedScale; - var _PostConvolutionRedScaleExt = OpenTK.Graphics.ES11.PixelTransferParameter.PostConvolutionRedScaleExt; - var _PostConvolutionGreenScale = OpenTK.Graphics.ES11.PixelTransferParameter.PostConvolutionGreenScale; - var _PostConvolutionGreenScaleExt = OpenTK.Graphics.ES11.PixelTransferParameter.PostConvolutionGreenScaleExt; - var _PostConvolutionBlueScale = OpenTK.Graphics.ES11.PixelTransferParameter.PostConvolutionBlueScale; - var _PostConvolutionBlueScaleExt = OpenTK.Graphics.ES11.PixelTransferParameter.PostConvolutionBlueScaleExt; - var _PostConvolutionAlphaScale = OpenTK.Graphics.ES11.PixelTransferParameter.PostConvolutionAlphaScale; - var _PostConvolutionAlphaScaleExt = OpenTK.Graphics.ES11.PixelTransferParameter.PostConvolutionAlphaScaleExt; - var _PostConvolutionRedBias = OpenTK.Graphics.ES11.PixelTransferParameter.PostConvolutionRedBias; - var _PostConvolutionRedBiasExt = OpenTK.Graphics.ES11.PixelTransferParameter.PostConvolutionRedBiasExt; - var _PostConvolutionGreenBias = OpenTK.Graphics.ES11.PixelTransferParameter.PostConvolutionGreenBias; - var _PostConvolutionGreenBiasExt = OpenTK.Graphics.ES11.PixelTransferParameter.PostConvolutionGreenBiasExt; - var _PostConvolutionBlueBias = OpenTK.Graphics.ES11.PixelTransferParameter.PostConvolutionBlueBias; - var _PostConvolutionBlueBiasExt = OpenTK.Graphics.ES11.PixelTransferParameter.PostConvolutionBlueBiasExt; - var _PostConvolutionAlphaBias = OpenTK.Graphics.ES11.PixelTransferParameter.PostConvolutionAlphaBias; - var _PostConvolutionAlphaBiasExt = OpenTK.Graphics.ES11.PixelTransferParameter.PostConvolutionAlphaBiasExt; - var _PostColorMatrixRedScale = OpenTK.Graphics.ES11.PixelTransferParameter.PostColorMatrixRedScale; - var _PostColorMatrixRedScaleSgi = OpenTK.Graphics.ES11.PixelTransferParameter.PostColorMatrixRedScaleSgi; - var _PostColorMatrixGreenScale = OpenTK.Graphics.ES11.PixelTransferParameter.PostColorMatrixGreenScale; - var _PostColorMatrixGreenScaleSgi = OpenTK.Graphics.ES11.PixelTransferParameter.PostColorMatrixGreenScaleSgi; - var _PostColorMatrixBlueScale = OpenTK.Graphics.ES11.PixelTransferParameter.PostColorMatrixBlueScale; - var _PostColorMatrixBlueScaleSgi = OpenTK.Graphics.ES11.PixelTransferParameter.PostColorMatrixBlueScaleSgi; - var _PostColorMatrixAlphaScale = OpenTK.Graphics.ES11.PixelTransferParameter.PostColorMatrixAlphaScale; - var _PostColorMatrixAlphaScaleSgi = OpenTK.Graphics.ES11.PixelTransferParameter.PostColorMatrixAlphaScaleSgi; - var _PostColorMatrixRedBias = OpenTK.Graphics.ES11.PixelTransferParameter.PostColorMatrixRedBias; - var _PostColorMatrixRedBiasSgi = OpenTK.Graphics.ES11.PixelTransferParameter.PostColorMatrixRedBiasSgi; - var _PostColorMatrixGreenBias = OpenTK.Graphics.ES11.PixelTransferParameter.PostColorMatrixGreenBias; - var _PostColorMatrixGreenBiasSgi = OpenTK.Graphics.ES11.PixelTransferParameter.PostColorMatrixGreenBiasSgi; - var _PostColorMatrixBlueBias = OpenTK.Graphics.ES11.PixelTransferParameter.PostColorMatrixBlueBias; - var _PostColorMatrixBlueBiasSgi = OpenTK.Graphics.ES11.PixelTransferParameter.PostColorMatrixBlueBiasSgi; - var _PostColorMatrixAlphaBias = OpenTK.Graphics.ES11.PixelTransferParameter.PostColorMatrixAlphaBias; - var _PostColorMatrixAlphaBiasSgi = OpenTK.Graphics.ES11.PixelTransferParameter.PostColorMatrixAlphaBiasSgi; -} -static void Test_PixelType_38593() { - var _Byte = OpenTK.Graphics.ES11.PixelType.Byte; - var _UnsignedByte = OpenTK.Graphics.ES11.PixelType.UnsignedByte; - var _Short = OpenTK.Graphics.ES11.PixelType.Short; - var _UnsignedShort = OpenTK.Graphics.ES11.PixelType.UnsignedShort; - var _Int = OpenTK.Graphics.ES11.PixelType.Int; - var _UnsignedInt = OpenTK.Graphics.ES11.PixelType.UnsignedInt; - var _Float = OpenTK.Graphics.ES11.PixelType.Float; - var _Bitmap = OpenTK.Graphics.ES11.PixelType.Bitmap; - var _UnsignedByte332 = OpenTK.Graphics.ES11.PixelType.UnsignedByte332; - var _UnsignedByte332Ext = OpenTK.Graphics.ES11.PixelType.UnsignedByte332Ext; - var _UnsignedShort4444 = OpenTK.Graphics.ES11.PixelType.UnsignedShort4444; - var _UnsignedShort4444Ext = OpenTK.Graphics.ES11.PixelType.UnsignedShort4444Ext; - var _UnsignedShort5551 = OpenTK.Graphics.ES11.PixelType.UnsignedShort5551; - var _UnsignedShort5551Ext = OpenTK.Graphics.ES11.PixelType.UnsignedShort5551Ext; - var _UnsignedInt8888 = OpenTK.Graphics.ES11.PixelType.UnsignedInt8888; - var _UnsignedInt8888Ext = OpenTK.Graphics.ES11.PixelType.UnsignedInt8888Ext; - var _UnsignedInt1010102 = OpenTK.Graphics.ES11.PixelType.UnsignedInt1010102; - var _UnsignedInt1010102Ext = OpenTK.Graphics.ES11.PixelType.UnsignedInt1010102Ext; -} -static void Test_PointParameterNameSgis_38594() { - var _PointSizeMin = OpenTK.Graphics.ES11.PointParameterNameSgis.PointSizeMin; - var _PointSizeMinArb = OpenTK.Graphics.ES11.PointParameterNameSgis.PointSizeMinArb; - var _PointSizeMinExt = OpenTK.Graphics.ES11.PointParameterNameSgis.PointSizeMinExt; - var _PointSizeMinSgis = OpenTK.Graphics.ES11.PointParameterNameSgis.PointSizeMinSgis; - var _PointSizeMax = OpenTK.Graphics.ES11.PointParameterNameSgis.PointSizeMax; - var _PointSizeMaxArb = OpenTK.Graphics.ES11.PointParameterNameSgis.PointSizeMaxArb; - var _PointSizeMaxExt = OpenTK.Graphics.ES11.PointParameterNameSgis.PointSizeMaxExt; - var _PointSizeMaxSgis = OpenTK.Graphics.ES11.PointParameterNameSgis.PointSizeMaxSgis; - var _PointFadeThresholdSize = OpenTK.Graphics.ES11.PointParameterNameSgis.PointFadeThresholdSize; - var _PointFadeThresholdSizeArb = OpenTK.Graphics.ES11.PointParameterNameSgis.PointFadeThresholdSizeArb; - var _PointFadeThresholdSizeExt = OpenTK.Graphics.ES11.PointParameterNameSgis.PointFadeThresholdSizeExt; - var _PointFadeThresholdSizeSgis = OpenTK.Graphics.ES11.PointParameterNameSgis.PointFadeThresholdSizeSgis; - var _DistanceAttenuationExt = OpenTK.Graphics.ES11.PointParameterNameSgis.DistanceAttenuationExt; - var _DistanceAttenuationSgis = OpenTK.Graphics.ES11.PointParameterNameSgis.DistanceAttenuationSgis; - var _PointDistanceAttenuation = OpenTK.Graphics.ES11.PointParameterNameSgis.PointDistanceAttenuation; - var _PointDistanceAttenuationArb = OpenTK.Graphics.ES11.PointParameterNameSgis.PointDistanceAttenuationArb; -} -static void Test_PolygonMode_38595() { - var _Point = OpenTK.Graphics.ES11.PolygonMode.Point; - var _Line = OpenTK.Graphics.ES11.PolygonMode.Line; - var _Fill = OpenTK.Graphics.ES11.PolygonMode.Fill; -} -static void Test_PrimitiveType_38596() { - var _Points = OpenTK.Graphics.ES11.PrimitiveType.Points; - var _Lines = OpenTK.Graphics.ES11.PrimitiveType.Lines; - var _LineLoop = OpenTK.Graphics.ES11.PrimitiveType.LineLoop; - var _LineStrip = OpenTK.Graphics.ES11.PrimitiveType.LineStrip; - var _Triangles = OpenTK.Graphics.ES11.PrimitiveType.Triangles; - var _TriangleStrip = OpenTK.Graphics.ES11.PrimitiveType.TriangleStrip; - var _TriangleFan = OpenTK.Graphics.ES11.PrimitiveType.TriangleFan; - var _Quads = OpenTK.Graphics.ES11.PrimitiveType.Quads; - var _QuadsExt = OpenTK.Graphics.ES11.PrimitiveType.QuadsExt; - var _QuadStrip = OpenTK.Graphics.ES11.PrimitiveType.QuadStrip; - var _Polygon = OpenTK.Graphics.ES11.PrimitiveType.Polygon; - var _LinesAdjacency = OpenTK.Graphics.ES11.PrimitiveType.LinesAdjacency; - var _LinesAdjacencyArb = OpenTK.Graphics.ES11.PrimitiveType.LinesAdjacencyArb; - var _LinesAdjacencyExt = OpenTK.Graphics.ES11.PrimitiveType.LinesAdjacencyExt; - var _LineStripAdjacency = OpenTK.Graphics.ES11.PrimitiveType.LineStripAdjacency; - var _LineStripAdjacencyArb = OpenTK.Graphics.ES11.PrimitiveType.LineStripAdjacencyArb; - var _LineStripAdjacencyExt = OpenTK.Graphics.ES11.PrimitiveType.LineStripAdjacencyExt; - var _TrianglesAdjacency = OpenTK.Graphics.ES11.PrimitiveType.TrianglesAdjacency; - var _TrianglesAdjacencyArb = OpenTK.Graphics.ES11.PrimitiveType.TrianglesAdjacencyArb; - var _TrianglesAdjacencyExt = OpenTK.Graphics.ES11.PrimitiveType.TrianglesAdjacencyExt; - var _TriangleStripAdjacency = OpenTK.Graphics.ES11.PrimitiveType.TriangleStripAdjacency; - var _TriangleStripAdjacencyArb = OpenTK.Graphics.ES11.PrimitiveType.TriangleStripAdjacencyArb; - var _TriangleStripAdjacencyExt = OpenTK.Graphics.ES11.PrimitiveType.TriangleStripAdjacencyExt; - var _Patches = OpenTK.Graphics.ES11.PrimitiveType.Patches; - var _PatchesExt = OpenTK.Graphics.ES11.PrimitiveType.PatchesExt; -} -static void Test_QcomdriverControl_38597() { - var _QcomDriverControl = OpenTK.Graphics.ES11.QcomdriverControl.QcomDriverControl; -} -static void Test_QcomDriverControl_38598() { -} -static void Test_QcomExtendedGet_38599() { - var _TextureWidthQcom = OpenTK.Graphics.ES11.QcomExtendedGet.TextureWidthQcom; - var _TextureHeightQcom = OpenTK.Graphics.ES11.QcomExtendedGet.TextureHeightQcom; - var _TextureDepthQcom = OpenTK.Graphics.ES11.QcomExtendedGet.TextureDepthQcom; - var _TextureInternalFormatQcom = OpenTK.Graphics.ES11.QcomExtendedGet.TextureInternalFormatQcom; - var _TextureFormatQcom = OpenTK.Graphics.ES11.QcomExtendedGet.TextureFormatQcom; - var _TextureTypeQcom = OpenTK.Graphics.ES11.QcomExtendedGet.TextureTypeQcom; - var _TextureImageValidQcom = OpenTK.Graphics.ES11.QcomExtendedGet.TextureImageValidQcom; - var _TextureNumLevelsQcom = OpenTK.Graphics.ES11.QcomExtendedGet.TextureNumLevelsQcom; - var _TextureTargetQcom = OpenTK.Graphics.ES11.QcomExtendedGet.TextureTargetQcom; - var _TextureObjectValidQcom = OpenTK.Graphics.ES11.QcomExtendedGet.TextureObjectValidQcom; - var _StateRestore = OpenTK.Graphics.ES11.QcomExtendedGet.StateRestore; -} -static void Test_QcomExtendedGet2_38600() { -} -static void Test_QcomperfmonGlobalMode_38601() { - var _PerfmonGlobalModeQcom = OpenTK.Graphics.ES11.QcomperfmonGlobalMode.PerfmonGlobalModeQcom; - var _QcomPerfmonGlobalMode = OpenTK.Graphics.ES11.QcomperfmonGlobalMode.QcomPerfmonGlobalMode; -} -static void Test_QcomPerfmonGlobalMode_38602() { - var _PerfmonGlobalModeQcom = OpenTK.Graphics.ES11.QcomPerfmonGlobalMode.PerfmonGlobalModeQcom; -} -static void Test_QcomTiledRendering_38603() { - var _ColorBufferBit0Qcom = OpenTK.Graphics.ES11.QcomTiledRendering.ColorBufferBit0Qcom; - var _ColorBufferBit1Qcom = OpenTK.Graphics.ES11.QcomTiledRendering.ColorBufferBit1Qcom; - var _ColorBufferBit2Qcom = OpenTK.Graphics.ES11.QcomTiledRendering.ColorBufferBit2Qcom; - var _ColorBufferBit3Qcom = OpenTK.Graphics.ES11.QcomTiledRendering.ColorBufferBit3Qcom; - var _ColorBufferBit4Qcom = OpenTK.Graphics.ES11.QcomTiledRendering.ColorBufferBit4Qcom; - var _ColorBufferBit5Qcom = OpenTK.Graphics.ES11.QcomTiledRendering.ColorBufferBit5Qcom; - var _ColorBufferBit6Qcom = OpenTK.Graphics.ES11.QcomTiledRendering.ColorBufferBit6Qcom; - var _ColorBufferBit7Qcom = OpenTK.Graphics.ES11.QcomTiledRendering.ColorBufferBit7Qcom; - var _DepthBufferBit0Qcom = OpenTK.Graphics.ES11.QcomTiledRendering.DepthBufferBit0Qcom; - var _DepthBufferBit1Qcom = OpenTK.Graphics.ES11.QcomTiledRendering.DepthBufferBit1Qcom; - var _DepthBufferBit2Qcom = OpenTK.Graphics.ES11.QcomTiledRendering.DepthBufferBit2Qcom; - var _DepthBufferBit3Qcom = OpenTK.Graphics.ES11.QcomTiledRendering.DepthBufferBit3Qcom; - var _DepthBufferBit4Qcom = OpenTK.Graphics.ES11.QcomTiledRendering.DepthBufferBit4Qcom; - var _DepthBufferBit5Qcom = OpenTK.Graphics.ES11.QcomTiledRendering.DepthBufferBit5Qcom; - var _DepthBufferBit6Qcom = OpenTK.Graphics.ES11.QcomTiledRendering.DepthBufferBit6Qcom; - var _DepthBufferBit7Qcom = OpenTK.Graphics.ES11.QcomTiledRendering.DepthBufferBit7Qcom; - var _StencilBufferBit0Qcom = OpenTK.Graphics.ES11.QcomTiledRendering.StencilBufferBit0Qcom; - var _StencilBufferBit1Qcom = OpenTK.Graphics.ES11.QcomTiledRendering.StencilBufferBit1Qcom; - var _StencilBufferBit2Qcom = OpenTK.Graphics.ES11.QcomTiledRendering.StencilBufferBit2Qcom; - var _StencilBufferBit3Qcom = OpenTK.Graphics.ES11.QcomTiledRendering.StencilBufferBit3Qcom; - var _StencilBufferBit4Qcom = OpenTK.Graphics.ES11.QcomTiledRendering.StencilBufferBit4Qcom; - var _StencilBufferBit5Qcom = OpenTK.Graphics.ES11.QcomTiledRendering.StencilBufferBit5Qcom; - var _StencilBufferBit6Qcom = OpenTK.Graphics.ES11.QcomTiledRendering.StencilBufferBit6Qcom; - var _StencilBufferBit7Qcom = OpenTK.Graphics.ES11.QcomTiledRendering.StencilBufferBit7Qcom; - var _MultisampleBufferBit0Qcom = OpenTK.Graphics.ES11.QcomTiledRendering.MultisampleBufferBit0Qcom; - var _MultisampleBufferBit1Qcom = OpenTK.Graphics.ES11.QcomTiledRendering.MultisampleBufferBit1Qcom; - var _MultisampleBufferBit2Qcom = OpenTK.Graphics.ES11.QcomTiledRendering.MultisampleBufferBit2Qcom; - var _MultisampleBufferBit3Qcom = OpenTK.Graphics.ES11.QcomTiledRendering.MultisampleBufferBit3Qcom; - var _MultisampleBufferBit4Qcom = OpenTK.Graphics.ES11.QcomTiledRendering.MultisampleBufferBit4Qcom; - var _MultisampleBufferBit5Qcom = OpenTK.Graphics.ES11.QcomTiledRendering.MultisampleBufferBit5Qcom; - var _MultisampleBufferBit6Qcom = OpenTK.Graphics.ES11.QcomTiledRendering.MultisampleBufferBit6Qcom; - var _MultisampleBufferBit7Qcom = OpenTK.Graphics.ES11.QcomTiledRendering.MultisampleBufferBit7Qcom; -} -static void Test_QcomWriteonlyRendering_38604() { - var _WriteonlyRenderingQcom = OpenTK.Graphics.ES11.QcomWriteonlyRendering.WriteonlyRenderingQcom; -} -static void Test_ReadBufferMode_38605() { - var _FrontLeft = OpenTK.Graphics.ES11.ReadBufferMode.FrontLeft; - var _FrontRight = OpenTK.Graphics.ES11.ReadBufferMode.FrontRight; - var _BackLeft = OpenTK.Graphics.ES11.ReadBufferMode.BackLeft; - var _BackRight = OpenTK.Graphics.ES11.ReadBufferMode.BackRight; - var _Front = OpenTK.Graphics.ES11.ReadBufferMode.Front; - var _Back = OpenTK.Graphics.ES11.ReadBufferMode.Back; - var _Left = OpenTK.Graphics.ES11.ReadBufferMode.Left; - var _Right = OpenTK.Graphics.ES11.ReadBufferMode.Right; - var _Aux0 = OpenTK.Graphics.ES11.ReadBufferMode.Aux0; - var _Aux1 = OpenTK.Graphics.ES11.ReadBufferMode.Aux1; - var _Aux2 = OpenTK.Graphics.ES11.ReadBufferMode.Aux2; - var _Aux3 = OpenTK.Graphics.ES11.ReadBufferMode.Aux3; -} -static void Test_RenderingMode_38606() { - var _Render = OpenTK.Graphics.ES11.RenderingMode.Render; - var _Feedback = OpenTK.Graphics.ES11.RenderingMode.Feedback; - var _Select = OpenTK.Graphics.ES11.RenderingMode.Select; -} -static void Test_SamplePatternSgis_38607() { - var _Gl1PassExt = OpenTK.Graphics.ES11.SamplePatternSgis.Gl1PassExt; - var _Gl1PassSgis = OpenTK.Graphics.ES11.SamplePatternSgis.Gl1PassSgis; - var _Gl2Pass0Ext = OpenTK.Graphics.ES11.SamplePatternSgis.Gl2Pass0Ext; - var _Gl2Pass0Sgis = OpenTK.Graphics.ES11.SamplePatternSgis.Gl2Pass0Sgis; - var _Gl2Pass1Ext = OpenTK.Graphics.ES11.SamplePatternSgis.Gl2Pass1Ext; - var _Gl2Pass1Sgis = OpenTK.Graphics.ES11.SamplePatternSgis.Gl2Pass1Sgis; - var _Gl4Pass0Ext = OpenTK.Graphics.ES11.SamplePatternSgis.Gl4Pass0Ext; - var _Gl4Pass0Sgis = OpenTK.Graphics.ES11.SamplePatternSgis.Gl4Pass0Sgis; - var _Gl4Pass1Ext = OpenTK.Graphics.ES11.SamplePatternSgis.Gl4Pass1Ext; - var _Gl4Pass1Sgis = OpenTK.Graphics.ES11.SamplePatternSgis.Gl4Pass1Sgis; - var _Gl4Pass2Ext = OpenTK.Graphics.ES11.SamplePatternSgis.Gl4Pass2Ext; - var _Gl4Pass2Sgis = OpenTK.Graphics.ES11.SamplePatternSgis.Gl4Pass2Sgis; - var _Gl4Pass3Ext = OpenTK.Graphics.ES11.SamplePatternSgis.Gl4Pass3Ext; - var _Gl4Pass3Sgis = OpenTK.Graphics.ES11.SamplePatternSgis.Gl4Pass3Sgis; -} -static void Test_SeparableTargetExt_38608() { - var _Separable2D = OpenTK.Graphics.ES11.SeparableTargetExt.Separable2D; - var _Separable2DExt = OpenTK.Graphics.ES11.SeparableTargetExt.Separable2DExt; -} -static void Test_ShadingModel_38609() { - var _Flat = OpenTK.Graphics.ES11.ShadingModel.Flat; - var _Smooth = OpenTK.Graphics.ES11.ShadingModel.Smooth; -} -static void Test_StencilFunction_38610() { - var _Never = OpenTK.Graphics.ES11.StencilFunction.Never; - var _Less = OpenTK.Graphics.ES11.StencilFunction.Less; - var _Equal = OpenTK.Graphics.ES11.StencilFunction.Equal; - var _Lequal = OpenTK.Graphics.ES11.StencilFunction.Lequal; - var _Greater = OpenTK.Graphics.ES11.StencilFunction.Greater; - var _Notequal = OpenTK.Graphics.ES11.StencilFunction.Notequal; - var _Gequal = OpenTK.Graphics.ES11.StencilFunction.Gequal; - var _Always = OpenTK.Graphics.ES11.StencilFunction.Always; -} -static void Test_StencilOp_38611() { - var _Zero = OpenTK.Graphics.ES11.StencilOp.Zero; - var _Invert = OpenTK.Graphics.ES11.StencilOp.Invert; - var _Keep = OpenTK.Graphics.ES11.StencilOp.Keep; - var _Replace = OpenTK.Graphics.ES11.StencilOp.Replace; - var _Incr = OpenTK.Graphics.ES11.StencilOp.Incr; - var _Decr = OpenTK.Graphics.ES11.StencilOp.Decr; -} -static void Test_StringName_38612() { - var _Vendor = OpenTK.Graphics.ES11.StringName.Vendor; - var _Renderer = OpenTK.Graphics.ES11.StringName.Renderer; - var _Version = OpenTK.Graphics.ES11.StringName.Version; - var _Extensions = OpenTK.Graphics.ES11.StringName.Extensions; -} -static void Test_TexCoordPointerType_38613() { - var _Short = OpenTK.Graphics.ES11.TexCoordPointerType.Short; - var _Int = OpenTK.Graphics.ES11.TexCoordPointerType.Int; - var _Float = OpenTK.Graphics.ES11.TexCoordPointerType.Float; - var _Double = OpenTK.Graphics.ES11.TexCoordPointerType.Double; -} -static void Test_TextureCombineDot3_38614() { - var _AlphaScale = OpenTK.Graphics.ES11.TextureCombineDot3.AlphaScale; - var _Subtract = OpenTK.Graphics.ES11.TextureCombineDot3.Subtract; - var _Combine = OpenTK.Graphics.ES11.TextureCombineDot3.Combine; - var _CombineRgb = OpenTK.Graphics.ES11.TextureCombineDot3.CombineRgb; - var _CombineAlpha = OpenTK.Graphics.ES11.TextureCombineDot3.CombineAlpha; - var _RgbScale = OpenTK.Graphics.ES11.TextureCombineDot3.RgbScale; - var _AddSigned = OpenTK.Graphics.ES11.TextureCombineDot3.AddSigned; - var _Interpolate = OpenTK.Graphics.ES11.TextureCombineDot3.Interpolate; - var _Constant = OpenTK.Graphics.ES11.TextureCombineDot3.Constant; - var _PrimaryColor = OpenTK.Graphics.ES11.TextureCombineDot3.PrimaryColor; - var _Previous = OpenTK.Graphics.ES11.TextureCombineDot3.Previous; - var _Src0Rgb = OpenTK.Graphics.ES11.TextureCombineDot3.Src0Rgb; - var _Src1Rgb = OpenTK.Graphics.ES11.TextureCombineDot3.Src1Rgb; - var _Src2Rgb = OpenTK.Graphics.ES11.TextureCombineDot3.Src2Rgb; - var _Src0Alpha = OpenTK.Graphics.ES11.TextureCombineDot3.Src0Alpha; - var _Src1Alpha = OpenTK.Graphics.ES11.TextureCombineDot3.Src1Alpha; - var _Src2Alpha = OpenTK.Graphics.ES11.TextureCombineDot3.Src2Alpha; - var _Operand0Rgb = OpenTK.Graphics.ES11.TextureCombineDot3.Operand0Rgb; - var _Operand1Rgb = OpenTK.Graphics.ES11.TextureCombineDot3.Operand1Rgb; - var _Operand2Rgb = OpenTK.Graphics.ES11.TextureCombineDot3.Operand2Rgb; - var _Operand0Alpha = OpenTK.Graphics.ES11.TextureCombineDot3.Operand0Alpha; - var _Operand1Alpha = OpenTK.Graphics.ES11.TextureCombineDot3.Operand1Alpha; - var _Operand2Alpha = OpenTK.Graphics.ES11.TextureCombineDot3.Operand2Alpha; - var _Dot3Rgb = OpenTK.Graphics.ES11.TextureCombineDot3.Dot3Rgb; - var _Dot3Rgba = OpenTK.Graphics.ES11.TextureCombineDot3.Dot3Rgba; -} -static void Test_TextureCoordName_38615() { - var _S = OpenTK.Graphics.ES11.TextureCoordName.S; - var _T = OpenTK.Graphics.ES11.TextureCoordName.T; - var _R = OpenTK.Graphics.ES11.TextureCoordName.R; - var _Q = OpenTK.Graphics.ES11.TextureCoordName.Q; -} -static void Test_TextureEnvMode_38616() { - var _Add = OpenTK.Graphics.ES11.TextureEnvMode.Add; - var _Blend = OpenTK.Graphics.ES11.TextureEnvMode.Blend; - var _Modulate = OpenTK.Graphics.ES11.TextureEnvMode.Modulate; - var _Decal = OpenTK.Graphics.ES11.TextureEnvMode.Decal; - var _ReplaceExt = OpenTK.Graphics.ES11.TextureEnvMode.ReplaceExt; - var _TextureEnvBiasSgix = OpenTK.Graphics.ES11.TextureEnvMode.TextureEnvBiasSgix; -} -static void Test_TextureEnvParameter_38617() { - var _TextureEnvMode = OpenTK.Graphics.ES11.TextureEnvParameter.TextureEnvMode; - var _TextureEnvColor = OpenTK.Graphics.ES11.TextureEnvParameter.TextureEnvColor; -} -static void Test_TextureEnvTarget_38618() { - var _TextureEnv = OpenTK.Graphics.ES11.TextureEnvTarget.TextureEnv; -} -static void Test_TextureFilterFuncSgis_38619() { - var _Filter4Sgis = OpenTK.Graphics.ES11.TextureFilterFuncSgis.Filter4Sgis; -} -static void Test_TextureGenMode_38620() { - var _EyeLinear = OpenTK.Graphics.ES11.TextureGenMode.EyeLinear; - var _ObjectLinear = OpenTK.Graphics.ES11.TextureGenMode.ObjectLinear; - var _SphereMap = OpenTK.Graphics.ES11.TextureGenMode.SphereMap; - var _EyeDistanceToPointSgis = OpenTK.Graphics.ES11.TextureGenMode.EyeDistanceToPointSgis; - var _ObjectDistanceToPointSgis = OpenTK.Graphics.ES11.TextureGenMode.ObjectDistanceToPointSgis; - var _EyeDistanceToLineSgis = OpenTK.Graphics.ES11.TextureGenMode.EyeDistanceToLineSgis; - var _ObjectDistanceToLineSgis = OpenTK.Graphics.ES11.TextureGenMode.ObjectDistanceToLineSgis; -} -static void Test_TextureGenParameter_38621() { - var _TextureGenMode = OpenTK.Graphics.ES11.TextureGenParameter.TextureGenMode; - var _ObjectPlane = OpenTK.Graphics.ES11.TextureGenParameter.ObjectPlane; - var _EyePlane = OpenTK.Graphics.ES11.TextureGenParameter.EyePlane; - var _EyePointSgis = OpenTK.Graphics.ES11.TextureGenParameter.EyePointSgis; - var _ObjectPointSgis = OpenTK.Graphics.ES11.TextureGenParameter.ObjectPointSgis; - var _EyeLineSgis = OpenTK.Graphics.ES11.TextureGenParameter.EyeLineSgis; - var _ObjectLineSgis = OpenTK.Graphics.ES11.TextureGenParameter.ObjectLineSgis; -} -static void Test_TextureMagFilter_38622() { - var _Nearest = OpenTK.Graphics.ES11.TextureMagFilter.Nearest; - var _Linear = OpenTK.Graphics.ES11.TextureMagFilter.Linear; - var _LinearDetailSgis = OpenTK.Graphics.ES11.TextureMagFilter.LinearDetailSgis; - var _LinearDetailAlphaSgis = OpenTK.Graphics.ES11.TextureMagFilter.LinearDetailAlphaSgis; - var _LinearDetailColorSgis = OpenTK.Graphics.ES11.TextureMagFilter.LinearDetailColorSgis; - var _LinearSharpenSgis = OpenTK.Graphics.ES11.TextureMagFilter.LinearSharpenSgis; - var _LinearSharpenAlphaSgis = OpenTK.Graphics.ES11.TextureMagFilter.LinearSharpenAlphaSgis; - var _LinearSharpenColorSgis = OpenTK.Graphics.ES11.TextureMagFilter.LinearSharpenColorSgis; - var _Filter4Sgis = OpenTK.Graphics.ES11.TextureMagFilter.Filter4Sgis; - var _PixelTexGenQCeilingSgix = OpenTK.Graphics.ES11.TextureMagFilter.PixelTexGenQCeilingSgix; - var _PixelTexGenQRoundSgix = OpenTK.Graphics.ES11.TextureMagFilter.PixelTexGenQRoundSgix; - var _PixelTexGenQFloorSgix = OpenTK.Graphics.ES11.TextureMagFilter.PixelTexGenQFloorSgix; -} -static void Test_TextureMinFilter_38623() { - var _Nearest = OpenTK.Graphics.ES11.TextureMinFilter.Nearest; - var _Linear = OpenTK.Graphics.ES11.TextureMinFilter.Linear; - var _NearestMipmapNearest = OpenTK.Graphics.ES11.TextureMinFilter.NearestMipmapNearest; - var _LinearMipmapNearest = OpenTK.Graphics.ES11.TextureMinFilter.LinearMipmapNearest; - var _NearestMipmapLinear = OpenTK.Graphics.ES11.TextureMinFilter.NearestMipmapLinear; - var _LinearMipmapLinear = OpenTK.Graphics.ES11.TextureMinFilter.LinearMipmapLinear; - var _Filter4Sgis = OpenTK.Graphics.ES11.TextureMinFilter.Filter4Sgis; - var _LinearClipmapLinearSgix = OpenTK.Graphics.ES11.TextureMinFilter.LinearClipmapLinearSgix; - var _PixelTexGenQCeilingSgix = OpenTK.Graphics.ES11.TextureMinFilter.PixelTexGenQCeilingSgix; - var _PixelTexGenQRoundSgix = OpenTK.Graphics.ES11.TextureMinFilter.PixelTexGenQRoundSgix; - var _PixelTexGenQFloorSgix = OpenTK.Graphics.ES11.TextureMinFilter.PixelTexGenQFloorSgix; - var _NearestClipmapNearestSgix = OpenTK.Graphics.ES11.TextureMinFilter.NearestClipmapNearestSgix; - var _NearestClipmapLinearSgix = OpenTK.Graphics.ES11.TextureMinFilter.NearestClipmapLinearSgix; - var _LinearClipmapNearestSgix = OpenTK.Graphics.ES11.TextureMinFilter.LinearClipmapNearestSgix; -} -static void Test_TextureParameterName_38624() { - var _TextureBorderColor = OpenTK.Graphics.ES11.TextureParameterName.TextureBorderColor; - var _TextureMagFilter = OpenTK.Graphics.ES11.TextureParameterName.TextureMagFilter; - var _TextureMinFilter = OpenTK.Graphics.ES11.TextureParameterName.TextureMinFilter; - var _TextureWrapS = OpenTK.Graphics.ES11.TextureParameterName.TextureWrapS; - var _TextureWrapT = OpenTK.Graphics.ES11.TextureParameterName.TextureWrapT; - var _TexturePriority = OpenTK.Graphics.ES11.TextureParameterName.TexturePriority; - var _TexturePriorityExt = OpenTK.Graphics.ES11.TextureParameterName.TexturePriorityExt; - var _TextureWrapR = OpenTK.Graphics.ES11.TextureParameterName.TextureWrapR; - var _TextureWrapRExt = OpenTK.Graphics.ES11.TextureParameterName.TextureWrapRExt; - var _TextureWrapROes = OpenTK.Graphics.ES11.TextureParameterName.TextureWrapROes; - var _DetailTextureLevelSgis = OpenTK.Graphics.ES11.TextureParameterName.DetailTextureLevelSgis; - var _DetailTextureModeSgis = OpenTK.Graphics.ES11.TextureParameterName.DetailTextureModeSgis; - var _ShadowAmbientSgix = OpenTK.Graphics.ES11.TextureParameterName.ShadowAmbientSgix; - var _DualTextureSelectSgis = OpenTK.Graphics.ES11.TextureParameterName.DualTextureSelectSgis; - var _QuadTextureSelectSgis = OpenTK.Graphics.ES11.TextureParameterName.QuadTextureSelectSgis; - var _TextureWrapQSgis = OpenTK.Graphics.ES11.TextureParameterName.TextureWrapQSgis; - var _TextureClipmapCenterSgix = OpenTK.Graphics.ES11.TextureParameterName.TextureClipmapCenterSgix; - var _TextureClipmapFrameSgix = OpenTK.Graphics.ES11.TextureParameterName.TextureClipmapFrameSgix; - var _TextureClipmapOffsetSgix = OpenTK.Graphics.ES11.TextureParameterName.TextureClipmapOffsetSgix; - var _TextureClipmapVirtualDepthSgix = OpenTK.Graphics.ES11.TextureParameterName.TextureClipmapVirtualDepthSgix; - var _TextureClipmapLodOffsetSgix = OpenTK.Graphics.ES11.TextureParameterName.TextureClipmapLodOffsetSgix; - var _TextureClipmapDepthSgix = OpenTK.Graphics.ES11.TextureParameterName.TextureClipmapDepthSgix; - var _PostTextureFilterBiasSgix = OpenTK.Graphics.ES11.TextureParameterName.PostTextureFilterBiasSgix; - var _PostTextureFilterScaleSgix = OpenTK.Graphics.ES11.TextureParameterName.PostTextureFilterScaleSgix; - var _TextureLodBiasSSgix = OpenTK.Graphics.ES11.TextureParameterName.TextureLodBiasSSgix; - var _TextureLodBiasTSgix = OpenTK.Graphics.ES11.TextureParameterName.TextureLodBiasTSgix; - var _TextureLodBiasRSgix = OpenTK.Graphics.ES11.TextureParameterName.TextureLodBiasRSgix; - var _GenerateMipmap = OpenTK.Graphics.ES11.TextureParameterName.GenerateMipmap; - var _GenerateMipmapSgis = OpenTK.Graphics.ES11.TextureParameterName.GenerateMipmapSgis; - var _TextureCompareSgix = OpenTK.Graphics.ES11.TextureParameterName.TextureCompareSgix; - var _TextureMaxClampSSgix = OpenTK.Graphics.ES11.TextureParameterName.TextureMaxClampSSgix; - var _TextureMaxClampTSgix = OpenTK.Graphics.ES11.TextureParameterName.TextureMaxClampTSgix; - var _TextureMaxClampRSgix = OpenTK.Graphics.ES11.TextureParameterName.TextureMaxClampRSgix; -} -static void Test_TextureTarget_38625() { - var _Texture1D = OpenTK.Graphics.ES11.TextureTarget.Texture1D; - var _Texture2D = OpenTK.Graphics.ES11.TextureTarget.Texture2D; - var _ProxyTexture1D = OpenTK.Graphics.ES11.TextureTarget.ProxyTexture1D; - var _ProxyTexture1DExt = OpenTK.Graphics.ES11.TextureTarget.ProxyTexture1DExt; - var _ProxyTexture2D = OpenTK.Graphics.ES11.TextureTarget.ProxyTexture2D; - var _ProxyTexture2DExt = OpenTK.Graphics.ES11.TextureTarget.ProxyTexture2DExt; - var _Texture3D = OpenTK.Graphics.ES11.TextureTarget.Texture3D; - var _Texture3DExt = OpenTK.Graphics.ES11.TextureTarget.Texture3DExt; - var _Texture3DOes = OpenTK.Graphics.ES11.TextureTarget.Texture3DOes; - var _ProxyTexture3D = OpenTK.Graphics.ES11.TextureTarget.ProxyTexture3D; - var _ProxyTexture3DExt = OpenTK.Graphics.ES11.TextureTarget.ProxyTexture3DExt; - var _DetailTexture2DSgis = OpenTK.Graphics.ES11.TextureTarget.DetailTexture2DSgis; - var _Texture4DSgis = OpenTK.Graphics.ES11.TextureTarget.Texture4DSgis; - var _ProxyTexture4DSgis = OpenTK.Graphics.ES11.TextureTarget.ProxyTexture4DSgis; - var _TextureMinLod = OpenTK.Graphics.ES11.TextureTarget.TextureMinLod; - var _TextureMinLodSgis = OpenTK.Graphics.ES11.TextureTarget.TextureMinLodSgis; - var _TextureMaxLod = OpenTK.Graphics.ES11.TextureTarget.TextureMaxLod; - var _TextureMaxLodSgis = OpenTK.Graphics.ES11.TextureTarget.TextureMaxLodSgis; - var _TextureBaseLevel = OpenTK.Graphics.ES11.TextureTarget.TextureBaseLevel; - var _TextureBaseLevelSgis = OpenTK.Graphics.ES11.TextureTarget.TextureBaseLevelSgis; - var _TextureMaxLevel = OpenTK.Graphics.ES11.TextureTarget.TextureMaxLevel; - var _TextureMaxLevelSgis = OpenTK.Graphics.ES11.TextureTarget.TextureMaxLevelSgis; -} -static void Test_TextureUnit_38626() { - var _Texture0 = OpenTK.Graphics.ES11.TextureUnit.Texture0; - var _Texture1 = OpenTK.Graphics.ES11.TextureUnit.Texture1; - var _Texture2 = OpenTK.Graphics.ES11.TextureUnit.Texture2; - var _Texture3 = OpenTK.Graphics.ES11.TextureUnit.Texture3; - var _Texture4 = OpenTK.Graphics.ES11.TextureUnit.Texture4; - var _Texture5 = OpenTK.Graphics.ES11.TextureUnit.Texture5; - var _Texture6 = OpenTK.Graphics.ES11.TextureUnit.Texture6; - var _Texture7 = OpenTK.Graphics.ES11.TextureUnit.Texture7; - var _Texture8 = OpenTK.Graphics.ES11.TextureUnit.Texture8; - var _Texture9 = OpenTK.Graphics.ES11.TextureUnit.Texture9; - var _Texture10 = OpenTK.Graphics.ES11.TextureUnit.Texture10; - var _Texture11 = OpenTK.Graphics.ES11.TextureUnit.Texture11; - var _Texture12 = OpenTK.Graphics.ES11.TextureUnit.Texture12; - var _Texture13 = OpenTK.Graphics.ES11.TextureUnit.Texture13; - var _Texture14 = OpenTK.Graphics.ES11.TextureUnit.Texture14; - var _Texture15 = OpenTK.Graphics.ES11.TextureUnit.Texture15; - var _Texture16 = OpenTK.Graphics.ES11.TextureUnit.Texture16; - var _Texture17 = OpenTK.Graphics.ES11.TextureUnit.Texture17; - var _Texture18 = OpenTK.Graphics.ES11.TextureUnit.Texture18; - var _Texture19 = OpenTK.Graphics.ES11.TextureUnit.Texture19; - var _Texture20 = OpenTK.Graphics.ES11.TextureUnit.Texture20; - var _Texture21 = OpenTK.Graphics.ES11.TextureUnit.Texture21; - var _Texture22 = OpenTK.Graphics.ES11.TextureUnit.Texture22; - var _Texture23 = OpenTK.Graphics.ES11.TextureUnit.Texture23; - var _Texture24 = OpenTK.Graphics.ES11.TextureUnit.Texture24; - var _Texture25 = OpenTK.Graphics.ES11.TextureUnit.Texture25; - var _Texture26 = OpenTK.Graphics.ES11.TextureUnit.Texture26; - var _Texture27 = OpenTK.Graphics.ES11.TextureUnit.Texture27; - var _Texture28 = OpenTK.Graphics.ES11.TextureUnit.Texture28; - var _Texture29 = OpenTK.Graphics.ES11.TextureUnit.Texture29; - var _Texture30 = OpenTK.Graphics.ES11.TextureUnit.Texture30; - var _Texture31 = OpenTK.Graphics.ES11.TextureUnit.Texture31; - var _ActiveTexture = OpenTK.Graphics.ES11.TextureUnit.ActiveTexture; - var _ClientActiveTexture = OpenTK.Graphics.ES11.TextureUnit.ClientActiveTexture; -} -static void Test_TextureWrapMode_38627() { - var _Clamp = OpenTK.Graphics.ES11.TextureWrapMode.Clamp; - var _Repeat = OpenTK.Graphics.ES11.TextureWrapMode.Repeat; - var _ClampToBorder = OpenTK.Graphics.ES11.TextureWrapMode.ClampToBorder; - var _ClampToBorderArb = OpenTK.Graphics.ES11.TextureWrapMode.ClampToBorderArb; - var _ClampToBorderNv = OpenTK.Graphics.ES11.TextureWrapMode.ClampToBorderNv; - var _ClampToBorderSgis = OpenTK.Graphics.ES11.TextureWrapMode.ClampToBorderSgis; - var _ClampToEdge = OpenTK.Graphics.ES11.TextureWrapMode.ClampToEdge; - var _ClampToEdgeSgis = OpenTK.Graphics.ES11.TextureWrapMode.ClampToEdgeSgis; -} -static void Test_UseProgramStageMask_38628() { - var _VertexShaderBit = OpenTK.Graphics.ES11.UseProgramStageMask.VertexShaderBit; - var _VertexShaderBitExt = OpenTK.Graphics.ES11.UseProgramStageMask.VertexShaderBitExt; - var _FragmentShaderBit = OpenTK.Graphics.ES11.UseProgramStageMask.FragmentShaderBit; - var _FragmentShaderBitExt = OpenTK.Graphics.ES11.UseProgramStageMask.FragmentShaderBitExt; - var _GeometryShaderBit = OpenTK.Graphics.ES11.UseProgramStageMask.GeometryShaderBit; - var _GeometryShaderBitExt = OpenTK.Graphics.ES11.UseProgramStageMask.GeometryShaderBitExt; - var _TessControlShaderBit = OpenTK.Graphics.ES11.UseProgramStageMask.TessControlShaderBit; - var _TessControlShaderBitExt = OpenTK.Graphics.ES11.UseProgramStageMask.TessControlShaderBitExt; - var _TessEvaluationShaderBit = OpenTK.Graphics.ES11.UseProgramStageMask.TessEvaluationShaderBit; - var _TessEvaluationShaderBitExt = OpenTK.Graphics.ES11.UseProgramStageMask.TessEvaluationShaderBitExt; - var _ComputeShaderBit = OpenTK.Graphics.ES11.UseProgramStageMask.ComputeShaderBit; - var _AllShaderBits = OpenTK.Graphics.ES11.UseProgramStageMask.AllShaderBits; - var _AllShaderBitsExt = OpenTK.Graphics.ES11.UseProgramStageMask.AllShaderBitsExt; -} -static void Test_VersionEsCm10_38629() { - var _False = OpenTK.Graphics.ES11.VersionEsCm10.False; - var _NoError = OpenTK.Graphics.ES11.VersionEsCm10.NoError; - var _Zero = OpenTK.Graphics.ES11.VersionEsCm10.Zero; - var _Points = OpenTK.Graphics.ES11.VersionEsCm10.Points; - var _DepthBufferBit = OpenTK.Graphics.ES11.VersionEsCm10.DepthBufferBit; - var _StencilBufferBit = OpenTK.Graphics.ES11.VersionEsCm10.StencilBufferBit; - var _ColorBufferBit = OpenTK.Graphics.ES11.VersionEsCm10.ColorBufferBit; - var _Lines = OpenTK.Graphics.ES11.VersionEsCm10.Lines; - var _LineLoop = OpenTK.Graphics.ES11.VersionEsCm10.LineLoop; - var _LineStrip = OpenTK.Graphics.ES11.VersionEsCm10.LineStrip; - var _Triangles = OpenTK.Graphics.ES11.VersionEsCm10.Triangles; - var _TriangleStrip = OpenTK.Graphics.ES11.VersionEsCm10.TriangleStrip; - var _TriangleFan = OpenTK.Graphics.ES11.VersionEsCm10.TriangleFan; - var _Add = OpenTK.Graphics.ES11.VersionEsCm10.Add; - var _Never = OpenTK.Graphics.ES11.VersionEsCm10.Never; - var _Less = OpenTK.Graphics.ES11.VersionEsCm10.Less; - var _Equal = OpenTK.Graphics.ES11.VersionEsCm10.Equal; - var _Lequal = OpenTK.Graphics.ES11.VersionEsCm10.Lequal; - var _Greater = OpenTK.Graphics.ES11.VersionEsCm10.Greater; - var _Notequal = OpenTK.Graphics.ES11.VersionEsCm10.Notequal; - var _Gequal = OpenTK.Graphics.ES11.VersionEsCm10.Gequal; - var _Always = OpenTK.Graphics.ES11.VersionEsCm10.Always; - var _SrcColor = OpenTK.Graphics.ES11.VersionEsCm10.SrcColor; - var _OneMinusSrcColor = OpenTK.Graphics.ES11.VersionEsCm10.OneMinusSrcColor; - var _SrcAlpha = OpenTK.Graphics.ES11.VersionEsCm10.SrcAlpha; - var _OneMinusSrcAlpha = OpenTK.Graphics.ES11.VersionEsCm10.OneMinusSrcAlpha; - var _DstAlpha = OpenTK.Graphics.ES11.VersionEsCm10.DstAlpha; - var _OneMinusDstAlpha = OpenTK.Graphics.ES11.VersionEsCm10.OneMinusDstAlpha; - var _DstColor = OpenTK.Graphics.ES11.VersionEsCm10.DstColor; - var _OneMinusDstColor = OpenTK.Graphics.ES11.VersionEsCm10.OneMinusDstColor; - var _SrcAlphaSaturate = OpenTK.Graphics.ES11.VersionEsCm10.SrcAlphaSaturate; - var _Front = OpenTK.Graphics.ES11.VersionEsCm10.Front; - var _Back = OpenTK.Graphics.ES11.VersionEsCm10.Back; - var _FrontAndBack = OpenTK.Graphics.ES11.VersionEsCm10.FrontAndBack; - var _InvalidEnum = OpenTK.Graphics.ES11.VersionEsCm10.InvalidEnum; - var _InvalidValue = OpenTK.Graphics.ES11.VersionEsCm10.InvalidValue; - var _InvalidOperation = OpenTK.Graphics.ES11.VersionEsCm10.InvalidOperation; - var _StackOverflow = OpenTK.Graphics.ES11.VersionEsCm10.StackOverflow; - var _StackUnderflow = OpenTK.Graphics.ES11.VersionEsCm10.StackUnderflow; - var _OutOfMemory = OpenTK.Graphics.ES11.VersionEsCm10.OutOfMemory; - var _Exp = OpenTK.Graphics.ES11.VersionEsCm10.Exp; - var _Exp2 = OpenTK.Graphics.ES11.VersionEsCm10.Exp2; - var _Cw = OpenTK.Graphics.ES11.VersionEsCm10.Cw; - var _Ccw = OpenTK.Graphics.ES11.VersionEsCm10.Ccw; - var _CurrentColor = OpenTK.Graphics.ES11.VersionEsCm10.CurrentColor; - var _CurrentNormal = OpenTK.Graphics.ES11.VersionEsCm10.CurrentNormal; - var _CurrentTextureCoords = OpenTK.Graphics.ES11.VersionEsCm10.CurrentTextureCoords; - var _PointSmooth = OpenTK.Graphics.ES11.VersionEsCm10.PointSmooth; - var _PointSize = OpenTK.Graphics.ES11.VersionEsCm10.PointSize; - var _SmoothPointSizeRange = OpenTK.Graphics.ES11.VersionEsCm10.SmoothPointSizeRange; - var _LineSmooth = OpenTK.Graphics.ES11.VersionEsCm10.LineSmooth; - var _LineWidth = OpenTK.Graphics.ES11.VersionEsCm10.LineWidth; - var _SmoothLineWidthRange = OpenTK.Graphics.ES11.VersionEsCm10.SmoothLineWidthRange; - var _CullFace = OpenTK.Graphics.ES11.VersionEsCm10.CullFace; - var _CullFaceMode = OpenTK.Graphics.ES11.VersionEsCm10.CullFaceMode; - var _FrontFace = OpenTK.Graphics.ES11.VersionEsCm10.FrontFace; - var _Lighting = OpenTK.Graphics.ES11.VersionEsCm10.Lighting; - var _LightModelTwoSide = OpenTK.Graphics.ES11.VersionEsCm10.LightModelTwoSide; - var _LightModelAmbient = OpenTK.Graphics.ES11.VersionEsCm10.LightModelAmbient; - var _ShadeModel = OpenTK.Graphics.ES11.VersionEsCm10.ShadeModel; - var _ColorMaterial = OpenTK.Graphics.ES11.VersionEsCm10.ColorMaterial; - var _Fog = OpenTK.Graphics.ES11.VersionEsCm10.Fog; - var _FogDensity = OpenTK.Graphics.ES11.VersionEsCm10.FogDensity; - var _FogStart = OpenTK.Graphics.ES11.VersionEsCm10.FogStart; - var _FogEnd = OpenTK.Graphics.ES11.VersionEsCm10.FogEnd; - var _FogMode = OpenTK.Graphics.ES11.VersionEsCm10.FogMode; - var _FogColor = OpenTK.Graphics.ES11.VersionEsCm10.FogColor; - var _DepthRange = OpenTK.Graphics.ES11.VersionEsCm10.DepthRange; - var _DepthTest = OpenTK.Graphics.ES11.VersionEsCm10.DepthTest; - var _DepthWritemask = OpenTK.Graphics.ES11.VersionEsCm10.DepthWritemask; - var _DepthClearValue = OpenTK.Graphics.ES11.VersionEsCm10.DepthClearValue; - var _DepthFunc = OpenTK.Graphics.ES11.VersionEsCm10.DepthFunc; - var _StencilTest = OpenTK.Graphics.ES11.VersionEsCm10.StencilTest; - var _StencilClearValue = OpenTK.Graphics.ES11.VersionEsCm10.StencilClearValue; - var _StencilFunc = OpenTK.Graphics.ES11.VersionEsCm10.StencilFunc; - var _StencilValueMask = OpenTK.Graphics.ES11.VersionEsCm10.StencilValueMask; - var _StencilFail = OpenTK.Graphics.ES11.VersionEsCm10.StencilFail; - var _StencilPassDepthFail = OpenTK.Graphics.ES11.VersionEsCm10.StencilPassDepthFail; - var _StencilPassDepthPass = OpenTK.Graphics.ES11.VersionEsCm10.StencilPassDepthPass; - var _StencilRef = OpenTK.Graphics.ES11.VersionEsCm10.StencilRef; - var _StencilWritemask = OpenTK.Graphics.ES11.VersionEsCm10.StencilWritemask; - var _MatrixMode = OpenTK.Graphics.ES11.VersionEsCm10.MatrixMode; - var _Normalize = OpenTK.Graphics.ES11.VersionEsCm10.Normalize; - var _Viewport = OpenTK.Graphics.ES11.VersionEsCm10.Viewport; - var _ModelviewStackDepth = OpenTK.Graphics.ES11.VersionEsCm10.ModelviewStackDepth; - var _ProjectionStackDepth = OpenTK.Graphics.ES11.VersionEsCm10.ProjectionStackDepth; - var _TextureStackDepth = OpenTK.Graphics.ES11.VersionEsCm10.TextureStackDepth; - var _ModelviewMatrix = OpenTK.Graphics.ES11.VersionEsCm10.ModelviewMatrix; - var _ProjectionMatrix = OpenTK.Graphics.ES11.VersionEsCm10.ProjectionMatrix; - var _TextureMatrix = OpenTK.Graphics.ES11.VersionEsCm10.TextureMatrix; - var _AlphaTest = OpenTK.Graphics.ES11.VersionEsCm10.AlphaTest; - var _AlphaTestFunc = OpenTK.Graphics.ES11.VersionEsCm10.AlphaTestFunc; - var _AlphaTestRef = OpenTK.Graphics.ES11.VersionEsCm10.AlphaTestRef; - var _Dither = OpenTK.Graphics.ES11.VersionEsCm10.Dither; - var _BlendDst = OpenTK.Graphics.ES11.VersionEsCm10.BlendDst; - var _BlendSrc = OpenTK.Graphics.ES11.VersionEsCm10.BlendSrc; - var _Blend = OpenTK.Graphics.ES11.VersionEsCm10.Blend; - var _LogicOpMode = OpenTK.Graphics.ES11.VersionEsCm10.LogicOpMode; - var _ColorLogicOp = OpenTK.Graphics.ES11.VersionEsCm10.ColorLogicOp; - var _ScissorBox = OpenTK.Graphics.ES11.VersionEsCm10.ScissorBox; - var _ScissorTest = OpenTK.Graphics.ES11.VersionEsCm10.ScissorTest; - var _ColorClearValue = OpenTK.Graphics.ES11.VersionEsCm10.ColorClearValue; - var _ColorWritemask = OpenTK.Graphics.ES11.VersionEsCm10.ColorWritemask; - var _PerspectiveCorrectionHint = OpenTK.Graphics.ES11.VersionEsCm10.PerspectiveCorrectionHint; - var _PointSmoothHint = OpenTK.Graphics.ES11.VersionEsCm10.PointSmoothHint; - var _LineSmoothHint = OpenTK.Graphics.ES11.VersionEsCm10.LineSmoothHint; - var _FogHint = OpenTK.Graphics.ES11.VersionEsCm10.FogHint; - var _UnpackAlignment = OpenTK.Graphics.ES11.VersionEsCm10.UnpackAlignment; - var _PackAlignment = OpenTK.Graphics.ES11.VersionEsCm10.PackAlignment; - var _AlphaScale = OpenTK.Graphics.ES11.VersionEsCm10.AlphaScale; - var _MaxLights = OpenTK.Graphics.ES11.VersionEsCm10.MaxLights; - var _MaxClipPlanes = OpenTK.Graphics.ES11.VersionEsCm10.MaxClipPlanes; - var _MaxTextureSize = OpenTK.Graphics.ES11.VersionEsCm10.MaxTextureSize; - var _MaxModelviewStackDepth = OpenTK.Graphics.ES11.VersionEsCm10.MaxModelviewStackDepth; - var _MaxProjectionStackDepth = OpenTK.Graphics.ES11.VersionEsCm10.MaxProjectionStackDepth; - var _MaxTextureStackDepth = OpenTK.Graphics.ES11.VersionEsCm10.MaxTextureStackDepth; - var _MaxViewportDims = OpenTK.Graphics.ES11.VersionEsCm10.MaxViewportDims; - var _SubpixelBits = OpenTK.Graphics.ES11.VersionEsCm10.SubpixelBits; - var _RedBits = OpenTK.Graphics.ES11.VersionEsCm10.RedBits; - var _GreenBits = OpenTK.Graphics.ES11.VersionEsCm10.GreenBits; - var _BlueBits = OpenTK.Graphics.ES11.VersionEsCm10.BlueBits; - var _AlphaBits = OpenTK.Graphics.ES11.VersionEsCm10.AlphaBits; - var _DepthBits = OpenTK.Graphics.ES11.VersionEsCm10.DepthBits; - var _StencilBits = OpenTK.Graphics.ES11.VersionEsCm10.StencilBits; - var _Texture2D = OpenTK.Graphics.ES11.VersionEsCm10.Texture2D; - var _DontCare = OpenTK.Graphics.ES11.VersionEsCm10.DontCare; - var _Fastest = OpenTK.Graphics.ES11.VersionEsCm10.Fastest; - var _Nicest = OpenTK.Graphics.ES11.VersionEsCm10.Nicest; - var _Ambient = OpenTK.Graphics.ES11.VersionEsCm10.Ambient; - var _Diffuse = OpenTK.Graphics.ES11.VersionEsCm10.Diffuse; - var _Specular = OpenTK.Graphics.ES11.VersionEsCm10.Specular; - var _Position = OpenTK.Graphics.ES11.VersionEsCm10.Position; - var _SpotDirection = OpenTK.Graphics.ES11.VersionEsCm10.SpotDirection; - var _SpotExponent = OpenTK.Graphics.ES11.VersionEsCm10.SpotExponent; - var _SpotCutoff = OpenTK.Graphics.ES11.VersionEsCm10.SpotCutoff; - var _ConstantAttenuation = OpenTK.Graphics.ES11.VersionEsCm10.ConstantAttenuation; - var _LinearAttenuation = OpenTK.Graphics.ES11.VersionEsCm10.LinearAttenuation; - var _QuadraticAttenuation = OpenTK.Graphics.ES11.VersionEsCm10.QuadraticAttenuation; - var _Byte = OpenTK.Graphics.ES11.VersionEsCm10.Byte; - var _UnsignedByte = OpenTK.Graphics.ES11.VersionEsCm10.UnsignedByte; - var _Short = OpenTK.Graphics.ES11.VersionEsCm10.Short; - var _UnsignedShort = OpenTK.Graphics.ES11.VersionEsCm10.UnsignedShort; - var _Float = OpenTK.Graphics.ES11.VersionEsCm10.Float; - var _Fixed = OpenTK.Graphics.ES11.VersionEsCm10.Fixed; - var _Clear = OpenTK.Graphics.ES11.VersionEsCm10.Clear; - var _And = OpenTK.Graphics.ES11.VersionEsCm10.And; - var _AndReverse = OpenTK.Graphics.ES11.VersionEsCm10.AndReverse; - var _Copy = OpenTK.Graphics.ES11.VersionEsCm10.Copy; - var _AndInverted = OpenTK.Graphics.ES11.VersionEsCm10.AndInverted; - var _Noop = OpenTK.Graphics.ES11.VersionEsCm10.Noop; - var _Xor = OpenTK.Graphics.ES11.VersionEsCm10.Xor; - var _Or = OpenTK.Graphics.ES11.VersionEsCm10.Or; - var _Nor = OpenTK.Graphics.ES11.VersionEsCm10.Nor; - var _Equiv = OpenTK.Graphics.ES11.VersionEsCm10.Equiv; - var _Invert = OpenTK.Graphics.ES11.VersionEsCm10.Invert; - var _OrReverse = OpenTK.Graphics.ES11.VersionEsCm10.OrReverse; - var _CopyInverted = OpenTK.Graphics.ES11.VersionEsCm10.CopyInverted; - var _OrInverted = OpenTK.Graphics.ES11.VersionEsCm10.OrInverted; - var _Nand = OpenTK.Graphics.ES11.VersionEsCm10.Nand; - var _Set = OpenTK.Graphics.ES11.VersionEsCm10.Set; - var _Emission = OpenTK.Graphics.ES11.VersionEsCm10.Emission; - var _Shininess = OpenTK.Graphics.ES11.VersionEsCm10.Shininess; - var _AmbientAndDiffuse = OpenTK.Graphics.ES11.VersionEsCm10.AmbientAndDiffuse; - var _Modelview = OpenTK.Graphics.ES11.VersionEsCm10.Modelview; - var _Projection = OpenTK.Graphics.ES11.VersionEsCm10.Projection; - var _Texture = OpenTK.Graphics.ES11.VersionEsCm10.Texture; - var _Alpha = OpenTK.Graphics.ES11.VersionEsCm10.Alpha; - var _Rgb = OpenTK.Graphics.ES11.VersionEsCm10.Rgb; - var _Rgba = OpenTK.Graphics.ES11.VersionEsCm10.Rgba; - var _Luminance = OpenTK.Graphics.ES11.VersionEsCm10.Luminance; - var _LuminanceAlpha = OpenTK.Graphics.ES11.VersionEsCm10.LuminanceAlpha; - var _Flat = OpenTK.Graphics.ES11.VersionEsCm10.Flat; - var _Smooth = OpenTK.Graphics.ES11.VersionEsCm10.Smooth; - var _Keep = OpenTK.Graphics.ES11.VersionEsCm10.Keep; - var _Replace = OpenTK.Graphics.ES11.VersionEsCm10.Replace; - var _Incr = OpenTK.Graphics.ES11.VersionEsCm10.Incr; - var _Decr = OpenTK.Graphics.ES11.VersionEsCm10.Decr; - var _Vendor = OpenTK.Graphics.ES11.VersionEsCm10.Vendor; - var _Renderer = OpenTK.Graphics.ES11.VersionEsCm10.Renderer; - var _Version = OpenTK.Graphics.ES11.VersionEsCm10.Version; - var _Extensions = OpenTK.Graphics.ES11.VersionEsCm10.Extensions; - var _Modulate = OpenTK.Graphics.ES11.VersionEsCm10.Modulate; - var _Decal = OpenTK.Graphics.ES11.VersionEsCm10.Decal; - var _TextureEnvMode = OpenTK.Graphics.ES11.VersionEsCm10.TextureEnvMode; - var _TextureEnvColor = OpenTK.Graphics.ES11.VersionEsCm10.TextureEnvColor; - var _TextureEnv = OpenTK.Graphics.ES11.VersionEsCm10.TextureEnv; - var _Nearest = OpenTK.Graphics.ES11.VersionEsCm10.Nearest; - var _Linear = OpenTK.Graphics.ES11.VersionEsCm10.Linear; - var _NearestMipmapNearest = OpenTK.Graphics.ES11.VersionEsCm10.NearestMipmapNearest; - var _LinearMipmapNearest = OpenTK.Graphics.ES11.VersionEsCm10.LinearMipmapNearest; - var _NearestMipmapLinear = OpenTK.Graphics.ES11.VersionEsCm10.NearestMipmapLinear; - var _LinearMipmapLinear = OpenTK.Graphics.ES11.VersionEsCm10.LinearMipmapLinear; - var _TextureMagFilter = OpenTK.Graphics.ES11.VersionEsCm10.TextureMagFilter; - var _TextureMinFilter = OpenTK.Graphics.ES11.VersionEsCm10.TextureMinFilter; - var _TextureWrapS = OpenTK.Graphics.ES11.VersionEsCm10.TextureWrapS; - var _TextureWrapT = OpenTK.Graphics.ES11.VersionEsCm10.TextureWrapT; - var _Repeat = OpenTK.Graphics.ES11.VersionEsCm10.Repeat; - var _PolygonOffsetUnits = OpenTK.Graphics.ES11.VersionEsCm10.PolygonOffsetUnits; - var _ClipPlane0 = OpenTK.Graphics.ES11.VersionEsCm10.ClipPlane0; - var _ClipPlane1 = OpenTK.Graphics.ES11.VersionEsCm10.ClipPlane1; - var _ClipPlane2 = OpenTK.Graphics.ES11.VersionEsCm10.ClipPlane2; - var _ClipPlane3 = OpenTK.Graphics.ES11.VersionEsCm10.ClipPlane3; - var _ClipPlane4 = OpenTK.Graphics.ES11.VersionEsCm10.ClipPlane4; - var _ClipPlane5 = OpenTK.Graphics.ES11.VersionEsCm10.ClipPlane5; - var _Light0 = OpenTK.Graphics.ES11.VersionEsCm10.Light0; - var _Light1 = OpenTK.Graphics.ES11.VersionEsCm10.Light1; - var _Light2 = OpenTK.Graphics.ES11.VersionEsCm10.Light2; - var _Light3 = OpenTK.Graphics.ES11.VersionEsCm10.Light3; - var _Light4 = OpenTK.Graphics.ES11.VersionEsCm10.Light4; - var _Light5 = OpenTK.Graphics.ES11.VersionEsCm10.Light5; - var _Light6 = OpenTK.Graphics.ES11.VersionEsCm10.Light6; - var _Light7 = OpenTK.Graphics.ES11.VersionEsCm10.Light7; - var _UnsignedShort4444 = OpenTK.Graphics.ES11.VersionEsCm10.UnsignedShort4444; - var _UnsignedShort5551 = OpenTK.Graphics.ES11.VersionEsCm10.UnsignedShort5551; - var _PolygonOffsetFill = OpenTK.Graphics.ES11.VersionEsCm10.PolygonOffsetFill; - var _PolygonOffsetFactor = OpenTK.Graphics.ES11.VersionEsCm10.PolygonOffsetFactor; - var _RescaleNormal = OpenTK.Graphics.ES11.VersionEsCm10.RescaleNormal; - var _TextureBinding2D = OpenTK.Graphics.ES11.VersionEsCm10.TextureBinding2D; - var _VertexArray = OpenTK.Graphics.ES11.VersionEsCm10.VertexArray; - var _NormalArray = OpenTK.Graphics.ES11.VersionEsCm10.NormalArray; - var _ColorArray = OpenTK.Graphics.ES11.VersionEsCm10.ColorArray; - var _TextureCoordArray = OpenTK.Graphics.ES11.VersionEsCm10.TextureCoordArray; - var _VertexArraySize = OpenTK.Graphics.ES11.VersionEsCm10.VertexArraySize; - var _VertexArrayType = OpenTK.Graphics.ES11.VersionEsCm10.VertexArrayType; - var _VertexArrayStride = OpenTK.Graphics.ES11.VersionEsCm10.VertexArrayStride; - var _NormalArrayType = OpenTK.Graphics.ES11.VersionEsCm10.NormalArrayType; - var _NormalArrayStride = OpenTK.Graphics.ES11.VersionEsCm10.NormalArrayStride; - var _ColorArraySize = OpenTK.Graphics.ES11.VersionEsCm10.ColorArraySize; - var _ColorArrayType = OpenTK.Graphics.ES11.VersionEsCm10.ColorArrayType; - var _ColorArrayStride = OpenTK.Graphics.ES11.VersionEsCm10.ColorArrayStride; - var _TextureCoordArraySize = OpenTK.Graphics.ES11.VersionEsCm10.TextureCoordArraySize; - var _TextureCoordArrayType = OpenTK.Graphics.ES11.VersionEsCm10.TextureCoordArrayType; - var _TextureCoordArrayStride = OpenTK.Graphics.ES11.VersionEsCm10.TextureCoordArrayStride; - var _VertexArrayPointer = OpenTK.Graphics.ES11.VersionEsCm10.VertexArrayPointer; - var _NormalArrayPointer = OpenTK.Graphics.ES11.VersionEsCm10.NormalArrayPointer; - var _ColorArrayPointer = OpenTK.Graphics.ES11.VersionEsCm10.ColorArrayPointer; - var _TextureCoordArrayPointer = OpenTK.Graphics.ES11.VersionEsCm10.TextureCoordArrayPointer; - var _Multisample = OpenTK.Graphics.ES11.VersionEsCm10.Multisample; - var _SampleAlphaToCoverage = OpenTK.Graphics.ES11.VersionEsCm10.SampleAlphaToCoverage; - var _SampleAlphaToOne = OpenTK.Graphics.ES11.VersionEsCm10.SampleAlphaToOne; - var _SampleCoverage = OpenTK.Graphics.ES11.VersionEsCm10.SampleCoverage; - var _SampleBuffers = OpenTK.Graphics.ES11.VersionEsCm10.SampleBuffers; - var _Samples = OpenTK.Graphics.ES11.VersionEsCm10.Samples; - var _SampleCoverageValue = OpenTK.Graphics.ES11.VersionEsCm10.SampleCoverageValue; - var _SampleCoverageInvert = OpenTK.Graphics.ES11.VersionEsCm10.SampleCoverageInvert; - var _PointSizeMin = OpenTK.Graphics.ES11.VersionEsCm10.PointSizeMin; - var _PointSizeMax = OpenTK.Graphics.ES11.VersionEsCm10.PointSizeMax; - var _PointFadeThresholdSize = OpenTK.Graphics.ES11.VersionEsCm10.PointFadeThresholdSize; - var _PointDistanceAttenuation = OpenTK.Graphics.ES11.VersionEsCm10.PointDistanceAttenuation; - var _ClampToEdge = OpenTK.Graphics.ES11.VersionEsCm10.ClampToEdge; - var _GenerateMipmap = OpenTK.Graphics.ES11.VersionEsCm10.GenerateMipmap; - var _GenerateMipmapHint = OpenTK.Graphics.ES11.VersionEsCm10.GenerateMipmapHint; - var _UnsignedShort565 = OpenTK.Graphics.ES11.VersionEsCm10.UnsignedShort565; - var _AliasedPointSizeRange = OpenTK.Graphics.ES11.VersionEsCm10.AliasedPointSizeRange; - var _AliasedLineWidthRange = OpenTK.Graphics.ES11.VersionEsCm10.AliasedLineWidthRange; - var _Texture0 = OpenTK.Graphics.ES11.VersionEsCm10.Texture0; - var _Texture1 = OpenTK.Graphics.ES11.VersionEsCm10.Texture1; - var _Texture2 = OpenTK.Graphics.ES11.VersionEsCm10.Texture2; - var _Texture3 = OpenTK.Graphics.ES11.VersionEsCm10.Texture3; - var _Texture4 = OpenTK.Graphics.ES11.VersionEsCm10.Texture4; - var _Texture5 = OpenTK.Graphics.ES11.VersionEsCm10.Texture5; - var _Texture6 = OpenTK.Graphics.ES11.VersionEsCm10.Texture6; - var _Texture7 = OpenTK.Graphics.ES11.VersionEsCm10.Texture7; - var _Texture8 = OpenTK.Graphics.ES11.VersionEsCm10.Texture8; - var _Texture9 = OpenTK.Graphics.ES11.VersionEsCm10.Texture9; - var _Texture10 = OpenTK.Graphics.ES11.VersionEsCm10.Texture10; - var _Texture11 = OpenTK.Graphics.ES11.VersionEsCm10.Texture11; - var _Texture12 = OpenTK.Graphics.ES11.VersionEsCm10.Texture12; - var _Texture13 = OpenTK.Graphics.ES11.VersionEsCm10.Texture13; - var _Texture14 = OpenTK.Graphics.ES11.VersionEsCm10.Texture14; - var _Texture15 = OpenTK.Graphics.ES11.VersionEsCm10.Texture15; - var _Texture16 = OpenTK.Graphics.ES11.VersionEsCm10.Texture16; - var _Texture17 = OpenTK.Graphics.ES11.VersionEsCm10.Texture17; - var _Texture18 = OpenTK.Graphics.ES11.VersionEsCm10.Texture18; - var _Texture19 = OpenTK.Graphics.ES11.VersionEsCm10.Texture19; - var _Texture20 = OpenTK.Graphics.ES11.VersionEsCm10.Texture20; - var _Texture21 = OpenTK.Graphics.ES11.VersionEsCm10.Texture21; - var _Texture22 = OpenTK.Graphics.ES11.VersionEsCm10.Texture22; - var _Texture23 = OpenTK.Graphics.ES11.VersionEsCm10.Texture23; - var _Texture24 = OpenTK.Graphics.ES11.VersionEsCm10.Texture24; - var _Texture25 = OpenTK.Graphics.ES11.VersionEsCm10.Texture25; - var _Texture26 = OpenTK.Graphics.ES11.VersionEsCm10.Texture26; - var _Texture27 = OpenTK.Graphics.ES11.VersionEsCm10.Texture27; - var _Texture28 = OpenTK.Graphics.ES11.VersionEsCm10.Texture28; - var _Texture29 = OpenTK.Graphics.ES11.VersionEsCm10.Texture29; - var _Texture30 = OpenTK.Graphics.ES11.VersionEsCm10.Texture30; - var _Texture31 = OpenTK.Graphics.ES11.VersionEsCm10.Texture31; - var _ActiveTexture = OpenTK.Graphics.ES11.VersionEsCm10.ActiveTexture; - var _ClientActiveTexture = OpenTK.Graphics.ES11.VersionEsCm10.ClientActiveTexture; - var _MaxTextureUnits = OpenTK.Graphics.ES11.VersionEsCm10.MaxTextureUnits; - var _Subtract = OpenTK.Graphics.ES11.VersionEsCm10.Subtract; - var _Combine = OpenTK.Graphics.ES11.VersionEsCm10.Combine; - var _CombineRgb = OpenTK.Graphics.ES11.VersionEsCm10.CombineRgb; - var _CombineAlpha = OpenTK.Graphics.ES11.VersionEsCm10.CombineAlpha; - var _RgbScale = OpenTK.Graphics.ES11.VersionEsCm10.RgbScale; - var _AddSigned = OpenTK.Graphics.ES11.VersionEsCm10.AddSigned; - var _Interpolate = OpenTK.Graphics.ES11.VersionEsCm10.Interpolate; - var _Constant = OpenTK.Graphics.ES11.VersionEsCm10.Constant; - var _PrimaryColor = OpenTK.Graphics.ES11.VersionEsCm10.PrimaryColor; - var _Previous = OpenTK.Graphics.ES11.VersionEsCm10.Previous; - var _Src0Rgb = OpenTK.Graphics.ES11.VersionEsCm10.Src0Rgb; - var _Src1Rgb = OpenTK.Graphics.ES11.VersionEsCm10.Src1Rgb; - var _Src2Rgb = OpenTK.Graphics.ES11.VersionEsCm10.Src2Rgb; - var _Src0Alpha = OpenTK.Graphics.ES11.VersionEsCm10.Src0Alpha; - var _Src1Alpha = OpenTK.Graphics.ES11.VersionEsCm10.Src1Alpha; - var _Src2Alpha = OpenTK.Graphics.ES11.VersionEsCm10.Src2Alpha; - var _Operand0Rgb = OpenTK.Graphics.ES11.VersionEsCm10.Operand0Rgb; - var _Operand1Rgb = OpenTK.Graphics.ES11.VersionEsCm10.Operand1Rgb; - var _Operand2Rgb = OpenTK.Graphics.ES11.VersionEsCm10.Operand2Rgb; - var _Operand0Alpha = OpenTK.Graphics.ES11.VersionEsCm10.Operand0Alpha; - var _Operand1Alpha = OpenTK.Graphics.ES11.VersionEsCm10.Operand1Alpha; - var _Operand2Alpha = OpenTK.Graphics.ES11.VersionEsCm10.Operand2Alpha; - var _NumCompressedTextureFormats = OpenTK.Graphics.ES11.VersionEsCm10.NumCompressedTextureFormats; - var _CompressedTextureFormats = OpenTK.Graphics.ES11.VersionEsCm10.CompressedTextureFormats; - var _Dot3Rgb = OpenTK.Graphics.ES11.VersionEsCm10.Dot3Rgb; - var _Dot3Rgba = OpenTK.Graphics.ES11.VersionEsCm10.Dot3Rgba; - var _BufferSize = OpenTK.Graphics.ES11.VersionEsCm10.BufferSize; - var _BufferUsage = OpenTK.Graphics.ES11.VersionEsCm10.BufferUsage; - var _ArrayBuffer = OpenTK.Graphics.ES11.VersionEsCm10.ArrayBuffer; - var _ElementArrayBuffer = OpenTK.Graphics.ES11.VersionEsCm10.ElementArrayBuffer; - var _ArrayBufferBinding = OpenTK.Graphics.ES11.VersionEsCm10.ArrayBufferBinding; - var _ElementArrayBufferBinding = OpenTK.Graphics.ES11.VersionEsCm10.ElementArrayBufferBinding; - var _VertexArrayBufferBinding = OpenTK.Graphics.ES11.VersionEsCm10.VertexArrayBufferBinding; - var _NormalArrayBufferBinding = OpenTK.Graphics.ES11.VersionEsCm10.NormalArrayBufferBinding; - var _ColorArrayBufferBinding = OpenTK.Graphics.ES11.VersionEsCm10.ColorArrayBufferBinding; - var _TextureCoordArrayBufferBinding = OpenTK.Graphics.ES11.VersionEsCm10.TextureCoordArrayBufferBinding; - var _StaticDraw = OpenTK.Graphics.ES11.VersionEsCm10.StaticDraw; - var _DynamicDraw = OpenTK.Graphics.ES11.VersionEsCm10.DynamicDraw; - var _One = OpenTK.Graphics.ES11.VersionEsCm10.One; - var _True = OpenTK.Graphics.ES11.VersionEsCm10.True; - var _VersionEsCl10 = OpenTK.Graphics.ES11.VersionEsCm10.VersionEsCl10; - var _VersionEsCl11 = OpenTK.Graphics.ES11.VersionEsCm10.VersionEsCl11; - var _VersionEsCm11 = OpenTK.Graphics.ES11.VersionEsCm10.VersionEsCm11; -} -static void Test_VertexPointerType_38630() { - var _Short = OpenTK.Graphics.ES11.VertexPointerType.Short; - var _Int = OpenTK.Graphics.ES11.VertexPointerType.Int; - var _Float = OpenTK.Graphics.ES11.VertexPointerType.Float; - var _Double = OpenTK.Graphics.ES11.VertexPointerType.Double; -} -} From 0fc7f6d4aab4e93ee7c600874055affc2f0be5da Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Tue, 26 Dec 2017 21:19:36 +0000 Subject: [PATCH 91/91] Add DebugProc to ES11 --- src/OpenTK/Graphics/ES11/Helper.cs | 35 ++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/src/OpenTK/Graphics/ES11/Helper.cs b/src/OpenTK/Graphics/ES11/Helper.cs index 748d4d5b..a1ed83db 100644 --- a/src/OpenTK/Graphics/ES11/Helper.cs +++ b/src/OpenTK/Graphics/ES11/Helper.cs @@ -1,4 +1,5 @@ using System; +using System.Runtime.InteropServices; namespace OpenTK.Graphics.ES11 { @@ -38,4 +39,38 @@ namespace OpenTK.Graphics.ES11 } } + + /// + /// Defines the signature of a debug callback for + /// . + /// + /// The for this debug message. + /// The for this debug message. + /// The id of this debug message. + /// The for this debug message. + /// The length of this debug message. + /// A pointer to a null-terminated ASCII C string, representing the content of this debug message. + /// A pointer to a user-specified parameter. + [UnmanagedFunctionPointer(CallingConvention.Winapi)] + public delegate void DebugProc( + DebugSource source, DebugType type, int id, + DebugSeverity severity, int length, IntPtr message, + IntPtr userParam); + + /// + /// Defines the signature of a debug callback for + /// . + /// + /// The for this debug message. + /// The for this debug message. + /// The id of this debug message. + /// The for this debug message. + /// The length of this debug message. + /// A pointer to a null-terminated ASCII C string, representing the content of this debug message. + /// A pointer to a user-specified parameter. + [UnmanagedFunctionPointer(CallingConvention.Winapi)] + public delegate void DebugProcKhr( + DebugSource source, DebugType type, int id, + DebugSeverity severity, int length, IntPtr message, + IntPtr userParam); }